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: `ojs3504`
--
-- --------------------------------------------------------
--
-- 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` (`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` bigint(20) DEFAULT NULL,
`amount` decimal(8,2) unsigned 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 relating to a payment type such as a subscription payment.' 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 `custom_issue_orders`
--
CREATE TABLE `custom_issue_orders` (
`custom_issue_order_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`issue_id` bigint(20) NOT NULL,
`journal_id` bigint(20) NOT NULL,
`seq` double NOT NULL DEFAULT '0',
PRIMARY KEY (`custom_issue_order_id`),
UNIQUE KEY `custom_issue_orders_unique` (`issue_id`),
KEY `custom_issue_orders_issue_id` (`issue_id`),
KEY `custom_issue_orders_journal_id` (`journal_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Ordering information for the issue list, when custom issue ordering is specified.' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `custom_section_orders`
--
CREATE TABLE `custom_section_orders` (
`custom_section_order_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`issue_id` bigint(20) NOT NULL,
`section_id` bigint(20) NOT NULL,
`seq` double NOT NULL DEFAULT '0',
PRIMARY KEY (`custom_section_order_id`),
UNIQUE KEY `custom_section_orders_unique` (`issue_id`,`section_id`),
KEY `custom_section_orders_issue_id` (`issue_id`),
KEY `custom_section_orders_section_id` (`section_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Ordering information for sections within issues, when issue-specific section ordering is specified.' 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=75 ;
--
-- 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', 'Journal 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 journal through its website. At any point, you can ask to be removed from the journal''s 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 (Journal 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}', '<p>Dear {$recipientName},</p><p>In light of your expertise, we have registered 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.</p><p>We are providing you with a username and password, which is used in all interactions with the journal through its website. You may wish, for example, to update your profile, including your reviewing interests.</p><p>Username: {$recipientUsername}<br />Password: {$password}</p><p>Thank you,</p>{$signature}'),
(6, 'ISSUE_PUBLISH_NOTIFY', 'en', 'Issue Published Notify', 'Just published: {$issueIdentification} of {$contextName}', '<p>Dear {$recipientName},</p><p>We are pleased to announce the publication of <a href="{$issueUrl}">{$issueIdentification}</a> of {$contextName}. We invite you to read and share this work with your scholarly community.</p><p>Many thanks to our authors, reviewers, and editors for their valuable contributions, and to our readers for your continued interest.</p><div>{$issueToc}</div><p>Thank you,</p>{$signature}'),
(7, '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}'),
(8, '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}'),
(9, '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 Review" and then assign reviewers by clicking "Add Reviewer".</p><p>If the submission is not appropriate for this journal, please decline the submission.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$contextSignature}'),
(10, 'REVIEW_CANCEL', 'en', 'Reviewer Unassign', 'Request for Review Cancelled', '<p>Dear {$recipientName},</p><p>Recently, we asked you to review a submission to {$contextName}. We have decided to cancel the request for you to reivew the submission, {$submissionTitle}.</p><p>We apologize any inconvenience this may cause you and hope that we will be able to call on you to assist with this journal''s review process in the future.</p><p>If you have any questions, please contact me.</p>{$signature}'),
(11, '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 journal</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}'),
(12, '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}'),
(13, 'REVIEW_REQUEST', 'en', 'Review Request', 'Invitation to review', '<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 journal site 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}'),
(14, '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}'),
(15, 'REVIEW_RESPONSE_OVERDUE_AUTO', 'en', 'Review Response Overdue (Automated)', 'Will you be able to review this for us?', '<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>You are receiving this email because we have not yet received a confirmation from you indicating whether or not you are able to undertake the review of this submission.</p><p>Please let us know whether or not you are able to undertake this review by using our submission management software to accept or decline this request.</p><p>If you are able to review this submission, your review is due by {$reviewDueDate}. You can follow the review steps 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 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>{$contextSignature}'),
(16, '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>.'),
(17, 'REVIEW_DECLINE', 'en', 'Review Decline', 'Unable to Review', 'Editors:<br />\n<br />\nI am afraid that at this time I am unable to review the submission, "{$submissionTitle}," for {$contextName}. Thank you for thinking of me, and another time feel free to call on me.<br />\n<br />\n{$senderName}'),
(18, '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>'),
(19, '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 journal</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}'),
(20, '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 journal</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}'),
(21, '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>'),
(22, '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>'),
(23, '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 journal as a venue for your work.</p><p>Your submission is now forthcoming in a future issue of {$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}'),
(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 journal as a venue for your work.</p>\nYour submission is now forthcoming in a future issue of {$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, 'SUBSCRIPTION_NOTIFY', 'en', 'Subscription Notify', 'Subscription Notification', '{$recipientName}:<br />\n<br />\nYou have now been registered as a subscriber in our online journal management system for {$contextName}, with the following subscription:<br />\n<br />\n{$subscriptionType}<br />\n<br />\nTo access content that is available only to subscribers, simply log in to the system with your username, "{$recipientUsername}".<br />\n<br />\nOnce you have logged in to the system you can change your profile details and password at any point.<br />\n<br />\nPlease note that if you have an institutional subscription, there is no need for users at your institution to log in, since requests for subscription content will be automatically authenticated by the system.<br />\n<br />\nIf you have any questions, please feel free to contact me.<br />\n<br />\n{$subscriptionSignature}'),
(41, 'OPEN_ACCESS_NOTIFY', 'en', 'Open Access Notify', 'Free to read: {$issueIdentification} of {$contextName} is now open access', '<p>Dear {$recipientName},</p><p>We are pleased to inform you that <a href="{$issueUrl}">{$issueIdentification}</a> of {$contextName} is now available under open access. A subscription is no longer required to read this issue.</p><p>Thank you for your continuing interest in our work.</p>{$contextSignature}'),
(42, 'SUBSCRIPTION_BEFORE_EXPIRY', 'en', 'Subscription Expires Soon', 'Notice of Subscription Expiry', '{$recipientName}:<br />\n<br />\nYour {$contextName} subscription is about to expire.<br />\n<br />\n{$subscriptionType}<br />\nExpiry date: {$expiryDate}<br />\n<br />\nTo ensure the continuity of your access to this journal, please go to the journal website and renew your subscription. You are able to log in to the system with your username, "{$recipientUsername}".<br />\n<br />\nIf you have any questions, please feel free to contact me.<br />\n<br />\n{$subscriptionSignature}'),
(43, 'SUBSCRIPTION_AFTER_EXPIRY', 'en', 'Subscription Expired', 'Subscription Expired', '{$recipientName}:<br />\n<br />\nYour {$contextName} subscription has expired.<br />\n<br />\n{$subscriptionType}<br />\nExpiry date: {$expiryDate}<br />\n<br />\nTo renew your subscription, please go to the journal website. You are able to log in to the system with your username, "{$recipientUsername}".<br />\n<br />\nIf you have any questions, please feel free to contact me.<br />\n<br />\n{$subscriptionSignature}'),
(44, 'SUBSCRIPTION_AFTER_EXPIRY_LAST', 'en', 'Subscription Expired Last', 'Subscription Expired - Final Reminder', '{$recipientName}:<br />\n<br />\nYour {$contextName} subscription has expired.<br />\nPlease note that this is the final reminder that will be emailed to you.<br />\n<br />\n{$subscriptionType}<br />\nExpiry date: {$expiryDate}<br />\n<br />\nTo renew your subscription, please go to the journal website. You are able to log in to the system with your username, "{$recipientUsername}".<br />\n<br />\nIf you have any questions, please feel free to contact me.<br />\n<br />\n{$subscriptionSignature}'),
(45, 'SUBSCRIPTION_PURCHASE_INDL', 'en', 'Purchase Individual Subscription', 'Subscription Purchase: Individual', 'An individual subscription has been purchased online for {$contextName} with the following details.<br />\n<br />\nSubscription Type:<br />\n{$subscriptionType}<br />\n<br />\nUser:<br />\n{$subscriberDetails}<br />\n<br />\nMembership Information (if provided):<br />\n{$membership}<br />\n<br />\nTo view or edit this subscription, please use the following URL.<br />\n<br />\nSubscription URL: {$subscriptionUrl}<br />\n'),
(46, 'SUBSCRIPTION_PURCHASE_INSTL', 'en', 'Purchase Institutional Subscription', 'Subscription Purchase: Institutional', 'An institutional subscription has been purchased online for {$contextName} with the following details. To activate this subscription, please use the provided Subscription URL and set the subscription status to ''Active''.<br />\n<br />\nSubscription Type:<br />\n{$subscriptionType}<br />\n<br />\nInstitution:<br />\n{$institutionName}<br />\n{$institutionMailingAddress}<br />\n<br />\nDomain (if provided):<br />\n{$domain}<br />\n<br />\nIP Ranges (if provided):<br />\n{$ipRanges}<br />\n<br />\nContact Person:<br />\n{$subscriberDetails}<br />\n<br />\nMembership Information (if provided):<br />\n{$membership}<br />\n<br />\nTo view or edit this subscription, please use the following URL.<br />\n<br />\nSubscription URL: {$subscriptionUrl}<br />\n'),
(47, 'SUBSCRIPTION_RENEW_INDL', 'en', 'Renew Individual Subscription', 'Subscription Renewal: Individual', 'An individual subscription has been renewed online for {$contextName} with the following details.<br />\n<br />\nSubscription Type:<br />\n{$subscriptionType}<br />\n<br />\nUser:<br />\n{$subscriberDetails}<br />\n<br />\nMembership Information (if provided):<br />\n{$membership}<br />\n<br />\nTo view or edit this subscription, please use the following URL.<br />\n<br />\nSubscription URL: {$subscriptionUrl}<br />\n'),
(48, 'SUBSCRIPTION_RENEW_INSTL', 'en', 'Renew Institutional Subscription', 'Subscription Renewal: Institutional', 'An institutional subscription has been renewed online for {$contextName} with the following details.<br />\n<br />\nSubscription Type:<br />\n{$subscriptionType}<br />\n<br />\nInstitution:<br />\n{$institutionName}<br />\n{$institutionMailingAddress}<br />\n<br />\nDomain (if provided):<br />\n{$domain}<br />\n<br />\nIP Ranges (if provided):<br />\n{$ipRanges}<br />\n<br />\nContact Person:<br />\n{$subscriberDetails}<br />\n<br />\nMembership Information (if provided):<br />\n{$membership}<br />\n<br />\nTo view or edit this subscription, please use the following URL.<br />\n<br />\nSubscription URL: {$subscriptionUrl}<br />\n'),
(49, '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>.'),
(50, 'STATISTICS_REPORT_NOTIFICATION', 'en', 'Statistics Report Notification', 'Editorial activity for {$month}, {$year}', '\n{$recipientName}, <br />\n<br />\nYour journal 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 journal to view more detailed <a href="{$editorialStatsLink}">editorial trends</a> and <a href="{$publicationStatsLink}">published article stats</a>. A full copy of this month''s editorial trends is attached.<br />\n<br />\nSincerely,<br />\n{$contextSignature}'),
(51, '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>.'),
(52, 'DISCUSSION_NOTIFICATION_SUBMISSION', 'en', 'Discussion (Submission)', 'A message regarding {$contextName}', 'Please enter your message.'),
(53, 'DISCUSSION_NOTIFICATION_REVIEW', 'en', 'Discussion (Review)', 'A message regarding {$contextName}', 'Please enter your message.'),
(54, 'DISCUSSION_NOTIFICATION_COPYEDITING', 'en', 'Discussion (Copyediting)', 'A message regarding {$contextName}', 'Please enter your message.'),
(55, 'DISCUSSION_NOTIFICATION_PRODUCTION', 'en', 'Discussion (Production)', 'A message regarding {$contextName}', 'Please enter your message.'),
(56, '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}'),
(57, '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 Review" and then assign reviewers by clicking "Add Reviewer".</p><p>If the submission is not appropriate for this journal, please decline the submission.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$contextSignature}'),
(58, '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 peer review process.</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}'),
(59, '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 > Galleys</strong> section. Then schedule the work for publication by clicking the <strong>Schedule for Publication</strong> button.</p><p>Thank you in advance.</p><p>Kind regards,</p>{$signature}'),
(60, '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 journal''s standards.</li><li>Upload the galleys to the Publication 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 journal.</p><p>Kind regards,</p>{$signature}'),
(61, '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>{$signature}</p>'),
(62, '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>'),
(63, '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>'),
(64, '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>'),
(65, '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>'),
(66, 'PAYMENT_REQUEST_NOTIFICATION', 'en', 'Payment Request', 'Payment Request Notification', '<p>Dear {$recipientName},</p><p>Congratulations on the acceptance of your submission, {$submissionTitle}, to {$contextName}. Now that your submission has been accepted, we would like to request payment of the publication fee.</p><p>This fee covers the production costs of bringing your submission to publication. To make the payment, please visit <a href="{$queuedPaymentUrl}">{$queuedPaymentUrl}</a>.</p><p>If you have any questions, please see our <a href="{$submissionGuidelinesUrl}">Submission Guidelines</a></p>'),
(67, '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}'),
(68, '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'),
(69, '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'),
(70, '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>'),
(71, '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>'),
(72, '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>');
INSERT INTO `email_templates_default_data` VALUES
(73, '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'),
(74, 'MANUAL_PAYMENT_NOTIFICATION', 'en', 'Manual Payment Notify', 'Manual Payment Notification', 'A manual payment needs to be processed for the journal {$contextName} and the user "{$senderUsername}".<br />\n<br />\nThe item being paid for is "{$paymentName}".<br />\nThe cost is {$paymentAmount} ({$paymentCurrencyCode}).<br />\n<br />\nThis email was generated by Open Journal Systems'' 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 `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=28 ;
--
-- Dumping data for table `filters`
--
INSERT INTO `filters` VALUES
(1, 1, NULL, 'DataCite XML export', 'APP\\plugins\\generic\\datacite\\filter\\DataciteXmlFilter', 0, NULL, 0),
(2, 2, NULL, 'DataCite XML export', 'APP\\plugins\\generic\\datacite\\filter\\DataciteXmlFilter', 0, NULL, 0),
(3, 3, NULL, 'DataCite XML export', 'APP\\plugins\\generic\\datacite\\filter\\DataciteXmlFilter', 0, NULL, 0),
(4, 4, NULL, 'Crossref XML issue export', 'APP\\plugins\\generic\\crossref\\filter\\IssueCrossrefXmlFilter', 0, NULL, 0),
(5, 5, NULL, 'Crossref XML article export', 'APP\\plugins\\generic\\crossref\\filter\\ArticleCrossrefXmlFilter', 0, NULL, 0),
(6, 6, NULL, 'Extract metadata from a(n) Submission', 'APP\\plugins\\metadata\\dc11\\filter\\Dc11SchemaArticleAdapter', 0, NULL, 0),
(7, 7, NULL, 'APP\\plugins\\importexport\\pubmed\\filter\\ArticlePubMedXmlFilter', 'APP\\plugins\\importexport\\pubmed\\filter\\ArticlePubMedXmlFilter', 0, NULL, 0),
(8, 8, NULL, 'DOAJ XML export', 'APP\\plugins\\importexport\\doaj\\filter\\DOAJXmlFilter', 0, NULL, 0),
(9, 9, NULL, 'DOAJ JSON export', 'APP\\plugins\\importexport\\doaj\\filter\\DOAJJsonFilter', 0, NULL, 0),
(10, 10, NULL, 'User XML user export', 'PKP\\plugins\\importexport\\users\\filter\\PKPUserUserXmlFilter', 0, NULL, 0),
(11, 11, NULL, 'User XML user import', 'PKP\\plugins\\importexport\\users\\filter\\UserXmlPKPUserFilter', 0, NULL, 0),
(12, 12, NULL, 'Native XML user group export', 'PKP\\plugins\\importexport\\users\\filter\\UserGroupNativeXmlFilter', 0, NULL, 0),
(13, 13, NULL, 'Native XML user group import', 'PKP\\plugins\\importexport\\users\\filter\\NativeXmlUserGroupFilter', 0, NULL, 0),
(14, 14, NULL, 'Native XML submission export', 'APP\\plugins\\importexport\\native\\filter\\ArticleNativeXmlFilter', 0, NULL, 0),
(15, 15, NULL, 'Native XML submission import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlArticleFilter', 0, NULL, 0),
(16, 16, NULL, 'Native XML issue export', 'APP\\plugins\\importexport\\native\\filter\\IssueNativeXmlFilter', 0, NULL, 0),
(17, 17, NULL, 'Native XML issue import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlIssueFilter', 0, NULL, 0),
(18, 18, NULL, 'Native XML issue galley export', 'APP\\plugins\\importexport\\native\\filter\\IssueGalleyNativeXmlFilter', 0, NULL, 0),
(19, 19, NULL, 'Native XML issue galley import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlIssueGalleyFilter', 0, NULL, 0),
(20, 20, NULL, 'Native XML author export', 'APP\\plugins\\importexport\\native\\filter\\AuthorNativeXmlFilter', 0, NULL, 0),
(21, 21, NULL, 'Native XML author import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlAuthorFilter', 0, NULL, 0),
(22, 23, NULL, 'Native XML submission file import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlArticleFileFilter', 0, NULL, 0),
(23, 22, NULL, 'Native XML submission file export', 'PKP\\plugins\\importexport\\native\\filter\\SubmissionFileNativeXmlFilter', 0, NULL, 0),
(24, 24, NULL, 'Native XML representation export', 'APP\\plugins\\importexport\\native\\filter\\ArticleGalleyNativeXmlFilter', 0, NULL, 0),
(25, 25, NULL, 'Native XML representation import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlArticleGalleyFilter', 0, NULL, 0),
(26, 26, NULL, 'Native XML Publication export', 'APP\\plugins\\importexport\\native\\filter\\PublicationNativeXmlFilter', 0, NULL, 0),
(27, 27, NULL, 'Native XML publication import', 'APP\\plugins\\importexport\\native\\filter\\NativeXmlPublicationFilter', 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=28 ;
--
-- Dumping data for table `filter_groups`
--
INSERT INTO `filter_groups` VALUES
(1, 'issue=>datacite-xml', 'plugins.importexport.datacite.displayName', 'plugins.importexport.datacite.description', 'class::classes.issue.Issue', 'xml::schema(http://schema.datacite.org/meta/kernel-4/metadata.xsd)'),
(2, 'article=>datacite-xml', 'plugins.importexport.datacite.displayName', 'plugins.importexport.datacite.description', 'class::classes.submission.Submission', 'xml::schema(http://schema.datacite.org/meta/kernel-4/metadata.xsd)'),
(3, 'galley=>datacite-xml', 'plugins.importexport.datacite.displayName', 'plugins.importexport.datacite.description', 'class::lib.pkp.classes.galley.Galley', 'xml::schema(http://schema.datacite.org/meta/kernel-4/metadata.xsd)'),
(4, 'issue=>crossref-xml', 'plugins.importexport.crossref.displayName', 'plugins.importexport.crossref.description', 'class::classes.issue.Issue[]', 'xml::schema(https://www.crossref.org/schemas/crossref5.4.0.xsd)'),
(5, 'article=>crossref-xml', 'plugins.importexport.crossref.displayName', 'plugins.importexport.crossref.description', 'class::classes.submission.Submission[]', 'xml::schema(https://www.crossref.org/schemas/crossref5.4.0.xsd)'),
(6, 'article=>dc11', 'plugins.metadata.dc11.articleAdapter.displayName', 'plugins.metadata.dc11.articleAdapter.description', 'class::classes.submission.Submission', 'metadata::APP\\plugins\\metadata\\dc11\\schema\\Dc11Schema(ARTICLE)'),
(7, 'article=>pubmed-xml', 'plugins.importexport.pubmed.displayName', 'plugins.importexport.pubmed.description', 'class::classes.submission.Submission[]', 'xml::dtd'),
(8, 'article=>doaj-xml', 'plugins.importexport.doaj.displayName', 'plugins.importexport.doaj.description', 'class::classes.submission.Submission[]', 'xml::schema(plugins/importexport/doaj/doajArticles.xsd)'),
(9, 'article=>doaj-json', 'plugins.importexport.doaj.displayName', 'plugins.importexport.doaj.description', 'class::classes.submission.Submission', 'primitive::string'),
(10, '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)'),
(11, '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[]'),
(12, '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)'),
(13, '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[]'),
(14, 'article=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.submission.Submission[]', 'xml::schema(plugins/importexport/native/native.xsd)'),
(15, 'native-xml=>article', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.submission.Submission[]'),
(16, 'issue=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.issue.Issue[]', 'xml::schema(plugins/importexport/native/native.xsd)'),
(17, 'native-xml=>issue', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.issue.Issue[]'),
(18, 'issuegalley=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.issue.IssueGalley[]', 'xml::schema(plugins/importexport/native/native.xsd)'),
(19, 'native-xml=>issuegalley', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.issue.IssueGalley[]'),
(20, 'author=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.author.Author[]', 'xml::schema(plugins/importexport/native/native.xsd)'),
(21, 'native-xml=>author', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.author.Author[]'),
(22, 'SubmissionFile=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::lib.pkp.classes.submissionFile.SubmissionFile', 'xml::schema(plugins/importexport/native/native.xsd)'),
(23, 'native-xml=>SubmissionFile', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::lib.pkp.classes.submissionFile.SubmissionFile[]'),
(24, 'article-galley=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::lib.pkp.classes.galley.Galley', 'xml::schema(plugins/importexport/native/native.xsd)'),
(25, 'native-xml=>ArticleGalley', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::lib.pkp.classes.galley.Galley[]'),
(26, 'publication=>native-xml', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'class::classes.publication.Publication', 'xml::schema(plugins/importexport/native/native.xsd)'),
(27, 'native-xml=>Publication', 'plugins.importexport.native.displayName', 'plugins.importexport.native.description', 'xml::schema(plugins/importexport/native/native.xsd)', 'class::classes.publication.Publication[]');
-- --------------------------------------------------------
--
-- 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 `institutional_subscriptions`
--
CREATE TABLE `institutional_subscriptions` (
`institutional_subscription_id` bigint(20) NOT NULL AUTO_INCREMENT,
`subscription_id` bigint(20) NOT NULL,
`institution_id` bigint(20) NOT NULL,
`mailing_address` varchar(255) DEFAULT NULL,
`domain` varchar(255) DEFAULT NULL,
PRIMARY KEY (`institutional_subscription_id`),
KEY `institutional_subscriptions_subscription_id` (`subscription_id`),
KEY `institutional_subscriptions_institution_id` (`institution_id`),
KEY `institutional_subscriptions_domain` (`domain`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of institutional subscriptions, linking a subscription with an institution.' 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 `issues`
--
CREATE TABLE `issues` (
`issue_id` bigint(20) NOT NULL AUTO_INCREMENT,
`journal_id` bigint(20) NOT NULL,
`volume` smallint(6) DEFAULT NULL,
`number` varchar(40) DEFAULT NULL,
`year` smallint(6) DEFAULT NULL,
`published` smallint(6) NOT NULL DEFAULT '0',
`date_published` datetime DEFAULT NULL,
`date_notified` datetime DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
`access_status` smallint(6) NOT NULL DEFAULT '1',
`open_access_date` datetime DEFAULT NULL,
`show_volume` smallint(6) NOT NULL DEFAULT '0',
`show_number` smallint(6) NOT NULL DEFAULT '0',
`show_year` smallint(6) NOT NULL DEFAULT '0',
`show_title` smallint(6) NOT NULL DEFAULT '0',
`style_file_name` varchar(90) DEFAULT NULL,
`original_style_file_name` varchar(255) DEFAULT NULL,
`url_path` varchar(64) DEFAULT NULL,
`doi_id` bigint(20) DEFAULT NULL,
PRIMARY KEY (`issue_id`),
KEY `issues_journal_id` (`journal_id`),
KEY `issues_doi_id` (`doi_id`),
KEY `issues_url_path` (`url_path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of all journal issues, with identifying information like year, number, volume, etc.' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `issue_files`
--
CREATE TABLE `issue_files` (
`file_id` bigint(20) NOT NULL AUTO_INCREMENT,
`issue_id` bigint(20) NOT NULL,
`file_name` varchar(90) NOT NULL,
`file_type` varchar(255) NOT NULL,
`file_size` bigint(20) NOT NULL,
`content_type` bigint(20) NOT NULL,
`original_file_name` varchar(127) DEFAULT NULL,
`date_uploaded` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`file_id`),
KEY `issue_files_issue_id` (`issue_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Relationships between issues and issue files, such as cover images.' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `issue_galleys`
--
CREATE TABLE `issue_galleys` (
`galley_id` bigint(20) NOT NULL AUTO_INCREMENT,
`locale` varchar(28) DEFAULT NULL,
`issue_id` bigint(20) NOT NULL,
`file_id` bigint(20) NOT NULL,
`label` varchar(255) DEFAULT NULL,
`seq` double NOT NULL DEFAULT '0',
`url_path` varchar(64) DEFAULT NULL,
PRIMARY KEY (`galley_id`),
KEY `issue_galleys_issue_id` (`issue_id`),
KEY `issue_galleys_file_id` (`file_id`),
KEY `issue_galleys_url_path` (`url_path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Issue galleys are representations of the entire issue in a single file, such as a complete issue PDF.' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `issue_galley_settings`
--
CREATE TABLE `issue_galley_settings` (
`issue_galley_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`galley_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 (`issue_galley_setting_id`),
UNIQUE KEY `issue_galley_settings_unique` (`galley_id`,`locale`,`setting_name`),
KEY `issue_galley_settings_galley_id` (`galley_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about issue galleys, including localized content such as labels.' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `issue_settings`
--
CREATE TABLE `issue_settings` (
`issue_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`issue_id` bigint(20) NOT NULL,
`locale` varchar(28) NOT NULL DEFAULT '',
`setting_name` varchar(255) NOT NULL,
`setting_value` mediumtext,
PRIMARY KEY (`issue_setting_id`),
UNIQUE KEY `issue_settings_unique` (`issue_id`,`locale`,`setting_name`),
KEY `issue_settings_issue_id` (`issue_id`),
KEY `issue_settings_name_value` (`setting_name`(50),`setting_value`(150))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about issues, including localized properties such as issue titles.' 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 `journals`
--
CREATE TABLE `journals` (
`journal_id` bigint(20) NOT NULL AUTO_INCREMENT,
`path` varchar(32) NOT NULL,
`seq` double NOT NULL DEFAULT '0' COMMENT 'Used to order lists of journals',
`primary_locale` varchar(28) NOT NULL,
`enabled` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Controls whether or not the journal is considered "live" and will appear on the website. (Note that disabled journals may still be accessible, but only if the user knows the URL.)',
`current_issue_id` bigint(20) DEFAULT NULL,
PRIMARY KEY (`journal_id`),
UNIQUE KEY `journals_path` (`path`),
KEY `journals_issue_id` (`current_issue_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of all journals in the installation of OJS.' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `journal_settings`
--
CREATE TABLE `journal_settings` (
`journal_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`journal_id` bigint(20) NOT NULL,
`locale` varchar(28) NOT NULL DEFAULT '',
`setting_name` varchar(255) NOT NULL,
`setting_value` mediumtext,
PRIMARY KEY (`journal_setting_id`),
UNIQUE KEY `journal_settings_unique` (`journal_id`,`locale`,`setting_name`),
KEY `journal_settings_journal_id` (`journal_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about journals, including localized properties like policies.' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 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 `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_investigations` int(11) NOT NULL,
`metric_investigations_unique` int(11) NOT NULL,
`metric_requests` int(11) NOT NULL,
`metric_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 galleys.' 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_investigations` int(11) NOT NULL,
`metric_investigations_unique` int(11) NOT NULL,
`metric_requests` int(11) NOT NULL,
`metric_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 `metrics_counter_submission_institution_daily_context_id` (`context_id`),
KEY `metrics_counter_submission_institution_daily_submission_id` (`submission_id`),
KEY `metrics_counter_submission_institution_daily_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_investigations` int(11) NOT NULL,
`metric_investigations_unique` int(11) NOT NULL,
`metric_requests` int(11) NOT NULL,
`metric_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 `metrics_counter_submission_institution_monthly_context_id` (`context_id`),
KEY `metrics_counter_submission_institution_monthly_submission_id` (`submission_id`),
KEY `metrics_counter_submission_institution_monthly_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_investigations` int(11) NOT NULL,
`metric_investigations_unique` int(11) NOT NULL,
`metric_requests` int(11) NOT NULL,
`metric_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 galleys.' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `metrics_issue`
--
CREATE TABLE `metrics_issue` (
`metrics_issue_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`load_id` varchar(50) NOT NULL,
`context_id` bigint(20) NOT NULL,
`issue_id` bigint(20) NOT NULL,
`issue_galley_id` bigint(20) DEFAULT NULL,
`date` date NOT NULL,
`metric` int(11) NOT NULL,
PRIMARY KEY (`metrics_issue_id`),
KEY `metrics_issue_load_id` (`load_id`),
KEY `metrics_issue_context_id` (`context_id`),
KEY `metrics_issue_issue_id` (`issue_id`),
KEY `metrics_issue_issue_galley_id` (`issue_galley_id`),
KEY `metrics_issue_context_id_issue_id` (`context_id`,`issue_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Daily statistics for views and downloads of published issues.' 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,
`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_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 galleys.' 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 galleys.' 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 galleys.' 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 `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=8 ;
--
-- 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, 'languagetoggleblockplugin', NULL, 'enabled', '1', 'bool'),
(7, 'languagetoggleblockplugin', NULL, 'seq', '4', 'int');
-- --------------------------------------------------------
--
-- Table structure for table `publications`
--
CREATE TABLE `publications` (
`publication_id` bigint(20) NOT NULL AUTO_INCREMENT,
`access_status` bigint(20) DEFAULT '0',
`date_published` date DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
`primary_contact_id` bigint(20) DEFAULT NULL,
`section_id` bigint(20) DEFAULT NULL,
`seq` double NOT NULL DEFAULT '0',
`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,
`issue_id` bigint(20) DEFAULT NULL,
PRIMARY KEY (`publication_id`),
KEY `publications_primary_contact_id` (`primary_contact_id`),
KEY `publications_section_id` (`section_id`),
KEY `publications_submission_id` (`submission_id`),
KEY `publications_doi_id` (`doi_id`),
KEY `publications_issue_id_index` (`issue_id`),
KEY `publications_url_path` (`url_path`)
) 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_galleys`
--
CREATE TABLE `publication_galleys` (
`galley_id` bigint(20) NOT NULL AUTO_INCREMENT,
`locale` varchar(28) DEFAULT NULL,
`publication_id` bigint(20) NOT NULL,
`label` varchar(255) DEFAULT NULL,
`submission_file_id` bigint(20) unsigned DEFAULT NULL,
`seq` double NOT NULL DEFAULT '0',
`remote_url` varchar(2047) DEFAULT NULL,
`is_approved` smallint(6) NOT NULL DEFAULT '0',
`url_path` varchar(64) DEFAULT NULL,
`doi_id` bigint(20) DEFAULT NULL,
PRIMARY KEY (`galley_id`),
KEY `publication_galleys_publication_id` (`publication_id`),
KEY `publication_galleys_submission_file_id` (`submission_file_id`),
KEY `publication_galleys_doi_id` (`doi_id`),
KEY `publication_galleys_url_path` (`url_path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Publication galleys are representations of a publication in a specific format, e.g. a PDF.' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `publication_galley_settings`
--
CREATE TABLE `publication_galley_settings` (
`publication_galley_setting_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`galley_id` bigint(20) NOT NULL,
`locale` varchar(28) NOT NULL DEFAULT '',
`setting_name` varchar(255) NOT NULL,
`setting_value` mediumtext,
PRIMARY KEY (`publication_galley_setting_id`),
UNIQUE KEY `publication_galley_settings_unique` (`galley_id`,`locale`,`setting_name`),
KEY `publication_galley_settings_galley_id` (`galley_id`),
KEY `publication_galley_settings_name_value` (`setting_name`(50),`setting_value`(150))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='More data about publication galleys, including localized content such as labels.' 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)),
KEY `publication_settings_publication_id` (`publication_id`)
) 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='Unfulfilled (queued) payments, i.e. payments that have not yet been completed via an online payment system.' 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/03qwghy04 Duran i Reynals Hospital'),
(3251, 'https://ror.org/02nvt4474', 'es', 1, 'https://ror.org/02nvt4474 Institute for Clinical Efectiveness and Health Policy Instituto de Efectividad Clínica y Sanitaria'),
(3252, 'https://ror.org/05gx19t11', 'en', 1, 'https://ror.org/05gx19t11 Evergreen Health Medical Center'),
(3253, 'https://ror.org/028d75n58', 'es', 1, 'https://ror.org/028d75n58 Hospital El Bierzo'),
(3254, 'https://ror.org/03atxgt72', 'en', 1, 'https://ror.org/03atxgt72 Coney Island Hospital'),
(3255, 'https://ror.org/02tse0z86', 'en', 1, 'https://ror.org/02tse0z86 Bryn Mawr Hospital'),
(3256, 'https://ror.org/01qdp7m73', 'en', 1, 'https://ror.org/01qdp7m73 Bryn Mawr Rehabilitation Hospital'),
(3257, 'https://ror.org/04qk4yf71', 'en', 1, 'https://ror.org/04qk4yf71 Conemaugh Memorial Medical Center'),
(3258, 'https://ror.org/0569bbe51', 'en', 1, 'https://ror.org/0569bbe51 Connecticut Mental Health Center'),
(3259, 'https://ror.org/02z8mgx68', 'en', 1, 'https://ror.org/02z8mgx68 Exempla Saint Joseph Hospital'),
(3260, 'https://ror.org/051fpt583', 'it', 1, 'https://ror.org/051fpt583 Ospedale Buccheri la Ferla Fatebenefratelli'),
(3261, 'https://ror.org/04e79zk25', 'en', 1, 'https://ror.org/04e79zk25 Institute for Medical Informatics and Biostatistics'),
(3262, 'https://ror.org/04dzhx486', 'en', 1, 'https://ror.org/04dzhx486 Exeter Hospital'),
(3263, 'https://ror.org/03bpc5f92', 'en', 1, 'https://ror.org/03bpc5f92 Institute for Medical Research'),
(3264, 'https://ror.org/0460a5x58', 'en', 1, 'https://ror.org/0460a5x58 Eugenides Hospital ΕΥΓΕΝΙΔΕΙΟ ΘΕΡΑΠΕΥΤΗΡΙΟ'),
(3265, 'https://ror.org/02bste653', 'it', 1, 'https://ror.org/02bste653 Ospedale “M. Bufalini” di Cesena'),
(3266, 'https://ror.org/00rzeqe23', 'en', 1, 'https://ror.org/00rzeqe23 Institut postgraduálního vzdělávání ve zdravotnictví Institute for Postgraduate Medical Education'),
(3267, 'https://ror.org/00eh7f421', 'no_lang_code', 1, 'https://ror.org/00eh7f421 E-Da Hospital'),
(3268, 'https://ror.org/02p9e5v87', 'en', 1, 'https://ror.org/02p9e5v87 Concord Hospital'),
(3269, 'https://ror.org/02s4j2a36', 'en', 1, 'https://ror.org/02s4j2a36 Conquest Hospital'),
(3270, 'https://ror.org/010bsbc18', 'pt', 1, 'https://ror.org/010bsbc18 Hospital Prof. Dr. Fernando Fonseca'),
(3271, 'https://ror.org/00tdzhd41', 'es', 1, 'https://ror.org/00tdzhd41 Hospital Fernández'),
(3272, 'https://ror.org/037r57b62', 'en', 1, 'https://ror.org/037r57b62 Buddhist Tzu Chi General Hospital'),
(3273, 'https://ror.org/03vzfth13', 'en', 1, 'https://ror.org/03vzfth13 Hospital for Special Care'),
(3274, 'https://ror.org/05gh0na70', 'en', 1, 'https://ror.org/05gh0na70 Jinnah Medical & Dental College'),
(3275, 'https://ror.org/00952fj37', 'en', 1, 'https://ror.org/00952fj37 Jinnah Postgraduate Medical Center'),
(3276, 'https://ror.org/03dwx1z96', 'en', 1, 'https://ror.org/03dwx1z96 Maulana Azad Medical College மௌலானா ஆசாத் மருத்துவக் கல்லூரி'),
(3277, 'https://ror.org/03efxpx82', 'it', 1, 'https://ror.org/03efxpx82 A. O. Ordine Mauriziano di Torino'),
(3278, 'https://ror.org/000bxzc63', 'en', 1, 'https://ror.org/000bxzc63 Max Planck Institute for Medical Research Max-Planck-Institut für Medizinische Forschung'),
(3279, 'https://ror.org/00hdf8e67', 'en', 1, 'https://ror.org/00hdf8e67 Jawaharlal Nehru Medical College'),
(3280, 'https://ror.org/02y5qtc81', 'pt', 1, 'https://ror.org/02y5qtc81 Hospital Infantil Joana de Gusmão'),
(3281, 'https://ror.org/05dm6kv37', 'en', 1, 'https://ror.org/05dm6kv37 Institute of Child and Mother Health'),
(3282, 'https://ror.org/047x96110', 'en', 1, 'https://ror.org/047x96110 Johannesburg Hospital'),
(3283, 'https://ror.org/04jq4p608', 'pt', 1, 'https://ror.org/04jq4p608 Hospital Garcia de Orta'),
(3284, 'https://ror.org/04ghtpd15', 'en', 1, 'https://ror.org/04ghtpd15 Institute of Child Health ινστιτούτο υγείας του παιδιού'),
(3285, 'https://ror.org/03yk5k102', 'en', 1, 'https://ror.org/03yk5k102 Institute of Child Health'),
(3286, 'https://ror.org/02z8t9146', 'en', 1, 'https://ror.org/02z8t9146 Mayo General Hospital'),
(3287, 'https://ror.org/02zzw8g45', 'en', 1, 'https://ror.org/02zzw8g45 Mayo Clinic Health System'),
(3288, 'https://ror.org/046jyn221', 'en', 1, 'https://ror.org/046jyn221 Mayo Hospital'),
(3289, 'https://ror.org/00f93yb19', 'en', 1, 'https://ror.org/00f93yb19 McKay Dee Hospital'),
(3290, 'https://ror.org/01cpcy908', 'en', 1, 'https://ror.org/01cpcy908 McLaren Regional Medical Center'),
(3291, 'https://ror.org/02wnfwq15', 'es', 1, 'https://ror.org/02wnfwq15 Hospital General Yagüe'),
(3292, 'https://ror.org/05megpp22', 'pt', 1, 'https://ror.org/05megpp22 Hospital Geral de Fortaleza'),
(3293, 'https://ror.org/0057s8s52', 'en', 1, 'https://ror.org/0057s8s52 John D. Dingell VA Medical Center'),
(3294, 'https://ror.org/0187t0j49', 'en', 1, 'https://ror.org/0187t0j49 John Hunter Hospital'),
(3295, 'https://ror.org/00mch1v74', 'en', 1, 'https://ror.org/00mch1v74 John Muir Medical Center'),
(3296, 'https://ror.org/047krn550', 'es', 1, 'https://ror.org/047krn550 Hospital César Milstein'),
(3297, 'https://ror.org/02j4j5k41', 'en', 1, 'https://ror.org/02j4j5k41 John Muir Health'),
(3298, 'https://ror.org/00se0qr64', 'en', 1, 'https://ror.org/00se0qr64 Summit Oaks Hospital'),
(3299, 'https://ror.org/01kvtm035', 'en', 1, 'https://ror.org/01kvtm035 South Australia Pathology'),
(3300, 'https://ror.org/01apd5369', 'en', 1, 'https://ror.org/01apd5369 John Paul II Hospital Krakowski Szpital Specjalistyczny im. Jana Pawła II'),
(3301, 'https://ror.org/04frzv033', 'en', 1, 'https://ror.org/04frzv033 Institute of Medical Biology'),
(3302, 'https://ror.org/04b0ry431', 'es', 1, 'https://ror.org/04b0ry431 Hospital General de Elda'),
(3303, 'https://ror.org/01cw77n16', 'en', 1, 'https://ror.org/01cw77n16 Fairfield Infectious Diseases Hospital'),
(3304, 'https://ror.org/03gd3wz76', 'en', 1, 'https://ror.org/03gd3wz76 Sher-i-Kashmir Institute of Medical Sciences شیرِ کشمیر انسٹیچیوٹ آف میڈیکل سائنسز'),
(3305, 'https://ror.org/0190kj665', 'es', 1, 'https://ror.org/0190kj665 Hospital General de Granollers'),
(3306, 'https://ror.org/02vzyrj94', 'en', 1, 'https://ror.org/02vzyrj94 Fairview Southdale Hospital'),
(3307, 'https://ror.org/009ek3139', 'en', 1, 'https://ror.org/009ek3139 Falun Hospital'),
(3308, 'https://ror.org/019tq3436', 'en', 1, 'https://ror.org/019tq3436 Far Eastern Memorial Hospital'),
(3309, 'https://ror.org/05fscjm95', 'en', 1, 'https://ror.org/05fscjm95 Jorvi Hospital Jorvin sairaala'),
(3310, 'https://ror.org/048hj2019', 'en', 1, 'https://ror.org/048hj2019 Joseph Brant Hospital'),
(3311, 'https://ror.org/04yb7hq57', 'en', 1, 'https://ror.org/04yb7hq57 Stavropol State Medical University Ставропольский государственный медицинский университет'),
(3312, 'https://ror.org/04c07bj87', 'en', 1, 'https://ror.org/04c07bj87 Institute of Mental Health'),
(3313, 'https://ror.org/0573hvw69', 'tr', 1, 'https://ror.org/0573hvw69 Farabi Hastanesi'),
(3314, 'https://ror.org/025q7sd17', 'es', 1, 'https://ror.org/025q7sd17 Hospital General Dr. Manuel Gea Gonzalez'),
(3315, 'https://ror.org/01akfrh45', 'no_lang_code', 1, 'https://ror.org/01akfrh45 Farwaniya Hospital مستشفى الفروانية'),
(3316, 'https://ror.org/00afgv297', 'es', 1, 'https://ror.org/00afgv297 Hospital General San Juan de Dios'),
(3317, 'https://ror.org/05dfzd836', 'es', 1, 'https://ror.org/05dfzd836 Hospital Universitario Infanta Sofía'),
(3318, 'https://ror.org/05v558c44', 'it', 1, 'https://ror.org/05v558c44 Azienda Ospedaliera Fatebenefratelli e Oftalmico'),
(3319, 'https://ror.org/01wcey047', 'en', 1, 'https://ror.org/01wcey047 Joseph Eye Hospital'),
(3320, 'https://ror.org/05nfzf209', 'es', 1, 'https://ror.org/05nfzf209 Hospital Universitario Infanta Leonor'),
(3321, 'https://ror.org/04mgjym08', 'en', 1, 'https://ror.org/04mgjym08 Institute of Occupational Medicine and Environmental Health Instytut Medycyny Pracy i Zdrowia Środowiskowego'),
(3322, 'https://ror.org/00ysvbp68', 'en', 1, 'https://ror.org/00ysvbp68 Institute of Post Graduate Medical Education and Research'),
(3323, 'https://ror.org/04t41ec74', 'en', 1, 'https://ror.org/04t41ec74 Father Muller Medical College Hospital फादर म्युलर मेडिकल कॉलेज பாதர் முல்லெர் மெடிக்கல் காலேஜ் ఫాదర్ ముల్లెర్ మెడికల్ కాలేజ్ ಫಾದೆರ್ ಮುಲ್ಲರ್ ಮೆಡಿಕಲ್ ಕಾಳಜ್ ഫാദർ മുള്ളെർ മെഡിക്കൽ കോളേജ്'),
(3324, 'https://ror.org/043p8z282', 'en', 1, 'https://ror.org/043p8z282 JR Tokyo General Hospital JR東京総合病院'),
(3325, 'https://ror.org/041wfjw90', 'en', 1, 'https://ror.org/041wfjw90 LungenClinic Grosshansdorf'),
(3326, 'https://ror.org/05v7bbe50', 'tr', 1, 'https://ror.org/05v7bbe50 Fatih Sultan Mehmet Eğitim Ve Araştırma Hastanesi'),
(3327, 'https://ror.org/051cp7s36', 'en', 1, 'https://ror.org/051cp7s36 Fatima Jinnah Medical University فاطمہ جناح میڈیکل کالج'),
(3328, 'https://ror.org/00bq4rw46', 'es', 1, 'https://ror.org/00bq4rw46 Hospital Italiano de Buenos Aires'),
(3329, 'https://ror.org/02zfrea47', 'en', 1, 'https://ror.org/02zfrea47 Nacionalni Inštitut za Javno Zdravje National Institute of Public Health'),
(3330, 'https://ror.org/02xf0fd83', 'en', 1, 'https://ror.org/02xf0fd83 JSS Medical College and Hospital'),
(3331, 'https://ror.org/014v12a39', 'es', 1, 'https://ror.org/014v12a39 Health Research Institute of the Hospital Clínico San Carlos Instituto de Investigación Sanitaria del Hospital Clínico San Carlos'),
(3332, 'https://ror.org/00tfedq56', 'en', 1, 'https://ror.org/00tfedq56 Center for Medical, Agricultural and Veterinary Entomology'),
(3333, 'https://ror.org/02hxrrn62', 'en', 1, 'https://ror.org/02hxrrn62 Interbalkan Medical Center Ιατρικό Διαβαλκανικό Κέντρο'),
(3334, 'https://ror.org/02yhdjx59', 'en', 1, 'https://ror.org/02yhdjx59 Interfaith Medical Center'),
(3335, 'https://ror.org/009c06z12', 'en', 1, 'https://ror.org/009c06z12 Intermountain Medical Center'),
(3336, 'https://ror.org/047b5av97', 'nl', 1, 'https://ror.org/047b5av97 Juliana Kinderziekenhuis'),
(3337, 'https://ror.org/01z8t1s57', 'en', 1, 'https://ror.org/01z8t1s57 International Center for Public Health'),
(3338, 'https://ror.org/04cepy814', 'es', 1, 'https://ror.org/04cepy814 Hospital Juárez de México'),
(3339, 'https://ror.org/024amfv85', 'en', 1, 'https://ror.org/024amfv85 Federal Agency for Health and Social Development Федеральное агентство по здравоохранению и социальному развитию'),
(3340, 'https://ror.org/04fwyqr44', 'en', 1, 'https://ror.org/04fwyqr44 International Goodwill Hospital 国際親善総合病院'),
(3341, 'https://ror.org/0416des07', 'es', 1, 'https://ror.org/0416des07 Hospital Universitario Lucus Augusti'),
(3342, 'https://ror.org/02k2v9264', 'es', 1, 'https://ror.org/02k2v9264 Hospital Luis Calvo Mackenna'),
(3343, 'https://ror.org/02k0t9a94', 'no_lang_code', 1, 'https://ror.org/02k0t9a94 Sankara Nethralaya'),
(3344, 'https://ror.org/03t0zwh35', 'en', 1, 'https://ror.org/03t0zwh35 International Women''s Health Coalition'),
(3345, 'https://ror.org/040f7tw31', 'no_lang_code', 1, 'https://ror.org/040f7tw31 Inuyama Chuo Hospital 犬山中央病院'),
(3346, 'https://ror.org/01s0phq15', 'en', 1, 'https://ror.org/01s0phq15 Inverclyde Royal Hospital'),
(3347, 'https://ror.org/04fpj6846', 'en', 1, 'https://ror.org/04fpj6846 Iowa Medical Society'),
(3348, 'https://ror.org/045dgap26', 'en', 1, 'https://ror.org/045dgap26 Iowa Methodist Medical Center'),
(3349, 'https://ror.org/003hjp881', 'pt', 1, 'https://ror.org/003hjp881 Hospital Madre Teresa'),
(3350, 'https://ror.org/01d012874', 'es', 1, 'https://ror.org/01d012874 Clínica La Luz Hospital La Luz'),
(3351, 'https://ror.org/02p74z057', 'en', 1, 'https://ror.org/02p74z057 K S Hegde Medical Academy'),
(3352, 'https://ror.org/05m3qrs33', 'en', 1, 'https://ror.org/05m3qrs33 Ipswich Hospital'),
(3353, 'https://ror.org/01bn4rh74', 'en', 1, 'https://ror.org/01bn4rh74 Heritage Valley Beaver'),
(3354, 'https://ror.org/00en92979', 'en', 1, 'https://ror.org/00en92979 Kaohsiung Municipal Kai-Syuan Psychiatric Hospital'),
(3355, 'https://ror.org/01sm4s887', 'en', 1, 'https://ror.org/01sm4s887 Bundesinstitut für gesundheitlichen Verbraucherschutz und Veterinärmedizin Federal Institute for Health Protection of Consumers and Veterinary Medicine'),
(3356, 'https://ror.org/029rx2040', 'en', 1, 'https://ror.org/029rx2040 Federal Medical Centre'),
(3357, 'https://ror.org/040yv4379', 'fi', 1, 'https://ror.org/040yv4379 Kainuun keskussairaala'),
(3358, 'https://ror.org/03e4nh963', 'en', 1, 'https://ror.org/03e4nh963 Federal Medical Centre');
INSERT INTO `rors` VALUES
(3359, 'https://ror.org/02g8ene02', 'en', 1, 'https://ror.org/02g8ene02 Federal Medical Centre'),
(3360, 'https://ror.org/05ybvz010', 'en', 1, 'https://ror.org/05ybvz010 Mater Dei Hospital'),
(3361, 'https://ror.org/01d59nd22', 'en', 1, 'https://ror.org/01d59nd22 Federal Ministry of Health وزارة الصحة الإتحادية'),
(3362, 'https://ror.org/04vccmr34', 'nl', 1, 'https://ror.org/04vccmr34 Medisch Centrum Alkmaar'),
(3363, 'https://ror.org/00btty905', 'en', 1, 'https://ror.org/00btty905 Ireland Army Community Hospital'),
(3364, 'https://ror.org/02cv4ah81', 'en', 1, 'https://ror.org/02cv4ah81 Ishikawa Prefectural Central Hospital 石川県立中央病院'),
(3365, 'https://ror.org/01pvgz545', 'no_lang_code', 1, 'https://ror.org/01pvgz545 Ishikiriseiki Hospital 石切生喜病院'),
(3366, 'https://ror.org/034xj0q80', 'en', 1, 'https://ror.org/034xj0q80 Orenburg State Medical Academy Оренбургский государственный медицинский университет'),
(3367, 'https://ror.org/03z6cqs20', 'es', 1, 'https://ror.org/03z6cqs20 Hospital Materno-Infantil'),
(3368, 'https://ror.org/04jca3284', 'es', 1, 'https://ror.org/04jca3284 Hospital Metropolitano'),
(3369, 'https://ror.org/02p47pe37', 'de', 1, 'https://ror.org/02p47pe37 Kaiser-Franz-Josef-Spital'),
(3370, 'https://ror.org/03n85hy63', 'es', 1, 'https://ror.org/03n85hy63 Hospital Militar Dr. Carlos Arvelo'),
(3371, 'https://ror.org/01qtc5416', 'en', 1, 'https://ror.org/01qtc5416 Federal Office of Public Health'),
(3372, 'https://ror.org/03j78my65', 'en', 1, 'https://ror.org/03j78my65 Kaiser Foundation Hospital'),
(3373, 'https://ror.org/058ydcm32', 'en', 1, 'https://ror.org/058ydcm32 Kaiser Foundation Hospital'),
(3374, 'https://ror.org/00yep6g06', 'en', 1, 'https://ror.org/00yep6g06 Kaiser Foundation Hospital'),
(3375, 'https://ror.org/00nwc4v84', 'tr', 1, 'https://ror.org/00nwc4v84 İstanbul Eğitim ve Araştırma Hastanesi'),
(3376, 'https://ror.org/00ym4dr28', 'pt', 1, 'https://ror.org/00ym4dr28 Hospital Militar Principal'),
(3377, 'https://ror.org/01cx2sj34', 'pl', 1, 'https://ror.org/01cx2sj34 Centrum Medyczne Kształcenia Podyplomowego'),
(3378, 'https://ror.org/0203evn05', 'en', 1, 'https://ror.org/0203evn05 Federation of American Hospitals'),
(3379, 'https://ror.org/040epzy68', 'en', 1, 'https://ror.org/040epzy68 Istanbul Memorial Hospital'),
(3380, 'https://ror.org/00spys463', 'en', 1, 'https://ror.org/00spys463 Los Angeles Medical Center'),
(3381, 'https://ror.org/009gqrs30', 'pt', 1, 'https://ror.org/009gqrs30 Hospital Moinhos de Vento'),
(3382, 'https://ror.org/04c1s4764', 'es', 1, 'https://ror.org/04c1s4764 Hospital Monte Naranco'),
(3383, 'https://ror.org/022a11m05', 'no_lang_code', 1, 'https://ror.org/022a11m05 Iwaki Kyoritsu General Hospital いわき共立総合病院'),
(3384, 'https://ror.org/03kcxpp45', 'en', 1, 'https://ror.org/03kcxpp45 Iwakuni Medical Center 岩国医療センター'),
(3385, 'https://ror.org/01xdjhe59', 'en', 1, 'https://ror.org/01xdjhe59 Iwata City Hospital 磐田市立総合病院'),
(3386, 'https://ror.org/03mx23f83', 'es', 1, 'https://ror.org/03mx23f83 Hospital Montecelo'),
(3387, 'https://ror.org/0495vrm88', 'es', 1, 'https://ror.org/0495vrm88 Hospital Municipal de Badalona'),
(3388, 'https://ror.org/00nz9t738', 'en', 1, 'https://ror.org/00nz9t738 Ferrarotto Hospital'),
(3389, 'https://ror.org/05y999856', 'pt', 1, 'https://ror.org/05y999856 Hospital Mãe de Deus'),
(3390, 'https://ror.org/047ypwv36', 'en', 1, 'https://ror.org/047ypwv36 Baghdad Medical City مدينة الطب'),
(3391, 'https://ror.org/04253q669', 'en', 1, 'https://ror.org/04253q669 Medical City Children''s Hospital'),
(3392, 'https://ror.org/03max4q92', 'tr', 1, 'https://ror.org/03max4q92 Izmir Atatürk Eğitim ve Araştırma Hastanesi'),
(3393, 'https://ror.org/028gzjv13', 'en', 1, 'https://ror.org/028gzjv13 Kaiser Permanente Center for Health Research'),
(3394, 'https://ror.org/00w93dg44', 'en', 1, 'https://ror.org/00w93dg44 Na Homolce Hospital Nemocnice Na Homolce'),
(3395, 'https://ror.org/02tdhvw55', 'tr', 1, 'https://ror.org/02tdhvw55 Fırat Üniversitesi Hastanesi'),
(3396, 'https://ror.org/02z7qcb63', 'tr', 1, 'https://ror.org/02z7qcb63 Izmir Bozyaka Eğitim ve Araştırma Hastanesi'),
(3397, 'https://ror.org/03jckbw05', 'en', 1, 'https://ror.org/03jckbw05 First Affiliated Hospital of Chengdu Medical College 成都医学院第一附属医院'),
(3398, 'https://ror.org/038h97h67', 'tr', 1, 'https://ror.org/038h97h67 Izmir Tepecik Eğitim ve Araştırma Hastanesi'),
(3399, 'https://ror.org/05rfek682', 'en', 1, 'https://ror.org/05rfek682 Kaiser Permanente Oakland Medical Center'),
(3400, 'https://ror.org/02cbk9w51', 'es', 1, 'https://ror.org/02cbk9w51 Hospital Nacional Dos de Mayo'),
(3401, 'https://ror.org/038yw9848', 'en', 1, 'https://ror.org/038yw9848 Kaiser Permanente Santa Clara Medical Center'),
(3402, 'https://ror.org/039713658', 'en', 1, 'https://ror.org/039713658 First Affiliated Hospital of Chinese PLA General Hospital 中国人民解放军总医院第一附属医院'),
(3403, 'https://ror.org/02fxsj090', 'en', 1, 'https://ror.org/02fxsj090 Kaiser Permanente San Francisco Medical Center'),
(3404, 'https://ror.org/00s5x0w83', 'es', 1, 'https://ror.org/00s5x0w83 Almirante Nef Naval Hospital Hospital Naval Almirante Nef'),
(3405, 'https://ror.org/017h1mj21', 'en', 1, 'https://ror.org/017h1mj21 Kaiser Permanente Hayward Medical Center'),
(3406, 'https://ror.org/052jt6v75', 'pl', 1, 'https://ror.org/052jt6v75 Wojewódzki Szpital Zespolony im. Jędrzeja Śniadeckiego'),
(3407, 'https://ror.org/00fg98b82', 'en', 1, 'https://ror.org/00fg98b82 Kaiser Permanente San Diego Medical Center'),
(3408, 'https://ror.org/02q404g62', 'en', 1, 'https://ror.org/02q404g62 Kaiser Permanente Sacramento Medical Center'),
(3409, 'https://ror.org/011mkef94', 'en', 1, 'https://ror.org/011mkef94 Kaiser Permanente Walnut Creek Medical Center'),
(3410, 'https://ror.org/02jw82j47', 'en', 1, 'https://ror.org/02jw82j47 Kaiser Permanente Fontana Medical Center'),
(3411, 'https://ror.org/00g3pqv36', 'en', 1, 'https://ror.org/00g3pqv36 First Affiliated Hospital of Jiangxi Medical College'),
(3412, 'https://ror.org/02r3xg590', 'en', 1, 'https://ror.org/02r3xg590 Kaiser Permanente Vallejo Medical Center'),
(3413, 'https://ror.org/01rabm487', 'pt', 1, 'https://ror.org/01rabm487 Hospital Nossa Senhora das Graças'),
(3414, 'https://ror.org/02g01ht84', 'en', 1, 'https://ror.org/02g01ht84 First Affiliated Hospital of Kunming Medical University'),
(3415, 'https://ror.org/047hxsy31', 'en', 1, 'https://ror.org/047hxsy31 Kaiser Permanente Anaheim Medical Center'),
(3416, 'https://ror.org/032qfz281', 'en', 1, 'https://ror.org/032qfz281 Kaiser Permanente South San Francisco Medical Center'),
(3417, 'https://ror.org/02y070a55', 'en', 1, 'https://ror.org/02y070a55 Jackson Memorial Hospital'),
(3418, 'https://ror.org/03cyvdv85', 'en', 1, 'https://ror.org/03cyvdv85 First Affiliated Hospital of Wenzhou Medical University'),
(3419, 'https://ror.org/02bz7vk34', 'en', 1, 'https://ror.org/02bz7vk34 Kaiser Permanente Redwood City Medical Center'),
(3420, 'https://ror.org/04kjpp702', 'en', 1, 'https://ror.org/04kjpp702 Kaiser Permanente Santa Rosa Medical Center'),
(3421, 'https://ror.org/0299ptp31', 'en', 1, 'https://ror.org/0299ptp31 Kaiser Permanente San Rafael Medical Center'),
(3422, 'https://ror.org/03gpsj088', 'en', 1, 'https://ror.org/03gpsj088 Jacobs Institute of Women''s Health'),
(3423, 'https://ror.org/01wgych27', 'en', 1, 'https://ror.org/01wgych27 Kaiser Permanente Riverside Medical Center'),
(3424, 'https://ror.org/02qqemj91', 'en', 1, 'https://ror.org/02qqemj91 Jaipur Golden Hospital'),
(3425, 'https://ror.org/01xereq81', 'en', 1, 'https://ror.org/01xereq81 Jamaica Hospital'),
(3426, 'https://ror.org/02sb3pg33', 'en', 1, 'https://ror.org/02sb3pg33 Kaleida Health'),
(3427, 'https://ror.org/05xmvmv34', 'es', 1, 'https://ror.org/05xmvmv34 Centro Sociosanitario Nuestra Señora del Pino'),
(3428, 'https://ror.org/00c099g34', 'en', 1, 'https://ror.org/00c099g34 First People''s Hospital of Yunnan Province 云南省第一人民医院'),
(3429, 'https://ror.org/03h5v7z82', 'en', 1, 'https://ror.org/03h5v7z82 Connolly Hospital Blanchardstown Ospidéal Uí Chonghaile, Baile Bhlainséir'),
(3430, 'https://ror.org/05d503a40', 'en', 1, 'https://ror.org/05d503a40 Iwate Prefectural Kamaishi Hospital'),
(3431, 'https://ror.org/01xg9pd38', 'en', 1, 'https://ror.org/01xg9pd38 Fitzgerald Health Education Associates'),
(3432, 'https://ror.org/04cewr321', 'en', 1, 'https://ror.org/04cewr321 University of Vermont Medical Center'),
(3433, 'https://ror.org/01gezbc84', 'en', 1, 'https://ror.org/01gezbc84 Japanese Red Cross Medical Center 日本赤十字社医療センター'),
(3434, 'https://ror.org/04rvms649', 'es', 1, 'https://ror.org/04rvms649 Hospital Nuestra Señora de Alarcos'),
(3435, 'https://ror.org/02z7dnx86', 'en', 1, 'https://ror.org/02z7dnx86 Japanese Red Cross Katsushika Maternity Hospital 日本赤十字社葛飾マタニティ病院'),
(3436, 'https://ror.org/004106086', 'en', 1, 'https://ror.org/004106086 Sendai Red Cross Hospital 仙台赤十字病院'),
(3437, 'https://ror.org/01jh1mm11', 'en', 1, 'https://ror.org/01jh1mm11 Istanbul Florence Nightingale Hospital İstanbul Florence Nightingale Hastanesi'),
(3438, 'https://ror.org/02n1cyj49', 'en', 1, 'https://ror.org/02n1cyj49 AdventHealth Orlando'),
(3439, 'https://ror.org/05ajyt645', 'en', 1, 'https://ror.org/05ajyt645 Japanese Red Cross Society Wakayama Medical Center 日本赤十字社和歌山医療センター'),
(3440, 'https://ror.org/00aqz8k66', 'en', 1, 'https://ror.org/00aqz8k66 Florida Hospital Cancer Institute'),
(3441, 'https://ror.org/022j3nr24', 'en', 1, 'https://ror.org/022j3nr24 Hospital central de Kamuzu Kamuzu Central Hospital'),
(3442, 'https://ror.org/048vjc278', 'en', 1, 'https://ror.org/048vjc278 AdventHealth Celebration'),
(3443, 'https://ror.org/03w5gm511', 'en', 1, 'https://ror.org/03w5gm511 Adventist University of Health Sciences'),
(3444, 'https://ror.org/022h0tq76', 'en', 1, 'https://ror.org/022h0tq76 Kanagawa Children''s Medical Center 神奈川県立こども医療センター'),
(3445, 'https://ror.org/02x2kaq51', 'en', 1, 'https://ror.org/02x2kaq51 Florida Medical Entomology Laboratory'),
(3446, 'https://ror.org/013wvjj62', 'en', 1, 'https://ror.org/013wvjj62 Yokohama Welfare Service Association'),
(3447, 'https://ror.org/01xar8k65', 'en', 1, 'https://ror.org/01xar8k65 Flower Hospital'),
(3448, 'https://ror.org/03ne66j56', 'en', 1, 'https://ror.org/03ne66j56 Flushing Hospital Medical Center'),
(3449, 'https://ror.org/01ec7xj20', 'en', 1, 'https://ror.org/01ec7xj20 Jaswant Rai Speciality Hospital'),
(3450, 'https://ror.org/01yytng49', 'en', 1, 'https://ror.org/01yytng49 Kanagawa Rehabilitation Hospital 神奈川リハビリテーション病院'),
(3451, 'https://ror.org/04qesyg82', 'en', 1, 'https://ror.org/04qesyg82 Medical Education Institute'),
(3452, 'https://ror.org/01a4d6k20', 'en', 1, 'https://ror.org/01a4d6k20 Jawaharlal Nehru Medical College'),
(3453, 'https://ror.org/00m8tc820', 'en', 1, 'https://ror.org/00m8tc820 Kanazawa Medical Center 金沢医療センター'),
(3454, 'https://ror.org/01616f936', 'en', 1, 'https://ror.org/01616f936 Jefferson College of Health Sciences'),
(3455, 'https://ror.org/05bq1qp94', 'en', 1, 'https://ror.org/05bq1qp94 Forrest General Hospital'),
(3456, 'https://ror.org/046w0kr18', 'it', 1, 'https://ror.org/046w0kr18 Azienda Ospedaliera Ospedale Civile di Legnano'),
(3457, 'https://ror.org/0228w5t68', 'en', 1, 'https://ror.org/0228w5t68 KK Women''s and Children''s Hospital'),
(3458, 'https://ror.org/04mm17p39', 'en', 1, 'https://ror.org/04mm17p39 Novant Health Forsyth Medical Center'),
(3459, 'https://ror.org/02vt4z508', 'en', 1, 'https://ror.org/02vt4z508 Jen-Ai Hospital 仁愛醫療財團法人'),
(3460, 'https://ror.org/05r6ndz30', 'en', 1, 'https://ror.org/05r6ndz30 Physicians for a National Health Program'),
(3461, 'https://ror.org/02vjsj444', 'en', 1, 'https://ror.org/02vjsj444 Fort Sanders Regional Medical Center'),
(3462, 'https://ror.org/02bqrry13', 'en', 1, 'https://ror.org/02bqrry13 Jerry L. Pettis Memorial VA Medical Center'),
(3463, 'https://ror.org/02srt1z47', 'en', 1, 'https://ror.org/02srt1z47 Kansai Electric Power Hospital 関西電力病院'),
(3464, 'https://ror.org/03fpqn433', 'es', 1, 'https://ror.org/03fpqn433 Hospital Juan Ramón Jiménez'),
(3465, 'https://ror.org/01wrc0z23', 'en', 1, 'https://ror.org/01wrc0z23 Jersey City Medical Center'),
(3466, 'https://ror.org/024ran220', 'en', 1, 'https://ror.org/024ran220 Kansai Rosai Hospital 関西ろうさい病院'),
(3467, 'https://ror.org/00qkhxq50', 'en', 1, 'https://ror.org/00qkhxq50 Jessa Hospital Jessa Ziekenhuis'),
(3468, 'https://ror.org/03wc8tg09', 'en', 1, 'https://ror.org/03wc8tg09 Jessop Hospital'),
(3469, 'https://ror.org/019krky16', 'en', 1, 'https://ror.org/019krky16 Medical Group Management Association'),
(3470, 'https://ror.org/01xngwb59', 'en', 1, 'https://ror.org/01xngwb59 Fortis Escorts Hospital'),
(3471, 'https://ror.org/02vxh6479', 'no_lang_code', 1, 'https://ror.org/02vxh6479 Fortis Hospital'),
(3472, 'https://ror.org/016c9ds94', 'en', 1, 'https://ror.org/016c9ds94 Kanagawa Prefectural Institute of Public Health 神奈川県衛生研究所'),
(3473, 'https://ror.org/05db3sk67', 'en', 1, 'https://ror.org/05db3sk67 New Jewish Home'),
(3474, 'https://ror.org/056t5qz59', 'no_lang_code', 1, 'https://ror.org/056t5qz59 Fortis Hospital'),
(3475, 'https://ror.org/01h2jcs31', 'en', 1, 'https://ror.org/01h2jcs31 Jewish Hospital'),
(3476, 'https://ror.org/04zbgcp34', 'no_lang_code', 1, 'https://ror.org/04zbgcp34 Kantar Health (United States)'),
(3477, 'https://ror.org/018s10n18', 'en', 1, 'https://ror.org/018s10n18 Jewish Hospital'),
(3478, 'https://ror.org/02tt4fr50', 'no_lang_code', 1, 'https://ror.org/02tt4fr50 Kanto Central Hospital 公立学校共済組合関東中央病院'),
(3479, 'https://ror.org/0008s4w86', 'en', 1, 'https://ror.org/0008s4w86 Piedmont Atlanta Hospital'),
(3480, 'https://ror.org/0285prp25', 'en', 1, 'https://ror.org/0285prp25 NTT Medical Center NTT東日本関東病院'),
(3481, 'https://ror.org/04j339g17', 'en', 1, 'https://ror.org/04j339g17 Tokyo Teishin Hospital 東京逓信病院'),
(3482, 'https://ror.org/05ejygc42', 'en', 1, 'https://ror.org/05ejygc42 Foundation for Advancement of International Medical Education and Research'),
(3483, 'https://ror.org/05brmpx55', 'en', 1, 'https://ror.org/05brmpx55 John F. Kennedy Medical Center'),
(3484, 'https://ror.org/0070ga397', 'en', 1, 'https://ror.org/0070ga397 John F. Kennedy Medical Center'),
(3485, 'https://ror.org/05npsb488', 'en', 1, 'https://ror.org/05npsb488 Foundation for Medical Research'),
(3486, 'https://ror.org/04h74qb21', 'en', 1, 'https://ror.org/04h74qb21 Pilgrim Hospital'),
(3487, 'https://ror.org/0356c4a29', 'en', 1, 'https://ror.org/0356c4a29 Läkemedelsverket Medical Products Agency'),
(3488, 'https://ror.org/01dspcb60', 'en', 1, 'https://ror.org/01dspcb60 Jiangxi Provincial People''s Hospital 江西省人民医院'),
(3489, 'https://ror.org/04tbm0m52', 'en', 1, 'https://ror.org/04tbm0m52 Pinderfields Hospital'),
(3490, 'https://ror.org/00jhae347', 'no_lang_code', 1, 'https://ror.org/00jhae347 Medical Protective'),
(3491, 'https://ror.org/054ezs277', 'en', 1, 'https://ror.org/054ezs277 Framingham Union Hospital'),
(3492, 'https://ror.org/02dr19631', 'en', 1, 'https://ror.org/02dr19631 Medical Radiological Research Center Медицинский радиологический научный центр'),
(3493, 'https://ror.org/04at0zw32', 'en', 1, 'https://ror.org/04at0zw32 Jichi Medical University Hospital 自治医科大学附属病院'),
(3494, 'https://ror.org/02afbf040', 'en', 1, 'https://ror.org/02afbf040 Karachi Medical and Dental College'),
(3495, 'https://ror.org/04nfc4n06', 'en', 1, 'https://ror.org/04nfc4n06 Franciscan Hospital for Children'),
(3496, 'https://ror.org/05q60vz69', 'en', 1, 'https://ror.org/05q60vz69 South African Medical Research Council'),
(3497, 'https://ror.org/00bxj7497', 'en', 1, 'https://ror.org/00bxj7497 Vidant Medical Center'),
(3498, 'https://ror.org/03j53f755', 'en', 1, 'https://ror.org/03j53f755 ''''Καραμανδάνειο'''' Γενικό Νοσοκομείο Παίδων Πατρών General Hospital Pediatric Karamandanio'),
(3499, 'https://ror.org/01xf83457', 'it', 1, 'https://ror.org/01xf83457 Azienda Ospedaliera San Gerardo'),
(3500, 'https://ror.org/01c2dee93', 'en', 1, 'https://ror.org/01c2dee93 Baystate Franklin Medical Center'),
(3501, 'https://ror.org/03d6dzy78', 'en', 1, 'https://ror.org/03d6dzy78 Karnataka Institute of Medical Sciences ಕರ್ನಾಟಕ ವೈದ್ಯಕೀಯ ವಿಜ್ಞಾನ ಸಂಸ್ಥೆ'),
(3502, 'https://ror.org/01509dj67', 'en', 1, 'https://ror.org/01509dj67 MedStar Franklin Square Medical Center'),
(3503, 'https://ror.org/051b68e86', 'en', 1, 'https://ror.org/051b68e86 Frankston Hospital'),
(3504, 'https://ror.org/04pr9pz75', 'it', 1, 'https://ror.org/04pr9pz75 Azienda Ospedaliera San Giovanni Addolorata San Giovanni Addolorata Hospital'),
(3505, 'https://ror.org/05aem0d44', 'en', 1, 'https://ror.org/05aem0d44 Francis Hospital Franziskus Hospital Bielefeld'),
(3506, 'https://ror.org/0321tdt28', 'it', 1, 'https://ror.org/0321tdt28 Ospedale San Giovanni Antica Sede'),
(3507, 'https://ror.org/055bpw879', 'en', 1, 'https://ror.org/055bpw879 MRC Cognition and Brain Sciences Unit'),
(3508, 'https://ror.org/046vje122', 'en', 1, 'https://ror.org/046vje122 MRC Biostatistics Unit'),
(3509, 'https://ror.org/015nth639', 'en', 1, 'https://ror.org/015nth639 MRC Cancer Unit'),
(3510, 'https://ror.org/0300pwe30', 'it', 1, 'https://ror.org/0300pwe30 Ospedale San Giovanni Bosco'),
(3511, 'https://ror.org/00fk0yb75', 'en', 1, 'https://ror.org/00fk0yb75 Plastic Surgery Hospital'),
(3512, 'https://ror.org/00d264c35', 'en', 1, 'https://ror.org/00d264c35 Frederiksberg Hospital'),
(3513, 'https://ror.org/00cdwy346', 'en', 1, 'https://ror.org/00cdwy346 Freeman Hospital'),
(3514, 'https://ror.org/00q5txg88', 'en', 1, 'https://ror.org/00q5txg88 Plains Health Centre'),
(3515, 'https://ror.org/050pqs331', 'en', 1, 'https://ror.org/050pqs331 MRC Human Nutrition Research'),
(3516, 'https://ror.org/052578691', 'en', 1, 'https://ror.org/052578691 MRC Epidemiology Unit'),
(3517, 'https://ror.org/05qe0pv23', 'no_lang_code', 1, 'https://ror.org/05qe0pv23 Kashiwa Municipal Hospital 柏市立柏病院'),
(3518, 'https://ror.org/03z8x2j90', 'en', 1, 'https://ror.org/03z8x2j90 Frenchay Hospital'),
(3519, 'https://ror.org/02pb4g840', 'tr', 1, 'https://ror.org/02pb4g840 Bahriye Merkez Hastanesi Kasımpaşa Asker Hastanesi'),
(3520, 'https://ror.org/044sjfg03', 'en', 1, 'https://ror.org/044sjfg03 Frere Hospital'),
(3521, 'https://ror.org/025wfj672', 'en', 1, 'https://ror.org/025wfj672 MRC Unit the Gambia'),
(3522, 'https://ror.org/056pbvy42', 'it', 1, 'https://ror.org/056pbvy42 Ospedale di Monfalcone'),
(3523, 'https://ror.org/00mbsbt95', 'it', 1, 'https://ror.org/00mbsbt95 Ospedale San Giovanni Bellinzona'),
(3524, 'https://ror.org/05362x394', 'en', 1, 'https://ror.org/05362x394 MRC Toxicology Unit'),
(3525, 'https://ror.org/021jxzw96', 'it', 1, 'https://ror.org/021jxzw96 Azienda Ospedaliera S.Giuseppe Moscati'),
(3526, 'https://ror.org/01mvmmg68', 'en', 1, 'https://ror.org/01mvmmg68 San Jacinto Methodist Hospital'),
(3527, 'https://ror.org/057s4cx47', 'no_lang_code', 1, 'https://ror.org/057s4cx47 Katsumata Hospital 勝又病院'),
(3528, 'https://ror.org/03k6ngg59', 'en', 1, 'https://ror.org/03k6ngg59 Friarage Hospital'),
(3529, 'https://ror.org/03jd4q354', 'it', 1, 'https://ror.org/03jd4q354 Ospedale G.B. Morgagni - L.Pierantoni'),
(3530, 'https://ror.org/02r2pcs39', 'en', 1, 'https://ror.org/02r2pcs39 Polyclinic Medical Center'),
(3531, 'https://ror.org/011hz4254', 'en', 1, 'https://ror.org/011hz4254 CRUK/MRC Oxford Institute for Radiation Oncology'),
(3532, 'https://ror.org/03zzvtn22', 'de', 1, 'https://ror.org/03zzvtn22 Klinikum im Friedrichshain'),
(3533, 'https://ror.org/02f4tsf92', 'en', 1, 'https://ror.org/02f4tsf92 MRC Centre for Reproductive Health'),
(3534, 'https://ror.org/00tcmr651', 'en', 1, 'https://ror.org/00tcmr651 Kathmandu Medical College Teaching Hospital'),
(3535, 'https://ror.org/03ay8b853', 'en', 1, 'https://ror.org/03ay8b853 Police General Hospital โรงพยาบาลตำรวจ'),
(3536, 'https://ror.org/0026m8b31', 'it', 1, 'https://ror.org/0026m8b31 Ospedale San Paolo'),
(3537, 'https://ror.org/00bpn0984', 'it', 1, 'https://ror.org/00bpn0984 Ospedale San Paolo'),
(3538, 'https://ror.org/0504y0m80', 'en', 1, 'https://ror.org/0504y0m80 Polyclinic General Hospital'),
(3539, 'https://ror.org/03cfz7739', 'no_lang_code', 1, 'https://ror.org/03cfz7739 Kawasaki Hospital 川崎病院'),
(3540, 'https://ror.org/03kkr2s40', 'en', 1, 'https://ror.org/03kkr2s40 Pondicherry Institute of Medical Sciences'),
(3541, 'https://ror.org/01nhrc260', 'en', 1, 'https://ror.org/01nhrc260 Froedtert Hospital'),
(3542, 'https://ror.org/00cd86r95', 'en', 1, 'https://ror.org/00cd86r95 Frontier Medical College فرنٹیئر میڈیکل کالج'),
(3543, 'https://ror.org/0112t7451', 'en', 1, 'https://ror.org/0112t7451 Presidio Ospedaliero San Salvatore - Pesaro San Salvatore Hospital'),
(3544, 'https://ror.org/00fb7mg36', 'no_lang_code', 1, 'https://ror.org/00fb7mg36 San-ikukai Hospital 賛育会病院'),
(3545, 'https://ror.org/025bm0k33', 'no_lang_code', 1, 'https://ror.org/025bm0k33 Kawasaki Municipal Hospital 川崎市立川崎病院'),
(3546, 'https://ror.org/01aw2gs83', 'en', 1, 'https://ror.org/01aw2gs83 Nagasaki Kawatana Medical Center 国立病院機構長崎川棚医療センター'),
(3547, 'https://ror.org/058ms9w43', 'en', 1, 'https://ror.org/058ms9w43 Fujian Provincial Cancer Hospital 福建省肿瘤医院'),
(3548, 'https://ror.org/0596qfc35', 'en', 1, 'https://ror.org/0596qfc35 Kaweah Delta Health Care District'),
(3549, 'https://ror.org/009x1kj44', 'pl', 1, 'https://ror.org/009x1kj44 University Children’s Hospital Uniwersytecki Szpital Dziecięcy'),
(3550, 'https://ror.org/03hj7dq77', 'it', 1, 'https://ror.org/03hj7dq77 Ospedale Sandro Pertini'),
(3551, 'https://ror.org/04aw32z04', 'en', 1, 'https://ror.org/04aw32z04 Poriya Medical Center בית חולים ברוך פדה'),
(3552, 'https://ror.org/02ysppy04', 'tr', 1, 'https://ror.org/02ysppy04 Kayseri Eğitim ve Araştırma Hastanesi'),
(3553, 'https://ror.org/047asq971', 'en', 1, 'https://ror.org/047asq971 Medical Research Institute of New Zealand'),
(3554, 'https://ror.org/02jwvs344', 'en', 1, 'https://ror.org/02jwvs344 Port Moresby General Hospital'),
(3555, 'https://ror.org/04dd5bw95', 'en', 1, 'https://ror.org/04dd5bw95 Fujisawa City Hospital 藤沢市民病院'),
(3556, 'https://ror.org/01r3kd649', 'tr', 1, 'https://ror.org/01r3kd649 S.B. Keçiören Eğitim ve Araştırma Hastanesi'),
(3557, 'https://ror.org/03w44ff23', 'en', 1, 'https://ror.org/03w44ff23 Brigham and Women''s Faulkner Hospital'),
(3558, 'https://ror.org/01ej92a17', 'en', 1, 'https://ror.org/01ej92a17 Sandviken Hospital Sandviken sykehus'),
(3559, 'https://ror.org/006qqk144', 'no_lang_code', 1, 'https://ror.org/006qqk144 Fukui Prefectural Hospital 福井県立病院'),
(3560, 'https://ror.org/04wmhsz10', 'en', 1, 'https://ror.org/04wmhsz10 Sandwell General Hospital'),
(3561, 'https://ror.org/04hzsfs96', 'en', 1, 'https://ror.org/04hzsfs96 Hôpital adventiste porter Porter Adventist Hospital'),
(3562, 'https://ror.org/045exnh37', 'no_lang_code', 1, 'https://ror.org/045exnh37 Portiuncula Hospital'),
(3563, 'https://ror.org/00kx7fe64', 'en', 1, 'https://ror.org/00kx7fe64 Fukui Red Cross Hospital 福井赤十字病院'),
(3564, 'https://ror.org/006y27614', 'en', 1, 'https://ror.org/006y27614 Keesler Medical Center'),
(3565, 'https://ror.org/0422nk691', 'no_lang_code', 1, 'https://ror.org/0422nk691 Fukujuji Hospital 複十字病院'),
(3566, 'https://ror.org/03b982x90', 'en', 1, 'https://ror.org/03b982x90 Post Graduate Medical Institute'),
(3567, 'https://ror.org/02w3g4478', 'en', 1, 'https://ror.org/02w3g4478 Keller Army Community Hospital'),
(3568, 'https://ror.org/00drynx17', 'en', 1, 'https://ror.org/00drynx17 Fukuoka Institute of Health and Environmental Sciences 福岡県保健環境研究所'),
(3569, 'https://ror.org/01j25h453', 'en', 1, 'https://ror.org/01j25h453 Kelowna General Hospital'),
(3570, 'https://ror.org/05cqhmv85', 'en', 1, 'https://ror.org/05cqhmv85 SangStat Medical Corporation'),
(3571, 'https://ror.org/010zy0m59', 'en', 1, 'https://ror.org/010zy0m59 Kemerovo State Medical Academy Кемеровская государственная медицинская академия'),
(3572, 'https://ror.org/04pcmf738', 'en', 1, 'https://ror.org/04pcmf738 Kempegowda Institute of Medical Sciences ಕೆಂಪೇಗೌಡ ವೈದ್ಯಕೀಯ ವಿಜ್ಞಾನ ಸಂಸ್ಥೆ'),
(3573, 'https://ror.org/00vv7qz60', 'no_lang_code', 1, 'https://ror.org/00vv7qz60 Fukuoka Hospital 福岡病院'),
(3574, 'https://ror.org/04rx0dh54', 'en', 1, 'https://ror.org/04rx0dh54 Sansum Medical Clinic'),
(3575, 'https://ror.org/03zvd4s03', 'en', 1, 'https://ror.org/03zvd4s03 WellStar Kennestone Hospital'),
(3576, 'https://ror.org/038c5sp60', 'en', 1, 'https://ror.org/038c5sp60 Poudre Valley Hospital'),
(3577, 'https://ror.org/022mjvt30', 'en', 1, 'https://ror.org/022mjvt30 Japanese Red Cross Fukuoka Hospital 福岡赤十字病院'),
(3578, 'https://ror.org/02p23ar50', 'en', 1, 'https://ror.org/02p23ar50 Kent and Canterbury Hospital'),
(3579, 'https://ror.org/014haym76', 'no_lang_code', 1, 'https://ror.org/014haym76 Fukuoka Tokushukai Hospital 福岡徳洲会病院'),
(3580, 'https://ror.org/05ne4t757', 'en', 1, 'https://ror.org/05ne4t757 Kent and Sussex Hospital'),
(3581, 'https://ror.org/027xnsa83', 'no_lang_code', 1, 'https://ror.org/027xnsa83 Prapokklao Hospital โรงพยาบาลพระปกเกล้า'),
(3582, 'https://ror.org/03x295n29', 'no_lang_code', 1, 'https://ror.org/03x295n29 Sant Parmanand Hospital'),
(3583, 'https://ror.org/02y0wc381', 'en', 1, 'https://ror.org/02y0wc381 Pravara Institute of Medical Sciences'),
(3584, 'https://ror.org/04b787h29', 'en', 1, 'https://ror.org/04b787h29 Santa Barbara Cottage Hospital'),
(3585, 'https://ror.org/03fgkzb55', 'en', 1, 'https://ror.org/03fgkzb55 Novant Health Presbyterian Medical Center'),
(3586, 'https://ror.org/01kcq3761', 'en', 1, 'https://ror.org/01kcq3761 Kent Hospital'),
(3587, 'https://ror.org/033dfb770', 'en', 1, 'https://ror.org/033dfb770 Fukuyama Cardiovascular Hospital 福山循環器病院'),
(3588, 'https://ror.org/0599zba67', 'tr', 1, 'https://ror.org/0599zba67 Kent Hastanesi Kent Hospital'),
(3589, 'https://ror.org/026r1ac43', 'no_lang_code', 1, 'https://ror.org/026r1ac43 Fukuyama City Hospital 福山市民病院'),
(3590, 'https://ror.org/01ym47j46', 'en', 1, 'https://ror.org/01ym47j46 Fulbourn Hospital'),
(3591, 'https://ror.org/02cpwdj94', 'en', 1, 'https://ror.org/02cpwdj94 Kerala Institute of Medical Sciences'),
(3592, 'https://ror.org/048nj0621', 'en', 1, 'https://ror.org/048nj0621 Fulton County Medical Examiner''s Office'),
(3593, 'https://ror.org/05k07p323', 'en', 1, 'https://ror.org/05k07p323 Texas Health Dallas'),
(3594, 'https://ror.org/02nycs597', 'en', 1, 'https://ror.org/02nycs597 Funabashi Municipal Medical Center 船橋市立医療センター'),
(3595, 'https://ror.org/00n2w1t65', 'en', 1, 'https://ror.org/00n2w1t65 Presbyterian Hospital'),
(3596, 'https://ror.org/01by1qv45', 'en', 1, 'https://ror.org/01by1qv45 Santa Casa Hospital'),
(3597, 'https://ror.org/01fvnb423', 'en', 1, 'https://ror.org/01fvnb423 Presbyterian Medical Center 예수병원'),
(3598, 'https://ror.org/01e4z3q24', 'en', 1, 'https://ror.org/01e4z3q24 Priest Hospital โรงพยาบาลสงฆ์'),
(3599, 'https://ror.org/053hkmn05', 'en', 1, 'https://ror.org/053hkmn05 Primary Children''s Hospital'),
(3600, 'https://ror.org/05ydecq02', 'en', 1, 'https://ror.org/05ydecq02 Urho Kaleva Kekkonen Institute'),
(3601, 'https://ror.org/05w6fx554', 'ro', 1, 'https://ror.org/05w6fx554 Institutul Clinic Fundeni'),
(3602, 'https://ror.org/01eyb5f38', 'en', 1, 'https://ror.org/01eyb5f38 Kern Medical Center'),
(3603, 'https://ror.org/02v7qv571', 'en', 1, 'https://ror.org/02v7qv571 Santa Clara Valley Medical Center'),
(3604, 'https://ror.org/01d261e32', 'en', 1, 'https://ror.org/01d261e32 Furness General Hospital'),
(3605, 'https://ror.org/02cetwy62', 'en', 1, 'https://ror.org/02cetwy62 Prince Charles Hospital'),
(3606, 'https://ror.org/05jse4442', 'it', 1, 'https://ror.org/05jse4442 Ospedale Santa Corona'),
(3607, 'https://ror.org/05hs7nx69', 'en', 1, 'https://ror.org/05hs7nx69 Social Insurance Futase Hospital 社会保険 二瀬病院'),
(3608, 'https://ror.org/05efbh861', 'en', 1, 'https://ror.org/05efbh861 Prince Charles Hospital'),
(3609, 'https://ror.org/01hy1ab69', 'en', 1, 'https://ror.org/01hy1ab69 Michigan Surgical Hospital'),
(3610, 'https://ror.org/01e2avb80', 'en', 1, 'https://ror.org/01e2avb80 Prince George''s Hospital Center'),
(3611, 'https://ror.org/00z0xmg52', 'it', 1, 'https://ror.org/00z0xmg52 Ospedale Santa Maria alle Scotte Santa Maria alle Scotte Hospital'),
(3612, 'https://ror.org/05xysjr32', 'en', 1, 'https://ror.org/05xysjr32 Kessler Institute for Rehabilitation'),
(3613, 'https://ror.org/032kmqj66', 'en', 1, 'https://ror.org/032kmqj66 Kettering General Hospital'),
(3614, 'https://ror.org/022arq532', 'en', 1, 'https://ror.org/022arq532 Prince of Wales Hospital'),
(3615, 'https://ror.org/01zmw6f28', 'it', 1, 'https://ror.org/01zmw6f28 Ospedale Santa Maria Annunziata'),
(3616, 'https://ror.org/02ze5w302', 'en', 1, 'https://ror.org/02ze5w302 Tufts Children''s Hospital'),
(3617, 'https://ror.org/02827ca86', 'en', 1, 'https://ror.org/02827ca86 Prince of Wales Hospital'),
(3618, 'https://ror.org/00akdyv48', 'en', 1, 'https://ror.org/00akdyv48 Centre médical de kettering Kettering Medical Center'),
(3619, 'https://ror.org/02cjhb354', 'it', 1, 'https://ror.org/02cjhb354 Azienda Ospedaliera Santa Maria Degli Angeli'),
(3620, 'https://ror.org/03yb8aa18', 'it', 1, 'https://ror.org/03yb8aa18 Ospedale Santa Maria della Misericordia di Rovigo'),
(3621, 'https://ror.org/04h687w28', 'no_lang_code', 1, 'https://ror.org/04h687w28 Khalili Hospital بیمارستان خلیلی'),
(3622, 'https://ror.org/05wc95s05', 'en', 1, 'https://ror.org/05wc95s05 Khoo Teck Puat Hospital'),
(3623, 'https://ror.org/02v6ptf51', 'no_lang_code', 1, 'https://ror.org/02v6ptf51 Khoula Hospital مستشفى خولة'),
(3624, 'https://ror.org/02b68mf79', 'it', 1, 'https://ror.org/02b68mf79 Ospedale Santa Maria'),
(3625, 'https://ror.org/05xswp225', 'en', 1, 'https://ror.org/05xswp225 Khulna Medical College খুলনা মেডিকেল কলেজ'),
(3626, 'https://ror.org/011p8xd65', 'en', 1, 'https://ror.org/011p8xd65 Prince Philip Dental Hospital 菲臘牙科醫院'),
(3627, 'https://ror.org/01vr7z878', 'en', 1, 'https://ror.org/01vr7z878 Khyber Medical College'),
(3628, 'https://ror.org/029gr6k74', 'en', 1, 'https://ror.org/029gr6k74 Medical Society of Delaware'),
(3629, 'https://ror.org/01233dh94', 'en', 1, 'https://ror.org/01233dh94 Prince Philip Hospital'),
(3630, 'https://ror.org/04xnzxv25', 'en', 1, 'https://ror.org/04xnzxv25 Khyber Teaching Hospital'),
(3631, 'https://ror.org/02yjksy18', 'en', 1, 'https://ror.org/02yjksy18 Princess Anne Hospital'),
(3632, 'https://ror.org/01cyv3m84', 'en', 1, 'https://ror.org/01cyv3m84 Ospedale di Santa Maria Nuova Santa Maria Nuova Hospital'),
(3633, 'https://ror.org/053vhdz56', 'en', 1, 'https://ror.org/053vhdz56 Ospedale di Santa Maria Nuova Santa Maria Nuova Hospital'),
(3634, 'https://ror.org/001hsnn10', 'en', 1, 'https://ror.org/001hsnn10 Medical Technology and Practice Patterns Institute'),
(3635, 'https://ror.org/04va7bx33', 'en', 1, 'https://ror.org/04va7bx33 Killingbeck'),
(3636, 'https://ror.org/03zayce58', 'en', 1, 'https://ror.org/03zayce58 Princess Margaret Cancer Centre'),
(3637, 'https://ror.org/05cvd2j85', 'pt', 1, 'https://ror.org/05cvd2j85 Hospital de Santa Marta'),
(3638, 'https://ror.org/02h6j4611', 'en', 1, 'https://ror.org/02h6j4611 Princess Margaret Hospital'),
(3639, 'https://ror.org/01mpngw81', 'en', 1, 'https://ror.org/01mpngw81 Government Kilpauk Medical College கீழ்பாக்கம் மருத்துவக் கல்லூரி'),
(3640, 'https://ror.org/04vq5kb54', 'en', 1, 'https://ror.org/04vq5kb54 UCLA Medical Center'),
(3641, 'https://ror.org/032298f51', 'it', 1, 'https://ror.org/032298f51 Azienda Ospedaliera Sant''Andrea'),
(3642, 'https://ror.org/05atemp08', 'en', 1, 'https://ror.org/05atemp08 MedStar Health'),
(3643, 'https://ror.org/00n1w4965', 'en', 1, 'https://ror.org/00n1w4965 MedStar Union Memorial Hospital'),
(3644, 'https://ror.org/01jckan13', 'en', 1, 'https://ror.org/01jckan13 Kin-ikyo Chuo Hospital 勤医協中央病院'),
(3645, 'https://ror.org/05ry42w04', 'en', 1, 'https://ror.org/05ry42w04 MedStar Washington Hospital Center'),
(3646, 'https://ror.org/010d4kb47', 'it', 1, 'https://ror.org/010d4kb47 Ospedale Sant''Anna'),
(3647, 'https://ror.org/0560xr487', 'en', 1, 'https://ror.org/0560xr487 DR. B.R.A. Institute Rotary Cancer Hospital'),
(3648, 'https://ror.org/03n3pz732', 'en', 1, 'https://ror.org/03n3pz732 Medwin Hospital'),
(3649, 'https://ror.org/01zbhpb91', 'en', 1, 'https://ror.org/01zbhpb91 Meenakshi Ammal Dental College and Hospital'),
(3650, 'https://ror.org/05dhw1e18', 'no_lang_code', 1, 'https://ror.org/05dhw1e18 Kinan Hospital'),
(3651, 'https://ror.org/01ha5h612', 'en', 1, 'https://ror.org/01ha5h612 Princess Margaret Rose Orthopaedic Hospital'),
(3652, 'https://ror.org/02rn1w290', 'en', 1, 'https://ror.org/02rn1w290 Princess Mary Maternity Hospital'),
(3653, 'https://ror.org/01xrsrd14', 'en', 1, 'https://ror.org/01xrsrd14 Meenakshi Mission Hospital and Research Centre'),
(3654, 'https://ror.org/01jj26143', 'it', 1, 'https://ror.org/01jj26143 Hospital of the Holy Spirit Ospedale di Santo Spirito Ospedale di Santo Spirito in Sassia'),
(3655, 'https://ror.org/0463dsf87', 'no_lang_code', 1, 'https://ror.org/0463dsf87 G. Papanikolaou General Hospital'),
(3656, 'https://ror.org/01a1mbs69', 'en', 1, 'https://ror.org/01a1mbs69 Princess of Wales Hospital'),
(3657, 'https://ror.org/04pc7j325', 'en', 1, 'https://ror.org/04pc7j325 Meir Medical Center מרכז רפואי מאיר'),
(3658, 'https://ror.org/0573ts924', 'en', 1, 'https://ror.org/0573ts924 Princess Royal Hospital'),
(3659, 'https://ror.org/04cjdzt83', 'en', 1, 'https://ror.org/04cjdzt83 King Abdulaziz Hospital مستشفى الملك عبدالعزي'),
(3660, 'https://ror.org/00jy5cn48', 'en', 1, 'https://ror.org/00jy5cn48 Meitan General Hospital 煤炭总医院'),
(3661, 'https://ror.org/009djsq06', 'en', 1, 'https://ror.org/009djsq06 King Abdulaziz Medical City مدينة الملك عبد العزيز الطبية للحرس الوطني'),
(3662, 'https://ror.org/03mfyz684', 'en', 1, 'https://ror.org/03mfyz684 King County Medical Examiner''s Office'),
(3663, 'https://ror.org/00cmfmh53', 'it', 1, 'https://ror.org/00cmfmh53 Azienda Ospedaliera G.Rummo'),
(3664, 'https://ror.org/021bj7008', 'no_lang_code', 1, 'https://ror.org/021bj7008 Meitetsu Hospital 名鉄病院'),
(3665, 'https://ror.org/00ns3e792', 'en', 1, 'https://ror.org/00ns3e792 King Edward Memorial Hospital'),
(3666, 'https://ror.org/01dszvc69', 'en', 1, 'https://ror.org/01dszvc69 Sapporo Azabu Neurosurgical Hospital 札幌麻生脳神経外科病院'),
(3667, 'https://ror.org/053eyjs84', 'en', 1, 'https://ror.org/053eyjs84 Princess Royal Maternity Hospital'),
(3668, 'https://ror.org/03n60ms07', 'it', 1, 'https://ror.org/03n60ms07 Ospedale G.F. Ingrassia'),
(3669, 'https://ror.org/0222df516', 'en', 1, 'https://ror.org/0222df516 Probity Medical Research'),
(3670, 'https://ror.org/02ycvrx49', 'en', 1, 'https://ror.org/02ycvrx49 Program for Appropriate Technology in Health'),
(3671, 'https://ror.org/05afnhv08', 'en', 1, 'https://ror.org/05afnhv08 Sapporo National Hospital 国立病院機構北海道がんセンター'),
(3672, 'https://ror.org/00z1vyk43', 'en', 1, 'https://ror.org/00z1vyk43 King Fahd Armed Forces Hospital مستشفى الملك فهد للقوات المسلحة'),
(3673, 'https://ror.org/04y2gp806', 'en', 1, 'https://ror.org/04y2gp806 King Fahad Central Hospital مستشفى الملك فهد المركزي بجازان'),
(3674, 'https://ror.org/04whfy367', 'en', 1, 'https://ror.org/04whfy367 Memorial Hospital of South Bend'),
(3675, 'https://ror.org/02atdvd89', 'en', 1, 'https://ror.org/02atdvd89 Sarasota Memorial Hospital'),
(3676, 'https://ror.org/02r2tq059', 'en', 1, 'https://ror.org/02r2tq059 Saraswati Dental College and Hospital'),
(3677, 'https://ror.org/01m1gv240', 'en', 1, 'https://ror.org/01m1gv240 King Fahad Specialist Hospital مستشفى الملك فهد التخصصي'),
(3678, 'https://ror.org/01y946378', 'en', 1, 'https://ror.org/01y946378 Hospital Umum Sarawak Sarawak General Hospital'),
(3679, 'https://ror.org/0099kc363', 'en', 1, 'https://ror.org/0099kc363 Sardar Patel Medical College'),
(3680, 'https://ror.org/02jbzrw51', 'en', 1, 'https://ror.org/02jbzrw51 Gallup Indian Medical Center'),
(3681, 'https://ror.org/04npss011', 'en', 1, 'https://ror.org/04npss011 Gandhi Medical College गांधी चिकित्सा महाविद्यालय, भोपाल గాంధీ వైద్య కళాశాల'),
(3682, 'https://ror.org/00hx9k210', 'en', 1, 'https://ror.org/00hx9k210 Sasebo City General Hospital 佐世保市総合医療センター'),
(3683, 'https://ror.org/05v55dh34', 'en', 1, 'https://ror.org/05v55dh34 Memorial Hospital'),
(3684, 'https://ror.org/03r56rv89', 'en', 1, 'https://ror.org/03r56rv89 King Edward VIII Hospital'),
(3685, 'https://ror.org/04e7bpp71', 'no_lang_code', 1, 'https://ror.org/04e7bpp71 King Fahad Hospital Hufūf'),
(3686, 'https://ror.org/04ws1n245', 'en', 1, 'https://ror.org/04ws1n245 King Fahad Hospital Jeddah مستشفى الملك فهد بجدة'),
(3687, 'https://ror.org/05jhpk184', 'en', 1, 'https://ror.org/05jhpk184 Memorial Hospital'),
(3688, 'https://ror.org/01c524129', 'en', 1, 'https://ror.org/01c524129 King Fahd Military Medical Complex'),
(3689, 'https://ror.org/01q6hrg49', 'it', 1, 'https://ror.org/01q6hrg49 Ospedale Garibaldi'),
(3690, 'https://ror.org/02hxrag63', 'en', 1, 'https://ror.org/02hxrag63 Memorial Medical Center'),
(3691, 'https://ror.org/00tkrd758', 'en', 1, 'https://ror.org/00tkrd758 Gartnavel General Hospital'),
(3692, 'https://ror.org/020rvjj03', 'en', 1, 'https://ror.org/020rvjj03 Satakunta Central Hospital'),
(3693, 'https://ror.org/04k820v98', 'en', 1, 'https://ror.org/04k820v98 Saudi Aramco Medical Services Organization'),
(3694, 'https://ror.org/01b3dvp57', 'en', 1, 'https://ror.org/01b3dvp57 Garvan Institute of Medical Research'),
(3695, 'https://ror.org/023hj8v22', 'en', 1, 'https://ror.org/023hj8v22 Memorial Hospital'),
(3696, 'https://ror.org/05n0wgt02', 'en', 1, 'https://ror.org/05n0wgt02 King Faisal Specialist Hospital & Research Centre مستشفى الملك فيصل التخصصي'),
(3697, 'https://ror.org/00nyr7p12', 'en', 1, 'https://ror.org/00nyr7p12 Gauhati Medical College and Hospital গৌহাটী চিকিৎসা মহাবিদ্যালয়'),
(3698, 'https://ror.org/04wpmby09', 'en', 1, 'https://ror.org/04wpmby09 Memorial Regional Hospital'),
(3699, 'https://ror.org/01fksx040', 'en', 1, 'https://ror.org/01fksx040 Gaustad Hospital Gaustad Sykehus'),
(3700, 'https://ror.org/05jytgw54', 'en', 1, 'https://ror.org/05jytgw54 Gay Men''s Health Crisis'),
(3701, 'https://ror.org/027ry4q41', 'en', 1, 'https://ror.org/027ry4q41 Miller Children''s & Women''s Hospital'),
(3702, 'https://ror.org/01xnhkz22', 'en', 1, 'https://ror.org/01xnhkz22 Scarborough General Hospital'),
(3703, 'https://ror.org/05j82jr52', 'en', 1, 'https://ror.org/05j82jr52 Gaylord Hospital'),
(3704, 'https://ror.org/00x396v48', 'en', 1, 'https://ror.org/00x396v48 Mendota Mental Health Institute'),
(3705, 'https://ror.org/00f4kgf41', 'en', 1, 'https://ror.org/00f4kgf41 Gaziantep Children''s Hospital Gaziantep Çocuk Hastanesi'),
(3706, 'https://ror.org/05x3tq720', 'en', 1, 'https://ror.org/05x3tq720 Mennonite Christian Hospital 門諾醫院'),
(3707, 'https://ror.org/00qp1n828', 'en', 1, 'https://ror.org/00qp1n828 King George Hospital'),
(3708, 'https://ror.org/02r4khx44', 'en', 1, 'https://ror.org/02r4khx44 King Hussein Medical Center مدينة الحسين الطبية'),
(3709, 'https://ror.org/050b05p79', 'en', 1, 'https://ror.org/050b05p79 Sriram Chandra Bhanja Medical College Hospital ଶ୍ରୀରାମ ଚନ୍ଦ୍ର ଭଞ୍ଜ ଭେଷଜ ମହାବିଦ୍ୟାଳୟ'),
(3710, 'https://ror.org/00ajg8537', 'tr', 1, 'https://ror.org/00ajg8537 Gaziantep Onkoloji Hastanesi'),
(3711, 'https://ror.org/00b7zsw47', 'de', 1, 'https://ror.org/00b7zsw47 Klinik Schillerhöhe'),
(3712, 'https://ror.org/05a7hcs31', 'en', 1, 'https://ror.org/05a7hcs31 Providence Health & Services Oregon and Southwest Washington'),
(3713, 'https://ror.org/053vynf43', 'en', 1, 'https://ror.org/053vynf43 King Khaled Hospital مستشفى الملك خالد'),
(3714, 'https://ror.org/02dmc4h32', 'en', 1, 'https://ror.org/02dmc4h32 Providence St. Vincent Medical Center'),
(3715, 'https://ror.org/026n33e29', 'en', 1, 'https://ror.org/026n33e29 Cohen Children''s Medical Center'),
(3716, 'https://ror.org/03tp0ty93', 'en', 1, 'https://ror.org/03tp0ty93 Geha Mental Health Center המרכז לבריאות הנפש גהה'),
(3717, 'https://ror.org/03j9npf54', 'en', 1, 'https://ror.org/03j9npf54 Geisinger Medical Center'),
(3718, 'https://ror.org/03apjks92', 'en', 1, 'https://ror.org/03apjks92 Martin Luther King, Jr. Multi-Service Ambulatory Care Center'),
(3719, 'https://ror.org/01k05jx47', 'en', 1, 'https://ror.org/01k05jx47 Mercy Catholic Medical Center'),
(3720, 'https://ror.org/04580ts27', 'en', 1, 'https://ror.org/04580ts27 Geisinger Wyoming Valley Medical Center'),
(3721, 'https://ror.org/02emy8e21', 'en', 1, 'https://ror.org/02emy8e21 Kings County Hospital Center'),
(3722, 'https://ror.org/016nh4b93', 'en', 1, 'https://ror.org/016nh4b93 Mercy Children''s Hospital'),
(3723, 'https://ror.org/04bt00m07', 'en', 1, 'https://ror.org/04bt00m07 Mercy General Hospital'),
(3724, 'https://ror.org/02sxmkm79', 'en', 1, 'https://ror.org/02sxmkm79 Mercy Hospital'),
(3725, 'https://ror.org/004cj7n30', 'en', 1, 'https://ror.org/004cj7n30 King''s Cross Hospital'),
(3726, 'https://ror.org/05wyncb52', 'en', 1, 'https://ror.org/05wyncb52 Kings Mill Hospital'),
(3727, 'https://ror.org/03zq81960', 'en', 1, 'https://ror.org/03zq81960 Hôpital général de kingston Kingston General Hospital'),
(3728, 'https://ror.org/05275vm15', 'en', 1, 'https://ror.org/05275vm15 Gelre Hospitals Gelre Ziekenhuizen'),
(3729, 'https://ror.org/05xh86w23', 'en', 1, 'https://ror.org/05xh86w23 Gastroenterology Medical Center and Hospital'),
(3730, 'https://ror.org/008xr7e22', 'en', 1, 'https://ror.org/008xr7e22 Mercy Health System'),
(3731, 'https://ror.org/04g2hhm55', 'en', 1, 'https://ror.org/04g2hhm55 Birmingham General Hospital'),
(3732, 'https://ror.org/01bt82v32', 'en', 1, 'https://ror.org/01bt82v32 Northern Light Mercy Hospital'),
(3733, 'https://ror.org/058s20p71', 'en', 1, 'https://ror.org/058s20p71 Public Health Foundation of India భారత ప్రజారోగ్య సమాఖ్య'),
(3734, 'https://ror.org/04ar23e02', 'en', 1, 'https://ror.org/04ar23e02 Kingston Hospital'),
(3735, 'https://ror.org/00tta1k37', 'en', 1, 'https://ror.org/00tta1k37 Folktandvården Västra Götaland Public Dental Service Västra Götaland'),
(3736, 'https://ror.org/02vgb0r89', 'en', 1, 'https://ror.org/02vgb0r89 Kinki Central Hospital 近畿中央病院'),
(3737, 'https://ror.org/01xm3qq33', 'de', 1, 'https://ror.org/01xm3qq33 Schulthess-Klinik'),
(3738, 'https://ror.org/05na1sz60', 'en', 1, 'https://ror.org/05na1sz60 Mercy Medical Center'),
(3739, 'https://ror.org/04zzqmk94', 'en', 1, 'https://ror.org/04zzqmk94 Kintampo Health Research Centre'),
(3740, 'https://ror.org/021x6km63', 'en', 1, 'https://ror.org/021x6km63 Kirwan Health Campus'),
(3741, 'https://ror.org/01ch4qb51', 'en', 1, 'https://ror.org/01ch4qb51 Mercy Hospital for Women'),
(3742, 'https://ror.org/0404efv41', 'en', 1, 'https://ror.org/0404efv41 Mercy Medical Center'),
(3743, 'https://ror.org/01jhgy173', 'en', 1, 'https://ror.org/01jhgy173 Kishiwada City Hospital 市立岸和田市民病院'),
(3744, 'https://ror.org/009raxq57', 'en', 1, 'https://ror.org/009raxq57 Mercy Medical Center'),
(3745, 'https://ror.org/051525m98', 'en', 1, 'https://ror.org/051525m98 Mercy Medical Center'),
(3746, 'https://ror.org/05gn4hz56', 'no_lang_code', 1, 'https://ror.org/05gn4hz56 Kishiwada Tokushukai Hospital 岸和田徳洲会病院'),
(3747, 'https://ror.org/02yxyvn23', 'en', 1, 'https://ror.org/02yxyvn23 Mercy Medical Center North Iowa'),
(3748, 'https://ror.org/0322p7317', 'en', 1, 'https://ror.org/0322p7317 Kitakyushu Municipal Medical Center 北九州市立医療センター'),
(3749, 'https://ror.org/0057da036', 'en', 1, 'https://ror.org/0057da036 Mercy San Juan Medical Center'),
(3750, 'https://ror.org/04x1z3t86', 'en', 1, 'https://ror.org/04x1z3t86 Mercy St. Vincent Medical Center'),
(3751, 'https://ror.org/05rsbck92', 'no_lang_code', 1, 'https://ror.org/05rsbck92 Kitano Hospital 北野病院'),
(3752, 'https://ror.org/020wf1g18', 'en', 1, 'https://ror.org/020wf1g18 Huron Hospital'),
(3753, 'https://ror.org/04cb32210', 'en', 1, 'https://ror.org/04cb32210 Scottish Rite Hospital'),
(3754, 'https://ror.org/02npavb70', 'en', 1, 'https://ror.org/02npavb70 Shimane Prefectural Institute of Public Health and Environmental Sciences 島根県保健環境科学研究所'),
(3755, 'https://ror.org/03vd2y814', 'en', 1, 'https://ror.org/03vd2y814 Kitasato University Medical Center 北里大学メディカルセンター'),
(3756, 'https://ror.org/025z8ah66', 'en', 1, 'https://ror.org/025z8ah66 Public Health Ontario Santé publique Ontario'),
(3757, 'https://ror.org/01z719741', 'en', 1, 'https://ror.org/01z719741 Scripps Clinic Medical Group'),
(3758, 'https://ror.org/01dpw6893', 'en', 1, 'https://ror.org/01dpw6893 Scripps Memorial Hospital'),
(3759, 'https://ror.org/01w756144', 'en', 1, 'https://ror.org/01w756144 Meriter Hospital'),
(3760, 'https://ror.org/02cqyyd50', 'en', 1, 'https://ror.org/02cqyyd50 Nottingham General Hospital'),
(3761, 'https://ror.org/04d9g9604', 'en', 1, 'https://ror.org/04d9g9604 Sankt Hans Hospital'),
(3762, 'https://ror.org/00c9syb98', 'en', 1, 'https://ror.org/00c9syb98 Merlin Park University Hospital'),
(3763, 'https://ror.org/050th9p79', 'en', 1, 'https://ror.org/050th9p79 Scunthorpe General Hospital'),
(3764, 'https://ror.org/03zeamg24', 'no_lang_code', 1, 'https://ror.org/03zeamg24 Kobe Asahi Hospital 神戸朝日病院'),
(3765, 'https://ror.org/04zmppn46', 'en', 1, 'https://ror.org/04zmppn46 Public Health Solutions'),
(3766, 'https://ror.org/03jd3cd78', 'en', 1, 'https://ror.org/03jd3cd78 Kobe Children''s Hospital 兵庫県立こども病院'),
(3767, 'https://ror.org/05av4b478', 'en', 1, 'https://ror.org/05av4b478 Sri Dharmasthala Manjunatheshwara College of Dental Sciences & Hospital'),
(3768, 'https://ror.org/00vmr1p37', 'en', 1, 'https://ror.org/00vmr1p37 Seacroft Hospital'),
(3769, 'https://ror.org/02byvdx91', 'en', 1, 'https://ror.org/02byvdx91 Kobe Rosai Hospital 神戸労災病院'),
(3770, 'https://ror.org/0466c1b11', 'en', 1, 'https://ror.org/0466c1b11 Kobe City Medical Center West Hospital 神戸市立医療センター西市民病院'),
(3771, 'https://ror.org/05819fq78', 'en', 1, 'https://ror.org/05819fq78 Punjab Institute of Medical Sciences'),
(3772, 'https://ror.org/00gdcs242', 'en', 1, 'https://ror.org/00gdcs242 MESA Hospital Mesa Hastanesi'),
(3773, 'https://ror.org/04hbpw172', 'en', 1, 'https://ror.org/04hbpw172 Punjab Medical College'),
(3774, 'https://ror.org/057ft1y03', 'no_lang_code', 1, 'https://ror.org/057ft1y03 Kochi Municipal Central Hospital 高知県立中央病院'),
(3775, 'https://ror.org/03v7hnv07', 'no_lang_code', 1, 'https://ror.org/03v7hnv07 Metaxa Hospital'),
(3776, 'https://ror.org/028jmfg90', 'it', 1, 'https://ror.org/028jmfg90 Ospedale Koelliker'),
(3777, 'https://ror.org/05eb9pt23', 'en', 1, 'https://ror.org/05eb9pt23 Methodist Dallas Medical Center'),
(3778, 'https://ror.org/03psk2k71', 'sl', 1, 'https://ror.org/03psk2k71 Splošna Bolnišnica Celje'),
(3779, 'https://ror.org/007xcwj53', 'de', 1, 'https://ror.org/007xcwj53 Klinikum Klagenfurt'),
(3780, 'https://ror.org/037y5zq83', 'en', 1, 'https://ror.org/037y5zq83 Kolding Hospital'),
(3781, 'https://ror.org/02s8jk784', 'en', 1, 'https://ror.org/02s8jk784 PVS Memorial Hospital'),
(3782, 'https://ror.org/04929s478', 'en', 1, 'https://ror.org/04929s478 NewYork–Presbyterian Brooklyn Methodist Hospital'),
(3783, 'https://ror.org/05dtqka83', 'hu', 1, 'https://ror.org/05dtqka83 Békés Megyei Központi Kórház'),
(3784, 'https://ror.org/02j7h9426', 'no_lang_code', 1, 'https://ror.org/02j7h9426 Komagino Hospital 駒木野病院'),
(3785, 'https://ror.org/031maes79', 'en', 1, 'https://ror.org/031maes79 Second Affiliated Hospital of Chengdu University of Traditional Chinese 成都中医药大学'),
(3786, 'https://ror.org/01kq6mv68', 'en', 1, 'https://ror.org/01kq6mv68 Second Affiliated Hospital of Kunming Medical College 昆明医科大学第二附属医院'),
(3787, 'https://ror.org/02sz71d65', 'en', 1, 'https://ror.org/02sz71d65 Methodist Hospital'),
(3788, 'https://ror.org/04nrs5002', 'en', 1, 'https://ror.org/04nrs5002 Helen Joseph Hospital'),
(3789, 'https://ror.org/03384k835', 'en', 1, 'https://ror.org/03384k835 Tokushima Red Cross Hospital 徳島赤十字病院'),
(3790, 'https://ror.org/043eknq26', 'en', 1, 'https://ror.org/043eknq26 General Hospital of Nikea Γενικό Νοσοκομείο Νίκαιας'),
(3791, 'https://ror.org/05ks08368', 'en', 1, 'https://ror.org/05ks08368 Komfo Anokye Teaching Hospital'),
(3792, 'https://ror.org/020rayx20', 'tr', 1, 'https://ror.org/020rayx20 Konya Eğitim ve Araştırma Hastanesi'),
(3793, 'https://ror.org/005h65c20', 'en', 1, 'https://ror.org/005h65c20 Metropolitan Hospital Center'),
(3794, 'https://ror.org/004qj2391', 'es', 1, 'https://ror.org/004qj2391 Hospital General De Segovia'),
(3795, 'https://ror.org/01c5cqy87', 'en', 1, 'https://ror.org/01c5cqy87 General Hospital of Serres Γενικό Νοσοκομείο Σερρών');
INSERT INTO `rors` VALUES
(3796, 'https://ror.org/02s3xyj47', 'en', 1, 'https://ror.org/02s3xyj47 Qatif Central Hospital مستشفى القطيف المركزي'),
(3797, 'https://ror.org/0513nfd47', 'en', 1, 'https://ror.org/0513nfd47 Kootenai Medical Center'),
(3798, 'https://ror.org/0340t0585', 'en', 1, 'https://ror.org/0340t0585 General Hospital of Shenyang Military Region 中国人民解放军沈阳军区总医院'),
(3799, 'https://ror.org/0071a2k97', 'en', 1, 'https://ror.org/0071a2k97 Queen Elizabeth II Medical Centre'),
(3800, 'https://ror.org/035n3nf68', 'en', 1, 'https://ror.org/035n3nf68 Security Forces Hospital'),
(3801, 'https://ror.org/02kxeh053', 'no_lang_code', 1, 'https://ror.org/02kxeh053 Veria General Hospital Γενικό Νοσοκομείο Ημαθίας'),
(3802, 'https://ror.org/00a8tg325', 'en', 1, 'https://ror.org/00a8tg325 Korea Institute of Radiological and Medical Sciences 한국 방사선 과학 연구소'),
(3803, 'https://ror.org/05bpnne23', 'en', 1, 'https://ror.org/05bpnne23 MetroWest Medical Center'),
(3804, 'https://ror.org/02jqapy19', 'en', 1, 'https://ror.org/02jqapy19 Qingdao Municipal Hospital'),
(3805, 'https://ror.org/04rha3g10', 'en', 1, 'https://ror.org/04rha3g10 Queen Alexandra Hospital'),
(3806, 'https://ror.org/01r2n9849', 'en', 1, 'https://ror.org/01r2n9849 Saint John''s Hospital'),
(3807, 'https://ror.org/01pxg9d10', 'en', 1, 'https://ror.org/01pxg9d10 Meyer Children''s Hospital'),
(3808, 'https://ror.org/02t3sfp68', 'en', 1, 'https://ror.org/02t3sfp68 Sejong General Hospital 세종 병원'),
(3809, 'https://ror.org/05jr18655', 'en', 1, 'https://ror.org/05jr18655 Self-Defense Forces Central Hospital 自衛隊中央病院'),
(3810, 'https://ror.org/0243t3259', 'en', 1, 'https://ror.org/0243t3259 Militair Hospitaal Koningin Astrid Queen Astrid Military Hospital'),
(3811, 'https://ror.org/01zc7k534', 'no_lang_code', 1, 'https://ror.org/01zc7k534 Koga Hospital 古賀病院'),
(3812, 'https://ror.org/041jyhr41', 'en', 1, 'https://ror.org/041jyhr41 Selly Oak Hospital'),
(3813, 'https://ror.org/02y0x4c78', 'en', 1, 'https://ror.org/02y0x4c78 General Leonard Wood Army Community Hospital'),
(3814, 'https://ror.org/00qdsfq65', 'en', 1, 'https://ror.org/00qdsfq65 Korea National Institute of Health'),
(3815, 'https://ror.org/03wff9w51', 'en', 1, 'https://ror.org/03wff9w51 Sema Hastanesi Sema Hospital'),
(3816, 'https://ror.org/02vn5as77', 'nl', 1, 'https://ror.org/02vn5as77 Streekziekenhuis Koningin Beatrix'),
(3817, 'https://ror.org/00hb4yd20', 'en', 1, 'https://ror.org/00hb4yd20 MGMA Health Care Consulting Group'),
(3818, 'https://ror.org/048d1b238', 'en', 1, 'https://ror.org/048d1b238 Miami Children''s Hospital'),
(3819, 'https://ror.org/025sthg37', 'en', 1, 'https://ror.org/025sthg37 Queen Elizabeth Central Hospital'),
(3820, 'https://ror.org/01vzp6a32', 'en', 1, 'https://ror.org/01vzp6a32 Korle Bu Teaching Hospital'),
(3821, 'https://ror.org/01xxd6b82', 'en', 1, 'https://ror.org/01xxd6b82 Kosair Children''s Hospital'),
(3822, 'https://ror.org/05vchgv90', 'no_lang_code', 1, 'https://ror.org/05vchgv90 Kouseiren Takaoka Hospital 厚生連高岡病院'),
(3823, 'https://ror.org/04bm03037', 'en', 1, 'https://ror.org/04bm03037 Genesis Medical Center'),
(3824, 'https://ror.org/02n22cc74', 'en', 1, 'https://ror.org/02n22cc74 Koshigaya Municipal Hospital 越谷市立病院'),
(3825, 'https://ror.org/03snrmr61', 'en', 1, 'https://ror.org/03snrmr61 Genesys Regional Medical Center'),
(3826, 'https://ror.org/02kexp407', 'en', 1, 'https://ror.org/02kexp407 Miami Valley Hospital'),
(3827, 'https://ror.org/05ee2qy47', 'en', 1, 'https://ror.org/05ee2qy47 Queen Elizabeth Hospital'),
(3828, 'https://ror.org/045rd3583', 'no_lang_code', 1, 'https://ror.org/045rd3583 Koto Hospital 江東病院'),
(3829, 'https://ror.org/05yevkn97', 'en', 1, 'https://ror.org/05yevkn97 Sendai Kousei Hospital 仙台厚生病院'),
(3830, 'https://ror.org/025ny1854', 'en', 1, 'https://ror.org/025ny1854 George Eliot Hospital'),
(3831, 'https://ror.org/01b1r6152', 'en', 1, 'https://ror.org/01b1r6152 Kowloon Hospital 九龍醫院'),
(3832, 'https://ror.org/010bdq555', 'en', 1, 'https://ror.org/010bdq555 Michigan Health Council'),
(3833, 'https://ror.org/015dyrs73', 'en', 1, 'https://ror.org/015dyrs73 Queen Elizabeth Hospital'),
(3834, 'https://ror.org/003m0tv02', 'en', 1, 'https://ror.org/003m0tv02 Michigan Public Health Institute'),
(3835, 'https://ror.org/01d00rw04', 'en', 1, 'https://ror.org/01d00rw04 KPC Medical College and Hospital কেপিসি মেডিকাল কলেজ ও কে এস রায় টিবি হাসপাতাল'),
(3836, 'https://ror.org/032q2fe98', 'en', 1, 'https://ror.org/032q2fe98 Michigan State Medical Society'),
(3837, 'https://ror.org/03fwxcd28', 'en', 1, 'https://ror.org/03fwxcd28 Sentara Norfolk General Hospital'),
(3838, 'https://ror.org/002yfn631', 'en', 1, 'https://ror.org/002yfn631 Kuakini Medical Center'),
(3839, 'https://ror.org/01k5k4m02', 'en', 1, 'https://ror.org/01k5k4m02 Jan Evangelista Purkyně Military Medical Academy'),
(3840, 'https://ror.org/001yjqf23', 'en', 1, 'https://ror.org/001yjqf23 Kuang Tien General Hospital 光田綜合醫院'),
(3841, 'https://ror.org/04k1cm432', 'en', 1, 'https://ror.org/04k1cm432 Saint Luke''s Hospital'),
(3842, 'https://ror.org/03npxtg86', 'en', 1, 'https://ror.org/03npxtg86 Queen Elizabeth Hospital'),
(3843, 'https://ror.org/05rbwvc13', 'en', 1, 'https://ror.org/05rbwvc13 Queen Elizabeth Hospital'),
(3844, 'https://ror.org/04y3ze847', 'en', 1, 'https://ror.org/04y3ze847 Ospidéal na hOllscoile, Luimneach University Hospital Limerick'),
(3845, 'https://ror.org/00f9c2f73', 'en', 1, 'https://ror.org/00f9c2f73 GF Jooste Hospital'),
(3846, 'https://ror.org/01yth7f19', 'no_lang_code', 1, 'https://ror.org/01yth7f19 Kudanzaka Hospital 九段坂病院'),
(3847, 'https://ror.org/04r9qdk92', 'tr', 1, 'https://ror.org/04r9qdk92 Kudret Eye Hospital Kudret Göz Hastanesi'),
(3848, 'https://ror.org/05n9fs062', 'no_lang_code', 1, 'https://ror.org/05n9fs062 Ghaem Hospital بیمارستان قائم'),
(3849, 'https://ror.org/00d0zag42', 'no_lang_code', 1, 'https://ror.org/00d0zag42 Wooridul Hospital 우리들 병원'),
(3850, 'https://ror.org/0138ysz16', 'en', 1, 'https://ror.org/0138ysz16 Gifu Municipal Hospital 岐阜市民病院'),
(3851, 'https://ror.org/03c266r37', 'en', 1, 'https://ror.org/03c266r37 Gifu Prefectural General Medical Center 岐阜県総合医療センター'),
(3852, 'https://ror.org/00jy2zq62', 'en', 1, 'https://ror.org/00jy2zq62 Gifu Prefectural Tajimi Hospital 岐阜県立多治見病院'),
(3853, 'https://ror.org/05sy5w128', 'en', 1, 'https://ror.org/05sy5w128 Kumamoto Medical Center 熊本医療センター'),
(3854, 'https://ror.org/04tr09862', 'en', 1, 'https://ror.org/04tr09862 Sequoia Hospital'),
(3855, 'https://ror.org/01k1azd31', 'no_lang_code', 1, 'https://ror.org/01k1azd31 Kumamotorosaibyoin 熊本労災病院'),
(3856, 'https://ror.org/04c1d9r22', 'en', 1, 'https://ror.org/04c1d9r22 Services Institute of Medical Sciences سروسز انسٹیٹوٹ آف میڈیکل سائنسز ਸੈਰਵਿਸਜ਼ ਇੰਸਟਿਟਿਊਟ ਆਫ਼ ਮੈਡੀਕਲ ਸਾਈਨਸਜ਼'),
(3857, 'https://ror.org/039tzxh97', 'en', 1, 'https://ror.org/039tzxh97 Queen Elizabeth the Queen Mother Hospital'),
(3858, 'https://ror.org/0124e9159', 'sv', 1, 'https://ror.org/0124e9159 Hallands sjukhus Kungsbacka'),
(3859, 'https://ror.org/054ekwz94', 'en', 1, 'https://ror.org/054ekwz94 Queen Margaret Hospital'),
(3860, 'https://ror.org/0549ak978', 'en', 1, 'https://ror.org/0549ak978 Gifu Red Cross Hospital 岐阜赤十字病院'),
(3861, 'https://ror.org/00fjv1g65', 'en', 1, 'https://ror.org/00fjv1g65 Kunming Children''s Hospital 昆明市儿童医院'),
(3862, 'https://ror.org/02xkx3e48', 'en', 1, 'https://ror.org/02xkx3e48 Queen Mary Hospital 瑪麗醫院'),
(3863, 'https://ror.org/01yedz573', 'en', 1, 'https://ror.org/01yedz573 Kunming General Hospital of Chengdu Military Command 成都军区昆明总医院'),
(3864, 'https://ror.org/044xe8f87', 'en', 1, 'https://ror.org/044xe8f87 Queen Mary''s Hospital Sidcup'),
(3865, 'https://ror.org/04a22qz44', 'en', 1, 'https://ror.org/04a22qz44 Seton Medical Center'),
(3866, 'https://ror.org/043brc084', 'en', 1, 'https://ror.org/043brc084 Kuo General Hospital 郭综合医院'),
(3867, 'https://ror.org/00rws8x56', 'en', 1, 'https://ror.org/00rws8x56 Gimpo Airport Wooridul Spine Hospital 서울우리들병원'),
(3868, 'https://ror.org/05pgywt51', 'en', 1, 'https://ror.org/05pgywt51 Queen Elizabeth Hospital'),
(3869, 'https://ror.org/00qexeh70', 'en', 1, 'https://ror.org/00qexeh70 Middlesex Hospital'),
(3870, 'https://ror.org/03s32c292', 'en', 1, 'https://ror.org/03s32c292 Queen Elizabeth II Hospital'),
(3871, 'https://ror.org/03jpj9789', 'en', 1, 'https://ror.org/03jpj9789 Glan Clwyd Hospital Ysbyty Glan Clwyd'),
(3872, 'https://ror.org/00947s692', 'en', 1, 'https://ror.org/00947s692 Kurashiki Central Hospital 倉敷中央病院'),
(3873, 'https://ror.org/02e3mzq40', 'en', 1, 'https://ror.org/02e3mzq40 Middlesex London Health Unit'),
(3874, 'https://ror.org/011ac6r71', 'en', 1, 'https://ror.org/011ac6r71 Glanrhyd Hospital'),
(3875, 'https://ror.org/00gjahp83', 'en', 1, 'https://ror.org/00gjahp83 Midwestern Regional Medical Center'),
(3876, 'https://ror.org/00mynj496', 'no_lang_code', 1, 'https://ror.org/00mynj496 Glazer Medical Solutions (United States)'),
(3877, 'https://ror.org/003t0xc83', 'en', 1, 'https://ror.org/003t0xc83 Glenbrook Hospital'),
(3878, 'https://ror.org/01cb0kd74', 'en', 1, 'https://ror.org/01cb0kd74 Royal Hospital for Children'),
(3879, 'https://ror.org/0176wfg98', 'en', 1, 'https://ror.org/0176wfg98 Gleneagles Hospital'),
(3880, 'https://ror.org/01kqjm533', 'en', 1, 'https://ror.org/01kqjm533 Kurihama Medical and Addiction Center 久里浜医療センター'),
(3881, 'https://ror.org/03c8ed890', 'en', 1, 'https://ror.org/03c8ed890 Sewickley Valley Hospital'),
(3882, 'https://ror.org/01praqa56', 'en', 1, 'https://ror.org/01praqa56 National Institute of Occupational Health'),
(3883, 'https://ror.org/05mhswc23', 'en', 1, 'https://ror.org/05mhswc23 Kushiro City General Hospital 市立釧路総合病院'),
(3884, 'https://ror.org/01s9rzk09', 'en', 1, 'https://ror.org/01s9rzk09 Kushiro Rosai Hospital 釧路ろうさい病院'),
(3885, 'https://ror.org/01rvf6k07', 'en', 1, 'https://ror.org/01rvf6k07 Military Hospital'),
(3886, 'https://ror.org/000fvwg06', 'en', 1, 'https://ror.org/000fvwg06 Queen Sirikit National Institute of Child Health'),
(3887, 'https://ror.org/05kz7bw59', 'en', 1, 'https://ror.org/05kz7bw59 Kwai Chung Hospital 葵涌醫院'),
(3888, 'https://ror.org/01ywpxj09', 'en', 1, 'https://ror.org/01ywpxj09 Queen Victoria Hospital'),
(3889, 'https://ror.org/0038nst28', 'no_lang_code', 1, 'https://ror.org/0038nst28 Kwangju Christian Hospital 광주기독병원'),
(3890, 'https://ror.org/03s9jrm13', 'no_lang_code', 1, 'https://ror.org/03s9jrm13 Kwong Wah Hospital 廣華醫院'),
(3891, 'https://ror.org/011tz3351', 'en', 1, 'https://ror.org/011tz3351 Queens Hospital Center'),
(3892, 'https://ror.org/04d0szq68', 'en', 1, 'https://ror.org/04d0szq68 Shaare Zedek Medical Center מרכז רפואי שערי צדק'),
(3893, 'https://ror.org/05mmga691', 'fi', 1, 'https://ror.org/05mmga691 Kymenlaakson keskussairaala'),
(3894, 'https://ror.org/00b4wat71', 'en', 1, 'https://ror.org/00b4wat71 Shadyside Hospital'),
(3895, 'https://ror.org/01605g366', 'en', 1, 'https://ror.org/01605g366 Kyoto City Hospital 京都市立病院'),
(3896, 'https://ror.org/03ap6wx93', 'en', 1, 'https://ror.org/03ap6wx93 Queen''s Medical Centre'),
(3897, 'https://ror.org/05qz2jt34', 'de', 1, 'https://ror.org/05qz2jt34 Bundeswehrkrankenhaus'),
(3898, 'https://ror.org/002tz8e96', 'en', 1, 'https://ror.org/002tz8e96 Shaikh Zayed Hospital'),
(3899, 'https://ror.org/058prbp42', 'en', 1, 'https://ror.org/058prbp42 Shaikh Zayed Postgraduate Medical Institute شیخ زید پوسٹ گریجویٹ میڈیکل انسٹی ٹیوٹ'),
(3900, 'https://ror.org/009afvb77', 'en', 1, 'https://ror.org/009afvb77 Provincial Laboratory of Public Health'),
(3901, 'https://ror.org/0460s9920', 'en', 1, 'https://ror.org/0460s9920 Kyoto first Red Cross hospital 京都第一赤十字病院'),
(3902, 'https://ror.org/017j2n938', 'en', 1, 'https://ror.org/017j2n938 Kobe Central Hospital 神戸中央病院'),
(3903, 'https://ror.org/05e1xz016', 'en', 1, 'https://ror.org/05e1xz016 Shalvata Mental Health Center המרכז לבריאות הנפש שלוותה'),
(3904, 'https://ror.org/03ffc6g28', 'en', 1, 'https://ror.org/03ffc6g28 Kagawa National Children''s Hospital 国立病院機構香川小児病院'),
(3905, 'https://ror.org/04w3ve464', 'no_lang_code', 1, 'https://ror.org/04w3ve464 Kyoto Katsura Hospital 京都桂病院'),
(3906, 'https://ror.org/022296476', 'en', 1, 'https://ror.org/022296476 National Kyushu Medical Center 国立病院機構 九州医療センター'),
(3907, 'https://ror.org/03jcxa214', 'en', 1, 'https://ror.org/03jcxa214 National Maternity Hospital'),
(3908, 'https://ror.org/04dt6a039', 'en', 1, 'https://ror.org/04dt6a039 Military Medical Academy Војномедицинска академија'),
(3909, 'https://ror.org/04n4f3r80', 'en', 1, 'https://ror.org/04n4f3r80 Military Hospital of Tunis'),
(3910, 'https://ror.org/03tatzf36', 'en', 1, 'https://ror.org/03tatzf36 Shandong Eye Institute & Hospital 山东省眼科研究所青岛与医院'),
(3911, 'https://ror.org/05fyf7995', 'en', 1, 'https://ror.org/05fyf7995 R. G. Kar Medical College and Hospital'),
(3912, 'https://ror.org/04xz2c768', 'en', 1, 'https://ror.org/04xz2c768 R. K. Khan Hospital'),
(3913, 'https://ror.org/03wq4px44', 'en', 1, 'https://ror.org/03wq4px44 North Medical Center 京都府立医科大学附属北部医療センター'),
(3914, 'https://ror.org/00cd9s024', 'en', 1, 'https://ror.org/00cd9s024 Shanghai Children''s Medical Center 上海儿童医学中心'),
(3915, 'https://ror.org/04x495f64', 'en', 1, 'https://ror.org/04x495f64 Rainbow Babies & Children''s Hospital'),
(3916, 'https://ror.org/05bd2wa15', 'en', 1, 'https://ror.org/05bd2wa15 Shanghai Mental Health Center 上海市精神卫生中心'),
(3917, 'https://ror.org/010wh8q62', 'en', 1, 'https://ror.org/010wh8q62 Raja Isteri Pengiran Anak Saleha Hospital'),
(3918, 'https://ror.org/02sttfr93', 'en', 1, 'https://ror.org/02sttfr93 Kyushu Central Hospital of the Mutual Aid Association of Public School Teachers 公立学校共済組合 九州中央病院'),
(3919, 'https://ror.org/0238gtq84', 'en', 1, 'https://ror.org/0238gtq84 Rajavithi Hospital'),
(3920, 'https://ror.org/01ayqmq97', 'en', 1, 'https://ror.org/01ayqmq97 Rajendra Hospital'),
(3921, 'https://ror.org/0258h0g75', 'en', 1, 'https://ror.org/0258h0g75 Rajendra Institute of Medical Sciences'),
(3922, 'https://ror.org/02k4h0b10', 'en', 1, 'https://ror.org/02k4h0b10 Rajshahi Medical College রাজশাহী মেডিকেল কলেজ'),
(3923, 'https://ror.org/012nfex57', 'no_lang_code', 1, 'https://ror.org/012nfex57 Rakuwakai Otowa Hospital 洛和会音羽病院'),
(3924, 'https://ror.org/02qv90y91', 'en', 1, 'https://ror.org/02qv90y91 Nagasaki Medical Center 長崎医療センター'),
(3925, 'https://ror.org/05v58y004', 'en', 1, 'https://ror.org/05v58y004 Shaoxing People''s Hospital 绍兴市人民医院'),
(3926, 'https://ror.org/01rb4vv49', 'en', 1, 'https://ror.org/01rb4vv49 Shariati Hospital بیمارستان شریعتی'),
(3927, 'https://ror.org/04e2x2229', 'en', 1, 'https://ror.org/04e2x2229 Lala Lajpat Rai Memorial Medical College'),
(3928, 'https://ror.org/058peea52', 'en', 1, 'https://ror.org/058peea52 Sharp Cabrillo Hospital'),
(3929, 'https://ror.org/02zwxrr04', 'en', 1, 'https://ror.org/02zwxrr04 Sharp Grossmont Hospital'),
(3930, 'https://ror.org/05wstbs93', 'en', 1, 'https://ror.org/05wstbs93 Obihiro National Hospital 国立病院機構帯広病院'),
(3931, 'https://ror.org/03fvp2v86', 'en', 1, 'https://ror.org/03fvp2v86 Lokmanya Tilak Municipal General Hospital and Lokmanya Tilak Municipal Medical College'),
(3932, 'https://ror.org/04nctyb57', 'en', 1, 'https://ror.org/04nctyb57 Sharp Mary Birch Hospital for Women & Newborns'),
(3933, 'https://ror.org/03t8gvx47', 'en', 1, 'https://ror.org/03t8gvx47 Rampton Hospital'),
(3934, 'https://ror.org/01gynte55', 'en', 1, 'https://ror.org/01gynte55 Sharp Memorial Hospital'),
(3935, 'https://ror.org/009erh992', 'en', 1, 'https://ror.org/009erh992 Sharp Rees-Stealy Medical Group'),
(3936, 'https://ror.org/037s3ck33', 'en', 1, 'https://ror.org/037s3ck33 Shatin Hospital 沙田醫院'),
(3937, 'https://ror.org/01a3zyd02', 'it', 1, 'https://ror.org/01a3zyd02 Ospedale Regionale di Locarno'),
(3938, 'https://ror.org/05faw8a11', 'en', 1, 'https://ror.org/05faw8a11 Shaughnessy Hospital'),
(3939, 'https://ror.org/0091mqf26', 'en', 1, 'https://ror.org/0091mqf26 Oita Medical Center 国立病院機構 大分医療センタ'),
(3940, 'https://ror.org/03btpnr35', 'en', 1, 'https://ror.org/03btpnr35 Shaukat Khanum Memorial Cancer Hospital and Research Center شوکت خانم یادگاری سرطان شفاخانہ اور مرکز تحقیق'),
(3941, 'https://ror.org/01ska0k70', 'en', 1, 'https://ror.org/01ska0k70 Millard Fillmore Suburban Hospital'),
(3942, 'https://ror.org/02vnyaz83', 'en', 1, 'https://ror.org/02vnyaz83 Mills Peninsula Health Services'),
(3943, 'https://ror.org/03wwnw466', 'en', 1, 'https://ror.org/03wwnw466 Milpark Hospital'),
(3944, 'https://ror.org/05jt1df44', 'en', 1, 'https://ror.org/05jt1df44 Milton Keynes Hospital'),
(3945, 'https://ror.org/05n8v4z84', 'en', 1, 'https://ror.org/05n8v4z84 Milwaukee County Medical Complex'),
(3946, 'https://ror.org/03gd1jf50', 'en', 1, 'https://ror.org/03gd1jf50 Shaikh Khalifa Medical City مدينة الشيخ خليفة الطبية'),
(3947, 'https://ror.org/030rm3988', 'en', 1, 'https://ror.org/030rm3988 National Police Hospital 국립경찰병원'),
(3948, 'https://ror.org/01kdnph40', 'es', 1, 'https://ror.org/01kdnph40 Hospital La Paloma'),
(3949, 'https://ror.org/02zh77j65', 'en', 1, 'https://ror.org/02zh77j65 National Registry of Emergency Medical Technicians'),
(3950, 'https://ror.org/006yqdy38', 'en', 1, 'https://ror.org/006yqdy38 Min Sheng General Hospital 敏盛綜合醫院'),
(3951, 'https://ror.org/03q3gmk48', 'en', 1, 'https://ror.org/03q3gmk48 MedStar National Rehabilitation Hospital'),
(3952, 'https://ror.org/04hsvgn43', 'en', 1, 'https://ror.org/04hsvgn43 Rangaraya Medical College'),
(3953, 'https://ror.org/02y9xvd02', 'en', 1, 'https://ror.org/02y9xvd02 Shenyang Medical College 沈阳医学院'),
(3954, 'https://ror.org/036mbxj57', 'en', 1, 'https://ror.org/036mbxj57 Banff Mineral Springs Hospital'),
(3955, 'https://ror.org/038v5dr76', 'en', 1, 'https://ror.org/038v5dr76 Rapid City Regional Hospital'),
(3956, 'https://ror.org/02teamz63', 'en', 1, 'https://ror.org/02teamz63 La Rabida Children''s Hospital'),
(3957, 'https://ror.org/04fz99q08', 'en', 1, 'https://ror.org/04fz99q08 Minami Wakayama Medical Center 国立病院機構南和歌山医療センタ'),
(3958, 'https://ror.org/02cm2rk35', 'en', 1, 'https://ror.org/02cm2rk35 Raritan Bay Medical Center'),
(3959, 'https://ror.org/01gvfxs59', 'en', 1, 'https://ror.org/01gvfxs59 National Sagamihara Hospital 国立病院機構相模原病院'),
(3960, 'https://ror.org/03gfmry48', 'en', 1, 'https://ror.org/03gfmry48 Sheppard and Enoch Pratt Hospital'),
(3961, 'https://ror.org/04b2pvs09', 'en', 1, 'https://ror.org/04b2pvs09 Rashid Hospital مستشفى راشد'),
(3962, 'https://ror.org/056nn5n22', 'en', 1, 'https://ror.org/056nn5n22 Aurora Sinai Medical Center'),
(3963, 'https://ror.org/00dwz8y55', 'en', 1, 'https://ror.org/00dwz8y55 Sheppard Pratt Health System'),
(3964, 'https://ror.org/01v8mb410', 'en', 1, 'https://ror.org/01v8mb410 National Sanyo Hospital 国立病院機構山口宇部医療センター'),
(3965, 'https://ror.org/04f6p2t28', 'en', 1, 'https://ror.org/04f6p2t28 Hospital Labbafinejad بیمارستان لبافینژ'),
(3966, 'https://ror.org/00mrhvv69', 'en', 1, 'https://ror.org/00mrhvv69 Kementerian Kesihatan Singapura Ministry of Health சிங்கப்பூர் சுகாதார அமைச்சகம் 新加坡卫生部'),
(3967, 'https://ror.org/029hzjx43', 'en', 1, 'https://ror.org/029hzjx43 Rappaport Family Institute for Research in the Medical Sciences'),
(3968, 'https://ror.org/01yhc9w15', 'en', 1, 'https://ror.org/01yhc9w15 Sherman Hospital'),
(3969, 'https://ror.org/03t3q6164', 'en', 1, 'https://ror.org/03t3q6164 Rancho Los Amigos National Rehabilitation Center'),
(3970, 'https://ror.org/0362za439', 'en', 1, 'https://ror.org/0362za439 Ministry of Health'),
(3971, 'https://ror.org/036njfn21', 'en', 1, 'https://ror.org/036njfn21 Ministry of Health'),
(3972, 'https://ror.org/00vjb5165', 'en', 1, 'https://ror.org/00vjb5165 Ministry of Health'),
(3973, 'https://ror.org/03r419717', 'en', 1, 'https://ror.org/03r419717 Kementerian Kesehatan Ministry of Health'),
(3974, 'https://ror.org/05x0h7m97', 'en', 1, 'https://ror.org/05x0h7m97 Ratchaburi Hospital โรงพยาบาลราชบุรี'),
(3975, 'https://ror.org/02944xg79', 'en', 1, 'https://ror.org/02944xg79 Laconia Women''s Health Center'),
(3976, 'https://ror.org/02maedm12', 'en', 1, 'https://ror.org/02maedm12 Rawalpindi Medical University'),
(3977, 'https://ror.org/005t72d47', 'en', 1, 'https://ror.org/005t72d47 Antrim Area Hospital'),
(3978, 'https://ror.org/05b8yvg40', 'en', 1, 'https://ror.org/05b8yvg40 Barnsley Hospital'),
(3979, 'https://ror.org/045s3rx57', 'en', 1, 'https://ror.org/045s3rx57 Bedford Hospital'),
(3980, 'https://ror.org/01bcp3a67', 'en', 1, 'https://ror.org/01bcp3a67 Benenden Hospital'),
(3981, 'https://ror.org/009vheq40', 'en', 1, 'https://ror.org/009vheq40 Churchill Hospital'),
(3982, 'https://ror.org/0357r2107', 'en', 1, 'https://ror.org/0357r2107 Ministry of Health'),
(3983, 'https://ror.org/03x8jdc94', 'en', 1, 'https://ror.org/03x8jdc94 Lady Hardinge Medical College'),
(3984, 'https://ror.org/057n8mx64', 'en', 1, 'https://ror.org/057n8mx64 Ministry of Health وزارة الصحة'),
(3985, 'https://ror.org/01eq8c489', 'en', 1, 'https://ror.org/01eq8c489 Lady Reading Hospital'),
(3986, 'https://ror.org/04pysv427', 'en', 1, 'https://ror.org/04pysv427 Lady Ridgeway Hospital for Children லேடி ரிட்ஜ்வே வைத்தியசாலையில் රිජ්වේ ආර්යා ළමා රෝහල'),
(3987, 'https://ror.org/03jfzsd28', 'en', 1, 'https://ror.org/03jfzsd28 Shigei Medical Research Institute 重井医学研究所'),
(3988, 'https://ror.org/03mbq3y29', 'en', 1, 'https://ror.org/03mbq3y29 Lahey Hospital and Medical Center'),
(3989, 'https://ror.org/018k7fz65', 'en', 1, 'https://ror.org/018k7fz65 Ministry of Health ក្រសួងសុខាភិបាល'),
(3990, 'https://ror.org/04kk13p96', 'en', 1, 'https://ror.org/04kk13p96 Reading Hospital'),
(3991, 'https://ror.org/042qjjy86', 'en', 1, 'https://ror.org/042qjjy86 Ministry of Health ကျန်းမာရေးဝန်ကြီးဌာန'),
(3992, 'https://ror.org/04d6eav07', 'en', 1, 'https://ror.org/04d6eav07 Red Cross War Memorial Children''s Hospital'),
(3993, 'https://ror.org/02rfs1804', 'no_lang_code', 1, 'https://ror.org/02rfs1804 Shimada Municipal Hospital 島田市民病院'),
(3994, 'https://ror.org/03rq2h425', 'no_lang_code', 1, 'https://ror.org/03rq2h425 Shimane Prefectural Central Hospital 島根県立中央病院'),
(3995, 'https://ror.org/02408be69', 'en', 1, 'https://ror.org/02408be69 National Center of Hygiene Medical Ecology and Nutrition'),
(3996, 'https://ror.org/03w5j8p12', 'en', 1, 'https://ror.org/03w5j8p12 Rega Institute for Medical Research'),
(3997, 'https://ror.org/059f2k568', 'en', 1, 'https://ror.org/059f2k568 Ministry of Health'),
(3998, 'https://ror.org/027f9rb06', 'en', 1, 'https://ror.org/027f9rb06 Shimonoseki City Hospital 下関市立市民病院'),
(3999, 'https://ror.org/04x744g62', 'en', 1, 'https://ror.org/04x744g62 Shin Kong WHS Memorial Hospital'),
(4000, 'https://ror.org/03yzzaw34', 'it', 1, 'https://ror.org/03yzzaw34 Ospedale Regina Apostolorum'),
(4001, 'https://ror.org/029tn5b56', 'en', 1, 'https://ror.org/029tn5b56 Regina General Hospital'),
(4002, 'https://ror.org/05gpmx630', 'no_lang_code', 1, 'https://ror.org/05gpmx630 ShinKokura Hospital 新小倉病院'),
(4003, 'https://ror.org/02t5j9303', 'en', 1, 'https://ror.org/02t5j9303 Lakehead Psychiatric Hospital'),
(4004, 'https://ror.org/05sc3m345', 'en', 1, 'https://ror.org/05sc3m345 Hungarian Institute of Occupational Health Országos Munkahigiénés és Foglalkozásegészségügyi Intézet'),
(4005, 'https://ror.org/03pmd4250', 'no_lang_code', 1, 'https://ror.org/03pmd4250 Shinko Hospital 神鋼記念病院'),
(4006, 'https://ror.org/03cbwf726', 'en', 1, 'https://ror.org/03cbwf726 Lakeland Regional Medical Center'),
(4007, 'https://ror.org/016dxxy13', 'en', 1, 'https://ror.org/016dxxy13 Ministry of Health กระทรวงสาธารณสุข'),
(4008, 'https://ror.org/0231m7n15', 'en', 1, 'https://ror.org/0231m7n15 Lake Regional Hospital'),
(4009, 'https://ror.org/0351yd374', 'en', 1, 'https://ror.org/0351yd374 Shinkyo Hospital'),
(4010, 'https://ror.org/01dm18990', 'en', 1, 'https://ror.org/01dm18990 Lakeshore Hospital'),
(4011, 'https://ror.org/038estk42', 'en', 1, 'https://ror.org/038estk42 Shinmatsudo Central General Hospital 新松戸中央総合病院'),
(4012, 'https://ror.org/03r7eh333', 'en', 1, 'https://ror.org/03r7eh333 Tulane Lakeside Hospital'),
(4013, 'https://ror.org/0024aa414', 'en', 1, 'https://ror.org/0024aa414 National Institute of Public Health 国立保健医療科学院'),
(4014, 'https://ror.org/05m4bwg25', 'no_lang_code', 1, 'https://ror.org/05m4bwg25 Shinonoi General Hospital 篠ノ井総合病院'),
(4015, 'https://ror.org/04e857469', 'it', 1, 'https://ror.org/04e857469 Ospedale Regina Margherita Regina Margherita hospital'),
(4016, 'https://ror.org/01qe7f394', 'en', 1, 'https://ror.org/01qe7f394 Ministerio de Salud de Chile Ministry of Health'),
(4017, 'https://ror.org/04fs4yy09', 'en', 1, 'https://ror.org/04fs4yy09 Lakewood Regional Medical Center'),
(4018, 'https://ror.org/029x6kq07', 'en', 1, 'https://ror.org/029x6kq07 Regina Qu''Appelle Health Region'),
(4019, 'https://ror.org/041tn5e09', 'no_lang_code', 1, 'https://ror.org/041tn5e09 Shinrakuen Hospital 信楽園病院'),
(4020, 'https://ror.org/03s2fmv96', 'en', 1, 'https://ror.org/03s2fmv96 Lancaster General Hospital'),
(4021, 'https://ror.org/03xh40058', 'en', 1, 'https://ror.org/03xh40058 Ministry of Health وزارة الصحة'),
(4022, 'https://ror.org/02t36bt26', 'en', 1, 'https://ror.org/02t36bt26 Regional Institute of Medical Sciences'),
(4023, 'https://ror.org/044wvm991', 'no_lang_code', 1, 'https://ror.org/044wvm991 Laniado Hospital'),
(4024, 'https://ror.org/00f2gwr16', 'en', 1, 'https://ror.org/00f2gwr16 Lankenau Medical Center'),
(4025, 'https://ror.org/05raceh98', 'no_lang_code', 1, 'https://ror.org/05raceh98 Shirasagi Hospital 白鷺病院'),
(4026, 'https://ror.org/03t78za89', 'en', 1, 'https://ror.org/03t78za89 Regional Medical Center'),
(4027, 'https://ror.org/00j0b8v53', 'en', 1, 'https://ror.org/00j0b8v53 Regional Medical Research Center क्षेत्रीय आयुर्विगिनं अनुसंधान केंद्र'),
(4028, 'https://ror.org/01qr3vg91', 'en', 1, 'https://ror.org/01qr3vg91 Regional Medical Research Centre'),
(4029, 'https://ror.org/02hsneh43', 'en', 1, 'https://ror.org/02hsneh43 Shizuoka City Hospital 静岡市立静岡病院'),
(4030, 'https://ror.org/00hswnf74', 'no_lang_code', 1, 'https://ror.org/00hswnf74 Shizuoka City Shimizu Hospital 静岡市立清水病院'),
(4031, 'https://ror.org/049840423', 'en', 1, 'https://ror.org/049840423 Ministry of Health Министерство здравоохранения Республики Беларусь'),
(4032, 'https://ror.org/04551r843', 'en', 1, 'https://ror.org/04551r843 Ministry of Health'),
(4033, 'https://ror.org/01b1c8m98', 'en', 1, 'https://ror.org/01b1c8m98 Ministry of Health وزارة الصحة'),
(4034, 'https://ror.org/01w3xx622', 'en', 1, 'https://ror.org/01w3xx622 Lanzhou Army General Hospital 陆军总院'),
(4035, 'https://ror.org/03xrts777', 'en', 1, 'https://ror.org/03xrts777 Shizuoka Medical Center 静岡医療センター'),
(4036, 'https://ror.org/01s4cx283', 'no_lang_code', 1, 'https://ror.org/01s4cx283 Shizuoka Saiseikai General Hospital 静岡済生会総合病院'),
(4037, 'https://ror.org/052k2q138', 'en', 1, 'https://ror.org/052k2q138 Shodair Children''s Hospital'),
(4038, 'https://ror.org/00vx2w009', 'en', 1, 'https://ror.org/00vx2w009 Lapin keskussairaala Lapland Central Hospital'),
(4039, 'https://ror.org/01rs0ht88', 'en', 1, 'https://ror.org/01rs0ht88 Ministry of Health and Medical Education'),
(4040, 'https://ror.org/0048myj07', 'it', 1, 'https://ror.org/0048myj07 Ospedale del Ceppo'),
(4041, 'https://ror.org/03xz3hj66', 'no_lang_code', 1, 'https://ror.org/03xz3hj66 Shonan Kamakura General Hospital 湘南鎌倉総合病院'),
(4042, 'https://ror.org/044ed7z69', 'en', 1, 'https://ror.org/044ed7z69 Ministry of Health and Child Welfare'),
(4043, 'https://ror.org/04wbhy398', 'pl', 1, 'https://ror.org/04wbhy398 Wojewódzki Szpital Zespolony'),
(4044, 'https://ror.org/02q97rh88', 'en', 1, 'https://ror.org/02q97rh88 Shotley Bridge Hospital'),
(4045, 'https://ror.org/02wcweb64', 'en', 1, 'https://ror.org/02wcweb64 Larkin Community Hospital'),
(4046, 'https://ror.org/008rqvc37', 'en', 1, 'https://ror.org/008rqvc37 Lata Medical Research Foundation'),
(4047, 'https://ror.org/03mwa7s65', 'en', 1, 'https://ror.org/03mwa7s65 Ministry of Health Labour and Welfare 厚生労働省'),
(4048, 'https://ror.org/02g397b52', 'en', 1, 'https://ror.org/02g397b52 Shriners Hospitals for Children - Boston'),
(4049, 'https://ror.org/00mjaaf25', 'en', 1, 'https://ror.org/00mjaaf25 National School of Public Health'),
(4050, 'https://ror.org/01aeq1t78', 'en', 1, 'https://ror.org/01aeq1t78 Shriners Hospitals for Children - Cincinnati'),
(4051, 'https://ror.org/01z1dtf94', 'en', 1, 'https://ror.org/01z1dtf94 Shriners Hospitals for Children - Canada'),
(4052, 'https://ror.org/04ymr6s03', 'en', 1, 'https://ror.org/04ymr6s03 Launceston General Hospital'),
(4053, 'https://ror.org/00snwj435', 'en', 1, 'https://ror.org/00snwj435 Shriners Hospitals for Children - Portland'),
(4054, 'https://ror.org/02w8sz675', 'en', 1, 'https://ror.org/02w8sz675 Shriners Hospitals for Children - Tampa'),
(4055, 'https://ror.org/000ke5995', 'en', 1, 'https://ror.org/000ke5995 Western Galilee Hospital'),
(4056, 'https://ror.org/049mpkx27', 'en', 1, 'https://ror.org/049mpkx27 Shriners Hospitals for Children - St. Louis'),
(4057, 'https://ror.org/038d10y34', 'en', 1, 'https://ror.org/038d10y34 National Wildlife Health Center'),
(4058, 'https://ror.org/00cmk4n56', 'it', 1, 'https://ror.org/00cmk4n56 Krankenhaus Bozen Ospedale di Bolzano'),
(4059, 'https://ror.org/01j0qa041', 'it', 1, 'https://ror.org/01j0qa041 Ospedali Riuniti di Ancona'),
(4060, 'https://ror.org/00trhvv58', 'en', 1, 'https://ror.org/00trhvv58 Shriners Hospitals for Children - Greenville'),
(4061, 'https://ror.org/05k7z2b58', 'en', 1, 'https://ror.org/05k7z2b58 Shriners Hospitals for Children Medical Center - Lexington'),
(4062, 'https://ror.org/037dvnz29', 'en', 1, 'https://ror.org/037dvnz29 Shriners Hospitals for Children - Houston'),
(4063, 'https://ror.org/038jxf238', 'en', 1, 'https://ror.org/038jxf238 Natividad Medical Center'),
(4064, 'https://ror.org/01dmyj570', 'en', 1, 'https://ror.org/01dmyj570 Shriners Hospitals for Children - Northern California'),
(4065, 'https://ror.org/037f4ry86', 'en', 1, 'https://ror.org/037f4ry86 Regional West Medical Center'),
(4066, 'https://ror.org/01x66cn47', 'it', 1, 'https://ror.org/01x66cn47 Ospedale di Santa Maria dei Battuti'),
(4067, 'https://ror.org/04bgfrg80', 'en', 1, 'https://ror.org/04bgfrg80 Ministry of Public Health Ministère de la Santé Publique du Cameroun'),
(4068, 'https://ror.org/02bfqd210', 'en', 1, 'https://ror.org/02bfqd210 Regions Hospital'),
(4069, 'https://ror.org/01x2t4526', 'en', 1, 'https://ror.org/01x2t4526 Lee Memorial Health System'),
(4070, 'https://ror.org/01rdvwx15', 'en', 1, 'https://ror.org/01rdvwx15 Lee Memorial Hospital'),
(4071, 'https://ror.org/0574j1p50', 'ro', 1, 'https://ror.org/0574j1p50 Spitalul Clinic de Recuperare'),
(4072, 'https://ror.org/043ckch24', 'en', 1, 'https://ror.org/043ckch24 Rehabilitation Hospital of Indiana'),
(4073, 'https://ror.org/04g9xj393', 'en', 1, 'https://ror.org/04g9xj393 Legacy Health'),
(4074, 'https://ror.org/00wkhef66', 'en', 1, 'https://ror.org/00wkhef66 Reinier de Graaf Hospital'),
(4075, 'https://ror.org/03ypbx660', 'no_lang_code', 1, 'https://ror.org/03ypbx660 Renji Hospital 上海交通大学医学院附属仁济医院'),
(4076, 'https://ror.org/052wqwf92', 'en', 1, 'https://ror.org/052wqwf92 Shuto General Hospital 周東総合病院'),
(4077, 'https://ror.org/01dsw4m23', 'en', 1, 'https://ror.org/01dsw4m23 Repatriation General Hospital'),
(4078, 'https://ror.org/00sf92s91', 'en', 1, 'https://ror.org/00sf92s91 Lehigh Valley Health Network'),
(4079, 'https://ror.org/03dhz7247', 'en', 1, 'https://ror.org/03dhz7247 Research Centre for Medical Genetics'),
(4080, 'https://ror.org/00cr96696', 'en', 1, 'https://ror.org/00cr96696 Center for Clinical Research and Prevention Center for Klinisk Forskning og Forebyggelse'),
(4081, 'https://ror.org/029wq9x81', 'en', 1, 'https://ror.org/029wq9x81 Sichuan Cancer Hospital 四川省肿瘤研究所'),
(4082, 'https://ror.org/01sxtx626', 'en', 1, 'https://ror.org/01sxtx626 Ministry of Health Міністерство охорони здоров''я України'),
(4083, 'https://ror.org/01hhasq22', 'cs', 1, 'https://ror.org/01hhasq22 Výzkumný Ústav Zdraví Dítěte'),
(4084, 'https://ror.org/01zp13r18', 'en', 1, 'https://ror.org/01zp13r18 Research Medical Center'),
(4085, 'https://ror.org/04kvh1910', 'en', 1, 'https://ror.org/04kvh1910 Resurrection Health Care'),
(4086, 'https://ror.org/029dttz57', 'en', 1, 'https://ror.org/029dttz57 Resurrection Medical Center'),
(4087, 'https://ror.org/04mx3cr06', 'en', 1, 'https://ror.org/04mx3cr06 Leighton Hospital'),
(4088, 'https://ror.org/01wpqwr25', 'en', 1, 'https://ror.org/01wpqwr25 Lemuel Shattuck Hospital'),
(4089, 'https://ror.org/0231d2y50', 'en', 1, 'https://ror.org/0231d2y50 Lenox Hill Hospital'),
(4090, 'https://ror.org/01j780996', 'de', 1, 'https://ror.org/01j780996 Leopoldina Krankenhaus Schweinfurt'),
(4091, 'https://ror.org/00q38e504', 'no_lang_code', 1, 'https://ror.org/00q38e504 Lerdsin Hospital โรงพยาบาลเลิดสิน'),
(4092, 'https://ror.org/04s2yen12', 'en', 1, 'https://ror.org/04s2yen12 Letterkenny University Hospital Ospidéal Ginearálta Leitir Ceanainn'),
(4093, 'https://ror.org/05dxmex87', 'en', 1, 'https://ror.org/05dxmex87 Minnesota Medical Association'),
(4094, 'https://ror.org/03teaad16', 'en', 1, 'https://ror.org/03teaad16 Rex Hospital'),
(4095, 'https://ror.org/02nqy8390', 'en', 1, 'https://ror.org/02nqy8390 Letterman Army Medical Center'),
(4096, 'https://ror.org/05g2gkn28', 'en', 1, 'https://ror.org/05g2gkn28 Minoh City Hospital 箕面市立病院'),
(4097, 'https://ror.org/03032jm09', 'en', 1, 'https://ror.org/03032jm09 Levine Children''s Hospital'),
(4098, 'https://ror.org/010gckf65', 'en', 1, 'https://ror.org/010gckf65 Sikkim Manipal University'),
(4099, 'https://ror.org/04mat8m15', 'fi', 1, 'https://ror.org/04mat8m15 Reumasäätiön sairaala'),
(4100, 'https://ror.org/052vjje65', 'en', 1, 'https://ror.org/052vjje65 Royal Manchester Children''s Hospital'),
(4101, 'https://ror.org/04219vz71', 'en', 1, 'https://ror.org/04219vz71 Silver Cross Hospital'),
(4102, 'https://ror.org/052vn2478', 'en', 1, 'https://ror.org/052vn2478 Liaocheng People''s Hospital 聊城市人民医院'),
(4103, 'https://ror.org/05f2xwq77', 'en', 1, 'https://ror.org/05f2xwq77 Charles Clifford Dental Hospital'),
(4104, 'https://ror.org/05a90fj07', 'en', 1, 'https://ror.org/05a90fj07 Ealing Hospital'),
(4105, 'https://ror.org/01ybj8n97', 'en', 1, 'https://ror.org/01ybj8n97 Dundee Dental Hospital'),
(4106, 'https://ror.org/05b01nv96', 'en', 1, 'https://ror.org/05b01nv96 Subang Jaya Medical Centre'),
(4107, 'https://ror.org/02yw7q747', 'en', 1, 'https://ror.org/02yw7q747 Palmetto Health Richland'),
(4108, 'https://ror.org/00rm3wf49', 'en', 1, 'https://ror.org/00rm3wf49 Lilavati Hospital & Research Centre'),
(4109, 'https://ror.org/05vc4qy60', 'nl', 1, 'https://ror.org/05vc4qy60 Rijnland Ziekenhuis'),
(4110, 'https://ror.org/04xv63e47', 'en', 1, 'https://ror.org/04xv63e47 Sin-Lau Christian Hospital'),
(4111, 'https://ror.org/05j8naw58', 'en', 1, 'https://ror.org/05j8naw58 Sinai Health System'),
(4112, 'https://ror.org/02rsydb28', 'en', 1, 'https://ror.org/02rsydb28 Misericordia Community Hospital'),
(4113, 'https://ror.org/035a72598', 'en', 1, 'https://ror.org/035a72598 Lincoln Medical Center'),
(4114, 'https://ror.org/04gmtmm57', 'no_lang_code', 1, 'https://ror.org/04gmtmm57 Misgav Ladach מִשְׂגָּב לַדָּךְ'),
(4115, 'https://ror.org/052ra0j05', 'en', 1, 'https://ror.org/052ra0j05 Sinai Hospital'),
(4116, 'https://ror.org/04vcxwm16', 'en', 1, 'https://ror.org/04vcxwm16 Mission Hospital'),
(4117, 'https://ror.org/03z4rrt03', 'de', 1, 'https://ror.org/03z4rrt03 Lindenhofspital'),
(4118, 'https://ror.org/011r8ce56', 'en', 1, 'https://ror.org/011r8ce56 Linyi People''s Hospital 临沂市人民医院'),
(4119, 'https://ror.org/02ab2dg68', 'en', 1, 'https://ror.org/02ab2dg68 Singleton Hospital Ysbyty Singleton'),
(4120, 'https://ror.org/02pyp8h55', 'en', 1, 'https://ror.org/02pyp8h55 Lions Gate Hospital'),
(4121, 'https://ror.org/01jm17996', 'en', 1, 'https://ror.org/01jm17996 Mission Heritage Medical Group'),
(4122, 'https://ror.org/0522w3m69', 'no_lang_code', 1, 'https://ror.org/0522w3m69 Sinhgad Dental College and Hospital'),
(4123, 'https://ror.org/02cevbn07', 'en', 1, 'https://ror.org/02cevbn07 Mississippi State Medical Association'),
(4124, 'https://ror.org/0067dx910', 'en', 1, 'https://ror.org/0067dx910 Missouri Baptist Medical Center'),
(4125, 'https://ror.org/05hrg0j24', 'en', 1, 'https://ror.org/05hrg0j24 Lister Hospital'),
(4126, 'https://ror.org/03exj3651', 'en', 1, 'https://ror.org/03exj3651 Littlemore Hospital'),
(4127, 'https://ror.org/04ds03q08', 'no_lang_code', 1, 'https://ror.org/04ds03q08 Mita Hospital 国際医療福祉大学三田病院'),
(4128, 'https://ror.org/03qyxqf94', 'en', 1, 'https://ror.org/03qyxqf94 Little Company of Mary Hospital'),
(4129, 'https://ror.org/01myv2z03', 'en', 1, 'https://ror.org/01myv2z03 Nayoro City General Hospital 名寄市立総合病院'),
(4130, 'https://ror.org/01rsda187', 'en', 1, 'https://ror.org/01rsda187 Mitate Hospital 見立病院'),
(4131, 'https://ror.org/00r5kgd36', 'en', 1, 'https://ror.org/00r5kgd36 Nenagh Hospital Ospidéal an Aonaigh'),
(4132, 'https://ror.org/031zc8d88', 'en', 1, 'https://ror.org/031zc8d88 City Hospital'),
(4133, 'https://ror.org/00v4dac24', 'en', 1, 'https://ror.org/00v4dac24 Leeds Teaching Hospitals NHS Trust'),
(4134, 'https://ror.org/04qbdwc31', 'en', 1, 'https://ror.org/04qbdwc31 Southport and Formby District General Hospital'),
(4135, 'https://ror.org/01ycr6b80', 'en', 1, 'https://ror.org/01ycr6b80 Royal Liverpool University Hospital'),
(4136, 'https://ror.org/00fv61j67', 'en', 1, 'https://ror.org/00fv61j67 MRC Laboratory for Molecular Cell Biology'),
(4137, 'https://ror.org/016jc2h42', 'en', 1, 'https://ror.org/016jc2h42 Sint Lucas Andreas Hospital Sint Lucas Andreas Ziekenhuis'),
(4138, 'https://ror.org/00kfr4659', 'en', 1, 'https://ror.org/00kfr4659 Mito Red Cross Hospital 水戸赤十字病院'),
(4139, 'https://ror.org/0405qn567', 'no_lang_code', 1, 'https://ror.org/0405qn567 Nerima General Hospital 練馬総合病院'),
(4140, 'https://ror.org/053658081', 'en', 1, 'https://ror.org/053658081 Mitsubishi Kyoto Hospital 三菱京都病院'),
(4141, 'https://ror.org/038mzt421', 'no_lang_code', 1, 'https://ror.org/038mzt421 Nerviano Medical Sciences'),
(4142, 'https://ror.org/02hsexy86', 'en', 1, 'https://ror.org/02hsexy86 Riverside Methodist Hospital'),
(4143, 'https://ror.org/046db5297', 'en', 1, 'https://ror.org/046db5297 Sioux Valley Hospital'),
(4144, 'https://ror.org/05hpt6x15', 'en', 1, 'https://ror.org/05hpt6x15 Riverside Regional Medical Center'),
(4145, 'https://ror.org/05cwpz219', 'en', 1, 'https://ror.org/05cwpz219 Riverview Hospital'),
(4146, 'https://ror.org/011qwff60', 'en', 1, 'https://ror.org/011qwff60 Riverview Medical Center'),
(4147, 'https://ror.org/03djvm380', 'it', 1, 'https://ror.org/03djvm380 Ospedale Generale Regionale Francesco Miulli'),
(4148, 'https://ror.org/02wjcw796', 'en', 1, 'https://ror.org/02wjcw796 Miyake Eye Hospital 眼科三宅病院'),
(4149, 'https://ror.org/000849h34', 'en', 1, 'https://ror.org/000849h34 Liverpool Heart and Chest Hospital'),
(4150, 'https://ror.org/00vzzhs86', 'no_lang_code', 1, 'https://ror.org/00vzzhs86 Sir Hurkisondas Nurrotumdas Medical Research Society'),
(4151, 'https://ror.org/03zzzks34', 'en', 1, 'https://ror.org/03zzzks34 Liverpool Hospital'),
(4152, 'https://ror.org/0331pzy82', 'no_lang_code', 1, 'https://ror.org/0331pzy82 Miyata Eye Hospital 宮田眼科病院'),
(4153, 'https://ror.org/00eysw063', 'en', 1, 'https://ror.org/00eysw063 Liverpool Women''s Hospital'),
(4154, 'https://ror.org/05j5y0r89', 'en', 1, 'https://ror.org/05j5y0r89 Sir Paul Boffa Hospital'),
(4155, 'https://ror.org/04mc4md34', 'tr', 1, 'https://ror.org/04mc4md34 Rize Devlet Hastanesi'),
(4156, 'https://ror.org/05yjz6y13', 'en', 1, 'https://ror.org/05yjz6y13 University Medical Center Rizk Hospital'),
(4157, 'https://ror.org/030mbcp39', 'en', 1, 'https://ror.org/030mbcp39 Robert Jones and Agnes Hunt Orthopaedic Hospital'),
(4158, 'https://ror.org/01pxhdc49', 'en', 1, 'https://ror.org/01pxhdc49 Miyazaki Prefectural Hospital 宮崎県立病院'),
(4159, 'https://ror.org/0222am037', 'it', 1, 'https://ror.org/0222am037 Ospedaliero Sirai'),
(4160, 'https://ror.org/05fmwts39', 'tr', 1, 'https://ror.org/05fmwts39 Şişli Etfal Eğitim ve Araştırma Hastanesi'),
(4161, 'https://ror.org/02tvvs825', 'en', 1, 'https://ror.org/02tvvs825 Robinson Memorial Hospital'),
(4162, 'https://ror.org/01jk6xr82', 'en', 1, 'https://ror.org/01jk6xr82 Rochester General Hospital'),
(4163, 'https://ror.org/02amggm23', 'en', 1, 'https://ror.org/02amggm23 Trimbos Institute Trimbos instituut'),
(4164, 'https://ror.org/057cm0m66', 'en', 1, 'https://ror.org/057cm0m66 Sismanoglio General Hospital Γενικό Νοσοκομείο Σισμανόγλειο'),
(4165, 'https://ror.org/02xxgh713', 'en', 1, 'https://ror.org/02xxgh713 Sisters of Charity Hospital'),
(4166, 'https://ror.org/04yrw5x43', 'it', 1, 'https://ror.org/04yrw5x43 Ospedale di Livorno'),
(4167, 'https://ror.org/00j4pe902', 'en', 1, 'https://ror.org/00j4pe902 Maharaja Krishna Chandra Gajapati Medical College and Hospital'),
(4168, 'https://ror.org/01rzm0s68', 'en', 1, 'https://ror.org/01rzm0s68 Sentara Rockingham Memorial Hospital Medical Center'),
(4169, 'https://ror.org/02hngyx35', 'en', 1, 'https://ror.org/02hngyx35 Rocky Mountain Hospital for Children'),
(4170, 'https://ror.org/024zq6d87', 'en', 1, 'https://ror.org/024zq6d87 Sisters of Mercy Health System'),
(4171, 'https://ror.org/05fcrn131', 'en', 1, 'https://ror.org/05fcrn131 University Hospital Llandough'),
(4172, 'https://ror.org/01myv5196', 'en', 1, 'https://ror.org/01myv5196 Sivas Devlet Hastanesi Sivas State Hospital'),
(4173, 'https://ror.org/00b0m1444', 'en', 1, 'https://ror.org/00b0m1444 Loewenstein Hospital Rehabilitation Center'),
(4174, 'https://ror.org/040m2wv49', 'en', 1, 'https://ror.org/040m2wv49 Skaraborg Hospital Skaraborgs Sjukhus'),
(4175, 'https://ror.org/03jmdp146', 'en', 1, 'https://ror.org/03jmdp146 Motilal Nehru Medical College'),
(4176, 'https://ror.org/00baajx12', 'en', 1, 'https://ror.org/00baajx12 Rood and Riddle Equine Hospital'),
(4177, 'https://ror.org/0133j5m54', 'en', 1, 'https://ror.org/0133j5m54 Skellefteå Hospital Skellefteå Lasarett'),
(4178, 'https://ror.org/00zpz3d35', 'en', 1, 'https://ror.org/00zpz3d35 Nevill Hall Hospital'),
(4179, 'https://ror.org/00wk9vd23', 'en', 1, 'https://ror.org/00wk9vd23 Regionshospitalet Skive Skive Hospital'),
(4180, 'https://ror.org/03zhk7994', 'en', 1, 'https://ror.org/03zhk7994 London Chest Hospital'),
(4181, 'https://ror.org/03j2sb517', 'en', 1, 'https://ror.org/03j2sb517 Slade Hospital'),
(4182, 'https://ror.org/04r5ess67', 'en', 1, 'https://ror.org/04r5ess67 Sleep and Human Health Institute'),
(4183, 'https://ror.org/019my5047', 'en', 1, 'https://ror.org/019my5047 Royal London Hospital'),
(4184, 'https://ror.org/01q11am17', 'en', 1, 'https://ror.org/01q11am17 Roper Hospital'),
(4185, 'https://ror.org/055y34y19', 'en', 1, 'https://ror.org/055y34y19 Rose Medical Center'),
(4186, 'https://ror.org/001g7jx32', 'en', 1, 'https://ror.org/001g7jx32 New Britain General Hospital'),
(4187, 'https://ror.org/01ncx3917', 'en', 1, 'https://ror.org/01ncx3917 Rosie Hospital'),
(4188, 'https://ror.org/03er5cb38', 'en', 1, 'https://ror.org/03er5cb38 Moisio Hospital Moision Sairaala'),
(4189, 'https://ror.org/00k5vcj72', 'en', 1, 'https://ror.org/00k5vcj72 Molde Hospital Molde sjukehus'),
(4190, 'https://ror.org/01w502745', 'nl', 1, 'https://ror.org/01w502745 Slotervaartziekenhuis'),
(4191, 'https://ror.org/05w3e4z48', 'en', 1, 'https://ror.org/05w3e4z48 New Cross Hospital'),
(4192, 'https://ror.org/0560hqd63', 'it', 1, 'https://ror.org/0560hqd63 Ospedale Monaldi'),
(4193, 'https://ror.org/04gs6xd08', 'en', 1, 'https://ror.org/04gs6xd08 Sjællands universitetshospital, Køge Zealand University Hospital Køge'),
(4194, 'https://ror.org/02s280t43', 'en', 1, 'https://ror.org/02s280t43 New Hanover Regional Medical Center'),
(4195, 'https://ror.org/00t2n7611', 'da', 1, 'https://ror.org/00t2n7611 Roskilde Hospital Roskilde Sygehus'),
(4196, 'https://ror.org/036s9kg65', 'en', 1, 'https://ror.org/036s9kg65 Monash Medical Centre'),
(4197, 'https://ror.org/04fw3kw37', 'en', 1, 'https://ror.org/04fw3kw37 Shri Maharaja Hari Singh Hospital'),
(4198, 'https://ror.org/02p6pjw94', 'en', 1, 'https://ror.org/02p6pjw94 Moncton Hospital'),
(4199, 'https://ror.org/000ezn412', 'en', 1, 'https://ror.org/000ezn412 Sawai Man Singh Hospital'),
(4200, 'https://ror.org/012eghd53', 'en', 1, 'https://ror.org/012eghd53 Rotorua Hospital'),
(4201, 'https://ror.org/02n10g966', 'en', 1, 'https://ror.org/02n10g966 Long Beach Animal Hospital'),
(4202, 'https://ror.org/05t4vgv93', 'no_lang_code', 1, 'https://ror.org/05t4vgv93 Rotunda Hospital'),
(4203, 'https://ror.org/02p71fr67', 'en', 1, 'https://ror.org/02p71fr67 Monilek Hospital and Research Center'),
(4204, 'https://ror.org/0525h8d02', 'en', 1, 'https://ror.org/0525h8d02 New Mexico Regional Federal Medical Center'),
(4205, 'https://ror.org/05m64xs77', 'en', 1, 'https://ror.org/05m64xs77 Monklands Hospital'),
(4206, 'https://ror.org/0264d9934', 'en', 1, 'https://ror.org/0264d9934 Royal Aberdeen Children''s Hospital'),
(4207, 'https://ror.org/00xmn3c34', 'en', 1, 'https://ror.org/00xmn3c34 Monmouth Medical Center'),
(4208, 'https://ror.org/00y64dx33', 'en', 1, 'https://ror.org/00y64dx33 Monroe Carell Jr. Children''s Hospital'),
(4209, 'https://ror.org/00243c192', 'en', 1, 'https://ror.org/00243c192 Monroe Community Hospital'),
(4210, 'https://ror.org/05rz49z56', 'en', 1, 'https://ror.org/05rz49z56 Smt. N.H.L. Municipal Medical College શ્રીમતી. એનએચએલ મ્યુનિસિપલ મેડિકલ કોલેજ'),
(4211, 'https://ror.org/02d57ed54', 'en', 1, 'https://ror.org/02d57ed54 Sarojini Naidu Medical College सरोजिनी नायडू चिकित्सा महाविद्यालय'),
(4212, 'https://ror.org/05xc56p63', 'en', 1, 'https://ror.org/05xc56p63 Royal Alexandra Children''s Hospital'),
(4213, 'https://ror.org/00vbnvy39', 'en', 1, 'https://ror.org/00vbnvy39 Montgomery General Hospital'),
(4214, 'https://ror.org/01nj8sa76', 'en', 1, 'https://ror.org/01nj8sa76 Royal Alexandra Hospital'),
(4215, 'https://ror.org/03s18mw09', 'it', 1, 'https://ror.org/03s18mw09 Ospedale L. Bonomo'),
(4216, 'https://ror.org/04wc5jk96', 'en', 1, 'https://ror.org/04wc5jk96 Hôpital de Montréal pour enfants Montreal Children''s Hospital'),
(4217, 'https://ror.org/053dkp921', 'en', 1, 'https://ror.org/053dkp921 Los Alamos Medical Center'),
(4218, 'https://ror.org/00wyx7h61', 'en', 1, 'https://ror.org/00wyx7h61 Royal Alexandra Hospital'),
(4219, 'https://ror.org/057edve92', 'en', 1, 'https://ror.org/057edve92 Tokyo Yamate Medical Center 東京山手メディカルセンター'),
(4220, 'https://ror.org/00a858n67', 'en', 1, 'https://ror.org/00a858n67 Royal United Hospital'),
(4221, 'https://ror.org/01cv0eh48', 'en', 1, 'https://ror.org/01cv0eh48 Royal Belfast Hospital for Sick Children'),
(4222, 'https://ror.org/04vqzd428', 'en', 1, 'https://ror.org/04vqzd428 Social Insurance Saitama Chuo Hospital 埼玉メディカルセンター'),
(4223, 'https://ror.org/019f36t97', 'en', 1, 'https://ror.org/019f36t97 Royal Berkshire Hospital'),
(4224, 'https://ror.org/000vvpv33', 'en', 1, 'https://ror.org/000vvpv33 Social Insurance Yokohama Central Hospital 横浜中央病院'),
(4225, 'https://ror.org/04sgkca59', 'en', 1, 'https://ror.org/04sgkca59 Funabashi Central Hospital 船橋中央病院'),
(4226, 'https://ror.org/017dm4063', 'en', 1, 'https://ror.org/017dm4063 Departamento de Salud Pública del Condado de Los Ángeles Los Angeles County Department of Public Health'),
(4227, 'https://ror.org/04gbhgc79', 'en', 1, 'https://ror.org/04gbhgc79 Hôpital Général de Montréal Montreal General Hospital'),
(4228, 'https://ror.org/031xyzp67', 'en', 1, 'https://ror.org/031xyzp67 Social Security Children''s Hospital'),
(4229, 'https://ror.org/03je4r797', 'en', 1, 'https://ror.org/03je4r797 Luodong Poh-Ai Hospital 羅東博愛醫院'),
(4230, 'https://ror.org/02jb7ng92', 'en', 1, 'https://ror.org/02jb7ng92 Moorgreen Hospital'),
(4231, 'https://ror.org/0540c8n94', 'no_lang_code', 1, 'https://ror.org/0540c8n94 Soka Municipal Hospital 草加市立病院'),
(4232, 'https://ror.org/016m8pd54', 'en', 1, 'https://ror.org/016m8pd54 Morgan Stanley Children''s Hospital'),
(4233, 'https://ror.org/056t4gr41', 'no_lang_code', 1, 'https://ror.org/056t4gr41 Morinomiya Hospital もりのみや ほsぴたl'),
(4234, 'https://ror.org/01skxn174', 'en', 1, 'https://ror.org/01skxn174 Lower Manhattan Hospital');
INSERT INTO `rors` VALUES
(4235, 'https://ror.org/03m6tev69', 'en', 1, 'https://ror.org/03m6tev69 Morristown Medical Center'),
(4236, 'https://ror.org/05ymyxj51', 'en', 1, 'https://ror.org/05ymyxj51 Royal Columbian Hospital'),
(4237, 'https://ror.org/02gaqn537', 'en', 1, 'https://ror.org/02gaqn537 Royal Cornhill Hospital'),
(4238, 'https://ror.org/00cfdk448', 'en', 1, 'https://ror.org/00cfdk448 Royal Cornwall Hospital'),
(4239, 'https://ror.org/02qb5a654', 'en', 1, 'https://ror.org/02qb5a654 Somerset Medical Center'),
(4240, 'https://ror.org/04jxcef68', 'en', 1, 'https://ror.org/04jxcef68 Royal Edinburgh Hospital'),
(4241, 'https://ror.org/046h7rx26', 'en', 1, 'https://ror.org/046h7rx26 Tri-Service General Hospital Songshan Branch'),
(4242, 'https://ror.org/01p830915', 'en', 1, 'https://ror.org/01p830915 Morriston Hospital Ysbyty Treforus'),
(4243, 'https://ror.org/05s0ee237', 'en', 1, 'https://ror.org/05s0ee237 Morton Plant Hospital'),
(4244, 'https://ror.org/01j17xg39', 'en', 1, 'https://ror.org/01j17xg39 New York Hospital Queens'),
(4245, 'https://ror.org/03jeg4p28', 'en', 1, 'https://ror.org/03jeg4p28 Cone Health'),
(4246, 'https://ror.org/00514rc81', 'en', 1, 'https://ror.org/00514rc81 Royal Hallamshire Hospital'),
(4247, 'https://ror.org/045m9y072', 'en', 1, 'https://ror.org/045m9y072 Moses H Cone Memorial Hospital'),
(4248, 'https://ror.org/00hhwej14', 'en', 1, 'https://ror.org/00hhwej14 Royal Hampshire County Hospital'),
(4249, 'https://ror.org/003ncyx50', 'no_lang_code', 1, 'https://ror.org/003ncyx50 Lourdes Hospital'),
(4250, 'https://ror.org/03cht9689', 'en', 1, 'https://ror.org/03cht9689 Royal Hospital'),
(4251, 'https://ror.org/05xjxp170', 'en', 1, 'https://ror.org/05xjxp170 Lovelace Health System'),
(4252, 'https://ror.org/02y4qch95', 'en', 1, 'https://ror.org/02y4qch95 Lovelace Medical Center'),
(4253, 'https://ror.org/05t65ke24', 'en', 1, 'https://ror.org/05t65ke24 Sophiahemmet Hospital Sophiahemmet Sjukhus'),
(4254, 'https://ror.org/033gfa640', 'en', 1, 'https://ror.org/033gfa640 Royal Hospital Haslar'),
(4255, 'https://ror.org/02c1pgm26', 'en', 1, 'https://ror.org/02c1pgm26 Royal Inland Hospital'),
(4256, 'https://ror.org/05e247w35', 'en', 1, 'https://ror.org/05e247w35 Morristown Hamblen Hospital Foundation'),
(4257, 'https://ror.org/02sp8x745', 'en', 1, 'https://ror.org/02sp8x745 Royal Jubilee Hospital'),
(4258, 'https://ror.org/04gt4je81', 'sv', 1, 'https://ror.org/04gt4je81 Lasarettet i Motala'),
(4259, 'https://ror.org/031wwqy14', 'en', 1, 'https://ror.org/031wwqy14 Sound Shore Medical Center'),
(4260, 'https://ror.org/05q7jp496', 'en', 1, 'https://ror.org/05q7jp496 South African Institute for Medical Research'),
(4261, 'https://ror.org/03wzyp716', 'en', 1, 'https://ror.org/03wzyp716 Mount Carmel Health'),
(4262, 'https://ror.org/03q45zd70', 'en', 1, 'https://ror.org/03q45zd70 South Dakota Foundation for Medical Care'),
(4263, 'https://ror.org/00bwhj131', 'en', 1, 'https://ror.org/00bwhj131 Newark Beth Israel Medical Center'),
(4264, 'https://ror.org/01x8yyz38', 'en', 1, 'https://ror.org/01x8yyz38 Etelä-Karjalan keskussairaala South Karelia Central Hospital'),
(4265, 'https://ror.org/01pp15642', 'en', 1, 'https://ror.org/01pp15642 South Nassau Communities Hospital'),
(4266, 'https://ror.org/00q75av54', 'en', 1, 'https://ror.org/00q75av54 South Tyneside District Hospital'),
(4267, 'https://ror.org/019z9dk17', 'en', 1, 'https://ror.org/019z9dk17 Mount Elizabeth Hospital மவுண்ட் எலிசபெத் மருத்துவமனை'),
(4268, 'https://ror.org/008r2d260', 'en', 1, 'https://ror.org/008r2d260 Louisiana State University Hospital'),
(4269, 'https://ror.org/02nzaav06', 'es', 1, 'https://ror.org/02nzaav06 Hospital Luis Vernaza'),
(4270, 'https://ror.org/04gh26240', 'en', 1, 'https://ror.org/04gh26240 Mount Gould Hospital'),
(4271, 'https://ror.org/04qj1gz53', 'de', 1, 'https://ror.org/04qj1gz53 Lukaskrankenhaus'),
(4272, 'https://ror.org/03qaqdm58', 'sv', 1, 'https://ror.org/03qaqdm58 Capio Lundby Sjukhus'),
(4273, 'https://ror.org/05deks119', 'en', 1, 'https://ror.org/05deks119 Mount Sinai Hospital'),
(4274, 'https://ror.org/01zkyz108', 'en', 1, 'https://ror.org/01zkyz108 Hospital Monte Sinaí Mount Sinai Hospital'),
(4275, 'https://ror.org/00wr13y59', 'en', 1, 'https://ror.org/00wr13y59 Lutheran Medical Center'),
(4276, 'https://ror.org/05va5gy74', 'en', 1, 'https://ror.org/05va5gy74 Royal National Hospital for Rheumatic Diseases'),
(4277, 'https://ror.org/05v4bdf81', 'en', 1, 'https://ror.org/05v4bdf81 Southampton Hospital'),
(4278, 'https://ror.org/03h2ajh11', 'en', 1, 'https://ror.org/03h2ajh11 Saint Francis Hospital & Medical Center'),
(4279, 'https://ror.org/02pp7xn25', 'en', 1, 'https://ror.org/02pp7xn25 Punjab Government Dental College and Hospital'),
(4280, 'https://ror.org/03zkja782', 'en', 1, 'https://ror.org/03zkja782 Luton and Dunstable University Hospital NHS Foundation Trust'),
(4281, 'https://ror.org/03hrxmf69', 'en', 1, 'https://ror.org/03hrxmf69 Newton Wellesley Hospital'),
(4282, 'https://ror.org/043j9bc42', 'en', 1, 'https://ror.org/043j9bc42 Royal National Orthopaedic Hospital'),
(4283, 'https://ror.org/03mt09h51', 'en', 1, 'https://ror.org/03mt09h51 Lyndon Baines Johnson Hospital'),
(4284, 'https://ror.org/03j554d90', 'en', 1, 'https://ror.org/03j554d90 M.S. Ramaiah Medical College'),
(4285, 'https://ror.org/01h9y0t02', 'en', 1, 'https://ror.org/01h9y0t02 Mount Sinai Hospital'),
(4286, 'https://ror.org/04am5a125', 'en', 1, 'https://ror.org/04am5a125 Mount Vernon Hospital'),
(4287, 'https://ror.org/03scbek41', 'en', 1, 'https://ror.org/03scbek41 Royal Orthopaedic Hospital'),
(4288, 'https://ror.org/04xpmtk39', 'en', 1, 'https://ror.org/04xpmtk39 Southern Hills Medical Center'),
(4289, 'https://ror.org/056v1sx90', 'en', 1, 'https://ror.org/056v1sx90 Nicosia General Hospital'),
(4290, 'https://ror.org/05ayf4d73', 'en', 1, 'https://ror.org/05ayf4d73 Southlake Regional Health Center'),
(4291, 'https://ror.org/04rvm9c15', 'en', 1, 'https://ror.org/04rvm9c15 Southland Hospital'),
(4292, 'https://ror.org/01rdjpj45', 'en', 1, 'https://ror.org/01rdjpj45 M. P. Shah Medical College શ્રી એમપી શાહ સરકારી મેડિકલ કોલેજ'),
(4293, 'https://ror.org/05d576879', 'en', 1, 'https://ror.org/05d576879 Southmead Hospital'),
(4294, 'https://ror.org/04dzvew28', 'en', 1, 'https://ror.org/04dzvew28 Hackensack University Medical Center Mountainside'),
(4295, 'https://ror.org/05kpx1157', 'en', 1, 'https://ror.org/05kpx1157 Royal Preston Hospital'),
(4296, 'https://ror.org/01r8fpq52', 'en', 1, 'https://ror.org/01r8fpq52 Niigata City General Hospital 新潟市民病院'),
(4297, 'https://ror.org/0427fee43', 'en', 1, 'https://ror.org/0427fee43 Maharani Laxmi Bai Medical College'),
(4298, 'https://ror.org/018pq0b08', 'no_lang_code', 1, 'https://ror.org/018pq0b08 Niigata Prefectural Central Hospital 新潟県立中央病院'),
(4299, 'https://ror.org/05d9wmt54', 'no_lang_code', 1, 'https://ror.org/05d9wmt54 Mpilo Central Hospital'),
(4300, 'https://ror.org/008c4hs90', 'no_lang_code', 1, 'https://ror.org/008c4hs90 Niigata Prefectural Shibata Hospital 新潟県立新発田病院'),
(4301, 'https://ror.org/01xd4z152', 'en', 1, 'https://ror.org/01xd4z152 Southwest Washington Medical Center'),
(4302, 'https://ror.org/03cjj7d58', 'pt', 1, 'https://ror.org/03cjj7d58 Hospital Municipal Souza Aguiar'),
(4303, 'https://ror.org/0120mb525', 'nl', 1, 'https://ror.org/0120mb525 Spaarne Ziekenhuis'),
(4304, 'https://ror.org/01zbzxe52', 'en', 1, 'https://ror.org/01zbzxe52 Royal South Hants Hospital'),
(4305, 'https://ror.org/02v3sdn51', 'en', 1, 'https://ror.org/02v3sdn51 MRC/CSO Social and Public Health Sciences Unit'),
(4306, 'https://ror.org/03zwf0j41', 'en', 1, 'https://ror.org/03zwf0j41 Macclesfield District General Hospital'),
(4307, 'https://ror.org/018dx8725', 'en', 1, 'https://ror.org/018dx8725 Sparrow Hospital'),
(4308, 'https://ror.org/05fe2n505', 'en', 1, 'https://ror.org/05fe2n505 Royal Sussex County Hospital'),
(4309, 'https://ror.org/0322mf940', 'en', 1, 'https://ror.org/0322mf940 Spartanburg Regional Medical Center'),
(4310, 'https://ror.org/03rq50d77', 'en', 1, 'https://ror.org/03rq50d77 Royal Victoria Hospital'),
(4311, 'https://ror.org/039q00p63', 'en', 1, 'https://ror.org/039q00p63 Edward Francis Small Teaching Hospital'),
(4312, 'https://ror.org/02fvvnh95', 'en', 1, 'https://ror.org/02fvvnh95 Spenshult Hospital'),
(4313, 'https://ror.org/058yxq906', 'en', 1, 'https://ror.org/058yxq906 Nikko Memorial Hospital 日鋼記念病院'),
(4314, 'https://ror.org/04zpy9a42', 'en', 1, 'https://ror.org/04zpy9a42 Nil Ratan Sircar Medical College and Hospital नील रतन सरकार मेडिकल कॉलेज र अस्पताल'),
(4315, 'https://ror.org/05hwn6x82', 'en', 1, 'https://ror.org/05hwn6x82 Spring Branch Medical Center'),
(4316, 'https://ror.org/00mc5wj35', 'en', 1, 'https://ror.org/00mc5wj35 Mudanjiang Medical University 牡丹江医学院'),
(4317, 'https://ror.org/015e6tf70', 'en', 1, 'https://ror.org/015e6tf70 Madonna Rehabilitation Hospital'),
(4318, 'https://ror.org/01r89q997', 'en', 1, 'https://ror.org/01r89q997 Royal Victoria Regional Health Centre'),
(4319, 'https://ror.org/009qqcw96', 'en', 1, 'https://ror.org/009qqcw96 Lehigh Valley Hospital Muhlenberg'),
(4320, 'https://ror.org/0120w8n36', 'en', 1, 'https://ror.org/0120w8n36 Muhlenberg Regional Medical Center'),
(4321, 'https://ror.org/039tm4h11', 'en', 1, 'https://ror.org/039tm4h11 Sree Balaji Dental College and Hospital'),
(4322, 'https://ror.org/050ztxn78', 'en', 1, 'https://ror.org/050ztxn78 Madras Medical College மதராசு மருத்துவக் கல்லூரி మద్రాస్ వైద్య కళాశాల'),
(4323, 'https://ror.org/05757k612', 'en', 1, 'https://ror.org/05757k612 Sree Chitra Thirunal Institute for Medical Sciences and Technology'),
(4324, 'https://ror.org/04g0bt697', 'en', 1, 'https://ror.org/04g0bt697 MultiCare Health System'),
(4325, 'https://ror.org/03c7caz94', 'en', 1, 'https://ror.org/03c7caz94 Sri Aurobindo Institute of Medical Sciences'),
(4326, 'https://ror.org/028jrgj19', 'en', 1, 'https://ror.org/028jrgj19 Multnomah County Health Department'),
(4327, 'https://ror.org/032nh7f71', 'en', 1, 'https://ror.org/032nh7f71 RTI Health Solutions'),
(4328, 'https://ror.org/00k9e1m49', 'en', 1, 'https://ror.org/00k9e1m49 Sri Devaraj Urs Medical College'),
(4329, 'https://ror.org/02w2vzn61', 'en', 1, 'https://ror.org/02w2vzn61 Ruchill Hospital'),
(4330, 'https://ror.org/02vaqnn82', 'en', 1, 'https://ror.org/02vaqnn82 Madras Medical Mission'),
(4331, 'https://ror.org/039c6rk82', 'en', 1, 'https://ror.org/039c6rk82 Ninewells Hospital'),
(4332, 'https://ror.org/01bmj6z20', 'en', 1, 'https://ror.org/01bmj6z20 Maesot General Hospital โรงพยาบาลแม่สอด'),
(4333, 'https://ror.org/00m5fzs56', 'en', 1, 'https://ror.org/00m5fzs56 Maebashi Red Cross Hospital 前橋赤十字病院'),
(4334, 'https://ror.org/05pkzpg75', 'en', 1, 'https://ror.org/05pkzpg75 Ningbo First Hospital 宁波市第一医院'),
(4335, 'https://ror.org/0219djn76', 'en', 1, 'https://ror.org/0219djn76 Rush Children''s Hospital'),
(4336, 'https://ror.org/050adm910', 'no_lang_code', 1, 'https://ror.org/050adm910 Chiba Hokusou Hospital 日本医科大学千葉北総病院'),
(4337, 'https://ror.org/05mzkvr65', 'en', 1, 'https://ror.org/05mzkvr65 Skokie Hospital'),
(4338, 'https://ror.org/000jd8a09', 'no_lang_code', 1, 'https://ror.org/000jd8a09 Mafraq Hospital مستشفى المفرق'),
(4339, 'https://ror.org/04ckgfr29', 'en', 1, 'https://ror.org/04ckgfr29 Sri Manakula Vinayagar Medical College and Hospital'),
(4340, 'https://ror.org/02c1c4p76', 'en', 1, 'https://ror.org/02c1c4p76 Magee Rehabilitation Hospital'),
(4341, 'https://ror.org/00y1kmp77', 'en', 1, 'https://ror.org/00y1kmp77 NIMTS Hospital'),
(4342, 'https://ror.org/04qs81248', 'en', 1, 'https://ror.org/04qs81248 Russells Hall Hospital'),
(4343, 'https://ror.org/022k8bt28', 'en', 1, 'https://ror.org/022k8bt28 Nishi Eye Hospital 西眼科病院'),
(4344, 'https://ror.org/05skj8r52', 'en', 1, 'https://ror.org/05skj8r52 Rutland Regional Medical Center'),
(4345, 'https://ror.org/039thcs93', 'en', 1, 'https://ror.org/039thcs93 Sri Venkateswara Institute of Medical Sciences'),
(4346, 'https://ror.org/02mvsxw13', 'en', 1, 'https://ror.org/02mvsxw13 Kobe City Nishi-Kobe Medical Center 神戸市立西神戸医療センター'),
(4347, 'https://ror.org/010tmdc88', 'it', 1, 'https://ror.org/010tmdc88 Ospedale Maggiore Carlo Alberto Pizzardi'),
(4348, 'https://ror.org/01a1x1d92', 'no_lang_code', 1, 'https://ror.org/01a1x1d92 Ruttonjee Hospital 律敦治醫院'),
(4349, 'https://ror.org/02gjsze31', 'en', 1, 'https://ror.org/02gjsze31 St. Luke''s Magic Valley Medical Center'),
(4350, 'https://ror.org/059wef195', 'en', 1, 'https://ror.org/059wef195 Nishi Niigata Chuo National Hospital 国立病院機構西新潟中央病院'),
(4351, 'https://ror.org/00j8xcs04', 'en', 1, 'https://ror.org/00j8xcs04 Sir Sayajirao General Hospital Medical College'),
(4352, 'https://ror.org/0152ray34', 'no_lang_code', 1, 'https://ror.org/0152ray34 Maharat Nakhon Ratchasima Hospital โรงพยาบาลมหาราชนครราชสีมา'),
(4353, 'https://ror.org/05pet2p92', 'no_lang_code', 1, 'https://ror.org/05pet2p92 Nishida Hospital 西田病院'),
(4354, 'https://ror.org/0525j6d32', 'en', 1, 'https://ror.org/0525j6d32 Nishijin Hospital 西陣病院'),
(4355, 'https://ror.org/04crdae34', 'en', 1, 'https://ror.org/04crdae34 Mahatma Gandhi Institute of Medical Sciences महात्मा गांधी वैद्यकीय संस्था'),
(4356, 'https://ror.org/05v4pjq26', 'en', 1, 'https://ror.org/05v4pjq26 Mahatma Gandhi Medical College and Research Institute'),
(4357, 'https://ror.org/01qcxb695', 'no_lang_code', 1, 'https://ror.org/01qcxb695 Mahosot Hospital'),
(4358, 'https://ror.org/05wd86d64', 'it', 1, 'https://ror.org/05wd86d64 Ospedale San Bortolo'),
(4359, 'https://ror.org/047v2cv91', 'en', 1, 'https://ror.org/047v2cv91 Maidstone Hospital'),
(4360, 'https://ror.org/00hm23551', 'no_lang_code', 1, 'https://ror.org/00hm23551 Nishinomiya Municipal Central Hospital 西宮市立中央病院'),
(4361, 'https://ror.org/00g651r29', 'en', 1, 'https://ror.org/00g651r29 Maimonides Medical Center'),
(4362, 'https://ror.org/00fqdgv63', 'en', 1, 'https://ror.org/00fqdgv63 Lankenau Heart Institute'),
(4363, 'https://ror.org/03zzjb946', 'en', 1, 'https://ror.org/03zzjb946 Nishinomiya Kyoritsu Neurosurgical Hospital 西宮協立脳神経外科病院'),
(4364, 'https://ror.org/03d1wq758', 'en', 1, 'https://ror.org/03d1wq758 Maine Medical Center Research Institute'),
(4365, 'https://ror.org/02k57ty04', 'de', 1, 'https://ror.org/02k57ty04 Klinikum Lüneburg'),
(4366, 'https://ror.org/014mgn481', 'no_lang_code', 1, 'https://ror.org/014mgn481 Maizuru Municipal Hospital 市立舞鶴市民病院'),
(4367, 'https://ror.org/03ca99543', 'tr', 1, 'https://ror.org/03ca99543 SSK İhtisas Hastanesi'),
(4368, 'https://ror.org/05bt0cf40', 'tr', 1, 'https://ror.org/05bt0cf40 Okmeydanı Eğitim ve Araştırma Hastanesi'),
(4369, 'https://ror.org/04m0kdq23', 'it', 1, 'https://ror.org/04m0kdq23 Ospedale Sant''Anna'),
(4370, 'https://ror.org/05echw708', 'en', 1, 'https://ror.org/05echw708 Archbishop Makarios III Hospital'),
(4371, 'https://ror.org/039evc422', 'en', 1, 'https://ror.org/039evc422 Municipal Institute for Medical Research'),
(4372, 'https://ror.org/049aadf12', 'en', 1, 'https://ror.org/049aadf12 Bezmialem Foundation University Medical Faculty Hospital Bezmiâlem Vakıf Üniversitesi Tıp Fakültesi Hastanesi'),
(4373, 'https://ror.org/05e272m53', 'en', 1, 'https://ror.org/05e272m53 Munroe Regional Medical Center'),
(4374, 'https://ror.org/05m4t4820', 'en', 1, 'https://ror.org/05m4t4820 Makassed General Hospital'),
(4375, 'https://ror.org/01d86hn60', 'it', 1, 'https://ror.org/01d86hn60 Ospedale San Carlo'),
(4376, 'https://ror.org/005qzv038', 'en', 1, 'https://ror.org/005qzv038 Munson Medical Center'),
(4377, 'https://ror.org/00gahk913', 'en', 1, 'https://ror.org/00gahk913 Sendai Nishitaga National Hospital 国立病院機構仙台西多賀病院'),
(4378, 'https://ror.org/04mwdyf26', 'en', 1, 'https://ror.org/04mwdyf26 Al-Makassed Islamic Charitable Society Hospital'),
(4379, 'https://ror.org/02jy1hx10', 'en', 1, 'https://ror.org/02jy1hx10 Makati Medical Center'),
(4380, 'https://ror.org/009fnyh39', 'en', 1, 'https://ror.org/009fnyh39 Malabar Institute of Medical Sciences'),
(4381, 'https://ror.org/02rjrn566', 'en', 1, 'https://ror.org/02rjrn566 Nishtar Medical College and Hospital'),
(4382, 'https://ror.org/056pg9759', 'en', 1, 'https://ror.org/056pg9759 SSM Health Care'),
(4383, 'https://ror.org/042rz6s74', 'en', 1, 'https://ror.org/042rz6s74 Nissan Tamagawa Hospital 日産厚生会 玉川病院'),
(4384, 'https://ror.org/01zyevp23', 'en', 1, 'https://ror.org/01zyevp23 Musgrave Park Hospital'),
(4385, 'https://ror.org/0011azt19', 'en', 1, 'https://ror.org/0011azt19 Saint Agnes Hospital'),
(4386, 'https://ror.org/042fv2404', 'en', 1, 'https://ror.org/042fv2404 Musgrove Park Hospital'),
(4387, 'https://ror.org/047xgg150', 'tr', 1, 'https://ror.org/047xgg150 Malatya Devlet Hastanesi'),
(4388, 'https://ror.org/01wjz9118', 'en', 1, 'https://ror.org/01wjz9118 Nizam''s Institute of Medical Sciences'),
(4389, 'https://ror.org/00apdsa62', 'en', 1, 'https://ror.org/00apdsa62 Privolzhsky Research Medical University Приволжский исследовательский медицинский университет'),
(4390, 'https://ror.org/024esvk12', 'en', 1, 'https://ror.org/024esvk12 Saint Barnabas Medical Center'),
(4391, 'https://ror.org/043ppnw54', 'it', 1, 'https://ror.org/043ppnw54 Ospedale San Donato'),
(4392, 'https://ror.org/000kb2a90', 'en', 1, 'https://ror.org/000kb2a90 Mymensingh Medical College Hospital ময়মনসিংহ মেডিকেল কলেজ'),
(4393, 'https://ror.org/00nh9x179', 'en', 1, 'https://ror.org/00nh9x179 St Bartholomew''s Hospital'),
(4394, 'https://ror.org/00qt4k071', 'it', 1, 'https://ror.org/00qt4k071 Ospedale San Filippo Neri'),
(4395, 'https://ror.org/045cqy185', 'en', 1, 'https://ror.org/045cqy185 Mamata Medical College'),
(4396, 'https://ror.org/00hp6as40', 'en', 1, 'https://ror.org/00hp6as40 Mammoth Hospital'),
(4397, 'https://ror.org/00r1hxj45', 'en', 1, 'https://ror.org/00r1hxj45 Noor Eye Hospital بیمارستان چشمپزشکی نور'),
(4398, 'https://ror.org/01btjc831', 'it', 1, 'https://ror.org/01btjc831 Ospedale San Giacomo Apostolo'),
(4399, 'https://ror.org/03gfs5c49', 'en', 1, 'https://ror.org/03gfs5c49 Nordic School of Public Health'),
(4400, 'https://ror.org/05qfq7p37', 'en', 1, 'https://ror.org/05qfq7p37 Sint Clara Ziekenhuis St Clara Hospital'),
(4401, 'https://ror.org/05m6e7d23', 'it', 1, 'https://ror.org/05m6e7d23 Ospedale San Giuseppe'),
(4402, 'https://ror.org/02v5mzt02', 'en', 1, 'https://ror.org/02v5mzt02 St David''s Medical Center'),
(4403, 'https://ror.org/01pj4nt72', 'en', 1, 'https://ror.org/01pj4nt72 Nordland Hospital'),
(4404, 'https://ror.org/05n5d3f06', 'en', 1, 'https://ror.org/05n5d3f06 Nagahama City Hospital 長浜市病院'),
(4405, 'https://ror.org/04gpfvy81', 'nl', 1, 'https://ror.org/04gpfvy81 Elisabeth-TweeSteden Ziekenhuis'),
(4406, 'https://ror.org/04xtpk854', 'en', 1, 'https://ror.org/04xtpk854 Manchester Royal Eye Hospital'),
(4407, 'https://ror.org/02t96cy48', 'it', 1, 'https://ror.org/02t96cy48 Azienda Ospedaliera S.Maria'),
(4408, 'https://ror.org/02mssnc42', 'no_lang_code', 1, 'https://ror.org/02mssnc42 Nagano Municipal Hospital 長野市民病院'),
(4409, 'https://ror.org/01683nj06', 'en', 1, 'https://ror.org/01683nj06 Mangla Hospital and Research Center'),
(4410, 'https://ror.org/00qctrq52', 'en', 1, 'https://ror.org/00qctrq52 Manipal College of Medical Sciences'),
(4411, 'https://ror.org/05mryn396', 'no_lang_code', 1, 'https://ror.org/05mryn396 Manipal Hospital'),
(4412, 'https://ror.org/01qemgb02', 'en', 1, 'https://ror.org/01qemgb02 Manipal Teaching Hospital मणिपाल टीचिंग हस्पिटल'),
(4413, 'https://ror.org/00mj4n083', 'en', 1, 'https://ror.org/00mj4n083 St. Francis Hospital'),
(4414, 'https://ror.org/0077pzv34', 'en', 1, 'https://ror.org/0077pzv34 Manitoba Health'),
(4415, 'https://ror.org/03vmdsx94', 'en', 1, 'https://ror.org/03vmdsx94 Nagara Medical Center 国立病院機構長良医療センター'),
(4416, 'https://ror.org/021zm6p18', 'en', 1, 'https://ror.org/021zm6p18 Norfolk and Norwich University Hospital'),
(4417, 'https://ror.org/042thbm45', 'en', 1, 'https://ror.org/042thbm45 Manly Hospital'),
(4418, 'https://ror.org/02d3k5845', 'en', 1, 'https://ror.org/02d3k5845 St Francis Medical Center'),
(4419, 'https://ror.org/04bmgpj29', 'en', 1, 'https://ror.org/04bmgpj29 Walsall Manor Hospital'),
(4420, 'https://ror.org/00bs3zm56', 'no_lang_code', 1, 'https://ror.org/00bs3zm56 Nagasaki Municipal Hospital 長崎みなとメディカルセンター市民病院'),
(4421, 'https://ror.org/04g33m791', 'en', 1, 'https://ror.org/04g33m791 Norrköping Hospital'),
(4422, 'https://ror.org/02pk13h45', 'en', 1, 'https://ror.org/02pk13h45 St George Hospital'),
(4423, 'https://ror.org/01cjd8n57', 'no_lang_code', 1, 'https://ror.org/01cjd8n57 Nagasaki Rousai Hospital 長崎労災病院'),
(4424, 'https://ror.org/010tb3a87', 'en', 1, 'https://ror.org/010tb3a87 Nagatomi Neurosurgical Hospital 永冨脳神経外科病院'),
(4425, 'https://ror.org/05xhpce34', 'en', 1, 'https://ror.org/05xhpce34 St Göran''s Children''s Hospital'),
(4426, 'https://ror.org/04fyasj17', 'en', 1, 'https://ror.org/04fyasj17 Nagoya Central Hospital 名古屋セントラル病院'),
(4427, 'https://ror.org/05t8kxz54', 'en', 1, 'https://ror.org/05t8kxz54 Saddleback Memorial Medical Center'),
(4428, 'https://ror.org/002x0mf51', 'tr', 1, 'https://ror.org/002x0mf51 Mareşal Çakmak Askeri Hastanesi'),
(4429, 'https://ror.org/04c6bry31', 'en', 1, 'https://ror.org/04c6bry31 St. James''s Hospital'),
(4430, 'https://ror.org/0267zkr58', 'no_lang_code', 1, 'https://ror.org/0267zkr58 Safdarjang Hospital'),
(4431, 'https://ror.org/05xhkqs13', 'en', 1, 'https://ror.org/05xhkqs13 North Bengal Medical College and Hospital নর্থবেঙ্গল মেডিক্যাল কলেজ'),
(4432, 'https://ror.org/009fhc817', 'pl', 1, 'https://ror.org/009fhc817 Szpital im Tadeusza Marciniaka'),
(4433, 'https://ror.org/05x2sza30', 'en', 1, 'https://ror.org/05x2sza30 Higashi Nagoya National Hospital 国立病院機構東名古屋病院'),
(4434, 'https://ror.org/01dkvrg87', 'en', 1, 'https://ror.org/01dkvrg87 Sabbatsberg Hospital Sabbatsbergs Sjukhus'),
(4435, 'https://ror.org/01nhcyg40', 'no_lang_code', 1, 'https://ror.org/01nhcyg40 Nagoya Ekisaikai Hospital 名古屋掖済会病院'),
(4436, 'https://ror.org/05fccw142', 'it', 1, 'https://ror.org/05fccw142 Ospedale San Pietro Fatebenefratelli'),
(4437, 'https://ror.org/04ctp9859', 'it', 1, 'https://ror.org/04ctp9859 Ospedale Maria Vittoria'),
(4438, 'https://ror.org/03m5bv793', 'en', 1, 'https://ror.org/03m5bv793 Marianjoy Rehabilitation Hospital'),
(4439, 'https://ror.org/034t5cp02', 'en', 1, 'https://ror.org/034t5cp02 North Carolina Division of Public Health'),
(4440, 'https://ror.org/010hq5p48', 'it', 1, 'https://ror.org/010hq5p48 Ospedale Sacro Cuore Don Calabria'),
(4441, 'https://ror.org/05kzbz291', 'no_lang_code', 1, 'https://ror.org/05kzbz291 Nagoya Kyouritsu Hospital 名古屋共立病院'),
(4442, 'https://ror.org/035p1zc77', 'en', 1, 'https://ror.org/035p1zc77 St John of Jerusalem Eye Hospital Group'),
(4443, 'https://ror.org/01hssm416', 'en', 1, 'https://ror.org/01hssm416 St John''s Hospital'),
(4444, 'https://ror.org/02a2vbq68', 'en', 1, 'https://ror.org/02a2vbq68 Nagoya Memorial Hospital 名古屋記念病院'),
(4445, 'https://ror.org/00sbqe313', 'en', 1, 'https://ror.org/00sbqe313 Sacred Heart Medical Center'),
(4446, 'https://ror.org/04z7fc725', 'en', 1, 'https://ror.org/04z7fc725 St.John''s Medical College Hospital'),
(4447, 'https://ror.org/02jed3n25', 'en', 1, 'https://ror.org/02jed3n25 Sacred Heart Hospital'),
(4448, 'https://ror.org/0460fxw51', 'en', 1, 'https://ror.org/0460fxw51 Sacred Heart Hospital'),
(4449, 'https://ror.org/05qye4525', 'en', 1, 'https://ror.org/05qye4525 Mercy Hospital'),
(4450, 'https://ror.org/05k9bck94', 'en', 1, 'https://ror.org/05k9bck94 Marietta Memorial Hospital'),
(4451, 'https://ror.org/046vare28', 'de', 1, 'https://ror.org/046vare28 St. Josef-Hospital'),
(4452, 'https://ror.org/00ft41876', 'en', 1, 'https://ror.org/00ft41876 Marion duPont Scott Equine Medical Center'),
(4453, 'https://ror.org/00r59hk87', 'en', 1, 'https://ror.org/00r59hk87 North Kansas City Hospital'),
(4454, 'https://ror.org/01wc5x922', 'en', 1, 'https://ror.org/01wc5x922 Providence Sacred Heart Medical Center'),
(4455, 'https://ror.org/03fz57f90', 'hu', 1, 'https://ror.org/03fz57f90 Markusovszky Egyetemi Oktatókórház'),
(4456, 'https://ror.org/02gxymm77', 'en', 1, 'https://ror.org/02gxymm77 Nakamura Memorial Hospital 中村記念病院'),
(4457, 'https://ror.org/007vcvm35', 'en', 1, 'https://ror.org/007vcvm35 North Karelia Central Hospital Pohjois-Karjalan Sairaanhoito- Ja Sosiaalipalvelujen Kuntayhtymä'),
(4458, 'https://ror.org/03tqnz817', 'en', 1, 'https://ror.org/03tqnz817 Sachs'' Children and Youth Hospital'),
(4459, 'https://ror.org/010kthv55', 'no_lang_code', 1, 'https://ror.org/010kthv55 Nakadōri General Hospital 中通総合病院'),
(4460, 'https://ror.org/02mxfm070', 'en', 1, 'https://ror.org/02mxfm070 St Joseph''s Hospital Health Center'),
(4461, 'https://ror.org/010ns0q29', 'en', 1, 'https://ror.org/010ns0q29 North Memorial Medical Center'),
(4462, 'https://ror.org/03acrxj66', 'en', 1, 'https://ror.org/03acrxj66 North Memorial Health Care'),
(4463, 'https://ror.org/00agkba13', 'en', 1, 'https://ror.org/00agkba13 Martha Jefferson Hospital'),
(4464, 'https://ror.org/01xrnpj63', 'no_lang_code', 1, 'https://ror.org/01xrnpj63 Sahara Hospital'),
(4465, 'https://ror.org/046e0q987', 'en', 1, 'https://ror.org/046e0q987 St Lawrence Hospital'),
(4466, 'https://ror.org/05n952b74', 'en', 1, 'https://ror.org/05n952b74 North Mississippi Medical Center'),
(4467, 'https://ror.org/04wbsx459', 'en', 1, 'https://ror.org/04wbsx459 Nambour General Hospital'),
(4468, 'https://ror.org/05y7e6905', 'no_lang_code', 1, 'https://ror.org/05y7e6905 Sahmyook Medical Center 삼육의료원서울병원'),
(4469, 'https://ror.org/05d871a36', 'en', 1, 'https://ror.org/05d871a36 Saifee Hospital'),
(4470, 'https://ror.org/01atwky19', 'en', 1, 'https://ror.org/01atwky19 North Oaks Health System'),
(4471, 'https://ror.org/0195twz09', 'en', 1, 'https://ror.org/0195twz09 St. Luke''s Episcopal Hospital'),
(4472, 'https://ror.org/02ajrkx50', 'en', 1, 'https://ror.org/02ajrkx50 St. Luke''s Hospital'),
(4473, 'https://ror.org/051b9c228', 'it', 1, 'https://ror.org/051b9c228 Ospedale Martini'),
(4474, 'https://ror.org/00g9xaj16', 'en', 1, 'https://ror.org/00g9xaj16 Saint Agnes Medical Center'),
(4475, 'https://ror.org/04e4abg78', 'no_lang_code', 1, 'https://ror.org/04e4abg78 Nantan General Hospital 公立南丹病院'),
(4476, 'https://ror.org/03r776098', 'en', 1, 'https://ror.org/03r776098 Saint Alphonsus Regional Medical Center'),
(4477, 'https://ror.org/02952et24', 'en', 1, 'https://ror.org/02952et24 St. Barnabas Hospital'),
(4478, 'https://ror.org/01t69y763', 'en', 1, 'https://ror.org/01t69y763 St. Luke''s Hospital'),
(4479, 'https://ror.org/04j71m034', 'en', 1, 'https://ror.org/04j71m034 Saint Francis Health System'),
(4480, 'https://ror.org/00z0ne711', 'en', 1, 'https://ror.org/00z0ne711 Saint Francis Hospital'),
(4481, 'https://ror.org/01dzpsy49', 'en', 1, 'https://ror.org/01dzpsy49 Nara City Hospital 市立奈良病院'),
(4482, 'https://ror.org/01t6fdj11', 'en', 1, 'https://ror.org/01t6fdj11 Mary Free Bed Rehabilitation Hospital'),
(4483, 'https://ror.org/002ksg449', 'en', 1, 'https://ror.org/002ksg449 Mary Crowley Cancer Research Center'),
(4484, 'https://ror.org/00b4emx12', 'en', 1, 'https://ror.org/00b4emx12 North Shore Medical Center'),
(4485, 'https://ror.org/026gtm069', 'en', 1, 'https://ror.org/026gtm069 Maryknoll Medical Center 메리놀병원'),
(4486, 'https://ror.org/02e1t6r96', 'en', 1, 'https://ror.org/02e1t6r96 Maryland Department of Health'),
(4487, 'https://ror.org/03rx7qt61', 'en', 1, 'https://ror.org/03rx7qt61 Maryland State Medical Society'),
(4488, 'https://ror.org/004rs4477', 'en', 1, 'https://ror.org/004rs4477 Masonic Medical Research Laboratory'),
(4489, 'https://ror.org/05h29d328', 'en', 1, 'https://ror.org/05h29d328 Saint Francis Memorial Hospital'),
(4490, 'https://ror.org/00j2n4x83', 'en', 1, 'https://ror.org/00j2n4x83 Narayana Dental College and Hospital'),
(4491, 'https://ror.org/01nwsvf80', 'en', 1, 'https://ror.org/01nwsvf80 Shiga Medical Center for Children 子供のための滋賀医療センター'),
(4492, 'https://ror.org/03t4gtw27', 'ro', 1, 'https://ror.org/03t4gtw27 Spitalul Clinic de Urgenta Sfantul Ioan'),
(4493, 'https://ror.org/05kx1ke03', 'en', 1, 'https://ror.org/05kx1ke03 Narayana Health'),
(4494, 'https://ror.org/05k4mr860', 'en', 1, 'https://ror.org/05k4mr860 Saint John Regional Hospital'),
(4495, 'https://ror.org/01gcc9p15', 'en', 1, 'https://ror.org/01gcc9p15 Saint John''s Health Center'),
(4496, 'https://ror.org/03tr4r126', 'en', 1, 'https://ror.org/03tr4r126 Narayan Medical College and Hospital'),
(4497, 'https://ror.org/05am5g719', 'en', 1, 'https://ror.org/05am5g719 St Mark''s Hospital'),
(4498, 'https://ror.org/050c9qp51', 'en', 1, 'https://ror.org/050c9qp51 Massachusetts Department of Public Health'),
(4499, 'https://ror.org/01zy11s57', 'en', 1, 'https://ror.org/01zy11s57 North Tyneside General Hospital'),
(4500, 'https://ror.org/01ttqjq76', 'en', 1, 'https://ror.org/01ttqjq76 North Wales Hospital'),
(4501, 'https://ror.org/03c622h45', 'en', 1, 'https://ror.org/03c622h45 National Academy for State Health Policy'),
(4502, 'https://ror.org/03pskkc12', 'en', 1, 'https://ror.org/03pskkc12 National Academy of Medical Sciences'),
(4503, 'https://ror.org/01mhbkr88', 'en', 1, 'https://ror.org/01mhbkr88 St Martha''s Regional Hospital'),
(4504, 'https://ror.org/048xpjb02', 'en', 1, 'https://ror.org/048xpjb02 National Association of County and City Health Officials'),
(4505, 'https://ror.org/03nr55d93', 'en', 1, 'https://ror.org/03nr55d93 North West Armed Forces Hospital مستشفى القوات المسلحة بالشمالية'),
(4506, 'https://ror.org/001x4vz59', 'en', 1, 'https://ror.org/001x4vz59 St Mary''s Hospital'),
(4507, 'https://ror.org/040vfm237', 'en', 1, 'https://ror.org/040vfm237 North West Regional Hospital'),
(4508, 'https://ror.org/0229c7854', 'en', 1, 'https://ror.org/0229c7854 Massachusetts Mental Health Center'),
(4509, 'https://ror.org/05wqhv079', 'en', 1, 'https://ror.org/05wqhv079 Mater Adult Hospital'),
(4510, 'https://ror.org/04mxrtj31', 'en', 1, 'https://ror.org/04mxrtj31 Mater Children''s Hospital'),
(4511, 'https://ror.org/03rfbyn37', 'en', 1, 'https://ror.org/03rfbyn37 Northampton General Hospital'),
(4512, 'https://ror.org/01emnh554', 'no_lang_code', 1, 'https://ror.org/01emnh554 Saga-Ken Medical Centre Koseikan 佐賀県医療センター好生館'),
(4513, 'https://ror.org/050cwzy61', 'en', 1, 'https://ror.org/050cwzy61 St Mary''s Hospital'),
(4514, 'https://ror.org/04r17y386', 'en', 1, 'https://ror.org/04r17y386 Danish Health and Medicines Authority National Board of Health Sundhedsstyrelsen'),
(4515, 'https://ror.org/046taf492', 'en', 1, 'https://ror.org/046taf492 St Mary''s Hospital'),
(4516, 'https://ror.org/05yjze111', 'en', 1, 'https://ror.org/05yjze111 Unity Hospital'),
(4517, 'https://ror.org/00m72p590', 'en', 1, 'https://ror.org/00m72p590 Saint Joseph''s Hospital'),
(4518, 'https://ror.org/05a01hn31', 'en', 1, 'https://ror.org/05a01hn31 Mater Dei Hospital'),
(4519, 'https://ror.org/00wzdr059', 'en', 1, 'https://ror.org/00wzdr059 St. Paul''s Hospital'),
(4520, 'https://ror.org/04yy7zb66', 'en', 1, 'https://ror.org/04yy7zb66 Centre for Mental Health'),
(4521, 'https://ror.org/01g63ab19', 'en', 1, 'https://ror.org/01g63ab19 Northside Hospital'),
(4522, 'https://ror.org/013sgak22', 'en', 1, 'https://ror.org/013sgak22 Northwest Community Hospital'),
(4523, 'https://ror.org/023gt0394', 'en', 1, 'https://ror.org/023gt0394 St Richard''s Hospital'),
(4524, 'https://ror.org/050batv17', 'en', 1, 'https://ror.org/050batv17 Mater Hospital'),
(4525, 'https://ror.org/02eypkr92', 'en', 1, 'https://ror.org/02eypkr92 Northwest Hospital and Medical Center'),
(4526, 'https://ror.org/03w94w157', 'en', 1, 'https://ror.org/03w94w157 Mater Private Hospital'),
(4527, 'https://ror.org/03j4rdg62', 'en', 1, 'https://ror.org/03j4rdg62 Mater Mothers'' Hospital'),
(4528, 'https://ror.org/009543z50', 'en', 1, 'https://ror.org/009543z50 Northwestern Memorial Hospital'),
(4529, 'https://ror.org/030j6qm79', 'en', 1, 'https://ror.org/030j6qm79 Northwick Park Hospital'),
(4530, 'https://ror.org/04a105t20', 'en', 1, 'https://ror.org/04a105t20 St. Mary''s Hospital'),
(4531, 'https://ror.org/004350h06', 'en', 1, 'https://ror.org/004350h06 Saint Vincent Hospital'),
(4532, 'https://ror.org/04ned8342', 'en', 1, 'https://ror.org/04ned8342 Saint Michael''s Medical Center'),
(4533, 'https://ror.org/02h2qwk37', 'en', 1, 'https://ror.org/02h2qwk37 St Vincent Medical Center'),
(4534, 'https://ror.org/04bg1hy68', 'en', 1, 'https://ror.org/04bg1hy68 Saint Thomas West Hospital'),
(4535, 'https://ror.org/01d2e9e05', 'en', 1, 'https://ror.org/01d2e9e05 Maternity and Children''s Hospital'),
(4536, 'https://ror.org/02hfws565', 'en', 1, 'https://ror.org/02hfws565 Northwick Park Institute for Medical Research'),
(4537, 'https://ror.org/01q6b3f33', 'no_lang_code', 1, 'https://ror.org/01q6b3f33 Al Omooma Hospital'),
(4538, 'https://ror.org/00cwrhn79', 'en', 1, 'https://ror.org/00cwrhn79 Saint Vincent''s Catholic Medical Center'),
(4539, 'https://ror.org/04hzm4679', 'en', 1, 'https://ror.org/04hzm4679 National Institute for Occupational Health'),
(4540, 'https://ror.org/02gzhbc75', 'en', 1, 'https://ror.org/02gzhbc75 Matsudo City Hospital 松戸市立病院'),
(4541, 'https://ror.org/04pne0d08', 'en', 1, 'https://ror.org/04pne0d08 Norton Medical Centre'),
(4542, 'https://ror.org/03nc3zw41', 'en', 1, 'https://ror.org/03nc3zw41 Matsue Red Cross Hospital 松江赤十字病院'),
(4543, 'https://ror.org/018vqfn69', 'en', 1, 'https://ror.org/018vqfn69 Matsunami General Hospital 松波病院'),
(4544, 'https://ror.org/03ycmew18', 'en', 1, 'https://ror.org/03ycmew18 Matsushita Memorial Hospital 松下記念病院'),
(4545, 'https://ror.org/02jww9n06', 'en', 1, 'https://ror.org/02jww9n06 Matsuyama Red Cross Hospital 松山赤十字病院'),
(4546, 'https://ror.org/000f32327', 'en', 1, 'https://ror.org/000f32327 Saint Vincent Hospital'),
(4547, 'https://ror.org/05c8e3213', 'no_lang_code', 1, 'https://ror.org/05c8e3213 Saiseikai Fukuoka General Hospital 済生会福岡総合病院'),
(4548, 'https://ror.org/055bcma36', 'en', 1, 'https://ror.org/055bcma36 Hospital Venereal and Skin Diseases Thessaloniki Νοσοκομείο Αφροδισίων & Δερματικών Νόσων Θεσσαλονίκης'),
(4549, 'https://ror.org/04r61xa45', 'no_lang_code', 1, 'https://ror.org/04r61xa45 Saiseikai Ibaraki Hospital 大阪府済生会茨木病院'),
(4550, 'https://ror.org/021f4qx93', 'en', 1, 'https://ror.org/021f4qx93 Noto General Hospital 公立能登総合病院'),
(4551, 'https://ror.org/02gxh1s15', 'en', 1, 'https://ror.org/02gxh1s15 St. Anthony Hospital'),
(4552, 'https://ror.org/00nnh8h94', 'en', 1, 'https://ror.org/00nnh8h94 Red Cross Hospital'),
(4553, 'https://ror.org/02stwhg86', 'en', 1, 'https://ror.org/02stwhg86 St. Charles Medical Center'),
(4554, 'https://ror.org/00xz1cn67', 'no_lang_code', 1, 'https://ror.org/00xz1cn67 Saiseikai Kumamoto Hospital 済生会熊本病院'),
(4555, 'https://ror.org/00e60hf45', 'en', 1, 'https://ror.org/00e60hf45 Ospidéal Naomh Damhnait St. Davnet''s Hospital'),
(4556, 'https://ror.org/05srfkv34', 'en', 1, 'https://ror.org/05srfkv34 Chelyabinsk State Medical Academy Южно-Уральский государственный медицинский университет'),
(4557, 'https://ror.org/033js5093', 'no_lang_code', 1, 'https://ror.org/033js5093 Gunma Saiseikai Maebashi Hospital 群馬県済生会前橋病院'),
(4558, 'https://ror.org/003mpgw14', 'en', 1, 'https://ror.org/003mpgw14 St. Elisabeth Hospital'),
(4559, 'https://ror.org/03pj30e67', 'no_lang_code', 1, 'https://ror.org/03pj30e67 Saiseikai Nakatsu Hospital 大阪府済生会中津病院'),
(4560, 'https://ror.org/02e560b93', 'de', 1, 'https://ror.org/02e560b93 Barmherzige Brüder Klinikum St. Elisabeth in Straubing'),
(4561, 'https://ror.org/004ej3g52', 'en', 1, 'https://ror.org/004ej3g52 National Defense Medical College Hospital 防衛医科大学校病院'),
(4562, 'https://ror.org/01x8bpc61', 'en', 1, 'https://ror.org/01x8bpc61 Saint Elizabeth Regional Medical Center'),
(4563, 'https://ror.org/053ad7h16', 'no_lang_code', 1, 'https://ror.org/053ad7h16 Saiseikai Shigaken Hospital 済生会滋賀県病院'),
(4564, 'https://ror.org/02dvgss50', 'en', 1, 'https://ror.org/02dvgss50 Stepping Hill Hospital'),
(4565, 'https://ror.org/03btaj690', 'no_lang_code', 1, 'https://ror.org/03btaj690 Numazu City Hospital 沼津市立病院'),
(4566, 'https://ror.org/03h1gw307', 'en', 1, 'https://ror.org/03h1gw307 Ospedale S. Eugenio St. Eugenio Hospital'),
(4567, 'https://ror.org/01dgncy67', 'no_lang_code', 1, 'https://ror.org/01dgncy67 Saiseikai Shimonoseki General Hospital 山口県済生会下関総合病院'),
(4568, 'https://ror.org/01r3ez507', 'en', 1, 'https://ror.org/01r3ez507 Sterling Hospitals'),
(4569, 'https://ror.org/03ehcbt32', 'no_lang_code', 1, 'https://ror.org/03ehcbt32 Saiseikai Suita Hospital 大阪府済生会吹田病院'),
(4570, 'https://ror.org/00frzd868', 'en', 1, 'https://ror.org/00frzd868 St. Francis Hospital'),
(4571, 'https://ror.org/05k1smr06', 'cs', 1, 'https://ror.org/05k1smr06 Nemocnice Šternberk'),
(4572, 'https://ror.org/00rfgpg89', 'en', 1, 'https://ror.org/00rfgpg89 Salem Hospital'),
(4573, 'https://ror.org/04pc31859', 'en', 1, 'https://ror.org/04pc31859 Stobhill Hospital'),
(4574, 'https://ror.org/027mz0g68', 'en', 1, 'https://ror.org/027mz0g68 Salem VA Medical Center'),
(4575, 'https://ror.org/00b9w6n61', 'en', 1, 'https://ror.org/00b9w6n61 St. Francis Hospital'),
(4576, 'https://ror.org/05bx2yj81', 'en', 1, 'https://ror.org/05bx2yj81 Salisbury District Hospital'),
(4577, 'https://ror.org/03ehzxb24', 'en', 1, 'https://ror.org/03ehzxb24 St. Francis Medical Center'),
(4578, 'https://ror.org/01k5x4673', 'en', 1, 'https://ror.org/01k5x4673 Saint Francis Medical Center'),
(4579, 'https://ror.org/04461gd92', 'en', 1, 'https://ror.org/04461gd92 Salmaniya Medical Complex مجمع السلمانية الطبي'),
(4580, 'https://ror.org/04sah3q11', 'en', 1, 'https://ror.org/04sah3q11 St. Francis Medical Center'),
(4581, 'https://ror.org/00ncfk576', 'en', 1, 'https://ror.org/00ncfk576 Stockholm South General Hospital'),
(4582, 'https://ror.org/01c1ce922', 'it', 1, 'https://ror.org/01c1ce922 Nuovo Ospedale San Giovanni di Dio'),
(4583, 'https://ror.org/02hssy432', 'it', 1, 'https://ror.org/02hssy432 Istituto Superiore di Sanità National Institute of Health'),
(4584, 'https://ror.org/00s8bsd30', 'en', 1, 'https://ror.org/00s8bsd30 Via Christi Hospital St. Francis'),
(4585, 'https://ror.org/043j17q40', 'en', 1, 'https://ror.org/043j17q40 San Antonio State Chest Hospital'),
(4586, 'https://ror.org/051nxfa23', 'de', 1, 'https://ror.org/051nxfa23 St. Franziskus Hospital'),
(4587, 'https://ror.org/05w90nk74', 'en', 1, 'https://ror.org/05w90nk74 Stollery Children''s Hospital'),
(4588, 'https://ror.org/04jkbm032', 'en', 1, 'https://ror.org/04jkbm032 Stratheden Hospital'),
(4589, 'https://ror.org/04j3jhk11', 'en', 1, 'https://ror.org/04j3jhk11 San Antonio Uniformed Services Health Education Consortium'),
(4590, 'https://ror.org/00bmwjh97', 'en', 1, 'https://ror.org/00bmwjh97 St. James Hospital and Health Centers'),
(4591, 'https://ror.org/0583j8v67', 'en', 1, 'https://ror.org/0583j8v67 Strong Memorial Hospital'),
(4592, 'https://ror.org/0378zg266', 'en', 1, 'https://ror.org/0378zg266 Nyack Hospital'),
(4593, 'https://ror.org/004x58208', 'en', 1, 'https://ror.org/004x58208 St. John Medical Center'),
(4594, 'https://ror.org/049knzm77', 'en', 1, 'https://ror.org/049knzm77 Sturdy Memorial Hospital'),
(4595, 'https://ror.org/058qmst67', 'fr', 1, 'https://ror.org/058qmst67 Hôpital Saint Roch'),
(4596, 'https://ror.org/04p4s5b35', 'en', 1, 'https://ror.org/04p4s5b35 St. John''s Hospital'),
(4597, 'https://ror.org/00zrfhe30', 'nl', 1, 'https://ror.org/00zrfhe30 Onze Lieve Vrouwziekenhuis Hospital'),
(4598, 'https://ror.org/00jtwsb29', 'en', 1, 'https://ror.org/00jtwsb29 Suburban Hospital'),
(4599, 'https://ror.org/055a6nt34', 'it', 1, 'https://ror.org/055a6nt34 Servizio Sanitario Nazionale'),
(4600, 'https://ror.org/04y0sey15', 'en', 1, 'https://ror.org/04y0sey15 Oasis of Hope Hospital'),
(4601, 'https://ror.org/053h7gw81', 'en', 1, 'https://ror.org/053h7gw81 Swami Vivekanand Subharti University'),
(4602, 'https://ror.org/03a2szg51', 'no_lang_code', 1, 'https://ror.org/03a2szg51 Saiseikai Utsunomiya hospital 済生会宇都宮病院'),
(4603, 'https://ror.org/014j33z40', 'en', 1, 'https://ror.org/014j33z40 National Hospital Abuja'),
(4604, 'https://ror.org/03t995d97', 'en', 1, 'https://ror.org/03t995d97 St. Joseph Health System'),
(4605, 'https://ror.org/01nw60f27', 'no_lang_code', 1, 'https://ror.org/01nw60f27 Saiseikai Wakakusa Hospital 済生会若草病院'),
(4606, 'https://ror.org/009nbdt96', 'en', 1, 'https://ror.org/009nbdt96 St. Joseph Medical Center'),
(4607, 'https://ror.org/05h6r6f02', 'no_lang_code', 1, 'https://ror.org/05h6r6f02 Saiseikai Yahata General Hospital 福岡県済生会八幡総合病院'),
(4608, 'https://ror.org/03m52v505', 'en', 1, 'https://ror.org/03m52v505 Suffolk County Department of Health Services'),
(4609, 'https://ror.org/027fjzp74', 'en', 1, 'https://ror.org/027fjzp74 Obihiro Kosei General Hospital 帯広厚生病院'),
(4610, 'https://ror.org/03eydna48', 'en', 1, 'https://ror.org/03eydna48 St. Joseph Hospital'),
(4611, 'https://ror.org/02w95ej18', 'en', 1, 'https://ror.org/02w95ej18 Suita Municipal Hospital 市立吹田市民病院'),
(4612, 'https://ror.org/03a4d7t12', 'en', 1, 'https://ror.org/03a4d7t12 Saitama Cancer Center 埼玉県立がんセンター'),
(4613, 'https://ror.org/0132ynj18', 'en', 1, 'https://ror.org/0132ynj18 St. Joseph Hospital'),
(4614, 'https://ror.org/00smq1v26', 'en', 1, 'https://ror.org/00smq1v26 Saitama Children''s Medical Center 埼玉県立小児医療センター'),
(4615, 'https://ror.org/026mp1041', 'en', 1, 'https://ror.org/026mp1041 St. Joseph Hospital'),
(4616, 'https://ror.org/052vt9742', 'en', 1, 'https://ror.org/052vt9742 St. Joseph Medical Center'),
(4617, 'https://ror.org/0378e9394', 'no_lang_code', 1, 'https://ror.org/0378e9394 Saitama Municipal Hospital さいたま市立病院'),
(4618, 'https://ror.org/0353zfd89', 'en', 1, 'https://ror.org/0353zfd89 Sultan Qaboos Hospital مستشفى السلطان قابوس'),
(4619, 'https://ror.org/05j40pq70', 'en', 1, 'https://ror.org/05j40pq70 Saitama Red Cross Hospital さいたま赤十字病院'),
(4620, 'https://ror.org/04v24dh28', 'en', 1, 'https://ror.org/04v24dh28 Sumitomo Besshi Hospital 住友別子病院'),
(4621, 'https://ror.org/014nm9q97', 'no_lang_code', 1, 'https://ror.org/014nm9q97 Sakai Municipal Hospital 堺市立総合医療センター'),
(4622, 'https://ror.org/02m9ewz37', 'no_lang_code', 1, 'https://ror.org/02m9ewz37 Sumitomo Hospital 一般財団法人住友病院'),
(4623, 'https://ror.org/015ah0c92', 'en', 1, 'https://ror.org/015ah0c92 National Institute for Health and Care Excellence'),
(4624, 'https://ror.org/03p6fpw74', 'en', 1, 'https://ror.org/03p6fpw74 Summa Health System'),
(4625, 'https://ror.org/05b021m32', 'en', 1, 'https://ror.org/05b021m32 Alta Bates Summit Medical Center'),
(4626, 'https://ror.org/05jvgwr81', 'en', 1, 'https://ror.org/05jvgwr81 National Institute of Medical Rehabilitation Országos Orvosi Rehabilitációs Intézet'),
(4627, 'https://ror.org/02mpfs279', 'en', 1, 'https://ror.org/02mpfs279 Daejeon Sun Hospital 대전선병원'),
(4628, 'https://ror.org/045jb6x14', 'en', 1, 'https://ror.org/045jb6x14 Sundaram Medical Foundation'),
(4629, 'https://ror.org/03rx00z90', 'no_lang_code', 1, 'https://ror.org/03rx00z90 Sakurabashi Watanabe Hospital 桜橋渡辺病院'),
(4630, 'https://ror.org/01d1m4h32', 'en', 1, 'https://ror.org/01d1m4h32 Samaritan Center'),
(4631, 'https://ror.org/0084bse20', 'sv', 1, 'https://ror.org/0084bse20 Sunderby sjukhus'),
(4632, 'https://ror.org/02xqze381', 'it', 1, 'https://ror.org/02xqze381 Ospedale San Bassiano'),
(4633, 'https://ror.org/04kzhn079', 'en', 1, 'https://ror.org/04kzhn079 St. Joseph''s Hospital'),
(4634, 'https://ror.org/02s0dm484', 'en', 1, 'https://ror.org/02s0dm484 Sunderland Royal Hospital'),
(4635, 'https://ror.org/01fpjqs91', 'en', 1, 'https://ror.org/01fpjqs91 St. Joseph''s Hospital'),
(4636, 'https://ror.org/03mm5qn83', 'en', 1, 'https://ror.org/03mm5qn83 Occupational Safety & Health Administration'),
(4637, 'https://ror.org/02z9b2w17', 'sv', 1, 'https://ror.org/02z9b2w17 Länssjukhuset Sundsvall-Härnösand'),
(4638, 'https://ror.org/049mgby18', 'en', 1, 'https://ror.org/049mgby18 National Institute of Child Health'),
(4639, 'https://ror.org/05j8x4n38', 'en', 1, 'https://ror.org/05j8x4n38 San Francisco General Hospital'),
(4640, 'https://ror.org/02cmyty27', 'en', 1, 'https://ror.org/02cmyty27 St. Joseph''s Hospital'),
(4641, 'https://ror.org/05g42cb02', 'en', 1, 'https://ror.org/05g42cb02 Netcare Sunninghill Hospital'),
(4642, 'https://ror.org/047c5ks69', 'en', 1, 'https://ror.org/047c5ks69 Sunny Hill Health Centre for Children'),
(4643, 'https://ror.org/017je7s69', 'en', 1, 'https://ror.org/017je7s69 National Institute for Research in Reproductive Health राष्ट्रीय प्रजनन स्वास्थ्य अनुसंधान संस्थान'),
(4644, 'https://ror.org/00r520291', 'en', 1, 'https://ror.org/00r520291 St. Joseph''s Hospital'),
(4645, 'https://ror.org/03k7veg12', 'no_lang_code', 1, 'https://ror.org/03k7veg12 Odawara Municipal Hospital 小田原市立病院'),
(4646, 'https://ror.org/05v6jj657', 'en', 1, 'https://ror.org/05v6jj657 Office of Chief Medical Examiner'),
(4647, 'https://ror.org/02c495c76', 'en', 1, 'https://ror.org/02c495c76 St. Joseph’s University Medical Center'),
(4648, 'https://ror.org/008kn1a71', 'en', 1, 'https://ror.org/008kn1a71 Sunnybrook Hospital'),
(4649, 'https://ror.org/03j7t7330', 'en', 1, 'https://ror.org/03j7t7330 St. Joseph''s Children''s Hospital'),
(4650, 'https://ror.org/02tp2kq68', 'it', 1, 'https://ror.org/02tp2kq68 Fondazione Ospedale Salesi'),
(4651, 'https://ror.org/014ft7z36', 'en', 1, 'https://ror.org/014ft7z36 Office of Disease Prevention and Health Promotion'),
(4652, 'https://ror.org/01wxzd328', 'no_lang_code', 1, 'https://ror.org/01wxzd328 Kunitachi Sakura Hospital 国立さくら病院'),
(4653, 'https://ror.org/04f2pye70', 'en', 1, 'https://ror.org/04f2pye70 St. Jude Medical Center'),
(4654, 'https://ror.org/01q2ty078', 'no_lang_code', 1, 'https://ror.org/01q2ty078 Saku Central Hospital 佐久総合病院'),
(4655, 'https://ror.org/04c9pv832', 'de', 1, 'https://ror.org/04c9pv832 Krankenhaus Salem'),
(4656, 'https://ror.org/05h1kgg64', 'en', 1, 'https://ror.org/05h1kgg64 National Institute of Health'),
(4657, 'https://ror.org/01zdmh905', 'en', 1, 'https://ror.org/01zdmh905 Office of the Chief Medical Examiner'),
(4658, 'https://ror.org/03bg65591', 'en', 1, 'https://ror.org/03bg65591 Susquehanna Health'),
(4659, 'https://ror.org/044zkrt47', 'en', 1, 'https://ror.org/044zkrt47 National Institute of Health of Thailand สถาบันวิจัยวิทยาศาสตร์สาธารณสุข'),
(4660, 'https://ror.org/030637x68', 'en', 1, 'https://ror.org/030637x68 Sussex Eye Hospital'),
(4661, 'https://ror.org/00ny8jb29', 'en', 1, 'https://ror.org/00ny8jb29 Office of the Medical Examiner of Cook County'),
(4662, 'https://ror.org/03zk9v026', 'en', 1, 'https://ror.org/03zk9v026 Sutter Medical Center'),
(4663, 'https://ror.org/009ezqy65', 'en', 1, 'https://ror.org/009ezqy65 National Institute of Health and Family Welfare राष्ट्रीय स्वास्थ्य और परिवार कल्याण संस्थान'),
(4664, 'https://ror.org/01639jx86', 'no_lang_code', 1, 'https://ror.org/01639jx86 Ogikubo Hospital'),
(4665, 'https://ror.org/05t626n88', 'en', 1, 'https://ror.org/05t626n88 Suwa Red Cross Hospital 諏訪赤十字病院'),
(4666, 'https://ror.org/00kb4qb80', 'en', 1, 'https://ror.org/00kb4qb80 Ogori Daiichi General Hospital 小郡第一総合病院'),
(4667, 'https://ror.org/04ka38w49', 'da', 1, 'https://ror.org/04ka38w49 Svendborg Sygehus'),
(4668, 'https://ror.org/043y3sk06', 'en', 1, 'https://ror.org/043y3sk06 Ohio Heart & Vascular Center'),
(4669, 'https://ror.org/0332k3m42', 'en', 1, 'https://ror.org/0332k3m42 Syracuse VA Medical Center'),
(4670, 'https://ror.org/00yv3xr02', 'en', 1, 'https://ror.org/00yv3xr02 Ome Municipal General Hospital 青梅市立総合病院'),
(4671, 'https://ror.org/03v5sbh78', 'en', 1, 'https://ror.org/03v5sbh78 Swami Devi Dyal Hospital and Dental College'),
(4672, 'https://ror.org/03tgvv724', 'en', 1, 'https://ror.org/03tgvv724 Swedish Covenant Hospital'),
(4673, 'https://ror.org/00jc2kw33', 'en', 1, 'https://ror.org/00jc2kw33 National Center for Environmental Health'),
(4674, 'https://ror.org/00fzfzc37', 'en', 1, 'https://ror.org/00fzfzc37 Manchester VA Medical Center'),
(4675, 'https://ror.org/021rths28', 'en', 1, 'https://ror.org/021rths28 National Center for Chronic Disease Prevention and Health Promotion'),
(4676, 'https://ror.org/00f5bva59', 'en', 1, 'https://ror.org/00f5bva59 Swedish Medical Center'),
(4677, 'https://ror.org/014c68a74', 'en', 1, 'https://ror.org/014c68a74 St. Louis VA Medical Center'),
(4678, 'https://ror.org/022ctzz37', 'no_lang_code', 1, 'https://ror.org/022ctzz37 Ohtsuka Eye Hospital 大塚眼科病院'),
(4679, 'https://ror.org/03p15s250', 'en', 1, 'https://ror.org/03p15s250 National Center for Health Statistics'),
(4680, 'https://ror.org/03txk6b49', 'en', 1, 'https://ror.org/03txk6b49 St. Luke''s Hospital'),
(4681, 'https://ror.org/01xfgtq85', 'en', 1, 'https://ror.org/01xfgtq85 VA West Los Angeles Medical Center');
INSERT INTO `rors` VALUES
(4682, 'https://ror.org/029fzbq43', 'no_lang_code', 1, 'https://ror.org/029fzbq43 Oita Prefectural Hospital 大分県立病院'),
(4683, 'https://ror.org/00gqjdp23', 'en', 1, 'https://ror.org/00gqjdp23 Oita Red Cross Hospital 大分赤十字病院'),
(4684, 'https://ror.org/02chbx029', 'no_lang_code', 1, 'https://ror.org/02chbx029 Oji General Hospital 王子総合病院'),
(4685, 'https://ror.org/056qqqn18', 'en', 1, 'https://ror.org/056qqqn18 National Disaster Medical Center 国立病院機構災害医療センター'),
(4686, 'https://ror.org/00xzbkw82', 'en', 1, 'https://ror.org/00xzbkw82 Ohkawara Neurosurgical Hospital 大川原脳神経外科病院'),
(4687, 'https://ror.org/03nd0nz77', 'en', 1, 'https://ror.org/03nd0nz77 Kagoshima Medical Center 鹿児島医療センター'),
(4688, 'https://ror.org/03ghnvz91', 'en', 1, 'https://ror.org/03ghnvz91 West Palm Beach VA Medical Center'),
(4689, 'https://ror.org/014936814', 'en', 1, 'https://ror.org/014936814 St. Luke''s Hospital Κλινική Άγιος Λουκάς'),
(4690, 'https://ror.org/03wjr6873', 'en', 1, 'https://ror.org/03wjr6873 VA Central California Health Care System'),
(4691, 'https://ror.org/04jg4z821', 'no_lang_code', 1, 'https://ror.org/04jg4z821 Okayama Central Hospital 岡山中央病院'),
(4692, 'https://ror.org/00mrcjr06', 'en', 1, 'https://ror.org/00mrcjr06 St. Luke''s Hospital'),
(4693, 'https://ror.org/01ppsp263', 'en', 1, 'https://ror.org/01ppsp263 Toneyama National Hospital 刀根山国立病院'),
(4694, 'https://ror.org/0502a2655', 'en', 1, 'https://ror.org/0502a2655 National Institute for Occupational Safety and Health'),
(4695, 'https://ror.org/02h70he60', 'en', 1, 'https://ror.org/02h70he60 Okayama Red Cross General Hospital 岡山赤十字病院'),
(4696, 'https://ror.org/03mxm6g77', 'en', 1, 'https://ror.org/03mxm6g77 Tomah VA Medical Center'),
(4697, 'https://ror.org/04cmadr83', 'en', 1, 'https://ror.org/04cmadr83 Okayama Rosai Hospital 岡山労災病院'),
(4698, 'https://ror.org/04nq4c835', 'no_lang_code', 1, 'https://ror.org/04nq4c835 Okayama Saiseikai General Hospital 岡山済生会総合病院'),
(4699, 'https://ror.org/05t4ef339', 'en', 1, 'https://ror.org/05t4ef339 Northern Arizona VA Health Care System'),
(4700, 'https://ror.org/040e0d212', 'en', 1, 'https://ror.org/040e0d212 Tuscaloosa VA Medical Center'),
(4701, 'https://ror.org/024b7e967', 'en', 1, 'https://ror.org/024b7e967 Phoenix VA Health Care System'),
(4702, 'https://ror.org/02x9bj444', 'en', 1, 'https://ror.org/02x9bj444 Hampton VA Medical Center'),
(4703, 'https://ror.org/039k9pj72', 'en', 1, 'https://ror.org/039k9pj72 T. D. Medical College'),
(4704, 'https://ror.org/05p668j08', 'en', 1, 'https://ror.org/05p668j08 Ospidéal Ginearálta Naomh Lúcás St. Luke''s General Hospital'),
(4705, 'https://ror.org/00y3cpn63', 'en', 1, 'https://ror.org/00y3cpn63 Tachikawa Medical Center 立川メディカルセンター'),
(4706, 'https://ror.org/03q7hxz75', 'en', 1, 'https://ror.org/03q7hxz75 Tachikawa Hospital 立川病院'),
(4707, 'https://ror.org/053vdeh68', 'en', 1, 'https://ror.org/053vdeh68 St. Luke''s Hospital'),
(4708, 'https://ror.org/057vc9k50', 'en', 1, 'https://ror.org/057vc9k50 Tai Po Hospital 大埔醫院'),
(4709, 'https://ror.org/04nx04y60', 'en', 1, 'https://ror.org/04nx04y60 Taichung Armed Forces General Hospital 國軍臺中總醫院'),
(4710, 'https://ror.org/03mpa4w20', 'en', 1, 'https://ror.org/03mpa4w20 Okinawa Prefectural Chubu Hospital 沖縄県立中部病院'),
(4711, 'https://ror.org/05be98497', 'en', 1, 'https://ror.org/05be98497 Okinawa Prefectural Institute of Health and Environment 健康と環境の沖縄県立大学'),
(4712, 'https://ror.org/04akqfa40', 'no_lang_code', 1, 'https://ror.org/04akqfa40 Chung Hsiao Municipal Hospital'),
(4713, 'https://ror.org/058xqwv02', 'en', 1, 'https://ror.org/058xqwv02 Voluntary Health Services Hospital'),
(4714, 'https://ror.org/023v4bd62', 'en', 1, 'https://ror.org/023v4bd62 National Agriculture and Food Research Organization 農業・食品産業技術総合研究機構'),
(4715, 'https://ror.org/00ty4jc02', 'en', 1, 'https://ror.org/00ty4jc02 St. Luke''s Hospital Foundation'),
(4716, 'https://ror.org/008cz4337', 'da', 1, 'https://ror.org/008cz4337 Regionshospitalet Viborg Viborg Regional Hospital'),
(4717, 'https://ror.org/04r3ebn54', 'en', 1, 'https://ror.org/04r3ebn54 Oklahoma Foundation for Medical Quality'),
(4718, 'https://ror.org/03wwbp431', 'en', 1, 'https://ror.org/03wwbp431 Victoria General Hospital'),
(4719, 'https://ror.org/00nhpk003', 'en', 1, 'https://ror.org/00nhpk003 Mount Auburn Hospital'),
(4720, 'https://ror.org/05qa36453', 'en', 1, 'https://ror.org/05qa36453 Olmsted Medical Center'),
(4721, 'https://ror.org/048dt4c25', 'en', 1, 'https://ror.org/048dt4c25 Taipei Municipal Jen-Ai Hospital'),
(4722, 'https://ror.org/02h4kdd20', 'en', 1, 'https://ror.org/02h4kdd20 St. Luke''s Medical Center'),
(4723, 'https://ror.org/014tg6596', 'en', 1, 'https://ror.org/014tg6596 Victoria Hospital'),
(4724, 'https://ror.org/0421dgn24', 'en', 1, 'https://ror.org/0421dgn24 Taipei Municipal Women and Children''s Hospital'),
(4725, 'https://ror.org/047n4ns40', 'en', 1, 'https://ror.org/047n4ns40 Taipei Municipal YangMing Hospital 台北市立阳明医院'),
(4726, 'https://ror.org/00xgvev73', 'es', 1, 'https://ror.org/00xgvev73 Instituto Nacional de Ciencias Médicas y Nutrición Salvador Zubirán National Institute of Medical Sciences and Nutrition Salvador Zubirán'),
(4727, 'https://ror.org/024nkak84', 'en', 1, 'https://ror.org/024nkak84 Taiwan Adventist Hospital 台安医院'),
(4728, 'https://ror.org/00n3egs77', 'en', 1, 'https://ror.org/00n3egs77 Takamatsu Red Cross Hospital 高松赤十字病院'),
(4729, 'https://ror.org/02stzb903', 'en', 1, 'https://ror.org/02stzb903 Victoria Hospital'),
(4730, 'https://ror.org/039xdnp48', 'no_lang_code', 1, 'https://ror.org/039xdnp48 Takano Hospital 高野病院'),
(4731, 'https://ror.org/03ec4j852', 'en', 1, 'https://ror.org/03ec4j852 St. Luke’s Boise Medical Center'),
(4732, 'https://ror.org/05v4j1v63', 'no_lang_code', 1, 'https://ror.org/05v4j1v63 Takanoko Hospital'),
(4733, 'https://ror.org/04t0s7x83', 'en', 1, 'https://ror.org/04t0s7x83 National Institute of Mental Health 国立精神衛生研究所'),
(4734, 'https://ror.org/04w3f9b42', 'no_lang_code', 1, 'https://ror.org/04w3f9b42 Takarazuka City Hospital 宝塚市立病院'),
(4735, 'https://ror.org/059t16j93', 'no_lang_code', 1, 'https://ror.org/059t16j93 Takatsuki General Hospital 高槻病院'),
(4736, 'https://ror.org/02wpa5731', 'en', 1, 'https://ror.org/02wpa5731 Takatsuki Red Cross Hospital 高槻赤十字病院'),
(4737, 'https://ror.org/04a0qsn58', 'en', 1, 'https://ror.org/04a0qsn58 St. Margaret Memorial Hospital'),
(4738, 'https://ror.org/053zey189', 'en', 1, 'https://ror.org/053zey189 Takayama Red Cross Hospital 高山赤十字病院'),
(4739, 'https://ror.org/0164vc797', 'en', 1, 'https://ror.org/0164vc797 Vijayanagara Institute of Medical Sciences ವಿಜಯನಗರ ವೈದ್ಯಕೀಯ ವಿಜ್ಞಾನ ಸಂಸ್ಥೆ'),
(4740, 'https://ror.org/04xeg9z08', 'en', 1, 'https://ror.org/04xeg9z08 Instituto Nacional de Salud Mental National Institute of Mental Health'),
(4741, 'https://ror.org/01699r503', 'en', 1, 'https://ror.org/01699r503 St. Margaret''s Hospital for Women'),
(4742, 'https://ror.org/01s5ya894', 'en', 1, 'https://ror.org/01s5ya894 National Institute of Neurological Disorders and Stroke'),
(4743, 'https://ror.org/01h65nt31', 'en', 1, 'https://ror.org/01h65nt31 St. Mark''s Hospital'),
(4744, 'https://ror.org/058vcb964', 'it', 1, 'https://ror.org/058vcb964 Casa di Cura Villa Bianca'),
(4745, 'https://ror.org/0466fwq98', 'en', 1, 'https://ror.org/0466fwq98 St. Mary Medical Center'),
(4746, 'https://ror.org/05nr3de46', 'en', 1, 'https://ror.org/05nr3de46 Onomichi General Hospital 尾道総合病院'),
(4747, 'https://ror.org/03mxv9643', 'en', 1, 'https://ror.org/03mxv9643 Onslow Memorial Hospital'),
(4748, 'https://ror.org/04g3t6s80', 'en', 1, 'https://ror.org/04g3t6s80 National Institute of Occupational Health'),
(4749, 'https://ror.org/05xnecb03', 'en', 1, 'https://ror.org/05xnecb03 St. Mary''s Health Center'),
(4750, 'https://ror.org/05x8xdg58', 'en', 1, 'https://ror.org/05x8xdg58 St. Mary''s Hospital'),
(4751, 'https://ror.org/051ppg660', 'en', 1, 'https://ror.org/051ppg660 National Institute of Animal Health 動物衛生研究部門'),
(4752, 'https://ror.org/047ae9605', 'en', 1, 'https://ror.org/047ae9605 Taleghani General Hospital بیمارستان طالقانی تهران'),
(4753, 'https://ror.org/02j4gdg91', 'en', 1, 'https://ror.org/02j4gdg91 Vivekananda Institute of Medical Sciences'),
(4754, 'https://ror.org/03zj0ps89', 'en', 1, 'https://ror.org/03zj0ps89 Vardhman Mahavir Medical College & Safdarjung Hospital वर्धमान महावीर मेडिकल कॉलेज और सफदरजंग अस्पताल'),
(4755, 'https://ror.org/02wcqs336', 'en', 1, 'https://ror.org/02wcqs336 Jerusalem Mental Health Center המרכז לבריאות הנפש ירושלים'),
(4756, 'https://ror.org/000e3j968', 'tr', 1, 'https://ror.org/000e3j968 Türkiye Yüksek İhtisas Hastanesi'),
(4757, 'https://ror.org/045bbxm74', 'en', 1, 'https://ror.org/045bbxm74 Tamil Nadu Government Dental College and Hospital'),
(4758, 'https://ror.org/03k6q9261', 'en', 1, 'https://ror.org/03k6q9261 St. Mary''s Medical Center'),
(4759, 'https://ror.org/02f53md90', 'en', 1, 'https://ror.org/02f53md90 Tamworth Hospital'),
(4760, 'https://ror.org/00m860944', 'en', 1, 'https://ror.org/00m860944 St. Mary''s Hospital'),
(4761, 'https://ror.org/0226ax553', 'en', 1, 'https://ror.org/0226ax553 St. Mary''s Medical Center'),
(4762, 'https://ror.org/01pveve47', 'en', 1, 'https://ror.org/01pveve47 United States Army Medical Research Institute of Infectious Diseases'),
(4763, 'https://ror.org/051jx6464', 'en', 1, 'https://ror.org/051jx6464 Waianae Coast Comprehensive Health Center'),
(4764, 'https://ror.org/03ene5287', 'en', 1, 'https://ror.org/03ene5287 Orange County Healthcare Agency'),
(4765, 'https://ror.org/00zerva91', 'en', 1, 'https://ror.org/00zerva91 St. Patrick Hospital'),
(4766, 'https://ror.org/00awxvj03', 'en', 1, 'https://ror.org/00awxvj03 Wakayama Rosai Hospital 和歌山ろうさい病院'),
(4767, 'https://ror.org/0367d2222', 'en', 1, 'https://ror.org/0367d2222 Tao Yuan General Hospital 桃園醫院'),
(4768, 'https://ror.org/0488cct49', 'en', 1, 'https://ror.org/0488cct49 Orlando Health'),
(4769, 'https://ror.org/01j9pph68', 'en', 1, 'https://ror.org/01j9pph68 Orlando Regional Medical Center'),
(4770, 'https://ror.org/05efr5n38', 'en', 1, 'https://ror.org/05efr5n38 Taranaki Base Hospital'),
(4771, 'https://ror.org/04fj0p555', 'en', 1, 'https://ror.org/04fj0p555 Tata Main Hospital'),
(4772, 'https://ror.org/04d0rfg41', 'en', 1, 'https://ror.org/04d0rfg41 St. Paul''s Hospital'),
(4773, 'https://ror.org/00f54ay49', 'en', 1, 'https://ror.org/00f54ay49 Wakefield Hospital'),
(4774, 'https://ror.org/01khsr243', 'en', 1, 'https://ror.org/01khsr243 St. Peter''s Hospital'),
(4775, 'https://ror.org/05hkmas65', 'en', 1, 'https://ror.org/05hkmas65 Baptist Hospital 침례병원'),
(4776, 'https://ror.org/00yr70j54', 'en', 1, 'https://ror.org/00yr70j54 Tauranga Hospital'),
(4777, 'https://ror.org/03fan2n27', 'en', 1, 'https://ror.org/03fan2n27 St. Stephen’s Hospital'),
(4778, 'https://ror.org/007a5h107', 'en', 1, 'https://ror.org/007a5h107 Tawam Hospital مستشفى توام'),
(4779, 'https://ror.org/01820qp25', 'en', 1, 'https://ror.org/01820qp25 Ornsköldsvik Hospital Örnsköldsviks sjukhus'),
(4780, 'https://ror.org/023dwm995', 'en', 1, 'https://ror.org/023dwm995 St. Thomas Hospital'),
(4781, 'https://ror.org/05cvxat96', 'en', 1, 'https://ror.org/05cvxat96 Walton Centre'),
(4782, 'https://ror.org/037x4vd23', 'en', 1, 'https://ror.org/037x4vd23 Teaching Hospital Kandy මහනුවර ශික්ෂණ රෝහල'),
(4783, 'https://ror.org/00rjw0467', 'en', 1, 'https://ror.org/00rjw0467 St. Vincent Hospital'),
(4784, 'https://ror.org/03wqxws86', 'no_lang_code', 1, 'https://ror.org/03wqxws86 Teine Keijinkai Hospital 渓仁会グループ'),
(4785, 'https://ror.org/01m2js356', 'en', 1, 'https://ror.org/01m2js356 Orthopaedic Hospital'),
(4786, 'https://ror.org/02fn8j763', 'en', 1, 'https://ror.org/02fn8j763 Wangjing Hospital of China Academy of Chinese Medical Sciences 中国中医科学院望京医院'),
(4787, 'https://ror.org/00fsrkw38', 'es', 1, 'https://ror.org/00fsrkw38 Hospital Quirón Teknon'),
(4788, 'https://ror.org/00mwwa992', 'en', 1, 'https://ror.org/00mwwa992 Warde Medical Laboratory'),
(4789, 'https://ror.org/03we1zb10', 'en', 1, 'https://ror.org/03we1zb10 Warneford Hospital'),
(4790, 'https://ror.org/03qpaq263', 'sv', 1, 'https://ror.org/03qpaq263 Vårdcentralen Teleborg'),
(4791, 'https://ror.org/0255fcy13', 'en', 1, 'https://ror.org/0255fcy13 Warrington Hospital'),
(4792, 'https://ror.org/02z6cxz02', 'en', 1, 'https://ror.org/02z6cxz02 Warwick Hospital'),
(4793, 'https://ror.org/04pb6gq71', 'en', 1, 'https://ror.org/04pb6gq71 Orthopedic Specialty Hospital'),
(4794, 'https://ror.org/01r5r0r56', 'en', 1, 'https://ror.org/01r5r0r56 Washington Adventist Hospital'),
(4795, 'https://ror.org/005k4dn45', 'en', 1, 'https://ror.org/005k4dn45 University of Arkansas Medical Center'),
(4796, 'https://ror.org/03wmmfz90', 'en', 1, 'https://ror.org/03wmmfz90 Tennessee Department of Health'),
(4797, 'https://ror.org/016dr6b81', 'en', 1, 'https://ror.org/016dr6b81 Waterbury Hospital'),
(4798, 'https://ror.org/01v13p275', 'en', 1, 'https://ror.org/01v13p275 Watford General Hospital'),
(4799, 'https://ror.org/0282s7q36', 'en', 1, 'https://ror.org/0282s7q36 Tenshi Hospital 天使病院'),
(4800, 'https://ror.org/01yn60017', 'en', 1, 'https://ror.org/01yn60017 Waukesha Memorial Hospital'),
(4801, 'https://ror.org/054tgm925', 'en', 1, 'https://ror.org/054tgm925 Aspirus Wausau Hospital'),
(4802, 'https://ror.org/021ctjg87', 'en', 1, 'https://ror.org/021ctjg87 Northern Territory Health Services'),
(4803, 'https://ror.org/03qx1c439', 'en', 1, 'https://ror.org/03qx1c439 Wayne Memorial Hospital'),
(4804, 'https://ror.org/01xd2tj29', 'no_lang_code', 1, 'https://ror.org/01xd2tj29 Weifang People''s Hospital 潍坊市人民医院'),
(4805, 'https://ror.org/05qfnkv67', 'en', 1, 'https://ror.org/05qfnkv67 St. Vincent''s Medical Center'),
(4806, 'https://ror.org/02cs3sv23', 'sv', 1, 'https://ror.org/02cs3sv23 Uddevalla sjukhus'),
(4807, 'https://ror.org/01m9rk435', 'en', 1, 'https://ror.org/01m9rk435 Richmond University Medical Center'),
(4808, 'https://ror.org/02c93ee60', 'en', 1, 'https://ror.org/02c93ee60 Osaka Occupational Health Research Center 大阪労働衛生総合センター'),
(4809, 'https://ror.org/05jr4qt09', 'en', 1, 'https://ror.org/05jr4qt09 Stamford Hospital'),
(4810, 'https://ror.org/040fscg47', 'en', 1, 'https://ror.org/040fscg47 Texas Orthopedic Hospital'),
(4811, 'https://ror.org/01mw6s018', 'it', 1, 'https://ror.org/01mw6s018 Casa di Cura Villa Garda'),
(4812, 'https://ror.org/03gd5jm66', 'en', 1, 'https://ror.org/03gd5jm66 Texas Scottish Rite Hospital for Children'),
(4813, 'https://ror.org/04pmdg365', 'en', 1, 'https://ror.org/04pmdg365 Ulster Hospital'),
(4814, 'https://ror.org/041m74w67', 'en', 1, 'https://ror.org/041m74w67 Wellborn Road Veterinary Medical Center'),
(4815, 'https://ror.org/00pq96s96', 'en', 1, 'https://ror.org/00pq96s96 UMass Memorial Health Care'),
(4816, 'https://ror.org/04mzvw485', 'en', 1, 'https://ror.org/04mzvw485 Thai Moogambigai Dental College and Hospital'),
(4817, 'https://ror.org/02bj40x52', 'en', 1, 'https://ror.org/02bj40x52 Osaka Rosai Hospital 大阪労災病院'),
(4818, 'https://ror.org/004hfxk38', 'no_lang_code', 1, 'https://ror.org/004hfxk38 Theageneio General Hospital'),
(4819, 'https://ror.org/03q82br40', 'sv', 1, 'https://ror.org/03q82br40 Vrinnevi Hospital Vrinnevisjukhuset i Norrköping'),
(4820, 'https://ror.org/027grcd37', 'hu', 1, 'https://ror.org/027grcd37 Állami Szívkórház'),
(4821, 'https://ror.org/05rsf2c37', 'it', 1, 'https://ror.org/05rsf2c37 Ospedali Riuniti Umberto I'),
(4822, 'https://ror.org/011cabk38', 'it', 1, 'https://ror.org/011cabk38 Policlinico Umberto I'),
(4823, 'https://ror.org/02pj04690', 'en', 1, 'https://ror.org/02pj04690 Theda Clark Medical Center'),
(4824, 'https://ror.org/00fb35g87', 'en', 1, 'https://ror.org/00fb35g87 Third Affiliated Hospital of Guangzhou Medical University 广州医科大学附属第三医院'),
(4825, 'https://ror.org/01wxb8362', 'en', 1, 'https://ror.org/01wxb8362 Maria Cecilia Hospital'),
(4826, 'https://ror.org/04fvmv716', 'it', 1, 'https://ror.org/04fvmv716 Ospedale Vito Fazzi'),
(4827, 'https://ror.org/0146tpy53', 'en', 1, 'https://ror.org/0146tpy53 Wellmont Health Systems'),
(4828, 'https://ror.org/03k0jff29', 'en', 1, 'https://ror.org/03k0jff29 Thunder Bay Regional Health Sciences Centre'),
(4829, 'https://ror.org/055ne9q08', 'en', 1, 'https://ror.org/055ne9q08 Wentworth Hospital'),
(4830, 'https://ror.org/03436rn68', 'en', 1, 'https://ror.org/03436rn68 Wentworth Douglass Hospital'),
(4831, 'https://ror.org/023wdy559', 'tr', 1, 'https://ror.org/023wdy559 University of Health Sciences İstanbul Ümranyie Training and Research Hospital Ümraniye Eğitim ve Araştırma Hastanesi'),
(4832, 'https://ror.org/01cyzat07', 'en', 1, 'https://ror.org/01cyzat07 Wesley Guild Hospital'),
(4833, 'https://ror.org/05r9v1368', 'en', 1, 'https://ror.org/05r9v1368 Tianjin Chest Hospital 天津市胸科医院'),
(4834, 'https://ror.org/018kd1e03', 'en', 1, 'https://ror.org/018kd1e03 Wesley Hospital'),
(4835, 'https://ror.org/02a0k6s81', 'en', 1, 'https://ror.org/02a0k6s81 Tianjin Children''s Hospital 天津市儿童医院'),
(4836, 'https://ror.org/02ch1zb66', 'en', 1, 'https://ror.org/02ch1zb66 Tianjin First Center Hospital 天津市第一中心医院'),
(4837, 'https://ror.org/0522mgp14', 'en', 1, 'https://ror.org/0522mgp14 Wesley Long Hospital'),
(4838, 'https://ror.org/05m762q77', 'no_lang_code', 1, 'https://ror.org/05m762q77 Tianjin haihe hospital 天津市海河医院'),
(4839, 'https://ror.org/053cd8j25', 'no_lang_code', 1, 'https://ror.org/053cd8j25 Osmania General Hospital ఉస్మానియా జనరల్ హాస్పిటల్'),
(4840, 'https://ror.org/04j9yn198', 'en', 1, 'https://ror.org/04j9yn198 Tianjin Hospital 天津市天津医院'),
(4841, 'https://ror.org/00hr54p22', 'en', 1, 'https://ror.org/00hr54p22 Osmania Medical College عثمانیہ میڈیکل کالج ఉస్మానియా మెడికల్ కాలేజీ'),
(4842, 'https://ror.org/01x37cs02', 'en', 1, 'https://ror.org/01x37cs02 West Cumberland Hospital'),
(4843, 'https://ror.org/01x62kg38', 'en', 1, 'https://ror.org/01x62kg38 Tianjin People''s Hospital 天津市人民医院'),
(4844, 'https://ror.org/00911j719', 'en', 1, 'https://ror.org/00911j719 Tianjin Third Central Hospital 天津市第三中心医院'),
(4845, 'https://ror.org/03qk02j94', 'en', 1, 'https://ror.org/03qk02j94 West Jefferson Medical Center'),
(4846, 'https://ror.org/00hq79z10', 'no_lang_code', 1, 'https://ror.org/00hq79z10 Tianjin Nankai Hospital 天津市南开医院'),
(4847, 'https://ror.org/02vhmfv49', 'en', 1, 'https://ror.org/02vhmfv49 United Christian Hospital'),
(4848, 'https://ror.org/00k5k8k03', 'no_lang_code', 1, 'https://ror.org/00k5k8k03 Tianjin Tianhe Hospital 天津市天和医院'),
(4849, 'https://ror.org/03zd4p313', 'en', 1, 'https://ror.org/03zd4p313 Norwich Community Hospital'),
(4850, 'https://ror.org/037y13578', 'en', 1, 'https://ror.org/037y13578 West Park Healthcare Centre'),
(4851, 'https://ror.org/04ye60n79', 'en', 1, 'https://ror.org/04ye60n79 Tikur Anbessa Hospital ጥቁር አንበሳ ሆስፒታል'),
(4852, 'https://ror.org/02eqka166', 'en', 1, 'https://ror.org/02eqka166 Mercy Medical Center'),
(4853, 'https://ror.org/02hc70w10', 'en', 1, 'https://ror.org/02hc70w10 United Hospital'),
(4854, 'https://ror.org/04jjkfw48', 'en', 1, 'https://ror.org/04jjkfw48 Tirat Carmel Mental Health Center המרכז לבריאות הנפש'),
(4855, 'https://ror.org/02yhx1447', 'en', 1, 'https://ror.org/02yhx1447 Western Pennsylvania Hospital'),
(4856, 'https://ror.org/03jc0y470', 'en', 1, 'https://ror.org/03jc0y470 United Hospital Fund'),
(4857, 'https://ror.org/02ts7ew79', 'en', 1, 'https://ror.org/02ts7ew79 West Suffolk Hospital'),
(4858, 'https://ror.org/01cs14q41', 'en', 1, 'https://ror.org/01cs14q41 Glangwili General Hospital Ysbyty Cyffredinol Glangwili'),
(4859, 'https://ror.org/03fcgva33', 'en', 1, 'https://ror.org/03fcgva33 Westchester Medical Center'),
(4860, 'https://ror.org/00gkheh82', 'it', 1, 'https://ror.org/00gkheh82 Ospedale regionale di Lugano'),
(4861, 'https://ror.org/057hbdz28', 'en', 1, 'https://ror.org/057hbdz28 Tochigi Medical Center 栃木医療センター'),
(4862, 'https://ror.org/00yfpz909', 'en', 1, 'https://ror.org/00yfpz909 Unity Health System'),
(4863, 'https://ror.org/03jg6a761', 'en', 1, 'https://ror.org/03jg6a761 Southeast Louisiana Veterans Health Care System'),
(4864, 'https://ror.org/0050g6f93', 'en', 1, 'https://ror.org/0050g6f93 KKR Tohoku Kosai Hospital 東北公済病院'),
(4865, 'https://ror.org/011htkb76', 'en', 1, 'https://ror.org/011htkb76 UPMC Health System'),
(4866, 'https://ror.org/038ftrz90', 'en', 1, 'https://ror.org/038ftrz90 Western Attica General Hospital'),
(4867, 'https://ror.org/0423jvm15', 'en', 1, 'https://ror.org/0423jvm15 Upton Hospital'),
(4868, 'https://ror.org/02z87mf86', 'en', 1, 'https://ror.org/02z87mf86 Mountain Home VA Healthcare System'),
(4869, 'https://ror.org/02sjmdw37', 'en', 1, 'https://ror.org/02sjmdw37 Western Consortium for Public Health'),
(4870, 'https://ror.org/009kr6r15', 'en', 1, 'https://ror.org/009kr6r15 Western General Hospital'),
(4871, 'https://ror.org/03n92bt27', 'en', 1, 'https://ror.org/03n92bt27 Overton Brooks VA Medical Center'),
(4872, 'https://ror.org/01bk7pz18', 'no_lang_code', 1, 'https://ror.org/01bk7pz18 Tokushima Prefectural Central Hospital 徳島県立中央病院'),
(4873, 'https://ror.org/0202bpc71', 'tr', 1, 'https://ror.org/0202bpc71 Türkiye Cumhuriyeti Devlet Demiryolları Hastanesi'),
(4874, 'https://ror.org/01300np05', 'en', 1, 'https://ror.org/01300np05 Tokyo Dental College Ichikawa General Hospital 東京歯科大学 市川総合病院'),
(4875, 'https://ror.org/05qv7gx64', 'en', 1, 'https://ror.org/05qv7gx64 Western Hospital'),
(4876, 'https://ror.org/015awat24', 'en', 1, 'https://ror.org/015awat24 Western State Hospital'),
(4877, 'https://ror.org/00bbdze26', 'en', 1, 'https://ror.org/00bbdze26 Ospidéal Ginearálta Loch Garman Wexford General Hospital'),
(4878, 'https://ror.org/02xp6nt38', 'en', 1, 'https://ror.org/02xp6nt38 Wheeling Hospital'),
(4879, 'https://ror.org/053vvhn22', 'en', 1, 'https://ror.org/053vvhn22 Whiston Hospital'),
(4880, 'https://ror.org/04hj57858', 'en', 1, 'https://ror.org/04hj57858 Tokyo Metropolitan Children''s Medical Center 東京都子供の医療センター'),
(4881, 'https://ror.org/03364yv75', 'it', 1, 'https://ror.org/03364yv75 Ospedaliera di Piacenza'),
(4882, 'https://ror.org/00v47dk08', 'no_lang_code', 1, 'https://ror.org/00v47dk08 Ebara Hospital 東京都保健医療公社荏原病院'),
(4883, 'https://ror.org/00xc08717', 'en', 1, 'https://ror.org/00xc08717 Whitchurch Hospital'),
(4884, 'https://ror.org/01rrcbe60', 'en', 1, 'https://ror.org/01rrcbe60 White Memorial Medical Center'),
(4885, 'https://ror.org/04x41ba23', 'en', 1, 'https://ror.org/04x41ba23 Captain James A. Lovell Federal Health Care Center'),
(4886, 'https://ror.org/049yzyv96', 'en', 1, 'https://ror.org/049yzyv96 VA Central Iowa Health Care System'),
(4887, 'https://ror.org/05drpm847', 'it', 1, 'https://ror.org/05drpm847 Ospedale Civile di Venezia'),
(4888, 'https://ror.org/01ckbq028', 'en', 1, 'https://ror.org/01ckbq028 Whittington Hospital'),
(4889, 'https://ror.org/05bp3jx78', 'en', 1, 'https://ror.org/05bp3jx78 Tokyo Metropolitan Kiyose Children''s Hospital 東京都立小児総合医療センター'),
(4890, 'https://ror.org/04x0wqd92', 'en', 1, 'https://ror.org/04x0wqd92 Tokyo Rosai Hospital 東京労災病院'),
(4891, 'https://ror.org/02v0be184', 'no_lang_code', 1, 'https://ror.org/02v0be184 Shioda General Hospital 汐田総合病院'),
(4892, 'https://ror.org/037yff262', 'no_lang_code', 1, 'https://ror.org/037yff262 Tokyo Metropolitan Matsuzawa Hospital 東京都立松沢病院'),
(4893, 'https://ror.org/019n8y489', 'en', 1, 'https://ror.org/019n8y489 Utah Valley Regional Medical Center'),
(4894, 'https://ror.org/019x26026', 'en', 1, 'https://ror.org/019x26026 Uwajima City Hospital 宇和島市病院'),
(4895, 'https://ror.org/055m51988', 'no_lang_code', 1, 'https://ror.org/055m51988 Ohkubo Hospital 大久保病院'),
(4896, 'https://ror.org/00qcsrr17', 'en', 1, 'https://ror.org/00qcsrr17 Wilhelminen Hospital Wilhelminenspital'),
(4897, 'https://ror.org/02y9ayd76', 'en', 1, 'https://ror.org/02y9ayd76 Vokkaligara Sangha Dental College & Hospital'),
(4898, 'https://ror.org/01dq23791', 'it', 1, 'https://ror.org/01dq23791 Ospedale Civile di Vittorio Veneto'),
(4899, 'https://ror.org/00afc8732', 'en', 1, 'https://ror.org/00afc8732 William Beaumont Army Medical Center'),
(4900, 'https://ror.org/05nyma565', 'en', 1, 'https://ror.org/05nyma565 Tokyo Metropolitan Police Hospital 東京警察病院'),
(4901, 'https://ror.org/02tre1223', 'en', 1, 'https://ror.org/02tre1223 William Harvey Hospital'),
(4902, 'https://ror.org/037xafn82', 'en', 1, 'https://ror.org/037xafn82 William S. Middleton Memorial Veterans Hospital'),
(4903, 'https://ror.org/05ax3zh38', 'en', 1, 'https://ror.org/05ax3zh38 VA Maryland Health Care System'),
(4904, 'https://ror.org/01nsxt963', 'it', 1, 'https://ror.org/01nsxt963 Ospedale Civile Di Ivrea'),
(4905, 'https://ror.org/03rjjzx12', 'it', 1, 'https://ror.org/03rjjzx12 Ospedale di Mirano'),
(4906, 'https://ror.org/04svanq44', 'en', 1, 'https://ror.org/04svanq44 Winchester Medical Center'),
(4907, 'https://ror.org/05sq1nj46', 'en', 1, 'https://ror.org/05sq1nj46 Palomar Medical Center'),
(4908, 'https://ror.org/05rjtkb31', 'en', 1, 'https://ror.org/05rjtkb31 Winn Army Community Hospital'),
(4909, 'https://ror.org/00p7krt52', 'it', 1, 'https://ror.org/00p7krt52 Ospedale Civile di Giaveno'),
(4910, 'https://ror.org/009s7a550', 'en', 1, 'https://ror.org/009s7a550 Pamela Youde Nethersole Eastern Hospital 東區尤德夫人那打素醫院'),
(4911, 'https://ror.org/03drznb24', 'en', 1, 'https://ror.org/03drznb24 Winter Haven Hospital'),
(4912, 'https://ror.org/05asn5035', 'en', 1, 'https://ror.org/05asn5035 Tokyo National Hospital 国立病院機構東京病院'),
(4913, 'https://ror.org/04b5yth62', 'en', 1, 'https://ror.org/04b5yth62 Tokyo Rinkai Hospital 東京臨海病院'),
(4914, 'https://ror.org/04hbp2s71', 'en', 1, 'https://ror.org/04hbp2s71 Wisconsin Division of Public Health'),
(4915, 'https://ror.org/013s9ta35', 'en', 1, 'https://ror.org/013s9ta35 Wisconsin Heart Hospital'),
(4916, 'https://ror.org/0433qgv28', 'en', 1, 'https://ror.org/0433qgv28 Wisconsin Medical Society'),
(4917, 'https://ror.org/00x8ee082', 'it', 1, 'https://ror.org/00x8ee082 Ospedale Civile Edoardo Agnelli'),
(4918, 'https://ror.org/037egvh70', 'en', 1, 'https://ror.org/037egvh70 Wishaw General Hospital'),
(4919, 'https://ror.org/0401p8597', 'en', 1, 'https://ror.org/0401p8597 Withington Community Hospital'),
(4920, 'https://ror.org/03k51eb57', 'en', 1, 'https://ror.org/03k51eb57 Withybush General Hospital Ysbyty Cyffredinol Llwynhelyg'),
(4921, 'https://ror.org/04b7web15', 'en', 1, 'https://ror.org/04b7web15 Wm. Jennings Bryan Dorn VA Medical Center'),
(4922, 'https://ror.org/05b5q0t82', 'it', 1, 'https://ror.org/05b5q0t82 Azienda Ospedaliera Ospedali Riuniti Papardo Piemonte'),
(4923, 'https://ror.org/02gv23t08', 'hu', 1, 'https://ror.org/02gv23t08 Toldy Ferenc Kórház'),
(4924, 'https://ror.org/01x6n0t15', 'en', 1, 'https://ror.org/01x6n0t15 Papua New Guinea Institute of Medical Research'),
(4925, 'https://ror.org/02d0e3p67', 'en', 1, 'https://ror.org/02d0e3p67 Wollongong Hospital'),
(4926, 'https://ror.org/05mqgrb58', 'en', 1, 'https://ror.org/05mqgrb58 Papworth Hospital'),
(4927, 'https://ror.org/03nkzyy47', 'en', 1, 'https://ror.org/03nkzyy47 Paradise Valley Hospital'),
(4928, 'https://ror.org/02ms6eb12', 'no_lang_code', 1, 'https://ror.org/02ms6eb12 Parirenyatwa Hospital'),
(4929, 'https://ror.org/0007tes83', 'no_lang_code', 1, 'https://ror.org/0007tes83 Tominaga hospital 富永病院'),
(4930, 'https://ror.org/01v76qw30', 'en', 1, 'https://ror.org/01v76qw30 Northlake Medical Center'),
(4931, 'https://ror.org/036ygzs59', 'en', 1, 'https://ror.org/036ygzs59 Northwestern Medical Faculty Foundation'),
(4932, 'https://ror.org/000qjjz95', 'en', 1, 'https://ror.org/000qjjz95 Park Centre for Mental Health'),
(4933, 'https://ror.org/00edt5124', 'it', 1, 'https://ror.org/00edt5124 Ospedale degli Infermi'),
(4934, 'https://ror.org/01bqvsn34', 'en', 1, 'https://ror.org/01bqvsn34 Park Plaza Hospital'),
(4935, 'https://ror.org/056m5ng69', 'it', 1, 'https://ror.org/056m5ng69 Ospedale degli Infermi'),
(4936, 'https://ror.org/00trnhw76', 'en', 1, 'https://ror.org/00trnhw76 Tongde Hospital of Zhejiang Province 浙江省立同德医院'),
(4937, 'https://ror.org/04rt7ps04', 'en', 1, 'https://ror.org/04rt7ps04 Parkland Health & Hospital System'),
(4938, 'https://ror.org/0208r0146', 'en', 1, 'https://ror.org/0208r0146 Parkland Memorial Hospital'),
(4939, 'https://ror.org/020k5bb13', 'it', 1, 'https://ror.org/020k5bb13 Ospedale dei Pellegrini'),
(4940, 'https://ror.org/01vv3y523', 'en', 1, 'https://ror.org/01vv3y523 Torbay Hospital'),
(4941, 'https://ror.org/03phkbp27', 'en', 1, 'https://ror.org/03phkbp27 Wolters Kluwer Health'),
(4942, 'https://ror.org/04phyf746', 'en', 1, 'https://ror.org/04phyf746 Wolters Kluwer Health'),
(4943, 'https://ror.org/03af1ns45', 'it', 1, 'https://ror.org/03af1ns45 Ospedale di Circolo di Busto Arsizio'),
(4944, 'https://ror.org/04cnj4456', 'en', 1, 'https://ror.org/04cnj4456 Parkview Health'),
(4945, 'https://ror.org/03sm16s30', 'en', 1, 'https://ror.org/03sm16s30 Toronto East General Hospital'),
(4946, 'https://ror.org/05f9h3891', 'en', 1, 'https://ror.org/05f9h3891 Woman''s Hospital'),
(4947, 'https://ror.org/040s7at76', 'en', 1, 'https://ror.org/040s7at76 Hackensack University Medical Center at Pascack Valley'),
(4948, 'https://ror.org/00a6fbp85', 'en', 1, 'https://ror.org/00a6fbp85 P. D. Hinduja Hospital and Medical Research Centre'),
(4949, 'https://ror.org/00ncer064', 'en', 1, 'https://ror.org/00ncer064 Women Medical College'),
(4950, 'https://ror.org/010g03x11', 'en', 1, 'https://ror.org/010g03x11 Toronto Public Health'),
(4951, 'https://ror.org/04yveyc27', 'en', 1, 'https://ror.org/04yveyc27 Tosei General Hospital 公立陶生病院'),
(4952, 'https://ror.org/003qr7703', 'en', 1, 'https://ror.org/003qr7703 Peijaksen sairaala Peijas Hospital'),
(4953, 'https://ror.org/03a2tpf77', 'en', 1, 'https://ror.org/03a2tpf77 Pelosi Medical Center'),
(4954, 'https://ror.org/0474gs458', 'en', 1, 'https://ror.org/0474gs458 RCSI & UCD Malaysia Campus'),
(4955, 'https://ror.org/03cw63y62', 'en', 1, 'https://ror.org/03cw63y62 Women''s College Hospital'),
(4956, 'https://ror.org/0437r6x66', 'no_lang_code', 1, 'https://ror.org/0437r6x66 Tottori Prefectural Central Hospital 鳥取県立中央病院'),
(4957, 'https://ror.org/04evmpa20', 'no_lang_code', 1, 'https://ror.org/04evmpa20 Vajira Hospital วชิรพยาบาล'),
(4958, 'https://ror.org/03y7h1693', 'en', 1, 'https://ror.org/03y7h1693 Kinderwunsch Zentrum Linz Women''s General Hospital'),
(4959, 'https://ror.org/05xt49662', 'en', 1, 'https://ror.org/05xt49662 Penteli General Children''s Hospital Νοσοκομείο Παίδων Πεντέλης'),
(4960, 'https://ror.org/00raa0r66', 'en', 1, 'https://ror.org/00raa0r66 Women''s Hospital'),
(4961, 'https://ror.org/02tc4ww71', 'en', 1, 'https://ror.org/02tc4ww71 Peninsula Regional Medical Center'),
(4962, 'https://ror.org/015er2861', 'en', 1, 'https://ror.org/015er2861 Vale of Leven District General Hospital'),
(4963, 'https://ror.org/02j8r0p47', 'en', 1, 'https://ror.org/02j8r0p47 Woodend Hospital'),
(4964, 'https://ror.org/00swfce58', 'it', 1, 'https://ror.org/00swfce58 Ospedale di Rivoli'),
(4965, 'https://ror.org/03g1zvc89', 'en', 1, 'https://ror.org/03g1zvc89 Valley Baptist Medical Center'),
(4966, 'https://ror.org/0532tps88', 'it', 1, 'https://ror.org/0532tps88 Ospedale Eugenio Morelli'),
(4967, 'https://ror.org/02112mb03', 'it', 1, 'https://ror.org/02112mb03 Filippo Del Ponte Hospital Ospedale Filippo Del Ponte Varese'),
(4968, 'https://ror.org/03mvdc478', 'en', 1, 'https://ror.org/03mvdc478 Pennsylvania Hospital'),
(4969, 'https://ror.org/00byczw08', 'en', 1, 'https://ror.org/00byczw08 Penrose Hospital'),
(4970, 'https://ror.org/01twwfv38', 'en', 1, 'https://ror.org/01twwfv38 Valley Hospital'),
(4971, 'https://ror.org/03a71g847', 'en', 1, 'https://ror.org/03a71g847 Valley Hospital Medical Center'),
(4972, 'https://ror.org/02bx0ak73', 'en', 1, 'https://ror.org/02bx0ak73 Woodland Hills Medical Center'),
(4973, 'https://ror.org/017j6af40', 'it', 1, 'https://ror.org/017j6af40 Ospedale Humanitas Gradenigo'),
(4974, 'https://ror.org/01tay0360', 'en', 1, 'https://ror.org/01tay0360 Park Nicollet Health Services'),
(4975, 'https://ror.org/053cdw390', 'no_lang_code', 1, 'https://ror.org/053cdw390 Toujinkai Hospital 吉祥寺あさひ病院は'),
(4976, 'https://ror.org/033rjjc73', 'en', 1, 'https://ror.org/033rjjc73 Park Nicollet Methodist Hospital'),
(4977, 'https://ror.org/04c644459', 'it', 1, 'https://ror.org/04c644459 Israelite Hospital Ospedale Israelitico'),
(4978, 'https://ror.org/01vjngb81', 'en', 1, 'https://ror.org/01vjngb81 Valley Medical Center'),
(4979, 'https://ror.org/0132qa516', 'en', 1, 'https://ror.org/0132qa516 Worcester Memorial Hospital'),
(4980, 'https://ror.org/02axars19', 'en', 1, 'https://ror.org/02axars19 Gansu Provincial Hospital 甘肃省人民医院'),
(4981, 'https://ror.org/004cah429', 'no_lang_code', 1, 'https://ror.org/004cah429 Toyama Prefectural Central Hospital 富山県立中央病院'),
(4982, 'https://ror.org/04a5eyp42', 'en', 1, 'https://ror.org/04a5eyp42 Toyama Rosai Hospital 富山労災病院'),
(4983, 'https://ror.org/01d6tbx77', 'en', 1, 'https://ror.org/01d6tbx77 Worcestershire Royal Hospital'),
(4984, 'https://ror.org/04tgrpw60', 'en', 1, 'https://ror.org/04tgrpw60 Zhengzhou People''s Hospital 郑州人民医院网站'),
(4985, 'https://ror.org/03ycef978', 'en', 1, 'https://ror.org/03ycef978 Wordsley Hospital'),
(4986, 'https://ror.org/03qwkzw23', 'en', 1, 'https://ror.org/03qwkzw23 Valley Presbyterian Hospital'),
(4987, 'https://ror.org/00rsqd019', 'no_lang_code', 1, 'https://ror.org/00rsqd019 Toyokawa City Hospital 豊川市民病院'),
(4988, 'https://ror.org/0056qeq43', 'no_lang_code', 1, 'https://ror.org/0056qeq43 Toyonaka Municipal Hospital 市立豊中病院'),
(4989, 'https://ror.org/05p83my93', 'en', 1, 'https://ror.org/05p83my93 Vancouver Hospital and Health Sciences Centre'),
(4990, 'https://ror.org/00hcz6468', 'en', 1, 'https://ror.org/00hcz6468 Toyota Memorial Hospital トヨタ記念病院'),
(4991, 'https://ror.org/057xs4529', 'en', 1, 'https://ror.org/057xs4529 Island Health'),
(4992, 'https://ror.org/02q69x434', 'en', 1, 'https://ror.org/02q69x434 Peterborough City Hospital'),
(4993, 'https://ror.org/02snwfx66', 'en', 1, 'https://ror.org/02snwfx66 Trafford General Hospital'),
(4994, 'https://ror.org/00tqnwm57', 'en', 1, 'https://ror.org/00tqnwm57 Organisation mondiale de la santé World Health Organization - Denmark Всемирная организация здравоохранения'),
(4995, 'https://ror.org/01g4j3g78', 'en', 1, 'https://ror.org/01g4j3g78 Vanha Vaasa hospital Vanhan Vaasan Sairaala'),
(4996, 'https://ror.org/0412gk840', 'en', 1, 'https://ror.org/0412gk840 Peterson & Smith Equine Hospital'),
(4997, 'https://ror.org/02s0pza74', 'en', 1, 'https://ror.org/02s0pza74 Hallands Sjukhus Varberg Varberg Hospital'),
(4998, 'https://ror.org/05vefar40', 'en', 1, 'https://ror.org/05vefar40 Organisation mondiale de la santé World Health Organization - India Всемирная организация здравоохранения'),
(4999, 'https://ror.org/03vqk1b90', 'hu', 1, 'https://ror.org/03vqk1b90 Petz Aladár Megyei Oktató Kórház'),
(5000, 'https://ror.org/055ttwk14', 'en', 1, 'https://ror.org/055ttwk14 Organisation mondiale de la santé World Health Organization - Egypt Всемирная организация здравоохранения'),
(5001, 'https://ror.org/05q0t6358', 'en', 1, 'https://ror.org/05q0t6358 World Health Organization - Philippines'),
(5002, 'https://ror.org/05xvgzf10', 'it', 1, 'https://ror.org/05xvgzf10 Ospedale Maggiore di Chieri'),
(5003, 'https://ror.org/02vjx4k16', 'en', 1, 'https://ror.org/02vjx4k16 National Transport Hospital "Tzar Boris III" национална многопрофилна транспортна болница цар борис ііі'),
(5004, 'https://ror.org/00yn4km03', 'en', 1, 'https://ror.org/00yn4km03 Worthing Hospital'),
(5005, 'https://ror.org/057xmsr27', 'en', 1, 'https://ror.org/057xmsr27 Virginia Commonwealth University Medical Center'),
(5006, 'https://ror.org/00vade776', 'en', 1, 'https://ror.org/00vade776 Public Health Management Corporation'),
(5007, 'https://ror.org/04ds2ap82', 'en', 1, 'https://ror.org/04ds2ap82 Vector Control Research Centre'),
(5008, 'https://ror.org/035gyn125', 'en', 1, 'https://ror.org/035gyn125 Trenton Psychiatric Hospital'),
(5009, 'https://ror.org/00y112q62', 'en', 1, 'https://ror.org/00y112q62 Wrightington Hospital'),
(5010, 'https://ror.org/00e8ar137', 'da', 1, 'https://ror.org/00e8ar137 Vejle Hospital Vejle Sygehus'),
(5011, 'https://ror.org/00a56am39', 'en', 1, 'https://ror.org/00a56am39 Philippine General Hospital'),
(5012, 'https://ror.org/02zzfj172', 'en', 1, 'https://ror.org/02zzfj172 Wuhan Asia Heart Hospital 武汉亚洲心脏病医院'),
(5013, 'https://ror.org/047c53f83', 'en', 1, 'https://ror.org/047c53f83 Wuhan Children''s Hospital 武汉市儿童医院'),
(5014, 'https://ror.org/02y2qcy45', 'en', 1, 'https://ror.org/02y2qcy45 Phoebe Putney Memorial Hospital'),
(5015, 'https://ror.org/03neybp41', 'it', 1, 'https://ror.org/03neybp41 Ospedale Microcitemico'),
(5016, 'https://ror.org/02x6fhe76', 'en', 1, 'https://ror.org/02x6fhe76 Transcultural Mental Health Institute'),
(5017, 'https://ror.org/00yzb1d91', 'en', 1, 'https://ror.org/00yzb1d91 Wyckoff Heights Medical Center'),
(5018, 'https://ror.org/02nw0wb75', 'en', 1, 'https://ror.org/02nw0wb75 Wycombe General Hospital'),
(5019, 'https://ror.org/033mjf763', 'it', 1, 'https://ror.org/033mjf763 Ospedale per gli Infermi'),
(5020, 'https://ror.org/05vpsdj37', 'en', 1, 'https://ror.org/05vpsdj37 Wythenshawe Hospital'),
(5021, 'https://ror.org/006jktr69', 'it', 1, 'https://ror.org/006jktr69 Azienda Ospedaliera di Perugia'),
(5022, 'https://ror.org/025w1ct43', 'en', 1, 'https://ror.org/025w1ct43 Tri-City Medical Center'),
(5023, 'https://ror.org/05yn9cj95', 'no', 1, 'https://ror.org/05yn9cj95 Sørlandet Hospital Sørlandet Sykehus'),
(5024, 'https://ror.org/01wc2qb11', 'en', 1, 'https://ror.org/01wc2qb11 Tri-County Health Department'),
(5025, 'https://ror.org/03v6a2j28', 'en', 1, 'https://ror.org/03v6a2j28 Trillium Health Centre'),
(5026, 'https://ror.org/01zq3h513', 'it', 1, 'https://ror.org/01zq3h513 Ospedale Psichiatrico Paolo Pini'),
(5027, 'https://ror.org/05cqe9350', 'no_lang_code', 1, 'https://ror.org/05cqe9350 Xijing Hospital 西京医院'),
(5028, 'https://ror.org/02s61w335', 'it', 1, 'https://ror.org/02s61w335 Ospedale Regionale di Bellinzona e Valli Regional Hospital of Bellinzona and Valleys'),
(5029, 'https://ror.org/041jk5w53', 'en', 1, 'https://ror.org/041jk5w53 Otto Wagner Hospital Otto Wagner Spital'),
(5030, 'https://ror.org/00m7zwx79', 'en', 1, 'https://ror.org/00m7zwx79 Trinity Mother Frances Hospitals and Clinics'),
(5031, 'https://ror.org/04wytkh98', 'it', 1, 'https://ror.org/04wytkh98 Azienda Ospedaliera Sant’Antonio Abate di Gallarate'),
(5032, 'https://ror.org/05t0c7p82', 'it', 1, 'https://ror.org/05t0c7p82 Azienda Ospedaliera G. Brotzu'),
(5033, 'https://ror.org/05ty6vv60', 'en', 1, 'https://ror.org/05ty6vv60 Tropical Population Health Unit'),
(5034, 'https://ror.org/029sr1j73', 'en', 1, 'https://ror.org/029sr1j73 Ospidéal Mhuire Lourdes Our Lady of Lourdes Hospital'),
(5035, 'https://ror.org/04gbz7s91', 'en', 1, 'https://ror.org/04gbz7s91 Our Lady of Lourdes Medical Center'),
(5036, 'https://ror.org/00xkqq585', 'en', 1, 'https://ror.org/00xkqq585 Our Lady of Lourdes Regional Medical Center'),
(5037, 'https://ror.org/047s1ww61', 'en', 1, 'https://ror.org/047s1ww61 Ise Red Cross Hospital 日本赤十字社 伊勢赤十字病院'),
(5038, 'https://ror.org/01g1che35', 'no_lang_code', 1, 'https://ror.org/01g1che35 Trudell Medical International (Canada)'),
(5039, 'https://ror.org/05d8zd458', 'en', 1, 'https://ror.org/05d8zd458 Truman Medical Center'),
(5040, 'https://ror.org/02navrb60', 'en', 1, 'https://ror.org/02navrb60 Lady of Mercy Medical Center'),
(5041, 'https://ror.org/03bs5zb68', 'no_lang_code', 1, 'https://ror.org/03bs5zb68 Tsubame Rosai Hospital'),
(5042, 'https://ror.org/00cm8nm15', 'en', 1, 'https://ror.org/00cm8nm15 University of California, Irvine Medical Center'),
(5043, 'https://ror.org/00nf8fy32', 'no_lang_code', 1, 'https://ror.org/00nf8fy32 Yamagata City Hospital Saiseikan 山形市立病院済生館'),
(5044, 'https://ror.org/025qedy81', 'en', 1, 'https://ror.org/025qedy81 Children''s Health Ireland at Crumlin Sláinte Leanaí Éireann ag Cromghlinn'),
(5045, 'https://ror.org/02xe87f77', 'no_lang_code', 1, 'https://ror.org/02xe87f77 Yamagata Prefectural Central Hospital 山形県立中央病院'),
(5046, 'https://ror.org/03tjj1227', 'en', 1, 'https://ror.org/03tjj1227 Tsukuba Medical Center Hospital 筑波メディカルセンター病院'),
(5047, 'https://ror.org/02gec1b57', 'no_lang_code', 1, 'https://ror.org/02gec1b57 Tsuyama Chuo Hospital 津山中央病院'),
(5048, 'https://ror.org/004hxna20', 'en', 1, 'https://ror.org/004hxna20 Overlake Hospital Medical Center'),
(5049, 'https://ror.org/049bgw803', 'en', 1, 'https://ror.org/049bgw803 Tuality Community Hospital'),
(5050, 'https://ror.org/05resfq34', 'en', 1, 'https://ror.org/05resfq34 Overlook Medical Center'),
(5051, 'https://ror.org/03c3s0k29', 'en', 1, 'https://ror.org/03c3s0k29 Yamaguchi Red Cross Hospital 山口赤十字病院'),
(5052, 'https://ror.org/05r286q94', 'en', 1, 'https://ror.org/05r286q94 Yamanashi Prefectural Central Hospital 山梨県立中央病院'),
(5053, 'https://ror.org/018nkky79', 'no_lang_code', 1, 'https://ror.org/018nkky79 Tuen Mun Hospital 屯門醫院'),
(5054, 'https://ror.org/02r0rps05', 'it', 1, 'https://ror.org/02r0rps05 Ospedale Sant''Orsola di Brescia'),
(5055, 'https://ror.org/01rg6cx71', 'no_lang_code', 1, 'https://ror.org/01rg6cx71 Yao Tokushukai General Hospital 八尾徳洲会総合病院'),
(5056, 'https://ror.org/04wndes40', 'en', 1, 'https://ror.org/04wndes40 Pacific Health Foundation'),
(5057, 'https://ror.org/05sshfw48', 'en', 1, 'https://ror.org/05sshfw48 Pacific Health Research and Education Institute'),
(5058, 'https://ror.org/03700pg61', 'en', 1, 'https://ror.org/03700pg61 Yedikule Göğüs Hastalıkları ve Göğüs Cerrahisi Eğitim ve Araştırma Hastanesi Yedikule Teaching Hospital'),
(5059, 'https://ror.org/01d1kad18', 'no_lang_code', 1, 'https://ror.org/01d1kad18 Otaru Municipal Hospital 小樽市立病院'),
(5060, 'https://ror.org/05m7r3n78', 'no_lang_code', 1, 'https://ror.org/05m7r3n78 Otemae Hospital 大手前病院'),
(5061, 'https://ror.org/038hwjs80', 'en', 1, 'https://ror.org/038hwjs80 Pacific Tower'),
(5062, 'https://ror.org/00jm9xh53', 'no_lang_code', 1, 'https://ror.org/00jm9xh53 Otsu Municipal Hospital 大津市民病院'),
(5063, 'https://ror.org/02fwe2f11', 'en', 1, 'https://ror.org/02fwe2f11 Tung Wah Eastern Hospital 東華東院'),
(5064, 'https://ror.org/0358b9334', 'en', 1, 'https://ror.org/0358b9334 Pakistan Institute of Medical Sciences پاکستان طبی سائنس انسٹی ٹیوٹ'),
(5065, 'https://ror.org/05pc9cb65', 'no_lang_code', 1, 'https://ror.org/05pc9cb65 Tung Wah Hospital 東華醫院'),
(5066, 'https://ror.org/0452q7b74', 'no_lang_code', 1, 'https://ror.org/0452q7b74 Tungs'' Taichung MetroHarbor Hospital 童綜合醫院'),
(5067, 'https://ror.org/0449k9183', 'tr', 1, 'https://ror.org/0449k9183 Turgut Ozal Medical Center Turgut Özal Tıp Merkezi'),
(5068, 'https://ror.org/033647p67', 'en', 1, 'https://ror.org/033647p67 Otsu Red Cross Hospital 大津赤十字病院'),
(5069, 'https://ror.org/02azsay93', 'en', 1, 'https://ror.org/02azsay93 Pakistan Health Research Council مجلس البحوث الطبية في باكستان'),
(5070, 'https://ror.org/01ctbbh52', 'en', 1, 'https://ror.org/01ctbbh52 Palmerston North Hospital'),
(5071, 'https://ror.org/01ybxrm80', 'en', 1, 'https://ror.org/01ybxrm80 Yodogawa Christian Hospital 淀川キリスト教病院'),
(5072, 'https://ror.org/04ft1w637', 'en', 1, 'https://ror.org/04ft1w637 Palmetto General Hospital'),
(5073, 'https://ror.org/03k36hk88', 'no_lang_code', 1, 'https://ror.org/03k36hk88 Yokkaichi Municipal Hospital 市立四日市病院'),
(5074, 'https://ror.org/00sbyns81', 'en', 1, 'https://ror.org/00sbyns81 Miwa Hospital 三輪病院'),
(5075, 'https://ror.org/02d8ncy29', 'en', 1, 'https://ror.org/02d8ncy29 Yokkaichi Social Insurance Hospital 四日市羽津医療センター'),
(5076, 'https://ror.org/013y4v758', 'en', 1, 'https://ror.org/013y4v758 Yokohama City Seibu Hospital'),
(5077, 'https://ror.org/04mw29y93', 'en', 1, 'https://ror.org/04mw29y93 Turku City Hospital Turun kaupunginsairaala'),
(5078, 'https://ror.org/00d0rvy84', 'no_lang_code', 1, 'https://ror.org/00d0rvy84 Yokohama Minami Kyosai Hospital 横浜南共済病院'),
(5079, 'https://ror.org/034s1fw96', 'en', 1, 'https://ror.org/034s1fw96 Yokohama Municipal Citizen''s Hospital 横浜市営市民病院'),
(5080, 'https://ror.org/04krwby50', 'no_lang_code', 1, 'https://ror.org/04krwby50 Yokohama Municipal Minato Red Cross Hospital 横浜市立みなと赤十字病院'),
(5081, 'https://ror.org/05hgzy544', 'no_lang_code', 1, 'https://ror.org/05hgzy544 Yokohama Sakae Kyosai Hospital 横浜栄共済病院'),
(5082, 'https://ror.org/049yfvx60', 'no_lang_code', 1, 'https://ror.org/049yfvx60 Yokosuka Kyosai Hospital 横須賀共済病院'),
(5083, 'https://ror.org/01hs8x754', 'en', 1, 'https://ror.org/01hs8x754 Tygerberg Hospital'),
(5084, 'https://ror.org/0284zjc89', 'no_lang_code', 1, 'https://ror.org/0284zjc89 Yokufukai Hospital 浴風会病院'),
(5085, 'https://ror.org/046zy3905', 'en', 1, 'https://ror.org/046zy3905 Tzaneion General Hospital'),
(5086, 'https://ror.org/0003zy991', 'en', 1, 'https://ror.org/0003zy991 York Hospital'),
(5087, 'https://ror.org/00a3bx267', 'en', 1, 'https://ror.org/00a3bx267 Toyama Institute of Health 富山県衛生研究所'),
(5088, 'https://ror.org/010s4nz55', 'en', 1, 'https://ror.org/010s4nz55 York General Hospital'),
(5089, 'https://ror.org/03t6ffp13', 'en', 1, 'https://ror.org/03t6ffp13 Yuli Veterans Hospital 七月退伍军人医院'),
(5090, 'https://ror.org/01zj9wm95', 'en', 1, 'https://ror.org/01zj9wm95 Yuan''s General Hospital 阮綜合醫院'),
(5091, 'https://ror.org/034jwje45', 'no_lang_code', 1, 'https://ror.org/034jwje45 Yukioka Hospital 行岡病院'),
(5092, 'https://ror.org/0156rhd17', 'en', 1, 'https://ror.org/0156rhd17 Second Affiliated Hospital & Yuying Children''s Hospital of Wenzhou Medical University 温州医科大学附属第二医院'),
(5093, 'https://ror.org/012kdmp09', 'en', 1, 'https://ror.org/012kdmp09 Opća bolnica Zabok Zabok General Hospital'),
(5094, 'https://ror.org/02ehrn304', 'en', 1, 'https://ror.org/02ehrn304 Zayed Military Hospital مستشفى زايد العسكري'),
(5095, 'https://ror.org/04a6hmw67', 'no_lang_code', 1, 'https://ror.org/04a6hmw67 Neostem (United States)'),
(5096, 'https://ror.org/05cwghy20', 'no_lang_code', 1, 'https://ror.org/05cwghy20 Zen-Noh (Japan) 全国農業協同組合連合会'),
(5097, 'https://ror.org/008wcy231', 'en', 1, 'https://ror.org/008wcy231 Zensa Hospital'),
(5098, 'https://ror.org/055dn7q89', 'no_lang_code', 1, 'https://ror.org/055dn7q89 Neuros Medical (United States)'),
(5099, 'https://ror.org/01h96am38', 'en', 1, 'https://ror.org/01h96am38 Zeynep Kamil Hospital Zeynep Kamil Kadın ve Çocuk Hastalıkları Eğitim Ve Araştırma Hastanesi'),
(5100, 'https://ror.org/0144s0951', 'en', 1, 'https://ror.org/0144s0951 Zhejiang Cancer Hospital 浙江省肿瘤医院'),
(5101, 'https://ror.org/02s5pwd41', 'no_lang_code', 1, 'https://ror.org/02s5pwd41 DeltaQuest Foundation (United States)'),
(5102, 'https://ror.org/02kzr5g33', 'en', 1, 'https://ror.org/02kzr5g33 Zhejiang Hospital 浙江医院'),
(5103, 'https://ror.org/03k14e164', 'en', 1, 'https://ror.org/03k14e164 Zhejiang Provincial People''s Hospital'),
(5104, 'https://ror.org/02mhxa927', 'en', 1, 'https://ror.org/02mhxa927 Zhujiang Hospital'),
(5105, 'https://ror.org/01z5jvj74', 'en', 1, 'https://ror.org/01z5jvj74 ZNA Middelheim Hospital'),
(5106, 'https://ror.org/04ty78924', 'no_lang_code', 1, 'https://ror.org/04ty78924 Karyopharm Therapeutics (United States)'),
(5107, 'https://ror.org/00g5b0g93', 'en', 1, 'https://ror.org/00g5b0g93 Zunyi Medical University 遵义医学院'),
(5108, 'https://ror.org/007b9a961', 'no_lang_code', 1, 'https://ror.org/007b9a961 KeraNetics (United States)'),
(5109, 'https://ror.org/017bd5k63', 'en', 1, 'https://ror.org/017bd5k63 Zuoying Armed Forces General Hospital 國軍高雄總醫院'),
(5110, 'https://ror.org/0011v4420', 'en', 1, 'https://ror.org/0011v4420 Zübeyde Hanim Maternity Hospital'),
(5111, 'https://ror.org/0343gdk92', 'en', 1, 'https://ror.org/0343gdk92 Dorn Research Institute'),
(5112, 'https://ror.org/009mjd053', 'no_lang_code', 1, 'https://ror.org/009mjd053 Advanced Circulatory System (United States)'),
(5113, 'https://ror.org/03sgbh608', 'en', 1, 'https://ror.org/03sgbh608 La Jolla Bioengineering Institute'),
(5114, 'https://ror.org/004ejmg69', 'no_lang_code', 1, 'https://ror.org/004ejmg69 Aerpio Pharmaceuticals (United States)'),
(5115, 'https://ror.org/0219mbj11', 'no_lang_code', 1, 'https://ror.org/0219mbj11 Karo Pharma (Sweden)'),
(5116, 'https://ror.org/036vj6108', 'no_lang_code', 1, 'https://ror.org/036vj6108 SFC Fluidics (United States)'),
(5117, 'https://ror.org/02d4twb46', 'en', 1, 'https://ror.org/02d4twb46 Sound Health Options');
INSERT INTO `rors` VALUES
(5118, 'https://ror.org/04qkyx850', 'no_lang_code', 1, 'https://ror.org/04qkyx850 Social Sectors Development Strategies (United States)'),
(5119, 'https://ror.org/00wc6ay63', 'no_lang_code', 1, 'https://ror.org/00wc6ay63 KCI (United States)'),
(5120, 'https://ror.org/00gf2nq54', 'no_lang_code', 1, 'https://ror.org/00gf2nq54 Nordic Life Science Pipeline (Canada)'),
(5121, 'https://ror.org/0521rfb23', 'en', 1, 'https://ror.org/0521rfb23 Lincoln University - Pennsylvania Universidad Lincoln'),
(5122, 'https://ror.org/050bs5t91', 'no_lang_code', 1, 'https://ror.org/050bs5t91 Neuro Device Innovations (United States)'),
(5123, 'https://ror.org/04khs0d04', 'en', 1, 'https://ror.org/04khs0d04 Amyotrophic Lateral Sclerosis Therapy Development Institute'),
(5124, 'https://ror.org/00jvgqq49', 'no_lang_code', 1, 'https://ror.org/00jvgqq49 Flexion Therapeutics (United States)'),
(5125, 'https://ror.org/01qqd5n29', 'en', 1, 'https://ror.org/01qqd5n29 Foundation for Advanced Education in the Sciences'),
(5126, 'https://ror.org/03j6e9476', 'no_lang_code', 1, 'https://ror.org/03j6e9476 Lipella Pharmaceuticals (United States)'),
(5127, 'https://ror.org/00dv9e751', 'no_lang_code', 1, 'https://ror.org/00dv9e751 Amplimmune (United States)'),
(5128, 'https://ror.org/0291gd333', 'no_lang_code', 1, 'https://ror.org/0291gd333 STATegics (United States)'),
(5129, 'https://ror.org/057pf1v38', 'en', 1, 'https://ror.org/057pf1v38 Foundation for Health Care Quality'),
(5130, 'https://ror.org/05xnsth60', 'no_lang_code', 1, 'https://ror.org/05xnsth60 Network Technologies (United States)'),
(5131, 'https://ror.org/02pp1v282', 'no_lang_code', 1, 'https://ror.org/02pp1v282 AntiCancer (United States)'),
(5132, 'https://ror.org/05de34168', 'no_lang_code', 1, 'https://ror.org/05de34168 Ganeden Biotech (United States)'),
(5133, 'https://ror.org/03kxwet38', 'no_lang_code', 1, 'https://ror.org/03kxwet38 Antigen Express (United States)'),
(5134, 'https://ror.org/01rm78x24', 'no_lang_code', 1, 'https://ror.org/01rm78x24 Applied Photonics (United Kingdom)'),
(5135, 'https://ror.org/05agtcg56', 'en', 1, 'https://ror.org/05agtcg56 Mary Bird Perkins Cancer Center'),
(5136, 'https://ror.org/0115kp792', 'no_lang_code', 1, 'https://ror.org/0115kp792 Aptagen (United States)'),
(5137, 'https://ror.org/03erxwz83', 'no_lang_code', 1, 'https://ror.org/03erxwz83 Syncrotronics Corporation (United States)'),
(5138, 'https://ror.org/037b79526', 'no_lang_code', 1, 'https://ror.org/037b79526 Synedgen (United States)'),
(5139, 'https://ror.org/04dj5bz65', 'no_lang_code', 1, 'https://ror.org/04dj5bz65 OncoImmune (United States)'),
(5140, 'https://ror.org/04szpx527', 'no_lang_code', 1, 'https://ror.org/04szpx527 Araim Pharmaceuticals (United States)'),
(5141, 'https://ror.org/02phjfe17', 'no_lang_code', 1, 'https://ror.org/02phjfe17 Aridis Pharmaceuticals (United States)'),
(5142, 'https://ror.org/00rkhrg48', 'no_lang_code', 1, 'https://ror.org/00rkhrg48 Synta Pharmaceuticals (United States)'),
(5143, 'https://ror.org/03583w097', 'no_lang_code', 1, 'https://ror.org/03583w097 System Biosciences (United States)'),
(5144, 'https://ror.org/048p0t707', 'no_lang_code', 1, 'https://ror.org/048p0t707 GenProMarkers (United States)'),
(5145, 'https://ror.org/00shwmt46', 'no_lang_code', 1, 'https://ror.org/00shwmt46 Precision Therapeutics (United States)'),
(5146, 'https://ror.org/04q4jqq66', 'no_lang_code', 1, 'https://ror.org/04q4jqq66 3T Ophthalmics (United States)'),
(5147, 'https://ror.org/01c44a921', 'en', 1, 'https://ror.org/01c44a921 Proteogenomics Research Institute for Systems Medicine'),
(5148, 'https://ror.org/04cq3yd71', 'no_lang_code', 1, 'https://ror.org/04cq3yd71 Banyan Biomarkers (United States)'),
(5149, 'https://ror.org/02gp6f150', 'no_lang_code', 1, 'https://ror.org/02gp6f150 Tissue Genesis (United States)'),
(5150, 'https://ror.org/042q5aq71', 'no_lang_code', 1, 'https://ror.org/042q5aq71 BiologicsMD (United States)'),
(5151, 'https://ror.org/02f8ah997', 'en', 1, 'https://ror.org/02f8ah997 Transitional Learning Center'),
(5152, 'https://ror.org/01t4a3951', 'no_lang_code', 1, 'https://ror.org/01t4a3951 Treatment Innovations (United States)'),
(5153, 'https://ror.org/045mbap50', 'no_lang_code', 1, 'https://ror.org/045mbap50 Twin Star Medical (United States)'),
(5154, 'https://ror.org/05a409v92', 'no_lang_code', 1, 'https://ror.org/05a409v92 BioPhyZica (United States)'),
(5155, 'https://ror.org/01v8a4s08', 'no_lang_code', 1, 'https://ror.org/01v8a4s08 RadioMedix (United States)'),
(5156, 'https://ror.org/00xpr6w96', 'en', 1, 'https://ror.org/00xpr6w96 Hough Ear Institute'),
(5157, 'https://ror.org/03cfsae23', 'no_lang_code', 1, 'https://ror.org/03cfsae23 QR Pharma (United States)'),
(5158, 'https://ror.org/05bb2q223', 'no_lang_code', 1, 'https://ror.org/05bb2q223 BioStar Systems (United States)'),
(5159, 'https://ror.org/03ez2en98', 'en', 1, 'https://ror.org/03ez2en98 Vaccine & Gene Therapy Institute of Florida'),
(5160, 'https://ror.org/0130d0563', 'en', 1, 'https://ror.org/0130d0563 Vaccine Research Institute of San Diego'),
(5161, 'https://ror.org/03gk3wr33', 'no_lang_code', 1, 'https://ror.org/03gk3wr33 Biostruxs (United States)'),
(5162, 'https://ror.org/00dym4p25', 'no_lang_code', 1, 'https://ror.org/00dym4p25 Hsiri Therapeutics (United States)'),
(5163, 'https://ror.org/02419mc73', 'en', 1, 'https://ror.org/02419mc73 Boston VA Research Institute'),
(5164, 'https://ror.org/0400czs74', 'no_lang_code', 1, 'https://ror.org/0400czs74 Vivonics (United States)'),
(5165, 'https://ror.org/01fdz0a43', 'no_lang_code', 1, 'https://ror.org/01fdz0a43 Ribonomics (United States)'),
(5166, 'https://ror.org/054kmhw06', 'en', 1, 'https://ror.org/054kmhw06 Western Institute For Biomedical Research'),
(5167, 'https://ror.org/02gxtdy09', 'en', 1, 'https://ror.org/02gxtdy09 Brain Trauma Foundation'),
(5168, 'https://ror.org/03z0x0n35', 'no_lang_code', 1, 'https://ror.org/03z0x0n35 Pharmaceutical Formulations (United States)'),
(5169, 'https://ror.org/03cth7012', 'en', 1, 'https://ror.org/03cth7012 Bronx Veterans Medical Research Foundation'),
(5170, 'https://ror.org/00nxxee52', 'no_lang_code', 1, 'https://ror.org/00nxxee52 HyperMed (United States)'),
(5171, 'https://ror.org/05gcn3678', 'en', 1, 'https://ror.org/05gcn3678 Whittemore Peterson Institute'),
(5172, 'https://ror.org/01ae87070', 'it', 1, 'https://ror.org/01ae87070 Ospedale A. Perrino'),
(5173, 'https://ror.org/02sh8ry89', 'no_lang_code', 1, 'https://ror.org/02sh8ry89 Wicab (United States)'),
(5174, 'https://ror.org/01vj62p39', 'no_lang_code', 1, 'https://ror.org/01vj62p39 Cadence Biomedical (United States)'),
(5175, 'https://ror.org/02rb17w33', 'no_lang_code', 1, 'https://ror.org/02rb17w33 Wright Medical Technology (United States)'),
(5176, 'https://ror.org/05eb35r14', 'en', 1, 'https://ror.org/05eb35r14 Roseman University of Health Sciences'),
(5177, 'https://ror.org/02b10nq15', 'en', 1, 'https://ror.org/02b10nq15 Roskamp Institute'),
(5178, 'https://ror.org/04j6jb515', 'it', 1, 'https://ror.org/04j6jb515 Istituti Fisioterapici Ospitalieri'),
(5179, 'https://ror.org/05bk0hn37', 'no_lang_code', 1, 'https://ror.org/05bk0hn37 Biota Pharmaceuticals (United States)'),
(5180, 'https://ror.org/05f7kgd45', 'en', 1, 'https://ror.org/05f7kgd45 Rothberg Institute For Childhood Diseases'),
(5181, 'https://ror.org/02y41ps56', 'no_lang_code', 1, 'https://ror.org/02y41ps56 ImmuneXcite (United States)'),
(5182, 'https://ror.org/05hb58293', 'no_lang_code', 1, 'https://ror.org/05hb58293 Immunotope (United States)'),
(5183, 'https://ror.org/00b51s809', 'no_lang_code', 1, 'https://ror.org/00b51s809 InnerSea Technology (United States)'),
(5184, 'https://ror.org/05nq8z503', 'en', 1, 'https://ror.org/05nq8z503 Preventive Medicine Research Institute'),
(5185, 'https://ror.org/04c91wj10', 'en', 1, 'https://ror.org/04c91wj10 Seattle Institute for Biomedical and Clinical Research'),
(5186, 'https://ror.org/05w1q8228', 'no_lang_code', 1, 'https://ror.org/05w1q8228 Senex Biotechnology (United States)'),
(5187, 'https://ror.org/05y2m0c09', 'en', 1, 'https://ror.org/05y2m0c09 Institute for Medical Research'),
(5188, 'https://ror.org/03b436430', 'en', 1, 'https://ror.org/03b436430 Hospital de la Universidad de Utah University of Utah Hospital'),
(5189, 'https://ror.org/04sadrh19', 'en', 1, 'https://ror.org/04sadrh19 Hindu College of Pharmacy'),
(5190, 'https://ror.org/0053ctp29', 'it', 1, 'https://ror.org/0053ctp29 Ospedale Maggiore'),
(5191, 'https://ror.org/00e4xmg89', 'en', 1, 'https://ror.org/00e4xmg89 Hipple Cancer Research Center'),
(5192, 'https://ror.org/014c2qb55', 'de', 1, 'https://ror.org/014c2qb55 Klinik Hirslanden'),
(5193, 'https://ror.org/01jy3gh06', 'de', 1, 'https://ror.org/01jy3gh06 Hochrhein Institut für Rehabilitationsforschung'),
(5194, 'https://ror.org/01r6bzv07', 'en', 1, 'https://ror.org/01r6bzv07 Bogomoletz Institute of Physiology Інститут фізіології ім. О.О. Богомольця'),
(5195, 'https://ror.org/028e1xc68', 'en', 1, 'https://ror.org/028e1xc68 Center for Clinical & Basic Research'),
(5196, 'https://ror.org/00k0w7368', 'en', 1, 'https://ror.org/00k0w7368 Cooper Clinic'),
(5197, 'https://ror.org/03nzdk586', 'en', 1, 'https://ror.org/03nzdk586 Cooperative Clinical Drug Research and Development'),
(5198, 'https://ror.org/00e8qrd29', 'en', 1, 'https://ror.org/00e8qrd29 Center for Clinical Studies'),
(5199, 'https://ror.org/00er70d66', 'en', 1, 'https://ror.org/00er70d66 Center for Complex Infectious Diseases'),
(5200, 'https://ror.org/05ech9204', 'en', 1, 'https://ror.org/05ech9204 St. John Fisher College'),
(5201, 'https://ror.org/04fnfq325', 'en', 1, 'https://ror.org/04fnfq325 Center for Creative Leadership'),
(5202, 'https://ror.org/04wb8fh44', 'no', 1, 'https://ror.org/04wb8fh44 Center for Crisis Psychology Senter for Krisepsykologi'),
(5203, 'https://ror.org/032s9tg47', 'en', 1, 'https://ror.org/032s9tg47 Cooperative Research Centre for Beef Genetic Technologies'),
(5204, 'https://ror.org/01srwdt35', 'en', 1, 'https://ror.org/01srwdt35 Center for Dermatology and Laser Surgery'),
(5205, 'https://ror.org/02q2pqb13', 'en', 1, 'https://ror.org/02q2pqb13 Cooperative Research Centre for Tissue Growth and Repair'),
(5206, 'https://ror.org/02hbfck57', 'en', 1, 'https://ror.org/02hbfck57 AARP'),
(5207, 'https://ror.org/00pvmkr98', 'en', 1, 'https://ror.org/00pvmkr98 Cornea Research Foundation of America'),
(5208, 'https://ror.org/02q49af68', 'en', 1, 'https://ror.org/02q49af68 Aberdeen Royal Infirmary'),
(5209, 'https://ror.org/00q1c3610', 'en', 1, 'https://ror.org/00q1c3610 Abisko Scientific Research Station'),
(5210, 'https://ror.org/03jtqwv36', 'en', 1, 'https://ror.org/03jtqwv36 Aspire Academy أكاديمية أسباير'),
(5211, 'https://ror.org/01vqjmx11', 'en', 1, 'https://ror.org/01vqjmx11 Center for Economic and Policy Research'),
(5212, 'https://ror.org/03mz9mq20', 'tr', 1, 'https://ror.org/03mz9mq20 Adli Tıp Kurumu'),
(5213, 'https://ror.org/05mmkk893', 'en', 1, 'https://ror.org/05mmkk893 Center for Facial Appearances'),
(5214, 'https://ror.org/03srd4412', 'en', 1, 'https://ror.org/03srd4412 Center for HIV and Hepatogastroenterology Medizinisches Versorgungszentrum'),
(5215, 'https://ror.org/02prqh017', 'en', 1, 'https://ror.org/02prqh017 Holon Institute of Technology'),
(5216, 'https://ror.org/01hbes477', 'en', 1, 'https://ror.org/01hbes477 Franciscan Health'),
(5217, 'https://ror.org/02hhsqf45', 'no_lang_code', 1, 'https://ror.org/02hhsqf45 Covance (United States)'),
(5218, 'https://ror.org/015ygrv52', 'en', 1, 'https://ror.org/015ygrv52 Hong Kong Jockey Club 香港賽馬會'),
(5219, 'https://ror.org/05avmsq62', 'en', 1, 'https://ror.org/05avmsq62 Center for Human Reproduction'),
(5220, 'https://ror.org/059vag305', 'no_lang_code', 1, 'https://ror.org/059vag305 Covance (United Kingdom)'),
(5221, 'https://ror.org/03shyvb83', 'en', 1, 'https://ror.org/03shyvb83 Hope Heart Institute'),
(5222, 'https://ror.org/03z5px561', 'en', 1, 'https://ror.org/03z5px561 Center for Occupational and Environmental Neurology'),
(5223, 'https://ror.org/05q7t7f13', 'en', 1, 'https://ror.org/05q7t7f13 Center For Reconstructive Urethral Surgery Centro di Chirurgia Ricostruttiva dell''Uretra'),
(5224, 'https://ror.org/00edzwq44', 'en', 1, 'https://ror.org/00edzwq44 Academy of Radiology Research'),
(5225, 'https://ror.org/03hmdtw84', 'no_lang_code', 1, 'https://ror.org/03hmdtw84 CPS Research'),
(5226, 'https://ror.org/01gvaa828', 'fr', 1, 'https://ror.org/01gvaa828 Hôpital d''Enfants'),
(5227, 'https://ror.org/00ftv8552', 'en', 1, 'https://ror.org/00ftv8552 Center for Research in Environmental Epidemiology Centro de Investigación en Epidemiología Ambiental'),
(5228, 'https://ror.org/01e2q0308', 'fr', 1, 'https://ror.org/01e2q0308 Hôpital de l''Antiquaille'),
(5229, 'https://ror.org/00av7p167', 'en', 1, 'https://ror.org/00av7p167 Center for Science in the Public Interest (United States)'),
(5230, 'https://ror.org/00x3r9n64', 'en', 1, 'https://ror.org/00x3r9n64 Nezhat Medical Center'),
(5231, 'https://ror.org/02mgtg880', 'en', 1, 'https://ror.org/02mgtg880 Critical Path Institute'),
(5232, 'https://ror.org/007wes890', 'it', 1, 'https://ror.org/007wes890 Istituto per lo Studio e la Prevenzione Oncologica'),
(5233, 'https://ror.org/00tvt5664', 'en', 1, 'https://ror.org/00tvt5664 Croatian Institute of Transfusion Medicine Hrvatski Zavod za Transfuzijsku Medicinu'),
(5234, 'https://ror.org/01svwyw14', 'en', 1, 'https://ror.org/01svwyw14 Croatian Veterinary Institute Hrvatski veterinarski institut Zagreb'),
(5235, 'https://ror.org/011krwa35', 'en', 1, 'https://ror.org/011krwa35 Urology Associates'),
(5236, 'https://ror.org/01qek3q18', 'en', 1, 'https://ror.org/01qek3q18 Central Electrochemical Research Institute'),
(5237, 'https://ror.org/0263fes98', 'no_lang_code', 1, 'https://ror.org/0263fes98 Center for Value Based Medicine (United States)'),
(5238, 'https://ror.org/0527mfk98', 'en', 1, 'https://ror.org/0527mfk98 Central Institute of Medicinal and Aromatic Plants केन्द्रीय औषधीय एवं सगंध पौधा संस्थान സെൻട്രൽ ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് മെഡിസിനൽ ആന്റ് അരോമാറ്റിക് പ്ലാൻറ്സ്'),
(5239, 'https://ror.org/02cfbec64', 'fr', 1, 'https://ror.org/02cfbec64 Hôpital Militaire Avicenne'),
(5240, 'https://ror.org/05shq4n12', 'en', 1, 'https://ror.org/05shq4n12 Centre for Cellular and Molecular Biology உயிரணு மற்றும் மூலக்கூறு உயிரியல் மையம் സെന്റർ ഫോർ സെല്ലുലാർ ആന്റ് മോളിക്യുലർ ബയോളജി'),
(5241, 'https://ror.org/040dky007', 'en', 1, 'https://ror.org/040dky007 Indian Institute of Chemical Technology ఇండియన్ ఇనిస్టిట్యూట్ ఆఫ్ కెమికల్ టెక్నాలజీ ഇന്ത്യൻ ഇൻസ്ററിററ്യൂട്ട് ഓഫ് കെമിക്കൽ ടെക്നോളജി, ഹൈദ്രബാദ്'),
(5242, 'https://ror.org/01e70mw69', 'en', 1, 'https://ror.org/01e70mw69 Indian Institute of Toxicology Research भारतीय विषविज्ञान अनुसंधान संस्थान'),
(5243, 'https://ror.org/05ef28661', 'en', 1, 'https://ror.org/05ef28661 Institute of Genomics and Integrative Biology'),
(5244, 'https://ror.org/03xcn0p72', 'en', 1, 'https://ror.org/03xcn0p72 Institute of Himalayan Bioresource Technology'),
(5245, 'https://ror.org/01gh7yb82', 'no_lang_code', 1, 'https://ror.org/01gh7yb82 Center of Molecular Immunology (Cuba)'),
(5246, 'https://ror.org/049tzhz49', 'en', 1, 'https://ror.org/049tzhz49 Ackerman Academy of Dermatopathology'),
(5247, 'https://ror.org/02zdz9s16', 'en', 1, 'https://ror.org/02zdz9s16 Ackerman Institute for the Family'),
(5248, 'https://ror.org/001yedb91', 'no_lang_code', 1, 'https://ror.org/001yedb91 Actelion (Switzerland)'),
(5249, 'https://ror.org/05mbqa235', 'en', 1, 'https://ror.org/05mbqa235 Ecosystem Sciences'),
(5250, 'https://ror.org/05rke7t32', 'en', 1, 'https://ror.org/05rke7t32 Animal, Food and Health Sciences'),
(5251, 'https://ror.org/025s1b152', 'fr', 1, 'https://ror.org/025s1b152 Lille Catholic University Université Catholique de Lille'),
(5252, 'https://ror.org/05jg9pj51', 'en', 1, 'https://ror.org/05jg9pj51 Plant Industry'),
(5253, 'https://ror.org/00death42', 'en', 1, 'https://ror.org/00death42 Administrative Staff College of India'),
(5254, 'https://ror.org/02bsaqx63', 'en', 1, 'https://ror.org/02bsaqx63 House Clinic'),
(5255, 'https://ror.org/034x2fx50', 'en', 1, 'https://ror.org/034x2fx50 Information and Communication Technologies Centre'),
(5256, 'https://ror.org/02wna9e57', 'pt', 1, 'https://ror.org/02wna9e57 Instituto Adolfo Lutz'),
(5257, 'https://ror.org/057by3h53', 'en', 1, 'https://ror.org/057by3h53 Houston Headache & Neurological Institute'),
(5258, 'https://ror.org/03a3t3y67', 'en', 1, 'https://ror.org/03a3t3y67 Houston Institute for Clinical Research'),
(5259, 'https://ror.org/020h1bf56', 'en', 1, 'https://ror.org/020h1bf56 United States Public Health Service Commissioned Officers Association'),
(5260, 'https://ror.org/00rk1k743', 'en', 1, 'https://ror.org/00rk1k743 Cuban Neuroscience Center'),
(5261, 'https://ror.org/05xf94514', 'en', 1, 'https://ror.org/05xf94514 United States Public Health Service'),
(5262, 'https://ror.org/02xwa6p02', 'no_lang_code', 1, 'https://ror.org/02xwa6p02 Cubist Pharmaceuticals (United States)'),
(5263, 'https://ror.org/046dm7t24', 'en', 1, 'https://ror.org/046dm7t24 Cumberland Infirmary'),
(5264, 'https://ror.org/00g4tw789', 'en', 1, 'https://ror.org/00g4tw789 Hughston Clinic'),
(5265, 'https://ror.org/01sgx5h42', 'en', 1, 'https://ror.org/01sgx5h42 Cuyahoga Community College'),
(5266, 'https://ror.org/01b11x021', 'en', 1, 'https://ror.org/01b11x021 Hull and East Yorkshire Hospitals NHS Trust'),
(5267, 'https://ror.org/05x923c26', 'en', 1, 'https://ror.org/05x923c26 Central Environmental and Food Science Research Institute'),
(5268, 'https://ror.org/02njpkz73', 'en', 1, 'https://ror.org/02njpkz73 Hull Royal Infirmary'),
(5269, 'https://ror.org/018m20m74', 'en', 1, 'https://ror.org/018m20m74 Human BioMolecular Research Institute'),
(5270, 'https://ror.org/047qvvw08', 'en', 1, 'https://ror.org/047qvvw08 Central Forensic Science Laboratory'),
(5271, 'https://ror.org/04dfe6667', 'en', 1, 'https://ror.org/04dfe6667 Human Gene Therapy Research Institute'),
(5272, 'https://ror.org/026799x08', 'no_lang_code', 1, 'https://ror.org/026799x08 CyberFluor and Kronen Systems Incorporated'),
(5273, 'https://ror.org/05k1yyh03', 'no_lang_code', 1, 'https://ror.org/05k1yyh03 Human Genome Sciences (United States)'),
(5274, 'https://ror.org/02wzb5b52', 'en', 1, 'https://ror.org/02wzb5b52 Grand Forks Human Nutrition Research Center'),
(5275, 'https://ror.org/0505r1x13', 'no_lang_code', 1, 'https://ror.org/0505r1x13 Affymax (United States)'),
(5276, 'https://ror.org/00kar4g50', 'fr', 1, 'https://ror.org/00kar4g50 Agence de Médecine Préventive'),
(5277, 'https://ror.org/01engnx74', 'en', 1, 'https://ror.org/01engnx74 Cystic Fibrosis Research Foundation'),
(5278, 'https://ror.org/009qffz28', 'en', 1, 'https://ror.org/009qffz28 Central Institute of Psychiatry केन्द्रीय मनश्चिकित्सा संस्थान'),
(5279, 'https://ror.org/01ftkxq60', 'no_lang_code', 1, 'https://ror.org/01ftkxq60 Cytel (United States)'),
(5280, 'https://ror.org/03a8gee76', 'en', 1, 'https://ror.org/03a8gee76 National JALMA Institute for Leprosy & Other Mycobacterial Diseases'),
(5281, 'https://ror.org/058t40d22', 'en', 1, 'https://ror.org/058t40d22 Central Leprosy Teaching & Research Institute'),
(5282, 'https://ror.org/017pcqs43', 'en', 1, 'https://ror.org/017pcqs43 D.I. Ivanovsky Institute of Virology Russian Academy of Medical Sciences НИИ вирусологии имени Д. И. Ивановского РАМН'),
(5283, 'https://ror.org/05adsq794', 'en', 1, 'https://ror.org/05adsq794 D''Youville College'),
(5284, 'https://ror.org/03p1zz409', 'no_lang_code', 1, 'https://ror.org/03p1zz409 Envigo (Germany)'),
(5285, 'https://ror.org/057k4vd77', 'en', 1, 'https://ror.org/057k4vd77 Hungarian Meat Research Institute'),
(5286, 'https://ror.org/04sapgw72', 'no_lang_code', 1, 'https://ror.org/04sapgw72 Sumitomo Dainippon Pharma (Japan) 大日本住友製薬株式会社'),
(5287, 'https://ror.org/01xdq1k91', 'no_lang_code', 1, 'https://ror.org/01xdq1k91 Japan Tobacco (Japan) 日本たばこ産業株式会社'),
(5288, 'https://ror.org/01qw0br74', 'en', 1, 'https://ror.org/01qw0br74 Agricultural Biotechnology Institute'),
(5289, 'https://ror.org/01wnfae18', 'en', 1, 'https://ror.org/01wnfae18 Central Research Institute केंद्रीय अनुसंधान संस्थान'),
(5290, 'https://ror.org/041jswc25', 'en', 1, 'https://ror.org/041jswc25 Central Research Institute of Electric Power Industry 電力中央研究所'),
(5291, 'https://ror.org/01mpm4k64', 'en', 1, 'https://ror.org/01mpm4k64 Central Research Institute of Epidemiology ФБУН Центральный НИИ эпидемиологии Роспотребнадзора'),
(5292, 'https://ror.org/03rzm8h15', 'en', 1, 'https://ror.org/03rzm8h15 Hyogo Brain and Heart Center 兵庫県立姫路循環器病センター'),
(5293, 'https://ror.org/05kh5wx29', 'en', 1, 'https://ror.org/05kh5wx29 Agrifood Research Finland'),
(5294, 'https://ror.org/054z08865', 'en', 1, 'https://ror.org/054z08865 Hyogo Prefectural Cancer Center 兵庫県立がんセンター'),
(5295, 'https://ror.org/04spxqa35', 'pt', 1, 'https://ror.org/04spxqa35 Instituto Dante Pazzanese de Cardiologia'),
(5296, 'https://ror.org/03ehse820', 'da', 1, 'https://ror.org/03ehse820 Dansk Sundhedsinstitut Dansk Sygehus Institut'),
(5297, 'https://ror.org/05y1qcf54', 'en', 1, 'https://ror.org/05y1qcf54 Agricultural Institute Magyar Tudományos Akadémia Mezőgazdasági Kutató Intézet'),
(5298, 'https://ror.org/02td3ps96', 'en', 1, 'https://ror.org/02td3ps96 Dartmouth Psychiatric Research Center'),
(5299, 'https://ror.org/031bsx066', 'en', 1, 'https://ror.org/031bsx066 DaVinci Institute'),
(5300, 'https://ror.org/05bjen692', 'en', 1, 'https://ror.org/05bjen692 Center for Cancer Research'),
(5301, 'https://ror.org/04xdr5k48', 'en', 1, 'https://ror.org/04xdr5k48 DDL Diagnostic Laboratory'),
(5302, 'https://ror.org/022rrvm68', 'en', 1, 'https://ror.org/022rrvm68 Pavlov Institute of Physiology of the Russian Academy of Sciences Федеральное государственное бюджетное учреждение науки Институт физиологии им. И.П. Павлова Российской академии наук'),
(5303, 'https://ror.org/0331x8t04', 'nl', 1, 'https://ror.org/0331x8t04 Zaans Medisch Centrum'),
(5304, 'https://ror.org/03ndwvd63', 'en', 1, 'https://ror.org/03ndwvd63 Fairview Developmental Center'),
(5305, 'https://ror.org/01vyrje42', 'it', 1, 'https://ror.org/01vyrje42 Istituto Ortopedico Galeazzi'),
(5306, 'https://ror.org/05arxpe18', 'en', 1, 'https://ror.org/05arxpe18 Billings Clinic'),
(5307, 'https://ror.org/05rcxtd95', 'it', 1, 'https://ror.org/05rcxtd95 Fondazione Santa Lucia'),
(5308, 'https://ror.org/01nd9hr79', 'en', 1, 'https://ror.org/01nd9hr79 Forth Valley Royal Hospital'),
(5309, 'https://ror.org/0212h5y77', 'en', 1, 'https://ror.org/0212h5y77 Inova Fairfax Hospital'),
(5310, 'https://ror.org/010azec62', 'en', 1, 'https://ror.org/010azec62 Deborah Heart and Lung Center'),
(5311, 'https://ror.org/04tj7zv24', 'en', 1, 'https://ror.org/04tj7zv24 BPP University'),
(5312, 'https://ror.org/00806hw79', 'en', 1, 'https://ror.org/00806hw79 Huddersfield Royal Infirmary'),
(5313, 'https://ror.org/05jgy0m16', 'no_lang_code', 1, 'https://ror.org/05jgy0m16 Meso Scale Discovery (United States)'),
(5314, 'https://ror.org/03yjg6e54', 'no_lang_code', 1, 'https://ror.org/03yjg6e54 Motion Control (United States)'),
(5315, 'https://ror.org/02sn8xp43', 'no_lang_code', 1, 'https://ror.org/02sn8xp43 Oxonica (United Kingdom)'),
(5316, 'https://ror.org/02tfv4t78', 'no_lang_code', 1, 'https://ror.org/02tfv4t78 Corning (United States)'),
(5317, 'https://ror.org/05k2xsz75', 'es', 1, 'https://ror.org/05k2xsz75 Academia Nacional de Medicina Buenos Aires National Academy of Medicine'),
(5318, 'https://ror.org/043cx5970', 'en', 1, 'https://ror.org/043cx5970 Glynn Hospitality Group'),
(5319, 'https://ror.org/03az52a93', 'en', 1, 'https://ror.org/03az52a93 Family Medicine Residency of Idaho'),
(5320, 'https://ror.org/0173mx324', 'en', 1, 'https://ror.org/0173mx324 Family Research Institute'),
(5321, 'https://ror.org/01k57xn28', 'sr', 1, 'https://ror.org/01k57xn28 Institut za kardiovaskularne bolesti Dedinje'),
(5322, 'https://ror.org/037jprb08', 'sv', 1, 'https://ror.org/037jprb08 Centrallasarettet Växjö'),
(5323, 'https://ror.org/02j33yq05', 'en', 1, 'https://ror.org/02j33yq05 AIDS and Clinical Immunology Research Center'),
(5324, 'https://ror.org/00xx9yn39', 'en', 1, 'https://ror.org/00xx9yn39 Fatima Jinnah Dental College'),
(5325, 'https://ror.org/02xyffp85', 'en', 1, 'https://ror.org/02xyffp85 Fatima Mata National College ഫാത്തിമ മാതാ നാഷണൽ കോളേജ്'),
(5326, 'https://ror.org/05hmfw828', 'fr', 1, 'https://ror.org/05hmfw828 Centre Antoine Lacassagne'),
(5327, 'https://ror.org/0534bc363', 'fr', 1, 'https://ror.org/0534bc363 Centre Cardiologique du Nord'),
(5328, 'https://ror.org/05pxjag90', 'en', 1, 'https://ror.org/05pxjag90 Denver Federal Center'),
(5329, 'https://ror.org/03t4znc65', 'en', 1, 'https://ror.org/03t4znc65 DairyNZ'),
(5330, 'https://ror.org/050eja791', 'no_lang_code', 1, 'https://ror.org/050eja791 Ajinomoto (Russia) Аджиномото'),
(5331, 'https://ror.org/039qtv212', 'en', 1, 'https://ror.org/039qtv212 Federal Correctional Institution Schuylkill'),
(5332, 'https://ror.org/0235jet62', 'en', 1, 'https://ror.org/0235jet62 Akebono Clinic'),
(5333, 'https://ror.org/03pa87f90', 'fr', 1, 'https://ror.org/03pa87f90 Institut Claudius Regaud'),
(5334, 'https://ror.org/01rje3r53', 'fr', 1, 'https://ror.org/01rje3r53 Centre d''Étude du Polymorphisme Humain Fondation Jean Dausset-CEPH'),
(5335, 'https://ror.org/01yrmk064', 'en', 1, 'https://ror.org/01yrmk064 Guttmacher Institute'),
(5336, 'https://ror.org/01ezk2d60', 'no_lang_code', 1, 'https://ror.org/01ezk2d60 Indian Drugs and Pharmaceuticals Limited'),
(5337, 'https://ror.org/05dfnrn76', 'de', 1, 'https://ror.org/05dfnrn76 IFT Institut für Therapieforschung Institute for Therapy and Health Research'),
(5338, 'https://ror.org/02rh7vj17', 'en', 1, 'https://ror.org/02rh7vj17 Alaska Department of Fish and Game'),
(5339, 'https://ror.org/04g47ec58', 'fr', 1, 'https://ror.org/04g47ec58 Société Française de Rhumatologie'),
(5340, 'https://ror.org/03kz7sc12', 'en', 1, 'https://ror.org/03kz7sc12 Rothman Institute'),
(5341, 'https://ror.org/04jswqb94', 'en', 1, 'https://ror.org/04jswqb94 Defence Science and Technology Laboratory'),
(5342, 'https://ror.org/03n9kxm25', 'en', 1, 'https://ror.org/03n9kxm25 Delaware County Community College'),
(5343, 'https://ror.org/05ad30n04', 'no_lang_code', 1, 'https://ror.org/05ad30n04 Alceon Corporation (United States)'),
(5344, 'https://ror.org/01d71vb80', 'en', 1, 'https://ror.org/01d71vb80 Fernández-Vega Ophthalmological Institute'),
(5345, 'https://ror.org/04tk6mg68', 'en', 1, 'https://ror.org/04tk6mg68 Alcohol Research Group'),
(5346, 'https://ror.org/02z95d405', 'de', 1, 'https://ror.org/02z95d405 Institut für Klinische Forschung und Entwicklung'),
(5347, 'https://ror.org/03m7mhz19', 'no_lang_code', 1, 'https://ror.org/03m7mhz19 Ferring Pharmaceuticals (Denmark)'),
(5348, 'https://ror.org/050b6eh04', 'en', 1, 'https://ror.org/050b6eh04 Fertility Center of Las Vegas'),
(5349, 'https://ror.org/00p18zw56', 'en', 1, 'https://ror.org/00p18zw56 Alder Hey Children''s NHS Foundation Trust'),
(5350, 'https://ror.org/05pkanq60', 'en', 1, 'https://ror.org/05pkanq60 Alfa Institute of Biomedical Sciences Άλφα Ινστιτούτο Βιοϊατρικών Επιστημών'),
(5351, 'https://ror.org/043j3s676', 'en', 1, 'https://ror.org/043j3s676 Fetal Medicine Foundation of America'),
(5352, 'https://ror.org/00h74hd82', 'en', 1, 'https://ror.org/00h74hd82 Denver Center for the Performing Arts'),
(5353, 'https://ror.org/00kq7a553', 'en', 1, 'https://ror.org/00kq7a553 Finlay Institute'),
(5354, 'https://ror.org/01wj8vf34', 'en', 1, 'https://ror.org/01wj8vf34 Raghudeep Eye Hospital'),
(5355, 'https://ror.org/00fnk0q46', 'en', 1, 'https://ror.org/00fnk0q46 Academy of Medicine'),
(5356, 'https://ror.org/04pmaae27', 'en', 1, 'https://ror.org/04pmaae27 Illinois College of Optometry'),
(5357, 'https://ror.org/04dxcby13', 'fr', 1, 'https://ror.org/04dxcby13 Centre de Chirurgie Plastique'),
(5358, 'https://ror.org/052ahj806', 'fr', 1, 'https://ror.org/052ahj806 Centre de Génétique Moléculaire'),
(5359, 'https://ror.org/03y3pdm07', 'en', 1, 'https://ror.org/03y3pdm07 Veterans Biomedical Research Institute'),
(5360, 'https://ror.org/01tbvb523', 'en', 1, 'https://ror.org/01tbvb523 Florida Orthopaedic Institute'),
(5361, 'https://ror.org/04sy08330', 'en', 1, 'https://ror.org/04sy08330 AdventHealth Tampa'),
(5362, 'https://ror.org/00dcv1019', 'en', 1, 'https://ror.org/00dcv1019 Allen Institute for Brain Science'),
(5363, 'https://ror.org/0315s4978', 'fr', 1, 'https://ror.org/0315s4978 Centre de Médecine Préventive'),
(5364, 'https://ror.org/05acynk65', 'en', 1, 'https://ror.org/05acynk65 Centre of Biotechnology of Sfax'),
(5365, 'https://ror.org/02mdxv534', 'fr', 1, 'https://ror.org/02mdxv534 Fondation Ophtalmologique Adolphe de Rothschild'),
(5366, 'https://ror.org/04bf30x64', 'en', 1, 'https://ror.org/04bf30x64 Allegheny County'),
(5367, 'https://ror.org/03kkzdv75', 'en', 1, 'https://ror.org/03kkzdv75 Clinicians Report Foundation'),
(5368, 'https://ror.org/05dwj7825', 'it', 1, 'https://ror.org/05dwj7825 Fondazione IRCCS Istituto Nazionale dei Tumori'),
(5369, 'https://ror.org/056ffv270', 'en', 1, 'https://ror.org/056ffv270 Imperial College Healthcare NHS Trust'),
(5370, 'https://ror.org/00z20c921', 'en', 1, 'https://ror.org/00z20c921 Harper Adams University'),
(5371, 'https://ror.org/03jza6h92', 'en', 1, 'https://ror.org/03jza6h92 University of Abuja Teaching Hospital'),
(5372, 'https://ror.org/00n208030', 'en', 1, 'https://ror.org/00n208030 St Mary''s University College'),
(5373, 'https://ror.org/03vk7ns50', 'en', 1, 'https://ror.org/03vk7ns50 Alwar Pharmacy College'),
(5374, 'https://ror.org/05yhj6j64', 'en', 1, 'https://ror.org/05yhj6j64 Food Industry Research and Development Institute'),
(5375, 'https://ror.org/02jq36h12', 'en', 1, 'https://ror.org/02jq36h12 Department of Agriculture and Food Western Australia'),
(5376, 'https://ror.org/03je0y772', 'de', 1, 'https://ror.org/03je0y772 Institut für biologische Forschung'),
(5377, 'https://ror.org/053asbv83', 'en', 1, 'https://ror.org/053asbv83 American Academy of Cosmetic Dentistry'),
(5378, 'https://ror.org/00g2tkw06', 'no_lang_code', 1, 'https://ror.org/00g2tkw06 Ford Motor Company (United States)'),
(5379, 'https://ror.org/00mv9dj85', 'en', 1, 'https://ror.org/00mv9dj85 American Academy of Neurology'),
(5380, 'https://ror.org/015z80004', 'en', 1, 'https://ror.org/015z80004 Forensic Sciences Department'),
(5381, 'https://ror.org/02gv7n749', 'en', 1, 'https://ror.org/02gv7n749 American Dental Education Association'),
(5382, 'https://ror.org/013v2jk78', 'en', 1, 'https://ror.org/013v2jk78 American Association of Poison Control Centers'),
(5383, 'https://ror.org/02xh63p53', 'en', 1, 'https://ror.org/02xh63p53 American Board of Emergency Medicine'),
(5384, 'https://ror.org/00jtgnb29', 'en', 1, 'https://ror.org/00jtgnb29 American Board of Internal Medicine'),
(5385, 'https://ror.org/03pgm1r86', 'en', 1, 'https://ror.org/03pgm1r86 American College of Cardiology'),
(5386, 'https://ror.org/05t8d2s47', 'en', 1, 'https://ror.org/05t8d2s47 American College of Emergency Physicians'),
(5387, 'https://ror.org/04cheq228', 'en', 1, 'https://ror.org/04cheq228 American College of Gastroenterology'),
(5388, 'https://ror.org/011ps1s60', 'en', 1, 'https://ror.org/011ps1s60 American College of Healthcare Executives'),
(5389, 'https://ror.org/02agkk742', 'en', 1, 'https://ror.org/02agkk742 National Institute of Indian Medical Heritage राष्ट्रीय भारतीय आयुर्विज्ञान संपदा संस्थान'),
(5390, 'https://ror.org/01z1z7017', 'de', 1, 'https://ror.org/01z1z7017 Forschungsinstitut für Kinderernährung'),
(5391, 'https://ror.org/04gt45789', 'en', 1, 'https://ror.org/04gt45789 American Congress of Obstetricians and Gynecologists'),
(5392, 'https://ror.org/013ed7841', 'en', 1, 'https://ror.org/013ed7841 American College of Physician Executives'),
(5393, 'https://ror.org/03671qm90', 'en', 1, 'https://ror.org/03671qm90 American College of Physicians'),
(5394, 'https://ror.org/01rzx2627', 'en', 1, 'https://ror.org/01rzx2627 American College of Radiology'),
(5395, 'https://ror.org/02xxpjq61', 'en', 1, 'https://ror.org/02xxpjq61 Indian Institute of Management Bangalore भारतीय प्रबंध संस्थान बेंगलूर இந்திய மேலாண்மை கழகம் பெங்களூரு ఇండియన్ ఇన్స్టిట్యూట్ ఆఫ్ మేనేజ్మెంట్ బెంగుళూరు ಇಂಡಿಯನ್ ಇನ್ಸ್ಟಿಟ್ಯೂಟ್ ಆಫ್ ಮ್ಯಾನೇಜ್ಮೆಂಟ್ ಬೆಂಗಳೂರು ഇന്ത്യൻ ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് മാനേജ്മെന്റ്, ബാംഗ്ലൂർ'),
(5396, 'https://ror.org/03b2h3x98', 'de', 1, 'https://ror.org/03b2h3x98 Paul Gerhardt Diakonie'),
(5397, 'https://ror.org/009mk5659', 'en', 1, 'https://ror.org/009mk5659 American College of Surgeons'),
(5398, 'https://ror.org/05dj1xv70', 'en', 1, 'https://ror.org/05dj1xv70 Academy of Nutrition and Dietetics'),
(5399, 'https://ror.org/03zg6y353', 'en', 1, 'https://ror.org/03zg6y353 American Enterprise Institute'),
(5400, 'https://ror.org/02p014d02', 'en', 1, 'https://ror.org/02p014d02 American International College'),
(5401, 'https://ror.org/028qa3n13', 'en', 1, 'https://ror.org/028qa3n13 Indian Institute of Science Education and Research Pune भारतीय विज्ञान शिक्षा एवं अनुसंधान संस्थान, पुणे'),
(5402, 'https://ror.org/012057720', 'en', 1, 'https://ror.org/012057720 American Legacy Foundation'),
(5403, 'https://ror.org/00thykc36', 'en', 1, 'https://ror.org/00thykc36 American Nurses Credentialing Center'),
(5404, 'https://ror.org/01cacm735', 'en', 1, 'https://ror.org/01cacm735 Fortis Escorts Heart Institute'),
(5405, 'https://ror.org/04qxdaz55', 'no_lang_code', 1, 'https://ror.org/04qxdaz55 Fortis Hospital'),
(5406, 'https://ror.org/03xm3wq50', 'no_lang_code', 1, 'https://ror.org/03xm3wq50 Doctors Company (United States)'),
(5407, 'https://ror.org/05vgb7p23', 'en', 1, 'https://ror.org/05vgb7p23 American Psychiatric Association'),
(5408, 'https://ror.org/052x5ps19', 'en', 1, 'https://ror.org/052x5ps19 Foundation for Applied Molecular Evolution'),
(5409, 'https://ror.org/00gban551', 'en', 1, 'https://ror.org/00gban551 Biomedical Research Foundation of the Academy of Athens'),
(5410, 'https://ror.org/008x12972', 'en', 1, 'https://ror.org/008x12972 American Society for Reproductive Medicine'),
(5411, 'https://ror.org/037mmnn19', 'en', 1, 'https://ror.org/037mmnn19 American Sports Medicine Institute'),
(5412, 'https://ror.org/00174r125', 'en', 1, 'https://ror.org/00174r125 Foundation for Blood Research'),
(5413, 'https://ror.org/03xmkea05', 'en', 1, 'https://ror.org/03xmkea05 Applied Science and Technology Research Institute'),
(5414, 'https://ror.org/044jp1563', 'no_lang_code', 1, 'https://ror.org/044jp1563 Analysis Group (United States)'),
(5415, 'https://ror.org/053f3rt53', 'en', 1, 'https://ror.org/053f3rt53 Favaloro Foundation'),
(5416, 'https://ror.org/035cynm43', 'en', 1, 'https://ror.org/035cynm43 Foundation for Research into Traditional Chinese Medicine'),
(5417, 'https://ror.org/04681ap34', 'en', 1, 'https://ror.org/04681ap34 Indiana Hand to Shoulder Center'),
(5418, 'https://ror.org/02jqpaq24', 'en', 1, 'https://ror.org/02jqpaq24 Centre for Chronic Disease Control'),
(5419, 'https://ror.org/02mp2w060', 'en', 1, 'https://ror.org/02mp2w060 Framingham State University Université d''État de framingham'),
(5420, 'https://ror.org/04n7g4f11', 'en', 1, 'https://ror.org/04n7g4f11 Rochester Area Foundation'),
(5421, 'https://ror.org/05vmv8m79', 'en', 1, 'https://ror.org/05vmv8m79 Frankfurt Institute for Advanced Studies'),
(5422, 'https://ror.org/05j1fg548', 'en', 1, 'https://ror.org/05j1fg548 Indiana Hemophilia and Thrombosis Center'),
(5423, 'https://ror.org/030mgn080', 'en', 1, 'https://ror.org/030mgn080 Anderson Orthopaedic Clinic'),
(5424, 'https://ror.org/03qeabs35', 'en', 1, 'https://ror.org/03qeabs35 Anderson Orthopaedic Research Institute'),
(5425, 'https://ror.org/02vsy6m37', 'en', 1, 'https://ror.org/02vsy6m37 Centre for Infectious Disease Research in Zambia'),
(5426, 'https://ror.org/05cg3j211', 'it', 1, 'https://ror.org/05cg3j211 Fondazione Andrea Cesalpino'),
(5427, 'https://ror.org/03dtejd64', 'en', 1, 'https://ror.org/03dtejd64 Fraunhofer USA Center for Molecular Biotechnology'),
(5428, 'https://ror.org/025vn3989', 'no_lang_code', 1, 'https://ror.org/025vn3989 GlaxoSmithKline (United States)'),
(5429, 'https://ror.org/02f09jf04', 'en', 1, 'https://ror.org/02f09jf04 Fertility Medical Group'),
(5430, 'https://ror.org/04vh1tq58', 'de', 1, 'https://ror.org/04vh1tq58 Friedrich Miescher Laboratory Friedrich-Miescher-Laboratorium für Biologische Arbeitsgruppen in der Max-Planck-Gesellschaft'),
(5431, 'https://ror.org/03k9qs827', 'en', 1, 'https://ror.org/03k9qs827 Fritz Haber Institute of the Max Planck Society Fritz-Haber-Institut der Max-Planck-Gesellschaft'),
(5432, 'https://ror.org/05szzwt63', 'en', 1, 'https://ror.org/05szzwt63 Industrial Technology Research Institute 工業技術硏究院'),
(5433, 'https://ror.org/02qhjcg87', 'en', 1, 'https://ror.org/02qhjcg87 Mason Parks & Recreation Foundation'),
(5434, 'https://ror.org/0199g0r92', 'en', 1, 'https://ror.org/0199g0r92 Max Planck Institute for Metabolism Research Max-Planck-Institut für Stoffwechselforschung'),
(5435, 'https://ror.org/042c70y92', 'no_lang_code', 1, 'https://ror.org/042c70y92 Fujimoto Pharmaceutical Corporation (Japan)'),
(5436, 'https://ror.org/03eykgw84', 'no_lang_code', 1, 'https://ror.org/03eykgw84 Fujirebio (Japan) 富士レビオ株式会社'),
(5437, 'https://ror.org/03ydekn03', 'no_lang_code', 1, 'https://ror.org/03ydekn03 Fukui CardioVascular Center 医療法人 福井心臓血圧センター 福井循環器病院'),
(5438, 'https://ror.org/04zkc6t29', 'en', 1, 'https://ror.org/04zkc6t29 Fukuoka Dental College 福岡歯科大学'),
(5439, 'https://ror.org/039h53162', 'fr', 1, 'https://ror.org/039h53162 Centre hospitalier de Tulle'),
(5440, 'https://ror.org/04v6bh038', 'en', 1, 'https://ror.org/04v6bh038 Fukuoka Industrial Technology Center 福岡県工業技術センター'),
(5441, 'https://ror.org/00bmxak18', 'en', 1, 'https://ror.org/00bmxak18 Fukuoka Institute of Technology 福岡工業大学'),
(5442, 'https://ror.org/02carhc19', 'fr', 1, 'https://ror.org/02carhc19 Centre Hospitalier de Tourcoing'),
(5443, 'https://ror.org/04pr6dn97', 'no_lang_code', 1, 'https://ror.org/04pr6dn97 Arbutus Biopharma (Canada)'),
(5444, 'https://ror.org/045xtrm66', 'en', 1, 'https://ror.org/045xtrm66 American Osteopathic Association'),
(5445, 'https://ror.org/015qy8r18', 'fr', 1, 'https://ror.org/015qy8r18 Centre Hospitalier Intercommunal de Poissy'),
(5446, 'https://ror.org/016brq605', 'de', 1, 'https://ror.org/016brq605 Apherese Forschungsinstitut'),
(5447, 'https://ror.org/01k703c10', 'fr', 1, 'https://ror.org/01k703c10 Centre Hospitalier de l''Agglomération de Nevers'),
(5448, 'https://ror.org/01k6b9k02', 'en', 1, 'https://ror.org/01k6b9k02 Fuller Theological Seminary Seminario Teológico Fuller'),
(5449, 'https://ror.org/0488dyp14', 'fr', 1, 'https://ror.org/0488dyp14 Centre Hospitalier de Cannes'),
(5450, 'https://ror.org/04f2ksb75', 'no_lang_code', 1, 'https://ror.org/04f2ksb75 Fundação Estadual de Produção e Pesquisa em Saúde'),
(5451, 'https://ror.org/02pve7657', 'fr', 1, 'https://ror.org/02pve7657 Groupe Hospitalier du Havre'),
(5452, 'https://ror.org/029xxx628', 'en', 1, 'https://ror.org/029xxx628 Aquinas Institute of Theology'),
(5453, 'https://ror.org/0411v1p84', 'no_lang_code', 1, 'https://ror.org/0411v1p84 Estée Lauder (United States)'),
(5454, 'https://ror.org/038vngd42', 'fr', 1, 'https://ror.org/038vngd42 Centre Hospitalier Universitaire de Kigali University Teaching Hospital of Kigali'),
(5455, 'https://ror.org/03htsdy94', 'fr', 1, 'https://ror.org/03htsdy94 Centre Hospitalier de la Côte Basque'),
(5456, 'https://ror.org/03w418j08', 'en', 1, 'https://ror.org/03w418j08 Centre Hospitalier de Libreville Libreville Hospital'),
(5457, 'https://ror.org/00q67qp92', 'es', 1, 'https://ror.org/00q67qp92 Fundación Cardiovascular de Colombia'),
(5458, 'https://ror.org/03f61zm76', 'en', 1, 'https://ror.org/03f61zm76 Det Nationale Forskningscenter for Arbejdsmiljø National Research Centre for the Working Environment'),
(5459, 'https://ror.org/01fh9k283', 'es', 1, 'https://ror.org/01fh9k283 Fundación Instituto Valenciano de Oncología'),
(5460, 'https://ror.org/02v4ner66', 'fr', 1, 'https://ror.org/02v4ner66 Centre hospitalier Etterbeek-Ixelles'),
(5461, 'https://ror.org/00gg4aq64', 'fr', 1, 'https://ror.org/00gg4aq64 Centre Hospitalier Frèderic-Henri Manhès'),
(5462, 'https://ror.org/03ezapm74', 'es', 1, 'https://ror.org/03ezapm74 Fundación Santa Fe de Bogotá'),
(5463, 'https://ror.org/04ss3cm03', 'fr', 1, 'https://ror.org/04ss3cm03 Centre Hospitalier Laennec'),
(5464, 'https://ror.org/044bsy795', 'en', 1, 'https://ror.org/044bsy795 Insall Scott Kelly Institute'),
(5465, 'https://ror.org/02dy9y553', 'en', 1, 'https://ror.org/02dy9y553 Amrith Educational and Cultural Society'),
(5466, 'https://ror.org/00tdrjp82', 'en', 1, 'https://ror.org/00tdrjp82 Arizona Heart Institute'),
(5467, 'https://ror.org/02e9za279', 'no_lang_code', 1, 'https://ror.org/02e9za279 Galen Research (United Kingdom)'),
(5468, 'https://ror.org/034kxvk28', 'no_lang_code', 1, 'https://ror.org/034kxvk28 Galderma (France)'),
(5469, 'https://ror.org/053wdqs10', 'fr', 1, 'https://ror.org/053wdqs10 Institut Alfred Fournier'),
(5470, 'https://ror.org/0559h9k50', 'en', 1, 'https://ror.org/0559h9k50 Gatorade Sports Science Institute'),
(5471, 'https://ror.org/02pwnhd33', 'fr', 1, 'https://ror.org/02pwnhd33 Centre Jean Perrin'),
(5472, 'https://ror.org/005t0ps98', 'fr', 1, 'https://ror.org/005t0ps98 Institut Arnault Tzanck'),
(5473, 'https://ror.org/01wyqb997', 'fr', 1, 'https://ror.org/01wyqb997 Centre International de Recherches Médicales de Franceville'),
(5474, 'https://ror.org/00g741v42', 'en', 1, 'https://ror.org/00g741v42 Gansu University of Traditional Chinese Medicine 甘肃中医学院'),
(5475, 'https://ror.org/03c24n351', 'en', 1, 'https://ror.org/03c24n351 Armed Forces Institute of Pathology'),
(5476, 'https://ror.org/05e8s8534', 'fr', 1, 'https://ror.org/05e8s8534 Institut Jules Bordet'),
(5477, 'https://ror.org/01tt80y42', 'fr', 1, 'https://ror.org/01tt80y42 Hôpital privé Clairval'),
(5478, 'https://ror.org/01zpdb870', 'fr', 1, 'https://ror.org/01zpdb870 Centre Médical de Vidy'),
(5479, 'https://ror.org/040dd7568', 'en', 1, 'https://ror.org/040dd7568 Arthritis and Rheumatology Clinics of Kansas'),
(5480, 'https://ror.org/01616eq90', 'en', 1, 'https://ror.org/01616eq90 Gamalei Institute of Epidemiology and Microbiology Национальный исследовательский центр эпидемиологии и микробиологии имени почётного академика Н. Ф. Гамалеи'),
(5481, 'https://ror.org/00x5q3m40', 'fr', 1, 'https://ror.org/00x5q3m40 Institut Calot'),
(5482, 'https://ror.org/03ddan440', 'no_lang_code', 1, 'https://ror.org/03ddan440 Arthur D. Little (United States)'),
(5483, 'https://ror.org/04sg1k490', 'en', 1, 'https://ror.org/04sg1k490 Gabrichevsky Institute of Epidemiology and Microbiology Московский научно-исследовательский институт эпидемиологии и микробиологии им.Г.Н.Габричевского'),
(5484, 'https://ror.org/014aeyd41', 'no_lang_code', 1, 'https://ror.org/014aeyd41 Asahi Breweries (Japan) アサヒビール株式会社'),
(5485, 'https://ror.org/0453c4485', 'fr', 1, 'https://ror.org/0453c4485 Institut Cardiovasculaire Paris Sud'),
(5486, 'https://ror.org/00s9ea398', 'no_lang_code', 1, 'https://ror.org/00s9ea398 Asahi Chemical & Industry (Japan)'),
(5487, 'https://ror.org/0403qcr87', 'en', 1, 'https://ror.org/0403qcr87 Asian Institute of Technology สถาบันเทคโนโลยีแห่งเอเชีย'),
(5488, 'https://ror.org/02wcc5n95', 'en', 1, 'https://ror.org/02wcc5n95 Association of Dutch Burn Centres Vereniging Samenwerkende Brandwondencentra'),
(5489, 'https://ror.org/04w6hwt48', 'en', 1, 'https://ror.org/04w6hwt48 MalariaGEN'),
(5490, 'https://ror.org/04wwrrg31', 'no_lang_code', 1, 'https://ror.org/04wwrrg31 AstraZeneca (Sweden)'),
(5491, 'https://ror.org/043cec594', 'no_lang_code', 1, 'https://ror.org/043cec594 AstraZeneca (United States)'),
(5492, 'https://ror.org/002bnpr17', 'pt', 1, 'https://ror.org/002bnpr17 Fundação de Medicina Tropical'),
(5493, 'https://ror.org/015gdag92', 'en', 1, 'https://ror.org/015gdag92 Atlanta Allergy and Asthma Clinic'),
(5494, 'https://ror.org/04hrjej96', 'en', 1, 'https://ror.org/04hrjej96 Leeds General Infirmary'),
(5495, 'https://ror.org/05addee68', 'no_lang_code', 1, 'https://ror.org/05addee68 General Motors (United States)'),
(5496, 'https://ror.org/041xnf417', 'en', 1, 'https://ror.org/041xnf417 Audubon Nature Institute'),
(5497, 'https://ror.org/01ddmwy83', 'fr', 1, 'https://ror.org/01ddmwy83 Centre Ophtalmologique d''Imagerie et de Laser'),
(5498, 'https://ror.org/01c20ew23', 'en', 1, 'https://ror.org/01c20ew23 Genetics and IVF Institute'),
(5499, 'https://ror.org/04ws26165', 'fr', 1, 'https://ror.org/04ws26165 Belgische Wissenschaftsinstitut für Öffentliche Gesundheit Institut Scientifique de Santé Publique Scientific Institute of Public Health Wetenschappelijk Instituut Volksgezondheid'),
(5500, 'https://ror.org/005fx5296', 'en', 1, 'https://ror.org/005fx5296 Austen Riggs Center'),
(5501, 'https://ror.org/00k20np13', 'en', 1, 'https://ror.org/00k20np13 Austin Diagnostic Clinic'),
(5502, 'https://ror.org/03gpw5a44', 'fr', 1, 'https://ror.org/03gpw5a44 Centre Orthopédique Santy'),
(5503, 'https://ror.org/03sqbp894', 'no_lang_code', 1, 'https://ror.org/03sqbp894 GlaxoSmithKline (Switzerland)'),
(5504, 'https://ror.org/00bewwj71', 'no_lang_code', 1, 'https://ror.org/00bewwj71 Cooperative Resources International (United States)'),
(5505, 'https://ror.org/017136v53', 'en', 1, 'https://ror.org/017136v53 Genomics Institute of the Novartis Research Foundation'),
(5506, 'https://ror.org/02ydc1657', 'it', 1, 'https://ror.org/02ydc1657 Gruppo di Ricerca Geriatrica'),
(5507, 'https://ror.org/01bzgdw81', 'en', 1, 'https://ror.org/01bzgdw81 Indian Agricultural Research Institute भारतीय कृषि अनुसंधान संस्थान இந்திய வேளாண் ஆராய்ச்சிக் கழகம்'),
(5508, 'https://ror.org/03x3mpp61', 'en', 1, 'https://ror.org/03x3mpp61 Indian Grassland and Fodder Research Institute'),
(5509, 'https://ror.org/0599dmq43', 'en', 1, 'https://ror.org/0599dmq43 Indian Institute of Spices Research'),
(5510, 'https://ror.org/058xvac60', 'en', 1, 'https://ror.org/058xvac60 Baltimore Washington Center for Psychoanalysis'),
(5511, 'https://ror.org/031yk2194', 'en', 1, 'https://ror.org/031yk2194 Bangur Institute of Neurosciences'),
(5512, 'https://ror.org/0263jp665', 'fr', 1, 'https://ror.org/0263jp665 Hôpital René Huguenin'),
(5513, 'https://ror.org/05y9zzm67', 'en', 1, 'https://ror.org/05y9zzm67 Henri Gastaut Hospital'),
(5514, 'https://ror.org/01sj8qf84', 'en', 1, 'https://ror.org/01sj8qf84 Secrétariat du Conseil du Trésor du Canada Treasury Board of Canada Secretariat'),
(5515, 'https://ror.org/0010c1z81', 'de', 1, 'https://ror.org/0010c1z81 Deutsche Klinik für Diagnostik'),
(5516, 'https://ror.org/0292awh62', 'no_lang_code', 1, 'https://ror.org/0292awh62 Merck (Japan) メルク'),
(5517, 'https://ror.org/00v47pv90', 'en', 1, 'https://ror.org/00v47pv90 Baptist Health South Florida'),
(5518, 'https://ror.org/02f99v835', 'en', 1, 'https://ror.org/02f99v835 Deutsches Primatenzentrum German Primate Center'),
(5519, 'https://ror.org/00shv0x82', 'en', 1, 'https://ror.org/00shv0x82 Deutsches Rheuma-Forschungszentrum Berlin German Rheumatism Research Centre'),
(5520, 'https://ror.org/026vpvt76', 'no_lang_code', 1, 'https://ror.org/026vpvt76 Geron (United States)'),
(5521, 'https://ror.org/00s2dqx11', 'en', 1, 'https://ror.org/00s2dqx11 Indian Institute of Horticultural Research'),
(5522, 'https://ror.org/02d4smc03', 'en', 1, 'https://ror.org/02d4smc03 GF Strong Rehabilitation Centre'),
(5523, 'https://ror.org/01zw2nq07', 'en', 1, 'https://ror.org/01zw2nq07 Indian Institute of Integrative Medicine'),
(5524, 'https://ror.org/020d9fy55', 'en', 1, 'https://ror.org/020d9fy55 Gimbel Eye Centre'),
(5525, 'https://ror.org/006pq9r08', 'it', 1, 'https://ror.org/006pq9r08 Centro Cardiologico Monzino'),
(5526, 'https://ror.org/05tacab76', 'en', 1, 'https://ror.org/05tacab76 Bath Institute for Rheumatic Diseases'),
(5527, 'https://ror.org/02d6ew870', 'no_lang_code', 1, 'https://ror.org/02d6ew870 Baxter (United States)'),
(5528, 'https://ror.org/002yzpx87', 'no_lang_code', 1, 'https://ror.org/002yzpx87 BASF (United States)'),
(5529, 'https://ror.org/00t8xfq63', 'es', 1, 'https://ror.org/00t8xfq63 Center for Scientific Studies Centro de Estudios Científicos'),
(5530, 'https://ror.org/027akq961', 'fr', 1, 'https://ror.org/027akq961 Institut de la Main'),
(5531, 'https://ror.org/023xsn018', 'it', 1, 'https://ror.org/023xsn018 Casa di Cura Columbus');
INSERT INTO `rors` VALUES
(5532, 'https://ror.org/02ntheh91', 'es', 1, 'https://ror.org/02ntheh91 Instituto Venezolano de Investigaciones Científicas'),
(5533, 'https://ror.org/04czhsq43', 'es', 1, 'https://ror.org/04czhsq43 Center for Medical Education and Clinical Research Norberto Quirno Centro de Educación Médica e Investigaciones Clínicas Norberto Quirno'),
(5534, 'https://ror.org/03px2kh57', 'fr', 1, 'https://ror.org/03px2kh57 Institut de Médecine Tropicale du Service de Santé des Armées'),
(5535, 'https://ror.org/03q94pb14', 'no_lang_code', 1, 'https://ror.org/03q94pb14 Beckham Company (United States)'),
(5536, 'https://ror.org/03bz9t645', 'en', 1, 'https://ror.org/03bz9t645 Bedford Institute of Oceanography'),
(5537, 'https://ror.org/04xfypm71', 'no_lang_code', 1, 'https://ror.org/04xfypm71 Aptuit (Italy)'),
(5538, 'https://ror.org/05xr0q537', 'es', 1, 'https://ror.org/05xr0q537 Clínica Ruiz'),
(5539, 'https://ror.org/03qxwgf98', 'es', 1, 'https://ror.org/03qxwgf98 Center for Genetic Engineering and Biotechnology Centro de Ingeniería Genética y Biotecnología'),
(5540, 'https://ror.org/020cs8b78', 'en', 1, 'https://ror.org/020cs8b78 Global Hospitals'),
(5541, 'https://ror.org/02g726t95', 'en', 1, 'https://ror.org/02g726t95 Global Neuroscience Initiative Foundation'),
(5542, 'https://ror.org/058dc0w16', 'en', 1, 'https://ror.org/058dc0w16 Beijing Center for Disease Prevention and Control 北京市疾病预防控制中心'),
(5543, 'https://ror.org/05ct4fn38', 'en', 1, 'https://ror.org/05ct4fn38 Beijing Academy of Science and Technology 北京市电加工研究所'),
(5544, 'https://ror.org/05cjk9k86', 'pt', 1, 'https://ror.org/05cjk9k86 Fundação Pró-Sangue Hemocentro de São Paulo'),
(5545, 'https://ror.org/02ed5f444', 'no_lang_code', 1, 'https://ror.org/02ed5f444 Ligand Pharmaceuticals (United States)'),
(5546, 'https://ror.org/032hvdr57', 'en', 1, 'https://ror.org/032hvdr57 Gordon-Conwell Theological Seminary'),
(5547, 'https://ror.org/03ycpex79', 'en', 1, 'https://ror.org/03ycpex79 Beijing Red Cross Blood Center'),
(5548, 'https://ror.org/03w6pea42', 'en', 1, 'https://ror.org/03w6pea42 National Dental Centre of Singapore'),
(5549, 'https://ror.org/05an61k54', 'en', 1, 'https://ror.org/05an61k54 Bellin College'),
(5550, 'https://ror.org/028qd3f30', 'en', 1, 'https://ror.org/028qd3f30 Government Dental College & Research Institute'),
(5551, 'https://ror.org/02jf59571', 'en', 1, 'https://ror.org/02jf59571 Benaki Phytopathological Institute Μπενάκειο Φυτοπαθολογικό Ινστιτούτο'),
(5552, 'https://ror.org/00nm4jw86', 'en', 1, 'https://ror.org/00nm4jw86 Benjamin Rose Institute on Aging'),
(5553, 'https://ror.org/0449h4696', 'en', 1, 'https://ror.org/0449h4696 Graduate School Neurosciences Amsterdam Rotterdam'),
(5554, 'https://ror.org/04jbmee34', 'en', 1, 'https://ror.org/04jbmee34 Graham International Implant Institute'),
(5555, 'https://ror.org/012mfbs12', 'en', 1, 'https://ror.org/012mfbs12 Bethel College'),
(5556, 'https://ror.org/01amarv06', 'en', 1, 'https://ror.org/01amarv06 v. Bodelschwing Foundation Bethel v. Bodelschwinghsche Stiftungen Bethel'),
(5557, 'https://ror.org/04hzvka15', 'en', 1, 'https://ror.org/04hzvka15 Barraquer Opthalmology Center Clínica Oftalmológica Barraquer'),
(5558, 'https://ror.org/04jpa5e08', 'en', 1, 'https://ror.org/04jpa5e08 TriHealth'),
(5559, 'https://ror.org/05w6wfp17', 'en', 1, 'https://ror.org/05w6wfp17 Bhabha Atomic Research Centre Centre de recherche atomique de bhabha भाभा अणुसंशोधन केंद्र भाभा परमाणु अनुसंधान केन्द्र பாபா அணு ஆராய்ச்சி மையம் ಭಾಭಾ ಅಣು ಸಂಶೋಧನಾ ಕೇಂದ್ರ ഭാഭാ ആണവ ഗവേഷണ കേന്ദ്രം'),
(5560, 'https://ror.org/0535c3537', 'no_lang_code', 1, 'https://ror.org/0535c3537 Mitsubishi Chemical Holdings Mitsubishi Chemical Holdings (Japan) 株式会社三菱ケミカルホールディングス'),
(5561, 'https://ror.org/03p64mj41', 'en', 1, 'https://ror.org/03p64mj41 Greenwood Genetic Center'),
(5562, 'https://ror.org/022m8zh32', 'en', 1, 'https://ror.org/022m8zh32 Grewal Eye Institute'),
(5563, 'https://ror.org/02xfnnq52', 'no_lang_code', 1, 'https://ror.org/02xfnnq52 Bio Products Laboratory (United Kingdom)'),
(5564, 'https://ror.org/036w5wx69', 'en', 1, 'https://ror.org/036w5wx69 Bio Behavioral Institute'),
(5565, 'https://ror.org/03n2bnb89', 'es', 1, 'https://ror.org/03n2bnb89 Hospital Intermutual de Levante'),
(5566, 'https://ror.org/04kbvxz10', 'en', 1, 'https://ror.org/04kbvxz10 Biocor Institute Biocor Instituto'),
(5567, 'https://ror.org/000x99506', 'no_lang_code', 1, 'https://ror.org/000x99506 Biodynamic Research Corporation (United States)'),
(5568, 'https://ror.org/03ks1vk59', 'it', 1, 'https://ror.org/03ks1vk59 Centro di Riferimento Oncologico'),
(5569, 'https://ror.org/00n6jcj93', 'it', 1, 'https://ror.org/00n6jcj93 Centro di Riferimento Oncologico della Basilicata'),
(5570, 'https://ror.org/00ay43505', 'fr', 1, 'https://ror.org/00ay43505 Institut de Virologie'),
(5571, 'https://ror.org/03bhap014', 'it', 1, 'https://ror.org/03bhap014 Centro Diagnostico Italiano'),
(5572, 'https://ror.org/047a9ch09', 'en', 1, 'https://ror.org/047a9ch09 Guangxi Center for Disease Prevention and Control 广西壮族自治区疾病预防控制中心'),
(5573, 'https://ror.org/036ypft38', 'pt', 1, 'https://ror.org/036ypft38 Centro Hospitalar de Lisboa Ocidental'),
(5574, 'https://ror.org/042jpy919', 'pt', 1, 'https://ror.org/042jpy919 Centro Hospitalar de Vila Nova de Gaia'),
(5575, 'https://ror.org/03eh6tj73', 'en', 1, 'https://ror.org/03eh6tj73 Guangxi Veterinary Research Institute'),
(5576, 'https://ror.org/019fkcf66', 'en', 1, 'https://ror.org/019fkcf66 Guangzhou Blood Center'),
(5577, 'https://ror.org/02aj0wy64', 'es', 1, 'https://ror.org/02aj0wy64 Centro Hospitalario Pereira Rossell Hospital Pereira Rossell'),
(5578, 'https://ror.org/037c0br92', 'en', 1, 'https://ror.org/037c0br92 Guangzhou Institute of Dermatology'),
(5579, 'https://ror.org/037403209', 'en', 1, 'https://ror.org/037403209 Gunma Prefectural Cardiovascular Center 群馬県立心臓血管センター'),
(5580, 'https://ror.org/00rpbf348', 'no_lang_code', 1, 'https://ror.org/00rpbf348 Guru Nanak Eye Centre'),
(5581, 'https://ror.org/03yr0pg70', 'en', 1, 'https://ror.org/03yr0pg70 Biomedical Research Institute'),
(5582, 'https://ror.org/03tmy2526', 'en', 1, 'https://ror.org/03tmy2526 Gundersen Lutheran Hospital'),
(5583, 'https://ror.org/0077s8c55', 'en', 1, 'https://ror.org/0077s8c55 Gyeongsangnam-do Agricultural Research and Extension Services 경상남도농업기술원'),
(5584, 'https://ror.org/030qq9y73', 'en', 1, 'https://ror.org/030qq9y73 Hachinohe National College of Technology 八戸工業高等専門学校 庶務課'),
(5585, 'https://ror.org/04t8qjg16', 'en', 1, 'https://ror.org/04t8qjg16 Central Drug Research Institute केन्द्रीय औषधि अनुसंधान संस्थान కేంద్రీయ ఔషధ పరిశోధనా సంస్థ'),
(5586, 'https://ror.org/039d1mp60', 'en', 1, 'https://ror.org/039d1mp60 Central Glass and Ceramic Research Institute'),
(5587, 'https://ror.org/03v08em34', 'en', 1, 'https://ror.org/03v08em34 Maaruti College of Dental sciences & Research Center'),
(5588, 'https://ror.org/02kp7p620', 'en', 1, 'https://ror.org/02kp7p620 Central Leather Research Institute'),
(5589, 'https://ror.org/019nmf858', 'en', 1, 'https://ror.org/019nmf858 Central Potato Research Institute'),
(5590, 'https://ror.org/029zb5621', 'en', 1, 'https://ror.org/029zb5621 Central Rice Research Institute'),
(5591, 'https://ror.org/04ry4r880', 'en', 1, 'https://ror.org/04ry4r880 Central Tuber Crops Research Institute'),
(5592, 'https://ror.org/0347fy350', 'en', 1, 'https://ror.org/0347fy350 Rothamsted Research'),
(5593, 'https://ror.org/01e8tvg28', 'it', 1, 'https://ror.org/01e8tvg28 Fondazione Salvatore Maugeri'),
(5594, 'https://ror.org/00geypp27', 'no_lang_code', 1, 'https://ror.org/00geypp27 Novartis (France)'),
(5595, 'https://ror.org/0160cnc74', 'no_lang_code', 1, 'https://ror.org/0160cnc74 BioSci Research Canada (Canada)'),
(5596, 'https://ror.org/004vn8r55', 'es', 1, 'https://ror.org/004vn8r55 Centro Médico Nacional La Raza'),
(5597, 'https://ror.org/00epxwq78', 'en', 1, 'https://ror.org/00epxwq78 Hamilton Regional Laboratory Medicine Program'),
(5598, 'https://ror.org/02zepah98', 'en', 1, 'https://ror.org/02zepah98 Hand and Wrist Center of Houston'),
(5599, 'https://ror.org/02vz80y09', 'es', 1, 'https://ror.org/02vz80y09 Centro Medico Nacional Siglo XXI'),
(5600, 'https://ror.org/01vp49361', 'no_lang_code', 1, 'https://ror.org/01vp49361 Merck Serono (Switzerland)'),
(5601, 'https://ror.org/01fbde567', 'en', 1, 'https://ror.org/01fbde567 Max Planck Institute of Molecular Plant Physiology Max-Planck-Institut für molekulare Pflanzenphysiologie'),
(5602, 'https://ror.org/05261sq16', 'en', 1, 'https://ror.org/05261sq16 Royal Blackburn Teaching Hospital'),
(5603, 'https://ror.org/01bnjyq25', 'de', 1, 'https://ror.org/01bnjyq25 GP Forschungsgruppe Instituts für Grundlagen und Programmforschung'),
(5604, 'https://ror.org/01ag7n936', 'es', 1, 'https://ror.org/01ag7n936 Centro Rosarino de Estudios Perinatales'),
(5605, 'https://ror.org/03vk8p158', 'en', 1, 'https://ror.org/03vk8p158 Block Center'),
(5606, 'https://ror.org/001s05659', 'en', 1, 'https://ror.org/001s05659 Blood Transfusion Centre of Slovenia'),
(5607, 'https://ror.org/00b0jfb70', 'no_lang_code', 1, 'https://ror.org/00b0jfb70 BM-Science'),
(5608, 'https://ror.org/0288qta63', 'en', 1, 'https://ror.org/0288qta63 Hartwick College'),
(5609, 'https://ror.org/005m2at17', 'en', 1, 'https://ror.org/005m2at17 Harvard Affiliated Emergency Medicine Residency'),
(5610, 'https://ror.org/05kffp613', 'no_lang_code', 1, 'https://ror.org/05kffp613 Boehringer Ingelheim (United States)'),
(5611, 'https://ror.org/05q1wf970', 'en', 1, 'https://ror.org/05q1wf970 Bogolyubov Institute for Theoretical Physics Інститут теоретичної фізики ім. М.М. Боголюбова'),
(5612, 'https://ror.org/02ys1c285', 'en', 1, 'https://ror.org/02ys1c285 Development Center for Biotechnology'),
(5613, 'https://ror.org/012c7gx93', 'no_lang_code', 1, 'https://ror.org/012c7gx93 Cerner (United States)'),
(5614, 'https://ror.org/01z8hbn82', 'en', 1, 'https://ror.org/01z8hbn82 Diabetes & Glandular Disease Clinic'),
(5615, 'https://ror.org/02m15g174', 'en', 1, 'https://ror.org/02m15g174 Diabetes Care Center'),
(5616, 'https://ror.org/00kftxm09', 'en', 1, 'https://ror.org/00kftxm09 Boreskov Institute of Catalysis Institute of Catalysis Федеральное государственное бюджетное учреждение науки Институт катализа им. Г.К. Борескова Сибирского отделения Российской академии наук'),
(5617, 'https://ror.org/05r8vsn81', 'en', 1, 'https://ror.org/05r8vsn81 Borgess Health'),
(5618, 'https://ror.org/02hy8r734', 'en', 1, 'https://ror.org/02hy8r734 Clinical Trial Investigators'),
(5619, 'https://ror.org/05ds0kz06', 'en', 1, 'https://ror.org/05ds0kz06 Boston Psychoanalytic Society and Institute'),
(5620, 'https://ror.org/002feag21', 'en', 1, 'https://ror.org/002feag21 Bostwick Laboratories'),
(5621, 'https://ror.org/02pmr4c75', 'en', 1, 'https://ror.org/02pmr4c75 Hastings Center'),
(5622, 'https://ror.org/05fhv2c54', 'en', 1, 'https://ror.org/05fhv2c54 Charitable Infirmary'),
(5623, 'https://ror.org/04qg15997', 'en', 1, 'https://ror.org/04qg15997 Bourn Hall Clinic'),
(5624, 'https://ror.org/005dyph89', 'en', 1, 'https://ror.org/005dyph89 Hawaii Agriculture Research Center'),
(5625, 'https://ror.org/01pw42d50', 'en', 1, 'https://ror.org/01pw42d50 Boxer Wachler Vision Institute'),
(5626, 'https://ror.org/01dk89r22', 'en', 1, 'https://ror.org/01dk89r22 City Colleges of Chicago Colegios Comunitarios de Chicago'),
(5627, 'https://ror.org/03vpj4s62', 'en', 1, 'https://ror.org/03vpj4s62 Max Planck Institute of Molecular Physiology Max-Planck-Institut für Molekulare Physiologie'),
(5628, 'https://ror.org/01v9kvt79', 'no_lang_code', 1, 'https://ror.org/01v9kvt79 Bracco (Switzerland)'),
(5629, 'https://ror.org/01rvpy991', 'no_lang_code', 1, 'https://ror.org/01rvpy991 Hayashibara (Japan) 株式会社 林原'),
(5630, 'https://ror.org/01ck0pr88', 'en', 1, 'https://ror.org/01ck0pr88 Bradford Royal Infirmary'),
(5631, 'https://ror.org/05qjz5228', 'fr', 1, 'https://ror.org/05qjz5228 Institut Jean Godinot'),
(5632, 'https://ror.org/05gekvn04', 'en', 1, 'https://ror.org/05gekvn04 Bradford Teaching Hospitals NHS Foundation Trust'),
(5633, 'https://ror.org/055sg7x74', 'en', 1, 'https://ror.org/055sg7x74 Headache Care Center'),
(5634, 'https://ror.org/03azk3n24', 'en', 1, 'https://ror.org/03azk3n24 Headache Wellness Center'),
(5635, 'https://ror.org/03be69002', 'en', 1, 'https://ror.org/03be69002 Finnish Brain Research and Rehabilitation Center Neuron'),
(5636, 'https://ror.org/02wndzd81', 'en', 1, 'https://ror.org/02wndzd81 Heart and Diabetes Center North Rhine-Westphalia Herz- und Diabeteszentrum Nordrhein-Westfalen'),
(5637, 'https://ror.org/04qwgkn39', 'es', 1, 'https://ror.org/04qwgkn39 Institut Kaplan'),
(5638, 'https://ror.org/00wg9xe54', 'en', 1, 'https://ror.org/00wg9xe54 Chemical Diversity Research Institute Исследовательский Институт Химического Разнообразия'),
(5639, 'https://ror.org/008egzn26', 'pt', 1, 'https://ror.org/008egzn26 Centro Brasileiro de Estudos em Dermatologia'),
(5640, 'https://ror.org/007pyhw16', 'en', 1, 'https://ror.org/007pyhw16 Diamond Headache Clinic'),
(5641, 'https://ror.org/02s61y919', 'en', 1, 'https://ror.org/02s61y919 Valley Breast Care & Woman''s Health Center'),
(5642, 'https://ror.org/02c22vc57', 'en', 1, 'https://ror.org/02c22vc57 Leibniz Institute for Prevention Research and Epidemiology - BIPS Leibniz-Institut für Präventionsforschung und Epidemiologie - BIPS'),
(5643, 'https://ror.org/04fjkxc67', 'de', 1, 'https://ror.org/04fjkxc67 Helios Kliniken'),
(5644, 'https://ror.org/025tz0x98', 'en', 1, 'https://ror.org/025tz0x98 Heart Clinic of Louisiana'),
(5645, 'https://ror.org/02trgd202', 'ca', 1, 'https://ror.org/02trgd202 Institut Municipal d''Assistència Sanitària'),
(5646, 'https://ror.org/02dw95q60', 'en', 1, 'https://ror.org/02dw95q60 New York Heart Research Foundation'),
(5647, 'https://ror.org/03pghek18', 'en', 1, 'https://ror.org/03pghek18 Bristol Institute for Transfusion Sciences'),
(5648, 'https://ror.org/01ptsgx95', 'fr', 1, 'https://ror.org/01ptsgx95 Institut National d''Hygiène du Maroc'),
(5649, 'https://ror.org/04xmnzw38', 'de', 1, 'https://ror.org/04xmnzw38 Chemotherapeutisches Forschungsinstitut Georg-Speyer-Haus Georg Speyer Haus'),
(5650, 'https://ror.org/04dbmrm19', 'no_lang_code', 1, 'https://ror.org/04dbmrm19 Bristol-Myers Squibb (Japan) ブリストル・マイヤーズ スクイブ'),
(5651, 'https://ror.org/044cqax96', 'no_lang_code', 1, 'https://ror.org/044cqax96 Helicos Biosciences (United States)'),
(5652, 'https://ror.org/03etg4523', 'no_lang_code', 1, 'https://ror.org/03etg4523 Teva Pharmaceuticals (United States)'),
(5653, 'https://ror.org/03rezj286', 'en', 1, 'https://ror.org/03rezj286 Chemical Pharmaceutical Research Institute'),
(5654, 'https://ror.org/02120t614', 'en', 1, 'https://ror.org/02120t614 Chiba Cancer Center 千葉県がんセンター'),
(5655, 'https://ror.org/02p7sht55', 'en', 1, 'https://ror.org/02p7sht55 National Vital Statistics System'),
(5656, 'https://ror.org/02w7azg93', 'no_lang_code', 1, 'https://ror.org/02w7azg93 Chiba Cerebral and Cardiovascular Center 千葉県脳血管センタ'),
(5657, 'https://ror.org/022mrwt29', 'en', 1, 'https://ror.org/022mrwt29 Tzu Chi Foundation'),
(5658, 'https://ror.org/03e5eem51', 'en', 1, 'https://ror.org/03e5eem51 Budker Institute of Nuclear Physics Институт ядерной физики'),
(5659, 'https://ror.org/055t7f808', 'en', 1, 'https://ror.org/055t7f808 Hellenic Center for Disease Control & Prevention'),
(5660, 'https://ror.org/0154zm466', 'da', 1, 'https://ror.org/0154zm466 Børneklinikken Randers'),
(5661, 'https://ror.org/01479r334', 'en', 1, 'https://ror.org/01479r334 Henan Provincial Center for Disease Control and Prevention 河南省疾病预防控制中心'),
(5662, 'https://ror.org/02y0wmd59', 'en', 1, 'https://ror.org/02y0wmd59 Children''s Heart Center Nevada'),
(5663, 'https://ror.org/03vypx625', 'en', 1, 'https://ror.org/03vypx625 Burton Hospitals NHS Foundation Trust'),
(5664, 'https://ror.org/03sgtek58', 'en', 1, 'https://ror.org/03sgtek58 China Institute of Sport Science 国家体育总局体育科学研究所'),
(5665, 'https://ror.org/03sfb9j07', 'en', 1, 'https://ror.org/03sfb9j07 China University of Science and Technology 中華科技大學'),
(5666, 'https://ror.org/019wssg97', 'no_lang_code', 1, 'https://ror.org/019wssg97 Altana (Germany)'),
(5667, 'https://ror.org/02fz4s018', 'en', 1, 'https://ror.org/02fz4s018 Heritage Foundation'),
(5668, 'https://ror.org/00dxv3745', 'en', 1, 'https://ror.org/00dxv3745 Hernia Center'),
(5669, 'https://ror.org/04hn9xh52', 'no_lang_code', 1, 'https://ror.org/04hn9xh52 Bionova Holding Corporation (United States)'),
(5670, 'https://ror.org/02bpqmq41', 'en', 1, 'https://ror.org/02bpqmq41 China Rehabilitation Research Center'),
(5671, 'https://ror.org/03jt74a36', 'en', 1, 'https://ror.org/03jt74a36 China Institute of Veterinary Drug Control 中国兽医药品监察所'),
(5672, 'https://ror.org/00kpnax84', 'no_lang_code', 1, 'https://ror.org/00kpnax84 Heska (United States)'),
(5673, 'https://ror.org/02t1t6n83', 'en', 1, 'https://ror.org/02t1t6n83 Burdenko Neurosurgery Institute Федеральное государственное автономное учреждение Научно-исследовательский институт нейрохирургии имени академика Н.Н. Бурденко Министерства здравоохранения Российской Федерации'),
(5674, 'https://ror.org/03fag5224', 'en', 1, 'https://ror.org/03fag5224 West Bengal University of Health Sciences पश्चिम बंगाल स्वास्थ्य विज्ञान विश्वविद्यालय পশ্চিমবঙ্গ স্বাস্থ্যবিজ্ঞান বিশ্ববিদ্যালয়'),
(5675, 'https://ror.org/059rn9488', 'no_lang_code', 1, 'https://ror.org/059rn9488 Hewlett-Packard (United States)'),
(5676, 'https://ror.org/00g6ztp19', 'en', 1, 'https://ror.org/00g6ztp19 Calgary Laboratory Services'),
(5677, 'https://ror.org/01y8myk27', 'en', 1, 'https://ror.org/01y8myk27 Dominican College of Blauvelt'),
(5678, 'https://ror.org/0108cpj15', 'en', 1, 'https://ror.org/0108cpj15 High Institute for Education and Research in Transfusion Medicine موسسه عالی آموزشی و پژوهشی طب انتقال خون'),
(5679, 'https://ror.org/00j83wy46', 'no_lang_code', 1, 'https://ror.org/00j83wy46 Monsanto (United States)'),
(5680, 'https://ror.org/033m8b439', 'en', 1, 'https://ror.org/033m8b439 California Institute for Regenerative Medicine'),
(5681, 'https://ror.org/00vj57q03', 'en', 1, 'https://ror.org/00vj57q03 California Western School of Law'),
(5682, 'https://ror.org/02gwxj243', 'no_lang_code', 1, 'https://ror.org/02gwxj243 bioMérieux (United States)'),
(5683, 'https://ror.org/04j9w6p53', 'en', 1, 'https://ror.org/04j9w6p53 Thrombosis and Atherosclerosis Research Institute'),
(5684, 'https://ror.org/02e3ssq97', 'en', 1, 'https://ror.org/02e3ssq97 Don Carlo Gnocchi Foundation'),
(5685, 'https://ror.org/01wq93z70', 'en', 1, 'https://ror.org/01wq93z70 Chinese National Human Genome Center'),
(5686, 'https://ror.org/04x4v8p40', 'no_lang_code', 1, 'https://ror.org/04x4v8p40 Pfizer (United Kingdom)'),
(5687, 'https://ror.org/05pm71w80', 'no_lang_code', 1, 'https://ror.org/05pm71w80 Pfizer (Japan) ファイザ'),
(5688, 'https://ror.org/00x0e3e82', 'fr', 1, 'https://ror.org/00x0e3e82 Institut Régional de Médecine Physique et de Réadaptation'),
(5689, 'https://ror.org/037xccs34', 'en', 1, 'https://ror.org/037xccs34 Chitose Institute of Science and Technology 千歳科学技術大学'),
(5690, 'https://ror.org/05tvanj47', 'fr', 1, 'https://ror.org/05tvanj47 Institut Louis Malardé'),
(5691, 'https://ror.org/03rharq04', 'en', 1, 'https://ror.org/03rharq04 Rath Research Institute'),
(5692, 'https://ror.org/03e04g978', 'en', 1, 'https://ror.org/03e04g978 Tanzania Commission for Science and Technology Tume ya Sayansi na Teknolojia Tanzania'),
(5693, 'https://ror.org/0353yar19', 'en', 1, 'https://ror.org/0353yar19 Dr. Daneshbod Labratory'),
(5694, 'https://ror.org/02vbwbd19', 'en', 1, 'https://ror.org/02vbwbd19 Campbell Clinic'),
(5695, 'https://ror.org/03pjwtr87', 'en', 1, 'https://ror.org/03pjwtr87 Canadian College of Naturopathic Medicine'),
(5696, 'https://ror.org/004g7tk16', 'en', 1, 'https://ror.org/004g7tk16 Canadian Fitness and Lifestyle Research Institute'),
(5697, 'https://ror.org/03jfagf20', 'en', 1, 'https://ror.org/03jfagf20 Canadian Memorial Chiropractic College'),
(5698, 'https://ror.org/013aq5m10', 'en', 1, 'https://ror.org/013aq5m10 Dubai Pharmacy College كلية دبي للصيدلة'),
(5699, 'https://ror.org/05m25pj04', 'sr', 1, 'https://ror.org/05m25pj04 Institut za zdravstvenu zaštitu dece i omladine Vojvodine'),
(5700, 'https://ror.org/00nb6mq69', 'en', 1, 'https://ror.org/00nb6mq69 Chulabhorn Research Institute สถาบันวิจัยจุฬาภรณ์'),
(5701, 'https://ror.org/05695qy17', 'pl', 1, 'https://ror.org/05695qy17 Instytut Farmaceutyczny'),
(5702, 'https://ror.org/01k1ftz35', 'no_lang_code', 1, 'https://ror.org/01k1ftz35 Novartis (Japan) ノバルティス ファーマ株式会社'),
(5703, 'https://ror.org/00bzsst90', 'en', 1, 'https://ror.org/00bzsst90 Institute for Advanced Studies in Basic Sciences مرکز تحصیلات تکمیلی در علوم پایه زنجان'),
(5704, 'https://ror.org/05f705338', 'no_lang_code', 1, 'https://ror.org/05f705338 PharmIdeas (Canada)'),
(5705, 'https://ror.org/01wfg6h04', 'en', 1, 'https://ror.org/01wfg6h04 Pharmo Institute'),
(5706, 'https://ror.org/05cjt1n05', 'nl', 1, 'https://ror.org/05cjt1n05 Instituut voor Landbouw en Visserijonderzoek'),
(5707, 'https://ror.org/039s6n838', 'no_lang_code', 1, 'https://ror.org/039s6n838 Novartis (United Kingdom)'),
(5708, 'https://ror.org/02hh2th82', 'en', 1, 'https://ror.org/02hh2th82 Dumfries and Galloway Royal Infirmary'),
(5709, 'https://ror.org/02zhwmh74', 'en', 1, 'https://ror.org/02zhwmh74 Cincinnati Eye Institute'),
(5710, 'https://ror.org/01ayagd95', 'no_lang_code', 1, 'https://ror.org/01ayagd95 Alternative Futures Associates'),
(5711, 'https://ror.org/03gcg7j68', 'en', 1, 'https://ror.org/03gcg7j68 Cincinnati Sportsmedicine and Orthopaedic Center'),
(5712, 'https://ror.org/02nrhnf93', 'en', 1, 'https://ror.org/02nrhnf93 City Eye Centre'),
(5713, 'https://ror.org/01vmvt909', 'en', 1, 'https://ror.org/01vmvt909 National Migraine Centre'),
(5714, 'https://ror.org/000apqb71', 'en', 1, 'https://ror.org/000apqb71 Philadelphia Fire Department'),
(5715, 'https://ror.org/022jdjx35', 'no_lang_code', 1, 'https://ror.org/022jdjx35 Philip Morris International (Germany)'),
(5716, 'https://ror.org/05san5604', 'no_lang_code', 1, 'https://ror.org/05san5604 Philips (Germany)'),
(5717, 'https://ror.org/03g7wzf21', 'no_lang_code', 1, 'https://ror.org/03g7wzf21 Emergent BioSolutions (Canada)'),
(5718, 'https://ror.org/01tyr1g37', 'en', 1, 'https://ror.org/01tyr1g37 Institute for Biological Instrumentation Институт биологического приборостроения РАН'),
(5719, 'https://ror.org/05gcq4j10', 'en', 1, 'https://ror.org/05gcq4j10 Clatterbridge Cancer Centre NHS Foundation Trust'),
(5720, 'https://ror.org/02qbhr955', 'ro', 1, 'https://ror.org/02qbhr955 Institutul Cantacuzino'),
(5721, 'https://ror.org/00t7c0489', 'en', 1, 'https://ror.org/00t7c0489 Institute for Biological Sciences'),
(5722, 'https://ror.org/0155k7414', 'en', 1, 'https://ror.org/0155k7414 Cleveland Clinic Florida'),
(5723, 'https://ror.org/01btmdt42', 'no_lang_code', 1, 'https://ror.org/01btmdt42 Dynavax Technologies (United States)'),
(5724, 'https://ror.org/00ah4xn57', 'en', 1, 'https://ror.org/00ah4xn57 Capital Allergy and Respiratory Disease Center'),
(5725, 'https://ror.org/00zw6et16', 'en', 1, 'https://ror.org/00zw6et16 Capital Institute of Pediatrics 首都儿科研究所'),
(5726, 'https://ror.org/05nvv0w48', 'en', 1, 'https://ror.org/05nvv0w48 Arizona Institute for Bone & Joint Disorders'),
(5727, 'https://ror.org/04x2tmv91', 'en', 1, 'https://ror.org/04x2tmv91 Piedmont HealthCare'),
(5728, 'https://ror.org/02zmajt19', 'it', 1, 'https://ror.org/02zmajt19 Casa di cura Pierangeli'),
(5729, 'https://ror.org/04mx3g858', 'en', 1, 'https://ror.org/04mx3g858 Silverstein Institute'),
(5730, 'https://ror.org/02s1t7068', 'en', 1, 'https://ror.org/02s1t7068 Eastern Oklahoma State College'),
(5731, 'https://ror.org/04fktme39', 'en', 1, 'https://ror.org/04fktme39 Cleveland University'),
(5732, 'https://ror.org/05v4bk714', 'en', 1, 'https://ror.org/05v4bk714 Animal Technology Institute Taiwan'),
(5733, 'https://ror.org/00bw4xw30', 'en', 1, 'https://ror.org/00bw4xw30 Institute of Experimental Cardiology'),
(5734, 'https://ror.org/03vs98h61', 'en', 1, 'https://ror.org/03vs98h61 Cardiopulmonary Research Science and Technology Institute'),
(5735, 'https://ror.org/04vnpzv66', 'en', 1, 'https://ror.org/04vnpzv66 Pinkus Dermatopathology Laboratory'),
(5736, 'https://ror.org/02qwvxs86', 'sv', 1, 'https://ror.org/02qwvxs86 Eastmaninstitutet The Eastman Institute'),
(5737, 'https://ror.org/04rn3ph18', 'no_lang_code', 1, 'https://ror.org/04rn3ph18 Kodak (United States)'),
(5738, 'https://ror.org/01strh679', 'sr', 1, 'https://ror.org/01strh679 Klinički centar Niš Клинички центар Ниш'),
(5739, 'https://ror.org/00yascf89', 'no_lang_code', 1, 'https://ror.org/00yascf89 Intertek (Canada)'),
(5740, 'https://ror.org/00pbdx741', 'en', 1, 'https://ror.org/00pbdx741 Cape Shoulder Institute'),
(5741, 'https://ror.org/02tr01m06', 'no_lang_code', 1, 'https://ror.org/02tr01m06 International Severity Information Systems (United States)'),
(5742, 'https://ror.org/008k5ng46', 'en', 1, 'https://ror.org/008k5ng46 Central Council for Research in Ayurvedic Science'),
(5743, 'https://ror.org/05d8b8w20', 'en', 1, 'https://ror.org/05d8b8w20 Plano Orthopedic Sports Medicine & Spine Center'),
(5744, 'https://ror.org/04bb8wd84', 'fr', 1, 'https://ror.org/04bb8wd84 Institut Océanographique'),
(5745, 'https://ror.org/05qydhq49', 'en', 1, 'https://ror.org/05qydhq49 Duluth Clinic'),
(5746, 'https://ror.org/04x1grb60', 'en', 1, 'https://ror.org/04x1grb60 Dutch College of General Practitioners Nederlands Huisartsen Genootschap'),
(5747, 'https://ror.org/04yxwc698', 'en', 1, 'https://ror.org/04yxwc698 Cardiovascular Research Foundation'),
(5748, 'https://ror.org/00ky71f04', 'en', 1, 'https://ror.org/00ky71f04 Clinical Orthopaedics and Related Research'),
(5749, 'https://ror.org/02sjy2915', 'en', 1, 'https://ror.org/02sjy2915 Podiatry Institute'),
(5750, 'https://ror.org/00skncc61', 'en', 1, 'https://ror.org/00skncc61 Institute For Ecology of Industrial Areas Instytut Ekologii Terenów Uprzemysłowionych'),
(5751, 'https://ror.org/055hfb865', 'en', 1, 'https://ror.org/055hfb865 Carlsberg Laboratory'),
(5752, 'https://ror.org/02dx8kd29', 'sr', 1, 'https://ror.org/02dx8kd29 Institut za Zdravstvenu Zastitu Majke i Deteta'),
(5753, 'https://ror.org/04mymaj38', 'en', 1, 'https://ror.org/04mymaj38 Point Richmond Tech Center'),
(5754, 'https://ror.org/02zv3n642', 'en', 1, 'https://ror.org/02zv3n642 Institute for Facial Esthetics'),
(5755, 'https://ror.org/05nq89q24', 'en', 1, 'https://ror.org/05nq89q24 Institute for Fermentation 発酵研究所'),
(5756, 'https://ror.org/02jxrxr40', 'no_lang_code', 1, 'https://ror.org/02jxrxr40 Policy Analysis (United States)'),
(5757, 'https://ror.org/01t8vn565', 'fr', 1, 'https://ror.org/01t8vn565 Clinique de l''Yvette Yvette clinic'),
(5758, 'https://ror.org/03eqc1p67', 'fr', 1, 'https://ror.org/03eqc1p67 Clinique de la Défense'),
(5759, 'https://ror.org/05eyymj94', 'fr', 1, 'https://ror.org/05eyymj94 L’École Supérieure de Biotechnologie de Strasbourg École Supérieure de Biotechnologie de Strasbourg'),
(5760, 'https://ror.org/053v8b344', 'en', 1, 'https://ror.org/053v8b344 Economic Policy Institute'),
(5761, 'https://ror.org/030mbxz29', 'en', 1, 'https://ror.org/030mbxz29 Carter Center'),
(5762, 'https://ror.org/04fv4f289', 'hu', 1, 'https://ror.org/04fv4f289 Bűnügyi Szakértői és Kutatóintézet Hungarian Institute for Forensic Sciences'),
(5763, 'https://ror.org/05hr7qe62', 'no_lang_code', 1, 'https://ror.org/05hr7qe62 Genetika Федеральное государственное унитарное предприятие Государственный научно-исследовательский институт генетики и селекции промышленных микроорганизмов'),
(5764, 'https://ror.org/03f47x024', 'en', 1, 'https://ror.org/03f47x024 ECRI Institute'),
(5765, 'https://ror.org/01qhm7e49', 'no_lang_code', 1, 'https://ror.org/01qhm7e49 Caterpillar (United States)'),
(5766, 'https://ror.org/053rfa017', 'en', 1, 'https://ror.org/053rfa017 Institute for Infocomm Research'),
(5767, 'https://ror.org/00tg1mz65', 'en', 1, 'https://ror.org/00tg1mz65 Porter Brook Medical Centre'),
(5768, 'https://ror.org/05n8ah907', 'no_lang_code', 1, 'https://ror.org/05n8ah907 Unilever (United Kingdom)'),
(5769, 'https://ror.org/01zq90d67', 'en', 1, 'https://ror.org/01zq90d67 Institute for Marine Biosciences'),
(5770, 'https://ror.org/03t1jzs40', 'it', 1, 'https://ror.org/03t1jzs40 IRCCS Materno Infantile Burlo Garofolo Ospedale Infantile Burlo Garofolo'),
(5771, 'https://ror.org/021w7cz98', 'en', 1, 'https://ror.org/021w7cz98 Posnick Center for Facial Plastic Surgery'),
(5772, 'https://ror.org/009bsy196', 'en', 1, 'https://ror.org/009bsy196 Edinburgh Royal Infirmary'),
(5773, 'https://ror.org/04yy0dd12', 'en', 1, 'https://ror.org/04yy0dd12 Animal Diseases Research Institute'),
(5774, 'https://ror.org/04xwmf991', 'en', 1, 'https://ror.org/04xwmf991 Institute for Myeloma & Bone Cancer Research'),
(5775, 'https://ror.org/00cfm3753', 'no_lang_code', 1, 'https://ror.org/00cfm3753 ANI Pharmaceuticals (United States)'),
(5776, 'https://ror.org/0203rjz92', 'no_lang_code', 1, 'https://ror.org/0203rjz92 Insmed (United States)'),
(5777, 'https://ror.org/02z2dfb58', 'en', 1, 'https://ror.org/02z2dfb58 CeMM Research Center for Molecular Medicine'),
(5778, 'https://ror.org/01ga31z69', 'no_lang_code', 1, 'https://ror.org/01ga31z69 Cochlear (United States)'),
(5779, 'https://ror.org/00sda2672', 'en', 1, 'https://ror.org/00sda2672 Edward Via College of Osteopathic Medicine'),
(5780, 'https://ror.org/057n4xq60', 'en', 1, 'https://ror.org/057n4xq60 Institute of Higher Nervous Activity and Neurophysiology Федеральное государственное бюджетное учреждение науки Институт высшей нервной деятельности и нейрофизиологии Российской академии наук'),
(5781, 'https://ror.org/04xreqs31', 'en', 1, 'https://ror.org/04xreqs31 Institute for Research in Fundamental Sciences پژوهشگاه دانشهای بنیادی'),
(5782, 'https://ror.org/01b9qpe41', 'fr', 1, 'https://ror.org/01b9qpe41 Institut de Recherche en Opthalmologie'),
(5783, 'https://ror.org/02brfgh04', 'en', 1, 'https://ror.org/02brfgh04 Institute of Human Behaviour and Allied Sciences'),
(5784, 'https://ror.org/02358mx30', 'en', 1, 'https://ror.org/02358mx30 Institute for Safe Medication Practices'),
(5785, 'https://ror.org/00qed5764', 'en', 1, 'https://ror.org/00qed5764 Plant Biotechnology Institute'),
(5786, 'https://ror.org/03q50jp21', 'no_lang_code', 1, 'https://ror.org/03q50jp21 Colgate-Palmolive (United States)'),
(5787, 'https://ror.org/01se4r077', 'en', 1, 'https://ror.org/01se4r077 Institute of Immunological Engineering'),
(5788, 'https://ror.org/04dkns738', 'no_lang_code', 1, 'https://ror.org/04dkns738 Procter & Gamble (United States)'),
(5789, 'https://ror.org/03zd7qx32', 'cs', 1, 'https://ror.org/03zd7qx32 Institute for the Care of Mother and Child Ústav pro Péči o Matku a Dítě'),
(5790, 'https://ror.org/00d2y1254', 'en', 1, 'https://ror.org/00d2y1254 Misericordia University'),
(5791, 'https://ror.org/035h6e956', 'en', 1, 'https://ror.org/035h6e956 College of American Pathologists'),
(5792, 'https://ror.org/05gtpxs59', 'en', 1, 'https://ror.org/05gtpxs59 Aichi Prefectural Government 愛知県'),
(5793, 'https://ror.org/049tcsg76', 'en', 1, 'https://ror.org/049tcsg76 Institute for the Future'),
(5794, 'https://ror.org/04vvh7p27', 'no_lang_code', 1, 'https://ror.org/04vvh7p27 Eisai (Japan) エーザイ株式会社'),
(5795, 'https://ror.org/01dqayp38', 'en', 1, 'https://ror.org/01dqayp38 College of Family Physicians of Canada Le Collège des Médecins de Famille du Canada'),
(5796, 'https://ror.org/036p1cm16', 'en', 1, 'https://ror.org/036p1cm16 Karnataka Veterinary Animal and Fisheries Sciences University कर्नाटक वेटेरिनरी, मत्स्य पालन र पशु विज्ञान विश्वविद्यालय'),
(5797, 'https://ror.org/05b7p8k90', 'en', 1, 'https://ror.org/05b7p8k90 Instytut Immunologii i Terapii Doświadczalnej Ludwik Hirszfeld Institute of Immunology and Experimental Therapy'),
(5798, 'https://ror.org/026jzqm86', 'en', 1, 'https://ror.org/026jzqm86 Productive Rehabilitation Institute of Dallas for Ergonomics'),
(5799, 'https://ror.org/013t2n957', 'no_lang_code', 1, 'https://ror.org/013t2n957 Perrigo (United States)'),
(5800, 'https://ror.org/022nh6s34', 'en', 1, 'https://ror.org/022nh6s34 Institute of Transplantation Sciences'),
(5801, 'https://ror.org/02dqztz06', 'en', 1, 'https://ror.org/02dqztz06 Electric Power Research Institute'),
(5802, 'https://ror.org/02927dx12', 'en', 1, 'https://ror.org/02927dx12 Institute of Life Sciences'),
(5803, 'https://ror.org/04g5g7m78', 'en', 1, 'https://ror.org/04g5g7m78 Saskatchewan Disease Control Laboratory'),
(5804, 'https://ror.org/02v6vej93', 'en', 1, 'https://ror.org/02v6vej93 Institute of Liver and Biliary Sciences'),
(5805, 'https://ror.org/00psab413', 'no_lang_code', 1, 'https://ror.org/00psab413 Eli Lilly (United Kingdom)'),
(5806, 'https://ror.org/05p8kt313', 'no_lang_code', 1, 'https://ror.org/05p8kt313 Eli Lilly (Canada)'),
(5807, 'https://ror.org/02sepg748', 'en', 1, 'https://ror.org/02sepg748 Institute of Materials Research and Engineering'),
(5808, 'https://ror.org/05bts0a67', 'en', 1, 'https://ror.org/05bts0a67 National Academy of Medicine'),
(5809, 'https://ror.org/01y0mgq54', 'en', 1, 'https://ror.org/01y0mgq54 Elizabethtown College'),
(5810, 'https://ror.org/04erv1b58', 'en', 1, 'https://ror.org/04erv1b58 College of New Rochelle'),
(5811, 'https://ror.org/03yp8z857', 'en', 1, 'https://ror.org/03yp8z857 University of Missouri Health System'),
(5812, 'https://ror.org/05e5waw95', 'en', 1, 'https://ror.org/05e5waw95 Elmhurst College'),
(5813, 'https://ror.org/0416mbc73', 'en', 1, 'https://ror.org/0416mbc73 College of Physicians of Philadelphia'),
(5814, 'https://ror.org/0503gyy63', 'es', 1, 'https://ror.org/0503gyy63 Parque Tecnológico de la Salud'),
(5815, 'https://ror.org/00yy85n18', 'en', 1, 'https://ror.org/00yy85n18 College of St. Scholastica'),
(5816, 'https://ror.org/01g7qth32', 'en', 1, 'https://ror.org/01g7qth32 Institute of Minerals and Materials Technology'),
(5817, 'https://ror.org/002nf6q61', 'en', 1, 'https://ror.org/002nf6q61 Bandim Health Project Projecto de Saúde Bandim'),
(5818, 'https://ror.org/00hr6kp69', 'en', 1, 'https://ror.org/00hr6kp69 Emory Eye Center'),
(5819, 'https://ror.org/056mnr244', 'en', 1, 'https://ror.org/056mnr244 Punjab Institute of Cardiology'),
(5820, 'https://ror.org/03yshc124', 'en', 1, 'https://ror.org/03yshc124 Employee Benefit Research Institute'),
(5821, 'https://ror.org/00ns8qw04', 'en', 1, 'https://ror.org/00ns8qw04 Pushpawati Singhania Research Institute'),
(5822, 'https://ror.org/01a0xxp39', 'en', 1, 'https://ror.org/01a0xxp39 Institute of Basic Biological Problems Федеральное государственное бюджетное учреждение науки Институт фундаментальных проблем биологии РАН'),
(5823, 'https://ror.org/05vts7w23', 'en', 1, 'https://ror.org/05vts7w23 Nanaji Deshmukh Veterinary Science University'),
(5824, 'https://ror.org/04amahm38', 'no_lang_code', 1, 'https://ror.org/04amahm38 ENVIRON (United States)'),
(5825, 'https://ror.org/054sgna66', 'en', 1, 'https://ror.org/054sgna66 Institute of Biochemistry'),
(5826, 'https://ror.org/01rqyr540', 'en', 1, 'https://ror.org/01rqyr540 Institute of Molecular Biology and Genetics Інститут молекулярної біології і генетики'),
(5827, 'https://ror.org/03apz2q12', 'en', 1, 'https://ror.org/03apz2q12 Institute of Molecular Genetics Федеральное государственное бюджетное учреждение науки Институт молекулярной генетики Российской академии наук'),
(5828, 'https://ror.org/00akhwn95', 'en', 1, 'https://ror.org/00akhwn95 Queen Saovabha Memorial Institute'),
(5829, 'https://ror.org/05f8zcs55', 'en', 1, 'https://ror.org/05f8zcs55 Institute of Biocybernetics and Biomedical Engineering'),
(5830, 'https://ror.org/03xgnzp28', 'en', 1, 'https://ror.org/03xgnzp28 Colorado Center for Bone Research'),
(5831, 'https://ror.org/03hvygv29', 'en', 1, 'https://ror.org/03hvygv29 Quality of Life Research Center'),
(5832, 'https://ror.org/05t43jk30', 'en', 1, 'https://ror.org/05t43jk30 Colorado Center for Nursing Excellence'),
(5833, 'https://ror.org/03v2wv079', 'en', 1, 'https://ror.org/03v2wv079 Colorado Center for Reproductive Medicine'),
(5834, 'https://ror.org/019mfbd19', 'no_lang_code', 1, 'https://ror.org/019mfbd19 Quest Clinical Research (United States)'),
(5835, 'https://ror.org/0123zff28', 'en', 1, 'https://ror.org/0123zff28 EMO GVM Centro Cuore Columbus'),
(5836, 'https://ror.org/02c2e2v80', 'en', 1, 'https://ror.org/02c2e2v80 Institute of Biology and Immunology of Reproduction Институт по биология и имунология на размножаването'),
(5837, 'https://ror.org/040wrkp27', 'en', 1, 'https://ror.org/040wrkp27 Institute of Biomedical Chemistry Научно-исследовательский институт биомедицинской химии имени В.Н. Ореховича'),
(5838, 'https://ror.org/016hfp155', 'en', 1, 'https://ror.org/016hfp155 Institute of Biomedical Problems Федеральное государственное бюджетное учреждение науки Государственный научный центр Российской Федерации - Институт медико-биологических проблем Российской академии наук'),
(5839, 'https://ror.org/03xq12h43', 'en', 1, 'https://ror.org/03xq12h43 Institute of Noetic Sciences'),
(5840, 'https://ror.org/00w3hap50', 'pl', 1, 'https://ror.org/00w3hap50 Institute of Nuclear Chemistry and Technology Instytut Chemii i Techniki Jądrowej'),
(5841, 'https://ror.org/01dg04253', 'en', 1, 'https://ror.org/01dg04253 Institute of Bioorganic Chemistry Федеральное государственное бюджетное учреждение науки Институт биоорганической химии им. академиков М.М. Шемякина и Ю.А. Овчинникова Российской академии наук'),
(5842, 'https://ror.org/05qcjd272', 'no_lang_code', 1, 'https://ror.org/05qcjd272 Reynolds American (United States)'),
(5843, 'https://ror.org/01mq8sh52', 'en', 1, 'https://ror.org/01mq8sh52 Institute of Biophysics Федеральное государственное бюджетное учреждение науки Институт биофизики клетки Российской академии наук'),
(5844, 'https://ror.org/04tw91v16', 'es', 1, 'https://ror.org/04tw91v16 Institute of Nutrition and Food Hygiene Instituto de Nutricion e Higiene de los Alimentos'),
(5845, 'https://ror.org/03wzeak38', 'en', 1, 'https://ror.org/03wzeak38 Institute of Nutrition of Central America and Panama Instituto de Nutrición de Centro América y Panamá'),
(5846, 'https://ror.org/05mnq7966', 'es', 1, 'https://ror.org/05mnq7966 Complejo Asistencial Universitario de Palencia'),
(5847, 'https://ror.org/01mhgyv56', 'es', 1, 'https://ror.org/01mhgyv56 Complejo Hospitalario de Cáceres'),
(5848, 'https://ror.org/05952x620', 'en', 1, 'https://ror.org/05952x620 Institute of Occupational Safety Zavod za varstvo pri delu'),
(5849, 'https://ror.org/05vm76w92', 'en', 1, 'https://ror.org/05vm76w92 Biotechnology Research Institute 中国农业科学院生物技术研究所'),
(5850, 'https://ror.org/00w1epr46', 'en', 1, 'https://ror.org/00w1epr46 RG Stone Urology & Laparoscopy Hospital आरजी स्टोन यूरोलॉजी और लैप्रोस्कोपी अस्पताल'),
(5851, 'https://ror.org/0240rwx68', 'en', 1, 'https://ror.org/0240rwx68 Istituto di Neuroscienze Neuroscience Institute'),
(5852, 'https://ror.org/01c5r7j06', 'es', 1, 'https://ror.org/01c5r7j06 Instituto de Neurologia Y Neurocirugia'),
(5853, 'https://ror.org/01pewsd85', 'en', 1, 'https://ror.org/01pewsd85 Estonian Academy of Sciences'),
(5854, 'https://ror.org/04f1y4a64', 'es', 1, 'https://ror.org/04f1y4a64 Complejo Hospitalario de Ourense'),
(5855, 'https://ror.org/016cxc226', 'es', 1, 'https://ror.org/016cxc226 Complejo Hospitalario de Pontevedra'),
(5856, 'https://ror.org/00a0kf832', 'en', 1, 'https://ror.org/00a0kf832 F.D. Ovcharenko Institute of Biocolloidal Chemistry Інститут біоколоїдної хімії ім. Ф. Д. Овчаренка'),
(5857, 'https://ror.org/02er0sb79', 'en', 1, 'https://ror.org/02er0sb79 EuroEspes Biomedical Research Center'),
(5858, 'https://ror.org/01sb2fs58', 'en', 1, 'https://ror.org/01sb2fs58 Institute of Cardiology Федеральное государственное бюджетное научное учреждение Научно-исследовательский институт кардиологии'),
(5859, 'https://ror.org/01e17d143', 'en', 1, 'https://ror.org/01e17d143 Institute of Organic Chemistry Instytut Chemii Organicznej PAN'),
(5860, 'https://ror.org/00r5t2s16', 'en', 1, 'https://ror.org/00r5t2s16 Europdonor Foundation'),
(5861, 'https://ror.org/048rwjb21', 'en', 1, 'https://ror.org/048rwjb21 Eindhoven Cancer Registry'),
(5862, 'https://ror.org/05gkz0v31', 'it', 1, 'https://ror.org/05gkz0v31 Istituto Cantonale di Patologia'),
(5863, 'https://ror.org/027hwkg23', 'en', 1, 'https://ror.org/027hwkg23 Engelhardt Institute of Molecular Biology Федеральное государственное бюджетное учреждение науки Институт молекулярной биологии им. В.А. Энгельгардта Российской академии наук'),
(5864, 'https://ror.org/00vfty314', 'en', 1, 'https://ror.org/00vfty314 National Institute of Pathology'),
(5865, 'https://ror.org/05gbnpz65', 'en', 1, 'https://ror.org/05gbnpz65 Institute of Cell Biophysics Федеральное государственное бюджетное учреждение науки Институт биофизики клетки Российской академии наук'),
(5866, 'https://ror.org/039ekp273', 'en', 1, 'https://ror.org/039ekp273 Institute of Cellular and Intracellular Symbiosis Федеральное государственное бюджетное учреждение науки Институт биофизики клетки Российской академии наук'),
(5867, 'https://ror.org/0385es521', 'no_lang_code', 1, 'https://ror.org/0385es521 Boston Scientific (United States)'),
(5868, 'https://ror.org/00gmz2d02', 'en', 1, 'https://ror.org/00gmz2d02 Institute of Chemical Biology and Fundamental Medicine Федеральное государственное бюджетное учреждение науки Институт химической биологии и фундаментальной медицины Сибирского отделения Российской академии наук'),
(5869, 'https://ror.org/052r7yf45', 'en', 1, 'https://ror.org/052r7yf45 Institute of Chemical Kinetics and Combustion Федеральное государственное бюджетное учреждение науки Институт химической кинетики и горения им. В.В. Воеводского Сибирского отделения Российской академии наук'),
(5870, 'https://ror.org/00s9v1h75', 'en', 1, 'https://ror.org/00s9v1h75 European Centre for Disease Prevention and Control Europeiskt centrum för förebyggande och kontroll av sjukdomar'),
(5871, 'https://ror.org/017vd4789', 'no_lang_code', 1, 'https://ror.org/017vd4789 Compugen (Israel) קומפיוג''ן'),
(5872, 'https://ror.org/050prqy77', 'no_lang_code', 1, 'https://ror.org/050prqy77 Enzon Pharmaceuticals (United States)'),
(5873, 'https://ror.org/00nqqvk19', 'en', 1, 'https://ror.org/00nqqvk19 COMSATS University Islamabad کومسٹس انسٹیٹیوٹ آف انفارمیشن ٹیکنالوجی'),
(5874, 'https://ror.org/028mr0844', 'en', 1, 'https://ror.org/028mr0844 European Monitoring Centre for Drugs and Drug Addiction Observatório Europeu da Droga e da Toxicodependência'),
(5875, 'https://ror.org/0368qtc02', 'no_lang_code', 1, 'https://ror.org/0368qtc02 Nestlé (United States)'),
(5876, 'https://ror.org/029w5ya68', 'en', 1, 'https://ror.org/029w5ya68 European Neuroscience Institute Göttingen'),
(5877, 'https://ror.org/030yyf771', 'no_lang_code', 1, 'https://ror.org/030yyf771 Sun Pharma (India)'),
(5878, 'https://ror.org/00eg81h43', 'en', 1, 'https://ror.org/00eg81h43 Institute of Physiology and Pathology of Hearing'),
(5879, 'https://ror.org/01aptcd74', 'no_lang_code', 1, 'https://ror.org/01aptcd74 Sanofi (Canada)'),
(5880, 'https://ror.org/00ppb2x90', 'en', 1, 'https://ror.org/00ppb2x90 Concordia College - Minnesota'),
(5881, 'https://ror.org/034wxcc35', 'en', 1, 'https://ror.org/034wxcc35 European Organisation for Research and Treatment of Cancer Organisation européenne pour la recherche et le traitement du cancer'),
(5882, 'https://ror.org/01ek5c080', 'en', 1, 'https://ror.org/01ek5c080 Methodist Richardson Medical Center'),
(5883, 'https://ror.org/03prr0814', 'en', 1, 'https://ror.org/03prr0814 Defence Food Research Laboratory रक्षा खाद्य शोध प्रयोगशाला'),
(5884, 'https://ror.org/04fzbxp95', 'en', 1, 'https://ror.org/04fzbxp95 Defence Institute of Physiology and Allied Sciences कार्यकी और संबद्ध विज्ञान रक्षा संस्थान'),
(5885, 'https://ror.org/04sm60f26', 'en', 1, 'https://ror.org/04sm60f26 Defence Research and Development Establishment இந்திய பாதுகாப்பு ஆராய்ச்சி மேம்பாட்டு தொழிலகம்'),
(5886, 'https://ror.org/046yyq968', 'en', 1, 'https://ror.org/046yyq968 Defence Research Laboratory रक्षा अनुसंधान प्रयोगशाला'),
(5887, 'https://ror.org/036kqs922', 'en', 1, 'https://ror.org/036kqs922 Institute of Contemporary Psychoanalysis'),
(5888, 'https://ror.org/02kvnjb40', 'en', 1, 'https://ror.org/02kvnjb40 European School of Oncology'),
(5889, 'https://ror.org/01p3q4q56', 'en', 1, 'https://ror.org/01p3q4q56 Institute of Cytology Федеральное государственное бюджетное учреждение науки Институт цитологии Российской академии наук'),
(5890, 'https://ror.org/01htjvr84', 'en', 1, 'https://ror.org/01htjvr84 Institute of Primate Research'),
(5891, 'https://ror.org/02nknzn40', 'en', 1, 'https://ror.org/02nknzn40 Institute of Problems of Chemical Physics Институт проблем химической физики'),
(5892, 'https://ror.org/05hx1vp23', 'en', 1, 'https://ror.org/05hx1vp23 Institute of Cytology and Preventive Oncology'),
(5893, 'https://ror.org/0489f0s93', 'en', 1, 'https://ror.org/0489f0s93 Institute of Protein Research Федеральное государственное бюджетное учреждение науки Институт белка Российской академии наук'),
(5894, 'https://ror.org/0277xgb12', 'en', 1, 'https://ror.org/0277xgb12 Institute of Cytology and Genetics Федеральный исследовательский центр Институт цитологии и генетики Сибирского отделения Российской академии наук'),
(5895, 'https://ror.org/0145s0423', 'es', 1, 'https://ror.org/0145s0423 Foundation for the Fight against Pediatric Neurological Disease Fundación para la Lucha contra las Enfermedades Neurológicas de la Infancia'),
(5896, 'https://ror.org/0468k6j36', 'en', 1, 'https://ror.org/0468k6j36 Institute of Psychiatry and Neurology'),
(5897, 'https://ror.org/02q8vhr64', 'en', 1, 'https://ror.org/02q8vhr64 Kobe City College of Technology 神戸市立工業高等専門学校'),
(5898, 'https://ror.org/02f51rf24', 'no_lang_code', 1, 'https://ror.org/02f51rf24 Regeneron (United States)'),
(5899, 'https://ror.org/02j6cz137', 'en', 1, 'https://ror.org/02j6cz137 Institute of Dermatology สถาบันโรคผิวหนัง'),
(5900, 'https://ror.org/056za9j29', 'en', 1, 'https://ror.org/056za9j29 Korea Center for Disease Control and Prevention'),
(5901, 'https://ror.org/039k6f508', 'en', 1, 'https://ror.org/039k6f508 Korea Electronics Technology Institute'),
(5902, 'https://ror.org/04stdpt78', 'en', 1, 'https://ror.org/04stdpt78 Endokrinologický ústav Institute of Endocrinology'),
(5903, 'https://ror.org/05bjbww34', 'en', 1, 'https://ror.org/05bjbww34 Korea Forest Service');
INSERT INTO `rors` VALUES
(5904, 'https://ror.org/03jcpfa62', 'en', 1, 'https://ror.org/03jcpfa62 V.P. Komisarenko Institute of Endocrinology and Metabolism Інститут ендокринології та обміну речовин ім. В.П. Комісаренка'),
(5905, 'https://ror.org/05r88rg69', 'pl', 1, 'https://ror.org/05r88rg69 Instytut Sportu'),
(5906, 'https://ror.org/05akcvn61', 'en', 1, 'https://ror.org/05akcvn61 Korea National Tuberculosis Association'),
(5907, 'https://ror.org/04cn8d339', 'pl', 1, 'https://ror.org/04cn8d339 Krakowskie Centrum Rehabilitacji'),
(5908, 'https://ror.org/03npmaw37', 'de', 1, 'https://ror.org/03npmaw37 Wunschbaby Institut für Kinderwunsch'),
(5909, 'https://ror.org/04523n645', 'no_lang_code', 1, 'https://ror.org/04523n645 REALITY Publishing (United States)'),
(5910, 'https://ror.org/04anb9w92', 'en', 1, 'https://ror.org/04anb9w92 Kronos Longevity Research Institute'),
(5911, 'https://ror.org/05dkjfz60', 'en', 1, 'https://ror.org/05dkjfz60 Kumoh National Institute of Technology 금오공과대학교'),
(5912, 'https://ror.org/00b0t9z66', 'en', 1, 'https://ror.org/00b0t9z66 Vision Eye Institute'),
(5913, 'https://ror.org/03d0hdn85', 'en', 1, 'https://ror.org/03d0hdn85 Istanbul Eye Hospital İstanbul Göz Hastanesi'),
(5914, 'https://ror.org/04kcn9y49', 'en', 1, 'https://ror.org/04kcn9y49 Eye Institute of Utah'),
(5915, 'https://ror.org/008ebms37', 'en', 1, 'https://ror.org/008ebms37 Institute of Theoretical and Experimental Biophysics Федеральное государственное бюджетное учреждение науки Институт теоретической и экспериментальной биофизики Российской академии наук'),
(5916, 'https://ror.org/048pwcs59', 'en', 1, 'https://ror.org/048pwcs59 Regional Plant Resource Centre'),
(5917, 'https://ror.org/03t12ts08', 'en', 1, 'https://ror.org/03t12ts08 Kunming Institute of Precious Metals'),
(5918, 'https://ror.org/03257r210', 'fi', 1, 'https://ror.org/03257r210 Kuopion Liikuntalääketieteen Tutkimuslaitos'),
(5919, 'https://ror.org/01z6qpb13', 'pt', 1, 'https://ror.org/01z6qpb13 Faculdade de Ciências Médicas da Santa Casa de São Paulo'),
(5920, 'https://ror.org/0249jjk91', 'en', 1, 'https://ror.org/0249jjk91 Kuwait Cancer Control Center'),
(5921, 'https://ror.org/05a9hae73', 'es', 1, 'https://ror.org/05a9hae73 Instituto de Medicina Tropical “Pedro Kourí”'),
(5922, 'https://ror.org/03z23rf32', 'pl', 1, 'https://ror.org/03z23rf32 Instytut Ekspertyz Sądowych'),
(5923, 'https://ror.org/0431cb905', 'pl', 1, 'https://ror.org/0431cb905 Instytut Gruźlicy i Chorób Płuc'),
(5924, 'https://ror.org/01yq9ya27', 'en', 1, 'https://ror.org/01yq9ya27 Institute of Gene Biology Институт биологии гена'),
(5925, 'https://ror.org/05bkc5375', 'en', 1, 'https://ror.org/05bkc5375 National Institute for Interdisciplinary Science and Technology നാഷണൽ ഇൻസ്ററിററ്യൂട്ട് ഫോർ ഇൻറർ ഡിസിപ്ളിനറി സയൻസ് അൻഡ് ടെക്നോളജി, തിരുവനന്തപുരം'),
(5926, 'https://ror.org/028807987', 'en', 1, 'https://ror.org/028807987 Kyoto Research Park 京都リサーチパーク'),
(5927, 'https://ror.org/038mdqs58', 'en', 1, 'https://ror.org/038mdqs58 D.F. Chebotarev Institute of Gerontology Інститут геронтології ім. Д.Ф.Чеботарьова'),
(5928, 'https://ror.org/00pm9hx30', 'pt', 1, 'https://ror.org/00pm9hx30 Faculdade de Medicina de Marília Faculty of Medicine of Marília'),
(5929, 'https://ror.org/052e6h087', 'pt', 1, 'https://ror.org/052e6h087 Faculdade de Medicina de São José do Rio Preto Faculty of Medicine of São José do Rio Preto'),
(5930, 'https://ror.org/010pvqx55', 'en', 1, 'https://ror.org/010pvqx55 Danish Institute against Torture'),
(5931, 'https://ror.org/047s7ag77', 'pt', 1, 'https://ror.org/047s7ag77 Faculdade de Medicina do ABC'),
(5932, 'https://ror.org/030y83r80', 'en', 1, 'https://ror.org/030y83r80 Louisville Metabolic and Atherosclerosis Research Center'),
(5933, 'https://ror.org/059x8vm09', 'en', 1, 'https://ror.org/059x8vm09 Gujarat Technological University'),
(5934, 'https://ror.org/04ds6er14', 'pt', 1, 'https://ror.org/04ds6er14 Faculdade Evangélica do Paraná'),
(5935, 'https://ror.org/05p4qy423', 'pt', 1, 'https://ror.org/05p4qy423 Biological Institute Instituto Biológico'),
(5936, 'https://ror.org/05ggvgr57', 'no_lang_code', 1, 'https://ror.org/05ggvgr57 Repligen (United States)'),
(5937, 'https://ror.org/05nkqs567', 'en', 1, 'https://ror.org/05nkqs567 Reproductive Genetics Institute'),
(5938, 'https://ror.org/03nyxbd27', 'en', 1, 'https://ror.org/03nyxbd27 Reproductive Medicine Associates of New Jersey'),
(5939, 'https://ror.org/05476d639', 'es', 1, 'https://ror.org/05476d639 Instituto Cardiovascular de Buenos Aires'),
(5940, 'https://ror.org/01rdex851', 'no_lang_code', 1, 'https://ror.org/01rdex851 Arkema (United States)'),
(5941, 'https://ror.org/05dqmqj96', 'es', 1, 'https://ror.org/05dqmqj96 Instituto Chileno de Medicina Reproductiva'),
(5942, 'https://ror.org/04wbpm451', 'no_lang_code', 1, 'https://ror.org/04wbpm451 La Jolla Pharmaceutical (United States)'),
(5943, 'https://ror.org/02wkp0463', 'fr', 1, 'https://ror.org/02wkp0463 Service Régional Vaudois de Transfusion Sanguine'),
(5944, 'https://ror.org/03dpjp116', 'en', 1, 'https://ror.org/03dpjp116 Nagano College of Nursing 長野県看護大学'),
(5945, 'https://ror.org/01fptm710', 'pt', 1, 'https://ror.org/01fptm710 Instituto de Botânica'),
(5946, 'https://ror.org/00kv21794', 'en', 1, 'https://ror.org/00kv21794 Weil Institute of Critical Care Medicine'),
(5947, 'https://ror.org/050pxrb04', 'es', 1, 'https://ror.org/050pxrb04 Instituto de Cardiología y Cirugía Cardiovascular'),
(5948, 'https://ror.org/03xs15s33', 'es', 1, 'https://ror.org/03xs15s33 Comisión Honoraria de Lucha contra el cáncer'),
(5949, 'https://ror.org/00et2zw97', 'en', 1, 'https://ror.org/00et2zw97 Matsumoto Livestock Hygiene Service Center'),
(5950, 'https://ror.org/05tcd6p82', 'en', 1, 'https://ror.org/05tcd6p82 Shady Grove Fertility Center'),
(5951, 'https://ror.org/0138w4412', 'en', 1, 'https://ror.org/0138w4412 Russian Research Center for Molecular Diagnostics and Therapy'),
(5952, 'https://ror.org/00em27a94', 'pt', 1, 'https://ror.org/00em27a94 Instituto de Infectologia Emílio Ribas'),
(5953, 'https://ror.org/05stnhf77', 'en', 1, 'https://ror.org/05stnhf77 Shanghai Academy of Environmental Sciences 上海市环境科学研究院'),
(5954, 'https://ror.org/02avws951', 'no_lang_code', 1, 'https://ror.org/02avws951 Fresenius Medical Care (United States)'),
(5955, 'https://ror.org/01cyxs230', 'en', 1, 'https://ror.org/01cyxs230 Shanghai Blood Center'),
(5956, 'https://ror.org/059jg0v11', 'en', 1, 'https://ror.org/059jg0v11 Reitan Neuropsychology Laboratory'),
(5957, 'https://ror.org/01ty4bg86', 'en', 1, 'https://ror.org/01ty4bg86 Shanghai Cancer Institute'),
(5958, 'https://ror.org/01rtyyz33', 'pt', 1, 'https://ror.org/01rtyyz33 Instituto de Medicina Integral Professor Fernando Figueira'),
(5959, 'https://ror.org/02afj1h05', 'en', 1, 'https://ror.org/02afj1h05 Research Institute for Olympic Sports'),
(5960, 'https://ror.org/03dywwh47', 'es', 1, 'https://ror.org/03dywwh47 Instituto de la Visión'),
(5961, 'https://ror.org/02bkd7d61', 'en', 1, 'https://ror.org/02bkd7d61 Hokkaido Agricultural Research Center 北海道農業研究センター'),
(5962, 'https://ror.org/02fc7xd23', 'en', 1, 'https://ror.org/02fc7xd23 Shanghai Research Center for Acupuncture and Meridians 上海市针灸经络研究中心'),
(5963, 'https://ror.org/04pj26y96', 'pt', 1, 'https://ror.org/04pj26y96 Instituto de Moléstias Cardiovasculares'),
(5964, 'https://ror.org/04mxcvp24', 'es', 1, 'https://ror.org/04mxcvp24 Instituto de Neurología de Buenos Aires'),
(5965, 'https://ror.org/032w3wj13', 'en', 1, 'https://ror.org/032w3wj13 Research Institute for Production Development 般財団法人生産開発科学研究所'),
(5966, 'https://ror.org/04q0ntn52', 'pt', 1, 'https://ror.org/04q0ntn52 Instituto de Neurologia de Curitiba'),
(5967, 'https://ror.org/05etrx234', 'en', 1, 'https://ror.org/05etrx234 National AIDS Research Institute'),
(5968, 'https://ror.org/04y798z66', 'fr', 1, 'https://ror.org/04y798z66 Laboratoire National de Santé'),
(5969, 'https://ror.org/005avv954', 'en', 1, 'https://ror.org/005avv954 Shea Ear Clinic'),
(5970, 'https://ror.org/000ep5m48', 'es', 1, 'https://ror.org/000ep5m48 Instituto de Salud Pública de Navarra'),
(5971, 'https://ror.org/00p2bx870', 'en', 1, 'https://ror.org/00p2bx870 Environment Agency Abu Dhabi هيئة البيئة'),
(5972, 'https://ror.org/01p7p3890', 'pt', 1, 'https://ror.org/01p7p3890 Faculdade de Ciências Médicas de Minas Gerais'),
(5973, 'https://ror.org/04p00tq71', 'en', 1, 'https://ror.org/04p00tq71 Research Institute of Innovative Technology for the Earth 地球環境産業技術研究機構'),
(5974, 'https://ror.org/03hwje554', 'en', 1, 'https://ror.org/03hwje554 Sheffield Kidney Institute'),
(5975, 'https://ror.org/04xk4hz96', 'pt', 1, 'https://ror.org/04xk4hz96 Instituto Evandro Chagas'),
(5976, 'https://ror.org/0024cws33', 'en', 1, 'https://ror.org/0024cws33 Food Research Institute'),
(5977, 'https://ror.org/01h0ca774', 'en', 1, 'https://ror.org/01h0ca774 Research Institute of Ophthalmology'),
(5978, 'https://ror.org/02j3xat32', 'no_lang_code', 1, 'https://ror.org/02j3xat32 National Iranian Oil Company (Iran) پژوهشگاه صنعت نفت'),
(5979, 'https://ror.org/009mb6m53', 'pt', 1, 'https://ror.org/009mb6m53 Instituto H. Ellis'),
(5980, 'https://ror.org/00y1ttm22', 'no_lang_code', 1, 'https://ror.org/00y1ttm22 Merck (France)'),
(5981, 'https://ror.org/05j4prr94', 'es', 1, 'https://ror.org/05j4prr94 Instituto Médico La Floresta'),
(5982, 'https://ror.org/03pxsqj18', 'en', 1, 'https://ror.org/03pxsqj18 Hebrew Home of Greater Washington'),
(5983, 'https://ror.org/020wjcq07', 'en', 1, 'https://ror.org/020wjcq07 Shibaura Institute of Technology 芝浦工業大学'),
(5984, 'https://ror.org/038jnd853', 'en', 1, 'https://ror.org/038jnd853 Sher Fertility'),
(5985, 'https://ror.org/03xddgg98', 'en', 1, 'https://ror.org/03xddgg98 Instituto Mexicano del Seguro Social Mexican Social Security Institute'),
(5986, 'https://ror.org/01wqae691', 'it', 1, 'https://ror.org/01wqae691 Institute for Animal Production System in Mediterranean Environment Istituto per il Sistema Produzione Animale in Ambiente Mediterraneo'),
(5987, 'https://ror.org/04f03nc30', 'nl', 1, 'https://ror.org/04f03nc30 Adelante'),
(5988, 'https://ror.org/01v3bqg10', 'no_lang_code', 1, 'https://ror.org/01v3bqg10 Shionogi (Japan) 塩野義製薬'),
(5989, 'https://ror.org/03da3g825', 'no_lang_code', 1, 'https://ror.org/03da3g825 Shiseido Group (Japan) 株式会社資生堂'),
(5990, 'https://ror.org/011mar637', 'en', 1, 'https://ror.org/011mar637 National Cancer Institute of Thailand สถาบันมะเร็งแห่งชาติ'),
(5991, 'https://ror.org/03674y156', 'es', 1, 'https://ror.org/03674y156 Instituto Nacional de Enfermedades Neoplásicas'),
(5992, 'https://ror.org/03eqttr49', 'en', 1, 'https://ror.org/03eqttr49 Research Triangle Park Foundation'),
(5993, 'https://ror.org/017fh2655', 'es', 1, 'https://ror.org/017fh2655 Instituto Nacional de Enfermedades Respiratorias Instituto Nacional de Enfermedades Respiratorias Ismael Cosío Villegas'),
(5994, 'https://ror.org/01bawqf59', 'en', 1, 'https://ror.org/01bawqf59 Shonan Institute of Technology 湘南工科大学'),
(5995, 'https://ror.org/036z11b33', 'en', 1, 'https://ror.org/036z11b33 Shriners Hospitals for Children - Philadelphia'),
(5996, 'https://ror.org/01m178w43', 'en', 1, 'https://ror.org/01m178w43 Lahey Medical Center'),
(5997, 'https://ror.org/04679fh62', 'en', 1, 'https://ror.org/04679fh62 Lake Erie College of Osteopathic Medicine'),
(5998, 'https://ror.org/03sqq2g46', 'en', 1, 'https://ror.org/03sqq2g46 Retina Foundation of the Southwest'),
(5999, 'https://ror.org/04r0hqv79', 'en', 1, 'https://ror.org/04r0hqv79 Rhode Island Spine Center'),
(6000, 'https://ror.org/033fn9j44', 'en', 1, 'https://ror.org/033fn9j44 Shriners Hospitals for Children - Chicago'),
(6001, 'https://ror.org/00k7h5c65', 'es', 1, 'https://ror.org/00k7h5c65 Instituto Nacional de Investigaciones Nucleares'),
(6002, 'https://ror.org/03pjgt842', 'en', 1, 'https://ror.org/03pjgt842 Shriners for Children Medical Center - Pasadena'),
(6003, 'https://ror.org/02gffk937', 'en', 1, 'https://ror.org/02gffk937 Shriners Hospitals for Children - Erie'),
(6004, 'https://ror.org/03jg6sy07', 'en', 1, 'https://ror.org/03jg6sy07 Shriners Hospitals for Children - Honolulu'),
(6005, 'https://ror.org/01t6qh616', 'en', 1, 'https://ror.org/01t6qh616 Shriners Hospitals for Children - Spokane'),
(6006, 'https://ror.org/038tp0t62', 'en', 1, 'https://ror.org/038tp0t62 Las Vegas Institute'),
(6007, 'https://ror.org/03zzyhb42', 'en', 1, 'https://ror.org/03zzyhb42 Laser and Skin Surgery Center of New York'),
(6008, 'https://ror.org/024hqjk04', 'es', 1, 'https://ror.org/024hqjk04 Administración Nacional de Laboratorios e Institutos de Salud'),
(6009, 'https://ror.org/00vr3xw76', 'en', 1, 'https://ror.org/00vr3xw76 Laser and Skin Surgery Center of Indiana'),
(6010, 'https://ror.org/05k637k59', 'es', 1, 'https://ror.org/05k637k59 Instituto Nacional de Neurología y Neurocirugía National Institute of Neurology and Neurosurgery'),
(6011, 'https://ror.org/02xm4cz36', 'en', 1, 'https://ror.org/02xm4cz36 LaserVision'),
(6012, 'https://ror.org/0289ggs32', 'es', 1, 'https://ror.org/0289ggs32 Administracion de los Servicios de Salud del Estado'),
(6013, 'https://ror.org/02vxngq63', 'en', 1, 'https://ror.org/02vxngq63 Latvian Academy of Sciences'),
(6014, 'https://ror.org/01gckhp53', 'en', 1, 'https://ror.org/01gckhp53 Latvian Biomedical Research and Study Centre Latvijas Biomedicīnas Pētījumu un Studiju Centrs'),
(6015, 'https://ror.org/01a92vw29', 'lv', 1, 'https://ror.org/01a92vw29 Latvian Institute of Organic Synthesis Latvijas Organiskās Sintēzes Institūts'),
(6016, 'https://ror.org/00xmtrb24', 'no_lang_code', 1, 'https://ror.org/00xmtrb24 LC Resources (United States)'),
(6017, 'https://ror.org/03mcw4334', 'es', 1, 'https://ror.org/03mcw4334 Direccion General de Epidemiologia'),
(6018, 'https://ror.org/00ctdh943', 'es', 1, 'https://ror.org/00ctdh943 Instituto Nacional de Perinatología National Institute of Perinatología Isidro Espinosa de los Reyes'),
(6019, 'https://ror.org/04nw8w376', 'no_lang_code', 1, 'https://ror.org/04nw8w376 Leatherhead Food Research'),
(6020, 'https://ror.org/05nda1d55', 'en', 1, 'https://ror.org/05nda1d55 Sichuan Center for Disease Control and Prevention 四川省疾病预防控制中心'),
(6021, 'https://ror.org/03734cd59', 'es', 1, 'https://ror.org/03734cd59 Instituto Nacional de Rehabilitación National Institute of Rehabilitation'),
(6022, 'https://ror.org/01z142p52', 'es', 1, 'https://ror.org/01z142p52 Instituto Nacional de Rehabilitación Psicofísica'),
(6023, 'https://ror.org/03gx6zj11', 'es', 1, 'https://ror.org/03gx6zj11 Instituto Nacional de Salud'),
(6024, 'https://ror.org/03hq46410', 'pt', 1, 'https://ror.org/03hq46410 Instituto Nacional de Saúde'),
(6025, 'https://ror.org/04axb7e79', 'no_lang_code', 1, 'https://ror.org/04axb7e79 Siemens (United States)'),
(6026, 'https://ror.org/02meqm098', 'en', 1, 'https://ror.org/02meqm098 National Center for Biotechnology Information'),
(6027, 'https://ror.org/0530d6n45', 'en', 1, 'https://ror.org/0530d6n45 National Center for Clinical Laboratories'),
(6028, 'https://ror.org/059kzn841', 'en', 1, 'https://ror.org/059kzn841 Rocky Mountain MS Center'),
(6029, 'https://ror.org/01x64pv72', 'en', 1, 'https://ror.org/01x64pv72 National Center for Environmental Assessment (EPA)'),
(6030, 'https://ror.org/00t0z3q71', 'es', 1, 'https://ror.org/00t0z3q71 Hospital del Tórax Instituto Nacional del Tórax'),
(6031, 'https://ror.org/03jkz2y73', 'en', 1, 'https://ror.org/03jkz2y73 Leicester Royal Infirmary'),
(6032, 'https://ror.org/05drnnd98', 'en', 1, 'https://ror.org/05drnnd98 National Center for Epidemiology Országos Epidemiológiai Központ'),
(6033, 'https://ror.org/01p4cne93', 'en', 1, 'https://ror.org/01p4cne93 National Center for Genome Resources'),
(6034, 'https://ror.org/009vh5d61', 'en', 1, 'https://ror.org/009vh5d61 Rollins College'),
(6035, 'https://ror.org/04462nt90', 'no_lang_code', 1, 'https://ror.org/04462nt90 Ross Laboratories (United States)'),
(6036, 'https://ror.org/0322xet82', 'en', 1, 'https://ror.org/0322xet82 National Center for Healthy Housing'),
(6037, 'https://ror.org/05je2tx78', 'en', 1, 'https://ror.org/05je2tx78 National Center for Immunization and Respiratory Diseases'),
(6038, 'https://ror.org/0524z5q72', 'en', 1, 'https://ror.org/0524z5q72 Sindh Institute of Urology and Transplantation'),
(6039, 'https://ror.org/05rpsf244', 'en', 1, 'https://ror.org/05rpsf244 Israel Oceanographic and Limnological Research'),
(6040, 'https://ror.org/04f49ff35', 'en', 1, 'https://ror.org/04f49ff35 National Center for Nanoscience and Technology 国家纳米科学中心'),
(6041, 'https://ror.org/03zxtdc90', 'es', 1, 'https://ror.org/03zxtdc90 Centro Nacional de Investigaciones Científicas'),
(6042, 'https://ror.org/029nvrb94', 'en', 1, 'https://ror.org/029nvrb94 Singapore National Eye Center'),
(6043, 'https://ror.org/05vv5ch57', 'en', 1, 'https://ror.org/05vv5ch57 National Center of Infectious and Parasitic Diseases Националният център по заразни и паразитни болести'),
(6044, 'https://ror.org/00gs35582', 'en', 1, 'https://ror.org/00gs35582 Valencian Infertility Institute'),
(6045, 'https://ror.org/00kx3fw88', 'es', 1, 'https://ror.org/00kx3fw88 Instituto Valenciano de Investigaciones Agrarias'),
(6046, 'https://ror.org/04tv1fa62', 'fr', 1, 'https://ror.org/04tv1fa62 Centre National de la Médecine et des Sciences des Sports'),
(6047, 'https://ror.org/04gcgef90', 'no_lang_code', 1, 'https://ror.org/04gcgef90 Levin Group (United States)'),
(6048, 'https://ror.org/04pvxsf55', 'en', 1, 'https://ror.org/04pvxsf55 Lexington Clinic'),
(6049, 'https://ror.org/02g82g140', 'es', 1, 'https://ror.org/02g82g140 Instituto Zaldivar'),
(6050, 'https://ror.org/03yb78887', 'en', 1, 'https://ror.org/03yb78887 Specialised Hospital for Active Treatment of Oncology Специализираната Болница за Активно лечение по Онкология'),
(6051, 'https://ror.org/0457d9w72', 'en', 1, 'https://ror.org/0457d9w72 National Cancer Center of Georgia'),
(6052, 'https://ror.org/00gbb9377', 'en', 1, 'https://ror.org/00gbb9377 National Center on Institutions and Alternatives'),
(6053, 'https://ror.org/04x436h61', 'en', 1, 'https://ror.org/04x436h61 Skin and Cancer Foundation'),
(6054, 'https://ror.org/0175ya539', 'en', 1, 'https://ror.org/0175ya539 Koninklijke Kentalis Royal Dutch Kentalis'),
(6055, 'https://ror.org/00j9wfd65', 'no_lang_code', 1, 'https://ror.org/00j9wfd65 KGL Skin Study Center'),
(6056, 'https://ror.org/055yerj39', 'en', 1, 'https://ror.org/055yerj39 Roy Castle Lung Cancer Foundation'),
(6057, 'https://ror.org/02v0mj573', 'en', 1, 'https://ror.org/02v0mj573 Royal Albert Edward Infirmary'),
(6058, 'https://ror.org/034nvrd87', 'en', 1, 'https://ror.org/034nvrd87 Royal Berkshire NHS Foundation Trust'),
(6059, 'https://ror.org/051ae7717', 'nl', 1, 'https://ror.org/051ae7717 Stichting Epilepsie Instellingen Nederland'),
(6060, 'https://ror.org/00kn43d12', 'en', 1, 'https://ror.org/00kn43d12 National Centre for Research'),
(6061, 'https://ror.org/02k5t6c64', 'en', 1, 'https://ror.org/02k5t6c64 PRA Health Sciences'),
(6062, 'https://ror.org/021a7d287', 'en', 1, 'https://ror.org/021a7d287 Royal College of Surgeons of Edinburgh'),
(6063, 'https://ror.org/05f21rh68', 'en', 1, 'https://ror.org/05f21rh68 Lincoln Land Community College'),
(6064, 'https://ror.org/05tdnf273', 'en', 1, 'https://ror.org/05tdnf273 Insurance Institute for Highway Safety'),
(6065, 'https://ror.org/01dmjt679', 'en', 1, 'https://ror.org/01dmjt679 Roessingh Research and Development'),
(6066, 'https://ror.org/03zsdhz84', 'no_lang_code', 1, 'https://ror.org/03zsdhz84 LabCorp (United States)'),
(6067, 'https://ror.org/03kr30n36', 'en', 1, 'https://ror.org/03kr30n36 Manchester Royal Infirmary'),
(6068, 'https://ror.org/056nq0726', 'en', 1, 'https://ror.org/056nq0726 Royal Lancaster Infirmary'),
(6069, 'https://ror.org/04770s302', 'en', 1, 'https://ror.org/04770s302 Centro Internacional de Restauración Neurológica International Center of Neurologic Restoration'),
(6070, 'https://ror.org/03v351c14', 'en', 1, 'https://ror.org/03v351c14 International Center for Research on Women'),
(6071, 'https://ror.org/04aty2659', 'en', 1, 'https://ror.org/04aty2659 Moscow State University of Fine Chemical Technologies Московский государственный университет тонких химических технологий имени М. В. Ломоносова'),
(6072, 'https://ror.org/027tbp210', 'en', 1, 'https://ror.org/027tbp210 Centre for Life'),
(6073, 'https://ror.org/03ap5bg83', 'en', 1, 'https://ror.org/03ap5bg83 National Dairy Research Institute राष्ट्रीय डेरी अनुसंधान संस्थान'),
(6074, 'https://ror.org/01p19k166', 'en', 1, 'https://ror.org/01p19k166 Royal Victoria Infirmary'),
(6075, 'https://ror.org/0107hzb54', 'en', 1, 'https://ror.org/0107hzb54 International Craniofacial Institute'),
(6076, 'https://ror.org/02exhb815', 'no_lang_code', 1, 'https://ror.org/02exhb815 Royan Institute'),
(6077, 'https://ror.org/0541a3n79', 'en', 1, 'https://ror.org/0541a3n79 International Crops Research Institute for the Semi-Arid Tropics'),
(6078, 'https://ror.org/05e456743', 'en', 1, 'https://ror.org/05e456743 Lovelace Clinic Foundation Research'),
(6079, 'https://ror.org/02yfw7119', 'fr', 1, 'https://ror.org/02yfw7119 Fondation de Rothschild'),
(6080, 'https://ror.org/021r5ns39', 'en', 1, 'https://ror.org/021r5ns39 National Environmental Engineering Research Institute'),
(6081, 'https://ror.org/001ykb961', 'en', 1, 'https://ror.org/001ykb961 National Evolutionary Synthesis Center'),
(6082, 'https://ror.org/00j49rw24', 'en', 1, 'https://ror.org/00j49rw24 LRS Institute of Tuberculosis and Respiratory Diseases'),
(6083, 'https://ror.org/03pxz9p87', 'en', 1, 'https://ror.org/03pxz9p87 Institut International de Recherche sur les Politiques Alimentaires Instituto Internacional de Investigación sobre Políticas Alimentarias International Food Policy Research Institute'),
(6084, 'https://ror.org/023j1kv28', 'en', 1, 'https://ror.org/023j1kv28 International Hearing Foundation'),
(6085, 'https://ror.org/0178xk096', 'en', 1, 'https://ror.org/0178xk096 International Institute for Population Sciences'),
(6086, 'https://ror.org/05d9ms657', 'es', 1, 'https://ror.org/05d9ms657 Sociedad Española de Cardiología'),
(6087, 'https://ror.org/00kzzgw26', 'en', 1, 'https://ror.org/00kzzgw26 Kennedy Center'),
(6088, 'https://ror.org/01d3e8y10', 'en', 1, 'https://ror.org/01d3e8y10 International Institute of Anthropology'),
(6089, 'https://ror.org/02b1qqv62', 'en', 1, 'https://ror.org/02b1qqv62 National Food Administration'),
(6090, 'https://ror.org/0407e4e37', 'pl', 1, 'https://ror.org/0407e4e37 Instytut Zywnosci Zywienia National Food and Nutrition Institute'),
(6091, 'https://ror.org/00by9f077', 'en', 1, 'https://ror.org/00by9f077 Food Research Institute 食品総合研究所'),
(6092, 'https://ror.org/0556kt608', 'en', 1, 'https://ror.org/0556kt608 Institut International d''Agriculture Tropicale International Institute of Tropical Agriculture'),
(6093, 'https://ror.org/04vpcaw67', 'en', 1, 'https://ror.org/04vpcaw67 International Water Management Institute'),
(6094, 'https://ror.org/01rsgws32', 'en', 1, 'https://ror.org/01rsgws32 Lycoming College'),
(6095, 'https://ror.org/02bm6g618', 'en', 1, 'https://ror.org/02bm6g618 Russell Sage College'),
(6096, 'https://ror.org/030n38z97', 'en', 1, 'https://ror.org/030n38z97 International Laser Center'),
(6097, 'https://ror.org/03a1yfb59', 'en', 1, 'https://ror.org/03a1yfb59 Lynchburg Family Medicine'),
(6098, 'https://ror.org/049ayz521', 'en', 1, 'https://ror.org/049ayz521 South African Brain Research Institute'),
(6099, 'https://ror.org/02vfnsn98', 'en', 1, 'https://ror.org/02vfnsn98 Lynn Health Science Institute'),
(6100, 'https://ror.org/011ssy811', 'en', 1, 'https://ror.org/011ssy811 International Prevention Research Institute'),
(6101, 'https://ror.org/03dy10t98', 'en', 1, 'https://ror.org/03dy10t98 National Geophysical Research Institute राष्ट्रीय भूभौतिकीय अनुसंधान संस्थान జాతీయ భూభౌతిక పరిశోధనా సంస్థ നാഷണൽ ജിയോഫിസിക്കൽ റിസർച്ച് ഇൻസ്റ്റിറ്റ്യൂട്ട്,ഹൈദരാബാദ്'),
(6102, 'https://ror.org/003jsdw96', 'en', 1, 'https://ror.org/003jsdw96 Macedonian Academy of Sciences and Arts'),
(6103, 'https://ror.org/0421jm542', 'no_lang_code', 1, 'https://ror.org/0421jm542 MagMutual (United States)'),
(6104, 'https://ror.org/0593p4448', 'en', 1, 'https://ror.org/0593p4448 International Rice Research Institute'),
(6105, 'https://ror.org/05ftwc327', 'en', 1, 'https://ror.org/05ftwc327 International Tomography Center Федеральное государственное бюджетное учреждение науки Институт Международный томографический центр Сибирского отделения Российской академии наук'),
(6106, 'https://ror.org/02pnmd628', 'en', 1, 'https://ror.org/02pnmd628 American Foundation for Donation and Transplantation'),
(6107, 'https://ror.org/033c6ba10', 'en', 1, 'https://ror.org/033c6ba10 Southcentral Foundation'),
(6108, 'https://ror.org/021g0dt18', 'no_lang_code', 1, 'https://ror.org/021g0dt18 International Trypanotolerance Centre'),
(6109, 'https://ror.org/03tebt685', 'en', 1, 'https://ror.org/03tebt685 Malawi-Liverpool-Wellcome Trust Clinical Research Programme'),
(6110, 'https://ror.org/0220wzg80', 'no_lang_code', 1, 'https://ror.org/0220wzg80 South Australian Water Corporation'),
(6111, 'https://ror.org/05megwx07', 'en', 1, 'https://ror.org/05megwx07 Southern California Orthopedic Institute'),
(6112, 'https://ror.org/00m79dm66', 'en', 1, 'https://ror.org/00m79dm66 Iona College'),
(6113, 'https://ror.org/02xrwdh93', 'en', 1, 'https://ror.org/02xrwdh93 Southern College of Optometry'),
(6114, 'https://ror.org/054vepm81', 'en', 1, 'https://ror.org/054vepm81 Southern Colorado Clinic'),
(6115, 'https://ror.org/009h0v784', 'it', 1, 'https://ror.org/009h0v784 Fondazione Istituto Neurologico Nazionale Casimiro Mondino'),
(6116, 'https://ror.org/05m5j6s60', 'en', 1, 'https://ror.org/05m5j6s60 University of Saint Joseph Université saint joseph'),
(6117, 'https://ror.org/05tzq2c96', 'it', 1, 'https://ror.org/05tzq2c96 Centro Neurolesi Bonino Pulejo'),
(6118, 'https://ror.org/03ckh6215', 'en', 1, 'https://ror.org/03ckh6215 National Institute of Genetic Engineering and Biotechnology پژوهشگاه ملي مهندسي ژنتيك و زيست فناوري'),
(6119, 'https://ror.org/00j0kxp54', 'en', 1, 'https://ror.org/00j0kxp54 Russian Academy of Natural Sciences'),
(6120, 'https://ror.org/00kv87w35', 'it', 1, 'https://ror.org/00kv87w35 Istituto Nazionale per le Malattie Infettive Lazzaro Spallanzani'),
(6121, 'https://ror.org/05w1q1c88', 'it', 1, 'https://ror.org/05w1q1c88 Policlinico San Matteo Fondazione'),
(6122, 'https://ror.org/02aqv1x10', 'en', 1, 'https://ror.org/02aqv1x10 Marie Curie'),
(6123, 'https://ror.org/055kym783', 'en', 1, 'https://ror.org/055kym783 Southern New England Rehabilitation Center'),
(6124, 'https://ror.org/003nnep52', 'pt', 1, 'https://ror.org/003nnep52 Irmandade da Santa Casa de Misericórdia de São Paulo'),
(6125, 'https://ror.org/04742vj55', 'en', 1, 'https://ror.org/04742vj55 Cardiff Royal Infirmary'),
(6126, 'https://ror.org/01c7jsk34', 'en', 1, 'https://ror.org/01c7jsk34 National Institute for Pharmaceutical Research and Development'),
(6127, 'https://ror.org/05cajf655', 'en', 1, 'https://ror.org/05cajf655 Southwest College of Naturopathic Medicine & Health Sciences'),
(6128, 'https://ror.org/00ja2ye75', 'en', 1, 'https://ror.org/00ja2ye75 Salisbury NHS Foundation Trust'),
(6129, 'https://ror.org/01z4n2m85', 'it', 1, 'https://ror.org/01z4n2m85 Istituto Scientifico Italiano Colonna Vertebrale Italian Scientific Institute for the Spine'),
(6130, 'https://ror.org/05w07vs91', 'it', 1, 'https://ror.org/05w07vs91 Istituti Ospitalieri di Cremona'),
(6131, 'https://ror.org/01zzqep61', 'it', 1, 'https://ror.org/01zzqep61 Istituto di Tipizzazione Tissutale e Problemi della Dialisi'),
(6132, 'https://ror.org/04x1fkv72', 'no_lang_code', 1, 'https://ror.org/04x1fkv72 Istituto De Angeli (Italy)'),
(6133, 'https://ror.org/02s5xnv22', 'en', 1, 'https://ror.org/02s5xnv22 Spinal Diagnostics and Treatment Center'),
(6134, 'https://ror.org/03j3jr069', 'no_lang_code', 1, 'https://ror.org/03j3jr069 DSM (United States)'),
(6135, 'https://ror.org/02b5mfy68', 'it', 1, 'https://ror.org/02b5mfy68 Istituto Dermopatico dell''Immacolata'),
(6136, 'https://ror.org/00j707644', 'it', 1, 'https://ror.org/00j707644 Azienda Ospedaliera San Camillo-Forlanini Ospedale Carlo Forlanini'),
(6137, 'https://ror.org/03bcvkf46', 'en', 1, 'https://ror.org/03bcvkf46 Fleet Science Center'),
(6138, 'https://ror.org/054ye0e45', 'it', 1, 'https://ror.org/054ye0e45 Istituto di Analisi dei Sistemi ed Informatica Antonio Ruberti'),
(6139, 'https://ror.org/01fk4js58', 'en', 1, 'https://ror.org/01fk4js58 Sacred Space Foundation'),
(6140, 'https://ror.org/01y3v6r39', 'en', 1, 'https://ror.org/01y3v6r39 Spine Institute of Louisiana'),
(6141, 'https://ror.org/03zhmy467', 'en', 1, 'https://ror.org/03zhmy467 San Gallicano Hospital'),
(6142, 'https://ror.org/04b1sh213', 'en', 1, 'https://ror.org/04b1sh213 National Institute for Viral Disease Control and Prevention'),
(6143, 'https://ror.org/01dy2q607', 'it', 1, 'https://ror.org/01dy2q607 Istituto di Biomedicina e di Immunologia Molecolare Alberto Monroy'),
(6144, 'https://ror.org/03qpd8w66', 'it', 1, 'https://ror.org/03qpd8w66 Institute of Molecular Genetics Luigi Luca Cavalli-Sforza Istituto di Genetica Molecolare'),
(6145, 'https://ror.org/04t24x986', 'no_lang_code', 1, 'https://ror.org/04t24x986 Novartis (Austria)'),
(6146, 'https://ror.org/000vy8681', 'en', 1, 'https://ror.org/000vy8681 National Institute of Agricultural Science and Technology'),
(6147, 'https://ror.org/00h7p4v21', 'en', 1, 'https://ror.org/00h7p4v21 Sri Jayadeva Institute of Cardiovascular Sciences and Research'),
(6148, 'https://ror.org/00jx6qy10', 'en', 1, 'https://ror.org/00jx6qy10 Maulana Azad Institute of Dental Sciences'),
(6149, 'https://ror.org/01t413275', 'en', 1, 'https://ror.org/01t413275 Sri Ramakrishna Institute of Paramedical Sciences'),
(6150, 'https://ror.org/01a0veq54', 'no_lang_code', 1, 'https://ror.org/01a0veq54 Sri Gokulam Hospital'),
(6151, 'https://ror.org/04ek3zb20', 'de', 1, 'https://ror.org/04ek3zb20 Max Grundig Hospital Max Grundig Klinik'),
(6152, 'https://ror.org/022jc0g24', 'en', 1, 'https://ror.org/022jc0g24 Max Planck Institute for Developmental Biology Max-Planck-Institut für Entwicklungsbiologie'),
(6153, 'https://ror.org/00xkqe770', 'en', 1, 'https://ror.org/00xkqe770 Epsom and St Helier University Hospitals NHS Trust'),
(6154, 'https://ror.org/04zbejj85', 'en', 1, 'https://ror.org/04zbejj85 Ibaraki Prefectural Livestock Center 畜産センター/茨城県'),
(6155, 'https://ror.org/044g3zk14', 'en', 1, 'https://ror.org/044g3zk14 Max Planck Institute for Plant Breeding Research Max-Planck-Institut für Pflanzenzüchtungsforschung'),
(6156, 'https://ror.org/026nmvv73', 'en', 1, 'https://ror.org/026nmvv73 Max Planck Institute for Biological Cybernetics Max-Planck-Institut für Biologische Kybernetik'),
(6157, 'https://ror.org/04xx1tc24', 'en', 1, 'https://ror.org/04xx1tc24 Max Planck Institute for Biology of Ageing Max-Planck-Institut für Biologie des Alterns'),
(6158, 'https://ror.org/032msy923', 'no_lang_code', 1, 'https://ror.org/032msy923 Santen (Japan) 参天製薬株式会社'),
(6159, 'https://ror.org/0424g0k78', 'it', 1, 'https://ror.org/0424g0k78 Istituto Giannina Gaslini'),
(6160, 'https://ror.org/02h1nk258', 'en', 1, 'https://ror.org/02h1nk258 Max Planck Institute for Brain Research Max-Planck-Institut für Hirnforschung'),
(6161, 'https://ror.org/01c997669', 'en', 1, 'https://ror.org/01c997669 Max Planck Institute for Chemical Physics of Solids Max-Planck-Institut für Chemische Physik Fester Stoffe'),
(6162, 'https://ror.org/02hes1t22', 'no_lang_code', 1, 'https://ror.org/02hes1t22 Sapporo Holdings (Japan) サッポロホールディングス'),
(6163, 'https://ror.org/03q2s1r54', 'en', 1, 'https://ror.org/03q2s1r54 National Institute of Ayurveda राष्ट्रीय आयुर्विज्ञान संस्थान'),
(6164, 'https://ror.org/014t21j89', 'en', 1, 'https://ror.org/014t21j89 Sarah Cannon'),
(6165, 'https://ror.org/0087djs12', 'en', 1, 'https://ror.org/0087djs12 Max Planck Institute for Dynamics and Self-Organization Max-Planck-Institut für Dynamik und Selbstorganisation'),
(6166, 'https://ror.org/02a33b393', 'en', 1, 'https://ror.org/02a33b393 Max Planck Institute for Evolutionary Anthropology Max-Planck-Institut für Evolutionäre Anthropologie'),
(6167, 'https://ror.org/012a41834', 'en', 1, 'https://ror.org/012a41834 National Institute of Biological Resources'),
(6168, 'https://ror.org/016chgx50', 'no_lang_code', 1, 'https://ror.org/016chgx50 Sasaki Institute 佐々木研究所'),
(6169, 'https://ror.org/0387jng26', 'en', 1, 'https://ror.org/0387jng26 Max Planck Institute for Human Cognitive and Brain Sciences Max-Planck-Institut für Kognitions- und Neurowissenschaften'),
(6170, 'https://ror.org/005df7g82', 'en', 1, 'https://ror.org/005df7g82 Saudi Center for Organ Transplantation'),
(6171, 'https://ror.org/01w19ak89', 'en', 1, 'https://ror.org/01w19ak89 Max Planck Institute for Informatics Max-Planck-Institut für Informatik'),
(6172, 'https://ror.org/02385fa51', 'en', 1, 'https://ror.org/02385fa51 Max Planck Institute for Marine Microbiology Max-Planck-Institut für Marine Mikrobiologie'),
(6173, 'https://ror.org/00gpcjc06', 'no_lang_code', 1, 'https://ror.org/00gpcjc06 Malesci (Italy)'),
(6174, 'https://ror.org/05b8d3w18', 'en', 1, 'https://ror.org/05b8d3w18 Max Planck Institute of Molecular Cell Biology and Genetics Max-Planck-Institut für Molekulare Zellbiologie und Genetik'),
(6175, 'https://ror.org/03ate3e03', 'en', 1, 'https://ror.org/03ate3e03 Max Planck Institute for Molecular Genetics Max-Planck-Institut für Molekulare Genetik'),
(6176, 'https://ror.org/00yd9m083', 'it', 1, 'https://ror.org/00yd9m083 Istituto Nazionale di Ricerca per gli Alimenti e la Nutrizione'),
(6177, 'https://ror.org/00cpb6264', 'it', 1, 'https://ror.org/00cpb6264 Istituto Neurologico Mediterraneo'),
(6178, 'https://ror.org/02rthxz10', 'en', 1, 'https://ror.org/02rthxz10 St Vincent''s Clinic'),
(6179, 'https://ror.org/04dq56617', 'en', 1, 'https://ror.org/04dq56617 Max Planck Institute of Psychiatry Max-Planck-Institut für Psychiatrie'),
(6180, 'https://ror.org/01pwbmp71', 'en', 1, 'https://ror.org/01pwbmp71 Schizophrenia Research Foundation'),
(6181, 'https://ror.org/04n7py080', 'en', 1, 'https://ror.org/04n7py080 National Institute for Mathematical Sciences'),
(6182, 'https://ror.org/04wadq306', 'en', 1, 'https://ror.org/04wadq306 Candiolo Cancer Institute Istituto di Candiolo'),
(6183, 'https://ror.org/0492sjc74', 'en', 1, 'https://ror.org/0492sjc74 Max Planck Institute for the History of Science Max-Planck-Institut für Wissenschaftsgeschichte'),
(6184, 'https://ror.org/01220jp31', 'it', 1, 'https://ror.org/01220jp31 IRCCS Policlinico San Donato'),
(6185, 'https://ror.org/01bf9rw71', 'en', 1, 'https://ror.org/01bf9rw71 Max Planck Institute for the Physics of Complex Systems Max-Planck-Institut für Physik Komplexer Systeme'),
(6186, 'https://ror.org/020as7681', 'en', 1, 'https://ror.org/020as7681 Max Planck Institute for the Science of Light Max-Planck-Institut für die Physik des Lichts'),
(6187, 'https://ror.org/013wkc921', 'it', 1, 'https://ror.org/013wkc921 Istituto Scientifico Romagnolo per lo Studio e la Cura dei Tumori'),
(6188, 'https://ror.org/00pwgnh47', 'en', 1, 'https://ror.org/00pwgnh47 Max Planck Institute of Colloids and Interfaces Max-Planck-Institut für Kolloid- und Grenzflächenforschung'),
(6189, 'https://ror.org/018azgd14', 'en', 1, 'https://ror.org/018azgd14 National Institute of Cholera and Enteric Diseases'),
(6190, 'https://ror.org/01vjhzs23', 'sk', 1, 'https://ror.org/01vjhzs23 Onkologický Ústav Svätej Alžbety'),
(6191, 'https://ror.org/01ks7f963', 'en', 1, 'https://ror.org/01ks7f963 National Center for Disease Control राष्ट्रीय संसर्गजन्य रोग नियंत्रण संस्था'),
(6192, 'https://ror.org/03jbf6q27', 'en', 1, 'https://ror.org/03jbf6q27 Max-Born-Institut für Nichtlineare Optik und Kurzzeitspektroskopie Max-Born-Institute for Nonlinear Optics and Short Pulse Spectroscopy'),
(6193, 'https://ror.org/05h8pb290', 'fr', 1, 'https://ror.org/05h8pb290 Institut National de Criminalistique et de Criminologie Nationaal Instituut voor Criminalistiek en Criminologie'),
(6194, 'https://ror.org/053g6zg46', 'en', 1, 'https://ror.org/053g6zg46 Institute of Crop Science 次世代作物開発研究センター'),
(6195, 'https://ror.org/05r7f8853', 'it', 1, 'https://ror.org/05r7f8853 Istituto Zooprofilattico Sperimentale del Mezzogiorno'),
(6196, 'https://ror.org/01btzz102', 'en', 1, 'https://ror.org/01btzz102 University of Health Sciences and Pharmacy'),
(6197, 'https://ror.org/0243gzr89', 'en', 1, 'https://ror.org/0243gzr89 Max Planck Institut für Biologie Max Planck Institute for Biology'),
(6198, 'https://ror.org/0445at860', 'it', 1, 'https://ror.org/0445at860 Istituto Zooprofilattico Sperimentale dell''Umbria e delle Marche'),
(6199, 'https://ror.org/05x7pyy46', 'en', 1, 'https://ror.org/05x7pyy46 St. Louis Testing Laboratories'),
(6200, 'https://ror.org/00f419y92', 'en', 1, 'https://ror.org/00f419y92 St. Luke''s Cataract and Laser Institute'),
(6201, 'https://ror.org/0370dwx56', 'it', 1, 'https://ror.org/0370dwx56 Istituto Zooprofilattico Sperimentale della Sardegna'),
(6202, 'https://ror.org/011471042', 'en', 1, 'https://ror.org/011471042 National Institute of Epidemiology'),
(6203, 'https://ror.org/04n6qtb21', 'en', 1, 'https://ror.org/04n6qtb21 National Institute of Fitness and Sports in Kanoya 鹿屋体育大学'),
(6204, 'https://ror.org/014142c83', 'en', 1, 'https://ror.org/014142c83 National Institute for Food and Nutrition Science'),
(6205, 'https://ror.org/00agtat91', 'de', 1, 'https://ror.org/00agtat91 Städtisches Klinikum Karlsruhe'),
(6206, 'https://ror.org/03pfshj32', 'de', 1, 'https://ror.org/03pfshj32 Munich Municipal Hospital Group München Klinik'),
(6207, 'https://ror.org/01teg2k73', 'en', 1, 'https://ror.org/01teg2k73 National Institute Of Hygiene And Epidemiology Viện Vệ sinh dịch tễ Trung ương'),
(6208, 'https://ror.org/009j32424', 'en', 1, 'https://ror.org/009j32424 Institute of Livestock and Grassland Science 畜産研究部門'),
(6209, 'https://ror.org/02mqbx112', 'en', 1, 'https://ror.org/02mqbx112 Institut National de Neurologie Mongi-Ben Hamida National Institute of Neurology Mongi-Ben Hamida'),
(6210, 'https://ror.org/01b4q9c55', 'hu', 1, 'https://ror.org/01b4q9c55 National Institute of Clinical Neurosciences Országos Idegsebészeti Tudományos Intézet'),
(6211, 'https://ror.org/04t18m760', 'en', 1, 'https://ror.org/04t18m760 National Institute of Nutrition Viện Dinh Dưỡng Quốc Gia'),
(6212, 'https://ror.org/05pp5b412', 'en', 1, 'https://ror.org/05pp5b412 Beijing Proteome Research Center'),
(6213, 'https://ror.org/052cjbe24', 'en', 1, 'https://ror.org/052cjbe24 National Institute of Oceanography and Fisheries'),
(6214, 'https://ror.org/00f1vw968', 'en', 1, 'https://ror.org/00f1vw968 KentuckyOne Health'),
(6215, 'https://ror.org/02kjgsq44', 'en', 1, 'https://ror.org/02kjgsq44 National Institute of Oncology'),
(6216, 'https://ror.org/04yzcpd71', 'no_lang_code', 1, 'https://ror.org/04yzcpd71 Janssen (Belgium)'),
(6217, 'https://ror.org/0132nee26', 'fr', 1, 'https://ror.org/0132nee26 Institut National d''Oncologie'),
(6218, 'https://ror.org/023edjq13', 'no_lang_code', 1, 'https://ror.org/023edjq13 Johnson & Johnson (Germany)'),
(6219, 'https://ror.org/03mk3s709', 'hu', 1, 'https://ror.org/03mk3s709 Országos Pszichiátriai és Neurológiai Intézet'),
(6220, 'https://ror.org/032w6bp80', 'no_lang_code', 1, 'https://ror.org/032w6bp80 State Volunteer Mutual Insurance (United States)'),
(6221, 'https://ror.org/02brpaf34', 'it', 1, 'https://ror.org/02brpaf34 Istituto Ortopedico Gaetano Pini'),
(6222, 'https://ror.org/01njgag08', 'en', 1, 'https://ror.org/01njgag08 Japan Women''s College of Physical Education 日本女子体育大学'),
(6223, 'https://ror.org/0418yqg16', 'en', 1, 'https://ror.org/0418yqg16 National Institute of Pharmaceutical Education and Research नेशनल इंस्टिट्यूट ऑफ फार्मास्यूटिकल एजुकेशन एंड रिसर्च నేషనల్ ఇన్స్టిట్యూట్ ఆఫ్ ఫార్మస్యూటికల్ ఎడ్యుకేషన్'),
(6224, 'https://ror.org/04zw11527', 'en', 1, 'https://ror.org/04zw11527 National Institute of Plant Genome Research'),
(6225, 'https://ror.org/004a2wv92', 'en', 1, 'https://ror.org/004a2wv92 National Institute of Dental and Craniofacial Research'),
(6226, 'https://ror.org/009azd705', 'it', 1, 'https://ror.org/009azd705 Figli Adottivi e Genitori Naturali'),
(6227, 'https://ror.org/0538gdx71', 'en', 1, 'https://ror.org/0538gdx71 Jawaharlal Nehru Centre for Advanced Scientific Research'),
(6228, 'https://ror.org/04qatqr61', 'en', 1, 'https://ror.org/04qatqr61 Myers-JDC-Brookdale Institute'),
(6229, 'https://ror.org/031vxrj29', 'en', 1, 'https://ror.org/031vxrj29 National Institute of Malaria Research राष्ट्रीय मलेरिया अनुसंधान संस्थान'),
(6230, 'https://ror.org/05gabt952', 'hu', 1, 'https://ror.org/05gabt952 Országos Reumatológiai és Fizioterápiás Intézet'),
(6231, 'https://ror.org/022r50851', 'en', 1, 'https://ror.org/022r50851 Steadman Clinic'),
(6232, 'https://ror.org/03msykc12', 'en', 1, 'https://ror.org/03msykc12 Steadman Philippon Research Institute'),
(6233, 'https://ror.org/0248zc213', 'en', 1, 'https://ror.org/0248zc213 Christus Health'),
(6234, 'https://ror.org/02ega5r05', 'en', 1, 'https://ror.org/02ega5r05 Mendez National Institute of Transplantation'),
(6235, 'https://ror.org/03qmsrr79', 'no_lang_code', 1, 'https://ror.org/03qmsrr79 Steris (United States)'),
(6236, 'https://ror.org/01pbz7c04', 'en', 1, 'https://ror.org/01pbz7c04 Mediterranean Agronomic Institute of Chania'),
(6237, 'https://ror.org/00e2hg029', 'no_lang_code', 1, 'https://ror.org/00e2hg029 Sterling Research Group (United States)'),
(6238, 'https://ror.org/02vajn858', 'en', 1, 'https://ror.org/02vajn858 CGH Medical Center'),
(6239, 'https://ror.org/059r8r572', 'en', 1, 'https://ror.org/059r8r572 Johnson County Community College'),
(6240, 'https://ror.org/02hmjce72', 'no_lang_code', 1, 'https://ror.org/02hmjce72 Medtronic (Netherlands)'),
(6241, 'https://ror.org/04cjpzj07', 'en', 1, 'https://ror.org/04cjpzj07 Meiho University'),
(6242, 'https://ror.org/059mgez24', 'en', 1, 'https://ror.org/059mgez24 National Institute of Veterinary Research'),
(6243, 'https://ror.org/00exr1241', 'en', 1, 'https://ror.org/00exr1241 Joint Center for Structural Genomics'),
(6244, 'https://ror.org/05db0nr49', 'en', 1, 'https://ror.org/05db0nr49 San Francisco Center for Psychoanalysis'),
(6245, 'https://ror.org/00qp2dq07', 'nl', 1, 'https://ror.org/00qp2dq07 Sticares InterACT'),
(6246, 'https://ror.org/027tjex48', 'no_lang_code', 1, 'https://ror.org/027tjex48 Meiji (Japan) 明治'),
(6247, 'https://ror.org/00x19de83', 'en', 1, 'https://ror.org/00x19de83 International Centers for Excellence in Research'),
(6248, 'https://ror.org/05k4a7g87', 'en', 1, 'https://ror.org/05k4a7g87 National Kidney and Transplant Institute'),
(6249, 'https://ror.org/01n45xa04', 'en', 1, 'https://ror.org/01n45xa04 National Kidney Foundation'),
(6250, 'https://ror.org/051mrhb02', 'hu', 1, 'https://ror.org/051mrhb02 Országos Korányi Tbc és Pulmonológiai Intézet'),
(6251, 'https://ror.org/043bhwh19', 'it', 1, 'https://ror.org/043bhwh19 Istituto Nazionale Biostrutture e Biosistemi'),
(6252, 'https://ror.org/00dbnf369', 'en', 1, 'https://ror.org/00dbnf369 National Marine Mammal Foundation'),
(6253, 'https://ror.org/0211zmf46', 'en', 1, 'https://ror.org/0211zmf46 National Metallurgical Laboratory'),
(6254, 'https://ror.org/01ab3z839', 'en', 1, 'https://ror.org/01ab3z839 National Perinatal Information Center'),
(6255, 'https://ror.org/008vp0c43', 'en', 1, 'https://ror.org/008vp0c43 Sunderland Eye Infirmary'),
(6256, 'https://ror.org/01mtp2k51', 'no_lang_code', 1, 'https://ror.org/01mtp2k51 Sunstar (Japan) サンスター'),
(6257, 'https://ror.org/04yt6jn66', 'en', 1, 'https://ror.org/04yt6jn66 National Rehabilitation Center 국립재활원'),
(6258, 'https://ror.org/04154pe94', 'en', 1, 'https://ror.org/04154pe94 Kanagawa Cardiovascular and Respiratory Center 神奈川県立循環器呼吸器病センター'),
(6259, 'https://ror.org/0464y8713', 'no_lang_code', 1, 'https://ror.org/0464y8713 Trinity Investments (Japan)'),
(6260, 'https://ror.org/05dd1kk08', 'no_lang_code', 1, 'https://ror.org/05dd1kk08 Suraj Eye Institute'),
(6261, 'https://ror.org/010s5ca44', 'en', 1, 'https://ror.org/010s5ca44 Memphis Fire Services'),
(6262, 'https://ror.org/03afd8w19', 'pt', 1, 'https://ror.org/03afd8w19 Secretaria da Saúde'),
(6263, 'https://ror.org/03pe98v12', 'en', 1, 'https://ror.org/03pe98v12 Surgical Materials Testing Laboratory'),
(6264, 'https://ror.org/01tw7ew41', 'en', 1, 'https://ror.org/01tw7ew41 Surrey Place Centre'),
(6265, 'https://ror.org/05bhsww40', 'en', 1, 'https://ror.org/05bhsww40 Scripps Health'),
(6266, 'https://ror.org/00h2tq173', 'no_lang_code', 1, 'https://ror.org/00h2tq173 Swami Vivekananda Yoga Anusandhana Samsthana'),
(6267, 'https://ror.org/02zan5e48', 'en', 1, 'https://ror.org/02zan5e48 Menorah Park Center for Senior Living'),
(6268, 'https://ror.org/02vf4sk45', 'en', 1, 'https://ror.org/02vf4sk45 Institute of Evolutionary Physiology and Biochemistry Федеральное государственное бюджетное учреждение науки Институт эволюционной физиологии и биохимии им. И.М. Сеченова Российской академии наук'),
(6269, 'https://ror.org/031x12x59', 'de', 1, 'https://ror.org/031x12x59 Katholisches Klinikum Koblenz'),
(6270, 'https://ror.org/0586k5242', 'no_lang_code', 1, 'https://ror.org/0586k5242 Kirin (Japan) キリン株式会社'),
(6271, 'https://ror.org/01pphqm45', 'en', 1, 'https://ror.org/01pphqm45 Kazan Institute of Biochemistry and Biophysics Федеральное государственное бюджетное учреждение науки Казанский институт биохимии и биофизики Казанского научного центра Российской академии наук'),
(6272, 'https://ror.org/05355vt65', 'pt', 1, 'https://ror.org/05355vt65 Secretaria Municipal de Saúde'),
(6273, 'https://ror.org/0499w7e46', 'en', 1, 'https://ror.org/0499w7e46 Kelsey-Seybold Clinic'),
(6274, 'https://ror.org/03kjpzv42', 'en', 1, 'https://ror.org/03kjpzv42 Centro Espacial John F. Kennedy Kennedy Space Center'),
(6275, 'https://ror.org/05r99t981', 'en', 1, 'https://ror.org/05r99t981 Segawa Neurological Clinic for Children 子供のための瀬川神経学クリニック'),
(6276, 'https://ror.org/00nnyvd56', 'en', 1, 'https://ror.org/00nnyvd56 National Research Institute of Chinese Medicine 國立中國醫藥研究所'),
(6277, 'https://ror.org/039922k61', 'en', 1, 'https://ror.org/039922k61 Kenya Agricultural Research Institute'),
(6278, 'https://ror.org/01ac4hv54', 'it', 1, 'https://ror.org/01ac4hv54 Semeion Centro Ricerche di Scienze della Comunicazione'),
(6279, 'https://ror.org/00z7n1h55', 'en', 1, 'https://ror.org/00z7n1h55 State Research Center of Virology and Biotechnology VECTOR Федеральное бюджетное учреждение науки Государственный научный центр вирусологии и биотехнологии Вектор'),
(6280, 'https://ror.org/030zc7t66', 'no_lang_code', 1, 'https://ror.org/030zc7t66 Sunovion (United States)'),
(6281, 'https://ror.org/00bqy3h17', 'en', 1, 'https://ror.org/00bqy3h17 Merrimack College'),
(6282, 'https://ror.org/004pk7083', 'en', 1, 'https://ror.org/004pk7083 Cedars-Sinai Kerlan-Jobe Institute'),
(6283, 'https://ror.org/05hacyq28', 'en', 1, 'https://ror.org/05hacyq28 Kessler Foundation'),
(6284, 'https://ror.org/05jccej20', 'fr', 1, 'https://ror.org/05jccej20 Centre Hospitalier Régional de Huy'),
(6285, 'https://ror.org/042ssp221', 'en', 1, 'https://ror.org/042ssp221 Methodist Rehabilitation Center'),
(6286, 'https://ror.org/03rbjx398', 'en', 1, 'https://ror.org/03rbjx398 National Suicide Research Foundation'),
(6287, 'https://ror.org/01spwt212', 'en', 1, 'https://ror.org/01spwt212 Swiss Paraplegic Center'),
(6288, 'https://ror.org/04jk2jb97', 'en', 1, 'https://ror.org/04jk2jb97 Swiss Paraplegic Research'),
(6289, 'https://ror.org/01cx4xa29', 'de', 1, 'https://ror.org/01cx4xa29 Fondation pour la Sécurité des Patients Stiftung Patientensicherheit Schweiz'),
(6290, 'https://ror.org/05bgcav40', 'en', 1, 'https://ror.org/05bgcav40 National Taichung University of Science and Technology'),
(6291, 'https://ror.org/027h1w574', 'en', 1, 'https://ror.org/027h1w574 Kidwai Memorial Institute of Oncology'),
(6292, 'https://ror.org/00z0d6447', 'no_lang_code', 1, 'https://ror.org/00z0d6447 Kikkoman (Japan) キッコーマン株式会社'),
(6293, 'https://ror.org/01vzd5j10', 'en', 1, 'https://ror.org/01vzd5j10 National Tuberculosis Institute'),
(6294, 'https://ror.org/05mgcmd27', 'no_lang_code', 1, 'https://ror.org/05mgcmd27 Medpace (United States)');
INSERT INTO `rors` VALUES
(6295, 'https://ror.org/04mbf8e26', 'en', 1, 'https://ror.org/04mbf8e26 Methodist Sports Medicine'),
(6296, 'https://ror.org/05t2trr67', 'en', 1, 'https://ror.org/05t2trr67 Miami Hand Center'),
(6297, 'https://ror.org/01p5m7v59', 'en', 1, 'https://ror.org/01p5m7v59 National Vaccine and Serum Institute'),
(6298, 'https://ror.org/00qeks103', 'en', 1, 'https://ror.org/00qeks103 Chris O’Brien Lifehouse'),
(6299, 'https://ror.org/0464edn46', 'en', 1, 'https://ror.org/0464edn46 King''s College - Pennsylvania'),
(6300, 'https://ror.org/02zdz1m23', 'en', 1, 'https://ror.org/02zdz1m23 Ministry of Agriculture, Forestry and Fisheries 農林水産省'),
(6301, 'https://ror.org/04thckx15', 'en', 1, 'https://ror.org/04thckx15 Michigan Ear Institute'),
(6302, 'https://ror.org/00r3xw008', 'en', 1, 'https://ror.org/00r3xw008 Michigan Headache and Neurological Institute'),
(6303, 'https://ror.org/05kwjwj05', 'en', 1, 'https://ror.org/05kwjwj05 Scripps Clinic'),
(6304, 'https://ror.org/04a2yjk98', 'no_lang_code', 1, 'https://ror.org/04a2yjk98 Lundbeck (United States)'),
(6305, 'https://ror.org/0593f3b93', 'en', 1, 'https://ror.org/0593f3b93 Michigan Psychoanalytic Institute'),
(6306, 'https://ror.org/00jshg714', 'de', 1, 'https://ror.org/00jshg714 Klinikum Aschaffenburg'),
(6307, 'https://ror.org/03b0k9c14', 'en', 1, 'https://ror.org/03b0k9c14 University Hospital Augsburg Universitätsklinikum Augsburg'),
(6308, 'https://ror.org/016cdf784', 'no_lang_code', 1, 'https://ror.org/016cdf784 BioReliance (United States)'),
(6309, 'https://ror.org/04qpstv89', 'en', 1, 'https://ror.org/04qpstv89 National Veterinary Research and Quarantine Service'),
(6310, 'https://ror.org/05j1w2b44', 'de', 1, 'https://ror.org/05j1w2b44 Klinikum Bremen-Mitte'),
(6311, 'https://ror.org/04g9sfv84', 'en', 1, 'https://ror.org/04g9sfv84 Syrian Center for Tobacco Studies'),
(6312, 'https://ror.org/00tgps059', 'no_lang_code', 1, 'https://ror.org/00tgps059 Novosibirsk Institute of Organic Chemistry Историческая справка НИОХ'),
(6313, 'https://ror.org/00berct97', 'no_lang_code', 1, 'https://ror.org/00berct97 NTT (Japan) 日本電信電話株式会社'),
(6314, 'https://ror.org/027ade760', 'en', 1, 'https://ror.org/027ade760 Tabba Heart Institute'),
(6315, 'https://ror.org/0149xpj56', 'en', 1, 'https://ror.org/0149xpj56 Midwest Cardiovascular Research Foundation'),
(6316, 'https://ror.org/03s96eq95', 'en', 1, 'https://ror.org/03s96eq95 Tacoma/Valley Radiation Oncology Centers'),
(6317, 'https://ror.org/04244wn07', 'en', 1, 'https://ror.org/04244wn07 Nutrition Foundation of India'),
(6318, 'https://ror.org/02ah36853', 'en', 1, 'https://ror.org/02ah36853 Midwest Eye Institute'),
(6319, 'https://ror.org/02v50dx14', 'no_lang_code', 1, 'https://ror.org/02v50dx14 Taiho Pharmaceutical (Japan) 大鵬薬品工業'),
(6320, 'https://ror.org/05mt2wq31', 'de', 1, 'https://ror.org/05mt2wq31 Klinikum Leverkusen'),
(6321, 'https://ror.org/05fep6742', 'en', 1, 'https://ror.org/05fep6742 Midwest Orthopaedic Research Foundation'),
(6322, 'https://ror.org/045dv2h94', 'de', 1, 'https://ror.org/045dv2h94 Klinikum Ludwigsburg'),
(6323, 'https://ror.org/0187fh156', 'de', 1, 'https://ror.org/0187fh156 Isar-Amper-Klinikum München-Ost'),
(6324, 'https://ror.org/010qwhr53', 'en', 1, 'https://ror.org/010qwhr53 Klinikum Nürnberg Nuremberg Hospital'),
(6325, 'https://ror.org/033nw2736', 'no_lang_code', 1, 'https://ror.org/033nw2736 Taisho Pharmaceutical (Japan) 大正製薬'),
(6326, 'https://ror.org/04k4vsv28', 'de', 1, 'https://ror.org/04k4vsv28 Sana Klinikum Offenbach'),
(6327, 'https://ror.org/01t0n2c80', 'de', 1, 'https://ror.org/01t0n2c80 Klinikum Oldenburg'),
(6328, 'https://ror.org/04wg18j80', 'de', 1, 'https://ror.org/04wg18j80 Klinikum Saarbrücken'),
(6329, 'https://ror.org/03q8fh922', 'pl', 1, 'https://ror.org/03q8fh922 Military Institute of Hygiene and Epidemiology Wojskowy Instytut Higieny i Epidemiologii'),
(6330, 'https://ror.org/059jfth35', 'de', 1, 'https://ror.org/059jfth35 Klinikum Stuttgart'),
(6331, 'https://ror.org/00dqmaq38', 'it', 1, 'https://ror.org/00dqmaq38 Oasi Maria SS'),
(6332, 'https://ror.org/01skvfg56', 'en', 1, 'https://ror.org/01skvfg56 Tallahassee Community College'),
(6333, 'https://ror.org/03n52gt10', 'en', 1, 'https://ror.org/03n52gt10 Millennium Pain Center'),
(6334, 'https://ror.org/05ss99d25', 'en', 1, 'https://ror.org/05ss99d25 Tampa Bay Research Institute'),
(6335, 'https://ror.org/03bygaq51', 'no_lang_code', 1, 'https://ror.org/03bygaq51 Takeda (United States) 武田薬品工業株式会社, Takeda Yakuhin Kōgyō kabushiki gaisha'),
(6336, 'https://ror.org/03tghjn41', 'no_lang_code', 1, 'https://ror.org/03tghjn41 Ocular Surface Center'),
(6337, 'https://ror.org/03gt88b08', 'en', 1, 'https://ror.org/03gt88b08 Institute of Plant Physiology and Genetics Институт по физиология на растенията и генетика'),
(6338, 'https://ror.org/0224bx186', 'en', 1, 'https://ror.org/0224bx186 Nazareth College'),
(6339, 'https://ror.org/05s65ce35', 'en', 1, 'https://ror.org/05s65ce35 Tanabe Research Laboratories'),
(6340, 'https://ror.org/0419gy550', 'no_lang_code', 1, 'https://ror.org/0419gy550 Minamiaoyama Eye Clinic 南青山アイクリニック'),
(6341, 'https://ror.org/01v791m31', 'no_lang_code', 1, 'https://ror.org/01v791m31 NEC (United States) NEC Corporation of America'),
(6342, 'https://ror.org/03c09x508', 'es', 1, 'https://ror.org/03c09x508 Ministerio de Salud'),
(6343, 'https://ror.org/00xgy0333', 'en', 1, 'https://ror.org/00xgy0333 Tanzania Food and Nutrition Center'),
(6344, 'https://ror.org/02pyw0y06', 'en', 1, 'https://ror.org/02pyw0y06 Taos Orthopaedic Institute'),
(6345, 'https://ror.org/05jf3ct62', 'en', 1, 'https://ror.org/05jf3ct62 Ohlone College'),
(6346, 'https://ror.org/04ek06320', 'en', 1, 'https://ror.org/04ek06320 Energy and Resources Institute ஆற்றல் மற்றும் வளங்கள் நிறுவனம்'),
(6347, 'https://ror.org/04hadk112', 'en', 1, 'https://ror.org/04hadk112 Institute of Genetics and Biophysics Istituto di Genetica e Biofisica'),
(6348, 'https://ror.org/034c0gr54', 'en', 1, 'https://ror.org/034c0gr54 Oklahoma Foundation for Digestive Research'),
(6349, 'https://ror.org/04c39t964', 'en', 1, 'https://ror.org/04c39t964 Olympic Park Sports Medicine Centre'),
(6350, 'https://ror.org/02gan0k07', 'en', 1, 'https://ror.org/02gan0k07 Onassis Cardiac Surgery Center ΩΝΑΣΕΙΟ ΚΑΡΔΙΟΧΕΙΡΟΥΡΓΙΚΟ ΚΕΝΤΡΟ'),
(6351, 'https://ror.org/00sj7sn30', 'pt', 1, 'https://ror.org/00sj7sn30 Prefeitura da Cidade do Rio de Janeiro'),
(6352, 'https://ror.org/02yry4472', 'en', 1, 'https://ror.org/02yry4472 All-China Sports Federation'),
(6353, 'https://ror.org/050hscv31', 'en', 1, 'https://ror.org/050hscv31 Nemours Children''s Clinic'),
(6354, 'https://ror.org/038kxkq33', 'no_lang_code', 1, 'https://ror.org/038kxkq33 Teijin (Japan) 帝人株式会社'),
(6355, 'https://ror.org/033w59g46', 'en', 1, 'https://ror.org/033w59g46 Ministry of Agriculture, Food and Rural Affairs Ministère de l''Agriculture, de l''Alimenntation et des Affaires Rurales'),
(6356, 'https://ror.org/0093s9g83', 'en', 1, 'https://ror.org/0093s9g83 Ministère du Travail Ontario Ministry of Labour'),
(6357, 'https://ror.org/01s6vf760', 'no_lang_code', 1, 'https://ror.org/01s6vf760 Tengion (United States)'),
(6358, 'https://ror.org/055p38x79', 'en', 1, 'https://ror.org/055p38x79 Ontario Tobacco Research Unit Unite de Recherche sur le Tabac de L''Ontario'),
(6359, 'https://ror.org/01txpgc43', 'no_lang_code', 1, 'https://ror.org/01txpgc43 Operational Technologies Corporation (United States)'),
(6360, 'https://ror.org/04vzpy492', 'en', 1, 'https://ror.org/04vzpy492 Orange County Heart Institute and Research Center'),
(6361, 'https://ror.org/0028z3k74', 'en', 1, 'https://ror.org/0028z3k74 Orange County Research Center'),
(6362, 'https://ror.org/012381002', 'en', 1, 'https://ror.org/012381002 Terasaki Foundation'),
(6363, 'https://ror.org/006qz8583', 'en', 1, 'https://ror.org/006qz8583 Mahatma Gandhi Kashi Vidyapith महात्मा गाँधी काशी विद्यापीठ மகாத்மா காந்தி காசி வித்யாபீடம்'),
(6364, 'https://ror.org/02jkm3388', 'it', 1, 'https://ror.org/02jkm3388 Ministero degli Affari Esteri Ministry of Foreign Affairs and International Cooperation'),
(6365, 'https://ror.org/00anm2x55', 'en', 1, 'https://ror.org/00anm2x55 Ministry of Justice'),
(6366, 'https://ror.org/03nrb5p64', 'en', 1, 'https://ror.org/03nrb5p64 Adalet Bakanlığı Ministry of Justice'),
(6367, 'https://ror.org/02fywtq82', 'no_lang_code', 1, 'https://ror.org/02fywtq82 Organisation de Coordination pour la lutte contre les Endémies en Afrique Centrale'),
(6368, 'https://ror.org/05tjbsh85', 'en', 1, 'https://ror.org/05tjbsh85 Ministry of Justice 法務省'),
(6369, 'https://ror.org/036gvnq39', 'en', 1, 'https://ror.org/036gvnq39 Ministry of Manpower 新加坡人力部'),
(6370, 'https://ror.org/052qet256', 'no_lang_code', 1, 'https://ror.org/052qet256 Organix (United States)'),
(6371, 'https://ror.org/00v1wt879', 'es', 1, 'https://ror.org/00v1wt879 National Transplant Organization Organización Nacional de Trasplantes'),
(6372, 'https://ror.org/04s2z4291', 'en', 1, 'https://ror.org/04s2z4291 Nederlands Forensisch Instituut Netherlands Forensic Institute'),
(6373, 'https://ror.org/00g3zjf64', 'en', 1, 'https://ror.org/00g3zjf64 Texas Endosurgery Institute'),
(6374, 'https://ror.org/04ch01631', 'en', 1, 'https://ror.org/04ch01631 Ministry of Social Affairs and Social Services משרד הרווחה והשירותים החברתיים'),
(6375, 'https://ror.org/05xq19q44', 'en', 1, 'https://ror.org/05xq19q44 Ministry of the Environment and Water Resources 新加坡环境及水源部'),
(6376, 'https://ror.org/02c241b98', 'en', 1, 'https://ror.org/02c241b98 Associated Skin Care Specialists'),
(6377, 'https://ror.org/00jc42j13', 'en', 1, 'https://ror.org/00jc42j13 Mississippi Sports Medicine and Orthopaedic Center'),
(6378, 'https://ror.org/018v91w71', 'en', 1, 'https://ror.org/018v91w71 Missouri Bone and Joint Center'),
(6379, 'https://ror.org/05tj1jy10', 'en', 1, 'https://ror.org/05tj1jy10 Texas Nerve and Paralysis Institute'),
(6380, 'https://ror.org/04hmqap24', 'en', 1, 'https://ror.org/04hmqap24 Netherlands Institute for Innovative Ocular Surgery'),
(6381, 'https://ror.org/039hmr469', 'en', 1, 'https://ror.org/039hmr469 Ono Clinic 小野クリニック'),
(6382, 'https://ror.org/016d8zs37', 'en', 1, 'https://ror.org/016d8zs37 Methodist Healthcare'),
(6383, 'https://ror.org/04c51sp70', 'en', 1, 'https://ror.org/04c51sp70 Orthopaedic Research of Virginia'),
(6384, 'https://ror.org/02ggfyw45', 'en', 1, 'https://ror.org/02ggfyw45 Thai Red Cross Society'),
(6385, 'https://ror.org/0241wfp64', 'en', 1, 'https://ror.org/0241wfp64 Orthopedic Foot & Ankle Center'),
(6386, 'https://ror.org/01qt7mp11', 'en', 1, 'https://ror.org/01qt7mp11 Miyagi Prefectural Hospital Organization 宮城県立病院機構'),
(6387, 'https://ror.org/04je9aj22', 'en', 1, 'https://ror.org/04je9aj22 Osborne Head and Neck Institute'),
(6388, 'https://ror.org/02czfmn65', 'en', 1, 'https://ror.org/02czfmn65 Thames Valley Children''s Centre'),
(6389, 'https://ror.org/01z89mt14', 'en', 1, 'https://ror.org/01z89mt14 Ottawa Regional Cancer Foundation'),
(6390, 'https://ror.org/02tmx5588', 'no_lang_code', 1, 'https://ror.org/02tmx5588 Danaher (United States)'),
(6391, 'https://ror.org/05n629g02', 'en', 1, 'https://ror.org/05n629g02 Molecular Research Institute'),
(6392, 'https://ror.org/0296s4x19', 'no_lang_code', 1, 'https://ror.org/0296s4x19 Orion Corporation (Finland) Orion Oyj'),
(6393, 'https://ror.org/00mgp8v69', 'en', 1, 'https://ror.org/00mgp8v69 Carter Center'),
(6394, 'https://ror.org/05j2wxx71', 'en', 1, 'https://ror.org/05j2wxx71 Western Maine Health'),
(6395, 'https://ror.org/026ejyb70', 'en', 1, 'https://ror.org/026ejyb70 Oxford Centre for Computational Neuroscience'),
(6396, 'https://ror.org/02swzn148', 'en', 1, 'https://ror.org/02swzn148 Pain Management Center of Paducah'),
(6397, 'https://ror.org/052gypd56', 'en', 1, 'https://ror.org/052gypd56 Nuclear Threat Initiative'),
(6398, 'https://ror.org/057jpj338', 'no_lang_code', 1, 'https://ror.org/057jpj338 Pall Corporation (United States)'),
(6399, 'https://ror.org/02v05yj51', 'en', 1, 'https://ror.org/02v05yj51 All Africa Leprosy Tuberculosis and Rehabilitation Training Centre'),
(6400, 'https://ror.org/00mvwb842', 'en', 1, 'https://ror.org/00mvwb842 Neuropsychiatric Research Institute'),
(6401, 'https://ror.org/02c5sgb74', 'en', 1, 'https://ror.org/02c5sgb74 Collaborative Research Group'),
(6402, 'https://ror.org/05hatwc22', 'en', 1, 'https://ror.org/05hatwc22 Palladin Institute of Biochemistry Інститут біохімії ім О.В Палладіна'),
(6403, 'https://ror.org/01nqsgv54', 'en', 1, 'https://ror.org/01nqsgv54 Headache & Pain Center of Palm Beach'),
(6404, 'https://ror.org/000smmv87', 'no_lang_code', 1, 'https://ror.org/000smmv87 Morinaga Institute of Biological Science'),
(6405, 'https://ror.org/01tqja591', 'no_lang_code', 1, 'https://ror.org/01tqja591 Morinaga (Japan) 森永製菓株式会社'),
(6406, 'https://ror.org/00tb5pg67', 'en', 1, 'https://ror.org/00tb5pg67 Emory Clinic'),
(6407, 'https://ror.org/01wjn2x92', 'en', 1, 'https://ror.org/01wjn2x92 National Center for HIV/AIDS Viral Hepatitis STD and TB Prevention'),
(6408, 'https://ror.org/004n9sm55', 'en', 1, 'https://ror.org/004n9sm55 New England Center for Children'),
(6409, 'https://ror.org/00nvy8497', 'en', 1, 'https://ror.org/00nvy8497 Australia and New Zealand Dialysis and Transplant Registry'),
(6410, 'https://ror.org/02t110213', 'en', 1, 'https://ror.org/02t110213 New England College of Optometry'),
(6411, 'https://ror.org/053bg5z25', 'en', 1, 'https://ror.org/053bg5z25 New England Complex Systems Institute'),
(6412, 'https://ror.org/003fgzm76', 'en', 1, 'https://ror.org/003fgzm76 Mount Carmel College of Nursing'),
(6413, 'https://ror.org/016n06b36', 'en', 1, 'https://ror.org/016n06b36 Franciscan Hammond Clinic'),
(6414, 'https://ror.org/02e891h43', 'en', 1, 'https://ror.org/02e891h43 Mount Mercy University'),
(6415, 'https://ror.org/00jjs7680', 'en', 1, 'https://ror.org/00jjs7680 New Mexico Clinical Research & Osteoporosis Center'),
(6416, 'https://ror.org/05hek7k69', 'it', 1, 'https://ror.org/05hek7k69 Azienda di Rilievo Nazionale ed Alta Specializzazione'),
(6417, 'https://ror.org/05azenf09', 'en', 1, 'https://ror.org/05azenf09 New York Psychoanalytic Society and Institute'),
(6418, 'https://ror.org/056y35868', 'en', 1, 'https://ror.org/056y35868 New Zealand College of Chiropractic'),
(6419, 'https://ror.org/01qjmkr85', 'no_lang_code', 1, 'https://ror.org/01qjmkr85 Fonterra (New Zealand)'),
(6420, 'https://ror.org/01ass5t61', 'en', 1, 'https://ror.org/01ass5t61 Jean Hailes'),
(6421, 'https://ror.org/05p40t847', 'en', 1, 'https://ror.org/05p40t847 Newcastle upon Tyne Hospitals NHS Foundation Trust'),
(6422, 'https://ror.org/017shr829', 'no_lang_code', 1, 'https://ror.org/017shr829 LI-COR Biosciences (United States)'),
(6423, 'https://ror.org/02yj6hv88', 'no_lang_code', 1, 'https://ror.org/02yj6hv88 Pharis Biotec (Germany)'),
(6424, 'https://ror.org/04em2yk17', 'en', 1, 'https://ror.org/04em2yk17 Moredun Foundation'),
(6425, 'https://ror.org/03ks2a131', 'no_lang_code', 1, 'https://ror.org/03ks2a131 Mitre (United States)'),
(6426, 'https://ror.org/03e59a529', 'en', 1, 'https://ror.org/03e59a529 Molecular Cardiology and Neuromuscular Institute'),
(6427, 'https://ror.org/05jbyqz27', 'fr', 1, 'https://ror.org/05jbyqz27 Museum of Man Musée de l''Homme'),
(6428, 'https://ror.org/02ezy5072', 'no_lang_code', 1, 'https://ror.org/02ezy5072 Amgen (Germany)'),
(6429, 'https://ror.org/04agfm627', 'en', 1, 'https://ror.org/04agfm627 EngenderHealth'),
(6430, 'https://ror.org/035vrxy57', 'en', 1, 'https://ror.org/035vrxy57 Micro and Nanotechnology Innovation Centre'),
(6431, 'https://ror.org/058c0g260', 'en', 1, 'https://ror.org/058c0g260 Neuroscience Education Institute'),
(6432, 'https://ror.org/00h1gfz86', 'nl', 1, 'https://ror.org/00h1gfz86 AZ Klina'),
(6433, 'https://ror.org/048pv7s22', 'nl', 1, 'https://ror.org/048pv7s22 AZ Maria Middelares'),
(6434, 'https://ror.org/0411byy62', 'nl', 1, 'https://ror.org/0411byy62 AZ Sint-Blasius'),
(6435, 'https://ror.org/00j1y9t40', 'fr', 1, 'https://ror.org/00j1y9t40 Laboratoire d''Enzymologie et Biochimie Structurales'),
(6436, 'https://ror.org/03xtz2n86', 'en', 1, 'https://ror.org/03xtz2n86 European Society for Medical Oncology'),
(6437, 'https://ror.org/051cjrp31', 'no_lang_code', 1, 'https://ror.org/051cjrp31 McGuireWoods'),
(6438, 'https://ror.org/03az79194', 'fr', 1, 'https://ror.org/03az79194 Laboratoire National Henri Becquerel'),
(6439, 'https://ror.org/00qytmr47', 'no_lang_code', 1, 'https://ror.org/00qytmr47 INC Research (United States)'),
(6440, 'https://ror.org/01eadrh05', 'en', 1, 'https://ror.org/01eadrh05 Oregon Clinic'),
(6441, 'https://ror.org/004amc442', 'en', 1, 'https://ror.org/004amc442 Orthopaedic Center'),
(6442, 'https://ror.org/05w1mrz55', 'en', 1, 'https://ror.org/05w1mrz55 Parkinson''s Institute and Clinical Center'),
(6443, 'https://ror.org/01647vc39', 'no_lang_code', 1, 'https://ror.org/01647vc39 Behringwerke (Germany)'),
(6444, 'https://ror.org/0190p7071', 'no_lang_code', 1, 'https://ror.org/0190p7071 General Electric (Sweden)'),
(6445, 'https://ror.org/00smdp487', 'no_lang_code', 1, 'https://ror.org/00smdp487 Munich Leukemia Laboratory (Germany) Münchner Leukämielabor'),
(6446, 'https://ror.org/0100f3q33', 'no_lang_code', 1, 'https://ror.org/0100f3q33 Biotest (Germany)'),
(6447, 'https://ror.org/047mvza98', 'en', 1, 'https://ror.org/047mvza98 Bangladesh Institute of Research and Rehabilitation for Diabetes Endocrine and Metabolic Disorders বারডেম'),
(6448, 'https://ror.org/01skwyh03', 'no_lang_code', 1, 'https://ror.org/01skwyh03 Nissan Chemical Corporation (Japan) 日産化学株式会社'),
(6449, 'https://ror.org/05kbvgd57', 'fr', 1, 'https://ror.org/05kbvgd57 Banque Populaire'),
(6450, 'https://ror.org/042eghf65', 'en', 1, 'https://ror.org/042eghf65 North Carolina Institute of Medicine'),
(6451, 'https://ror.org/029zamy29', 'no_lang_code', 1, 'https://ror.org/029zamy29 Springer Nature (New Zealand)'),
(6452, 'https://ror.org/01y720297', 'en', 1, 'https://ror.org/01y720297 Regional Medical Research Centre আঞ্চলিক চিকিৎসা গৱেষণা কেন্দ্ৰ, ডিব্ৰুগড়'),
(6453, 'https://ror.org/03y7ycy60', 'sv', 1, 'https://ror.org/03y7ycy60 Norra Älvsborgs Länssjukhus Northern Älvsborg county hospital'),
(6454, 'https://ror.org/02237ny03', 'en', 1, 'https://ror.org/02237ny03 Taste and Smell Clinic'),
(6455, 'https://ror.org/016tybp74', 'en', 1, 'https://ror.org/016tybp74 North Riding Infirmary'),
(6456, 'https://ror.org/02kspbq18', 'fr', 1, 'https://ror.org/02kspbq18 Château Gombert'),
(6457, 'https://ror.org/05em3zk56', 'en', 1, 'https://ror.org/05em3zk56 National Minority AIDS Council'),
(6458, 'https://ror.org/02tyer376', 'en', 1, 'https://ror.org/02tyer376 Leibniz Institute DSMZ – German Collection of Microorganisms and Cell Cultures Leibniz-Institut DSMZ-Deutsche Sammlung von Mikroorganismen und Zellkulturen'),
(6459, 'https://ror.org/05hgh7849', 'no_lang_code', 1, 'https://ror.org/05hgh7849 Walker (United States)'),
(6460, 'https://ror.org/0404v4f94', 'it', 1, 'https://ror.org/0404v4f94 Cassa di Risparmio in Bologna'),
(6461, 'https://ror.org/02jzrsm59', 'en', 1, 'https://ror.org/02jzrsm59 National Institute on Alcohol Abuse and Alcoholism'),
(6462, 'https://ror.org/006zn3t30', 'en', 1, 'https://ror.org/006zn3t30 National Institute of Arthritis and Musculoskeletal and Skin Diseases'),
(6463, 'https://ror.org/00q0yh079', 'pt', 1, 'https://ror.org/00q0yh079 Institute of Radiation Protection and Dosimetry Instituto de Radioproteção e Dosimetria'),
(6464, 'https://ror.org/04byxyr05', 'en', 1, 'https://ror.org/04byxyr05 Eunice Kennedy Shriver National Institute of Child Health and Human Development'),
(6465, 'https://ror.org/00fq5cm18', 'en', 1, 'https://ror.org/00fq5cm18 National Institute on Drug Abuse'),
(6466, 'https://ror.org/0494qe247', 'en', 1, 'https://ror.org/0494qe247 Canadian Breast Cancer Network'),
(6467, 'https://ror.org/02zhjb475', 'en', 1, 'https://ror.org/02zhjb475 Thompson Cancer Survival Center'),
(6468, 'https://ror.org/01ynxg963', 'en', 1, 'https://ror.org/01ynxg963 Pacific Medical Research Foundation'),
(6469, 'https://ror.org/04wjd1a07', 'en', 1, 'https://ror.org/04wjd1a07 Nordland Hospital Trust Nordlandssykehuset'),
(6470, 'https://ror.org/02azqtm75', 'en', 1, 'https://ror.org/02azqtm75 National Sanitation Foundation International'),
(6471, 'https://ror.org/00phd3t88', 'en', 1, 'https://ror.org/00phd3t88 Northwest Clinical Research Center'),
(6472, 'https://ror.org/05gedqb32', 'no_lang_code', 1, 'https://ror.org/05gedqb32 GlaxoSmithKline (Germany)'),
(6473, 'https://ror.org/05ccach65', 'en', 1, 'https://ror.org/05ccach65 Gerald P. Murphy Cancer Foundation'),
(6474, 'https://ror.org/03m8b9646', 'en', 1, 'https://ror.org/03m8b9646 Tilganga Institute of Ophthalmology तिलगंगा आँखाकेन्द्र'),
(6475, 'https://ror.org/0545sd266', 'no_lang_code', 1, 'https://ror.org/0545sd266 PAREXEL International (France)'),
(6476, 'https://ror.org/04bmzpd39', 'en', 1, 'https://ror.org/04bmzpd39 Pakistan Institute of Nuclear Science and Technology'),
(6477, 'https://ror.org/038sjwf38', 'no_lang_code', 1, 'https://ror.org/038sjwf38 Takeda (Norway)'),
(6478, 'https://ror.org/00evjd729', 'en', 1, 'https://ror.org/00evjd729 Australian Red Cross Lifeblood'),
(6479, 'https://ror.org/0266h1q26', 'en', 1, 'https://ror.org/0266h1q26 Norton Healthcare'),
(6480, 'https://ror.org/01vfnp540', 'no_lang_code', 1, 'https://ror.org/01vfnp540 Immune Response BioPharma (United States)'),
(6481, 'https://ror.org/05qgz5a90', 'cs', 1, 'https://ror.org/05qgz5a90 Ocní klinika'),
(6482, 'https://ror.org/0183vre95', 'en', 1, 'https://ror.org/0183vre95 TiFN'),
(6483, 'https://ror.org/03k9r6w77', 'no_lang_code', 1, 'https://ror.org/03k9r6w77 FTSE (Japan)'),
(6484, 'https://ror.org/03ztsz823', 'sk', 1, 'https://ror.org/03ztsz823 Ocná klinika'),
(6485, 'https://ror.org/0062dz060', 'en', 1, 'https://ror.org/0062dz060 Norwich Research Park'),
(6486, 'https://ror.org/023apm738', 'fr', 1, 'https://ror.org/023apm738 Centre d''Exploration et de Recherche Médicale par Emission de Positons'),
(6487, 'https://ror.org/00shfq002', 'no_lang_code', 1, 'https://ror.org/00shfq002 Syngenta (United States)'),
(6488, 'https://ror.org/048g78j50', 'fr', 1, 'https://ror.org/048g78j50 Groupe Hospitalier Intercommunal Le Raincy Montfermeil'),
(6489, 'https://ror.org/00kyj7k59', 'en', 1, 'https://ror.org/00kyj7k59 Fondation de recherches sur les blessures de la route Traffic Injury Research Foundation'),
(6490, 'https://ror.org/00kkwkq76', 'no_lang_code', 1, 'https://ror.org/00kkwkq76 Pfizer (Sweden)'),
(6491, 'https://ror.org/03jwzwq24', 'no_lang_code', 1, 'https://ror.org/03jwzwq24 Xerox (United States)'),
(6492, 'https://ror.org/055epcp86', 'en', 1, 'https://ror.org/055epcp86 Pankey Institute'),
(6493, 'https://ror.org/04c3yce28', 'fr', 1, 'https://ror.org/04c3yce28 Centre Hospitalier Le Vinatier'),
(6494, 'https://ror.org/05vmcbf05', 'en', 1, 'https://ror.org/05vmcbf05 Pakistan Council of Scientific & Industrial Research'),
(6495, 'https://ror.org/053y9xq02', 'en', 1, 'https://ror.org/053y9xq02 Pandit Bhagwat Dayal Sharma Post Graduate Institute of Medical Sciences'),
(6496, 'https://ror.org/00nfck739', 'no_lang_code', 1, 'https://ror.org/00nfck739 Thermo Fisher Scientific (Sweden)'),
(6497, 'https://ror.org/04sme7s65', 'no_lang_code', 1, 'https://ror.org/04sme7s65 Altria (United States)'),
(6498, 'https://ror.org/03dwhj404', 'no_lang_code', 1, 'https://ror.org/03dwhj404 Agenus (United States)'),
(6499, 'https://ror.org/00n6v1c97', 'no_lang_code', 1, 'https://ror.org/00n6v1c97 Bayer (Belgium)'),
(6500, 'https://ror.org/05t1yee64', 'no_lang_code', 1, 'https://ror.org/05t1yee64 Hospital Fatuma Bourguiba Monastir Hôpital Universitaire Fattouma-Bourguiba de Monastir'),
(6501, 'https://ror.org/01h95gp06', 'no_lang_code', 1, 'https://ror.org/01h95gp06 FMC (United States)'),
(6502, 'https://ror.org/02xnj2427', 'fr', 1, 'https://ror.org/02xnj2427 Hôpital de Ville-Évrard'),
(6503, 'https://ror.org/03zpmpz54', 'en', 1, 'https://ror.org/03zpmpz54 Twin Cities Spine Center'),
(6504, 'https://ror.org/016sds817', 'en', 1, 'https://ror.org/016sds817 Tiroler Krebsforschungsinstitut Tyrolean Cancer Research Institute'),
(6505, 'https://ror.org/00vhf1v57', 'fr', 1, 'https://ror.org/00vhf1v57 Centre Hospitalier Universitaire de Tokoin'),
(6506, 'https://ror.org/05fv8sy52', 'en', 1, 'https://ror.org/05fv8sy52 Tzu Chi College of Technology 慈濟技術學院'),
(6507, 'https://ror.org/02r96rf44', 'no_lang_code', 1, 'https://ror.org/02r96rf44 Qiagen (Germany)'),
(6508, 'https://ror.org/01ajqvg59', 'en', 1, 'https://ror.org/01ajqvg59 United States Army Aeromedical Research Lab'),
(6509, 'https://ror.org/03e5aen17', 'no_lang_code', 1, 'https://ror.org/03e5aen17 ProteoSys (Germany)'),
(6510, 'https://ror.org/0232mk144', 'es', 1, 'https://ror.org/0232mk144 EsSALUD Seguro Social de Salud del Perú'),
(6511, 'https://ror.org/055keby75', 'no_lang_code', 1, 'https://ror.org/055keby75 Walter Knoll (Germany)'),
(6512, 'https://ror.org/012khpt30', 'it', 1, 'https://ror.org/012khpt30 Fondazione G.B. Bietti G. B. Bietti Foundation'),
(6513, 'https://ror.org/04gsrvr64', 'en', 1, 'https://ror.org/04gsrvr64 Adelphi Laboratory Center'),
(6514, 'https://ror.org/05mw5ed57', 'no_lang_code', 1, 'https://ror.org/05mw5ed57 Baxter (Sweden)'),
(6515, 'https://ror.org/01fgq8278', 'no_lang_code', 1, 'https://ror.org/01fgq8278 DSM (Switzerland)'),
(6516, 'https://ror.org/045hp7z16', 'it', 1, 'https://ror.org/045hp7z16 Società per l’Assistenza al Malato Oncologico Terminale'),
(6517, 'https://ror.org/03e7xy909', 'en', 1, 'https://ror.org/03e7xy909 People’s University'),
(6518, 'https://ror.org/05nstty25', 'en', 1, 'https://ror.org/05nstty25 Perth Royal Infirmary'),
(6519, 'https://ror.org/031vg5s58', 'en', 1, 'https://ror.org/031vg5s58 Peru State College'),
(6520, 'https://ror.org/03rs11m37', 'no_lang_code', 1, 'https://ror.org/03rs11m37 Levret'),
(6521, 'https://ror.org/05pkeac16', 'no_lang_code', 1, 'https://ror.org/05pkeac16 UCB Pharma (Germany) Union chimique belge'),
(6522, 'https://ror.org/04h7kta22', 'en', 1, 'https://ror.org/04h7kta22 Visiting Nurse Associations of America'),
(6523, 'https://ror.org/036dv6j71', 'no_lang_code', 1, 'https://ror.org/036dv6j71 Human Computer Interaction (Switzerland)'),
(6524, 'https://ror.org/0023asr12', 'en', 1, 'https://ror.org/0023asr12 Singapore Science Park Taman Sains Singapura 新加坡科学园'),
(6525, 'https://ror.org/046fq2b74', 'en', 1, 'https://ror.org/046fq2b74 Healthcare Financial Management Association'),
(6526, 'https://ror.org/02js6ft04', 'no_lang_code', 1, 'https://ror.org/02js6ft04 Takara (United States)'),
(6527, 'https://ror.org/03ytdtb31', 'no_lang_code', 1, 'https://ror.org/03ytdtb31 Sanofi (Germany)'),
(6528, 'https://ror.org/00bbe8x87', 'no_lang_code', 1, 'https://ror.org/00bbe8x87 Stallergenes Greer (France)'),
(6529, 'https://ror.org/02gy8fc28', 'fr', 1, 'https://ror.org/02gy8fc28 Centre National Hospitalier et Universitaire Hubert Koutoukou MAGA'),
(6530, 'https://ror.org/00xms2e58', 'en', 1, 'https://ror.org/00xms2e58 Hudson Valley Regional Emergency Medical Services Council'),
(6531, 'https://ror.org/05p3vnz07', 'no_lang_code', 1, 'https://ror.org/05p3vnz07 Wound Care Strategies (United States)'),
(6532, 'https://ror.org/03dc7cm27', 'no_lang_code', 1, 'https://ror.org/03dc7cm27 XOMA (United States)'),
(6533, 'https://ror.org/01c8cwz57', 'fr', 1, 'https://ror.org/01c8cwz57 Institut pour la Recherche sur le Cancer de Lille'),
(6534, 'https://ror.org/01rz37c55', 'en', 1, 'https://ror.org/01rz37c55 Bureau régional de l’OMS pour l’Europe Regionalbüro für Europa World Health Organization Regional Office for Europe'),
(6535, 'https://ror.org/01v7p8902', 'no_lang_code', 1, 'https://ror.org/01v7p8902 Interklinik'),
(6536, 'https://ror.org/02jzt6t86', 'en', 1, 'https://ror.org/02jzt6t86 Institute of Human Genetics Instytutu Genetyki Człowieka PAN'),
(6537, 'https://ror.org/0078ww552', 'no_lang_code', 1, 'https://ror.org/0078ww552 Cochlear (Switzerland)'),
(6538, 'https://ror.org/03fftr154', 'es', 1, 'https://ror.org/03fftr154 Instituto Ramón y Cajal de Investigación Sanitaria'),
(6539, 'https://ror.org/01v4ea389', 'no_lang_code', 1, 'https://ror.org/01v4ea389 Sizewise (United States)'),
(6540, 'https://ror.org/04gwjw495', 'no_lang_code', 1, 'https://ror.org/04gwjw495 VHA (United States)'),
(6541, 'https://ror.org/01e8bdb34', 'no_lang_code', 1, 'https://ror.org/01e8bdb34 SRK Healthcare (United States)'),
(6542, 'https://ror.org/03evkbw14', 'es', 1, 'https://ror.org/03evkbw14 Corporación para Investigaciones Biológicas'),
(6543, 'https://ror.org/02d93ae38', 'en', 1, 'https://ror.org/02d93ae38 Institute for Social Security and Services for State Workers Instituto de Seguridad y Servicios Sociales de los Trabajadores del Estado'),
(6544, 'https://ror.org/010fbpe82', 'en', 1, 'https://ror.org/010fbpe82 Tianjin Economic-Technological Development Area 天津经济技术开发区'),
(6545, 'https://ror.org/00r633h38', 'no_lang_code', 1, 'https://ror.org/00r633h38 Centro Radiológico Computarizado Corporació Sanitària (Spain)'),
(6546, 'https://ror.org/00tcb9k97', 'en', 1, 'https://ror.org/00tcb9k97 New York Eye and Ear Infirmary'),
(6547, 'https://ror.org/00p4dsm08', 'en', 1, 'https://ror.org/00p4dsm08 Virus Unit'),
(6548, 'https://ror.org/001tmkc70', 'no_lang_code', 1, 'https://ror.org/001tmkc70 Ivoclar Vivadent (Liechtenstein)'),
(6549, 'https://ror.org/04vkhtf23', 'no_lang_code', 1, 'https://ror.org/04vkhtf23 Crucell Johnson & Johnson (Netherlands)'),
(6550, 'https://ror.org/00kjr3917', 'en', 1, 'https://ror.org/00kjr3917 Ideon Science Park'),
(6551, 'https://ror.org/01astg473', 'en', 1, 'https://ror.org/01astg473 Japan Biological Informatics Consortium 般社団法人バイオ産業情報化コンソーシアム'),
(6552, 'https://ror.org/0456p3190', 'no_lang_code', 1, 'https://ror.org/0456p3190 VWR International (United States)'),
(6553, 'https://ror.org/006tyy056', 'no_lang_code', 1, 'https://ror.org/006tyy056 Integran (Canada)'),
(6554, 'https://ror.org/04nvba109', 'no_lang_code', 1, 'https://ror.org/04nvba109 CSL (Germany)'),
(6555, 'https://ror.org/027a0b050', 'no_lang_code', 1, 'https://ror.org/027a0b050 Integrated BioTherapeutics (United States)'),
(6556, 'https://ror.org/03skrcz21', 'en', 1, 'https://ror.org/03skrcz21 Joint Commission'),
(6557, 'https://ror.org/047dcfg79', 'no_lang_code', 1, 'https://ror.org/047dcfg79 Integrated Environmental Solutions (United Kingdom)'),
(6558, 'https://ror.org/02dgnkc37', 'no_lang_code', 1, 'https://ror.org/02dgnkc37 TDIC (United States)'),
(6559, 'https://ror.org/00shfde47', 'no_lang_code', 1, 'https://ror.org/00shfde47 Orkla (Sweden)'),
(6560, 'https://ror.org/02frwff62', 'it', 1, 'https://ror.org/02frwff62 CTO Andrea Alesini'),
(6561, 'https://ror.org/0059mbq09', 'no_lang_code', 1, 'https://ror.org/0059mbq09 Integrity Testing Laboratory (Canada)'),
(6562, 'https://ror.org/02r5scg33', 'no_lang_code', 1, 'https://ror.org/02r5scg33 Intel (Ireland)'),
(6563, 'https://ror.org/03e0mxz52', 'no_lang_code', 1, 'https://ror.org/03e0mxz52 Intelligent Energy (United Kingdom)'),
(6564, 'https://ror.org/02v7j5a68', 'no_lang_code', 1, 'https://ror.org/02v7j5a68 Intelligent Fiber Optic Systems (United States)'),
(6565, 'https://ror.org/02p54vf94', 'en', 1, 'https://ror.org/02p54vf94 DGA Partners'),
(6566, 'https://ror.org/02xmjm585', 'no_lang_code', 1, 'https://ror.org/02xmjm585 Intelligent Mechatronic Systems (Canada)'),
(6567, 'https://ror.org/013xmn143', 'no_lang_code', 1, 'https://ror.org/013xmn143 Baxter (Austria)'),
(6568, 'https://ror.org/04v1wg214', 'en', 1, 'https://ror.org/04v1wg214 Tucson Orthopaedic Institute'),
(6569, 'https://ror.org/02njbjk47', 'en', 1, 'https://ror.org/02njbjk47 DHHS Alliance'),
(6570, 'https://ror.org/03a7bpg58', 'en', 1, 'https://ror.org/03a7bpg58 Convención de la Farmacopea de Estados Unidos United States Pharmacopeial Convention'),
(6571, 'https://ror.org/03yebgx31', 'no_lang_code', 1, 'https://ror.org/03yebgx31 AbleNet (United States)'),
(6572, 'https://ror.org/04cmd9g05', 'no_lang_code', 1, 'https://ror.org/04cmd9g05 20/20 GeneSystem (United States)'),
(6573, 'https://ror.org/0286xn075', 'no_lang_code', 1, 'https://ror.org/0286xn075 21st Century Medicine (United States)'),
(6574, 'https://ror.org/00bz2pj54', 'no_lang_code', 1, 'https://ror.org/00bz2pj54 21st Century Therapeutics (United States)'),
(6575, 'https://ror.org/00q62jx03', 'no_lang_code', 1, 'https://ror.org/00q62jx03 23andMe (United States)'),
(6576, 'https://ror.org/057g30m29', 'no_lang_code', 1, 'https://ror.org/057g30m29 2B Technologies (United States)'),
(6577, 'https://ror.org/01n6e6j62', 'en', 1, 'https://ror.org/01n6e6j62 Agence des États-Unis pour le Développement International Agencia de los Estados Unidos para el Desarrollo Internacional United States Agency for International Development'),
(6578, 'https://ror.org/009frj756', 'no_lang_code', 1, 'https://ror.org/009frj756 360pi (Canada)'),
(6579, 'https://ror.org/003dqcp70', 'no_lang_code', 1, 'https://ror.org/003dqcp70 Fujirebio (Belgium)'),
(6580, 'https://ror.org/03qz3ng87', 'en', 1, 'https://ror.org/03qz3ng87 Inter-Tribal Council of Michigan'),
(6581, 'https://ror.org/057gt1g02', 'no_lang_code', 1, 'https://ror.org/057gt1g02 3D Molecular Designs (United States)'),
(6582, 'https://ror.org/030cz2x22', 'no_lang_code', 1, 'https://ror.org/030cz2x22 Interactive Drama (United States)'),
(6583, 'https://ror.org/02w335z67', 'no_lang_code', 1, 'https://ror.org/02w335z67 InterDigital (United States)'),
(6584, 'https://ror.org/01f7dp456', 'en', 1, 'https://ror.org/01f7dp456 Ministry of Food and Drug Safety'),
(6585, 'https://ror.org/029dkfk52', 'no_lang_code', 1, 'https://ror.org/029dkfk52 Interlab (United States)'),
(6586, 'https://ror.org/02vtgg877', 'no_lang_code', 1, 'https://ror.org/02vtgg877 Fusion (United States)'),
(6587, 'https://ror.org/03fa0tr49', 'no_lang_code', 1, 'https://ror.org/03fa0tr49 A&G Pharmaceutical (United States)'),
(6588, 'https://ror.org/01kngac24', 'no_lang_code', 1, 'https://ror.org/01kngac24 A Thinking Ape (Canada)'),
(6589, 'https://ror.org/04tnq4461', 'no_lang_code', 1, 'https://ror.org/04tnq4461 A&L Canada Laboratories (Canada)'),
(6590, 'https://ror.org/00hp40m78', 'no_lang_code', 1, 'https://ror.org/00hp40m78 AAC (United States)'),
(6591, 'https://ror.org/03mk1ty71', 'en', 1, 'https://ror.org/03mk1ty71 Abacus Health Solutions'),
(6592, 'https://ror.org/01zpyjx73', 'en', 1, 'https://ror.org/01zpyjx73 Renal Association'),
(6593, 'https://ror.org/0513ya078', 'no_lang_code', 1, 'https://ror.org/0513ya078 TerraBioGen (Canada)'),
(6594, 'https://ror.org/04waktx26', 'no_lang_code', 1, 'https://ror.org/04waktx26 ABB (United Kingdom)'),
(6595, 'https://ror.org/00ks5vt51', 'no_lang_code', 1, 'https://ror.org/00ks5vt51 ABB (Switzerland)'),
(6596, 'https://ror.org/00z21v095', 'no_lang_code', 1, 'https://ror.org/00z21v095 Abbott (Canada)'),
(6597, 'https://ror.org/05wzrja17', 'no_lang_code', 1, 'https://ror.org/05wzrja17 Abcam (United Kingdom)'),
(6598, 'https://ror.org/03qzgjs85', 'no_lang_code', 1, 'https://ror.org/03qzgjs85 Abeome Corporation (United States)'),
(6599, 'https://ror.org/04cfb2973', 'en', 1, 'https://ror.org/04cfb2973 Aberdeen City Council'),
(6600, 'https://ror.org/006efkq12', 'de', 1, 'https://ror.org/006efkq12 Unfallkrankenhaus Wien Lorenz Böhler'),
(6601, 'https://ror.org/04paq1j76', 'no_lang_code', 1, 'https://ror.org/04paq1j76 ScienceScope (United Kingdom)'),
(6602, 'https://ror.org/05c5e7249', 'en', 1, 'https://ror.org/05c5e7249 United States Military Entrance Processing Command'),
(6603, 'https://ror.org/05p35vd42', 'no_lang_code', 1, 'https://ror.org/05p35vd42 AbleLink Technologies (United States)'),
(6604, 'https://ror.org/00mhxn926', 'en', 1, 'https://ror.org/00mhxn926 Comisión para la Seguridad de los Productos de Consumo de los Estados Unidos United States Consumer Product Safety Commission'),
(6605, 'https://ror.org/02ycq1t04', 'no_lang_code', 1, 'https://ror.org/02ycq1t04 ABS Materials (United States)'),
(6606, 'https://ror.org/034s15752', 'en', 1, 'https://ror.org/034s15752 Academy for Educational Development'),
(6607, 'https://ror.org/00c489v88', 'en', 1, 'https://ror.org/00c489v88 Academy of Medical Sciences'),
(6608, 'https://ror.org/00k1mwv09', 'en', 1, 'https://ror.org/00k1mwv09 United States Congress'),
(6609, 'https://ror.org/04xsveh31', 'en', 1, 'https://ror.org/04xsveh31 Academy of the Social Sciences in Australia'),
(6610, 'https://ror.org/01pv83h16', 'en', 1, 'https://ror.org/01pv83h16 Acadia Institute of Oceanography'),
(6611, 'https://ror.org/01dp60j32', 'no_lang_code', 1, 'https://ror.org/01dp60j32 International Rectifier (United Kingdom)'),
(6612, 'https://ror.org/03y3xcd57', 'no_lang_code', 1, 'https://ror.org/03y3xcd57 Acadian Seaplants (Canada)'),
(6613, 'https://ror.org/00ys1w968', 'no_lang_code', 1, 'https://ror.org/00ys1w968 AccelLab (Canada)'),
(6614, 'https://ror.org/050hhcw63', 'en', 1, 'https://ror.org/050hhcw63 Accents On Health'),
(6615, 'https://ror.org/02vrwn188', 'en', 1, 'https://ror.org/02vrwn188 International Society for Infectious Diseases'),
(6616, 'https://ror.org/03t3e7k14', 'en', 1, 'https://ror.org/03t3e7k14 International Society for Experimental Hematology'),
(6617, 'https://ror.org/01g31bd79', 'en', 1, 'https://ror.org/01g31bd79 International Technology and Engineering Educators Association'),
(6618, 'https://ror.org/00bnthp71', 'fr', 1, 'https://ror.org/00bnthp71 Institut de Recherche pour le Développement'),
(6619, 'https://ror.org/030anrr19', 'no_lang_code', 1, 'https://ror.org/030anrr19 Thermo Fisher Scientific (Lithuania)'),
(6620, 'https://ror.org/04hd4qy94', 'it', 1, 'https://ror.org/04hd4qy94 Ospedale SS. Annunziata'),
(6621, 'https://ror.org/0195ge738', 'en', 1, 'https://ror.org/0195ge738 Access Community Health Network'),
(6622, 'https://ror.org/03yr6s895', 'no_lang_code', 1, 'https://ror.org/03yr6s895 Genomas (United States)'),
(6623, 'https://ror.org/05qzgry88', 'en', 1, 'https://ror.org/05qzgry88 Accreditation Board for Engineering and Technology'),
(6624, 'https://ror.org/04m21na87', 'no_lang_code', 1, 'https://ror.org/04m21na87 Genomatica (United States)'),
(6625, 'https://ror.org/05gd4rg64', 'no_lang_code', 1, 'https://ror.org/05gd4rg64 InterPhases Solar (United States)'),
(6626, 'https://ror.org/04b33je61', 'no_lang_code', 1, 'https://ror.org/04b33je61 InterScience (United States)'),
(6627, 'https://ror.org/02vydqh80', 'en', 1, 'https://ror.org/02vydqh80 Interstate Shellfish Sanitation Conference'),
(6628, 'https://ror.org/009jvpf03', 'no_lang_code', 1, 'https://ror.org/009jvpf03 Integrated DNA Technologies (United States)'),
(6629, 'https://ror.org/02ycgwy86', 'es', 1, 'https://ror.org/02ycgwy86 Profamilia'),
(6630, 'https://ror.org/05qvwqt73', 'no_lang_code', 1, 'https://ror.org/05qvwqt73 IntraMedical Imaging (United States)'),
(6631, 'https://ror.org/045vz2p90', 'no_lang_code', 1, 'https://ror.org/045vz2p90 Intrafinity (Canada)'),
(6632, 'https://ror.org/033c74k08', 'no_lang_code', 1, 'https://ror.org/033c74k08 Intuitive Biosciences (United States)'),
(6633, 'https://ror.org/05g2n4m79', 'no_lang_code', 1, 'https://ror.org/05g2n4m79 Intuitive Surgical (United States)'),
(6634, 'https://ror.org/010hx2v28', 'no_lang_code', 1, 'https://ror.org/010hx2v28 Inverness Research (United States)'),
(6635, 'https://ror.org/00s5h6z84', 'no_lang_code', 1, 'https://ror.org/00s5h6z84 INVIDI Technologies (Canada)'),
(6636, 'https://ror.org/01qdw1m65', 'en', 1, 'https://ror.org/01qdw1m65 Passport to Knowledge'),
(6637, 'https://ror.org/0348rpk45', 'no_lang_code', 1, 'https://ror.org/0348rpk45 InXsol (United States)'),
(6638, 'https://ror.org/02ha9tc40', 'en', 1, 'https://ror.org/02ha9tc40 Georgia Department of Community Health'),
(6639, 'https://ror.org/041841277', 'en', 1, 'https://ror.org/041841277 Iolani School'),
(6640, 'https://ror.org/03nmpxq27', 'en', 1, 'https://ror.org/03nmpxq27 Georgia Department of Agriculture'),
(6641, 'https://ror.org/0144z1077', 'no_lang_code', 1, 'https://ror.org/0144z1077 Iomai (United States)'),
(6642, 'https://ror.org/00aqgm431', 'en', 1, 'https://ror.org/00aqgm431 Island Peer Review Organization'),
(6643, 'https://ror.org/0554dgq35', 'en', 1, 'https://ror.org/0554dgq35 Georgia Department of Behavioral Health and Developmental Disabilities'),
(6644, 'https://ror.org/011vw2696', 'no_lang_code', 1, 'https://ror.org/011vw2696 Geospace Research (United States)'),
(6645, 'https://ror.org/00aac7f28', 'no_lang_code', 1, 'https://ror.org/00aac7f28 Ion Physics (United States)'),
(6646, 'https://ror.org/0366h3j49', 'no_lang_code', 1, 'https://ror.org/0366h3j49 Geotechnical Observations (United Kingdom)'),
(6647, 'https://ror.org/01ncrbb53', 'no_lang_code', 1, 'https://ror.org/01ncrbb53 Gerber Technology (United States)'),
(6648, 'https://ror.org/025rx1w27', 'no_lang_code', 1, 'https://ror.org/025rx1w27 IONICS Mass Spectrometry (Canada)'),
(6649, 'https://ror.org/03av0zr92', 'no_lang_code', 1, 'https://ror.org/03av0zr92 Germinal (United Kingdom)'),
(6650, 'https://ror.org/00fm8vh73', 'no_lang_code', 1, 'https://ror.org/00fm8vh73 GigaGen (United States)'),
(6651, 'https://ror.org/019kwgw50', 'no_lang_code', 1, 'https://ror.org/019kwgw50 Ionwerks (United States)'),
(6652, 'https://ror.org/03qkaf287', 'en', 1, 'https://ror.org/03qkaf287 Gila River Indian Community'),
(6653, 'https://ror.org/03v7zx932', 'en', 1, 'https://ror.org/03v7zx932 Girls Incorporated'),
(6654, 'https://ror.org/03qsrxk46', 'no_lang_code', 1, 'https://ror.org/03qsrxk46 Giro (Canada)'),
(6655, 'https://ror.org/04kt4r851', 'no_lang_code', 1, 'https://ror.org/04kt4r851 IPAC Chemicals (Canada)'),
(6656, 'https://ror.org/014a5gx79', 'en', 1, 'https://ror.org/014a5gx79 Departamento de Vivienda y Desarrollo Urbano de los Estados Unidos Département du logement et du développement urbain des États-unis United States Department of Housing and Urban Development'),
(6657, 'https://ror.org/02z6ck570', 'no_lang_code', 1, 'https://ror.org/02z6ck570 IPL (Canada)'),
(6658, 'https://ror.org/05mbkbj54', 'en', 1, 'https://ror.org/05mbkbj54 Departamento de Trabajo de los Estados Unidos Département du travail des États-unis United States Department of Labor'),
(6659, 'https://ror.org/01bpck236', 'no_lang_code', 1, 'https://ror.org/01bpck236 Global Relay (Canada)'),
(6660, 'https://ror.org/000czbn37', 'no_lang_code', 1, 'https://ror.org/000czbn37 iProgen Biotech (Canada)'),
(6661, 'https://ror.org/04kkvt144', 'no_lang_code', 1, 'https://ror.org/04kkvt144 GlobeImmune (United States)'),
(6662, 'https://ror.org/00655dk85', 'en', 1, 'https://ror.org/00655dk85 Glasgow Life'),
(6663, 'https://ror.org/01h8ey223', 'it', 1, 'https://ror.org/01h8ey223 MultiMedica'),
(6664, 'https://ror.org/03ep7eq57', 'no_lang_code', 1, 'https://ror.org/03ep7eq57 iQmetrix (Canada)'),
(6665, 'https://ror.org/04d95rj19', 'en', 1, 'https://ror.org/04d95rj19 Glasgow Science Centre'),
(6666, 'https://ror.org/02bwz0282', 'no_lang_code', 1, 'https://ror.org/02bwz0282 GLC Biotechnology (United States)'),
(6667, 'https://ror.org/03wmzb046', 'no_lang_code', 1, 'https://ror.org/03wmzb046 Iridian Spectral Technologies (Canada)'),
(6668, 'https://ror.org/02e1syn97', 'en', 1, 'https://ror.org/02e1syn97 Glendale Community College'),
(6669, 'https://ror.org/05pm6yf19', 'no_lang_code', 1, 'https://ror.org/05pm6yf19 Iris AO (United States)'),
(6670, 'https://ror.org/04b5pvj95', 'no_lang_code', 1, 'https://ror.org/04b5pvj95 ISCA Technologies (United States)'),
(6671, 'https://ror.org/0269j3194', 'en', 1, 'https://ror.org/0269j3194 Global HIV Vaccine Enterprise'),
(6672, 'https://ror.org/03v6ftq03', 'en', 1, 'https://ror.org/03v6ftq03 International Rescue Committee'),
(6673, 'https://ror.org/042j5ge28', 'no_lang_code', 1, 'https://ror.org/042j5ge28 Global Vaccines (United States)'),
(6674, 'https://ror.org/05knjzg24', 'no_lang_code', 1, 'https://ror.org/05knjzg24 Glycobia (United States)'),
(6675, 'https://ror.org/02wvnxv35', 'no_lang_code', 1, 'https://ror.org/02wvnxv35 Inflazyme (Canada)'),
(6676, 'https://ror.org/04t28w240', 'no_lang_code', 1, 'https://ror.org/04t28w240 GlycoMira Therapeutics (United States)'),
(6677, 'https://ror.org/04eb1br47', 'no_lang_code', 1, 'https://ror.org/04eb1br47 Lectenz Bio (United States)'),
(6678, 'https://ror.org/00j349n10', 'no_lang_code', 1, 'https://ror.org/00j349n10 GlySens (United States)'),
(6679, 'https://ror.org/05drhbp30', 'no_lang_code', 1, 'https://ror.org/05drhbp30 GMA Industries (United States)'),
(6680, 'https://ror.org/02f3vqc77', 'en', 1, 'https://ror.org/02f3vqc77 Coastline Community College'),
(6681, 'https://ror.org/028t43p77', 'en', 1, 'https://ror.org/028t43p77 Departamento del Tesoro de los Estados Unidos Département du trésor des États-unis United States Department of the Treasury'),
(6682, 'https://ror.org/00dhe8f29', 'no_lang_code', 1, 'https://ror.org/00dhe8f29 Gooch & Housego (United Kingdom)'),
(6683, 'https://ror.org/01ptddh35', 'en', 1, 'https://ror.org/01ptddh35 Island Institute'),
(6684, 'https://ror.org/012es9h30', 'no_lang_code', 1, 'https://ror.org/012es9h30 Gradient Lens Corporation (United States)'),
(6685, 'https://ror.org/01g19gh26', 'no_lang_code', 1, 'https://ror.org/01g19gh26 Carter Printing Company (United States)'),
(6686, 'https://ror.org/03vetm947', 'no_lang_code', 1, 'https://ror.org/03vetm947 Isowater Corporation (Canada)'),
(6687, 'https://ror.org/00wkay776', 'en', 1, 'https://ror.org/00wkay776 Carthage College'),
(6688, 'https://ror.org/03mwfxd89', 'no_lang_code', 1, 'https://ror.org/03mwfxd89 GrammaTech (United States)'),
(6689, 'https://ror.org/00bxgws88', 'en', 1, 'https://ror.org/00bxgws88 Cascade AIDS Project'),
(6690, 'https://ror.org/02wxws056', 'no_lang_code', 1, 'https://ror.org/02wxws056 Dynamic Graphics (United States)'),
(6691, 'https://ror.org/00mz09160', 'en', 1, 'https://ror.org/00mz09160 Itasca Community College'),
(6692, 'https://ror.org/00zxfn928', 'no_lang_code', 1, 'https://ror.org/00zxfn928 Gratings Incorporated (United States)'),
(6693, 'https://ror.org/00w3w6d37', 'en', 1, 'https://ror.org/00w3w6d37 Great Lakes Inter Tribal Council'),
(6694, 'https://ror.org/05ggkk749', 'en', 1, 'https://ror.org/05ggkk749 Center for Applied Special Technology'),
(6695, 'https://ror.org/00zqnhb80', 'no_lang_code', 1, 'https://ror.org/00zqnhb80 Avensys (Canada)'),
(6696, 'https://ror.org/0016w2w54', 'en', 1, 'https://ror.org/0016w2w54 Des Moines Area Community College'),
(6697, 'https://ror.org/03vpkt967', 'en', 1, 'https://ror.org/03vpkt967 Lancaster Theological Seminary United Church of Christ'),
(6698, 'https://ror.org/03q43d318', 'no_lang_code', 1, 'https://ror.org/03q43d318 iTherX (United States)'),
(6699, 'https://ror.org/03g99t434', 'en', 1, 'https://ror.org/03g99t434 Casa Esperanza'),
(6700, 'https://ror.org/04sf10b93', 'no_lang_code', 1, 'https://ror.org/04sf10b93 ITI Energy (United Kingdom)'),
(6701, 'https://ror.org/00p8tz706', 'en', 1, 'https://ror.org/00p8tz706 Desert Botanical Garden'),
(6702, 'https://ror.org/03crdwy95', 'en', 1, 'https://ror.org/03crdwy95 Greater Manchester Police'),
(6703, 'https://ror.org/043tf3791', 'en', 1, 'https://ror.org/043tf3791 Washington Educational Telecommunications Association'),
(6704, 'https://ror.org/023q9w935', 'no_lang_code', 1, 'https://ror.org/023q9w935 INRIX (United Kingdom)'),
(6705, 'https://ror.org/043953r63', 'en', 1, 'https://ror.org/043953r63 Auburn School District'),
(6706, 'https://ror.org/0212bzt20', 'no_lang_code', 1, 'https://ror.org/0212bzt20 DesignBuilder Software (United Kingdom)'),
(6707, 'https://ror.org/04tz1ar37', 'no_lang_code', 1, 'https://ror.org/04tz1ar37 ITN Energy Systems (United States)'),
(6708, 'https://ror.org/00cnpxz07', 'en', 1, 'https://ror.org/00cnpxz07 Connecticut Business and Industry Association'),
(6709, 'https://ror.org/01x59wb38', 'no_lang_code', 1, 'https://ror.org/01x59wb38 DesignMedix (United States)'),
(6710, 'https://ror.org/033cjdk78', 'en', 1, 'https://ror.org/033cjdk78 Green Valley High School'),
(6711, 'https://ror.org/01b5xma27', 'en', 1, 'https://ror.org/01b5xma27 Greenfield Community College'),
(6712, 'https://ror.org/02d33pz63', 'no_lang_code', 1, 'https://ror.org/02d33pz63 CCS Associates (United States)'),
(6713, 'https://ror.org/01rdxvn05', 'no_lang_code', 1, 'https://ror.org/01rdxvn05 Galderma (United States)'),
(6714, 'https://ror.org/04pq45e89', 'en', 1, 'https://ror.org/04pq45e89 Detroit Area Pre College Engineering Program'),
(6715, 'https://ror.org/00pfggx80', 'no_lang_code', 1, 'https://ror.org/00pfggx80 Sainsbury''s (United Kingdom)'),
(6716, 'https://ror.org/025jays06', 'no_lang_code', 1, 'https://ror.org/025jays06 Greenfield Research (Canada)'),
(6717, 'https://ror.org/01nzyv932', 'no_lang_code', 1, 'https://ror.org/01nzyv932 CDM Group (United States)'),
(6718, 'https://ror.org/040ztay26', 'en', 1, 'https://ror.org/040ztay26 Greenville Technical College'),
(6719, 'https://ror.org/01gazqa80', 'pt', 1, 'https://ror.org/01gazqa80 Centro de Biotecnologia Agrícola e Agro Alimentar do Alentejo'),
(6720, 'https://ror.org/00pq3bb48', 'no_lang_code', 1, 'https://ror.org/00pq3bb48 Grove Instruments (United States)'),
(6721, 'https://ror.org/04z3gk160', 'no_lang_code', 1, 'https://ror.org/04z3gk160 Detroit R&D (United States)'),
(6722, 'https://ror.org/047khcd84', 'no_lang_code', 1, 'https://ror.org/047khcd84 Jacobs (United Kingdom)'),
(6723, 'https://ror.org/03by7ks57', 'fr', 1, 'https://ror.org/03by7ks57 Cégep André Laurendeau Cégep andré-laurendeau'),
(6724, 'https://ror.org/02p7gn625', 'fr', 1, 'https://ror.org/02p7gn625 Cégep de l''Abitibi Témiscamingue Cégep de l''abitibi-témiscamingue'),
(6725, 'https://ror.org/011qnyz94', 'fr', 1, 'https://ror.org/011qnyz94 Cégep de la Gaspésie et des Îles'),
(6726, 'https://ror.org/03hgang94', 'en', 1, 'https://ror.org/03hgang94 Developmental Studies Center'),
(6727, 'https://ror.org/02edt9m80', 'no_lang_code', 1, 'https://ror.org/02edt9m80 GT Urological (United States)'),
(6728, 'https://ror.org/05nzdz804', 'no_lang_code', 1, 'https://ror.org/05nzdz804 James Bell Associates (United States)');
INSERT INTO `rors` VALUES
(6729, 'https://ror.org/013cpfz63', 'no_lang_code', 1, 'https://ror.org/013cpfz63 Cel-Sci (United States)'),
(6730, 'https://ror.org/04ahd9r49', 'no_lang_code', 1, 'https://ror.org/04ahd9r49 Celator Pharmaceuticals (Canada)'),
(6731, 'https://ror.org/01xqc9g05', 'en', 1, 'https://ror.org/01xqc9g05 University of Jamestown'),
(6732, 'https://ror.org/01kfp4j62', 'no_lang_code', 1, 'https://ror.org/01kfp4j62 UNICOM Global (United States)'),
(6733, 'https://ror.org/03svd1086', 'no_lang_code', 1, 'https://ror.org/03svd1086 Jarvik Heart (United States)'),
(6734, 'https://ror.org/043h2ky09', 'no_lang_code', 1, 'https://ror.org/043h2ky09 Precigen (United States)'),
(6735, 'https://ror.org/01jnyam78', 'en', 1, 'https://ror.org/01jnyam78 Jarvis Christian College'),
(6736, 'https://ror.org/01scjva02', 'no_lang_code', 1, 'https://ror.org/01scjva02 Jeremy Benn Associates (United Kingdom)'),
(6737, 'https://ror.org/006gpqj72', 'no_lang_code', 1, 'https://ror.org/006gpqj72 rEVO Biologics (United States)'),
(6738, 'https://ror.org/03p5x8053', 'no_lang_code', 1, 'https://ror.org/03p5x8053 Cell Preservation Services (United States)'),
(6739, 'https://ror.org/03k4zc121', 'no_lang_code', 1, 'https://ror.org/03k4zc121 Cell Signaling Technology (United States)'),
(6740, 'https://ror.org/03yab7k30', 'no_lang_code', 1, 'https://ror.org/03yab7k30 Cell2B (Portugal)'),
(6741, 'https://ror.org/0080fc349', 'no_lang_code', 1, 'https://ror.org/0080fc349 JEOL (United Kingdom)'),
(6742, 'https://ror.org/009ee8v97', 'no_lang_code', 1, 'https://ror.org/009ee8v97 Jet Process Corporation (United States)'),
(6743, 'https://ror.org/047pts877', 'no_lang_code', 1, 'https://ror.org/047pts877 Cellecta (United States)'),
(6744, 'https://ror.org/04djwpq60', 'no_lang_code', 1, 'https://ror.org/04djwpq60 Cellerant Therapeutics (United States)'),
(6745, 'https://ror.org/027zey487', 'no_lang_code', 1, 'https://ror.org/027zey487 Celdara Medical (United States)'),
(6746, 'https://ror.org/05mxb6722', 'no_lang_code', 1, 'https://ror.org/05mxb6722 CD-adapco (United Kingdom)'),
(6747, 'https://ror.org/048w01909', 'no_lang_code', 1, 'https://ror.org/048w01909 Cellex (United States)'),
(6748, 'https://ror.org/0542yj463', 'no_lang_code', 1, 'https://ror.org/0542yj463 Guided Therapeutics (United States)'),
(6749, 'https://ror.org/01z4haz29', 'no_lang_code', 1, 'https://ror.org/01z4haz29 Guild Associates (United States)'),
(6750, 'https://ror.org/0374t0s90', 'no_lang_code', 1, 'https://ror.org/0374t0s90 Jim Metzner Productions (United States)'),
(6751, 'https://ror.org/00j161312', 'en', 1, 'https://ror.org/00j161312 Guy''s and St Thomas'' NHS Foundation Trust'),
(6752, 'https://ror.org/004wh0w58', 'en', 1, 'https://ror.org/004wh0w58 Guthrie Foundation'),
(6753, 'https://ror.org/009y6jy27', 'no_lang_code', 1, 'https://ror.org/009y6jy27 GVD Corporation (United States)'),
(6754, 'https://ror.org/02q865m71', 'en', 1, 'https://ror.org/02q865m71 Diablo Valley College'),
(6755, 'https://ror.org/03bzqy127', 'en', 1, 'https://ror.org/03bzqy127 Gwinnett Coalition for Health & Human Services'),
(6756, 'https://ror.org/03hj3bw29', 'no_lang_code', 1, 'https://ror.org/03hj3bw29 H & N Instruments (United States)'),
(6757, 'https://ror.org/05tkjm312', 'no_lang_code', 1, 'https://ror.org/05tkjm312 DiagnoCure (Canada)'),
(6758, 'https://ror.org/05h9b8n23', 'no_lang_code', 1, 'https://ror.org/05h9b8n23 Diagnostics for the Real World (United States)'),
(6759, 'https://ror.org/03xpwxy65', 'no_lang_code', 1, 'https://ror.org/03xpwxy65 DiaMedica (Canada)'),
(6760, 'https://ror.org/01pa88s49', 'no_lang_code', 1, 'https://ror.org/01pa88s49 Diamond Materials (United States)'),
(6761, 'https://ror.org/02be9aj39', 'en', 1, 'https://ror.org/02be9aj39 H. R. MacMillan Space Centre'),
(6762, 'https://ror.org/05pgv5n44', 'no_lang_code', 1, 'https://ror.org/05pgv5n44 John Snow (United States)'),
(6763, 'https://ror.org/049r42y35', 'no_lang_code', 1, 'https://ror.org/049r42y35 Skanska (United Kingdom)'),
(6764, 'https://ror.org/01j538c21', 'no_lang_code', 1, 'https://ror.org/01j538c21 Evotec (United States)'),
(6765, 'https://ror.org/020nseq49', 'no_lang_code', 1, 'https://ror.org/020nseq49 DIApedia (United States)'),
(6766, 'https://ror.org/030h0wa62', 'no_lang_code', 1, 'https://ror.org/030h0wa62 JBS International (United States)'),
(6767, 'https://ror.org/03kt2r684', 'en', 1, 'https://ror.org/03kt2r684 H.T. Harvey & Associates'),
(6768, 'https://ror.org/01f2jgq77', 'en', 1, 'https://ror.org/01f2jgq77 H2O 4 All'),
(6769, 'https://ror.org/00da6z433', 'no_lang_code', 1, 'https://ror.org/00da6z433 Haematologic Technologies (United States)'),
(6770, 'https://ror.org/002t6g510', 'en', 1, 'https://ror.org/002t6g510 Dick Young Productions'),
(6771, 'https://ror.org/01hrt5088', 'en', 1, 'https://ror.org/01hrt5088 Catawba College'),
(6772, 'https://ror.org/05jd5ze73', 'en', 1, 'https://ror.org/05jd5ze73 Joliet Junior College'),
(6773, 'https://ror.org/0584why53', 'en', 1, 'https://ror.org/0584why53 Hagerstown Community College'),
(6774, 'https://ror.org/05vm6be10', 'no_lang_code', 1, 'https://ror.org/05vm6be10 Lipman Hearne (United States)'),
(6775, 'https://ror.org/03hggzq81', 'en', 1, 'https://ror.org/03hggzq81 Didi Hirsch Mental Health Services'),
(6776, 'https://ror.org/033r53w79', 'no_lang_code', 1, 'https://ror.org/033r53w79 Halsall (Canada)'),
(6777, 'https://ror.org/02y85r186', 'en', 1, 'https://ror.org/02y85r186 Ohio County Behavioral Health Authorities'),
(6778, 'https://ror.org/054fjvz18', 'en', 1, 'https://ror.org/054fjvz18 Center for American Archeology'),
(6779, 'https://ror.org/020pekv35', 'en', 1, 'https://ror.org/020pekv35 Center for Applied Linguistics'),
(6780, 'https://ror.org/04rx8g170', 'en', 1, 'https://ror.org/04rx8g170 Joseph Rowntree Foundation'),
(6781, 'https://ror.org/05nwcje70', 'no_lang_code', 1, 'https://ror.org/05nwcje70 Hans Tech (United States)'),
(6782, 'https://ror.org/040ktyf25', 'no_lang_code', 1, 'https://ror.org/040ktyf25 JP Laboratories (United States)'),
(6783, 'https://ror.org/00r6a8318', 'en', 1, 'https://ror.org/00r6a8318 Center for Community Alternatives'),
(6784, 'https://ror.org/04w5cyc72', 'no_lang_code', 1, 'https://ror.org/04w5cyc72 Diffinity Genomics (United States)'),
(6785, 'https://ror.org/028ca6f22', 'en', 1, 'https://ror.org/028ca6f22 Clark Planetarium'),
(6786, 'https://ror.org/01qma4124', 'no_lang_code', 1, 'https://ror.org/01qma4124 JS Genetics (United States)'),
(6787, 'https://ror.org/05skkwg31', 'no_lang_code', 1, 'https://ror.org/05skkwg31 Digestive Care (United States)'),
(6788, 'https://ror.org/021gsjb92', 'no_lang_code', 1, 'https://ror.org/021gsjb92 Diacon (Canada)'),
(6789, 'https://ror.org/02n4wd178', 'no_lang_code', 1, 'https://ror.org/02n4wd178 Junk King (United States)'),
(6790, 'https://ror.org/054q9r058', 'no_lang_code', 1, 'https://ror.org/054q9r058 Envigo (United States)'),
(6791, 'https://ror.org/04r14bj23', 'en', 1, 'https://ror.org/04r14bj23 DigiBC (Canada)'),
(6792, 'https://ror.org/00bdvg512', 'no_lang_code', 1, 'https://ror.org/00bdvg512 Juvaris BioTherapeutics (United States)'),
(6793, 'https://ror.org/005qf7j34', 'en', 1, 'https://ror.org/005qf7j34 Harlem United'),
(6794, 'https://ror.org/0271yft62', 'no_lang_code', 1, 'https://ror.org/0271yft62 Harrington Software Associates'),
(6795, 'https://ror.org/02mfa7r39', 'no_lang_code', 1, 'https://ror.org/02mfa7r39 Digital Payment Technologies (Canada)'),
(6796, 'https://ror.org/0251x9332', 'en', 1, 'https://ror.org/0251x9332 John Wesley Community Health Institute'),
(6797, 'https://ror.org/04ffs2p40', 'en', 1, 'https://ror.org/04ffs2p40 Aspire Health Partners'),
(6798, 'https://ror.org/03h7x4635', 'no_lang_code', 1, 'https://ror.org/03h7x4635 L3Harris (Canada)'),
(6799, 'https://ror.org/012e11c45', 'no_lang_code', 1, 'https://ror.org/012e11c45 JWK Corporation (United States)'),
(6800, 'https://ror.org/002j9jj25', 'en', 1, 'https://ror.org/002j9jj25 Harrisburg Area Community College'),
(6801, 'https://ror.org/05mk5sy16', 'no_lang_code', 1, 'https://ror.org/05mk5sy16 K&A Wireless (United States)'),
(6802, 'https://ror.org/00xdqtv86', 'en', 1, 'https://ror.org/00xdqtv86 Association of Health Care Journalists'),
(6803, 'https://ror.org/01myrq118', 'en', 1, 'https://ror.org/01myrq118 Hastings College'),
(6804, 'https://ror.org/00w8fet54', 'no_lang_code', 1, 'https://ror.org/00w8fet54 Kane Biotech (Canada)'),
(6805, 'https://ror.org/01m108388', 'no_lang_code', 1, 'https://ror.org/01m108388 Dimension Technologies (United States)'),
(6806, 'https://ror.org/032jtv165', 'no_lang_code', 1, 'https://ror.org/032jtv165 Hawaii Biotech (United States)'),
(6807, 'https://ror.org/01dhwg439', 'no_lang_code', 1, 'https://ror.org/01dhwg439 Hauser (United States)'),
(6808, 'https://ror.org/01g8b9k67', 'en', 1, 'https://ror.org/01g8b9k67 Center for Image Processing in Education'),
(6809, 'https://ror.org/00sdy7y63', 'en', 1, 'https://ror.org/00sdy7y63 Center for Innovative Public Health Research'),
(6810, 'https://ror.org/026ms9533', 'en', 1, 'https://ror.org/026ms9533 Hazardous Materials Training and Research Institute'),
(6811, 'https://ror.org/054abn387', 'no_lang_code', 1, 'https://ror.org/054abn387 Dimera (United States)'),
(6812, 'https://ror.org/03hpmwj60', 'en', 1, 'https://ror.org/03hpmwj60 Health and Hospital Corporation'),
(6813, 'https://ror.org/050ey5v22', 'no_lang_code', 1, 'https://ror.org/050ey5v22 Health Decisions (United States)'),
(6814, 'https://ror.org/056d0k256', 'en', 1, 'https://ror.org/056d0k256 Sterling College - Vermont'),
(6815, 'https://ror.org/01gnjkm30', 'no_lang_code', 1, 'https://ror.org/01gnjkm30 Kapteyn Murnane Laboratories'),
(6816, 'https://ror.org/03rbsqr59', 'en', 1, 'https://ror.org/03rbsqr59 Diné College'),
(6817, 'https://ror.org/01egexe84', 'no_lang_code', 1, 'https://ror.org/01egexe84 Kardium (Canada)'),
(6818, 'https://ror.org/034xych09', 'en', 1, 'https://ror.org/034xych09 Winchester Science Centre'),
(6819, 'https://ror.org/02kvf6r88', 'no_lang_code', 1, 'https://ror.org/02kvf6r88 Hartley & Associates'),
(6820, 'https://ror.org/021wvg932', 'no_lang_code', 1, 'https://ror.org/021wvg932 Center For Remote Sensing (United States)'),
(6821, 'https://ror.org/018f35e53', 'en', 1, 'https://ror.org/018f35e53 Health Media Lab'),
(6822, 'https://ror.org/04k7qar56', 'en', 1, 'https://ror.org/04k7qar56 Ministry of Health Ministério da Saúde'),
(6823, 'https://ror.org/0015zns27', 'no_lang_code', 1, 'https://ror.org/0015zns27 KCTS 9 (United States)'),
(6824, 'https://ror.org/02bwfhj24', 'en', 1, 'https://ror.org/02bwfhj24 Center for Telepsychology'),
(6825, 'https://ror.org/01nda5g26', 'no_lang_code', 1, 'https://ror.org/01nda5g26 KDH Research & Communication (United States)'),
(6826, 'https://ror.org/00xwgwv92', 'no_lang_code', 1, 'https://ror.org/00xwgwv92 Kelly Services (United States)'),
(6827, 'https://ror.org/03k84rm07', 'en', 1, 'https://ror.org/03k84rm07 Center for Environmental Health'),
(6828, 'https://ror.org/01jtghg16', 'no_lang_code', 1, 'https://ror.org/01jtghg16 DiscoveRx (United States)'),
(6829, 'https://ror.org/05mnftd11', 'en', 1, 'https://ror.org/05mnftd11 Center for Prevention and Counseling'),
(6830, 'https://ror.org/03swwwm05', 'en', 1, 'https://ror.org/03swwwm05 Health Services Center'),
(6831, 'https://ror.org/02g5x8q86', 'en', 1, 'https://ror.org/02g5x8q86 Discovery Centre'),
(6832, 'https://ror.org/01tam1k81', 'en', 1, 'https://ror.org/01tam1k81 Healthcare Education Associates'),
(6833, 'https://ror.org/0390tt424', 'en', 1, 'https://ror.org/0390tt424 HealthCare Interactive'),
(6834, 'https://ror.org/00vhzxs21', 'no_lang_code', 1, 'https://ror.org/00vhzxs21 Immusoft (United States)'),
(6835, 'https://ror.org/00t0fph81', 'no_lang_code', 1, 'https://ror.org/00t0fph81 HealthSim (United States)'),
(6836, 'https://ror.org/00nkvag20', 'en', 1, 'https://ror.org/00nkvag20 Discovery Place'),
(6837, 'https://ror.org/00770p954', 'en', 1, 'https://ror.org/00770p954 Healthcare Technology Systems'),
(6838, 'https://ror.org/01cj6ar20', 'no_lang_code', 1, 'https://ror.org/01cj6ar20 DiscoveryBioMed (United States)'),
(6839, 'https://ror.org/02tcncc65', 'en', 1, 'https://ror.org/02tcncc65 Centerforce'),
(6840, 'https://ror.org/01c3pwn40', 'no_lang_code', 1, 'https://ror.org/01c3pwn40 Kent Displays (United States)'),
(6841, 'https://ror.org/05pz32j92', 'no_lang_code', 1, 'https://ror.org/05pz32j92 Kent Optronics (United States)'),
(6842, 'https://ror.org/04cd6wt71', 'no_lang_code', 1, 'https://ror.org/04cd6wt71 Kent SeaTech Corporation (United States)'),
(6843, 'https://ror.org/03egepy41', 'no_lang_code', 1, 'https://ror.org/03egepy41 DMetrix (United States)'),
(6844, 'https://ror.org/03q47r263', 'no_lang_code', 1, 'https://ror.org/03q47r263 DMH Associates (United States)'),
(6845, 'https://ror.org/02fncne76', 'en', 1, 'https://ror.org/02fncne76 Kentucky Wesleyan College'),
(6846, 'https://ror.org/02wv0bc69', 'no_lang_code', 1, 'https://ror.org/02wv0bc69 DNA Polymerase Technology (United States)'),
(6847, 'https://ror.org/03hdhbn34', 'no_lang_code', 1, 'https://ror.org/03hdhbn34 DNA Software (United States)'),
(6848, 'https://ror.org/04deyvw92', 'en', 1, 'https://ror.org/04deyvw92 Kestrel Institute'),
(6849, 'https://ror.org/01mc1qv75', 'no_lang_code', 1, 'https://ror.org/01mc1qv75 Kestrel Labs (United States)'),
(6850, 'https://ror.org/05x20ta98', 'no_lang_code', 1, 'https://ror.org/05x20ta98 Information Management Consultants (United States)'),
(6851, 'https://ror.org/0008kdt06', 'en', 1, 'https://ror.org/0008kdt06 Hearthstone Alzheimer Care'),
(6852, 'https://ror.org/05ggej879', 'no_lang_code', 1, 'https://ror.org/05ggej879 HeartVista (United States)'),
(6853, 'https://ror.org/01by6g473', 'en', 1, 'https://ror.org/01by6g473 Central Oregon Community College'),
(6854, 'https://ror.org/0548qkv95', 'no_lang_code', 1, 'https://ror.org/0548qkv95 DNASTAR (United States)'),
(6855, 'https://ror.org/025ngyw60', 'en', 1, 'https://ror.org/025ngyw60 Doane University'),
(6856, 'https://ror.org/0497h1m47', 'no_lang_code', 1, 'https://ror.org/0497h1m47 Key Tech (United States)'),
(6857, 'https://ror.org/04rcqnp59', 'no_lang_code', 1, 'https://ror.org/04rcqnp59 Heidelberg University'),
(6858, 'https://ror.org/03jsg8m50', 'no_lang_code', 1, 'https://ror.org/03jsg8m50 DOSECC Exploration Services (United States)'),
(6859, 'https://ror.org/03vj54r15', 'no_lang_code', 1, 'https://ror.org/03vj54r15 Dot Metrics Technologies (United States)'),
(6860, 'https://ror.org/057bx8w90', 'no_lang_code', 1, 'https://ror.org/057bx8w90 Kinder Magic Software (United States)'),
(6861, 'https://ror.org/04b05q786', 'no_lang_code', 1, 'https://ror.org/04b05q786 KineMed (United States)'),
(6862, 'https://ror.org/03qqc4d32', 'no_lang_code', 1, 'https://ror.org/03qqc4d32 QLT (Canada)'),
(6863, 'https://ror.org/02s4ke886', 'no_lang_code', 1, 'https://ror.org/02s4ke886 HemoShear (United States)'),
(6864, 'https://ror.org/0034k3d56', 'en', 1, 'https://ror.org/0034k3d56 Department of Community and Human Services'),
(6865, 'https://ror.org/041d9vd15', 'en', 1, 'https://ror.org/041d9vd15 Her Majesty''s Government Communications Centre'),
(6866, 'https://ror.org/0293t9757', 'no_lang_code', 1, 'https://ror.org/0293t9757 Droplet Measurement Technologies (United States)'),
(6867, 'https://ror.org/04tjehp55', 'no_lang_code', 1, 'https://ror.org/04tjehp55 Herman Miller (United States)'),
(6868, 'https://ror.org/04k6fcm51', 'no_lang_code', 1, 'https://ror.org/04k6fcm51 King Shaw Associates (United Kingdom)'),
(6869, 'https://ror.org/04p45sn64', 'en', 1, 'https://ror.org/04p45sn64 Canards Illimités Canada Ducks Unlimited Canada'),
(6870, 'https://ror.org/040qebh26', 'en', 1, 'https://ror.org/040qebh26 Kirklees Council'),
(6871, 'https://ror.org/028tzq930', 'en', 1, 'https://ror.org/028tzq930 Kirkwood Community College'),
(6872, 'https://ror.org/00vnwz606', 'en', 1, 'https://ror.org/00vnwz606 Dudley Observatory'),
(6873, 'https://ror.org/056gzgs71', 'no_lang_code', 1, 'https://ror.org/056gzgs71 Huawei Technologies (United Kingdom)'),
(6874, 'https://ror.org/03rytet35', 'no_lang_code', 1, 'https://ror.org/03rytet35 KMS Fusion (United States)'),
(6875, 'https://ror.org/05dyqe421', 'en', 1, 'https://ror.org/05dyqe421 Knowle West Media Centre'),
(6876, 'https://ror.org/03ryhm704', 'no_lang_code', 1, 'https://ror.org/03ryhm704 DuPont (United Kingdom)'),
(6877, 'https://ror.org/05jckef59', 'no_lang_code', 1, 'https://ror.org/05jckef59 Rimage Corporation (United States)'),
(6878, 'https://ror.org/04gtf4q04', 'no_lang_code', 1, 'https://ror.org/04gtf4q04 Knowledge Based Systems (United States)'),
(6879, 'https://ror.org/031yz7195', 'en', 1, 'https://ror.org/031yz7195 Centre de Recherche Interdisciplinaire en Réadaptation Centre for Interdisciplinary Research in Rehabilitation'),
(6880, 'https://ror.org/02py7c988', 'no_lang_code', 1, 'https://ror.org/02py7c988 DxRay (United States)'),
(6881, 'https://ror.org/05kwwke37', 'en', 1, 'https://ror.org/05kwwke37 Hertfordshire County Council'),
(6882, 'https://ror.org/05ear3j66', 'no_lang_code', 1, 'https://ror.org/05ear3j66 Dynaflow (United States)'),
(6883, 'https://ror.org/01aetpp13', 'en', 1, 'https://ror.org/01aetpp13 Centre for Process Innovation'),
(6884, 'https://ror.org/03qvxap92', 'no_lang_code', 1, 'https://ror.org/03qvxap92 Kodak (United Kingdom)'),
(6885, 'https://ror.org/022fxd079', 'no_lang_code', 1, 'https://ror.org/022fxd079 Hexcel (United Kingdom)'),
(6886, 'https://ror.org/02yrkyr74', 'no_lang_code', 1, 'https://ror.org/02yrkyr74 Data Voice Exchange (United States)'),
(6887, 'https://ror.org/0402h1193', 'no_lang_code', 1, 'https://ror.org/0402h1193 Hiden Analytical (United Kingdom)'),
(6888, 'https://ror.org/03mz0by90', 'no_lang_code', 1, 'https://ror.org/03mz0by90 Consolidated Safety Services-Dynamac (United States)'),
(6889, 'https://ror.org/042x6s220', 'no_lang_code', 1, 'https://ror.org/042x6s220 HTG Molecular Diagnostics (United States)'),
(6890, 'https://ror.org/02gnvsm39', 'no_lang_code', 1, 'https://ror.org/02gnvsm39 Koester Performance Research (United States)'),
(6891, 'https://ror.org/015exsf29', 'no_lang_code', 1, 'https://ror.org/015exsf29 Upsight (Canada)'),
(6892, 'https://ror.org/01x63gj61', 'en', 1, 'https://ror.org/01x63gj61 Hillsborough Community College'),
(6893, 'https://ror.org/05v4j5439', 'no_lang_code', 1, 'https://ror.org/05v4j5439 Kopin Corporation (United States)'),
(6894, 'https://ror.org/00zn54j08', 'no_lang_code', 1, 'https://ror.org/00zn54j08 Kryton International (Canada)'),
(6895, 'https://ror.org/00h8z3z59', 'en', 1, 'https://ror.org/00h8z3z59 Hispanic Association of Colleges and Universities'),
(6896, 'https://ror.org/03vmatd47', 'no_lang_code', 1, 'https://ror.org/03vmatd47 Safran Electronics (Canada)'),
(6897, 'https://ror.org/006hrz834', 'no_lang_code', 1, 'https://ror.org/006hrz834 Roche (Canada)'),
(6898, 'https://ror.org/01qwbfa84', 'en', 1, 'https://ror.org/01qwbfa84 Collège holland Holland College'),
(6899, 'https://ror.org/020gftc86', 'en', 1, 'https://ror.org/020gftc86 Holy Names University'),
(6900, 'https://ror.org/05g8vd955', 'no_lang_code', 1, 'https://ror.org/05g8vd955 KWS (United Kingdom)'),
(6901, 'https://ror.org/04dxvrs36', 'no_lang_code', 1, 'https://ror.org/04dxvrs36 HemoCleanse (United States)'),
(6902, 'https://ror.org/04p42v615', 'no_lang_code', 1, 'https://ror.org/04p42v615 HiretheWorld (Canada)'),
(6903, 'https://ror.org/041tfc254', 'no_lang_code', 1, 'https://ror.org/041tfc254 Comply (United States)'),
(6904, 'https://ror.org/02gr2sm80', 'no_lang_code', 1, 'https://ror.org/02gr2sm80 Aecom (United States)'),
(6905, 'https://ror.org/0097wyf31', 'no_lang_code', 1, 'https://ror.org/0097wyf31 Hitachi (United Kingdom)'),
(6906, 'https://ror.org/03y98mn81', 'no_lang_code', 1, 'https://ror.org/03y98mn81 L.B. Foster Rail Technologies (Canada)'),
(6907, 'https://ror.org/023q7jh34', 'no_lang_code', 1, 'https://ror.org/023q7jh34 Hoare Lea (United Kingdom)'),
(6908, 'https://ror.org/022c1xk47', 'no_lang_code', 1, 'https://ror.org/022c1xk47 Honda (Germany)'),
(6909, 'https://ror.org/010ab8p65', 'en', 1, 'https://ror.org/010ab8p65 Hopkins Architectes Hopkins Architects'),
(6910, 'https://ror.org/01070pt38', 'fr', 1, 'https://ror.org/01070pt38 City College La Cité Collégiale'),
(6911, 'https://ror.org/046q1p146', 'en', 1, 'https://ror.org/046q1p146 La Clinica del Pueblo'),
(6912, 'https://ror.org/059yd5j13', 'en', 1, 'https://ror.org/059yd5j13 Georgetown College'),
(6913, 'https://ror.org/00wqtx630', 'en', 1, 'https://ror.org/00wqtx630 South Carolina Technical College System'),
(6914, 'https://ror.org/05k8s4246', 'en', 1, 'https://ror.org/05k8s4246 La Frontera Arizona'),
(6915, 'https://ror.org/04w4aze46', 'en', 1, 'https://ror.org/04w4aze46 LaGrange College'),
(6916, 'https://ror.org/05ezt9354', 'en', 1, 'https://ror.org/05ezt9354 La Jolla Infectious Disease Institute'),
(6917, 'https://ror.org/01pv1vb28', 'pl', 1, 'https://ror.org/01pv1vb28 Samodzielny Publiczny Centralny Szpital Kliniczny'),
(6918, 'https://ror.org/019rsbe67', 'no_lang_code', 1, 'https://ror.org/019rsbe67 Jazz Pharmaceuticals (United States)'),
(6919, 'https://ror.org/00ekxed29', 'no_lang_code', 1, 'https://ror.org/00ekxed29 Horizon Research (United States)'),
(6920, 'https://ror.org/0413xn342', 'en', 1, 'https://ror.org/0413xn342 Houston Advanced Research Center'),
(6921, 'https://ror.org/05b4xr322', 'en', 1, 'https://ror.org/05b4xr322 Houston Area Community Services'),
(6922, 'https://ror.org/02rr12y45', 'en', 1, 'https://ror.org/02rr12y45 Press Ganey'),
(6923, 'https://ror.org/01t5jw607', 'en', 1, 'https://ror.org/01t5jw607 Houston Independent School District'),
(6924, 'https://ror.org/01sw9e110', 'en', 1, 'https://ror.org/01sw9e110 Howard Brown Health Center'),
(6925, 'https://ror.org/02bzq7389', 'en', 1, 'https://ror.org/02bzq7389 Howard Community College'),
(6926, 'https://ror.org/007jsya95', 'en', 1, 'https://ror.org/007jsya95 Hubbs-Sea World Research Institute'),
(6927, 'https://ror.org/04bcw2e70', 'no_lang_code', 1, 'https://ror.org/04bcw2e70 Ameriprise Financial (United States)'),
(6928, 'https://ror.org/010h0ab29', 'no_lang_code', 1, 'https://ror.org/010h0ab29 Dynamis Pharmaceuticals (United States)'),
(6929, 'https://ror.org/03xey5e12', 'en', 1, 'https://ror.org/03xey5e12 Human Resources Research Organization'),
(6930, 'https://ror.org/00k8s2y27', 'en', 1, 'https://ror.org/00k8s2y27 Huntingdon College'),
(6931, 'https://ror.org/02gxffd98', 'no_lang_code', 1, 'https://ror.org/02gxffd98 Laing O''Rourke (United Kingdom)'),
(6932, 'https://ror.org/03210bg97', 'no_lang_code', 1, 'https://ror.org/03210bg97 Dynex Semiconductor (United Kingdom)'),
(6933, 'https://ror.org/0234k0g56', 'no_lang_code', 1, 'https://ror.org/0234k0g56 HydraTek (Canada)'),
(6934, 'https://ror.org/038kja517', 'en', 1, 'https://ror.org/038kja517 Hydrologic Research Center'),
(6935, 'https://ror.org/04npefg86', 'en', 1, 'https://ror.org/04npefg86 Lake County'),
(6936, 'https://ror.org/04jxh5943', 'no_lang_code', 1, 'https://ror.org/04jxh5943 Hyper Tech Research (United States)'),
(6937, 'https://ror.org/03fd07264', 'no_lang_code', 1, 'https://ror.org/03fd07264 Lake Shore Cryotronics (United States)'),
(6938, 'https://ror.org/00a4npp83', 'no_lang_code', 1, 'https://ror.org/00a4npp83 Dyson (United Kingdom)'),
(6939, 'https://ror.org/05wm6w245', 'en', 1, 'https://ror.org/05wm6w245 Lakeland College'),
(6940, 'https://ror.org/032bvxc76', 'no_lang_code', 1, 'https://ror.org/032bvxc76 Lakes Environmental (Canada)'),
(6941, 'https://ror.org/03yr8h660', 'no_lang_code', 1, 'https://ror.org/03yr8h660 E.ON (United Kingdom)'),
(6942, 'https://ror.org/04sk8z888', 'no_lang_code', 1, 'https://ror.org/04sk8z888 EP (United States)'),
(6943, 'https://ror.org/01zdgf096', 'en', 1, 'https://ror.org/01zdgf096 Baptist Health Care'),
(6944, 'https://ror.org/012xhfk02', 'en', 1, 'https://ror.org/012xhfk02 LAM Foundation'),
(6945, 'https://ror.org/045zy3z54', 'en', 1, 'https://ror.org/045zy3z54 Lambton College'),
(6946, 'https://ror.org/0445tpa77', 'no_lang_code', 1, 'https://ror.org/0445tpa77 Institute of Bioengineering Technologies (United States)'),
(6947, 'https://ror.org/05113n960', 'en', 1, 'https://ror.org/05113n960 Lane Community College'),
(6948, 'https://ror.org/00d00px90', 'en', 1, 'https://ror.org/00d00px90 Langley Environmental Partners Society'),
(6949, 'https://ror.org/00q3rb237', 'no_lang_code', 1, 'https://ror.org/00q3rb237 Larus Technologies (Canada)'),
(6950, 'https://ror.org/0156f0c06', 'no_lang_code', 1, 'https://ror.org/0156f0c06 ICF International (United States)'),
(6951, 'https://ror.org/00qs2ka20', 'en', 1, 'https://ror.org/00qs2ka20 East Los Angeles College'),
(6952, 'https://ror.org/02qaw7v88', 'no_lang_code', 1, 'https://ror.org/02qaw7v88 Gold Standard Simulations (United Kingdom)'),
(6953, 'https://ror.org/04x4fb889', 'no_lang_code', 1, 'https://ror.org/04x4fb889 Lasmed (United States)'),
(6954, 'https://ror.org/00v97d044', 'pt', 1, 'https://ror.org/00v97d044 Centre of Studies on Geography and Spatial Planning Centro de Estudos em Geografia e Ordenamento do Territorio'),
(6955, 'https://ror.org/004zwen25', 'no_lang_code', 1, 'https://ror.org/004zwen25 Intelligent Optical Systems (United States)'),
(6956, 'https://ror.org/03ah8pc29', 'no_lang_code', 1, 'https://ror.org/03ah8pc29 Hyperion Technologies (Canada)'),
(6957, 'https://ror.org/01fydjk85', 'no_lang_code', 1, 'https://ror.org/01fydjk85 Earth Images Foundation (United States)'),
(6958, 'https://ror.org/0295s2632', 'en', 1, 'https://ror.org/0295s2632 La Comisión Latina sobre el SIDA Latino Commission on AIDS'),
(6959, 'https://ror.org/0204af661', 'no_lang_code', 1, 'https://ror.org/0204af661 EarthSky'),
(6960, 'https://ror.org/0070c9h23', 'en', 1, 'https://ror.org/0070c9h23 Latino Health Institute (United States)'),
(6961, 'https://ror.org/00q9fjw02', 'no_lang_code', 1, 'https://ror.org/00q9fjw02 ECI Biotech (United States)'),
(6962, 'https://ror.org/0239g9287', 'en', 1, 'https://ror.org/0239g9287 East Bay Institute for Research & Education'),
(6963, 'https://ror.org/03wjz0p55', 'no_lang_code', 1, 'https://ror.org/03wjz0p55 LaunchPoint Technologies (United States)'),
(6964, 'https://ror.org/04npym748', 'no_lang_code', 1, 'https://ror.org/04npym748 Humanitas (United States)'),
(6965, 'https://ror.org/05kv34a53', 'no_lang_code', 1, 'https://ror.org/05kv34a53 East Malling Research (United Kingdom)'),
(6966, 'https://ror.org/04072nk43', 'en', 1, 'https://ror.org/04072nk43 Human Media'),
(6967, 'https://ror.org/03w69rv70', 'en', 1, 'https://ror.org/03w69rv70 Eastern Iowa Community College'),
(6968, 'https://ror.org/04tzjpc47', 'no_lang_code', 1, 'https://ror.org/04tzjpc47 Ebert and Associates'),
(6969, 'https://ror.org/0012w1115', 'no_lang_code', 1, 'https://ror.org/0012w1115 EcoMetrix'),
(6970, 'https://ror.org/058sedk89', 'no_lang_code', 1, 'https://ror.org/058sedk89 Laureate Learning Systems (United States)'),
(6971, 'https://ror.org/000jqak13', 'no_lang_code', 1, 'https://ror.org/000jqak13 ECBio (Portugal)'),
(6972, 'https://ror.org/035wemy73', 'no_lang_code', 1, 'https://ror.org/035wemy73 Bellus Health (Canada)'),
(6973, 'https://ror.org/00hx3bk50', 'no_lang_code', 1, 'https://ror.org/00hx3bk50 Icogenex (United States)'),
(6974, 'https://ror.org/00n83m850', 'no_lang_code', 1, 'https://ror.org/00n83m850 EcoSynthetix (Canada)'),
(6975, 'https://ror.org/00wbv7962', 'no_lang_code', 1, 'https://ror.org/00wbv7962 Environmental Consultants and Contractors'),
(6976, 'https://ror.org/05cw2ys85', 'no_lang_code', 1, 'https://ror.org/05cw2ys85 Ecovative Design (United States)'),
(6977, 'https://ror.org/046wvwe48', 'en', 1, 'https://ror.org/046wvwe48 Eden Medical'),
(6978, 'https://ror.org/05d692120', 'en', 1, 'https://ror.org/05d692120 Lawson State Community College'),
(6979, 'https://ror.org/05jyway09', 'no_lang_code', 1, 'https://ror.org/05jyway09 Layton BioScience (United States)'),
(6980, 'https://ror.org/04mt1cz50', 'en', 1, 'https://ror.org/04mt1cz50 Chartered Institution of Civil Engineering Surveyors'),
(6981, 'https://ror.org/05d5x4r54', 'no_lang_code', 1, 'https://ror.org/05d5x4r54 Sani Marc (Canada)'),
(6982, 'https://ror.org/02zz8mw60', 'no_lang_code', 1, 'https://ror.org/02zz8mw60 GlaxoSmithKline (Canada)'),
(6983, 'https://ror.org/03zqwq749', 'no_lang_code', 1, 'https://ror.org/03zqwq749 ID-FISH Technology (United States)'),
(6984, 'https://ror.org/029ybkn33', 'no_lang_code', 1, 'https://ror.org/029ybkn33 Edenspace Systems (United States)'),
(6985, 'https://ror.org/054s8nj77', 'en', 1, 'https://ror.org/054s8nj77 Innovative Designs in Environments for an Aging Society'),
(6986, 'https://ror.org/00nsrak45', 'no_lang_code', 1, 'https://ror.org/00nsrak45 Edge Enterprises (United States)'),
(6987, 'https://ror.org/00q2yft10', 'no_lang_code', 1, 'https://ror.org/00q2yft10 Leap of Faith Technologies (United States)'),
(6988, 'https://ror.org/02wed1y10', 'no_lang_code', 1, 'https://ror.org/02wed1y10 Learning in Motion (United States)'),
(6989, 'https://ror.org/02m444q29', 'no_lang_code', 1, 'https://ror.org/02m444q29 EEI Communications (United States)'),
(6990, 'https://ror.org/057pedz06', 'en', 1, 'https://ror.org/057pedz06 Lee College'),
(6991, 'https://ror.org/00pbjy126', 'no_lang_code', 1, 'https://ror.org/00pbjy126 EDJ Associates'),
(6992, 'https://ror.org/00w5rhv83', 'en', 1, 'https://ror.org/00w5rhv83 EdLab Group'),
(6993, 'https://ror.org/00vhfbm88', 'en', 1, 'https://ror.org/00vhfbm88 Edmonds Community College'),
(6994, 'https://ror.org/05qqty169', 'en', 1, 'https://ror.org/05qqty169 Lehigh Carbon Community College'),
(6995, 'https://ror.org/05qt2r430', 'en', 1, 'https://ror.org/05qt2r430 Education Commission of the States'),
(6996, 'https://ror.org/00p511b69', 'en', 1, 'https://ror.org/00p511b69 Education Connection'),
(6997, 'https://ror.org/0304xwq55', 'en', 1, 'https://ror.org/0304xwq55 Education Training And Research'),
(6998, 'https://ror.org/03aes2233', 'en', 1, 'https://ror.org/03aes2233 Education Coordinating Council'),
(6999, 'https://ror.org/05kpczz35', 'no_lang_code', 1, 'https://ror.org/05kpczz35 Hexagon (United Kingdom)'),
(7000, 'https://ror.org/045wcpc71', 'en', 1, 'https://ror.org/045wcpc71 Leicestershire Partnership NHS Trust'),
(7001, 'https://ror.org/02harxg26', 'no_lang_code', 1, 'https://ror.org/02harxg26 Educational Film Center (United States)'),
(7002, 'https://ror.org/03gzw3461', 'en', 1, 'https://ror.org/03gzw3461 Illinois Department of Human Services'),
(7003, 'https://ror.org/0333j1f77', 'no_lang_code', 1, 'https://ror.org/0333j1f77 Lentigen Technology (United States)'),
(7004, 'https://ror.org/01f1j2n15', 'en', 1, 'https://ror.org/01f1j2n15 Educational Service District 112'),
(7005, 'https://ror.org/055nj6202', 'fr', 1, 'https://ror.org/055nj6202 Les Scientifines'),
(7006, 'https://ror.org/034ja4661', 'no_lang_code', 1, 'https://ror.org/034ja4661 Educational Service Incorporation'),
(7007, 'https://ror.org/02naadr48', 'no_lang_code', 1, 'https://ror.org/02naadr48 Pearson (United States)'),
(7008, 'https://ror.org/01ssv2r52', 'no_lang_code', 1, 'https://ror.org/01ssv2r52 ImageCat (United States)'),
(7009, 'https://ror.org/042jh0r75', 'no_lang_code', 1, 'https://ror.org/042jh0r75 Imaging Systems Technology (United States)'),
(7010, 'https://ror.org/013zb0q67', 'en', 1, 'https://ror.org/013zb0q67 Anixter Center'),
(7011, 'https://ror.org/0235n3r56', 'en', 1, 'https://ror.org/0235n3r56 Let''s Talk Science'),
(7012, 'https://ror.org/0399pn486', 'en', 1, 'https://ror.org/0399pn486 McREL International'),
(7013, 'https://ror.org/03pfy5b07', 'no_lang_code', 1, 'https://ror.org/03pfy5b07 Edvotek (United States)'),
(7014, 'https://ror.org/018pfsv20', 'en', 1, 'https://ror.org/018pfsv20 Lexington Richland Alcohol And Drug Abuse Council'),
(7015, 'https://ror.org/04rfqrp30', 'no_lang_code', 1, 'https://ror.org/04rfqrp30 Eion (Canada)'),
(7016, 'https://ror.org/01hpb1x88', 'no_lang_code', 1, 'https://ror.org/01hpb1x88 EKOS Corporation'),
(7017, 'https://ror.org/03b41zp34', 'en', 1, 'https://ror.org/03b41zp34 Liberty Science Center'),
(7018, 'https://ror.org/059rw1510', 'no_lang_code', 1, 'https://ror.org/059rw1510 Ekso Bionics (United States)'),
(7019, 'https://ror.org/021spd704', 'en', 1, 'https://ror.org/021spd704 El Camino College'),
(7020, 'https://ror.org/021q72e63', 'no_lang_code', 1, 'https://ror.org/021q72e63 Novus Biologicals (United States)'),
(7021, 'https://ror.org/05j34rw34', 'en', 1, 'https://ror.org/05j34rw34 El Dorado Hills Community Vision'),
(7022, 'https://ror.org/01gswfc04', 'en', 1, 'https://ror.org/01gswfc04 El Paso Community College'),
(7023, 'https://ror.org/0427p8a79', 'no_lang_code', 1, 'https://ror.org/0427p8a79 IMMCO Diagnostics (United States)'),
(7024, 'https://ror.org/03em9pc54', 'en', 1, 'https://ror.org/03em9pc54 Iowa Central Community College'),
(7025, 'https://ror.org/02qf7zp16', 'en', 1, 'https://ror.org/02qf7zp16 Iowa Lakes Community College'),
(7026, 'https://ror.org/02ttqd922', 'en', 1, 'https://ror.org/02ttqd922 Electrical and Computer Engineering Department Heads Association'),
(7027, 'https://ror.org/0296e0332', 'en', 1, 'https://ror.org/0296e0332 Iowa Department of Inspections and Appeals'),
(7028, 'https://ror.org/02qgx4h83', 'no_lang_code', 1, 'https://ror.org/02qgx4h83 Immersion (United States)'),
(7029, 'https://ror.org/03kbjzx15', 'no_lang_code', 1, 'https://ror.org/03kbjzx15 Immersion (Canada)'),
(7030, 'https://ror.org/025fs6666', 'no_lang_code', 1, 'https://ror.org/025fs6666 Antigen Discovery (United States)'),
(7031, 'https://ror.org/02y8r3y04', 'no_lang_code', 1, 'https://ror.org/02y8r3y04 Life Prediction Technologies (Canada)'),
(7032, 'https://ror.org/052333450', 'no_lang_code', 1, 'https://ror.org/052333450 Electro Energy (United States)'),
(7033, 'https://ror.org/02xvj0167', 'no_lang_code', 1, 'https://ror.org/02xvj0167 Lifepharms (United States)'),
(7034, 'https://ror.org/04hxfjk77', 'no_lang_code', 1, 'https://ror.org/04hxfjk77 Immtech Pharmaceuticals (United States)'),
(7035, 'https://ror.org/0506v2b24', 'no_lang_code', 1, 'https://ror.org/0506v2b24 STRATA Skin Sciences (United States)'),
(7036, 'https://ror.org/05ffsv137', 'no_lang_code', 1, 'https://ror.org/05ffsv137 Light Age (United States)'),
(7037, 'https://ror.org/05n8mkf20', 'no_lang_code', 1, 'https://ror.org/05n8mkf20 ImmuCell (United States)'),
(7038, 'https://ror.org/00qsgpr41', 'no_lang_code', 1, 'https://ror.org/00qsgpr41 ElectroChem (United States)'),
(7039, 'https://ror.org/03etmv771', 'no_lang_code', 1, 'https://ror.org/03etmv771 LightBridge Healthcare Research (United States)'),
(7040, 'https://ror.org/00wph9g26', 'no_lang_code', 1, 'https://ror.org/00wph9g26 Electronic BioSciences (United States)'),
(7041, 'https://ror.org/059gk7j33', 'no_lang_code', 1, 'https://ror.org/059gk7j33 Imperial Innovations (United Kingdom)'),
(7042, 'https://ror.org/0015wff52', 'no_lang_code', 1, 'https://ror.org/0015wff52 Implant Sciences (United States)'),
(7043, 'https://ror.org/03xm51a29', 'no_lang_code', 1, 'https://ror.org/03xm51a29 Electrovaya (Canada)'),
(7044, 'https://ror.org/01met4463', 'no_lang_code', 1, 'https://ror.org/01met4463 Limagrain (United Kingdom)'),
(7045, 'https://ror.org/008qdc072', 'no_lang_code', 1, 'https://ror.org/008qdc072 Monteco (Canada)'),
(7046, 'https://ror.org/02dw7ch21', 'no_lang_code', 1, 'https://ror.org/02dw7ch21 Element Six (United Kingdom)'),
(7047, 'https://ror.org/01c9wxw51', 'no_lang_code', 1, 'https://ror.org/01c9wxw51 ImQuest BioSciences (United States)'),
(7048, 'https://ror.org/01zzhbb93', 'en', 1, 'https://ror.org/01zzhbb93 Linn Benton Community College'),
(7049, 'https://ror.org/00vzqmg54', 'en', 1, 'https://ror.org/00vzqmg54 Elizabeth Glaser Pediatric AIDS Foundation'),
(7050, 'https://ror.org/041g66k42', 'no_lang_code', 1, 'https://ror.org/041g66k42 ImmuneChem (Canada)'),
(7051, 'https://ror.org/01aq2db46', 'no_lang_code', 1, 'https://ror.org/01aq2db46 ImmuNext (United States)'),
(7052, 'https://ror.org/04c1def54', 'no_lang_code', 1, 'https://ror.org/04c1def54 ElSohly Laboratories (United States)'),
(7053, 'https://ror.org/02j8tmw16', 'en', 1, 'https://ror.org/02j8tmw16 Immunization Action Coalition'),
(7054, 'https://ror.org/00rch4x96', 'no_lang_code', 1, 'https://ror.org/00rch4x96 ImmunoPrecise (Canada)'),
(7055, 'https://ror.org/05c2mc090', 'no_lang_code', 1, 'https://ror.org/05c2mc090 Immunovaccine (Canada)'),
(7056, 'https://ror.org/0359jxf05', 'no_lang_code', 1, 'https://ror.org/0359jxf05 ImmuRx (United States)'),
(7057, 'https://ror.org/00qfz3b98', 'no_lang_code', 1, 'https://ror.org/00qfz3b98 Elsoms (United Kingdom)'),
(7058, 'https://ror.org/04g8dtp60', 'no_lang_code', 1, 'https://ror.org/04g8dtp60 Quidel Corporation (United States)'),
(7059, 'https://ror.org/004m2d892', 'no_lang_code', 1, 'https://ror.org/004m2d892 Impact Assessment'),
(7060, 'https://ror.org/032h8td77', 'no_lang_code', 1, 'https://ror.org/032h8td77 InBios International (United States)'),
(7061, 'https://ror.org/040fwvd70', 'en', 1, 'https://ror.org/040fwvd70 Little Big Horn College'),
(7062, 'https://ror.org/01s8ppv52', 'no_lang_code', 1, 'https://ror.org/01s8ppv52 Incell Corporation (United States)'),
(7063, 'https://ror.org/0532mvt92', 'no_lang_code', 1, 'https://ror.org/0532mvt92 LKT Laboratories (United States)'),
(7064, 'https://ror.org/03t56ts61', 'en', 1, 'https://ror.org/03t56ts61 Livingstone College'),
(7065, 'https://ror.org/057q4mw47', 'en', 1, 'https://ror.org/057q4mw47 Lloyd''s Register Foundation'),
(7066, 'https://ror.org/042930e44', 'no_lang_code', 1, 'https://ror.org/042930e44 Centrose (United States)'),
(7067, 'https://ror.org/04mj0y667', 'en', 1, 'https://ror.org/04mj0y667 Ministry of Agriculture, Livestock, and Food Supply Ministério da Agricultura, Pecuária e Abastecimento'),
(7068, 'https://ror.org/00jz53350', 'no_lang_code', 1, 'https://ror.org/00jz53350 Centurion Biofuels (Canada)'),
(7069, 'https://ror.org/04r08t069', 'en', 1, 'https://ror.org/04r08t069 Independent Colleges Office'),
(7070, 'https://ror.org/03w6e0c57', 'pt', 1, 'https://ror.org/03w6e0c57 Estrutura de Missão para os Assuntos do Mar'),
(7071, 'https://ror.org/01a4p1q97', 'no_lang_code', 1, 'https://ror.org/01a4p1q97 LNKChemsolutions'),
(7072, 'https://ror.org/054wvh509', 'no_lang_code', 1, 'https://ror.org/054wvh509 InDevR (United States)'),
(7073, 'https://ror.org/05hmeb585', 'no_lang_code', 1, 'https://ror.org/05hmeb585 Loadpoint (United Kingdom)'),
(7074, 'https://ror.org/05axs7x03', 'en', 1, 'https://ror.org/05axs7x03 Indian River State College'),
(7075, 'https://ror.org/019a0n503', 'no_lang_code', 1, 'https://ror.org/019a0n503 Cerestech (Canada)'),
(7076, 'https://ror.org/036300c37', 'en', 1, 'https://ror.org/036300c37 Indiana Academy of Science'),
(7077, 'https://ror.org/00bcqra17', 'no_lang_code', 1, 'https://ror.org/00bcqra17 Local Data Company (United Kingdom)'),
(7078, 'https://ror.org/04kpc8y09', 'en', 1, 'https://ror.org/04kpc8y09 Local Government Commission'),
(7079, 'https://ror.org/02m805769', 'fr', 1, 'https://ror.org/02m805769 Cegep de La Pocatiere Cégep de la pocatière'),
(7080, 'https://ror.org/0073h0969', 'no_lang_code', 1, 'https://ror.org/0073h0969 Indus Instruments (United States)'),
(7081, 'https://ror.org/040hka494', 'fr', 1, 'https://ror.org/040hka494 Cegep de Matane Cégep de matane'),
(7082, 'https://ror.org/012xcvh54', 'fr', 1, 'https://ror.org/012xcvh54 Cegep de Saint Jerome Cegep of Saint Jérôme Cégep de saint-jérôme'),
(7083, 'https://ror.org/0568x1w36', 'no_lang_code', 1, 'https://ror.org/0568x1w36 Industrial Science & Technology Network (United States)'),
(7084, 'https://ror.org/01601en76', 'fr', 1, 'https://ror.org/01601en76 Cegep de Sept Iles Cégep de sept-Îles'),
(7085, 'https://ror.org/0111bj510', 'no_lang_code', 1, 'https://ror.org/0111bj510 Industrial Tomography Systems (United Kingdom)'),
(7086, 'https://ror.org/05bsers28', 'fr', 1, 'https://ror.org/05bsers28 Cegep de Victoriaville Cégep de victoriaville'),
(7087, 'https://ror.org/02jqwca63', 'fr', 1, 'https://ror.org/02jqwca63 Cegep regional de Lanaudiere Cégep Régional de Lanaudière'),
(7088, 'https://ror.org/05qzbtg69', 'no_lang_code', 1, 'https://ror.org/05qzbtg69 Ineos (United Kingdom)'),
(7089, 'https://ror.org/05rt5vh72', 'no_lang_code', 1, 'https://ror.org/05rt5vh72 Logical Semantics (United States)'),
(7090, 'https://ror.org/02rdhhs90', 'en', 1, 'https://ror.org/02rdhhs90 Emmanuel College - Massachusetts'),
(7091, 'https://ror.org/014tb3433', 'en', 1, 'https://ror.org/014tb3433 Loma Linda Veterans Association for Research and Education'),
(7092, 'https://ror.org/05m8hpg39', 'en', 1, 'https://ror.org/05m8hpg39 London First'),
(7093, 'https://ror.org/022mzwp71', 'pt', 1, 'https://ror.org/022mzwp71 Instituto de Engenharia de Sistemas e Computadores Microsistemas e Nanotecnologias'),
(7094, 'https://ror.org/059j9s184', 'en', 1, 'https://ror.org/059j9s184 Lone Star College'),
(7095, 'https://ror.org/058hbcp36', 'no_lang_code', 1, 'https://ror.org/058hbcp36 Empirical Technologies (United States)'),
(7096, 'https://ror.org/03a0ckw61', 'en', 1, 'https://ror.org/03a0ckw61 Long Island Association for AIDS Care'),
(7097, 'https://ror.org/038emx233', 'no_lang_code', 1, 'https://ror.org/038emx233 EMT Associates (United States)'),
(7098, 'https://ror.org/02tqrck55', 'no_lang_code', 1, 'https://ror.org/02tqrck55 En''Urga (United States)'),
(7099, 'https://ror.org/04cgfe294', 'no_lang_code', 1, 'https://ror.org/04cgfe294 Lonza (United Kingdom)'),
(7100, 'https://ror.org/05nfbwk10', 'no_lang_code', 1, 'https://ror.org/05nfbwk10 Encode Bio (United States)'),
(7101, 'https://ror.org/035aej353', 'en', 1, 'https://ror.org/035aej353 Lorain County Community College'),
(7102, 'https://ror.org/04x5jxk30', 'no_lang_code', 1, 'https://ror.org/04x5jxk30 Aptose Biosciences (Canada)'),
(7103, 'https://ror.org/007sw5k32', 'pt', 1, 'https://ror.org/007sw5k32 Centro de Genética Clínica'),
(7104, 'https://ror.org/04mmv7r89', 'en', 1, 'https://ror.org/04mmv7r89 Chadron State College'),
(7105, 'https://ror.org/05fxhrw65', 'en', 1, 'https://ror.org/05fxhrw65 Endocrine Society'),
(7106, 'https://ror.org/058aed112', 'en', 1, 'https://ror.org/058aed112 Los Angeles Community College District'),
(7107, 'https://ror.org/028my8947', 'en', 1, 'https://ror.org/028my8947 Chabot Space and Science Center'),
(7108, 'https://ror.org/04exhr452', 'en', 1, 'https://ror.org/04exhr452 Los Angeles Unified School District'),
(7109, 'https://ror.org/01s4hex50', 'en', 1, 'https://ror.org/01s4hex50 Society of Automotive Engineers International'),
(7110, 'https://ror.org/058dk4619', 'no_lang_code', 1, 'https://ror.org/058dk4619 Endocyte (United States)'),
(7111, 'https://ror.org/00bh4sk41', 'no_lang_code', 1, 'https://ror.org/00bh4sk41 Endomedix (United States)'),
(7112, 'https://ror.org/0584zt830', 'no_lang_code', 1, 'https://ror.org/0584zt830 EndoShape (United States)'),
(7113, 'https://ror.org/00jg79r23', 'no_lang_code', 1, 'https://ror.org/00jg79r23 Information Ventures (United States)'),
(7114, 'https://ror.org/00yb09x74', 'en', 1, 'https://ror.org/00yb09x74 Informed Families'),
(7115, 'https://ror.org/04j3f6252', 'en', 1, 'https://ror.org/04j3f6252 Change Happens'),
(7116, 'https://ror.org/02gdz0643', 'no_lang_code', 1, 'https://ror.org/02gdz0643 DCS Corporation (United States)'),
(7117, 'https://ror.org/02fhhd636', 'no_lang_code', 1, 'https://ror.org/02fhhd636 Endres Machining Innovations (United States)'),
(7118, 'https://ror.org/00cb06v13', 'no_lang_code', 1, 'https://ror.org/00cb06v13 ABB (United States)'),
(7119, 'https://ror.org/04bw2xb41', 'no_lang_code', 1, 'https://ror.org/04bw2xb41 Infotech Soft (United States)'),
(7120, 'https://ror.org/020ave461', 'no_lang_code', 1, 'https://ror.org/020ave461 Proton (United Kingdom)'),
(7121, 'https://ror.org/0073nm244', 'en', 1, 'https://ror.org/0073nm244 Loud Crow Interactive'),
(7122, 'https://ror.org/03f0b2d64', 'no_lang_code', 1, 'https://ror.org/03f0b2d64 Evans Analytical Group (United States)'),
(7123, 'https://ror.org/02ebc4h13', 'no_lang_code', 1, 'https://ror.org/02ebc4h13 Inframat Corporation (United States)'),
(7124, 'https://ror.org/02yzma536', 'no_lang_code', 1, 'https://ror.org/02yzma536 Infrared Fiber Systems (United States)'),
(7125, 'https://ror.org/02e1s7e95', 'en', 1, 'https://ror.org/02e1s7e95 Kettering Foundation'),
(7126, 'https://ror.org/011tndv57', 'en', 1, 'https://ror.org/011tndv57 Kentucky Science Center'),
(7127, 'https://ror.org/03q452953', 'no_lang_code', 1, 'https://ror.org/03q452953 ING Robotic Aviation'),
(7128, 'https://ror.org/01qjvcb50', 'no_lang_code', 1, 'https://ror.org/01qjvcb50 Lpath (United States)'),
(7129, 'https://ror.org/01chs2347', 'no_lang_code', 1, 'https://ror.org/01chs2347 Ingegneria dei Sistemi (United Kingdom)'),
(7130, 'https://ror.org/004xj7429', 'no_lang_code', 1, 'https://ror.org/004xj7429 Ingenza (United Kingdom)'),
(7131, 'https://ror.org/01gwh4g82', 'en', 1, 'https://ror.org/01gwh4g82 Energy Saving Trust'),
(7132, 'https://ror.org/012zm4p89', 'no_lang_code', 1, 'https://ror.org/012zm4p89 Energy Science Laboratories (United States)'),
(7133, 'https://ror.org/04enbdd69', 'no_lang_code', 1, 'https://ror.org/04enbdd69 Charles River Associates'),
(7134, 'https://ror.org/05tb9de28', 'no_lang_code', 1, 'https://ror.org/05tb9de28 Charlesson (United States)'),
(7135, 'https://ror.org/01j8wfy63', 'no_lang_code', 1, 'https://ror.org/01j8wfy63 InnoSense (United States)'),
(7136, 'https://ror.org/014bye436', 'no_lang_code', 1, 'https://ror.org/014bye436 Lucerna (United States)'),
(7137, 'https://ror.org/01v4tsw25', 'en', 1, 'https://ror.org/01v4tsw25 Engineering Conferences International'),
(7138, 'https://ror.org/04f3c9a86', 'no_lang_code', 1, 'https://ror.org/04f3c9a86 LumArray (United States)'),
(7139, 'https://ror.org/03fef0h61', 'no_lang_code', 1, 'https://ror.org/03fef0h61 Luminex (United States)'),
(7140, 'https://ror.org/02f1dqm79', 'no_lang_code', 1, 'https://ror.org/02f1dqm79 Luminex (Canada)'),
(7141, 'https://ror.org/03bhj4j04', 'en', 1, 'https://ror.org/03bhj4j04 Lyndon State College'),
(7142, 'https://ror.org/014jghh27', 'no_lang_code', 1, 'https://ror.org/014jghh27 Chelsea Technologies (United Kingdom)'),
(7143, 'https://ror.org/05f4w0r25', 'no_lang_code', 1, 'https://ror.org/05f4w0r25 M Squared Lasers (United Kingdom)'),
(7144, 'https://ror.org/04ve0xd91', 'en', 1, 'https://ror.org/04ve0xd91 Cheltenham Festivals'),
(7145, 'https://ror.org/02gpxp602', 'no_lang_code', 1, 'https://ror.org/02gpxp602 M-Solv (United Kingdom)'),
(7146, 'https://ror.org/05j4k4050', 'no_lang_code', 1, 'https://ror.org/05j4k4050 Innoval Technology (United Kingdom)'),
(7147, 'https://ror.org/03awpb417', 'en', 1, 'https://ror.org/03awpb417 Entomological Society of America'),
(7148, 'https://ror.org/02ts3my48', 'no_lang_code', 1, 'https://ror.org/02ts3my48 Chem-Space Associates (United States)'),
(7149, 'https://ror.org/051fq1m45', 'en', 1, 'https://ror.org/051fq1m45 Massachusetts Executive Office of Health and Human Services'),
(7150, 'https://ror.org/04f3tp286', 'no_lang_code', 1, 'https://ror.org/04f3tp286 Innovative BioTherapies (United States)'),
(7151, 'https://ror.org/01p165j02', 'no_lang_code', 1, 'https://ror.org/01p165j02 Chemat Technology (United States)'),
(7152, 'https://ror.org/02xbbj940', 'no_lang_code', 1, 'https://ror.org/02xbbj940 CASI Pharmaceuticals (United States)'),
(7153, 'https://ror.org/02neqps07', 'no_lang_code', 1, 'https://ror.org/02neqps07 Innovative Chemical and Environmental Technologies (United States)'),
(7154, 'https://ror.org/009k2za57', 'no_lang_code', 1, 'https://ror.org/009k2za57 Chembio (United States)'),
(7155, 'https://ror.org/05f37kp03', 'en', 1, 'https://ror.org/05f37kp03 Chemeketa Community College'),
(7156, 'https://ror.org/03gm8jc79', 'no_lang_code', 1, 'https://ror.org/03gm8jc79 Mabvax Therapeutics (United States)'),
(7157, 'https://ror.org/04a0tbx19', 'no_lang_code', 1, 'https://ror.org/04a0tbx19 Environmental Design Solutions Limited (United Kingdom)'),
(7158, 'https://ror.org/0097wef15', 'no_lang_code', 1, 'https://ror.org/0097wef15 MacConnell Research (United States)'),
(7159, 'https://ror.org/01bt01h96', 'en', 1, 'https://ror.org/01bt01h96 Environmental Law Institute'),
(7160, 'https://ror.org/0097hz889', 'no_lang_code', 1, 'https://ror.org/0097hz889 ChemGreen Innovation (Canada)'),
(7161, 'https://ror.org/02q2kqs69', 'en', 1, 'https://ror.org/02q2kqs69 Environmental Mutagenesis and Genomics Society'),
(7162, 'https://ror.org/027e41r21', 'no_lang_code', 1, 'https://ror.org/027e41r21 Chemica Technologies (United States)'),
(7163, 'https://ror.org/04s42tp09', 'en', 1, 'https://ror.org/04s42tp09 Macomb Community College'),
(7164, 'https://ror.org/02hddbs82', 'no_lang_code', 1, 'https://ror.org/02hddbs82 NewsHour Productions (United States)'),
(7165, 'https://ror.org/0069kqw53', 'en', 1, 'https://ror.org/0069kqw53 Environmental Research Institute of Michigan'),
(7166, 'https://ror.org/0162naz14', 'no_lang_code', 1, 'https://ror.org/0162naz14 EnviroSim (Canada)'),
(7167, 'https://ror.org/03tzkeq32', 'no_lang_code', 1, 'https://ror.org/03tzkeq32 Enzo Biochem (United States)'),
(7168, 'https://ror.org/04639mh45', 'no_lang_code', 1, 'https://ror.org/04639mh45 ChemMotif (United States)'),
(7169, 'https://ror.org/035wk0p43', 'no_lang_code', 1, 'https://ror.org/035wk0p43 E.ON (United States)'),
(7170, 'https://ror.org/05s4s1f68', 'no_lang_code', 1, 'https://ror.org/05s4s1f68 Epicenter Software (United States)'),
(7171, 'https://ror.org/02yx4yb97', 'no_lang_code', 1, 'https://ror.org/02yx4yb97 Epigen Biosciences (United States)'),
(7172, 'https://ror.org/03b68pn69', 'no_lang_code', 1, 'https://ror.org/03b68pn69 Epitope (United States)'),
(7173, 'https://ror.org/028p2na45', 'no_lang_code', 1, 'https://ror.org/028p2na45 MagneSensors (United States)'),
(7174, 'https://ror.org/02csvyc65', 'no_lang_code', 1, 'https://ror.org/02csvyc65 IMRIS (Canada)'),
(7175, 'https://ror.org/055qxpb63', 'no_lang_code', 1, 'https://ror.org/055qxpb63 EpiVax (United States)'),
(7176, 'https://ror.org/03w6g4z68', 'no_lang_code', 1, 'https://ror.org/03w6g4z68 Innovative Micro Technology (United States)'),
(7177, 'https://ror.org/00s3ndx20', 'no_lang_code', 1, 'https://ror.org/00s3ndx20 Innovative Surface Technologies (United States)'),
(7178, 'https://ror.org/00q5a4y91', 'no_lang_code', 1, 'https://ror.org/00q5a4y91 Innovative Targeting Solutions (Canada)'),
(7179, 'https://ror.org/05gh7zh89', 'no_lang_code', 1, 'https://ror.org/05gh7zh89 Protasis (United States)'),
(7180, 'https://ror.org/04kv3gd50', 'no_lang_code', 1, 'https://ror.org/04kv3gd50 Magor (Canada)'),
(7181, 'https://ror.org/00bfb4h45', 'no_lang_code', 1, 'https://ror.org/00bfb4h45 Endacea (United States)'),
(7182, 'https://ror.org/007paj431', 'en', 1, 'https://ror.org/007paj431 Maine Maritime Academy');
INSERT INTO `rors` VALUES
(7183, 'https://ror.org/05srnyf79', 'en', 1, 'https://ror.org/05srnyf79 Maine Mathematics and Science Alliance'),
(7184, 'https://ror.org/01c0rkd54', 'no_lang_code', 1, 'https://ror.org/01c0rkd54 Maine Molecular Quality Controls (United States)'),
(7185, 'https://ror.org/008y69805', 'no_lang_code', 1, 'https://ror.org/008y69805 Inscent (United States)'),
(7186, 'https://ror.org/05bjd0w70', 'en', 1, 'https://ror.org/05bjd0w70 Chestnut Hill College'),
(7187, 'https://ror.org/03ymtp346', 'no_lang_code', 1, 'https://ror.org/03ymtp346 Insight Genetics (United States)'),
(7188, 'https://ror.org/02p5qdz58', 'no_lang_code', 1, 'https://ror.org/02p5qdz58 Insilicos (United States)'),
(7189, 'https://ror.org/01bh4p295', 'en', 1, 'https://ror.org/01bh4p295 Erskine College'),
(7190, 'https://ror.org/020wnve48', 'no_lang_code', 1, 'https://ror.org/020wnve48 Spectris (United Kingdom)'),
(7191, 'https://ror.org/047m7vj12', 'no_lang_code', 1, 'https://ror.org/047m7vj12 InSituTec (United States)'),
(7192, 'https://ror.org/0558q2529', 'en', 1, 'https://ror.org/0558q2529 Manchester City Council'),
(7193, 'https://ror.org/03mf1cy35', 'en', 1, 'https://ror.org/03mf1cy35 Manchester College'),
(7194, 'https://ror.org/052d4jz71', 'no_lang_code', 1, 'https://ror.org/052d4jz71 CHI Systems (United States)'),
(7195, 'https://ror.org/016jbz672', 'no_lang_code', 1, 'https://ror.org/016jbz672 MandalMed (United States)'),
(7196, 'https://ror.org/01vvexy08', 'no_lang_code', 1, 'https://ror.org/01vvexy08 CHI Associates (United States)'),
(7197, 'https://ror.org/00b605v51', 'no_lang_code', 1, 'https://ror.org/00b605v51 Mandel Scientific (Canada)'),
(7198, 'https://ror.org/01brzkg31', 'no_lang_code', 1, 'https://ror.org/01brzkg31 InstaRecon (United States)'),
(7199, 'https://ror.org/01s2wsy11', 'en', 1, 'https://ror.org/01s2wsy11 Chicago Association for Research and Education in Science'),
(7200, 'https://ror.org/038srm946', 'no_lang_code', 1, 'https://ror.org/038srm946 Mantech (Canada)'),
(7201, 'https://ror.org/04a5sdn89', 'no_lang_code', 1, 'https://ror.org/04a5sdn89 Magellan BioScience (United States)'),
(7202, 'https://ror.org/03w3ng559', 'no_lang_code', 1, 'https://ror.org/03w3ng559 InPore Vape Technologies (United States)'),
(7203, 'https://ror.org/01e47qp55', 'no_lang_code', 1, 'https://ror.org/01e47qp55 Mapp Biopharmaceutical (United States)'),
(7204, 'https://ror.org/034dvzk32', 'en', 1, 'https://ror.org/034dvzk32 Marin Health and Human Services'),
(7205, 'https://ror.org/022q4qx22', 'en', 1, 'https://ror.org/022q4qx22 Chicago Public Schools'),
(7206, 'https://ror.org/00vev3847', 'no_lang_code', 1, 'https://ror.org/00vev3847 Marker Gene Technologies (United States)'),
(7207, 'https://ror.org/02c1at876', 'no_lang_code', 1, 'https://ror.org/02c1at876 Martec (Canada)'),
(7208, 'https://ror.org/00j1c3r46', 'no_lang_code', 1, 'https://ror.org/00j1c3r46 Optym (United States)'),
(7209, 'https://ror.org/05y2ajc95', 'en', 1, 'https://ror.org/05y2ajc95 Forest Preserves of Cook County'),
(7210, 'https://ror.org/05n4v8450', 'no_lang_code', 1, 'https://ror.org/05n4v8450 Martingale Research (United States)'),
(7211, 'https://ror.org/00efy1453', 'en', 1, 'https://ror.org/00efy1453 Chief Dull Knife College'),
(7212, 'https://ror.org/00xh1ah97', 'en', 1, 'https://ror.org/00xh1ah97 Child Trends'),
(7213, 'https://ror.org/0202zza47', 'en', 1, 'https://ror.org/0202zza47 Children’s Discovery Museum of San Jose'),
(7214, 'https://ror.org/01hx92781', 'en', 1, 'https://ror.org/01hx92781 Children''s Tumor Foundation'),
(7215, 'https://ror.org/051vg8924', 'en', 1, 'https://ror.org/051vg8924 Boston Children''s Museum'),
(7216, 'https://ror.org/04e602778', 'en', 1, 'https://ror.org/04e602778 Maryville College'),
(7217, 'https://ror.org/0281e1q12', 'en', 1, 'https://ror.org/0281e1q12 Institute for Broadening Participation'),
(7218, 'https://ror.org/01qz53q03', 'no_lang_code', 1, 'https://ror.org/01qz53q03 Mascoma (Canada)'),
(7219, 'https://ror.org/018j3hx85', 'pt', 1, 'https://ror.org/018j3hx85 Escola Superior de Tecnologia da Saúde de Coimbra'),
(7220, 'https://ror.org/018r1es63', 'en', 1, 'https://ror.org/018r1es63 Massachusetts Bay Community College'),
(7221, 'https://ror.org/0486jtg80', 'no_lang_code', 1, 'https://ror.org/0486jtg80 Chimera Technologies (United States)'),
(7222, 'https://ror.org/015mh9580', 'en', 1, 'https://ror.org/015mh9580 Chippewa Valley Technical College'),
(7223, 'https://ror.org/036zxgb71', 'en', 1, 'https://ror.org/036zxgb71 Institute for the Study of Learning and Expertise'),
(7224, 'https://ror.org/01144y654', 'no_lang_code', 1, 'https://ror.org/01144y654 MASSolutions (Canada)'),
(7225, 'https://ror.org/02sptv349', 'en', 1, 'https://ror.org/02sptv349 National Institute for Women in Trades, Technology & Sciences'),
(7226, 'https://ror.org/035zrdg08', 'no_lang_code', 1, 'https://ror.org/035zrdg08 MassTech (United States)'),
(7227, 'https://ror.org/052sh1z51', 'no_lang_code', 1, 'https://ror.org/052sh1z51 MAST Carbon (United Kingdom)'),
(7228, 'https://ror.org/053qgsf62', 'no_lang_code', 1, 'https://ror.org/053qgsf62 MATECH (United States)'),
(7229, 'https://ror.org/0525r6t88', 'no_lang_code', 1, 'https://ror.org/0525r6t88 Chiral Photonics (United States)'),
(7230, 'https://ror.org/04gydfb09', 'no_lang_code', 1, 'https://ror.org/04gydfb09 Material Methods (United States)'),
(7231, 'https://ror.org/043f04882', 'en', 1, 'https://ror.org/043f04882 Institute of Mathematical Statistics'),
(7232, 'https://ror.org/03e0t3214', 'no_lang_code', 1, 'https://ror.org/03e0t3214 Materials and Systems Research (United States)'),
(7233, 'https://ror.org/046v9f126', 'no_lang_code', 1, 'https://ror.org/046v9f126 Material Sciences (United States)'),
(7234, 'https://ror.org/0315pp027', 'en', 1, 'https://ror.org/0315pp027 Math Learning Center'),
(7235, 'https://ror.org/04m828n09', 'en', 1, 'https://ror.org/04m828n09 EAC Network'),
(7236, 'https://ror.org/02g8p3m28', 'no_lang_code', 1, 'https://ror.org/02g8p3m28 Dr. Reddy''s Laboratories (United Kingdom)'),
(7237, 'https://ror.org/0402pb169', 'en', 1, 'https://ror.org/0402pb169 Institution of Civil Engineers'),
(7238, 'https://ror.org/00fjz2j91', 'en', 1, 'https://ror.org/00fjz2j91 Christian Community Health Center'),
(7239, 'https://ror.org/01zt0tq34', 'no_lang_code', 1, 'https://ror.org/01zt0tq34 Alere (United States)'),
(7240, 'https://ror.org/03jp8j090', 'no_lang_code', 1, 'https://ror.org/03jp8j090 Christie (Canada)'),
(7241, 'https://ror.org/02k4agj72', 'en', 1, 'https://ror.org/02k4agj72 Matrix Institute on Addictions'),
(7242, 'https://ror.org/051zy3f83', 'no_lang_code', 1, 'https://ror.org/051zy3f83 Chrysalis BioTherapeutics (United States)'),
(7243, 'https://ror.org/03ww9z667', 'en', 1, 'https://ror.org/03ww9z667 Institute for Disabilities Research and Training'),
(7244, 'https://ror.org/034fbm741', 'no_lang_code', 1, 'https://ror.org/034fbm741 eSpin Technologies (United States)'),
(7245, 'https://ror.org/01th0ab46', 'en', 1, 'https://ror.org/01th0ab46 Institute for Family Health'),
(7246, 'https://ror.org/04g4kf576', 'en', 1, 'https://ror.org/04g4kf576 Institute for Health and Recovery'),
(7247, 'https://ror.org/0125vzh18', 'no_lang_code', 1, 'https://ror.org/0125vzh18 Noble (United States)'),
(7248, 'https://ror.org/0095q0x79', 'no_lang_code', 1, 'https://ror.org/0095q0x79 MAX Mobility (United States)'),
(7249, 'https://ror.org/02rbfnr22', 'en', 1, 'https://ror.org/02rbfnr22 Max Planck Florida Institute for Neuroscience'),
(7250, 'https://ror.org/05bm26z17', 'no_lang_code', 1, 'https://ror.org/05bm26z17 Maxeler Technologies (United Kingdom)'),
(7251, 'https://ror.org/02fprvw90', 'no_lang_code', 1, 'https://ror.org/02fprvw90 FoodChek Systems (Canada)'),
(7252, 'https://ror.org/01mvmtd83', 'en', 1, 'https://ror.org/01mvmtd83 Cicatelli Associates'),
(7253, 'https://ror.org/049b6am17', 'no_lang_code', 1, 'https://ror.org/049b6am17 Essex and Suffolk Water (United Kingdom)'),
(7254, 'https://ror.org/03zm9zy91', 'no_lang_code', 1, 'https://ror.org/03zm9zy91 MayaTech (United States)'),
(7255, 'https://ror.org/038s2v152', 'no_lang_code', 1, 'https://ror.org/038s2v152 Ciencia (United States)'),
(7256, 'https://ror.org/01t44n583', 'no_lang_code', 1, 'https://ror.org/01t44n583 MBio Diagnostics (United States)'),
(7257, 'https://ror.org/03cks4g33', 'en', 1, 'https://ror.org/03cks4g33 Haymarket Center'),
(7258, 'https://ror.org/03ravcp64', 'no_lang_code', 1, 'https://ror.org/03ravcp64 Etubics (United States)'),
(7259, 'https://ror.org/014er3x17', 'en', 1, 'https://ror.org/014er3x17 Institute of Particle Physics'),
(7260, 'https://ror.org/01gchcj93', 'no_lang_code', 1, 'https://ror.org/01gchcj93 South Carolina ETV (United States)'),
(7261, 'https://ror.org/04k8cb995', 'no_lang_code', 1, 'https://ror.org/04k8cb995 MD Precision (Canada)'),
(7262, 'https://ror.org/03f98n803', 'en', 1, 'https://ror.org/03f98n803 Canadian Institute for Energy Training Institut Canadien de Formation en Energie'),
(7263, 'https://ror.org/05b6w4f42', 'no_lang_code', 1, 'https://ror.org/05b6w4f42 Nordion (Canada)'),
(7264, 'https://ror.org/03kaqgs21', 'no_lang_code', 1, 'https://ror.org/03kaqgs21 Eutropics Pharmaceuticals (United States)'),
(7265, 'https://ror.org/02gv8a673', 'en', 1, 'https://ror.org/02gv8a673 Everett Community College'),
(7266, 'https://ror.org/05jyj3645', 'no_lang_code', 1, 'https://ror.org/05jyj3645 Evergen Biotechnologies (United States)'),
(7267, 'https://ror.org/05jsgsm79', 'en', 1, 'https://ror.org/05jsgsm79 Evergreen Valley College'),
(7268, 'https://ror.org/0345rff82', 'no_lang_code', 1, 'https://ror.org/0345rff82 Evident Point (Canada)'),
(7269, 'https://ror.org/021z7gb33', 'no_lang_code', 1, 'https://ror.org/021z7gb33 Evolutionary Genomics (United States)'),
(7270, 'https://ror.org/00kz7vp63', 'en', 1, 'https://ror.org/00kz7vp63 Cincinnati Museum Center'),
(7271, 'https://ror.org/048x1b229', 'no_lang_code', 1, 'https://ror.org/048x1b229 Exelus (United States)'),
(7272, 'https://ror.org/05e2txa39', 'no_lang_code', 1, 'https://ror.org/05e2txa39 Exemplar Genetics (United States)'),
(7273, 'https://ror.org/01tcbxg35', 'no_lang_code', 1, 'https://ror.org/01tcbxg35 Circle Solutions'),
(7274, 'https://ror.org/03savhj63', 'no_lang_code', 1, 'https://ror.org/03savhj63 Exocell (United States)'),
(7275, 'https://ror.org/04s4z3495', 'no_lang_code', 1, 'https://ror.org/04s4z3495 Circulatory Technology (United States)'),
(7276, 'https://ror.org/04xgmns80', 'no_lang_code', 1, 'https://ror.org/04xgmns80 PermSelect (United States)'),
(7277, 'https://ror.org/05qv76t63', 'en', 1, 'https://ror.org/05qv76t63 Construction Industry Research and Information Association'),
(7278, 'https://ror.org/03hdkx955', 'no_lang_code', 1, 'https://ror.org/03hdkx955 Medicago (Canada)'),
(7279, 'https://ror.org/01h42mb65', 'no_lang_code', 1, 'https://ror.org/01h42mb65 Medical Decision Modeling (United States)'),
(7280, 'https://ror.org/03yt1ez60', 'no_lang_code', 1, 'https://ror.org/03yt1ez60 Cisco Systems (United States)'),
(7281, 'https://ror.org/01vwr6t80', 'en', 1, 'https://ror.org/01vwr6t80 Académie militaire de caroline du sud Citadel'),
(7282, 'https://ror.org/0085yat49', 'en', 1, 'https://ror.org/0085yat49 City of Bradford Metropolitan District Council'),
(7283, 'https://ror.org/03w1r6s74', 'no_lang_code', 1, 'https://ror.org/03w1r6s74 Exponents (United States)'),
(7284, 'https://ror.org/05chwyh56', 'en', 1, 'https://ror.org/05chwyh56 Princess Alexandra Hospital'),
(7285, 'https://ror.org/02t7v8j62', 'en', 1, 'https://ror.org/02t7v8j62 City of Edinburgh Council'),
(7286, 'https://ror.org/04sxjet04', 'no_lang_code', 1, 'https://ror.org/04sxjet04 Medical Discovery Partners (United States)'),
(7287, 'https://ror.org/01tbdbg27', 'en', 1, 'https://ror.org/01tbdbg27 City of York Council'),
(7288, 'https://ror.org/0215tke07', 'no_lang_code', 1, 'https://ror.org/0215tke07 Medical Imaging Applications (United States)'),
(7289, 'https://ror.org/0413dyq61', 'no_lang_code', 1, 'https://ror.org/0413dyq61 Expression Therapeutics (United States)'),
(7290, 'https://ror.org/03gzjnf17', 'no_lang_code', 1, 'https://ror.org/03gzjnf17 Zywie (United States)'),
(7291, 'https://ror.org/0499qzy56', 'no_lang_code', 1, 'https://ror.org/0499qzy56 Extrel (United States)'),
(7292, 'https://ror.org/04wtgxd69', 'en', 1, 'https://ror.org/04wtgxd69 Civil Aviation Authority'),
(7293, 'https://ror.org/00y022594', 'en', 1, 'https://ror.org/00y022594 Eye and Ear Foundation'),
(7294, 'https://ror.org/02gkj6c36', 'no_lang_code', 1, 'https://ror.org/02gkj6c36 Medigen (United States)'),
(7295, 'https://ror.org/030p6ep86', 'no_lang_code', 1, 'https://ror.org/030p6ep86 Aecom (United Kingdom)'),
(7296, 'https://ror.org/03xpd8a12', 'no_lang_code', 1, 'https://ror.org/03xpd8a12 MédiMabs (Canada)'),
(7297, 'https://ror.org/00zcam334', 'no_lang_code', 1, 'https://ror.org/00zcam334 Clancy Docwra (United Kingdom)'),
(7298, 'https://ror.org/04f5kwf34', 'no_lang_code', 1, 'https://ror.org/04f5kwf34 Mediomics (United States)'),
(7299, 'https://ror.org/008vjgw77', 'no_lang_code', 1, 'https://ror.org/008vjgw77 MediSpectra (United States)'),
(7300, 'https://ror.org/00twdh217', 'no_lang_code', 1, 'https://ror.org/00twdh217 Clarovita Nutrition (Canada)'),
(7301, 'https://ror.org/0357g8536', 'no_lang_code', 1, 'https://ror.org/0357g8536 Clearpath Robotics (Canada)'),
(7302, 'https://ror.org/039hqe943', 'no_lang_code', 1, 'https://ror.org/039hqe943 MedShape (United States)'),
(7303, 'https://ror.org/05sgcvx90', 'en', 1, 'https://ror.org/05sgcvx90 Cleveland Metropolitan School District'),
(7304, 'https://ror.org/02f23ya44', 'no_lang_code', 1, 'https://ror.org/02f23ya44 CleverSys (United States)'),
(7305, 'https://ror.org/04j5ay321', 'en', 1, 'https://ror.org/04j5ay321 Clinical and Laboratory Standards Institute'),
(7306, 'https://ror.org/025yw0g63', 'en', 1, 'https://ror.org/025yw0g63 Clinical Immunology Society'),
(7307, 'https://ror.org/05k7cyf48', 'en', 1, 'https://ror.org/05k7cyf48 Clinical Research Management'),
(7308, 'https://ror.org/00x489z61', 'pt', 1, 'https://ror.org/00x489z61 Instituto Geográfico Português'),
(7309, 'https://ror.org/02yp59539', 'en', 1, 'https://ror.org/02yp59539 Clinical Trials and Surveys Corporation'),
(7310, 'https://ror.org/02srjnb65', 'no_lang_code', 1, 'https://ror.org/02srjnb65 Membrane Reactor Technologies (Canada)'),
(7311, 'https://ror.org/04g4p0a45', 'no_lang_code', 1, 'https://ror.org/04g4p0a45 Lonza (United States)'),
(7312, 'https://ror.org/05csqsw96', 'no_lang_code', 1, 'https://ror.org/05csqsw96 Mendel Biotechnology (United States)'),
(7313, 'https://ror.org/00q873a22', 'en', 1, 'https://ror.org/00q873a22 County of Mendocino'),
(7314, 'https://ror.org/00wg15m47', 'no_lang_code', 1, 'https://ror.org/00wg15m47 Menssana Research (United States)'),
(7315, 'https://ror.org/00rbrz089', 'en', 1, 'https://ror.org/00rbrz089 Mental Health Association of Southeastern Pennsylvania'),
(7316, 'https://ror.org/00m4h6p50', 'en', 1, 'https://ror.org/00m4h6p50 Mental Health Center of Denver'),
(7317, 'https://ror.org/00w4g1w45', 'en', 1, 'https://ror.org/00w4g1w45 Coalition for a Drug Free Hawaii'),
(7318, 'https://ror.org/02y239j20', 'en', 1, 'https://ror.org/02y239j20 MentorNet'),
(7319, 'https://ror.org/02b9pea19', 'en', 1, 'https://ror.org/02b9pea19 Coastal Bend Wellness Foundation'),
(7320, 'https://ror.org/04wp1zv12', 'no_lang_code', 1, 'https://ror.org/04wp1zv12 Mercator MedSystems (United States)'),
(7321, 'https://ror.org/01x00nv07', 'fr', 1, 'https://ror.org/01x00nv07 Coalition des Organismes Communautaires Québécois de Lutte Contre le Sida'),
(7322, 'https://ror.org/01h1sgg38', 'no_lang_code', 1, 'https://ror.org/01h1sgg38 Meridian Instrument (United States)'),
(7323, 'https://ror.org/01sgg2e20', 'en', 1, 'https://ror.org/01sgg2e20 Merit Network'),
(7324, 'https://ror.org/04z9dde49', 'no_lang_code', 1, 'https://ror.org/04z9dde49 Cogmation Robotics (Canada)'),
(7325, 'https://ror.org/014dkew11', 'no_lang_code', 1, 'https://ror.org/014dkew11 Environment and Health Group (United States)'),
(7326, 'https://ror.org/01nk4hm61', 'en', 1, 'https://ror.org/01nk4hm61 Mesa Community College'),
(7327, 'https://ror.org/01f8vhd41', 'pt', 1, 'https://ror.org/01f8vhd41 Instituto Nacional de Metrologia, Qualidade e Tecnologia National Institute of Metrology Quality and Technology'),
(7328, 'https://ror.org/04jqk5a71', 'no_lang_code', 1, 'https://ror.org/04jqk5a71 COI Ceramics (United States)'),
(7329, 'https://ror.org/059zyyv27', 'en', 1, 'https://ror.org/059zyyv27 Meta House'),
(7330, 'https://ror.org/03ahd9g67', 'en', 1, 'https://ror.org/03ahd9g67 Coker College'),
(7331, 'https://ror.org/00j99af28', 'no_lang_code', 1, 'https://ror.org/00j99af28 Metabolic Technologies (United States)'),
(7332, 'https://ror.org/02wy9g851', 'no_lang_code', 1, 'https://ror.org/02wy9g851 Colibri Software (Canada)'),
(7333, 'https://ror.org/00sty4r04', 'no_lang_code', 1, 'https://ror.org/00sty4r04 Colibri Technologies (Canada)'),
(7334, 'https://ror.org/04b4sq284', 'no_lang_code', 1, 'https://ror.org/04b4sq284 Collaborative Drug Discovery (United States)'),
(7335, 'https://ror.org/03nrvep03', 'no_lang_code', 1, 'https://ror.org/03nrvep03 MetaMateria (United States)'),
(7336, 'https://ror.org/02y5b7h51', 'no_lang_code', 1, 'https://ror.org/02y5b7h51 Collagen Matrix (United States)'),
(7337, 'https://ror.org/05vharc92', 'en', 1, 'https://ror.org/05vharc92 College Ahuntsic Collège ahuntsic'),
(7338, 'https://ror.org/00zgt4y83', 'no_lang_code', 1, 'https://ror.org/00zgt4y83 MetaMedia Training International (United States)'),
(7339, 'https://ror.org/059kxna68', 'no_lang_code', 1, 'https://ror.org/059kxna68 ActivBiotics (United States)'),
(7340, 'https://ror.org/018xkrg73', 'fr', 1, 'https://ror.org/018xkrg73 Collège d''Alma'),
(7341, 'https://ror.org/01hzacg10', 'no_lang_code', 1, 'https://ror.org/01hzacg10 Meticube (Portugal)'),
(7342, 'https://ror.org/03wjvct24', 'en', 1, 'https://ror.org/03wjvct24 Fairbanks Native Association'),
(7343, 'https://ror.org/05kk38g92', 'no_lang_code', 1, 'https://ror.org/05kk38g92 Fairfield Crystal Technology (United States)'),
(7344, 'https://ror.org/0432hdr79', 'fr', 1, 'https://ror.org/0432hdr79 Cégep Garneau'),
(7345, 'https://ror.org/007yjv643', 'no_lang_code', 1, 'https://ror.org/007yjv643 Companhia União Fabril'),
(7346, 'https://ror.org/04bwfkw08', 'fr', 1, 'https://ror.org/04bwfkw08 Collège Lionel Groulx Collège lionel-groulx'),
(7347, 'https://ror.org/020nhee14', 'fr', 1, 'https://ror.org/020nhee14 Collège Mérici Merici College'),
(7348, 'https://ror.org/0102yp030', 'en', 1, 'https://ror.org/0102yp030 College of DuPage'),
(7349, 'https://ror.org/03e8gpx64', 'no_lang_code', 1, 'https://ror.org/03e8gpx64 MetroLaser (United States)'),
(7350, 'https://ror.org/05f0q4986', 'no_lang_code', 1, 'https://ror.org/05f0q4986 Council on Alcohol and Drugs (United States)'),
(7351, 'https://ror.org/05xemxk04', 'en', 1, 'https://ror.org/05xemxk04 Metropolitan Drug Commission'),
(7352, 'https://ror.org/0362v0107', 'en', 1, 'https://ror.org/0362v0107 Family and Medical Counseling Service'),
(7353, 'https://ror.org/03qvjfg54', 'en', 1, 'https://ror.org/03qvjfg54 Notre Dame de Namur University Université notre-dame-de-namur'),
(7354, 'https://ror.org/022e9hp02', 'en', 1, 'https://ror.org/022e9hp02 Family Health Centers of San Diego'),
(7355, 'https://ror.org/00dncgb07', 'en', 1, 'https://ror.org/00dncgb07 Notre Dame of Maryland University'),
(7356, 'https://ror.org/04zh19w51', 'en', 1, 'https://ror.org/04zh19w51 Metropolitan Police Service'),
(7357, 'https://ror.org/00nv9r617', 'en', 1, 'https://ror.org/00nv9r617 College of Saint Rose'),
(7358, 'https://ror.org/03a654521', 'no_lang_code', 1, 'https://ror.org/03a654521 Faraday Technology (United States)'),
(7359, 'https://ror.org/021nkvj61', 'no_lang_code', 1, 'https://ror.org/021nkvj61 MGS Research (United States)'),
(7360, 'https://ror.org/05y2hka35', 'en', 1, 'https://ror.org/05y2hka35 Santa Fe University of Art and Design Universidad de Arte y Diseño de Santa Fe'),
(7361, 'https://ror.org/05td03w87', 'en', 1, 'https://ror.org/05td03w87 College of the Canyons'),
(7362, 'https://ror.org/04z1nmb83', 'en', 1, 'https://ror.org/04z1nmb83 College of the Mainland'),
(7363, 'https://ror.org/03bnt5240', 'en', 1, 'https://ror.org/03bnt5240 College of Menominee Nation'),
(7364, 'https://ror.org/05bmcfg03', 'en', 1, 'https://ror.org/05bmcfg03 Patricia and Phillip Frost Museum of Science'),
(7365, 'https://ror.org/04c7ypr30', 'en', 1, 'https://ror.org/04c7ypr30 College of the North Atlantic'),
(7366, 'https://ror.org/00rgbr518', 'en', 1, 'https://ror.org/00rgbr518 Miami Dade College'),
(7367, 'https://ror.org/00afpvb68', 'fr', 1, 'https://ror.org/00afpvb68 Collège Shawinigan'),
(7368, 'https://ror.org/04sp6ec60', 'en', 1, 'https://ror.org/04sp6ec60 Fast Track Drugs and Biologics'),
(7369, 'https://ror.org/03r35eh66', 'no_lang_code', 1, 'https://ror.org/03r35eh66 Michigan Molecular Institute (United States)'),
(7370, 'https://ror.org/04e9wrg64', 'en', 1, 'https://ror.org/04e9wrg64 Collinge and Associates'),
(7371, 'https://ror.org/02fag2f73', 'en', 1, 'https://ror.org/02fag2f73 Randolph College'),
(7372, 'https://ror.org/023cd6641', 'en', 1, 'https://ror.org/023cd6641 Michigan Department of Agriculture and Rural Development'),
(7373, 'https://ror.org/046jf3z18', 'no_lang_code', 1, 'https://ror.org/046jf3z18 Micro Magnetics (United States)'),
(7374, 'https://ror.org/02x4k7z35', 'no_lang_code', 1, 'https://ror.org/02x4k7z35 Carepayment (United States)'),
(7375, 'https://ror.org/00dj48n36', 'en', 1, 'https://ror.org/00dj48n36 Colorado Judicial Branch'),
(7376, 'https://ror.org/01dpfst30', 'no_lang_code', 1, 'https://ror.org/01dpfst30 MicroLink Devices (United States)'),
(7377, 'https://ror.org/05k91zb11', 'no_lang_code', 1, 'https://ror.org/05k91zb11 Sony Corporation (United States)'),
(7378, 'https://ror.org/01faz8m53', 'no_lang_code', 1, 'https://ror.org/01faz8m53 MicroOptical Engineering (United States)'),
(7379, 'https://ror.org/01ada6a49', 'no_lang_code', 1, 'https://ror.org/01ada6a49 Reaction Biology Corporation (United States)'),
(7380, 'https://ror.org/02q9ktd98', 'no_lang_code', 1, 'https://ror.org/02q9ktd98 Real Time Analyzers (United States)'),
(7381, 'https://ror.org/014ztwb11', 'fr', 1, 'https://ror.org/014ztwb11 Fédération des cégeps'),
(7382, 'https://ror.org/04f7srh33', 'no_lang_code', 1, 'https://ror.org/04f7srh33 Micropharma (Canada)'),
(7383, 'https://ror.org/00es7k954', 'en', 1, 'https://ror.org/00es7k954 Columbia College - South Carolina'),
(7384, 'https://ror.org/02a0sqy81', 'en', 1, 'https://ror.org/02a0sqy81 Columbia Education'),
(7385, 'https://ror.org/02v81r985', 'no_lang_code', 1, 'https://ror.org/02v81r985 Ametek (United States)'),
(7386, 'https://ror.org/04yv8m152', 'no_lang_code', 1, 'https://ror.org/04yv8m152 Reaction Engineering International (United States)'),
(7387, 'https://ror.org/020wypw95', 'no_lang_code', 1, 'https://ror.org/020wypw95 Lord Corporation (United States)'),
(7388, 'https://ror.org/01dp84930', 'no_lang_code', 1, 'https://ror.org/01dp84930 Indium Corporation (United States)'),
(7389, 'https://ror.org/00ke7zh37', 'en', 1, 'https://ror.org/00ke7zh37 American Federation of Mineralogical Societies'),
(7390, 'https://ror.org/035hvd463', 'en', 1, 'https://ror.org/035hvd463 Université adventiste de washington Washington Adventist University'),
(7391, 'https://ror.org/03k61re15', 'no_lang_code', 1, 'https://ror.org/03k61re15 MicroTransponder (United States)'),
(7392, 'https://ror.org/01dvp8b67', 'en', 1, 'https://ror.org/01dvp8b67 Combustion Institute'),
(7393, 'https://ror.org/0550hnq49', 'en', 1, 'https://ror.org/0550hnq49 Samuel S Fels Fund'),
(7394, 'https://ror.org/03868wc59', 'en', 1, 'https://ror.org/03868wc59 Middlesex County College'),
(7395, 'https://ror.org/01yjs2h26', 'en', 1, 'https://ror.org/01yjs2h26 Design Council'),
(7396, 'https://ror.org/00cwwgn12', 'no_lang_code', 1, 'https://ror.org/00cwwgn12 Recombinant Technologies (United States)'),
(7397, 'https://ror.org/057fsw088', 'no_lang_code', 1, 'https://ror.org/057fsw088 Recon Instruments (Canada)'),
(7398, 'https://ror.org/03x510769', 'en', 1, 'https://ror.org/03x510769 Recovery Consultants of Atlanta'),
(7399, 'https://ror.org/00q72x252', 'en', 1, 'https://ror.org/00q72x252 Committee on Climate Change'),
(7400, 'https://ror.org/00qq2kd97', 'no_lang_code', 1, 'https://ror.org/00qq2kd97 Mikro Systems (United States)'),
(7401, 'https://ror.org/02mh82r78', 'no_lang_code', 1, 'https://ror.org/02mh82r78 Fermalogic (United States)'),
(7402, 'https://ror.org/02xx54833', 'no_lang_code', 1, 'https://ror.org/02xx54833 HedgePath Pharmaceuticals (United States)'),
(7403, 'https://ror.org/04mdnw291', 'en', 1, 'https://ror.org/04mdnw291 Miles College'),
(7404, 'https://ror.org/01z6vd941', 'no_lang_code', 1, 'https://ror.org/01z6vd941 Millar (United States)'),
(7405, 'https://ror.org/05twrtk66', 'no_lang_code', 1, 'https://ror.org/05twrtk66 Fermionics (United States)'),
(7406, 'https://ror.org/02ym2t546', 'en', 1, 'https://ror.org/02ym2t546 Milwaukee Area Technical College'),
(7407, 'https://ror.org/0128ckf82', 'en', 1, 'https://ror.org/0128ckf82 Ferrum College'),
(7408, 'https://ror.org/04swxtn38', 'no_lang_code', 1, 'https://ror.org/04swxtn38 Mimosa Acoustics (United States)'),
(7409, 'https://ror.org/05v4ned20', 'no_lang_code', 1, 'https://ror.org/05v4ned20 iSign Solutions (United States)'),
(7410, 'https://ror.org/004es3518', 'no_lang_code', 1, 'https://ror.org/004es3518 Red Hill Studios'),
(7411, 'https://ror.org/02dq1ca65', 'no_lang_code', 1, 'https://ror.org/02dq1ca65 Minerva Biotechnologies (United States)'),
(7412, 'https://ror.org/02z40ce29', 'en', 1, 'https://ror.org/02z40ce29 Red River College'),
(7413, 'https://ror.org/00996xv77', 'en', 1, 'https://ror.org/00996xv77 Red Rocks Community College'),
(7414, 'https://ror.org/00awfs868', 'no_lang_code', 1, 'https://ror.org/00awfs868 FFA Sciences (United States)'),
(7415, 'https://ror.org/001m3hq40', 'en', 1, 'https://ror.org/001m3hq40 Communication Matters'),
(7416, 'https://ror.org/03z5xhq25', 'no_lang_code', 1, 'https://ror.org/03z5xhq25 FHC (United States)'),
(7417, 'https://ror.org/000a1cz07', 'no_lang_code', 1, 'https://ror.org/000a1cz07 Fianium (United Kingdom)'),
(7418, 'https://ror.org/03sxe1905', 'no_lang_code', 1, 'https://ror.org/03sxe1905 FibroGen (United States)'),
(7419, 'https://ror.org/0491h6661', 'no_lang_code', 1, 'https://ror.org/0491h6661 Celerion (Canada)'),
(7420, 'https://ror.org/03yxyad36', 'no_lang_code', 1, 'https://ror.org/03yxyad36 ABS Consulting (United States)'),
(7421, 'https://ror.org/04sbz4e56', 'no_lang_code', 1, 'https://ror.org/04sbz4e56 Clod Ensemble (United Kingdom)'),
(7422, 'https://ror.org/00vvheq07', 'en', 1, 'https://ror.org/00vvheq07 Community Anti Drug Coalitions of America'),
(7423, 'https://ror.org/00109m582', 'en', 1, 'https://ror.org/00109m582 Community Connections'),
(7424, 'https://ror.org/04yh8wr33', 'en', 1, 'https://ror.org/04yh8wr33 Cure Spinal Muscular Atrophy'),
(7425, 'https://ror.org/03nz5jq66', 'no_lang_code', 1, 'https://ror.org/03nz5jq66 Geotab (Canada)'),
(7426, 'https://ror.org/041yet549', 'en', 1, 'https://ror.org/041yet549 Community Health Action of Staten Island'),
(7427, 'https://ror.org/037xte462', 'no_lang_code', 1, 'https://ror.org/037xte462 Talaris Therapeutics (United States)'),
(7428, 'https://ror.org/00fre7r52', 'en', 1, 'https://ror.org/00fre7r52 Community Health Awareness Group'),
(7429, 'https://ror.org/04pshv774', 'no_lang_code', 1, 'https://ror.org/04pshv774 Field Diagnostic Services (United States)'),
(7430, 'https://ror.org/02c5bjt68', 'en', 1, 'https://ror.org/02c5bjt68 Community Rehabilitation Center'),
(7431, 'https://ror.org/01se61h67', 'no_lang_code', 1, 'https://ror.org/01se61h67 Feilden Clegg Bradley Studios (United Kingdom)'),
(7432, 'https://ror.org/00hezqs33', 'no_lang_code', 1, 'https://ror.org/00hezqs33 Film and Video Umbrella (United Kingdom)'),
(7433, 'https://ror.org/009rf1452', 'en', 1, 'https://ror.org/009rf1452 San Francisco Film Society'),
(7434, 'https://ror.org/01t77y753', 'en', 1, 'https://ror.org/01t77y753 Regis College'),
(7435, 'https://ror.org/02t7ex691', 'no_lang_code', 1, 'https://ror.org/02t7ex691 Minnetronix (United States)'),
(7436, 'https://ror.org/01hr7mm17', 'no_lang_code', 1, 'https://ror.org/01hr7mm17 Regis Technologies (United States)'),
(7437, 'https://ror.org/04fkqaq03', 'en', 1, 'https://ror.org/04fkqaq03 Rehabilitation Engineering and Assistive Technology Society of North America'),
(7438, 'https://ror.org/05petyd50', 'no_lang_code', 1, 'https://ror.org/05petyd50 Minnow Environmental (Canada)'),
(7439, 'https://ror.org/02g9d5535', 'en', 1, 'https://ror.org/02g9d5535 Community Based Research Centre'),
(7440, 'https://ror.org/04804s519', 'no_lang_code', 1, 'https://ror.org/04804s519 MIRA (United Kingdom)'),
(7441, 'https://ror.org/03hp55s21', 'no_lang_code', 1, 'https://ror.org/03hp55s21 Mircom Technologies (Canada)'),
(7442, 'https://ror.org/02tdag098', 'no_lang_code', 1, 'https://ror.org/02tdag098 Mirna Therapeutics (United States)'),
(7443, 'https://ror.org/034vefz29', 'no_lang_code', 1, 'https://ror.org/034vefz29 Rehabtek (United States)'),
(7444, 'https://ror.org/036mg3k91', 'no_lang_code', 1, 'https://ror.org/036mg3k91 Compound Semiconductor Technologies (United Kingdom)'),
(7445, 'https://ror.org/03grsxg62', 'no_lang_code', 1, 'https://ror.org/03grsxg62 Computational Physics (United States)'),
(7446, 'https://ror.org/03gsmwj46', 'no_lang_code', 1, 'https://ror.org/03gsmwj46 Market Intelligence Strategy Centre (Australia)'),
(7447, 'https://ror.org/02r06yv13', 'no_lang_code', 1, 'https://ror.org/02r06yv13 FJE Enterprises (United States)'),
(7448, 'https://ror.org/02kv35z70', 'en', 1, 'https://ror.org/02kv35z70 Computer History Museum'),
(7449, 'https://ror.org/02pbkp259', 'no_lang_code', 1, 'https://ror.org/02pbkp259 Actian (United States)'),
(7450, 'https://ror.org/03m4mbh87', 'no_lang_code', 1, 'https://ror.org/03m4mbh87 Reliable Biopharmaceutical Corporation (United States)'),
(7451, 'https://ror.org/00ysjm146', 'en', 1, 'https://ror.org/00ysjm146 Mission to the Street for Christ'),
(7452, 'https://ror.org/014y9yf82', 'no_lang_code', 1, 'https://ror.org/014y9yf82 Compuware (United States)'),
(7453, 'https://ror.org/02m40r087', 'no_lang_code', 1, 'https://ror.org/02m40r087 Concepts NREC (United States)'),
(7454, 'https://ror.org/01df0yh77', 'no_lang_code', 1, 'https://ror.org/01df0yh77 Condax (United States)'),
(7455, 'https://ror.org/036gc1b60', 'no_lang_code', 1, 'https://ror.org/036gc1b60 Renewable Energy Systems (United States)'),
(7456, 'https://ror.org/01cmq9k07', 'no_lang_code', 1, 'https://ror.org/01cmq9k07 Institute for Learning Innovation (United States)'),
(7457, 'https://ror.org/00msez306', 'no_lang_code', 1, 'https://ror.org/00msez306 Superconductor Technologies (United States)'),
(7458, 'https://ror.org/01vgd5418', 'en', 1, 'https://ror.org/01vgd5418 Mississippi Gulf Coast Community College'),
(7459, 'https://ror.org/048vjr484', 'en', 1, 'https://ror.org/048vjr484 Florence Nightingale Museum'),
(7460, 'https://ror.org/00aqm2347', 'en', 1, 'https://ror.org/00aqm2347 Florence–Darlington Technical College'),
(7461, 'https://ror.org/01t8qhk85', 'en', 1, 'https://ror.org/01t8qhk85 Conestoga College'),
(7462, 'https://ror.org/010bfx043', 'no_lang_code', 1, 'https://ror.org/010bfx043 Conestoga Meat Packers (Canada)'),
(7463, 'https://ror.org/00w7yp275', 'en', 1, 'https://ror.org/00w7yp275 Mississippi School for Mathematics and Science'),
(7464, 'https://ror.org/03cfg5z67', 'en', 1, 'https://ror.org/03cfg5z67 Florida Department of Children and Families'),
(7465, 'https://ror.org/04jsm3g94', 'en', 1, 'https://ror.org/04jsm3g94 Saving Sight'),
(7466, 'https://ror.org/02t7c5797', 'en', 1, 'https://ror.org/02t7c5797 Connecticut Agricultural Experiment Station'),
(7467, 'https://ror.org/02qdmsh42', 'en', 1, 'https://ror.org/02qdmsh42 Connecticut Department of Children and Families'),
(7468, 'https://ror.org/03naxgw71', 'en', 1, 'https://ror.org/03naxgw71 Reformar'),
(7469, 'https://ror.org/02d7h9t50', 'no_lang_code', 1, 'https://ror.org/02d7h9t50 Consad (United States)'),
(7470, 'https://ror.org/0115psh64', 'no_lang_code', 1, 'https://ror.org/0115psh64 MMTC (United States)'),
(7471, 'https://ror.org/02bwppq44', 'no_lang_code', 1, 'https://ror.org/02bwppq44 Mo Sci Corporation (United States)'),
(7472, 'https://ror.org/0579hfc41', 'no_lang_code', 1, 'https://ror.org/0579hfc41 Ansys (United Kingdom)'),
(7473, 'https://ror.org/01rqavq28', 'no_lang_code', 1, 'https://ror.org/01rqavq28 Fluidity Software (United States)'),
(7474, 'https://ror.org/02fd83219', 'no_lang_code', 1, 'https://ror.org/02fd83219 Fluorous Technologies (United States)'),
(7475, 'https://ror.org/00fyk6p56', 'no_lang_code', 1, 'https://ror.org/00fyk6p56 Moberg Research (United States)'),
(7476, 'https://ror.org/01rde7a23', 'no_lang_code', 1, 'https://ror.org/01rde7a23 Fluxion Biosciences (United States)'),
(7477, 'https://ror.org/04a2ebf76', 'no_lang_code', 1, 'https://ror.org/04a2ebf76 FM Technologies (United States)'),
(7478, 'https://ror.org/05t871q54', 'no_lang_code', 1, 'https://ror.org/05t871q54 Resonance Research (United States)'),
(7479, 'https://ror.org/00an43c80', 'no_lang_code', 1, 'https://ror.org/00an43c80 SonaCare Medical (United States)'),
(7480, 'https://ror.org/02n9cgn70', 'no_lang_code', 1, 'https://ror.org/02n9cgn70 SRA International (United States)'),
(7481, 'https://ror.org/03heckw12', 'no_lang_code', 1, 'https://ror.org/03heckw12 Response Biomedical (Canada)'),
(7482, 'https://ror.org/02j7krq48', 'no_lang_code', 1, 'https://ror.org/02j7krq48 FONA International (Canada)'),
(7483, 'https://ror.org/04vxrkc13', 'en', 1, 'https://ror.org/04vxrkc13 Constructing Excellence'),
(7484, 'https://ror.org/004v7xm28', 'no_lang_code', 1, 'https://ror.org/004v7xm28 Modellium (Canada)'),
(7485, 'https://ror.org/030n06868', 'no_lang_code', 1, 'https://ror.org/030n06868 RiboMed Biotechnologies (United States)'),
(7486, 'https://ror.org/01syx9t96', 'en', 1, 'https://ror.org/01syx9t96 Fond du Lac Reservation'),
(7487, 'https://ror.org/00b970e83', 'en', 1, 'https://ror.org/00b970e83 Fond du Lac Tribal and Community College'),
(7488, 'https://ror.org/00dhmq281', 'en', 1, 'https://ror.org/00dhmq281 Foothill College'),
(7489, 'https://ror.org/03s8c8p36', 'no_lang_code', 1, 'https://ror.org/03s8c8p36 Continuum Dynamics (United States)'),
(7490, 'https://ror.org/04sjg0283', 'en', 1, 'https://ror.org/04sjg0283 Contra Costa Community College District'),
(7491, 'https://ror.org/04xf9by37', 'no_lang_code', 1, 'https://ror.org/04xf9by37 Reveo (United States)'),
(7492, 'https://ror.org/01zd81893', 'no_lang_code', 1, 'https://ror.org/01zd81893 Modulim (United States)'),
(7493, 'https://ror.org/02h2t4g21', 'en', 1, 'https://ror.org/02h2t4g21 Contra Costa Health Services'),
(7494, 'https://ror.org/04vcfk007', 'en', 1, 'https://ror.org/04vcfk007 Mohave Community College'),
(7495, 'https://ror.org/04x0hrd32', 'en', 1, 'https://ror.org/04x0hrd32 Rhode Island Department of Children, Youth & Families'),
(7496, 'https://ror.org/00t00te02', 'no_lang_code', 1, 'https://ror.org/00t00te02 Ford Motor Company (United Kingdom)'),
(7497, 'https://ror.org/02gxn3220', 'no_lang_code', 1, 'https://ror.org/02gxn3220 Mohawk Innovative Technology (United States)'),
(7498, 'https://ror.org/05m6c4y02', 'en', 1, 'https://ror.org/05m6c4y02 St. Tammany Parish Public School System'),
(7499, 'https://ror.org/03hnz5h47', 'no_lang_code', 1, 'https://ror.org/03hnz5h47 Forecasting International (United States)'),
(7500, 'https://ror.org/03vwrbq09', 'no_lang_code', 1, 'https://ror.org/03vwrbq09 EyePoint Pharmaceuticals (United States)'),
(7501, 'https://ror.org/04mg7f574', 'en', 1, 'https://ror.org/04mg7f574 Molecular Biology Consortium'),
(7502, 'https://ror.org/01cfdy756', 'en', 1, 'https://ror.org/01cfdy756 Marie Selby Botanical Gardens'),
(7503, 'https://ror.org/00t6e2695', 'no_lang_code', 1, 'https://ror.org/00t6e2695 Emerson (United Kingdom)'),
(7504, 'https://ror.org/0060hwx87', 'no_lang_code', 1, 'https://ror.org/0060hwx87 Alliance Pharmaceutical (United States)'),
(7505, 'https://ror.org/04v9x0m20', 'no_lang_code', 1, 'https://ror.org/04v9x0m20 Convergent Engineering (United States)'),
(7506, 'https://ror.org/02bbrpp66', 'no_lang_code', 1, 'https://ror.org/02bbrpp66 Convergent Manufacturing Technologies (Canada)'),
(7507, 'https://ror.org/04t5sqe26', 'no_lang_code', 1, 'https://ror.org/04t5sqe26 Molecular Design International (United States)'),
(7508, 'https://ror.org/01g0q1j14', 'en', 1, 'https://ror.org/01g0q1j14 Converse College'),
(7509, 'https://ror.org/03q5ywq18', 'no_lang_code', 1, 'https://ror.org/03q5ywq18 Conversion Energy Enterprises (United States)'),
(7510, 'https://ror.org/01ag6an54', 'en', 1, 'https://ror.org/01ag6an54 Cook Inlet Tribal Council'),
(7511, 'https://ror.org/049bv9m09', 'no_lang_code', 1, 'https://ror.org/049bv9m09 Molecular Kinetics (United States)'),
(7512, 'https://ror.org/00zzc5439', 'no_lang_code', 1, 'https://ror.org/00zzc5439 Molecular LogiX (United States)'),
(7513, 'https://ror.org/0393c0k55', 'no_lang_code', 1, 'https://ror.org/0393c0k55 Cooper and Company (United States)'),
(7514, 'https://ror.org/04rtkc841', 'no_lang_code', 1, 'https://ror.org/04rtkc841 Molecular Oncology (United States)'),
(7515, 'https://ror.org/056nm0533', 'en', 1, 'https://ror.org/056nm0533 Cooper University Health Care'),
(7516, 'https://ror.org/00zwq4e04', 'en', 1, 'https://ror.org/00zwq4e04 Cope Community Services'),
(7517, 'https://ror.org/034a7fc11', 'no_lang_code', 1, 'https://ror.org/034a7fc11 Copernicus Therapeutics (United States)'),
(7518, 'https://ror.org/01qjd9x30', 'en', 1, 'https://ror.org/01qjd9x30 Forestry Commission Scotland'),
(7519, 'https://ror.org/05q07rr84', 'no_lang_code', 1, 'https://ror.org/05q07rr84 Ricardo (United Kingdom)'),
(7520, 'https://ror.org/01yttm365', 'no_lang_code', 1, 'https://ror.org/01yttm365 Viasystems (United States)'),
(7521, 'https://ror.org/05be2cn20', 'en', 1, 'https://ror.org/05be2cn20 Center for Occupational Research and Development'),
(7522, 'https://ror.org/000g90y93', 'en', 1, 'https://ror.org/000g90y93 Fresno Unified School District'),
(7523, 'https://ror.org/00g2vje79', 'no_lang_code', 1, 'https://ror.org/00g2vje79 Cornerstone Systems Northwest (United States)'),
(7524, 'https://ror.org/03n0dgh22', 'en', 1, 'https://ror.org/03n0dgh22 Fort Peck Community College'),
(7525, 'https://ror.org/03fbqtm75', 'no_lang_code', 1, 'https://ror.org/03fbqtm75 Dassault Systèmes (United States)'),
(7526, 'https://ror.org/03mgv7521', 'en', 1, 'https://ror.org/03mgv7521 Fort Worth Museum of Science and History'),
(7527, 'https://ror.org/0492zc296', 'en', 1, 'https://ror.org/0492zc296 Richmond Behavioral Health Authority'),
(7528, 'https://ror.org/02jdkag88', 'en', 1, 'https://ror.org/02jdkag88 Corporation for National Research Initiatives'),
(7529, 'https://ror.org/04b94yv02', 'en', 1, 'https://ror.org/04b94yv02 Fortune Society'),
(7530, 'https://ror.org/00tye4g05', 'en', 1, 'https://ror.org/00tye4g05 Richmond Community College'),
(7531, 'https://ror.org/02w38qn81', 'en', 1, 'https://ror.org/02w38qn81 Forum for the Future'),
(7532, 'https://ror.org/02q9tvn08', 'en', 1, 'https://ror.org/02q9tvn08 Royal Institution of Chartered Surveyors'),
(7533, 'https://ror.org/02xhxds14', 'no_lang_code', 1, 'https://ror.org/02xhxds14 Consarc Design Group (United Kingdom)'),
(7534, 'https://ror.org/05w44gx91', 'fr', 1, 'https://ror.org/05w44gx91 Réseau Technoscience'),
(7535, 'https://ror.org/01wm02973', 'no_lang_code', 1, 'https://ror.org/01wm02973 Foster-Miller (United States)'),
(7536, 'https://ror.org/05cnqje12', 'no_lang_code', 1, 'https://ror.org/05cnqje12 Molecular Targeting Technologies (United States)'),
(7537, 'https://ror.org/0462bbw13', 'no_lang_code', 1, 'https://ror.org/0462bbw13 CorSolutions (United States)'),
(7538, 'https://ror.org/00vcvf072', 'en', 1, 'https://ror.org/00vcvf072 Foundation for Advancements in Science and Education'),
(7539, 'https://ror.org/04h5rh289', 'no_lang_code', 1, 'https://ror.org/04h5rh289 CorTechs Labs (United States)'),
(7540, 'https://ror.org/03abz4556', 'no_lang_code', 1, 'https://ror.org/03abz4556 Cortex Pharmaceuticals (United States)'),
(7541, 'https://ror.org/0350vc126', 'en', 1, 'https://ror.org/0350vc126 River Region Human Services'),
(7542, 'https://ror.org/042hae950', 'no_lang_code', 1, 'https://ror.org/042hae950 Molecules for Health (United States)'),
(7543, 'https://ror.org/05eca5w86', 'en', 1, 'https://ror.org/05eca5w86 Riverside Community College District'),
(7544, 'https://ror.org/04k9pkv35', 'en', 1, 'https://ror.org/04k9pkv35 Foundation for Independent Higher Education'),
(7545, 'https://ror.org/05qjgkw66', 'no_lang_code', 1, 'https://ror.org/05qjgkw66 Cosmos Corporation (United States)'),
(7546, 'https://ror.org/04xfbcg47', 'no_lang_code', 1, 'https://ror.org/04xfbcg47 Fox Chase Chemical Diversity Center'),
(7547, 'https://ror.org/03cpeth56', 'no_lang_code', 1, 'https://ror.org/03cpeth56 Costain (United Kingdom)'),
(7548, 'https://ror.org/0477qng16', 'no_lang_code', 1, 'https://ror.org/0477qng16 Fox Learning Systems (United States)'),
(7549, 'https://ror.org/053ef7v72', 'no_lang_code', 1, 'https://ror.org/053ef7v72 Fractal Systems (Canada)'),
(7550, 'https://ror.org/024712k05', 'no_lang_code', 1, 'https://ror.org/024712k05 Molsoft (United States)'),
(7551, 'https://ror.org/00vfssf38', 'en', 1, 'https://ror.org/00vfssf38 Franklin County Genealogical & Historical Society'),
(7552, 'https://ror.org/04zegtq13', 'en', 1, 'https://ror.org/04zegtq13 Franklin Regional Council of Governments'),
(7553, 'https://ror.org/04ct7vj52', 'en', 1, 'https://ror.org/04ct7vj52 Council for Chemical Research'),
(7554, 'https://ror.org/02vhff552', 'en', 1, 'https://ror.org/02vhff552 Freshwater Fisheries Society of BC'),
(7555, 'https://ror.org/054d19q51', 'en', 1, 'https://ror.org/054d19q51 Council of Graduate Schools'),
(7556, 'https://ror.org/00g3wz802', 'no_lang_code', 1, 'https://ror.org/00g3wz802 Front Range Scientific Computations'),
(7557, 'https://ror.org/04nz2pc13', 'en', 1, 'https://ror.org/04nz2pc13 Council for the Advancement of Science Writing'),
(7558, 'https://ror.org/01xpm4m93', 'no_lang_code', 1, 'https://ror.org/01xpm4m93 Robert Olson Consulting (United States)'),
(7559, 'https://ror.org/01cf5z404', 'no_lang_code', 1, 'https://ror.org/01cf5z404 Robin Medical (United States)'),
(7560, 'https://ror.org/0160sy147', 'no_lang_code', 1, 'https://ror.org/0160sy147 Robotiq (Canada)'),
(7561, 'https://ror.org/03ax9j741', 'en', 1, 'https://ror.org/03ax9j741 Council of State and Territorial Epidemiologists'),
(7562, 'https://ror.org/03qz04022', 'en', 1, 'https://ror.org/03qz04022 Council of State Governments'),
(7563, 'https://ror.org/013phw743', 'en', 1, 'https://ror.org/013phw743 Council on Competitiveness'),
(7564, 'https://ror.org/04e8ge149', 'no_lang_code', 1, 'https://ror.org/04e8ge149 Rocky Mountain Bicycles (Canada)'),
(7565, 'https://ror.org/00kvx4h58', 'en', 1, 'https://ror.org/00kvx4h58 Council on Social Work Education'),
(7566, 'https://ror.org/01ab8nr44', 'en', 1, 'https://ror.org/01ab8nr44 Council on Undergraduate Research'),
(7567, 'https://ror.org/04v5h9g23', 'no_lang_code', 1, 'https://ror.org/04v5h9g23 Fu Associates (United States)'),
(7568, 'https://ror.org/05wngc118', 'no_lang_code', 1, 'https://ror.org/05wngc118 Fuel Theatre (United Kingdom)'),
(7569, 'https://ror.org/05vhg8j56', 'en', 1, 'https://ror.org/05vhg8j56 Council on Prevention and Education: Substances'),
(7570, 'https://ror.org/05f1fs902', 'no_lang_code', 1, 'https://ror.org/05f1fs902 Rocky Mountain Research (United States)'),
(7571, 'https://ror.org/04g3ks144', 'no_lang_code', 1, 'https://ror.org/04g3ks144 Rogue Research (Canada)'),
(7572, 'https://ror.org/04x65hs26', 'en', 1, 'https://ror.org/04x65hs26 Cyfoeth Naturiol Cymru Natural Resources Wales'),
(7573, 'https://ror.org/022q5wf04', 'en', 1, 'https://ror.org/022q5wf04 County College of Morris'),
(7574, 'https://ror.org/018cxtf62', 'en', 1, 'https://ror.org/018cxtf62 Earlham Institute'),
(7575, 'https://ror.org/02x1zab29', 'no_lang_code', 1, 'https://ror.org/02x1zab29 Chemring Technology Solutions (United Kingdom)'),
(7576, 'https://ror.org/05998w930', 'en', 1, 'https://ror.org/05998w930 Council on Environmental Quality'),
(7577, 'https://ror.org/05pa4pa04', 'en', 1, 'https://ror.org/05pa4pa04 Courtesy Travel Service'),
(7578, 'https://ror.org/05bznb153', 'no_lang_code', 1, 'https://ror.org/05bznb153 Romny Scientific (United States)'),
(7579, 'https://ror.org/01jbsjf80', 'es', 1, 'https://ror.org/01jbsjf80 Instituto Costarricense de Investigación y Enseñanza en Nutrición y Salud'),
(7580, 'https://ror.org/033jcqk26', 'en', 1, 'https://ror.org/033jcqk26 National Archives Yr Archifau Cenedlaethol'),
(7581, 'https://ror.org/0169taq91', 'no_lang_code', 1, 'https://ror.org/0169taq91 Futures Group (United States)'),
(7582, 'https://ror.org/05wnkdq49', 'en', 1, 'https://ror.org/05wnkdq49 National Energy Foundation'),
(7583, 'https://ror.org/01rqa9952', 'no_lang_code', 1, 'https://ror.org/01rqa9952 G & A Technical Software (United States)'),
(7584, 'https://ror.org/02jb8wy89', 'en', 1, 'https://ror.org/02jb8wy89 Connecticut Pre Engineering Program'),
(7585, 'https://ror.org/03md96v89', 'en', 1, 'https://ror.org/03md96v89 National Trust'),
(7586, 'https://ror.org/05a11cb13', 'en', 1, 'https://ror.org/05a11cb13 Gadsden State Community College'),
(7587, 'https://ror.org/00j10yp83', 'en', 1, 'https://ror.org/00j10yp83 Rural Alaska Community Action Program'),
(7588, 'https://ror.org/02yh9se80', 'en', 1, 'https://ror.org/02yh9se80 Russell Sage Foundation'),
(7589, 'https://ror.org/02t6r9161', 'en', 1, 'https://ror.org/02t6r9161 Rust College'),
(7590, 'https://ror.org/0002vhf72', 'no_lang_code', 1, 'https://ror.org/0002vhf72 Galenea (United States)'),
(7591, 'https://ror.org/03vmc0n61', 'en', 1, 'https://ror.org/03vmc0n61 Galiano Conservancy Association'),
(7592, 'https://ror.org/03zsxwj64', 'en', 1, 'https://ror.org/03zsxwj64 Royal Society of Arts'),
(7593, 'https://ror.org/05wcvd955', 'no_lang_code', 1, 'https://ror.org/05wcvd955 Gallomanor (United Kingdom)'),
(7594, 'https://ror.org/041d00r55', 'en', 1, 'https://ror.org/041d00r55 Galveston College'),
(7595, 'https://ror.org/02g6ngv74', 'no_lang_code', 1, 'https://ror.org/02g6ngv74 Curis (United States)'),
(7596, 'https://ror.org/02htbg024', 'no_lang_code', 1, 'https://ror.org/02htbg024 Creatv MicroTech (United States)'),
(7597, 'https://ror.org/031c2cm83', 'en', 1, 'https://ror.org/031c2cm83 Department of Justice'),
(7598, 'https://ror.org/02gdqk794', 'en', 1, 'https://ror.org/02gdqk794 Royal Society of Medicine'),
(7599, 'https://ror.org/03k7szx23', 'en', 1, 'https://ror.org/03k7szx23 Royal Geographical Society'),
(7600, 'https://ror.org/00bma2332', 'en', 1, 'https://ror.org/00bma2332 Royal Institute of British Architects'),
(7601, 'https://ror.org/037m83a38', 'en', 1, 'https://ror.org/037m83a38 Royal Institution of Great Britain'),
(7602, 'https://ror.org/05mgfq941', 'en', 1, 'https://ror.org/05mgfq941 Stroke Association'),
(7603, 'https://ror.org/05b2g5r95', 'en', 1, 'https://ror.org/05b2g5r95 GateWay Community College'),
(7604, 'https://ror.org/049xm8r65', 'en', 1, 'https://ror.org/049xm8r65 Royal National Institute of Blind'),
(7605, 'https://ror.org/01f02ys47', 'no_lang_code', 1, 'https://ror.org/01f02ys47 Gateway Community Services (United States)'),
(7606, 'https://ror.org/02ybbzx72', 'en', 1, 'https://ror.org/02ybbzx72 Consortium de Recherche et Innovations en Bioprocédés Industriels au Québec Quebec Consortium for Industrial Bioprocess Research and Innovation'),
(7607, 'https://ror.org/02ha0t079', 'no_lang_code', 1, 'https://ror.org/02ha0t079 Crinetics Pharmaceuticals (United States)'),
(7608, 'https://ror.org/03wnrjx87', 'en', 1, 'https://ror.org/03wnrjx87 Royal Society Y Gymdeithas Frenhinol'),
(7609, 'https://ror.org/00xya3a34', 'en', 1, 'https://ror.org/00xya3a34 La Société royale du Canada Royal Society of Canada'),
(7610, 'https://ror.org/00e30t131', 'no_lang_code', 1, 'https://ror.org/00e30t131 Rowan Williams Davies & Irwin (Canada)'),
(7611, 'https://ror.org/04hw63k11', 'no_lang_code', 1, 'https://ror.org/04hw63k11 Critical Pharmaceuticals (United Kingdom)'),
(7612, 'https://ror.org/03d507062', 'no_lang_code', 1, 'https://ror.org/03d507062 Walsh Group'),
(7613, 'https://ror.org/025y0hb72', 'en', 1, 'https://ror.org/025y0hb72 Royal Astronomical Society of Canada'),
(7614, 'https://ror.org/03zk93y09', 'no_lang_code', 1, 'https://ror.org/03zk93y09 Gaudenzia (United States)'),
(7615, 'https://ror.org/03er2hr05', 'no_lang_code', 1, 'https://ror.org/03er2hr05 Critical Software (Portugal)'),
(7616, 'https://ror.org/000znb612', 'no_lang_code', 1, 'https://ror.org/000znb612 Banca Rìoghail na h-Alba Royal Bank of Scotland (United Kingdom)'),
(7617, 'https://ror.org/005kew443', 'no_lang_code', 1, 'https://ror.org/005kew443 GC Image (United States)'),
(7618, 'https://ror.org/05f2xbq60', 'en', 1, 'https://ror.org/05f2xbq60 Crohn''s and Colitis Foundation'),
(7619, 'https://ror.org/0491c4v30', 'en', 1, 'https://ror.org/0491c4v30 Wildlife Trusts'),
(7620, 'https://ror.org/00scjnx30', 'en', 1, 'https://ror.org/00scjnx30 Theiss Research'),
(7621, 'https://ror.org/023t9va96', 'no_lang_code', 1, 'https://ror.org/023t9va96 EKF Diagnostics (United States)'),
(7622, 'https://ror.org/05wnk7791', 'no_lang_code', 1, 'https://ror.org/05wnk7791 CrossChasm Technologies (Canada)'),
(7623, 'https://ror.org/01zpg3b52', 'no_lang_code', 1, 'https://ror.org/01zpg3b52 Theradex Oncology (United States)'),
(7624, 'https://ror.org/03vfany12', 'no_lang_code', 1, 'https://ror.org/03vfany12 Crosslight Software (Canada)'),
(7625, 'https://ror.org/01132tb14', 'no_lang_code', 1, 'https://ror.org/01132tb14 Cryomagnetics (United States)'),
(7626, 'https://ror.org/05cdppq10', 'no_lang_code', 1, 'https://ror.org/05cdppq10 Theralogix (United States)'),
(7627, 'https://ror.org/01c6k3h93', 'no_lang_code', 1, 'https://ror.org/01c6k3h93 Teva Pharmaceuticals (Canada)'),
(7628, 'https://ror.org/05and0d04', 'no_lang_code', 1, 'https://ror.org/05and0d04 Therametric Technologies (United States)'),
(7629, 'https://ror.org/04w7p1s44', 'no_lang_code', 1, 'https://ror.org/04w7p1s44 Rohde & Schwarz (United Kingdom)'),
(7630, 'https://ror.org/00gft1871', 'no_lang_code', 1, 'https://ror.org/00gft1871 Therapyx (United States)'),
(7631, 'https://ror.org/04s4jww20', 'no_lang_code', 1, 'https://ror.org/04s4jww20 Qiagen (United States)'),
(7632, 'https://ror.org/00j998b38', 'no_lang_code', 1, 'https://ror.org/00j998b38 GT Advanced Technologies (United States)');
INSERT INTO `rors` VALUES
(7633, 'https://ror.org/04aq4w176', 'no_lang_code', 1, 'https://ror.org/04aq4w176 TheraSource (United States)'),
(7634, 'https://ror.org/00gzhq402', 'no_lang_code', 1, 'https://ror.org/00gzhq402 Fugro (United States)'),
(7635, 'https://ror.org/00dg4je56', 'no_lang_code', 1, 'https://ror.org/00dg4je56 Thermal-Lube (Canada)'),
(7636, 'https://ror.org/024xq8r45', 'no_lang_code', 1, 'https://ror.org/024xq8r45 Thermalin Diabetes (United States)'),
(7637, 'https://ror.org/048xh4t74', 'no_lang_code', 1, 'https://ror.org/048xh4t74 Thermofin (Canada)'),
(7638, 'https://ror.org/05c2ymw43', 'no_lang_code', 1, 'https://ror.org/05c2ymw43 Genaera (United States)'),
(7639, 'https://ror.org/04e4dw336', 'no_lang_code', 1, 'https://ror.org/04e4dw336 C-Tech Innovation (United Kingdom)'),
(7640, 'https://ror.org/025zzpg41', 'no_lang_code', 1, 'https://ror.org/025zzpg41 BioFusionary Corporation (United States)'),
(7641, 'https://ror.org/03bndes49', 'no_lang_code', 1, 'https://ror.org/03bndes49 Thermo Fisher Scientific (United Kingdom)'),
(7642, 'https://ror.org/04tgdzw08', 'no_lang_code', 1, 'https://ror.org/04tgdzw08 Control Technology Incorporation (United States)'),
(7643, 'https://ror.org/05jn35f24', 'no_lang_code', 1, 'https://ror.org/05jn35f24 Thinktank'),
(7644, 'https://ror.org/04mhxc747', 'no_lang_code', 1, 'https://ror.org/04mhxc747 Gencoa (United Kingdom)'),
(7645, 'https://ror.org/05hb9gz45', 'en', 1, 'https://ror.org/05hb9gz45 Calspan-University of Buffalo Research Center'),
(7646, 'https://ror.org/04raazs21', 'no_lang_code', 1, 'https://ror.org/04raazs21 Cumberland Pharmaceuticals (United States)'),
(7647, 'https://ror.org/031bpvz69', 'no_lang_code', 1, 'https://ror.org/031bpvz69 Gene Check (United States)'),
(7648, 'https://ror.org/05c27eq92', 'no_lang_code', 1, 'https://ror.org/05c27eq92 Thomas Swan (United Kingdom)'),
(7649, 'https://ror.org/01bjkkp81', 'no_lang_code', 1, 'https://ror.org/01bjkkp81 GNS Healthcare (United States)'),
(7650, 'https://ror.org/051jtz490', 'no_lang_code', 1, 'https://ror.org/051jtz490 Thoratec Corporation (United States)'),
(7651, 'https://ror.org/01ax1zp32', 'no_lang_code', 1, 'https://ror.org/01ax1zp32 CustomKYnetics (United States)'),
(7652, 'https://ror.org/05e4r8189', 'en', 1, 'https://ror.org/05e4r8189 Cuyahoga County Board of Health'),
(7653, 'https://ror.org/0185sft94', 'no_lang_code', 1, 'https://ror.org/0185sft94 CW Optics (United States)'),
(7654, 'https://ror.org/04gtb5g92', 'no_lang_code', 1, 'https://ror.org/04gtb5g92 Thomas Keating Ltd'),
(7655, 'https://ror.org/00wcjep87', 'no_lang_code', 1, 'https://ror.org/00wcjep87 Genlantis (United States)'),
(7656, 'https://ror.org/02fn1q641', 'no_lang_code', 1, 'https://ror.org/02fn1q641 Affinity Water (United Kingdom)'),
(7657, 'https://ror.org/03rw53777', 'no_lang_code', 1, 'https://ror.org/03rw53777 CyberTech (United States)'),
(7658, 'https://ror.org/00g81mg52', 'no_lang_code', 1, 'https://ror.org/00g81mg52 Columbus Technologies and Services (United States)'),
(7659, 'https://ror.org/0527eje21', 'no_lang_code', 1, 'https://ror.org/0527eje21 Thrombodyne (United States)'),
(7660, 'https://ror.org/00rqgsb54', 'no_lang_code', 1, 'https://ror.org/00rqgsb54 Cyberkinetics (United States)'),
(7661, 'https://ror.org/029g5f696', 'no_lang_code', 1, 'https://ror.org/029g5f696 Cook General BioTechnology (United States)'),
(7662, 'https://ror.org/04k0jj762', 'no_lang_code', 1, 'https://ror.org/04k0jj762 General Dynamics (United Kingdom)'),
(7663, 'https://ror.org/0309ps652', 'no_lang_code', 1, 'https://ror.org/0309ps652 CyberLogic (United States)'),
(7664, 'https://ror.org/020nzw227', 'no_lang_code', 1, 'https://ror.org/020nzw227 Cybernet Systems Corporation (United States)'),
(7665, 'https://ror.org/038dgnc07', 'no_lang_code', 1, 'https://ror.org/038dgnc07 Cygnus (United States)'),
(7666, 'https://ror.org/03rppzy62', 'no_lang_code', 1, 'https://ror.org/03rppzy62 Thromgen (United States)'),
(7667, 'https://ror.org/04n50f417', 'no_lang_code', 1, 'https://ror.org/04n50f417 RWE (United Kingdom)'),
(7668, 'https://ror.org/03dcs5c38', 'no_lang_code', 1, 'https://ror.org/03dcs5c38 TimeDomain CVD (United States)'),
(7669, 'https://ror.org/044k1pg15', 'no_lang_code', 1, 'https://ror.org/044k1pg15 Cynosure (United States)'),
(7670, 'https://ror.org/00xw3wc12', 'no_lang_code', 1, 'https://ror.org/00xw3wc12 RxBio (United States)'),
(7671, 'https://ror.org/057m69507', 'no_lang_code', 1, 'https://ror.org/057m69507 Titanium Metals Corporation (United Kingdom)'),
(7672, 'https://ror.org/00chzyy83', 'no_lang_code', 1, 'https://ror.org/00chzyy83 Virscio (United States)'),
(7673, 'https://ror.org/01ecs7r71', 'no_lang_code', 1, 'https://ror.org/01ecs7r71 LungLife AI (United States)'),
(7674, 'https://ror.org/026b6f512', 'no_lang_code', 1, 'https://ror.org/026b6f512 Tinderbox Consultants (United Kingdom)'),
(7675, 'https://ror.org/04xve2a23', 'no_lang_code', 1, 'https://ror.org/04xve2a23 Genesegues (United States)'),
(7676, 'https://ror.org/0442wxc77', 'no_lang_code', 1, 'https://ror.org/0442wxc77 STMicroelectronics (United Kingdom)'),
(7677, 'https://ror.org/01vv6sh78', 'no_lang_code', 1, 'https://ror.org/01vv6sh78 Cytex Therapeutics (United States)'),
(7678, 'https://ror.org/014yznv62', 'no_lang_code', 1, 'https://ror.org/014yznv62 TiNi Alloy (United States)'),
(7679, 'https://ror.org/01a6nzt97', 'no_lang_code', 1, 'https://ror.org/01a6nzt97 Cytobank (United States)'),
(7680, 'https://ror.org/0042e5975', 'it', 1, 'https://ror.org/0042e5975 Istituto Nanoscienze'),
(7681, 'https://ror.org/05t1tdx84', 'no_lang_code', 1, 'https://ror.org/05t1tdx84 Tissue Genetics (United States)'),
(7682, 'https://ror.org/00p9rsf63', 'no_lang_code', 1, 'https://ror.org/00p9rsf63 Saaten Union (United Kingdom)'),
(7683, 'https://ror.org/043qn6y55', 'no_lang_code', 1, 'https://ror.org/043qn6y55 OPKO Health (Canada)'),
(7684, 'https://ror.org/026prsd04', 'no_lang_code', 1, 'https://ror.org/026prsd04 CytoCure (United States)'),
(7685, 'https://ror.org/03nkdc513', 'no_lang_code', 1, 'https://ror.org/03nkdc513 Sabbagh Associates'),
(7686, 'https://ror.org/046km1t51', 'no_lang_code', 1, 'https://ror.org/046km1t51 SABMiller (United Kingdom)'),
(7687, 'https://ror.org/00v6jq438', 'no_lang_code', 1, 'https://ror.org/00v6jq438 Cytograft Tissue Engineering (United States)'),
(7688, 'https://ror.org/03hw58c96', 'no_lang_code', 1, 'https://ror.org/03hw58c96 Scott Sabolich Prosthetics And Research (United States)'),
(7689, 'https://ror.org/03wbrqz31', 'en', 1, 'https://ror.org/03wbrqz31 Saddleback College'),
(7690, 'https://ror.org/05re2xe18', 'no_lang_code', 1, 'https://ror.org/05re2xe18 Bio Tissue (United States)'),
(7691, 'https://ror.org/04fpt0902', 'no_lang_code', 1, 'https://ror.org/04fpt0902 TLC Precision Wafer Technology (United States)'),
(7692, 'https://ror.org/00j2t0g84', 'no_lang_code', 1, 'https://ror.org/00j2t0g84 TMD Technologies (United Kingdom)'),
(7693, 'https://ror.org/05yqbk328', 'en', 1, 'https://ror.org/05yqbk328 Genetica DNA Laboratories'),
(7694, 'https://ror.org/04a390q32', 'en', 1, 'https://ror.org/04a390q32 TMJ Association'),
(7695, 'https://ror.org/003fzn994', 'no_lang_code', 1, 'https://ror.org/003fzn994 TMO Renewables (United Kingdom)'),
(7696, 'https://ror.org/035dpw102', 'en', 1, 'https://ror.org/035dpw102 Sage College of Albany'),
(7697, 'https://ror.org/05ent1n34', 'no_lang_code', 1, 'https://ror.org/05ent1n34 Cytoskeleton (United States)'),
(7698, 'https://ror.org/01azqfh67', 'en', 1, 'https://ror.org/01azqfh67 Together'),
(7699, 'https://ror.org/03tsfw439', 'no_lang_code', 1, 'https://ror.org/03tsfw439 Saint-Gobain (United States)'),
(7700, 'https://ror.org/01mmn7c12', 'no_lang_code', 1, 'https://ror.org/01mmn7c12 D-Wave Systems (Canada)'),
(7701, 'https://ror.org/04y727f83', 'en', 1, 'https://ror.org/04y727f83 Bucks County Division of Human Services'),
(7702, 'https://ror.org/00485s352', 'no_lang_code', 1, 'https://ror.org/00485s352 Danaher (United Kingdom)'),
(7703, 'https://ror.org/05a6ey653', 'en', 1, 'https://ror.org/05a6ey653 Dakota County Technical College'),
(7704, 'https://ror.org/03b2j2z26', 'no_lang_code', 1, 'https://ror.org/03b2j2z26 Dakota Technologies (United States)'),
(7705, 'https://ror.org/0057tdk10', 'no_lang_code', 1, 'https://ror.org/0057tdk10 La Jolla Science Applications (United States)'),
(7706, 'https://ror.org/031056b37', 'no_lang_code', 1, 'https://ror.org/031056b37 TomoWave Laboratories (United States)'),
(7707, 'https://ror.org/016p29p27', 'no_lang_code', 1, 'https://ror.org/016p29p27 TopoGEN (United States)'),
(7708, 'https://ror.org/034pm2g80', 'en', 1, 'https://ror.org/034pm2g80 Colegios Comunitarios del Condado de Dallas Dallas County Community College District'),
(7709, 'https://ror.org/03dakdm13', 'en', 1, 'https://ror.org/03dakdm13 St. John''s College'),
(7710, 'https://ror.org/0238hgm18', 'no_lang_code', 1, 'https://ror.org/0238hgm18 GeneTrace Systems (United States)'),
(7711, 'https://ror.org/02qb5bp07', 'no_lang_code', 1, 'https://ror.org/02qb5bp07 Tornado Spectral Systems (Canada)'),
(7712, 'https://ror.org/03y3f2317', 'no_lang_code', 1, 'https://ror.org/03y3f2317 Daniel H. Wagner Associates (United States)'),
(7713, 'https://ror.org/044xrc068', 'en', 1, 'https://ror.org/044xrc068 Toronto Centre for Phenogenomics'),
(7714, 'https://ror.org/04jqjkn20', 'no_lang_code', 1, 'https://ror.org/04jqjkn20 Data Management Services (United States)'),
(7715, 'https://ror.org/054hmd463', 'no_lang_code', 1, 'https://ror.org/054hmd463 Toshiba (United Kingdom)'),
(7716, 'https://ror.org/00amjd520', 'en', 1, 'https://ror.org/00amjd520 Saint Vincent College'),
(7717, 'https://ror.org/03b082n16', 'no_lang_code', 1, 'https://ror.org/03b082n16 Genia Photonics (Canada)'),
(7718, 'https://ror.org/05mgrg543', 'no_lang_code', 1, 'https://ror.org/05mgrg543 Salford Systems (United States)'),
(7719, 'https://ror.org/052x1xp04', 'no_lang_code', 1, 'https://ror.org/052x1xp04 Total Child Health (United States)'),
(7720, 'https://ror.org/01st38774', 'no_lang_code', 1, 'https://ror.org/01st38774 Geninov (Canada)'),
(7721, 'https://ror.org/02s619e80', 'no_lang_code', 1, 'https://ror.org/02s619e80 Dawkins Productions (United States)'),
(7722, 'https://ror.org/03jbk2g75', 'en', 1, 'https://ror.org/03jbk2g75 Daytona State College'),
(7723, 'https://ror.org/01h8tw896', 'no_lang_code', 1, 'https://ror.org/01h8tw896 Touch of Life Technologies (United States)'),
(7724, 'https://ror.org/029z7h505', 'en', 1, 'https://ror.org/029z7h505 Salt Lake Community College'),
(7725, 'https://ror.org/02ttgyc97', 'no_lang_code', 1, 'https://ror.org/02ttgyc97 dbaza health (United States)'),
(7726, 'https://ror.org/04tnxs674', 'no_lang_code', 1, 'https://ror.org/04tnxs674 Saltire Software (United States)'),
(7727, 'https://ror.org/00x2ve368', 'en', 1, 'https://ror.org/00x2ve368 Tourette Association of America'),
(7728, 'https://ror.org/00tgygn49', 'en', 1, 'https://ror.org/00tgygn49 San Antonio Fighting Back'),
(7729, 'https://ror.org/05mqpm182', 'no_lang_code', 1, 'https://ror.org/05mqpm182 De La Rue (United Kingdom)'),
(7730, 'https://ror.org/04nc7qn91', 'en', 1, 'https://ror.org/04nc7qn91 Town and Country Planning Association'),
(7731, 'https://ror.org/05jgyck31', 'en', 1, 'https://ror.org/05jgyck31 San Antonio Metropolitan Health District'),
(7732, 'https://ror.org/001kbwb95', 'no_lang_code', 1, 'https://ror.org/001kbwb95 Decision Demographics (United States)'),
(7733, 'https://ror.org/00rhaks72', 'no_lang_code', 1, 'https://ror.org/00rhaks72 Tracer Technologies (United States)'),
(7734, 'https://ror.org/01qmkwf03', 'en', 1, 'https://ror.org/01qmkwf03 San Diego Biomedical Research Institute'),
(7735, 'https://ror.org/045ckq244', 'no_lang_code', 1, 'https://ror.org/045ckq244 Transcendent Endeavors (United States)'),
(7736, 'https://ror.org/0434dpa13', 'no_lang_code', 1, 'https://ror.org/0434dpa13 Decision Systems (United States)'),
(7737, 'https://ror.org/01864e038', 'en', 1, 'https://ror.org/01864e038 Montana Council of Teachers of Mathematics'),
(7738, 'https://ror.org/0432wt807', 'en', 1, 'https://ror.org/0432wt807 San Dieguito Alliance'),
(7739, 'https://ror.org/01g1mnc10', 'no_lang_code', 1, 'https://ror.org/01g1mnc10 Transfusion and Transplantation Technologies (United States)'),
(7740, 'https://ror.org/0598xyq26', 'no_lang_code', 1, 'https://ror.org/0598xyq26 TransGenex Nanobiotech (United States)'),
(7741, 'https://ror.org/053re1s95', 'no_lang_code', 1, 'https://ror.org/053re1s95 Beryllium (United States)'),
(7742, 'https://ror.org/054rn8r20', 'en', 1, 'https://ror.org/054rn8r20 San Francisco Community Clinic Consortium'),
(7743, 'https://ror.org/04dzdm737', 'no_lang_code', 1, 'https://ror.org/04dzdm737 deCODE Genetics (Iceland) Íslensk erfðagreining'),
(7744, 'https://ror.org/03tj54q36', 'no_lang_code', 1, 'https://ror.org/03tj54q36 Translink (United Kingdom)'),
(7745, 'https://ror.org/025qsw441', 'en', 1, 'https://ror.org/025qsw441 Deep River Science Academy'),
(7746, 'https://ror.org/02xdxmh23', 'en', 1, 'https://ror.org/02xdxmh23 San Jacinto College'),
(7747, 'https://ror.org/02caytj08', 'en', 1, 'https://ror.org/02caytj08 Defense Advanced Research Projects Agency'),
(7748, 'https://ror.org/05svxk822', 'en', 1, 'https://ror.org/05svxk822 San Jose City College'),
(7749, 'https://ror.org/041jmaw90', 'en', 1, 'https://ror.org/041jmaw90 San Juan College'),
(7750, 'https://ror.org/05xvz3022', 'no_lang_code', 1, 'https://ror.org/05xvz3022 Transonic Systems (United States)'),
(7751, 'https://ror.org/00qxqw753', 'en', 1, 'https://ror.org/00qxqw753 San Mateo County Community College District'),
(7752, 'https://ror.org/014jgh757', 'no_lang_code', 1, 'https://ror.org/014jgh757 LAC Group (United States)'),
(7753, 'https://ror.org/006dtpb58', 'en', 1, 'https://ror.org/006dtpb58 Monterey Peninsula College'),
(7754, 'https://ror.org/05b56f310', 'en', 1, 'https://ror.org/05b56f310 Transport Scotland'),
(7755, 'https://ror.org/01x0vtk27', 'no_lang_code', 1, 'https://ror.org/01x0vtk27 Saneron CCEL Therapeutics (United States)'),
(7756, 'https://ror.org/03qw8q135', 'no_lang_code', 1, 'https://ror.org/03qw8q135 Transposagen Biopharmaceuticals (United States)'),
(7757, 'https://ror.org/02fdhvf98', 'no_lang_code', 1, 'https://ror.org/02fdhvf98 Degenkolb (United States)'),
(7758, 'https://ror.org/0135ay670', 'en', 1, 'https://ror.org/0135ay670 Montgomery County Community College'),
(7759, 'https://ror.org/04ggm9668', 'no_lang_code', 1, 'https://ror.org/04ggm9668 Degge Group (United States)'),
(7760, 'https://ror.org/05sc9ba13', 'en', 1, 'https://ror.org/05sc9ba13 Montgomery County Public Schools'),
(7761, 'https://ror.org/00hy18g46', 'no_lang_code', 1, 'https://ror.org/00hy18g46 DEKK-TEC (United States)'),
(7762, 'https://ror.org/02dywg371', 'en', 1, 'https://ror.org/02dywg371 Del Mar College'),
(7763, 'https://ror.org/05x0at146', 'en', 1, 'https://ror.org/05x0at146 Santa Barbara Botanic Garden'),
(7764, 'https://ror.org/037asfw97', 'en', 1, 'https://ror.org/037asfw97 Tri County Technical College'),
(7765, 'https://ror.org/02cbwht62', 'en', 1, 'https://ror.org/02cbwht62 Department of Services for Children Youth and their Families'),
(7766, 'https://ror.org/022j4a796', 'en', 1, 'https://ror.org/022j4a796 Santa Barbara City College'),
(7767, 'https://ror.org/00kv9mr92', 'no_lang_code', 1, 'https://ror.org/00kv9mr92 Tri Y Environmental Research Institute (Canada)'),
(7768, 'https://ror.org/00dh4zq96', 'no_lang_code', 1, 'https://ror.org/00dh4zq96 TRIA Bioscience (United States)'),
(7769, 'https://ror.org/00pfvfk73', 'en', 1, 'https://ror.org/00pfvfk73 Delaware Technical Community College'),
(7770, 'https://ror.org/017arrg98', 'en', 1, 'https://ror.org/017arrg98 Department of Alcohol, Drug, and Mental Health Services'),
(7771, 'https://ror.org/05psc8795', 'en', 1, 'https://ror.org/05psc8795 Santa Barbara Museum of Natural History'),
(7772, 'https://ror.org/01d9afc73', 'en', 1, 'https://ror.org/01d9afc73 Montrose Center'),
(7773, 'https://ror.org/02fm7xd67', 'no_lang_code', 1, 'https://ror.org/02fm7xd67 Delcam (United Kingdom)'),
(7774, 'https://ror.org/02wvm8742', 'no_lang_code', 1, 'https://ror.org/02wvm8742 Montserrat Volcano Observatory'),
(7775, 'https://ror.org/04p25v506', 'en', 1, 'https://ror.org/04p25v506 Montshire Museum of Science'),
(7776, 'https://ror.org/02revdf05', 'en', 1, 'https://ror.org/02revdf05 Moraine Valley Community College'),
(7777, 'https://ror.org/006jzf029', 'no_lang_code', 1, 'https://ror.org/006jzf029 TriboFilm Research (United States)'),
(7778, 'https://ror.org/052yz6z95', 'en', 1, 'https://ror.org/052yz6z95 Trident Technical College'),
(7779, 'https://ror.org/05rv6kp38', 'no_lang_code', 1, 'https://ror.org/05rv6kp38 TriLink BioTechnologies (United States)'),
(7780, 'https://ror.org/035756473', 'en', 1, 'https://ror.org/035756473 Trinity Washington University Universidad Trinity Washington'),
(7781, 'https://ror.org/001dsq926', 'no_lang_code', 1, 'https://ror.org/001dsq926 DeltaMetrics (United States)'),
(7782, 'https://ror.org/017tgty84', 'no_lang_code', 1, 'https://ror.org/017tgty84 SciAps (United States)'),
(7783, 'https://ror.org/02axsa366', 'en', 1, 'https://ror.org/02axsa366 Santa Fe Community College'),
(7784, 'https://ror.org/04yv5fh97', 'no_lang_code', 1, 'https://ror.org/04yv5fh97 Demtroys (Canada)'),
(7785, 'https://ror.org/04ewhdd57', 'no_lang_code', 1, 'https://ror.org/04ewhdd57 Dendritech (United States)'),
(7786, 'https://ror.org/02kxjqp24', 'no_lang_code', 1, 'https://ror.org/02kxjqp24 Certara (United States)'),
(7787, 'https://ror.org/03qaq7791', 'no_lang_code', 1, 'https://ror.org/03qaq7791 Tristan Technologies (United States)'),
(7788, 'https://ror.org/04x89rx63', 'en', 1, 'https://ror.org/04x89rx63 Triton College'),
(7789, 'https://ror.org/05vga3150', 'no_lang_code', 1, 'https://ror.org/05vga3150 Trophogen (United States)'),
(7790, 'https://ror.org/04nmqte89', 'no_lang_code', 1, 'https://ror.org/04nmqte89 Santec Systems (United States)'),
(7791, 'https://ror.org/04mg00432', 'no_lang_code', 1, 'https://ror.org/04mg00432 Morphonix (United States)'),
(7792, 'https://ror.org/01v5pfj68', 'no_lang_code', 1, 'https://ror.org/01v5pfj68 Sarver and Associates (United States)'),
(7793, 'https://ror.org/01cnxmm67', 'en', 1, 'https://ror.org/01cnxmm67 Morris Brown College'),
(7794, 'https://ror.org/04pm5zx37', 'en', 1, 'https://ror.org/04pm5zx37 Sasha Bruce Youthwork'),
(7795, 'https://ror.org/020gf7g55', 'no_lang_code', 1, 'https://ror.org/020gf7g55 Mosaiques Diagnostics and Therapeutics (Germany)'),
(7796, 'https://ror.org/039q6xk02', 'en', 1, 'https://ror.org/039q6xk02 Moss Rehabilitation Hospital'),
(7797, 'https://ror.org/05414wx82', 'no_lang_code', 1, 'https://ror.org/05414wx82 Sasken (India)'),
(7798, 'https://ror.org/0141egq93', 'no_lang_code', 1, 'https://ror.org/0141egq93 TRS Technologies (United States)'),
(7799, 'https://ror.org/0286exd49', 'no_lang_code', 1, 'https://ror.org/0286exd49 SaskTel (Canada)'),
(7800, 'https://ror.org/05m0yjz71', 'no_lang_code', 1, 'https://ror.org/05m0yjz71 TRW Automotive (United Kingdom)'),
(7801, 'https://ror.org/02a4gss26', 'no_lang_code', 1, 'https://ror.org/02a4gss26 Sasol (South Africa)'),
(7802, 'https://ror.org/01g9x3v85', 'en', 1, 'https://ror.org/01g9x3v85 Agencia Federal para el Manejo de Emergencias Federal Emergency Management Agency'),
(7803, 'https://ror.org/03f1nf684', 'no_lang_code', 1, 'https://ror.org/03f1nf684 Fillauer (United States)'),
(7804, 'https://ror.org/01hdk3d05', 'en', 1, 'https://ror.org/01hdk3d05 San Antonio College'),
(7805, 'https://ror.org/028fd8812', 'en', 1, 'https://ror.org/028fd8812 Santa Clara Valley Health and Hospital System'),
(7806, 'https://ror.org/0396gxt62', 'no_lang_code', 1, 'https://ror.org/0396gxt62 Motorola (United Kingdom)'),
(7807, 'https://ror.org/0014wkh93', 'no_lang_code', 1, 'https://ror.org/0014wkh93 Tucker-Davis Technologies (United States)'),
(7808, 'https://ror.org/05rnhf031', 'no_lang_code', 1, 'https://ror.org/05rnhf031 ACell (United States)'),
(7809, 'https://ror.org/00sf3p382', 'no_lang_code', 1, 'https://ror.org/00sf3p382 Turner Consulting Group (United States)'),
(7810, 'https://ror.org/04akq1s78', 'no_lang_code', 1, 'https://ror.org/04akq1s78 Mound Laser & Photonics Center (United States)'),
(7811, 'https://ror.org/04y93q769', 'no_lang_code', 1, 'https://ror.org/04y93q769 Aciont (United States)'),
(7812, 'https://ror.org/04dhbjd70', 'no_lang_code', 1, 'https://ror.org/04dhbjd70 SatCon Technology Corporation (United States)'),
(7813, 'https://ror.org/001cbt815', 'en', 1, 'https://ror.org/001cbt815 Mt. Hood Community College'),
(7814, 'https://ror.org/00wc5s136', 'en', 1, 'https://ror.org/00wc5s136 Mount Marty College'),
(7815, 'https://ror.org/02mn8sh47', 'en', 1, 'https://ror.org/02mn8sh47 Turtle Mountain Community College'),
(7816, 'https://ror.org/040ty4453', 'en', 1, 'https://ror.org/040ty4453 Mount St. Mary''s University'),
(7817, 'https://ror.org/016n3sp21', 'en', 1, 'https://ror.org/016n3sp21 Society of British Water and Wastewater Industries'),
(7818, 'https://ror.org/03wxx8465', 'no_lang_code', 1, 'https://ror.org/03wxx8465 Mt. San Antonio College'),
(7819, 'https://ror.org/04snwmr98', 'en', 1, 'https://ror.org/04snwmr98 Tusculum College'),
(7820, 'https://ror.org/01x5py295', 'no_lang_code', 1, 'https://ror.org/01x5py295 SC Solutions (United States)'),
(7821, 'https://ror.org/05h3de220', 'en', 1, 'https://ror.org/05h3de220 Mount Saint Mary College'),
(7822, 'https://ror.org/036x02d82', 'en', 1, 'https://ror.org/036x02d82 Tyne and Wear Archives and Museums'),
(7823, 'https://ror.org/049hfye85', 'no_lang_code', 1, 'https://ror.org/049hfye85 Acoustic MedSystems (United States)'),
(7824, 'https://ror.org/022xw8j65', 'en', 1, 'https://ror.org/022xw8j65 University of Mount Union Université de mount union'),
(7825, 'https://ror.org/01743cc72', 'no_lang_code', 1, 'https://ror.org/01743cc72 Servelec Technologies (United Kingdom)'),
(7826, 'https://ror.org/02p6vh725', 'en', 1, 'https://ror.org/02p6vh725 Mount Wachusett Community College'),
(7827, 'https://ror.org/00226bs07', 'no_lang_code', 1, 'https://ror.org/00226bs07 Scarab Genomics (United States)'),
(7828, 'https://ror.org/02se3s925', 'en', 1, 'https://ror.org/02se3s925 Inova Children''s Hospital'),
(7829, 'https://ror.org/03791d618', 'no_lang_code', 1, 'https://ror.org/03791d618 Kimberly-Clark (United States)'),
(7830, 'https://ror.org/02wcma710', 'no_lang_code', 1, 'https://ror.org/02wcma710 Schafer Corporation (United States)'),
(7831, 'https://ror.org/04tf8qk07', 'en', 1, 'https://ror.org/04tf8qk07 Mountain Empire Community College'),
(7832, 'https://ror.org/04bxavq22', 'en', 1, 'https://ror.org/04bxavq22 USMMA Alumni Association and Foundation'),
(7833, 'https://ror.org/03q6ms497', 'no_lang_code', 1, 'https://ror.org/03q6ms497 Schlumberger (United Kingdom)'),
(7834, 'https://ror.org/05phfhs05', 'en', 1, 'https://ror.org/05phfhs05 Action for Boston Community Development'),
(7835, 'https://ror.org/02nfh0m56', 'en', 1, 'https://ror.org/02nfh0m56 Pittsburgh Public Schools'),
(7836, 'https://ror.org/053apnz82', 'en', 1, 'https://ror.org/053apnz82 School for Advanced Research'),
(7837, 'https://ror.org/055geks33', 'en', 1, 'https://ror.org/055geks33 United States Breastfeeding Committee'),
(7838, 'https://ror.org/03n9vvh94', 'no_lang_code', 1, 'https://ror.org/03n9vvh94 ActionDog (United Kingdom)'),
(7839, 'https://ror.org/05a3z6914', 'no_lang_code', 1, 'https://ror.org/05a3z6914 Schrodinger (United States)'),
(7840, 'https://ror.org/02sdw5w15', 'no_lang_code', 1, 'https://ror.org/02sdw5w15 Active Motif (United States)'),
(7841, 'https://ror.org/036zx6482', 'en', 1, 'https://ror.org/036zx6482 United States Drug Testing Laboratories'),
(7842, 'https://ror.org/052ay3140', 'no_lang_code', 1, 'https://ror.org/052ay3140 Active Space Technologies (Portugal)'),
(7843, 'https://ror.org/05c0j1j47', 'no_lang_code', 1, 'https://ror.org/05c0j1j47 MPB Technologies & Communications (Canada)'),
(7844, 'https://ror.org/04pcj0h26', 'en', 1, 'https://ror.org/04pcj0h26 Actua'),
(7845, 'https://ror.org/03q358129', 'no_lang_code', 1, 'https://ror.org/03q358129 Active Signal Technologies (United States)'),
(7846, 'https://ror.org/05324v822', 'en', 1, 'https://ror.org/05324v822 Actuarial Research Corporation'),
(7847, 'https://ror.org/002xn3f27', 'no_lang_code', 1, 'https://ror.org/002xn3f27 SciberQuest (United States)'),
(7848, 'https://ror.org/03dqpq202', 'no_lang_code', 1, 'https://ror.org/03dqpq202 MPI Research (United States)'),
(7849, 'https://ror.org/03z50d035', 'no_lang_code', 1, 'https://ror.org/03z50d035 Actuated Medical (United States)'),
(7850, 'https://ror.org/01c0hdt76', 'no_lang_code', 1, 'https://ror.org/01c0hdt76 Acumen (United States)'),
(7851, 'https://ror.org/049t33881', 'no_lang_code', 1, 'https://ror.org/049t33881 Science Education Solutions (United States)'),
(7852, 'https://ror.org/05yfrba80', 'en', 1, 'https://ror.org/05yfrba80 Science Museum'),
(7853, 'https://ror.org/028k36c88', 'en', 1, 'https://ror.org/028k36c88 Science North'),
(7854, 'https://ror.org/006d11e04', 'no_lang_code', 1, 'https://ror.org/006d11e04 Agricultural Development Advisory Service (United Kingdom)'),
(7855, 'https://ror.org/02frzq211', 'en', 1, 'https://ror.org/02frzq211 UK Biobank'),
(7856, 'https://ror.org/01jpszw66', 'no_lang_code', 1, 'https://ror.org/01jpszw66 Cirrascale (United States)'),
(7857, 'https://ror.org/05b1skj70', 'no_lang_code', 1, 'https://ror.org/05b1skj70 Sciencetech (Canada)'),
(7858, 'https://ror.org/02rr5zn35', 'no_lang_code', 1, 'https://ror.org/02rr5zn35 Uken (Canada)'),
(7859, 'https://ror.org/0010ry587', 'no_lang_code', 1, 'https://ror.org/0010ry587 Ultra Electronics (Canada)'),
(7860, 'https://ror.org/035fp5e48', 'en', 1, 'https://ror.org/035fp5e48 Scientific Consulting Group'),
(7861, 'https://ror.org/05mq2fa89', 'no_lang_code', 1, 'https://ror.org/05mq2fa89 Ultramet (United States)'),
(7862, 'https://ror.org/05xrj1c85', 'no_lang_code', 1, 'https://ror.org/05xrj1c85 Gamma Medica (United States)'),
(7863, 'https://ror.org/055sayf44', 'no_lang_code', 1, 'https://ror.org/055sayf44 Analogic (Canada)'),
(7864, 'https://ror.org/03te4pe27', 'no_lang_code', 1, 'https://ror.org/03te4pe27 Umpqua Research Company (United States)'),
(7865, 'https://ror.org/01rx46r39', 'no_lang_code', 1, 'https://ror.org/01rx46r39 Science Take-Out (United States)'),
(7866, 'https://ror.org/00dnb8a67', 'fr', 1, 'https://ror.org/00dnb8a67 Science pour tous'),
(7867, 'https://ror.org/019xgv883', 'en', 1, 'https://ror.org/019xgv883 Science East Association'),
(7868, 'https://ror.org/00hf0cm69', 'no_lang_code', 1, 'https://ror.org/00hf0cm69 Adherent Technologies (United States)'),
(7869, 'https://ror.org/043j90n04', 'en', 1, 'https://ror.org/043j90n04 MRC Prion Unit'),
(7870, 'https://ror.org/000dzg547', 'no_lang_code', 1, 'https://ror.org/000dzg547 Scientific Solutions (United States)'),
(7871, 'https://ror.org/038naac42', 'no_lang_code', 1, 'https://ror.org/038naac42 AdipoGenix (United States)'),
(7872, 'https://ror.org/00hntwx50', 'en', 1, 'https://ror.org/00hntwx50 Seattle Central College'),
(7873, 'https://ror.org/02hqxd823', 'no_lang_code', 1, 'https://ror.org/02hqxd823 MRF Geosystems (Canada)'),
(7874, 'https://ror.org/033ssdc55', 'no_lang_code', 1, 'https://ror.org/033ssdc55 Unisys (United States)'),
(7875, 'https://ror.org/01rhvcq39', 'no_lang_code', 1, 'https://ror.org/01rhvcq39 Seashell Technology (United States)'),
(7876, 'https://ror.org/01bz6xa25', 'no_lang_code', 1, 'https://ror.org/01bz6xa25 Rigaku (United Kingdom)'),
(7877, 'https://ror.org/044bp3769', 'no_lang_code', 1, 'https://ror.org/044bp3769 United Biomedical (United States)'),
(7878, 'https://ror.org/036482385', 'en', 1, 'https://ror.org/036482385 United Engineering Foundation'),
(7879, 'https://ror.org/03aygfv62', 'en', 1, 'https://ror.org/03aygfv62 Scotch Whisky Research Institute'),
(7880, 'https://ror.org/02khxjf35', 'no_lang_code', 1, 'https://ror.org/02khxjf35 United Environment and Energy (United States)'),
(7881, 'https://ror.org/05d0qsh22', 'no_lang_code', 1, 'https://ror.org/05d0qsh22 Advanced Cell Technology (United States)'),
(7882, 'https://ror.org/02ee2kk58', 'en', 1, 'https://ror.org/02ee2kk58 MUJHU Research Collaboration'),
(7883, 'https://ror.org/02f131c52', 'en', 1, 'https://ror.org/02f131c52 Adrian College'),
(7884, 'https://ror.org/02kk3dq58', 'en', 1, 'https://ror.org/02kk3dq58 United Tribes Technical College'),
(7885, 'https://ror.org/0393mwb72', 'no_lang_code', 1, 'https://ror.org/0393mwb72 United Utilities (United Kingdom)'),
(7886, 'https://ror.org/03nr3ve48', 'no_lang_code', 1, 'https://ror.org/03nr3ve48 Advanced Brain Monitoring (United States)'),
(7887, 'https://ror.org/03wgxjb31', 'no_lang_code', 1, 'https://ror.org/03wgxjb31 United Therapeutics (United States)'),
(7888, 'https://ror.org/0550f5p69', 'no_lang_code', 1, 'https://ror.org/0550f5p69 MultiCell Technologies (United States)'),
(7889, 'https://ror.org/054k4qn06', 'no_lang_code', 1, 'https://ror.org/054k4qn06 Advanced Ceramics Manufacturing (United States)'),
(7890, 'https://ror.org/004zcwt94', 'no_lang_code', 1, 'https://ror.org/004zcwt94 Universal Sensors (United States)'),
(7891, 'https://ror.org/05q882j59', 'en', 1, 'https://ror.org/05q882j59 Scientists in School'),
(7892, 'https://ror.org/05h2kgw82', 'no_lang_code', 1, 'https://ror.org/05h2kgw82 SciMed Technologies (Canada)'),
(7893, 'https://ror.org/035dkke52', 'no_lang_code', 1, 'https://ror.org/035dkke52 Scisys (United Kingdom)'),
(7894, 'https://ror.org/02vjt9x89', 'no_lang_code', 1, 'https://ror.org/02vjt9x89 SciTech Development (United States)'),
(7895, 'https://ror.org/05qg48n69', 'no_lang_code', 1, 'https://ror.org/05qg48n69 Scott Bader (United Kingdom)'),
(7896, 'https://ror.org/04p36vs32', 'no_lang_code', 1, 'https://ror.org/04p36vs32 Scott Instrument Company (United States)'),
(7897, 'https://ror.org/038aete71', 'no_lang_code', 1, 'https://ror.org/038aete71 Advanced Diamond Technologies (United States)'),
(7898, 'https://ror.org/0468mqv58', 'no_lang_code', 1, 'https://ror.org/0468mqv58 URS Corporation (United Kingdom)'),
(7899, 'https://ror.org/03jnj0435', 'no_lang_code', 1, 'https://ror.org/03jnj0435 Scottish and Southern Energy (United Kingdom)'),
(7900, 'https://ror.org/029kax838', 'no_lang_code', 1, 'https://ror.org/029kax838 Muprime Technology (Canada)'),
(7901, 'https://ror.org/043xmyg25', 'en', 1, 'https://ror.org/043xmyg25 Murray State College'),
(7902, 'https://ror.org/01bk7tw31', 'en', 1, 'https://ror.org/01bk7tw31 Wireless Innovation Forum'),
(7903, 'https://ror.org/00q2xhk98', 'no_lang_code', 1, 'https://ror.org/00q2xhk98 Murty Pharmaceuticals (United States)'),
(7904, 'https://ror.org/03cc62s85', 'no_lang_code', 1, 'https://ror.org/03cc62s85 Scottish Water (United Kingdom)'),
(7905, 'https://ror.org/02vaftm28', 'en', 1, 'https://ror.org/02vaftm28 Sea Education Association'),
(7906, 'https://ror.org/031exby54', 'no_lang_code', 1, 'https://ror.org/031exby54 Sea Run Holdings (United States)'),
(7907, 'https://ror.org/012vsjx26', 'no_lang_code', 1, 'https://ror.org/012vsjx26 Seacoast Science (United States)'),
(7908, 'https://ror.org/01gvm4v91', 'no_lang_code', 1, 'https://ror.org/01gvm4v91 Advanced Genetic Systems (United States)'),
(7909, 'https://ror.org/05q895y58', 'en', 1, 'https://ror.org/05q895y58 Lisbon Geographic Society Sociedade de Geografia de Lisboa'),
(7910, 'https://ror.org/02dk80w07', 'en', 1, 'https://ror.org/02dk80w07 Museu Nacional de Arte Antiga National Museum of Ancient Art'),
(7911, 'https://ror.org/03zkyqa82', 'no_lang_code', 1, 'https://ror.org/03zkyqa82 SeaStar Solutions (Canada)'),
(7912, 'https://ror.org/01hnx4w34', 'en', 1, 'https://ror.org/01hnx4w34 Museu Nacional do Azulejo National Azulejo Museum'),
(7913, 'https://ror.org/04jq2r740', 'en', 1, 'https://ror.org/04jq2r740 Museum of Science and Industry'),
(7914, 'https://ror.org/04sjb2j71', 'en', 1, 'https://ror.org/04sjb2j71 Museum of Science and Industry'),
(7915, 'https://ror.org/047c3xe48', 'no_lang_code', 1, 'https://ror.org/047c3xe48 Advanced Imaging Research (United States)'),
(7916, 'https://ror.org/026atsz45', 'en', 1, 'https://ror.org/026atsz45 Montana Wyoming Tribal Leaders Council'),
(7917, 'https://ror.org/03wbhj477', 'en', 1, 'https://ror.org/03wbhj477 Upsala College'),
(7918, 'https://ror.org/0265tbd09', 'no_lang_code', 1, 'https://ror.org/0265tbd09 Advanced Materials Technology (United States)'),
(7919, 'https://ror.org/00hr74637', 'no_lang_code', 1, 'https://ror.org/00hr74637 Science Approach (United States)'),
(7920, 'https://ror.org/00hh31m68', 'no_lang_code', 1, 'https://ror.org/00hh31m68 Advanced Mechanical Technology (United States)'),
(7921, 'https://ror.org/01j9bf827', 'en', 1, 'https://ror.org/01j9bf827 Zane State College'),
(7922, 'https://ror.org/03gf87416', 'no_lang_code', 1, 'https://ror.org/03gf87416 Advanced MicroLabs (United States)'),
(7923, 'https://ror.org/00w2xsv89', 'no_lang_code', 1, 'https://ror.org/00w2xsv89 Advanced MRI Technologies (United States)'),
(7924, 'https://ror.org/01decj058', 'no_lang_code', 1, 'https://ror.org/01decj058 Dianon (United States)'),
(7925, 'https://ror.org/02h1p2c43', 'en', 1, 'https://ror.org/02h1p2c43 Monterey County Health Department'),
(7926, 'https://ror.org/026bd4t65', 'no_lang_code', 1, 'https://ror.org/026bd4t65 UT Dots (United States)'),
(7927, 'https://ror.org/047398454', 'no_lang_code', 1, 'https://ror.org/047398454 MWH (United Kingdom)'),
(7928, 'https://ror.org/02cmjqw34', 'en', 1, 'https://ror.org/02cmjqw34 My Brother''s Keeper'),
(7929, 'https://ror.org/00z7pm351', 'no_lang_code', 1, 'https://ror.org/00z7pm351 Advanced Photonic Crystals (United States)'),
(7930, 'https://ror.org/00ew1b528', 'no_lang_code', 1, 'https://ror.org/00ew1b528 MycoLogic (Canada)'),
(7931, 'https://ror.org/02889gd81', 'no_lang_code', 1, 'https://ror.org/02889gd81 Unicon Research (United States)'),
(7932, 'https://ror.org/02jy1mq31', 'no_lang_code', 1, 'https://ror.org/02jy1mq31 Ondine Biopharma (United States)'),
(7933, 'https://ror.org/04fj60j89', 'no_lang_code', 1, 'https://ror.org/04fj60j89 SeaLite Engineering (United States)'),
(7934, 'https://ror.org/04gy43j76', 'no_lang_code', 1, 'https://ror.org/04gy43j76 Advanced Scientific Concepts (United States)'),
(7935, 'https://ror.org/04c5xat66', 'no_lang_code', 1, 'https://ror.org/04c5xat66 Megger (United Kingdom)'),
(7936, 'https://ror.org/048sjbt91', 'en', 1, 'https://ror.org/048sjbt91 John Hunter Children''s Hospital'),
(7937, 'https://ror.org/030gs7n75', 'no_lang_code', 1, 'https://ror.org/030gs7n75 Seccuris (Canada)'),
(7938, 'https://ror.org/00mjs6x71', 'no_lang_code', 1, 'https://ror.org/00mjs6x71 Advanced Technology and Research Corporation (United States)'),
(7939, 'https://ror.org/03t9z1b27', 'en', 1, 'https://ror.org/03t9z1b27 Utah Department of Human Services'),
(7940, 'https://ror.org/05qevt293', 'no_lang_code', 1, 'https://ror.org/05qevt293 HealthMedia (United States)'),
(7941, 'https://ror.org/01gqzkt51', 'no_lang_code', 1, 'https://ror.org/01gqzkt51 Second Foundation (United States)'),
(7942, 'https://ror.org/05fbr1r82', 'no_lang_code', 1, 'https://ror.org/05fbr1r82 UTRON Kinetics (United States)'),
(7943, 'https://ror.org/05es84h77', 'no_lang_code', 1, 'https://ror.org/05es84h77 Segue Corporation (United States)'),
(7944, 'https://ror.org/03rctck52', 'no_lang_code', 1, 'https://ror.org/03rctck52 MyScience (United Kingdom)'),
(7945, 'https://ror.org/03rzh5w77', 'no_lang_code', 1, 'https://ror.org/03rzh5w77 Utsi Electronics (United Kingdom)'),
(7946, 'https://ror.org/047r3w252', 'no_lang_code', 1, 'https://ror.org/047r3w252 Nano-C (United States)'),
(7947, 'https://ror.org/04tn6gn60', 'no_lang_code', 1, 'https://ror.org/04tn6gn60 Advanced Tissue (United States)'),
(7948, 'https://ror.org/01v51gh79', 'no_lang_code', 1, 'https://ror.org/01v51gh79 NanoCellect Biomedical (United States)'),
(7949, 'https://ror.org/000zk0m89', 'no_lang_code', 1, 'https://ror.org/000zk0m89 Nanoco Technologies (United Kingdom)'),
(7950, 'https://ror.org/03z6z3n38', 'en', 1, 'https://ror.org/03z6z3n38 VA Loma Linda Healthcare System'),
(7951, 'https://ror.org/03p0nzr60', 'no_lang_code', 1, 'https://ror.org/03p0nzr60 NanoComposix (United States)'),
(7952, 'https://ror.org/003g0xf19', 'en', 1, 'https://ror.org/003g0xf19 VA New Jersey Health Care System'),
(7953, 'https://ror.org/03865vt17', 'no_lang_code', 1, 'https://ror.org/03865vt17 Advaxis (United States)'),
(7954, 'https://ror.org/047cmqg95', 'en', 1, 'https://ror.org/047cmqg95 Virginia Department of Agriculture and Consumer Services'),
(7955, 'https://ror.org/05ta9zy41', 'en', 1, 'https://ror.org/05ta9zy41 Self Reliance Foundation'),
(7956, 'https://ror.org/05gy1hc18', 'en', 1, 'https://ror.org/05gy1hc18 Advocates for Youth'),
(7957, 'https://ror.org/03s4b7629', 'no_lang_code', 1, 'https://ror.org/03s4b7629 Nanomaterials & Nanofabrication Laboratories (United States)'),
(7958, 'https://ror.org/047jxj944', 'no_lang_code', 1, 'https://ror.org/047jxj944 Vaccinex (United States)'),
(7959, 'https://ror.org/02966z980', 'en', 1, 'https://ror.org/02966z980 Seminole State College of Florida'),
(7960, 'https://ror.org/03a1weg76', 'no_lang_code', 1, 'https://ror.org/03a1weg76 AdvR (United States)'),
(7961, 'https://ror.org/0279fsn39', 'no_lang_code', 1, 'https://ror.org/0279fsn39 Aedas (United Kingdom)'),
(7962, 'https://ror.org/006ys0j28', 'no_lang_code', 1, 'https://ror.org/006ys0j28 VinTech (United States)'),
(7963, 'https://ror.org/032z49242', 'no_lang_code', 1, 'https://ror.org/032z49242 Senecio Software (United States)'),
(7964, 'https://ror.org/005f8zs60', 'no_lang_code', 1, 'https://ror.org/005f8zs60 Nanoptics (United States)'),
(7965, 'https://ror.org/03hp93w41', 'no_lang_code', 1, 'https://ror.org/03hp93w41 Aegera Therapeutics (Canada)'),
(7966, 'https://ror.org/04wjhaz81', 'no_lang_code', 1, 'https://ror.org/04wjhaz81 Sengenia (United Kingdom)'),
(7967, 'https://ror.org/05rtsja45', 'no_lang_code', 1, 'https://ror.org/05rtsja45 NanoScale Corporation (United States)'),
(7968, 'https://ror.org/02symh967', 'no_lang_code', 1, 'https://ror.org/02symh967 Manhattan Scientifics (United States)'),
(7969, 'https://ror.org/00xwww266', 'no_lang_code', 1, 'https://ror.org/00xwww266 Aeon Imaging (United States)'),
(7970, 'https://ror.org/03xf9c316', 'no_lang_code', 1, 'https://ror.org/03xf9c316 NanoSonic (United States)'),
(7971, 'https://ror.org/04w8tvc97', 'no_lang_code', 1, 'https://ror.org/04w8tvc97 Nanospectra Biosciences (United States)'),
(7972, 'https://ror.org/0361tej78', 'no_lang_code', 1, 'https://ror.org/0361tej78 Urigen Pharmaceuticals (United States)'),
(7973, 'https://ror.org/00jb1kj74', 'no_lang_code', 1, 'https://ror.org/00jb1kj74 Sensonics International (United States)'),
(7974, 'https://ror.org/05prpy113', 'no_lang_code', 1, 'https://ror.org/05prpy113 Nanosys (United States)'),
(7975, 'https://ror.org/04byfq980', 'no_lang_code', 1, 'https://ror.org/04byfq980 Nanotek Instruments (United States)'),
(7976, 'https://ror.org/018hk2b97', 'en', 1, 'https://ror.org/018hk2b97 Denver VA Medical Center'),
(7977, 'https://ror.org/04fc9fa94', 'no_lang_code', 1, 'https://ror.org/04fc9fa94 Sensor Electronic Technology (United States)'),
(7978, 'https://ror.org/04sw0kk79', 'en', 1, 'https://ror.org/04sw0kk79 Vancouver Aquarium'),
(7979, 'https://ror.org/01ynheb59', 'no_lang_code', 1, 'https://ror.org/01ynheb59 Sensor Electronics (United States)'),
(7980, 'https://ror.org/01k458340', 'no_lang_code', 1, 'https://ror.org/01k458340 Vancouver Biotech (Canada)'),
(7981, 'https://ror.org/02pyrw675', 'no_lang_code', 1, 'https://ror.org/02pyrw675 Sensor Research and Development Corporation (United States)'),
(7982, 'https://ror.org/04er97976', 'no_lang_code', 1, 'https://ror.org/04er97976 Nanotherapeutics (United States)'),
(7983, 'https://ror.org/047mw6m75', 'no_lang_code', 1, 'https://ror.org/047mw6m75 Aerosol Dynamics (United States)'),
(7984, 'https://ror.org/03ybc3s94', 'en', 1, 'https://ror.org/03ybc3s94 Maria Mitchell Association'),
(7985, 'https://ror.org/05cfcmn93', 'no_lang_code', 1, 'https://ror.org/05cfcmn93 AeroVironment (United States)'),
(7986, 'https://ror.org/02z36x226', 'no_lang_code', 1, 'https://ror.org/02z36x226 Vancouver Enterprise Forum'),
(7987, 'https://ror.org/02sftpz67', 'no_lang_code', 1, 'https://ror.org/02sftpz67 AFC Energy (United Kingdom)'),
(7988, 'https://ror.org/05nh3s110', 'no_lang_code', 1, 'https://ror.org/05nh3s110 Vascular Vision Pharmaceutical (United States)'),
(7989, 'https://ror.org/00n5vrh51', 'no_lang_code', 1, 'https://ror.org/00n5vrh51 Tioma Therapeutics (United States)'),
(7990, 'https://ror.org/02pdvpq69', 'no_lang_code', 1, 'https://ror.org/02pdvpq69 Affinergy (United States)'),
(7991, 'https://ror.org/02acb4z65', 'en', 1, 'https://ror.org/02acb4z65 Sequoia Foundation'),
(7992, 'https://ror.org/01wakgv04', 'no_lang_code', 1, 'https://ror.org/01wakgv04 Naprogenix (United States)'),
(7993, 'https://ror.org/02dcdb854', 'no_lang_code', 1, 'https://ror.org/02dcdb854 SeraCare Life Sciences (United States)'),
(7994, 'https://ror.org/00ktagp72', 'no_lang_code', 1, 'https://ror.org/00ktagp72 Seralogix (United States)'),
(7995, 'https://ror.org/042tmwe79', 'no_lang_code', 1, 'https://ror.org/042tmwe79 Virtual Centre of Excellence In Mobile and Personal Communications'),
(7996, 'https://ror.org/04jjp2118', 'no_lang_code', 1, 'https://ror.org/04jjp2118 Serco (United Kingdom)'),
(7997, 'https://ror.org/040g9jc92', 'en', 1, 'https://ror.org/040g9jc92 Serving Children and Adults in Need'),
(7998, 'https://ror.org/04h2yy041', 'en', 1, 'https://ror.org/04h2yy041 Sesame Workshop'),
(7999, 'https://ror.org/00qfg4234', 'no_lang_code', 1, 'https://ror.org/00qfg4234 Vcom3D (United States)'),
(8000, 'https://ror.org/0590kp014', 'en', 1, 'https://ror.org/0590kp014 African Field Epidemiology Network'),
(8001, 'https://ror.org/030h6t573', 'no_lang_code', 1, 'https://ror.org/030h6t573 DNAtrix (United States)'),
(8002, 'https://ror.org/0207yj108', 'en', 1, 'https://ror.org/0207yj108 Nashville State Community College'),
(8003, 'https://ror.org/02arg8v16', 'no_lang_code', 1, 'https://ror.org/02arg8v16 Enapter (Italy)'),
(8004, 'https://ror.org/00t6yjn93', 'en', 1, 'https://ror.org/00t6yjn93 Africare'),
(8005, 'https://ror.org/01xd1rz53', 'en', 1, 'https://ror.org/01xd1rz53 National Association of State Mental Health Program Directors'),
(8006, 'https://ror.org/04m2ehp75', 'en', 1, 'https://ror.org/04m2ehp75 Seven Counties Services'),
(8007, 'https://ror.org/025pdmt14', 'no_lang_code', 1, 'https://ror.org/025pdmt14 Severn Trent (United Kingdom)'),
(8008, 'https://ror.org/03tz9bp03', 'no_lang_code', 1, 'https://ror.org/03tz9bp03 Sharklet Technologies (United States)'),
(8009, 'https://ror.org/02pstqj22', 'en', 1, 'https://ror.org/02pstqj22 National Action Council for Minorities in Engineering'),
(8010, 'https://ror.org/050dg4y92', 'en', 1, 'https://ror.org/050dg4y92 National Alliance for Hispanic Health'),
(8011, 'https://ror.org/017pqj756', 'no_lang_code', 1, 'https://ror.org/017pqj756 Vega Wave Systems (United States)'),
(8012, 'https://ror.org/01gfdf281', 'no_lang_code', 1, 'https://ror.org/01gfdf281 Agave BioSystems (United States)'),
(8013, 'https://ror.org/0075mfb88', 'no_lang_code', 1, 'https://ror.org/0075mfb88 Sharp Laboratories of Europe (United Kingdom)'),
(8014, 'https://ror.org/0275fz765', 'en', 1, 'https://ror.org/0275fz765 National Aquarium'),
(8015, 'https://ror.org/032t9vq81', 'no_lang_code', 1, 'https://ror.org/032t9vq81 Shasta Crystals (United States)'),
(8016, 'https://ror.org/050x9d346', 'en', 1, 'https://ror.org/050x9d346 Age UK'),
(8017, 'https://ror.org/05mm5v065', 'en', 1, 'https://ror.org/05mm5v065 Sheffield City Council'),
(8018, 'https://ror.org/0315wyw46', 'en', 1, 'https://ror.org/0315wyw46 Sheldon Jackson College'),
(8019, 'https://ror.org/049kbch38', 'en', 1, 'https://ror.org/049kbch38 Cartlann Náisiúnta na hÉireann National Archives'),
(8020, 'https://ror.org/02s3j1d69', 'no_lang_code', 1, 'https://ror.org/02s3j1d69 VenatoRx Pharmaceuticals (United States)'),
(8021, 'https://ror.org/05pnhhe27', 'en', 1, 'https://ror.org/05pnhhe27 National Association of State Alcohol and Drug Abuse Directors'),
(8022, 'https://ror.org/01kn86d52', 'en', 1, 'https://ror.org/01kn86d52 Shelton State Community College'),
(8023, 'https://ror.org/00y93ak93', 'en', 1, 'https://ror.org/00y93ak93 Shepherd University'),
(8024, 'https://ror.org/02ts2hy13', 'en', 1, 'https://ror.org/02ts2hy13 National Association of Biology Teachers'),
(8025, 'https://ror.org/016kk8e44', 'no_lang_code', 1, 'https://ror.org/016kk8e44 Ventria Bioscience (United States)'),
(8026, 'https://ror.org/04zahys21', 'en', 1, 'https://ror.org/04zahys21 National Association of Health Data Organizations'),
(8027, 'https://ror.org/032mw2t40', 'no_lang_code', 1, 'https://ror.org/032mw2t40 Shifa Biomedical (United States)'),
(8028, 'https://ror.org/01f3h2s79', 'no_lang_code', 1, 'https://ror.org/01f3h2s79 Agennix (United States)'),
(8029, 'https://ror.org/02x6aye26', 'en', 1, 'https://ror.org/02x6aye26 National Association of State Boards of Education'),
(8030, 'https://ror.org/039bbm920', 'en', 1, 'https://ror.org/039bbm920 National Audubon Society'),
(8031, 'https://ror.org/023bmvr81', 'no_lang_code', 1, 'https://ror.org/023bmvr81 Agenta Biotechnologies (United States)'),
(8032, 'https://ror.org/05hnmtf25', 'en', 1, 'https://ror.org/05hnmtf25 Shorter University'),
(8033, 'https://ror.org/00ycg6x55', 'en', 1, 'https://ror.org/00ycg6x55 National Association for Biomedical Research'),
(8034, 'https://ror.org/01t1ct488', 'no_lang_code', 1, 'https://ror.org/01t1ct488 Verafin (Canada)'),
(8035, 'https://ror.org/03n37y445', 'no_lang_code', 1, 'https://ror.org/03n37y445 AgentSheets (United States)'),
(8036, 'https://ror.org/03nxga177', 'no_lang_code', 1, 'https://ror.org/03nxga177 Sigma Technologies (United States)'),
(8037, 'https://ror.org/01zr7w027', 'no_lang_code', 1, 'https://ror.org/01zr7w027 INFICON (United States)'),
(8038, 'https://ror.org/00e476874', 'en', 1, 'https://ror.org/00e476874 Agile Mind'),
(8039, 'https://ror.org/056pyfd10', 'no_lang_code', 1, 'https://ror.org/056pyfd10 Agile Sciences (United States)'),
(8040, 'https://ror.org/03zry8t95', 'en', 1, 'https://ror.org/03zry8t95 National Business Group on Health'),
(8041, 'https://ror.org/03dfzxf19', 'no_lang_code', 1, 'https://ror.org/03dfzxf19 Agilent Technologies (United Kingdom)'),
(8042, 'https://ror.org/02vdyxx64', 'no_lang_code', 1, 'https://ror.org/02vdyxx64 Verizon (United States)'),
(8043, 'https://ror.org/05c37ft41', 'no_lang_code', 1, 'https://ror.org/05c37ft41 Agiltron (United States)'),
(8044, 'https://ror.org/009xkka62', 'no_lang_code', 1, 'https://ror.org/009xkka62 Sema Construction (United States)'),
(8045, 'https://ror.org/01a079157', 'no_lang_code', 1, 'https://ror.org/01a079157 Siemens (Portugal)'),
(8046, 'https://ror.org/00p7hvr94', 'no_lang_code', 1, 'https://ror.org/00p7hvr94 Agriculture Environmental Renewal Canada (Canada)'),
(8047, 'https://ror.org/0259axc43', 'no_lang_code', 1, 'https://ror.org/0259axc43 SeaWell Networks (Canada)'),
(8048, 'https://ror.org/01wwwe276', 'en', 1, 'https://ror.org/01wwwe276 National Centre for Atmospheric Science'),
(8049, 'https://ror.org/05e6mjz86', 'no_lang_code', 1, 'https://ror.org/05e6mjz86 Creative Electron (United States)'),
(8050, 'https://ror.org/01b1g5g41', 'en', 1, 'https://ror.org/01b1g5g41 Greater Manchester STEM Centre'),
(8051, 'https://ror.org/02qbj0866', 'no_lang_code', 1, 'https://ror.org/02qbj0866 AiCure (United States)'),
(8052, 'https://ror.org/05pp7s587', 'en', 1, 'https://ror.org/05pp7s587 Vermont Agency of Human Services'),
(8053, 'https://ror.org/03hsk1q51', 'en', 1, 'https://ror.org/03hsk1q51 National Coalition of STD Directors'),
(8054, 'https://ror.org/01nzxq896', 'en', 1, 'https://ror.org/01nzxq896 VA North Texas Health Care System'),
(8055, 'https://ror.org/02b2x6q12', 'en', 1, 'https://ror.org/02b2x6q12 AID Atlanta'),
(8056, 'https://ror.org/03r0xxt78', 'en', 1, 'https://ror.org/03r0xxt78 AIDS Committee of Toronto'),
(8057, 'https://ror.org/05rvwbr49', 'en', 1, 'https://ror.org/05rvwbr49 APLA Health'),
(8058, 'https://ror.org/03rt40634', 'en', 1, 'https://ror.org/03rt40634 AIDS Service Center of New York City'),
(8059, 'https://ror.org/00sqdq844', 'en', 1, 'https://ror.org/00sqdq844 National Committee for Quality Assurance'),
(8060, 'https://ror.org/03g4bqt50', 'no_lang_code', 1, 'https://ror.org/03g4bqt50 Sigmovir Biosystems (United States)'),
(8061, 'https://ror.org/00fby7m68', 'no_lang_code', 1, 'https://ror.org/00fby7m68 Air Canada'),
(8062, 'https://ror.org/03gmf8x48', 'en', 1, 'https://ror.org/03gmf8x48 National Conference of State Legislatures'),
(8063, 'https://ror.org/0004bx792', 'no_lang_code', 1, 'https://ror.org/0004bx792 SignalChem (Canada)'),
(8064, 'https://ror.org/02npvem89', 'en', 1, 'https://ror.org/02npvem89 Air & Waste Management Association'),
(8065, 'https://ror.org/01heabd70', 'no_lang_code', 1, 'https://ror.org/01heabd70 Signum Biosciences (United States)'),
(8066, 'https://ror.org/01p7aam65', 'no_lang_code', 1, 'https://ror.org/01p7aam65 FuelCell Energy (Canada)'),
(8067, 'https://ror.org/0132fct87', 'no_lang_code', 1, 'https://ror.org/0132fct87 Air Products (United Kingdom)'),
(8068, 'https://ror.org/053ehy143', 'no_lang_code', 1, 'https://ror.org/053ehy143 Airak (United States)'),
(8069, 'https://ror.org/02dphst03', 'en', 1, 'https://ror.org/02dphst03 National Council for Science and the Environment'),
(8070, 'https://ror.org/05p81fj60', 'no_lang_code', 1, 'https://ror.org/05p81fj60 Aixtron (United Kingdom)'),
(8071, 'https://ror.org/004wdnc96', 'no_lang_code', 1, 'https://ror.org/004wdnc96 Siloam Biosciences (United States)'),
(8072, 'https://ror.org/053nef216', 'no_lang_code', 1, 'https://ror.org/053nef216 Vescent Photonics (United States)'),
(8073, 'https://ror.org/017spz608', 'no_lang_code', 1, 'https://ror.org/017spz608 Aker Arctic (Canada)'),
(8074, 'https://ror.org/02q76t874', 'no_lang_code', 1, 'https://ror.org/02q76t874 Akina (United States)'),
(8075, 'https://ror.org/05p0pmx78', 'no_lang_code', 1, 'https://ror.org/05p0pmx78 Akonni Biosystems (United States)'),
(8076, 'https://ror.org/01m11yv70', 'no_lang_code', 1, 'https://ror.org/01m11yv70 Aktiv-Dry (United States)'),
(8077, 'https://ror.org/003pdcw24', 'no_lang_code', 1, 'https://ror.org/003pdcw24 Vestas (Denmark)'),
(8078, 'https://ror.org/015n0my11', 'en', 1, 'https://ror.org/015n0my11 Alabama Southern Community College'),
(8079, 'https://ror.org/00dpysh46', 'en', 1, 'https://ror.org/00dpysh46 Conseil national d''éthique en recherche chez l''humain National Council on Ethics in Human Research'),
(8080, 'https://ror.org/03qwfxy81', 'en', 1, 'https://ror.org/03qwfxy81 National Disease Research Interchange');
INSERT INTO `rors` VALUES
(8081, 'https://ror.org/0100w6230', 'no_lang_code', 1, 'https://ror.org/0100w6230 Alacron (United States)'),
(8082, 'https://ror.org/04myhcv14', 'en', 1, 'https://ror.org/04myhcv14 National Egg Regulatory Officials'),
(8083, 'https://ror.org/02tn1ck84', 'en', 1, 'https://ror.org/02tn1ck84 National Eisteddfod of Wales'),
(8084, 'https://ror.org/03tvzhc42', 'no_lang_code', 1, 'https://ror.org/03tvzhc42 Vesticon (United States)'),
(8085, 'https://ror.org/01jm0aq25', 'en', 1, 'https://ror.org/01jm0aq25 Alaska Federation of Natives'),
(8086, 'https://ror.org/04dmca004', 'no_lang_code', 1, 'https://ror.org/04dmca004 Vesuvius (United Kingdom)'),
(8087, 'https://ror.org/00eksk721', 'en', 1, 'https://ror.org/00eksk721 National Environmental Health Association'),
(8088, 'https://ror.org/0342mgc93', 'en', 1, 'https://ror.org/0342mgc93 Alaska Department of Environmental Conservation'),
(8089, 'https://ror.org/03y76pe29', 'no_lang_code', 1, 'https://ror.org/03y76pe29 Albany Molecular Research (United States)'),
(8090, 'https://ror.org/00w230w05', 'no_lang_code', 1, 'https://ror.org/00w230w05 Vical (United States)'),
(8091, 'https://ror.org/01pxap840', 'en', 1, 'https://ror.org/01pxap840 Royal Armouries'),
(8092, 'https://ror.org/05ez4gg94', 'en', 1, 'https://ror.org/05ez4gg94 Alberta Centre for Advanced MNT Products (Canada)'),
(8093, 'https://ror.org/034hh2e11', 'en', 1, 'https://ror.org/034hh2e11 Amgueddfa Victoria ac Albert Victoria and Albert Museum'),
(8094, 'https://ror.org/020xab067', 'en', 1, 'https://ror.org/020xab067 Alberta Community Council on HIV'),
(8095, 'https://ror.org/05pm5jp51', 'no_lang_code', 1, 'https://ror.org/05pm5jp51 SIMmersion (United States)'),
(8096, 'https://ror.org/027923343', 'en', 1, 'https://ror.org/027923343 Victorian Order of Nurses'),
(8097, 'https://ror.org/04bqh5m06', 'en', 1, 'https://ror.org/04bqh5m06 National Geographic Society'),
(8098, 'https://ror.org/034pcpg38', 'en', 1, 'https://ror.org/034pcpg38 Bard College at Simon''s Rock'),
(8099, 'https://ror.org/04rj6an25', 'en', 1, 'https://ror.org/04rj6an25 Alberta Science Network'),
(8100, 'https://ror.org/01twtwf23', 'no_lang_code', 1, 'https://ror.org/01twtwf23 Alberti''s Window (United States)'),
(8101, 'https://ror.org/01pxz1r61', 'no_lang_code', 1, 'https://ror.org/01pxz1r61 Simonsen Laboratories'),
(8102, 'https://ror.org/05pzb3403', 'en', 1, 'https://ror.org/05pzb3403 National Governors Association'),
(8103, 'https://ror.org/030pv4h84', 'en', 1, 'https://ror.org/030pv4h84 Albertus Magnus College'),
(8104, 'https://ror.org/00nbsvd35', 'no_lang_code', 1, 'https://ror.org/00nbsvd35 Vida Health Communications (United States)'),
(8105, 'https://ror.org/01mw31v11', 'no_lang_code', 1, 'https://ror.org/01mw31v11 Simpleware (United Kingdom)'),
(8106, 'https://ror.org/00rt47041', 'no_lang_code', 1, 'https://ror.org/00rt47041 Vidasym (United States)'),
(8107, 'https://ror.org/04r9y8d38', 'no_lang_code', 1, 'https://ror.org/04r9y8d38 Wellstat (United States)'),
(8108, 'https://ror.org/01rm4gj66', 'no_lang_code', 1, 'https://ror.org/01rm4gj66 SimQuest (United States)'),
(8109, 'https://ror.org/01fz8x241', 'en', 1, 'https://ror.org/01fz8x241 National Hemophilia Foundation'),
(8110, 'https://ror.org/058etpm79', 'no_lang_code', 1, 'https://ror.org/058etpm79 Sion Power (United States)'),
(8111, 'https://ror.org/05yjan319', 'no_lang_code', 1, 'https://ror.org/05yjan319 Simulent (Canada)'),
(8112, 'https://ror.org/02yw59f42', 'en', 1, 'https://ror.org/02yw59f42 Central New Mexico Community College'),
(8113, 'https://ror.org/03mx8d427', 'en', 1, 'https://ror.org/03mx8d427 Instituto Nacional de Saúde Dr. Ricardo Jorge National Institute of Health Dr. Ricardo Jorge'),
(8114, 'https://ror.org/04na12j70', 'no_lang_code', 1, 'https://ror.org/04na12j70 Alchem Laboratories (United States)'),
(8115, 'https://ror.org/02jr44c14', 'no_lang_code', 1, 'https://ror.org/02jr44c14 Sinmat (United States)'),
(8116, 'https://ror.org/03s0w0d38', 'no_lang_code', 1, 'https://ror.org/03s0w0d38 VideoMining (United States)'),
(8117, 'https://ror.org/024a9q404', 'no_lang_code', 1, 'https://ror.org/024a9q404 ALD NanoSolutions (United States)'),
(8118, 'https://ror.org/01ef4m131', 'no_lang_code', 1, 'https://ror.org/01ef4m131 Sirnaomics (United States)'),
(8119, 'https://ror.org/03hxefz97', 'no_lang_code', 1, 'https://ror.org/03hxefz97 ViewPlus (United States)'),
(8120, 'https://ror.org/023mkm794', 'en', 1, 'https://ror.org/023mkm794 Sisseton Wahpeton College'),
(8121, 'https://ror.org/027h69z40', 'no_lang_code', 1, 'https://ror.org/027h69z40 AlertMe (United Kingdom)'),
(8122, 'https://ror.org/034jwm186', 'en', 1, 'https://ror.org/034jwm186 Aletheia House'),
(8123, 'https://ror.org/051y01w95', 'no_lang_code', 1, 'https://ror.org/051y01w95 Site Vision Surveys (United Kingdom)'),
(8124, 'https://ror.org/0068vzv72', 'no_lang_code', 1, 'https://ror.org/0068vzv72 National Instruments (United Kingdom)'),
(8125, 'https://ror.org/05qgtg165', 'en', 1, 'https://ror.org/05qgtg165 Sitting Bull College'),
(8126, 'https://ror.org/04yyrj242', 'no_lang_code', 1, 'https://ror.org/04yyrj242 Monsanto (United Kingdom)'),
(8127, 'https://ror.org/01dm0m970', 'no_lang_code', 1, 'https://ror.org/01dm0m970 Alethia Biotherapeutics (Canada)'),
(8128, 'https://ror.org/01f3njc68', 'en', 1, 'https://ror.org/01f3njc68 National Maritime Museum'),
(8129, 'https://ror.org/031ywxc85', 'no_lang_code', 1, 'https://ror.org/031ywxc85 Alexion Pharmaceuticals (United States)'),
(8130, 'https://ror.org/01327qs39', 'en', 1, 'https://ror.org/01327qs39 WestCare Foundation'),
(8131, 'https://ror.org/003ck6433', 'en', 1, 'https://ror.org/003ck6433 National Microelectronics Institute'),
(8132, 'https://ror.org/00jh0pg84', 'en', 1, 'https://ror.org/00jh0pg84 Algebra Project'),
(8133, 'https://ror.org/010ehmn03', 'no_lang_code', 1, 'https://ror.org/010ehmn03 Viocare (United States)'),
(8134, 'https://ror.org/03jgjt094', 'en', 1, 'https://ror.org/03jgjt094 Algonquin College Collège Algonquin'),
(8135, 'https://ror.org/05a15fa50', 'en', 1, 'https://ror.org/05a15fa50 National Museum Wales'),
(8136, 'https://ror.org/01em4t310', 'no_lang_code', 1, 'https://ror.org/01em4t310 Analogue Theatre (United Kingdom)'),
(8137, 'https://ror.org/05vqfs419', 'en', 1, 'https://ror.org/05vqfs419 National Museums Liverpool'),
(8138, 'https://ror.org/02pn0tx11', 'en', 1, 'https://ror.org/02pn0tx11 Aliviane'),
(8139, 'https://ror.org/036dfq243', 'no_lang_code', 1, 'https://ror.org/036dfq243 Vion Pharmaceuticals (United States)'),
(8140, 'https://ror.org/03pp86w19', 'en', 1, 'https://ror.org/03pp86w19 Beatson West of Scotland Cancer Centre'),
(8141, 'https://ror.org/038hqfn26', 'no_lang_code', 1, 'https://ror.org/038hqfn26 Alkermes (United States)'),
(8142, 'https://ror.org/02tj9h434', 'en', 1, 'https://ror.org/02tj9h434 Allegany College of Maryland'),
(8143, 'https://ror.org/038c39g95', 'en', 1, 'https://ror.org/038c39g95 Allegheny Valley Hospital'),
(8144, 'https://ror.org/00t0n1q40', 'en', 1, 'https://ror.org/00t0n1q40 National Network of Public Health Institutes'),
(8145, 'https://ror.org/04254kj61', 'en', 1, 'https://ror.org/04254kj61 Social Science Education Consortium'),
(8146, 'https://ror.org/05qagj590', 'no_lang_code', 1, 'https://ror.org/05qagj590 Allele Biotechnology (United States)'),
(8147, 'https://ror.org/02whkqx98', 'no_lang_code', 1, 'https://ror.org/02whkqx98 Social Solutions International (United States)'),
(8148, 'https://ror.org/02882ey95', 'en', 1, 'https://ror.org/02882ey95 Society for Academic Emergency Medicine'),
(8149, 'https://ror.org/01gkkh788', 'no_lang_code', 1, 'https://ror.org/01gkkh788 National One Call (United Kingdom)'),
(8150, 'https://ror.org/00mamdf13', 'en', 1, 'https://ror.org/00mamdf13 Society for Advancement of Chicanos and Native Americans in Science'),
(8151, 'https://ror.org/05h3c9j32', 'no_lang_code', 1, 'https://ror.org/05h3c9j32 Allied Innovative Systems (United States)'),
(8152, 'https://ror.org/011e44004', 'en', 1, 'https://ror.org/011e44004 American Planning Association'),
(8153, 'https://ror.org/00by7mn52', 'no_lang_code', 1, 'https://ror.org/00by7mn52 Allocadia (Canada)'),
(8154, 'https://ror.org/0373e3z25', 'en', 1, 'https://ror.org/0373e3z25 Virginia Museum of Natural History'),
(8155, 'https://ror.org/01tbe3k42', 'no_lang_code', 1, 'https://ror.org/01tbe3k42 Alpha Genesis (United States)'),
(8156, 'https://ror.org/059xgqj73', 'en', 1, 'https://ror.org/059xgqj73 Society for Prevention Research'),
(8157, 'https://ror.org/03hqq4p77', 'en', 1, 'https://ror.org/03hqq4p77 Society for Public Health Education'),
(8158, 'https://ror.org/00s5kep86', 'en', 1, 'https://ror.org/00s5kep86 Society for Risk Analysis'),
(8159, 'https://ror.org/02c3hd322', 'en', 1, 'https://ror.org/02c3hd322 National Public Radio'),
(8160, 'https://ror.org/02d4g5x37', 'no_lang_code', 1, 'https://ror.org/02d4g5x37 Virginia Technologies (United States)'),
(8161, 'https://ror.org/0006jev58', 'no_lang_code', 1, 'https://ror.org/0006jev58 Alpha Technologies (Canada)'),
(8162, 'https://ror.org/00jse8x38', 'en', 1, 'https://ror.org/00jse8x38 National Quality Forum'),
(8163, 'https://ror.org/03bbd8g15', 'en', 1, 'https://ror.org/03bbd8g15 Society of General Internal Medicine'),
(8164, 'https://ror.org/029yxsv15', 'en', 1, 'https://ror.org/029yxsv15 Society of General Physiologists'),
(8165, 'https://ror.org/035djg835', 'no_lang_code', 1, 'https://ror.org/035djg835 National Recovery Technologies (United States)'),
(8166, 'https://ror.org/05mk8am30', 'en', 1, 'https://ror.org/05mk8am30 National Safety Council'),
(8167, 'https://ror.org/04fqrjs59', 'en', 1, 'https://ror.org/04fqrjs59 Society of Hispanic Professional Engineers Foundation'),
(8168, 'https://ror.org/03btasp49', 'en', 1, 'https://ror.org/03btasp49 National Space Centre'),
(8169, 'https://ror.org/00ppq4k21', 'en', 1, 'https://ror.org/00ppq4k21 Society of Toxicology'),
(8170, 'https://ror.org/05bfmm624', 'no_lang_code', 1, 'https://ror.org/05bfmm624 AlphaVax (United States)'),
(8171, 'https://ror.org/03gw72402', 'no_lang_code', 1, 'https://ror.org/03gw72402 Socratech (United States)'),
(8172, 'https://ror.org/04taw4g76', 'no_lang_code', 1, 'https://ror.org/04taw4g76 Sofina Foods (Canada)'),
(8173, 'https://ror.org/01p92hb48', 'en', 1, 'https://ror.org/01p92hb48 National Technical Information Service'),
(8174, 'https://ror.org/05rebpx60', 'no_lang_code', 1, 'https://ror.org/05rebpx60 National Underground Assets Group'),
(8175, 'https://ror.org/05spgfz39', 'no_lang_code', 1, 'https://ror.org/05spgfz39 Soligenix (United States)'),
(8176, 'https://ror.org/00096h502', 'en', 1, 'https://ror.org/00096h502 Native American Cancer Research'),
(8177, 'https://ror.org/04y4dgs58', 'no_lang_code', 1, 'https://ror.org/04y4dgs58 Sitar (United States)'),
(8178, 'https://ror.org/038xkzz47', 'no_lang_code', 1, 'https://ror.org/038xkzz47 Viro Dynamics (United States)'),
(8179, 'https://ror.org/01dwzs847', 'no_lang_code', 1, 'https://ror.org/01dwzs847 Cell Gate (United States)'),
(8180, 'https://ror.org/010k65h15', 'en', 1, 'https://ror.org/010k65h15 Society for Canadian Women in Science and Technology'),
(8181, 'https://ror.org/05sa8gf57', 'en', 1, 'https://ror.org/05sa8gf57 Native American Health Center'),
(8182, 'https://ror.org/03cegwq60', 'en', 1, 'https://ror.org/03cegwq60 McMaster Children''s Hospital'),
(8183, 'https://ror.org/05vj78j16', 'en', 1, 'https://ror.org/05vj78j16 Society of American Foresters'),
(8184, 'https://ror.org/04dq0c560', 'no_lang_code', 1, 'https://ror.org/04dq0c560 IMPCO Technologies (Canada)'),
(8185, 'https://ror.org/054wd3532', 'en', 1, 'https://ror.org/054wd3532 Native American Rehabilitation Association'),
(8186, 'https://ror.org/022194d90', 'no_lang_code', 1, 'https://ror.org/022194d90 Ajinomoto Althea (United States)'),
(8187, 'https://ror.org/01a8ynn13', 'en', 1, 'https://ror.org/01a8ynn13 The Langton Grammar School for Boys'),
(8188, 'https://ror.org/03dnydg98', 'no_lang_code', 1, 'https://ror.org/03dnydg98 VirRx (United States)'),
(8189, 'https://ror.org/023dbpz69', 'en', 1, 'https://ror.org/023dbpz69 National Association for Public Health Statistics and Information Systems'),
(8190, 'https://ror.org/00tjkp068', 'no_lang_code', 1, 'https://ror.org/00tjkp068 SimBiotic Software (United States)'),
(8191, 'https://ror.org/03w40n140', 'no_lang_code', 1, 'https://ror.org/03w40n140 Simbex (United States)'),
(8192, 'https://ror.org/01t05fr30', 'en', 1, 'https://ror.org/01t05fr30 National Conference on Interstate Milk Shipments'),
(8193, 'https://ror.org/00hq8sy61', 'en', 1, 'https://ror.org/00hq8sy61 National Institute for Children’s Health Quality'),
(8194, 'https://ror.org/00mktab21', 'no_lang_code', 1, 'https://ror.org/00mktab21 Virtalis (United Kingdom)'),
(8195, 'https://ror.org/01mkye871', 'en', 1, 'https://ror.org/01mkye871 UPMC Altoona'),
(8196, 'https://ror.org/03p81a485', 'no_lang_code', 1, 'https://ror.org/03p81a485 Altor BioScience (United States)'),
(8197, 'https://ror.org/052d1a351', 'de', 1, 'https://ror.org/052d1a351 Museum für Naturkunde Museum für Naturkunde - Leibniz Institute for Evolution and Biodiversity Science'),
(8198, 'https://ror.org/041np7397', 'no_lang_code', 1, 'https://ror.org/041np7397 SolPowered Energy Corporation (Canada)'),
(8199, 'https://ror.org/03jth0z95', 'no_lang_code', 1, 'https://ror.org/03jth0z95 Natural Pharmacia International (United States)'),
(8200, 'https://ror.org/024es8b17', 'no_lang_code', 1, 'https://ror.org/024es8b17 Natural Selection (United States)'),
(8201, 'https://ror.org/03mnq7x91', 'no_lang_code', 1, 'https://ror.org/03mnq7x91 Lundin Mining (Portugal)'),
(8202, 'https://ror.org/00a75q479', 'no_lang_code', 1, 'https://ror.org/00a75q479 Nature Technology Corporation (United States)'),
(8203, 'https://ror.org/0039ss191', 'no_lang_code', 1, 'https://ror.org/0039ss191 Altravax (United States)'),
(8204, 'https://ror.org/01rmpb303', 'no_lang_code', 1, 'https://ror.org/01rmpb303 Nautilus Biosciences (Canada)'),
(8205, 'https://ror.org/004aekm03', 'en', 1, 'https://ror.org/004aekm03 South Carolina HIV/AIDS Council'),
(8206, 'https://ror.org/03cd6bd87', 'en', 1, 'https://ror.org/03cd6bd87 South Carolina Research Authority'),
(8207, 'https://ror.org/0375f4d26', 'en', 1, 'https://ror.org/0375f4d26 Alzheimer''s Association'),
(8208, 'https://ror.org/02m5vdb88', 'en', 1, 'https://ror.org/02m5vdb88 Navajo Nation Division of Health'),
(8209, 'https://ror.org/01y639h39', 'no_lang_code', 1, 'https://ror.org/01y639h39 Raptamer Discovery Group (United States)'),
(8210, 'https://ror.org/00k59n723', 'en', 1, 'https://ror.org/00k59n723 South Dakota Academy of Science'),
(8211, 'https://ror.org/00n79r507', 'no_lang_code', 1, 'https://ror.org/00n79r507 Ambulatory Monitoring (United States)'),
(8212, 'https://ror.org/02aawcy27', 'no_lang_code', 1, 'https://ror.org/02aawcy27 Navigen (United States)'),
(8213, 'https://ror.org/05q4hby07', 'no_lang_code', 1, 'https://ror.org/05q4hby07 SINTX Technologies (United States)'),
(8214, 'https://ror.org/05f4e7p75', 'no_lang_code', 1, 'https://ror.org/05f4e7p75 Visual Health Solutions (United States)'),
(8215, 'https://ror.org/04e7jg064', 'no_lang_code', 1, 'https://ror.org/04e7jg064 Pennon Group (United Kingdom)'),
(8216, 'https://ror.org/028a3y923', 'no_lang_code', 1, 'https://ror.org/028a3y923 VisionQuest Biomedical (United States)'),
(8217, 'https://ror.org/0239skj46', 'en', 1, 'https://ror.org/0239skj46 Southeast Alaska Regional Health Consortium'),
(8218, 'https://ror.org/01b9fyy36', 'en', 1, 'https://ror.org/01b9fyy36 Visions of Science Network for Learning'),
(8219, 'https://ror.org/00n158h85', 'en', 1, 'https://ror.org/00n158h85 American Aging Association'),
(8220, 'https://ror.org/004gw9825', 'en', 1, 'https://ror.org/004gw9825 Southeast Community College'),
(8221, 'https://ror.org/00rqtg495', 'en', 1, 'https://ror.org/00rqtg495 American Association for Dental Research'),
(8222, 'https://ror.org/02bpm1n29', 'no_lang_code', 1, 'https://ror.org/02bpm1n29 Southeast TechInventures (United States)'),
(8223, 'https://ror.org/005tjs461', 'en', 1, 'https://ror.org/005tjs461 American Association for the Study of Liver Diseases'),
(8224, 'https://ror.org/036bpjh12', 'en', 1, 'https://ror.org/036bpjh12 American Association of Blood Banks'),
(8225, 'https://ror.org/05qg5f850', 'en', 1, 'https://ror.org/05qg5f850 American Association of Community Colleges'),
(8226, 'https://ror.org/05hfrht78', 'no_lang_code', 1, 'https://ror.org/05hfrht78 Vista Engineering (United States)'),
(8227, 'https://ror.org/05cj88g33', 'en', 1, 'https://ror.org/05cj88g33 American Association of Engineering Societies'),
(8228, 'https://ror.org/04zqrtt67', 'en', 1, 'https://ror.org/04zqrtt67 National Co-ordinating Centre for Public Engagement'),
(8229, 'https://ror.org/00pke8311', 'en', 1, 'https://ror.org/00pke8311 Southern Arizona AIDS Foundation'),
(8230, 'https://ror.org/01pj98103', 'no_lang_code', 1, 'https://ror.org/01pj98103 Vista Photonics (United States)'),
(8231, 'https://ror.org/015jknj09', 'en', 1, 'https://ror.org/015jknj09 American Association of Physicists in Medicine'),
(8232, 'https://ror.org/032hhgs28', 'no_lang_code', 1, 'https://ror.org/032hhgs28 Caldic (Canada)'),
(8233, 'https://ror.org/02r5hv713', 'no_lang_code', 1, 'https://ror.org/02r5hv713 Vista Scientific (United States)'),
(8234, 'https://ror.org/02bf6t552', 'en', 1, 'https://ror.org/02bf6t552 American College of Chest Physicians'),
(8235, 'https://ror.org/02h3se683', 'en', 1, 'https://ror.org/02h3se683 American College of Medical Genetics'),
(8236, 'https://ror.org/01nq1wn92', 'no_lang_code', 1, 'https://ror.org/01nq1wn92 VitaCyte (United States)'),
(8237, 'https://ror.org/00rrzkj76', 'no_lang_code', 1, 'https://ror.org/00rrzkj76 Sorbent Technologies (United States)'),
(8238, 'https://ror.org/04tmqcr52', 'no_lang_code', 1, 'https://ror.org/04tmqcr52 Viva Pharmaceutical (Canada)'),
(8239, 'https://ror.org/05pzvw552', 'en', 1, 'https://ror.org/05pzvw552 SoundVision Productions'),
(8240, 'https://ror.org/04phskp39', 'en', 1, 'https://ror.org/04phskp39 American Council of Learned Societies'),
(8241, 'https://ror.org/00hyyhz65', 'no_lang_code', 1, 'https://ror.org/00hyyhz65 Source Signal Imaging'),
(8242, 'https://ror.org/03d4tjj21', 'no_lang_code', 1, 'https://ror.org/03d4tjj21 Vivo Biosciences (United States)'),
(8243, 'https://ror.org/05pqvh594', 'no_lang_code', 1, 'https://ror.org/05pqvh594 NEI Corporation (United States)'),
(8244, 'https://ror.org/00pmt4r91', 'en', 1, 'https://ror.org/00pmt4r91 American Educational Research Association'),
(8245, 'https://ror.org/012fe8h22', 'en', 1, 'https://ror.org/012fe8h22 Neighborhood House'),
(8246, 'https://ror.org/05rckx884', 'no_lang_code', 1, 'https://ror.org/05rckx884 American Express (United States)'),
(8247, 'https://ror.org/0276e1563', 'en', 1, 'https://ror.org/0276e1563 South Dakota Department of Social Services'),
(8248, 'https://ror.org/03exvmb50', 'no_lang_code', 1, 'https://ror.org/03exvmb50 Neocera (United States)'),
(8249, 'https://ror.org/052crws06', 'en', 1, 'https://ror.org/052crws06 Vocational Instruction Project Community Services'),
(8250, 'https://ror.org/03be17v50', 'en', 1, 'https://ror.org/03be17v50 Southern California Alcohol and Drug Programs'),
(8251, 'https://ror.org/0431mgz06', 'en', 1, 'https://ror.org/0431mgz06 Southern California Institute for Research and Education'),
(8252, 'https://ror.org/001040h60', 'en', 1, 'https://ror.org/001040h60 American Indian Center'),
(8253, 'https://ror.org/0272c7580', 'no_lang_code', 1, 'https://ror.org/0272c7580 NeoClone (United States)'),
(8254, 'https://ror.org/019bpax96', 'en', 1, 'https://ror.org/019bpax96 Southern Governors Association'),
(8255, 'https://ror.org/036svm011', 'en', 1, 'https://ror.org/036svm011 Southern Nevada Health District'),
(8256, 'https://ror.org/002298757', 'no_lang_code', 1, 'https://ror.org/002298757 Allozyne (United States)'),
(8257, 'https://ror.org/03ptehc98', 'en', 1, 'https://ror.org/03ptehc98 Southern Regional Area Health Education Centers'),
(8258, 'https://ror.org/01hwxey28', 'en', 1, 'https://ror.org/01hwxey28 Volunteers of America Los Angeles'),
(8259, 'https://ror.org/02996zz79', 'en', 1, 'https://ror.org/02996zz79 Voorhees College'),
(8260, 'https://ror.org/03w5zay18', 'no_lang_code', 1, 'https://ror.org/03w5zay18 Vortant Technologies (United States)'),
(8261, 'https://ror.org/0428qnk54', 'no_lang_code', 1, 'https://ror.org/0428qnk54 W. L. Gore & Associates (United States)'),
(8262, 'https://ror.org/042dhbd43', 'en', 1, 'https://ror.org/042dhbd43 Southwestern College - California'),
(8263, 'https://ror.org/03v4j1n69', 'no_lang_code', 1, 'https://ror.org/03v4j1n69 WRc (United Kingdom)'),
(8264, 'https://ror.org/032b4kq73', 'no_lang_code', 1, 'https://ror.org/032b4kq73 SoyMeds (United States)'),
(8265, 'https://ror.org/00j1e7h38', 'en', 1, 'https://ror.org/00j1e7h38 W. Alton Jones Cell Science Center'),
(8266, 'https://ror.org/02yqf2n67', 'en', 1, 'https://ror.org/02yqf2n67 American Indian Higher Education Consortium'),
(8267, 'https://ror.org/01cegnf65', 'en', 1, 'https://ror.org/01cegnf65 American Indian Science and Engineering Society'),
(8268, 'https://ror.org/04cxn3n47', 'en', 1, 'https://ror.org/04cxn3n47 American Institute of Architects'),
(8269, 'https://ror.org/04d7p4z08', 'no_lang_code', 1, 'https://ror.org/04d7p4z08 Odyssey Trust'),
(8270, 'https://ror.org/01p4ajf23', 'no_lang_code', 1, 'https://ror.org/01p4ajf23 ANDE (United States)'),
(8271, 'https://ror.org/01ygdkx97', 'no_lang_code', 1, 'https://ror.org/01ygdkx97 American Life Science Pharmaceuticals (United States)'),
(8272, 'https://ror.org/01ask7p77', 'no_lang_code', 1, 'https://ror.org/01ask7p77 Sparos (Portugal)'),
(8273, 'https://ror.org/037bj9005', 'no_lang_code', 1, 'https://ror.org/037bj9005 Global Convergence (United States)'),
(8274, 'https://ror.org/01p3rh655', 'en', 1, 'https://ror.org/01p3rh655 American Lung Association'),
(8275, 'https://ror.org/03bvq6y88', 'en', 1, 'https://ror.org/03bvq6y88 Wagner College'),
(8276, 'https://ror.org/05mhde728', 'no_lang_code', 1, 'https://ror.org/05mhde728 John Lewis Partnership (United Kingdom)'),
(8277, 'https://ror.org/03c69q147', 'en', 1, 'https://ror.org/03c69q147 Wake Technical Community College'),
(8278, 'https://ror.org/01ez8ve21', 'en', 1, 'https://ror.org/01ez8ve21 Special Health Resources for Texas'),
(8279, 'https://ror.org/04cxbp585', 'en', 1, 'https://ror.org/04cxbp585 Special Service for Groups'),
(8280, 'https://ror.org/0514swh36', 'en', 1, 'https://ror.org/0514swh36 HealthRIGHT 360'),
(8281, 'https://ror.org/03zpeyw73', 'en', 1, 'https://ror.org/03zpeyw73 The Society for Post-Acute and Long-Term Care Medicine'),
(8282, 'https://ror.org/05cx8ry19', 'no_lang_code', 1, 'https://ror.org/05cx8ry19 Neural Signals (United States)'),
(8283, 'https://ror.org/02bt45m31', 'en', 1, 'https://ror.org/02bt45m31 American Medical Informatics Association'),
(8284, 'https://ror.org/002573656', 'no_lang_code', 1, 'https://ror.org/002573656 NeurAxon (Canada)'),
(8285, 'https://ror.org/03wbjv906', 'en', 1, 'https://ror.org/03wbjv906 Southwest Tennessee Community College'),
(8286, 'https://ror.org/008ghcb80', 'en', 1, 'https://ror.org/008ghcb80 American Nurses Association'),
(8287, 'https://ror.org/049c4fz76', 'no_lang_code', 1, 'https://ror.org/049c4fz76 Spectrasonics (United States)'),
(8288, 'https://ror.org/03535yg39', 'en', 1, 'https://ror.org/03535yg39 American Occupational Therapy Association'),
(8289, 'https://ror.org/03ahxgm89', 'no_lang_code', 1, 'https://ror.org/03ahxgm89 Sommer Materials Research (United States)'),
(8290, 'https://ror.org/04n7k1343', 'en', 1, 'https://ror.org/04n7k1343 American Pain Society'),
(8291, 'https://ror.org/006gebr77', 'no_lang_code', 1, 'https://ror.org/006gebr77 Toxikon (United States)'),
(8292, 'https://ror.org/0141vav06', 'en', 1, 'https://ror.org/0141vav06 WAMC Northeast Public Radio'),
(8293, 'https://ror.org/02exxw634', 'en', 1, 'https://ror.org/02exxw634 Wartburg College'),
(8294, 'https://ror.org/002cajb45', 'no_lang_code', 1, 'https://ror.org/002cajb45 Carterra (United States)'),
(8295, 'https://ror.org/05vfrxy92', 'en', 1, 'https://ror.org/05vfrxy92 American Rock Mechanics Association'),
(8296, 'https://ror.org/019y5r485', 'no_lang_code', 1, 'https://ror.org/019y5r485 Nesher Technologies (United States)'),
(8297, 'https://ror.org/04z7ybt59', 'no_lang_code', 1, 'https://ror.org/04z7ybt59 Spectros Corporation (United States)'),
(8298, 'https://ror.org/04ywgwn19', 'no_lang_code', 1, 'https://ror.org/04ywgwn19 Neurobehavioral Research (United States)'),
(8299, 'https://ror.org/03vtp2091', 'no_lang_code', 1, 'https://ror.org/03vtp2091 NeuroBioTex (United States)'),
(8300, 'https://ror.org/02h1dyg62', 'no_lang_code', 1, 'https://ror.org/02h1dyg62 Spencer Technologies (United States)'),
(8301, 'https://ror.org/00r2h0609', 'en', 1, 'https://ror.org/00r2h0609 Washington County Youth Service Bureau'),
(8302, 'https://ror.org/04h1pxn55', 'no_lang_code', 1, 'https://ror.org/04h1pxn55 TRUMPF (United Kingdom)'),
(8303, 'https://ror.org/043fzsj95', 'en', 1, 'https://ror.org/043fzsj95 Spring Hill College'),
(8304, 'https://ror.org/03r5ecg75', 'no_lang_code', 1, 'https://ror.org/03r5ecg75 Noble Life Sciences (United States)'),
(8305, 'https://ror.org/0088p5f80', 'no_lang_code', 1, 'https://ror.org/0088p5f80 NeuroDx Development (United States)'),
(8306, 'https://ror.org/04kc77756', 'en', 1, 'https://ror.org/04kc77756 St Louis Community College'),
(8307, 'https://ror.org/03e17k064', 'en', 1, 'https://ror.org/03e17k064 Saint Louis Science Center'),
(8308, 'https://ror.org/04e9z4a61', 'no_lang_code', 1, 'https://ror.org/04e9z4a61 Zynex (United States)'),
(8309, 'https://ror.org/01y2d1w05', 'en', 1, 'https://ror.org/01y2d1w05 St. Mary''s College of Maryland'),
(8310, 'https://ror.org/02ythcz79', 'en', 1, 'https://ror.org/02ythcz79 American Society for Cybernetics'),
(8311, 'https://ror.org/043ccws83', 'en', 1, 'https://ror.org/043ccws83 American Society for Neurochemistry'),
(8312, 'https://ror.org/00xhxz289', 'en', 1, 'https://ror.org/00xhxz289 American Society for Pharmacology and Experimental Therapeutics'),
(8313, 'https://ror.org/00nb5xj61', 'en', 1, 'https://ror.org/00nb5xj61 St. Andrews University'),
(8314, 'https://ror.org/04ag73z67', 'no_lang_code', 1, 'https://ror.org/04ag73z67 Waterloo CFD Engineering Consulting'),
(8315, 'https://ror.org/03qj07681', 'no_lang_code', 1, 'https://ror.org/03qj07681 Epirus Biopharmaceuticals (United States)'),
(8316, 'https://ror.org/048wd7x80', 'no_lang_code', 1, 'https://ror.org/048wd7x80 Waters (United Kingdom)'),
(8317, 'https://ror.org/050n5zj41', 'no_lang_code', 1, 'https://ror.org/050n5zj41 NeuroNexus (United States)'),
(8318, 'https://ror.org/0480rm766', 'no_lang_code', 1, 'https://ror.org/0480rm766 NeurOp (United States)'),
(8319, 'https://ror.org/03k3qs503', 'en', 1, 'https://ror.org/03k3qs503 American Society of Andrology'),
(8320, 'https://ror.org/02nw48b86', 'en', 1, 'https://ror.org/02nw48b86 American Society of Hematology'),
(8321, 'https://ror.org/00840a568', 'no_lang_code', 1, 'https://ror.org/00840a568 Watershed Associates'),
(8322, 'https://ror.org/04eq2dr50', 'en', 1, 'https://ror.org/04eq2dr50 American Society of Human Genetics'),
(8323, 'https://ror.org/03yx6z589', 'en', 1, 'https://ror.org/03yx6z589 American Society of International Law'),
(8324, 'https://ror.org/02cfj6k65', 'no_lang_code', 1, 'https://ror.org/02cfj6k65 Watershed'),
(8325, 'https://ror.org/05ydq5158', 'no_lang_code', 1, 'https://ror.org/05ydq5158 Spangle Associates'),
(8326, 'https://ror.org/01bjmbg26', 'en', 1, 'https://ror.org/01bjmbg26 Waterwise'),
(8327, 'https://ror.org/04ch35a22', 'en', 1, 'https://ror.org/04ch35a22 American Society for Nutrition'),
(8328, 'https://ror.org/00ht01r58', 'no_lang_code', 1, 'https://ror.org/00ht01r58 Wave 80 Biosciences (United States)'),
(8329, 'https://ror.org/00yt6w794', 'no_lang_code', 1, 'https://ror.org/00yt6w794 Sierra Nevada Corporation (United States)'),
(8330, 'https://ror.org/0460vf117', 'en', 1, 'https://ror.org/0460vf117 Neurosciences Institute'),
(8331, 'https://ror.org/03kdkbm65', 'en', 1, 'https://ror.org/03kdkbm65 American Society for Parenteral and Enteral Nutrition'),
(8332, 'https://ror.org/007app753', 'no_lang_code', 1, 'https://ror.org/007app753 Neuroscript (United States)'),
(8333, 'https://ror.org/04qz8gp36', 'no_lang_code', 1, 'https://ror.org/04qz8gp36 Split Engineering (United States)'),
(8334, 'https://ror.org/04zpfy292', 'no_lang_code', 1, 'https://ror.org/04zpfy292 Neurotronics (United States)'),
(8335, 'https://ror.org/04xq28y48', 'no_lang_code', 1, 'https://ror.org/04xq28y48 NeuroWave Systems (United States)'),
(8336, 'https://ror.org/00sn0hb87', 'no_lang_code', 1, 'https://ror.org/00sn0hb87 Wavetrend (United Kingdom)'),
(8337, 'https://ror.org/0488w7k92', 'no_lang_code', 1, 'https://ror.org/0488w7k92 Targazyme (United States)'),
(8338, 'https://ror.org/05kvs8e70', 'no_lang_code', 1, 'https://ror.org/05kvs8e70 Sunnyside Sea Farms (United States)'),
(8339, 'https://ror.org/02hk0xz87', 'no_lang_code', 1, 'https://ror.org/02hk0xz87 American Superconductor (United States)'),
(8340, 'https://ror.org/0547sz392', 'en', 1, 'https://ror.org/0547sz392 American Thoracic Society'),
(8341, 'https://ror.org/009gw7733', 'en', 1, 'https://ror.org/009gw7733 National Renewable Energy Centre'),
(8342, 'https://ror.org/02f29yc36', 'en', 1, 'https://ror.org/02f29yc36 Webb Institute'),
(8343, 'https://ror.org/003jtsa97', 'en', 1, 'https://ror.org/003jtsa97 St. Joseph''s Hospital'),
(8344, 'https://ror.org/027g3rh44', 'en', 1, 'https://ror.org/027g3rh44 New Economics Foundation'),
(8345, 'https://ror.org/03s4hbs71', 'en', 1, 'https://ror.org/03s4hbs71 New England Board of Higher Education'),
(8346, 'https://ror.org/04srtdn04', 'no_lang_code', 1, 'https://ror.org/04srtdn04 Weidlinger Associates (United States)'),
(8347, 'https://ror.org/05450eg98', 'en', 1, 'https://ror.org/05450eg98 Alamo Colleges'),
(8348, 'https://ror.org/036qcfm37', 'en', 1, 'https://ror.org/036qcfm37 Academy for Science and Design'),
(8349, 'https://ror.org/01rhc0n38', 'en', 1, 'https://ror.org/01rhc0n38 New Hampshire Hospital'),
(8350, 'https://ror.org/04wfdx194', 'en', 1, 'https://ror.org/04wfdx194 Standing to Achieve New Directions'),
(8351, 'https://ror.org/059nz2x67', 'en', 1, 'https://ror.org/059nz2x67 New Jersey Department of Human Services'),
(8352, 'https://ror.org/03shg3b96', 'en', 1, 'https://ror.org/03shg3b96 Stanley Street Treatment and Resources'),
(8353, 'https://ror.org/03kh4zk18', 'no_lang_code', 1, 'https://ror.org/03kh4zk18 Weinberg Medical Physics (United States)'),
(8354, 'https://ror.org/05q9ht188', 'en', 1, 'https://ror.org/05q9ht188 Stark State College'),
(8355, 'https://ror.org/009n4a626', 'no_lang_code', 1, 'https://ror.org/009n4a626 StataCorp (United States)'),
(8356, 'https://ror.org/03ke74b46', 'no_lang_code', 1, 'https://ror.org/03ke74b46 Welichem Biotech (Canada)'),
(8357, 'https://ror.org/01qnpp968', 'en', 1, 'https://ror.org/01qnpp968 New Mexico Consortium'),
(8358, 'https://ror.org/04s1s3432', 'en', 1, 'https://ror.org/04s1s3432 Nevada Division of Public and Behavioral Health'),
(8359, 'https://ror.org/01vsg6m68', 'en', 1, 'https://ror.org/01vsg6m68 State Science and Technology Institute'),
(8360, 'https://ror.org/05jjfxd82', 'en', 1, 'https://ror.org/05jjfxd82 New Mexico Museum of Natural History Foundation'),
(8361, 'https://ror.org/00w9zab79', 'en', 1, 'https://ror.org/00w9zab79 New Mexico Resonance'),
(8362, 'https://ror.org/023fm1q80', 'no_lang_code', 1, 'https://ror.org/023fm1q80 ON Semiconductor (Canada)'),
(8363, 'https://ror.org/05cvz6v56', 'no_lang_code', 1, 'https://ror.org/05cvz6v56 StemCells (United States)'),
(8364, 'https://ror.org/02vgfg208', 'en', 1, 'https://ror.org/02vgfg208 New Mexico Department of Human Services'),
(8365, 'https://ror.org/03cfgct89', 'en', 1, 'https://ror.org/03cfgct89 Women in Engineering ProActive Network'),
(8366, 'https://ror.org/0392txn84', 'no_lang_code', 1, 'https://ror.org/0392txn84 Stemmatters (Portugal)'),
(8367, 'https://ror.org/03hp60511', 'en', 1, 'https://ror.org/03hp60511 New North Citizens Council'),
(8368, 'https://ror.org/04txpk391', 'no_lang_code', 1, 'https://ror.org/04txpk391 Superconducting Systems (United States)'),
(8369, 'https://ror.org/05d7pr418', 'en', 1, 'https://ror.org/05d7pr418 Wesleyan College'),
(8370, 'https://ror.org/058eyth26', 'no_lang_code', 1, 'https://ror.org/058eyth26 Vemco (Canada)'),
(8371, 'https://ror.org/022fswr88', 'no_lang_code', 1, 'https://ror.org/022fswr88 New Span Opto-Technology (United States)'),
(8372, 'https://ror.org/03snky177', 'en', 1, 'https://ror.org/03snky177 New Victoria Theatre'),
(8373, 'https://ror.org/016pn2j58', 'en', 1, 'https://ror.org/016pn2j58 Amity Foundation'),
(8374, 'https://ror.org/045rtab03', 'no_lang_code', 1, 'https://ror.org/045rtab03 Amorfix (Canada)'),
(8375, 'https://ror.org/00nh64737', 'no_lang_code', 1, 'https://ror.org/00nh64737 PCAS (Canada)'),
(8376, 'https://ror.org/00p2bvc56', 'no_lang_code', 1, 'https://ror.org/00p2bvc56 Amphora NDT (United Kingdom)'),
(8377, 'https://ror.org/00j631389', 'en', 1, 'https://ror.org/00j631389 New World Laboratories'),
(8378, 'https://ror.org/01wx3gr42', 'en', 1, 'https://ror.org/01wx3gr42 Departamento de Educación de la Ciudad de Nueva York Département de l''Éducation de la ville de new york New York City Department of Education'),
(8379, 'https://ror.org/00e812q49', 'no_lang_code', 1, 'https://ror.org/00e812q49 Springboard (Canada)'),
(8380, 'https://ror.org/05v7p8344', 'no_lang_code', 1, 'https://ror.org/05v7p8344 West Portal Software (United States)'),
(8381, 'https://ror.org/00dmrtm29', 'en', 1, 'https://ror.org/00dmrtm29 New York City Health and Hospitals Corporation'),
(8382, 'https://ror.org/02zhhtj16', 'en', 1, 'https://ror.org/02zhhtj16 West Virginia High Technology Consortium Foundation'),
(8383, 'https://ror.org/01s8dqw53', 'en', 1, 'https://ror.org/01s8dqw53 West Virginia School of Osteopathic Medicine'),
(8384, 'https://ror.org/01qcf5s69', 'no_lang_code', 1, 'https://ror.org/01qcf5s69 STMicroelectronics (Canada)'),
(8385, 'https://ror.org/0492sec70', 'en', 1, 'https://ror.org/0492sec70 Western Interstate Commission for Higher Education'),
(8386, 'https://ror.org/006gfkv11', 'no_lang_code', 1, 'https://ror.org/006gfkv11 Stoelting (United States)'),
(8387, 'https://ror.org/01f0wmg23', 'en', 1, 'https://ror.org/01f0wmg23 Stone Child College'),
(8388, 'https://ror.org/034y1g063', 'en', 1, 'https://ror.org/034y1g063 New York State Office of Alcoholism and Substance Abuse Services'),
(8389, 'https://ror.org/0024cyb77', 'no_lang_code', 1, 'https://ror.org/0024cyb77 Stottler Henke Associates (United States)'),
(8390, 'https://ror.org/037sxey58', 'no_lang_code', 1, 'https://ror.org/037sxey58 Amunix (United States)'),
(8391, 'https://ror.org/058pkw062', 'en', 1, 'https://ror.org/058pkw062 New York State Unified Court System'),
(8392, 'https://ror.org/00new7409', 'en', 1, 'https://ror.org/00new7409 New York Structural Biology Center'),
(8393, 'https://ror.org/02k7p6g32', 'no_lang_code', 1, 'https://ror.org/02k7p6g32 Analiza (United States)'),
(8394, 'https://ror.org/0577pn814', 'en', 1, 'https://ror.org/0577pn814 Newberry College'),
(8395, 'https://ror.org/00ftam505', 'en', 1, 'https://ror.org/00ftam505 Newcastle City Council'),
(8396, 'https://ror.org/02tryst02', 'no_lang_code', 1, 'https://ror.org/02tryst02 Agilent Technologies (United States)'),
(8397, 'https://ror.org/016tysf12', 'en', 1, 'https://ror.org/016tysf12 Western Technical College'),
(8398, 'https://ror.org/0517kdv58', 'no_lang_code', 1, 'https://ror.org/0517kdv58 Newton Labs (United States)'),
(8399, 'https://ror.org/02bawng60', 'no_lang_code', 1, 'https://ror.org/02bawng60 Novasentis (United States)'),
(8400, 'https://ror.org/04p8w0f39', 'no_lang_code', 1, 'https://ror.org/04p8w0f39 Westinghouse Electric (United States)'),
(8401, 'https://ror.org/03htten57', 'no_lang_code', 1, 'https://ror.org/03htten57 Westinghouse Electric (Sweden)'),
(8402, 'https://ror.org/05cnc7n16', 'no_lang_code', 1, 'https://ror.org/05cnc7n16 Newton Scientific Incorporation (United States)'),
(8403, 'https://ror.org/000z4wj31', 'en', 1, 'https://ror.org/000z4wj31 Center for Naval Analyses'),
(8404, 'https://ror.org/01j1cwt71', 'en', 1, 'https://ror.org/01j1cwt71 Westminster College - Pennsylvania'),
(8405, 'https://ror.org/000dhg681', 'no_lang_code', 1, 'https://ror.org/000dhg681 Stratonics (United States)'),
(8406, 'https://ror.org/04mvd3r15', 'no_lang_code', 1, 'https://ror.org/04mvd3r15 Stratus Aeronautics (Canada)'),
(8407, 'https://ror.org/05x546h56', 'no_lang_code', 1, 'https://ror.org/05x546h56 NexTech Materials (United States)'),
(8408, 'https://ror.org/05pkhhn92', 'en', 1, 'https://ror.org/05pkhhn92 New Hampshire Department of Health and Human Services'),
(8409, 'https://ror.org/04za2st18', 'en', 1, 'https://ror.org/04za2st18 National Health Service Scotland'),
(8410, 'https://ror.org/0420yf673', 'en', 1, 'https://ror.org/0420yf673 Whatcom Community College'),
(8411, 'https://ror.org/04bqdez48', 'no_lang_code', 1, 'https://ror.org/04bqdez48 Structured Materials Industries (United States)'),
(8412, 'https://ror.org/015h4rf69', 'en', 1, 'https://ror.org/015h4rf69 Niagara College'),
(8413, 'https://ror.org/05j0wr821', 'no_lang_code', 1, 'https://ror.org/05j0wr821 Oxford Instruments (Canada)'),
(8414, 'https://ror.org/00mnwwq78', 'en', 1, 'https://ror.org/00mnwwq78 Wheelock College'),
(8415, 'https://ror.org/020mdmp08', 'en', 1, 'https://ror.org/020mdmp08 Student Assistance Services'),
(8416, 'https://ror.org/013hwwd10', 'no_lang_code', 1, 'https://ror.org/013hwwd10 Surgical Specialties (Canada)'),
(8417, 'https://ror.org/05hqmfv86', 'en', 1, 'https://ror.org/05hqmfv86 Student Pugwash USA'),
(8418, 'https://ror.org/03zsmr311', 'no_lang_code', 1, 'https://ror.org/03zsmr311 White Design (United Kingdom)'),
(8419, 'https://ror.org/044t9d979', 'en', 1, 'https://ror.org/044t9d979 Substance Abuse Foundation'),
(8420, 'https://ror.org/021sagw45', 'no_lang_code', 1, 'https://ror.org/021sagw45 Nicolet Chartrand Knoll (Canada)'),
(8421, 'https://ror.org/03ts76x74', 'en', 1, 'https://ror.org/03ts76x74 White Mountains Community College'),
(8422, 'https://ror.org/01xgjqy82', 'no_lang_code', 1, 'https://ror.org/01xgjqy82 Nicoya Lifesciences (Canada)'),
(8423, 'https://ror.org/03yfgnq74', 'no_lang_code', 1, 'https://ror.org/03yfgnq74 Summit (United Kingdom)'),
(8424, 'https://ror.org/01ta8cw69', 'no_lang_code', 1, 'https://ror.org/01ta8cw69 White Point Systems (United States)'),
(8425, 'https://ror.org/042j06y04', 'no_lang_code', 1, 'https://ror.org/042j06y04 Nikon (United Kingdom)'),
(8426, 'https://ror.org/04z664d45', 'en', 1, 'https://ror.org/04z664d45 Collège whittier Whittier College'),
(8427, 'https://ror.org/0113kt106', 'en', 1, 'https://ror.org/0113kt106 Nine Circles Community Health Centre'),
(8428, 'https://ror.org/04mq9p732', 'en', 1, 'https://ror.org/04mq9p732 Wholistic Stress Control Institute'),
(8429, 'https://ror.org/01m30h796', 'no_lang_code', 1, 'https://ror.org/01m30h796 Sun Innovations (United States)'),
(8430, 'https://ror.org/021n8sy59', 'no_lang_code', 1, 'https://ror.org/021n8sy59 National Integrated Solutions (United Kingdom)'),
(8431, 'https://ror.org/0378g3743', 'en', 1, 'https://ror.org/0378g3743 Animal and Plant Health Agency'),
(8432, 'https://ror.org/04x5cyt12', 'no_lang_code', 1, 'https://ror.org/04x5cyt12 Sunny BioDiscovery (United States)'),
(8433, 'https://ror.org/02mhf1b49', 'en', 1, 'https://ror.org/02mhf1b49 Wiley College'),
(8434, 'https://ror.org/02x6y0g48', 'en', 1, 'https://ror.org/02x6y0g48 Ann Becker and Associates'),
(8435, 'https://ror.org/037kgpk38', 'en', 1, 'https://ror.org/037kgpk38 William Jewell College'),
(8436, 'https://ror.org/010thz337', 'en', 1, 'https://ror.org/010thz337 Farmingdale State College'),
(8437, 'https://ror.org/03j45zm42', 'no_lang_code', 1, 'https://ror.org/03j45zm42 Nitek (United States)'),
(8438, 'https://ror.org/054xfn086', 'no_lang_code', 1, 'https://ror.org/054xfn086 Supercon (United States)'),
(8439, 'https://ror.org/04b1gft39', 'en', 1, 'https://ror.org/04b1gft39 Collège harper Harper College'),
(8440, 'https://ror.org/05e4dfg87', 'no_lang_code', 1, 'https://ror.org/05e4dfg87 Skyre (United States)'),
(8441, 'https://ror.org/00dsap877', 'en', 1, 'https://ror.org/00dsap877 Sustrans'),
(8442, 'https://ror.org/028chtg69', 'no_lang_code', 1, 'https://ror.org/028chtg69 SVT Associates (United States)'),
(8443, 'https://ror.org/026365h19', 'no_lang_code', 1, 'https://ror.org/026365h19 Anvik Corporation (United States)'),
(8444, 'https://ror.org/02rgsw982', 'no_lang_code', 1, 'https://ror.org/02rgsw982 Apath (United States)'),
(8445, 'https://ror.org/029p1pm63', 'en', 1, 'https://ror.org/029p1pm63 Williams LifeSkills'),
(8446, 'https://ror.org/04yqxq902', 'no_lang_code', 1, 'https://ror.org/04yqxq902 APD Life Sciences (United States)'),
(8447, 'https://ror.org/00zpq6q43', 'no_lang_code', 1, 'https://ror.org/00zpq6q43 SWITCH Materials (Canada)'),
(8448, 'https://ror.org/03nqny130', 'no_lang_code', 1, 'https://ror.org/03nqny130 Willis Towers Watson (United Kingdom)'),
(8449, 'https://ror.org/047tyac06', 'no_lang_code', 1, 'https://ror.org/047tyac06 Wilson Energy (United Kingdom)'),
(8450, 'https://ror.org/010eax918', 'no_lang_code', 1, 'https://ror.org/010eax918 Syandus (United States)'),
(8451, 'https://ror.org/001fvka94', 'no_lang_code', 1, 'https://ror.org/001fvka94 Wilson Wolf Manufacturing (United States)'),
(8452, 'https://ror.org/0310bxj37', 'no_lang_code', 1, 'https://ror.org/0310bxj37 Synageva BioPharma (United States)'),
(8453, 'https://ror.org/00w0s7f65', 'no_lang_code', 1, 'https://ror.org/00w0s7f65 Apex Biomedical (United States)'),
(8454, 'https://ror.org/02s3g3z50', 'no_lang_code', 1, 'https://ror.org/02s3g3z50 Nokia (Portugal)'),
(8455, 'https://ror.org/01jq6tw89', 'no_lang_code', 1, 'https://ror.org/01jq6tw89 Argonon (United Kingdom)'),
(8456, 'https://ror.org/04rqx2b83', 'no_lang_code', 1, 'https://ror.org/04rqx2b83 Apogee Biotechnology (United States)'),
(8457, 'https://ror.org/02vpkdk18', 'no_lang_code', 1, 'https://ror.org/02vpkdk18 Synergy Enterprises (United States)'),
(8458, 'https://ror.org/01yrmxe32', 'no_lang_code', 1, 'https://ror.org/01yrmxe32 NORAM (Canada)'),
(8459, 'https://ror.org/00g0avy67', 'no_lang_code', 1, 'https://ror.org/00g0avy67 WinProbe (United States)'),
(8460, 'https://ror.org/05bnyxr41', 'no_lang_code', 1, 'https://ror.org/05bnyxr41 Norbord (Canada)'),
(8461, 'https://ror.org/038wghp07', 'no_lang_code', 1, 'https://ror.org/038wghp07 Norgen Biotek Corporation (Canada)'),
(8462, 'https://ror.org/05b58tt16', 'en', 1, 'https://ror.org/05b58tt16 Normandale Community College'),
(8463, 'https://ror.org/01gp1hk26', 'en', 1, 'https://ror.org/01gp1hk26 North American Association of Central Cancer Registries'),
(8464, 'https://ror.org/03ehegt04', 'en', 1, 'https://ror.org/03ehegt04 Wisconsin Department of Agriculture Trade and Consumer Protection'),
(8465, 'https://ror.org/045r85r62', 'no_lang_code', 1, 'https://ror.org/045r85r62 Symbiotech (United States)'),
(8466, 'https://ror.org/05vj5p117', 'no_lang_code', 1, 'https://ror.org/05vj5p117 Synkera Technologies (United States)'),
(8467, 'https://ror.org/013by2m91', 'no_lang_code', 1, 'https://ror.org/013by2m91 Synopsys (United States)'),
(8468, 'https://ror.org/036x6dk73', 'en', 1, 'https://ror.org/036x6dk73 North American Primary Care Research Group'),
(8469, 'https://ror.org/01xh2bb57', 'no_lang_code', 1, 'https://ror.org/01xh2bb57 WisdomTools (United States)'),
(8470, 'https://ror.org/044pzyk69', 'en', 1, 'https://ror.org/044pzyk69 North American Vascular Biology Organization'),
(8471, 'https://ror.org/05r6rhh75', 'no_lang_code', 1, 'https://ror.org/05r6rhh75 Synthasome (United States)'),
(8472, 'https://ror.org/01fbp1n03', 'no_lang_code', 1, 'https://ror.org/01fbp1n03 Synthecon (United States)'),
(8473, 'https://ror.org/04mge0977', 'no_lang_code', 1, 'https://ror.org/04mge0977 Syntrix Biosystems (United States)'),
(8474, 'https://ror.org/010vbnw08', 'no_lang_code', 1, 'https://ror.org/010vbnw08 Apotex Pharmachem (Canada)'),
(8475, 'https://ror.org/04t610980', 'en', 1, 'https://ror.org/04t610980 Appalachian College Association'),
(8476, 'https://ror.org/02sgk9b41', 'no_lang_code', 1, 'https://ror.org/02sgk9b41 SynZyme Technologies (United States)'),
(8477, 'https://ror.org/0290kkw06', 'no_lang_code', 1, 'https://ror.org/0290kkw06 Applied Behavioral Research (United States)'),
(8478, 'https://ror.org/03q73zg62', 'no_lang_code', 1, 'https://ror.org/03q73zg62 Cirrus Logic (United Kingdom)'),
(8479, 'https://ror.org/014tted12', 'no_lang_code', 1, 'https://ror.org/014tted12 Systems Control (United States)'),
(8480, 'https://ror.org/04cv8g472', 'no_lang_code', 1, 'https://ror.org/04cv8g472 Systems Technology (United States)'),
(8481, 'https://ror.org/02z8v3172', 'no_lang_code', 1, 'https://ror.org/02z8v3172 Systex (United States)'),
(8482, 'https://ror.org/03n87wv50', 'no_lang_code', 1, 'https://ror.org/03n87wv50 Applied BioPhysics (United States)'),
(8483, 'https://ror.org/03qkhyr66', 'no_lang_code', 1, 'https://ror.org/03qkhyr66 Novozymes (United States)'),
(8484, 'https://ror.org/03tgpkr96', 'no_lang_code', 1, 'https://ror.org/03tgpkr96 Tactus Technology (United States)'),
(8485, 'https://ror.org/00g3gq507', 'no_lang_code', 1, 'https://ror.org/00g3gq507 Taiga Biotechnologies (United States)'),
(8486, 'https://ror.org/04awqpv94', 'no_lang_code', 1, 'https://ror.org/04awqpv94 Talking Lights (United States)'),
(8487, 'https://ror.org/01dswgm35', 'en', 1, 'https://ror.org/01dswgm35 Talladega College'),
(8488, 'https://ror.org/042sjqp29', 'en', 1, 'https://ror.org/042sjqp29 Tanana Chiefs Conference'),
(8489, 'https://ror.org/059zrjt20', 'no_lang_code', 1, 'https://ror.org/059zrjt20 TandemLaunch (Canada)'),
(8490, 'https://ror.org/00frfm169', 'no_lang_code', 1, 'https://ror.org/00frfm169 Woomera Therapeutics'),
(8491, 'https://ror.org/00mmdnd52', 'en', 1, 'https://ror.org/00mmdnd52 Applied Computer Security Associates'),
(8492, 'https://ror.org/04rw71s91', 'en', 1, 'https://ror.org/04rw71s91 North Carolina State Education Assistance Authority'),
(8493, 'https://ror.org/03g75kz98', 'no_lang_code', 1, 'https://ror.org/03g75kz98 PricewaterhouseCoopers (United States)'),
(8494, 'https://ror.org/038jzvs45', 'en', 1, 'https://ror.org/038jzvs45 Psychiatric Foundation of North Carolina'),
(8495, 'https://ror.org/02zm13s10', 'en', 1, 'https://ror.org/02zm13s10 Applied Genetics Laboratories'),
(8496, 'https://ror.org/04vwk8m55', 'no_lang_code', 1, 'https://ror.org/04vwk8m55 Ansun BioPharma (United States)'),
(8497, 'https://ror.org/02segr176', 'no_lang_code', 1, 'https://ror.org/02segr176 Applied Human Factors (United States)'),
(8498, 'https://ror.org/01nqc4p29', 'no_lang_code', 1, 'https://ror.org/01nqc4p29 Workplace Technologies Research'),
(8499, 'https://ror.org/0230sdc57', 'no_lang_code', 1, 'https://ror.org/0230sdc57 Tanner Research (United States)'),
(8500, 'https://ror.org/04vpnmr86', 'no_lang_code', 1, 'https://ror.org/04vpnmr86 Applied Research Associates (United States)'),
(8501, 'https://ror.org/05q3e5911', 'no_lang_code', 1, 'https://ror.org/05q3e5911 Tantalus Systems (Canada)'),
(8502, 'https://ror.org/04mmd4777', 'en', 1, 'https://ror.org/04mmd4777 Museum of Life and Science'),
(8503, 'https://ror.org/051de0s21', 'no_lang_code', 1, 'https://ror.org/051de0s21 Sartorius (United Kingdom)'),
(8504, 'https://ror.org/02z9mtw38', 'en', 1, 'https://ror.org/02z9mtw38 Tapestry Health'),
(8505, 'https://ror.org/00hnd8b56', 'no_lang_code', 1, 'https://ror.org/00hnd8b56 Applied Research Corporation (United States)'),
(8506, 'https://ror.org/0570hc946', 'no_lang_code', 1, 'https://ror.org/0570hc946 Targeson (United States)'),
(8507, 'https://ror.org/04zd6dy90', 'no_lang_code', 1, 'https://ror.org/04zd6dy90 Applied Sciences (United States)'),
(8508, 'https://ror.org/02ehan050', 'en', 1, 'https://ror.org/02ehan050 North Central College'),
(8509, 'https://ror.org/015by2x28', 'en', 1, 'https://ror.org/015by2x28 North Dakota State College of Science'),
(8510, 'https://ror.org/0583ded52', 'en', 1, 'https://ror.org/0583ded52 North Dakota Department of Human Services'),
(8511, 'https://ror.org/03st5df34', 'no_lang_code', 1, 'https://ror.org/03st5df34 World Precision Instruments (United States)'),
(8512, 'https://ror.org/0285qgt37', 'no_lang_code', 1, 'https://ror.org/0285qgt37 Applied System Technologies (United States)'),
(8513, 'https://ror.org/04v04aa35', 'en', 1, 'https://ror.org/04v04aa35 Tarrant County College'),
(8514, 'https://ror.org/04km0f390', 'no_lang_code', 1, 'https://ror.org/04km0f390 North East of England Process Industry Cluster (United Kingdom)'),
(8515, 'https://ror.org/01rww7j93', 'en', 1, 'https://ror.org/01rww7j93 Tarzana Treatment Centers'),
(8516, 'https://ror.org/02mnkv161', 'no_lang_code', 1, 'https://ror.org/02mnkv161 Applied Thin Films (United States)'),
(8517, 'https://ror.org/01b09k795', 'en', 1, 'https://ror.org/01b09k795 APT Foundation'),
(8518, 'https://ror.org/03g7j7v29', 'no_lang_code', 1, 'https://ror.org/03g7j7v29 Tascon Industries (United States)'),
(8519, 'https://ror.org/04cj8wf50', 'no_lang_code', 1, 'https://ror.org/04cj8wf50 APT Therapeutics (United States)'),
(8520, 'https://ror.org/050t0wk48', 'no_lang_code', 1, 'https://ror.org/050t0wk48 Tasktop Technologies (Canada)'),
(8521, 'https://ror.org/04hk9tp23', 'no_lang_code', 1, 'https://ror.org/04hk9tp23 AquaTerra (United Kingdom)'),
(8522, 'https://ror.org/02qsnn284', 'en', 1, 'https://ror.org/02qsnn284 North Jersey Community Research Initiative'),
(8523, 'https://ror.org/02rxq9s71', 'no_lang_code', 1, 'https://ror.org/02rxq9s71 Wright Materials Research (United States)'),
(8524, 'https://ror.org/01h0h7640', 'no_lang_code', 1, 'https://ror.org/01h0h7640 Tata Motors (United Kingdom)'),
(8525, 'https://ror.org/04vcx5150', 'no_lang_code', 1, 'https://ror.org/04vcx5150 Applied Energetics (United States)'),
(8526, 'https://ror.org/0494xx745', 'no_lang_code', 1, 'https://ror.org/0494xx745 wTe Corporation (United States)'),
(8527, 'https://ror.org/0506jb942', 'no_lang_code', 1, 'https://ror.org/0506jb942 Cardno (United States)'),
(8528, 'https://ror.org/02c27v641', 'en', 1, 'https://ror.org/02c27v641 Northeastern Oklahoma A&M College'),
(8529, 'https://ror.org/05a33dk65', 'no_lang_code', 1, 'https://ror.org/05a33dk65 Aquilent (United States)'),
(8530, 'https://ror.org/000cxfw53', 'no_lang_code', 1, 'https://ror.org/000cxfw53 Aradigm (United States)'),
(8531, 'https://ror.org/0100fcb78', 'en', 1, 'https://ror.org/0100fcb78 Arapahoe Community College');
INSERT INTO `rors` VALUES
(8532, 'https://ror.org/04ygywa46', 'en', 1, 'https://ror.org/04ygywa46 Montana State University–Northern'),
(8533, 'https://ror.org/00e6gd695', 'en', 1, 'https://ror.org/00e6gd695 Arapahoe House'),
(8534, 'https://ror.org/02fjffw59', 'no_lang_code', 1, 'https://ror.org/02fjffw59 X-ray Instrumentation Associates (United States)'),
(8535, 'https://ror.org/050f37r96', 'no_lang_code', 1, 'https://ror.org/050f37r96 Arbor Vita (United States)'),
(8536, 'https://ror.org/02mxbtp76', 'no_lang_code', 1, 'https://ror.org/02mxbtp76 Xemed (United States)'),
(8537, 'https://ror.org/01hw8xc07', 'en', 1, 'https://ror.org/01hw8xc07 Northern Illinois Council on Alcohol and Substance Abuse'),
(8538, 'https://ror.org/00d3vm134', 'en', 1, 'https://ror.org/00d3vm134 Archaeology Southwest'),
(8539, 'https://ror.org/01e94xy17', 'en', 1, 'https://ror.org/01e94xy17 Northern New Mexico College'),
(8540, 'https://ror.org/00shs7b79', 'en', 1, 'https://ror.org/00shs7b79 Northern Ohio Recovery Association'),
(8541, 'https://ror.org/044gv5910', 'en', 1, 'https://ror.org/044gv5910 Institute of Statistical Science, Academia Sinica 中央研究院 統計科學研究所'),
(8542, 'https://ror.org/05q5em355', 'no_lang_code', 1, 'https://ror.org/05q5em355 Morpho (United States)'),
(8543, 'https://ror.org/04wzh0d51', 'en', 1, 'https://ror.org/04wzh0d51 Northern Virginia Community College'),
(8544, 'https://ror.org/01hmaf534', 'en', 1, 'https://ror.org/01hmaf534 Northland College'),
(8545, 'https://ror.org/03dbjaj38', 'no_lang_code', 1, 'https://ror.org/03dbjaj38 ArchieMD (United States)'),
(8546, 'https://ror.org/043es1b40', 'en', 1, 'https://ror.org/043es1b40 Technological Assistance Institute for Intellectual Disability'),
(8547, 'https://ror.org/009rbsv73', 'en', 1, 'https://ror.org/009rbsv73 The Tech Interactive'),
(8548, 'https://ror.org/04sj2m437', 'no_lang_code', 1, 'https://ror.org/04sj2m437 TechEn (United States)'),
(8549, 'https://ror.org/05yavwk90', 'en', 1, 'https://ror.org/05yavwk90 Northwest College'),
(8550, 'https://ror.org/04jwhvn72', 'no_lang_code', 1, 'https://ror.org/04jwhvn72 TechLab (United States)'),
(8551, 'https://ror.org/002m5c441', 'no_lang_code', 1, 'https://ror.org/002m5c441 Xention (United Kingdom)'),
(8552, 'https://ror.org/02c235t25', 'en', 1, 'https://ror.org/02c235t25 Northwest Indian College'),
(8553, 'https://ror.org/01yxvb356', 'no_lang_code', 1, 'https://ror.org/01yxvb356 Anacomp (United States)'),
(8554, 'https://ror.org/036bdjm06', 'en', 1, 'https://ror.org/036bdjm06 Techniquest'),
(8555, 'https://ror.org/04ywn3c84', 'no_lang_code', 1, 'https://ror.org/04ywn3c84 James Cropper (United Kingdom)'),
(8556, 'https://ror.org/012fsht65', 'no_lang_code', 1, 'https://ror.org/012fsht65 Architecture Technology Corporation (United States)'),
(8557, 'https://ror.org/00s7dq077', 'en', 1, 'https://ror.org/00s7dq077 Arctic Research Consortium of the United States'),
(8558, 'https://ror.org/02wmjtd85', 'en', 1, 'https://ror.org/02wmjtd85 Notre Dame College'),
(8559, 'https://ror.org/05xpxan20', 'no_lang_code', 1, 'https://ror.org/05xpxan20 TechniScan (United States)'),
(8560, 'https://ror.org/01wfk7k95', 'en', 1, 'https://ror.org/01wfk7k95 Area Cooperative Education Services'),
(8561, 'https://ror.org/0173xeq43', 'en', 1, 'https://ror.org/0173xeq43 Nottingham City Council'),
(8562, 'https://ror.org/00a1a0x11', 'no_lang_code', 1, 'https://ror.org/00a1a0x11 Area Detector Systems Corporation (United States)'),
(8563, 'https://ror.org/0134j7f28', 'no_lang_code', 1, 'https://ror.org/0134j7f28 Orolia (United States)'),
(8564, 'https://ror.org/01z850041', 'no_lang_code', 1, 'https://ror.org/01z850041 Technology Assessment and Transfer (United States)'),
(8565, 'https://ror.org/01qe4kz15', 'no_lang_code', 1, 'https://ror.org/01qe4kz15 Goldwind (China)'),
(8566, 'https://ror.org/050kc8e49', 'no_lang_code', 1, 'https://ror.org/050kc8e49 Technology International Incorporated of Virginia (United States)'),
(8567, 'https://ror.org/02xst6m67', 'no_lang_code', 1, 'https://ror.org/02xst6m67 XL Sci-Tech (United States)'),
(8568, 'https://ror.org/00qxhe741', 'no_lang_code', 1, 'https://ror.org/00qxhe741 Techshot (United States)'),
(8569, 'https://ror.org/03s7rt838', 'no_lang_code', 1, 'https://ror.org/03s7rt838 Nottingham Scientific (United Kingdom)'),
(8570, 'https://ror.org/04y4k8j69', 'no_lang_code', 1, 'https://ror.org/04y4k8j69 Xoran Technologies (United States)'),
(8571, 'https://ror.org/01d2yj180', 'no_lang_code', 1, 'https://ror.org/01d2yj180 Technology For Magnetic Resonance (United States)'),
(8572, 'https://ror.org/05hb2h012', 'no_lang_code', 1, 'https://ror.org/05hb2h012 Arietis (United States)'),
(8573, 'https://ror.org/029aeh759', 'no_lang_code', 1, 'https://ror.org/029aeh759 Kromek (United States)'),
(8574, 'https://ror.org/025zbvz40', 'en', 1, 'https://ror.org/025zbvz40 Arizona Academy of Science'),
(8575, 'https://ror.org/00wrset74', 'no_lang_code', 1, 'https://ror.org/00wrset74 Tejas Networks (India)'),
(8576, 'https://ror.org/00vcszp55', 'en', 1, 'https://ror.org/00vcszp55 Arizona Geological Survey'),
(8577, 'https://ror.org/01xk5xs43', 'no_lang_code', 1, 'https://ror.org/01xk5xs43 Carl Zeiss (United States)'),
(8578, 'https://ror.org/03yvcsz89', 'en', 1, 'https://ror.org/03yvcsz89 Arizona Department of Education'),
(8579, 'https://ror.org/003tra577', 'en', 1, 'https://ror.org/003tra577 Arizona Office of the Governor'),
(8580, 'https://ror.org/02xf69211', 'no_lang_code', 1, 'https://ror.org/02xf69211 XRSciences (United States)'),
(8581, 'https://ror.org/036wqaf87', 'no_lang_code', 1, 'https://ror.org/036wqaf87 ProteinSimple (United States)'),
(8582, 'https://ror.org/052efn961', 'en', 1, 'https://ror.org/052efn961 Arkansas Academy of Science'),
(8583, 'https://ror.org/023sej223', 'en', 1, 'https://ror.org/023sej223 Nova Scotia Community College'),
(8584, 'https://ror.org/00gb8td65', 'no_lang_code', 1, 'https://ror.org/00gb8td65 Y Touring Theatre Company'),
(8585, 'https://ror.org/03kxv9c43', 'no_lang_code', 1, 'https://ror.org/03kxv9c43 Astro-Med (United States)'),
(8586, 'https://ror.org/02krr1j33', 'no_lang_code', 1, 'https://ror.org/02krr1j33 Telesage (United States)'),
(8587, 'https://ror.org/0289bhn79', 'no_lang_code', 1, 'https://ror.org/0289bhn79 Telesensory (United States)'),
(8588, 'https://ror.org/02t0zgq96', 'no_lang_code', 1, 'https://ror.org/02t0zgq96 ArmaGen (United States)'),
(8589, 'https://ror.org/04vfjws05', 'no_lang_code', 1, 'https://ror.org/04vfjws05 NovaDigm Therapeutics (United States)'),
(8590, 'https://ror.org/04qce9v53', 'no_lang_code', 1, 'https://ror.org/04qce9v53 Integra LifeSciences (United States)'),
(8591, 'https://ror.org/04e13h619', 'no_lang_code', 1, 'https://ror.org/04e13h619 NovaFlux (United States)'),
(8592, 'https://ror.org/03wtr1427', 'no_lang_code', 1, 'https://ror.org/03wtr1427 NovaLipids (Canada)'),
(8593, 'https://ror.org/00vrz7m04', 'no_lang_code', 1, 'https://ror.org/00vrz7m04 Aronora (United States)'),
(8594, 'https://ror.org/02y1jb308', 'en', 1, 'https://ror.org/02y1jb308 Telus World of Science'),
(8595, 'https://ror.org/00h92yy88', 'no_lang_code', 1, 'https://ror.org/00h92yy88 Arrayomics (United States)'),
(8596, 'https://ror.org/05wrnja28', 'no_lang_code', 1, 'https://ror.org/05wrnja28 Tepha (United States)'),
(8597, 'https://ror.org/05571bq02', 'en', 1, 'https://ror.org/05571bq02 Teratology Society'),
(8598, 'https://ror.org/00q0dz713', 'no_lang_code', 1, 'https://ror.org/00q0dz713 TeraView (United Kingdom)'),
(8599, 'https://ror.org/03nfebx47', 'no_lang_code', 1, 'https://ror.org/03nfebx47 Terpenoid Therapeutics (United States)'),
(8600, 'https://ror.org/05jvwsc13', 'no_lang_code', 1, 'https://ror.org/05jvwsc13 Terra Nova Learning Systems (United States)'),
(8601, 'https://ror.org/00qjbvq93', 'no_lang_code', 1, 'https://ror.org/00qjbvq93 Actelion (United States)'),
(8602, 'https://ror.org/043q2sq69', 'no_lang_code', 1, 'https://ror.org/043q2sq69 Isto Biologics (United States)'),
(8603, 'https://ror.org/01y7ahq16', 'no_lang_code', 1, 'https://ror.org/01y7ahq16 Technology Dynamics (United States)'),
(8604, 'https://ror.org/00fd7nh45', 'no_lang_code', 1, 'https://ror.org/00fd7nh45 Yecuris (United States)'),
(8605, 'https://ror.org/04zk9fe75', 'en', 1, 'https://ror.org/04zk9fe75 Arthritis Foundation'),
(8606, 'https://ror.org/05akaw061', 'no_lang_code', 1, 'https://ror.org/05akaw061 Tekna Plasma Systems (Canada)'),
(8607, 'https://ror.org/04eq38828', 'en', 1, 'https://ror.org/04eq38828 Arts Catalyst'),
(8608, 'https://ror.org/049tfmr46', 'no_lang_code', 1, 'https://ror.org/049tfmr46 Kelda Group (United Kingdom)'),
(8609, 'https://ror.org/04fkhzr23', 'no_lang_code', 1, 'https://ror.org/04fkhzr23 Novan Therapeutics (United States)'),
(8610, 'https://ror.org/01mbxzz40', 'en', 1, 'https://ror.org/01mbxzz40 Arts Council England'),
(8611, 'https://ror.org/03pzbeq42', 'en', 1, 'https://ror.org/03pzbeq42 Youth Science Canada'),
(8612, 'https://ror.org/00q9afj63', 'no_lang_code', 1, 'https://ror.org/00q9afj63 ARTSCO (United States)'),
(8613, 'https://ror.org/04zw4rj10', 'no_lang_code', 1, 'https://ror.org/04zw4rj10 Arzeda (United States)'),
(8614, 'https://ror.org/03pszb036', 'en', 1, 'https://ror.org/03pszb036 Asbury University'),
(8615, 'https://ror.org/03gphk318', 'no_lang_code', 1, 'https://ror.org/03gphk318 Tetramer Technologies (United States)'),
(8616, 'https://ror.org/020h1fj51', 'no_lang_code', 1, 'https://ror.org/020h1fj51 NDI Group (United States)'),
(8617, 'https://ror.org/03nk8rb41', 'en', 1, 'https://ror.org/03nk8rb41 Yukon River Inter Tribal Watershed Council'),
(8618, 'https://ror.org/01x693z07', 'no_lang_code', 1, 'https://ror.org/01x693z07 NovaSterilis (United States)'),
(8619, 'https://ror.org/0160vb289', 'no_lang_code', 1, 'https://ror.org/0160vb289 Tertl Studos (United States)'),
(8620, 'https://ror.org/00pwjth19', 'en', 1, 'https://ror.org/00pwjth19 Yukon Kuskokwim Health Corporation'),
(8621, 'https://ror.org/03gsa2724', 'en', 1, 'https://ror.org/03gsa2724 Texas Lutheran University'),
(8622, 'https://ror.org/05w7pd234', 'no_lang_code', 1, 'https://ror.org/05w7pd234 Texas Retina Associates (United States)'),
(8623, 'https://ror.org/029ndp841', 'no_lang_code', 1, 'https://ror.org/029ndp841 Ash Stevens (United States)'),
(8624, 'https://ror.org/02xryym68', 'no_lang_code', 1, 'https://ror.org/02xryym68 Ashwin-Ushas (United States)'),
(8625, 'https://ror.org/0168zt961', 'en', 1, 'https://ror.org/0168zt961 Asian and Pacific Islander American Health Forum'),
(8626, 'https://ror.org/04s14qs93', 'en', 1, 'https://ror.org/04s14qs93 Asian American Recovery Services'),
(8627, 'https://ror.org/02yz66a54', 'no_lang_code', 1, 'https://ror.org/02yz66a54 NovelMed Therapeutics (United States)'),
(8628, 'https://ror.org/03k45vj26', 'no_lang_code', 1, 'https://ror.org/03k45vj26 NovoBiotic Pharmaceuticals'),
(8629, 'https://ror.org/052zay176', 'en', 1, 'https://ror.org/052zay176 Asian and Pacific Islander Wellness Center'),
(8630, 'https://ror.org/00nat9r59', 'no_lang_code', 1, 'https://ror.org/00nat9r59 Novozymes (United Kingdom)'),
(8631, 'https://ror.org/00ddb6b18', 'en', 1, 'https://ror.org/00ddb6b18 Refugee and Immigrant Center'),
(8632, 'https://ror.org/03fmvqd28', 'no_lang_code', 1, 'https://ror.org/03fmvqd28 BioMarin (United States)'),
(8633, 'https://ror.org/04tmafy09', 'en', 1, 'https://ror.org/04tmafy09 Asian Cultural Council'),
(8634, 'https://ror.org/00r8j9489', 'no_lang_code', 1, 'https://ror.org/00r8j9489 Thales (United Kingdom)'),
(8635, 'https://ror.org/00dqq0p30', 'en', 1, 'https://ror.org/00dqq0p30 Texas State Technical College Harlingen'),
(8636, 'https://ror.org/02pnxn245', 'en', 1, 'https://ror.org/02pnxn245 Texas State Technical College Waco'),
(8637, 'https://ror.org/03w5ry680', 'no_lang_code', 1, 'https://ror.org/03w5ry680 ASL Analytical (United States)'),
(8638, 'https://ror.org/01x653j15', 'no_lang_code', 1, 'https://ror.org/01x653j15 ManTech International (United States)'),
(8639, 'https://ror.org/01mdbyv68', 'en', 1, 'https://ror.org/01mdbyv68 Nuclear Decommissioning Authority'),
(8640, 'https://ror.org/045nvsg67', 'no_lang_code', 1, 'https://ror.org/045nvsg67 Athena Group (United States)'),
(8641, 'https://ror.org/03m5rvq73', 'no_lang_code', 1, 'https://ror.org/03m5rvq73 Zen Bio (United States)'),
(8642, 'https://ror.org/00d53ja24', 'no_lang_code', 1, 'https://ror.org/00d53ja24 Aspen Aerogels (United States)'),
(8643, 'https://ror.org/024sy5q53', 'en', 1, 'https://ror.org/024sy5q53 Nuffield Council on Bioethics'),
(8644, 'https://ror.org/011akkh38', 'en', 1, 'https://ror.org/011akkh38 Australian Academy of the Humanities'),
(8645, 'https://ror.org/02bm24g42', 'es', 1, 'https://ror.org/02bm24g42 Asociación Civil Impacta Salud y Educación'),
(8646, 'https://ror.org/0217xr937', 'en', 1, 'https://ror.org/0217xr937 Aspen Global Change Institute'),
(8647, 'https://ror.org/053nfh638', 'en', 1, 'https://ror.org/053nfh638 Center for Severe Weather Research'),
(8648, 'https://ror.org/04q1yyt92', 'en', 1, 'https://ror.org/04q1yyt92 Zoological Society of San Diego'),
(8649, 'https://ror.org/051dmmq45', 'no_lang_code', 1, 'https://ror.org/051dmmq45 NuPotential (United States)'),
(8650, 'https://ror.org/01qgthm82', 'no_lang_code', 1, 'https://ror.org/01qgthm82 zuChem (United States)'),
(8651, 'https://ror.org/05p7dhc22', 'en', 1, 'https://ror.org/05p7dhc22 Centre for Innovation Studies'),
(8652, 'https://ror.org/01phfda22', 'no_lang_code', 1, 'https://ror.org/01phfda22 Nutreco (Canada)'),
(8653, 'https://ror.org/0405c6r31', 'en', 1, 'https://ror.org/0405c6r31 College Board'),
(8654, 'https://ror.org/03etema57', 'en', 1, 'https://ror.org/03etema57 Association for Institutional Research'),
(8655, 'https://ror.org/01p9xjz77', 'en', 1, 'https://ror.org/01p9xjz77 College of Exploration'),
(8656, 'https://ror.org/04za49532', 'en', 1, 'https://ror.org/04za49532 Conference Board'),
(8657, 'https://ror.org/00baryp08', 'en', 1, 'https://ror.org/00baryp08 Association for Symbolic Logic'),
(8658, 'https://ror.org/04172mv97', 'en', 1, 'https://ror.org/04172mv97 Association For Women in Mathematics'),
(8659, 'https://ror.org/03bvhwx18', 'en', 1, 'https://ror.org/03bvhwx18 Association for Women in Science'),
(8660, 'https://ror.org/04p335086', 'en', 1, 'https://ror.org/04p335086 Carbon Trust'),
(8661, 'https://ror.org/01dd0rh60', 'no_lang_code', 1, 'https://ror.org/01dd0rh60 NuvoGen Research (United States)'),
(8662, 'https://ror.org/03jnpvg57', 'fr', 1, 'https://ror.org/03jnpvg57 Association francophone pour le savoir'),
(8663, 'https://ror.org/045kj3z89', 'no_lang_code', 1, 'https://ror.org/045kj3z89 Terragon Environmental Technologies (Canada)'),
(8664, 'https://ror.org/02m8d5f73', 'no_lang_code', 1, 'https://ror.org/02m8d5f73 CytRx (United States)'),
(8665, 'https://ror.org/00f4akz96', 'no_lang_code', 1, 'https://ror.org/00f4akz96 NVE Corporation (United States)'),
(8666, 'https://ror.org/05cd81677', 'en', 1, 'https://ror.org/05cd81677 Association of Bay Area Governments'),
(8667, 'https://ror.org/0366e1296', 'en', 1, 'https://ror.org/0366e1296 Association of Chief Police Officers'),
(8668, 'https://ror.org/05h6g8g36', 'en', 1, 'https://ror.org/05h6g8g36 Association of Food and Drug Officials'),
(8669, 'https://ror.org/05cf1h383', 'en', 1, 'https://ror.org/05cf1h383 Association of Maternal and Child Health Programs'),
(8670, 'https://ror.org/007bn8q13', 'en', 1, 'https://ror.org/007bn8q13 Association of State and Territorial Health Officials'),
(8671, 'https://ror.org/03xndpk42', 'no_lang_code', 1, 'https://ror.org/03xndpk42 NexTalk (United States)'),
(8672, 'https://ror.org/017m4b809', 'no_lang_code', 1, 'https://ror.org/017m4b809 NXP (United Kingdom)'),
(8673, 'https://ror.org/00rpwqe82', 'no_lang_code', 1, 'https://ror.org/00rpwqe82 NYSERNet (United States)'),
(8674, 'https://ror.org/0006n3612', 'en', 1, 'https://ror.org/0006n3612 Oak Crest Institute of Science'),
(8675, 'https://ror.org/03zsq2967', 'en', 1, 'https://ror.org/03zsq2967 Association of Asian Pacific Community Health Organizations'),
(8676, 'https://ror.org/050nq0931', 'en', 1, 'https://ror.org/050nq0931 Association of Occupational and Environmental Clinics'),
(8677, 'https://ror.org/00q6hxz03', 'no_lang_code', 1, 'https://ror.org/00q6hxz03 AST Products (United States)'),
(8678, 'https://ror.org/05eef5147', 'en', 1, 'https://ror.org/05eef5147 DNA EpiCenter'),
(8679, 'https://ror.org/02v02q390', 'no_lang_code', 1, 'https://ror.org/02v02q390 Aston Martin Lagonda (United Kingdom)'),
(8680, 'https://ror.org/05aqjad88', 'no_lang_code', 1, 'https://ror.org/05aqjad88 Astraea Therapeutics (United States)'),
(8681, 'https://ror.org/05mr3er35', 'no_lang_code', 1, 'https://ror.org/05mr3er35 Ocean NanoTech (United States)'),
(8682, 'https://ror.org/019xfaf13', 'en', 1, 'https://ror.org/019xfaf13 Astronomical Society of the Pacific'),
(8683, 'https://ror.org/03jnf0b15', 'en', 1, 'https://ror.org/03jnf0b15 Natural Science Collections Alliance'),
(8684, 'https://ror.org/044p9gt09', 'no_lang_code', 1, 'https://ror.org/044p9gt09 MEG-3 (Canada)'),
(8685, 'https://ror.org/039fp5n52', 'en', 1, 'https://ror.org/039fp5n52 At Bristol'),
(8686, 'https://ror.org/007mtxb37', 'no_lang_code', 1, 'https://ror.org/007mtxb37 Oceanit (United States)'),
(8687, 'https://ror.org/00qprmt30', 'no_lang_code', 1, 'https://ror.org/00qprmt30 Atactic Technologies (United States)'),
(8688, 'https://ror.org/043a93608', 'no_lang_code', 1, 'https://ror.org/043a93608 Oceans Limited (Canada)'),
(8689, 'https://ror.org/0527dhk70', 'no_lang_code', 1, 'https://ror.org/0527dhk70 Athens Research and Technology (United States)'),
(8690, 'https://ror.org/03kned690', 'no_lang_code', 1, 'https://ror.org/03kned690 Athersys (United States)'),
(8691, 'https://ror.org/04v357j08', 'no_lang_code', 1, 'https://ror.org/04v357j08 Biosearch Technologies (United States)'),
(8692, 'https://ror.org/02pf22978', 'no_lang_code', 1, 'https://ror.org/02pf22978 BioSense (United States)'),
(8693, 'https://ror.org/00qcr4910', 'no_lang_code', 1, 'https://ror.org/00qcr4910 Atkins (United Kingdom)'),
(8694, 'https://ror.org/05c32fk96', 'no_lang_code', 1, 'https://ror.org/05c32fk96 Atkinson Noland and Associates (United States)'),
(8695, 'https://ror.org/0374p0y44', 'no_lang_code', 1, 'https://ror.org/0374p0y44 ReproCELL (United States)'),
(8696, 'https://ror.org/05p5zy927', 'no_lang_code', 1, 'https://ror.org/05p5zy927 BioSpeech (United States)'),
(8697, 'https://ror.org/01gq2tr09', 'fr', 1, 'https://ror.org/01gq2tr09 Association pour le Développement de la Recherche et de l''Innovation du Québec'),
(8698, 'https://ror.org/04fwbrn28', 'no_lang_code', 1, 'https://ror.org/04fwbrn28 Phoenicia Biosciences (United States)'),
(8699, 'https://ror.org/03v861t80', 'no_lang_code', 1, 'https://ror.org/03v861t80 Atmel (United States)'),
(8700, 'https://ror.org/04jzxg282', 'no_lang_code', 1, 'https://ror.org/04jzxg282 Atmospheric and Space Technology Research Associates (United States)'),
(8701, 'https://ror.org/019m6fr90', 'no_lang_code', 1, 'https://ror.org/019m6fr90 New York Audio Productions (United States)'),
(8702, 'https://ror.org/05xt51492', 'no_lang_code', 1, 'https://ror.org/05xt51492 Octane (Canada)'),
(8703, 'https://ror.org/01c39ny75', 'no_lang_code', 1, 'https://ror.org/01c39ny75 OcuMetrics (United States)'),
(8704, 'https://ror.org/04wkjxj31', 'en', 1, 'https://ror.org/04wkjxj31 Phoenix Houses of New England'),
(8705, 'https://ror.org/03j9gnb02', 'no_lang_code', 1, 'https://ror.org/03j9gnb02 Ocutech (United States)'),
(8706, 'https://ror.org/037ytpe94', 'no_lang_code', 1, 'https://ror.org/037ytpe94 OEpic Semiconductors (United States)'),
(8707, 'https://ror.org/01xz1f624', 'no_lang_code', 1, 'https://ror.org/01xz1f624 OFM Research (United States)'),
(8708, 'https://ror.org/007m28f12', 'no_lang_code', 1, 'https://ror.org/007m28f12 Bio-Synthesis (United States)'),
(8709, 'https://ror.org/02gfbpn70', 'en', 1, 'https://ror.org/02gfbpn70 Ofwat'),
(8710, 'https://ror.org/03keahk34', 'no_lang_code', 1, 'https://ror.org/03keahk34 Auerbach Associates (United States)'),
(8711, 'https://ror.org/02f0ewv41', 'no_lang_code', 1, 'https://ror.org/02f0ewv41 OG Technologies (United States)'),
(8712, 'https://ror.org/03294gc92', 'no_lang_code', 1, 'https://ror.org/03294gc92 Audiology (United States)'),
(8713, 'https://ror.org/01p7ws813', 'no_lang_code', 1, 'https://ror.org/01p7ws813 Adamis Pharmaceuticals (United States)'),
(8714, 'https://ror.org/03337hf32', 'no_lang_code', 1, 'https://ror.org/03337hf32 AugmenTech (United States)'),
(8715, 'https://ror.org/04sp9ac55', 'no_lang_code', 1, 'https://ror.org/04sp9ac55 Ogilvy Public Relations (United States)'),
(8716, 'https://ror.org/012y1mj37', 'en', 1, 'https://ror.org/012y1mj37 Oglala Lakota College'),
(8717, 'https://ror.org/01vt38y66', 'no_lang_code', 1, 'https://ror.org/01vt38y66 PhosphorTech (United States)'),
(8718, 'https://ror.org/01s4ync39', 'no_lang_code', 1, 'https://ror.org/01s4ync39 AureoGen Biosciences (United States)'),
(8719, 'https://ror.org/053frny31', 'no_lang_code', 1, 'https://ror.org/053frny31 Photek (United Kingdom)'),
(8720, 'https://ror.org/024kwpx52', 'no_lang_code', 1, 'https://ror.org/024kwpx52 Auritec Pharmaceuticals (United States)'),
(8721, 'https://ror.org/03mex2a54', 'no_lang_code', 1, 'https://ror.org/03mex2a54 BioStrategies (United States)'),
(8722, 'https://ror.org/01bp1mp13', 'no_lang_code', 1, 'https://ror.org/01bp1mp13 Photodigm (United States)'),
(8723, 'https://ror.org/05xrhs889', 'no_lang_code', 1, 'https://ror.org/05xrhs889 Photon Etc (Canada)'),
(8724, 'https://ror.org/0110df420', 'no_lang_code', 1, 'https://ror.org/0110df420 Aurora Flight Sciences (United States)'),
(8725, 'https://ror.org/052k56z27', 'en', 1, 'https://ror.org/052k56z27 Austin College'),
(8726, 'https://ror.org/0094yx268', 'en', 1, 'https://ror.org/0094yx268 Philosophy of Science Association'),
(8727, 'https://ror.org/044tz3m61', 'en', 1, 'https://ror.org/044tz3m61 Austin Community College'),
(8728, 'https://ror.org/0186yvf62', 'en', 1, 'https://ror.org/0186yvf62 Australian Academy of Science'),
(8729, 'https://ror.org/05ft74b02', 'no_lang_code', 1, 'https://ror.org/05ft74b02 Photoswitch Biosciences (United States)'),
(8730, 'https://ror.org/04cpjyv67', 'en', 1, 'https://ror.org/04cpjyv67 Australian Academy of Technological Sciences and Engineering'),
(8731, 'https://ror.org/00nc89j94', 'en', 1, 'https://ror.org/00nc89j94 Australian Council of Learned Academies'),
(8732, 'https://ror.org/00jbqdn84', 'en', 1, 'https://ror.org/00jbqdn84 Oglala Sioux Tribal Council'),
(8733, 'https://ror.org/050ssvp08', 'en', 1, 'https://ror.org/050ssvp08 Ohio Academy of Science'),
(8734, 'https://ror.org/00hssfx27', 'no_lang_code', 1, 'https://ror.org/00hssfx27 Biothermal (United States)'),
(8735, 'https://ror.org/005nrbr06', 'no_lang_code', 1, 'https://ror.org/005nrbr06 Phrixus Pharmaceuticals (United States)'),
(8736, 'https://ror.org/03p711j77', 'en', 1, 'https://ror.org/03p711j77 Australian Institute of Nuclear Science and Engineering'),
(8737, 'https://ror.org/034y7by63', 'no_lang_code', 1, 'https://ror.org/034y7by63 Lineage Cell Therapeutics (United States)'),
(8738, 'https://ror.org/01bs8y378', 'no_lang_code', 1, 'https://ror.org/01bs8y378 Autoimmune Technologies (United States)'),
(8739, 'https://ror.org/00pmncr36', 'en', 1, 'https://ror.org/00pmncr36 Ohio Dominican University'),
(8740, 'https://ror.org/00g1g7t14', 'en', 1, 'https://ror.org/00g1g7t14 PHS Commissioned Officers Foundation'),
(8741, 'https://ror.org/03ya6pd97', 'no_lang_code', 1, 'https://ror.org/03ya6pd97 PDL BioPharma (United States)'),
(8742, 'https://ror.org/00xspzv28', 'en', 1, 'https://ror.org/00xspzv28 Ohio Department of Agriculture'),
(8743, 'https://ror.org/04vge0w88', 'no_lang_code', 1, 'https://ror.org/04vge0w88 BioVectra (Canada)'),
(8744, 'https://ror.org/0027jd641', 'no_lang_code', 1, 'https://ror.org/0027jd641 Cell Culture Company (United States)'),
(8745, 'https://ror.org/04363qc87', 'no_lang_code', 1, 'https://ror.org/04363qc87 Auxagen (United States)'),
(8746, 'https://ror.org/02w368938', 'no_lang_code', 1, 'https://ror.org/02w368938 PhysioGenix (United States)'),
(8747, 'https://ror.org/04dm6ed68', 'en', 1, 'https://ror.org/04dm6ed68 Birmingham City Council'),
(8748, 'https://ror.org/02vd9xc25', 'no_lang_code', 1, 'https://ror.org/02vd9xc25 Avacta (United Kingdom)'),
(8749, 'https://ror.org/00xe5zs60', 'en', 1, 'https://ror.org/00xe5zs60 Birmingham Women''s Hospital'),
(8750, 'https://ror.org/0070nx673', 'no_lang_code', 1, 'https://ror.org/0070nx673 Okino Computer Graphics (Canada)'),
(8751, 'https://ror.org/036vmnd51', 'en', 1, 'https://ror.org/036vmnd51 Bishop State Community College'),
(8752, 'https://ror.org/042fn4q48', 'en', 1, 'https://ror.org/042fn4q48 Bismarck State College'),
(8753, 'https://ror.org/05ng48n08', 'no_lang_code', 1, 'https://ror.org/05ng48n08 AvantGen (United States)'),
(8754, 'https://ror.org/028ffjf65', 'en', 1, 'https://ror.org/028ffjf65 Black Women’s Health Imperative'),
(8755, 'https://ror.org/02kgm7r43', 'en', 1, 'https://ror.org/02kgm7r43 Blackfeet Community College'),
(8756, 'https://ror.org/03n3jmy18', 'no_lang_code', 1, 'https://ror.org/03n3jmy18 Avanti Polar Lipids (United States)'),
(8757, 'https://ror.org/00bvzmn76', 'no_lang_code', 1, 'https://ror.org/00bvzmn76 Blackrock Microsystems (United States)'),
(8758, 'https://ror.org/04rk4wk39', 'no_lang_code', 1, 'https://ror.org/04rk4wk39 Phytronix (Canada)'),
(8759, 'https://ror.org/02yk9rt54', 'en', 1, 'https://ror.org/02yk9rt54 Blast Theory'),
(8760, 'https://ror.org/05d4gem91', 'no_lang_code', 1, 'https://ror.org/05d4gem91 BLH Technologies (United States)'),
(8761, 'https://ror.org/04gdk0x87', 'en', 1, 'https://ror.org/04gdk0x87 Bloomfield College'),
(8762, 'https://ror.org/009ht6s65', 'no_lang_code', 1, 'https://ror.org/009ht6s65 Picarro (United States)'),
(8763, 'https://ror.org/00qd89360', 'no_lang_code', 1, 'https://ror.org/00qd89360 PicoCal (United States)'),
(8764, 'https://ror.org/03gkbdq83', 'en', 1, 'https://ror.org/03gkbdq83 Education and Research Institute'),
(8765, 'https://ror.org/027qenx56', 'no_lang_code', 1, 'https://ror.org/027qenx56 Capcom Vancouver (Canada)'),
(8766, 'https://ror.org/03j7mxz67', 'no_lang_code', 1, 'https://ror.org/03j7mxz67 Omega Optics (United States)'),
(8767, 'https://ror.org/01j1pyg35', 'no_lang_code', 1, 'https://ror.org/01j1pyg35 OriGene (United States)'),
(8768, 'https://ror.org/05xb57658', 'no_lang_code', 1, 'https://ror.org/05xb57658 Aviagen (United Kingdom)'),
(8769, 'https://ror.org/039y7c549', 'en', 1, 'https://ror.org/039y7c549 Piedmont Technical College'),
(8770, 'https://ror.org/01ttkn505', 'en', 1, 'https://ror.org/01ttkn505 Biotechnical Services'),
(8771, 'https://ror.org/02tw58061', 'en', 1, 'https://ror.org/02tw58061 Piedmont Virginia Community College'),
(8772, 'https://ror.org/0125b2w26', 'no_lang_code', 1, 'https://ror.org/0125b2w26 OmegaChem (Canada)'),
(8773, 'https://ror.org/0117yy678', 'no_lang_code', 1, 'https://ror.org/0117yy678 BIT-TECH (United States)'),
(8774, 'https://ror.org/02f2ddv05', 'no_lang_code', 1, 'https://ror.org/02f2ddv05 Blue Spurs (Canada)'),
(8775, 'https://ror.org/033fyh879', 'no_lang_code', 1, 'https://ror.org/033fyh879 Omicia (United States)'),
(8776, 'https://ror.org/02bmj6022', 'no_lang_code', 1, 'https://ror.org/02bmj6022 Omneuron (United States)'),
(8777, 'https://ror.org/002kdhq94', 'no_lang_code', 1, 'https://ror.org/002kdhq94 Online Technologies (United States)'),
(8778, 'https://ror.org/006q1m605', 'no_lang_code', 1, 'https://ror.org/006q1m605 BlueInGreen (United States)'),
(8779, 'https://ror.org/02e71kh42', 'en', 1, 'https://ror.org/02e71kh42 Oncology Nursing Society'),
(8780, 'https://ror.org/023egfd39', 'no_lang_code', 1, 'https://ror.org/023egfd39 Onconova Therapeutics (United States)'),
(8781, 'https://ror.org/01m2bq033', 'no_lang_code', 1, 'https://ror.org/01m2bq033 BlueRISC (United States)'),
(8782, 'https://ror.org/0207cws49', 'no_lang_code', 1, 'https://ror.org/0207cws49 Oncor (United States)'),
(8783, 'https://ror.org/05pacqm37', 'en', 1, 'https://ror.org/05pacqm37 Bluffton University Universidad de Bluffton'),
(8784, 'https://ror.org/052v1zn95', 'no_lang_code', 1, 'https://ror.org/052v1zn95 Linde (United Kingdom)'),
(8785, 'https://ror.org/02ecczf03', 'en', 1, 'https://ror.org/02ecczf03 Ontario AIDS Network'),
(8786, 'https://ror.org/05chw4760', 'no_lang_code', 1, 'https://ror.org/05chw4760 Tekion (Canada)'),
(8787, 'https://ror.org/002vjkr06', 'en', 1, 'https://ror.org/002vjkr06 Pima Prevention Partnership'),
(8788, 'https://ror.org/028q4nk39', 'no_lang_code', 1, 'https://ror.org/028q4nk39 Pipehawk (United Kingdom)'),
(8789, 'https://ror.org/04a839673', 'no_lang_code', 1, 'https://ror.org/04a839673 Orkla (Norway)'),
(8790, 'https://ror.org/04tfmhy61', 'no_lang_code', 1, 'https://ror.org/04tfmhy61 Pipeline Industries Guild (United Kingdom)'),
(8791, 'https://ror.org/045p13n28', 'no_lang_code', 1, 'https://ror.org/045p13n28 Bossa Nova Technologies (United States)'),
(8792, 'https://ror.org/008h82p94', 'no_lang_code', 1, 'https://ror.org/008h82p94 Boston Applied Technologies (United States)'),
(8793, 'https://ror.org/05qnbjn88', 'no_lang_code', 1, 'https://ror.org/05qnbjn88 Opal-Rt Technologies (Canada)'),
(8794, 'https://ror.org/0336jnw26', 'en', 1, 'https://ror.org/0336jnw26 Pittsburgh Tissue Engineering Initiative'),
(8795, 'https://ror.org/022weqt39', 'no_lang_code', 1, 'https://ror.org/022weqt39 Planet Biotechnology (United States)'),
(8796, 'https://ror.org/016pn1y21', 'no_lang_code', 1, 'https://ror.org/016pn1y21 Axcelon Biopolymers (Canada)'),
(8797, 'https://ror.org/05vvg9554', 'en', 1, 'https://ror.org/05vvg9554 Planetary Science Institute'),
(8798, 'https://ror.org/01rwv9j63', 'en', 1, 'https://ror.org/01rwv9j63 Operation UNITE'),
(8799, 'https://ror.org/049aafr84', 'no_lang_code', 1, 'https://ror.org/049aafr84 Azevan Pharmaceuticals (United States)'),
(8800, 'https://ror.org/027892803', 'no_lang_code', 1, 'https://ror.org/027892803 Boston Medical Products (United States)'),
(8801, 'https://ror.org/05e1mzh65', 'no_lang_code', 1, 'https://ror.org/05e1mzh65 Ophir Corporation (United States)'),
(8802, 'https://ror.org/03bj7kr91', 'en', 1, 'https://ror.org/03bj7kr91 Boston Public Schools'),
(8803, 'https://ror.org/01xzapm83', 'no_lang_code', 1, 'https://ror.org/01xzapm83 Seamon (United States)'),
(8804, 'https://ror.org/02wxwab08', 'en', 1, 'https://ror.org/02wxwab08 Botanical Research Institute of Texas'),
(8805, 'https://ror.org/005yt8w56', 'no_lang_code', 1, 'https://ror.org/005yt8w56 Opotek (United States) Opotek Incorporation'),
(8806, 'https://ror.org/00bycf367', 'en', 1, 'https://ror.org/00bycf367 Botanical Society of America'),
(8807, 'https://ror.org/03ddbnh33', 'no_lang_code', 1, 'https://ror.org/03ddbnh33 Qinetiq (United States)'),
(8808, 'https://ror.org/05ws4x937', 'no_lang_code', 1, 'https://ror.org/05ws4x937 Optelian (Canada)'),
(8809, 'https://ror.org/00c211r48', 'no_lang_code', 1, 'https://ror.org/00c211r48 Boulder Language Technologies (United States)'),
(8810, 'https://ror.org/02rxmd442', 'no_lang_code', 1, 'https://ror.org/02rxmd442 Glyndwr Innovations (United Kingdom)'),
(8811, 'https://ror.org/00n8qbq54', 'no_lang_code', 1, 'https://ror.org/00n8qbq54 Meadowlark Optics (United States)'),
(8812, 'https://ror.org/03rvph505', 'en', 1, 'https://ror.org/03rvph505 Bacone College'),
(8813, 'https://ror.org/014hs3c68', 'no_lang_code', 1, 'https://ror.org/014hs3c68 Lend Lease (United Kingdom)'),
(8814, 'https://ror.org/02ts3bw45', 'no_lang_code', 1, 'https://ror.org/02ts3bw45 Plantvax (United States)'),
(8815, 'https://ror.org/00j10x245', 'no_lang_code', 1, 'https://ror.org/00j10x245 Plastic Logic (United Kingdom)'),
(8816, 'https://ror.org/00tz9e151', 'en', 1, 'https://ror.org/00tz9e151 Bakersfield College'),
(8817, 'https://ror.org/059xksf83', 'no_lang_code', 1, 'https://ror.org/059xksf83 Balfour Beatty (United Kingdom)'),
(8818, 'https://ror.org/00nvmqp29', 'no_lang_code', 1, 'https://ror.org/00nvmqp29 PlastiPure (United States)'),
(8819, 'https://ror.org/052v1k340', 'no_lang_code', 1, 'https://ror.org/052v1k340 DSM (Canada)'),
(8820, 'https://ror.org/04p4fvj07', 'no_lang_code', 1, 'https://ror.org/04p4fvj07 Brain Insights (United States)'),
(8821, 'https://ror.org/02peeh644', 'no_lang_code', 1, 'https://ror.org/02peeh644 HBP (United States)'),
(8822, 'https://ror.org/03b286288', 'en', 1, 'https://ror.org/03b286288 Baltimore City Community College'),
(8823, 'https://ror.org/039cthy03', 'en', 1, 'https://ror.org/039cthy03 Bamfield Marine Sciences Centre'),
(8824, 'https://ror.org/03gdmdz23', 'no_lang_code', 1, 'https://ror.org/03gdmdz23 Optimum Technologies (United States)'),
(8825, 'https://ror.org/04cy1f506', 'no_lang_code', 1, 'https://ror.org/04cy1f506 Optimum Therapeutics (United States)'),
(8826, 'https://ror.org/02rbnw681', 'no_lang_code', 1, 'https://ror.org/02rbnw681 Platypus Technologies (United States)'),
(8827, 'https://ror.org/04v44vh53', 'en', 1, 'https://ror.org/04v44vh53 Bank Street College of Education'),
(8828, 'https://ror.org/04657zp85', 'no_lang_code', 1, 'https://ror.org/04657zp85 Optivia Biotechnology (United States)'),
(8829, 'https://ror.org/03m2zdn30', 'no_lang_code', 1, 'https://ror.org/03m2zdn30 Plentyoffish Media (Canada)'),
(8830, 'https://ror.org/013rrw978', 'no_lang_code', 1, 'https://ror.org/013rrw978 Plexon (United States)'),
(8831, 'https://ror.org/00d2efr72', 'no_lang_code', 1, 'https://ror.org/00d2efr72 PLx Pharma (United States)'),
(8832, 'https://ror.org/05s793832', 'no_lang_code', 1, 'https://ror.org/05s793832 PMD Scientific (United States)'),
(8833, 'https://ror.org/02hvk4n65', 'en', 1, 'https://ror.org/02hvk4n65 Princeton Baptist Medical Center'),
(8834, 'https://ror.org/01s3wxs84', 'no_lang_code', 1, 'https://ror.org/01s3wxs84 Barrett Technology (United States)'),
(8835, 'https://ror.org/02gge8657', 'no_lang_code', 1, 'https://ror.org/02gge8657 Optra (United States)'),
(8836, 'https://ror.org/0248cgv13', 'no_lang_code', 1, 'https://ror.org/0248cgv13 Optron Systems (United States)'),
(8837, 'https://ror.org/04hbf1w31', 'no_lang_code', 1, 'https://ror.org/04hbf1w31 Bridger Photonics (United States)'),
(8838, 'https://ror.org/00xa0jd95', 'no_lang_code', 1, 'https://ror.org/00xa0jd95 Oralys (Canada)'),
(8839, 'https://ror.org/050wn8768', 'no_lang_code', 1, 'https://ror.org/050wn8768 BrightOutcome (United States)'),
(8840, 'https://ror.org/04a7hz119', 'en', 1, 'https://ror.org/04a7hz119 Orange County Bar Foundation'),
(8841, 'https://ror.org/03qkymy66', 'no_lang_code', 1, 'https://ror.org/03qkymy66 Polaris Health Direction'),
(8842, 'https://ror.org/052gyrt19', 'no_lang_code', 1, 'https://ror.org/052gyrt19 Polatomic (United States)'),
(8843, 'https://ror.org/05e168j76', 'en', 1, 'https://ror.org/05e168j76 Bristol Community College'),
(8844, 'https://ror.org/03f8h8g06', 'en', 1, 'https://ror.org/03f8h8g06 Basic NWFL'),
(8845, 'https://ror.org/00t3pr326', 'en', 1, 'https://ror.org/00t3pr326 British Council'),
(8846, 'https://ror.org/02cvrf195', 'no_lang_code', 1, 'https://ror.org/02cvrf195 Polestar Technologies (United States)'),
(8847, 'https://ror.org/0384y3666', 'en', 1, 'https://ror.org/0384y3666 Police Forensic Science Laboratory Dundee'),
(8848, 'https://ror.org/005296895', 'en', 1, 'https://ror.org/005296895 BOOMHealth'),
(8849, 'https://ror.org/030wd1008', 'no_lang_code', 1, 'https://ror.org/030wd1008 Orbis Biosciences (United States)'),
(8850, 'https://ror.org/00rbdbh54', 'no_lang_code', 1, 'https://ror.org/00rbdbh54 Orbital Research (United States)'),
(8851, 'https://ror.org/00s9hg791', 'en', 1, 'https://ror.org/00s9hg791 Polisher Research Institute'),
(8852, 'https://ror.org/015pg1163', 'no_lang_code', 1, 'https://ror.org/015pg1163 Orcca Technology (United States)'),
(8853, 'https://ror.org/00k0t0t25', 'en', 1, 'https://ror.org/00k0t0t25 BC Centre for Aquatic Health Sciences'),
(8854, 'https://ror.org/04tq0y441', 'no_lang_code', 1, 'https://ror.org/04tq0y441 Poly Med (United States)'),
(8855, 'https://ror.org/05twxmr11', 'no_lang_code', 1, 'https://ror.org/05twxmr11 Brooks Automation (United States)'),
(8856, 'https://ror.org/033n9f723', 'no_lang_code', 1, 'https://ror.org/033n9f723 Polyglot Systems (United States)'),
(8857, 'https://ror.org/02jj1w915', 'en', 1, 'https://ror.org/02jj1w915 Broward College'),
(8858, 'https://ror.org/03me92s48', 'no_lang_code', 1, 'https://ror.org/03me92s48 Bechtel (United States)'),
(8859, 'https://ror.org/00st10308', 'no_lang_code', 1, 'https://ror.org/00st10308 Behavioral Assessment Incorporation (United States)'),
(8860, 'https://ror.org/05wr6e156', 'no_lang_code', 1, 'https://ror.org/05wr6e156 Bruce Technologies (United States)'),
(8861, 'https://ror.org/03xwzwa59', 'en', 1, 'https://ror.org/03xwzwa59 Behavior Therapy Associates'),
(8862, 'https://ror.org/054spa083', 'en', 1, 'https://ror.org/054spa083 Oregon Health Authority'),
(8863, 'https://ror.org/04excst21', 'no_lang_code', 1, 'https://ror.org/04excst21 Bruker (Germany)'),
(8864, 'https://ror.org/03jmm5353', 'en', 1, 'https://ror.org/03jmm5353 Lines for Life'),
(8865, 'https://ror.org/03jcrb831', 'no_lang_code', 1, 'https://ror.org/03jcrb831 Behavioral Research Incorporated (United States)'),
(8866, 'https://ror.org/05gr4yv49', 'en', 1, 'https://ror.org/05gr4yv49 Bellevue College'),
(8867, 'https://ror.org/04vgpn643', 'en', 1, 'https://ror.org/04vgpn643 Belmont Center for Comprehensive Treatment'),
(8868, 'https://ror.org/04ng6c812', 'no_lang_code', 1, 'https://ror.org/04ng6c812 Buffalo BioLabs'),
(8869, 'https://ror.org/03x1cjm87', 'en', 1, 'https://ror.org/03x1cjm87 Population Services International'),
(8870, 'https://ror.org/011hsx378', 'no_lang_code', 1, 'https://ror.org/011hsx378 PortaScience (United States)'),
(8871, 'https://ror.org/05r3ht428', 'en', 1, 'https://ror.org/05r3ht428 Bunker Hill Community College'),
(8872, 'https://ror.org/03n5jt416', 'no_lang_code', 1, 'https://ror.org/03n5jt416 Capsugel (United States)'),
(8873, 'https://ror.org/0508zfs37', 'no_lang_code', 1, 'https://ror.org/0508zfs37 Porter Novelli (United States)'),
(8874, 'https://ror.org/0221y9f82', 'no_lang_code', 1, 'https://ror.org/0221y9f82 Beneficial Designs (United States)'),
(8875, 'https://ror.org/04dc68s79', 'no_lang_code', 1, 'https://ror.org/04dc68s79 Magellan Aerospace (Canada)'),
(8876, 'https://ror.org/01pq38j30', 'en', 1, 'https://ror.org/01pq38j30 Bennington College'),
(8877, 'https://ror.org/02zq8st27', 'en', 1, 'https://ror.org/02zq8st27 Butte College'),
(8878, 'https://ror.org/0253ddj72', 'en', 1, 'https://ror.org/0253ddj72 Portland Cement Association'),
(8879, 'https://ror.org/05jg03a59', 'en', 1, 'https://ror.org/05jg03a59 Butterfly Conservation'),
(8880, 'https://ror.org/05ca9hc42', 'no_lang_code', 1, 'https://ror.org/05ca9hc42 Bentley (Canada)'),
(8881, 'https://ror.org/0111gm575', 'en', 1, 'https://ror.org/0111gm575 Positive Living Society of British Columbia'),
(8882, 'https://ror.org/038z5mp14', 'en', 1, 'https://ror.org/038z5mp14 Organisation des États Américains Organización de los Estados Americanos Organization of American States Organização dos Estados Americanos'),
(8883, 'https://ror.org/005pxtk56', 'no_lang_code', 1, 'https://ror.org/005pxtk56 Cabezon Group (United States)'),
(8884, 'https://ror.org/05hzjby53', 'no_lang_code', 1, 'https://ror.org/05hzjby53 Potomac Affinity Proteins (United States)'),
(8885, 'https://ror.org/03rxt9r79', 'en', 1, 'https://ror.org/03rxt9r79 Computer Aids for Chemical Engineering'),
(8886, 'https://ror.org/003hr6w03', 'en', 1, 'https://ror.org/003hr6w03 MotherToBaby'),
(8887, 'https://ror.org/01kpfrj42', 'no_lang_code', 1, 'https://ror.org/01kpfrj42 Potomac Photonics (United States)'),
(8888, 'https://ror.org/04k6d6v57', 'no_lang_code', 1, 'https://ror.org/04k6d6v57 CJ America (United States)'),
(8889, 'https://ror.org/026zvyv64', 'no_lang_code', 1, 'https://ror.org/026zvyv64 Assystem (Germany)'),
(8890, 'https://ror.org/03qz4w368', 'no_lang_code', 1, 'https://ror.org/03qz4w368 PowerWorld (United States)'),
(8891, 'https://ror.org/05r4dzd29', 'no_lang_code', 1, 'https://ror.org/05r4dzd29 Organizational Wellness and Learning Systems'),
(8892, 'https://ror.org/01sjx9496', 'no_lang_code', 1, 'https://ror.org/01sjx9496 Pharmaceutical Product Development (United States)'),
(8893, 'https://ror.org/00txp6z67', 'en', 1, 'https://ror.org/00txp6z67 Prairie Agricultural Machinery Institute'),
(8894, 'https://ror.org/005kxm139', 'no_lang_code', 1, 'https://ror.org/005kxm139 Bridge12 Technologies (United States)'),
(8895, 'https://ror.org/04anx0s86', 'no_lang_code', 1, 'https://ror.org/04anx0s86 Originus (United States)'),
(8896, 'https://ror.org/03aywkz50', 'en', 1, 'https://ror.org/03aywkz50 Bethel College - Kansas'),
(8897, 'https://ror.org/03dzg6f89', 'en', 1, 'https://ror.org/03dzg6f89 Bevill State Community College'),
(8898, 'https://ror.org/038eqqh78', 'no_lang_code', 1, 'https://ror.org/038eqqh78 Lockheed Martin Orincon (United States)'),
(8899, 'https://ror.org/04nah6p89', 'no_lang_code', 1, 'https://ror.org/04nah6p89 eHuman (United States)'),
(8900, 'https://ror.org/04r739x86', 'no_lang_code', 1, 'https://ror.org/04r739x86 Bruker (United States)'),
(8901, 'https://ror.org/04xz4db24', 'no_lang_code', 1, 'https://ror.org/04xz4db24 Caelum Research Corporation (United States)'),
(8902, 'https://ror.org/00qd6sx31', 'no_lang_code', 1, 'https://ror.org/00qd6sx31 Orphagen Pharmaceuticals (United States)'),
(8903, 'https://ror.org/03nrae010', 'no_lang_code', 1, 'https://ror.org/03nrae010 Orthocare Innovations (United States)'),
(8904, 'https://ror.org/00csvwd48', 'no_lang_code', 1, 'https://ror.org/00csvwd48 Capstone Therapeutics (United States)'),
(8905, 'https://ror.org/00h0zmy35', 'en', 1, 'https://ror.org/00h0zmy35 Bienestar'),
(8906, 'https://ror.org/05qpxvt33', 'fr', 1, 'https://ror.org/05qpxvt33 Café Scientifique'),
(8907, 'https://ror.org/05ebz1r33', 'en', 1, 'https://ror.org/05ebz1r33 Big Little Science Centre'),
(8908, 'https://ror.org/01x9bq055', 'no_lang_code', 1, 'https://ror.org/01x9bq055 Cairn Research (United Kingdom)'),
(8909, 'https://ror.org/034b18290', 'no_lang_code', 1, 'https://ror.org/034b18290 Precision Combustion (United States)'),
(8910, 'https://ror.org/048bsds49', 'no_lang_code', 1, 'https://ror.org/048bsds49 Osel (United States)'),
(8911, 'https://ror.org/058deva64', 'no_lang_code', 1, 'https://ror.org/058deva64 Bio Concept Laboratories (United States)'),
(8912, 'https://ror.org/034948b51', 'en', 1, 'https://ror.org/034948b51 Calhoun Community College'),
(8913, 'https://ror.org/05pw69n24', 'no_lang_code', 1, 'https://ror.org/05pw69n24 Astellas Pharma (United States)'),
(8914, 'https://ror.org/0458r0456', 'no_lang_code', 1, 'https://ror.org/0458r0456 RxSight (United States)'),
(8915, 'https://ror.org/05yab6874', 'no_lang_code', 1, 'https://ror.org/05yab6874 Varian Associates Varian Medical Systems (United States)'),
(8916, 'https://ror.org/02qjtm453', 'no_lang_code', 1, 'https://ror.org/02qjtm453 Natus (United States)'),
(8917, 'https://ror.org/03k285c10', 'no_lang_code', 1, 'https://ror.org/03k285c10 Polaris Motion (Canada)'),
(8918, 'https://ror.org/05a6emh10', 'en', 1, 'https://ror.org/05a6emh10 Osteogenesis Imperfecta Foundation'),
(8919, 'https://ror.org/053efmw82', 'no_lang_code', 1, 'https://ror.org/053efmw82 Precision Optics Corporation (United States)'),
(8920, 'https://ror.org/01ms1q761', 'no_lang_code', 1, 'https://ror.org/01ms1q761 Bio Signal Group (United States)'),
(8921, 'https://ror.org/0114c6692', 'no_lang_code', 1, 'https://ror.org/0114c6692 Prediction Sciences (United States)'),
(8922, 'https://ror.org/02mznah18', 'no_lang_code', 1, 'https://ror.org/02mznah18 Bioanalytical Systems (United States)'),
(8923, 'https://ror.org/04zhxxe39', 'en', 1, 'https://ror.org/04zhxxe39 Osys Technology'),
(8924, 'https://ror.org/00cvaph79', 'en', 1, 'https://ror.org/00cvaph79 BioNB'),
(8925, 'https://ror.org/04zttqy84', 'no_lang_code', 1, 'https://ror.org/04zttqy84 Predictive Biology (United States)'),
(8926, 'https://ror.org/05canvq15', 'no_lang_code', 1, 'https://ror.org/05canvq15 Predictive Science (United States)'),
(8927, 'https://ror.org/056qyhq36', 'en', 1, 'https://ror.org/056qyhq36 Preferred Family Healthcare'),
(8928, 'https://ror.org/008tdn922', 'no_lang_code', 1, 'https://ror.org/008tdn922 Premier Foods (United Kingdom)'),
(8929, 'https://ror.org/05b923192', 'no_lang_code', 1, 'https://ror.org/05b923192 Premitec (United States)'),
(8930, 'https://ror.org/02sgyhv62', 'en', 1, 'https://ror.org/02sgyhv62 California Family Health Council'),
(8931, 'https://ror.org/02j2j9d52', 'no_lang_code', 1, 'https://ror.org/02j2j9d52 Prentke Romich Company (United States)'),
(8932, 'https://ror.org/04r28v857', 'en', 1, 'https://ror.org/04r28v857 California Institute for Biomedical Research'),
(8933, 'https://ror.org/01s9sxm36', 'en', 1, 'https://ror.org/01s9sxm36 Presbyterian College'),
(8934, 'https://ror.org/000fmbj50', 'en', 1, 'https://ror.org/000fmbj50 California Rural Indian Health Board'),
(8935, 'https://ror.org/01e6deg73', 'en', 1, 'https://ror.org/01e6deg73 Baylor College of Medicine Children’s Foundation'),
(8936, 'https://ror.org/05crd7855', 'en', 1, 'https://ror.org/05crd7855 Prescott College'),
(8937, 'https://ror.org/00m2wsh37', 'no_lang_code', 1, 'https://ror.org/00m2wsh37 PricewaterhouseCoopers (Canada)'),
(8938, 'https://ror.org/02f67ap41', 'en', 1, 'https://ror.org/02f67ap41 Presentation College'),
(8939, 'https://ror.org/00ab7ks98', 'en', 1, 'https://ror.org/00ab7ks98 W.M. Keck Observatory'),
(8940, 'https://ror.org/02res4f29', 'en', 1, 'https://ror.org/02res4f29 Overseas Development Institute'),
(8941, 'https://ror.org/05nen6796', 'no_lang_code', 1, 'https://ror.org/05nen6796 Synergy Pharmaceuticals (United States)'),
(8942, 'https://ror.org/01fbet514', 'no_lang_code', 1, 'https://ror.org/01fbet514 BioChem Technology (United States)'),
(8943, 'https://ror.org/04n3aca14', 'no_lang_code', 1, 'https://ror.org/04n3aca14 Owlstone Medical (United Kingdom)'),
(8944, 'https://ror.org/05sxp6402', 'no_lang_code', 1, 'https://ror.org/05sxp6402 Oxford Gene Technology (United Kingdom)'),
(8945, 'https://ror.org/049zatd98', 'no_lang_code', 1, 'https://ror.org/049zatd98 Oxford Instruments (United Kingdom)'),
(8946, 'https://ror.org/00djyb934', 'no_lang_code', 1, 'https://ror.org/00djyb934 Oxford Lasers (United Kingdom)'),
(8947, 'https://ror.org/033sk1c45', 'en', 1, 'https://ror.org/033sk1c45 Prestera Center'),
(8948, 'https://ror.org/04hmrvg91', 'no_lang_code', 1, 'https://ror.org/04hmrvg91 Dover (United States)'),
(8949, 'https://ror.org/041ehbk97', 'no_lang_code', 1, 'https://ror.org/041ehbk97 Cambrian Innovation (United States)'),
(8950, 'https://ror.org/02k5g8c37', 'no_lang_code', 1, 'https://ror.org/02k5g8c37 BioDetection Instruments (United States)'),
(8951, 'https://ror.org/00anthv74', 'no_lang_code', 1, 'https://ror.org/00anthv74 P&P Optica (Canada)'),
(8952, 'https://ror.org/059tkh055', 'no_lang_code', 1, 'https://ror.org/059tkh055 MYcroarray (United States)'),
(8953, 'https://ror.org/00zdmbm57', 'no_lang_code', 1, 'https://ror.org/00zdmbm57 Premiere Global Services (United States)'),
(8954, 'https://ror.org/03zhs1016', 'no_lang_code', 1, 'https://ror.org/03zhs1016 Primorigen Biosciences (United States)'),
(8955, 'https://ror.org/03y756411', 'no_lang_code', 1, 'https://ror.org/03y756411 Pulse Biosciences (United States)'),
(8956, 'https://ror.org/001s4dh65', 'no_lang_code', 1, 'https://ror.org/001s4dh65 Cambridge Scientific (United States)'),
(8957, 'https://ror.org/00pmfef67', 'en', 1, 'https://ror.org/00pmfef67 Camden County College'),
(8958, 'https://ror.org/05bdncw68', 'no_lang_code', 1, 'https://ror.org/05bdncw68 BioFine International (Canada)'),
(8959, 'https://ror.org/00fcszb13', 'no_lang_code', 1, 'https://ror.org/00fcszb13 Pacific Biosciences (United States)'),
(8960, 'https://ror.org/04zs6dw65', 'en', 1, 'https://ror.org/04zs6dw65 Pacific Resources for Education and Learning'),
(8961, 'https://ror.org/01tv6se08', 'no_lang_code', 1, 'https://ror.org/01tv6se08 Prism Clinical Imaging (United States)'),
(8962, 'https://ror.org/02edynn23', 'no_lang_code', 1, 'https://ror.org/02edynn23 BioFormatix (United States)'),
(8963, 'https://ror.org/01mq7rh19', 'no_lang_code', 1, 'https://ror.org/01mq7rh19 Biogate Laboratories (Canada)'),
(8964, 'https://ror.org/0418y1915', 'no_lang_code', 1, 'https://ror.org/0418y1915 Photonic BioSystems (United States)'),
(8965, 'https://ror.org/03tmrv747', 'no_lang_code', 1, 'https://ror.org/03tmrv747 Pro Change Behavior Systems (United States)'),
(8966, 'https://ror.org/00hveka38', 'en', 1, 'https://ror.org/00hveka38 Paine College'),
(8967, 'https://ror.org/01mntwa59', 'no_lang_code', 1, 'https://ror.org/01mntwa59 Palatin Technologies (United States)'),
(8968, 'https://ror.org/057yn3648', 'no_lang_code', 1, 'https://ror.org/057yn3648 Pro Ed (United States)'),
(8969, 'https://ror.org/01aegrf07', 'en', 1, 'https://ror.org/01aegrf07 Canadian AIDS Society Société Canadienne du Sida'),
(8970, 'https://ror.org/05b68f622', 'no_lang_code', 1, 'https://ror.org/05b68f622 Process Simulations Limited (Canada)'),
(8971, 'https://ror.org/03fwae819', 'en', 1, 'https://ror.org/03fwae819 Canadian AIDS Treatment Information Exchange'),
(8972, 'https://ror.org/03xr1d353', 'no_lang_code', 1, 'https://ror.org/03xr1d353 BioLinx (United States)'),
(8973, 'https://ror.org/04hw9y579', 'no_lang_code', 1, 'https://ror.org/04hw9y579 Pall Corporation (United Kingdom)'),
(8974, 'https://ror.org/02av0ty63', 'no_lang_code', 1, 'https://ror.org/02av0ty63 Palladian Partners'),
(8975, 'https://ror.org/02t3wzq80', 'en', 1, 'https://ror.org/02t3wzq80 Palm Beach State College'),
(8976, 'https://ror.org/05amq4n56', 'no_lang_code', 1, 'https://ror.org/05amq4n56 Biological Monitoring Incorporated (United States)'),
(8977, 'https://ror.org/02n2p7c30', 'en', 1, 'https://ror.org/02n2p7c30 Canadian Association of Psychosocial Oncology'),
(8978, 'https://ror.org/010r07h95', 'no_lang_code', 1, 'https://ror.org/010r07h95 Halma Water Management (United Kingdom)'),
(8979, 'https://ror.org/01eqrs044', 'no_lang_code', 1, 'https://ror.org/01eqrs044 Sensei Biotherapeutics (United States)'),
(8980, 'https://ror.org/02m1cy121', 'no_lang_code', 1, 'https://ror.org/02m1cy121 Prodrive (United Kingdom)'),
(8981, 'https://ror.org/053pe9m10', 'en', 1, 'https://ror.org/053pe9m10 Canadian Coalition for Global Health Research'),
(8982, 'https://ror.org/02y447018', 'en', 1, 'https://ror.org/02y447018 Canadian Council on Animal Care'),
(8983, 'https://ror.org/027as9m12', 'en', 1, 'https://ror.org/027as9m12 Canadian Obesity Network Réseau Canadien en l’Obésité');
INSERT INTO `rors` VALUES
(8984, 'https://ror.org/016mnbp44', 'no_lang_code', 1, 'https://ror.org/016mnbp44 Vi Technology (United States)'),
(8985, 'https://ror.org/03qs03z89', 'en', 1, 'https://ror.org/03qs03z89 Progeria Research Foundation'),
(8986, 'https://ror.org/05y2d8w36', 'no_lang_code', 1, 'https://ror.org/05y2d8w36 Biomedica Management (United States)'),
(8987, 'https://ror.org/03se9cq71', 'no_lang_code', 1, 'https://ror.org/03se9cq71 Panasonic (United Kingdom)'),
(8988, 'https://ror.org/02y2p9e58', 'no_lang_code', 1, 'https://ror.org/02y2p9e58 Prognosys Biosciences (United States)'),
(8989, 'https://ror.org/00gwpva83', 'en', 1, 'https://ror.org/00gwpva83 Progress Educational Trust'),
(8990, 'https://ror.org/01pg2qx87', 'en', 1, 'https://ror.org/01pg2qx87 Cambridge City Council'),
(8991, 'https://ror.org/02yx0gd46', 'no_lang_code', 1, 'https://ror.org/02yx0gd46 Biomedical Frontiers (United States)'),
(8992, 'https://ror.org/057xckz35', 'no_lang_code', 1, 'https://ror.org/057xckz35 Papa Ola Lokahi'),
(8993, 'https://ror.org/037ndkh53', 'no_lang_code', 1, 'https://ror.org/037ndkh53 Biomedical Research Models (United States)'),
(8994, 'https://ror.org/03561g010', 'no_lang_code', 1, 'https://ror.org/03561g010 Canadian Green Tech (Canada)'),
(8995, 'https://ror.org/00ejq5880', 'no_lang_code', 1, 'https://ror.org/00ejq5880 BioMedomics (United States)'),
(8996, 'https://ror.org/04fm85d87', 'en', 1, 'https://ror.org/04fm85d87 Brevard County Board of County Commissioners'),
(8997, 'https://ror.org/03rdrc196', 'no_lang_code', 1, 'https://ror.org/03rdrc196 Parallel Synthesis Technologies (United States)'),
(8998, 'https://ror.org/02bfrb046', 'no_lang_code', 1, 'https://ror.org/02bfrb046 Polysciences (United States)'),
(8999, 'https://ror.org/02wv25745', 'no_lang_code', 1, 'https://ror.org/02wv25745 ParaTechs (United States)'),
(9000, 'https://ror.org/023ymdw14', 'no_lang_code', 1, 'https://ror.org/023ymdw14 Canadian Electric Vehicles (Canada)'),
(9001, 'https://ror.org/05epvtb78', 'no_lang_code', 1, 'https://ror.org/05epvtb78 Parion Sciences (United States)'),
(9002, 'https://ror.org/03d5v2a18', 'no_lang_code', 1, 'https://ror.org/03d5v2a18 CanAm Bioresearch (Canada)'),
(9003, 'https://ror.org/03re1za85', 'en', 1, 'https://ror.org/03re1za85 Québec International'),
(9004, 'https://ror.org/02wjx3n88', 'no_lang_code', 1, 'https://ror.org/02wjx3n88 Biomomentum (Canada)'),
(9005, 'https://ror.org/00ytr4473', 'no_lang_code', 1, 'https://ror.org/00ytr4473 Opmedic Group (Canada)'),
(9006, 'https://ror.org/04brs8j34', 'no_lang_code', 1, 'https://ror.org/04brs8j34 Bionetics (United States)'),
(9007, 'https://ror.org/045v29b75', 'no_lang_code', 1, 'https://ror.org/045v29b75 Bioo Scientific (United States)'),
(9008, 'https://ror.org/05feyya22', 'no_lang_code', 1, 'https://ror.org/05feyya22 Cancer Genetics (United States)'),
(9009, 'https://ror.org/03ac8kh32', 'no_lang_code', 1, 'https://ror.org/03ac8kh32 BioPAL (United States)'),
(9010, 'https://ror.org/026x7hp94', 'no_lang_code', 1, 'https://ror.org/026x7hp94 Biopeptide (United States)'),
(9011, 'https://ror.org/0016z8240', 'no_lang_code', 1, 'https://ror.org/0016z8240 Liminal BioSciences (Canada)'),
(9012, 'https://ror.org/05gf8nd15', 'en', 1, 'https://ror.org/05gf8nd15 Parkland College'),
(9013, 'https://ror.org/02gxky474', 'en', 1, 'https://ror.org/02gxky474 Association of State Supervisors of Mathematics'),
(9014, 'https://ror.org/0282bjj02', 'no_lang_code', 1, 'https://ror.org/0282bjj02 Promiliad Biopharma (United States)'),
(9015, 'https://ror.org/00cyfck94', 'no_lang_code', 1, 'https://ror.org/00cyfck94 Parsons Brinckerhoff'),
(9016, 'https://ror.org/03v53q116', 'no_lang_code', 1, 'https://ror.org/03v53q116 ProSci Incorporated (United States)'),
(9017, 'https://ror.org/05kq0x475', 'no_lang_code', 1, 'https://ror.org/05kq0x475 ProSensus (Canada)'),
(9018, 'https://ror.org/023zey656', 'en', 1, 'https://ror.org/023zey656 Biophysical Society'),
(9019, 'https://ror.org/020q1kr70', 'en', 1, 'https://ror.org/020q1kr70 Premier Community Health'),
(9020, 'https://ror.org/00bppv849', 'en', 1, 'https://ror.org/00bppv849 National Partnership for Environmental Technology Education'),
(9021, 'https://ror.org/05xgfg578', 'en', 1, 'https://ror.org/05xgfg578 Partnership Group for Science and Engineering'),
(9022, 'https://ror.org/01dk4b453', 'en', 1, 'https://ror.org/01dk4b453 Pasadena City College'),
(9023, 'https://ror.org/0174vdd62', 'no_lang_code', 1, 'https://ror.org/0174vdd62 Pasadero (United States)'),
(9024, 'https://ror.org/01f3qhk13', 'en', 1, 'https://ror.org/01f3qhk13 Riekes Center for Human Enhancement'),
(9025, 'https://ror.org/002mbwb34', 'en', 1, 'https://ror.org/002mbwb34 Passaic County Community College'),
(9026, 'https://ror.org/0273kmy05', 'no_lang_code', 1, 'https://ror.org/0273kmy05 Passat (Canada)'),
(9027, 'https://ror.org/04znr7t37', 'en', 1, 'https://ror.org/04znr7t37 Cankdeska Cikana Community College'),
(9028, 'https://ror.org/00tbsgb37', 'no_lang_code', 1, 'https://ror.org/00tbsgb37 PAI Life Sciences (United States)'),
(9029, 'https://ror.org/04t9p3q02', 'no_lang_code', 1, 'https://ror.org/04t9p3q02 Protein Potential (United States)'),
(9030, 'https://ror.org/047na1w09', 'no_lang_code', 1, 'https://ror.org/047na1w09 Patheon (Canada)'),
(9031, 'https://ror.org/005j1v069', 'en', 1, 'https://ror.org/005j1v069 Pathfinder International'),
(9032, 'https://ror.org/059bxva30', 'no_lang_code', 1, 'https://ror.org/059bxva30 Therapeutic Proteins International (United States)'),
(9033, 'https://ror.org/04hs39d68', 'no_lang_code', 1, 'https://ror.org/04hs39d68 Pattern Discovery Technologies (Canada)'),
(9034, 'https://ror.org/00eqjxv60', 'no_lang_code', 1, 'https://ror.org/00eqjxv60 Capital Consulting Corporation (United States)'),
(9035, 'https://ror.org/04m647t46', 'no_lang_code', 1, 'https://ror.org/04m647t46 Pd Ld (United States)'),
(9036, 'https://ror.org/045ej2q36', 'en', 1, 'https://ror.org/045ej2q36 Capitol Technology University'),
(9037, 'https://ror.org/03xwja043', 'no_lang_code', 1, 'https://ror.org/03xwja043 Pacific Design Technologies (United States)'),
(9038, 'https://ror.org/04cxz3q70', 'no_lang_code', 1, 'https://ror.org/04cxz3q70 CarboMer (United States)'),
(9039, 'https://ror.org/03re9hr91', 'no_lang_code', 1, 'https://ror.org/03re9hr91 Peake DeLancey Printers (United States)'),
(9040, 'https://ror.org/04qadzg65', 'no_lang_code', 1, 'https://ror.org/04qadzg65 CardioFocus (United States)'),
(9041, 'https://ror.org/033h8cb51', 'no_lang_code', 1, 'https://ror.org/033h8cb51 Cardiome (Canada)'),
(9042, 'https://ror.org/057v10231', 'no_lang_code', 1, 'https://ror.org/057v10231 AdvanSource Biomaterials (United States)'),
(9043, 'https://ror.org/03fz0tx04', 'no_lang_code', 1, 'https://ror.org/03fz0tx04 ProteoTech (United States)'),
(9044, 'https://ror.org/03yzb9c23', 'no_lang_code', 1, 'https://ror.org/03yzb9c23 ProThera Biologics (United States)'),
(9045, 'https://ror.org/04k6mhf37', 'no_lang_code', 1, 'https://ror.org/04k6mhf37 Pelamis Wave Power (United Kingdom)'),
(9046, 'https://ror.org/04ffkmr54', 'en', 1, 'https://ror.org/04ffkmr54 Pellissippi State Community College'),
(9047, 'https://ror.org/03xha5352', 'no_lang_code', 1, 'https://ror.org/03xha5352 Carl Zeiss (United Kingdom)'),
(9048, 'https://ror.org/038espn32', 'en', 1, 'https://ror.org/038espn32 CARE USA'),
(9049, 'https://ror.org/030p0vr95', 'no_lang_code', 1, 'https://ror.org/030p0vr95 Proton OnSite (United States)'),
(9050, 'https://ror.org/02c761853', 'no_lang_code', 1, 'https://ror.org/02c761853 Proto Corporation (United States)'),
(9051, 'https://ror.org/007mg2f66', 'no_lang_code', 1, 'https://ror.org/007mg2f66 Prototypes (United States)'),
(9052, 'https://ror.org/024dad879', 'no_lang_code', 1, 'https://ror.org/024dad879 Provid Pharmaceuticals (United States)'),
(9053, 'https://ror.org/01mb01m85', 'no_lang_code', 1, 'https://ror.org/01mb01m85 HEICO (United States)'),
(9054, 'https://ror.org/0466ddw04', 'no_lang_code', 1, 'https://ror.org/0466ddw04 PRP Architects (United Kingdom)'),
(9055, 'https://ror.org/01v66s741', 'no_lang_code', 1, 'https://ror.org/01v66s741 3D-Micromac (Germany)'),
(9056, 'https://ror.org/05c244n89', 'no_lang_code', 1, 'https://ror.org/05c244n89 Cedrat Technologies (France)'),
(9057, 'https://ror.org/03d33vh19', 'no_lang_code', 1, 'https://ror.org/03d33vh19 3E (Belgium)'),
(9058, 'https://ror.org/02vpzy864', 'no_lang_code', 1, 'https://ror.org/02vpzy864 4D Soft (Hungary)'),
(9059, 'https://ror.org/00k7znw93', 'no_lang_code', 1, 'https://ror.org/00k7znw93 5T Torino (Italy)'),
(9060, 'https://ror.org/00w2qec28', 'no_lang_code', 1, 'https://ror.org/00w2qec28 6WIND (France)'),
(9061, 'https://ror.org/01ng18e06', 'no_lang_code', 1, 'https://ror.org/01ng18e06 A K Industries (United Kingdom)'),
(9062, 'https://ror.org/03nsnsd97', 'no_lang_code', 1, 'https://ror.org/03nsnsd97 Celaya, Emparanza y Galdos Internacional (Spain)'),
(9063, 'https://ror.org/02dc0q644', 'en', 1, 'https://ror.org/02dc0q644 Psychological Health Associates'),
(9064, 'https://ror.org/05svaqs46', 'no_lang_code', 1, 'https://ror.org/05svaqs46 Psychology Software Tools (United States)'),
(9065, 'https://ror.org/00trk2663', 'no_lang_code', 1, 'https://ror.org/00trk2663 PTAC (United States)'),
(9066, 'https://ror.org/02pfhsd84', 'en', 1, 'https://ror.org/02pfhsd84 A.V. Luikov Heat and Mass Transfer Institute Институт тепло- и массообмена имени А.В. Лыкова Национальной академии наук Беларуси'),
(9067, 'https://ror.org/016t6qg15', 'no_lang_code', 1, 'https://ror.org/016t6qg15 PENTAX Medical Company (United States)'),
(9068, 'https://ror.org/01jgbgc06', 'en', 1, 'https://ror.org/01jgbgc06 A.V. Topchiev Institute of Petrochemical Synthesis Институт нефтехимического синтеза им. А.В.Топчиева'),
(9069, 'https://ror.org/02ht85g63', 'no_lang_code', 1, 'https://ror.org/02ht85g63 A4F-Algafuel (Portugal)'),
(9070, 'https://ror.org/040s79h05', 'no_lang_code', 1, 'https://ror.org/040s79h05 Cenergia (Denmark)'),
(9071, 'https://ror.org/02ygwnf45', 'no_lang_code', 1, 'https://ror.org/02ygwnf45 Public Data Queries (United States)'),
(9072, 'https://ror.org/00reyxa23', 'no_lang_code', 1, 'https://ror.org/00reyxa23 Cenix BioScience (Germany)'),
(9073, 'https://ror.org/04kcs0d25', 'pt', 1, 'https://ror.org/04kcs0d25 Agência Para a Energia'),
(9074, 'https://ror.org/04rjtde10', 'no_lang_code', 1, 'https://ror.org/04rjtde10 Perceptronics Solutions (United States)'),
(9075, 'https://ror.org/00ar79186', 'no_lang_code', 1, 'https://ror.org/00ar79186 Performance Polymer Solutions (United States)'),
(9076, 'https://ror.org/03828wc37', 'no_lang_code', 1, 'https://ror.org/03828wc37 Public Health Television (United States)'),
(9077, 'https://ror.org/02ev1p206', 'en', 1, 'https://ror.org/02ev1p206 Center for Renewable Energy Sources and Saving'),
(9078, 'https://ror.org/00m129932', 'en', 1, 'https://ror.org/00m129932 Center for Research and Technology Thessaly'),
(9079, 'https://ror.org/0317zws63', 'en', 1, 'https://ror.org/0317zws63 Ministry of Public Order and Citizen Protection Υπουργείο Δημόσιας Τάξης και Προστασίας του Πολίτη'),
(9080, 'https://ror.org/014fc7457', 'no_lang_code', 1, 'https://ror.org/014fc7457 PerkinElmer (United Kingdom)'),
(9081, 'https://ror.org/05a2kh390', 'no_lang_code', 1, 'https://ror.org/05a2kh390 Pulmokine (United States)'),
(9082, 'https://ror.org/05awtjt98', 'en', 1, 'https://ror.org/05awtjt98 Pulmonary Hypertension Association'),
(9083, 'https://ror.org/016hnw741', 'no_lang_code', 1, 'https://ror.org/016hnw741 Centre for Technology Research & Innovation (Cyprus)'),
(9084, 'https://ror.org/05hpcxv81', 'no_lang_code', 1, 'https://ror.org/05hpcxv81 Puresyn (United States)'),
(9085, 'https://ror.org/03xab3392', 'no_lang_code', 1, 'https://ror.org/03xab3392 PSIwebware (United States)'),
(9086, 'https://ror.org/0004ysa08', 'en', 1, 'https://ror.org/0004ysa08 Centre for innovative process engineering'),
(9087, 'https://ror.org/04k4bwp19', 'no_lang_code', 1, 'https://ror.org/04k4bwp19 Q-Track Corporation (United States)'),
(9088, 'https://ror.org/0319xcm09', 'no_lang_code', 1, 'https://ror.org/0319xcm09 Peter Brett Associates'),
(9089, 'https://ror.org/001dw2225', 'en', 1, 'https://ror.org/001dw2225 Central Aerohydrodynamic Institute Центральный аэрогидродинамический институт имени профессора Н.Е. Жуковского'),
(9090, 'https://ror.org/01a4t3393', 'en', 1, 'https://ror.org/01a4t3393 Central Electricity Generating Board'),
(9091, 'https://ror.org/00r2t6515', 'en', 1, 'https://ror.org/00r2t6515 Baranov Central Institute of Aviation Motor Development Центральный институт авиационного моторостроения им. П.И. Баранова'),
(9092, 'https://ror.org/023bn8s91', 'no_lang_code', 1, 'https://ror.org/023bn8s91 QED Labs'),
(9093, 'https://ror.org/02wfw7g10', 'no_lang_code', 1, 'https://ror.org/02wfw7g10 QM Power (United States)'),
(9094, 'https://ror.org/0418mwz44', 'no_lang_code', 1, 'https://ror.org/0418mwz44 Petro Geotech (Canada)'),
(9095, 'https://ror.org/00f8dwt44', 'en', 1, 'https://ror.org/00f8dwt44 Institute of Electrochemistry and Energy Systems Институт по електрохимия и енергийни системи'),
(9096, 'https://ror.org/0235kyq22', 'no_lang_code', 1, 'https://ror.org/0235kyq22 Petrobras (Brazil)'),
(9097, 'https://ror.org/01jt2bg47', 'no_lang_code', 1, 'https://ror.org/01jt2bg47 QUAD Engineering (Canada)'),
(9098, 'https://ror.org/0033n4009', 'no_lang_code', 1, 'https://ror.org/0033n4009 ABB (Sweden)'),
(9099, 'https://ror.org/05yeg2858', 'no_lang_code', 1, 'https://ror.org/05yeg2858 ABB (Germany)'),
(9100, 'https://ror.org/0370sjj75', 'no_lang_code', 1, 'https://ror.org/0370sjj75 Optum (United States)'),
(9101, 'https://ror.org/02yxan022', 'no_lang_code', 1, 'https://ror.org/02yxan022 Quanser (Canada)'),
(9102, 'https://ror.org/00wbcgc67', 'no_lang_code', 1, 'https://ror.org/00wbcgc67 Johnson Matthey (United States)'),
(9103, 'https://ror.org/01kmcf465', 'fr', 1, 'https://ror.org/01kmcf465 Belgian Centre for Corrosion Study Centre Belge d''Etude de la Corrosion'),
(9104, 'https://ror.org/04780k350', 'no_lang_code', 1, 'https://ror.org/04780k350 PharmaIN (United States)'),
(9105, 'https://ror.org/0311xw623', 'no_lang_code', 1, 'https://ror.org/0311xw623 PharmaSeq (United States)'),
(9106, 'https://ror.org/054cjrc07', 'no_lang_code', 1, 'https://ror.org/054cjrc07 Quantronix (United States)'),
(9107, 'https://ror.org/04etz5w53', 'no_lang_code', 1, 'https://ror.org/04etz5w53 QuantTera (United States)'),
(9108, 'https://ror.org/02m4tvc13', 'fr', 1, 'https://ror.org/02m4tvc13 Comité Européen des Instructeurs de Plongée Professionnels European Committee of Professional Diving Instructors'),
(9109, 'https://ror.org/027j12e75', 'no_lang_code', 1, 'https://ror.org/027j12e75 Quantum Simulations (United States)'),
(9110, 'https://ror.org/049gbsq65', 'no_lang_code', 1, 'https://ror.org/049gbsq65 AbsInt (Germany)'),
(9111, 'https://ror.org/016t25n48', 'no_lang_code', 1, 'https://ror.org/016t25n48 Quasars (United States)'),
(9112, 'https://ror.org/01w7yjk26', 'no_lang_code', 1, 'https://ror.org/01w7yjk26 Phoenix Science and Technology (United States)'),
(9113, 'https://ror.org/00akkff67', 'no_lang_code', 1, 'https://ror.org/00akkff67 Phcc (United States)'),
(9114, 'https://ror.org/02t6xhx48', 'no_lang_code', 1, 'https://ror.org/02t6xhx48 Photozig (United States)'),
(9115, 'https://ror.org/03sjfjv85', 'no_lang_code', 1, 'https://ror.org/03sjfjv85 Phenomenome Discoveries (Canada)'),
(9116, 'https://ror.org/05mt84656', 'no_lang_code', 1, 'https://ror.org/05mt84656 Phifer Smith (United States)'),
(9117, 'https://ror.org/04s298h25', 'no_lang_code', 1, 'https://ror.org/04s298h25 CemeCon (Germany)'),
(9118, 'https://ror.org/03epr9q14', 'en', 1, 'https://ror.org/03epr9q14 Center for Culture and Experience Economy'),
(9119, 'https://ror.org/00np1gf38', 'en', 1, 'https://ror.org/00np1gf38 Philadelphia Fight'),
(9120, 'https://ror.org/0056x7z10', 'en', 1, 'https://ror.org/0056x7z10 Philander Smith College'),
(9121, 'https://ror.org/04ktqp584', 'no_lang_code', 1, 'https://ror.org/04ktqp584 Philips (United Kingdom)'),
(9122, 'https://ror.org/0576hnt37', 'fr', 1, 'https://ror.org/0576hnt37 Québec Science (Canada)'),
(9123, 'https://ror.org/048n5xe95', 'fr', 1, 'https://ror.org/048n5xe95 Centre d''Enseignement et de Recherches des Industries Alimentaires et Chimiques'),
(9124, 'https://ror.org/0562sdw81', 'en', 1, 'https://ror.org/0562sdw81 Phillips Academy'),
(9125, 'https://ror.org/05q707b66', 'no_lang_code', 1, 'https://ror.org/05q707b66 PhiloMetron (United States)'),
(9126, 'https://ror.org/05bh7ff72', 'fr', 1, 'https://ror.org/05bh7ff72 Centre d’Economie rurale'),
(9127, 'https://ror.org/02k284p70', 'en', 1, 'https://ror.org/02k284p70 Academy of Scientific Research and Technology'),
(9128, 'https://ror.org/03ej8cj80', 'en', 1, 'https://ror.org/03ej8cj80 Quincy College'),
(9129, 'https://ror.org/00wkf3d94', 'no_lang_code', 1, 'https://ror.org/00wkf3d94 Quintessence Biosciences (United States)'),
(9130, 'https://ror.org/01xpfz214', 'no_lang_code', 1, 'https://ror.org/01xpfz214 Team Industrial Services (United States)'),
(9131, 'https://ror.org/00tzw6r97', 'no_lang_code', 1, 'https://ror.org/00tzw6r97 RC Electronics (United States)'),
(9132, 'https://ror.org/033q64q73', 'en', 1, 'https://ror.org/033q64q73 Cypress Health Region'),
(9133, 'https://ror.org/04g1yv196', 'no_lang_code', 1, 'https://ror.org/04g1yv196 Ag-West Bio (Canada)'),
(9134, 'https://ror.org/03wr23878', 'no_lang_code', 1, 'https://ror.org/03wr23878 Greater Saskatoon Chamber of Commerce'),
(9135, 'https://ror.org/031a6wg34', 'en', 1, 'https://ror.org/031a6wg34 Saskatchewan Health Quality Council'),
(9136, 'https://ror.org/04nmkye62', 'en', 1, 'https://ror.org/04nmkye62 Heartland Health Region'),
(9137, 'https://ror.org/04bbk5g16', 'en', 1, 'https://ror.org/04bbk5g16 International Centre for Infectious Diseases'),
(9138, 'https://ror.org/01c66cc89', 'en', 1, 'https://ror.org/01c66cc89 Prince Albert Grand Council'),
(9139, 'https://ror.org/0071ct727', 'en', 1, 'https://ror.org/0071ct727 Saskatchewan Hospice Palliative Care Association'),
(9140, 'https://ror.org/02k9hra16', 'en', 1, 'https://ror.org/02k9hra16 Saskatchewan Seniors Mechanism'),
(9141, 'https://ror.org/03h9w6s56', 'no_lang_code', 1, 'https://ror.org/03h9w6s56 OptoSonics (United States)'),
(9142, 'https://ror.org/04nwrtj56', 'fr', 1, 'https://ror.org/04nwrtj56 Centre d’Étude et de Valorisation des Algues'),
(9143, 'https://ror.org/059q0e640', 'no_lang_code', 1, 'https://ror.org/059q0e640 Conciaricerca'),
(9144, 'https://ror.org/03hgf4f46', 'no_lang_code', 1, 'https://ror.org/03hgf4f46 Conecta'),
(9145, 'https://ror.org/0324dy645', 'no_lang_code', 1, 'https://ror.org/0324dy645 Radiant Creative Group'),
(9146, 'https://ror.org/00918g650', 'en', 1, 'https://ror.org/00918g650 Confederation of National Associations of Tanners and Dressers of the European Community'),
(9147, 'https://ror.org/01fev7c67', 'en', 1, 'https://ror.org/01fev7c67 Confederation of European Forest Owners Confédération Européenne des Propriétaires Forestiers'),
(9148, 'https://ror.org/02qwdzc67', 'en', 1, 'https://ror.org/02qwdzc67 Confederation of European Forest Owners'),
(9149, 'https://ror.org/05fr7hy44', 'no_lang_code', 1, 'https://ror.org/05fr7hy44 Radisys (Canada)'),
(9150, 'https://ror.org/05434fs92', 'en', 1, 'https://ror.org/05434fs92 Brookhaven Science Associates'),
(9151, 'https://ror.org/00qszmz13', 'no_lang_code', 1, 'https://ror.org/00qszmz13 Ion Beam Applications (United States)'),
(9152, 'https://ror.org/00j6a4d92', 'en', 1, 'https://ror.org/00j6a4d92 Conseil Européen des Fédérations de l''Industrie Chimique European Chemical Industry Council'),
(9153, 'https://ror.org/030ygs139', 'no_lang_code', 1, 'https://ror.org/030ygs139 RAGT Seeds (United Kingdom)'),
(9154, 'https://ror.org/03z9p8659', 'no_lang_code', 1, 'https://ror.org/03z9p8659 Accelopment (Switzerland)'),
(9155, 'https://ror.org/05rex1605', 'no_lang_code', 1, 'https://ror.org/05rex1605 3D Systems (United States)'),
(9156, 'https://ror.org/00b5ztt43', 'en', 1, 'https://ror.org/00b5ztt43 Rancho Santiago Community College District'),
(9157, 'https://ror.org/04ed5sj24', 'no_lang_code', 1, 'https://ror.org/04ed5sj24 Associated Compiler Experts (Netherlands)'),
(9158, 'https://ror.org/05bqk3m74', 'en', 1, 'https://ror.org/05bqk3m74 European Network of Science Centres and Museums'),
(9159, 'https://ror.org/00v315t24', 'no_lang_code', 1, 'https://ror.org/00v315t24 Biopsy Sciences (United States)'),
(9160, 'https://ror.org/044n33410', 'fr', 1, 'https://ror.org/044n33410 Association Française de Normalisation'),
(9161, 'https://ror.org/03sxmk145', 'fr', 1, 'https://ror.org/03sxmk145 Images & Réseaux'),
(9162, 'https://ror.org/05s184768', 'fr', 1, 'https://ror.org/05s184768 Centre de Documentation de Recherche et d''Expérimentation sur les Pollutions Accidentelles des Eaux Centre of Documentation, Research and Experimentation on Accidental Water Pollution'),
(9163, 'https://ror.org/00ht2ab73', 'fr', 1, 'https://ror.org/00ht2ab73 Association Nationale de la Recherche et de la Technologie'),
(9164, 'https://ror.org/03csd5507', 'no_lang_code', 1, 'https://ror.org/03csd5507 Morgan Stanley (United Kingdom)'),
(9165, 'https://ror.org/00tgj2z09', 'en', 1, 'https://ror.org/00tgj2z09 Association of Information Technology Companies of Northern Greece'),
(9166, 'https://ror.org/01w7ahq52', 'no_lang_code', 1, 'https://ror.org/01w7ahq52 ACRI Group (France)'),
(9167, 'https://ror.org/05k2ttb40', 'no_lang_code', 1, 'https://ror.org/05k2ttb40 ACTeon Environment (France)'),
(9168, 'https://ror.org/01rcr9030', 'no_lang_code', 1, 'https://ror.org/01rcr9030 Consorcio Regional de Transportes de Madrid'),
(9169, 'https://ror.org/018qep702', 'no_lang_code', 1, 'https://ror.org/018qep702 General Motors (Germany)'),
(9170, 'https://ror.org/03x9xd924', 'en', 1, 'https://ror.org/03x9xd924 Consortium GARR'),
(9171, 'https://ror.org/00ahe2k65', 'no_lang_code', 1, 'https://ror.org/00ahe2k65 Adasa (Spain)'),
(9172, 'https://ror.org/01g8hb609', 'it', 1, 'https://ror.org/01g8hb609 Consorzio Catania Ricerche'),
(9173, 'https://ror.org/04hn89439', 'la', 1, 'https://ror.org/04hn89439 Civita'),
(9174, 'https://ror.org/0359s0245', 'no_lang_code', 1, 'https://ror.org/0359s0245 Continental (Germany)'),
(9175, 'https://ror.org/04r2r8477', 'fr', 1, 'https://ror.org/04r2r8477 ADERA'),
(9176, 'https://ror.org/0081r6c67', 'no_lang_code', 1, 'https://ror.org/0081r6c67 Addcomp (Netherlands)'),
(9177, 'https://ror.org/05nns5525', 'no_lang_code', 1, 'https://ror.org/05nns5525 Adelard'),
(9178, 'https://ror.org/03cmtga52', 'no_lang_code', 1, 'https://ror.org/03cmtga52 IB Innovation Consortium (Italy)'),
(9179, 'https://ror.org/021e69h28', 'en', 1, 'https://ror.org/021e69h28 Adelphi Research'),
(9180, 'https://ror.org/00fd3za45', 'no_lang_code', 1, 'https://ror.org/00fd3za45 Adif (Spain)'),
(9181, 'https://ror.org/055kr0e44', 'no_lang_code', 1, 'https://ror.org/055kr0e44 ADVA Optical Networking (Germany)'),
(9182, 'https://ror.org/018mrwd51', 'no_lang_code', 1, 'https://ror.org/018mrwd51 Advanced Computer System (Italy)'),
(9183, 'https://ror.org/028zpwn78', 'fr', 1, 'https://ror.org/028zpwn78 Centre de Recherche et d’Information sur la Démocratie et l''Autonomie'),
(9184, 'https://ror.org/01dk0y732', 'no_lang_code', 1, 'https://ror.org/01dk0y732 Advanced Lightweight Engineering (Netherlands)'),
(9185, 'https://ror.org/01yfkcs46', 'it', 1, 'https://ror.org/01yfkcs46 CSI Piemonte'),
(9186, 'https://ror.org/042qbkd11', 'fr', 1, 'https://ror.org/042qbkd11 ADERSE Association for the Development of Education and Research on Corporate Social Responsibility Association pour le Développement de l''Enseignement et de la Recherche sur la Responsabilité Sociale de l''Entreprise'),
(9187, 'https://ror.org/03a9ezp59', 'no_lang_code', 1, 'https://ror.org/03a9ezp59 Adrianor'),
(9188, 'https://ror.org/02mx39t82', 'en', 1, 'https://ror.org/02mx39t82 Association Vinçotte Nuclear Nuclear Safety Institute'),
(9189, 'https://ror.org/04yvrj177', 'en', 1, 'https://ror.org/04yvrj177 European Society of Concurrent Enterprising Network Società Europea di Rete Concorrente Simultanea'),
(9190, 'https://ror.org/0580rag35', 'it', 1, 'https://ror.org/0580rag35 Frascati Scienza'),
(9191, 'https://ror.org/0153sam53', 'en', 1, 'https://ror.org/0153sam53 Centre d''Étude et de Recherches Vétérinaires et Agrochimiques Centrum voor Onderzoek in Diergeneeskunde en Agrochemie Veterinary and Agrochemical Research Centre'),
(9192, 'https://ror.org/02mx9d065', 'it', 1, 'https://ror.org/02mx9d065 Consorzio per la Ricerca e l''Educazione Permanente'),
(9193, 'https://ror.org/053t8wp47', 'no_lang_code', 1, 'https://ror.org/053t8wp47 Advanta Seeds (Netherlands)'),
(9194, 'https://ror.org/05xzvft44', 'it', 1, 'https://ror.org/05xzvft44 Associazione Nazionale Costruttori di Macchine e Stampi per Materie Plastiche e Gomma Assocomaplast Italian Plastics and Rubber Processing Machinery and Moulds Manufacturers'' Association'),
(9195, 'https://ror.org/01jgzbz02', 'no_lang_code', 1, 'https://ror.org/01jgzbz02 Advanticsys (Spain)'),
(9196, 'https://ror.org/0072j3s02', 'no_lang_code', 1, 'https://ror.org/0072j3s02 Aster'),
(9197, 'https://ror.org/00fs7vk14', 'en', 1, 'https://ror.org/00fs7vk14 Consorzio TRAIN TRAIN Consortium'),
(9198, 'https://ror.org/03jgd5t29', 'no_lang_code', 1, 'https://ror.org/03jgd5t29 Astri Polska (Poland)'),
(9199, 'https://ror.org/00p0qk069', 'en', 1, 'https://ror.org/00p0qk069 Center of Technology and Engineering for Nuclear Projects'),
(9200, 'https://ror.org/02r9beq73', 'no_lang_code', 1, 'https://ror.org/02r9beq73 Loccioni (Italy)'),
(9201, 'https://ror.org/03jvpn714', 'it', 1, 'https://ror.org/03jvpn714 Consorzio Roma Ricerche'),
(9202, 'https://ror.org/04sydm273', 'it', 1, 'https://ror.org/04sydm273 Sapienza Innovazione'),
(9203, 'https://ror.org/05v1dya15', 'fr', 1, 'https://ror.org/05v1dya15 Centre de Recherches et des Technologies des Eaux'),
(9204, 'https://ror.org/00kh6pc76', 'it', 1, 'https://ror.org/00kh6pc76 Consorzio Venezia Ricerche'),
(9205, 'https://ror.org/00ntawd75', 'no_lang_code', 1, 'https://ror.org/00ntawd75 Aeiforia (Italy)'),
(9206, 'https://ror.org/01m260238', 'no_lang_code', 1, 'https://ror.org/01m260238 Ateknea Solutions (Spain)'),
(9207, 'https://ror.org/054z5aj03', 'no_lang_code', 1, 'https://ror.org/054z5aj03 Ateknea Solutions (Hungary)'),
(9208, 'https://ror.org/00yfcva70', 'en', 1, 'https://ror.org/00yfcva70 AeroSpace and Defence Industries Association of Europe'),
(9209, 'https://ror.org/01ddxdd19', 'no_lang_code', 1, 'https://ror.org/01ddxdd19 Constructions Industrielles de la Méditerranée (France)'),
(9210, 'https://ror.org/04fj42v97', 'no_lang_code', 1, 'https://ror.org/04fj42v97 Consulectra (Germany)'),
(9211, 'https://ror.org/043z1y058', 'no_lang_code', 1, 'https://ror.org/043z1y058 atesio (Germany)'),
(9212, 'https://ror.org/02twc7963', 'en', 1, 'https://ror.org/02twc7963 Aerospace Valley'),
(9213, 'https://ror.org/05sejp741', 'no_lang_code', 1, 'https://ror.org/05sejp741 Consulintel (Spain)'),
(9214, 'https://ror.org/01qr26m26', 'en', 1, 'https://ror.org/01qr26m26 Sirris'),
(9215, 'https://ror.org/00r1m3r97', 'no_lang_code', 1, 'https://ror.org/00r1m3r97 Contento Trade (Italy)'),
(9216, 'https://ror.org/014xba990', 'no_lang_code', 1, 'https://ror.org/014xba990 Ateliers Nic. Georges (Luxembourg)'),
(9217, 'https://ror.org/05denqv03', 'fr', 1, 'https://ror.org/05denqv03 Centre de Robotique Intégrée d''Ile de France'),
(9218, 'https://ror.org/00nahqd12', 'no_lang_code', 1, 'https://ror.org/00nahqd12 Continental (France)'),
(9219, 'https://ror.org/031m32a82', 'en', 1, 'https://ror.org/031m32a82 Athens International Airport Διεθνής Αερολιμένας Αθηνών «Ελευθέριος Βενιζέλος»'),
(9220, 'https://ror.org/05tj22n53', 'en', 1, 'https://ror.org/05tj22n53 AGE Platform Europe'),
(9221, 'https://ror.org/05caz9x08', 'no_lang_code', 1, 'https://ror.org/05caz9x08 ATiT (Belgium)'),
(9222, 'https://ror.org/04wgpdw48', 'en', 1, 'https://ror.org/04wgpdw48 impulse.brussels'),
(9223, 'https://ror.org/01p6fxr81', 'it', 1, 'https://ror.org/01p6fxr81 Cooperativa Sociale COOSS Marche Onlus'),
(9224, 'https://ror.org/05prywb43', 'no_lang_code', 1, 'https://ror.org/05prywb43 Centre d''Expertise du Bâtiment et des Travaux Publics (France)'),
(9225, 'https://ror.org/00akjja53', 'no_lang_code', 1, 'https://ror.org/00akjja53 Atlas Elektronik (Germany)'),
(9226, 'https://ror.org/04q92cj22', 'no_lang_code', 1, 'https://ror.org/04q92cj22 Atmel (France)'),
(9227, 'https://ror.org/04cxvfq51', 'it', 1, 'https://ror.org/04cxvfq51 CoRiTeL'),
(9228, 'https://ror.org/055h5ke26', 'no_lang_code', 1, 'https://ror.org/055h5ke26 Centre for Computational Continuum Mechanics (Slovenia)'),
(9229, 'https://ror.org/02e1bds08', 'no_lang_code', 1, 'https://ror.org/02e1bds08 Corning (France)'),
(9230, 'https://ror.org/049b5zq94', 'no_lang_code', 1, 'https://ror.org/049b5zq94 Teledyne Technologies (France)'),
(9231, 'https://ror.org/03npzn484', 'no_lang_code', 1, 'https://ror.org/03npzn484 CorpoGen (Colombia)'),
(9232, 'https://ror.org/02hqx5v55', 'en', 1, 'https://ror.org/02hqx5v55 Center for Environment and Development for the Arab Region and Europe'),
(9233, 'https://ror.org/04w65cc78', 'en', 1, 'https://ror.org/04w65cc78 Centre For Irish and European Security'),
(9234, 'https://ror.org/03ym3qb63', 'en', 1, 'https://ror.org/03ym3qb63 Centre for Liberal Strategies'),
(9235, 'https://ror.org/05spr2d45', 'no_lang_code', 1, 'https://ror.org/05spr2d45 Ricardo AEA (Germany)'),
(9236, 'https://ror.org/00862c839', 'no_lang_code', 1, 'https://ror.org/00862c839 Ricardo AEA (Netherlands)'),
(9237, 'https://ror.org/04avxfe70', 'en', 1, 'https://ror.org/04avxfe70 Centre for Science, Society and Citizenship'),
(9238, 'https://ror.org/01bkx5q50', 'en', 1, 'https://ror.org/01bkx5q50 Centre for Technological Research of Crete'),
(9239, 'https://ror.org/00ek95971', 'no_lang_code', 1, 'https://ror.org/00ek95971 Cosytec (France)'),
(9240, 'https://ror.org/01mvsby80', 'pt', 1, 'https://ror.org/01mvsby80 Agencia de Inovacao Agência Nacional de Inovação'),
(9241, 'https://ror.org/015w2wb33', 'no_lang_code', 1, 'https://ror.org/015w2wb33 Atos (France)'),
(9242, 'https://ror.org/024sjxd14', 'pt', 1, 'https://ror.org/024sjxd14 Agencia para a Modernizacao Administrativa'),
(9243, 'https://ror.org/02ca2n422', 'no_lang_code', 1, 'https://ror.org/02ca2n422 Attana (Sweden)'),
(9244, 'https://ror.org/00q6d2f90', 'pt', 1, 'https://ror.org/00q6d2f90 Agencia Regional da Energia e Ambiente da Regiao Autonoma da Madeira Regional Agency for Energy and Environment of the Autonomous Region of Madeira'),
(9245, 'https://ror.org/00reard48', 'en', 1, 'https://ror.org/00reard48 Agency for Science, Innovation and Technology'),
(9246, 'https://ror.org/04y5a4d40', 'no_lang_code', 1, 'https://ror.org/04y5a4d40 Coventor (France)'),
(9247, 'https://ror.org/045072k07', 'no_lang_code', 1, 'https://ror.org/045072k07 Cowi (Denmark)'),
(9248, 'https://ror.org/04n8w0w18', 'en', 1, 'https://ror.org/04n8w0w18 Agency of Sustainable Development and Eurointegration'),
(9249, 'https://ror.org/02aykj333', 'no_lang_code', 1, 'https://ror.org/02aykj333 Audi (Germany)'),
(9250, 'https://ror.org/01pvjb298', 'fr', 1, 'https://ror.org/01pvjb298 Centre Interprofessionnel de Techniques d''Études de la Pollution Atmosphérique'),
(9251, 'https://ror.org/04n5j4q40', 'no_lang_code', 1, 'https://ror.org/04n5j4q40 CPL Scientific Publishing Services (United Kingdom)'),
(9252, 'https://ror.org/04yj3nc53', 'no_lang_code', 1, 'https://ror.org/04yj3nc53 Austrian Mobility Research Forschungsgesellschaft Mobilität'),
(9253, 'https://ror.org/00d9spg57', 'it', 1, 'https://ror.org/00d9spg57 Agenzia dei Trasporti Autoferrotranviari del Comune'),
(9254, 'https://ror.org/00p1cga29', 'en', 1, 'https://ror.org/00p1cga29 Austrian Society for Systems Engineering and Automation'),
(9255, 'https://ror.org/020ptwy31', 'it', 1, 'https://ror.org/020ptwy31 Agenzia per l''Italia Digitale'),
(9256, 'https://ror.org/03q1xez23', 'no_lang_code', 1, 'https://ror.org/03q1xez23 AustriaTech (Austria)'),
(9257, 'https://ror.org/01jy49h31', 'no_lang_code', 1, 'https://ror.org/01jy49h31 Autoliv (Sweden)'),
(9258, 'https://ror.org/04crag568', 'en', 1, 'https://ror.org/04crag568 Cranfield Impact Centre'),
(9259, 'https://ror.org/022zv0672', 'it', 1, 'https://ror.org/022zv0672 Institute for Environmental Protection and Research Istituto Superiore per la Protezione e la Ricerca Ambientale'),
(9260, 'https://ror.org/034zgem50', 'it', 1, 'https://ror.org/034zgem50 Agence spatiale italienne Agenzia Spaziale Italiana Agència Espacial Italiana Italian Space Agency'),
(9261, 'https://ror.org/001q3y090', 'no_lang_code', 1, 'https://ror.org/001q3y090 Creativa (Italy) Creativa Impresa di Comunicazione srl'),
(9262, 'https://ror.org/015bz4634', 'no_lang_code', 1, 'https://ror.org/015bz4634 Agfa-Gevaert (Belgium)'),
(9263, 'https://ror.org/012bn4v93', 'no_lang_code', 1, 'https://ror.org/012bn4v93 Agilent Technologies (Belgium)'),
(9264, 'https://ror.org/03b7x6y73', 'it', 1, 'https://ror.org/03b7x6y73 Autorità Portuale di Genova'),
(9265, 'https://ror.org/011k0sc34', 'no_lang_code', 1, 'https://ror.org/011k0sc34 Atlantia (Italy)'),
(9266, 'https://ror.org/00vvr2385', 'no_lang_code', 1, 'https://ror.org/00vvr2385 Agora Systems (Spain)'),
(9267, 'https://ror.org/05xw0wj25', 'en', 1, 'https://ror.org/05xw0wj25 French Clinical Research Infrastructure Network'),
(9268, 'https://ror.org/0340d8j26', 'it', 1, 'https://ror.org/0340d8j26 Avantea'),
(9269, 'https://ror.org/0379zp714', 'en', 1, 'https://ror.org/0379zp714 Croatian Chamber of Economy'),
(9270, 'https://ror.org/050wxgw75', 'no_lang_code', 1, 'https://ror.org/050wxgw75 ATEbank (Greece) Αγροτική Τράπεζα της Ελλάδος'),
(9271, 'https://ror.org/04kxnk485', 'no_lang_code', 1, 'https://ror.org/04kxnk485 CropDesign (Belgium)'),
(9272, 'https://ror.org/05eb99a58', 'fr', 1, 'https://ror.org/05eb99a58 Centre technique de l''Industrie Horlogère'),
(9273, 'https://ror.org/05txx3b87', 'fr', 1, 'https://ror.org/05txx3b87 Centre Technique des Industries Aérauliques et Thermiques'),
(9274, 'https://ror.org/04z3mgg43', 'no_lang_code', 1, 'https://ror.org/04z3mgg43 Cryptomathic (Denmark)'),
(9275, 'https://ror.org/0290x3782', 'no_lang_code', 1, 'https://ror.org/0290x3782 PV Crystalox Solar (United Kingdom)'),
(9276, 'https://ror.org/01q1paq98', 'no_lang_code', 1, 'https://ror.org/01q1paq98 Avanti (United Kingdom)'),
(9277, 'https://ror.org/03z749c37', 'no_lang_code', 1, 'https://ror.org/03z749c37 Agrifutur (Italy)'),
(9278, 'https://ror.org/0436qt863', 'no_lang_code', 1, 'https://ror.org/0436qt863 Agrobioinstitute'),
(9279, 'https://ror.org/001kp4y75', 'no_lang_code', 1, 'https://ror.org/001kp4y75 Avanzare (Spain)'),
(9280, 'https://ror.org/00xbray82', 'no_lang_code', 1, 'https://ror.org/00xbray82 CSK Food Enrichment (Netherlands)'),
(9281, 'https://ror.org/0506e5129', 'no_lang_code', 1, 'https://ror.org/0506e5129 Avaris (Sweden)'),
(9282, 'https://ror.org/05s7a1377', 'it', 1, 'https://ror.org/05s7a1377 Centro Ceramico Bologna'),
(9283, 'https://ror.org/04mezn076', 'no_lang_code', 1, 'https://ror.org/04mezn076 Avecia (United Kingdom)'),
(9284, 'https://ror.org/055dnb550', 'no_lang_code', 1, 'https://ror.org/055dnb550 Avia-GIS (Belgium)'),
(9285, 'https://ror.org/00tjjak64', 'en', 1, 'https://ror.org/00tjjak64 Centexbel'),
(9286, 'https://ror.org/03zvc0a12', 'no_lang_code', 1, 'https://ror.org/03zvc0a12 iKnowHow (Greece)'),
(9287, 'https://ror.org/03xxdgr65', 'no_lang_code', 1, 'https://ror.org/03xxdgr65 CSP Innovazione nelle ICT (Italy)'),
(9288, 'https://ror.org/0431b2v07', 'no_lang_code', 1, 'https://ror.org/0431b2v07 Air Liquide (France)'),
(9289, 'https://ror.org/00cpcby17', 'no_lang_code', 1, 'https://ror.org/00cpcby17 Centre Technique Cuir Chaussure Maroquinerie (France)'),
(9290, 'https://ror.org/01d9x6s51', 'fr', 1, 'https://ror.org/01d9x6s51 Centre Technique de l''Industrie du Bois'),
(9291, 'https://ror.org/04kwv2n58', 'no_lang_code', 1, 'https://ror.org/04kwv2n58 Airborne International (Netherlands)'),
(9292, 'https://ror.org/026h6d543', 'es', 1, 'https://ror.org/026h6d543 Ayuntamiento de Madrid'),
(9293, 'https://ror.org/03y17pk13', 'en', 1, 'https://ror.org/03y17pk13 Continua Health Alliance'),
(9294, 'https://ror.org/02vgejx91', 'no_lang_code', 1, 'https://ror.org/02vgejx91 Aircraft Research Association'),
(9295, 'https://ror.org/03dx0rh63', 'no_lang_code', 1, 'https://ror.org/03dx0rh63 Brussels Intercommunal Transport Company Maatschappij voor het Intercommunaal Vervoer te Brussel Société des Transports Intercommunaux de Bruxelles'),
(9296, 'https://ror.org/0209tfn22', 'no_lang_code', 1, 'https://ror.org/0209tfn22 Airial Conseil (France)'),
(9297, 'https://ror.org/0383dsh39', 'en', 1, 'https://ror.org/0383dsh39 Center for Usability Research and Engineering Centrum für die Untersuchung und Realisierung Endbenutzerorientierter Interaktiver Systeme'),
(9298, 'https://ror.org/05dkgpr24', 'no_lang_code', 1, 'https://ror.org/05dkgpr24 Roma Servizi per la Mobilità (Italy)'),
(9299, 'https://ror.org/02fwr8382', 'no_lang_code', 1, 'https://ror.org/02fwr8382 AITIA International (Hungary)'),
(9300, 'https://ror.org/00m6eb133', 'no_lang_code', 1, 'https://ror.org/00m6eb133 Custodix (Belgium)'),
(9301, 'https://ror.org/01cfgbq85', 'it', 1, 'https://ror.org/01cfgbq85 Azienda Sanitaria di Firenze'),
(9302, 'https://ror.org/0427pc986', 'no_lang_code', 1, 'https://ror.org/0427pc986 CVD Technologies (United Kingdom)'),
(9303, 'https://ror.org/014gfj521', 'no_lang_code', 1, 'https://ror.org/014gfj521 CyberColloids'),
(9304, 'https://ror.org/02adgag39', 'no_lang_code', 1, 'https://ror.org/02adgag39 Aixtron (Germany)'),
(9305, 'https://ror.org/05tve6796', 'no_lang_code', 1, 'https://ror.org/05tve6796 Cybion (Italy)'),
(9306, 'https://ror.org/04fv5g904', 'it', 1, 'https://ror.org/04fv5g904 Centre for Research in Pure and Applied Mathematics Centro di Ricerca in Matematica Pura ed Applicata'),
(9307, 'https://ror.org/022r8xe61', 'es', 1, 'https://ror.org/022r8xe61 Centro Español de Metrología'),
(9308, 'https://ror.org/0286eck14', 'it', 1, 'https://ror.org/0286eck14 Istituto Agronomico Mediterraneo di Bari Mediterranean Agronomic Institute of Bari'),
(9309, 'https://ror.org/02en7tm18', 'no_lang_code', 1, 'https://ror.org/02en7tm18 Cyntelix (Netherlands)'),
(9310, 'https://ror.org/00wscys22', 'no_lang_code', 1, 'https://ror.org/00wscys22 Innovhub (Italy)'),
(9311, 'https://ror.org/0037fa039', 'no_lang_code', 1, 'https://ror.org/0037fa039 Avantune (Italy)'),
(9312, 'https://ror.org/043t8em33', 'no_lang_code', 1, 'https://ror.org/043t8em33 Stollmann (Germany)'),
(9313, 'https://ror.org/04459n726', 'no_lang_code', 1, 'https://ror.org/04459n726 Dillinger Hütte (Germany)'),
(9314, 'https://ror.org/02s6bef14', 'no_lang_code', 1, 'https://ror.org/02s6bef14 Azienda Trasporti Consorziali di Bologna'),
(9315, 'https://ror.org/02qs5ar77', 'no_lang_code', 1, 'https://ror.org/02qs5ar77 Azienda Trasporti Milanesi (Italy)'),
(9316, 'https://ror.org/02m5haa59', 'cs', 1, 'https://ror.org/02m5haa59 Czech Metrology Institute Český Metrologický Institut'),
(9317, 'https://ror.org/017ctmv39', 'no_lang_code', 1, 'https://ror.org/017ctmv39 AkzoNobel (Netherlands)'),
(9318, 'https://ror.org/02p1xqf92', 'no_lang_code', 1, 'https://ror.org/02p1xqf92 Centro Laser'),
(9319, 'https://ror.org/029fngx98', 'it', 1, 'https://ror.org/029fngx98 Servizio sanitario dell''Emilia-Romagna'),
(9320, 'https://ror.org/00prce717', 'no_lang_code', 1, 'https://ror.org/00prce717 Daithi O’Murchu Marine Research Station'),
(9321, 'https://ror.org/00mp87510', 'no_lang_code', 1, 'https://ror.org/00mp87510 BPE Unternehmensbeteiligungen (Germany)'),
(9322, 'https://ror.org/05njyag92', 'en', 1, 'https://ror.org/05njyag92 Academy of Science of Turkmenistan Академия наук Туркмении'),
(9323, 'https://ror.org/00nn73a81', 'es', 1, 'https://ror.org/00nn73a81 Centro Nacional de Información Geográfica'),
(9324, 'https://ror.org/04x6e9478', 'en', 1, 'https://ror.org/04x6e9478 Baum Consult Bundesdeutsche Arbeitskreis für Umweltbewußtes Management e.V'),
(9325, 'https://ror.org/02pft9k47', 'es', 1, 'https://ror.org/02pft9k47 Centro Nacional de Sanidad Agropecuaria'),
(9326, 'https://ror.org/04e6aft63', 'no_lang_code', 1, 'https://ror.org/04e6aft63 Danaos (Cyprus)'),
(9327, 'https://ror.org/05pgmcc48', 'no_lang_code', 1, 'https://ror.org/05pgmcc48 Nokia (Austria)'),
(9328, 'https://ror.org/04ynvhd06', 'it', 1, 'https://ror.org/04ynvhd06 Centro RIcerche Plast-Optica'),
(9329, 'https://ror.org/012xttn04', 'no_lang_code', 1, 'https://ror.org/012xttn04 Centro Ricerche Produzioni Animali'),
(9330, 'https://ror.org/00ngjbr32', 'no_lang_code', 1, 'https://ror.org/00ngjbr32 Nokia (Spain)'),
(9331, 'https://ror.org/00cp8tk34', 'no_lang_code', 1, 'https://ror.org/00cp8tk34 Infor (Netherlands)'),
(9332, 'https://ror.org/05m2c7461', 'it', 1, 'https://ror.org/05m2c7461 Centro Studi Luca d’Agliano'),
(9333, 'https://ror.org/00beq0325', 'pt', 1, 'https://ror.org/00beq0325 Centro Tecnológico do Calçado de Portugal'),
(9334, 'https://ror.org/039pgdx28', 'no_lang_code', 1, 'https://ror.org/039pgdx28 Danfoss (Denmark)'),
(9335, 'https://ror.org/04wsrnw24', 'no_lang_code', 1, 'https://ror.org/04wsrnw24 Nokia (Italy)'),
(9336, 'https://ror.org/02242hs05', 'pt', 1, 'https://ror.org/02242hs05 Centro Tecnológico das Indústrias do Couro Leather Technological Center'),
(9337, 'https://ror.org/01fqgdy56', 'en', 1, 'https://ror.org/01fqgdy56 Baikov Institute of Metallurgy and Materials Science Федеральное государственное бюджетное учреждение науки Институт металлургии и материаловедения им. А.А. Байкова Российской академии наук'),
(9338, 'https://ror.org/011zg5725', 'pt', 1, 'https://ror.org/011zg5725 Centro Tecnológico das Indústrias Têxtil e do Vestuário de Portugal Technological Centre for the Portuguese Textile and Clothing Industry'),
(9339, 'https://ror.org/029wcr898', 'it', 1, 'https://ror.org/029wcr898 Centro Tessile Cotoniero e Abbigliamento'),
(9340, 'https://ror.org/04a87c513', 'it', 1, 'https://ror.org/04a87c513 CentroScienza Onlus'),
(9341, 'https://ror.org/051054y87', 'no_lang_code', 1, 'https://ror.org/051054y87 DuPont (Denmark)'),
(9342, 'https://ror.org/0212gej90', 'no_lang_code', 1, 'https://ror.org/0212gej90 ON Semiconductor (Belgium)'),
(9343, 'https://ror.org/01a3sz723', 'ro', 1, 'https://ror.org/01a3sz723 Center of International Projects Centrul de Proiecte Internaţionale'),
(9344, 'https://ror.org/01kys6733', 'en', 1, 'https://ror.org/01kys6733 Danish Emergency Management Agency'),
(9345, 'https://ror.org/05t6zq805', 'pl', 1, 'https://ror.org/05t6zq805 Centrum Techniki Okrętowej Ship Design and Research Centre'),
(9346, 'https://ror.org/04z8wqp73', 'no_lang_code', 1, 'https://ror.org/04z8wqp73 Baker Hughes (Germany)'),
(9347, 'https://ror.org/03k9mxr81', 'no_lang_code', 1, 'https://ror.org/03k9mxr81 Danish Gas Technology Centre (Denmark)'),
(9348, 'https://ror.org/00bjwbm70', 'en', 1, 'https://ror.org/00bjwbm70 International Society for Optical Engineering'),
(9349, 'https://ror.org/0456wz313', 'no_lang_code', 1, 'https://ror.org/0456wz313 BAMO International (France)'),
(9350, 'https://ror.org/02x79tw02', 'no_lang_code', 1, 'https://ror.org/02x79tw02 ALD Vacuum Technologies (Germany)'),
(9351, 'https://ror.org/04zwykt37', 'no_lang_code', 1, 'https://ror.org/04zwykt37 Ceramiques Techniques et Industrielles (France)'),
(9352, 'https://ror.org/00nkkkz19', 'no_lang_code', 1, 'https://ror.org/00nkkkz19 CeramTec (Germany)'),
(9353, 'https://ror.org/032s56e02', 'no_lang_code', 1, 'https://ror.org/032s56e02 Ceratizit (Luxembourg)'),
(9354, 'https://ror.org/042pd7533', 'en', 1, 'https://ror.org/042pd7533 British Association of Public Safety Communications Officials'),
(9355, 'https://ror.org/02msvh720', 'no_lang_code', 1, 'https://ror.org/02msvh720 SoftBank Robotics (France)'),
(9356, 'https://ror.org/05gcat543', 'no_lang_code', 1, 'https://ror.org/05gcat543 Barco (Belgium)'),
(9357, 'https://ror.org/03tvk8g25', 'no_lang_code', 1, 'https://ror.org/03tvk8g25 CertiCon (Czechia)'),
(9358, 'https://ror.org/02magnn81', 'no_lang_code', 1, 'https://ror.org/02magnn81 CESI (Italy)'),
(9359, 'https://ror.org/01tbwpy88', 'en', 1, 'https://ror.org/01tbwpy88 Centre for European Security Strategies'),
(9360, 'https://ror.org/0165dap44', 'no_lang_code', 1, 'https://ror.org/0165dap44 CF consulting Finanziamenti Unione Europea'),
(9361, 'https://ror.org/01tfkms29', 'no_lang_code', 1, 'https://ror.org/01tfkms29 Alfamicro (Portugal)'),
(9362, 'https://ror.org/00298sd14', 'no_lang_code', 1, 'https://ror.org/00298sd14 Battelle Ingenieurtechnik (Germany)'),
(9363, 'https://ror.org/00n87rr37', 'en', 1, 'https://ror.org/00n87rr37 Danish Technological Institute'),
(9364, 'https://ror.org/003518063', 'no_lang_code', 1, 'https://ror.org/003518063 ComputIT (Norway)'),
(9365, 'https://ror.org/0116mgp30', 'no_lang_code', 1, 'https://ror.org/0116mgp30 ALFA PI (Greece)'),
(9366, 'https://ror.org/00a34rj81', 'no_lang_code', 1, 'https://ror.org/00a34rj81 Bax & Willems'),
(9367, 'https://ror.org/04xezfk45', 'no_lang_code', 1, 'https://ror.org/04xezfk45 CFS Engineering (Switzerland)'),
(9368, 'https://ror.org/03ptrx272', 'no_lang_code', 1, 'https://ror.org/03ptrx272 CGI (Netherlands)'),
(9369, 'https://ror.org/02r50zr04', 'no_lang_code', 1, 'https://ror.org/02r50zr04 Algoritmos Procesos y Disenos (Spain)'),
(9370, 'https://ror.org/05e08p639', 'no_lang_code', 1, 'https://ror.org/05e08p639 Algosystems (Greece)'),
(9371, 'https://ror.org/01c5aqt35', 'no_lang_code', 1, 'https://ror.org/01c5aqt35 Danone (Netherlands)'),
(9372, 'https://ror.org/058g9xk41', 'fr', 1, 'https://ror.org/058g9xk41 Chambre de Commerce et d''Industrie de Bourgogne Franche-Comté'),
(9373, 'https://ror.org/05nc4q646', 'fr', 1, 'https://ror.org/05nc4q646 Charbonnages de France'),
(9374, 'https://ror.org/02ft67b52', 'no_lang_code', 1, 'https://ror.org/02ft67b52 NCC (Denmark)'),
(9375, 'https://ror.org/02as34v38', 'no_lang_code', 1, 'https://ror.org/02as34v38 Ørsted (Denmark)'),
(9376, 'https://ror.org/036d9xe15', 'no_lang_code', 1, 'https://ror.org/036d9xe15 Ceramics and Refractories Technological Development Company (Greece)'),
(9377, 'https://ror.org/05m8ec563', 'en', 1, 'https://ror.org/05m8ec563 All Russia Petroleum Research Exploration Institute Всероссийский нефтяной научно-исследовательский геологоразведочный институт'),
(9378, 'https://ror.org/00dkszm12', 'no_lang_code', 1, 'https://ror.org/00dkszm12 Dantec Dynamics (Germany)'),
(9379, 'https://ror.org/02rchr797', 'no_lang_code', 1, 'https://ror.org/02rchr797 Alma Consulting Group'),
(9380, 'https://ror.org/05af63f35', 'no_lang_code', 1, 'https://ror.org/05af63f35 Almende (Netherlands)'),
(9381, 'https://ror.org/02f12sz84', 'no_lang_code', 1, 'https://ror.org/02f12sz84 3M (France)'),
(9382, 'https://ror.org/059spgx09', 'no_lang_code', 1, 'https://ror.org/059spgx09 Alpha MOS (France)'),
(9383, 'https://ror.org/021nxch78', 'no_lang_code', 1, 'https://ror.org/021nxch78 BCT (Germany)'),
(9384, 'https://ror.org/00zbjch89', 'no_lang_code', 1, 'https://ror.org/00zbjch89 Beacon Tech (Israel)'),
(9385, 'https://ror.org/042f0eq65', 'fr', 1, 'https://ror.org/042f0eq65 Conseil Economique et social de la Region de Bruxelles Capitale Conseil économique et social de la Région de Bruxelles-Capitale Economische en Sociale Raad voor het Brussels Hoofdstedelijk Gewest'),
(9386, 'https://ror.org/00sehw297', 'no_lang_code', 1, 'https://ror.org/00sehw297 Beactica (Sweden)'),
(9387, 'https://ror.org/05t6jk967', 'de', 1, 'https://ror.org/05t6jk967 Competence Centre for Electrochemical Surface Technology Kompetenzzentrum für elektrochemische Oberflächentechnologie'),
(9388, 'https://ror.org/022cm1781', 'no_lang_code', 1, 'https://ror.org/022cm1781 Alpha Thames Subsea (United Kingdom)'),
(9389, 'https://ror.org/00d5z2352', 'no_lang_code', 1, 'https://ror.org/00d5z2352 Bekaert (Belgium)'),
(9390, 'https://ror.org/017977v32', 'no_lang_code', 1, 'https://ror.org/017977v32 Alstom (Switzerland)'),
(9391, 'https://ror.org/0432qbr75', 'no_lang_code', 1, 'https://ror.org/0432qbr75 Alstom (Belgium)'),
(9392, 'https://ror.org/03yee2588', 'no_lang_code', 1, 'https://ror.org/03yee2588 BELECTRIC (Germany)'),
(9393, 'https://ror.org/00stexf29', 'no_lang_code', 1, 'https://ror.org/00stexf29 Alstom (Germany)'),
(9394, 'https://ror.org/02kwk6c15', 'en', 1, 'https://ror.org/02kwk6c15 International Management Institute'),
(9395, 'https://ror.org/05863t818', 'no_lang_code', 1, 'https://ror.org/05863t818 Alstom (Sweden)'),
(9396, 'https://ror.org/04qd5p107', 'no_lang_code', 1, 'https://ror.org/04qd5p107 ALTA (Italy)'),
(9397, 'https://ror.org/03f6d5g58', 'no_lang_code', 1, 'https://ror.org/03f6d5g58 Vita Group (United Kingdom)'),
(9398, 'https://ror.org/04gwhcf14', 'no_lang_code', 1, 'https://ror.org/04gwhcf14 BearingPoint (Austria)'),
(9399, 'https://ror.org/04vkg5n49', 'no_lang_code', 1, 'https://ror.org/04vkg5n49 Tre Altamira (Spain)'),
(9400, 'https://ror.org/03khwv936', 'no_lang_code', 1, 'https://ror.org/03khwv936 Chimar Hellas (Greece)'),
(9401, 'https://ror.org/0385nmy68', 'en', 1, 'https://ror.org/0385nmy68 Ministry of Industry and Information Technology 中华人民共和国工业和信息化部'),
(9402, 'https://ror.org/01w5zd681', 'no_lang_code', 1, 'https://ror.org/01w5zd681 Belgonucleaire (Belgium)'),
(9403, 'https://ror.org/03vw44013', 'no_lang_code', 1, 'https://ror.org/03vw44013 Belgoprocess (Belgium)'),
(9404, 'https://ror.org/03w9j7q30', 'no_lang_code', 1, 'https://ror.org/03w9j7q30 Databank (Italy)'),
(9405, 'https://ror.org/01mv6bt66', 'no_lang_code', 1, 'https://ror.org/01mv6bt66 Chr. Hansen (Denmark)'),
(9406, 'https://ror.org/03fkdmb14', 'no_lang_code', 1, 'https://ror.org/03fkdmb14 Beneq (Finland)'),
(9407, 'https://ror.org/04g046t84', 'no_lang_code', 1, 'https://ror.org/04g046t84 Dbe Technology (Germany)'),
(9408, 'https://ror.org/03ef7m045', 'no_lang_code', 1, 'https://ror.org/03ef7m045 Bergamo Technologies (Poland)');
INSERT INTO `rors` VALUES
(9409, 'https://ror.org/01wwajd53', 'no_lang_code', 1, 'https://ror.org/01wwajd53 OHB (Italy)'),
(9410, 'https://ror.org/00p66nq73', 'no_lang_code', 1, 'https://ror.org/00p66nq73 Amphos 21 (Spain)'),
(9411, 'https://ror.org/05dqa1196', 'no_lang_code', 1, 'https://ror.org/05dqa1196 CIM-mes Project (Poland)'),
(9412, 'https://ror.org/00s8fdk31', 'no_lang_code', 1, 'https://ror.org/00s8fdk31 Decom (Slovakia)'),
(9413, 'https://ror.org/05fm74681', 'no_lang_code', 1, 'https://ror.org/05fm74681 CIRCA Group Europe (Ireland)'),
(9414, 'https://ror.org/019ejf125', 'no_lang_code', 1, 'https://ror.org/019ejf125 Ormazabal (Switzerland)'),
(9415, 'https://ror.org/02epq7t62', 'no_lang_code', 1, 'https://ror.org/02epq7t62 Amplitude Systèmes (France)'),
(9416, 'https://ror.org/02cqwf592', 'no_lang_code', 1, 'https://ror.org/02cqwf592 Analysis and Monitoring of Environmental Risk'),
(9417, 'https://ror.org/003v2c511', 'no_lang_code', 1, 'https://ror.org/003v2c511 Allgemeine Elektrizitäts Gesellschaft (Germany) General Electricity Company'),
(9418, 'https://ror.org/0106nz743', 'no_lang_code', 1, 'https://ror.org/0106nz743 Cisco Systems (Netherlands)'),
(9419, 'https://ror.org/03vz6gs79', 'no_lang_code', 1, 'https://ror.org/03vz6gs79 AMS (Austria)'),
(9420, 'https://ror.org/01b7jd097', 'ga', 1, 'https://ror.org/01b7jd097 An Garda Síochána'),
(9421, 'https://ror.org/02rb8qp97', 'no_lang_code', 1, 'https://ror.org/02rb8qp97 CISSOID (Belgium)'),
(9422, 'https://ror.org/00ckx8y08', 'no_lang_code', 1, 'https://ror.org/00ckx8y08 Berliner Nanotest und Design'),
(9423, 'https://ror.org/050t9mr22', 'no_lang_code', 1, 'https://ror.org/050t9mr22 Agilent Technologies (Denmark)'),
(9424, 'https://ror.org/00svj4w50', 'no_lang_code', 1, 'https://ror.org/00svj4w50 ANA Aeroportos de Portugal (Portugal)'),
(9425, 'https://ror.org/03g7c9017', 'no_lang_code', 1, 'https://ror.org/03g7c9017 Berliner Verkehrsbetriebe (Germany)'),
(9426, 'https://ror.org/05htnwe41', 'no_lang_code', 1, 'https://ror.org/05htnwe41 ANALYSIS System Research High-Tech (Greece)'),
(9427, 'https://ror.org/055cet093', 'no_lang_code', 1, 'https://ror.org/055cet093 Clay Technology (Sweden)'),
(9428, 'https://ror.org/05s49hg54', 'no_lang_code', 1, 'https://ror.org/05s49hg54 Cross-Linked Enzyme Aggregates Technologies (Netherlands)'),
(9429, 'https://ror.org/05kx0fh55', 'no_lang_code', 1, 'https://ror.org/05kx0fh55 Clemessy (France) Eiffage Énergie Systèmes - Clemessy'),
(9430, 'https://ror.org/0526axj32', 'no_lang_code', 1, 'https://ror.org/0526axj32 e-Trikala (Greece)'),
(9431, 'https://ror.org/04edqzt97', 'en', 1, 'https://ror.org/04edqzt97 Cloud Security Alliance'),
(9432, 'https://ror.org/05jnac203', 'no_lang_code', 1, 'https://ror.org/05jnac203 Anaxomics (Spain)'),
(9433, 'https://ror.org/03gzyhr79', 'no_lang_code', 1, 'https://ror.org/03gzyhr79 CNet (Sweden)'),
(9434, 'https://ror.org/03gkzwc92', 'no_lang_code', 1, 'https://ror.org/03gkzwc92 Ancitel (Italy)'),
(9435, 'https://ror.org/055k7wq83', 'no_lang_code', 1, 'https://ror.org/055k7wq83 Chemtex (Italy)'),
(9436, 'https://ror.org/039sb8791', 'no_lang_code', 1, 'https://ror.org/039sb8791 Aptiv (Germany)'),
(9437, 'https://ror.org/04z69s492', 'no_lang_code', 1, 'https://ror.org/04z69s492 Andritz (Austria)'),
(9438, 'https://ror.org/04w5tkp91', 'no_lang_code', 1, 'https://ror.org/04w5tkp91 CINAR (United Kingdom)'),
(9439, 'https://ror.org/04qcrp855', 'no_lang_code', 1, 'https://ror.org/04qcrp855 Andritz (Switzerland)'),
(9440, 'https://ror.org/012v3yp34', 'no_lang_code', 1, 'https://ror.org/012v3yp34 CINAR (Greece)'),
(9441, 'https://ror.org/0409nay36', 'no_lang_code', 1, 'https://ror.org/0409nay36 Aptiv (Italy)'),
(9442, 'https://ror.org/03ax7hn31', 'no_lang_code', 1, 'https://ror.org/03ax7hn31 BHP Laboratories'),
(9443, 'https://ror.org/02ab50f57', 'it', 1, 'https://ror.org/02ab50f57 Confederazione Italiana Sindacati Lavoratori Italian Confederation of Workers'' Trade Unions'),
(9444, 'https://ror.org/03whc3s66', 'no_lang_code', 1, 'https://ror.org/03whc3s66 Delta (Denmark)'),
(9445, 'https://ror.org/04094ne36', 'no_lang_code', 1, 'https://ror.org/04094ne36 Deltamarin (Finland)'),
(9446, 'https://ror.org/0489hqz65', 'no_lang_code', 1, 'https://ror.org/0489hqz65 Coatema (Germany)'),
(9447, 'https://ror.org/05wy76019', 'no_lang_code', 1, 'https://ror.org/05wy76019 Demar Laser (Netherlands)'),
(9448, 'https://ror.org/00zffgs92', 'no_lang_code', 1, 'https://ror.org/00zffgs92 Anotec Engineering (Spain)'),
(9449, 'https://ror.org/03m4peq39', 'en', 1, 'https://ror.org/03m4peq39 Coatings Research Institute'),
(9450, 'https://ror.org/042any649', 'no_lang_code', 1, 'https://ror.org/042any649 ArcelorMittal (Belgium)'),
(9451, 'https://ror.org/03t5x5269', 'no_lang_code', 1, 'https://ror.org/03t5x5269 Cogne (Italy)'),
(9452, 'https://ror.org/01k6bda33', 'no_lang_code', 1, 'https://ror.org/01k6bda33 Colibri (Netherlands)'),
(9453, 'https://ror.org/025h55v52', 'en', 1, 'https://ror.org/025h55v52 Collections Trust'),
(9454, 'https://ror.org/00j39nx61', 'no_lang_code', 1, 'https://ror.org/00j39nx61 Collegium Budapest'),
(9455, 'https://ror.org/03m91y692', 'no_lang_code', 1, 'https://ror.org/03m91y692 Coloplast (Denmark)'),
(9456, 'https://ror.org/00xq5mb92', 'no_lang_code', 1, 'https://ror.org/00xq5mb92 Color Line (Norway)'),
(9457, 'https://ror.org/02dxbtx84', 'no_lang_code', 1, 'https://ror.org/02dxbtx84 Colorobbia (Italy)'),
(9458, 'https://ror.org/00jeje538', 'no_lang_code', 1, 'https://ror.org/00jeje538 Comarch (Poland)'),
(9459, 'https://ror.org/044pe5q70', 'no_lang_code', 1, 'https://ror.org/044pe5q70 Pera (Denmark)'),
(9460, 'https://ror.org/00ca7az78', 'no_lang_code', 1, 'https://ror.org/00ca7az78 BIC Bratislava (Slovakia)'),
(9461, 'https://ror.org/009cgyv75', 'it', 1, 'https://ror.org/009cgyv75 Consorzio Multi-Ente per la promozione e l''adozione di Tecnologie di calcolo Avanzato'),
(9462, 'https://ror.org/04kark913', 'no_lang_code', 1, 'https://ror.org/04kark913 MerLion Pharma (Germany)'),
(9463, 'https://ror.org/00dmq5618', 'no_lang_code', 1, 'https://ror.org/00dmq5618 Compagnie Maritime d''Expertises (France)'),
(9464, 'https://ror.org/03e93v570', 'no_lang_code', 1, 'https://ror.org/03e93v570 BIO Intelligence Service (France)'),
(9465, 'https://ror.org/0315a7e71', 'en', 1, 'https://ror.org/0315a7e71 European Coordination Committee of the Radiological, Electromedical and Healthcare IT Industry'),
(9466, 'https://ror.org/016a12m25', 'fr', 1, 'https://ror.org/016a12m25 Comité Scientifique et Technique des Industries Climatiques'),
(9467, 'https://ror.org/05nvmrj72', 'no_lang_code', 1, 'https://ror.org/05nvmrj72 BioAge (Italy)'),
(9468, 'https://ror.org/03qwpn290', 'no_lang_code', 1, 'https://ror.org/03qwpn290 Johnson & Johnson (United Kingdom)'),
(9469, 'https://ror.org/00t3x1b09', 'no_lang_code', 1, 'https://ror.org/00t3x1b09 Bioazul (Spain)'),
(9470, 'https://ror.org/00tm6q440', 'no_lang_code', 1, 'https://ror.org/00tm6q440 DeskArtes (Finland)'),
(9471, 'https://ror.org/0325nt175', 'no_lang_code', 1, 'https://ror.org/0325nt175 Biobase (Germany)'),
(9472, 'https://ror.org/01vjc3s29', 'no_lang_code', 1, 'https://ror.org/01vjc3s29 AOA Apparatebau Gauting (Germany)'),
(9473, 'https://ror.org/007n8tg79', 'no_lang_code', 1, 'https://ror.org/007n8tg79 DanSteel (Denmark)'),
(9474, 'https://ror.org/01pq15308', 'de', 1, 'https://ror.org/01pq15308 Biochemisches Institut für Umweltcarcinogene'),
(9475, 'https://ror.org/022c7bq15', 'no_lang_code', 1, 'https://ror.org/022c7bq15 AOS Products (United Kingdom)'),
(9476, 'https://ror.org/04q6x6869', 'no_lang_code', 1, 'https://ror.org/04q6x6869 APC Composite (Sweden)'),
(9477, 'https://ror.org/045b8kj71', 'no_lang_code', 1, 'https://ror.org/045b8kj71 Bioclear Earth (Netherlands)'),
(9478, 'https://ror.org/002fen565', 'no_lang_code', 1, 'https://ror.org/002fen565 BC Platforms (Finland)'),
(9479, 'https://ror.org/0046pcp30', 'no_lang_code', 1, 'https://ror.org/0046pcp30 Gwent Group (United Kingdom)'),
(9480, 'https://ror.org/02ptz5951', 'en', 1, 'https://ror.org/02ptz5951 Gemeinsame Forschungsstelle Joint Research Centre'),
(9481, 'https://ror.org/031h48w98', 'no_lang_code', 1, 'https://ror.org/031h48w98 AMS (Germany)'),
(9482, 'https://ror.org/035za2858', 'no_lang_code', 1, 'https://ror.org/035za2858 Biofaction (Austria)'),
(9483, 'https://ror.org/0432q4w56', 'en', 1, 'https://ror.org/0432q4w56 BioInfoBank Institute'),
(9484, 'https://ror.org/02weyc170', 'no_lang_code', 1, 'https://ror.org/02weyc170 AquaBioTech Group (Malta)'),
(9485, 'https://ror.org/05dybt340', 'en', 1, 'https://ror.org/05dybt340 Centre de Recherches sur les Communications Canada Communications Research Centre Canada'),
(9486, 'https://ror.org/01y32sp40', 'no_lang_code', 1, 'https://ror.org/01y32sp40 Europäisches Centrum für Mechatronik (Germany)'),
(9487, 'https://ror.org/03bdeb788', 'no_lang_code', 1, 'https://ror.org/03bdeb788 Community of European Shipyards Associations'),
(9488, 'https://ror.org/04n8fbz89', 'no_lang_code', 1, 'https://ror.org/04n8fbz89 AstraZeneca (Canada)'),
(9489, 'https://ror.org/03q1j4a15', 'no_lang_code', 1, 'https://ror.org/03q1j4a15 Biolution (Austria)'),
(9490, 'https://ror.org/01595ga64', 'no_lang_code', 1, 'https://ror.org/01595ga64 Cowi (Norway)'),
(9491, 'https://ror.org/0150tj573', 'de', 1, 'https://ror.org/0150tj573 Deutsche Bundespost German Federal Post Office'),
(9492, 'https://ror.org/03epbnb34', 'no_lang_code', 1, 'https://ror.org/03epbnb34 AquaTT (Ireland)'),
(9493, 'https://ror.org/03s48wx79', 'en', 1, 'https://ror.org/03s48wx79 Aquitaine Europe Communication'),
(9494, 'https://ror.org/00n2d9253', 'no_lang_code', 1, 'https://ror.org/00n2d9253 Veolia (Sweden)'),
(9495, 'https://ror.org/02bez8p50', 'no_lang_code', 1, 'https://ror.org/02bez8p50 ArcelorMittal (Luxembourg)'),
(9496, 'https://ror.org/04enkmp14', 'no_lang_code', 1, 'https://ror.org/04enkmp14 NAMSA (France)'),
(9497, 'https://ror.org/00evgsc59', 'no_lang_code', 1, 'https://ror.org/00evgsc59 Babcock & Wilcox (Denmark)'),
(9498, 'https://ror.org/05fynv140', 'no_lang_code', 1, 'https://ror.org/05fynv140 Transelectrica (Romania)'),
(9499, 'https://ror.org/05b3zn620', 'no_lang_code', 1, 'https://ror.org/05b3zn620 Biomedal (Spain)'),
(9500, 'https://ror.org/04efgte12', 'no_lang_code', 1, 'https://ror.org/04efgte12 Gesellschaft für Nuklear Service (Germany)'),
(9501, 'https://ror.org/050jzv373', 'en', 1, 'https://ror.org/050jzv373 AEE Institute for Sustainable Technologies'),
(9502, 'https://ror.org/00r06ws05', 'en', 1, 'https://ror.org/00r06ws05 Club Young Scientists'),
(9503, 'https://ror.org/039r8xz84', 'en', 1, 'https://ror.org/039r8xz84 Arcadia International'),
(9504, 'https://ror.org/02h8qh795', 'no_lang_code', 1, 'https://ror.org/02h8qh795 Bioneer (Denmark)'),
(9505, 'https://ror.org/016p00020', 'no_lang_code', 1, 'https://ror.org/016p00020 Computerised Information Technology (United Kingdom)'),
(9506, 'https://ror.org/02z0n2g81', 'no_lang_code', 1, 'https://ror.org/02z0n2g81 Arçelik (Turkey)'),
(9507, 'https://ror.org/01ey27e46', 'no_lang_code', 1, 'https://ror.org/01ey27e46 Biopac (United Kingdom)'),
(9508, 'https://ror.org/01n7gem85', 'de', 1, 'https://ror.org/01n7gem85 Deutsche Nationalbibliothek German National Library'),
(9509, 'https://ror.org/03prr3914', 'en', 1, 'https://ror.org/03prr3914 Community of Mediterranean Universities'),
(9510, 'https://ror.org/045tw8497', 'no_lang_code', 1, 'https://ror.org/045tw8497 Archer Technicoat Limited (United Kingdom)'),
(9511, 'https://ror.org/01950ke92', 'no_lang_code', 1, 'https://ror.org/01950ke92 Concentration Heat and Momentum (United Kingdom)'),
(9512, 'https://ror.org/0232wt504', 'no_lang_code', 1, 'https://ror.org/0232wt504 RAG Aktiengesellschaft (Germany)'),
(9513, 'https://ror.org/0243qcr03', 'no_lang_code', 1, 'https://ror.org/0243qcr03 Archetypon'),
(9514, 'https://ror.org/0538tt685', 'no_lang_code', 1, 'https://ror.org/0538tt685 BIOS Bioenergiesysteme (Austria)'),
(9515, 'https://ror.org/04dxam533', 'no_lang_code', 1, 'https://ror.org/04dxam533 Archimedia (Greece)'),
(9516, 'https://ror.org/016v3mm55', 'no_lang_code', 1, 'https://ror.org/016v3mm55 CognIT (Norway)'),
(9517, 'https://ror.org/0469d4m84', 'no_lang_code', 1, 'https://ror.org/0469d4m84 ÅF (Switzerland)'),
(9518, 'https://ror.org/051w7zc95', 'en', 1, 'https://ror.org/051w7zc95 Arctic and Antarctic Research Institute Арктический и антарктический научно-исследовательский институт'),
(9519, 'https://ror.org/01sc2zj52', 'no_lang_code', 1, 'https://ror.org/01sc2zj52 Ardeje (France)'),
(9520, 'https://ror.org/03end3932', 'no_lang_code', 1, 'https://ror.org/03end3932 GGG (France)'),
(9521, 'https://ror.org/031432n58', 'de', 1, 'https://ror.org/031432n58 Deutsche Welle'),
(9522, 'https://ror.org/02wnbr922', 'no_lang_code', 1, 'https://ror.org/02wnbr922 IBM (France)'),
(9523, 'https://ror.org/04wd3dx51', 'no_lang_code', 1, 'https://ror.org/04wd3dx51 Compagnie Industrielle d''Applications Thermiques (France)'),
(9524, 'https://ror.org/01thy5064', 'no_lang_code', 1, 'https://ror.org/01thy5064 Biosensor (Italy)'),
(9525, 'https://ror.org/02mtwe318', 'no_lang_code', 1, 'https://ror.org/02mtwe318 Argus Umweltbiotechnologie (Germany)'),
(9526, 'https://ror.org/05t041s05', 'no_lang_code', 1, 'https://ror.org/05t041s05 Ariadna (Spain)'),
(9527, 'https://ror.org/03ra2r215', 'no_lang_code', 1, 'https://ror.org/03ra2r215 CAPTEC (Ireland)'),
(9528, 'https://ror.org/02xgttq77', 'no_lang_code', 1, 'https://ror.org/02xgttq77 Terma (Denmark)'),
(9529, 'https://ror.org/031fnb427', 'no_lang_code', 1, 'https://ror.org/031fnb427 Biosensores (Spain)'),
(9530, 'https://ror.org/03mcj3013', 'no_lang_code', 1, 'https://ror.org/03mcj3013 Detection Limit (United States)'),
(9531, 'https://ror.org/007qdqj47', 'en', 1, 'https://ror.org/007qdqj47 Department of Health and Wellness Promotion'),
(9532, 'https://ror.org/005e54928', 'no_lang_code', 1, 'https://ror.org/005e54928 Kjobenhavns Telefon Aktieselskab (Denmark)'),
(9533, 'https://ror.org/03e278q38', 'no_lang_code', 1, 'https://ror.org/03e278q38 Vinci (France)'),
(9534, 'https://ror.org/02jaztc47', 'en', 1, 'https://ror.org/02jaztc47 Institut für Textil- und Verfahrenstechnik Denkendorf Institute of Textile Technology and Process Engineering'),
(9535, 'https://ror.org/02kvgg008', 'no_lang_code', 1, 'https://ror.org/02kvgg008 Cepsa (Spain)'),
(9536, 'https://ror.org/05gd75v11', 'en', 1, 'https://ror.org/05gd75v11 Council of Southeast Pennsylvania'),
(9537, 'https://ror.org/03wg52r81', 'en', 1, 'https://ror.org/03wg52r81 Health and Human Services Agency'),
(9538, 'https://ror.org/03xptr862', 'de', 1, 'https://ror.org/03xptr862 Deutsches Jugendinstitut German Youth Institute'),
(9539, 'https://ror.org/02dtzq355', 'no_lang_code', 1, 'https://ror.org/02dtzq355 Endesa (Spain)'),
(9540, 'https://ror.org/05c4aed35', 'no_lang_code', 1, 'https://ror.org/05c4aed35 MediTox (Czechia)'),
(9541, 'https://ror.org/05c79g497', 'no_lang_code', 1, 'https://ror.org/05c79g497 Cookson-Clal (France)'),
(9542, 'https://ror.org/04rndy785', 'no_lang_code', 1, 'https://ror.org/04rndy785 Arqtech Laboratories (Ireland)'),
(9543, 'https://ror.org/03hmj3984', 'no_lang_code', 1, 'https://ror.org/03hmj3984 Ambiente Risorse Sviluppo Environment, Resources and Development'),
(9544, 'https://ror.org/0571eed91', 'no_lang_code', 1, 'https://ror.org/0571eed91 Concentris (Germany)'),
(9545, 'https://ror.org/02h9xze43', 'no_lang_code', 1, 'https://ror.org/02h9xze43 Biotrend (Portugal)'),
(9546, 'https://ror.org/0044m1c71', 'no_lang_code', 1, 'https://ror.org/0044m1c71 Conceptivity (Switzerland)'),
(9547, 'https://ror.org/02dbn9a54', 'no_lang_code', 1, 'https://ror.org/02dbn9a54 DiaSorin (Ireland)'),
(9548, 'https://ror.org/05gh85146', 'no_lang_code', 1, 'https://ror.org/05gh85146 Arctik'),
(9549, 'https://ror.org/037dd8g98', 'no_lang_code', 1, 'https://ror.org/037dd8g98 Ecological Consultancy Services (Ireland)'),
(9550, 'https://ror.org/05kjm8921', 'no_lang_code', 1, 'https://ror.org/05kjm8921 Ecorys (Netherlands)'),
(9551, 'https://ror.org/03hsbk852', 'no_lang_code', 1, 'https://ror.org/03hsbk852 ASCO Industries (Belgium)'),
(9552, 'https://ror.org/03p2wmp96', 'no_lang_code', 1, 'https://ror.org/03p2wmp96 Ascom (Switzerland)'),
(9553, 'https://ror.org/040paq780', 'es', 1, 'https://ror.org/040paq780 Ecoserveis'),
(9554, 'https://ror.org/053cqar38', 'no_lang_code', 1, 'https://ror.org/053cqar38 Ecorys (United Kingdom)'),
(9555, 'https://ror.org/01h8my706', 'no_lang_code', 1, 'https://ror.org/01h8my706 Ascometal (France)'),
(9556, 'https://ror.org/05ashvr51', 'no_lang_code', 1, 'https://ror.org/05ashvr51 Cosmo Pharmaceuticals (Italy)'),
(9557, 'https://ror.org/01fr3an09', 'no_lang_code', 1, 'https://ror.org/01fr3an09 BMT Group (Netherlands)'),
(9558, 'https://ror.org/00qt7y372', 'no_lang_code', 1, 'https://ror.org/00qt7y372 Biozoon (Germany)'),
(9559, 'https://ror.org/04wfxgv30', 'no_lang_code', 1, 'https://ror.org/04wfxgv30 Bitron (Italy)'),
(9560, 'https://ror.org/03cy2tx68', 'en', 1, 'https://ror.org/03cy2tx68 Black Sea Regional Energy Centre'),
(9561, 'https://ror.org/012thdv08', 'no_lang_code', 1, 'https://ror.org/012thdv08 Zueblin (Germany)'),
(9562, 'https://ror.org/0562bn695', 'no_lang_code', 1, 'https://ror.org/0562bn695 Aurelius AG (Germany)'),
(9563, 'https://ror.org/015k31167', 'no_lang_code', 1, 'https://ror.org/015k31167 BLC Leather Technology Centre'),
(9564, 'https://ror.org/04d41fm91', 'no_lang_code', 1, 'https://ror.org/04d41fm91 ASIO spol (Czechia)'),
(9565, 'https://ror.org/04831wp37', 'no_lang_code', 1, 'https://ror.org/04831wp37 Devan Chemicals (Belgium)'),
(9566, 'https://ror.org/03d587e82', 'en', 1, 'https://ror.org/03d587e82 Estonian E Health Foundation'),
(9567, 'https://ror.org/047r6vz60', 'en', 1, 'https://ror.org/047r6vz60 Bloomfield Science Museum Jerusalem'),
(9568, 'https://ror.org/030kh5t61', 'no_lang_code', 1, 'https://ror.org/030kh5t61 EDMA Innova'),
(9569, 'https://ror.org/04eg67w73', 'no_lang_code', 1, 'https://ror.org/04eg67w73 ASM - Centrum Badań i Analiz Rynku Sp. z oo ASM Centre for Research and Analysis Market (Poland)'),
(9570, 'https://ror.org/044dw4g52', 'no_lang_code', 1, 'https://ror.org/044dw4g52 BlueBotics (Switzerland)'),
(9571, 'https://ror.org/05qxcfy37', 'et', 1, 'https://ror.org/05qxcfy37 Eesti Rahvusringhääling Estonian Public Broadcasting'),
(9572, 'https://ror.org/0109e3y78', 'no_lang_code', 1, 'https://ror.org/0109e3y78 Bluegreen Strategy (Italy)'),
(9573, 'https://ror.org/01q61vc37', 'no_lang_code', 1, 'https://ror.org/01q61vc37 Devan (Portugal)'),
(9574, 'https://ror.org/03he51f03', 'no_lang_code', 1, 'https://ror.org/03he51f03 A2A (Italy)'),
(9575, 'https://ror.org/05p4evs57', 'en', 1, 'https://ror.org/05p4evs57 Eesti Kultuuriministeerium Ministry of Culture'),
(9576, 'https://ror.org/0364xxv33', 'no_lang_code', 1, 'https://ror.org/0364xxv33 Efacec (Portugal)'),
(9577, 'https://ror.org/01hny1h96', 'no_lang_code', 1, 'https://ror.org/01hny1h96 Efkon (Austria)'),
(9578, 'https://ror.org/037j2jz78', 'de', 1, 'https://ror.org/037j2jz78 Deutsche Wissenschaftliche Gesellschaft für Erdöl Erdgas und Kohle German Society for Petroleum and Coal Science and Technology'),
(9579, 'https://ror.org/01famp260', 'no_lang_code', 1, 'https://ror.org/01famp260 BOC (Austria)'),
(9580, 'https://ror.org/03kmak902', 'no_lang_code', 1, 'https://ror.org/03kmak902 Böhler Edelstahl (Austria)'),
(9581, 'https://ror.org/02svqt910', 'en', 1, 'https://ror.org/02svqt910 European Institute for Biomedical Imaging Research'),
(9582, 'https://ror.org/01wen3r86', 'no_lang_code', 1, 'https://ror.org/01wen3r86 Boliden (Sweden)'),
(9583, 'https://ror.org/04c3e6c98', 'no_lang_code', 1, 'https://ror.org/04c3e6c98 Eicas Automazione (Italy)'),
(9584, 'https://ror.org/012p5cj16', 'no_lang_code', 1, 'https://ror.org/012p5cj16 DIAD Group (Italy)'),
(9585, 'https://ror.org/04v6x2017', 'no_lang_code', 1, 'https://ror.org/04v6x2017 Aquaplus (Belgium)'),
(9586, 'https://ror.org/03yzj7n24', 'es', 1, 'https://ror.org/03yzj7n24 Asociación de Investigación de la Industria Agroalimentaria'),
(9587, 'https://ror.org/05qe3gd58', 'en', 1, 'https://ror.org/05qe3gd58 Dipartimento Federale dell''Interno Département fédéral de l''intérieur Eidgenössisches Departement des Innern Federal Department of Home Affairs'),
(9588, 'https://ror.org/04wdqjx17', 'no_lang_code', 1, 'https://ror.org/04wdqjx17 Diagenode (Belgium)'),
(9589, 'https://ror.org/03nhvga51', 'no_lang_code', 1, 'https://ror.org/03nhvga51 DiagnoSwiss (Switzerland)'),
(9590, 'https://ror.org/023k1pq97', 'no_lang_code', 1, 'https://ror.org/023k1pq97 Bombardier (Germany)'),
(9591, 'https://ror.org/02ec4x178', 'no_lang_code', 1, 'https://ror.org/02ec4x178 Bombardier (Sweden)'),
(9592, 'https://ror.org/05n8xke20', 'en', 1, 'https://ror.org/05n8xke20 Dialogik (Germany)'),
(9593, 'https://ror.org/02skcpv41', 'es', 1, 'https://ror.org/02skcpv41 Asociación de Investigación y Cooperación Industrial de Andalucía'),
(9594, 'https://ror.org/031gmvg29', 'no_lang_code', 1, 'https://ror.org/031gmvg29 Siemens (Denmark)'),
(9595, 'https://ror.org/02zksq237', 'es', 1, 'https://ror.org/02zksq237 Asociación de la Industria Navarra'),
(9596, 'https://ror.org/00hw1e768', 'no_lang_code', 1, 'https://ror.org/00hw1e768 Radex Heraklith Industriebeteiligungs (Germany)'),
(9597, 'https://ror.org/04690g322', 'no_lang_code', 1, 'https://ror.org/04690g322 Eilenburger Electrolysis and Environmental Engineering Eilenburger Elektrolyse - und Umwelttechnik (Germany)'),
(9598, 'https://ror.org/056185y51', 'no_lang_code', 1, 'https://ror.org/056185y51 Bouygues (France)'),
(9599, 'https://ror.org/02r30yj10', 'en', 1, 'https://ror.org/02r30yj10 European Incoherent Scatter Scientific Association'),
(9600, 'https://ror.org/003c3rr61', 'no_lang_code', 1, 'https://ror.org/003c3rr61 Diehl (Germany)'),
(9601, 'https://ror.org/03c5bjw68', 'no_lang_code', 1, 'https://ror.org/03c5bjw68 BoxModul (Sweden)'),
(9602, 'https://ror.org/00b1drk46', 'no_lang_code', 1, 'https://ror.org/00b1drk46 Asper Biotech (Estonia)'),
(9603, 'https://ror.org/00jbe9340', 'nl', 1, 'https://ror.org/00jbe9340 Dienst voor Wetenschappelijke en Technische Informatie Scientific and Technical Information Service Service d''Information Scientifique et Technique'),
(9604, 'https://ror.org/03hy0tb65', 'no_lang_code', 1, 'https://ror.org/03hy0tb65 ASSIST Software (Romania)'),
(9605, 'https://ror.org/039ft6244', 'no_lang_code', 1, 'https://ror.org/039ft6244 ArcelorMittal (Germany)'),
(9606, 'https://ror.org/05hevd194', 'no_lang_code', 1, 'https://ror.org/05hevd194 Ekodoma (Latvia)'),
(9607, 'https://ror.org/00aztzy37', 'no_lang_code', 1, 'https://ror.org/00aztzy37 El.En. Group (Italy)'),
(9608, 'https://ror.org/04pb97k73', 'no_lang_code', 1, 'https://ror.org/04pb97k73 Hewlett-Packard (Germany)'),
(9609, 'https://ror.org/05gkngk42', 'no_lang_code', 1, 'https://ror.org/05gkngk42 Elastopoli (Finland)'),
(9610, 'https://ror.org/02zdssw25', 'el', 1, 'https://ror.org/02zdssw25 Dimitra'),
(9611, 'https://ror.org/00hxj5n33', 'de', 1, 'https://ror.org/00hxj5n33 Deutsches Institut für Normung German Institute for Standardization'),
(9612, 'https://ror.org/04vcs1h64', 'no_lang_code', 1, 'https://ror.org/04vcs1h64 Brandtex (Denmark)'),
(9613, 'https://ror.org/00nxp2634', 'fr', 1, 'https://ror.org/00nxp2634 Association de Coordination Technique Pour l''Industrie Agroalimentaire'),
(9614, 'https://ror.org/05x5s0870', 'no_lang_code', 1, 'https://ror.org/05x5s0870 Perceptive Software (Germany)'),
(9615, 'https://ror.org/03gam8m83', 'no_lang_code', 1, 'https://ror.org/03gam8m83 Engedi Science (United Kingdom)'),
(9616, 'https://ror.org/017artp82', 'no_lang_code', 1, 'https://ror.org/017artp82 Electricity Authority of Cyprus (Cyprus)'),
(9617, 'https://ror.org/03hs0j596', 'no_lang_code', 1, 'https://ror.org/03hs0j596 Bord Soláthair an Leictreacha Electricity Supply Board (Ireland)'),
(9618, 'https://ror.org/007yc7a13', 'no_lang_code', 1, 'https://ror.org/007yc7a13 Brimatech (Austria)'),
(9619, 'https://ror.org/0386f5975', 'no_lang_code', 1, 'https://ror.org/0386f5975 Finceramica (Italy)'),
(9620, 'https://ror.org/05wbv7q50', 'no_lang_code', 1, 'https://ror.org/05wbv7q50 Brissonneau and Lotz (France) Brissonneau et Lotz'),
(9621, 'https://ror.org/01zw4be88', 'no_lang_code', 1, 'https://ror.org/01zw4be88 Fincantieri (Italy)'),
(9622, 'https://ror.org/04z1brt13', 'no_lang_code', 1, 'https://ror.org/04z1brt13 Bretagne Innovation (France)'),
(9623, 'https://ror.org/00e7hrn50', 'no_lang_code', 1, 'https://ror.org/00e7hrn50 LUSAS (United Kingdom)'),
(9624, 'https://ror.org/033g0hw83', 'en', 1, 'https://ror.org/033g0hw83 Finnish Society of Automation'),
(9625, 'https://ror.org/01f7q1k19', 'no_lang_code', 1, 'https://ror.org/01f7q1k19 DKI Plast (Denmark)'),
(9626, 'https://ror.org/04jbbj956', 'no_lang_code', 1, 'https://ror.org/04jbbj956 Element Energy (United Kingdom)'),
(9627, 'https://ror.org/04phr2832', 'no_lang_code', 1, 'https://ror.org/04phr2832 DLF Trifolium (Denmark)'),
(9628, 'https://ror.org/003kxr082', 'no_lang_code', 1, 'https://ror.org/003kxr082 British Airways (United Kingdom)'),
(9629, 'https://ror.org/00r0jqe29', 'en', 1, 'https://ror.org/00r0jqe29 British Science Association'),
(9630, 'https://ror.org/02bhe9a93', 'en', 1, 'https://ror.org/02bhe9a93 British Hydromechanics Research Group'),
(9631, 'https://ror.org/0262pp157', 'en', 1, 'https://ror.org/0262pp157 Research Institute of the Finnish Economy'),
(9632, 'https://ror.org/00tq8h369', 'no_lang_code', 1, 'https://ror.org/00tq8h369 Elisa (Finland)'),
(9633, 'https://ror.org/00hef7f20', 'en', 1, 'https://ror.org/00hef7f20 Finnish Transport Agency'),
(9634, 'https://ror.org/01yxr7f17', 'no_lang_code', 1, 'https://ror.org/01yxr7f17 Finovatis (France)'),
(9635, 'https://ror.org/00jg7pf63', 'en', 1, 'https://ror.org/00jg7pf63 Iowa City VA Medical Research Foundation'),
(9636, 'https://ror.org/042yr5054', 'no_lang_code', 1, 'https://ror.org/042yr5054 British Textile Technology Group'),
(9637, 'https://ror.org/050teng13', 'no_lang_code', 1, 'https://ror.org/050teng13 Humanetics Innovative Solutions (Netherlands)'),
(9638, 'https://ror.org/04axend95', 'no_lang_code', 1, 'https://ror.org/04axend95 FISBA OPTIK (Switzerland)'),
(9639, 'https://ror.org/045vamp18', 'no_lang_code', 1, 'https://ror.org/045vamp18 FACC (Austria)'),
(9640, 'https://ror.org/02fyr1a65', 'no_lang_code', 1, 'https://ror.org/02fyr1a65 DunavNET (Serbia)'),
(9641, 'https://ror.org/005f16662', 'en', 1, 'https://ror.org/005f16662 FishBase Information and Research Group'),
(9642, 'https://ror.org/03g4qd502', 'en', 1, 'https://ror.org/03g4qd502 Brodarski Institute'),
(9643, 'https://ror.org/001m7ja14', 'no_lang_code', 1, 'https://ror.org/001m7ja14 FIT Consulting (Italy)'),
(9644, 'https://ror.org/04wm2jh50', 'en', 1, 'https://ror.org/04wm2jh50 Dublin City Council'),
(9645, 'https://ror.org/030x6kb17', 'no_lang_code', 1, 'https://ror.org/030x6kb17 Dune (Italy)'),
(9646, 'https://ror.org/01naa4k48', 'no_lang_code', 1, 'https://ror.org/01naa4k48 Dunreidy Engneering (Ireland)'),
(9647, 'https://ror.org/01n42m123', 'no_lang_code', 1, 'https://ror.org/01n42m123 Forschungsgesellschaft Kraftfahrwesen Aachen (Germany)'),
(9648, 'https://ror.org/02vzt4388', 'no_lang_code', 1, 'https://ror.org/02vzt4388 Bruel & Kjaer Sound and Vibration Measurement (Denmark)'),
(9649, 'https://ror.org/043pv1763', 'no_lang_code', 1, 'https://ror.org/043pv1763 Dv Tecnologie d''Avanguardia (Italy)'),
(9650, 'https://ror.org/0179z8203', 'no_lang_code', 1, 'https://ror.org/0179z8203 Flabeg (Germany)'),
(9651, 'https://ror.org/030rk0759', 'no_lang_code', 1, 'https://ror.org/030rk0759 Electrovac (Austria)'),
(9652, 'https://ror.org/023zgnb96', 'no_lang_code', 1, 'https://ror.org/023zgnb96 Dyadic (Netherlands)'),
(9653, 'https://ror.org/0501e3k91', 'no_lang_code', 1, 'https://ror.org/0501e3k91 Flensburger Schiffbau Gesellschaft (Germany)'),
(9654, 'https://ror.org/00zvs5g09', 'no_lang_code', 1, 'https://ror.org/00zvs5g09 Flexiant (United Kingdom)'),
(9655, 'https://ror.org/00h9r4759', 'no_lang_code', 1, 'https://ror.org/00h9r4759 Flowtech International (Sweden)'),
(9656, 'https://ror.org/01stake94', 'no_lang_code', 1, 'https://ror.org/01stake94 D2S International (Belgium)'),
(9657, 'https://ror.org/0518gvp45', 'no_lang_code', 1, 'https://ror.org/0518gvp45 Fluidtime (Austria)'),
(9658, 'https://ror.org/001b7ye13', 'en', 1, 'https://ror.org/001b7ye13 Building Services Research and Information Association'),
(9659, 'https://ror.org/02jf95y23', 'no_lang_code', 1, 'https://ror.org/02jf95y23 e GEOS (Italy)'),
(9660, 'https://ror.org/008wfp513', 'no_lang_code', 1, 'https://ror.org/008wfp513 Buck Consultants International'),
(9661, 'https://ror.org/00qmxzv90', 'en', 1, 'https://ror.org/00qmxzv90 Nordic Folkecenter for Renewable Energy'),
(9662, 'https://ror.org/0388bf577', 'en', 1, 'https://ror.org/0388bf577 Bulgarian Chamber of Commerce and Industry'),
(9663, 'https://ror.org/01wrh2n21', 'en', 1, 'https://ror.org/01wrh2n21 Hellenic Foundation for European and Foreign Policy'),
(9664, 'https://ror.org/03kbqak87', 'no_lang_code', 1, 'https://ror.org/03kbqak87 Ellinogermaniki Agogi'),
(9665, 'https://ror.org/02r382680', 'bs', 1, 'https://ror.org/02r382680 Prona'),
(9666, 'https://ror.org/037bt1j05', 'fr', 1, 'https://ror.org/037bt1j05 Fondation de Coopération Scientifique Foundation for Scientific Cooperation'),
(9667, 'https://ror.org/05mwscs77', 'no_lang_code', 1, 'https://ror.org/05mwscs77 ABB (Italy)'),
(9668, 'https://ror.org/01gxrtw55', 'en', 1, 'https://ror.org/01gxrtw55 E.O. Paton Electric Welding Institute Інститут електрозварювання ім.Є.О.Патона'),
(9669, 'https://ror.org/0597eqm76', 'de', 1, 'https://ror.org/0597eqm76 Bundesanstalt für Bergbauernfragen Federal Institute for Less-Favoured and Mountainous Areas'),
(9670, 'https://ror.org/013gjg633', 'no_lang_code', 1, 'https://ror.org/013gjg633 E.ON (Germany)'),
(9671, 'https://ror.org/016jjjq38', 'no_lang_code', 1, 'https://ror.org/016jjjq38 Eltropuls (United Kingdom)'),
(9672, 'https://ror.org/05b1dm808', 'no_lang_code', 1, 'https://ror.org/05b1dm808 Vattenfall (Germany)'),
(9673, 'https://ror.org/04kfv4779', 'no_lang_code', 1, 'https://ror.org/04kfv4779 Elyros (Belgium)'),
(9674, 'https://ror.org/02jh73m95', 'it', 1, 'https://ror.org/02jh73m95 Felicita and Enrico Bignaschi and Sons Foundation Fondazione Bignaschi'),
(9675, 'https://ror.org/035ytfy75', 'no_lang_code', 1, 'https://ror.org/035ytfy75 British Nuclear Fuel Limited (United Kingdom)'),
(9676, 'https://ror.org/0524dwb40', 'it', 1, 'https://ror.org/0524dwb40 Fondazione GraphiTech'),
(9677, 'https://ror.org/00qd3cs31', 'no_lang_code', 1, 'https://ror.org/00qd3cs31 Dimos Athinaion Epicheirisi Michanografisis (Greece)'),
(9678, 'https://ror.org/02zeqvn38', 'no_lang_code', 1, 'https://ror.org/02zeqvn38 EMC Microcollections (Germany)'),
(9679, 'https://ror.org/00vcg0k36', 'en', 1, 'https://ror.org/00vcg0k36 EASN Technology Innovation Services BVBA'),
(9680, 'https://ror.org/00m71bz66', 'it', 1, 'https://ror.org/00m71bz66 Fondazione Idis Città della Scienza'),
(9681, 'https://ror.org/04f8y1a51', 'no_lang_code', 1, 'https://ror.org/04f8y1a51 EmergenTec (Austria)'),
(9682, 'https://ror.org/00ssxa384', 'no_lang_code', 1, 'https://ror.org/00ssxa384 Eclexys (Switzerland)'),
(9683, 'https://ror.org/00d7mpc92', 'en', 1, 'https://ror.org/00d7mpc92 PENTA Foundation'),
(9684, 'https://ror.org/0453arj96', 'no_lang_code', 1, 'https://ror.org/0453arj96 Empolis (Germany)'),
(9685, 'https://ror.org/05dv2tx94', 'no_lang_code', 1, 'https://ror.org/05dv2tx94 PricewaterhouseCoopers (France)'),
(9686, 'https://ror.org/01rnvev51', 'it', 1, 'https://ror.org/01rnvev51 Fondazione Politecnico di Milano'),
(9687, 'https://ror.org/0213kp011', 'no_lang_code', 1, 'https://ror.org/0213kp011 Empresa de Desenvolvimento Mineiro (Portugal)'),
(9688, 'https://ror.org/004np0e76', 'no_lang_code', 1, 'https://ror.org/004np0e76 Dornier (Germany)'),
(9689, 'https://ror.org/005jham19', 'no_lang_code', 1, 'https://ror.org/005jham19 Ente Nazionale Assistenza al Volo (Italy)'),
(9690, 'https://ror.org/057n0mb56', 'it', 1, 'https://ror.org/057n0mb56 Digital Renaissance Foundation Fondazione Rinascimento Digitale'),
(9691, 'https://ror.org/03et1ay56', 'en', 1, 'https://ror.org/03et1ay56 Fondazione Rosselli Rosselli Foundation'),
(9692, 'https://ror.org/032v09t14', 'en', 1, 'https://ror.org/032v09t14 Bundesnetzagentur Federal Network Agency'),
(9693, 'https://ror.org/04mpvdf36', 'no_lang_code', 1, 'https://ror.org/04mpvdf36 Enerdata (France)'),
(9694, 'https://ror.org/00273wp13', 'en', 1, 'https://ror.org/00273wp13 Energy Cities'),
(9695, 'https://ror.org/041shdj17', 'no_lang_code', 1, 'https://ror.org/041shdj17 Energie Baden-Württemberg (Germany)'),
(9696, 'https://ror.org/029benr66', 'en', 1, 'https://ror.org/029benr66 Austrian Energy Agency Österreichische Energieagentur'),
(9697, 'https://ror.org/04rvyn674', 'no_lang_code', 1, 'https://ror.org/04rvyn674 Energiewerke Nord (Germany)'),
(9698, 'https://ror.org/01rz4nb07', 'en', 1, 'https://ror.org/01rz4nb07 Bureau fédéral du Plan Federal Planning Bureau Het Federaal Planbureau'),
(9699, 'https://ror.org/054fn8673', 'no_lang_code', 1, 'https://ror.org/054fn8673 Energinet (Denmark)'),
(9700, 'https://ror.org/03zq1ab33', 'sk', 1, 'https://ror.org/03zq1ab33 Energy Centre Bratislava'),
(9701, 'https://ror.org/03q83t159', 'en', 1, 'https://ror.org/03q83t159 Fonds de la Recherche Scientifique Fund for Scientific Research'),
(9702, 'https://ror.org/00tyzcb87', 'no_lang_code', 1, 'https://ror.org/00tyzcb87 Bureau van Dijk (Belgium)'),
(9703, 'https://ror.org/01ag8d960', 'no_lang_code', 1, 'https://ror.org/01ag8d960 Global Security Intelligence (United Kingdom)'),
(9704, 'https://ror.org/038es7c44', 'no_lang_code', 1, 'https://ror.org/038es7c44 EnginSoft (Italy)'),
(9705, 'https://ror.org/045jad561', 'no_lang_code', 1, 'https://ror.org/045jad561 GlobalFoundries (Germany)'),
(9706, 'https://ror.org/01gq5z667', 'no_lang_code', 1, 'https://ror.org/01gq5z667 BYG Systems (United Kingdom)'),
(9707, 'https://ror.org/04jppzq03', 'no_lang_code', 1, 'https://ror.org/04jppzq03 Fordesi (Portugal)'),
(9708, 'https://ror.org/01c0hr456', 'no_lang_code', 1, 'https://ror.org/01c0hr456 Glötzl (Germany)'),
(9709, 'https://ror.org/04pphg116', 'no_lang_code', 1, 'https://ror.org/04pphg116 c-LEcta (Germany)'),
(9710, 'https://ror.org/028yyha11', 'no_lang_code', 1, 'https://ror.org/028yyha11 GMI Aero (France)'),
(9711, 'https://ror.org/0560hct13', 'no_lang_code', 1, 'https://ror.org/0560hct13 Engineering Solutions International (Ireland)'),
(9712, 'https://ror.org/05vjdx283', 'en', 1, 'https://ror.org/05vjdx283 CGS Group'),
(9713, 'https://ror.org/010pkhb41', 'es', 1, 'https://ror.org/010pkhb41 Association Instituto Tecnológico Metalmecánico'),
(9714, 'https://ror.org/03tvffn83', 'fr', 1, 'https://ror.org/03tvffn83 Forem'),
(9715, 'https://ror.org/00vcvx959', 'es', 1, 'https://ror.org/00vcvx959 Forem'),
(9716, 'https://ror.org/04s786x31', 'no_lang_code', 1, 'https://ror.org/04s786x31 Enercon (Germany)'),
(9717, 'https://ror.org/03sdd1k49', 'no_lang_code', 1, 'https://ror.org/03sdd1k49 Goodyear (Luxembourg)'),
(9718, 'https://ror.org/04aecpw50', 'no_lang_code', 1, 'https://ror.org/04aecpw50 Caixa Mágica Software (Portugal)'),
(9719, 'https://ror.org/03nmefy27', 'no_lang_code', 1, 'https://ror.org/03nmefy27 Google (Ireland)'),
(9720, 'https://ror.org/050n06q35', 'no_lang_code', 1, 'https://ror.org/050n06q35 Gorenje (Slovenia)'),
(9721, 'https://ror.org/05en24r36', 'sl', 1, 'https://ror.org/05en24r36 Chamber of Commerce and Industry of Slovenia Gospodarska zbornica Slovenije'),
(9722, 'https://ror.org/04kwbxb88', 'no_lang_code', 1, 'https://ror.org/04kwbxb88 Cambridge CMOS Sensors (United Kingdom)'),
(9723, 'https://ror.org/03gcet659', 'no_lang_code', 1, 'https://ror.org/03gcet659 Cambridge Econometrics (United Kingdom)'),
(9724, 'https://ror.org/05gypt250', 'sl', 1, 'https://ror.org/05gypt250 Giz-Grozd Plasttehnika Plasttechnics Cluster Slovenia'),
(9725, 'https://ror.org/03nd75281', 'sv', 1, 'https://ror.org/03nd75281 Gothenburg Municipality Göteborgs Stads'),
(9726, 'https://ror.org/0594wvc02', 'no_lang_code', 1, 'https://ror.org/0594wvc02 Gühring (Germany)'),
(9727, 'https://ror.org/017qjec28', 'en', 1, 'https://ror.org/017qjec28 VATT Institute for Economic Research'),
(9728, 'https://ror.org/01shjyx24', 'no_lang_code', 1, 'https://ror.org/01shjyx24 Cambridge Environmental Research Consultants (United Kingdom)'),
(9729, 'https://ror.org/03fb4ef52', 'en', 1, 'https://ror.org/03fb4ef52 Gov2u'),
(9730, 'https://ror.org/05xavf734', 'no_lang_code', 1, 'https://ror.org/05xavf734 Graal Tech'),
(9731, 'https://ror.org/01r2apt44', 'no_lang_code', 1, 'https://ror.org/01r2apt44 Grace (Germany)'),
(9732, 'https://ror.org/03kcxbk43', 'it', 1, 'https://ror.org/03kcxbk43 Camera di commercio di Milano'),
(9733, 'https://ror.org/039t93g49', 'de', 1, 'https://ror.org/039t93g49 Forschungsinstitut für Biologischen Landbau Research Institute of Organic Agriculture'),
(9734, 'https://ror.org/057ty7239', 'no_lang_code', 1, 'https://ror.org/057ty7239 Building and Civil Engineering Institute Gradbeni Inštitut Zrmk d.o.o'),
(9735, 'https://ror.org/026gzzy53', 'no_lang_code', 1, 'https://ror.org/026gzzy53 Grado Zero Espace (Italy)'),
(9736, 'https://ror.org/01a6cr462', 'de', 1, 'https://ror.org/01a6cr462 Forschungsinstitut für schnellwachsende Baumarten'),
(9737, 'https://ror.org/05qa20027', 'no_lang_code', 1, 'https://ror.org/05qa20027 Enide Solutions (Spain)'),
(9738, 'https://ror.org/03847e911', 'no_lang_code', 1, 'https://ror.org/03847e911 International Chemical Investors (Germany)'),
(9739, 'https://ror.org/03qx9tc91', 'no_lang_code', 1, 'https://ror.org/03qx9tc91 Capgemini (France)'),
(9740, 'https://ror.org/04bypsr67', 'no_lang_code', 1, 'https://ror.org/04bypsr67 Enkam (Denmark)'),
(9741, 'https://ror.org/0491v6j54', 'no_lang_code', 1, 'https://ror.org/0491v6j54 Granit Technologies (Switzerland)'),
(9742, 'https://ror.org/05m6rcv15', 'no_lang_code', 1, 'https://ror.org/05m6rcv15 Abingdon Health (United Kingdom)'),
(9743, 'https://ror.org/01x5y8335', 'no_lang_code', 1, 'https://ror.org/01x5y8335 Granta Design (United Kingdom)'),
(9744, 'https://ror.org/03amxdk57', 'no_lang_code', 1, 'https://ror.org/03amxdk57 Capgemini (Netherlands)'),
(9745, 'https://ror.org/00c6b1k17', 'no_lang_code', 1, 'https://ror.org/00c6b1k17 Capgemini (Belgium)'),
(9746, 'https://ror.org/04yw5jr36', 'no_lang_code', 1, 'https://ror.org/04yw5jr36 Cap Sciences (France)'),
(9747, 'https://ror.org/05f3x9v03', 'en', 1, 'https://ror.org/05f3x9v03 Greenovate! Europe'),
(9748, 'https://ror.org/011rkt464', 'no_lang_code', 1, 'https://ror.org/011rkt464 Greentech (France)'),
(9749, 'https://ror.org/01m7qnr31', 'es', 1, 'https://ror.org/01m7qnr31 Ente Vasco de la Energía'),
(9750, 'https://ror.org/02sfn4p13', 'no_lang_code', 1, 'https://ror.org/02sfn4p13 Enterprise Estonia (Estonia)'),
(9751, 'https://ror.org/00mkstx48', 'no_lang_code', 1, 'https://ror.org/00mkstx48 Grontmij (Denmark)'),
(9752, 'https://ror.org/02bwrq566', 'no_lang_code', 1, 'https://ror.org/02bwrq566 Carmeq (Germany)'),
(9753, 'https://ror.org/03x2xt559', 'no_lang_code', 1, 'https://ror.org/03x2xt559 Pfizer (Spain)'),
(9754, 'https://ror.org/023h3sg77', 'no_lang_code', 1, 'https://ror.org/023h3sg77 Carnival Corporation (United Kingdom)'),
(9755, 'https://ror.org/05rynnb36', 'fr', 1, 'https://ror.org/05rynnb36 National Telecommunications Network for Technology, Education and Research Renater Réseau National de Télécommunications pour la Technologie, l''Enseignement et la Recherche'),
(9756, 'https://ror.org/01qk1bx90', 'no_lang_code', 1, 'https://ror.org/01qk1bx90 Environics Oy (Finland)'),
(9757, 'https://ror.org/05gmzxx11', 'no_lang_code', 1, 'https://ror.org/05gmzxx11 Grupo ACS (Spain)'),
(9758, 'https://ror.org/05e75yx66', 'en', 1, 'https://ror.org/05e75yx66 Slovenian Environment Agency'),
(9759, 'https://ror.org/00x5dwt18', 'no_lang_code', 1, 'https://ror.org/00x5dwt18 CARSA (Spain)'),
(9760, 'https://ror.org/05yhxm969', 'it', 1, 'https://ror.org/05yhxm969 Gruppi di Ricerca Economica Teorica ed Applicata'),
(9761, 'https://ror.org/05v2b6f63', 'en', 1, 'https://ror.org/05v2b6f63 Forum des Laboratoires nationaux Europeens de Recherche Routiere Forum of European National Highway Research Laboratories'),
(9762, 'https://ror.org/01jj7aa83', 'no_lang_code', 1, 'https://ror.org/01jj7aa83 Environmental Protection Engineering (Greece)'),
(9763, 'https://ror.org/015m6xt73', 'no_lang_code', 1, 'https://ror.org/015m6xt73 Gruppo CLAS (Italy)'),
(9764, 'https://ror.org/0110tsr95', 'no_lang_code', 1, 'https://ror.org/0110tsr95 Energy and Environmental Consultancy'),
(9765, 'https://ror.org/005sd3904', 'no_lang_code', 1, 'https://ror.org/005sd3904 Enviscope (Germany)'),
(9766, 'https://ror.org/03vxeyp56', 'no_lang_code', 1, 'https://ror.org/03vxeyp56 Castle Group (United Kingdom)'),
(9767, 'https://ror.org/03qqt2y39', 'no_lang_code', 1, 'https://ror.org/03qqt2y39 Epigem (United Kingdom)'),
(9768, 'https://ror.org/021vp7p61', 'no_lang_code', 1, 'https://ror.org/021vp7p61 GTD (Spain)'),
(9769, 'https://ror.org/0583e1h59', 'no_lang_code', 1, 'https://ror.org/0583e1h59 Forum Virium (Finland)'),
(9770, 'https://ror.org/046cpbt38', 'no_lang_code', 1, 'https://ror.org/046cpbt38 Epsilon International (Greece)'),
(9771, 'https://ror.org/05447tk77', 'no_lang_code', 1, 'https://ror.org/05447tk77 Epsilon (Italy)'),
(9772, 'https://ror.org/01j39zs89', 'no_lang_code', 1, 'https://ror.org/01j39zs89 GVS (Italy)'),
(9773, 'https://ror.org/04mmty540', 'no_lang_code', 1, 'https://ror.org/04mmty540 HW Communications (United Kingdom)'),
(9774, 'https://ror.org/01c55m435', 'no_lang_code', 1, 'https://ror.org/01c55m435 Castle Rock Geotech (United Kingdom)'),
(9775, 'https://ror.org/019tbwb44', 'no_lang_code', 1, 'https://ror.org/019tbwb44 Faseroptische Systeme Messtechnik (Germany)'),
(9776, 'https://ror.org/03dbbn946', 'no_lang_code', 1, 'https://ror.org/03dbbn946 HaCon (Germany)'),
(9777, 'https://ror.org/02reezy47', 'de', 1, 'https://ror.org/02reezy47 Hahn-Schickard-Gesellschaft für angewandte Forschung'),
(9778, 'https://ror.org/00wxh7d23', 'no_lang_code', 1, 'https://ror.org/00wxh7d23 Catator (Sweden)'),
(9779, 'https://ror.org/00dqfzf20', 'en', 1, 'https://ror.org/00dqfzf20 Barnets borg Helsinki Children''s Hospital Lastenlinna'),
(9780, 'https://ror.org/051aqjh92', 'en', 1, 'https://ror.org/051aqjh92 Ministry of Education and Research'),
(9781, 'https://ror.org/054yr2s43', 'no_lang_code', 1, 'https://ror.org/054yr2s43 CECIMO (Belgium)'),
(9782, 'https://ror.org/04bsj8w28', 'fr', 1, 'https://ror.org/04bsj8w28 Forêt Méditerranéenne'),
(9783, 'https://ror.org/03g6g7j35', 'no_lang_code', 1, 'https://ror.org/03g6g7j35 Global Graphics (United Kingdom)'),
(9784, 'https://ror.org/00de6v257', 'no_lang_code', 1, 'https://ror.org/00de6v257 Envisa (France)'),
(9785, 'https://ror.org/04tbtbw37', 'no_lang_code', 1, 'https://ror.org/04tbtbw37 Forschungs- und Technologietransfer (Austria)'),
(9786, 'https://ror.org/00hm3qq49', 'no_lang_code', 1, 'https://ror.org/00hm3qq49 Eolas (Ireland)'),
(9787, 'https://ror.org/04zha3029', 'no_lang_code', 1, 'https://ror.org/04zha3029 Harms & Wende (Germany)'),
(9788, 'https://ror.org/0130wtk42', 'en', 1, 'https://ror.org/0130wtk42 Foundation for International Environmental Law and Development'),
(9789, 'https://ror.org/04scst564', 'de', 1, 'https://ror.org/04scst564 Institut für Seeverkehrswirtschaft und Logistik Institute of Shipping Economics and Logistics'),
(9790, 'https://ror.org/03mpdf502', 'no_lang_code', 1, 'https://ror.org/03mpdf502 Epsilon Net (Greece)'),
(9791, 'https://ror.org/011yjrc39', 'no_lang_code', 1, 'https://ror.org/011yjrc39 Equipos Nucleares (Spain)'),
(9792, 'https://ror.org/00fyk9n62', 'en', 1, 'https://ror.org/00fyk9n62 Foundation of the Hellenic World'),
(9793, 'https://ror.org/00qsswh65', 'no_lang_code', 1, 'https://ror.org/00qsswh65 Edif Group (United Kingdom)'),
(9794, 'https://ror.org/039bged65', 'en', 1, 'https://ror.org/039bged65 Lukasiewicz Research Network - Krakow Institute of Technology Łukasiewicz -Krakowski Instytut Technologiczny'),
(9795, 'https://ror.org/04mv7q109', 'no_lang_code', 1, 'https://ror.org/04mv7q109 HEAD Acoustics (Germany)'),
(9796, 'https://ror.org/03bs7k153', 'no_lang_code', 1, 'https://ror.org/03bs7k153 Erdyn (France)'),
(9797, 'https://ror.org/02zmq8s40', 'en', 1, 'https://ror.org/02zmq8s40 Health Information Management'),
(9798, 'https://ror.org/00bvn9584', 'no_lang_code', 1, 'https://ror.org/00bvn9584 FOV Fabrics (Sweden)'),
(9799, 'https://ror.org/04tr57w63', 'no_lang_code', 1, 'https://ror.org/04tr57w63 Ericsson (Spain)'),
(9800, 'https://ror.org/03m3fa408', 'no_lang_code', 1, 'https://ror.org/03m3fa408 Ericsson (Germany)'),
(9801, 'https://ror.org/001g74t27', 'no_lang_code', 1, 'https://ror.org/001g74t27 Heckmann (Germany)'),
(9802, 'https://ror.org/03c0yyz21', 'no_lang_code', 1, 'https://ror.org/03c0yyz21 Ericsson (Hungary)'),
(9803, 'https://ror.org/02c5z9p32', 'no_lang_code', 1, 'https://ror.org/02c5z9p32 Hella (Germany)'),
(9804, 'https://ror.org/04mngjf23', 'no_lang_code', 1, 'https://ror.org/04mngjf23 Hellenic Aerospace Industry (Greece) Ελληνική Αεροπορική Βιομηχανία'),
(9805, 'https://ror.org/003g9tn92', 'no_lang_code', 1, 'https://ror.org/003g9tn92 Hellenic Petroleum (Greece)'),
(9806, 'https://ror.org/02fbyq253', 'no_lang_code', 1, 'https://ror.org/02fbyq253 Campden BRI (Hungary)'),
(9807, 'https://ror.org/00acgme86', 'no_lang_code', 1, 'https://ror.org/00acgme86 France Développement Conseil (France)'),
(9808, 'https://ror.org/03jd48p79', 'en', 1, 'https://ror.org/03jd48p79 Education and Research Network'),
(9809, 'https://ror.org/01v27sx82', 'en', 1, 'https://ror.org/01v27sx82 New Hellenic Radio, Internet and Television'),
(9810, 'https://ror.org/05kxtq558', 'en', 1, 'https://ror.org/05kxtq558 Institut für Molekulare Biologie Institute of Molecular Biology'),
(9811, 'https://ror.org/03r48fa44', 'no_lang_code', 1, 'https://ror.org/03r48fa44 Klett Gruppe (Germany)'),
(9812, 'https://ror.org/03c814f32', 'no_lang_code', 1, 'https://ror.org/03c814f32 Fratelli Alinari (Italy)'),
(9813, 'https://ror.org/00whma289', 'no_lang_code', 1, 'https://ror.org/00whma289 LafargeHolcim (Greece)'),
(9814, 'https://ror.org/03kdj6d49', 'no_lang_code', 1, 'https://ror.org/03kdj6d49 Piacenza Cashmere (Italy)'),
(9815, 'https://ror.org/049kt3f30', 'no_lang_code', 1, 'https://ror.org/049kt3f30 Ernst & Young (Israel)'),
(9816, 'https://ror.org/04bsh3r03', 'no_lang_code', 1, 'https://ror.org/04bsh3r03 Ericsson (Croatia)'),
(9817, 'https://ror.org/027n3xb46', 'no_lang_code', 1, 'https://ror.org/027n3xb46 Ericsson (Italy)'),
(9818, 'https://ror.org/01h4rpv44', 'no_lang_code', 1, 'https://ror.org/01h4rpv44 Ericsson (Netherlands)'),
(9819, 'https://ror.org/04n9t5970', 'en', 1, 'https://ror.org/04n9t5970 Ministry of Digital Governance Υπουργείο Ψηφιακής Διακυβέρνησης'),
(9820, 'https://ror.org/02g13cw94', 'en', 1, 'https://ror.org/02g13cw94 Hellenic Ministry of Culture and Sports Υπουργείο Πολιτισμού και Αθλητισμού'),
(9821, 'https://ror.org/04e8qdj27', 'en', 1, 'https://ror.org/04e8qdj27 Hellenic Register of Shipping Ελληνικός Νηογνώμων'),
(9822, 'https://ror.org/05sbsdq46', 'no_lang_code', 1, 'https://ror.org/05sbsdq46 Institut Mikroelektronických Aplikací (Czechia)'),
(9823, 'https://ror.org/03s3xa281', 'no_lang_code', 1, 'https://ror.org/03s3xa281 Forthnet (Greece)'),
(9824, 'https://ror.org/011fzp843', 'no_lang_code', 1, 'https://ror.org/011fzp843 Ericsson (Serbia)'),
(9825, 'https://ror.org/031e3n874', 'no_lang_code', 1, 'https://ror.org/031e3n874 Hellenic Telecommunications Organization (Greece)'),
(9826, 'https://ror.org/00k9s8x90', 'no_lang_code', 1, 'https://ror.org/00k9s8x90 Hexagon (Belgium)'),
(9827, 'https://ror.org/02zwkwz55', 'fr', 1, 'https://ror.org/02zwkwz55 Institut National de l''Audiovisuel National Audiovisual Institute'),
(9828, 'https://ror.org/03j7xe433', 'no_lang_code', 1, 'https://ror.org/03j7xe433 Hauzer (Netherlands)'),
(9829, 'https://ror.org/01de1e381', 'no_lang_code', 1, 'https://ror.org/01de1e381 Help Service - Remote Sensing (Czechia)'),
(9830, 'https://ror.org/020cpqb94', 'en', 1, 'https://ror.org/020cpqb94 Helsingin ja Uudenmaan Sairaanhoitopiiri Hospital District of Helsinki and Uusimaa'),
(9831, 'https://ror.org/052wtvs60', 'fr', 1, 'https://ror.org/052wtvs60 Institut National de la Recherche Agronomique de Tunisie'),
(9832, 'https://ror.org/03f9txg78', 'no_lang_code', 1, 'https://ror.org/03f9txg78 Emilia Romagna Valorizzazione Economica Territorio (Italy)'),
(9833, 'https://ror.org/05474q779', 'no_lang_code', 1, 'https://ror.org/05474q779 Frequentis (Austria)'),
(9834, 'https://ror.org/02vmgn461', 'no_lang_code', 1, 'https://ror.org/02vmgn461 Esaote (Italy)'),
(9835, 'https://ror.org/00r5tk108', 'no_lang_code', 1, 'https://ror.org/00r5tk108 Fricke und Mallah Microwave Technology (Germany) Fricke und Mallah Microwave Technology GmbH'),
(9836, 'https://ror.org/01qm6x409', 'no_lang_code', 1, 'https://ror.org/01qm6x409 Esbensen Consulting Engineers (Denmark)'),
(9837, 'https://ror.org/055fajc83', 'no_lang_code', 1, 'https://ror.org/055fajc83 Frog AGV Systems (Netherlands)'),
(9838, 'https://ror.org/0570tbq97', 'en', 1, 'https://ror.org/0570tbq97 Heritage Malta'),
(9839, 'https://ror.org/0473a4773', 'en', 1, 'https://ror.org/0473a4773 Hertie School'),
(9840, 'https://ror.org/026nftk33', 'de', 1, 'https://ror.org/026nftk33 Forschungszentrum Telekommunikation Wien Telecommunications Research Center Vienna'),
(9841, 'https://ror.org/03zhpcf80', 'fr', 1, 'https://ror.org/03zhpcf80 Institut National de Recherche Halieutique'),
(9842, 'https://ror.org/02c1b5n48', 'no_lang_code', 1, 'https://ror.org/02c1b5n48 Heusch Boesefeldt (Germany)'),
(9843, 'https://ror.org/00497h462', 'no_lang_code', 1, 'https://ror.org/00497h462 Hewlett-Packard (France)'),
(9844, 'https://ror.org/01r4g9k61', 'no_lang_code', 1, 'https://ror.org/01r4g9k61 Hewlett-Packard (Italy)'),
(9845, 'https://ror.org/002e5bb83', 'no_lang_code', 1, 'https://ror.org/002e5bb83 Hexis (Switzerland)'),
(9846, 'https://ror.org/05ptnwm30', 'en', 1, 'https://ror.org/05ptnwm30 ETA-Florence Renewable Energies'),
(9847, 'https://ror.org/03ah83d07', 'no_lang_code', 1, 'https://ror.org/03ah83d07 HI Iberia (Spain)'),
(9848, 'https://ror.org/0594jva76', 'no_lang_code', 1, 'https://ror.org/0594jva76 Fumatech (Germany)');
INSERT INTO `rors` VALUES
(9849, 'https://ror.org/02ad9kp97', 'no_lang_code', 1, 'https://ror.org/02ad9kp97 Spectra-Physics (Austria)'),
(9850, 'https://ror.org/00d9y2633', 'no_lang_code', 1, 'https://ror.org/00d9y2633 NTT (Italy)'),
(9851, 'https://ror.org/02eehde62', 'en', 1, 'https://ror.org/02eehde62 Highland Council'),
(9852, 'https://ror.org/02syz9r75', 'no_lang_code', 1, 'https://ror.org/02syz9r75 Etrel (Slovenia)'),
(9853, 'https://ror.org/00q77d008', 'no_lang_code', 1, 'https://ror.org/00q77d008 Hispasat (Spain)'),
(9854, 'https://ror.org/04yk3c231', 'no_lang_code', 1, 'https://ror.org/04yk3c231 Hitachi (France)'),
(9855, 'https://ror.org/02zcy8d62', 'en', 1, 'https://ror.org/02zcy8d62 National Research Institute of Rural Engineering, Water and Forests'),
(9856, 'https://ror.org/01sed6k96', 'no_lang_code', 1, 'https://ror.org/01sed6k96 Euram (United Kingdom)'),
(9857, 'https://ror.org/00vfkb556', 'en', 1, 'https://ror.org/00vfkb556 European Centre for Information on Marine Science and Technology'),
(9858, 'https://ror.org/00y4rzv07', 'en', 1, 'https://ror.org/00y4rzv07 European rail Research Network of EXcellence'),
(9859, 'https://ror.org/05gj5j117', 'pt', 1, 'https://ror.org/05gj5j117 Fundação Bio Rio'),
(9860, 'https://ror.org/00ntj2053', 'no_lang_code', 1, 'https://ror.org/00ntj2053 Funkwerk (Germany)'),
(9861, 'https://ror.org/051zzmk23', 'no_lang_code', 1, 'https://ror.org/051zzmk23 Höganäs (Sweden)'),
(9862, 'https://ror.org/050r3h664', 'en', 1, 'https://ror.org/050r3h664 Eurocontrol'),
(9863, 'https://ror.org/05rrkws98', 'no_lang_code', 1, 'https://ror.org/05rrkws98 Euroconsultants (Greece)'),
(9864, 'https://ror.org/03m1a8t60', 'en', 1, 'https://ror.org/03m1a8t60 Eurocities'),
(9865, 'https://ror.org/01n8cxz90', 'no_lang_code', 1, 'https://ror.org/01n8cxz90 Holland Institute of Traffic Technology'),
(9866, 'https://ror.org/032tp7158', 'no_lang_code', 1, 'https://ror.org/032tp7158 Thales (Netherlands)'),
(9867, 'https://ror.org/03019xy09', 'de', 1, 'https://ror.org/03019xy09 Deutsche Gesellschaft für Holzforschung'),
(9868, 'https://ror.org/025zp6t95', 'no_lang_code', 1, 'https://ror.org/025zp6t95 Holmes Halls Processors (United Kingdom)'),
(9869, 'https://ror.org/04de2bn74', 'no_lang_code', 1, 'https://ror.org/04de2bn74 Holografika (Hungary)'),
(9870, 'https://ror.org/00bvpsj93', 'en', 1, 'https://ror.org/00bvpsj93 European Trade Union Confederation'),
(9871, 'https://ror.org/0297sbd31', 'no_lang_code', 1, 'https://ror.org/0297sbd31 Honeywell (Czechia)'),
(9872, 'https://ror.org/00sgqf002', 'no_lang_code', 1, 'https://ror.org/00sgqf002 Horiba (France)'),
(9873, 'https://ror.org/03mav6487', 'no_lang_code', 1, 'https://ror.org/03mav6487 Eurogentec (Belgium)'),
(9874, 'https://ror.org/03eywck07', 'en', 1, 'https://ror.org/03eywck07 Institute of Biodiversity and Ecosystem Research'),
(9875, 'https://ror.org/0122epm04', 'en', 1, 'https://ror.org/0122epm04 EuroHealthNet'),
(9876, 'https://ror.org/037qxtx62', 'no_lang_code', 1, 'https://ror.org/037qxtx62 Eurokleis'),
(9877, 'https://ror.org/01cjkdm63', 'fr', 1, 'https://ror.org/01cjkdm63 Houillères de Lorraine'),
(9878, 'https://ror.org/01nksd110', 'en', 1, 'https://ror.org/01nksd110 Euclid Network'),
(9879, 'https://ror.org/016pz0d03', 'no_lang_code', 1, 'https://ror.org/016pz0d03 HS-Art Digital Service (Austria)'),
(9880, 'https://ror.org/001dd4s60', 'no_lang_code', 1, 'https://ror.org/001dd4s60 Microsoft (Germany)'),
(9881, 'https://ror.org/058a3rr87', 'no_lang_code', 1, 'https://ror.org/058a3rr87 Europe for Business'),
(9882, 'https://ror.org/038cdme44', 'no_lang_code', 1, 'https://ror.org/038cdme44 Huawei Technologies (Germany)'),
(9883, 'https://ror.org/04z8azd17', 'no_lang_code', 1, 'https://ror.org/04z8azd17 Europe Unlimited (Belgium)'),
(9884, 'https://ror.org/02mm95a26', 'nl', 1, 'https://ror.org/02mm95a26 Veiligheids- en Gezondheidsregio Gelderland-Midden'),
(9885, 'https://ror.org/04rz4wy72', 'no_lang_code', 1, 'https://ror.org/04rz4wy72 Humanetics (Germany)'),
(9886, 'https://ror.org/032a8wh77', 'no_lang_code', 1, 'https://ror.org/032a8wh77 European Apparel and Textile Confederation'),
(9887, 'https://ror.org/03rsjpm20', 'en', 1, 'https://ror.org/03rsjpm20 European Aquaculture Society'),
(9888, 'https://ror.org/02petqk07', 'no_lang_code', 1, 'https://ror.org/02petqk07 Huntsman (Switzerland)'),
(9889, 'https://ror.org/05jzrgd89', 'en', 1, 'https://ror.org/05jzrgd89 European Federation of Animal Science Europäische Vereinigung für Tierproduktion Federazione Europea di Zootecnia Fédération Européenne de Zootechnie'),
(9890, 'https://ror.org/05fd42690', 'no_lang_code', 1, 'https://ror.org/05fd42690 Huron (France)'),
(9891, 'https://ror.org/03c3vzv03', 'en', 1, 'https://ror.org/03c3vzv03 European Association for Renewable Energy Europäische Vereinigung für Erneuerbare Energien Eurosolar'),
(9892, 'https://ror.org/02kgzq677', 'no_lang_code', 1, 'https://ror.org/02kgzq677 Hybrid Catalysis (Netherlands)'),
(9893, 'https://ror.org/017xb4c21', 'fr', 1, 'https://ror.org/017xb4c21 Group For Research and Technology Exchanges Groupe de Recherches et d''Echanges Technologiques'),
(9894, 'https://ror.org/01dhk3z45', 'en', 1, 'https://ror.org/01dhk3z45 Hydrogen Fuel Cells and Electro-Mobility in European Regions'),
(9895, 'https://ror.org/0335j3x48', 'en', 1, 'https://ror.org/0335j3x48 Eurocontrol'),
(9896, 'https://ror.org/05tjn7t69', 'en', 1, 'https://ror.org/05tjn7t69 European Association of Craft, Small and Medium-Sized Enterprises'),
(9897, 'https://ror.org/05mwcb123', 'en', 1, 'https://ror.org/05mwcb123 European Biomass Industry Association'),
(9898, 'https://ror.org/04hspfa12', 'en', 1, 'https://ror.org/04hspfa12 HYDROMOD Scientific Consulting'),
(9899, 'https://ror.org/05pfyvd35', 'no_lang_code', 1, 'https://ror.org/05pfyvd35 HyGear (Netherlands)'),
(9900, 'https://ror.org/029x65353', 'en', 1, 'https://ror.org/029x65353 European Business and Innovation Centre Network'),
(9901, 'https://ror.org/01tx2ss52', 'en', 1, 'https://ror.org/01tx2ss52 European Center for Information and Communication Technologies'),
(9902, 'https://ror.org/0315hq159', 'en', 1, 'https://ror.org/0315hq159 European Centre for Nature Conservation'),
(9903, 'https://ror.org/037mqvh36', 'en', 1, 'https://ror.org/037mqvh36 I & T Nardoni Institute'),
(9904, 'https://ror.org/0318myr61', 'fr', 1, 'https://ror.org/0318myr61 Arvalis - Institut du Végétal'),
(9905, 'https://ror.org/024s09f91', 'fr', 1, 'https://ror.org/024s09f91 French Institute of Textiles and Clothing Institut Français du Textile et de l''Habillement'),
(9906, 'https://ror.org/053vtpa28', 'en', 1, 'https://ror.org/053vtpa28 European Council for Maritime Applied R&D Association'),
(9907, 'https://ror.org/01hpbhh43', 'es', 1, 'https://ror.org/01hpbhh43 Fundación de Estudios de Economía Aplicada'),
(9908, 'https://ror.org/02cv4sv66', 'es', 1, 'https://ror.org/02cv4sv66 Fundación Valenciaport Valenciaport Foundation'),
(9909, 'https://ror.org/05wf54e71', 'no_lang_code', 1, 'https://ror.org/05wf54e71 I.Con. Innovation'),
(9910, 'https://ror.org/011xw5c92', 'pl', 1, 'https://ror.org/011xw5c92 Instytut Budownictwa Mechanizacji i Elektryfikacji Rolnictwa'),
(9911, 'https://ror.org/03spsm219', 'no_lang_code', 1, 'https://ror.org/03spsm219 Ingegneria dei Sistemi (Italy)'),
(9912, 'https://ror.org/044qwkx83', 'no_lang_code', 1, 'https://ror.org/044qwkx83 Vodafone (Germany)'),
(9913, 'https://ror.org/03bc0pq34', 'en', 1, 'https://ror.org/03bc0pq34 Institute for Chemical Processing of Coal'),
(9914, 'https://ror.org/02fsyqx49', 'no_lang_code', 1, 'https://ror.org/02fsyqx49 Ian Catling Consultancy'),
(9915, 'https://ror.org/04bwtsm02', 'en', 1, 'https://ror.org/04bwtsm02 Electronic Chips & Systems Design Initiative'),
(9916, 'https://ror.org/028jzvt36', 'no_lang_code', 1, 'https://ror.org/028jzvt36 Ibeo Automotive Systems (Germany)'),
(9917, 'https://ror.org/03fdkmv28', 'en', 1, 'https://ror.org/03fdkmv28 European Emergency Number Association'),
(9918, 'https://ror.org/04kwcw734', 'no_lang_code', 1, 'https://ror.org/04kwcw734 Ingenieurbüro Kleehammer Gruppe (Germany)'),
(9919, 'https://ror.org/02nsnn902', 'en', 1, 'https://ror.org/02nsnn902 Conseil Européen de l''Information sur l''Alimentation European Food Information Council Europeo de Información sobre la Alimentación Europäische Informationszentrum für Lebensmittel'),
(9920, 'https://ror.org/04jnxr720', 'en', 1, 'https://ror.org/04jnxr720 IBM Research - Ireland'),
(9921, 'https://ror.org/00rqqmc76', 'en', 1, 'https://ror.org/00rqqmc76 European Food Information Resource'),
(9922, 'https://ror.org/059ddw530', 'no_lang_code', 1, 'https://ror.org/059ddw530 IBS Precision Engineering (Netherlands)'),
(9923, 'https://ror.org/01ygx9r32', 'en', 1, 'https://ror.org/01ygx9r32 European Forum for Good Clinical Practice'),
(9924, 'https://ror.org/0376hjh49', 'no_lang_code', 1, 'https://ror.org/0376hjh49 Imperial Consultants'),
(9925, 'https://ror.org/03s3e7380', 'en', 1, 'https://ror.org/03s3e7380 European Forum of Farm Animal Breeders'),
(9926, 'https://ror.org/05cwy4x70', 'en', 1, 'https://ror.org/05cwy4x70 European Genetics Foundation'),
(9927, 'https://ror.org/03kn4xv14', 'en', 1, 'https://ror.org/03kn4xv14 Institute for High Energy Physics Институт физики высоких энергий'),
(9928, 'https://ror.org/02hj34779', 'en', 1, 'https://ror.org/02hj34779 Icelandic Meteorological Office'),
(9929, 'https://ror.org/018q3fa22', 'en', 1, 'https://ror.org/018q3fa22 Centre for Research in Engineering Surface Technology'),
(9930, 'https://ror.org/00qhf2g66', 'no_lang_code', 1, 'https://ror.org/00qhf2g66 ICI Caldaie (Italy)'),
(9931, 'https://ror.org/00vbmtf51', 'eu', 1, 'https://ror.org/00vbmtf51 Matia Fundazioa'),
(9932, 'https://ror.org/05vpwgn30', 'en', 1, 'https://ror.org/05vpwgn30 ICLEI - Local Governments for Sustainability'),
(9933, 'https://ror.org/03dsvvn23', 'en', 1, 'https://ror.org/03dsvvn23 European Health Telematics Association'),
(9934, 'https://ror.org/03azrqe31', 'no_lang_code', 1, 'https://ror.org/03azrqe31 ID Quantique (Switzerland)'),
(9935, 'https://ror.org/035swx070', 'en', 1, 'https://ror.org/035swx070 European Intermodal Association'),
(9936, 'https://ror.org/01s3qp186', 'es', 1, 'https://ror.org/01s3qp186 Aragon Hydrogen Foundation Fundación Hidrógeno Aragón'),
(9937, 'https://ror.org/04zzddp49', 'no_lang_code', 1, 'https://ror.org/04zzddp49 IDEC'),
(9938, 'https://ror.org/05m5has32', 'es', 1, 'https://ror.org/05m5has32 Fundación para la Formación e Investigación Sanitarias de la Región de Murcia'),
(9939, 'https://ror.org/01q97y624', 'en', 1, 'https://ror.org/01q97y624 Sea Europe'),
(9940, 'https://ror.org/03qezf786', 'en', 1, 'https://ror.org/03qezf786 European Materials Research Society'),
(9941, 'https://ror.org/02j41b239', 'no_lang_code', 1, 'https://ror.org/02j41b239 IdMind (Portugal)'),
(9942, 'https://ror.org/03rhy4111', 'no_lang_code', 1, 'https://ror.org/03rhy4111 IdroGeo'),
(9943, 'https://ror.org/00z24kr14', 'en', 1, 'https://ror.org/00z24kr14 Institute for Language and Speech Processing'),
(9944, 'https://ror.org/055syqv59', 'no_lang_code', 1, 'https://ror.org/055syqv59 Idronaut (Italy)'),
(9945, 'https://ror.org/05vpgt980', 'en', 1, 'https://ror.org/05vpgt980 European Network of Living Labs'),
(9946, 'https://ror.org/05pd7nw13', 'en', 1, 'https://ror.org/05pd7nw13 European Organisation for Security'),
(9947, 'https://ror.org/047hhy227', 'en', 1, 'https://ror.org/047hhy227 Institute for Parallel Processing Институт по паралелна обработка'),
(9948, 'https://ror.org/049nq5186', 'en', 1, 'https://ror.org/049nq5186 European Photovoltaic Industry Association'),
(9949, 'https://ror.org/012th4177', 'es', 1, 'https://ror.org/012th4177 Fundación Universidad Empresa'),
(9950, 'https://ror.org/00pj6x992', 'en', 1, 'https://ror.org/00pj6x992 IEA Clean Coal Centre'),
(9951, 'https://ror.org/018rhs370', 'no_lang_code', 1, 'https://ror.org/018rhs370 IFC Research (United Kingdom)'),
(9952, 'https://ror.org/00wzstx67', 'no_lang_code', 1, 'https://ror.org/00wzstx67 Vodafone (Spain)'),
(9953, 'https://ror.org/039q7yt14', 'no_lang_code', 1, 'https://ror.org/039q7yt14 European Plastics Converters'),
(9954, 'https://ror.org/047y4v704', 'en', 1, 'https://ror.org/047y4v704 European Renewable Energy Council'),
(9955, 'https://ror.org/03n6ktv33', 'en', 1, 'https://ror.org/03n6ktv33 Furniture Industry Research Association'),
(9956, 'https://ror.org/05nym7d38', 'no_lang_code', 1, 'https://ror.org/05nym7d38 Future Analytics'),
(9957, 'https://ror.org/055zrhj18', 'en', 1, 'https://ror.org/055zrhj18 European Research Consortium for Informatics and Mathematics'),
(9958, 'https://ror.org/00zkzkq53', 'en', 1, 'https://ror.org/00zkzkq53 International Information Management Corporation'),
(9959, 'https://ror.org/00c8n3h65', 'en', 1, 'https://ror.org/00c8n3h65 European Respiratory Society'),
(9960, 'https://ror.org/00z908q62', 'en', 1, 'https://ror.org/00z908q62 Institute for Transport Sciences'),
(9961, 'https://ror.org/00xh3h995', 'en', 1, 'https://ror.org/00xh3h995 Institute of Agricultural Economics'),
(9962, 'https://ror.org/01qv87150', 'en', 1, 'https://ror.org/01qv87150 European School of Haematology'),
(9963, 'https://ror.org/03hp1m080', 'no_lang_code', 1, 'https://ror.org/03hp1m080 Ikerlan'),
(9964, 'https://ror.org/0100ngp47', 'no_lang_code', 1, 'https://ror.org/0100ngp47 Ikv++ Technologies (Germany)'),
(9965, 'https://ror.org/01qf41w60', 'en', 1, 'https://ror.org/01qf41w60 European Small Hydropower Association'),
(9966, 'https://ror.org/01xfba851', 'no_lang_code', 1, 'https://ror.org/01xfba851 Ilva (Italy)'),
(9967, 'https://ror.org/01cebzr82', 'no_lang_code', 1, 'https://ror.org/01cebzr82 GAF AG'),
(9968, 'https://ror.org/02j557320', 'no_lang_code', 1, 'https://ror.org/02j557320 Galilaeus (Finland)'),
(9969, 'https://ror.org/01p89z653', 'no_lang_code', 1, 'https://ror.org/01p89z653 IMA Materialforschung und Anwendungstechnik'),
(9970, 'https://ror.org/05r7x8h86', 'no_lang_code', 1, 'https://ror.org/05r7x8h86 Imaginary (Italy)'),
(9971, 'https://ror.org/00tvcfv48', 'no_lang_code', 1, 'https://ror.org/00tvcfv48 Galson Sciences'),
(9972, 'https://ror.org/05vzfb740', 'en', 1, 'https://ror.org/05vzfb740 European Smart Card Industry Association'),
(9973, 'https://ror.org/05hkpph68', 'no_lang_code', 1, 'https://ror.org/05hkpph68 Imagination Computer Services (Austria)'),
(9974, 'https://ror.org/01qxm2j98', 'en', 1, 'https://ror.org/01qxm2j98 Institute of Agrophysics, Polish Academy of Sciences'),
(9975, 'https://ror.org/01qtasp15', 'en', 1, 'https://ror.org/01qtasp15 European Southern Observatory Europäische Südsternwarte'),
(9976, 'https://ror.org/03k52yd02', 'no_lang_code', 1, 'https://ror.org/03k52yd02 Imasonic'),
(9977, 'https://ror.org/00yps2t15', 'no_lang_code', 1, 'https://ror.org/00yps2t15 Gasera (Finland)'),
(9978, 'https://ror.org/05pyc3h39', 'en', 1, 'https://ror.org/05pyc3h39 Institute of Atomic Energy Instytut Energii Atomowej'),
(9979, 'https://ror.org/0106f6f93', 'en', 1, 'https://ror.org/0106f6f93 European Technology Development'),
(9980, 'https://ror.org/04g8dha87', 'no_lang_code', 1, 'https://ror.org/04g8dha87 GATC Biotech (Germany)'),
(9981, 'https://ror.org/02t2d6j21', 'en', 1, 'https://ror.org/02t2d6j21 Institute of Baltic Studies'),
(9982, 'https://ror.org/01m693m08', 'no_lang_code', 1, 'https://ror.org/01m693m08 European Transonic Windtunnel (Germany)'),
(9983, 'https://ror.org/02tb8n028', 'en', 1, 'https://ror.org/02tb8n028 Institute of Bioorganic Chemistry and Petrochemistry V.P. Kukhar'),
(9984, 'https://ror.org/02ybv7q93', 'no_lang_code', 1, 'https://ror.org/02ybv7q93 Engie (France)'),
(9985, 'https://ror.org/02qcxga94', 'en', 1, 'https://ror.org/02qcxga94 European Union Road Federation'),
(9986, 'https://ror.org/05ehfjt50', 'no_lang_code', 1, 'https://ror.org/05ehfjt50 General Electric (Italy)'),
(9987, 'https://ror.org/05qwb1j70', 'en', 1, 'https://ror.org/05qwb1j70 European Virtual Institute for Integrated Risk Management'),
(9988, 'https://ror.org/01jemb993', 'en', 1, 'https://ror.org/01jemb993 Semenov Institute of Chemical Physics Институт химической физики имени Н. Н. Семёнова'),
(9989, 'https://ror.org/01c0de609', 'no_lang_code', 1, 'https://ror.org/01c0de609 IMIX Vision Support Systems (Netherlands)'),
(9990, 'https://ror.org/01farpt19', 'no_lang_code', 1, 'https://ror.org/01farpt19 Danaher (France)'),
(9991, 'https://ror.org/003h0ev22', 'nl', 1, 'https://ror.org/003h0ev22 Gemeente Amsterdam'),
(9992, 'https://ror.org/04dyx6987', 'nl', 1, 'https://ror.org/04dyx6987 Gemeente Eindhoven'),
(9993, 'https://ror.org/05xrtfh49', 'en', 1, 'https://ror.org/05xrtfh49 European Virtual Institute on Knowledge-based Multifunctional Materials'),
(9994, 'https://ror.org/03ma5tr22', 'nl', 1, 'https://ror.org/03ma5tr22 Gemeente Rotterdam'),
(9995, 'https://ror.org/05br4cc69', 'no_lang_code', 1, 'https://ror.org/05br4cc69 AkzoNobel (United Kingdom)'),
(9996, 'https://ror.org/00mneww03', 'en', 1, 'https://ror.org/00mneww03 Institute of Ecology and Botany Ökológiai és Botanikai Intézet'),
(9997, 'https://ror.org/05rzqb565', 'en', 1, 'https://ror.org/05rzqb565 Port of Rotterdam Authority'),
(9998, 'https://ror.org/00qkeey15', 'en', 1, 'https://ror.org/00qkeey15 WindEurope'),
(9999, 'https://ror.org/00893gj13', 'no_lang_code', 1, 'https://ror.org/00893gj13 In JeT ApS (Denmark)'),
(10000, 'https://ror.org/02a5meq09', 'pl', 1, 'https://ror.org/02a5meq09 Institute of Economics of the Polish Academy of Sciences Instytut Nauk Ekonomicznych'),
(10001, 'https://ror.org/05prc0a24', 'no_lang_code', 1, 'https://ror.org/05prc0a24 Europus'),
(10002, 'https://ror.org/048x1jh88', 'no_lang_code', 1, 'https://ror.org/048x1jh88 Euroquality'),
(10003, 'https://ror.org/0256wzd68', 'no_lang_code', 1, 'https://ror.org/0256wzd68 In2 Search Interfaces Development (United Kingdom)'),
(10004, 'https://ror.org/01nq9yz29', 'no_lang_code', 1, 'https://ror.org/01nq9yz29 Inasco (Greece)'),
(10005, 'https://ror.org/04428zn91', 'no_lang_code', 1, 'https://ror.org/04428zn91 Thermo Fisher Scientific (Germany)'),
(10006, 'https://ror.org/03mqgwc47', 'no_lang_code', 1, 'https://ror.org/03mqgwc47 Inburex Consulting'),
(10007, 'https://ror.org/01yzrt577', 'no_lang_code', 1, 'https://ror.org/01yzrt577 Genedata (Switzerland)'),
(10008, 'https://ror.org/04adynk16', 'no_lang_code', 1, 'https://ror.org/04adynk16 InConTec (Germany)'),
(10009, 'https://ror.org/00we3bs91', 'no_lang_code', 1, 'https://ror.org/00we3bs91 DuPont (Netherlands)'),
(10010, 'https://ror.org/01awdzs62', 'no_lang_code', 1, 'https://ror.org/01awdzs62 Larco (Greece)'),
(10011, 'https://ror.org/03pzspq13', 'en', 1, 'https://ror.org/03pzspq13 Ofcom'),
(10012, 'https://ror.org/00f55ed39', 'no_lang_code', 1, 'https://ror.org/00f55ed39 Eurosense (Belgium)'),
(10013, 'https://ror.org/04zvb9t44', 'en', 1, 'https://ror.org/04zvb9t44 Ministry of Education and Religious Affairs Υπουργείο Παιδείας, Έρευνας και Θρησκευμάτων'),
(10014, 'https://ror.org/02j8vpa07', 'en', 1, 'https://ror.org/02j8vpa07 Földrajztudományi Kutatóintézet Geographical Institute'),
(10015, 'https://ror.org/04v5zxc18', 'no_lang_code', 1, 'https://ror.org/04v5zxc18 geniaLab (Germany)'),
(10016, 'https://ror.org/04hhk2180', 'no_lang_code', 1, 'https://ror.org/04hhk2180 Eurotech (Italy)'),
(10017, 'https://ror.org/01hz5c771', 'en', 1, 'https://ror.org/01hz5c771 Institute of Geography Федеральное государственное бюджетное учреждение науки Институт географии Российской Академии наук'),
(10018, 'https://ror.org/01xbt9y54', 'no_lang_code', 1, 'https://ror.org/01xbt9y54 Genias Benelux (Netherlands)'),
(10019, 'https://ror.org/02vxn7j69', 'no_lang_code', 1, 'https://ror.org/02vxn7j69 European Telecommunications Satellite Organization'),
(10020, 'https://ror.org/01mcqw380', 'en', 1, 'https://ror.org/01mcqw380 Institute of Hydroengineering Instytut Budownictwa Wodnego PAN'),
(10021, 'https://ror.org/03av1g763', 'no_lang_code', 1, 'https://ror.org/03av1g763 Genos (Croatia)'),
(10022, 'https://ror.org/03rjwv512', 'no_lang_code', 1, 'https://ror.org/03rjwv512 Sener (Spain)'),
(10023, 'https://ror.org/01gjr8a79', 'no_lang_code', 1, 'https://ror.org/01gjr8a79 Eutema Technology Management'),
(10024, 'https://ror.org/02e8b3g15', 'no_lang_code', 1, 'https://ror.org/02e8b3g15 EV Group (Austria)'),
(10025, 'https://ror.org/017r9q421', 'no_lang_code', 1, 'https://ror.org/017r9q421 Genoway (France)'),
(10026, 'https://ror.org/05d4jgp54', 'en', 1, 'https://ror.org/05d4jgp54 Evaluations and Language resources Distribution Agency'),
(10027, 'https://ror.org/054qg8b39', 'no_lang_code', 1, 'https://ror.org/054qg8b39 Industrial Control Solutions'),
(10028, 'https://ror.org/024pwg683', 'no_lang_code', 1, 'https://ror.org/024pwg683 GenXPro (Germany)'),
(10029, 'https://ror.org/04c5mqw76', 'no_lang_code', 1, 'https://ror.org/04c5mqw76 Industrial Design Consultancy'),
(10030, 'https://ror.org/02yq4v676', 'no_lang_code', 1, 'https://ror.org/02yq4v676 EVECO Brno (Czechia)'),
(10031, 'https://ror.org/059e1y590', 'no_lang_code', 1, 'https://ror.org/059e1y590 Geoimaging (Cyprus)'),
(10032, 'https://ror.org/0178m6t08', 'no_lang_code', 1, 'https://ror.org/0178m6t08 Correanayak (Spain)'),
(10033, 'https://ror.org/01rfsrc09', 'no_lang_code', 1, 'https://ror.org/01rfsrc09 Evektor (Czechia)'),
(10034, 'https://ror.org/040458q49', 'en', 1, 'https://ror.org/040458q49 Geological Institute Strashimir Dimitrov Геологически институт "Страшимир Димитров"'),
(10035, 'https://ror.org/03eh15043', 'no_lang_code', 1, 'https://ror.org/03eh15043 Pirelli (Italy)'),
(10036, 'https://ror.org/034m0w958', 'en', 1, 'https://ror.org/034m0w958 Institute of Mathematical Machines and Systems Problems Інститут проблем математичних машин і систем НАН України'),
(10037, 'https://ror.org/05bdw2t94', 'no_lang_code', 1, 'https://ror.org/05bdw2t94 Industrieanlagen Betriebsgesellschaft (Germany)'),
(10038, 'https://ror.org/05tfemw78', 'no_lang_code', 1, 'https://ror.org/05tfemw78 Evoleo Technologies (Portugal)'),
(10039, 'https://ror.org/00t9eec57', 'no_lang_code', 1, 'https://ror.org/00t9eec57 Geonardo (Hungary)'),
(10040, 'https://ror.org/03x78r446', 'en', 1, 'https://ror.org/03x78r446 Institute of Mechanics Институт по механика'),
(10041, 'https://ror.org/02c2zwv68', 'no_lang_code', 1, 'https://ror.org/02c2zwv68 Exact Dynamics (Netherlands)'),
(10042, 'https://ror.org/00fwghy33', 'en', 1, 'https://ror.org/00fwghy33 Georgian Research and Educational Networking Association'),
(10043, 'https://ror.org/00gywet31', 'en', 1, 'https://ror.org/00gywet31 National Institute of Geophysics, Geodesy and Geography Национален институт по геофизика, геодезия и география'),
(10044, 'https://ror.org/05rqavg73', 'no_lang_code', 1, 'https://ror.org/05rqavg73 Dassault Systèmes (Canada)'),
(10045, 'https://ror.org/02bcp5978', 'no_lang_code', 1, 'https://ror.org/02bcp5978 Exergia, Energy, Management and Information Technology'),
(10046, 'https://ror.org/05pq9tk67', 'no_lang_code', 1, 'https://ror.org/05pq9tk67 Exergy (United Kingdom)'),
(10047, 'https://ror.org/02a596w22', 'no_lang_code', 1, 'https://ror.org/02a596w22 Institute of Mechanics of Materials and Geostructures'),
(10048, 'https://ror.org/056492z45', 'en', 1, 'https://ror.org/056492z45 Institute of Metal Science, Equipment and Technologies Институт по металознание техника и технологии'),
(10049, 'https://ror.org/02w7mbm90', 'en', 1, 'https://ror.org/02w7mbm90 Institute of Metallurgy and Materials Science Instytut Metalurgii i Inżynierii Materiałowej PAN'),
(10050, 'https://ror.org/01kg1j482', 'no_lang_code', 1, 'https://ror.org/01kg1j482 Geotek (United Kingdom)'),
(10051, 'https://ror.org/010p49b38', 'no_lang_code', 1, 'https://ror.org/010p49b38 GeoVille (Austria)'),
(10052, 'https://ror.org/05yq3xa52', 'no_lang_code', 1, 'https://ror.org/05yq3xa52 Inetec (Croatia)'),
(10053, 'https://ror.org/03r048b78', 'no_lang_code', 1, 'https://ror.org/03r048b78 InferMed'),
(10054, 'https://ror.org/03msng824', 'no_lang_code', 1, 'https://ror.org/03msng824 Infineon Technologies (Austria)'),
(10055, 'https://ror.org/05vwbz082', 'en', 1, 'https://ror.org/05vwbz082 German Dutch Wind Tunnels'),
(10056, 'https://ror.org/04ax6zj28', 'no_lang_code', 1, 'https://ror.org/04ax6zj28 Infocarto'),
(10057, 'https://ror.org/00t7c6f62', 'en', 1, 'https://ror.org/00t7c6f62 Institute of Molecular Biology Институт по молекулярна биология'),
(10058, 'https://ror.org/02ma7yv75', 'en', 1, 'https://ror.org/02ma7yv75 Institute of Nanotechnology'),
(10059, 'https://ror.org/02hbmds06', 'de', 1, 'https://ror.org/02hbmds06 Gesellschaft für Fertigungstechnik und Entwicklung'),
(10060, 'https://ror.org/02evrg063', 'no_lang_code', 1, 'https://ror.org/02evrg063 Papenmeier (Germany)'),
(10061, 'https://ror.org/03gxcr347', 'no_lang_code', 1, 'https://ror.org/03gxcr347 Infosys (France)'),
(10062, 'https://ror.org/01a1xfd09', 'en', 1, 'https://ror.org/01a1xfd09 Institute for Nuclear Research Институт ядерных исследований'),
(10063, 'https://ror.org/01gyw2394', 'no_lang_code', 1, 'https://ror.org/01gyw2394 Gestione Sistemi per l’Informatica (Italy)'),
(10064, 'https://ror.org/02s9dw784', 'no_lang_code', 1, 'https://ror.org/02s9dw784 Gesellschaft für Elektrometallurgie (Germany)'),
(10065, 'https://ror.org/00kznd563', 'no_lang_code', 1, 'https://ror.org/00kznd563 Ingeniería de Sistemas para la Defensa de España'),
(10066, 'https://ror.org/019xkjn34', 'no_lang_code', 1, 'https://ror.org/019xkjn34 Intertek (Sweden)'),
(10067, 'https://ror.org/00jbx2e92', 'en', 1, 'https://ror.org/00jbx2e92 Institute of Organic Chemistry with Centre of Phytochemistry Институт по органична химия с Център по фитохимия'),
(10068, 'https://ror.org/00eb1e195', 'en', 1, 'https://ror.org/00eb1e195 Institute of Physical Chemistry Институт по физикохимия'),
(10069, 'https://ror.org/04ewgt853', 'no_lang_code', 1, 'https://ror.org/04ewgt853 Ingenieurgruppe IVV (Germany)'),
(10070, 'https://ror.org/03fdne361', 'no_lang_code', 1, 'https://ror.org/03fdne361 InvivoGen (France)'),
(10071, 'https://ror.org/053e6g844', 'no_lang_code', 1, 'https://ror.org/053e6g844 Giesecke and Devrient (Germany)'),
(10072, 'https://ror.org/04yt64j61', 'no_lang_code', 1, 'https://ror.org/04yt64j61 Gilat Satellite Networks (Israel)'),
(10073, 'https://ror.org/02q9khv47', 'no_lang_code', 1, 'https://ror.org/02q9khv47 Factum'),
(10074, 'https://ror.org/04xhfgr69', 'no_lang_code', 1, 'https://ror.org/04xhfgr69 Altran (Italy)'),
(10075, 'https://ror.org/04y280w56', 'no_lang_code', 1, 'https://ror.org/04y280w56 Inlecom Systems (United Kingdom)'),
(10076, 'https://ror.org/02g3bbd17', 'no_lang_code', 1, 'https://ror.org/02g3bbd17 Gisat (Czechia)'),
(10077, 'https://ror.org/03wmxmy95', 'en', 1, 'https://ror.org/03wmxmy95 Geographical Information System International Group'),
(10078, 'https://ror.org/037p90z15', 'ga', 1, 'https://ror.org/037p90z15 Foras Áiseanna Saothair Training and Employment Authority'),
(10079, 'https://ror.org/01w58mc13', 'it', 1, 'https://ror.org/01w58mc13 Federazione delle Associazioni Scientifiche e Tecniche'),
(10080, 'https://ror.org/000sfad56', 'en', 1, 'https://ror.org/000sfad56 Institute of Physics Instytut Fizyki PAN'),
(10081, 'https://ror.org/0367jyj65', 'no_lang_code', 1, 'https://ror.org/0367jyj65 FastOpt (Germany)'),
(10082, 'https://ror.org/01kkw3w51', 'no_lang_code', 1, 'https://ror.org/01kkw3w51 Grupo Inmark'),
(10083, 'https://ror.org/02we6hx96', 'en', 1, 'https://ror.org/02we6hx96 Institute of Physics Інститут фізики НАН України Институт физики НАН Украины'),
(10084, 'https://ror.org/013gkrj37', 'no_lang_code', 1, 'https://ror.org/013gkrj37 GKI Economic Research (Hungary)'),
(10085, 'https://ror.org/04nff2163', 'no_lang_code', 1, 'https://ror.org/04nff2163 GKN (Sweden)'),
(10086, 'https://ror.org/03fe56089', 'no_lang_code', 1, 'https://ror.org/03fe56089 GlaxoSmithKline (Italy)'),
(10087, 'https://ror.org/00g0ddq73', 'no_lang_code', 1, 'https://ror.org/00g0ddq73 Inmarsat (United Kingdom)'),
(10088, 'https://ror.org/054nf0d79', 'no_lang_code', 1, 'https://ror.org/054nf0d79 Ingenasa (Spain)'),
(10089, 'https://ror.org/02ce9qs13', 'en', 1, 'https://ror.org/02ce9qs13 Institutes of Science and Development 科技战略咨询研究院'),
(10090, 'https://ror.org/04vr0gs97', 'en', 1, 'https://ror.org/04vr0gs97 Institute for Political Sciences MTA Társadalomtudományi Kutatóközpont Politikatudományi Intézet'),
(10091, 'https://ror.org/02cm8kt07', 'no_lang_code', 1, 'https://ror.org/02cm8kt07 Inno (Germany)'),
(10092, 'https://ror.org/029zea722', 'en', 1, 'https://ror.org/029zea722 Research Institute of Pomology and Floriculture'),
(10093, 'https://ror.org/052xw2c95', 'no_lang_code', 1, 'https://ror.org/052xw2c95 Inno (France)'),
(10094, 'https://ror.org/05yjrf567', 'no_lang_code', 1, 'https://ror.org/05yjrf567 Innora'),
(10095, 'https://ror.org/00tzr1w49', 'no_lang_code', 1, 'https://ror.org/00tzr1w49 InnospeXion (Denmark)'),
(10096, 'https://ror.org/010jn4k46', 'en', 1, 'https://ror.org/010jn4k46 Frantsevich Institute for Problems in Materials Science Інституту проблем матеріалознавства ім. І.М. Францевича'),
(10097, 'https://ror.org/04s1anr92', 'no_lang_code', 1, 'https://ror.org/04s1anr92 Innova (Italy)'),
(10098, 'https://ror.org/05xx8bb48', 'en', 1, 'https://ror.org/05xx8bb48 Sieć Badawcza Łukasiewicz - Instytut Spawalnictwa Łukasiewicz Research Network - Institute of Welding'),
(10099, 'https://ror.org/02r65gs06', 'no_lang_code', 1, 'https://ror.org/02r65gs06 Institute of Telecommunication and Information Technologies Instytut Technik Telekomunikacyjnych i Informatycznych (Poland)'),
(10100, 'https://ror.org/00sxjp357', 'no_lang_code', 1, 'https://ror.org/00sxjp357 Innovation Engineering (Italy)'),
(10101, 'https://ror.org/04sy6z157', 'no_lang_code', 1, 'https://ror.org/04sy6z157 Innovative Technology and Science (United Kingdom)'),
(10102, 'https://ror.org/05memys52', 'en', 1, 'https://ror.org/05memys52 Austrian Research Centre for Forests Bundesforschungs- und Ausbildungszentrum für Wald, Naturgefahren und Landschaft'),
(10103, 'https://ror.org/00fb7yx07', 'en', 1, 'https://ror.org/00fb7yx07 Institute of High Pressure Physics Instytut Wysokich Ciśnień'),
(10104, 'https://ror.org/001mfwh65', 'en', 1, 'https://ror.org/001mfwh65 International Scientific Council for Island Development'),
(10105, 'https://ror.org/03k462x97', 'no_lang_code', 1, 'https://ror.org/03k462x97 Inte:Ligand (Austria)'),
(10106, 'https://ror.org/0216hp691', 'en', 1, 'https://ror.org/0216hp691 Institute for Sociology MTA Társadalomtudományi Kutatóközpont Szociológiai Intézet'),
(10107, 'https://ror.org/05t4n0c27', 'en', 1, 'https://ror.org/05t4n0c27 Georgi Nadjakov Institute of Solid State Physics Георги Наджаков Институт по физика на твърдото'),
(10108, 'https://ror.org/04543zj30', 'no_lang_code', 1, 'https://ror.org/04543zj30 INTECS (Italy)'),
(10109, 'https://ror.org/02341fy35', 'no_lang_code', 1, 'https://ror.org/02341fy35 Innovision (Denmark)'),
(10110, 'https://ror.org/03y4g9f74', 'no_lang_code', 1, 'https://ror.org/03y4g9f74 Inotex (Czechia)'),
(10111, 'https://ror.org/01kj2rq74', 'no_lang_code', 1, 'https://ror.org/01kj2rq74 Internal Systems Limited (United Kingdom)'),
(10112, 'https://ror.org/00s6sp697', 'no_lang_code', 1, 'https://ror.org/00s6sp697 Integrasys (Spain)'),
(10113, 'https://ror.org/019p95v81', 'en', 1, 'https://ror.org/019p95v81 HOPE European Hospital and Healthcare Federation'),
(10114, 'https://ror.org/058nsgg43', 'no_lang_code', 1, 'https://ror.org/058nsgg43 Integrated Radiological Services (United Kingdom)'),
(10115, 'https://ror.org/049128m26', 'no_lang_code', 1, 'https://ror.org/049128m26 Integrated Resources Management Company (Malta)'),
(10116, 'https://ror.org/02drtb754', 'fr', 1, 'https://ror.org/02drtb754 Fédération Internationale de l''Automobile International Automobile Federation'),
(10117, 'https://ror.org/04wrsbk19', 'en', 1, 'https://ror.org/04wrsbk19 Federation of European Aquaculture Producers'),
(10118, 'https://ror.org/032base07', 'no_lang_code', 1, 'https://ror.org/032base07 Inspira'),
(10119, 'https://ror.org/02zp8yy63', 'no_lang_code', 1, 'https://ror.org/02zp8yy63 FEG Textiltechnik (Germany)'),
(10120, 'https://ror.org/02sy45055', 'no_lang_code', 1, 'https://ror.org/02sy45055 Inspire'),
(10121, 'https://ror.org/00wdf2875', 'en', 1, 'https://ror.org/00wdf2875 IHE Europe'),
(10122, 'https://ror.org/02d73fs96', 'no_lang_code', 1, 'https://ror.org/02d73fs96 ITI (United Kingdom)'),
(10123, 'https://ror.org/00m2x0g47', 'no_lang_code', 1, 'https://ror.org/00m2x0g47 Intel (Germany)'),
(10124, 'https://ror.org/04yy66p73', 'fr', 1, 'https://ror.org/04yy66p73 Institution de la Recherche et de l’Enseignement Supérieur Agricoles'),
(10125, 'https://ror.org/05ve3t520', 'no_lang_code', 1, 'https://ror.org/05ve3t520 Intelligence for Environment and Security (Italy)'),
(10126, 'https://ror.org/0009wsb17', 'en', 1, 'https://ror.org/0009wsb17 A N Bach Institute of Biochemistry Институт биохимии им. А.Н.Баха'),
(10127, 'https://ror.org/0588ktq11', 'no_lang_code', 1, 'https://ror.org/0588ktq11 Stora Enso (Germany)'),
(10128, 'https://ror.org/03vehc845', 'no_lang_code', 1, 'https://ror.org/03vehc845 Irepa Laser (France)'),
(10129, 'https://ror.org/03ys8xj90', 'no_lang_code', 1, 'https://ror.org/03ys8xj90 Intelligent Software Components (Spain)'),
(10130, 'https://ror.org/01x4vnn38', 'es', 1, 'https://ror.org/01x4vnn38 Instituto Andaluz de Tecnología'),
(10131, 'https://ror.org/0493xxf64', 'no_lang_code', 1, 'https://ror.org/0493xxf64 Eurofins (Denmark)'),
(10132, 'https://ror.org/01txgmm25', 'es', 1, 'https://ror.org/01txgmm25 Instituto Canario de Ciencias Marinas'),
(10133, 'https://ror.org/00brd1934', 'no_lang_code', 1, 'https://ror.org/00brd1934 Intelligentsia Consultants'),
(10134, 'https://ror.org/04hxcbe86', 'no_lang_code', 1, 'https://ror.org/04hxcbe86 Transports Metropolitans de Barcelona (Spain)'),
(10135, 'https://ror.org/02c4sht73', 'no_lang_code', 1, 'https://ror.org/02c4sht73 Trenitalia (Italy)'),
(10136, 'https://ror.org/05sdy1b47', 'en', 1, 'https://ror.org/05sdy1b47 Interactive Technology Software and Media Association'),
(10137, 'https://ror.org/01bdddp98', 'no_lang_code', 1, 'https://ror.org/01bdddp98 FeyeCon (Netherlands)'),
(10138, 'https://ror.org/023xbne13', 'fr', 1, 'https://ror.org/023xbne13 Industrial Economics Institute Institut d''Économie Industrielle'),
(10139, 'https://ror.org/04f2fqx85', 'no_lang_code', 1, 'https://ror.org/04f2fqx85 Bayer (Greece)'),
(10140, 'https://ror.org/03x3tkg74', 'pt', 1, 'https://ror.org/03x3tkg74 Instituto de Ciências da Terra e do Espaço'),
(10141, 'https://ror.org/04brghb67', 'no_lang_code', 1, 'https://ror.org/04brghb67 Hottinger Baldwin Messtechnik (Portugal)'),
(10142, 'https://ror.org/04n831v95', 'en', 1, 'https://ror.org/04n831v95 Interdisciplinary Centre for Comparative Research Foundation'),
(10143, 'https://ror.org/050bkss19', 'no_lang_code', 1, 'https://ror.org/050bkss19 InterInnov (France)'),
(10144, 'https://ror.org/02gbfwn85', 'no_lang_code', 1, 'https://ror.org/02gbfwn85 Intermarine (Italy)'),
(10145, 'https://ror.org/04qd0gm75', 'es', 1, 'https://ror.org/04qd0gm75 Institut de Cultura de Barcelona'),
(10146, 'https://ror.org/03bjbem32', 'no_lang_code', 1, 'https://ror.org/03bjbem32 IBM (Belgium)'),
(10147, 'https://ror.org/0419dpe16', 'no_lang_code', 1, 'https://ror.org/0419dpe16 Ficosa International (Spain)'),
(10148, 'https://ror.org/054cq3r13', 'fr', 1, 'https://ror.org/054cq3r13 Institut de l''Audiovisuel et des Télécommunications en Europe'),
(10149, 'https://ror.org/04bd4pk40', 'no_lang_code', 1, 'https://ror.org/04bd4pk40 WorldFish'),
(10150, 'https://ror.org/00stv9r10', 'no_lang_code', 1, 'https://ror.org/00stv9r10 Fidia (Italy)'),
(10151, 'https://ror.org/01csjkt09', 'fr', 1, 'https://ror.org/01csjkt09 Institut de l’Elevage'),
(10152, 'https://ror.org/02n2syw04', 'en', 1, 'https://ror.org/02n2syw04 International Center for Agricultural Research in the Dry Areas'),
(10153, 'https://ror.org/03j4rrt43', 'en', 1, 'https://ror.org/03j4rrt43 International Centre for Genetic Engineering and Biotechnology'),
(10154, 'https://ror.org/043bgf219', 'en', 1, 'https://ror.org/043bgf219 International Centre for Genetic Engineering and Biotechnology'),
(10155, 'https://ror.org/037pbdd49', 'no_lang_code', 1, 'https://ror.org/037pbdd49 Q PLAN International (Greece)'),
(10156, 'https://ror.org/00g656d67', 'en', 1, 'https://ror.org/00g656d67 Leibniz-Institut für Neue Materialien Leibniz-Institute for New Materials'),
(10157, 'https://ror.org/00s1q1t70', 'en', 1, 'https://ror.org/00s1q1t70 Institute of Earthquake Prediction Theory and Mathematical Geophysics Федеральное государственное бюджетное учреждение науки Институт теории прогноза землетрясений и математической геофизики Российской академии наук (ИТПЗ РАН)'),
(10158, 'https://ror.org/01t1g3y18', 'en', 1, 'https://ror.org/01t1g3y18 International Life Sciences Institute Europe'),
(10159, 'https://ror.org/054gk2851', 'en', 1, 'https://ror.org/054gk2851 St Thomas'' Hospital'),
(10160, 'https://ror.org/01q2q9h07', 'no_lang_code', 1, 'https://ror.org/01q2q9h07 International Mining Consultants'),
(10161, 'https://ror.org/02jh4h461', 'en', 1, 'https://ror.org/02jh4h461 Leicester City Council'),
(10162, 'https://ror.org/04cmxh670', 'no_lang_code', 1, 'https://ror.org/04cmxh670 Lenzing (Austria)'),
(10163, 'https://ror.org/05xqtsb23', 'en', 1, 'https://ror.org/05xqtsb23 International Solvay Institutes'),
(10164, 'https://ror.org/05vhqss82', 'en', 1, 'https://ror.org/05vhqss82 Internet Memory Foundation'),
(10165, 'https://ror.org/02wzfbs47', 'no_lang_code', 1, 'https://ror.org/02wzfbs47 Instituto Tecnológico de Canarias Technological Institute of the Canary Islands'),
(10166, 'https://ror.org/00g8wpx06', 'en', 1, 'https://ror.org/00g8wpx06 LGI Consulting'),
(10167, 'https://ror.org/018n9jg91', 'no_lang_code', 1, 'https://ror.org/018n9jg91 InterSoft (Slovakia)'),
(10168, 'https://ror.org/023f9bb65', 'no_lang_code', 1, 'https://ror.org/023f9bb65 Liebherr (Germany)'),
(10169, 'https://ror.org/014a5cc29', 'no_lang_code', 1, 'https://ror.org/014a5cc29 Liebherr (France)'),
(10170, 'https://ror.org/00rj43d51', 'en', 1, 'https://ror.org/00rj43d51 Lithuanian Innovation Centre'),
(10171, 'https://ror.org/04wes7s39', 'no_lang_code', 1, 'https://ror.org/04wes7s39 InteSys (United Kingdom)'),
(10172, 'https://ror.org/0027v6s71', 'no_lang_code', 1, 'https://ror.org/0027v6s71 INTRASOFT International (Greece)'),
(10173, 'https://ror.org/017ddyz63', 'no_lang_code', 1, 'https://ror.org/017ddyz63 INTRASOFT International (Belgium)'),
(10174, 'https://ror.org/03dcvkh04', 'no_lang_code', 1, 'https://ror.org/03dcvkh04 Intrinsiq Materials (United Kingdom)'),
(10175, 'https://ror.org/04tfjah29', 'en', 1, 'https://ror.org/04tfjah29 Limnological Institute Федеральное государственное бюджетное учреждение науки Лимнологический институт Сибирского отделения Российской академии наук (ЛИН СО РАН)'),
(10176, 'https://ror.org/03adfn654', 'no_lang_code', 1, 'https://ror.org/03adfn654 Lincis (Portugal)'),
(10177, 'https://ror.org/02ckn6v62', 'fi', 1, 'https://ror.org/02ckn6v62 Turku Science Park'),
(10178, 'https://ror.org/054jcy957', 'no_lang_code', 1, 'https://ror.org/054jcy957 Instituttet for Produktudvikling (Denmark)'),
(10179, 'https://ror.org/053d55q96', 'no_lang_code', 1, 'https://ror.org/053d55q96 Linde (Germany)'),
(10180, 'https://ror.org/02hqjzm41', 'ro', 1, 'https://ror.org/02hqjzm41 Institutul de Cercetari Electrotehnice'),
(10181, 'https://ror.org/00zh7c888', 'en', 1, 'https://ror.org/00zh7c888 Lindholmen Science Park'),
(10182, 'https://ror.org/03h6c8g90', 'no_lang_code', 1, 'https://ror.org/03h6c8g90 Vdlconsult'),
(10183, 'https://ror.org/036h6da34', 'no_lang_code', 1, 'https://ror.org/036h6da34 Linguatec (Germany)'),
(10184, 'https://ror.org/0171vtm86', 'no_lang_code', 1, 'https://ror.org/0171vtm86 SGS (Netherlands)'),
(10185, 'https://ror.org/02kq6xe25', 'no_lang_code', 1, 'https://ror.org/02kq6xe25 IntuiLab (France)'),
(10186, 'https://ror.org/03nsz0g92', 'no_lang_code', 1, 'https://ror.org/03nsz0g92 Marzotto Group (Italy)'),
(10187, 'https://ror.org/05ng8fg61', 'no_lang_code', 1, 'https://ror.org/05ng8fg61 Invent Baltics'),
(10188, 'https://ror.org/0206kf863', 'no_lang_code', 1, 'https://ror.org/0206kf863 Link Consulting'),
(10189, 'https://ror.org/02b8nr167', 'no_lang_code', 1, 'https://ror.org/02b8nr167 Expedeon (Germany)'),
(10190, 'https://ror.org/01rt1dv70', 'no_lang_code', 1, 'https://ror.org/01rt1dv70 Lionex (Germany)'),
(10191, 'https://ror.org/0507xbc51', 'no_lang_code', 1, 'https://ror.org/0507xbc51 Invent (Germany)'),
(10192, 'https://ror.org/00k8nkz10', 'no_lang_code', 1, 'https://ror.org/00k8nkz10 LioniX (Netherlands)'),
(10193, 'https://ror.org/00pgy3a44', 'no_lang_code', 1, 'https://ror.org/00pgy3a44 Ion Beam Applications (Belgium)'),
(10194, 'https://ror.org/056rz2k22', 'no_lang_code', 1, 'https://ror.org/056rz2k22 Ibs (France)'),
(10195, 'https://ror.org/008gaha58', 'no_lang_code', 1, 'https://ror.org/008gaha58 Ionicon Analytik (Austria)'),
(10196, 'https://ror.org/010fbtk71', 'no_lang_code', 1, 'https://ror.org/010fbtk71 IPCOS (Netherlands)'),
(10197, 'https://ror.org/05fw8c280', 'no_lang_code', 1, 'https://ror.org/05fw8c280 Istituto per le Piante da Legno e l''Ambiente'),
(10198, 'https://ror.org/03f4vp463', 'no_lang_code', 1, 'https://ror.org/03f4vp463 IQE (United Kingdom)'),
(10199, 'https://ror.org/02ep4w426', 'no_lang_code', 1, 'https://ror.org/02ep4w426 LISA laser products (Germany)'),
(10200, 'https://ror.org/024txyd33', 'pt', 1, 'https://ror.org/024txyd33 Lisboa E-Nova - Agência Municipal de Energia e Ambiente'),
(10201, 'https://ror.org/054etw605', 'fr', 1, 'https://ror.org/054etw605 Institut du Développement Durable et des Ressources Aquatiques'),
(10202, 'https://ror.org/03ndq5j60', 'no_lang_code', 1, 'https://ror.org/03ndq5j60 IRBM Science Park'),
(10203, 'https://ror.org/03kkb8y03', 'pl', 1, 'https://ror.org/03kkb8y03 Forest Research Institute Instytut Badawczy Leśnictwa'),
(10204, 'https://ror.org/0016bkz03', 'no_lang_code', 1, 'https://ror.org/0016bkz03 Lisnave (Portugal)'),
(10205, 'https://ror.org/03r3hm022', 'en', 1, 'https://ror.org/03r3hm022 Litani River Authority'),
(10206, 'https://ror.org/035mr7v54', 'en', 1, 'https://ror.org/035mr7v54 Lithuanian Institute of Agrarian Economics'),
(10207, 'https://ror.org/013kffh65', 'no_lang_code', 1, 'https://ror.org/013kffh65 IRD Fuel Cells (Denmark)'),
(10208, 'https://ror.org/00vsg3p53', 'en', 1, 'https://ror.org/00vsg3p53 Institute of Mathematics Інстытут матэматыкі НАН Беларусі'),
(10209, 'https://ror.org/01jpwx826', 'no_lang_code', 1, 'https://ror.org/01jpwx826 Greencore (Ireland)'),
(10210, 'https://ror.org/02h8ckc21', 'pl', 1, 'https://ror.org/02h8ckc21 Instytut Kolejnictwa'),
(10211, 'https://ror.org/00g4qvs35', 'en', 1, 'https://ror.org/00g4qvs35 Institute of Logistics and Warehousing'),
(10212, 'https://ror.org/04w702289', 'no_lang_code', 1, 'https://ror.org/04w702289 Siemens (Belgium)'),
(10213, 'https://ror.org/045b8aq47', 'en', 1, 'https://ror.org/045b8aq47 International Road Transport Union'),
(10214, 'https://ror.org/00ctvyy53', 'en', 1, 'https://ror.org/00ctvyy53 Local Government Management Agency'),
(10215, 'https://ror.org/02z663265', 'no_lang_code', 1, 'https://ror.org/02z663265 Intelligent Sensing Anywhere (Portugal)'),
(10216, 'https://ror.org/003fvp964', 'en', 1, 'https://ror.org/003fvp964 Institute of Computer Science Instytut Podstaw Informatyki'),
(10217, 'https://ror.org/05qa6yx98', 'no_lang_code', 1, 'https://ror.org/05qa6yx98 Novavax (Sweden)'),
(10218, 'https://ror.org/03rzhpa51', 'fr', 1, 'https://ror.org/03rzhpa51 French Institue of Navigation Institut Français de Navigation'),
(10219, 'https://ror.org/0592ykd44', 'no_lang_code', 1, 'https://ror.org/0592ykd44 Logimatic (Denmark)'),
(10220, 'https://ror.org/03mb54f81', 'no_lang_code', 1, 'https://ror.org/03mb54f81 Synopsys (Switzerland)'),
(10221, 'https://ror.org/00bh09051', 'no_lang_code', 1, 'https://ror.org/00bh09051 Logit Systems (Norway)'),
(10222, 'https://ror.org/00j2xe242', 'no_lang_code', 1, 'https://ror.org/00j2xe242 Innovative System und Informationstechnologien (Germany)'),
(10223, 'https://ror.org/05q0b6266', 'no_lang_code', 1, 'https://ror.org/05q0b6266 Lombardia Informatica (Italy)'),
(10224, 'https://ror.org/04c5tww79', 'no_lang_code', 1, 'https://ror.org/04c5tww79 NanoBioMatters (Spain)'),
(10225, 'https://ror.org/002adfz67', 'no_lang_code', 1, 'https://ror.org/002adfz67 Lonza (Switzerland)'),
(10226, 'https://ror.org/038333j82', 'no_lang_code', 1, 'https://ror.org/038333j82 Nuance Communications (Italy)'),
(10227, 'https://ror.org/00ny8df12', 'fr', 1, 'https://ror.org/00ny8df12 French Institute of International Relations Institut Français des Relations Internationales'),
(10228, 'https://ror.org/0184sq126', 'no_lang_code', 1, 'https://ror.org/0184sq126 Irion & Junker Project Management Irion and Junker Projektmanagement'),
(10229, 'https://ror.org/04hxq4b52', 'en', 1, 'https://ror.org/04hxq4b52 London Borough of Southwark'),
(10230, 'https://ror.org/03439xb05', 'no_lang_code', 1, 'https://ror.org/03439xb05 Nanocyl (Belgium)'),
(10231, 'https://ror.org/03bmdtg34', 'no_lang_code', 1, 'https://ror.org/03bmdtg34 SGS Institut Fresenius (Germany)'),
(10232, 'https://ror.org/02pw5x542', 'no_lang_code', 1, 'https://ror.org/02pw5x542 Isojet Equipements (France)'),
(10233, 'https://ror.org/02kn8an38', 'nl', 1, 'https://ror.org/02kn8an38 Louis Bolk Instituut'),
(10234, 'https://ror.org/05737wb92', 'no_lang_code', 1, 'https://ror.org/05737wb92 Isotest Engineering (Italy)'),
(10235, 'https://ror.org/02wr67907', 'no_lang_code', 1, 'https://ror.org/02wr67907 LPW Technology (United Kingdom)'),
(10236, 'https://ror.org/015gqee34', 'no_lang_code', 1, 'https://ror.org/015gqee34 NANOfutures (Belgium)'),
(10237, 'https://ror.org/00p2hg467', 'en', 1, 'https://ror.org/00p2hg467 Institut für die Wissenschaften vom Menschen Institute of Human Sciences'),
(10238, 'https://ror.org/050g24769', 'no_lang_code', 1, 'https://ror.org/050g24769 Nanogate (Germany)'),
(10239, 'https://ror.org/01ajjny45', 'no_lang_code', 1, 'https://ror.org/01ajjny45 Nanologica (Sweden)'),
(10240, 'https://ror.org/04xjvsa73', 'no_lang_code', 1, 'https://ror.org/04xjvsa73 WSP (Finland)'),
(10241, 'https://ror.org/04nadpw56', 'no_lang_code', 1, 'https://ror.org/04nadpw56 Nanoplus (Germany)'),
(10242, 'https://ror.org/01knh8k33', 'no_lang_code', 1, 'https://ror.org/01knh8k33 Madatech'),
(10243, 'https://ror.org/00gbze925', 'no_lang_code', 1, 'https://ror.org/00gbze925 Lucchini Idromeccanica (Italy)'),
(10244, 'https://ror.org/0470ypw21', 'de', 1, 'https://ror.org/0470ypw21 Institut für ökologische Wirtschaftsforschung Institute for Environmental Management and Economics'),
(10245, 'https://ror.org/01resg468', 'no_lang_code', 1, 'https://ror.org/01resg468 Nokia (Netherlands)'),
(10246, 'https://ror.org/0484k9q63', 'en', 1, 'https://ror.org/0484k9q63 Swedish Space Corporation'),
(10247, 'https://ror.org/027jzke82', 'it', 1, 'https://ror.org/027jzke82 Central Institute for the Union Catalogue of Italian Libraries and for Bibliographic Information Istituto Centrale per il Catalogo Unico delle Biblioteche Italiane e per le Informazioni Bibliografiche'),
(10248, 'https://ror.org/055vs2h16', 'en', 1, 'https://ror.org/055vs2h16 Nanotechnology Industries Association'),
(10249, 'https://ror.org/00xcabq98', 'no_lang_code', 1, 'https://ror.org/00xcabq98 NanotecMARIN (Germany)'),
(10250, 'https://ror.org/01ncnk871', 'no_lang_code', 1, 'https://ror.org/01ncnk871 LNL Technology (Turkey)'),
(10251, 'https://ror.org/037c3gg23', 'it', 1, 'https://ror.org/037c3gg23 Istituto di Ricerche Economiche per la Pesca e l''Acquacoltura'),
(10252, 'https://ror.org/04e2ggq49', 'pl', 1, 'https://ror.org/04e2ggq49 Państwowa Wyższa Szkoła Zawodowa w Nowym Sączu State Higher Vocational School in Nowy Sacz'),
(10253, 'https://ror.org/056m1n765', 'it', 1, 'https://ror.org/056m1n765 Istituto e Museo di Storia della Scienza Museo Galileo'),
(10254, 'https://ror.org/03vabvg16', 'no_lang_code', 1, 'https://ror.org/03vabvg16 Svalbard Global Seed Vault'),
(10255, 'https://ror.org/036xsx560', 'de', 1, 'https://ror.org/036xsx560 Ludwig-Bölkow-Systemtechnik'),
(10256, 'https://ror.org/00gr8kx33', 'no_lang_code', 1, 'https://ror.org/00gr8kx33 Istituto Giordano'),
(10257, 'https://ror.org/04md0t587', 'no_lang_code', 1, 'https://ror.org/04md0t587 NanoWorld Services (Germany)'),
(10258, 'https://ror.org/05hp2t033', 'no_lang_code', 1, 'https://ror.org/05hp2t033 Lufthansa (Germany) Lufthansa German Airlines'),
(10259, 'https://ror.org/02ry21p36', 'no_lang_code', 1, 'https://ror.org/02ry21p36 LMG Marin (Norway)'),
(10260, 'https://ror.org/00acdsz41', 'no_lang_code', 1, 'https://ror.org/00acdsz41 Paragon (Malta)'),
(10261, 'https://ror.org/01n47re51', 'no_lang_code', 1, 'https://ror.org/01n47re51 Paragon (Greece)'),
(10262, 'https://ror.org/036bm0d39', 'no_lang_code', 1, 'https://ror.org/036bm0d39 Cinecittà Luce'),
(10263, 'https://ror.org/004er7684', 'no_lang_code', 1, 'https://ror.org/004er7684 Luxilon (Belgium)'),
(10264, 'https://ror.org/03te9j613', 'en', 1, 'https://ror.org/03te9j613 Environment Park'),
(10265, 'https://ror.org/005wy0t74', 'en', 1, 'https://ror.org/005wy0t74 Luxinnovation'),
(10266, 'https://ror.org/032fdft79', 'it', 1, 'https://ror.org/032fdft79 Istituto Nazionale di Economia Agraria National Institute of Agricultural Economics'),
(10267, 'https://ror.org/02kc0ck80', 'no_lang_code', 1, 'https://ror.org/02kc0ck80 M&I/Partners'),
(10268, 'https://ror.org/05hgfrp57', 'no_lang_code', 1, 'https://ror.org/05hgfrp57 Machining Centers Manufacturing (Italy)');
INSERT INTO `rors` VALUES
(10269, 'https://ror.org/00n63p259', 'no_lang_code', 1, 'https://ror.org/00n63p259 Napa (Finland)'),
(10270, 'https://ror.org/005ypgw33', 'no_lang_code', 1, 'https://ror.org/005ypgw33 ISRA Vision Parsytec (Germany)'),
(10271, 'https://ror.org/00ag5y002', 'it', 1, 'https://ror.org/00ag5y002 Istituto Nazionale per Studi ed Esperienze di Architettura Navale'),
(10272, 'https://ror.org/001gk4004', 'it', 1, 'https://ror.org/001gk4004 Istituto per la Ricerca Sociale'),
(10273, 'https://ror.org/050cwv729', 'no_lang_code', 1, 'https://ror.org/050cwv729 Magen David Adom'),
(10274, 'https://ror.org/01qn49q19', 'no_lang_code', 1, 'https://ror.org/01qn49q19 Magillem Design Services'),
(10275, 'https://ror.org/00rbjw379', 'it', 1, 'https://ror.org/00rbjw379 Istituto per lo Sviluppo della Formazione Professionale dei Lavoratori'),
(10276, 'https://ror.org/00twv1w80', 'no_lang_code', 1, 'https://ror.org/00twv1w80 Pasquali Macchine Agricole (Italy)'),
(10277, 'https://ror.org/00zb4pn27', 'no_lang_code', 1, 'https://ror.org/00zb4pn27 Magna (Austria)'),
(10278, 'https://ror.org/01jq9eh12', 'en', 1, 'https://ror.org/01jq9eh12 Magnesium Research Institute'),
(10279, 'https://ror.org/00yssnc44', 'de', 1, 'https://ror.org/00yssnc44 Paul Ehrlich Institut Paul-Ehrlich-Institut – Bundesinstitut für Impfstoffe und biomedizinische Arzneimittel'),
(10280, 'https://ror.org/0104bde61', 'no_lang_code', 1, 'https://ror.org/0104bde61 PCA Engineers'),
(10281, 'https://ror.org/02hdbjt22', 'no_lang_code', 1, 'https://ror.org/02hdbjt22 Forgital (Italy)'),
(10282, 'https://ror.org/00ra5vp36', 'no_lang_code', 1, 'https://ror.org/00ra5vp36 Magneto Special Anodes (Netherlands)'),
(10283, 'https://ror.org/01bss2h67', 'no_lang_code', 1, 'https://ror.org/01bss2h67 PE International (Germany)'),
(10284, 'https://ror.org/01gykgk63', 'no_lang_code', 1, 'https://ror.org/01gykgk63 Rio Tinto (France)'),
(10285, 'https://ror.org/01thff661', 'no', 1, 'https://ror.org/01thff661 Nasjonalt Kunnskapssenter for Helsetjenesten Norwegian Knowledge Centre for the Health Services'),
(10286, 'https://ror.org/00eyn9595', 'no_lang_code', 1, 'https://ror.org/00eyn9595 Malsch TechnoValuation'),
(10287, 'https://ror.org/00scmkj28', 'no_lang_code', 1, 'https://ror.org/00scmkj28 Natex Prozesstechnologie (Austria)'),
(10288, 'https://ror.org/05edwfq62', 'no_lang_code', 1, 'https://ror.org/05edwfq62 Dynniq (Netherlands)'),
(10289, 'https://ror.org/0546dmt59', 'no_lang_code', 1, 'https://ror.org/0546dmt59 Nationaal Archief of the Netherlands'),
(10290, 'https://ror.org/02d8tke50', 'en', 1, 'https://ror.org/02d8tke50 Emergency Services College Pelastusopisto'),
(10291, 'https://ror.org/01rwphz66', 'en', 1, 'https://ror.org/01rwphz66 National Academy of Sciences of the Republic of Kazakhstan Национальная академия наук Казахстана Қазақстан Республикасының Ұлттық ғылым академиясы'),
(10292, 'https://ror.org/03veq6934', 'no_lang_code', 1, 'https://ror.org/03veq6934 Pepscan (Netherlands)'),
(10293, 'https://ror.org/01jv1zx50', 'it', 1, 'https://ror.org/01jv1zx50 Istituto Superiore delle Comunicazioni e delle Tecnologie Dell''Informazione'),
(10294, 'https://ror.org/00dt2y198', 'en', 1, 'https://ror.org/00dt2y198 Malta Information Technology Agency'),
(10295, 'https://ror.org/012mvd861', 'no_lang_code', 1, 'https://ror.org/012mvd861 National Air Traffic Services (United Kingdom)'),
(10296, 'https://ror.org/02qcw9v04', 'en', 1, 'https://ror.org/02qcw9v04 Malta Resources Authority'),
(10297, 'https://ror.org/05gbak870', 'no_lang_code', 1, 'https://ror.org/05gbak870 Malthe Winje (Norway)'),
(10298, 'https://ror.org/01wc38255', 'en', 1, 'https://ror.org/01wc38255 Applied Research Institute for Prospective Technologies'),
(10299, 'https://ror.org/01t264m74', 'it', 1, 'https://ror.org/01t264m74 Istituto Nazionale per l''Assicurazione Contro gli Infortuni sul Lavoro'),
(10300, 'https://ror.org/05hkma334', 'no_lang_code', 1, 'https://ror.org/05hkma334 MAN (Germany)'),
(10301, 'https://ror.org/05qps5a28', 'it', 1, 'https://ror.org/05qps5a28 Istituto Zooprofilattico Sperimentale del Piemonte Liguria e Valle d''Aosta'),
(10302, 'https://ror.org/03kk57x07', 'it', 1, 'https://ror.org/03kk57x07 Sardegna Agricoltura'),
(10303, 'https://ror.org/036q5kj17', 'no_lang_code', 1, 'https://ror.org/036q5kj17 Mantis Deposition (United Kingdom)'),
(10304, 'https://ror.org/02g0y3z13', 'en', 1, 'https://ror.org/02g0y3z13 Institute of Scientific and Technological Research in Aeronautics and Mechanical Engineering'),
(10305, 'https://ror.org/0513rs483', 'no_lang_code', 1, 'https://ror.org/0513rs483 Marac (Greece) ΜΑΡΑΚ Ηλεκτρονική'),
(10306, 'https://ror.org/000ncdv93', 'en', 1, 'https://ror.org/000ncdv93 Swedish National Board of Fisheries'),
(10307, 'https://ror.org/05d43rg85', 'no_lang_code', 1, 'https://ror.org/05d43rg85 IT Consult'),
(10308, 'https://ror.org/006p7ys96', 'no_lang_code', 1, 'https://ror.org/006p7ys96 Metos (Austria)'),
(10309, 'https://ror.org/03xxx9y67', 'no_lang_code', 1, 'https://ror.org/03xxx9y67 Marel (Iceland)'),
(10310, 'https://ror.org/0288vq897', 'no_lang_code', 1, 'https://ror.org/0288vq897 ITPEnergised Group (United Kingdom)'),
(10311, 'https://ror.org/02rtft424', 'no_lang_code', 1, 'https://ror.org/02rtft424 Marimatech (Denmark)'),
(10312, 'https://ror.org/01188mx28', 'en', 1, 'https://ror.org/01188mx28 Marine Hydrophysical Institute'),
(10313, 'https://ror.org/01pz6j040', 'no_lang_code', 1, 'https://ror.org/01pz6j040 Wood Group Kenny'),
(10314, 'https://ror.org/02rmbgc23', 'en', 1, 'https://ror.org/02rmbgc23 National Council for the Blind of Ireland'),
(10315, 'https://ror.org/05a5d8x70', 'no_lang_code', 1, 'https://ror.org/05a5d8x70 Pharmidex (United Kingdom)'),
(10316, 'https://ror.org/01fafrd63', 'no_lang_code', 1, 'https://ror.org/01fafrd63 Oclaro (United Kingdom)'),
(10317, 'https://ror.org/055j33y49', 'no_lang_code', 1, 'https://ror.org/055j33y49 Phase Change Material Products (United Kingdom)'),
(10318, 'https://ror.org/04zbx7x36', 'en', 1, 'https://ror.org/04zbx7x36 Italian Biomass Association'),
(10319, 'https://ror.org/000qvv970', 'en', 1, 'https://ror.org/000qvv970 Qualifications and Curriculum Authority'),
(10320, 'https://ror.org/05jz46060', 'no_lang_code', 1, 'https://ror.org/05jz46060 Koninklijke Philips Philips (France)'),
(10321, 'https://ror.org/03g5dad97', 'en', 1, 'https://ror.org/03g5dad97 National Development and Reform Commission Energy Research Institute 国家发展和改革委员会能源研究所'),
(10322, 'https://ror.org/02b79c687', 'no_lang_code', 1, 'https://ror.org/02b79c687 Mediterranean Broadband Infrastructure (Italy)'),
(10323, 'https://ror.org/05bsjqt55', 'no_lang_code', 1, 'https://ror.org/05bsjqt55 Philips (Belgium)'),
(10324, 'https://ror.org/049zsmy36', 'no_lang_code', 1, 'https://ror.org/049zsmy36 TÜV SÜD (United Kingdom)'),
(10325, 'https://ror.org/017sx9325', 'no_lang_code', 1, 'https://ror.org/017sx9325 Air Liquide (Germany)'),
(10326, 'https://ror.org/05xere368', 'no_lang_code', 1, 'https://ror.org/05xere368 SingularLogic (Greece)'),
(10327, 'https://ror.org/04bb70w76', 'ro', 1, 'https://ror.org/04bb70w76 Institutul Naţional de Cercetare Dezvoltare Marină Grigore Antipa'),
(10328, 'https://ror.org/03hg1yf12', 'no_lang_code', 1, 'https://ror.org/03hg1yf12 Magwel (Belgium)'),
(10329, 'https://ror.org/03tzetp81', 'no_lang_code', 1, 'https://ror.org/03tzetp81 Mandelli (Italy)'),
(10330, 'https://ror.org/00epmfe95', 'no_lang_code', 1, 'https://ror.org/00epmfe95 PhoeniX Software (Netherlands)'),
(10331, 'https://ror.org/03ef7g429', 'no_lang_code', 1, 'https://ror.org/03ef7g429 Photon Systems Instruments (Czechia)'),
(10332, 'https://ror.org/00r254y42', 'no_lang_code', 1, 'https://ror.org/00r254y42 Piaggio (Italy)'),
(10333, 'https://ror.org/02tf6tv07', 'no_lang_code', 1, 'https://ror.org/02tf6tv07 Picosun (Finland)'),
(10334, 'https://ror.org/00zh4ns47', 'no_lang_code', 1, 'https://ror.org/00zh4ns47 Marion Technologies (France)'),
(10335, 'https://ror.org/05ctn5s75', 'it', 1, 'https://ror.org/05ctn5s75 Iter'),
(10336, 'https://ror.org/0005tvh12', 'en', 1, 'https://ror.org/0005tvh12 Institutul National de Hidrologie si Gospodarire a Apelor National Institute of Hydrology and Water Management'),
(10337, 'https://ror.org/02hbq4750', 'no_lang_code', 1, 'https://ror.org/02hbq4750 Mariskone (Spain)'),
(10338, 'https://ror.org/03mb23c90', 'no_lang_code', 1, 'https://ror.org/03mb23c90 ITM Power (United Kingdom)'),
(10339, 'https://ror.org/05kw2hj64', 'en', 1, 'https://ror.org/05kw2hj64 Maritime and Coastguard Agency'),
(10340, 'https://ror.org/007st1w34', 'no_lang_code', 1, 'https://ror.org/007st1w34 Piksel (Italy)'),
(10341, 'https://ror.org/00bpbqe63', 'en', 1, 'https://ror.org/00bpbqe63 Pildo Labs'),
(10342, 'https://ror.org/04j65hp39', 'no_lang_code', 1, 'https://ror.org/04j65hp39 Nippon Sheet Glass (United Kingdom)'),
(10343, 'https://ror.org/01gk6p474', 'no_lang_code', 1, 'https://ror.org/01gk6p474 Martel'),
(10344, 'https://ror.org/015xym232', 'no_lang_code', 1, 'https://ror.org/015xym232 Pintail (Ireland)'),
(10345, 'https://ror.org/01wer7646', 'no_lang_code', 1, 'https://ror.org/01wer7646 Mastercard (Belgium)'),
(10346, 'https://ror.org/05evc8s02', 'no_lang_code', 1, 'https://ror.org/05evc8s02 Publicis Groupe (Switzerland)'),
(10347, 'https://ror.org/00tc93763', 'no_lang_code', 1, 'https://ror.org/00tc93763 Materialise (Belgium)'),
(10348, 'https://ror.org/058e2jz50', 'no_lang_code', 1, 'https://ror.org/058e2jz50 Publicis Groupe (Germany)'),
(10349, 'https://ror.org/00wtmxk58', 'no_lang_code', 1, 'https://ror.org/00wtmxk58 Element Materials Technology (United Kingdom)'),
(10350, 'https://ror.org/01ky55e50', 'no_lang_code', 1, 'https://ror.org/01ky55e50 Lagardère (France)'),
(10351, 'https://ror.org/01a1kj410', 'no_lang_code', 1, 'https://ror.org/01a1kj410 Planetek Italia'),
(10352, 'https://ror.org/04sjpp691', 'en', 1, 'https://ror.org/04sjpp691 National Museums of Kenya'),
(10353, 'https://ror.org/01b6xgg59', 'en', 1, 'https://ror.org/01b6xgg59 iXscient'),
(10354, 'https://ror.org/02qp62108', 'no_lang_code', 1, 'https://ror.org/02qp62108 Plansee (Austria)'),
(10355, 'https://ror.org/04ahqd251', 'no_lang_code', 1, 'https://ror.org/04ahqd251 Plant Integrity (United Kingdom)'),
(10356, 'https://ror.org/02zvtbe65', 'de', 1, 'https://ror.org/02zvtbe65 Institut für Zukunftsstudien und Technologiebewertung'),
(10357, 'https://ror.org/0313r6y71', 'no_lang_code', 1, 'https://ror.org/0313r6y71 Jan de Rijk Logistics (Netherlands)'),
(10358, 'https://ror.org/052t9a145', 'en', 1, 'https://ror.org/052t9a145 Növényvédelmi Intézete Plant Protection Institute'),
(10359, 'https://ror.org/01zksz530', 'bs', 1, 'https://ror.org/01zksz530 Natural History Museum of Montenegro Prirodnjacki Muzej Crne Gore'),
(10360, 'https://ror.org/05bdznr21', 'no_lang_code', 1, 'https://ror.org/05bdznr21 PlasmaChem (Germany)'),
(10361, 'https://ror.org/03z7jn533', 'fr', 1, 'https://ror.org/03z7jn533 Plastipolis'),
(10362, 'https://ror.org/05e4cgj50', 'no_lang_code', 1, 'https://ror.org/05e4cgj50 PNO Consultants (United Kingdom)'),
(10363, 'https://ror.org/03pyc1d37', 'no_lang_code', 1, 'https://ror.org/03pyc1d37 Poli Model (Italy)'),
(10364, 'https://ror.org/00yk21455', 'en', 1, 'https://ror.org/00yk21455 Police Service of Northern Ireland'),
(10365, 'https://ror.org/04cn8bv62', 'no_lang_code', 1, 'https://ror.org/04cn8bv62 JCP Connect (France)'),
(10366, 'https://ror.org/02vxxy693', 'no_lang_code', 1, 'https://ror.org/02vxxy693 JENAer Meßtechnik (Germany)'),
(10367, 'https://ror.org/013rtxr98', 'no_lang_code', 1, 'https://ror.org/013rtxr98 General Electric (Austria)'),
(10368, 'https://ror.org/04ew99m67', 'no_lang_code', 1, 'https://ror.org/04ew99m67 Polkom Badania'),
(10369, 'https://ror.org/03zaba654', 'no_lang_code', 1, 'https://ror.org/03zaba654 Jernkontoret (Sweden)'),
(10370, 'https://ror.org/021hb4q36', 'no_lang_code', 1, 'https://ror.org/021hb4q36 Mb Air Systems (United Kingdom)'),
(10371, 'https://ror.org/02mbv4339', 'no_lang_code', 1, 'https://ror.org/02mbv4339 Deutsche Telekom (Poland)'),
(10372, 'https://ror.org/04xce0q45', 'no_lang_code', 1, 'https://ror.org/04xce0q45 Polymage (France)'),
(10373, 'https://ror.org/031jzsw63', 'no_lang_code', 1, 'https://ror.org/031jzsw63 Jobs (Italy)'),
(10374, 'https://ror.org/01bv1r935', 'no_lang_code', 1, 'https://ror.org/01bv1r935 MBDA (France)'),
(10375, 'https://ror.org/00x2xws80', 'no_lang_code', 1, 'https://ror.org/00x2xws80 Jobst Technologies (Germany)'),
(10376, 'https://ror.org/00g8m1t29', 'no_lang_code', 1, 'https://ror.org/00g8m1t29 Varian Medical Systems (United Kingdom)'),
(10377, 'https://ror.org/0224dd234', 'en', 1, 'https://ror.org/0224dd234 Piraeus Port Authority'),
(10378, 'https://ror.org/05s0g1g46', 'en', 1, 'https://ror.org/05s0g1g46 National Research Foundation'),
(10379, 'https://ror.org/03wvdfp77', 'no_lang_code', 1, 'https://ror.org/03wvdfp77 Posiva (Finland)'),
(10380, 'https://ror.org/01hvt7y65', 'no_lang_code', 1, 'https://ror.org/01hvt7y65 Texinov (France)'),
(10381, 'https://ror.org/05h72ek27', 'no_lang_code', 1, 'https://ror.org/05h72ek27 AFRY (Finland)'),
(10382, 'https://ror.org/0492cvk34', 'en', 1, 'https://ror.org/0492cvk34 National Scientific Center for Medical and Biotechnical Research Науковий центр з медико-біотехнічних проблем'),
(10383, 'https://ror.org/02w5w7488', 'en', 1, 'https://ror.org/02w5w7488 Hellenic Statistical Authority Ελληνική Στατιστική Αρχή'),
(10384, 'https://ror.org/02vfhfv39', 'no_lang_code', 1, 'https://ror.org/02vfhfv39 PRé Consultants'),
(10385, 'https://ror.org/0315a3206', 'no_lang_code', 1, 'https://ror.org/0315a3206 Precitec (Germany)'),
(10386, 'https://ror.org/018qv1e85', 'no_lang_code', 1, 'https://ror.org/018qv1e85 PreSens Precision Sensing (Germany)'),
(10387, 'https://ror.org/04pvpzj22', 'no_lang_code', 1, 'https://ror.org/04pvpzj22 Meyer Werft (Germany)'),
(10388, 'https://ror.org/04y729m70', 'no_lang_code', 1, 'https://ror.org/04y729m70 Petards Group (United Kingdom)'),
(10389, 'https://ror.org/01gxyxc07', 'no_lang_code', 1, 'https://ror.org/01gxyxc07 Hoerbiger (Sweden)'),
(10390, 'https://ror.org/02rc7fh29', 'it', 1, 'https://ror.org/02rc7fh29 Presidenza Del Consiglio Dei Ministri'),
(10391, 'https://ror.org/0123nke06', 'no_lang_code', 1, 'https://ror.org/0123nke06 JRC Capital Management (Germany)'),
(10392, 'https://ror.org/05mw3nb06', 'no_lang_code', 1, 'https://ror.org/05mw3nb06 Judex (Denmark)'),
(10393, 'https://ror.org/04zrfss29', 'no_lang_code', 1, 'https://ror.org/04zrfss29 MedCom'),
(10394, 'https://ror.org/03ct85y20', 'no_lang_code', 1, 'https://ror.org/03ct85y20 TUI (Germany)'),
(10395, 'https://ror.org/015sh1j12', 'no_lang_code', 1, 'https://ror.org/015sh1j12 Juniper Networks (Ireland)'),
(10396, 'https://ror.org/005bg5z56', 'no_lang_code', 1, 'https://ror.org/005bg5z56 Prima Industrie (Italy)'),
(10397, 'https://ror.org/024tzkr53', 'no_lang_code', 1, 'https://ror.org/024tzkr53 PrimeTel (Cyprus)'),
(10398, 'https://ror.org/01tdsae39', 'no_lang_code', 1, 'https://ror.org/01tdsae39 Medtronic (Spain)'),
(10399, 'https://ror.org/00emqem64', 'no_lang_code', 1, 'https://ror.org/00emqem64 Primmbiotech (Italy)'),
(10400, 'https://ror.org/003ka3k75', 'no_lang_code', 1, 'https://ror.org/003ka3k75 Principia (France)'),
(10401, 'https://ror.org/0462zf838', 'en', 1, 'https://ror.org/0462zf838 National Museum of Denmark Nationalmuseet'),
(10402, 'https://ror.org/012wakq07', 'no_lang_code', 1, 'https://ror.org/012wakq07 Thermo Fisher Scientific (Switzerland)'),
(10403, 'https://ror.org/04zbkx310', 'no_lang_code', 1, 'https://ror.org/04zbkx310 Mekorot (Israel) מקורות'),
(10404, 'https://ror.org/00rhgsx64', 'no_lang_code', 1, 'https://ror.org/00rhgsx64 Prisma Electronics (Greece)'),
(10405, 'https://ror.org/012q3xq08', 'no_lang_code', 1, 'https://ror.org/012q3xq08 Menck (Germany)'),
(10406, 'https://ror.org/00jr5xv14', 'no_lang_code', 1, 'https://ror.org/00jr5xv14 MerMec (Italy)'),
(10407, 'https://ror.org/02zahyc48', 'no_lang_code', 1, 'https://ror.org/02zahyc48 PRO DV (Germany)'),
(10408, 'https://ror.org/033mhn155', 'no_lang_code', 1, 'https://ror.org/033mhn155 Kemakta Konsult'),
(10409, 'https://ror.org/05sgqz436', 'no_lang_code', 1, 'https://ror.org/05sgqz436 Process Design Center (Netherlands)'),
(10410, 'https://ror.org/01s4j6j10', 'no_lang_code', 1, 'https://ror.org/01s4j6j10 Process Systems Enterprise (United Kingdom)'),
(10411, 'https://ror.org/04p71yx79', 'no_lang_code', 1, 'https://ror.org/04p71yx79 Mermayde'),
(10412, 'https://ror.org/027f7xa47', 'no_lang_code', 1, 'https://ror.org/027f7xa47 Procter & Gamble (Belgium)'),
(10413, 'https://ror.org/01weg4r24', 'no_lang_code', 1, 'https://ror.org/01weg4r24 Naturalia & Biologia'),
(10414, 'https://ror.org/05hz2w230', 'en', 1, 'https://ror.org/05hz2w230 Kenya Forestry Research Institute'),
(10415, 'https://ror.org/02a8cv967', 'no_lang_code', 1, 'https://ror.org/02a8cv967 Procter & Gamble (United Kingdom)'),
(10416, 'https://ror.org/01drqkt97', 'no_lang_code', 1, 'https://ror.org/01drqkt97 KeraNor (Norway)'),
(10417, 'https://ror.org/03g3gc902', 'no_lang_code', 1, 'https://ror.org/03g3gc902 ProDigest (Belgium)'),
(10418, 'https://ror.org/0451xtz74', 'de', 1, 'https://ror.org/0451xtz74 Kernkraftwerk Gundremmingen'),
(10419, 'https://ror.org/01rkw5k87', 'no_lang_code', 1, 'https://ror.org/01rkw5k87 Kerntechnische Hilfsdienst (Germany)'),
(10420, 'https://ror.org/01j145b31', 'no_lang_code', 1, 'https://ror.org/01j145b31 Mesurex (Spain)'),
(10421, 'https://ror.org/0395hnd71', 'en', 1, 'https://ror.org/0395hnd71 Production Engineering Research Association'),
(10422, 'https://ror.org/00m2evs52', 'no_lang_code', 1, 'https://ror.org/00m2evs52 Meiko (United Kingdom)'),
(10423, 'https://ror.org/04nb1d674', 'no_lang_code', 1, 'https://ror.org/04nb1d674 ArtHaus (Macedonia)'),
(10424, 'https://ror.org/04g52e958', 'it', 1, 'https://ror.org/04g52e958 Progemisa'),
(10425, 'https://ror.org/02zz2nb17', 'no_lang_code', 1, 'https://ror.org/02zz2nb17 KeyGene (Netherlands)'),
(10426, 'https://ror.org/010c8c923', 'no_lang_code', 1, 'https://ror.org/010c8c923 KGHM Cuprum (Poland) KGHM Cuprum sp. z o.o. Centrum Badawczo - Rozwojowe'),
(10427, 'https://ror.org/03mqnjw52', 'no_lang_code', 1, 'https://ror.org/03mqnjw52 Kingston Computer Consultancy (United Kingdom)'),
(10428, 'https://ror.org/04tq1ka44', 'no_lang_code', 1, 'https://ror.org/04tq1ka44 Kite Solutions (Italy)'),
(10429, 'https://ror.org/008a8ch32', 'no_lang_code', 1, 'https://ror.org/008a8ch32 KitoZyme (Belgium)'),
(10430, 'https://ror.org/04hm0cn69', 'no_lang_code', 1, 'https://ror.org/04hm0cn69 KLA (Israel)'),
(10431, 'https://ror.org/01vetdz59', 'no_lang_code', 1, 'https://ror.org/01vetdz59 Klöckner (Germany)'),
(10432, 'https://ror.org/058es3q19', 'no_lang_code', 1, 'https://ror.org/058es3q19 Cisco Systems (France)'),
(10433, 'https://ror.org/024z8dm78', 'no_lang_code', 1, 'https://ror.org/024z8dm78 NDT Consultants (United Kingdom)'),
(10434, 'https://ror.org/02t1dfc91', 'no_lang_code', 1, 'https://ror.org/02t1dfc91 Idetra (Spain)'),
(10435, 'https://ror.org/0044vax59', 'no_lang_code', 1, 'https://ror.org/0044vax59 GEA Group (Germany)'),
(10436, 'https://ror.org/0587waj50', 'no_lang_code', 1, 'https://ror.org/0587waj50 NEC Technologies (United Kingdom)'),
(10437, 'https://ror.org/00qpx5a29', 'no_lang_code', 1, 'https://ror.org/00qpx5a29 Metallisation (United Kingdom)'),
(10438, 'https://ror.org/04b8gx121', 'en', 1, 'https://ror.org/04b8gx121 Organic Research Centre'),
(10439, 'https://ror.org/051deva93', 'no_lang_code', 1, 'https://ror.org/051deva93 Necton (Portugal)'),
(10440, 'https://ror.org/04gbnqd17', 'no_lang_code', 1, 'https://ror.org/04gbnqd17 Kongsberg Satellite Services (Norway)'),
(10441, 'https://ror.org/01a3n7y93', 'no_lang_code', 1, 'https://ror.org/01a3n7y93 Advanced Management Solutions (Greece)'),
(10442, 'https://ror.org/058d17a16', 'no_lang_code', 1, 'https://ror.org/058d17a16 Project Automation (Italy)'),
(10443, 'https://ror.org/02xbm2630', 'en', 1, 'https://ror.org/02xbm2630 Metropolitan Research Institute'),
(10444, 'https://ror.org/04sx1sj77', 'es', 1, 'https://ror.org/04sx1sj77 Boletín Oficial del Estado Official State Gazette'),
(10445, 'https://ror.org/00hjks330', 'en', 1, 'https://ror.org/00hjks330 Koninklijke Sterrenwacht van België Königliche Sternwarte von Belgien Observatoire royal de belgique Royal Observatory of Belgium'),
(10446, 'https://ror.org/01kzrk477', 'no_lang_code', 1, 'https://ror.org/01kzrk477 KPN (Netherlands)'),
(10447, 'https://ror.org/01r5d6p07', 'no_lang_code', 1, 'https://ror.org/01r5d6p07 Nederlandse Gasunie (Netherlands)'),
(10448, 'https://ror.org/039arew28', 'no_lang_code', 1, 'https://ror.org/039arew28 Micro Materials (United Kingdom)'),
(10449, 'https://ror.org/03qazee42', 'no_lang_code', 1, 'https://ror.org/03qazee42 Prokazyme (Iceland)'),
(10450, 'https://ror.org/00fwv2w85', 'no_lang_code', 1, 'https://ror.org/00fwv2w85 Micro Resist Technology (Germany)'),
(10451, 'https://ror.org/02jsytr13', 'no_lang_code', 1, 'https://ror.org/02jsytr13 Prometeia (Italy)'),
(10452, 'https://ror.org/05wsk5f87', 'no_lang_code', 1, 'https://ror.org/05wsk5f87 ASM International (Finland)'),
(10453, 'https://ror.org/057bd0236', 'no_lang_code', 1, 'https://ror.org/057bd0236 Promolding (Netherlands)'),
(10454, 'https://ror.org/045kvge53', 'no_lang_code', 1, 'https://ror.org/045kvge53 Microfluidic ChipShop (Germany)'),
(10455, 'https://ror.org/05h4fw740', 'no_lang_code', 1, 'https://ror.org/05h4fw740 Promoter (Italy)'),
(10456, 'https://ror.org/02vt9tw94', 'no_lang_code', 1, 'https://ror.org/02vt9tw94 MicroLIQUID (Spain)'),
(10457, 'https://ror.org/03bxx2b53', 'no_lang_code', 1, 'https://ror.org/03bxx2b53 Kontron (Germany)'),
(10458, 'https://ror.org/039m3s961', 'no_lang_code', 1, 'https://ror.org/039m3s961 Micron (Italy)'),
(10459, 'https://ror.org/02mtyfy02', 'no_lang_code', 1, 'https://ror.org/02mtyfy02 Micronit Microfluidics (Netherlands)'),
(10460, 'https://ror.org/01trfzy92', 'nl', 1, 'https://ror.org/01trfzy92 Korps Landelijke Politiediensten National Police Services Agency'),
(10461, 'https://ror.org/051ehts03', 'no_lang_code', 1, 'https://ror.org/051ehts03 Prospex (Belgium)'),
(10462, 'https://ror.org/047abt623', 'no_lang_code', 1, 'https://ror.org/047abt623 Microsharp (United Kingdom)'),
(10463, 'https://ror.org/01ctvj234', 'no_lang_code', 1, 'https://ror.org/01ctvj234 Nedstack fuel cell technology (Netherlands)'),
(10464, 'https://ror.org/0316wza58', 'no_lang_code', 1, 'https://ror.org/0316wza58 MicroVacuum (Hungary)'),
(10465, 'https://ror.org/01965fb20', 'no_lang_code', 1, 'https://ror.org/01965fb20 Protection des Métaux (France)'),
(10466, 'https://ror.org/01abzmh24', 'no_lang_code', 1, 'https://ror.org/01abzmh24 Prototech (Norway)'),
(10467, 'https://ror.org/04hrwfn20', 'no_lang_code', 1, 'https://ror.org/04hrwfn20 Prover Technology (Sweden)'),
(10468, 'https://ror.org/0365ahw46', 'no_lang_code', 1, 'https://ror.org/0365ahw46 Danaher (Netherlands)'),
(10469, 'https://ror.org/036z25w18', 'no_lang_code', 1, 'https://ror.org/036z25w18 Nemetschek Bulgaria (Bulgaria)'),
(10470, 'https://ror.org/0195q0f30', 'no_lang_code', 1, 'https://ror.org/0195q0f30 Materials Industrial Research and Technology Development Centre (Greece) Εταιρεία'),
(10471, 'https://ror.org/00azr2q62', 'no_lang_code', 1, 'https://ror.org/00azr2q62 METALogic (Belgium)'),
(10472, 'https://ror.org/01x9zv505', 'en', 1, 'https://ror.org/01x9zv505 Fatebenefratelli Hospital Ospedale San Giovanni Calibita Fatebenefratelli'),
(10473, 'https://ror.org/03sjtg710', 'no_lang_code', 1, 'https://ror.org/03sjtg710 Prüf- und Forschungsinstitut Pirmasens (Germany)'),
(10474, 'https://ror.org/05jc7nb82', 'en', 1, 'https://ror.org/05jc7nb82 Hungarian Meteorological Service Országos Meteorológiai Szolgálat'),
(10475, 'https://ror.org/04p98z790', 'no_lang_code', 1, 'https://ror.org/04p98z790 Neovision (Czechia)'),
(10476, 'https://ror.org/01ehv8p24', 'no_lang_code', 1, 'https://ror.org/01ehv8p24 Optel (Poland)'),
(10477, 'https://ror.org/02y22dj89', 'no_lang_code', 1, 'https://ror.org/02y22dj89 KUKA (Germany) Keller und Knappich Augsburg'),
(10478, 'https://ror.org/02nxnzz65', 'no_lang_code', 1, 'https://ror.org/02nxnzz65 Meteorologie Consult (Germany)'),
(10479, 'https://ror.org/05mq12850', 'no_lang_code', 1, 'https://ror.org/05mq12850 Neste Oil (Finland) Neste Oyj'),
(10480, 'https://ror.org/04xpj5302', 'en', 1, 'https://ror.org/04xpj5302 National Consumer Research Centre'),
(10481, 'https://ror.org/02egmm606', 'no_lang_code', 1, 'https://ror.org/02egmm606 Metroeconomica (United Kingdom)'),
(10482, 'https://ror.org/008q6py59', 'no_lang_code', 1, 'https://ror.org/008q6py59 Project in Solar Energy (Germany)'),
(10483, 'https://ror.org/04ja3zh26', 'no_lang_code', 1, 'https://ror.org/04ja3zh26 NET Nowak Energie & Technologie (Switzerland)'),
(10484, 'https://ror.org/00e2z2v91', 'de', 1, 'https://ror.org/00e2z2v91 Kuratorium für Technik und Bauwesen in der Landwirtschaft'),
(10485, 'https://ror.org/04s0hh912', 'de', 1, 'https://ror.org/04s0hh912 Medien- und Filmgesellschaft Baden-Württemberg'),
(10486, 'https://ror.org/058a2r903', 'it', 1, 'https://ror.org/058a2r903 Istituto Psicoanalitico per le Ricerche Sociali'),
(10487, 'https://ror.org/012pxe355', 'no_lang_code', 1, 'https://ror.org/012pxe355 Net7 (Italy)'),
(10488, 'https://ror.org/03hawtg60', 'no_lang_code', 1, 'https://ror.org/03hawtg60 Aker (Finland)'),
(10489, 'https://ror.org/04g0a6w76', 'no_lang_code', 1, 'https://ror.org/04g0a6w76 MEO (Portugal)'),
(10490, 'https://ror.org/04pwrsp25', 'no_lang_code', 1, 'https://ror.org/04pwrsp25 NetComposites (United Kingdom)'),
(10491, 'https://ror.org/02p9c1e58', 'no_lang_code', 1, 'https://ror.org/02p9c1e58 KWS Saat (Germany)'),
(10492, 'https://ror.org/02a9j6p59', 'no_lang_code', 1, 'https://ror.org/02a9j6p59 PT Inovação e Sistemas (Portugal)'),
(10493, 'https://ror.org/05mhfjj63', 'de', 1, 'https://ror.org/05mhfjj63 Milchwirtschaftliche Untersuchungs- und Versuchsanstalt Kempten'),
(10494, 'https://ror.org/04zbse002', 'no_lang_code', 1, 'https://ror.org/04zbse002 Kybertec (Czechia)'),
(10495, 'https://ror.org/048sy8p96', 'no_lang_code', 1, 'https://ror.org/048sy8p96 Miltech Hellas (Greece)'),
(10496, 'https://ror.org/01rxwr703', 'en', 1, 'https://ror.org/01rxwr703 Cultural Heritage Agency of Netherlands Instituut Collectie Nederland'),
(10497, 'https://ror.org/019rb1136', 'no_lang_code', 1, 'https://ror.org/019rb1136 L-Up'),
(10498, 'https://ror.org/03x84qk23', 'en', 1, 'https://ror.org/03x84qk23 Nederlands Normalisatie Instituut Netherlands Standardization Institute'),
(10499, 'https://ror.org/02q3a7088', 'en', 1, 'https://ror.org/02q3a7088 Instytut Gospodarki Surowcami Mineralnymi i Energią Polskiej Akademii Nauk Mineral and Energy Economy Research Institute of the Polish Academy of Sciences'),
(10500, 'https://ror.org/04n8tjj02', 'en', 1, 'https://ror.org/04n8tjj02 Mineral Industry Research Organisation'),
(10501, 'https://ror.org/02dzq0z59', 'no_lang_code', 1, 'https://ror.org/02dzq0z59 Minerva Consulting and Communication'),
(10502, 'https://ror.org/01dj30h14', 'en', 1, 'https://ror.org/01dj30h14 Mines Rescue Service'),
(10503, 'https://ror.org/014q7gt78', 'en', 1, 'https://ror.org/014q7gt78 Ministero della Giustizia Ministry of Justice'),
(10504, 'https://ror.org/04dzssn93', 'en', 1, 'https://ror.org/04dzssn93 Public Safety Communication Europe Forum'),
(10505, 'https://ror.org/034nt0s92', 'no_lang_code', 1, 'https://ror.org/034nt0s92 PyroGenesis (Greece)'),
(10506, 'https://ror.org/04n728n34', 'no_lang_code', 1, 'https://ror.org/04n728n34 Q-Biologicals (Belgium)'),
(10507, 'https://ror.org/020dxsp50', 'no_lang_code', 1, 'https://ror.org/020dxsp50 Q Free (Norway)'),
(10508, 'https://ror.org/02x3w5g21', 'en', 1, 'https://ror.org/02x3w5g21 Ministerie van Onderwijs, Cultuur en Wetenschappe Ministry of Education Culture and Science'),
(10509, 'https://ror.org/04n3eme41', 'no_lang_code', 1, 'https://ror.org/04n3eme41 Saniona (Denmark)'),
(10510, 'https://ror.org/054119345', 'fr', 1, 'https://ror.org/054119345 Laboratoire d''Évaluation des Matériels Implantables'),
(10511, 'https://ror.org/023ktd084', 'en', 1, 'https://ror.org/023ktd084 Ministarstvo nauke Ministry of Science'),
(10512, 'https://ror.org/04hje6078', 'no_lang_code', 1, 'https://ror.org/04hje6078 Neurosoft (Poland)'),
(10513, 'https://ror.org/02hk14q21', 'fr', 1, 'https://ror.org/02hk14q21 Ministère de l''Éducation Nationale, de la Formation Professionnelle, de l''Enseignement Supérieur et de la Recherche Scientifique وزارة التربية الوطنية و التكوين المهني و التعليم العالي و البحث العلمي'),
(10514, 'https://ror.org/04c4d1830', 'en', 1, 'https://ror.org/04c4d1830 New Wave Innovation'),
(10515, 'https://ror.org/01t6t6k62', 'no_lang_code', 1, 'https://ror.org/01t6t6k62 Quanta System (Italy)'),
(10516, 'https://ror.org/03rkv9a98', 'no_lang_code', 1, 'https://ror.org/03rkv9a98 Sudamin Rohstoff (Germany)'),
(10517, 'https://ror.org/00wq6x378', 'no_lang_code', 1, 'https://ror.org/00wq6x378 Quantech ATZ (Spain)'),
(10518, 'https://ror.org/03x45a950', 'it', 1, 'https://ror.org/03x45a950 Laboratorio di Scienze della Cittadinanza'),
(10519, 'https://ror.org/02b5fj195', 'no_lang_code', 1, 'https://ror.org/02b5fj195 Quantis (Switzerland)'),
(10520, 'https://ror.org/02zrfm475', 'en', 1, 'https://ror.org/02zrfm475 Ministry of the Internal Administration Ministério da Administração Interna'),
(10521, 'https://ror.org/054cqc676', 'no_lang_code', 1, 'https://ror.org/054cqc676 Quinary (Italy)'),
(10522, 'https://ror.org/00n8vvc37', 'pt', 1, 'https://ror.org/00n8vvc37 Ministério da Justiça'),
(10523, 'https://ror.org/02pxbbk34', 'en', 1, 'https://ror.org/02pxbbk34 Ministero dell''Interno Ministry of Interior'),
(10524, 'https://ror.org/02dsehc06', 'no_lang_code', 1, 'https://ror.org/02dsehc06 Zachrome (United Kingdom)'),
(10525, 'https://ror.org/00c97z041', 'no_lang_code', 1, 'https://ror.org/00c97z041 Engie (Belgium)'),
(10526, 'https://ror.org/02t75hb67', 'no_lang_code', 1, 'https://ror.org/02t75hb67 Lagerwey Wind (Netherlands)'),
(10527, 'https://ror.org/00gyf5945', 'en', 1, 'https://ror.org/00gyf5945 Ministry of Agriculture Nature and Food Quality'),
(10528, 'https://ror.org/00t6rnw77', 'no_lang_code', 1, 'https://ror.org/00t6rnw77 Research and Environmental Devices (Italy)'),
(10529, 'https://ror.org/04m4eyr93', 'en', 1, 'https://ror.org/04m4eyr93 Institute of Soil Science “Nikola Poushkarov” ИНСТИТУТ ПО ПОЧВОЗНАНИЕ "НИКОЛА ПУШКАРОВ"'),
(10530, 'https://ror.org/04q5hjb22', 'no_lang_code', 1, 'https://ror.org/04q5hjb22 R.U.Robots (United Kingdom)'),
(10531, 'https://ror.org/04zpmt351', 'en', 1, 'https://ror.org/04zpmt351 Nikolaev Institute of Inorganic Chemistry Федеральное государственное бюджетное учреждение науки Институт неорганической химии им. А.В.Николаева Сибирского отделения Российской академии наук'),
(10532, 'https://ror.org/04ca4p790', 'en', 1, 'https://ror.org/04ca4p790 Lambrakis Research Foundation'),
(10533, 'https://ror.org/054dc7e40', 'en', 1, 'https://ror.org/054dc7e40 Ministerie van Financiën Ministry of Finance'),
(10534, 'https://ror.org/04xbpgz45', 'no_lang_code', 1, 'https://ror.org/04xbpgz45 Lamik (Spain)'),
(10535, 'https://ror.org/00y321w89', 'nl', 1, 'https://ror.org/00y321w89 Ministerie van de Vlaamse Gemeenschap'),
(10536, 'https://ror.org/055t3ez04', 'no_lang_code', 1, 'https://ror.org/055t3ez04 Zuken (United Kingdom)'),
(10537, 'https://ror.org/00w4csr50', 'de', 1, 'https://ror.org/00w4csr50 Landwirtschaftliche Untersuchungs- und Forschungsanstalt Speyer'),
(10538, 'https://ror.org/00an0vn46', 'no_lang_code', 1, 'https://ror.org/00an0vn46 Raidió Teilifís Éireann (Ireland)'),
(10539, 'https://ror.org/050gxst24', 'en', 1, 'https://ror.org/050gxst24 Radiological Protection Institute of Ireland'),
(10540, 'https://ror.org/00qkqnk52', 'no_lang_code', 1, 'https://ror.org/00qkqnk52 Language Technology Centre'),
(10541, 'https://ror.org/021b9pa93', 'no_lang_code', 1, 'https://ror.org/021b9pa93 Siempelkamp (Germany)'),
(10542, 'https://ror.org/00zceqt96', 'en', 1, 'https://ror.org/00zceqt96 Radiophysical Research Institute Научно-исследовательский радиофизический институт'),
(10543, 'https://ror.org/05rfemm41', 'no_lang_code', 1, 'https://ror.org/05rfemm41 Radiotelevisione Italiana (Italy)'),
(10544, 'https://ror.org/04zqx6d52', 'no_lang_code', 1, 'https://ror.org/04zqx6d52 NKT Holding (Denmark)'),
(10545, 'https://ror.org/01bvfdq42', 'no_lang_code', 1, 'https://ror.org/01bvfdq42 Lantiq (Germany)'),
(10546, 'https://ror.org/04chcgr85', 'no_lang_code', 1, 'https://ror.org/04chcgr85 Raffinerie Tirlemontoise (Belgium)'),
(10547, 'https://ror.org/05168yk81', 'no_lang_code', 1, 'https://ror.org/05168yk81 Microsoft (Belgium)'),
(10548, 'https://ror.org/03crv6k69', 'no_lang_code', 1, 'https://ror.org/03crv6k69 Laser Expertise (United Kingdom)'),
(10549, 'https://ror.org/023kmpc59', 'en', 1, 'https://ror.org/023kmpc59 Ministero delle Politiche Agricole, Alimentari e Forestali Ministry of Agricultural, Food and Forestry Policies'),
(10550, 'https://ror.org/03bsv7x15', 'no_lang_code', 1, 'https://ror.org/03bsv7x15 Ramboll (Finland)'),
(10551, 'https://ror.org/05rg8s453', 'no_lang_code', 1, 'https://ror.org/05rg8s453 Laser Scan Engineering (United Kingdom)'),
(10552, 'https://ror.org/00pyx4s45', 'lv', 1, 'https://ror.org/00pyx4s45 Latvijas Valsts Agrārās Ekonomikas Institūts'),
(10553, 'https://ror.org/037pk1914', 'en', 1, 'https://ror.org/037pk1914 RAND Europe'),
(10554, 'https://ror.org/05tahaz79', 'en', 1, 'https://ror.org/05tahaz79 Ministry of Education, Science and Sport'),
(10555, 'https://ror.org/029e6xb19', 'en', 1, 'https://ror.org/029e6xb19 Ministerul Afacerilor Interne Ministry of Internal Affairs'),
(10556, 'https://ror.org/02ar66p97', 'en', 1, 'https://ror.org/02ar66p97 Latvian Council of Science'),
(10557, 'https://ror.org/05nh5td39', 'no_lang_code', 1, 'https://ror.org/05nh5td39 Nokia (Germany)'),
(10558, 'https://ror.org/004f1q697', 'no_lang_code', 1, 'https://ror.org/004f1q697 Innovation (Latvia)'),
(10559, 'https://ror.org/018t3ct36', 'no_lang_code', 1, 'https://ror.org/018t3ct36 Rapita Systems (United Kingdom)'),
(10560, 'https://ror.org/00tzgse53', 'no_lang_code', 1, 'https://ror.org/00tzgse53 Noldus Information Technology'),
(10561, 'https://ror.org/05tpne661', 'no_lang_code', 1, 'https://ror.org/05tpne661 Laviosa Minerals (Italy)'),
(10562, 'https://ror.org/04h9w5w52', 'no_lang_code', 1, 'https://ror.org/04h9w5w52 LaVision (Germany)'),
(10563, 'https://ror.org/025fmv139', 'no_lang_code', 1, 'https://ror.org/025fmv139 Smithers Rapra (United Kingdom)'),
(10564, 'https://ror.org/05nmnwa45', 'en', 1, 'https://ror.org/05nmnwa45 Ministry of Communications and Information Technology'),
(10565, 'https://ror.org/04x0cz306', 'no_lang_code', 1, 'https://ror.org/04x0cz306 Noliac (Denmark)'),
(10566, 'https://ror.org/05key9153', 'no_lang_code', 1, 'https://ror.org/05key9153 Ratier Figeac (France)'),
(10567, 'https://ror.org/03qgk3v29', 'no_lang_code', 1, 'https://ror.org/03qgk3v29 EMI Construction Quality Control (Hungary)'),
(10568, 'https://ror.org/03hw63y69', 'it', 1, 'https://ror.org/03hw63y69 Ratio Consulta'),
(10569, 'https://ror.org/04ydcpm48', 'en', 1, 'https://ror.org/04ydcpm48 Ministria e Arsimit, Sportit dhe Rinisë Ministry of Education, Sports and Youth'),
(10570, 'https://ror.org/053pcb396', 'en', 1, 'https://ror.org/053pcb396 Ministry of Education and Science'),
(10571, 'https://ror.org/04pt1wy33', 'no_lang_code', 1, 'https://ror.org/04pt1wy33 Nor-tek'),
(10572, 'https://ror.org/02xk1w092', 'no_lang_code', 1, 'https://ror.org/02xk1w092 Tecos (Slovenia)'),
(10573, 'https://ror.org/05kcy9z49', 'no_lang_code', 1, 'https://ror.org/05kcy9z49 Norddeutsche Pflanzenzucht Hans-Georg Lembke (Germany)'),
(10574, 'https://ror.org/03pk1p315', 'no_lang_code', 1, 'https://ror.org/03pk1p315 Re Lab (Italy)'),
(10575, 'https://ror.org/04d84av86', 'en', 1, 'https://ror.org/04d84av86 Ministry of National Defence Υπουργείο Εθνικής Άμυνας'),
(10576, 'https://ror.org/00r7b5207', 'en', 1, 'https://ror.org/00r7b5207 Ministry of Public Security המשרד לביטחון הפנים وزارة الأمن الداخلي'),
(10577, 'https://ror.org/036nz4295', 'no_lang_code', 1, 'https://ror.org/036nz4295 Re/genT (Netherlands)'),
(10578, 'https://ror.org/04zyzzh22', 'no_lang_code', 1, 'https://ror.org/04zyzzh22 Saft (France)'),
(10579, 'https://ror.org/011t3k538', 'no_lang_code', 1, 'https://ror.org/011t3k538 SAIL LABS Technology (Austria)'),
(10580, 'https://ror.org/00a6bz625', 'no_lang_code', 1, 'https://ror.org/00a6bz625 Rete Europea Dell’Innovazione (Italy)'),
(10581, 'https://ror.org/05631hq65', 'no_lang_code', 1, 'https://ror.org/05631hq65 Mira Telecom (Romania)'),
(10582, 'https://ror.org/04vbpaq02', 'no_lang_code', 1, 'https://ror.org/04vbpaq02 Sairem (France)'),
(10583, 'https://ror.org/047yd6g50', 'no_lang_code', 1, 'https://ror.org/047yd6g50 Salzgitter AG Salzgitter Group (Germany)'),
(10584, 'https://ror.org/01a58n762', 'no_lang_code', 1, 'https://ror.org/01a58n762 Wärtsilä (Germany)'),
(10585, 'https://ror.org/054y68q61', 'no_lang_code', 1, 'https://ror.org/054y68q61 TopSolid (France)'),
(10586, 'https://ror.org/05xwst004', 'no_lang_code', 1, 'https://ror.org/05xwst004 Sampaş Nanotechnology (Turkey)'),
(10587, 'https://ror.org/05ew68y43', 'no_lang_code', 1, 'https://ror.org/05ew68y43 Norner (Norway)'),
(10588, 'https://ror.org/03ma9mt41', 'no_lang_code', 1, 'https://ror.org/03ma9mt41 Reply (Italy)'),
(10589, 'https://ror.org/033bbg733', 'no_lang_code', 1, 'https://ror.org/033bbg733 Mitel (United Kingdom)'),
(10590, 'https://ror.org/005w2t155', 'no_lang_code', 1, 'https://ror.org/005w2t155 Norsk Elektro Optikk (Norway)'),
(10591, 'https://ror.org/04kf71z43', 'no_lang_code', 1, 'https://ror.org/04kf71z43 Mitsubishi Electric (Netherlands)'),
(10592, 'https://ror.org/000sb6642', 'no_lang_code', 1, 'https://ror.org/000sb6642 Satellite Observing Systems (United Kingdom)'),
(10593, 'https://ror.org/02ejgnj48', 'no_lang_code', 1, 'https://ror.org/02ejgnj48 Satra (United Kingdom)'),
(10594, 'https://ror.org/0103ezj12', 'no_lang_code', 1, 'https://ror.org/0103ezj12 Swarco (Italy)'),
(10595, 'https://ror.org/018q0y068', 'no_lang_code', 1, 'https://ror.org/018q0y068 MJC2 (United Kingdom)'),
(10596, 'https://ror.org/0192jdh06', 'no_lang_code', 1, 'https://ror.org/0192jdh06 Satways (Greece)'),
(10597, 'https://ror.org/05q7scn65', 'no_lang_code', 1, 'https://ror.org/05q7scn65 MKmetric (Germany)'),
(10598, 'https://ror.org/03c1k0368', 'no_lang_code', 1, 'https://ror.org/03c1k0368 Schlaich Bergermann und Partner (Germany)'),
(10599, 'https://ror.org/01zhcwk43', 'no_lang_code', 1, 'https://ror.org/01zhcwk43 Digital Dispatch (Finland)'),
(10600, 'https://ror.org/00780ev46', 'no_lang_code', 1, 'https://ror.org/00780ev46 Mobycon'),
(10601, 'https://ror.org/04y4kb514', 'no_lang_code', 1, 'https://ror.org/04y4kb514 Modulight (Finland)'),
(10602, 'https://ror.org/00jf98d65', 'no_lang_code', 1, 'https://ror.org/00jf98d65 MolMed (Italy)'),
(10603, 'https://ror.org/01ezsr216', 'no_lang_code', 1, 'https://ror.org/01ezsr216 Monocrom (Spain)'),
(10604, 'https://ror.org/00aj9x431', 'en', 1, 'https://ror.org/00aj9x431 Region of Western Greece Περιφέρεια Δυτικής Ελλάδας'),
(10605, 'https://ror.org/002z0cd60', 'no_lang_code', 1, 'https://ror.org/002z0cd60 Schneider Electric (France)'),
(10606, 'https://ror.org/000q08p21', 'no_lang_code', 1, 'https://ror.org/000q08p21 Schott (Germany)'),
(10607, 'https://ror.org/007nspy92', 'en', 1, 'https://ror.org/007nspy92 Regional Center for Information and Scientific Development'),
(10608, 'https://ror.org/005574r46', 'no_lang_code', 1, 'https://ror.org/005574r46 Italsolar (Italy)'),
(10609, 'https://ror.org/03besxw61', 'no_lang_code', 1, 'https://ror.org/03besxw61 Mostostal Warszawa (Poland)'),
(10610, 'https://ror.org/03cpy3x24', 'no_lang_code', 1, 'https://ror.org/03cpy3x24 Motiva (Finland)'),
(10611, 'https://ror.org/02kg21794', 'it', 1, 'https://ror.org/02kg21794 Regione Campania'),
(10612, 'https://ror.org/00chw7248', 'no_lang_code', 1, 'https://ror.org/00chw7248 Motorola (Italy)'),
(10613, 'https://ror.org/021f1r958', 'no_lang_code', 1, 'https://ror.org/021f1r958 Schunk (Germany)'),
(10614, 'https://ror.org/045193y93', 'no_lang_code', 1, 'https://ror.org/045193y93 Motorola (Germany)'),
(10615, 'https://ror.org/04mq1ck21', 'no_lang_code', 1, 'https://ror.org/04mq1ck21 North West Textiles Network (United Kingdom)'),
(10616, 'https://ror.org/04wdcx151', 'en', 1, 'https://ror.org/04wdcx151 Northern Research Institute'),
(10617, 'https://ror.org/00hqdve77', 'no_lang_code', 1, 'https://ror.org/00hqdve77 Morgan Advanced Materials (United Kingdom)'),
(10618, 'https://ror.org/032ksge37', 'en', 1, 'https://ror.org/032ksge37 Norwegian Geotechnical Institute'),
(10619, 'https://ror.org/01sr61k19', 'es', 1, 'https://ror.org/01sr61k19 Instituto Catalán de Tecnología'),
(10620, 'https://ror.org/039faw336', 'no_lang_code', 1, 'https://ror.org/039faw336 Scientific Research and Development (Germany)'),
(10621, 'https://ror.org/00gsbmb44', 'no_lang_code', 1, 'https://ror.org/00gsbmb44 Renewable Energy Systems (United Kingdom)'),
(10622, 'https://ror.org/058css875', 'no_lang_code', 1, 'https://ror.org/058css875 Institut d''Assistència Sanitària'),
(10623, 'https://ror.org/05sa17k06', 'no_lang_code', 1, 'https://ror.org/05sa17k06 Roth and Rau (Germany)'),
(10624, 'https://ror.org/05x88b790', 'no_lang_code', 1, 'https://ror.org/05x88b790 Harvard Bioscience (Germany)'),
(10625, 'https://ror.org/042ekhp43', 'no_lang_code', 1, 'https://ror.org/042ekhp43 Bureau Veritas (Italy)'),
(10626, 'https://ror.org/02epcmt14', 'no_lang_code', 1, 'https://ror.org/02epcmt14 SCITEK Consultants (United Kingdom)'),
(10627, 'https://ror.org/00046rb12', 'no_lang_code', 1, 'https://ror.org/00046rb12 Rescoll (France)'),
(10628, 'https://ror.org/04nypah87', 'no_lang_code', 1, 'https://ror.org/04nypah87 SCM Group (Italy)'),
(10629, 'https://ror.org/043a1ff28', 'en', 1, 'https://ror.org/043a1ff28 Institute of Chemistry and Chemical Technology'),
(10630, 'https://ror.org/00nxghy76', 'no_lang_code', 1, 'https://ror.org/00nxghy76 Scriba Nanotecnologie (Italy)'),
(10631, 'https://ror.org/00hqnxt08', 'no_lang_code', 1, 'https://ror.org/00hqnxt08 Murmansk Marine Biological Institute'),
(10632, 'https://ror.org/032ep1086', 'no_lang_code', 1, 'https://ror.org/032ep1086 NOVAMINA Innovative Technology Centre'),
(10633, 'https://ror.org/01sa63389', 'ro', 1, 'https://ror.org/01sa63389 Administraţia Naţională de Meteorologie'),
(10634, 'https://ror.org/00r9k8q20', 'en', 1, 'https://ror.org/00r9k8q20 Museum and Institute of Zoology Muzeum i Instytut Zoologii PAN'),
(10635, 'https://ror.org/05sxxz166', 'no_lang_code', 1, 'https://ror.org/05sxxz166 Novamont (Italy)'),
(10636, 'https://ror.org/00w3cxa42', 'no_lang_code', 1, 'https://ror.org/00w3cxa42 Exide Technologies (Spain)'),
(10637, 'https://ror.org/04n1ywh56', 'no_lang_code', 1, 'https://ror.org/04n1ywh56 Mutadis'),
(10638, 'https://ror.org/000rr7w48', 'en', 1, 'https://ror.org/000rr7w48 Halászati és Öntözési Kutatóintézet Research Institute for Fisheries and Aquaculture'),
(10639, 'https://ror.org/02sqpat83', 'no_lang_code', 1, 'https://ror.org/02sqpat83 SYSTRA (United Kingdom)'),
(10640, 'https://ror.org/01mzc3z63', 'en', 1, 'https://ror.org/01mzc3z63 Research Institute for Knowledge Systems'),
(10641, 'https://ror.org/01rnsc454', 'no_lang_code', 1, 'https://ror.org/01rnsc454 Sefar (Switzerland)'),
(10642, 'https://ror.org/030bzfc32', 'nl', 1, 'https://ror.org/030bzfc32 Kennisland'),
(10643, 'https://ror.org/056x7d368', 'en', 1, 'https://ror.org/056x7d368 Stockholm Environment Institute'),
(10644, 'https://ror.org/00zecds36', 'no_lang_code', 1, 'https://ror.org/00zecds36 Smart Homes'),
(10645, 'https://ror.org/01eaddk85', 'no_lang_code', 1, 'https://ror.org/01eaddk85 Selected Electronic Technologies (Germany)'),
(10646, 'https://ror.org/00266dp40', 'nl', 1, 'https://ror.org/00266dp40 Novay'),
(10647, 'https://ror.org/054jftq10', 'no_lang_code', 1, 'https://ror.org/054jftq10 NsGene (Denmark)'),
(10648, 'https://ror.org/0394gyh79', 'en', 1, 'https://ror.org/0394gyh79 European Nuclear Education Network Réseau Européen pour l’Enseignement des Sciences Nucléaires'),
(10649, 'https://ror.org/026cc4t87', 'en', 1, 'https://ror.org/026cc4t87 Swedish Institute of Steel Construction'),
(10650, 'https://ror.org/04rmgk816', 'no_lang_code', 1, 'https://ror.org/04rmgk816 Skanska (Norway)'),
(10651, 'https://ror.org/02km85a12', 'no_lang_code', 1, 'https://ror.org/02km85a12 STMicroelectronics (Belgium)'),
(10652, 'https://ror.org/00wm3b005', 'no_lang_code', 1, 'https://ror.org/00wm3b005 STMicroelectronics (Switzerland)'),
(10653, 'https://ror.org/04cz70931', 'no_lang_code', 1, 'https://ror.org/04cz70931 ResilTech (Italy)'),
(10654, 'https://ror.org/039ckp747', 'en', 1, 'https://ror.org/039ckp747 Semantic Technology Institute International'),
(10655, 'https://ror.org/01h5zkn46', 'no_lang_code', 1, 'https://ror.org/01h5zkn46 Teledyne Technologies (Denmark)'),
(10656, 'https://ror.org/059y4z581', 'no_lang_code', 1, 'https://ror.org/059y4z581 Semelab (United Kingdom)'),
(10657, 'https://ror.org/00mg9ng87', 'no_lang_code', 1, 'https://ror.org/00mg9ng87 Subsea 7 (France)'),
(10658, 'https://ror.org/01vs9w702', 'no_lang_code', 1, 'https://ror.org/01vs9w702 Stora Enso (Finland)'),
(10659, 'https://ror.org/03b7cbd70', 'no_lang_code', 1, 'https://ror.org/03b7cbd70 Stork (Netherlands)'),
(10660, 'https://ror.org/02669nb20', 'no_lang_code', 1, 'https://ror.org/02669nb20 Abertis Infraestructuras (Spain)'),
(10661, 'https://ror.org/00mshdz97', 'en', 1, 'https://ror.org/00mshdz97 Cities On Internet Association'),
(10662, 'https://ror.org/03ztwkx44', 'no_lang_code', 1, 'https://ror.org/03ztwkx44 Revoind Industriale (Italy)'),
(10663, 'https://ror.org/0510ppv76', 'lv', 1, 'https://ror.org/0510ppv76 Rezekne Higher Education Institution Rēzeknes Augstskola'),
(10664, 'https://ror.org/05jy9ww07', 'no_lang_code', 1, 'https://ror.org/05jy9ww07 Semilab (Hungary)'),
(10665, 'https://ror.org/01syn7y20', 'no_lang_code', 1, 'https://ror.org/01syn7y20 Stratec (Belgium)'),
(10666, 'https://ror.org/02vf5m226', 'en', 1, 'https://ror.org/02vf5m226 Strategic Design Scenarios'),
(10667, 'https://ror.org/0472xg466', 'no_lang_code', 1, 'https://ror.org/0472xg466 StratiCELL (Belgium)'),
(10668, 'https://ror.org/03ysemc97', 'de', 1, 'https://ror.org/03ysemc97 Senate Department for Urban Development and the Environment Senatsverwaltung für Stadtentwicklung und Wohnen'),
(10669, 'https://ror.org/01svwxb64', 'no_lang_code', 1, 'https://ror.org/01svwxb64 Rhea (Belgium)'),
(10670, 'https://ror.org/01a7b6660', 'no_lang_code', 1, 'https://ror.org/01a7b6660 Stresstech (Finland)'),
(10671, 'https://ror.org/00kb94k03', 'no_lang_code', 1, 'https://ror.org/00kb94k03 Sensing & Control Systems (Spain)'),
(10672, 'https://ror.org/01dzdzt70', 'no_lang_code', 1, 'https://ror.org/01dzdzt70 SensL (Ireland)'),
(10673, 'https://ror.org/03hj7k055', 'de', 1, 'https://ror.org/03hj7k055 Studiengesellschaft für den Kombinierten Verkehr e.V.'),
(10674, 'https://ror.org/05h8dpx23', 'no_lang_code', 1, 'https://ror.org/05h8dpx23 RWE (Germany) Rheinisch-Westfälisches Elektrizitätswerk Aktiengesellschaft Rhine-Westfalia Electricity Factory'),
(10675, 'https://ror.org/000714v43', 'no_lang_code', 1, 'https://ror.org/000714v43 Studsvik (Sweden)'),
(10676, 'https://ror.org/01jyh4590', 'no_lang_code', 1, 'https://ror.org/01jyh4590 Solvay (France)'),
(10677, 'https://ror.org/03nn4bh87', 'no_lang_code', 1, 'https://ror.org/03nn4bh87 STX Europe (France)'),
(10678, 'https://ror.org/05nqms590', 'no_lang_code', 1, 'https://ror.org/05nqms590 SENTECH Instruments (Germany)'),
(10679, 'https://ror.org/01mpzhk41', 'no_lang_code', 1, 'https://ror.org/01mpzhk41 Subsea Technologies (United Kingdom)'),
(10680, 'https://ror.org/026jjgn48', 'fr', 1, 'https://ror.org/026jjgn48 Regional Energy and Environment Egency Rhônalpénergie Environnement'),
(10681, 'https://ror.org/01jpp1g73', 'no_lang_code', 1, 'https://ror.org/01jpp1g73 Sulzer (Switzerland)'),
(10682, 'https://ror.org/03yfpyd14', 'no_lang_code', 1, 'https://ror.org/03yfpyd14 Nutrition Sciences (Belgium)'),
(10683, 'https://ror.org/05b0r1408', 'no_lang_code', 1, 'https://ror.org/05b0r1408 RHP Technology (Austria)'),
(10684, 'https://ror.org/01cmxpj21', 'no_lang_code', 1, 'https://ror.org/01cmxpj21 SupraPolix (Netherlands)'),
(10685, 'https://ror.org/01024mn06', 'no_lang_code', 1, 'https://ror.org/01024mn06 Dutch Railways Nederlandse Spoorwegen'),
(10686, 'https://ror.org/050rtva22', 'en', 1, 'https://ror.org/050rtva22 Geological Survey of Sweden Ruotsin geologinen tutkimuslaitos Sveriges geologiska undersökning'),
(10687, 'https://ror.org/031v4g827', 'no_lang_code', 1, 'https://ror.org/031v4g827 NXP (Belgium)'),
(10688, 'https://ror.org/0268h4j55', 'no_lang_code', 1, 'https://ror.org/0268h4j55 NXP (Germany)'),
(10689, 'https://ror.org/03j9wjf80', 'no_lang_code', 1, 'https://ror.org/03j9wjf80 Sweco (Norway)'),
(10690, 'https://ror.org/038nrf531', 'no_lang_code', 1, 'https://ror.org/038nrf531 Pininfarina (Italy)'),
(10691, 'https://ror.org/006y04m02', 'no_lang_code', 1, 'https://ror.org/006y04m02 Separex (France)'),
(10692, 'https://ror.org/052x9wz38', 'no_lang_code', 1, 'https://ror.org/052x9wz38 Septentrio (Belgium)'),
(10693, 'https://ror.org/02xb2kd32', 'de', 1, 'https://ror.org/02xb2kd32 OÖ Energiesparverband'),
(10694, 'https://ror.org/000etmf12', 'no_lang_code', 1, 'https://ror.org/000etmf12 Sequans Communications (France)'),
(10695, 'https://ror.org/05r3h7k61', 'en', 1, 'https://ror.org/05r3h7k61 Sustainable Europe Research Institute'),
(10696, 'https://ror.org/0359z7n90', 'en', 1, 'https://ror.org/0359z7n90 Swedish Energy Agency'),
(10697, 'https://ror.org/04kwmb779', 'no_lang_code', 1, 'https://ror.org/04kwmb779 Serious Games Interactive (Denmark)'),
(10698, 'https://ror.org/00dzkep57', 'no_lang_code', 1, 'https://ror.org/00dzkep57 Rijk Zwaan (Netherlands)'),
(10699, 'https://ror.org/039ds3g53', 'no_lang_code', 1, 'https://ror.org/039ds3g53 Oberthur Technologies (France)');
INSERT INTO `rors` VALUES
(10700, 'https://ror.org/014mewn70', 'fr', 1, 'https://ror.org/014mewn70 Federal Overheidsdienst voor Informatie - en Communicatietechnologie Föderaler Öffentlichter Dienst Informations- und Kommunikationstechnologie Information and Communication Technology Federal Public Service Service Public Fédéral Technologie de l''Information et de la Communication'),
(10701, 'https://ror.org/04357cf44', 'no_lang_code', 1, 'https://ror.org/04357cf44 ServiceXS (Netherlands)'),
(10702, 'https://ror.org/00fxe2a68', 'en', 1, 'https://ror.org/00fxe2a68 Observa Science in Society'),
(10703, 'https://ror.org/043nqmk58', 'fr', 1, 'https://ror.org/043nqmk58 Neuchâtel Observatory Observatoire Cantonal de Neuchâtel'),
(10704, 'https://ror.org/006h87a74', 'no_lang_code', 1, 'https://ror.org/006h87a74 Veolia (Denmark)'),
(10705, 'https://ror.org/00526y629', 'no_lang_code', 1, 'https://ror.org/00526y629 SES (Luxembourg)'),
(10706, 'https://ror.org/03w8v9a14', 'fr', 1, 'https://ror.org/03w8v9a14 Observatoire des Sciences et des Techniques'),
(10707, 'https://ror.org/04ss55z27', 'fr', 1, 'https://ror.org/04ss55z27 Observatoire des énergies renouvelables Observatory of renewable energies'),
(10708, 'https://ror.org/03adjb352', 'fr', 1, 'https://ror.org/03adjb352 Observatoire Méditerranéen de l’Energie'),
(10709, 'https://ror.org/0268js065', 'no_lang_code', 1, 'https://ror.org/0268js065 Melissa Food'),
(10710, 'https://ror.org/03nvvdm73', 'no_lang_code', 1, 'https://ror.org/03nvvdm73 Canon (Netherlands)'),
(10711, 'https://ror.org/04etsch95', 'no_lang_code', 1, 'https://ror.org/04etsch95 AFRY (Sweden)'),
(10712, 'https://ror.org/02qfp6t71', 'no_lang_code', 1, 'https://ror.org/02qfp6t71 Rikola (Finland)'),
(10713, 'https://ror.org/0562tzd79', 'no_lang_code', 1, 'https://ror.org/0562tzd79 Rina Services (Italy)'),
(10714, 'https://ror.org/0141avd06', 'no_lang_code', 1, 'https://ror.org/0141avd06 RISA Sicherheitsanalysen'),
(10715, 'https://ror.org/01zje5g50', 'no_lang_code', 1, 'https://ror.org/01zje5g50 Fugro (Norway)'),
(10716, 'https://ror.org/002wx9n23', 'no_lang_code', 1, 'https://ror.org/002wx9n23 Gruppo Riva (Italy)'),
(10717, 'https://ror.org/01fnp9w45', 'no_lang_code', 1, 'https://ror.org/01fnp9w45 Calzoni (Italy)'),
(10718, 'https://ror.org/00hzxcy85', 'no_lang_code', 1, 'https://ror.org/00hzxcy85 Syngenta (Netherlands)'),
(10719, 'https://ror.org/04t1f4f50', 'no_lang_code', 1, 'https://ror.org/04t1f4f50 Swisscom (Switzerland)'),
(10720, 'https://ror.org/005p0t446', 'eu', 1, 'https://ror.org/005p0t446 Institute for Applied Ecology Oeko Institut'),
(10721, 'https://ror.org/018kgyq04', 'no_lang_code', 1, 'https://ror.org/018kgyq04 Roal (Finland)'),
(10722, 'https://ror.org/03avace35', 'no_lang_code', 1, 'https://ror.org/03avace35 Sword Group (Luxembourg)'),
(10723, 'https://ror.org/03jbq7a32', 'en', 1, 'https://ror.org/03jbq7a32 Austrian Federal Railways Österreichische Bundesbahnen'),
(10724, 'https://ror.org/01x544h30', 'no_lang_code', 1, 'https://ror.org/01x544h30 Roche (Italy)'),
(10725, 'https://ror.org/012jkf693', 'no_lang_code', 1, 'https://ror.org/012jkf693 E.ON Sverige (Sweden)'),
(10726, 'https://ror.org/02gk0vj45', 'no_lang_code', 1, 'https://ror.org/02gk0vj45 Rockfield (United Kingdom)'),
(10727, 'https://ror.org/0199x1096', 'en', 1, 'https://ror.org/0199x1096 Shipbuilders & Shiprepairers Association'),
(10728, 'https://ror.org/034bs1q12', 'no_lang_code', 1, 'https://ror.org/034bs1q12 Rodan Development (Poland)'),
(10729, 'https://ror.org/00b06wh69', 'no_lang_code', 1, 'https://ror.org/00b06wh69 Austrian Broadcasting Österreichischer Rundfunk'),
(10730, 'https://ror.org/035jeda71', 'no_lang_code', 1, 'https://ror.org/035jeda71 Rofin (Germany)'),
(10731, 'https://ror.org/048j11q41', 'no_lang_code', 1, 'https://ror.org/048j11q41 Rohde & Schwarz (Germany)'),
(10732, 'https://ror.org/011sk7b78', 'no_lang_code', 1, 'https://ror.org/011sk7b78 Smart High Tech (Sweden)'),
(10733, 'https://ror.org/04zwgxj11', 'de', 1, 'https://ror.org/04zwgxj11 Österreichisches Forschungsinstitut für Chemie und Technik'),
(10734, 'https://ror.org/055ef6019', 'no_lang_code', 1, 'https://ror.org/055ef6019 Rolls-Royce (Sweden)'),
(10735, 'https://ror.org/04fnnnw43', 'no_lang_code', 1, 'https://ror.org/04fnnnw43 Sistemi Innovativi per Il Controllo del Traffico Aereo'),
(10736, 'https://ror.org/030a5js80', 'no_lang_code', 1, 'https://ror.org/030a5js80 Siegert Electronic (Germany)'),
(10737, 'https://ror.org/01gkt5r55', 'no_lang_code', 1, 'https://ror.org/01gkt5r55 Ropardo (Romania)'),
(10738, 'https://ror.org/03794w632', 'no_lang_code', 1, 'https://ror.org/03794w632 Siemens (Austria)'),
(10739, 'https://ror.org/01n0jwg88', 'no_lang_code', 1, 'https://ror.org/01n0jwg88 Synapse (Spain)'),
(10740, 'https://ror.org/003eebv14', 'no_lang_code', 1, 'https://ror.org/003eebv14 Sylics (Netherlands)'),
(10741, 'https://ror.org/05e6jng70', 'en', 1, 'https://ror.org/05e6jng70 Office National de l''Eau Potable'),
(10742, 'https://ror.org/04nd0kv93', 'no_lang_code', 1, 'https://ror.org/04nd0kv93 Roughan & O''Donovan Innovative Solutions'),
(10743, 'https://ror.org/030s5c086', 'no_lang_code', 1, 'https://ror.org/030s5c086 syncom'),
(10744, 'https://ror.org/006kghv09', 'no_lang_code', 1, 'https://ror.org/006kghv09 Synergie Informatique'),
(10745, 'https://ror.org/0521fzc39', 'no_lang_code', 1, 'https://ror.org/0521fzc39 Atos (Germany)'),
(10746, 'https://ror.org/00fgrt128', 'no_lang_code', 1, 'https://ror.org/00fgrt128 synergo'),
(10747, 'https://ror.org/02t31fs67', 'en', 1, 'https://ror.org/02t31fs67 Office of the Prime Minister of Malta Primo Ministro di Malta'),
(10748, 'https://ror.org/04f6ygk28', 'no_lang_code', 1, 'https://ror.org/04f6ygk28 Siemens (Italy)'),
(10749, 'https://ror.org/05rn4h878', 'no_lang_code', 1, 'https://ror.org/05rn4h878 Siemens (Spain)'),
(10750, 'https://ror.org/00sexkk33', 'no_lang_code', 1, 'https://ror.org/00sexkk33 Siemens (Romania)'),
(10751, 'https://ror.org/04gbv0x41', 'it', 1, 'https://ror.org/04gbv0x41 Synesis'),
(10752, 'https://ror.org/000bdn450', 'no_lang_code', 1, 'https://ror.org/000bdn450 Syngenta (United Kingdom)'),
(10753, 'https://ror.org/0240jmg04', 'no_lang_code', 1, 'https://ror.org/0240jmg04 Olink Bioscience (Sweden)'),
(10754, 'https://ror.org/00k67dg75', 'no_lang_code', 1, 'https://ror.org/00k67dg75 RTC North (United Kingdom)'),
(10755, 'https://ror.org/02rrff887', 'no_lang_code', 1, 'https://ror.org/02rrff887 Synovo (Germany)'),
(10756, 'https://ror.org/05mgm0j54', 'no_lang_code', 1, 'https://ror.org/05mgm0j54 RTD Talos (Cyprus)'),
(10757, 'https://ror.org/04q9w3z30', 'no_lang_code', 1, 'https://ror.org/04q9w3z30 Siemens (France)'),
(10758, 'https://ror.org/01wffm716', 'no_lang_code', 1, 'https://ror.org/01wffm716 Rübig (Austria)'),
(10759, 'https://ror.org/05kxkhq65', 'no_lang_code', 1, 'https://ror.org/05kxkhq65 Syntax (Italy)'),
(10760, 'https://ror.org/02mnzkw65', 'no_lang_code', 1, 'https://ror.org/02mnzkw65 Synthema (Italy)'),
(10761, 'https://ror.org/03wepve87', 'de', 1, 'https://ror.org/03wepve87 Berlin-Brandenburg Broadcasting Rundfunk Berlin-Brandenburg'),
(10762, 'https://ror.org/031xjr712', 'no_lang_code', 1, 'https://ror.org/031xjr712 Thales (Germany)'),
(10763, 'https://ror.org/02ka1d450', 'no_lang_code', 1, 'https://ror.org/02ka1d450 Siena Biotech (Italy)'),
(10764, 'https://ror.org/000yp3j43', 'no_lang_code', 1, 'https://ror.org/000yp3j43 Rupprecht Consult - Forschung & Beratung'),
(10765, 'https://ror.org/02twk3504', 'no_lang_code', 1, 'https://ror.org/02twk3504 GF Machining Solutions (Sweden)'),
(10766, 'https://ror.org/02c4z1521', 'no_lang_code', 1, 'https://ror.org/02c4z1521 Sigint Solutions (Cyprus)'),
(10767, 'https://ror.org/04gf6zh40', 'no_lang_code', 1, 'https://ror.org/04gf6zh40 System Simulation (United Kingdom)'),
(10768, 'https://ror.org/006gxgq80', 'no_lang_code', 1, 'https://ror.org/006gxgq80 Omniform (Belgium)'),
(10769, 'https://ror.org/04tpvq080', 'en', 1, 'https://ror.org/04tpvq080 Russian Technology Transfer Network'),
(10770, 'https://ror.org/01fv2rv38', 'no_lang_code', 1, 'https://ror.org/01fv2rv38 Sigma Orionis (France)'),
(10771, 'https://ror.org/0013dsy11', 'no_lang_code', 1, 'https://ror.org/0013dsy11 RWTÜV (Germany) Rheinisch-Westfälische Technische Überwachungsverein'),
(10772, 'https://ror.org/03kpxfs84', 'en', 1, 'https://ror.org/03kpxfs84 Systema Transport Planning & Engineering Consultants'),
(10773, 'https://ror.org/03ce0x006', 'no_lang_code', 1, 'https://ror.org/03ce0x006 RWP (Germany)'),
(10774, 'https://ror.org/021ztkr23', 'no_lang_code', 1, 'https://ror.org/021ztkr23 Synopsys (Germany)'),
(10775, 'https://ror.org/00xctsq42', 'no_lang_code', 1, 'https://ror.org/00xctsq42 ONA Electroerosion (Spain)'),
(10776, 'https://ror.org/01mff3b34', 'no_lang_code', 1, 'https://ror.org/01mff3b34 Sigmoid Pharma (Ireland)'),
(10777, 'https://ror.org/050gb7v09', 'no_lang_code', 1, 'https://ror.org/050gb7v09 Groupe Cahors (France)'),
(10778, 'https://ror.org/043rcha86', 'no_lang_code', 1, 'https://ror.org/043rcha86 SignalGeneriX (Cyprus)'),
(10779, 'https://ror.org/01qkn1y38', 'no_lang_code', 1, 'https://ror.org/01qkn1y38 Deutsche Telekom (Spain)'),
(10780, 'https://ror.org/03n3c6k39', 'no_lang_code', 1, 'https://ror.org/03n3c6k39 SATA Application Advanced Technologies (Italy)'),
(10781, 'https://ror.org/03x8kjj16', 'no_lang_code', 1, 'https://ror.org/03x8kjj16 Signosis'),
(10782, 'https://ror.org/05syweh23', 'no_lang_code', 1, 'https://ror.org/05syweh23 Semafora Systems (Germany)'),
(10783, 'https://ror.org/0376xx786', 'no_lang_code', 1, 'https://ror.org/0376xx786 Kalashnikov Group (Russia) акционерное общество Государственный оптический институт имени С.И.Вавилова'),
(10784, 'https://ror.org/05rasm086', 'no_lang_code', 1, 'https://ror.org/05rasm086 T4tech (Italy)'),
(10785, 'https://ror.org/02p3cs867', 'no_lang_code', 1, 'https://ror.org/02p3cs867 T6 (Italy)'),
(10786, 'https://ror.org/00b8kjk28', 'no_lang_code', 1, 'https://ror.org/00b8kjk28 Praxis'),
(10787, 'https://ror.org/05vq5je50', 'nl', 1, 'https://ror.org/05vq5je50 East Netherlands Development Agency Ontwikkelingsmaatschappij Oost Nederland'),
(10788, 'https://ror.org/02wqw9g56', 'en', 1, 'https://ror.org/02wqw9g56 Science Centre AHHAA'),
(10789, 'https://ror.org/02v26hv54', 'no_lang_code', 1, 'https://ror.org/02v26hv54 Imerys (Germany)'),
(10790, 'https://ror.org/050c2ya64', 'no_lang_code', 1, 'https://ror.org/050c2ya64 Imerys (Greece)'),
(10791, 'https://ror.org/03sqxy896', 'no_lang_code', 1, 'https://ror.org/03sqxy896 OpenLink Software (United Kingdom)'),
(10792, 'https://ror.org/05kc7vw19', 'no_lang_code', 1, 'https://ror.org/05kc7vw19 Sociétés Anonyme Belge de Constructions Aéronautiques (Belgium)'),
(10793, 'https://ror.org/00maqzy82', 'no_lang_code', 1, 'https://ror.org/00maqzy82 Sika (Switzerland)'),
(10794, 'https://ror.org/00mkc7476', 'no_lang_code', 1, 'https://ror.org/00mkc7476 Targeting Innovation'),
(10795, 'https://ror.org/02azz6x90', 'en', 1, 'https://ror.org/02azz6x90 Institute of Theoretical and Applied Mechanics Федеральное государственное бюджетное учреждение науки Институт теоретической и прикладной механики им. С.А. Христиановича Сибирского отделения Российской академии наук'),
(10796, 'https://ror.org/02th50f93', 'no_lang_code', 1, 'https://ror.org/02th50f93 Akka Technologies (France)'),
(10797, 'https://ror.org/01f2jad04', 'no_lang_code', 1, 'https://ror.org/01f2jad04 Saarstahl (Germany)'),
(10798, 'https://ror.org/03x8wy758', 'no_lang_code', 1, 'https://ror.org/03x8wy758 Tataa Biocenter (Sweden)'),
(10799, 'https://ror.org/05fg03x56', 'no_lang_code', 1, 'https://ror.org/05fg03x56 Optibase (Israel)'),
(10800, 'https://ror.org/04rzw7a06', 'en', 1, 'https://ror.org/04rzw7a06 Tavistock Institute'),
(10801, 'https://ror.org/00ansy136', 'no_lang_code', 1, 'https://ror.org/00ansy136 Saaten Union (Germany)'),
(10802, 'https://ror.org/03gcqsh22', 'no_lang_code', 1, 'https://ror.org/03gcqsh22 SinapTec (France)'),
(10803, 'https://ror.org/00q1rsz50', 'no_lang_code', 1, 'https://ror.org/00q1rsz50 Optimat (United Kingdom)'),
(10804, 'https://ror.org/00kt61z96', 'no_lang_code', 1, 'https://ror.org/00kt61z96 Optoelectronica-2001 (Romania)'),
(10805, 'https://ror.org/04vbenz24', 'de', 1, 'https://ror.org/04vbenz24 Sächsisches Textilforschungsinstitut'),
(10806, 'https://ror.org/00zrv0342', 'no_lang_code', 1, 'https://ror.org/00zrv0342 Sinergis (Italy)'),
(10807, 'https://ror.org/05dt0hn88', 'no_lang_code', 1, 'https://ror.org/05dt0hn88 Orange (Poland)'),
(10808, 'https://ror.org/020e1a811', 'no_lang_code', 1, 'https://ror.org/020e1a811 SAES Group (Italy)'),
(10809, 'https://ror.org/056h3fs04', 'no_lang_code', 1, 'https://ror.org/056h3fs04 Orbsen Therapeutics (Ireland)'),
(10810, 'https://ror.org/00zfw3j31', 'en', 1, 'https://ror.org/00zfw3j31 Singleimage'),
(10811, 'https://ror.org/03aq8ma66', 'no_lang_code', 1, 'https://ror.org/03aq8ma66 SEMA (Germany)'),
(10812, 'https://ror.org/05vf2js71', 'no_lang_code', 1, 'https://ror.org/05vf2js71 Brookes Bell (United Kingdom)'),
(10813, 'https://ror.org/00z299818', 'no_lang_code', 1, 'https://ror.org/00z299818 Vinci (United Kingdom)'),
(10814, 'https://ror.org/028k9m233', 'no_lang_code', 1, 'https://ror.org/028k9m233 Safibra (Czechia)'),
(10815, 'https://ror.org/053k6j340', 'no_lang_code', 1, 'https://ror.org/053k6j340 Organic Waste Systems (Belgium)'),
(10816, 'https://ror.org/02wt3dg04', 'no_lang_code', 1, 'https://ror.org/02wt3dg04 Safinah (United Kingdom)'),
(10817, 'https://ror.org/01sa7d916', 'no_lang_code', 1, 'https://ror.org/01sa7d916 Altium''s (Netherlands)'),
(10818, 'https://ror.org/031c2y549', 'no_lang_code', 1, 'https://ror.org/031c2y549 TÁRKI Social Research Institute'),
(10819, 'https://ror.org/05546tk27', 'no_lang_code', 1, 'https://ror.org/05546tk27 Teamnet (Romania)'),
(10820, 'https://ror.org/01kydft86', 'no_lang_code', 1, 'https://ror.org/01kydft86 Teamwork Technology (Netherlands)'),
(10821, 'https://ror.org/012nb8s32', 'no_lang_code', 1, 'https://ror.org/012nb8s32 GKN (Germany)'),
(10822, 'https://ror.org/01d9zj202', 'no_lang_code', 1, 'https://ror.org/01d9zj202 Tech4i2'),
(10823, 'https://ror.org/033ym9x13', 'no_lang_code', 1, 'https://ror.org/033ym9x13 Technaid (Spain)'),
(10824, 'https://ror.org/01drcxb91', 'no_lang_code', 1, 'https://ror.org/01drcxb91 Sirma Group (Bulgaria)'),
(10825, 'https://ror.org/00aakch57', 'no_lang_code', 1, 'https://ror.org/00aakch57 Terres OléoPro (France)'),
(10826, 'https://ror.org/00fey2y98', 'no_lang_code', 1, 'https://ror.org/00fey2y98 Technical Software Consulting'),
(10827, 'https://ror.org/013fdsd98', 'no_lang_code', 1, 'https://ror.org/013fdsd98 Sirti (Italy)'),
(10828, 'https://ror.org/01pnrv279', 'hu', 1, 'https://ror.org/01pnrv279 Orszagos Kornyezetegeszsegugyi Intezet'),
(10829, 'https://ror.org/03jj9fg49', 'no_lang_code', 1, 'https://ror.org/03jj9fg49 Technical Support for European Organisations'),
(10830, 'https://ror.org/02e10zk80', 'en', 1, 'https://ror.org/02e10zk80 ORT France'),
(10831, 'https://ror.org/00zbvyk98', 'no_lang_code', 1, 'https://ror.org/00zbvyk98 TIE Kinetix (Netherlands)'),
(10832, 'https://ror.org/04a197k40', 'no_lang_code', 1, 'https://ror.org/04a197k40 ODTÜ Teknokent (Turkey)'),
(10833, 'https://ror.org/041ceep81', 'pt', 1, 'https://ror.org/041ceep81 Sindicato dos Trabalhadores de Escritório'),
(10834, 'https://ror.org/01rgnfy66', 'fi', 1, 'https://ror.org/01rgnfy66 Heureka'),
(10835, 'https://ror.org/00td3ns83', 'no_lang_code', 1, 'https://ror.org/00td3ns83 SIVECO (Romania)'),
(10836, 'https://ror.org/03jcesj83', 'no_lang_code', 1, 'https://ror.org/03jcesj83 Tilde (Latvia)'),
(10837, 'https://ror.org/03yhymv35', 'no_lang_code', 1, 'https://ror.org/03yhymv35 Timber Research and Development Association (United Kingdom)'),
(10838, 'https://ror.org/01y13ze91', 'no_lang_code', 1, 'https://ror.org/01y13ze91 SKF (Netherlands)'),
(10839, 'https://ror.org/02ktw6q65', 'no_lang_code', 1, 'https://ror.org/02ktw6q65 Technobiochip (Italy)'),
(10840, 'https://ror.org/04ytjxd97', 'fr', 1, 'https://ror.org/04ytjxd97 Technofi'),
(10841, 'https://ror.org/05b88kk95', 'no_lang_code', 1, 'https://ror.org/05b88kk95 Imerys (Switzerland)'),
(10842, 'https://ror.org/02tts0b67', 'no_lang_code', 1, 'https://ror.org/02tts0b67 Sandvik (United Kingdom)'),
(10843, 'https://ror.org/00wy5qj82', 'no_lang_code', 1, 'https://ror.org/00wy5qj82 Skytek (Ireland)'),
(10844, 'https://ror.org/02677w923', 'no_lang_code', 1, 'https://ror.org/02677w923 Slot Consulting'),
(10845, 'https://ror.org/01mr3bk23', 'no_lang_code', 1, 'https://ror.org/01mr3bk23 Transportes Inovação e Sistemas (Portugal)'),
(10846, 'https://ror.org/01c0x3431', 'no_lang_code', 1, 'https://ror.org/01c0x3431 OSRAM (Germany)'),
(10847, 'https://ror.org/01egf3y42', 'no_lang_code', 1, 'https://ror.org/01egf3y42 Technikon (Austria)'),
(10848, 'https://ror.org/01qd5ms12', 'no_lang_code', 1, 'https://ror.org/01qd5ms12 Titan Cement (Greece) Όμιλος Τσιμέντων Τιτάν'),
(10849, 'https://ror.org/03rgbdq68', 'en', 1, 'https://ror.org/03rgbdq68 Slovak Organization for Research and Development Activities'),
(10850, 'https://ror.org/01k9hhd91', 'no_lang_code', 1, 'https://ror.org/01k9hhd91 TÜV SÜD (Germany)'),
(10851, 'https://ror.org/00fbze943', 'en', 1, 'https://ror.org/00fbze943 Arcetri Astrophysical Observatory Osservatorio Astrofisico di Arcetri'),
(10852, 'https://ror.org/04bjr3r43', 'no_lang_code', 1, 'https://ror.org/04bjr3r43 TÜV (Austria)'),
(10853, 'https://ror.org/030c4y728', 'sl', 1, 'https://ror.org/030c4y728 Construction Cluster of Slovenia Slovenski Gradbeni Grozd'),
(10854, 'https://ror.org/026meq292', 'no_lang_code', 1, 'https://ror.org/026meq292 Össur (Iceland)'),
(10855, 'https://ror.org/05jfpn078', 'no_lang_code', 1, 'https://ror.org/05jfpn078 Türk Otomobil Fabrikası (Turkey)'),
(10856, 'https://ror.org/01wpzjj95', 'no_lang_code', 1, 'https://ror.org/01wpzjj95 Tofwerk (Switzerland)'),
(10857, 'https://ror.org/00d34nb45', 'no_lang_code', 1, 'https://ror.org/00d34nb45 Technology Application Network (United Kingdom)'),
(10858, 'https://ror.org/04d8haw14', 'no_lang_code', 1, 'https://ror.org/04d8haw14 SMA Solar Technology (Germany)'),
(10859, 'https://ror.org/01pjwgv56', 'no_lang_code', 1, 'https://ror.org/01pjwgv56 Smart Material (Germany)'),
(10860, 'https://ror.org/04tcsp154', 'no_lang_code', 1, 'https://ror.org/04tcsp154 Technology Transfer System (Italy)'),
(10861, 'https://ror.org/04as6y835', 'no_lang_code', 1, 'https://ror.org/04as6y835 TomTom (Netherlands)'),
(10862, 'https://ror.org/05d021z60', 'no_lang_code', 1, 'https://ror.org/05d021z60 Technolution (Netherlands)'),
(10863, 'https://ror.org/017m81f09', 'no_lang_code', 1, 'https://ror.org/017m81f09 Technopolis'),
(10864, 'https://ror.org/00233x252', 'no_lang_code', 1, 'https://ror.org/00233x252 Qiagen (Denmark)'),
(10865, 'https://ror.org/05xy3es97', 'no_lang_code', 1, 'https://ror.org/05xy3es97 Organizzazione Sviluppo Vendite'),
(10866, 'https://ror.org/011wwxv17', 'no_lang_code', 1, 'https://ror.org/011wwxv17 TopGaN (Poland)'),
(10867, 'https://ror.org/019nbqv12', 'no_lang_code', 1, 'https://ror.org/019nbqv12 Technosam (Romania)'),
(10868, 'https://ror.org/02k2bzx75', 'no_lang_code', 1, 'https://ror.org/02k2bzx75 Smartex (Italy)'),
(10869, 'https://ror.org/00t9ms296', 'no_lang_code', 1, 'https://ror.org/00t9ms296 Toptica Photonics (Germany)'),
(10870, 'https://ror.org/007tnc411', 'no_lang_code', 1, 'https://ror.org/007tnc411 Ottobock (Germany)'),
(10871, 'https://ror.org/020tnvw92', 'no_lang_code', 1, 'https://ror.org/020tnvw92 Safran (Belgium)'),
(10872, 'https://ror.org/05tqewv36', 'no_lang_code', 1, 'https://ror.org/05tqewv36 Tecnaro (Germany)'),
(10873, 'https://ror.org/0049h1m27', 'no_lang_code', 1, 'https://ror.org/0049h1m27 Otto Group (Germany)'),
(10874, 'https://ror.org/028nv1219', 'no_lang_code', 1, 'https://ror.org/028nv1219 Tecnitest (Spain)'),
(10875, 'https://ror.org/04ej2a140', 'no_lang_code', 1, 'https://ror.org/04ej2a140 Tecnologia Energia Ambiente Materiali (Italy)'),
(10876, 'https://ror.org/01ffb7n67', 'no_lang_code', 1, 'https://ror.org/01ffb7n67 Outokumpu (Finland)'),
(10877, 'https://ror.org/00a17cp45', 'no_lang_code', 1, 'https://ror.org/00a17cp45 Tecnología Navarra de Nanoproductos (Spain)'),
(10878, 'https://ror.org/0048c7h22', 'no_lang_code', 1, 'https://ror.org/0048c7h22 Tecnologías Servicios Telemáticos y Sistemas'),
(10879, 'https://ror.org/032mp1e77', 'no_lang_code', 1, 'https://ror.org/032mp1e77 Total (Belgium)'),
(10880, 'https://ror.org/057d3rj91', 'no_lang_code', 1, 'https://ror.org/057d3rj91 Arup Group (United Kingdom)'),
(10881, 'https://ror.org/003pqgx54', 'no_lang_code', 1, 'https://ror.org/003pqgx54 SMR Engineering and Development (Switzerland)'),
(10882, 'https://ror.org/00ah8d329', 'no_lang_code', 1, 'https://ror.org/00ah8d329 Oxford Computer Consultants (United Kingdom)'),
(10883, 'https://ror.org/042n14286', 'it', 1, 'https://ror.org/042n14286 InnovaPuglia'),
(10884, 'https://ror.org/05wgmk856', 'no_lang_code', 1, 'https://ror.org/05wgmk856 Oxley (United Kingdom)'),
(10885, 'https://ror.org/021k09d21', 'no_lang_code', 1, 'https://ror.org/021k09d21 Ajat (Finland)'),
(10886, 'https://ror.org/009n2kd47', 'no_lang_code', 1, 'https://ror.org/009n2kd47 Toulon Var Technologies (France)'),
(10887, 'https://ror.org/05eermw75', 'no_lang_code', 1, 'https://ror.org/05eermw75 Arbonaut (Finland)'),
(10888, 'https://ror.org/03kekxj46', 'no_lang_code', 1, 'https://ror.org/03kekxj46 Wallwork (United Kingdom)'),
(10889, 'https://ror.org/04vedy547', 'no_lang_code', 1, 'https://ror.org/04vedy547 Tp21 (Germany)'),
(10890, 'https://ror.org/042y8fp68', 'no_lang_code', 1, 'https://ror.org/042y8fp68 Tekever (Portugal)'),
(10891, 'https://ror.org/02x5exm81', 'no_lang_code', 1, 'https://ror.org/02x5exm81 E.ON (France)'),
(10892, 'https://ror.org/04vv43q89', 'no_lang_code', 1, 'https://ror.org/04vv43q89 Ericsson (Finland)'),
(10893, 'https://ror.org/01faxnv78', 'no_lang_code', 1, 'https://ror.org/01faxnv78 Tractebel Engineering (Belgium)'),
(10894, 'https://ror.org/016v0dh58', 'no_lang_code', 1, 'https://ror.org/016v0dh58 Teks (France)'),
(10895, 'https://ror.org/028xy2x79', 'no_lang_code', 1, 'https://ror.org/028xy2x79 Belden (United Kingdom)'),
(10896, 'https://ror.org/03frscd72', 'no_lang_code', 1, 'https://ror.org/03frscd72 Trama TecnoAmbiental (Spain)'),
(10897, 'https://ror.org/024kx0v68', 'no_lang_code', 1, 'https://ror.org/024kx0v68 Seat (Spain) Sociedad Española de Automóviles de Turismo'),
(10898, 'https://ror.org/02ecdct80', 'no_lang_code', 1, 'https://ror.org/02ecdct80 Transferzentrum Mikroelektronik (Germany)'),
(10899, 'https://ror.org/055rkqx35', 'no_lang_code', 1, 'https://ror.org/055rkqx35 Packed (Belgium)'),
(10900, 'https://ror.org/00kn9sz43', 'no_lang_code', 1, 'https://ror.org/00kn9sz43 TransFurans Chemicals (Belgium)'),
(10901, 'https://ror.org/032x1ws79', 'en', 1, 'https://ror.org/032x1ws79 Telecommunication Systems Research Institute'),
(10902, 'https://ror.org/0348jrz13', 'no_lang_code', 1, 'https://ror.org/0348jrz13 TDC (Denmark)'),
(10903, 'https://ror.org/05hcs6w28', 'no_lang_code', 1, 'https://ror.org/05hcs6w28 Transman Consulting for Transport System Management'),
(10904, 'https://ror.org/00pp54p18', 'no_lang_code', 1, 'https://ror.org/00pp54p18 Transport & Mobility Leuven (Belgium)'),
(10905, 'https://ror.org/02zqmy106', 'no_lang_code', 1, 'https://ror.org/02zqmy106 Transport & Travel Research (United Kingdom)'),
(10906, 'https://ror.org/01866as23', 'no_lang_code', 1, 'https://ror.org/01866as23 TDF (France)'),
(10907, 'https://ror.org/05bvn1m61', 'no_lang_code', 1, 'https://ror.org/05bvn1m61 Avaya (Germany)'),
(10908, 'https://ror.org/04cmhn872', 'no_lang_code', 1, 'https://ror.org/04cmhn872 Sociedade Portuguesa de Inovação'),
(10909, 'https://ror.org/05q43r729', 'no_lang_code', 1, 'https://ror.org/05q43r729 Swarco (Germany)'),
(10910, 'https://ror.org/00aj26w03', 'en', 1, 'https://ror.org/00aj26w03 Paint Research Association'),
(10911, 'https://ror.org/009v14c36', 'no_lang_code', 1, 'https://ror.org/009v14c36 Ferioli & Gianotti (Italy)'),
(10912, 'https://ror.org/05f6pr134', 'no_lang_code', 1, 'https://ror.org/05f6pr134 TeliaSonera (Finland)'),
(10913, 'https://ror.org/050ntep05', 'no_lang_code', 1, 'https://ror.org/050ntep05 Saet (Italy)'),
(10914, 'https://ror.org/000en4h24', 'no_lang_code', 1, 'https://ror.org/000en4h24 Panasonic (Germany)'),
(10915, 'https://ror.org/05eq90j91', 'no_lang_code', 1, 'https://ror.org/05eq90j91 Società Generale d''Informatica Sogei (Italy)'),
(10916, 'https://ror.org/03bbgsb46', 'it', 1, 'https://ror.org/03bbgsb46 Società Italiana di Fisica'),
(10917, 'https://ror.org/05hfcd350', 'no_lang_code', 1, 'https://ror.org/05hfcd350 Pall Corporation (Germany)'),
(10918, 'https://ror.org/02hkzpe56', 'no_lang_code', 1, 'https://ror.org/02hkzpe56 Telekom Austria'),
(10919, 'https://ror.org/04fqsa740', 'no_lang_code', 1, 'https://ror.org/04fqsa740 Warrant Hub (Italy)'),
(10920, 'https://ror.org/05bdzte56', 'no_lang_code', 1, 'https://ror.org/05bdzte56 Issy Media (France)'),
(10921, 'https://ror.org/023kvjk64', 'no_lang_code', 1, 'https://ror.org/023kvjk64 Wärtsilä (Switzerland)'),
(10922, 'https://ror.org/015fpqf51', 'no_lang_code', 1, 'https://ror.org/015fpqf51 Warrington Certification (United Kingdom)'),
(10923, 'https://ror.org/0100csr53', 'no_lang_code', 1, 'https://ror.org/0100csr53 Watchfrog (France)'),
(10924, 'https://ror.org/025rqhb96', 'no_lang_code', 1, 'https://ror.org/025rqhb96 Teleport Sachsen-Anhalt'),
(10925, 'https://ror.org/00rbe9q66', 'no_lang_code', 1, 'https://ror.org/00rbe9q66 TriaGnoSys (Germany)'),
(10926, 'https://ror.org/00w437z14', 'no_lang_code', 1, 'https://ror.org/00w437z14 Water Insight (Netherlands)'),
(10927, 'https://ror.org/027xpc035', 'no_lang_code', 1, 'https://ror.org/027xpc035 Trialog (France)'),
(10928, 'https://ror.org/04c4h8s17', 'fr', 1, 'https://ror.org/04c4h8s17 Société du Canal de Provence'),
(10929, 'https://ror.org/01hng0h35', 'no_lang_code', 1, 'https://ror.org/01hng0h35 Teletel (Greece)'),
(10930, 'https://ror.org/03zaca395', 'no_lang_code', 1, 'https://ror.org/03zaca395 Gorge Group (France)'),
(10931, 'https://ror.org/05tqy0n53', 'no_lang_code', 1, 'https://ror.org/05tqy0n53 TeliaSonera (Sweden)'),
(10932, 'https://ror.org/019tk8j65', 'no_lang_code', 1, 'https://ror.org/019tk8j65 Triphase (Belgium)'),
(10933, 'https://ror.org/00s9rks70', 'no_lang_code', 1, 'https://ror.org/00s9rks70 Telmat (France)'),
(10934, 'https://ror.org/02f8s1297', 'no_lang_code', 1, 'https://ror.org/02f8s1297 Triplan (Italy)'),
(10935, 'https://ror.org/01xby9e36', 'no_lang_code', 1, 'https://ror.org/01xby9e36 Webraska (France)'),
(10936, 'https://ror.org/03aa6g490', 'no_lang_code', 1, 'https://ror.org/03aa6g490 Wellness Telecom (Spain)'),
(10937, 'https://ror.org/04kz2nv03', 'fr', 1, 'https://ror.org/04kz2nv03 Société Française de Céramique'),
(10938, 'https://ror.org/02w2r5196', 'no_lang_code', 1, 'https://ror.org/02w2r5196 Triqua (Netherlands)'),
(10939, 'https://ror.org/01thz0w07', 'en', 1, 'https://ror.org/01thz0w07 Wessex Institute of Technology'),
(10940, 'https://ror.org/018d8dx68', 'no_lang_code', 1, 'https://ror.org/018d8dx68 Tritecc (Romania)'),
(10941, 'https://ror.org/00535yn06', 'no_lang_code', 1, 'https://ror.org/00535yn06 Telscom (Switzerland)'),
(10942, 'https://ror.org/02azra733', 'no_lang_code', 1, 'https://ror.org/02azra733 Triumph Adler (Germany)'),
(10943, 'https://ror.org/05cb44d17', 'no_lang_code', 1, 'https://ror.org/05cb44d17 Trivector (Sweden)'),
(10944, 'https://ror.org/01wan7431', 'no_lang_code', 1, 'https://ror.org/01wan7431 Schneider Electric (Spain)'),
(10945, 'https://ror.org/05kfq2558', 'no_lang_code', 1, 'https://ror.org/05kfq2558 Sonaca (Belgium)'),
(10946, 'https://ror.org/03m9gpr25', 'no_lang_code', 1, 'https://ror.org/03m9gpr25 Schlumberger (Norway)'),
(10947, 'https://ror.org/01je1cm35', 'en', 1, 'https://ror.org/01je1cm35 Sofia Energy Centre'),
(10948, 'https://ror.org/023phzf28', 'no_lang_code', 1, 'https://ror.org/023phzf28 Technology and Management Services (Switzerland)'),
(10949, 'https://ror.org/02zc9ks44', 'no_lang_code', 1, 'https://ror.org/02zc9ks44 Temis (France)'),
(10950, 'https://ror.org/00awqjx60', 'no_lang_code', 1, 'https://ror.org/00awqjx60 Softeam Cadextan'),
(10951, 'https://ror.org/02f1baf17', 'no_lang_code', 1, 'https://ror.org/02f1baf17 Softeco Sismat (Italy)'),
(10952, 'https://ror.org/04p7ekn23', 'de', 1, 'https://ror.org/04p7ekn23 Westfälische Hochschule'),
(10953, 'https://ror.org/004g36n56', 'no_lang_code', 1, 'https://ror.org/004g36n56 Software (Germany)'),
(10954, 'https://ror.org/02ethns06', 'no_lang_code', 1, 'https://ror.org/02ethns06 Software (Spain)'),
(10955, 'https://ror.org/027thnp44', 'en', 1, 'https://ror.org/027thnp44 Trust IT Services'),
(10956, 'https://ror.org/013nb7b55', 'no_lang_code', 1, 'https://ror.org/013nb7b55 Terna (Italy)'),
(10957, 'https://ror.org/00x2yxc55', 'no_lang_code', 1, 'https://ror.org/00x2yxc55 Artelia (France)'),
(10958, 'https://ror.org/04mybzy26', 'en', 1, 'https://ror.org/04mybzy26 Vienna Institute for International Economic Studies Wiener Institut für Internationale Wirtschaftsvergleiche'),
(10959, 'https://ror.org/01f9mc681', 'en', 1, 'https://ror.org/01f9mc681 Vienna Science and Technology Fund Wiener Wissenschafts Forschungs und Technologiefonds'),
(10960, 'https://ror.org/01r2j1v82', 'en', 1, 'https://ror.org/01r2j1v82 Ministry of State Ministère d''État'),
(10961, 'https://ror.org/004gvby26', 'no_lang_code', 1, 'https://ror.org/004gvby26 Solaronix (Switzerland)'),
(10962, 'https://ror.org/02j8awh30', 'no_lang_code', 1, 'https://ror.org/02j8awh30 TRW Automotive (Germany)'),
(10963, 'https://ror.org/02f88nb31', 'no_lang_code', 1, 'https://ror.org/02f88nb31 SolarPrint (Ireland)'),
(10964, 'https://ror.org/01txptp23', 'no_lang_code', 1, 'https://ror.org/01txptp23 Solartec (Czechia)'),
(10965, 'https://ror.org/03vaffn20', 'no_lang_code', 1, 'https://ror.org/03vaffn20 TTI (Spain)'),
(10966, 'https://ror.org/0057wrw58', 'no_lang_code', 1, 'https://ror.org/0057wrw58 Solintel (Spain)'),
(10967, 'https://ror.org/04jjzrj83', 'no_lang_code', 1, 'https://ror.org/04jjzrj83 TTTech Computertechnik (Austria)'),
(10968, 'https://ror.org/0109ptn93', 'no_lang_code', 1, 'https://ror.org/0109ptn93 TES Electronic Solutions (Germany)'),
(10969, 'https://ror.org/044ggvg47', 'no_lang_code', 1, 'https://ror.org/044ggvg47 Testaluna'),
(10970, 'https://ror.org/003s1y583', 'no_lang_code', 1, 'https://ror.org/003s1y583 Saphyrion (Switzerland)'),
(10971, 'https://ror.org/03xkhb205', 'no_lang_code', 1, 'https://ror.org/03xkhb205 Soltech (Belgium)'),
(10972, 'https://ror.org/022j8kh09', 'no_lang_code', 1, 'https://ror.org/022j8kh09 TetraPlan'),
(10973, 'https://ror.org/05w0e5x87', 'no_lang_code', 1, 'https://ror.org/05w0e5x87 Tecnologías para la Salud y el Bienestar (Spain)'),
(10974, 'https://ror.org/05accys62', 'no_lang_code', 1, 'https://ror.org/05accys62 Tetronics (United Kingdom)'),
(10975, 'https://ror.org/01xscrc43', 'no_lang_code', 1, 'https://ror.org/01xscrc43 Solvay (Germany)'),
(10976, 'https://ror.org/0311ams29', 'no_lang_code', 1, 'https://ror.org/0311ams29 Tun Abdul Razak Research Centre'),
(10977, 'https://ror.org/00xqcpg12', 'no_lang_code', 1, 'https://ror.org/00xqcpg12 Solvay (Italy)'),
(10978, 'https://ror.org/00e4qtq76', 'fr', 1, 'https://ror.org/00e4qtq76 Ministère de la Santé Publique et Action Sociale'),
(10979, 'https://ror.org/041s3mp49', 'no_lang_code', 1, 'https://ror.org/041s3mp49 Solvionic (France)'),
(10980, 'https://ror.org/02b8mhr56', 'it', 1, 'https://ror.org/02b8mhr56 Texclubtec'),
(10981, 'https://ror.org/0538q7376', 'no_lang_code', 1, 'https://ror.org/0538q7376 Sonatest (United Kingdom)'),
(10982, 'https://ror.org/04fxz7d50', 'no_lang_code', 1, 'https://ror.org/04fxz7d50 Sony (United Kingdom)'),
(10983, 'https://ror.org/03cr99w51', 'no_lang_code', 1, 'https://ror.org/03cr99w51 Sony (France)'),
(10984, 'https://ror.org/036r8j511', 'en', 1, 'https://ror.org/036r8j511 WirelessInfo'),
(10985, 'https://ror.org/01hcxsy48', 'no_lang_code', 1, 'https://ror.org/01hcxsy48 Sony (Germany)'),
(10986, 'https://ror.org/052x6na95', 'de', 1, 'https://ror.org/052x6na95 Wirtschaftsförderung Region Stuttgart'),
(10987, 'https://ror.org/018gt7b78', 'no_lang_code', 1, 'https://ror.org/018gt7b78 WLB Limited (Cyprus)'),
(10988, 'https://ror.org/02x2mw849', 'en', 1, 'https://ror.org/02x2mw849 Turing Institute'),
(10989, 'https://ror.org/03340ra78', 'no_lang_code', 1, 'https://ror.org/03340ra78 Thales (Spain)'),
(10990, 'https://ror.org/015wgq606', 'no_lang_code', 1, 'https://ror.org/015wgq606 Work Research Centre'),
(10991, 'https://ror.org/01ys7qn31', 'no_lang_code', 1, 'https://ror.org/01ys7qn31 LivaNova (Italy)'),
(10992, 'https://ror.org/04s0yt949', 'en', 1, 'https://ror.org/04s0yt949 Turku University of Applied Sciences Turun ammattikorkeakoulu Åbo yrkeshögskola'),
(10993, 'https://ror.org/025n4zp83', 'no_lang_code', 1, 'https://ror.org/025n4zp83 LivaNova (France)'),
(10994, 'https://ror.org/05ftj4678', 'en', 1, 'https://ror.org/05ftj4678 Southampton City Council'),
(10995, 'https://ror.org/03v73t130', 'no_lang_code', 1, 'https://ror.org/03v73t130 Space Applications Services (Belgium)'),
(10996, 'https://ror.org/00dw1nx81', 'en', 1, 'https://ror.org/00dw1nx81 British Plastics Federation'),
(10997, 'https://ror.org/01nx9mw61', 'no_lang_code', 1, 'https://ror.org/01nx9mw61 Space Hellas (Greece)'),
(10998, 'https://ror.org/02e0gbz94', 'no_lang_code', 1, 'https://ror.org/02e0gbz94 CCS Global Group'),
(10999, 'https://ror.org/002w0jp71', 'en', 1, 'https://ror.org/002w0jp71 Institut für Weltraumforschung Space Research Institute'),
(11000, 'https://ror.org/03wye8c03', 'en', 1, 'https://ror.org/03wye8c03 Space Research and Technology Institute Институт за космически изследвания към'),
(11001, 'https://ror.org/027956n88', 'no_lang_code', 1, 'https://ror.org/027956n88 Figo (Netherlands)'),
(11002, 'https://ror.org/0558jee48', 'en', 1, 'https://ror.org/0558jee48 World Health Organization - Italy'),
(11003, 'https://ror.org/01q8k8p90', 'en', 1, 'https://ror.org/01q8k8p90 Cyprus Institute'),
(11004, 'https://ror.org/03t7fbx42', 'no_lang_code', 1, 'https://ror.org/03t7fbx42 Wroclaw Research Centre EIT+ (Poland)'),
(11005, 'https://ror.org/01c79fd45', 'no_lang_code', 1, 'https://ror.org/01c79fd45 Space (Italy)'),
(11006, 'https://ror.org/012cahw96', 'no_lang_code', 1, 'https://ror.org/012cahw96 Space Systems Finland (Finland)'),
(11007, 'https://ror.org/004anj868', 'en', 1, 'https://ror.org/004anj868 Danish National Centre for Social Research Det Nationale Forskningscenter for Velfærd'),
(11008, 'https://ror.org/038mfmm37', 'en', 1, 'https://ror.org/038mfmm37 ACIES Consulting Group'),
(11009, 'https://ror.org/05f08j617', 'no_lang_code', 1, 'https://ror.org/05f08j617 TE Connectivity (Netherlands)'),
(11010, 'https://ror.org/04b239q68', 'en', 1, 'https://ror.org/04b239q68 European Association for the Promotion of Cogeneration'),
(11011, 'https://ror.org/04vb68v58', 'no_lang_code', 1, 'https://ror.org/04vb68v58 Spacebel (Belgium)'),
(11012, 'https://ror.org/05pbtbr30', 'no_lang_code', 1, 'https://ror.org/05pbtbr30 SpaceTec Partners'),
(11013, 'https://ror.org/01pww5j30', 'no_lang_code', 1, 'https://ror.org/01pww5j30 Tyrolit (Austria)'),
(11014, 'https://ror.org/01dn4kx94', 'no_lang_code', 1, 'https://ror.org/01dn4kx94 Sparqle International (Netherlands)'),
(11015, 'https://ror.org/019frbz80', 'no_lang_code', 1, 'https://ror.org/019frbz80 Specim (Finland)'),
(11016, 'https://ror.org/029k6n605', 'en', 1, 'https://ror.org/029k6n605 Centre for Social Innovation'),
(11017, 'https://ror.org/05kxyr105', 'no_lang_code', 1, 'https://ror.org/05kxyr105 Spinverse (Finland)'),
(11018, 'https://ror.org/005gk6w44', 'no_lang_code', 1, 'https://ror.org/005gk6w44 Biocentras (Lithuania)'),
(11019, 'https://ror.org/00hdz1808', 'no_lang_code', 1, 'https://ror.org/00hdz1808 Arelis (France)'),
(11020, 'https://ror.org/01nhjmy83', 'no_lang_code', 1, 'https://ror.org/01nhjmy83 Modern e Technologies (Lithuania)'),
(11021, 'https://ror.org/03cvz4414', 'no_lang_code', 1, 'https://ror.org/03cvz4414 Würth Elektronik (Germany)'),
(11022, 'https://ror.org/03j4eb467', 'en', 1, 'https://ror.org/03j4eb467 Ministerstvo průmyslu a obchodu České republiky Ministry of Industry and Trade'),
(11023, 'https://ror.org/01vbm2c42', 'no_lang_code', 1, 'https://ror.org/01vbm2c42 Software Research and Development Consulting'),
(11024, 'https://ror.org/003b78q25', 'en', 1, 'https://ror.org/003b78q25 Wye College'),
(11025, 'https://ror.org/04717vr35', 'no_lang_code', 1, 'https://ror.org/04717vr35 SSAB (Sweden)'),
(11026, 'https://ror.org/0498q3b31', 'no_lang_code', 1, 'https://ror.org/0498q3b31 SSP Consult Beratende Ingenieure (Germany)'),
(11027, 'https://ror.org/0491s4v58', 'no_lang_code', 1, 'https://ror.org/0491s4v58 Uljanik (Croatia)'),
(11028, 'https://ror.org/02nj1s179', 'no_lang_code', 1, 'https://ror.org/02nj1s179 Xenics (Belgium)'),
(11029, 'https://ror.org/01jt0gz40', 'no_lang_code', 1, 'https://ror.org/01jt0gz40 UmbraGroup (Italy)'),
(11030, 'https://ror.org/00139ex69', 'no_lang_code', 1, 'https://ror.org/00139ex69 Sensonor (Norway)'),
(11031, 'https://ror.org/01aysdw42', 'en', 1, 'https://ror.org/01aysdw42 St Mary''s Hospital'),
(11032, 'https://ror.org/033q0mv79', 'no_lang_code', 1, 'https://ror.org/033q0mv79 Xerox (France)'),
(11033, 'https://ror.org/01p8dnv11', 'no_lang_code', 1, 'https://ror.org/01p8dnv11 Israel Electric (Israel) חברת החשמל לישראל'),
(11034, 'https://ror.org/01fn48q65', 'en', 1, 'https://ror.org/01fn48q65 Independent Centre for Privacy Protection Unabhängige Landeszentrum für Datenschutz Schleswig-Holstein'),
(11035, 'https://ror.org/04fywsz69', 'no_lang_code', 1, 'https://ror.org/04fywsz69 Xpand Biotechnology (Netherlands)'),
(11036, 'https://ror.org/0190g0e24', 'no_lang_code', 1, 'https://ror.org/0190g0e24 Xsens (Netherlands)'),
(11037, 'https://ror.org/04zb1mb80', 'no_lang_code', 1, 'https://ror.org/04zb1mb80 YellowMap (Germany)'),
(11038, 'https://ror.org/04nhhrw79', 'no_lang_code', 1, 'https://ror.org/04nhhrw79 Youris.com (Belgium)'),
(11039, 'https://ror.org/026vqrv05', 'no_lang_code', 1, 'https://ror.org/026vqrv05 Stab Vida (Portugal)'),
(11040, 'https://ror.org/033qewk74', 'en', 1, 'https://ror.org/033qewk74 Collaborating Centre on Sustainable Consumption and Production'),
(11041, 'https://ror.org/05h5kva18', 'no_lang_code', 1, 'https://ror.org/05h5kva18 Saarbrücken Stadtwerke (Germany)'),
(11042, 'https://ror.org/01235k409', 'en', 1, 'https://ror.org/01235k409 Polish National Energy Conservation Agency'),
(11043, 'https://ror.org/016tr2j79', 'no_lang_code', 1, 'https://ror.org/016tr2j79 Uni Research (Norway)'),
(11044, 'https://ror.org/04870rh38', 'no_lang_code', 1, 'https://ror.org/04870rh38 Stadtwerke Straubing (Germany)'),
(11045, 'https://ror.org/03n2jn734', 'no_lang_code', 1, 'https://ror.org/03n2jn734 Shadow Robot (United Kingdom)'),
(11046, 'https://ror.org/00a65ez32', 'en', 1, 'https://ror.org/00a65ez32 State Hermitage Museum Госуда́рственный Эрмита́ж'),
(11047, 'https://ror.org/02sbnaz67', 'no_lang_code', 1, 'https://ror.org/02sbnaz67 Stamatopoulos and Associates (Greece)'),
(11048, 'https://ror.org/01rp7pv55', 'no_lang_code', 1, 'https://ror.org/01rp7pv55 Security Technology Competence Centre'),
(11049, 'https://ror.org/04h1x1p54', 'no_lang_code', 1, 'https://ror.org/04h1x1p54 Walt Disney (Switzerland)'),
(11050, 'https://ror.org/002wpy368', 'en', 1, 'https://ror.org/002wpy368 Young Foundation'),
(11051, 'https://ror.org/00xcb4r23', 'no_lang_code', 1, 'https://ror.org/00xcb4r23 Thermo Technologies (United Kingdom)'),
(11052, 'https://ror.org/04ejveh20', 'en', 1, 'https://ror.org/04ejveh20 Thessaloniki Port Authority'),
(11053, 'https://ror.org/051secs02', 'no_lang_code', 1, 'https://ror.org/051secs02 Thetis'),
(11054, 'https://ror.org/03mcwam86', 'en', 1, 'https://ror.org/03mcwam86 Ministry of Health Υπουργείο Υγείας'),
(11055, 'https://ror.org/01sm7ww29', 'no_lang_code', 1, 'https://ror.org/01sm7ww29 Zenon (Greece)'),
(11056, 'https://ror.org/033sa0762', 'en', 1, 'https://ror.org/033sa0762 State Laboratory'),
(11057, 'https://ror.org/030chcw72', 'de', 1, 'https://ror.org/030chcw72 Zentrum für Foren in der Grafischen Datenverarbeitung'),
(11058, 'https://ror.org/037r0mm82', 'no_lang_code', 1, 'https://ror.org/037r0mm82 Thomas Miller (United Kingdom)'),
(11059, 'https://ror.org/03etn8e63', 'no_lang_code', 1, 'https://ror.org/03etn8e63 Uninett (Norway)'),
(11060, 'https://ror.org/03kyhge69', 'no_lang_code', 1, 'https://ror.org/03kyhge69 Zeus Consulting (Greece)'),
(11061, 'https://ror.org/021wbbm64', 'no_lang_code', 1, 'https://ror.org/021wbbm64 ZF Friedrichshafen (Germany)'),
(11062, 'https://ror.org/03w65sq52', 'no_lang_code', 1, 'https://ror.org/03w65sq52 Gas Natural Fenosa (Spain)'),
(11063, 'https://ror.org/03qe3t289', 'en', 1, 'https://ror.org/03qe3t289 European Broadcasting Union Union européenne de radio-télévision'),
(11064, 'https://ror.org/01rx0vn38', 'en', 1, 'https://ror.org/01rx0vn38 Ministry of Transport Samferdselsdepartementet Samferdsledepartementet'),
(11065, 'https://ror.org/01n1rg855', 'en', 1, 'https://ror.org/01n1rg855 Statistics Finland Statistikcentralen Tilastokeskus'),
(11066, 'https://ror.org/01fqrb109', 'en', 1, 'https://ror.org/01fqrb109 Zhejiang Energy Research Institute 浙江省能源研究所'),
(11067, 'https://ror.org/0035nx336', 'en', 1, 'https://ror.org/0035nx336 Finansdepartementet Ministry of Finance'),
(11068, 'https://ror.org/01tw0g194', 'es', 1, 'https://ror.org/01tw0g194 General Union of Workers Unión General de Trabajadores'),
(11069, 'https://ror.org/036e7je91', 'en', 1, 'https://ror.org/036e7je91 International Association of Public Transport'),
(11070, 'https://ror.org/014kk5w35', 'no_lang_code', 1, 'https://ror.org/014kk5w35 ZOZ Group (Germany)'),
(11071, 'https://ror.org/048wm8z08', 'de', 1, 'https://ror.org/048wm8z08 Brandenburg Economic Development Board ZukunftsAgentur Brandenburg'),
(11072, 'https://ror.org/05232hy51', 'no_lang_code', 1, 'https://ror.org/05232hy51 Statnett (Norway)'),
(11073, 'https://ror.org/00ghc0f97', 'en', 1, 'https://ror.org/00ghc0f97 Thuringian Institute of Textile and Plastics Research Thüringisches Institut für Textil- und Kunststoff-Forschung Rudolstadt'),
(11074, 'https://ror.org/04x96x598', 'it', 1, 'https://ror.org/04x96x598 Experimental Station for Glass Stazione Sperimentale del Vetro'),
(11075, 'https://ror.org/058gaxh79', 'en', 1, 'https://ror.org/058gaxh79 Experimental Station for the Food Preserving Industry Stazione Sperimentale per l’Industria delle Conserve Alimentari'),
(11076, 'https://ror.org/055bwqk39', 'no_lang_code', 1, 'https://ror.org/055bwqk39 TIE Kinetix (Germany)'),
(11077, 'https://ror.org/03w1cd742', 'it', 1, 'https://ror.org/03w1cd742 Leather and Tanning Materials Experimental Station Stazione Sperimentale per l''Industria delle Pelli e delle Materie Concianti'),
(11078, 'https://ror.org/00cgdz126', 'it', 1, 'https://ror.org/00cgdz126 Italian Union of the Blind and Partially Sighted Unione Italiana dei Ciechi e degli Ipovedenti'),
(11079, 'https://ror.org/02s4h3z39', 'en', 1, 'https://ror.org/02s4h3z39 Ural Branch of the Russian Academy of Sciences Федеральное государственное бюджетное учреждение науки Институт высокотемпературной электрохимии Уральского отделения Российской академии наук'),
(11080, 'https://ror.org/054gf5823', 'it', 1, 'https://ror.org/054gf5823 Unione Nazionale Industria Conciaria'),
(11081, 'https://ror.org/03vg56f33', 'it', 1, 'https://ror.org/03vg56f33 Unioncamere Veneto'),
(11082, 'https://ror.org/05ry19w12', 'no_lang_code', 1, 'https://ror.org/05ry19w12 Cofely (Switzerland)'),
(11083, 'https://ror.org/01cwasn33', 'no_lang_code', 1, 'https://ror.org/01cwasn33 Vodafone (Greece)'),
(11084, 'https://ror.org/00qsm3z32', 'en', 1, 'https://ror.org/00qsm3z32 B.I. Stepanov Institute of Physics Інстытут фізікі імя Б.І. Сцяпанава'),
(11085, 'https://ror.org/0547fcp84', 'en', 1, 'https://ror.org/0547fcp84 Uniresearch'),
(11086, 'https://ror.org/009vreb09', 'no_lang_code', 1, 'https://ror.org/009vreb09 Uniscan Instruments (United Kingdom)'),
(11087, 'https://ror.org/02mhjkx12', 'no_lang_code', 1, 'https://ror.org/02mhjkx12 Sopra (France)'),
(11088, 'https://ror.org/01ccbsb07', 'en', 1, 'https://ror.org/01ccbsb07 United Institute of Informatics Problems'),
(11089, 'https://ror.org/01k0v6g02', 'no_lang_code', 1, 'https://ror.org/01k0v6g02 SURFsara (Netherlands) Stichting Academisch Rekencentrum Amsterdam'),
(11090, 'https://ror.org/0443rfv41', 'no_lang_code', 1, 'https://ror.org/0443rfv41 Vodera (United Kingdom)'),
(11091, 'https://ror.org/04mjy3g97', 'en', 1, 'https://ror.org/04mjy3g97 Amsterdam Economic Board'),
(11092, 'https://ror.org/035gava43', 'no_lang_code', 1, 'https://ror.org/035gava43 United Monolithic Semiconductors (Germany)'),
(11093, 'https://ror.org/034zb3z40', 'no_lang_code', 1, 'https://ror.org/034zb3z40 United Monolithic Semiconductor (France)'),
(11094, 'https://ror.org/00qxtrj15', 'no_lang_code', 1, 'https://ror.org/00qxtrj15 VSN International (United Kingdom)'),
(11095, 'https://ror.org/058ajkv68', 'en', 1, 'https://ror.org/058ajkv68 United Nations Industrial Development Organization'),
(11096, 'https://ror.org/04qav7246', 'no_lang_code', 1, 'https://ror.org/04qav7246 Vuje (Slovakia)'),
(11097, 'https://ror.org/01r23yy10', 'sk', 1, 'https://ror.org/01r23yy10 Soil Science and Conservation Research Institute Výskumný Ústav Pôdoznalectva a Ochrany Pôdy'),
(11098, 'https://ror.org/04sh23172', 'no_lang_code', 1, 'https://ror.org/04sh23172 Syndesis (Greece)'),
(11099, 'https://ror.org/00zep6618', 'en', 1, 'https://ror.org/00zep6618 United Nations Interregional Crime and Justice Research Institute'),
(11100, 'https://ror.org/03y0f7839', 'en', 1, 'https://ror.org/03y0f7839 European Federation of Food Science and Technology'),
(11101, 'https://ror.org/04vxc1c96', 'no_lang_code', 1, 'https://ror.org/04vxc1c96 United Technologies Research Center'),
(11102, 'https://ror.org/045791j63', 'en', 1, 'https://ror.org/045791j63 European Journalism Centre'),
(11103, 'https://ror.org/017vn3365', 'no_lang_code', 1, 'https://ror.org/017vn3365 Stichting Hout Research (Netherlands)'),
(11104, 'https://ror.org/04gcecg21', 'no_lang_code', 1, 'https://ror.org/04gcecg21 Norsk Hydro (Germany)'),
(11105, 'https://ror.org/053ssqa83', 'en', 1, 'https://ror.org/053ssqa83 Austrian Cooperative Research Vereinigung der Kooperativen Forschungseinrichtungen der österreichischen Wirtschaft'),
(11106, 'https://ror.org/00sb06w67', 'no_lang_code', 1, 'https://ror.org/00sb06w67 HiTec Marketing'),
(11107, 'https://ror.org/049e6hd13', 'no_lang_code', 1, 'https://ror.org/049e6hd13 Alten (France)'),
(11108, 'https://ror.org/059wkzj26', 'nl', 1, 'https://ror.org/059wkzj26 Maastro Clinic'),
(11109, 'https://ror.org/0281y1011', 'en', 1, 'https://ror.org/0281y1011 Latvian State Institute of Wood Chemistry'),
(11110, 'https://ror.org/04jvbc359', 'no_lang_code', 1, 'https://ror.org/04jvbc359 Società Esercizi Aeroportuali (Italy)'),
(11111, 'https://ror.org/02gq61384', 'no_lang_code', 1, 'https://ror.org/02gq61384 Vergnet (France)'),
(11112, 'https://ror.org/01pge6c20', 'no_lang_code', 1, 'https://ror.org/01pge6c20 Vermicon (Germany)'),
(11113, 'https://ror.org/0159ban23', 'no_lang_code', 1, 'https://ror.org/0159ban23 Vermon (France)'),
(11114, 'https://ror.org/03c95vw04', 'no_lang_code', 1, 'https://ror.org/03c95vw04 Vertech Group'),
(11115, 'https://ror.org/03v9xsr27', 'no_lang_code', 1, 'https://ror.org/03v9xsr27 Vertilas (Germany)'),
(11116, 'https://ror.org/04hxjnb06', 'en', 1, 'https://ror.org/04hxjnb06 VGB PowerTech'),
(11117, 'https://ror.org/05xtgzc62', 'no_lang_code', 1, 'https://ror.org/05xtgzc62 Va-Q-tec (Germany)'),
(11118, 'https://ror.org/03vpcz360', 'no_lang_code', 1, 'https://ror.org/03vpcz360 Vichem Chemie (Hungary)'),
(11119, 'https://ror.org/0108txz43', 'no_lang_code', 1, 'https://ror.org/0108txz43 Vaillant (Germany)'),
(11120, 'https://ror.org/01ms40349', 'no_lang_code', 1, 'https://ror.org/01ms40349 Knowledge Centre for Agriculture'),
(11121, 'https://ror.org/04ryqpf83', 'no_lang_code', 1, 'https://ror.org/04ryqpf83 Valeo (France)'),
(11122, 'https://ror.org/0120jh079', 'no_lang_code', 1, 'https://ror.org/0120jh079 Honeywell (United Kingdom)'),
(11123, 'https://ror.org/05ym2c938', 'no_lang_code', 1, 'https://ror.org/05ym2c938 VirTech (Bulgaria)'),
(11124, 'https://ror.org/00rgz6j19', 'no_lang_code', 1, 'https://ror.org/00rgz6j19 Upper Austrian Research'),
(11125, 'https://ror.org/036nx0615', 'no_lang_code', 1, 'https://ror.org/036nx0615 USE2ACES (Netherlands)'),
(11126, 'https://ror.org/04fjkje50', 'no_lang_code', 1, 'https://ror.org/04fjkje50 User Interface Design (Germany)'),
(11127, 'https://ror.org/00v7esy82', 'no_lang_code', 1, 'https://ror.org/00v7esy82 Visual Components (Finland)'),
(11128, 'https://ror.org/01ezk0q28', 'no_lang_code', 1, 'https://ror.org/01ezk0q28 Vitrociset (Italy)'),
(11129, 'https://ror.org/04qwf0633', 'no_lang_code', 1, 'https://ror.org/04qwf0633 Spectrum Brands (Germany)'),
(11130, 'https://ror.org/05jhng925', 'en', 1, 'https://ror.org/05jhng925 Water Resources Research Centre'),
(11131, 'https://ror.org/02crk0343', 'no_lang_code', 1, 'https://ror.org/02crk0343 Visual Tools (Spain)'),
(11132, 'https://ror.org/025aa9m53', 'no_lang_code', 1, 'https://ror.org/025aa9m53 Volkswagen Group (Czechia)'),
(11133, 'https://ror.org/0170ntk37', 'no_lang_code', 1, 'https://ror.org/0170ntk37 Vienna Consulting Engineers (Austria)'),
(11134, 'https://ror.org/0218v2420', 'en', 1, 'https://ror.org/0218v2420 Association of German Engineers Verein Deutscher Ingenieure'),
(11135, 'https://ror.org/048q66y67', 'no_lang_code', 1, 'https://ror.org/048q66y67 BP (Germany)'),
(11136, 'https://ror.org/03zxbhz42', 'no_lang_code', 1, 'https://ror.org/03zxbhz42 Velti (Greece)'),
(11137, 'https://ror.org/00fzzvj42', 'no_lang_code', 1, 'https://ror.org/00fzzvj42 Veneto Nanotech (Italy)'),
(11138, 'https://ror.org/022cw9c39', 'no_lang_code', 1, 'https://ror.org/022cw9c39 Venezia Tecnologie (Italy)'),
(11139, 'https://ror.org/03mwypp50', 'no_lang_code', 1, 'https://ror.org/03mwypp50 Veolia (France)');
INSERT INTO `rors` VALUES
(11140, 'https://ror.org/01ww0ej05', 'no_lang_code', 1, 'https://ror.org/01ww0ej05 AFRY (Austria)'),
(11141, 'https://ror.org/038t94116', 'de', 1, 'https://ror.org/038t94116 Deutsches Forschungsnetz German Research Network Verein zur Förderung eines Deutschen Forschungsnetzes'),
(11142, 'https://ror.org/031ag2z89', 'en', 1, 'https://ror.org/031ag2z89 Florida Certified Organic Growers'),
(11143, 'https://ror.org/02napvw46', 'en', 1, 'https://ror.org/02napvw46 Florida Institute for Human and Machine Cognition'),
(11144, 'https://ror.org/01nn5wh27', 'no_lang_code', 1, 'https://ror.org/01nn5wh27 Just Food (United States)'),
(11145, 'https://ror.org/021598a46', 'no_lang_code', 1, 'https://ror.org/021598a46 3C Cattle Feeders (United States)'),
(11146, 'https://ror.org/01d0ay026', 'en', 1, 'https://ror.org/01d0ay026 Florida West Coast Resource Conservation and Development'),
(11147, 'https://ror.org/04y8d8z54', 'en', 1, 'https://ror.org/04y8d8z54 Central Wisconsin Community Action Council'),
(11148, 'https://ror.org/01ykwyj07', 'no_lang_code', 1, 'https://ror.org/01ykwyj07 4Cs Breeding Technologies (United States)'),
(11149, 'https://ror.org/01xm2ex71', 'no_lang_code', 1, 'https://ror.org/01xm2ex71 Ocean Era (United States)'),
(11150, 'https://ror.org/05h3xnp91', 'en', 1, 'https://ror.org/05h3xnp91 Fondy Food Center'),
(11151, 'https://ror.org/034z8a432', 'en', 1, 'https://ror.org/034z8a432 Kansas Bioscience Authority'),
(11152, 'https://ror.org/01adgby89', 'no_lang_code', 1, 'https://ror.org/01adgby89 Orgelbau Mühleisen (Germany)'),
(11153, 'https://ror.org/009z2hr67', 'en', 1, 'https://ror.org/009z2hr67 SLO Food Bank'),
(11154, 'https://ror.org/04cwtnm77', 'no_lang_code', 1, 'https://ror.org/04cwtnm77 Kansas Environmental Management Associates (United States)'),
(11155, 'https://ror.org/059xna953', 'no_lang_code', 1, 'https://ror.org/059xna953 Acclima (United States)'),
(11156, 'https://ror.org/03kz3ea73', 'en', 1, 'https://ror.org/03kz3ea73 Food Bank of Delaware'),
(11157, 'https://ror.org/02mz3ef34', 'en', 1, 'https://ror.org/02mz3ef34 Food Bank of North Alabama'),
(11158, 'https://ror.org/0060eqh22', 'en', 1, 'https://ror.org/0060eqh22 Adelante Mujeres'),
(11159, 'https://ror.org/04hpxzg72', 'en', 1, 'https://ror.org/04hpxzg72 Kennebec Valley Community College'),
(11160, 'https://ror.org/03vd1gx02', 'en', 1, 'https://ror.org/03vd1gx02 Rhode Island Department of Administration'),
(11161, 'https://ror.org/0329db993', 'en', 1, 'https://ror.org/0329db993 Challenger Center for Space Science Education'),
(11162, 'https://ror.org/01s8feq26', 'no_lang_code', 1, 'https://ror.org/01s8feq26 KickinNutrition.TV (United States)'),
(11163, 'https://ror.org/01c3nm063', 'no_lang_code', 1, 'https://ror.org/01c3nm063 Kiksapa Consulting (United States)'),
(11164, 'https://ror.org/05we1n045', 'no_lang_code', 1, 'https://ror.org/05we1n045 Adnet Systems (United States)'),
(11165, 'https://ror.org/00gkzpk47', 'no_lang_code', 1, 'https://ror.org/00gkzpk47 Advanced Biological Marketing (United States)'),
(11166, 'https://ror.org/00zc8x182', 'en', 1, 'https://ror.org/00zc8x182 Food System Economic Partnership'),
(11167, 'https://ror.org/04sy3ks71', 'en', 1, 'https://ror.org/04sy3ks71 KISS Institute for Practical Robotics'),
(11168, 'https://ror.org/02gb22q25', 'en', 1, 'https://ror.org/02gb22q25 The Food Trust'),
(11169, 'https://ror.org/00cpkx252', 'en', 1, 'https://ror.org/00cpkx252 Charles County Public Schools'),
(11170, 'https://ror.org/04vmfsf12', 'no_lang_code', 1, 'https://ror.org/04vmfsf12 AML Superconductivity and Magnetics (United States)'),
(11171, 'https://ror.org/00vrcw253', 'no_lang_code', 1, 'https://ror.org/00vrcw253 Kōkua Kalihi Valley'),
(11172, 'https://ror.org/02zmbcj69', 'no_lang_code', 1, 'https://ror.org/02zmbcj69 Forest Concepts (United States)'),
(11173, 'https://ror.org/05xaqjm64', 'en', 1, 'https://ror.org/05xaqjm64 Pennsylvania Department of Education'),
(11174, 'https://ror.org/01bd8yz25', 'en', 1, 'https://ror.org/01bd8yz25 Afterschool Alliance'),
(11175, 'https://ror.org/00vn2bg94', 'en', 1, 'https://ror.org/00vn2bg94 Agricultural Information Management'),
(11176, 'https://ror.org/032dzsg05', 'en', 1, 'https://ror.org/032dzsg05 Chicago Board of Education'),
(11177, 'https://ror.org/00sxa9670', 'no_lang_code', 1, 'https://ror.org/00sxa9670 Agdia (United States)'),
(11178, 'https://ror.org/02pas9b60', 'en', 1, 'https://ror.org/02pas9b60 Krell Institute'),
(11179, 'https://ror.org/03bjq7p15', 'en', 1, 'https://ror.org/03bjq7p15 Foundation for Community Empowerment'),
(11180, 'https://ror.org/03z2djz07', 'no_lang_code', 1, 'https://ror.org/03z2djz07 Sciessent (United States)'),
(11181, 'https://ror.org/058mp2412', 'no_lang_code', 1, 'https://ror.org/058mp2412 KromaTiD (United States)'),
(11182, 'https://ror.org/045yh2r89', 'no_lang_code', 1, 'https://ror.org/045yh2r89 Agri Processing Services (United States)'),
(11183, 'https://ror.org/05vee8b45', 'no_lang_code', 1, 'https://ror.org/05vee8b45 Kuehnle AgroSystems (United States)'),
(11184, 'https://ror.org/03kaq5z89', 'en', 1, 'https://ror.org/03kaq5z89 Four Directions Development Corporation'),
(11185, 'https://ror.org/04d75x649', 'en', 1, 'https://ror.org/04d75x649 The Children''s Museum'),
(11186, 'https://ror.org/01xn7cv95', 'no_lang_code', 1, 'https://ror.org/01xn7cv95 Logistics Management Institute (United States)'),
(11187, 'https://ror.org/00eptcw48', 'en', 1, 'https://ror.org/00eptcw48 Agri Analysis'),
(11188, 'https://ror.org/012z9nd72', 'en', 1, 'https://ror.org/012z9nd72 Franklin County Community Development Corporation'),
(11189, 'https://ror.org/051qd7x39', 'en', 1, 'https://ror.org/051qd7x39 Children''s Museum of Indianapolis'),
(11190, 'https://ror.org/007sjp271', 'en', 1, 'https://ror.org/007sjp271 Los Angeles Neighborhood Land Trust'),
(11191, 'https://ror.org/00gpdgm12', 'en', 1, 'https://ror.org/00gpdgm12 La Semilla Food Center'),
(11192, 'https://ror.org/04ycrgr69', 'en', 1, 'https://ror.org/04ycrgr69 Lac Courte Oreilles Ojibwa Community College'),
(11193, 'https://ror.org/00pw35t73', 'en', 1, 'https://ror.org/00pw35t73 Agriculture and Land Based Training Association'),
(11194, 'https://ror.org/00kdpsr48', 'en', 1, 'https://ror.org/00kdpsr48 Rend Lake College'),
(11195, 'https://ror.org/03h00an48', 'en', 1, 'https://ror.org/03h00an48 Fredericksburg Independent School District'),
(11196, 'https://ror.org/05dxexe52', 'en', 1, 'https://ror.org/05dxexe52 Tennessee Department of Agriculture'),
(11197, 'https://ror.org/04fjarb68', 'no_lang_code', 1, 'https://ror.org/04fjarb68 Agrivida (United States)'),
(11198, 'https://ror.org/01x6ha460', 'en', 1, 'https://ror.org/01x6ha460 Land For Good'),
(11199, 'https://ror.org/01mk2vf40', 'no_lang_code', 1, 'https://ror.org/01mk2vf40 AgSquared (United States)'),
(11200, 'https://ror.org/03sf9zf71', 'no_lang_code', 1, 'https://ror.org/03sf9zf71 Freedom Photonics (United States)'),
(11201, 'https://ror.org/03tg4fk16', 'en', 1, 'https://ror.org/03tg4fk16 Fresno Metro Ministry'),
(11202, 'https://ror.org/04vbcf629', 'en', 1, 'https://ror.org/04vbcf629 Friends of North Carolina Public Libraries'),
(11203, 'https://ror.org/034rtgp85', 'no_lang_code', 1, 'https://ror.org/034rtgp85 Airstreams Renewables (United States)'),
(11204, 'https://ror.org/02yhka621', 'en', 1, 'https://ror.org/02yhka621 Chugach School District'),
(11205, 'https://ror.org/0465ecz69', 'no_lang_code', 1, 'https://ror.org/0465ecz69 Kyocera (Germany)'),
(11206, 'https://ror.org/05f0p1d39', 'en', 1, 'https://ror.org/05f0p1d39 Griffith Observatory'),
(11207, 'https://ror.org/04khvrj77', 'en', 1, 'https://ror.org/04khvrj77 Land Stewardship Project'),
(11208, 'https://ror.org/045j3qt75', 'no_lang_code', 1, 'https://ror.org/045j3qt75 Chugachmiut (United States)'),
(11209, 'https://ror.org/04gmtb593', 'no_lang_code', 1, 'https://ror.org/04gmtb593 United Technologies Corporation (Poland)'),
(11210, 'https://ror.org/02gqvwf68', 'no_lang_code', 1, 'https://ror.org/02gqvwf68 Cibus (United States)'),
(11211, 'https://ror.org/02kyqnp42', 'en', 1, 'https://ror.org/02kyqnp42 Cincinnati Observatory'),
(11212, 'https://ror.org/0346g6k53', 'en', 1, 'https://ror.org/0346g6k53 National Future Farmers of America Organization'),
(11213, 'https://ror.org/04f1frv38', 'en', 1, 'https://ror.org/04f1frv38 Alameda County Office of Education'),
(11214, 'https://ror.org/05p630g07', 'en', 1, 'https://ror.org/05p630g07 Colegio Comunitario de Laredo Laredo Community College'),
(11215, 'https://ror.org/02cx1m445', 'en', 1, 'https://ror.org/02cx1m445 Institute of Flight'),
(11216, 'https://ror.org/03n1ga993', 'en', 1, 'https://ror.org/03n1ga993 Challenger Learning Center of Alaska'),
(11217, 'https://ror.org/00zk4a122', 'en', 1, 'https://ror.org/00zk4a122 Larta Institute'),
(11218, 'https://ror.org/0336mg751', 'no_lang_code', 1, 'https://ror.org/0336mg751 FutureSoft (United States)'),
(11219, 'https://ror.org/037caqy18', 'no_lang_code', 1, 'https://ror.org/037caqy18 Algaen (United States)'),
(11220, 'https://ror.org/02e0hwv58', 'en', 1, 'https://ror.org/02e0hwv58 Las Animas Helping Hands'),
(11221, 'https://ror.org/03jtwqj24', 'no_lang_code', 1, 'https://ror.org/03jtwqj24 Teulades i Façanes Multifuncionals (Spain)'),
(11222, 'https://ror.org/053sdsy29', 'en', 1, 'https://ror.org/053sdsy29 Allan Hancock College'),
(11223, 'https://ror.org/037nmab92', 'en', 1, 'https://ror.org/037nmab92 City Harvest'),
(11224, 'https://ror.org/0593t7r22', 'en', 1, 'https://ror.org/0593t7r22 Latino Economic Development Center'),
(11225, 'https://ror.org/03e6npv25', 'en', 1, 'https://ror.org/03e6npv25 Alliance for Community Trees'),
(11226, 'https://ror.org/031hb4a81', 'en', 1, 'https://ror.org/031hb4a81 City School District of New Rochelle'),
(11227, 'https://ror.org/014xsa662', 'no_lang_code', 1, 'https://ror.org/014xsa662 All Things Bugs (United States)'),
(11228, 'https://ror.org/01gjav456', 'no_lang_code', 1, 'https://ror.org/01gjav456 Alluvium Biosciences (United States)'),
(11229, 'https://ror.org/03tyqfz83', 'no_lang_code', 1, 'https://ror.org/03tyqfz83 GDA (United States)'),
(11230, 'https://ror.org/02mxt1985', 'no_lang_code', 1, 'https://ror.org/02mxt1985 Greenwood Clean Energy (United States)'),
(11231, 'https://ror.org/049wg7r76', 'no_lang_code', 1, 'https://ror.org/049wg7r76 Alpha Scents (United States)'),
(11232, 'https://ror.org/00jf50v81', 'no_lang_code', 1, 'https://ror.org/00jf50v81 Altaeros (United States)'),
(11233, 'https://ror.org/055hgd414', 'en', 1, 'https://ror.org/055hgd414 American Association for Aerosol Research'),
(11234, 'https://ror.org/01p8nr933', 'no_lang_code', 1, 'https://ror.org/01p8nr933 Clean Plus (United States)'),
(11235, 'https://ror.org/01hahmf81', 'en', 1, 'https://ror.org/01hahmf81 Clear Creek Independent School District'),
(11236, 'https://ror.org/04vtrfw90', 'en', 1, 'https://ror.org/04vtrfw90 Cleveland County Schools'),
(11237, 'https://ror.org/039fb2p82', 'en', 1, 'https://ror.org/039fb2p82 Leech Lake Tribal College'),
(11238, 'https://ror.org/02ddzr818', 'en', 1, 'https://ror.org/02ddzr818 American College of Sports Medicine'),
(11239, 'https://ror.org/0442hf232', 'en', 1, 'https://ror.org/0442hf232 Zenger Farm'),
(11240, 'https://ror.org/004j5ke68', 'en', 1, 'https://ror.org/004j5ke68 CNL World'),
(11241, 'https://ror.org/04hxqsv25', 'en', 1, 'https://ror.org/04hxqsv25 American Forage and Grassland Council'),
(11242, 'https://ror.org/0522qq959', 'en', 1, 'https://ror.org/0522qq959 Legal Aid of Nebraska'),
(11243, 'https://ror.org/02pzmkw23', 'en', 1, 'https://ror.org/02pzmkw23 American Friends Service Committee'),
(11244, 'https://ror.org/01gjxc467', 'no_lang_code', 1, 'https://ror.org/01gjxc467 Cognisense Labs (United States)'),
(11245, 'https://ror.org/04yqx6497', 'en', 1, 'https://ror.org/04yqx6497 American Historical Association'),
(11246, 'https://ror.org/02595h974', 'en', 1, 'https://ror.org/02595h974 Lincoln Parish School Board'),
(11247, 'https://ror.org/030kvkp19', 'no_lang_code', 1, 'https://ror.org/030kvkp19 Coherent Logix (United States)'),
(11248, 'https://ror.org/02124b921', 'en', 1, 'https://ror.org/02124b921 American Phytopathological Society'),
(11249, 'https://ror.org/01vrvwk03', 'en', 1, 'https://ror.org/01vrvwk03 Colby Community College'),
(11250, 'https://ror.org/05hpvgy54', 'no_lang_code', 1, 'https://ror.org/05hpvgy54 Lindgren Pitman (United States)'),
(11251, 'https://ror.org/00t5fgd66', 'en', 1, 'https://ror.org/00t5fgd66 Gardens at Post Hill'),
(11252, 'https://ror.org/04eyhzq56', 'en', 1, 'https://ror.org/04eyhzq56 American Society for Gravitational and Space Research'),
(11253, 'https://ror.org/030q5p958', 'no_lang_code', 1, 'https://ror.org/030q5p958 Solar Stream (United States)'),
(11254, 'https://ror.org/03y3ebd61', 'en', 1, 'https://ror.org/03y3ebd61 American Society for Reproductive Immunology'),
(11255, 'https://ror.org/03da0cj89', 'en', 1, 'https://ror.org/03da0cj89 American Society of Animal Science'),
(11256, 'https://ror.org/00c4fej53', 'en', 1, 'https://ror.org/00c4fej53 West Virginia Department of Agriculture'),
(11257, 'https://ror.org/030xyq337', 'en', 1, 'https://ror.org/030xyq337 Local Agricultural Community Exchange'),
(11258, 'https://ror.org/03bcj4564', 'no_lang_code', 1, 'https://ror.org/03bcj4564 College of Micronesia-FSM'),
(11259, 'https://ror.org/02n6yz853', 'no_lang_code', 1, 'https://ror.org/02n6yz853 Anacapa Sciences (United States)'),
(11260, 'https://ror.org/02zbmht46', 'no_lang_code', 1, 'https://ror.org/02zbmht46 Analytical Imaging and Geophysics (United States)'),
(11261, 'https://ror.org/0465m7058', 'en', 1, 'https://ror.org/0465m7058 GardenShare'),
(11262, 'https://ror.org/0259s7f07', 'en', 1, 'https://ror.org/0259s7f07 Angelic Organics Learning Center'),
(11263, 'https://ror.org/05ddnsp63', 'no_lang_code', 1, 'https://ror.org/05ddnsp63 Long Branch Company (United States)'),
(11264, 'https://ror.org/04dwx7104', 'en', 1, 'https://ror.org/04dwx7104 College of the Desert'),
(11265, 'https://ror.org/01w5cmk23', 'en', 1, 'https://ror.org/01w5cmk23 Lorain County Joint Vocational School'),
(11266, 'https://ror.org/035zj6b18', 'en', 1, 'https://ror.org/035zj6b18 Anne Arundel Community College'),
(11267, 'https://ror.org/033wfmx47', 'en', 1, 'https://ror.org/033wfmx47 Anne Arundel County Public Schools'),
(11268, 'https://ror.org/01a3t6k91', 'en', 1, 'https://ror.org/01a3t6k91 Colorado Cattlemen''s Association'),
(11269, 'https://ror.org/0562q1768', 'no_lang_code', 1, 'https://ror.org/0562q1768 NorthStar Cooperative (United States)'),
(11270, 'https://ror.org/04aewc151', 'en', 1, 'https://ror.org/04aewc151 Louisiana Art & Science Museum'),
(11271, 'https://ror.org/022sh6v50', 'en', 1, 'https://ror.org/022sh6v50 Colorado Consortium for Earth and Space Science Education'),
(11272, 'https://ror.org/05p0m5765', 'en', 1, 'https://ror.org/05p0m5765 Georgia Organics'),
(11273, 'https://ror.org/04znbx206', 'en', 1, 'https://ror.org/04znbx206 Appalachian Native Plants'),
(11274, 'https://ror.org/012r0vb97', 'en', 1, 'https://ror.org/012r0vb97 The Lower Eastside Girls Club'),
(11275, 'https://ror.org/05a3y1m41', 'en', 1, 'https://ror.org/05a3y1m41 Appalachian Sustainable Agriculture Project'),
(11276, 'https://ror.org/0297j9z42', 'no_lang_code', 1, 'https://ror.org/0297j9z42 GeoVantage (United States)'),
(11277, 'https://ror.org/05e7jge28', 'no_lang_code', 1, 'https://ror.org/05e7jge28 Gevo (United States)'),
(11278, 'https://ror.org/04t71a559', 'en', 1, 'https://ror.org/04t71a559 Colorado Foundation for Agriculture'),
(11279, 'https://ror.org/042wjgv72', 'en', 1, 'https://ror.org/042wjgv72 Girl Scouts of the USA'),
(11280, 'https://ror.org/0392jcp02', 'no_lang_code', 1, 'https://ror.org/0392jcp02 Applechem (United States)'),
(11281, 'https://ror.org/029ts0z22', 'en', 1, 'https://ror.org/029ts0z22 Girlstart'),
(11282, 'https://ror.org/03qv28y75', 'no_lang_code', 1, 'https://ror.org/03qv28y75 Applied Biotechnology Institute'),
(11283, 'https://ror.org/05na31d57', 'no_lang_code', 1, 'https://ror.org/05na31d57 Applied Colloids (United States)'),
(11284, 'https://ror.org/042abrf84', 'en', 1, 'https://ror.org/042abrf84 Columbus City Schools'),
(11285, 'https://ror.org/04qhpt968', 'no_lang_code', 1, 'https://ror.org/04qhpt968 Applied Food Technologies (United States)'),
(11286, 'https://ror.org/044947a59', 'no_lang_code', 1, 'https://ror.org/044947a59 Lygos (United States)'),
(11287, 'https://ror.org/00927nm35', 'no_lang_code', 1, 'https://ror.org/00927nm35 Applied Nanotech (United States)'),
(11288, 'https://ror.org/02gnmy268', 'no_lang_code', 1, 'https://ror.org/02gnmy268 Applied GeoSolutions (United States)'),
(11289, 'https://ror.org/00z9nr722', 'en', 1, 'https://ror.org/00z9nr722 Common Good City Farm'),
(11290, 'https://ror.org/03j5rfg21', 'en', 1, 'https://ror.org/03j5rfg21 The Common Market'),
(11291, 'https://ror.org/03snn3m57', 'en', 1, 'https://ror.org/03snn3m57 Rowan College at Gloucester County'),
(11292, 'https://ror.org/03558b563', 'no_lang_code', 1, 'https://ror.org/03558b563 MSNW (United States)'),
(11293, 'https://ror.org/05qxj8k61', 'en', 1, 'https://ror.org/05qxj8k61 Glynwood'),
(11294, 'https://ror.org/048q5dx45', 'en', 1, 'https://ror.org/048q5dx45 Communicating for Agriculture Education Programs'),
(11295, 'https://ror.org/05ahayt71', 'en', 1, 'https://ror.org/05ahayt71 Good Shepherd Food Bank'),
(11296, 'https://ror.org/05q9j8881', 'no_lang_code', 1, 'https://ror.org/05q9j8881 Aquaculture Systems Technologies (United States)'),
(11297, 'https://ror.org/02bgz0507', 'en', 1, 'https://ror.org/02bgz0507 Gorge Grown Food Network'),
(11298, 'https://ror.org/02jx22q88', 'en', 1, 'https://ror.org/02jx22q88 Community Action Duluth'),
(11299, 'https://ror.org/01p2hdb49', 'en', 1, 'https://ror.org/01p2hdb49 Aquarium of the Pacific'),
(11300, 'https://ror.org/01t3w2017', 'no_lang_code', 1, 'https://ror.org/01t3w2017 GrassRoots Biotechnology (United States)'),
(11301, 'https://ror.org/04qh6x362', 'en', 1, 'https://ror.org/04qh6x362 Community Assistance Network'),
(11302, 'https://ror.org/02hkkqt25', 'en', 1, 'https://ror.org/02hkkqt25 Maine Farmland Trust'),
(11303, 'https://ror.org/00m1xxq98', 'en', 1, 'https://ror.org/00m1xxq98 Grassroots Gardens WNY'),
(11304, 'https://ror.org/05c1evx63', 'no_lang_code', 1, 'https://ror.org/05c1evx63 Arcadia Biosciences (United States)'),
(11305, 'https://ror.org/022182y05', 'en', 1, 'https://ror.org/022182y05 Maine Organic Farmers and Gardeners Association'),
(11306, 'https://ror.org/04jtyp632', 'en', 1, 'https://ror.org/04jtyp632 Great Lakes Science Center'),
(11307, 'https://ror.org/02ygbgq54', 'no_lang_code', 1, 'https://ror.org/02ygbgq54 Area I (United States)'),
(11308, 'https://ror.org/01c4g1b02', 'en', 1, 'https://ror.org/01c4g1b02 Great Northern Services'),
(11309, 'https://ror.org/04cpvzv65', 'en', 1, 'https://ror.org/04cpvzv65 Community Farm Alliance'),
(11310, 'https://ror.org/01v8y3819', 'no_lang_code', 1, 'https://ror.org/01v8y3819 Aries Scientific (United States)'),
(11311, 'https://ror.org/00659dh25', 'en', 1, 'https://ror.org/00659dh25 Arizona Sonora Desert Museum'),
(11312, 'https://ror.org/02gj68a91', 'en', 1, 'https://ror.org/02gj68a91 Greater Lansing Food Bank'),
(11313, 'https://ror.org/010sykp39', 'en', 1, 'https://ror.org/010sykp39 Community Food Bank'),
(11314, 'https://ror.org/034sa4263', 'en', 1, 'https://ror.org/034sa4263 Arkansas Land and Farm Development Corporation'),
(11315, 'https://ror.org/04wjvj017', 'en', 1, 'https://ror.org/04wjvj017 Community Food Security Coalition'),
(11316, 'https://ror.org/01n71ry70', 'en', 1, 'https://ror.org/01n71ry70 CenterState Chamber of Commerce'),
(11317, 'https://ror.org/032edw019', 'en', 1, 'https://ror.org/032edw019 Community GroundWorks'),
(11318, 'https://ror.org/01gxqm489', 'en', 1, 'https://ror.org/01gxqm489 Community Involved in Sustaining Agriculture'),
(11319, 'https://ror.org/05kmb8d23', 'en', 1, 'https://ror.org/05kmb8d23 Community Partners'),
(11320, 'https://ror.org/02nt0h862', 'en', 1, 'https://ror.org/02nt0h862 Art Science Research Laboratory'),
(11321, 'https://ror.org/05x2b4167', 'no_lang_code', 1, 'https://ror.org/05x2b4167 Artemis Innovation (United States)'),
(11322, 'https://ror.org/00kt2k176', 'no_lang_code', 1, 'https://ror.org/00kt2k176 My25'),
(11323, 'https://ror.org/02ppjec98', 'en', 1, 'https://ror.org/02ppjec98 Community Services Unlimited'),
(11324, 'https://ror.org/00g3zpx26', 'no_lang_code', 1, 'https://ror.org/00g3zpx26 Mainstream Engineering Corporation (United States)'),
(11325, 'https://ror.org/01v5dfh74', 'en', 1, 'https://ror.org/01v5dfh74 Community Teamwork'),
(11326, 'https://ror.org/0107epm19', 'no_lang_code', 1, 'https://ror.org/0107epm19 Makaha Studios (United States)'),
(11327, 'https://ror.org/03ph0tq13', 'no_lang_code', 1, 'https://ror.org/03ph0tq13 Green Heron Tools (United States)'),
(11328, 'https://ror.org/02rvg0b63', 'en', 1, 'https://ror.org/02rvg0b63 Mandela Partners'),
(11329, 'https://ror.org/00hdnr317', 'en', 1, 'https://ror.org/00hdnr317 Danube Delta National Institute for Research and Development Institutul National de Cercetare Dezvoltare Delta Dunarii'),
(11330, 'https://ror.org/00sze5p60', 'no_lang_code', 1, 'https://ror.org/00sze5p60 AquaGreen (United States)'),
(11331, 'https://ror.org/00y6ae410', 'no_lang_code', 1, 'https://ror.org/00y6ae410 Arvens Technology (United States)'),
(11332, 'https://ror.org/055h1w046', 'no_lang_code', 1, 'https://ror.org/055h1w046 Ashima Group (United States)'),
(11333, 'https://ror.org/035kd4890', 'en', 1, 'https://ror.org/035kd4890 Manpower Demonstration Research Corporation'),
(11334, 'https://ror.org/058d1q741', 'en', 1, 'https://ror.org/058d1q741 The Green Scheme'),
(11335, 'https://ror.org/057en1r98', 'no_lang_code', 1, 'https://ror.org/057en1r98 Composite Technology Development (United States)'),
(11336, 'https://ror.org/04jd8q585', 'no_lang_code', 1, 'https://ror.org/04jd8q585 Assured Bio (United States)'),
(11337, 'https://ror.org/059z7rw58', 'no_lang_code', 1, 'https://ror.org/059z7rw58 Astrobotic (United States)'),
(11338, 'https://ror.org/02d75ya26', 'no_lang_code', 1, 'https://ror.org/02d75ya26 GreenWood Resources (United States)'),
(11339, 'https://ror.org/051h34p92', 'en', 1, 'https://ror.org/051h34p92 Astronomical Research Institute'),
(11340, 'https://ror.org/011tyvx62', 'en', 1, 'https://ror.org/011tyvx62 Groundwork Hudson Valley'),
(11341, 'https://ror.org/04763bf91', 'en', 1, 'https://ror.org/04763bf91 Group for Organizational Effectiveness'),
(11342, 'https://ror.org/03gca6511', 'en', 1, 'https://ror.org/03gca6511 Growing Power'),
(11343, 'https://ror.org/03vyk5m57', 'en', 1, 'https://ror.org/03vyk5m57 Connecticut Center for Advanced Technology'),
(11344, 'https://ror.org/001vv9g35', 'en', 1, 'https://ror.org/001vv9g35 Athens Land Trust'),
(11345, 'https://ror.org/02w3sz211', 'en', 1, 'https://ror.org/02w3sz211 Harford Research Institute'),
(11346, 'https://ror.org/03sddt131', 'en', 1, 'https://ror.org/03sddt131 Marion Local Schools'),
(11347, 'https://ror.org/05etneg75', 'en', 1, 'https://ror.org/05etneg75 Conrad Foundation'),
(11348, 'https://ror.org/025sfn416', 'no_lang_code', 1, 'https://ror.org/025sfn416 Harmon Brook Farm (United States)'),
(11349, 'https://ror.org/049k4m746', 'en', 1, 'https://ror.org/049k4m746 Mariposa Community Health Center'),
(11350, 'https://ror.org/04npd6384', 'en', 1, 'https://ror.org/04npd6384 Harris County Department of Education'),
(11351, 'https://ror.org/03c9wy439', 'no_lang_code', 1, 'https://ror.org/03c9wy439 Azavea (United States)'),
(11352, 'https://ror.org/02dwb6k40', 'no_lang_code', 1, 'https://ror.org/02dwb6k40 Marrone Bio Innovations (United States)'),
(11353, 'https://ror.org/04xpx8w88', 'no_lang_code', 1, 'https://ror.org/04xpx8w88 Azyp (United States)'),
(11354, 'https://ror.org/01177pa98', 'en', 1, 'https://ror.org/01177pa98 Mars Society'),
(11355, 'https://ror.org/03k0yb648', 'en', 1, 'https://ror.org/03k0yb648 Babble Tree'),
(11356, 'https://ror.org/03xwr3e89', 'en', 1, 'https://ror.org/03xwr3e89 Maryland Agricultural Education Foundation'),
(11357, 'https://ror.org/00vtxwn66', 'en', 1, 'https://ror.org/00vtxwn66 Maryland State Department of Education'),
(11358, 'https://ror.org/057hk3852', 'no_lang_code', 1, 'https://ror.org/057hk3852 Cooper Tire & Rubber Company (United States)'),
(11359, 'https://ror.org/03nx3a052', 'en', 1, 'https://ror.org/03nx3a052 Matson & Associates'),
(11360, 'https://ror.org/02xstv633', 'no_lang_code', 1, 'https://ror.org/02xstv633 Ball (United States)'),
(11361, 'https://ror.org/0100s4h81', 'en', 1, 'https://ror.org/0100s4h81 Baltimore City Public Schools'),
(11362, 'https://ror.org/05fxs5677', 'en', 1, 'https://ror.org/05fxs5677 Maui Economic Development Board'),
(11363, 'https://ror.org/04z2zcc58', 'no_lang_code', 1, 'https://ror.org/04z2zcc58 Mayaterials (United States)'),
(11364, 'https://ror.org/04g835755', 'en', 1, 'https://ror.org/04g835755 McWane Science Center'),
(11365, 'https://ror.org/02yjhs723', 'en', 1, 'https://ror.org/02yjhs723 McIntosh Sustainable Environment and Economic Development'),
(11366, 'https://ror.org/02y169n53', 'en', 1, 'https://ror.org/02y169n53 Bay Area Houston Economic Partnership'),
(11367, 'https://ror.org/00vqvet05', 'en', 1, 'https://ror.org/00vqvet05 Cornerstone Evaluation Associates'),
(11368, 'https://ror.org/005m1kj18', 'en', 1, 'https://ror.org/005m1kj18 Bay Mills Community College'),
(11369, 'https://ror.org/015q69778', 'no_lang_code', 1, 'https://ror.org/015q69778 MS Biotec (United States)'),
(11370, 'https://ror.org/04wt6ne29', 'en', 1, 'https://ror.org/04wt6ne29 Corporation for Findlay Market'),
(11371, 'https://ror.org/01kdb6822', 'en', 1, 'https://ror.org/01kdb6822 Corvallis Environmental Center'),
(11372, 'https://ror.org/05w0sqr84', 'en', 1, 'https://ror.org/05w0sqr84 Council for Agricultural Science and Technology'),
(11373, 'https://ror.org/042mcbx19', 'en', 1, 'https://ror.org/042mcbx19 Council on Food, Agricultural and Resource Economics'),
(11374, 'https://ror.org/013yab158', 'en', 1, 'https://ror.org/013yab158 Hartnell College'),
(11375, 'https://ror.org/04bj7w275', 'no_lang_code', 1, 'https://ror.org/04bj7w275 Bee Alert Technology (United States)'),
(11376, 'https://ror.org/02nn4sa19', 'no_lang_code', 1, 'https://ror.org/02nn4sa19 Mercy Corps Northwest (United States)'),
(11377, 'https://ror.org/02b1scj45', 'en', 1, 'https://ror.org/02b1scj45 Hawkeye Community College'),
(11378, 'https://ror.org/04psxdg29', 'no_lang_code', 1, 'https://ror.org/04psxdg29 Mesaphotonics (United States)'),
(11379, 'https://ror.org/02npqe506', 'en', 1, 'https://ror.org/02npqe506 GrowNYC'),
(11380, 'https://ror.org/05fata852', 'no_lang_code', 1, 'https://ror.org/05fata852 Crile Carvey Consulting'),
(11381, 'https://ror.org/04am60t69', 'no_lang_code', 1, 'https://ror.org/04am60t69 Cronus (United States)'),
(11382, 'https://ror.org/03hjr5c64', 'en', 1, 'https://ror.org/03hjr5c64 Bellingham Technical College'),
(11383, 'https://ror.org/02rn5vx39', 'no_lang_code', 1, 'https://ror.org/02rn5vx39 Yield10 Bioscience (United States)'),
(11384, 'https://ror.org/05fvp9283', 'en', 1, 'https://ror.org/05fvp9283 Health Care Without Harm'),
(11385, 'https://ror.org/000a1tn51', 'en', 1, 'https://ror.org/000a1tn51 Health Effects Institute'),
(11386, 'https://ror.org/02167je34', 'no_lang_code', 1, 'https://ror.org/02167je34 Biogas and Electric (United States)'),
(11387, 'https://ror.org/03ccv3j03', 'no_lang_code', 1, 'https://ror.org/03ccv3j03 Metrocrops'),
(11388, 'https://ror.org/0533brp61', 'en', 1, 'https://ror.org/0533brp61 BioLink Life Sciences'),
(11389, 'https://ror.org/00dq6jh04', 'en', 1, 'https://ror.org/00dq6jh04 Health Trust'),
(11390, 'https://ror.org/02gev8286', 'en', 1, 'https://ror.org/02gev8286 Michigan Food & Farming Systems'),
(11391, 'https://ror.org/05jkpmg51', 'en', 1, 'https://ror.org/05jkpmg51 Navajo Technical University'),
(11392, 'https://ror.org/05fd2ah98', 'no_lang_code', 1, 'https://ror.org/05fd2ah98 BioPlastic Polymers and Composites (United States)'),
(11393, 'https://ror.org/03d06tq31', 'en', 1, 'https://ror.org/03d06tq31 Michigan Science Center'),
(11394, 'https://ror.org/03fe5bx07', 'en', 1, 'https://ror.org/03fe5bx07 Healthy Communities Coalition'),
(11395, 'https://ror.org/03spep839', 'no_lang_code', 1, 'https://ror.org/03spep839 NewLink Genetics (United States)'),
(11396, 'https://ror.org/04vy5hg27', 'no_lang_code', 1, 'https://ror.org/04vy5hg27 Cryogenic Industries (United States)'),
(11397, 'https://ror.org/00gj9hs42', 'no_lang_code', 1, 'https://ror.org/00gj9hs42 BioPulping International (United States)'),
(11398, 'https://ror.org/04m65e260', 'no_lang_code', 1, 'https://ror.org/04m65e260 Micronic Technologies (United States)'),
(11399, 'https://ror.org/05mytgs27', 'no_lang_code', 1, 'https://ror.org/05mytgs27 Biospherical Instruments (United States)'),
(11400, 'https://ror.org/00503gj66', 'no_lang_code', 1, 'https://ror.org/00503gj66 Microvi Biotechnologies (United States)'),
(11401, 'https://ror.org/00mkxfc22', 'no_lang_code', 1, 'https://ror.org/00mkxfc22 Heliophysics'),
(11402, 'https://ror.org/00qhyxs61', 'no_lang_code', 1, 'https://ror.org/00qhyxs61 BioTracking (United States)'),
(11403, 'https://ror.org/050r8f240', 'no_lang_code', 1, 'https://ror.org/050r8f240 Heinz Optical Engineering (United States)'),
(11404, 'https://ror.org/00yj85a82', 'en', 1, 'https://ror.org/00yj85a82 Midwest Organic & Sustainable Education Service'),
(11405, 'https://ror.org/00gwz0j29', 'no_lang_code', 1, 'https://ror.org/00gwz0j29 Biotronics (United States)'),
(11406, 'https://ror.org/00073my17', 'no_lang_code', 1, 'https://ror.org/00073my17 BioWorks (United States)'),
(11407, 'https://ror.org/00ea6js36', 'en', 1, 'https://ror.org/00ea6js36 Heritage Ranch'),
(11408, 'https://ror.org/04gknp681', 'en', 1, 'https://ror.org/04gknp681 Mid-Atlantic Broadband Cooperative'),
(11409, 'https://ror.org/04t36th80', 'en', 1, 'https://ror.org/04t36th80 Hiller Aviation Museum'),
(11410, 'https://ror.org/02j7zcz08', 'en', 1, 'https://ror.org/02j7zcz08 Bittersweet Farms'),
(11411, 'https://ror.org/055fed339', 'en', 1, 'https://ror.org/055fed339 Black Oaks Center'),
(11412, 'https://ror.org/01mf77203', 'en', 1, 'https://ror.org/01mf77203 The Blue Hill Meteorological Observatory'),
(11413, 'https://ror.org/03dewsa74', 'en', 1, 'https://ror.org/03dewsa74 Blue Marble Space'),
(11414, 'https://ror.org/05ddvge76', 'en', 1, 'https://ror.org/05ddvge76 Hispanic Scholarship Fund'),
(11415, 'https://ror.org/00vxakc26', 'en', 1, 'https://ror.org/00vxakc26 Milwaukee Teacher Education Center'),
(11416, 'https://ror.org/01myse432', 'en', 1, 'https://ror.org/01myse432 Cultivating Community'),
(11417, 'https://ror.org/00e960c03', 'no_lang_code', 1, 'https://ror.org/00e960c03 Blue Sun (United States)'),
(11418, 'https://ror.org/02rzjwn50', 'en', 1, 'https://ror.org/02rzjwn50 William H Miner Agricultural Research Institute'),
(11419, 'https://ror.org/00dtfmh68', 'en', 1, 'https://ror.org/00dtfmh68 Mobile County Public Schools'),
(11420, 'https://ror.org/01ktsbe92', 'no_lang_code', 1, 'https://ror.org/01ktsbe92 HJ Science and Technology (United States)'),
(11421, 'https://ror.org/02zf66j21', 'en', 1, 'https://ror.org/02zf66j21 Cultural Site Research and Management'),
(11422, 'https://ror.org/0497prz03', 'en', 1, 'https://ror.org/0497prz03 Minnesota Agriculture in the Classroom Foundation'),
(11423, 'https://ror.org/02ya9c216', 'no_lang_code', 1, 'https://ror.org/02ya9c216 HM3 Energy'),
(11424, 'https://ror.org/03bzm0n35', 'en', 1, 'https://ror.org/03bzm0n35 Hmong American Partnership'),
(11425, 'https://ror.org/03wqecf08', 'en', 1, 'https://ror.org/03wqecf08 Holistic Management International'),
(11426, 'https://ror.org/04bgaqv80', 'no_lang_code', 1, 'https://ror.org/04bgaqv80 Utvecklingsbyrån'),
(11427, 'https://ror.org/00tx1bt94', 'en', 1, 'https://ror.org/00tx1bt94 Homer Soil and Water Conservation District'),
(11428, 'https://ror.org/00zbcp540', 'en', 1, 'https://ror.org/00zbcp540 Burlington School District'),
(11429, 'https://ror.org/02qs54046', 'no_lang_code', 1, 'https://ror.org/02qs54046 Busek (United States)'),
(11430, 'https://ror.org/03yv3yk36', 'en', 1, 'https://ror.org/03yv3yk36 Maryland Department of Commerce'),
(11431, 'https://ror.org/058qrep02', 'en', 1, 'https://ror.org/058qrep02 Hawaii Department of Business Economic Development and Tourism'),
(11432, 'https://ror.org/04h8wfm32', 'no_lang_code', 1, 'https://ror.org/04h8wfm32 Custom Data (United States)'),
(11433, 'https://ror.org/021x5j769', 'en', 1, 'https://ror.org/021x5j769 Horry County Schools'),
(11434, 'https://ror.org/05861s171', 'no_lang_code', 1, 'https://ror.org/05861s171 Cycloptics Technologies (United States)'),
(11435, 'https://ror.org/001c8fh75', 'en', 1, 'https://ror.org/001c8fh75 Cal Poly Corporation'),
(11436, 'https://ror.org/02z7cdf88', 'en', 1, 'https://ror.org/02z7cdf88 Cypress Hills Local Development Corporation'),
(11437, 'https://ror.org/00p5kvd83', 'en', 1, 'https://ror.org/00p5kvd83 Calallen Independent School District'),
(11438, 'https://ror.org/02acx8d20', 'en', 1, 'https://ror.org/02acx8d20 Calhoun Conservation District'),
(11439, 'https://ror.org/01ghh2407', 'no_lang_code', 1, 'https://ror.org/01ghh2407 Hubble Telemedical (United States)'),
(11440, 'https://ror.org/02dz8kh28', 'en', 1, 'https://ror.org/02dz8kh28 California FarmLink'),
(11441, 'https://ror.org/01bswen66', 'no_lang_code', 1, 'https://ror.org/01bswen66 Hudson Simulation Service'),
(11442, 'https://ror.org/03hxjqx45', 'en', 1, 'https://ror.org/03hxjqx45 California Foundation for Agriculture in the Classroom'),
(11443, 'https://ror.org/04cd6s825', 'en', 1, 'https://ror.org/04cd6s825 California Institute For Rural Studies'),
(11444, 'https://ror.org/04vry6637', 'no_lang_code', 1, 'https://ror.org/04vry6637 Mississippi Delta Council for Farm Worker Opportunities'),
(11445, 'https://ror.org/042kdph44', 'no_lang_code', 1, 'https://ror.org/042kdph44 DairySight (United States)'),
(11446, 'https://ror.org/0332h2t56', 'no_lang_code', 1, 'https://ror.org/0332h2t56 Dakota Rural Action (United States)'),
(11447, 'https://ror.org/00j7csj22', 'en', 1, 'https://ror.org/00j7csj22 California Teaching Fellows Foundation'),
(11448, 'https://ror.org/013dthz53', 'en', 1, 'https://ror.org/013dthz53 Missouri Farm Bureau'),
(11449, 'https://ror.org/05rdaxs90', 'no_lang_code', 1, 'https://ror.org/05rdaxs90 HydroBio (United States)'),
(11450, 'https://ror.org/003gevz29', 'en', 1, 'https://ror.org/003gevz29 Camden Children''s Garden'),
(11451, 'https://ror.org/04tjnpy66', 'no_lang_code', 1, 'https://ror.org/04tjnpy66 Datastar (United States)'),
(11452, 'https://ror.org/01xedye63', 'no_lang_code', 1, 'https://ror.org/01xedye63 Modern Meadow (United States)'),
(11453, 'https://ror.org/00e7f1j69', 'no_lang_code', 1, 'https://ror.org/00e7f1j69 Capstan (United States)'),
(11454, 'https://ror.org/0575dsf86', 'no_lang_code', 1, 'https://ror.org/0575dsf86 HyPerspectives (United States)'),
(11455, 'https://ror.org/027635d79', 'en', 1, 'https://ror.org/027635d79 Boonshoft Museum of Discovery'),
(11456, 'https://ror.org/04bb84196', 'no_lang_code', 1, 'https://ror.org/04bb84196 Montana Gluten Free (United States)'),
(11457, 'https://ror.org/011kc7436', 'no_lang_code', 1, 'https://ror.org/011kc7436 I2 air fluid innovation (United States)'),
(11458, 'https://ror.org/03ka3vc13', 'en', 1, 'https://ror.org/03ka3vc13 DeKalb County School District'),
(11459, 'https://ror.org/04910zn79', 'en', 1, 'https://ror.org/04910zn79 Delaware AeroSpace Education Foundation'),
(11460, 'https://ror.org/04xge3a12', 'en', 1, 'https://ror.org/04xge3a12 Denver Urban Gardens'),
(11461, 'https://ror.org/00mw3fh49', 'en', 1, 'https://ror.org/00mw3fh49 Iḷisaġvik College'),
(11462, 'https://ror.org/008jvtm10', 'en', 1, 'https://ror.org/008jvtm10 Carmel Research Center'),
(11463, 'https://ror.org/02w94dx49', 'en', 1, 'https://ror.org/02w94dx49 Illinois Farm Bureau'),
(11464, 'https://ror.org/00payck90', 'no_lang_code', 1, 'https://ror.org/00payck90 Mountain Meadow Wool Mill (United States)'),
(11465, 'https://ror.org/026ngk018', 'en', 1, 'https://ror.org/026ngk018 Illinois Stewardship Alliance'),
(11466, 'https://ror.org/01ywqj763', 'en', 1, 'https://ror.org/01ywqj763 Jannus'),
(11467, 'https://ror.org/02ayjed64', 'no_lang_code', 1, 'https://ror.org/02ayjed64 Sally Ride Science (United States)'),
(11468, 'https://ror.org/0435r0x49', 'no_lang_code', 1, 'https://ror.org/0435r0x49 Devicix (United States)'),
(11469, 'https://ror.org/01tndze11', 'no_lang_code', 1, 'https://ror.org/01tndze11 Multi-Duti Manufacturing (United States)'),
(11470, 'https://ror.org/055mqy429', 'no_lang_code', 1, 'https://ror.org/055mqy429 Diligent Consulting (United States)'),
(11471, 'https://ror.org/052cewm89', 'no_lang_code', 1, 'https://ror.org/052cewm89 Multiform Harvest (United States)'),
(11472, 'https://ror.org/00j8h1h21', 'en', 1, 'https://ror.org/00j8h1h21 Indian Health Care Resource Center of Tulsa'),
(11473, 'https://ror.org/05n4g7v16', 'en', 1, 'https://ror.org/05n4g7v16 Indian Nations Conservation Alliance'),
(11474, 'https://ror.org/058dq7z75', 'en', 1, 'https://ror.org/058dq7z75 Catholic Charities of Northeast Kansas'),
(11475, 'https://ror.org/056fnew74', 'en', 1, 'https://ror.org/056fnew74 Discovery Center Museum'),
(11476, 'https://ror.org/02v5a7318', 'en', 1, 'https://ror.org/02v5a7318 Indiana Association of United Ways'),
(11477, 'https://ror.org/03bepb710', 'no_lang_code', 1, 'https://ror.org/03bepb710 Cellana (United States)'),
(11478, 'https://ror.org/04j4v6302', 'en', 1, 'https://ror.org/04j4v6302 Discovery Cube Orange County'),
(11479, 'https://ror.org/02rttpd54', 'en', 1, 'https://ror.org/02rttpd54 Center for Dairy Excellence'),
(11480, 'https://ror.org/02kc8tk59', 'en', 1, 'https://ror.org/02kc8tk59 Museum of Aviation'),
(11481, 'https://ror.org/02jwynf03', 'en', 1, 'https://ror.org/02jwynf03 Center for Rural Affairs'),
(11482, 'https://ror.org/01wv0r403', 'en', 1, 'https://ror.org/01wv0r403 Center on Race, Poverty and the Environment'),
(11483, 'https://ror.org/04ys0z478', 'en', 1, 'https://ror.org/04ys0z478 Central Coast Resource Conservation and Development'),
(11484, 'https://ror.org/0354w0y78', 'en', 1, 'https://ror.org/0354w0y78 College of Central Florida'),
(11485, 'https://ror.org/00vaehf87', 'en', 1, 'https://ror.org/00vaehf87 Museum of Science and Industry'),
(11486, 'https://ror.org/00rsre537', 'en', 1, 'https://ror.org/00rsre537 Indigenous Education Institute'),
(11487, 'https://ror.org/02pt5ea98', 'no_lang_code', 1, 'https://ror.org/02pt5ea98 Industry Vision Automation (United States)'),
(11488, 'https://ror.org/05ahs5p53', 'no_lang_code', 1, 'https://ror.org/05ahs5p53 Brandywine Photonics (United States)'),
(11489, 'https://ror.org/04a79ch84', 'en', 1, 'https://ror.org/04a79ch84 CareerSource Brevard'),
(11490, 'https://ror.org/00ge54051', 'en', 1, 'https://ror.org/00ge54051 Mvskoke Food Sovereignty Initiative'),
(11491, 'https://ror.org/04h2exm50', 'no_lang_code', 1, 'https://ror.org/04h2exm50 Mycosynthetix (United States)'),
(11492, 'https://ror.org/05j8hrz32', 'no_lang_code', 1, 'https://ror.org/05j8hrz32 Infinite Enzymes (United States)'),
(11493, 'https://ror.org/04qparf31', 'no_lang_code', 1, 'https://ror.org/04qparf31 Domtar (United States)'),
(11494, 'https://ror.org/01vw1d787', 'en', 1, 'https://ror.org/01vw1d787 Dorothy Jemison Foundation for Excellence'),
(11495, 'https://ror.org/02mwhda43', 'no_lang_code', 1, 'https://ror.org/02mwhda43 Downstream Strategies (United States)'),
(11496, 'https://ror.org/03qjv2m25', 'no_lang_code', 1, 'https://ror.org/03qjv2m25 Drip Research Technology Services (United States)'),
(11497, 'https://ror.org/003p7hq46', 'en', 1, 'https://ror.org/003p7hq46 Drummond Public Schools'),
(11498, 'https://ror.org/038x7my43', 'en', 1, 'https://ror.org/038x7my43 Myrtle Avenue Brooklyn Partnership'),
(11499, 'https://ror.org/04hm48b29', 'en', 1, 'https://ror.org/04hm48b29 Dublin Independent School District'),
(11500, 'https://ror.org/04keapj48', 'en', 1, 'https://ror.org/04keapj48 Durham County Department of Public Health'),
(11501, 'https://ror.org/02e61jz42', 'no_lang_code', 1, 'https://ror.org/02e61jz42 e2e Materials (United States)'),
(11502, 'https://ror.org/01wzgqz67', 'en', 1, 'https://ror.org/01wzgqz67 Earth Learning'),
(11503, 'https://ror.org/0231ar939', 'no_lang_code', 1, 'https://ror.org/0231ar939 Earth Networks (United States)'),
(11504, 'https://ror.org/01pz08h78', 'no_lang_code', 1, 'https://ror.org/01pz08h78 Innovation Pathways'),
(11505, 'https://ror.org/05ethgq25', 'en', 1, 'https://ror.org/05ethgq25 East Bay Asian Youth Center'),
(11506, 'https://ror.org/05035cc38', 'no_lang_code', 1, 'https://ror.org/05035cc38 LIG Science (United States)'),
(11507, 'https://ror.org/02e36tk84', 'en', 1, 'https://ror.org/02e36tk84 Ohio Aerospace Institute'),
(11508, 'https://ror.org/02fz4b004', 'en', 1, 'https://ror.org/02fz4b004 Eastern Shore of Virginia Broadband Authority'),
(11509, 'https://ror.org/01xfp7f88', 'no_lang_code', 1, 'https://ror.org/01xfp7f88 Innovative Orbital Design (United States)'),
(11510, 'https://ror.org/02pq27251', 'en', 1, 'https://ror.org/02pq27251 Oklahoma Department of Human Services'),
(11511, 'https://ror.org/01y8j7579', 'en', 1, 'https://ror.org/01y8j7579 National 4-H Council'),
(11512, 'https://ror.org/0206gap17', 'no_lang_code', 1, 'https://ror.org/0206gap17 Innovative Space Propulsion Systems (United States)'),
(11513, 'https://ror.org/03vp4wk44', 'en', 1, 'https://ror.org/03vp4wk44 Omak School District'),
(11514, 'https://ror.org/0509fa037', 'en', 1, 'https://ror.org/0509fa037 National Association of Extension 4-H Agents'),
(11515, 'https://ror.org/00wfqnx07', 'no_lang_code', 1, 'https://ror.org/00wfqnx07 OndaVia (United States)'),
(11516, 'https://ror.org/01fyz1w35', 'en', 1, 'https://ror.org/01fyz1w35 Eastside Technical Center'),
(11517, 'https://ror.org/0123ya036', 'en', 1, 'https://ror.org/0123ya036 National Biodiesel Board'),
(11518, 'https://ror.org/00ccz3w83', 'no_lang_code', 1, 'https://ror.org/00ccz3w83 Eco Composites (United States)'),
(11519, 'https://ror.org/027vk9s44', 'en', 1, 'https://ror.org/027vk9s44 Organic Seed Alliance'),
(11520, 'https://ror.org/04gazhx35', 'en', 1, 'https://ror.org/04gazhx35 National Center for Appropriate Technology'),
(11521, 'https://ror.org/0140kyc52', 'no_lang_code', 1, 'https://ror.org/0140kyc52 InsectiGen (United States)'),
(11522, 'https://ror.org/01qxbf653', 'no_lang_code', 1, 'https://ror.org/01qxbf653 Insects Limited (United States)'),
(11523, 'https://ror.org/04cq22z54', 'en', 1, 'https://ror.org/04cq22z54 Institute for Advanced Learning and Research'),
(11524, 'https://ror.org/00jc3sx68', 'en', 1, 'https://ror.org/00jc3sx68 Ecumenical Ministries of Oregon'),
(11525, 'https://ror.org/03j2wmd98', 'no_lang_code', 1, 'https://ror.org/03j2wmd98 Organix (United States)'),
(11526, 'https://ror.org/02gvyd507', 'en', 1, 'https://ror.org/02gvyd507 Institute for Culture and Ecology'),
(11527, 'https://ror.org/01z0rq434', 'no_lang_code', 1, 'https://ror.org/01z0rq434 National Center for Defense Manufacturing and Machining (United States)'),
(11528, 'https://ror.org/04bcpv236', 'en', 1, 'https://ror.org/04bcpv236 Institute for Earth Science Research and Education'),
(11529, 'https://ror.org/02jgraj16', 'en', 1, 'https://ror.org/02jgraj16 Institute for Global Environmental Strategies'),
(11530, 'https://ror.org/01xwshp02', 'en', 1, 'https://ror.org/01xwshp02 Institute for Magnetospheric Physics'),
(11531, 'https://ror.org/043w47745', 'en', 1, 'https://ror.org/043w47745 Institute for the Application of Geospatial Technology'),
(11532, 'https://ror.org/01cpp8w55', 'en', 1, 'https://ror.org/01cpp8w55 Institute for Washington’s Future'),
(11533, 'https://ror.org/003mdrz16', 'en', 1, 'https://ror.org/003mdrz16 Institute of American Indian Arts'),
(11534, 'https://ror.org/01q3fhc22', 'en', 1, 'https://ror.org/01q3fhc22 Delaware Department of Education'),
(11535, 'https://ror.org/00nbf6509', 'no_lang_code', 1, 'https://ror.org/00nbf6509 Ocean Renewable Power Company (United States)'),
(11536, 'https://ror.org/03nsgg743', 'en', 1, 'https://ror.org/03nsgg743 Institutes for Behavior Resources'),
(11537, 'https://ror.org/03x507n02', 'en', 1, 'https://ror.org/03x507n02 Georgia Department of Education'),
(11538, 'https://ror.org/05jh18x93', 'en', 1, 'https://ror.org/05jh18x93 National Commission on Teaching and America’s Future'),
(11539, 'https://ror.org/03hqc7279', 'en', 1, 'https://ror.org/03hqc7279 Otero Junior College'),
(11540, 'https://ror.org/00gkv5g08', 'en', 1, 'https://ror.org/00gkv5g08 Our School at Blair Grocery'),
(11541, 'https://ror.org/03k5jhv71', 'no_lang_code', 1, 'https://ror.org/03k5jhv71 Integrated Nano-Technologies (United States)'),
(11542, 'https://ror.org/001j0nz10', 'en', 1, 'https://ror.org/001j0nz10 Inter-Faith Food Shuttle'),
(11543, 'https://ror.org/02nyp1408', 'en', 1, 'https://ror.org/02nyp1408 National Council on Radiation Protection and Measurements'),
(11544, 'https://ror.org/003bqs817', 'no_lang_code', 1, 'https://ror.org/003bqs817 Owl Biomedical (United States)'),
(11545, 'https://ror.org/004hkm505', 'no_lang_code', 1, 'https://ror.org/004hkm505 Pacific Biodiesel (United States)'),
(11546, 'https://ror.org/0466dv587', 'en', 1, 'https://ror.org/0466dv587 Pacific Gateway Center'),
(11547, 'https://ror.org/046gmyr21', 'en', 1, 'https://ror.org/046gmyr21 Education in Action'),
(11548, 'https://ror.org/059zg8r51', 'en', 1, 'https://ror.org/059zg8r51 National Federation of the Blind'),
(11549, 'https://ror.org/033zcj004', 'en', 1, 'https://ror.org/033zcj004 Nebraska Department of Education'),
(11550, 'https://ror.org/05dz2h194', 'en', 1, 'https://ror.org/05dz2h194 International Association of Wildland Fire'),
(11551, 'https://ror.org/01mcasz62', 'en', 1, 'https://ror.org/01mcasz62 International Society for Biosafety Research'),
(11552, 'https://ror.org/034bxyw57', 'no_lang_code', 1, 'https://ror.org/034bxyw57 3F (United States)'),
(11553, 'https://ror.org/03s70j353', 'en', 1, 'https://ror.org/03s70j353 International Sonoran Desert Alliance'),
(11554, 'https://ror.org/01764fn91', 'no_lang_code', 1, 'https://ror.org/01764fn91 Pan Genome Systems (United States)'),
(11555, 'https://ror.org/058mdz444', 'en', 1, 'https://ror.org/058mdz444 Departamento de Educación de Nueva Jersey New Jersey Department of Education'),
(11556, 'https://ror.org/03r0mgt68', 'no_lang_code', 1, 'https://ror.org/03r0mgt68 PathoVacs (United States)'),
(11557, 'https://ror.org/02gywfe80', 'en', 1, 'https://ror.org/02gywfe80 National Mining Hall of Fame and Museum'),
(11558, 'https://ror.org/022sedm79', 'en', 1, 'https://ror.org/022sedm79 PathStone'),
(11559, 'https://ror.org/05sh1yn13', 'no_lang_code', 1, 'https://ror.org/05sh1yn13 PFA Consulting (United States)'),
(11560, 'https://ror.org/03zb0d553', 'no_lang_code', 1, 'https://ror.org/03zb0d553 Pemaquid Mussel Farms (United States)'),
(11561, 'https://ror.org/03kd4bc94', 'en', 1, 'https://ror.org/03kd4bc94 National Space Grant Alliance'),
(11562, 'https://ror.org/01zp93540', 'no_lang_code', 1, 'https://ror.org/01zp93540 Pemaquid Oyster Company (United States)'),
(11563, 'https://ror.org/02f6yfb39', 'en', 1, 'https://ror.org/02f6yfb39 National Space Grant Foundation'),
(11564, 'https://ror.org/0472wp149', 'no_lang_code', 1, 'https://ror.org/0472wp149 United Animal Health (United States)'),
(11565, 'https://ror.org/0396ezm18', 'en', 1, 'https://ror.org/0396ezm18 National Test Pilot School'),
(11566, 'https://ror.org/02grc9p87', 'en', 1, 'https://ror.org/02grc9p87 Intertribal Agriculture Council'),
(11567, 'https://ror.org/02394fh52', 'no_lang_code', 1, 'https://ror.org/02394fh52 Pennsylvania Center for Beef Excellence'),
(11568, 'https://ror.org/024cwn342', 'en', 1, 'https://ror.org/024cwn342 Pennsylvania Horticultural Society'),
(11569, 'https://ror.org/04ye4vy15', 'no_lang_code', 1, 'https://ror.org/04ye4vy15 Intralytix (United States)'),
(11570, 'https://ror.org/00k1bh470', 'en', 1, 'https://ror.org/00k1bh470 National Wild Turkey Federation'),
(11571, 'https://ror.org/054yz2f06', 'en', 1, 'https://ror.org/054yz2f06 National Youth Science Foundation'),
(11572, 'https://ror.org/01ztccg37', 'no_lang_code', 1, 'https://ror.org/01ztccg37 Permafuels (United States)'),
(11573, 'https://ror.org/05g718r89', 'en', 1, 'https://ror.org/05g718r89 Nationalities Service Center'),
(11574, 'https://ror.org/050z1be57', 'no_lang_code', 1, 'https://ror.org/050z1be57 Invention House (United States)'),
(11575, 'https://ror.org/05ppske48', 'no_lang_code', 1, 'https://ror.org/05ppske48 Invercon (United States)'),
(11576, 'https://ror.org/01zd6r658', 'en', 1, 'https://ror.org/01zd6r658 Empire State Honey Producers Association'),
(11577, 'https://ror.org/04chbxq69', 'no_lang_code', 1, 'https://ror.org/04chbxq69 Energid Technologies (United States)'),
(11578, 'https://ror.org/052942611', 'en', 1, 'https://ror.org/052942611 Nebraska Indian Community College'),
(11579, 'https://ror.org/02vcdte90', 'no_lang_code', 1, 'https://ror.org/02vcdte90 Olympus (United States)'),
(11580, 'https://ror.org/03tyjzx42', 'en', 1, 'https://ror.org/03tyjzx42 Negev Foundation'),
(11581, 'https://ror.org/05wmqqp39', 'en', 1, 'https://ror.org/05wmqqp39 Inyo Mono Advocates for Community Action'),
(11582, 'https://ror.org/03f5kqz72', 'en', 1, 'https://ror.org/03f5kqz72 Iowa Children''s Museum'),
(11583, 'https://ror.org/02dzpb616', 'en', 1, 'https://ror.org/02dzpb616 Energy Center of Wisconsin'),
(11584, 'https://ror.org/005cxtt77', 'no_lang_code', 1, 'https://ror.org/005cxtt77 Enertechnix (United States)'),
(11585, 'https://ror.org/05m13z628', 'no_lang_code', 1, 'https://ror.org/05m13z628 Phenotype Screening Corporation (United States)'),
(11586, 'https://ror.org/03zgv2124', 'en', 1, 'https://ror.org/03zgv2124 Iowa Valley Community College District'),
(11587, 'https://ror.org/04gznzd38', 'en', 1, 'https://ror.org/04gznzd38 ECO City Farms'),
(11588, 'https://ror.org/00dk11h96', 'en', 1, 'https://ror.org/00dk11h96 New Jersey Department of Agriculture'),
(11589, 'https://ror.org/01jsfqj27', 'en', 1, 'https://ror.org/01jsfqj27 IPM Institute of North America'),
(11590, 'https://ror.org/02dfjrn59', 'en', 1, 'https://ror.org/02dfjrn59 New Media Studio'),
(11591, 'https://ror.org/05mwahg17', 'no_lang_code', 1, 'https://ror.org/05mwahg17 Engineered Compost Systems (United States)'),
(11592, 'https://ror.org/01z1c5862', 'en', 1, 'https://ror.org/01z1c5862 College Opportunity Resources for Education'),
(11593, 'https://ror.org/01xe60d06', 'en', 1, 'https://ror.org/01xe60d06 New Mexico Mathematics, Engineering, and Science Achievement'),
(11594, 'https://ror.org/02acd1c86', 'no_lang_code', 1, 'https://ror.org/02acd1c86 Photon Systems (United States)');
INSERT INTO `rors` VALUES
(11595, 'https://ror.org/04eyj7x46', 'en', 1, 'https://ror.org/04eyj7x46 Jamestown Education Foundation'),
(11596, 'https://ror.org/00wbgx826', 'en', 1, 'https://ror.org/00wbgx826 STEM Forward'),
(11597, 'https://ror.org/03kkm1r11', 'en', 1, 'https://ror.org/03kkm1r11 New York Harbor School'),
(11598, 'https://ror.org/01zn5h954', 'en', 1, 'https://ror.org/01zn5h954 Irv and Shellys Fresh Picks'),
(11599, 'https://ror.org/010j4r258', 'no_lang_code', 1, 'https://ror.org/010j4r258 EIM Sensor (United States)'),
(11600, 'https://ror.org/028g94h04', 'en', 1, 'https://ror.org/028g94h04 New York Sustainable Agriculture Working Group'),
(11601, 'https://ror.org/05d4eba54', 'en', 1, 'https://ror.org/05d4eba54 Goodman Community Center'),
(11602, 'https://ror.org/02kak3e04', 'en', 1, 'https://ror.org/02kak3e04 Aurora St. Luke''s Medical Center'),
(11603, 'https://ror.org/009h1mf85', 'en', 1, 'https://ror.org/009h1mf85 Newark Museum'),
(11604, 'https://ror.org/05xevjm20', 'no_lang_code', 1, 'https://ror.org/05xevjm20 Eureka Genomics (United States)'),
(11605, 'https://ror.org/03nnvvy24', 'no_lang_code', 1, 'https://ror.org/03nnvvy24 Itaconix (United States)'),
(11606, 'https://ror.org/04hx2r306', 'en', 1, 'https://ror.org/04hx2r306 Eureka Scientific'),
(11607, 'https://ror.org/011rxtm45', 'no_lang_code', 1, 'https://ror.org/011rxtm45 Exelis (United States)'),
(11608, 'https://ror.org/021kqv911', 'no_lang_code', 1, 'https://ror.org/021kqv911 Exactheat (United States)'),
(11609, 'https://ror.org/013v8tf96', 'en', 1, 'https://ror.org/013v8tf96 Winer Observatory'),
(11610, 'https://ror.org/029vgfn27', 'en', 1, 'https://ror.org/029vgfn27 Janus Youth Programs'),
(11611, 'https://ror.org/01mgpv175', 'no_lang_code', 1, 'https://ror.org/01mgpv175 Novaphos (United States)'),
(11612, 'https://ror.org/04nw2yg41', 'en', 1, 'https://ror.org/04nw2yg41 Planting Justice'),
(11613, 'https://ror.org/02q7bh346', 'en', 1, 'https://ror.org/02q7bh346 ExploreMars'),
(11614, 'https://ror.org/05k4pxb23', 'no_lang_code', 1, 'https://ror.org/05k4pxb23 Nitrate Elimination Company (United States)'),
(11615, 'https://ror.org/01jejyf30', 'no_lang_code', 1, 'https://ror.org/01jejyf30 Exquadrum (United States)'),
(11616, 'https://ror.org/019hc5667', 'en', 1, 'https://ror.org/019hc5667 FareStart'),
(11617, 'https://ror.org/051e2nw91', 'en', 1, 'https://ror.org/051e2nw91 Farm Credit Council'),
(11618, 'https://ror.org/05srkg434', 'en', 1, 'https://ror.org/05srkg434 Farm Safety For Just Kids'),
(11619, 'https://ror.org/03gk10789', 'en', 1, 'https://ror.org/03gk10789 Farm to Table'),
(11620, 'https://ror.org/04mxmbg88', 'en', 1, 'https://ror.org/04mxmbg88 Farmers Legal Action Group'),
(11621, 'https://ror.org/010v7x554', 'no_lang_code', 1, 'https://ror.org/010v7x554 Firsthand Foods (United States)'),
(11622, 'https://ror.org/04gdc7k94', 'en', 1, 'https://ror.org/04gdc7k94 Farmworker Association of Florida'),
(11623, 'https://ror.org/01gyrte54', 'en', 1, 'https://ror.org/01gyrte54 Jobs for the Future'),
(11624, 'https://ror.org/04k2bnr92', 'en', 1, 'https://ror.org/04k2bnr92 Plumas Rural Services'),
(11625, 'https://ror.org/01g7b8d30', 'en', 1, 'https://ror.org/01g7b8d30 Journey''s End Refugee Services'),
(11626, 'https://ror.org/04q8hbr41', 'no_lang_code', 1, 'https://ror.org/04q8hbr41 Noblis'),
(11627, 'https://ror.org/01zmvpz61', 'no_lang_code', 1, 'https://ror.org/01zmvpz61 Julia Group'),
(11628, 'https://ror.org/03yqwby83', 'en', 1, 'https://ror.org/03yqwby83 Norfolk County Agricultural High School'),
(11629, 'https://ror.org/04vz7v009', 'en', 1, 'https://ror.org/04vz7v009 Exploreum Science Center'),
(11630, 'https://ror.org/0187tsx41', 'no_lang_code', 1, 'https://ror.org/0187tsx41 Sigma Space (United States)'),
(11631, 'https://ror.org/05768zd89', 'no_lang_code', 1, 'https://ror.org/05768zd89 PolyOne (United States)'),
(11632, 'https://ror.org/05arrjj36', 'en', 1, 'https://ror.org/05arrjj36 Federation of Animal Science Societies'),
(11633, 'https://ror.org/02k674x39', 'en', 1, 'https://ror.org/02k674x39 Park Nicollet Clinic'),
(11634, 'https://ror.org/028cbaf58', 'en', 1, 'https://ror.org/028cbaf58 Practical Farmers of Iowa'),
(11635, 'https://ror.org/04xk5ks51', 'en', 1, 'https://ror.org/04xk5ks51 North Carolina Science, Mathematics, and Technology Education Center'),
(11636, 'https://ror.org/01qyx9v32', 'no_lang_code', 1, 'https://ror.org/01qyx9v32 Prairie Gold (United States)'),
(11637, 'https://ror.org/026b3nr59', 'no_lang_code', 1, 'https://ror.org/026b3nr59 Sims Brothers (United States)'),
(11638, 'https://ror.org/00nqqjw80', 'en', 1, 'https://ror.org/00nqqjw80 Federation of Southern Cooperatives Land Assistance Fund'),
(11639, 'https://ror.org/04rv9a088', 'en', 1, 'https://ror.org/04rv9a088 Singularity University Universidad de la Singularidad'),
(11640, 'https://ror.org/04k3tjf68', 'en', 1, 'https://ror.org/04k3tjf68 Sitka Sound Science Center'),
(11641, 'https://ror.org/03zksk821', 'en', 1, 'https://ror.org/03zksk821 North Coast Opportunities'),
(11642, 'https://ror.org/03377s592', 'no_lang_code', 1, 'https://ror.org/03377s592 Skolex Biotechnologies (United States)'),
(11643, 'https://ror.org/00reav381', 'en', 1, 'https://ror.org/00reav381 The Garden Church'),
(11644, 'https://ror.org/02javd718', 'no_lang_code', 1, 'https://ror.org/02javd718 Smith-Root (United States)'),
(11645, 'https://ror.org/036hkvc70', 'en', 1, 'https://ror.org/036hkvc70 Europeana Foundation Stichting Europeana'),
(11646, 'https://ror.org/0316y8420', 'no_lang_code', 1, 'https://ror.org/0316y8420 Fiberstar (United States)'),
(11647, 'https://ror.org/045m6nf19', 'no_lang_code', 1, 'https://ror.org/045m6nf19 Fibertek (United States)'),
(11648, 'https://ror.org/00jk68903', 'en', 1, 'https://ror.org/00jk68903 North East Community Center'),
(11649, 'https://ror.org/02rwmrd69', 'no_lang_code', 1, 'https://ror.org/02rwmrd69 SMK Plants (United States)'),
(11650, 'https://ror.org/0195yp903', 'en', 1, 'https://ror.org/0195yp903 Society for In Vitro Biology'),
(11651, 'https://ror.org/02rpq7p88', 'no_lang_code', 1, 'https://ror.org/02rpq7p88 ProFishent (United States)'),
(11652, 'https://ror.org/02ytpy253', 'en', 1, 'https://ror.org/02ytpy253 Society for Nutrition Education and Behavior'),
(11653, 'https://ror.org/03w0zcm71', 'en', 1, 'https://ror.org/03w0zcm71 Project Food, Land and People'),
(11654, 'https://ror.org/04w57r136', 'en', 1, 'https://ror.org/04w57r136 First Nations Development Institute'),
(11655, 'https://ror.org/017t84284', 'en', 1, 'https://ror.org/017t84284 Northeast Organic Farming Association of New Jersey'),
(11656, 'https://ror.org/01714zp28', 'no_lang_code', 1, 'https://ror.org/01714zp28 Prometheus Energy (United States)'),
(11657, 'https://ror.org/04vvrxd09', 'en', 1, 'https://ror.org/04vvrxd09 Weeksville Heritage Center'),
(11658, 'https://ror.org/027pgkr79', 'en', 1, 'https://ror.org/027pgkr79 Northeast Organic Farming Association of New York'),
(11659, 'https://ror.org/02eja2g37', 'no_lang_code', 1, 'https://ror.org/02eja2g37 Melt Organic (United States)'),
(11660, 'https://ror.org/0126jpc81', 'en', 1, 'https://ror.org/0126jpc81 Flathead Valley Community College'),
(11661, 'https://ror.org/01cys2m19', 'en', 1, 'https://ror.org/01cys2m19 Chiricahua Community Health Centers'),
(11662, 'https://ror.org/04pjjk226', 'no_lang_code', 1, 'https://ror.org/04pjjk226 Prove IT (United States)'),
(11663, 'https://ror.org/00ha29405', 'no_lang_code', 1, 'https://ror.org/00ha29405 Soil Born Farms Urban Agriculture & Education Project (United States)'),
(11664, 'https://ror.org/03y87q061', 'en', 1, 'https://ror.org/03y87q061 Public Broadcasting Service'),
(11665, 'https://ror.org/0381kjh19', 'en', 1, 'https://ror.org/0381kjh19 Northeast Wisconsin Technical College'),
(11666, 'https://ror.org/021bvhv31', 'en', 1, 'https://ror.org/021bvhv31 Florida Agriculture in the Classroom'),
(11667, 'https://ror.org/03jy13477', 'en', 1, 'https://ror.org/03jy13477 Public Policy Institute of California'),
(11668, 'https://ror.org/05q4r7x36', 'no_lang_code', 1, 'https://ror.org/05q4r7x36 Armadillo Aerospace (United States)'),
(11669, 'https://ror.org/05pdk8j26', 'en', 1, 'https://ror.org/05pdk8j26 Northern California Regional Land Trust'),
(11670, 'https://ror.org/03z7g2p93', 'en', 1, 'https://ror.org/03z7g2p93 Cody Foundation'),
(11671, 'https://ror.org/03zk2pm28', 'no_lang_code', 1, 'https://ror.org/03zk2pm28 Pulsar Informatics (United States)'),
(11672, 'https://ror.org/01dknz144', 'en', 1, 'https://ror.org/01dknz144 Solid Ground'),
(11673, 'https://ror.org/02528vg72', 'no_lang_code', 1, 'https://ror.org/02528vg72 Star Roses and Plants (United States)'),
(11674, 'https://ror.org/0154eyq57', 'no_lang_code', 1, 'https://ror.org/0154eyq57 Quad County Corn Processors (United States)'),
(11675, 'https://ror.org/003j7nn34', 'no_lang_code', 1, 'https://ror.org/003j7nn34 EnerSys (United States)'),
(11676, 'https://ror.org/02y4abh66', 'en', 1, 'https://ror.org/02y4abh66 Upstate Freshwater Institute'),
(11677, 'https://ror.org/04jv3db71', 'no_lang_code', 1, 'https://ror.org/04jv3db71 Quantalux (United States)'),
(11678, 'https://ror.org/01fmj4m76', 'no_lang_code', 1, 'https://ror.org/01fmj4m76 Urban Tilth'),
(11679, 'https://ror.org/04j6nkt56', 'no_lang_code', 1, 'https://ror.org/04j6nkt56 Xylem (United States)'),
(11680, 'https://ror.org/04rfz4f93', 'no_lang_code', 1, 'https://ror.org/04rfz4f93 Quasar Energy Group (United States)'),
(11681, 'https://ror.org/01yxq8q59', 'en', 1, 'https://ror.org/01yxq8q59 Nuestras Raices'),
(11682, 'https://ror.org/04az0sk32', 'en', 1, 'https://ror.org/04az0sk32 Sound Watershed Consulting'),
(11683, 'https://ror.org/03nhd0t24', 'en', 1, 'https://ror.org/03nhd0t24 Urban Tree Connection'),
(11684, 'https://ror.org/019zszt41', 'en', 1, 'https://ror.org/019zszt41 South Routt School District'),
(11685, 'https://ror.org/02ha9ms92', 'no_lang_code', 1, 'https://ror.org/02ha9ms92 VIC Technology Venture Development (United States)'),
(11686, 'https://ror.org/04azvn561', 'en', 1, 'https://ror.org/04azvn561 Southside Community Land Trust'),
(11687, 'https://ror.org/01k379e18', 'no_lang_code', 1, 'https://ror.org/01k379e18 Nutrasorb (United States)'),
(11688, 'https://ror.org/02dezma62', 'en', 1, 'https://ror.org/02dezma62 United States Satellite Laboratory'),
(11689, 'https://ror.org/01v4tq883', 'en', 1, 'https://ror.org/01v4tq883 Florida A&M University - Florida State University College of Engineering'),
(11690, 'https://ror.org/01j9a7z15', 'no_lang_code', 1, 'https://ror.org/01j9a7z15 Nutrient Recovery and Upcycling (United States)'),
(11691, 'https://ror.org/01e1zk141', 'en', 1, 'https://ror.org/01e1zk141 Southern New Hampshire Services'),
(11692, 'https://ror.org/05j9nj980', 'no_lang_code', 1, 'https://ror.org/05j9nj980 Rebexsess (United States)'),
(11693, 'https://ror.org/0203ne570', 'en', 1, 'https://ror.org/0203ne570 Recirculating Farms Coalition'),
(11694, 'https://ror.org/006r49z69', 'no_lang_code', 1, 'https://ror.org/006r49z69 NVision Solutions (United States)'),
(11695, 'https://ror.org/027xetj30', 'no_lang_code', 1, 'https://ror.org/027xetj30 Reflective X Ray Optics'),
(11696, 'https://ror.org/023bbvw72', 'en', 1, 'https://ror.org/023bbvw72 Southern Ute Community Action Programs'),
(11697, 'https://ror.org/04j8vyy64', 'no_lang_code', 1, 'https://ror.org/04j8vyy64 Oahu Community Recycling (United States)'),
(11698, 'https://ror.org/04nkbtf36', 'en', 1, 'https://ror.org/04nkbtf36 Southwest Georgia Project for Community Education'),
(11699, 'https://ror.org/05h7q5t87', 'en', 1, 'https://ror.org/05h7q5t87 Odyssey of the Mind'),
(11700, 'https://ror.org/04hemee20', 'en', 1, 'https://ror.org/04hemee20 Southwestern Indian Polytechnic Institute'),
(11701, 'https://ror.org/00te84g16', 'en', 1, 'https://ror.org/00te84g16 Valley Forge Military Academy and College'),
(11702, 'https://ror.org/02pzjnn79', 'en', 1, 'https://ror.org/02pzjnn79 Regional Environmental Council'),
(11703, 'https://ror.org/026djsb11', 'no_lang_code', 1, 'https://ror.org/026djsb11 Space Environment Technologies (United States)'),
(11704, 'https://ror.org/04tbz4c44', 'no_lang_code', 1, 'https://ror.org/04tbz4c44 Remote Sensing Solutions (United States)'),
(11705, 'https://ror.org/01vp8h012', 'no_lang_code', 1, 'https://ror.org/01vp8h012 Remote Sensing Systems (United States)'),
(11706, 'https://ror.org/04wnnt868', 'en', 1, 'https://ror.org/04wnnt868 Space Florida'),
(11707, 'https://ror.org/0354zqs18', 'no_lang_code', 1, 'https://ror.org/0354zqs18 Oxford Catalysts Group (United States)'),
(11708, 'https://ror.org/003qqj197', 'no_lang_code', 1, 'https://ror.org/003qqj197 Visidyne (United States)'),
(11709, 'https://ror.org/027pcre83', 'en', 1, 'https://ror.org/027pcre83 Space Frontier Foundation'),
(11710, 'https://ror.org/03jbmx182', 'no_lang_code', 1, 'https://ror.org/03jbmx182 Vision Robotics Corporation (United States)'),
(11711, 'https://ror.org/009txp447', 'no_lang_code', 1, 'https://ror.org/009txp447 PureTemp (United States)'),
(11712, 'https://ror.org/04m8h4d24', 'no_lang_code', 1, 'https://ror.org/04m8h4d24 SpaceWorks Enterprises (United States)'),
(11713, 'https://ror.org/05g3rdv23', 'en', 1, 'https://ror.org/05g3rdv23 Waipa Foundation'),
(11714, 'https://ror.org/02by29150', 'no_lang_code', 1, 'https://ror.org/02by29150 Renewable Spirits (United States)'),
(11715, 'https://ror.org/01p9zxq79', 'en', 1, 'https://ror.org/01p9zxq79 Walla Walla Community College'),
(11716, 'https://ror.org/026jgjr74', 'no_lang_code', 1, 'https://ror.org/026jgjr74 Spectral Sciences (United States)'),
(11717, 'https://ror.org/018br7a38', 'en', 1, 'https://ror.org/018br7a38 Walton County School District'),
(11718, 'https://ror.org/0084q6j82', 'no_lang_code', 1, 'https://ror.org/0084q6j82 Wask Engineering (United States)'),
(11719, 'https://ror.org/02darmv56', 'no_lang_code', 1, 'https://ror.org/02darmv56 Geoprobe (United States)'),
(11720, 'https://ror.org/05bbwmf37', 'no_lang_code', 1, 'https://ror.org/05bbwmf37 Wastewater Compliance Systems (United States)'),
(11721, 'https://ror.org/03h67h666', 'no_lang_code', 1, 'https://ror.org/03h67h666 Spensa Technologies (United States)'),
(11722, 'https://ror.org/03vggmh05', 'en', 1, 'https://ror.org/03vggmh05 Polistes Foundation'),
(11723, 'https://ror.org/03r9qqv72', 'no_lang_code', 1, 'https://ror.org/03r9qqv72 Vestaron (United States)'),
(11724, 'https://ror.org/04jyecv51', 'no_lang_code', 1, 'https://ror.org/04jyecv51 ViaSim Solutions'),
(11725, 'https://ror.org/0027k1m19', 'en', 1, 'https://ror.org/0027k1m19 WateReuse Association'),
(11726, 'https://ror.org/00mwjng53', 'en', 1, 'https://ror.org/00mwjng53 South Dakota Discovery Center'),
(11727, 'https://ror.org/050vqjt31', 'en', 1, 'https://ror.org/050vqjt31 Virginia Air and Space Center'),
(11728, 'https://ror.org/0261rqq02', 'en', 1, 'https://ror.org/0261rqq02 Wayne County Regional Educational Service Agency'),
(11729, 'https://ror.org/03ajjha16', 'en', 1, 'https://ror.org/03ajjha16 Resources for Human Development'),
(11730, 'https://ror.org/032e8ae90', 'no_lang_code', 1, 'https://ror.org/032e8ae90 Bee Power (United States)'),
(11731, 'https://ror.org/001vg8g70', 'en', 1, 'https://ror.org/001vg8g70 Re:Vision'),
(11732, 'https://ror.org/03rksbs88', 'en', 1, 'https://ror.org/03rksbs88 West Hills Community College District'),
(11733, 'https://ror.org/02s09ka34', 'no_lang_code', 1, 'https://ror.org/02s09ka34 SSS Optical Technologies'),
(11734, 'https://ror.org/02ygt0g54', 'en', 1, 'https://ror.org/02ygt0g54 Tohono O''odham Community Action'),
(11735, 'https://ror.org/05tw37d72', 'en', 1, 'https://ror.org/05tw37d72 St. Mary''s Health System'),
(11736, 'https://ror.org/030hzjj50', 'en', 1, 'https://ror.org/030hzjj50 Rhode Island Association of Conservation Districts'),
(11737, 'https://ror.org/03xts5k97', 'en', 1, 'https://ror.org/03xts5k97 Tompkins-Seneca-Tioga Board of Cooperative Educational Services'),
(11738, 'https://ror.org/05tkzae94', 'en', 1, 'https://ror.org/05tkzae94 National Women in Agriculture Association'),
(11739, 'https://ror.org/05gztep63', 'no_lang_code', 1, 'https://ror.org/05gztep63 Top 10 Produce (United States)'),
(11740, 'https://ror.org/05mvea908', 'en', 1, 'https://ror.org/05mvea908 Total Learning Research Institute'),
(11741, 'https://ror.org/017w6as65', 'en', 1, 'https://ror.org/017w6as65 Staunton Creative Community Fund'),
(11742, 'https://ror.org/026apfz04', 'no_lang_code', 1, 'https://ror.org/026apfz04 Tova Industries (United States)'),
(11743, 'https://ror.org/02try9452', 'no_lang_code', 1, 'https://ror.org/02try9452 Sea Bird Electronics (United States)'),
(11744, 'https://ror.org/04wprn722', 'en', 1, 'https://ror.org/04wprn722 Tranquility Base Massage & Day Spa'),
(11745, 'https://ror.org/05gx58798', 'no_lang_code', 1, 'https://ror.org/05gx58798 Ridge Quest (United States)'),
(11746, 'https://ror.org/03q18z722', 'no_lang_code', 1, 'https://ror.org/03q18z722 Western Laboratories (United States)'),
(11747, 'https://ror.org/03h3tdh87', 'no_lang_code', 1, 'https://ror.org/03h3tdh87 Stellar Solutions (United States)'),
(11748, 'https://ror.org/043wzsx85', 'no_lang_code', 1, 'https://ror.org/043wzsx85 Rio Culebra Cooperative (United States)'),
(11749, 'https://ror.org/04kjecg97', 'no_lang_code', 1, 'https://ror.org/04kjecg97 TransGenada (United States)'),
(11750, 'https://ror.org/01hec2e25', 'no_lang_code', 1, 'https://ror.org/01hec2e25 Westscape Wholesale Nursery (United States)'),
(11751, 'https://ror.org/011zr3t28', 'en', 1, 'https://ror.org/011zr3t28 Rio Grande Valley Science Association'),
(11752, 'https://ror.org/02smbdp69', 'en', 1, 'https://ror.org/02smbdp69 Rio Puerco & Jemez Watershed Alliance'),
(11753, 'https://ror.org/01q1eja83', 'en', 1, 'https://ror.org/01q1eja83 Treasure Valley Community College'),
(11754, 'https://ror.org/037ynvv94', 'no_lang_code', 1, 'https://ror.org/037ynvv94 Ripple Rock Fish Farms (United States)'),
(11755, 'https://ror.org/00qsx7902', 'no_lang_code', 1, 'https://ror.org/00qsx7902 Trellis Growing Systems'),
(11756, 'https://ror.org/00hyc4r79', 'no_lang_code', 1, 'https://ror.org/00hyc4r79 Rivertop Renewables (United States)'),
(11757, 'https://ror.org/00eczry62', 'no_lang_code', 1, 'https://ror.org/00eczry62 Troutlodge (United States)'),
(11758, 'https://ror.org/03aswyk21', 'en', 1, 'https://ror.org/03aswyk21 White Earth Tribal and Community College'),
(11759, 'https://ror.org/05sn2rv43', 'no_lang_code', 1, 'https://ror.org/05sn2rv43 Robert Miller Consulting'),
(11760, 'https://ror.org/05kp9q024', 'en', 1, 'https://ror.org/05kp9q024 Robeson Community College'),
(11761, 'https://ror.org/022mnfq26', 'en', 1, 'https://ror.org/022mnfq26 Stone Barns Center for Food & Agriculture'),
(11762, 'https://ror.org/04613d274', 'en', 1, 'https://ror.org/04613d274 Robotics Education and Competition Foundation'),
(11763, 'https://ror.org/03hp16c30', 'no_lang_code', 1, 'https://ror.org/03hp16c30 WholeTrees (United States)'),
(11764, 'https://ror.org/05b04nk22', 'en', 1, 'https://ror.org/05b04nk22 Truly Living Well'),
(11765, 'https://ror.org/035wv3h26', 'no_lang_code', 1, 'https://ror.org/035wv3h26 Roffer’s Ocean Fishing Forecasting Service'),
(11766, 'https://ror.org/02r7v3q78', 'no_lang_code', 1, 'https://ror.org/02r7v3q78 Wilks (United States)'),
(11767, 'https://ror.org/01d76dn02', 'no_lang_code', 1, 'https://ror.org/01d76dn02 Rolling Hills Research (United States)'),
(11768, 'https://ror.org/00y27y405', 'en', 1, 'https://ror.org/00y27y405 Tulsa Economic Development Corporation'),
(11769, 'https://ror.org/04bc26c24', 'en', 1, 'https://ror.org/04bc26c24 Wilson''s Cedar Point Farm'),
(11770, 'https://ror.org/0423qtd98', 'no_lang_code', 1, 'https://ror.org/0423qtd98 StormCenter Communications (United States)'),
(11771, 'https://ror.org/0017nnr12', 'en', 1, 'https://ror.org/0017nnr12 Strategic Solutions International'),
(11772, 'https://ror.org/03qsrw587', 'no_lang_code', 1, 'https://ror.org/03qsrw587 Stratton Park Engineering Company (United States)'),
(11773, 'https://ror.org/012t5jf53', 'no_lang_code', 1, 'https://ror.org/012t5jf53 Worm Power (United States)'),
(11774, 'https://ror.org/01j8e0w91', 'no_lang_code', 1, 'https://ror.org/01j8e0w91 SuGanit Systems (United States)'),
(11775, 'https://ror.org/04myc6802', 'no_lang_code', 1, 'https://ror.org/04myc6802 Rubicon Foods (United States)'),
(11776, 'https://ror.org/053s72389', 'en', 1, 'https://ror.org/053s72389 Coalición Rural Rural Coalition'),
(11777, 'https://ror.org/01qckt681', 'en', 1, 'https://ror.org/01qckt681 Rural Community Development Resources'),
(11778, 'https://ror.org/01g5kcp58', 'en', 1, 'https://ror.org/01g5kcp58 Rural Resources'),
(11779, 'https://ror.org/01v3dd888', 'en', 1, 'https://ror.org/01v3dd888 Uncommon Good'),
(11780, 'https://ror.org/004qf6v24', 'en', 1, 'https://ror.org/004qf6v24 United Charitable'),
(11781, 'https://ror.org/050sgaw73', 'no_lang_code', 1, 'https://ror.org/050sgaw73 Summit Seed (United States)'),
(11782, 'https://ror.org/004vck917', 'en', 1, 'https://ror.org/004vck917 Winston County Self Help Cooperative'),
(11783, 'https://ror.org/05t1dq444', 'en', 1, 'https://ror.org/05t1dq444 Supreme Court of Virginia'),
(11784, 'https://ror.org/00by51808', 'no_lang_code', 1, 'https://ror.org/00by51808 Mölnlycke Health Care (United States)'),
(11785, 'https://ror.org/04tah4m03', 'en', 1, 'https://ror.org/04tah4m03 Sustainable Agriculture Education'),
(11786, 'https://ror.org/04x34yn51', 'en', 1, 'https://ror.org/04x34yn51 Southeastern Consortium for Minorities in Engineering'),
(11787, 'https://ror.org/00drc7v15', 'en', 1, 'https://ror.org/00drc7v15 Sustainable Food Center'),
(11788, 'https://ror.org/03mz6dw96', 'no_lang_code', 1, 'https://ror.org/03mz6dw96 Synthetic Genomics (United States)'),
(11789, 'https://ror.org/016dza536', 'en', 1, 'https://ror.org/016dza536 For Inspiration and Recognition of Science and Technology'),
(11790, 'https://ror.org/05fz3ff46', 'no_lang_code', 1, 'https://ror.org/05fz3ff46 SynTouch (United States)'),
(11791, 'https://ror.org/04tm1j008', 'no_lang_code', 1, 'https://ror.org/04tm1j008 Saint Onge Orchids (United States)'),
(11792, 'https://ror.org/013z7wp67', 'en', 1, 'https://ror.org/013z7wp67 Saginaw Chippewa Indian Tribal Council'),
(11793, 'https://ror.org/00jk8a678', 'en', 1, 'https://ror.org/00jk8a678 St. Patrick Catholic High School'),
(11794, 'https://ror.org/03zpp5097', 'en', 1, 'https://ror.org/03zpp5097 Northwest Regional Planning Commission'),
(11795, 'https://ror.org/01ffncx77', 'en', 1, 'https://ror.org/01ffncx77 United Teen Equality Center'),
(11796, 'https://ror.org/05ac9wt58', 'no_lang_code', 1, 'https://ror.org/05ac9wt58 Wiser Systems (United States)'),
(11797, 'https://ror.org/014c0sj69', 'en', 1, 'https://ror.org/014c0sj69 Sanilac Intermediate School District'),
(11798, 'https://ror.org/01htf3d94', 'no_lang_code', 1, 'https://ror.org/01htf3d94 SarTec (United States)'),
(11799, 'https://ror.org/05s3s9p98', 'en', 1, 'https://ror.org/05s3s9p98 Saturday Academy'),
(11800, 'https://ror.org/02knxde55', 'en', 1, 'https://ror.org/02knxde55 Women Food and Agriculture Network'),
(11801, 'https://ror.org/03xg63v87', 'no_lang_code', 1, 'https://ror.org/03xg63v87 Taber International (United States)'),
(11802, 'https://ror.org/02m80r109', 'no_lang_code', 1, 'https://ror.org/02m80r109 Scenic Valley Farms'),
(11803, 'https://ror.org/03nt2eg08', 'no_lang_code', 1, 'https://ror.org/03nt2eg08 Tao Systems (United States)'),
(11804, 'https://ror.org/00b4jn519', 'en', 1, 'https://ror.org/00b4jn519 United Way of Greater Portland'),
(11805, 'https://ror.org/01rzn6m24', 'en', 1, 'https://ror.org/01rzn6m24 Women''s Community Revitalization Project'),
(11806, 'https://ror.org/02rvwv313', 'en', 1, 'https://ror.org/02rvwv313 The Big Garden'),
(11807, 'https://ror.org/015v8hy06', 'no_lang_code', 1, 'https://ror.org/015v8hy06 Taylor Shellfish Farms (United States)'),
(11808, 'https://ror.org/054t1pd20', 'no_lang_code', 1, 'https://ror.org/054t1pd20 Schillinger Genetics (United States)'),
(11809, 'https://ror.org/01rcprz82', 'no_lang_code', 1, 'https://ror.org/01rcprz82 Tea Spot (United States)'),
(11810, 'https://ror.org/009za6q24', 'en', 1, 'https://ror.org/009za6q24 Teach For America'),
(11811, 'https://ror.org/00v75px85', 'en', 1, 'https://ror.org/00v75px85 Women’s Environmental Institute'),
(11812, 'https://ror.org/04qegdw32', 'en', 1, 'https://ror.org/04qegdw32 Brevard Public Schools'),
(11813, 'https://ror.org/024z3s669', 'en', 1, 'https://ror.org/024z3s669 Orange County Public Schools'),
(11814, 'https://ror.org/041cwwp58', 'no_lang_code', 1, 'https://ror.org/041cwwp58 Technical Design (United States)'),
(11815, 'https://ror.org/03cbfdp48', 'en', 1, 'https://ror.org/03cbfdp48 Polk County Public Schools'),
(11816, 'https://ror.org/04jjg7z32', 'en', 1, 'https://ror.org/04jjg7z32 Capital Caring'),
(11817, 'https://ror.org/02f7txf64', 'en', 1, 'https://ror.org/02f7txf64 Technical Education Research Centers'),
(11818, 'https://ror.org/03q6bcv18', 'no_lang_code', 1, 'https://ror.org/03q6bcv18 Science and Sensors Technologies (United States)'),
(11819, 'https://ror.org/05pw5zy84', 'no_lang_code', 1, 'https://ror.org/05pw5zy84 Science and Technology Corporation (United States)'),
(11820, 'https://ror.org/005mr0595', 'no_lang_code', 1, 'https://ror.org/005mr0595 Technology Holding (United States)'),
(11821, 'https://ror.org/0263dr507', 'en', 1, 'https://ror.org/0263dr507 Science Center of Iowa'),
(11822, 'https://ror.org/03ksh5m61', 'no_lang_code', 1, 'https://ror.org/03ksh5m61 Technova Corporation (United States)'),
(11823, 'https://ror.org/03xec1444', 'no_lang_code', 1, 'https://ror.org/03xec1444 Science Systems and Applications (United States)'),
(11824, 'https://ror.org/00my6s217', 'en', 1, 'https://ror.org/00my6s217 ScienceSouth'),
(11825, 'https://ror.org/02amkdd40', 'no_lang_code', 1, 'https://ror.org/02amkdd40 World Centric (United States)'),
(11826, 'https://ror.org/01b9zn241', 'no_lang_code', 1, 'https://ror.org/01b9zn241 WhyHunger'),
(11827, 'https://ror.org/03y4r3n15', 'no_lang_code', 1, 'https://ror.org/03y4r3n15 Scientific Fishery Systems (United States)'),
(11828, 'https://ror.org/043svzt04', 'no_lang_code', 1, 'https://ror.org/043svzt04 World Winds (United States)'),
(11829, 'https://ror.org/00r33es57', 'no_lang_code', 1, 'https://ror.org/00r33es57 Sea and Reef Aquaculture (United States)'),
(11830, 'https://ror.org/02xv7d798', 'en', 1, 'https://ror.org/02xv7d798 Seaberry Farm'),
(11831, 'https://ror.org/03y8t7556', 'no_lang_code', 1, 'https://ror.org/03y8t7556 Terrenew (United States)'),
(11832, 'https://ror.org/04fxr2t73', 'no_lang_code', 1, 'https://ror.org/04fxr2t73 TessArae (United States)'),
(11833, 'https://ror.org/0001j6637', 'no_lang_code', 1, 'https://ror.org/0001j6637 Tethers Unlimited (United States)'),
(11834, 'https://ror.org/05se9te27', 'no_lang_code', 1, 'https://ror.org/05se9te27 Searchlight Sensors (United States)'),
(11835, 'https://ror.org/03fk8t087', 'no_lang_code', 1, 'https://ror.org/03fk8t087 Tetra Tech (United States)'),
(11836, 'https://ror.org/04x0dc707', 'en', 1, 'https://ror.org/04x0dc707 Seattle Aquarium'),
(11837, 'https://ror.org/05bwzbr45', 'no_lang_code', 1, 'https://ror.org/05bwzbr45 Tetracore (United States)'),
(11838, 'https://ror.org/05mdqv554', 'en', 1, 'https://ror.org/05mdqv554 Tilth Alliance'),
(11839, 'https://ror.org/02q6d6830', 'no_lang_code', 1, 'https://ror.org/02q6d6830 Secor Strategies (United States)'),
(11840, 'https://ror.org/04ztkpw59', 'no_lang_code', 1, 'https://ror.org/04ztkpw59 Xiomas Technologies (United States)'),
(11841, 'https://ror.org/00e84bb93', 'no_lang_code', 1, 'https://ror.org/00e84bb93 Xnano Sciences (United States)'),
(11842, 'https://ror.org/0572r3k48', 'no_lang_code', 1, 'https://ror.org/0572r3k48 SBS CyberSecurity (United States)'),
(11843, 'https://ror.org/05f50w156', 'en', 1, 'https://ror.org/05f50w156 Texas State Technical College West Texas'),
(11844, 'https://ror.org/05dgy4t92', 'en', 1, 'https://ror.org/05dgy4t92 Seminole Public Schools'),
(11845, 'https://ror.org/0082ybm03', 'en', 1, 'https://ror.org/0082ybm03 Texas Tech University System'),
(11846, 'https://ror.org/0148agt43', 'en', 1, 'https://ror.org/0148agt43 Texas/Mexico Border Coalition'),
(11847, 'https://ror.org/00xaskn96', 'no_lang_code', 1, 'https://ror.org/00xaskn96 Everest Technologies (United States)'),
(11848, 'https://ror.org/058dz5f86', 'en', 1, 'https://ror.org/058dz5f86 Thanksgiving Point'),
(11849, 'https://ror.org/01zmv6c05', 'en', 1, 'https://ror.org/01zmv6c05 Center for Research on the Changing Earth System'),
(11850, 'https://ror.org/005aym849', 'en', 1, 'https://ror.org/005aym849 Yakima Valley Community College'),
(11851, 'https://ror.org/03zt7kt60', 'no_lang_code', 1, 'https://ror.org/03zt7kt60 SePRO (United States)'),
(11852, 'https://ror.org/05g4yrw83', 'en', 1, 'https://ror.org/05g4yrw83 International Society for Technology in Education'),
(11853, 'https://ror.org/02p038k52', 'en', 1, 'https://ror.org/02p038k52 Shawnee Community College'),
(11854, 'https://ror.org/05kywb567', 'en', 1, 'https://ror.org/05kywb567 Yellowstone Ecological Research Center'),
(11855, 'https://ror.org/04fm6gx83', 'en', 1, 'https://ror.org/04fm6gx83 Vernon Verona Sherrill School District'),
(11856, 'https://ror.org/037vegb36', 'en', 1, 'https://ror.org/037vegb36 Kerr Center for Sustainable Agriculture'),
(11857, 'https://ror.org/00940ss05', 'en', 1, 'https://ror.org/00940ss05 Shields Valley Public Schools'),
(11858, 'https://ror.org/037kkjm30', 'no_lang_code', 1, 'https://ror.org/037kkjm30 Yenkin Majestic Industrial Coatings Division (United States)'),
(11859, 'https://ror.org/0139zfs13', 'en', 1, 'https://ror.org/0139zfs13 Kohala Center'),
(11860, 'https://ror.org/01xetyj79', 'no_lang_code', 1, 'https://ror.org/01xetyj79 Youngstown Neighborhood Development Corporation (United States)'),
(11861, 'https://ror.org/05m1tqb62', 'en', 1, 'https://ror.org/05m1tqb62 Youth Farm'),
(11862, 'https://ror.org/03fm9hg19', 'en', 1, 'https://ror.org/03fm9hg19 Yurok Tribe Environmental Program'),
(11863, 'https://ror.org/03wkygj08', 'no_lang_code', 1, 'https://ror.org/03wkygj08 Z4 Energy Systems (United States)'),
(11864, 'https://ror.org/01p8br322', 'no_lang_code', 1, 'https://ror.org/01p8br322 Biomarker Strategies (United States)'),
(11865, 'https://ror.org/00x1q5565', 'en', 1, 'https://ror.org/00x1q5565 Bryan Health'),
(11866, 'https://ror.org/05hhhbf86', 'en', 1, 'https://ror.org/05hhhbf86 Arabkir Joint Medical Center Արաբկիր Բժշկական Համալիր'),
(11867, 'https://ror.org/04cjbhq14', 'no_lang_code', 1, 'https://ror.org/04cjbhq14 Regen BioPharma (United States)'),
(11868, 'https://ror.org/03350ng14', 'en', 1, 'https://ror.org/03350ng14 Buckelew Programs'),
(11869, 'https://ror.org/05gaksk83', 'en', 1, 'https://ror.org/05gaksk83 Elucid Bioimaging'),
(11870, 'https://ror.org/05rcrh741', 'de', 1, 'https://ror.org/05rcrh741 BioMed zet Life Science'),
(11871, 'https://ror.org/02mjtc790', 'en', 1, 'https://ror.org/02mjtc790 Building Blocks Learning Academy'),
(11872, 'https://ror.org/03bwmmt72', 'en', 1, 'https://ror.org/03bwmmt72 Building Bridges Child Development Center'),
(11873, 'https://ror.org/02690tv45', 'en', 1, 'https://ror.org/02690tv45 The Wildlife Society'),
(11874, 'https://ror.org/02hjww730', 'en', 1, 'https://ror.org/02hjww730 Butte County Office of Education'),
(11875, 'https://ror.org/00tk4hv41', 'no_lang_code', 1, 'https://ror.org/00tk4hv41 Thin Air Nitrogen Solutions (United States)'),
(11876, 'https://ror.org/05t7rnh97', 'en', 1, 'https://ror.org/05t7rnh97 Asthma and Allergy Specialists'),
(11877, 'https://ror.org/038qw8663', 'no_lang_code', 1, 'https://ror.org/038qw8663 This Old Farm (United States)'),
(11878, 'https://ror.org/03c9d3902', 'no_lang_code', 1, 'https://ror.org/03c9d3902 BioMedicure (United States)'),
(11879, 'https://ror.org/01ytrmn44', 'en', 1, 'https://ror.org/01ytrmn44 C. Thomas Clagett, Jr. Memorial Clinic and Regatta'),
(11880, 'https://ror.org/00ymmrt60', 'no_lang_code', 1, 'https://ror.org/00ymmrt60 C2N Diagnostics (United States)'),
(11881, 'https://ror.org/04y5apy07', 'no_lang_code', 1, 'https://ror.org/04y5apy07 Biomedisyn (United States)'),
(11882, 'https://ror.org/02bcy6s93', 'no_lang_code', 1, 'https://ror.org/02bcy6s93 C5•6 Technologies (United States)'),
(11883, 'https://ror.org/003r3ng51', 'en', 1, 'https://ror.org/003r3ng51 Tift County School District'),
(11884, 'https://ror.org/05r2sf328', 'no_lang_code', 1, 'https://ror.org/05r2sf328 Valerion Therapeutics (United States)'),
(11885, 'https://ror.org/032c26s44', 'no_lang_code', 1, 'https://ror.org/032c26s44 Highlight Therapeutics (Spain)'),
(11886, 'https://ror.org/00kg9vk05', 'no_lang_code', 1, 'https://ror.org/00kg9vk05 Bionovo (United States)'),
(11887, 'https://ror.org/04npj6h08', 'en', 1, 'https://ror.org/04npj6h08 Association of Pediatric Hematology/Oncology Nurses'),
(11888, 'https://ror.org/02cfzba28', 'fr', 1, 'https://ror.org/02cfzba28 Association Robert Debré'),
(11889, 'https://ror.org/024avgr28', 'fr', 1, 'https://ror.org/024avgr28 Association Shifa des Maladies NeuroMusculaires'),
(11890, 'https://ror.org/01ba2ff92', 'no_lang_code', 1, 'https://ror.org/01ba2ff92 Biopico Systems (United States)'),
(11891, 'https://ror.org/04c1ecw45', 'en', 1, 'https://ror.org/04c1ecw45 Association to Benefit Children'),
(11892, 'https://ror.org/01xrrhw27', 'en', 1, 'https://ror.org/01xrrhw27 Astella Development'),
(11893, 'https://ror.org/05fpayd96', 'no_lang_code', 1, 'https://ror.org/05fpayd96 Bioproximity (United States)'),
(11894, 'https://ror.org/03zzy2b27', 'no_lang_code', 1, 'https://ror.org/03zzy2b27 Plex Pharmaceuticals (United States)'),
(11895, 'https://ror.org/01rqg5073', 'no_lang_code', 1, 'https://ror.org/01rqg5073 BioRealm (United States)'),
(11896, 'https://ror.org/01y42sa33', 'en', 1, 'https://ror.org/01y42sa33 Astraea Lesbian Foundation For Justice'),
(11897, 'https://ror.org/029bpx402', 'en', 1, 'https://ror.org/029bpx402 Calhoun County Health Department'),
(11898, 'https://ror.org/03pzyw636', 'no_lang_code', 1, 'https://ror.org/03pzyw636 Califia Bio (United States)'),
(11899, 'https://ror.org/04zkytf76', 'en', 1, 'https://ror.org/04zkytf76 Asylum Access'),
(11900, 'https://ror.org/02b0ps544', 'no_lang_code', 1, 'https://ror.org/02b0ps544 PharmaBioSource (United States)'),
(11901, 'https://ror.org/03xzsxe18', 'en', 1, 'https://ror.org/03xzsxe18 California Adaptive Rowing Program'),
(11902, 'https://ror.org/02dja5v25', 'en', 1, 'https://ror.org/02dja5v25 California Aquatic Therapy and Wellness Center'),
(11903, 'https://ror.org/01npchg06', 'en', 1, 'https://ror.org/01npchg06 California Consortium of Addiction Programs and Professionals'),
(11904, 'https://ror.org/02q8btt40', 'no_lang_code', 1, 'https://ror.org/02q8btt40 Aterica (Canada)'),
(11905, 'https://ror.org/02cbyhv26', 'en', 1, 'https://ror.org/02cbyhv26 Californians for Disability Rights'),
(11906, 'https://ror.org/039ep1930', 'en', 1, 'https://ror.org/039ep1930 California Black Health Network'),
(11907, 'https://ror.org/0209tmn27', 'en', 1, 'https://ror.org/0209tmn27 Coalition for Compassionate Care of California'),
(11908, 'https://ror.org/028jy6j07', 'no_lang_code', 1, 'https://ror.org/028jy6j07 Biothera (United States)'),
(11909, 'https://ror.org/046rsbb51', 'en', 1, 'https://ror.org/046rsbb51 California Ear Institute'),
(11910, 'https://ror.org/0317mgy72', 'en', 1, 'https://ror.org/0317mgy72 Disability Rights Legal Center'),
(11911, 'https://ror.org/05rj6k491', 'en', 1, 'https://ror.org/05rj6k491 California Health Collaborative'),
(11912, 'https://ror.org/055dbxv70', 'no_lang_code', 1, 'https://ror.org/055dbxv70 Biovista (United States)'),
(11913, 'https://ror.org/05hamyn96', 'en', 1, 'https://ror.org/05hamyn96 Ventura County Health Care Agency'),
(11914, 'https://ror.org/03s4s4880', 'no_lang_code', 1, 'https://ror.org/03s4s4880 Athenese (United States)'),
(11915, 'https://ror.org/0117w1x13', 'en', 1, 'https://ror.org/0117w1x13 Athens Nurses Clinic'),
(11916, 'https://ror.org/04j2g1y38', 'en', 1, 'https://ror.org/04j2g1y38 California Hospital Association'),
(11917, 'https://ror.org/04645z906', 'en', 1, 'https://ror.org/04645z906 Athlete''s for Education'),
(11918, 'https://ror.org/04grvsk22', 'en', 1, 'https://ror.org/04grvsk22 California Hospital Medical Center Foundation'),
(11919, 'https://ror.org/00b0aes62', 'en', 1, 'https://ror.org/00b0aes62 Indian Health Council'),
(11920, 'https://ror.org/02ggpr832', 'en', 1, 'https://ror.org/02ggpr832 California Prostitutes Education Project'),
(11921, 'https://ror.org/01p7r2f35', 'en', 1, 'https://ror.org/01p7r2f35 Athletes Joined Against Spondylitis'),
(11922, 'https://ror.org/04xsc6e37', 'en', 1, 'https://ror.org/04xsc6e37 Athletics Canada Athlétisme Canada'),
(11923, 'https://ror.org/00xgaya81', 'en', 1, 'https://ror.org/00xgaya81 Bipartisan Policy Center'),
(11924, 'https://ror.org/02ygqy715', 'no_lang_code', 1, 'https://ror.org/02ygqy715 Calista Therapeutics (United States)'),
(11925, 'https://ror.org/00fr0gw86', 'en', 1, 'https://ror.org/00fr0gw86 Calmar Pain Relief'),
(11926, 'https://ror.org/004htp828', 'en', 1, 'https://ror.org/004htp828 Cambodian Association of America'),
(11927, 'https://ror.org/006dpe828', 'en', 1, 'https://ror.org/006dpe828 University of California Hastings College of the Law École de droit hastings de l''université de californie'),
(11928, 'https://ror.org/01jnqsa93', 'en', 1, 'https://ror.org/01jnqsa93 CAMC Health Education and Research Institute'),
(11929, 'https://ror.org/00w1pae29', 'en', 1, 'https://ror.org/00w1pae29 ProMedica Charles and Virginia Hickman Hospital'),
(11930, 'https://ror.org/03c94dv58', 'en', 1, 'https://ror.org/03c94dv58 Alzforum'),
(11931, 'https://ror.org/00ks34y49', 'en', 1, 'https://ror.org/00ks34y49 Rafiki Coalition'),
(11932, 'https://ror.org/05m45td34', 'no_lang_code', 1, 'https://ror.org/05m45td34 Aaranya Biosciences (India)'),
(11933, 'https://ror.org/01j3vsz59', 'en', 1, 'https://ror.org/01j3vsz59 Atlanta Diabetes Associates'),
(11934, 'https://ror.org/04neva792', 'en', 1, 'https://ror.org/04neva792 Atlantic Cancer Research Institute Institut Atlantique de recherche sur le cancer'),
(11935, 'https://ror.org/032sbdv65', 'en', 1, 'https://ror.org/032sbdv65 Black Women for Wellness'),
(11936, 'https://ror.org/0458xbt64', 'no_lang_code', 1, 'https://ror.org/0458xbt64 ATLAS Neuroengineering (Belgium)'),
(11937, 'https://ror.org/03fyqbt98', 'en', 1, 'https://ror.org/03fyqbt98 Alzheimer''s and Related Disorders Society of India'),
(11938, 'https://ror.org/017phwt11', 'en', 1, 'https://ror.org/017phwt11 Bladen County Schools'),
(11939, 'https://ror.org/05668ct49', 'en', 1, 'https://ror.org/05668ct49 Blanchfield Army Community Hospital'),
(11940, 'https://ror.org/020n75m55', 'en', 1, 'https://ror.org/020n75m55 Camp Aldersgate'),
(11941, 'https://ror.org/00v0x8839', 'no_lang_code', 1, 'https://ror.org/00v0x8839 Ab Medica (Italy)'),
(11942, 'https://ror.org/04749sq68', 'en', 1, 'https://ror.org/04749sq68 Blank Children''s Hospital'),
(11943, 'https://ror.org/01pbevv17', 'en', 1, 'https://ror.org/01pbevv17 Attogen Biomedical Research'),
(11944, 'https://ror.org/01ptc4g94', 'en', 1, 'https://ror.org/01ptc4g94 BlazeSports America'),
(11945, 'https://ror.org/0476dvj30', 'en', 1, 'https://ror.org/0476dvj30 Augusta Victoria Hospital'),
(11946, 'https://ror.org/04p0syp05', 'en', 1, 'https://ror.org/04p0syp05 Alzheimer''s Disease Association of the Philippines'),
(11947, 'https://ror.org/0185drb55', 'en', 1, 'https://ror.org/0185drb55 Alzheimer''s Drug Discovery Foundation'),
(11948, 'https://ror.org/00xeqw708', 'en', 1, 'https://ror.org/00xeqw708 Camp Quality New Jersey'),
(11949, 'https://ror.org/010z87j47', 'en', 1, 'https://ror.org/010z87j47 Camp Twin Lakes'),
(11950, 'https://ror.org/01ar5xt70', 'en', 1, 'https://ror.org/01ar5xt70 Bloomington Health Foundation'),
(11951, 'https://ror.org/023wb1e36', 'no_lang_code', 1, 'https://ror.org/023wb1e36 AurimMed (United States)'),
(11952, 'https://ror.org/01vkzj587', 'en', 1, 'https://ror.org/01vkzj587 Yerevan State Medical University Երևանի պետական բժշկական համալսարան'),
(11953, 'https://ror.org/02prjad05', 'en', 1, 'https://ror.org/02prjad05 Abilities Unlimited of the Carolinas'),
(11954, 'https://ror.org/035wy8w94', 'en', 1, 'https://ror.org/035wy8w94 Blue Ridge Area Health Education Center'),
(11955, 'https://ror.org/01x22fc24', 'en', 1, 'https://ror.org/01x22fc24 Aunt Martha’s Health and Wellness'),
(11956, 'https://ror.org/01exzfh46', 'en', 1, 'https://ror.org/01exzfh46 Can Do Multiple Sclerosis'),
(11957, 'https://ror.org/04ks41483', 'en', 1, 'https://ror.org/04ks41483 Ability Found'),
(11958, 'https://ror.org/0183pp169', 'en', 1, 'https://ror.org/0183pp169 Ability Production'),
(11959, 'https://ror.org/01nbx5962', 'en', 1, 'https://ror.org/01nbx5962 Blue Ridge Independent Living Center'),
(11960, 'https://ror.org/0070dz419', 'en', 1, 'https://ror.org/0070dz419 AbilityPLUS'),
(11961, 'https://ror.org/01k164012', 'en', 1, 'https://ror.org/01k164012 Canadian Centre on Disability Studies'),
(11962, 'https://ror.org/034ekjs90', 'en', 1, 'https://ror.org/034ekjs90 Quincy Medical Center'),
(11963, 'https://ror.org/04kn0h737', 'no_lang_code', 1, 'https://ror.org/04kn0h737 BlueSky Designs (United States)'),
(11964, 'https://ror.org/05m4e6y57', 'en', 1, 'https://ror.org/05m4e6y57 Cleveland Cord Blood Center'),
(11965, 'https://ror.org/0283c7q62', 'en', 1, 'https://ror.org/0283c7q62 Spinal Cord Injury Alberta'),
(11966, 'https://ror.org/05r7zv414', 'en', 1, 'https://ror.org/05r7zv414 Fonds des Nations Unies pour l''Enfance United Nations Children''s Fund Canada'),
(11967, 'https://ror.org/05t72y326', 'en', 1, 'https://ror.org/05t72y326 Australasian Leukaemia and Lymphoma Group'),
(11968, 'https://ror.org/04kd66c62', 'no_lang_code', 1, 'https://ror.org/04kd66c62 Blueroof Technologies (United States)'),
(11969, 'https://ror.org/007398w55', 'en', 1, 'https://ror.org/007398w55 Australasia Paediatric Endocrine Group'),
(11970, 'https://ror.org/05k321e68', 'no_lang_code', 1, 'https://ror.org/05k321e68 Bnoat Oncology (United States)'),
(11971, 'https://ror.org/04gg0z244', 'en', 1, 'https://ror.org/04gg0z244 Cancer Connection'),
(11972, 'https://ror.org/002cv1w36', 'en', 1, 'https://ror.org/002cv1w36 Australian Foundation for Diabetes Research'),
(11973, 'https://ror.org/056zz0q95', 'en', 1, 'https://ror.org/056zz0q95 American Academy of Otolaryngology — Head and Neck Surgery'),
(11974, 'https://ror.org/04vswev69', 'no_lang_code', 1, 'https://ror.org/04vswev69 Cato BioVentures (United States)'),
(11975, 'https://ror.org/027q7en43', 'en', 1, 'https://ror.org/027q7en43 American Association of Neuropathologists'),
(11976, 'https://ror.org/02svff837', 'en', 1, 'https://ror.org/02svff837 Leading Age'),
(11977, 'https://ror.org/00x584494', 'en', 1, 'https://ror.org/00x584494 American Association on Health and Disability'),
(11978, 'https://ror.org/028g82q49', 'en', 1, 'https://ror.org/028g82q49 Boat People SOS'),
(11979, 'https://ror.org/026ad7v11', 'en', 1, 'https://ror.org/026ad7v11 AutismCare Nepal Society'),
(11980, 'https://ror.org/03hk7j981', 'en', 1, 'https://ror.org/03hk7j981 Autism Treatment Center'),
(11981, 'https://ror.org/046msyg33', 'no_lang_code', 1, 'https://ror.org/046msyg33 BRCR Global (Peru)'),
(11982, 'https://ror.org/00z0kkz74', 'no_lang_code', 1, 'https://ror.org/00z0kkz74 Accelerated Medical Diagnostics (United States)'),
(11983, 'https://ror.org/006eg4f53', 'en', 1, 'https://ror.org/006eg4f53 Boca Raton Museum of Art'),
(11984, 'https://ror.org/04t9k7852', 'en', 1, 'https://ror.org/04t9k7852 Autism Partnership Foundation'),
(11985, 'https://ror.org/03063wv95', 'en', 1, 'https://ror.org/03063wv95 Autism Science Foundation'),
(11986, 'https://ror.org/00dmmws82', 'en', 1, 'https://ror.org/00dmmws82 American Childhood Cancer Organization'),
(11987, 'https://ror.org/02vz4ta64', 'en', 1, 'https://ror.org/02vz4ta64 Camp Boggy Creek'),
(11988, 'https://ror.org/04vdj0y48', 'en', 1, 'https://ror.org/04vdj0y48 Access Living'),
(11989, 'https://ror.org/0100x5843', 'en', 1, 'https://ror.org/0100x5843 Advanced Health Care of Aurora'),
(11990, 'https://ror.org/04jrn9514', 'en', 1, 'https://ror.org/04jrn9514 Access Northern California'),
(11991, 'https://ror.org/000r61a05', 'en', 1, 'https://ror.org/000r61a05 American Federation for Aging Research'),
(11992, 'https://ror.org/022zgjn81', 'no_lang_code', 1, 'https://ror.org/022zgjn81 AccuDava (United States)'),
(11993, 'https://ror.org/00fmr3e85', 'en', 1, 'https://ror.org/00fmr3e85 American Folk Art Museum'),
(11994, 'https://ror.org/04re20p56', 'no_lang_code', 1, 'https://ror.org/04re20p56 Acetylon Pharmaceuticals (United States)'),
(11995, 'https://ror.org/05b8r6069', 'en', 1, 'https://ror.org/05b8r6069 Autistic Women & Nonbinary Network'),
(11996, 'https://ror.org/0219k5g76', 'en', 1, 'https://ror.org/0219k5g76 Bombay College of Pharmacy'),
(11997, 'https://ror.org/01yjcee19', 'en', 1, 'https://ror.org/01yjcee19 Cancer Alliance of Naples'),
(11998, 'https://ror.org/00baer621', 'en', 1, 'https://ror.org/00baer621 Bon Secours Health System'),
(11999, 'https://ror.org/03ea0ep61', 'en', 1, 'https://ror.org/03ea0ep61 Autism360'),
(12000, 'https://ror.org/01gmgva47', 'en', 1, 'https://ror.org/01gmgva47 Autoimmunity Research Foundation'),
(12001, 'https://ror.org/05253xp33', 'no_lang_code', 1, 'https://ror.org/05253xp33 Avails Medical (United States)'),
(12002, 'https://ror.org/03qs1y241', 'en', 1, 'https://ror.org/03qs1y241 Achilles International'),
(12003, 'https://ror.org/04dq3vj35', 'en', 1, 'https://ror.org/04dq3vj35 American Friends of Tel Aviv University'),
(12004, 'https://ror.org/02kw9ya16', 'en', 1, 'https://ror.org/02kw9ya16 Cancer and Chronic Disease Consortium'),
(12005, 'https://ror.org/05md78f75', 'en', 1, 'https://ror.org/05md78f75 ACT for Multiple Sclerosis'),
(12006, 'https://ror.org/04hxzf837', 'en', 1, 'https://ror.org/04hxzf837 ACTION'),
(12007, 'https://ror.org/05tns7243', 'en', 1, 'https://ror.org/05tns7243 Action for Autism'),
(12008, 'https://ror.org/01vv0xf90', 'en', 1, 'https://ror.org/01vv0xf90 Avalon Nature Preserve'),
(12009, 'https://ror.org/058kybv57', 'en', 1, 'https://ror.org/058kybv57 Action Network'),
(12010, 'https://ror.org/0569m7y93', 'no_lang_code', 1, 'https://ror.org/0569m7y93 Avalon Pharma (United States)'),
(12011, 'https://ror.org/02j5e0989', 'en', 1, 'https://ror.org/02j5e0989 Cancer Association of Anderson'),
(12012, 'https://ror.org/04kd24b32', 'en', 1, 'https://ror.org/04kd24b32 Active Disabled Americans'),
(12013, 'https://ror.org/03c8f3524', 'en', 1, 'https://ror.org/03c8f3524 Boone County Health Department'),
(12014, 'https://ror.org/04q33xf47', 'en', 1, 'https://ror.org/04q33xf47 Active Transportation Alliance'),
(12015, 'https://ror.org/00fqa4327', 'no_lang_code', 1, 'https://ror.org/00fqa4327 ActiveSite Pharmaceuticals (United States)'),
(12016, 'https://ror.org/05qap2184', 'no_lang_code', 1, 'https://ror.org/05qap2184 ActoGeniX (Belgium)'),
(12017, 'https://ror.org/004718x66', 'en', 1, 'https://ror.org/004718x66 American Himalayan Foundation'),
(12018, 'https://ror.org/03cvyms32', 'en', 1, 'https://ror.org/03cvyms32 Cancer Association of Greater New Orleans'),
(12019, 'https://ror.org/05pvq8q22', 'no_lang_code', 1, 'https://ror.org/05pvq8q22 Acumen Pharmaceuticals (United States)'),
(12020, 'https://ror.org/02a7p6b15', 'en', 1, 'https://ror.org/02a7p6b15 American India Foundation'),
(12021, 'https://ror.org/02rt6h515', 'en', 1, 'https://ror.org/02rt6h515 American Indian Cancer Foundation'),
(12022, 'https://ror.org/00xr4zj07', 'en', 1, 'https://ror.org/00xr4zj07 Cancer Care Association Sri Lanka'),
(12023, 'https://ror.org/01491cv93', 'en', 1, 'https://ror.org/01491cv93 Boston Cancer Policy Institute'),
(12024, 'https://ror.org/04hxmr882', 'no_lang_code', 1, 'https://ror.org/04hxmr882 Air Vehicle Integrated Design (United States)'),
(12025, 'https://ror.org/05fxhx251', 'en', 1, 'https://ror.org/05fxhx251 Adaptations Glassware Cooperative'),
(12026, 'https://ror.org/03b3akj74', 'en', 1, 'https://ror.org/03b3akj74 American Institute for Cancer Research'),
(12027, 'https://ror.org/03w7qe352', 'en', 1, 'https://ror.org/03w7qe352 Cancer Care Connection'),
(12028, 'https://ror.org/038zz3b86', 'no_lang_code', 1, 'https://ror.org/038zz3b86 AVM Biotechnology (United States)'),
(12029, 'https://ror.org/045xh6g63', 'en', 1, 'https://ror.org/045xh6g63 American Institute for Voice and Ear Research'),
(12030, 'https://ror.org/040an9w95', 'en', 1, 'https://ror.org/040an9w95 American Jewish Joint Distribution Committee'),
(12031, 'https://ror.org/0223p7w87', 'en', 1, 'https://ror.org/0223p7w87 Adaptive Adventures'),
(12032, 'https://ror.org/03m2pk393', 'en', 1, 'https://ror.org/03m2pk393 American Jewish World Service'),
(12033, 'https://ror.org/0594s0e67', 'en', 1, 'https://ror.org/0594s0e67 Carolinas Healthcare System'),
(12034, 'https://ror.org/037krc632', 'en', 1, 'https://ror.org/037krc632 Adaptive Sports and Recreation Association'),
(12035, 'https://ror.org/055nngk57', 'en', 1, 'https://ror.org/055nngk57 Adaptive Sports Program of Ohio'),
(12036, 'https://ror.org/04y3rzk98', 'en', 1, 'https://ror.org/04y3rzk98 American Kennel Club Canine Health Foundation'),
(12037, 'https://ror.org/02r3t1479', 'no_lang_code', 1, 'https://ror.org/02r3t1479 Adbroncus (Spain)'),
(12038, 'https://ror.org/04xsz2t23', 'en', 1, 'https://ror.org/04xsz2t23 Cancer Care Services'),
(12039, 'https://ror.org/01xjn4f21', 'en', 1, 'https://ror.org/01xjn4f21 CancerCare'),
(12040, 'https://ror.org/02pq0ct17', 'no_lang_code', 1, 'https://ror.org/02pq0ct17 Avrygen (United States)'),
(12041, 'https://ror.org/01zkc2t07', 'en', 1, 'https://ror.org/01zkc2t07 Addario Lung Cancer Medical Institute'),
(12042, 'https://ror.org/04eep0166', 'en', 1, 'https://ror.org/04eep0166 Association for Driver Rehabilitation Specialists'),
(12043, 'https://ror.org/01avrgx42', 'en', 1, 'https://ror.org/01avrgx42 Horizons Community Solutions'),
(12044, 'https://ror.org/04mdy5m11', 'en', 1, 'https://ror.org/04mdy5m11 Our Bodies Ourselves'),
(12045, 'https://ror.org/04dg6h767', 'en', 1, 'https://ror.org/04dg6h767 Dempsey Center'),
(12046, 'https://ror.org/03xvkpf85', 'en', 1, 'https://ror.org/03xvkpf85 Bowery Mission'),
(12047, 'https://ror.org/02gxz0343', 'en', 1, 'https://ror.org/02gxz0343 Adena Health System'),
(12048, 'https://ror.org/058nnmf19', 'en', 1, 'https://ror.org/058nnmf19 Aware Girls'),
(12049, 'https://ror.org/031nhd722', 'no_lang_code', 1, 'https://ror.org/031nhd722 Axios Biosciences (United States)'),
(12050, 'https://ror.org/00eb0j070', 'en', 1, 'https://ror.org/00eb0j070 Cancer Family Care'),
(12051, 'https://ror.org/03jd3wq64', 'no_lang_code', 1, 'https://ror.org/03jd3wq64 AXIS Dance (United States)');
INSERT INTO `rors` VALUES
(12052, 'https://ror.org/056f7r884', 'en', 1, 'https://ror.org/056f7r884 Boy Scouts of America Greater New York Councils'),
(12053, 'https://ror.org/056217264', 'en', 1, 'https://ror.org/056217264 Adesh Charitable Cancer Hospital'),
(12054, 'https://ror.org/0143vhw21', 'en', 1, 'https://ror.org/0143vhw21 Baba Farid University of Health Sciences ਬਾਬਾ ਫਰੀਦ ਯੂਨੀਵਰਸਿਟੀ ਆਫ਼ ਹੈਲਥ ਸਾਇੰਸਿਜ਼'),
(12055, 'https://ror.org/041pj0122', 'en', 1, 'https://ror.org/041pj0122 Adhikaar'),
(12056, 'https://ror.org/05b1wed79', 'en', 1, 'https://ror.org/05b1wed79 Cancer Foundation for Life'),
(12057, 'https://ror.org/029a54f25', 'en', 1, 'https://ror.org/029a54f25 Cancer Institute of New South Wales'),
(12058, 'https://ror.org/05yb6kv21', 'en', 1, 'https://ror.org/05yb6kv21 Boyne Research Institute'),
(12059, 'https://ror.org/02tmwx483', 'en', 1, 'https://ror.org/02tmwx483 Adirondack Medical Center'),
(12060, 'https://ror.org/03755ef98', 'en', 1, 'https://ror.org/03755ef98 American MedChem'),
(12061, 'https://ror.org/04rg3kp21', 'en', 1, 'https://ror.org/04rg3kp21 Adirondack Mountain Club'),
(12062, 'https://ror.org/04my1rt02', 'en', 1, 'https://ror.org/04my1rt02 Cancer Institute of Florida'),
(12063, 'https://ror.org/02dczrr13', 'en', 1, 'https://ror.org/02dczrr13 Boys & Girls Clubs of America'),
(12064, 'https://ror.org/02ka41c13', 'no_lang_code', 1, 'https://ror.org/02ka41c13 ADispell (United States)'),
(12065, 'https://ror.org/01k7b2e64', 'en', 1, 'https://ror.org/01k7b2e64 AdMeTech Foundation'),
(12066, 'https://ror.org/03ykmm292', 'en', 1, 'https://ror.org/03ykmm292 Advanced Barber College & Hair Design'),
(12067, 'https://ror.org/02mx1bf53', 'en', 1, 'https://ror.org/02mx1bf53 Advanced Cancer Therapeutics'),
(12068, 'https://ror.org/00ax59295', 'en', 1, 'https://ror.org/00ax59295 Cystic Fibrosis Foundation'),
(12069, 'https://ror.org/056w2e349', 'en', 1, 'https://ror.org/056w2e349 Cancer Legal Care'),
(12070, 'https://ror.org/04b1xdq74', 'no_lang_code', 1, 'https://ror.org/04b1xdq74 Advanced Imaging Projects (United States)'),
(12071, 'https://ror.org/035hy4w78', 'en', 1, 'https://ror.org/035hy4w78 Cancer Lifeline'),
(12072, 'https://ror.org/017f23p13', 'en', 1, 'https://ror.org/017f23p13 B.P. Koirala Memorial Cancer Hospital बी.पी. कोइराला मेमोरियल क्यान्सर हस्पिटल'),
(12073, 'https://ror.org/01c1z6p98', 'no_lang_code', 1, 'https://ror.org/01c1z6p98 Advanced Inhalation Therapies (Israel)'),
(12074, 'https://ror.org/0146hqc14', 'en', 1, 'https://ror.org/0146hqc14 Brain and Spinal Injury Trust Fund Commission'),
(12075, 'https://ror.org/01kjqa704', 'no_lang_code', 1, 'https://ror.org/01kjqa704 B''nai Jeshurun'),
(12076, 'https://ror.org/03ycv1b86', 'no_lang_code', 1, 'https://ror.org/03ycv1b86 Babcock & Wilcox (United States)'),
(12077, 'https://ror.org/05k7ts633', 'no_lang_code', 1, 'https://ror.org/05k7ts633 Advanced Neural Dynamics (United States)'),
(12078, 'https://ror.org/03hkb5805', 'en', 1, 'https://ror.org/03hkb5805 Baby Buggy'),
(12079, 'https://ror.org/02hhyky59', 'en', 1, 'https://ror.org/02hhyky59 Brain Injury Association of Louisiana'),
(12080, 'https://ror.org/0311sm390', 'en', 1, 'https://ror.org/0311sm390 Babylon Breast Cancer Coalition'),
(12081, 'https://ror.org/017yvv646', 'en', 1, 'https://ror.org/017yvv646 Brain Injury Association of Mississippi'),
(12082, 'https://ror.org/02c329420', 'es', 1, 'https://ror.org/02c329420 Hospital Nacional de Niños Bloom'),
(12083, 'https://ror.org/01z0fyn90', 'en', 1, 'https://ror.org/01z0fyn90 Cancer Patients Alliance for Clinical Trials & Survivorship'),
(12084, 'https://ror.org/01575p865', 'en', 1, 'https://ror.org/01575p865 Cancer Research And Biostatistics'),
(12085, 'https://ror.org/053d27v87', 'en', 1, 'https://ror.org/053d27v87 Brain Injury Alliance of Oregon'),
(12086, 'https://ror.org/0427e1040', 'en', 1, 'https://ror.org/0427e1040 Adventist HealthCare'),
(12087, 'https://ror.org/057321v51', 'no_lang_code', 1, 'https://ror.org/057321v51 Microbial Robotics (United States)'),
(12088, 'https://ror.org/05mm21816', 'en', 1, 'https://ror.org/05mm21816 Advocacy Alliance Center of Texas'),
(12089, 'https://ror.org/04fy6j421', 'en', 1, 'https://ror.org/04fy6j421 American Society of Clinical Oncology'),
(12090, 'https://ror.org/0391zqt72', 'en', 1, 'https://ror.org/0391zqt72 American Society of Gene Therapy and Cell Therapy'),
(12091, 'https://ror.org/057swaw40', 'en', 1, 'https://ror.org/057swaw40 Cancer Resource Center of the Desert'),
(12092, 'https://ror.org/037c70862', 'en', 1, 'https://ror.org/037c70862 American Society of Pediatric Hemotology Oncology'),
(12093, 'https://ror.org/04h60j158', 'en', 1, 'https://ror.org/04h60j158 Cancer Services Network'),
(12094, 'https://ror.org/00wtsha39', 'en', 1, 'https://ror.org/00wtsha39 Cancer Services of Grant County'),
(12095, 'https://ror.org/036s4q636', 'en', 1, 'https://ror.org/036s4q636 American Society of Regional Anesthesia and Pain Medicine'),
(12096, 'https://ror.org/05fw3gc88', 'no_lang_code', 1, 'https://ror.org/05fw3gc88 Balance Therapeutics (United States)'),
(12097, 'https://ror.org/01s9pe276', 'en', 1, 'https://ror.org/01s9pe276 Affinity Medical Group'),
(12098, 'https://ror.org/015sr5294', 'en', 1, 'https://ror.org/015sr5294 Balarat Outdoor Education'),
(12099, 'https://ror.org/00nt7fq33', 'en', 1, 'https://ror.org/00nt7fq33 Baltimore Adapted Recreation and Sports'),
(12100, 'https://ror.org/03vb4t572', 'en', 1, 'https://ror.org/03vb4t572 Cancer Services'),
(12101, 'https://ror.org/01jmfgs20', 'en', 1, 'https://ror.org/01jmfgs20 Baltimore Healthy Start'),
(12102, 'https://ror.org/023cq0m22', 'no_lang_code', 1, 'https://ror.org/023cq0m22 Brain Tools (United States)'),
(12103, 'https://ror.org/04c6bt026', 'no_lang_code', 1, 'https://ror.org/04c6bt026 Affinityfilms (United States)'),
(12104, 'https://ror.org/00ds1n976', 'en', 1, 'https://ror.org/00ds1n976 Baltimore Medical System'),
(12105, 'https://ror.org/00bz41f09', 'en', 1, 'https://ror.org/00bz41f09 Afghan Coalition'),
(12106, 'https://ror.org/02g7qxm32', 'no_lang_code', 1, 'https://ror.org/02g7qxm32 Afraxis (United States)'),
(12107, 'https://ror.org/00nqfs885', 'en', 1, 'https://ror.org/00nqfs885 Brazosport Health Foundation'),
(12108, 'https://ror.org/04w634n76', 'en', 1, 'https://ror.org/04w634n76 American Youth Soccer Organization'),
(12109, 'https://ror.org/032g70a71', 'en', 1, 'https://ror.org/032g70a71 Bangladesh Medical Association of North America'),
(12110, 'https://ror.org/0387qmw52', 'en', 1, 'https://ror.org/0387qmw52 Africa Health and Development International'),
(12111, 'https://ror.org/02wejrm29', 'en', 1, 'https://ror.org/02wejrm29 Cancer Services of New Mexico'),
(12112, 'https://ror.org/024a6d298', 'en', 1, 'https://ror.org/024a6d298 AmeriCares'),
(12113, 'https://ror.org/00m8shp48', 'en', 1, 'https://ror.org/00m8shp48 Brea Fire Department'),
(12114, 'https://ror.org/0008smw05', 'en', 1, 'https://ror.org/0008smw05 BreakOUT'),
(12115, 'https://ror.org/00ed6s086', 'en', 1, 'https://ror.org/00ed6s086 Cancer Services of Northeast Indiana'),
(12116, 'https://ror.org/0328xw886', 'no_lang_code', 1, 'https://ror.org/0328xw886 Amicus Therapeutics (United States)'),
(12117, 'https://ror.org/01av4dy75', 'en', 1, 'https://ror.org/01av4dy75 Baptist Health Foundation'),
(12118, 'https://ror.org/03fwqkz80', 'en', 1, 'https://ror.org/03fwqkz80 Cancer Society of the Bahamas'),
(12119, 'https://ror.org/055ahdj14', 'en', 1, 'https://ror.org/055ahdj14 Baptist Hospital'),
(12120, 'https://ror.org/01xmz1b70', 'en', 1, 'https://ror.org/01xmz1b70 Bay Area Community Health Advisory Council'),
(12121, 'https://ror.org/00g3f1n02', 'en', 1, 'https://ror.org/00g3f1n02 African American Health Institute of San Bernardino County'),
(12122, 'https://ror.org/05m753j61', 'en', 1, 'https://ror.org/05m753j61 The African-American Historical & Cultural Museum of the SJV'),
(12123, 'https://ror.org/02wxcva98', 'en', 1, 'https://ror.org/02wxcva98 African Institute for Development Policy'),
(12124, 'https://ror.org/038nc4w52', 'en', 1, 'https://ror.org/038nc4w52 Cancer Support Foundation'),
(12125, 'https://ror.org/02nkrhg40', 'en', 1, 'https://ror.org/02nkrhg40 Amref Health Africa'),
(12126, 'https://ror.org/031wqg810', 'en', 1, 'https://ror.org/031wqg810 African Organisation for Research and Training in Cancer'),
(12127, 'https://ror.org/031jky447', 'no_lang_code', 1, 'https://ror.org/031jky447 Alloksys (Netherlands)'),
(12128, 'https://ror.org/00k8bwh32', 'no_lang_code', 1, 'https://ror.org/00k8bwh32 Amrita Therapeutics (India)'),
(12129, 'https://ror.org/006r5gc68', 'en', 1, 'https://ror.org/006r5gc68 Breast Cancer Care and Research Fund'),
(12130, 'https://ror.org/05t9rkr85', 'en', 1, 'https://ror.org/05t9rkr85 Cancer Support Team'),
(12131, 'https://ror.org/022wvzp87', 'en', 1, 'https://ror.org/022wvzp87 Amsterdam Nursing Home'),
(12132, 'https://ror.org/01w8exq52', 'no_lang_code', 1, 'https://ror.org/01w8exq52 Amyndas Pharmaceuticals (United States)'),
(12133, 'https://ror.org/04rkt6002', 'en', 1, 'https://ror.org/04rkt6002 Cancer Survivors'' Fund'),
(12134, 'https://ror.org/00k4pey18', 'no_lang_code', 1, 'https://ror.org/00k4pey18 Cancer Targeted Technology (United States)'),
(12135, 'https://ror.org/0114t5q03', 'en', 1, 'https://ror.org/0114t5q03 Gorlin Syndrome Alliance'),
(12136, 'https://ror.org/034qswm17', 'en', 1, 'https://ror.org/034qswm17 Bay Area Cancer Connections'),
(12137, 'https://ror.org/02ta1kn73', 'en', 1, 'https://ror.org/02ta1kn73 Cancer Wellness Center'),
(12138, 'https://ror.org/048z5te50', 'en', 1, 'https://ror.org/048z5te50 Breast Cancer Family Foundation'),
(12139, 'https://ror.org/05kbsdg78', 'en', 1, 'https://ror.org/05kbsdg78 African Women''s Cancer Awareness Association'),
(12140, 'https://ror.org/05e3thx24', 'no_lang_code', 1, 'https://ror.org/05e3thx24 Andarix Pharmaceuticals (United States)'),
(12141, 'https://ror.org/030pnab13', 'en', 1, 'https://ror.org/030pnab13 Afrihealth Optonet Association'),
(12142, 'https://ror.org/02rn8bz16', 'en', 1, 'https://ror.org/02rn8bz16 Candlelighters Childhood Cancer Foundation of Nevada'),
(12143, 'https://ror.org/0343jw325', 'no_lang_code', 1, 'https://ror.org/0343jw325 AGADA Biosciences'),
(12144, 'https://ror.org/015eafn72', 'en', 1, 'https://ror.org/015eafn72 Candlelighters of West Texas & Southern New Mexico'),
(12145, 'https://ror.org/03kgp8j35', 'en', 1, 'https://ror.org/03kgp8j35 Arizona Spinal Cord Injury Association'),
(12146, 'https://ror.org/04fpx1h75', 'no_lang_code', 1, 'https://ror.org/04fpx1h75 Candy’s Place'),
(12147, 'https://ror.org/040z4nv21', 'de', 1, 'https://ror.org/040z4nv21 Agaplesion Bethanien Krankenhaus'),
(12148, 'https://ror.org/04b8ams39', 'en', 1, 'https://ror.org/04b8ams39 Breast Cancer Foundation of the Ozarks'),
(12149, 'https://ror.org/01t00dc98', 'en', 1, 'https://ror.org/01t00dc98 Aging in America'),
(12150, 'https://ror.org/04bgneb83', 'en', 1, 'https://ror.org/04bgneb83 Breast Cancer Help'),
(12151, 'https://ror.org/04kz5k469', 'it', 1, 'https://ror.org/04kz5k469 Azienda Sanitaria Locale N. 2 Savonese'),
(12152, 'https://ror.org/04nmkrt20', 'en', 1, 'https://ror.org/04nmkrt20 Canine Assistants'),
(12153, 'https://ror.org/0348ff195', 'en', 1, 'https://ror.org/0348ff195 Breast Cancer Research Foundation'),
(12154, 'https://ror.org/029x54d87', 'en', 1, 'https://ror.org/029x54d87 Aguilas El Ambiente Asamblea Gay Unida Impactando Latinos A Superarse'),
(12155, 'https://ror.org/058acxs86', 'en', 1, 'https://ror.org/058acxs86 Canine Companions for Independence'),
(12156, 'https://ror.org/029m8ac94', 'en', 1, 'https://ror.org/029m8ac94 AIDS Community Research Consortium'),
(12157, 'https://ror.org/02gr0tn14', 'en', 1, 'https://ror.org/02gr0tn14 Breast Cancer Resource Centre of Austin'),
(12158, 'https://ror.org/05an4ky72', 'en', 1, 'https://ror.org/05an4ky72 Backbones'),
(12159, 'https://ror.org/05n8mee18', 'en', 1, 'https://ror.org/05n8mee18 AIDS Healthcare Foundation'),
(12160, 'https://ror.org/0092p0v85', 'en', 1, 'https://ror.org/0092p0v85 Breast International Group'),
(12161, 'https://ror.org/04y33ew61', 'en', 1, 'https://ror.org/04y33ew61 AIDS Project Of The East Bay'),
(12162, 'https://ror.org/03xbp3895', 'en', 1, 'https://ror.org/03xbp3895 AIDS Research Alliance'),
(12163, 'https://ror.org/03y8qgg33', 'en', 1, 'https://ror.org/03y8qgg33 Radiant Health Centers'),
(12164, 'https://ror.org/01fx4eg39', 'en', 1, 'https://ror.org/01fx4eg39 HCG Cancer Hospital ಹೆಲ್ತ್ಕೇರ್ ಗ್ಲೋಬಲ್ ಎಂಟರ್ಪ್ರೈಸಸ್ ಲಿಮಿಟೆಡ್'),
(12165, 'https://ror.org/0470pq820', 'en', 1, 'https://ror.org/0470pq820 Indian Cancer Society'),
(12166, 'https://ror.org/003sztp18', 'en', 1, 'https://ror.org/003sztp18 Breathe California Golden Gate Public Health Partnership'),
(12167, 'https://ror.org/01djrwd47', 'en', 1, 'https://ror.org/01djrwd47 Breathe California of Los Angeles County'),
(12168, 'https://ror.org/00e67e117', 'en', 1, 'https://ror.org/00e67e117 Angel Flight South Central'),
(12169, 'https://ror.org/04pq0yg77', 'en', 1, 'https://ror.org/04pq0yg77 Cape Cod Healthcare'),
(12170, 'https://ror.org/01z3mbd29', 'en', 1, 'https://ror.org/01z3mbd29 Cape Fear Museum'),
(12171, 'https://ror.org/05pmyqf04', 'en', 1, 'https://ror.org/05pmyqf04 Angel Foundation'),
(12172, 'https://ror.org/049t27950', 'en', 1, 'https://ror.org/049t27950 CAPEable Adventures'),
(12173, 'https://ror.org/03gv7xs09', 'en', 1, 'https://ror.org/03gv7xs09 Capital Rowing Club'),
(12174, 'https://ror.org/001hzk554', 'en', 1, 'https://ror.org/001hzk554 Boston Back Bay Plastic Surgery'),
(12175, 'https://ror.org/02bq8mb39', 'en', 1, 'https://ror.org/02bq8mb39 Capital Area Human Services'),
(12176, 'https://ror.org/04xh2sm62', 'en', 1, 'https://ror.org/04xh2sm62 Angelica Patient Assistance Program'),
(12177, 'https://ror.org/00ahajr35', 'en', 1, 'https://ror.org/00ahajr35 Capital City Area Health Education Center'),
(12178, 'https://ror.org/01hfq7m30', 'en', 1, 'https://ror.org/01hfq7m30 Capital District Center for Independence'),
(12179, 'https://ror.org/017t82m28', 'no_lang_code', 1, 'https://ror.org/017t82m28 Angimmune (United States)'),
(12180, 'https://ror.org/04qvzh720', 'en', 1, 'https://ror.org/04qvzh720 Bassett Healthcare Network'),
(12181, 'https://ror.org/020n82m84', 'en', 1, 'https://ror.org/020n82m84 AISECT University आईसेक्ट विश्वविद्यालय'),
(12182, 'https://ror.org/01kjj9155', 'en', 1, 'https://ror.org/01kjj9155 Baton Rouge General Foundation'),
(12183, 'https://ror.org/05vq3sw48', 'en', 1, 'https://ror.org/05vq3sw48 Breathe California of Sacramento Emigrant Trails'),
(12184, 'https://ror.org/00406q532', 'en', 1, 'https://ror.org/00406q532 Providence Alaska Medical Center'),
(12185, 'https://ror.org/01996x261', 'en', 1, 'https://ror.org/01996x261 Breckenridge Outdoor Education Center'),
(12186, 'https://ror.org/01f6f4a30', 'no_lang_code', 1, 'https://ror.org/01f6f4a30 Capital Meeting Planning'),
(12187, 'https://ror.org/03h7w4021', 'en', 1, 'https://ror.org/03h7w4021 Bauer Research Foundation'),
(12188, 'https://ror.org/044ve3x29', 'en', 1, 'https://ror.org/044ve3x29 Bay Area Community Resources'),
(12189, 'https://ror.org/019m53d79', 'en', 1, 'https://ror.org/019m53d79 Capital of Texas Team Survivor'),
(12190, 'https://ror.org/05ffh9f12', 'en', 1, 'https://ror.org/05ffh9f12 Bay Area Outreach and Recreation Program'),
(12191, 'https://ror.org/041qezx89', 'en', 1, 'https://ror.org/041qezx89 Bay Area Pediatric Pulmonary Medical Corporation'),
(12192, 'https://ror.org/03q6p5x66', 'en', 1, 'https://ror.org/03q6p5x66 Capital Region Action Against Breast Cancer'),
(12193, 'https://ror.org/0249wjr08', 'en', 1, 'https://ror.org/0249wjr08 Al Shehab institution for Comprehensive Development'),
(12194, 'https://ror.org/03by37p23', 'en', 1, 'https://ror.org/03by37p23 Brent''s Place'),
(12195, 'https://ror.org/022m0cc63', 'en', 1, 'https://ror.org/022m0cc63 Bay Clinic'),
(12196, 'https://ror.org/03q6a6m98', 'en', 1, 'https://ror.org/03q6a6m98 Bay Pines Foundation'),
(12197, 'https://ror.org/0565s2t44', 'en', 1, 'https://ror.org/0565s2t44 Al-Ghad International Health Sciences Colleges كليات الغد الدولية للعلوم الصحية'),
(12198, 'https://ror.org/0385stf53', 'no_lang_code', 1, 'https://ror.org/0385stf53 Ala-Septic Pharmaceutical Research (United States)'),
(12199, 'https://ror.org/00r5dn664', 'en', 1, 'https://ror.org/00r5dn664 Caporal Assistance Network'),
(12200, 'https://ror.org/04x5whn41', 'en', 1, 'https://ror.org/04x5whn41 Alameda County Community Food Bank'),
(12201, 'https://ror.org/017d1a722', 'no_lang_code', 1, 'https://ror.org/017d1a722 Caprion (Canada)'),
(12202, 'https://ror.org/05kqhkc03', 'en', 1, 'https://ror.org/05kqhkc03 Alaska Center for Children and Adults'),
(12203, 'https://ror.org/032r53m24', 'no_lang_code', 1, 'https://ror.org/032r53m24 Cardiavent (United States)'),
(12204, 'https://ror.org/01m9n8h83', 'en', 1, 'https://ror.org/01m9n8h83 Bayhealth Foundation'),
(12205, 'https://ror.org/01hv1yg09', 'en', 1, 'https://ror.org/01hv1yg09 Albany Research Institute'),
(12206, 'https://ror.org/0310r6290', 'en', 1, 'https://ror.org/0310r6290 Cardinal Hill Rehabilitation Hospital'),
(12207, 'https://ror.org/01k1b2g25', 'en', 1, 'https://ror.org/01k1b2g25 Alberta Cancer Foundation'),
(12208, 'https://ror.org/007agsn16', 'en', 1, 'https://ror.org/007agsn16 Cardinal Ritter Senior Services'),
(12209, 'https://ror.org/04vaqkg10', 'en', 1, 'https://ror.org/04vaqkg10 The Bretton Woods Committee'),
(12210, 'https://ror.org/011xa1033', 'en', 1, 'https://ror.org/011xa1033 Albuquerque Area Indian Health Board'),
(12211, 'https://ror.org/003g9x449', 'en', 1, 'https://ror.org/003g9x449 BC Wheelchair Sports Association'),
(12212, 'https://ror.org/00na7mj62', 'no_lang_code', 1, 'https://ror.org/00na7mj62 BD Technologie (United States)'),
(12213, 'https://ror.org/04aqebj37', 'en', 1, 'https://ror.org/04aqebj37 Aldersgate Camp and Retreat Center'),
(12214, 'https://ror.org/02ry8c790', 'en', 1, 'https://ror.org/02ry8c790 Beads of Courage'),
(12215, 'https://ror.org/04wkwbq27', 'en', 1, 'https://ror.org/04wkwbq27 Alderson Broaddus University'),
(12216, 'https://ror.org/04tpatx34', 'en', 1, 'https://ror.org/04tpatx34 The Epsilon Group'),
(12217, 'https://ror.org/04257nk59', 'en', 1, 'https://ror.org/04257nk59 Beatitudes Campus'),
(12218, 'https://ror.org/03s5wtj28', 'en', 1, 'https://ror.org/03s5wtj28 Cardio-Facio-Cutaneous International'),
(12219, 'https://ror.org/03fahgd34', 'en', 1, 'https://ror.org/03fahgd34 Bricks + Books Foundation'),
(12220, 'https://ror.org/02k4rpx08', 'en', 1, 'https://ror.org/02k4rpx08 Care 2 Tri'),
(12221, 'https://ror.org/02p0ex288', 'en', 1, 'https://ror.org/02p0ex288 Bridge II Sports'),
(12222, 'https://ror.org/014r6zg48', 'en', 1, 'https://ror.org/014r6zg48 Neighborhood Health'),
(12223, 'https://ror.org/01gg7p150', 'en', 1, 'https://ror.org/01gg7p150 CARE Canada'),
(12224, 'https://ror.org/0471xz330', 'en', 1, 'https://ror.org/0471xz330 Bridgeport Hospital Foundation'),
(12225, 'https://ror.org/00xj74h46', 'en', 1, 'https://ror.org/00xj74h46 Care India'),
(12226, 'https://ror.org/03p60dy64', 'en', 1, 'https://ror.org/03p60dy64 Bridging Bionics Foundation'),
(12227, 'https://ror.org/009htht73', 'en', 1, 'https://ror.org/009htht73 Alicia Rose Victorious Foundation'),
(12228, 'https://ror.org/03efkag80', 'en', 1, 'https://ror.org/03efkag80 Aliis Inserviendo Consumor Foundation'),
(12229, 'https://ror.org/0573tpn82', 'en', 1, 'https://ror.org/0573tpn82 Alive Hospice'),
(12230, 'https://ror.org/02jyxcp49', 'en', 1, 'https://ror.org/02jyxcp49 Alkaptonuria Society'),
(12231, 'https://ror.org/01hsm6g97', 'en', 1, 'https://ror.org/01hsm6g97 CARE International in Vietnam'),
(12232, 'https://ror.org/00mgb3084', 'no_lang_code', 1, 'https://ror.org/00mgb3084 Alkeus Pharmaceuticals (United States)'),
(12233, 'https://ror.org/04sej8624', 'en', 1, 'https://ror.org/04sej8624 Beaufort Memorial Hospital'),
(12234, 'https://ror.org/00e0nxq90', 'en', 1, 'https://ror.org/00e0nxq90 Care International Sri Lanka'),
(12235, 'https://ror.org/05dwc3j90', 'no_lang_code', 1, 'https://ror.org/05dwc3j90 Alkor Bio (Russia)'),
(12236, 'https://ror.org/00rnasn15', 'no_lang_code', 1, 'https://ror.org/00rnasn15 Caregiver Technologies (United States)'),
(12237, 'https://ror.org/03az21a93', 'no_lang_code', 1, 'https://ror.org/03az21a93 Swasthya Diabetes Care'),
(12238, 'https://ror.org/003t61x02', 'en', 1, 'https://ror.org/003t61x02 Bristlecone Family Resources'),
(12239, 'https://ror.org/01nrn0142', 'en', 1, 'https://ror.org/01nrn0142 Bedford Research Foundation'),
(12240, 'https://ror.org/030dazv21', 'en', 1, 'https://ror.org/030dazv21 All Kinds Of Minds'),
(12241, 'https://ror.org/01y23cm11', 'en', 1, 'https://ror.org/01y23cm11 All Out Adventures'),
(12242, 'https://ror.org/02e8g2j71', 'en', 1, 'https://ror.org/02e8g2j71 All-Ukrainian Charitable Foundation Coalition of HIV-Service Organizations'),
(12243, 'https://ror.org/0446p2g62', 'en', 1, 'https://ror.org/0446p2g62 Bristol Bay Area Health Corporation'),
(12244, 'https://ror.org/01a0heb61', 'no_lang_code', 1, 'https://ror.org/01a0heb61 Allakos (United States)'),
(12245, 'https://ror.org/05w47ar02', 'en', 1, 'https://ror.org/05w47ar02 Allegany County Health Department'),
(12246, 'https://ror.org/05mtvr411', 'en', 1, 'https://ror.org/05mtvr411 Austin Children''s Chest Associates'),
(12247, 'https://ror.org/01v000k46', 'en', 1, 'https://ror.org/01v000k46 Alleghany County Schools'),
(12248, 'https://ror.org/00caks861', 'en', 1, 'https://ror.org/00caks861 Bedford VA Research Corporation'),
(12249, 'https://ror.org/05973ve37', 'en', 1, 'https://ror.org/05973ve37 Behavioral Health Services'),
(12250, 'https://ror.org/0548cbe65', 'no_lang_code', 1, 'https://ror.org/0548cbe65 CareWheels'),
(12251, 'https://ror.org/0076zct58', 'en', 1, 'https://ror.org/0076zct58 Anhalt University of Applied Sciences Hochschule Anhalt'),
(12252, 'https://ror.org/0433f0x41', 'no_lang_code', 1, 'https://ror.org/0433f0x41 Bristol-Myers Squibb (Italy)'),
(12253, 'https://ror.org/00672e058', 'en', 1, 'https://ror.org/00672e058 Allen Temple Baptist Church'),
(12254, 'https://ror.org/020g75c03', 'no_lang_code', 1, 'https://ror.org/020g75c03 Takara (Sweden)'),
(12255, 'https://ror.org/00pxmse48', 'en', 1, 'https://ror.org/00pxmse48 Allergy, Asthma and Clinical Research Center'),
(12256, 'https://ror.org/03pmyqy44', 'en', 1, 'https://ror.org/03pmyqy44 Alliance Community Services'),
(12257, 'https://ror.org/00aj75s74', 'en', 1, 'https://ror.org/00aj75s74 Belmont Abbey College'),
(12258, 'https://ror.org/02c073z28', 'en', 1, 'https://ror.org/02c073z28 Caribbean Environmental Health Institute'),
(12259, 'https://ror.org/01q24qh92', 'en', 1, 'https://ror.org/01q24qh92 Ben Archer Health Centers'),
(12260, 'https://ror.org/0355hha51', 'no_lang_code', 1, 'https://ror.org/0355hha51 Berand (Ireland)'),
(12261, 'https://ror.org/02exqvj96', 'en', 1, 'https://ror.org/02exqvj96 British Columbia Easter Seals Society for Children with Disabilities'),
(12262, 'https://ror.org/05vrepm87', 'en', 1, 'https://ror.org/05vrepm87 Bergen Catholic High School'),
(12263, 'https://ror.org/05k9wtr55', 'en', 1, 'https://ror.org/05k9wtr55 Berklee College of Music'),
(12264, 'https://ror.org/05e040g53', 'en', 1, 'https://ror.org/05e040g53 British Columbia Mobility Opportunities Society'),
(12265, 'https://ror.org/001qfrp14', 'en', 1, 'https://ror.org/001qfrp14 Abilities In Motion'),
(12266, 'https://ror.org/00xse2697', 'en', 1, 'https://ror.org/00xse2697 Alliance for Community Research and Development'),
(12267, 'https://ror.org/00ef3rg49', 'en', 1, 'https://ror.org/00ef3rg49 Arizona Veterans Research and Education Foundation'),
(12268, 'https://ror.org/046z87a78', 'no_lang_code', 1, 'https://ror.org/046z87a78 Carlebach Shul'),
(12269, 'https://ror.org/014tnef40', 'en', 1, 'https://ror.org/014tnef40 Hosparus'),
(12270, 'https://ror.org/0105khm66', 'en', 1, 'https://ror.org/0105khm66 Alliance of People with disAbilities'),
(12271, 'https://ror.org/00n876k34', 'no_lang_code', 1, 'https://ror.org/00n876k34 Beta-O2 Technologies (Israel)'),
(12272, 'https://ror.org/03z9qf407', 'en', 1, 'https://ror.org/03z9qf407 Bronson Health Foundation'),
(12273, 'https://ror.org/04p5awn87', 'en', 1, 'https://ror.org/04p5awn87 All Star Volleyball Association'),
(12274, 'https://ror.org/05pssxv84', 'en', 1, 'https://ror.org/05pssxv84 Aloha Medical Mission'),
(12275, 'https://ror.org/00c0q9724', 'en', 1, 'https://ror.org/00c0q9724 Health Care Management Group'),
(12276, 'https://ror.org/02hgsjt50', 'no_lang_code', 1, 'https://ror.org/02hgsjt50 Alpha Cancer Technologies'),
(12277, 'https://ror.org/040necf22', 'en', 1, 'https://ror.org/040necf22 Alpha Omega Veterans Services'),
(12278, 'https://ror.org/0397aw971', 'en', 1, 'https://ror.org/0397aw971 Bronx Independent Living Services'),
(12279, 'https://ror.org/04ywkc356', 'en', 1, 'https://ror.org/04ywkc356 Long Island Community Hospital'),
(12280, 'https://ror.org/04waxxs70', 'en', 1, 'https://ror.org/04waxxs70 Carnegie Hill Neighbors'),
(12281, 'https://ror.org/04f3amf18', 'en', 1, 'https://ror.org/04f3amf18 Alpha One'),
(12282, 'https://ror.org/00xz1ct52', 'en', 1, 'https://ror.org/00xz1ct52 The Brooklyn Rail'),
(12283, 'https://ror.org/02qk65b13', 'en', 1, 'https://ror.org/02qk65b13 Brooklyn Technical High School'),
(12284, 'https://ror.org/011tnb136', 'en', 1, 'https://ror.org/011tnb136 Carolina Veterinary Specialists'),
(12285, 'https://ror.org/026kac972', 'en', 1, 'https://ror.org/026kac972 Alpine Learning Group'),
(12286, 'https://ror.org/03wyccz80', 'en', 1, 'https://ror.org/03wyccz80 Beth C. Wright Cancer Resource Center'),
(12287, 'https://ror.org/02rxn8n18', 'en', 1, 'https://ror.org/02rxn8n18 The Carolinas Center'),
(12288, 'https://ror.org/01edwz996', 'en', 1, 'https://ror.org/01edwz996 Brown County Public Health Department'),
(12289, 'https://ror.org/04460xd73', 'en', 1, 'https://ror.org/04460xd73 Ankhkasta Natural Healing'),
(12290, 'https://ror.org/01cm1nq79', 'en', 1, 'https://ror.org/01cm1nq79 Brunswick County Schools'),
(12291, 'https://ror.org/0152zh161', 'en', 1, 'https://ror.org/0152zh161 Caroline Church of Brookhaven'),
(12292, 'https://ror.org/045pcya52', 'en', 1, 'https://ror.org/045pcya52 Ann Arbor Center for Independent Living'),
(12293, 'https://ror.org/04gz4vz18', 'no_lang_code', 1, 'https://ror.org/04gz4vz18 Carolus Therapeutics (United States)'),
(12294, 'https://ror.org/021swwa08', 'hu', 1, 'https://ror.org/021swwa08 Bethesda Gyermekkórház Magyarországi Református Egyház Bethesda Gyermekkórháza'),
(12295, 'https://ror.org/03g83vg44', 'no_lang_code', 1, 'https://ror.org/03g83vg44 ALS Biopharma (United States)'),
(12296, 'https://ror.org/049j2y056', 'en', 1, 'https://ror.org/049j2y056 Anna C. Scott School'),
(12297, 'https://ror.org/016jdw248', 'en', 1, 'https://ror.org/016jdw248 Carolyn Dorfman Dance Company'),
(12298, 'https://ror.org/00the9035', 'no_lang_code', 1, 'https://ror.org/00the9035 Alsa Corporation (United States)'),
(12299, 'https://ror.org/01r2tv445', 'no_lang_code', 1, 'https://ror.org/01r2tv445 Annam Biosciences (United States)'),
(12300, 'https://ror.org/00jsack41', 'en', 1, 'https://ror.org/00jsack41 Carteret County Public School System'),
(12301, 'https://ror.org/050564b76', 'en', 1, 'https://ror.org/050564b76 Annaswamy Mudaliar General Hospital'),
(12302, 'https://ror.org/03arv1448', 'en', 1, 'https://ror.org/03arv1448 Being Adept'),
(12303, 'https://ror.org/02nbz6h12', 'en', 1, 'https://ror.org/02nbz6h12 Casting for Recovery'),
(12304, 'https://ror.org/04x5fkp12', 'no_lang_code', 1, 'https://ror.org/04x5fkp12 Catabasis Pharmaceuticals (United States)'),
(12305, 'https://ror.org/046mhfn38', 'en', 1, 'https://ror.org/046mhfn38 Belarusian Research Center For Pediatric Oncology and Hematology Республиканский научно-практический центр детской онкологии, гематологии и иммунологии Рэспубліканскі навукова-практычны цэнтр дзіцячай анкалогіі, гематалогіі і імуналогіі'),
(12306, 'https://ror.org/03eevrx63', 'en', 1, 'https://ror.org/03eevrx63 Catskill Regional Medical Center'),
(12307, 'https://ror.org/00et1y633', 'en', 1, 'https://ror.org/00et1y633 Anti Domestic Violence Coalition'),
(12308, 'https://ror.org/02k37yq18', 'en', 1, 'https://ror.org/02k37yq18 CASA for Kids'),
(12309, 'https://ror.org/05yc27210', 'en', 1, 'https://ror.org/05yc27210 Bethel Elementary School'),
(12310, 'https://ror.org/00509dp49', 'en', 1, 'https://ror.org/00509dp49 Any Baby Can'),
(12311, 'https://ror.org/041npkc82', 'no_lang_code', 1, 'https://ror.org/041npkc82 AparnaBio (United States)'),
(12312, 'https://ror.org/05ea9vw65', 'no_lang_code', 1, 'https://ror.org/05ea9vw65 ApeX Therapeutics (United States)'),
(12313, 'https://ror.org/035fmf715', 'en', 1, 'https://ror.org/035fmf715 Apollo Hospitals అపోలో హాస్పిటల్స్'),
(12314, 'https://ror.org/043yg4r95', 'no_lang_code', 1, 'https://ror.org/043yg4r95 Catalyst Pharmaceuticals (United States)'),
(12315, 'https://ror.org/05h034e74', 'no_lang_code', 1, 'https://ror.org/05h034e74 ApoVax (United States)'),
(12316, 'https://ror.org/04t4q4w41', 'en', 1, 'https://ror.org/04t4q4w41 Worshipful Society of Apothecaries'),
(12317, 'https://ror.org/00wgdxy37', 'en', 1, 'https://ror.org/00wgdxy37 Appalachian Mountain Advocates'),
(12318, 'https://ror.org/04y1g1r77', 'no_lang_code', 1, 'https://ror.org/04y1g1r77 AppliCote Associates (United States)'),
(12319, 'https://ror.org/014b45274', 'en', 1, 'https://ror.org/014b45274 Catapult'),
(12320, 'https://ror.org/05sdm2149', 'no_lang_code', 1, 'https://ror.org/05sdm2149 Applied Biomics (United States)'),
(12321, 'https://ror.org/007vhwd23', 'en', 1, 'https://ror.org/007vhwd23 Cathedral Church of Saint John the Divine'),
(12322, 'https://ror.org/03xb0b587', 'no_lang_code', 1, 'https://ror.org/03xb0b587 CDG Therapeutics (United States)'),
(12323, 'https://ror.org/05wq9kf61', 'en', 1, 'https://ror.org/05wq9kf61 Alternative Opportunities'),
(12324, 'https://ror.org/01feaq157', 'en', 1, 'https://ror.org/01feaq157 Cathedral Health Services'),
(12325, 'https://ror.org/04f6n8s05', 'no_lang_code', 1, 'https://ror.org/04f6n8s05 Aptitude Medical Systems'),
(12326, 'https://ror.org/0252gzq20', 'en', 1, 'https://ror.org/0252gzq20 Aquinas College - Michigan'),
(12327, 'https://ror.org/0314gk942', 'en', 1, 'https://ror.org/0314gk942 Betty Jean Kerr People’s Health Centers'),
(12328, 'https://ror.org/0599afn45', 'en', 1, 'https://ror.org/0599afn45 Arkansas Spinal Cord Commission'),
(12329, 'https://ror.org/0586n3304', 'en', 1, 'https://ror.org/0586n3304 ARC Community Services'),
(12330, 'https://ror.org/03j091372', 'en', 1, 'https://ror.org/03j091372 Cecil County Health Department'),
(12331, 'https://ror.org/002m7jd84', 'en', 1, 'https://ror.org/002m7jd84 Catholic Charities'),
(12332, 'https://ror.org/04vtmen79', 'es', 1, 'https://ror.org/04vtmen79 CECOLFES'),
(12333, 'https://ror.org/05py5he32', 'en', 1, 'https://ror.org/05py5he32 Catholic Charities of the Archdiocese of Chicago'),
(12334, 'https://ror.org/02djyqb52', 'en', 1, 'https://ror.org/02djyqb52 Burn Institute'),
(12335, 'https://ror.org/01xgdvm53', 'en', 1, 'https://ror.org/01xgdvm53 Bhagwan Mahaveer Cancer Hospital and Research Centre'),
(12336, 'https://ror.org/044kgnr82', 'en', 1, 'https://ror.org/044kgnr82 Catholic Charities of the Diocese of St. Cloud'),
(12337, 'https://ror.org/048g5yp93', 'en', 1, 'https://ror.org/048g5yp93 Bhaktapur Cancer Hospital भक्तपुर क्यान्सर अस्पताल'),
(12338, 'https://ror.org/01qavh626', 'en', 1, 'https://ror.org/01qavh626 Diocese of Lansing'),
(12339, 'https://ror.org/016jzy244', 'en', 1, 'https://ror.org/016jzy244 Catholic Family Center'),
(12340, 'https://ror.org/05qwb3m66', 'en', 1, 'https://ror.org/05qwb3m66 Celebration Stem Cell Centre'),
(12341, 'https://ror.org/0344pp695', 'en', 1, 'https://ror.org/0344pp695 Big Brothers Big Sisters of Vermilion County'),
(12342, 'https://ror.org/007k2q988', 'no_lang_code', 1, 'https://ror.org/007k2q988 Arecor (United Kingdom)'),
(12343, 'https://ror.org/03znvgc81', 'en', 1, 'https://ror.org/03znvgc81 Areufit Health Services'),
(12344, 'https://ror.org/053nagh38', 'en', 1, 'https://ror.org/053nagh38 Charlotte Maxwell Clinic'),
(12345, 'https://ror.org/0252zek10', 'en', 1, 'https://ror.org/0252zek10 Bike and Build'),
(12346, 'https://ror.org/02h9mq080', 'no_lang_code', 1, 'https://ror.org/02h9mq080 Argos Therapeutics (United States)'),
(12347, 'https://ror.org/04nstae51', 'en', 1, 'https://ror.org/04nstae51 Charlotte-Mecklenburg Schools'),
(12348, 'https://ror.org/01kstvd89', 'no_lang_code', 1, 'https://ror.org/01kstvd89 Bio-Nucleonics (United States)'),
(12349, 'https://ror.org/04mzbw652', 'no_lang_code', 1, 'https://ror.org/04mzbw652 Ariadne Diagnostics (United States)'),
(12350, 'https://ror.org/00s0xa683', 'en', 1, 'https://ror.org/00s0xa683 Journey Museum'),
(12351, 'https://ror.org/04enw2g11', 'en', 1, 'https://ror.org/04enw2g11 Arie Crown Hebrew Day School'),
(12352, 'https://ror.org/0476ayz92', 'no_lang_code', 1, 'https://ror.org/0476ayz92 Bioarray Genetics (United States)'),
(12353, 'https://ror.org/05yh2xc78', 'no_lang_code', 1, 'https://ror.org/05yh2xc78 Celladon Corporation (United States)'),
(12354, 'https://ror.org/042p1vp06', 'no_lang_code', 1, 'https://ror.org/042p1vp06 BioBlast Pharma (Israel)'),
(12355, 'https://ror.org/02yre5r83', 'en', 1, 'https://ror.org/02yre5r83 Chase Brexton Health Care'),
(12356, 'https://ror.org/03k8m9k22', 'en', 1, 'https://ror.org/03k8m9k22 Chase Foundation'),
(12357, 'https://ror.org/00km9rx91', 'no_lang_code', 1, 'https://ror.org/00km9rx91 Altos Therapeutics (United States)'),
(12358, 'https://ror.org/05rxdtg07', 'no_lang_code', 1, 'https://ror.org/05rxdtg07 BioCrea (Germany)'),
(12359, 'https://ror.org/01c3e9r47', 'no_lang_code', 1, 'https://ror.org/01c3e9r47 Biodel (United States)'),
(12360, 'https://ror.org/02gd18467', 'en', 1, 'https://ror.org/02gd18467 Chelsea and Westminster Hospital NHS Foundation Trust'),
(12361, 'https://ror.org/013h0sc84', 'no_lang_code', 1, 'https://ror.org/013h0sc84 Cellular Engineering Technologies (United States)'),
(12362, 'https://ror.org/035exww05', 'no_lang_code', 1, 'https://ror.org/035exww05 CheminPharma (United States)'),
(12363, 'https://ror.org/01rd6m198', 'en', 1, 'https://ror.org/01rd6m198 BioFact Environmental Health Research Center'),
(12364, 'https://ror.org/014fc3d26', 'en', 1, 'https://ror.org/014fc3d26 Chemo Comfort'),
(12365, 'https://ror.org/055qx1z79', 'en', 1, 'https://ror.org/055qx1z79 Chenango Health Network'),
(12366, 'https://ror.org/03rrgzq96', 'en', 1, 'https://ror.org/03rrgzq96 Cherokee Boys Club'),
(12367, 'https://ror.org/032d2f085', 'en', 1, 'https://ror.org/032d2f085 Cherokee Central Schools'),
(12368, 'https://ror.org/04hm3xx61', 'en', 1, 'https://ror.org/04hm3xx61 Arkansas Prostate Cancer Foundation'),
(12369, 'https://ror.org/023kbzw23', 'no_lang_code', 1, 'https://ror.org/023kbzw23 BioEnergetics (United States)'),
(12370, 'https://ror.org/03w6qq889', 'en', 1, 'https://ror.org/03w6qq889 College of the Ozarks'),
(12371, 'https://ror.org/05wkmd624', 'en', 1, 'https://ror.org/05wkmd624 Arlington Free Clinic'),
(12372, 'https://ror.org/047znxb10', 'no_lang_code', 1, 'https://ror.org/047znxb10 Biojenc (United States)'),
(12373, 'https://ror.org/00vxsqn95', 'en', 1, 'https://ror.org/00vxsqn95 Archdiocese of New Orleans'),
(12374, 'https://ror.org/02t21c861', 'en', 1, 'https://ror.org/02t21c861 Collinsville Area Recreation District'),
(12375, 'https://ror.org/05neag745', 'en', 1, 'https://ror.org/05neag745 Life Sciences Research Partners'),
(12376, 'https://ror.org/050c96876', 'no_lang_code', 1, 'https://ror.org/050c96876 Chersco (United States)'),
(12377, 'https://ror.org/017maz245', 'en', 1, 'https://ror.org/017maz245 Cheshire Home'),
(12378, 'https://ror.org/02xdt2g09', 'en', 1, 'https://ror.org/02xdt2g09 Center for Accessible Living'),
(12379, 'https://ror.org/0145t7b41', 'en', 1, 'https://ror.org/0145t7b41 Cheshire Medical Center'),
(12380, 'https://ror.org/003cpzf24', 'en', 1, 'https://ror.org/003cpzf24 Chess in the Schools'),
(12381, 'https://ror.org/04by0yr47', 'no_lang_code', 1, 'https://ror.org/04by0yr47 ARMGO Pharma (United States)'),
(12382, 'https://ror.org/05j2ppz60', 'en', 1, 'https://ror.org/05j2ppz60 Chest Medicine Associates'),
(12383, 'https://ror.org/04398v158', 'en', 1, 'https://ror.org/04398v158 Center for Advanced Diagnostics, Evaluation and Therapeutics'),
(12384, 'https://ror.org/024natw76', 'en', 1, 'https://ror.org/024natw76 Chez Panisse Restaurant and Cafe'),
(12385, 'https://ror.org/01bf0r740', 'en', 1, 'https://ror.org/01bf0r740 Arms Wide Open Community Development Corporation'),
(12386, 'https://ror.org/02bsxq855', 'en', 1, 'https://ror.org/02bsxq855 Chicago Association of Black Social Workers'),
(12387, 'https://ror.org/01qqbs339', 'en', 1, 'https://ror.org/01qqbs339 Chicago Child Care Society'),
(12388, 'https://ror.org/03bb2z510', 'en', 1, 'https://ror.org/03bb2z510 Cares Community Health'),
(12389, 'https://ror.org/04z947e46', 'en', 1, 'https://ror.org/04z947e46 Center for American Progress'),
(12390, 'https://ror.org/0436ezp29', 'en', 1, 'https://ror.org/0436ezp29 Chicago Heights Park District'),
(12391, 'https://ror.org/04zh7mt66', 'en', 1, 'https://ror.org/04zh7mt66 Army Hospital Research and Referral आर्मी हॉस्पिटल रिसर्च एंड रेफेर्रल'),
(12392, 'https://ror.org/02yw9ws62', 'en', 1, 'https://ror.org/02yw9ws62 Center for Asthma, Allergy and Respiratory Disease'),
(12393, 'https://ror.org/01mkbdh17', 'en', 1, 'https://ror.org/01mkbdh17 Columbia County Commission on Children and Families'),
(12394, 'https://ror.org/0443bt978', 'en', 1, 'https://ror.org/0443bt978 Child Abuse Prevention Services of Tuscaloosa'),
(12395, 'https://ror.org/02szmkw66', 'en', 1, 'https://ror.org/02szmkw66 Child Aid Organization Kenya'),
(12396, 'https://ror.org/03vfjzd38', 'en', 1, 'https://ror.org/03vfjzd38 Center for Biomedical Research of La Rioja Centro de Investigación Biomédica de La Rioja'),
(12397, 'https://ror.org/057204j60', 'en', 1, 'https://ror.org/057204j60 Center for Black Women’s Wellness'),
(12398, 'https://ror.org/05rvv6a54', 'en', 1, 'https://ror.org/05rvv6a54 Columbus Community Clinical Oncology Program'),
(12399, 'https://ror.org/00878ar41', 'en', 1, 'https://ror.org/00878ar41 Comanche County Juvenile Bureau'),
(12400, 'https://ror.org/037d69x30', 'no_lang_code', 1, 'https://ror.org/037d69x30 Artemisia BioMedical (United States)'),
(12401, 'https://ror.org/039yg9v74', 'en', 1, 'https://ror.org/039yg9v74 Child and Family Services of New Hampshire'),
(12402, 'https://ror.org/00a98dc55', 'en', 1, 'https://ror.org/00a98dc55 CombiMatrix'),
(12403, 'https://ror.org/053v95q10', 'en', 1, 'https://ror.org/053v95q10 Child Care Resource & Referral'),
(12404, 'https://ror.org/00s16gd65', 'en', 1, 'https://ror.org/00s16gd65 Child Guidance Center'),
(12405, 'https://ror.org/00a0vzn71', 'en', 1, 'https://ror.org/00a0vzn71 Arthur Ashe Learning Center'),
(12406, 'https://ror.org/00s0zqz85', 'en', 1, 'https://ror.org/00s0zqz85 Child Health Corporation of America'),
(12407, 'https://ror.org/05ejsxx38', 'en', 1, 'https://ror.org/05ejsxx38 Florida Center for Change'),
(12408, 'https://ror.org/01wpszx77', 'en', 1, 'https://ror.org/01wpszx77 Combined Community Action'),
(12409, 'https://ror.org/02y96rp12', 'en', 1, 'https://ror.org/02y96rp12 Comer Children''s Hospital'),
(12410, 'https://ror.org/01ygt4x13', 'en', 1, 'https://ror.org/01ygt4x13 Child Protection Network'),
(12411, 'https://ror.org/035yg6030', 'en', 1, 'https://ror.org/035yg6030 Comer Family Foundation'),
(12412, 'https://ror.org/058dxr377', 'en', 1, 'https://ror.org/058dxr377 Florida Department of Juvenile Justice'),
(12413, 'https://ror.org/01q9b3c10', 'no_lang_code', 1, 'https://ror.org/01q9b3c10 COMHAR'),
(12414, 'https://ror.org/02n800c31', 'en', 1, 'https://ror.org/02n800c31 Nathan Adelson Hospice'),
(12415, 'https://ror.org/010wj4y69', 'en', 1, 'https://ror.org/010wj4y69 Childhood Leukemia Foundation'),
(12416, 'https://ror.org/02hbj0683', 'en', 1, 'https://ror.org/02hbj0683 Coming Home Connection'),
(12417, 'https://ror.org/020wan993', 'en', 1, 'https://ror.org/020wan993 Childline South Africa'),
(12418, 'https://ror.org/05tmpbz04', 'en', 1, 'https://ror.org/05tmpbz04 Creative Aging Network-NC'),
(12419, 'https://ror.org/04bac6g30', 'en', 1, 'https://ror.org/04bac6g30 Children with Cancer UK'),
(12420, 'https://ror.org/02n7gg832', 'en', 1, 'https://ror.org/02n7gg832 Children''s Aid Society'),
(12421, 'https://ror.org/0053krp57', 'en', 1, 'https://ror.org/0053krp57 Children''s Brain Tumor Foundation'),
(12422, 'https://ror.org/01p7z6793', 'en', 1, 'https://ror.org/01p7z6793 Children''s Cancer and Blood Foundation'),
(12423, 'https://ror.org/046xez992', 'en', 1, 'https://ror.org/046xez992 Children''s Cancer Association'),
(12424, 'https://ror.org/04gr7xf77', 'en', 1, 'https://ror.org/04gr7xf77 Center for Development Services'),
(12425, 'https://ror.org/053m1nc07', 'en', 1, 'https://ror.org/053m1nc07 Center for Health and Learning'),
(12426, 'https://ror.org/04rxd8128', 'en', 1, 'https://ror.org/04rxd8128 Children''s Cancer Center'),
(12427, 'https://ror.org/03xy06m93', 'en', 1, 'https://ror.org/03xy06m93 Memorial Health System'),
(12428, 'https://ror.org/0244gtc77', 'en', 1, 'https://ror.org/0244gtc77 Advanced ENT and Allergy'),
(12429, 'https://ror.org/02g1wqf71', 'en', 1, 'https://ror.org/02g1wqf71 Center for Health Consultation and Community Development Trung tâm tư vấn sức khỏe và phát triển cộng đồng'),
(12430, 'https://ror.org/05qjv8h52', 'en', 1, 'https://ror.org/05qjv8h52 Artistic Realization Technologies'),
(12431, 'https://ror.org/029ebrw26', 'en', 1, 'https://ror.org/029ebrw26 Arts For Life'),
(12432, 'https://ror.org/00bzst557', 'en', 1, 'https://ror.org/00bzst557 Communities In Schools of Orange County'),
(12433, 'https://ror.org/03xh1py88', 'en', 1, 'https://ror.org/03xh1py88 ArtThread Foundation'),
(12434, 'https://ror.org/03rxx8g04', 'en', 1, 'https://ror.org/03rxx8g04 Community Access'),
(12435, 'https://ror.org/054dhw748', 'en', 1, 'https://ror.org/054dhw748 Children Cancer Hospital لمؤسسة مستشفى سرطان الأطفال'),
(12436, 'https://ror.org/0483yhz54', 'en', 1, 'https://ror.org/0483yhz54 Children''s Center'),
(12437, 'https://ror.org/027hawx96', 'en', 1, 'https://ror.org/027hawx96 Children''s Health & Research Foundation'),
(12438, 'https://ror.org/05k0mz263', 'en', 1, 'https://ror.org/05k0mz263 CARE of Southeastern Michigan'),
(12439, 'https://ror.org/05qbngc87', 'en', 1, 'https://ror.org/05qbngc87 Ashby House'),
(12440, 'https://ror.org/01j9p4g53', 'en', 1, 'https://ror.org/01j9p4g53 Children''s Home and Aid'),
(12441, 'https://ror.org/04jnhp140', 'en', 1, 'https://ror.org/04jnhp140 Community Cancer Center'),
(12442, 'https://ror.org/0244yg551', 'en', 1, 'https://ror.org/0244yg551 Ashe Memorial Hospital'),
(12443, 'https://ror.org/01jw1z094', 'en', 1, 'https://ror.org/01jw1z094 Asheboro City Schools'),
(12444, 'https://ror.org/04nd20z29', 'en', 1, 'https://ror.org/04nd20z29 Community Cancer Services'),
(12445, 'https://ror.org/01kmgjw27', 'en', 1, 'https://ror.org/01kmgjw27 Children''s Home Association of Illinois'),
(12446, 'https://ror.org/015akvv41', 'en', 1, 'https://ror.org/015akvv41 Community Care Partners'),
(12447, 'https://ror.org/01gy3es16', 'no_lang_code', 1, 'https://ror.org/01gy3es16 Asher Consulting (United States)'),
(12448, 'https://ror.org/052bk3d94', 'en', 1, 'https://ror.org/052bk3d94 The University of Arizona Global Campus'),
(12449, 'https://ror.org/011724532', 'en', 1, 'https://ror.org/011724532 Center for Independent Living'),
(12450, 'https://ror.org/0320fhd53', 'en', 1, 'https://ror.org/0320fhd53 Community Development and Sustainability Organization'),
(12451, 'https://ror.org/034x1wg70', 'en', 1, 'https://ror.org/034x1wg70 Center for Independent Living of Broward'),
(12452, 'https://ror.org/03rm4za20', 'en', 1, 'https://ror.org/03rm4za20 Center for Independent Living of Central Pennsylvania'),
(12453, 'https://ror.org/02n71yc39', 'en', 1, 'https://ror.org/02n71yc39 Community Health Development'),
(12454, 'https://ror.org/01vajwv02', 'en', 1, 'https://ror.org/01vajwv02 Community Health and Emergency Services'),
(12455, 'https://ror.org/048z8v674', 'en', 1, 'https://ror.org/048z8v674 Asian American Community Services'),
(12456, 'https://ror.org/026hzcb48', 'en', 1, 'https://ror.org/026hzcb48 HOPE Clinic'),
(12457, 'https://ror.org/05ewbqm54', 'en', 1, 'https://ror.org/05ewbqm54 Community Health Center'),
(12458, 'https://ror.org/00vjdb429', 'en', 1, 'https://ror.org/00vjdb429 Community Health Centers of Pinellas'),
(12459, 'https://ror.org/000v2n186', 'en', 1, 'https://ror.org/000v2n186 Center for Information and Study on Clinical Research Participation'),
(12460, 'https://ror.org/04v0ewv31', 'en', 1, 'https://ror.org/04v0ewv31 Asian Health Services'),
(12461, 'https://ror.org/00yawqy54', 'en', 1, 'https://ror.org/00yawqy54 Community Health for Asian Americans'),
(12462, 'https://ror.org/054qc6v55', 'en', 1, 'https://ror.org/054qc6v55 Community Health Partnership'),
(12463, 'https://ror.org/0468wac55', 'en', 1, 'https://ror.org/0468wac55 Community Health Resource Center'),
(12464, 'https://ror.org/03s943089', 'en', 1, 'https://ror.org/03s943089 Asian Pacific AIDS Intervention Team'),
(12465, 'https://ror.org/04079cq52', 'en', 1, 'https://ror.org/04079cq52 Community Medical Centers'),
(12466, 'https://ror.org/04kq8yw60', 'en', 1, 'https://ror.org/04kq8yw60 Asian Services In Action'),
(12467, 'https://ror.org/03ncaex51', 'en', 1, 'https://ror.org/03ncaex51 Children''s Institute of Pittsburgh'),
(12468, 'https://ror.org/04aave390', 'en', 1, 'https://ror.org/04aave390 Children''s Leukaemia Research Project'),
(12469, 'https://ror.org/04x3k9185', 'en', 1, 'https://ror.org/04x3k9185 Community Impact'),
(12470, 'https://ror.org/00q1wqg27', 'en', 1, 'https://ror.org/00q1wqg27 Community In Action'),
(12471, 'https://ror.org/034pvzq21', 'es', 1, 'https://ror.org/034pvzq21 Asociación Demográfica Costarricense'),
(12472, 'https://ror.org/015xega74', 'en', 1, 'https://ror.org/015xega74 Children''s Music Fund'),
(12473, 'https://ror.org/03crevx32', 'en', 1, 'https://ror.org/03crevx32 Center for Neurorehabilitation Services'),
(12474, 'https://ror.org/02ndts806', 'en', 1, 'https://ror.org/02ndts806 Center for Pan Asian Community Services'),
(12475, 'https://ror.org/03nt5p160', 'ro', 1, 'https://ror.org/03nt5p160 Asociaţia Femeilor de Afaceri'),
(12476, 'https://ror.org/04898mq89', 'en', 1, 'https://ror.org/04898mq89 Children''s Research Triangle'),
(12477, 'https://ror.org/024jz7t88', 'en', 1, 'https://ror.org/024jz7t88 Whittier Street Health Center'),
(12478, 'https://ror.org/01t2cn246', 'en', 1, 'https://ror.org/01t2cn246 Asociatia pentru libertate si egalitate de gen Association for Liberty and Equality of Gender'),
(12479, 'https://ror.org/006gmw843', 'en', 1, 'https://ror.org/006gmw843 Community Reach of Montgomery County'),
(12480, 'https://ror.org/055vn4q66', 'en', 1, 'https://ror.org/055vn4q66 Cancer Survivor Center'),
(12481, 'https://ror.org/01eg6rs81', 'en', 1, 'https://ror.org/01eg6rs81 Aspen University'),
(12482, 'https://ror.org/02p1zps28', 'en', 1, 'https://ror.org/02p1zps28 Asperger/Autism Network'),
(12483, 'https://ror.org/03d3a3a46', 'en', 1, 'https://ror.org/03d3a3a46 Community Rowing'),
(12484, 'https://ror.org/01k2xa905', 'en', 1, 'https://ror.org/01k2xa905 Integrate Autism Employment Advisors'),
(12485, 'https://ror.org/05nebqj51', 'en', 1, 'https://ror.org/05nebqj51 Community Service Council'),
(12486, 'https://ror.org/05v8mff05', 'en', 1, 'https://ror.org/05v8mff05 Children''s Specialized Hospital'),
(12487, 'https://ror.org/00afc1337', 'en', 1, 'https://ror.org/00afc1337 Aspira'),
(12488, 'https://ror.org/036tjv560', 'en', 1, 'https://ror.org/036tjv560 Children''s Specialty Group'),
(12489, 'https://ror.org/012xa3j60', 'en', 1, 'https://ror.org/012xa3j60 Children''s Therapy Center'),
(12490, 'https://ror.org/05f1at452', 'en', 1, 'https://ror.org/05f1at452 Community Service Society'),
(12491, 'https://ror.org/01mbq8h61', 'en', 1, 'https://ror.org/01mbq8h61 Palm Beach Children''s Hospital'),
(12492, 'https://ror.org/013q4fg29', 'en', 1, 'https://ror.org/013q4fg29 Community Servings'),
(12493, 'https://ror.org/04bsz5816', 'no_lang_code', 1, 'https://ror.org/04bsz5816 Rakuten (United States)'),
(12494, 'https://ror.org/00acg6793', 'en', 1, 'https://ror.org/00acg6793 Community Support Network'),
(12495, 'https://ror.org/01gy41z17', 'no_lang_code', 1, 'https://ror.org/01gy41z17 Compliment Corporation (United States)'),
(12496, 'https://ror.org/00rn8rb77', 'en', 1, 'https://ror.org/00rn8rb77 Comprehensive Autism and related Disabilities Education and Training'),
(12497, 'https://ror.org/03sg2cg73', 'en', 1, 'https://ror.org/03sg2cg73 Rowan-Salisbury School System'),
(12498, 'https://ror.org/01d2cs775', 'en', 1, 'https://ror.org/01d2cs775 Desert AIDS Project'),
(12499, 'https://ror.org/04w5z8h61', 'en', 1, 'https://ror.org/04w5z8h61 Adventist HealthCare Rehabilitation'),
(12500, 'https://ror.org/00566zb37', 'en', 1, 'https://ror.org/00566zb37 Desi Geestman Foundation'),
(12501, 'https://ror.org/04thxh256', 'en', 1, 'https://ror.org/04thxh256 Center for the Study of Healthcare Provider Behavior'),
(12502, 'https://ror.org/04epg3w34', 'en', 1, 'https://ror.org/04epg3w34 Detroit Clinical Research Center'),
(12503, 'https://ror.org/00ebf8055', 'en', 1, 'https://ror.org/00ebf8055 Chinese Christian Herald Crusades'),
(12504, 'https://ror.org/018sya243', 'en', 1, 'https://ror.org/018sya243 Deutsch Institute'),
(12505, 'https://ror.org/01qz23849', 'en', 1, 'https://ror.org/01qz23849 Center for Wellness and Achievement in Education'),
(12506, 'https://ror.org/03d3v3e93', 'no_lang_code', 1, 'https://ror.org/03d3v3e93 Evotec (Germany)'),
(12507, 'https://ror.org/02rgt2f70', 'en', 1, 'https://ror.org/02rgt2f70 Center for Women Policy'),
(12508, 'https://ror.org/04rcnty73', 'en', 1, 'https://ror.org/04rcnty73 Chinese Community Health Resource Center'),
(12509, 'https://ror.org/03mrx4w57', 'no_lang_code', 1, 'https://ror.org/03mrx4w57 Signal Genetics (United States)'),
(12510, 'https://ror.org/03wg7sa16', 'en', 1, 'https://ror.org/03wg7sa16 Choate Rosemary Hall');
INSERT INTO `rors` VALUES
(12511, 'https://ror.org/04e86te90', 'en', 1, 'https://ror.org/04e86te90 Assistive Technology of Alaska'),
(12512, 'https://ror.org/01h2bfe37', 'en', 1, 'https://ror.org/01h2bfe37 Chocowinity Primary School'),
(12513, 'https://ror.org/05yd4kq77', 'no_lang_code', 1, 'https://ror.org/05yd4kq77 Chondrial Therapeutics (United States)'),
(12514, 'https://ror.org/05pnr2f39', 'pt', 1, 'https://ror.org/05pnr2f39 Associação Ilumina'),
(12515, 'https://ror.org/0355qrc50', 'en', 1, 'https://ror.org/0355qrc50 Pathlight'),
(12516, 'https://ror.org/02ee9a524', 'en', 1, 'https://ror.org/02ee9a524 Christine M. Kleinert Institute'),
(12517, 'https://ror.org/002eet613', 'en', 1, 'https://ror.org/002eet613 Center Point'),
(12518, 'https://ror.org/000rkhy86', 'en', 1, 'https://ror.org/000rkhy86 Connecting to Care'),
(12519, 'https://ror.org/0430rna51', 'en', 1, 'https://ror.org/0430rna51 Christopher and Dana Reeve Foundation'),
(12520, 'https://ror.org/029hcca68', 'en', 1, 'https://ror.org/029hcca68 Centers for New Horizons'),
(12521, 'https://ror.org/00pwnqr91', 'en', 1, 'https://ror.org/00pwnqr91 Diagnostics For All'),
(12522, 'https://ror.org/0101ywa49', 'en', 1, 'https://ror.org/0101ywa49 ASK Childhood Cancer Foundation'),
(12523, 'https://ror.org/03zfet066', 'en', 1, 'https://ror.org/03zfet066 Association for Womens Rights in Development'),
(12524, 'https://ror.org/048f9wx47', 'en', 1, 'https://ror.org/048f9wx47 Association House of Chicago'),
(12525, 'https://ror.org/01smpy304', 'no_lang_code', 1, 'https://ror.org/01smpy304 Connexios (India)'),
(12526, 'https://ror.org/02dg8v926', 'en', 1, 'https://ror.org/02dg8v926 CHRISTUS Spohn Hospital Corpus Christi - Memorial'),
(12527, 'https://ror.org/00gnfkx95', 'no_lang_code', 1, 'https://ror.org/00gnfkx95 Sandvik (United States)'),
(12528, 'https://ror.org/04t99fj98', 'en', 1, 'https://ror.org/04t99fj98 CentraCare Health System'),
(12529, 'https://ror.org/00agqps10', 'en', 1, 'https://ror.org/00agqps10 Consolidated Tribal Health Project'),
(12530, 'https://ror.org/04xg79b82', 'en', 1, 'https://ror.org/04xg79b82 CHRISTUS St. Patrick Hospital'),
(12531, 'https://ror.org/02q7rpv07', 'en', 1, 'https://ror.org/02q7rpv07 Dillard Academy'),
(12532, 'https://ror.org/005r3ak92', 'es', 1, 'https://ror.org/005r3ak92 Fondo Centroamericano de Mujeres'),
(12533, 'https://ror.org/030j17642', 'en', 1, 'https://ror.org/030j17642 Direct Relief'),
(12534, 'https://ror.org/05b76jx43', 'en', 1, 'https://ror.org/05b76jx43 Consumers for Affordable Health Care'),
(12535, 'https://ror.org/04em0e964', 'en', 1, 'https://ror.org/04em0e964 Chronic Disease Fund'),
(12536, 'https://ror.org/01fx7my02', 'no_lang_code', 1, 'https://ror.org/01fx7my02 Contax (United States)'),
(12537, 'https://ror.org/04w7t8545', 'en', 1, 'https://ror.org/04w7t8545 Contra Costa County Office of Education'),
(12538, 'https://ror.org/010z5hk55', 'no_lang_code', 1, 'https://ror.org/010z5hk55 Controlled Chemicals (United States)'),
(12539, 'https://ror.org/029qsp363', 'en', 1, 'https://ror.org/029qsp363 DeWitt County Human Resource Center'),
(12540, 'https://ror.org/0033pqk03', 'en', 1, 'https://ror.org/0033pqk03 Tubman'),
(12541, 'https://ror.org/03pyrr968', 'en', 1, 'https://ror.org/03pyrr968 Disability Resource Association'),
(12542, 'https://ror.org/03yeddd43', 'en', 1, 'https://ror.org/03yeddd43 Central Arkansas Radiation Therapy Institute'),
(12543, 'https://ror.org/02hvj8973', 'en', 1, 'https://ror.org/02hvj8973 Disabled Athlete Sports Association'),
(12544, 'https://ror.org/019n7yz73', 'en', 1, 'https://ror.org/019n7yz73 Conway Regional Health System'),
(12545, 'https://ror.org/00zk9q198', 'en', 1, 'https://ror.org/00zk9q198 Disabled Sailing Association of British Columbia'),
(12546, 'https://ror.org/03vzz0n02', 'en', 1, 'https://ror.org/03vzz0n02 Disabled Sports Eastern Sierra'),
(12547, 'https://ror.org/058gs5s26', 'en', 1, 'https://ror.org/058gs5s26 Cook County Health and Hospitals System'),
(12548, 'https://ror.org/02bx9km76', 'en', 1, 'https://ror.org/02bx9km76 Día de la Mujer Latina'),
(12549, 'https://ror.org/045mt4m45', 'en', 1, 'https://ror.org/045mt4m45 Chula Vista Community Collaborative'),
(12550, 'https://ror.org/00y59j716', 'en', 1, 'https://ror.org/00y59j716 Central Asia Institute'),
(12551, 'https://ror.org/0255frr43', 'en', 1, 'https://ror.org/0255frr43 Cooke School and Institute'),
(12552, 'https://ror.org/01yvphs19', 'en', 1, 'https://ror.org/01yvphs19 Move United'),
(12553, 'https://ror.org/02bgf5h46', 'en', 1, 'https://ror.org/02bgf5h46 Cookeville Regional Medical Center'),
(12554, 'https://ror.org/01qc5zk84', 'no_lang_code', 1, 'https://ror.org/01qc5zk84 Chulabhorn Hospital โรงพยาบาลจุฬาภรณ์'),
(12555, 'https://ror.org/00v859w32', 'en', 1, 'https://ror.org/00v859w32 Achieve Tahoe'),
(12556, 'https://ror.org/0507s5g02', 'en', 1, 'https://ror.org/0507s5g02 COPE Health Solutions'),
(12557, 'https://ror.org/034qt8m29', 'en', 1, 'https://ror.org/034qt8m29 Disabled Veterans Insurance Careers'),
(12558, 'https://ror.org/008s8js48', 'en', 1, 'https://ror.org/008s8js48 Central Coast Center for Independent Living'),
(12559, 'https://ror.org/04spsbn56', 'en', 1, 'https://ror.org/04spsbn56 Wayne County Public Schools'),
(12560, 'https://ror.org/03t8v2f28', 'en', 1, 'https://ror.org/03t8v2f28 Rush Copley Foundation'),
(12561, 'https://ror.org/04m21fy21', 'en', 1, 'https://ror.org/04m21fy21 Broward County Public Schools'),
(12562, 'https://ror.org/01hk1xf64', 'en', 1, 'https://ror.org/01hk1xf64 Central Connecticut Regional Planning Agency'),
(12563, 'https://ror.org/05c3j0k11', 'en', 1, 'https://ror.org/05c3j0k11 CORE Foundation'),
(12564, 'https://ror.org/04y35pz27', 'en', 1, 'https://ror.org/04y35pz27 Cornucopia Cancer Support Center'),
(12565, 'https://ror.org/03sbdx317', 'en', 1, 'https://ror.org/03sbdx317 Divers 4 Heroes'),
(12566, 'https://ror.org/013ze3m78', 'no_lang_code', 1, 'https://ror.org/013ze3m78 Cientive Group (United States)'),
(12567, 'https://ror.org/003dvmy85', 'en', 1, 'https://ror.org/003dvmy85 Central Council of the Tlingit and Haida Indian Tribes of Alaska'),
(12568, 'https://ror.org/01v5sfq52', 'en', 1, 'https://ror.org/01v5sfq52 Cigarette Butt Pollution Project'),
(12569, 'https://ror.org/03qa7aa58', 'no_lang_code', 1, 'https://ror.org/03qa7aa58 CIMA Software Corporation (United States)'),
(12570, 'https://ror.org/01vya7y20', 'en', 1, 'https://ror.org/01vya7y20 The Recovery Center'),
(12571, 'https://ror.org/057xaw849', 'en', 1, 'https://ror.org/057xaw849 Cottage Health'),
(12572, 'https://ror.org/002trzq62', 'en', 1, 'https://ror.org/002trzq62 Community Health Works'),
(12573, 'https://ror.org/05wpxj691', 'en', 1, 'https://ror.org/05wpxj691 Cotting School'),
(12574, 'https://ror.org/03awv4473', 'en', 1, 'https://ror.org/03awv4473 Council for Jewish Elderly'),
(12575, 'https://ror.org/053cfr159', 'en', 1, 'https://ror.org/053cfr159 Council for the Welfare of Children'),
(12576, 'https://ror.org/04jrqsq40', 'en', 1, 'https://ror.org/04jrqsq40 Council on Alcohol and Drug Abuse Coastal Bend'),
(12577, 'https://ror.org/04znqn582', 'en', 1, 'https://ror.org/04znqn582 HCG NCHRI Cancer Centre'),
(12578, 'https://ror.org/05jb7h445', 'en', 1, 'https://ror.org/05jb7h445 County of Sonoma Department of Health Services'),
(12579, 'https://ror.org/004y0gv29', 'en', 1, 'https://ror.org/004y0gv29 Community Breast Care Project'),
(12580, 'https://ror.org/00jtd6f03', 'en', 1, 'https://ror.org/00jtd6f03 Court Appointed Special Advocates of Union County'),
(12581, 'https://ror.org/007vvfj24', 'en', 1, 'https://ror.org/007vvfj24 Círculo de Vida'),
(12582, 'https://ror.org/048514v09', 'en', 1, 'https://ror.org/048514v09 Cuyahoga County Juvenile Court'),
(12583, 'https://ror.org/05c35qx73', 'en', 1, 'https://ror.org/05c35qx73 Cisco And Cisco Productions'),
(12584, 'https://ror.org/02mzffa46', 'no_lang_code', 1, 'https://ror.org/02mzffa46 Courtagen Life Sciences (United States)'),
(12585, 'https://ror.org/05g6deb76', 'en', 1, 'https://ror.org/05g6deb76 Doctors Without Borders Médecins Sans Frontières'),
(12586, 'https://ror.org/05ygzqx22', 'en', 1, 'https://ror.org/05ygzqx22 The Doe Fund'),
(12587, 'https://ror.org/04xcy3p78', 'en', 1, 'https://ror.org/04xcy3p78 CoxHealth Foundation'),
(12588, 'https://ror.org/00ycd5r70', 'no_lang_code', 1, 'https://ror.org/00ycd5r70 DonorsChoose'),
(12589, 'https://ror.org/04853qb43', 'en', 1, 'https://ror.org/04853qb43 Citizens Committee for New York City'),
(12590, 'https://ror.org/02m7zmm13', 'en', 1, 'https://ror.org/02m7zmm13 Council On Aging of Central Oregon'),
(12591, 'https://ror.org/0079ca173', 'en', 1, 'https://ror.org/0079ca173 Door to Hope'),
(12592, 'https://ror.org/018dp3302', 'en', 1, 'https://ror.org/018dp3302 Coyote Canyon Rehabilitation Center'),
(12593, 'https://ror.org/04rnc2b13', 'en', 1, 'https://ror.org/04rnc2b13 Citizens of Lake County for Health Care'),
(12594, 'https://ror.org/01awnfh35', 'en', 1, 'https://ror.org/01awnfh35 Citizens United for Research in Epilepsy'),
(12595, 'https://ror.org/01txw1935', 'no_lang_code', 1, 'https://ror.org/01txw1935 DormaTarg (United States)'),
(12596, 'https://ror.org/02yse6y23', 'en', 1, 'https://ror.org/02yse6y23 Central Park Conservancy'),
(12597, 'https://ror.org/00hxd4r57', 'en', 1, 'https://ror.org/00hxd4r57 Cradle of Forestry'),
(12598, 'https://ror.org/0299n0h85', 'en', 1, 'https://ror.org/0299n0h85 City Bar Justice Center'),
(12599, 'https://ror.org/05hxqtt35', 'en', 1, 'https://ror.org/05hxqtt35 Citymeals on Wheels'),
(12600, 'https://ror.org/01zpbb709', 'en', 1, 'https://ror.org/01zpbb709 CRDF Global'),
(12601, 'https://ror.org/03nw1ba02', 'no_lang_code', 1, 'https://ror.org/03nw1ba02 CreaGen (United States)'),
(12602, 'https://ror.org/00njrf990', 'en', 1, 'https://ror.org/00njrf990 Creating Hope'),
(12603, 'https://ror.org/03cew4h50', 'en', 1, 'https://ror.org/03cew4h50 EvergreenHealth'),
(12604, 'https://ror.org/01m03eg97', 'en', 1, 'https://ror.org/01m03eg97 Double ARC'),
(12605, 'https://ror.org/020ktq245', 'no_lang_code', 1, 'https://ror.org/020ktq245 Symphony Technology (United States)'),
(12606, 'https://ror.org/02ca63m84', 'no_lang_code', 1, 'https://ror.org/02ca63m84 Dose Safety (United States)'),
(12607, 'https://ror.org/04jxgzk07', 'no_lang_code', 1, 'https://ror.org/04jxgzk07 Creative Scientist (United States)'),
(12608, 'https://ror.org/03g0pmj13', 'no_lang_code', 1, 'https://ror.org/03g0pmj13 Exsulin (United States)'),
(12609, 'https://ror.org/01kc31v38', 'no_lang_code', 1, 'https://ror.org/01kc31v38 Exact Sciences (United States)'),
(12610, 'https://ror.org/05mw8jn36', 'en', 1, 'https://ror.org/05mw8jn36 Excelsior College'),
(12611, 'https://ror.org/00prewq47', 'en', 1, 'https://ror.org/00prewq47 Dr Dozo Laboratories'),
(12612, 'https://ror.org/05p26gw61', 'en', 1, 'https://ror.org/05p26gw61 Department of Health and Human Services'),
(12613, 'https://ror.org/05mggr586', 'en', 1, 'https://ror.org/05mggr586 Executive Frameworks'),
(12614, 'https://ror.org/059skcg45', 'en', 1, 'https://ror.org/059skcg45 Horizon Behavioral Health'),
(12615, 'https://ror.org/04thj7y95', 'en', 1, 'https://ror.org/04thj7y95 Department of Public Health'),
(12616, 'https://ror.org/01177md87', 'en', 1, 'https://ror.org/01177md87 EXPAND Beyond'),
(12617, 'https://ror.org/018dzn802', 'en', 1, 'https://ror.org/018dzn802 Bhubaneswar Borooah Cancer Institute'),
(12618, 'https://ror.org/04xqxea08', 'en', 1, 'https://ror.org/04xqxea08 Crescent Development Foundation'),
(12619, 'https://ror.org/0214aaw69', 'en', 1, 'https://ror.org/0214aaw69 City Parks Foundation'),
(12620, 'https://ror.org/030spt741', 'en', 1, 'https://ror.org/030spt741 Dragonfly Forest'),
(12621, 'https://ror.org/05fn46j05', 'no_lang_code', 1, 'https://ror.org/05fn46j05 Expression Drug Designs (United States)'),
(12622, 'https://ror.org/01crmyn45', 'en', 1, 'https://ror.org/01crmyn45 Dream Catchers Therapeutic Riding'),
(12623, 'https://ror.org/02fs0x831', 'en', 1, 'https://ror.org/02fs0x831 Cris Collinsworth ProScan Fund'),
(12624, 'https://ror.org/045895r06', 'en', 1, 'https://ror.org/045895r06 Dreams for Kids'),
(12625, 'https://ror.org/01xd2ey78', 'en', 1, 'https://ror.org/01xd2ey78 Crossroads Community Hospital'),
(12626, 'https://ror.org/01aznms81', 'en', 1, 'https://ror.org/01aznms81 CentraState Healthcare Foundation'),
(12627, 'https://ror.org/04v7m2q05', 'en', 1, 'https://ror.org/04v7m2q05 Crosswinds Equine Rescue'),
(12628, 'https://ror.org/03qyevp82', 'no_lang_code', 1, 'https://ror.org/03qyevp82 Eyenuk (United States)'),
(12629, 'https://ror.org/00e95rr56', 'en', 1, 'https://ror.org/00e95rr56 Eyes Wide Open International'),
(12630, 'https://ror.org/00hncq557', 'en', 1, 'https://ror.org/00hncq557 University of Maryland Charles Regional Medical Center'),
(12631, 'https://ror.org/004fch170', 'en', 1, 'https://ror.org/004fch170 Clara Martin Center'),
(12632, 'https://ror.org/03jmazk02', 'en', 1, 'https://ror.org/03jmazk02 Dup15q Alliance'),
(12633, 'https://ror.org/0399m8q49', 'en', 1, 'https://ror.org/0399m8q49 Faces of Courage Foundation'),
(12634, 'https://ror.org/04spj3m21', 'en', 1, 'https://ror.org/04spj3m21 Durham Public Schools'),
(12635, 'https://ror.org/01vaykv86', 'en', 1, 'https://ror.org/01vaykv86 Facial Plastics Surgery Associates'),
(12636, 'https://ror.org/01dxazx51', 'en', 1, 'https://ror.org/01dxazx51 Centre for Community Justice and Development'),
(12637, 'https://ror.org/02gsg9n78', 'en', 1, 'https://ror.org/02gsg9n78 Clark Family Breast Cancer Services'),
(12638, 'https://ror.org/04bcdzr74', 'en', 1, 'https://ror.org/04bcdzr74 Centre for Omic Sciences'),
(12639, 'https://ror.org/01jxhxv92', 'no_lang_code', 1, 'https://ror.org/01jxhxv92 CSL (United States)'),
(12640, 'https://ror.org/01fmdar07', 'nl', 1, 'https://ror.org/01fmdar07 Borstkankervereniging Nederland Breast Cancer Association Netherlands'),
(12641, 'https://ror.org/03941sr58', 'en', 1, 'https://ror.org/03941sr58 Claxton-Hepburn Medical Center'),
(12642, 'https://ror.org/01j5y9c13', 'en', 1, 'https://ror.org/01j5y9c13 Dwight School'),
(12643, 'https://ror.org/05jy4qt42', 'en', 1, 'https://ror.org/05jy4qt42 CSUF Auxiliary Services'),
(12644, 'https://ror.org/01zd0qk20', 'en', 1, 'https://ror.org/01zd0qk20 Clay County Health Department'),
(12645, 'https://ror.org/03q8c8138', 'en', 1, 'https://ror.org/03q8c8138 CSU Ventures'),
(12646, 'https://ror.org/03bg0vt52', 'en', 1, 'https://ror.org/03bg0vt52 Centre for Rights Education and Awareness'),
(12647, 'https://ror.org/054b1ew30', 'en', 1, 'https://ror.org/054b1ew30 Clean Needles Now'),
(12648, 'https://ror.org/03j36fp95', 'en', 1, 'https://ror.org/03j36fp95 Centre for Sexuality and Health Research and Policy'),
(12649, 'https://ror.org/03z55y406', 'en', 1, 'https://ror.org/03z55y406 Eagle Mount'),
(12650, 'https://ror.org/04qkg4668', 'en', 1, 'https://ror.org/04qkg4668 Centre for the AIDS Programme of Research in South Africa'),
(12651, 'https://ror.org/03pwdft33', 'no_lang_code', 1, 'https://ror.org/03pwdft33 AkibaUhaki Foundation'),
(12652, 'https://ror.org/00ebjwx84', 'en', 1, 'https://ror.org/00ebjwx84 Cultural Humanitarian Fund Sukhumi'),
(12653, 'https://ror.org/00s2g6856', 'en', 1, 'https://ror.org/00s2g6856 Fairmont City Library Center'),
(12654, 'https://ror.org/0586tb181', 'en', 1, 'https://ror.org/0586tb181 Faith Equestrian Therapeutic Center'),
(12655, 'https://ror.org/02gc8w463', 'en', 1, 'https://ror.org/02gc8w463 CLIC Sargent'),
(12656, 'https://ror.org/01g77xz63', 'no_lang_code', 1, 'https://ror.org/01g77xz63 Falcon Genomics (United States)'),
(12657, 'https://ror.org/051csrn64', 'en', 1, 'https://ror.org/051csrn64 Jackson County Public Schools'),
(12658, 'https://ror.org/02esvv741', 'en', 1, 'https://ror.org/02esvv741 Family Health Center of Worcester'),
(12659, 'https://ror.org/02mrrr189', 'en', 1, 'https://ror.org/02mrrr189 Adagio Health'),
(12660, 'https://ror.org/02m1pay40', 'en', 1, 'https://ror.org/02m1pay40 Clinica de Pneumologie Iaşi'),
(12661, 'https://ror.org/05a88n366', 'en', 1, 'https://ror.org/05a88n366 Alliance of Health Organizations'),
(12662, 'https://ror.org/05tqsj653', 'en', 1, 'https://ror.org/05tqsj653 Family Health Options Kenya'),
(12663, 'https://ror.org/02f7fr916', 'en', 1, 'https://ror.org/02f7fr916 ENT and Allergy Associates of Florida'),
(12664, 'https://ror.org/00x731t70', 'en', 1, 'https://ror.org/00x731t70 Clinica Sierra Vista'),
(12665, 'https://ror.org/02zwp3607', 'en', 1, 'https://ror.org/02zwp3607 Family Service Center of Galveston County'),
(12666, 'https://ror.org/00za5w074', 'en', 1, 'https://ror.org/00za5w074 Family Service League'),
(12667, 'https://ror.org/031acn267', 'en', 1, 'https://ror.org/031acn267 Clinical Directors Network'),
(12668, 'https://ror.org/0247j5w40', 'en', 1, 'https://ror.org/0247j5w40 NorthEast Ohio Neighborhood Health Services'),
(12669, 'https://ror.org/04ek2dh49', 'no_lang_code', 1, 'https://ror.org/04ek2dh49 CuraVac (United States)'),
(12670, 'https://ror.org/00r68c937', 'en', 1, 'https://ror.org/00r68c937 Evergreen Behavioral Health'),
(12671, 'https://ror.org/04csrvg63', 'en', 1, 'https://ror.org/04csrvg63 Exercise and Survivorship Education Cancer Foundation'),
(12672, 'https://ror.org/02z8d3d73', 'en', 1, 'https://ror.org/02z8d3d73 Faraja Cancer Support Trust'),
(12673, 'https://ror.org/0036jx294', 'no_lang_code', 1, 'https://ror.org/0036jx294 Farmington Pharma Development (United States)'),
(12674, 'https://ror.org/052rn8031', 'en', 1, 'https://ror.org/052rn8031 Clinicas de Salud del Pueblo'),
(12675, 'https://ror.org/036gb6b33', 'es', 1, 'https://ror.org/036gb6b33 Centro de Epilepsia y Neurocirugía Funcional'),
(12676, 'https://ror.org/04q2rtc89', 'en', 1, 'https://ror.org/04q2rtc89 CliniWorks'),
(12677, 'https://ror.org/05c4ary91', 'en', 1, 'https://ror.org/05c4ary91 Clinton Bush Haiti Fund'),
(12678, 'https://ror.org/02gb76937', 'no_lang_code', 1, 'https://ror.org/02gb76937 Domain Therapeutics (France)'),
(12679, 'https://ror.org/021t5mt46', 'es', 1, 'https://ror.org/021t5mt46 Centro de Información y Desarrollo de la Mujer'),
(12680, 'https://ror.org/057dz0532', 'en', 1, 'https://ror.org/057dz0532 Clonexpress'),
(12681, 'https://ror.org/00ykwy443', 'no_lang_code', 1, 'https://ror.org/00ykwy443 Curewize Health'),
(12682, 'https://ror.org/04gvjte09', 'en', 1, 'https://ror.org/04gvjte09 Faxton St. Luke''s Healthcare'),
(12683, 'https://ror.org/04hgfx704', 'no_lang_code', 1, 'https://ror.org/04hgfx704 CuriRx (United States)'),
(12684, 'https://ror.org/02pbsj156', 'no_lang_code', 1, 'https://ror.org/02pbsj156 OPKO Health (United States)'),
(12685, 'https://ror.org/0037f4615', 'no_lang_code', 1, 'https://ror.org/0037f4615 Cvergenx (United States)'),
(12686, 'https://ror.org/02x5wzm46', 'es', 1, 'https://ror.org/02x5wzm46 Fundacion Favaloro Hospital Universitario'),
(12687, 'https://ror.org/015v43a21', 'es', 1, 'https://ror.org/015v43a21 Centro de Investigación en Alimentación y Desarrollo'),
(12688, 'https://ror.org/01mfmr054', 'en', 1, 'https://ror.org/01mfmr054 Institute for Macromolecular Studies Istituto per lo Studio delle Macromolecole'),
(12689, 'https://ror.org/00wqp8t15', 'en', 1, 'https://ror.org/00wqp8t15 Federal College of Education, Kano'),
(12690, 'https://ror.org/040xhth73', 'en', 1, 'https://ror.org/040xhth73 Institute of Cell Biology and Neurobiology Istituto di Biologia Cellulare e Neurobiologia'),
(12691, 'https://ror.org/05w9g2j85', 'en', 1, 'https://ror.org/05w9g2j85 Institute of Cognitive Sciences and Technologies Istituto di Scienze e Tecnologie della Cognizione'),
(12692, 'https://ror.org/00n4jbh84', 'en', 1, 'https://ror.org/00n4jbh84 Institute of Electronics, Computer and Telecommunication Engineering Istituto di Elettronica e di lngegneria dell''Informazione e delle Telecomunicazioni'),
(12693, 'https://ror.org/02v2xvd66', 'en', 1, 'https://ror.org/02v2xvd66 San Ysidro Health'),
(12694, 'https://ror.org/0408zy315', 'en', 1, 'https://ror.org/0408zy315 Fieldstone Farm Therapeutic Riding Center'),
(12695, 'https://ror.org/04zmpx795', 'no_lang_code', 1, 'https://ror.org/04zmpx795 CytoSorbents (United States)'),
(12696, 'https://ror.org/02dr63s31', 'en', 1, 'https://ror.org/02dr63s31 Institute of Genetic and Biomedical Research Istituto di Ricerca Genetica e Biomedica'),
(12697, 'https://ror.org/01ynvwr63', 'es', 1, 'https://ror.org/01ynvwr63 HM Hospitales'),
(12698, 'https://ror.org/04vga2d07', 'it', 1, 'https://ror.org/04vga2d07 Centro Internazionale Studi Diabete'),
(12699, 'https://ror.org/03qmdb045', 'es', 1, 'https://ror.org/03qmdb045 Hospital Donación Francisco Santojanni'),
(12700, 'https://ror.org/02f6txw68', 'en', 1, 'https://ror.org/02f6txw68 East Georgia Cancer Coalition'),
(12701, 'https://ror.org/00s2j5046', 'en', 1, 'https://ror.org/00s2j5046 Institute of Molecular Bioimaging and Physiology Istituto di Bioimmagini e Fisiologia Molecolare'),
(12702, 'https://ror.org/03dewpe59', 'en', 1, 'https://ror.org/03dewpe59 East Harlem School'),
(12703, 'https://ror.org/01bbb9w98', 'en', 1, 'https://ror.org/01bbb9w98 East Harlem Tutorial Program'),
(12704, 'https://ror.org/00vke5218', 'en', 1, 'https://ror.org/00vke5218 East Palo Alto Kids Foundation'),
(12705, 'https://ror.org/00q6xg564', 'en', 1, 'https://ror.org/00q6xg564 Felicity House'),
(12706, 'https://ror.org/055werx92', 'no_lang_code', 1, 'https://ror.org/055werx92 Daiichi Sankyo (United States)'),
(12707, 'https://ror.org/04eawqd29', 'en', 1, 'https://ror.org/04eawqd29 Daily Bread Soup Kitchen'),
(12708, 'https://ror.org/02p5vjg42', 'en', 1, 'https://ror.org/02p5vjg42 Dalton School'),
(12709, 'https://ror.org/01j4j8g47', 'en', 1, 'https://ror.org/01j4j8g47 Dalton State College'),
(12710, 'https://ror.org/02cwbgy35', 'en', 1, 'https://ror.org/02cwbgy35 East Texas Baptist University'),
(12711, 'https://ror.org/04dsw2p33', 'en', 1, 'https://ror.org/04dsw2p33 Centro Paraguayo de Estudios de Población - Paraguayan Center for Population Studies'),
(12712, 'https://ror.org/03ta8pf33', 'it', 1, 'https://ror.org/03ta8pf33 Institute of Translational Pharmacology Istituto di Farmacologia Traslazionale'),
(12713, 'https://ror.org/01dwm7q20', 'en', 1, 'https://ror.org/01dwm7q20 DAWN Center for Independent Living'),
(12714, 'https://ror.org/04e3qnv29', 'en', 1, 'https://ror.org/04e3qnv29 Day Kimball Healthcare'),
(12715, 'https://ror.org/01gtk7283', 'en', 1, 'https://ror.org/01gtk7283 DC Cancer Consortium'),
(12716, 'https://ror.org/01gykcx29', 'en', 1, 'https://ror.org/01gykcx29 Minnesota Association of Deaf Citizens'),
(12717, 'https://ror.org/03vedwr79', 'no_lang_code', 1, 'https://ror.org/03vedwr79 Fidelity Biosciences (United States)'),
(12718, 'https://ror.org/02sfxxg21', 'en', 1, 'https://ror.org/02sfxxg21 Eastchester Center for Cancer Care'),
(12719, 'https://ror.org/017t18r89', 'en', 1, 'https://ror.org/017t18r89 Fighting Chance'),
(12720, 'https://ror.org/03by4xw59', 'en', 1, 'https://ror.org/03by4xw59 Cerebral Palsy Research Foundation'),
(12721, 'https://ror.org/05h5atq78', 'en', 1, 'https://ror.org/05h5atq78 Northeast Regional Cancer Institute'),
(12722, 'https://ror.org/03zk0kr46', 'en', 1, 'https://ror.org/03zk0kr46 Filmmakers Collaborative'),
(12723, 'https://ror.org/01y719f35', 'en', 1, 'https://ror.org/01y719f35 DeKalb County Health Department'),
(12724, 'https://ror.org/03xrs4d06', 'no_lang_code', 1, 'https://ror.org/03xrs4d06 Cerulean Pharma (United States)'),
(12725, 'https://ror.org/05cwssc79', 'en', 1, 'https://ror.org/05cwssc79 Chai Lifeline'),
(12726, 'https://ror.org/041edce82', 'en', 1, 'https://ror.org/041edce82 Eastern Nebraska Wheelchair Athletic Association'),
(12727, 'https://ror.org/04ff7ym80', 'en', 1, 'https://ror.org/04ff7ym80 Delaware Breast Cancer Coalition'),
(12728, 'https://ror.org/016g6pe62', 'en', 1, 'https://ror.org/016g6pe62 Challenge Alaska'),
(12729, 'https://ror.org/01exe5p59', 'en', 1, 'https://ror.org/01exe5p59 Eastern Oregon Center for Independent Living'),
(12730, 'https://ror.org/032c3ww89', 'en', 1, 'https://ror.org/032c3ww89 Challenge Aspen'),
(12731, 'https://ror.org/04dyz9n21', 'en', 1, 'https://ror.org/04dyz9n21 Challenged Athletes Foundation'),
(12732, 'https://ror.org/04dd80p04', 'en', 1, 'https://ror.org/04dd80p04 Champions Made From Adversity'),
(12733, 'https://ror.org/02hncwj35', 'en', 1, 'https://ror.org/02hncwj35 Dellon Institutes for Peripheral Nerve Surgery'),
(12734, 'https://ror.org/00xxrkp20', 'en', 1, 'https://ror.org/00xxrkp20 Delmont Public Library'),
(12735, 'https://ror.org/010a92934', 'en', 1, 'https://ror.org/010a92934 Champlain Valley Physicians Hospital'),
(12736, 'https://ror.org/01628rf48', 'en', 1, 'https://ror.org/01628rf48 ChangeLab Solutions'),
(12737, 'https://ror.org/05sxn9j28', 'en', 1, 'https://ror.org/05sxn9j28 Coalition For A Safe Environment'),
(12738, 'https://ror.org/03vkcbk24', 'en', 1, 'https://ror.org/03vkcbk24 Changing Life Education Initiative'),
(12739, 'https://ror.org/05hpthj59', 'en', 1, 'https://ror.org/05hpthj59 Demoiselle 2 Femme'),
(12740, 'https://ror.org/01wtk7843', 'en', 1, 'https://ror.org/01wtk7843 Chapel Haven Schleifer Center'),
(12741, 'https://ror.org/013p72785', 'en', 1, 'https://ror.org/013p72785 Chapel Hill Training Outreach Project'),
(12742, 'https://ror.org/04rh36p62', 'en', 1, 'https://ror.org/04rh36p62 Chapel Hill Carrboro City Schools'),
(12743, 'https://ror.org/038q96y60', 'en', 1, 'https://ror.org/038q96y60 Denver Indian Center'),
(12744, 'https://ror.org/043j8fa20', 'en', 1, 'https://ror.org/043j8fa20 Denver School of Nursing'),
(12745, 'https://ror.org/03kdc7091', 'en', 1, 'https://ror.org/03kdc7091 Coalition of Immokalee Workers'),
(12746, 'https://ror.org/007d8wc49', 'no_lang_code', 1, 'https://ror.org/007d8wc49 Coastal Anesthesiology Consultants (United States)'),
(12747, 'https://ror.org/02nycrb78', 'en', 1, 'https://ror.org/02nycrb78 Firefighter Cancer Support Network'),
(12748, 'https://ror.org/03a6ebh86', 'en', 1, 'https://ror.org/03a6ebh86 Coastal Health District'),
(12749, 'https://ror.org/02965na35', 'en', 1, 'https://ror.org/02965na35 Coastal Steward Long Island'),
(12750, 'https://ror.org/04kmmsx80', 'no_lang_code', 1, 'https://ror.org/04kmmsx80 Coastside Bio Resources (United States)'),
(12751, 'https://ror.org/03vk04b45', 'en', 1, 'https://ror.org/03vk04b45 Cobb and Douglas County Community Services Board'),
(12752, 'https://ror.org/01hfgte37', 'en', 1, 'https://ror.org/01hfgte37 Eastern Cooperative Oncology Group'),
(12753, 'https://ror.org/00esbrz24', 'en', 1, 'https://ror.org/00esbrz24 Coconino Community College Foundation'),
(12754, 'https://ror.org/05210wh26', 'en', 1, 'https://ror.org/05210wh26 Coda Alliance'),
(12755, 'https://ror.org/05hnp8y26', 'en', 1, 'https://ror.org/05hnp8y26 ARC of Oswego County'),
(12756, 'https://ror.org/00avzve25', 'no_lang_code', 1, 'https://ror.org/00avzve25 Edelweiss Gestão Empresarial (Brazil)'),
(12757, 'https://ror.org/059gpqq33', 'en', 1, 'https://ror.org/059gpqq33 Edgar County Public Health Department'),
(12758, 'https://ror.org/01m1s8509', 'no_lang_code', 1, 'https://ror.org/01m1s8509 Chaperone Therapeutics (United States)'),
(12759, 'https://ror.org/04g5a7819', 'en', 1, 'https://ror.org/04g5a7819 Firelands Regional Medical Center'),
(12760, 'https://ror.org/043f52r95', 'en', 1, 'https://ror.org/043f52r95 Lexington City Schools'),
(12761, 'https://ror.org/054yshy75', 'en', 1, 'https://ror.org/054yshy75 First Baptist Church-West'),
(12762, 'https://ror.org/01pabpn74', 'en', 1, 'https://ror.org/01pabpn74 Brickhouse Equestrian Center'),
(12763, 'https://ror.org/03f9sef34', 'en', 1, 'https://ror.org/03f9sef34 Charleston Breast Center'),
(12764, 'https://ror.org/033ns4t79', 'no_lang_code', 1, 'https://ror.org/033ns4t79 Cogito (United States)'),
(12765, 'https://ror.org/04j045513', 'en', 1, 'https://ror.org/04j045513 Foundation Medical Partners'),
(12766, 'https://ror.org/048fxk571', 'no_lang_code', 1, 'https://ror.org/048fxk571 Edison Pharmaceuticals (United States)'),
(12767, 'https://ror.org/03z2xqc96', 'no_lang_code', 1, 'https://ror.org/03z2xqc96 Cognition Therapeutics (United States)'),
(12768, 'https://ror.org/03scggx76', 'en', 1, 'https://ror.org/03scggx76 Fractured Atlas'),
(12769, 'https://ror.org/03hwm9p62', 'en', 1, 'https://ror.org/03hwm9p62 Hendrick Hospice Care'),
(12770, 'https://ror.org/0015k4a59', 'en', 1, 'https://ror.org/0015k4a59 Cognitive Systems Research Institute'),
(12771, 'https://ror.org/03s5rph93', 'no_lang_code', 1, 'https://ror.org/03s5rph93 Cognosci (United States)'),
(12772, 'https://ror.org/04fc1ay64', 'en', 1, 'https://ror.org/04fc1ay64 Edith P. Wright Breast Cancer Foundation'),
(12773, 'https://ror.org/01rprk677', 'en', 1, 'https://ror.org/01rprk677 First Descents'),
(12774, 'https://ror.org/03sx0k281', 'en', 1, 'https://ror.org/03sx0k281 Henry Street Settlement'),
(12775, 'https://ror.org/02y0pmx13', 'en', 1, 'https://ror.org/02y0pmx13 Cohoes Family Care'),
(12776, 'https://ror.org/046whjx61', 'en', 1, 'https://ror.org/046whjx61 Franklin County Schools'),
(12777, 'https://ror.org/04sx28p80', 'en', 1, 'https://ror.org/04sx28p80 Hephzibah Children’s Association'),
(12778, 'https://ror.org/01d8y3h50', 'en', 1, 'https://ror.org/01d8y3h50 First Giving'),
(12779, 'https://ror.org/04e3yr628', 'en', 1, 'https://ror.org/04e3yr628 HER2 Support Group'),
(12780, 'https://ror.org/0016qw586', 'en', 1, 'https://ror.org/0016qw586 First In Families of North Carolina'),
(12781, 'https://ror.org/05rwq6592', 'en', 1, 'https://ror.org/05rwq6592 The First Republican Clinical Hospital of the Ministry of Health of the Udmurt Republic Первая республиканская клиническая больница Министерства здравоохранения Удмуртской Республики'),
(12782, 'https://ror.org/01w20ws49', 'en', 1, 'https://ror.org/01w20ws49 First Step Foundation'),
(12783, 'https://ror.org/03760g136', 'en', 1, 'https://ror.org/03760g136 First To Serve'),
(12784, 'https://ror.org/01qngz494', 'no_lang_code', 1, 'https://ror.org/01qngz494 Digital Development Communications International (United States)'),
(12785, 'https://ror.org/03qc4hj53', 'en', 1, 'https://ror.org/03qc4hj53 FirstHealth of the Carolinas'),
(12786, 'https://ror.org/029c3cd83', 'en', 1, 'https://ror.org/029c3cd83 Foundation for Rehabilitation Equipment and Endowment'),
(12787, 'https://ror.org/040xtvv41', 'no_lang_code', 1, 'https://ror.org/040xtvv41 Herbalife (Australia)'),
(12788, 'https://ror.org/01qn2q426', 'no_lang_code', 1, 'https://ror.org/01qn2q426 FirstString Research (United States)'),
(12789, 'https://ror.org/0333kge30', 'en', 1, 'https://ror.org/0333kge30 Fishing Has No Boundaries'),
(12790, 'https://ror.org/04wyzn311', 'en', 1, 'https://ror.org/04wyzn311 Freedom from Hunger'),
(12791, 'https://ror.org/01c3rah98', 'en', 1, 'https://ror.org/01c3rah98 Heroes on Horseback'),
(12792, 'https://ror.org/000kzf191', 'en', 1, 'https://ror.org/000kzf191 Burke County Public Schools'),
(12793, 'https://ror.org/04gfafs31', 'en', 1, 'https://ror.org/04gfafs31 Texas Freedom Network'),
(12794, 'https://ror.org/01d9fmv96', 'en', 1, 'https://ror.org/01d9fmv96 Girls Educational and Mentoring Services'),
(12795, 'https://ror.org/03w4h7282', 'en', 1, 'https://ror.org/03w4h7282 Freedom Service Dogs'),
(12796, 'https://ror.org/04ts0w644', 'en', 1, 'https://ror.org/04ts0w644 Joe DiMaggio Children''s Hospital'),
(12797, 'https://ror.org/024vgq576', 'en', 1, 'https://ror.org/024vgq576 Girls on the Run of Central Illinois'),
(12798, 'https://ror.org/05c6nxg16', 'en', 1, 'https://ror.org/05c6nxg16 St. Mary''s Medical Center'),
(12799, 'https://ror.org/02z972f25', 'en', 1, 'https://ror.org/02z972f25 Girls Power Initiative'),
(12800, 'https://ror.org/05qwgjf62', 'en', 1, 'https://ror.org/05qwgjf62 Pulmonary and Critical Care Associates'),
(12801, 'https://ror.org/03zmx1209', 'en', 1, 'https://ror.org/03zmx1209 Freeman Sheldon Research Group'),
(12802, 'https://ror.org/035zp5a51', 'en', 1, 'https://ror.org/035zp5a51 Golisano Children''s Hospital of Southwest Florida'),
(12803, 'https://ror.org/00g5s5c73', 'en', 1, 'https://ror.org/00g5s5c73 Fremont County Public Health'),
(12804, 'https://ror.org/04hma4w69', 'en', 1, 'https://ror.org/04hma4w69 Nemours Children''s Clinic'),
(12805, 'https://ror.org/00f76x039', 'en', 1, 'https://ror.org/00f76x039 Nemours Children’s Clinic'),
(12806, 'https://ror.org/04zzwzx41', 'en', 1, 'https://ror.org/04zzwzx41 Hertie Institute for Clinical Brain Research Hertie-Institut für klinische Hirnforschung'),
(12807, 'https://ror.org/01ycgxf29', 'en', 1, 'https://ror.org/01ycgxf29 Hertz Foundation'),
(12808, 'https://ror.org/05s1gzc45', 'en', 1, 'https://ror.org/05s1gzc45 Central Florida Pulmonary Group'),
(12809, 'https://ror.org/050wvj485', 'en', 1, 'https://ror.org/050wvj485 Reading and Beyond'),
(12810, 'https://ror.org/001vwrk73', 'en', 1, 'https://ror.org/001vwrk73 Flashes of Hope'),
(12811, 'https://ror.org/03f4rq368', 'en', 1, 'https://ror.org/03f4rq368 Flathead City County Health Department'),
(12812, 'https://ror.org/03hgkjm76', 'en', 1, 'https://ror.org/03hgkjm76 Frick Collection'),
(12813, 'https://ror.org/02yycpb11', 'en', 1, 'https://ror.org/02yycpb11 Higher Ground Sun Valley'),
(12814, 'https://ror.org/022ew7d45', 'en', 1, 'https://ror.org/022ew7d45 FRIDA The Young Feminist Fund'),
(12815, 'https://ror.org/010ypq317', 'en', 1, 'https://ror.org/010ypq317 NHS Highland'),
(12816, 'https://ror.org/04prt7y25', 'en', 1, 'https://ror.org/04prt7y25 Florida Alliance for Assistive Services and Technology'),
(12817, 'https://ror.org/04edgdk70', 'en', 1, 'https://ror.org/04edgdk70 Friedreich''s Ataxia Research Alliance'),
(12818, 'https://ror.org/02px37122', 'en', 1, 'https://ror.org/02px37122 Florida Cancer Specialists & Research Institute'),
(12819, 'https://ror.org/05r4ryw44', 'en', 1, 'https://ror.org/05r4ryw44 Baylor Scott and White Hillcrest Medical Center'),
(12820, 'https://ror.org/03kr0f697', 'en', 1, 'https://ror.org/03kr0f697 Adventist Health Glendale'),
(12821, 'https://ror.org/03jr2xy24', 'no_lang_code', 1, 'https://ror.org/03jr2xy24 EEG Info'),
(12822, 'https://ror.org/04yhn3690', 'en', 1, 'https://ror.org/04yhn3690 AdventHealth Foundation Central Florida'),
(12823, 'https://ror.org/04gsrry43', 'no_lang_code', 1, 'https://ror.org/04gsrry43 Hillhurst Biopharmaceuticals (United States)'),
(12824, 'https://ror.org/0446hjv79', 'en', 1, 'https://ror.org/0446hjv79 Florida Hospital Medical Group'),
(12825, 'https://ror.org/05j3gb586', 'en', 1, 'https://ror.org/05j3gb586 Friend for Life'),
(12826, 'https://ror.org/05j5w4198', 'en', 1, 'https://ror.org/05j5w4198 Hillsborough Jr. Raiders'),
(12827, 'https://ror.org/04435ns27', 'en', 1, 'https://ror.org/04435ns27 Florida Neuroscience Center'),
(12828, 'https://ror.org/0154hjf68', 'it', 1, 'https://ror.org/0154hjf68 Fondazione Mons Arrigo Mazzali'),
(12829, 'https://ror.org/037pbyt27', 'en', 1, 'https://ror.org/037pbyt27 Glens Falls Hospital'),
(12830, 'https://ror.org/05rgw8m46', 'no_lang_code', 1, 'https://ror.org/05rgw8m46 Efficient Pharma Management (Taiwan)'),
(12831, 'https://ror.org/04hwe7v53', 'en', 1, 'https://ror.org/04hwe7v53 Florida State Association of Rehabilitation Nurses'),
(12832, 'https://ror.org/01ej02438', 'en', 1, 'https://ror.org/01ej02438 Florida Technical College'),
(12833, 'https://ror.org/03agges87', 'en', 1, 'https://ror.org/03agges87 Third Judicial Circuit of Florida'),
(12834, 'https://ror.org/054mx2417', 'en', 1, 'https://ror.org/054mx2417 Himalayan Cataract Project'),
(12835, 'https://ror.org/00dn4v959', 'en', 1, 'https://ror.org/00dn4v959 Baptist Health Floyd'),
(12836, 'https://ror.org/05gp52j69', 'en', 1, 'https://ror.org/05gp52j69 Friends of Cancer Research'),
(12837, 'https://ror.org/008d28s71', 'en', 1, 'https://ror.org/008d28s71 Hinds Community College'),
(12838, 'https://ror.org/0435r6m82', 'no_lang_code', 1, 'https://ror.org/0435r6m82 Glialogix (United States)'),
(12839, 'https://ror.org/04p1hy645', 'no_lang_code', 1, 'https://ror.org/04p1hy645 FluGen (United States)'),
(12840, 'https://ror.org/037brtq48', 'en', 1, 'https://ror.org/037brtq48 Friends of Firefighters'),
(12841, 'https://ror.org/033tb1y80', 'en', 1, 'https://ror.org/033tb1y80 Hispanic Family Center of Southern New Jersey'),
(12842, 'https://ror.org/05d87j665', 'en', 1, 'https://ror.org/05d87j665 Historic House Trust'),
(12843, 'https://ror.org/01a70q325', 'no_lang_code', 1, 'https://ror.org/01a70q325 Fluidda (United States)'),
(12844, 'https://ror.org/052t8c018', 'en', 1, 'https://ror.org/052t8c018 HIV Education and Prevention Project of Alameda County'),
(12845, 'https://ror.org/02mh1s531', 'en', 1, 'https://ror.org/02mh1s531 Global Abilities Foundation'),
(12846, 'https://ror.org/03bsqcj22', 'no_lang_code', 1, 'https://ror.org/03bsqcj22 XCR Diagnostics (United States)'),
(12847, 'https://ror.org/028v5rf11', 'en', 1, 'https://ror.org/028v5rf11 Global AIDS Interfaith Alliance'),
(12848, 'https://ror.org/03kng9q02', 'en', 1, 'https://ror.org/03kng9q02 Friends of IHES'),
(12849, 'https://ror.org/055e7e256', 'en', 1, 'https://ror.org/055e7e256 Global Alliance Against Traffic in Women'),
(12850, 'https://ror.org/05sw0m628', 'en', 1, 'https://ror.org/05sw0m628 Hoag Orthopedic Institute'),
(12851, 'https://ror.org/032b2m661', 'en', 1, 'https://ror.org/032b2m661 Holos Institute'),
(12852, 'https://ror.org/01c93rd67', 'en', 1, 'https://ror.org/01c93rd67 The House of Praise'),
(12853, 'https://ror.org/04qjbd269', 'en', 1, 'https://ror.org/04qjbd269 Focused Ultrasound Foundation'),
(12854, 'https://ror.org/05s1xw009', 'en', 1, 'https://ror.org/05s1xw009 Fogarty Institute for Innovation'),
(12855, 'https://ror.org/02rrdqs77', 'en', 1, 'https://ror.org/02rrdqs77 Friends of Karen'),
(12856, 'https://ror.org/00zzgy689', 'en', 1, 'https://ror.org/00zzgy689 Global and Regional Asperger Syndrome Partnership'),
(12857, 'https://ror.org/02r7qvh89', 'en', 1, 'https://ror.org/02r7qvh89 Friends of L''Arche Long Island'),
(12858, 'https://ror.org/0236px434', 'no_lang_code', 1, 'https://ror.org/0236px434 Follica (United States)'),
(12859, 'https://ror.org/0067mxm07', 'en', 1, 'https://ror.org/0067mxm07 Global Autism Project'),
(12860, 'https://ror.org/035ttkd11', 'en', 1, 'https://ror.org/035ttkd11 Friends of Patan Hospital'),
(12861, 'https://ror.org/03cr60k70', 'no_lang_code', 1, 'https://ror.org/03cr60k70 Global Blood Therapeutics (United States)'),
(12862, 'https://ror.org/01myz2x40', 'en', 1, 'https://ror.org/01myz2x40 Akbaraly Foundation'),
(12863, 'https://ror.org/00st4js56', 'en', 1, 'https://ror.org/00st4js56 Friends of Scott'),
(12864, 'https://ror.org/02gp5xx45', 'en', 1, 'https://ror.org/02gp5xx45 Holy Redeemer'),
(12865, 'https://ror.org/00kb2qn83', 'en', 1, 'https://ror.org/00kb2qn83 Setauket Neighborhood House'),
(12866, 'https://ror.org/05e5x5788', 'en', 1, 'https://ror.org/05e5x5788 Holzer Heritage Foundation'),
(12867, 'https://ror.org/03821ge86', 'fr', 1, 'https://ror.org/03821ge86 Fondation Asile des Aveugles'),
(12868, 'https://ror.org/01czwga19', 'fr', 1, 'https://ror.org/01czwga19 Fondation Leducq Leducq Foundation'),
(12869, 'https://ror.org/02a2nzn96', 'en', 1, 'https://ror.org/02a2nzn96 Home for Little Wanderers'),
(12870, 'https://ror.org/02a3vgk42', 'en', 1, 'https://ror.org/02a3vgk42 Homes for Our Troops'),
(12871, 'https://ror.org/03ma7rr84', 'en', 1, 'https://ror.org/03ma7rr84 Egyptian American Medical Center'),
(12872, 'https://ror.org/05fa04208', 'it', 1, 'https://ror.org/05fa04208 Fondazione Humanitas per la Ricerca'),
(12873, 'https://ror.org/057xjcx32', 'en', 1, 'https://ror.org/057xjcx32 World Food Program USA'),
(12874, 'https://ror.org/02f64hv34', 'en', 1, 'https://ror.org/02f64hv34 No Barriers Youth'),
(12875, 'https://ror.org/054j7wb83', 'no_lang_code', 1, 'https://ror.org/054j7wb83 Eisai (United Kingdom)'),
(12876, 'https://ror.org/01kze5v62', 'no_lang_code', 1, 'https://ror.org/01kze5v62 WWOZ'),
(12877, 'https://ror.org/027xf9k42', 'no_lang_code', 1, 'https://ror.org/027xf9k42 DuPont (Norway)'),
(12878, 'https://ror.org/021zy4d72', 'en', 1, 'https://ror.org/021zy4d72 World Foundation for Medical Research and Prevention'),
(12879, 'https://ror.org/05kwxr504', 'en', 1, 'https://ror.org/05kwxr504 Home Free Home'),
(12880, 'https://ror.org/034xxbj70', 'en', 1, 'https://ror.org/034xxbj70 Global Health Council'),
(12881, 'https://ror.org/05rtjs925', 'no_lang_code', 1, 'https://ror.org/05rtjs925 Ekahau (Finland)'),
(12882, 'https://ror.org/05f9w5178', 'en', 1, 'https://ror.org/05f9w5178 Friends-4-Cures'),
(12883, 'https://ror.org/02mtpb511', 'no_lang_code', 1, 'https://ror.org/02mtpb511 Hoosier Cancer Research Network (United States)'),
(12884, 'https://ror.org/04w5mc055', 'en', 1, 'https://ror.org/04w5mc055 Global Health Research Center of Central Asia'),
(12885, 'https://ror.org/03kcr0m63', 'it', 1, 'https://ror.org/03kcr0m63 Fondazione Intergruppo Italiano Linfomi Onlus'),
(12886, 'https://ror.org/01vqw4208', 'no_lang_code', 1, 'https://ror.org/01vqw4208 Hope Afloat'),
(12887, 'https://ror.org/036baaz63', 'en', 1, 'https://ror.org/036baaz63 Front Line Defenders'),
(12888, 'https://ror.org/04r1s2546', 'en', 1, 'https://ror.org/04r1s2546 Agricultural Research Council of South Africa'),
(12889, 'https://ror.org/04vrtfy40', 'en', 1, 'https://ror.org/04vrtfy40 Global Ministries'),
(12890, 'https://ror.org/04smdqx37', 'it', 1, 'https://ror.org/04smdqx37 Fondazione IRET ONLUS'),
(12891, 'https://ror.org/02je5e910', 'en', 1, 'https://ror.org/02je5e910 Hope Chest for Breast Cancer'),
(12892, 'https://ror.org/03eq22881', 'en', 1, 'https://ror.org/03eq22881 Institute for Deciduous Fruit, Vines and Wine'),
(12893, 'https://ror.org/01qben656', 'en', 1, 'https://ror.org/01qben656 Global Opportunities Unlimited'),
(12894, 'https://ror.org/05yap4w73', 'en', 1, 'https://ror.org/05yap4w73 Frontier Community Services'),
(12895, 'https://ror.org/032dya782', 'en', 1, 'https://ror.org/032dya782 El Dorado County Health and Human Services Agency'),
(12896, 'https://ror.org/01dfd3f84', 'it', 1, 'https://ror.org/01dfd3f84 Fondazione Matilde Tettamanti Menotti De Marchi'),
(12897, 'https://ror.org/05eh8vk50', 'en', 1, 'https://ror.org/05eh8vk50 Hope HealthCare Services'),
(12898, 'https://ror.org/022ky1t43', 'en', 1, 'https://ror.org/022ky1t43 Hope House Ministries'),
(12899, 'https://ror.org/05kqphm40', 'en', 1, 'https://ror.org/05kqphm40 Hope in Bloom'),
(12900, 'https://ror.org/00gcnz094', 'en', 1, 'https://ror.org/00gcnz094 Global Technology Community'),
(12901, 'https://ror.org/02jb1pj89', 'en', 1, 'https://ror.org/02jb1pj89 HOPE Organization'),
(12902, 'https://ror.org/0165ws896', 'en', 1, 'https://ror.org/0165ws896 Hope Through Grace'),
(12903, 'https://ror.org/02mt8gf23', 'en', 1, 'https://ror.org/02mt8gf23 Hope Worldwide Monterrey'),
(12904, 'https://ror.org/01yex6672', 'no_lang_code', 1, 'https://ror.org/01yex6672 GlycoMimetics (United States)'),
(12905, 'https://ror.org/057zzzn17', 'en', 1, 'https://ror.org/057zzzn17 El/La Para TransLatinas'),
(12906, 'https://ror.org/03jtn8n67', 'es', 1, 'https://ror.org/03jtn8n67 Equipo Latinoamericano de Justicia y Género'),
(12907, 'https://ror.org/014pnzp14', 'en', 1, 'https://ror.org/014pnzp14 Elder Services of the Merrimack Valley'),
(12908, 'https://ror.org/04e9vwv03', 'en', 1, 'https://ror.org/04e9vwv03 HopeLab'),
(12909, 'https://ror.org/0006xs696', 'en', 1, 'https://ror.org/0006xs696 Ele''s Place'),
(12910, 'https://ror.org/02we5km93', 'en', 1, 'https://ror.org/02we5km93 Fund for Park Avenue'),
(12911, 'https://ror.org/031hztf49', 'en', 1, 'https://ror.org/031hztf49 Fund for the City of New York'),
(12912, 'https://ror.org/01qeqe711', 'pt', 1, 'https://ror.org/01qeqe711 Fundação do Câncer'),
(12913, 'https://ror.org/02vjgqy71', 'en', 1, 'https://ror.org/02vjgqy71 Elijah House'),
(12914, 'https://ror.org/03nvkfb40', 'en', 1, 'https://ror.org/03nvkfb40 Elite Wellness'),
(12915, 'https://ror.org/041btzw22', 'en', 1, 'https://ror.org/041btzw22 God''s Love We Deliver'),
(12916, 'https://ror.org/00b37k984', 'en', 1, 'https://ror.org/00b37k984 Elixir Fund'),
(12917, 'https://ror.org/03q9kkf91', 'en', 1, 'https://ror.org/03q9kkf91 Goddard Riverside'),
(12918, 'https://ror.org/01d54xp37', 'pt', 1, 'https://ror.org/01d54xp37 Fundmed Pesquisa, Ensino e Inovacao'),
(12919, 'https://ror.org/057csh885', 'en', 1, 'https://ror.org/057csh885 Horizon Health Network'),
(12920, 'https://ror.org/01c7ad114', 'en', 1, 'https://ror.org/01c7ad114 Elizabeth City Pasquotank Public Schools'),
(12921, 'https://ror.org/012kq3b54', 'en', 1, 'https://ror.org/012kq3b54 Horizon Home Care and Hospice'),
(12922, 'https://ror.org/022de2f17', 'en', 1, 'https://ror.org/022de2f17 Elizabethtown Community Hospital'),
(12923, 'https://ror.org/044td5g81', 'en', 1, 'https://ror.org/044td5g81 Golden Valley Health Centers'),
(12924, 'https://ror.org/018dcfg43', 'en', 1, 'https://ror.org/018dcfg43 Penn Highlands Healthcare'),
(12925, 'https://ror.org/03jta4a35', 'en', 1, 'https://ror.org/03jta4a35 Barnes-Jewish College'),
(12926, 'https://ror.org/04cxspg15', 'it', 1, 'https://ror.org/04cxspg15 Fondazione Umberto Di Mario'),
(12927, 'https://ror.org/00a20h625', 'en', 1, 'https://ror.org/00a20h625 Capital Region Medical Center'),
(12928, 'https://ror.org/01mrv7b35', 'en', 1, 'https://ror.org/01mrv7b35 Golisano Foundation'),
(12929, 'https://ror.org/02nr1pp46', 'en', 1, 'https://ror.org/02nr1pp46 Food and Friends'),
(12930, 'https://ror.org/02y8rpf68', 'en', 1, 'https://ror.org/02y8rpf68 HorseAbility'),
(12931, 'https://ror.org/03g516j82', 'en', 1, 'https://ror.org/03g516j82 Food Outreach'),
(12932, 'https://ror.org/05jjek176', 'en', 1, 'https://ror.org/05jjek176 Hospice Austin'),
(12933, 'https://ror.org/03r177k09', 'en', 1, 'https://ror.org/03r177k09 Hospice Buffalo'),
(12934, 'https://ror.org/03wrq2n31', 'en', 1, 'https://ror.org/03wrq2n31 Hospice By The Bay'),
(12935, 'https://ror.org/00m783666', 'en', 1, 'https://ror.org/00m783666 WV Caring'),
(12936, 'https://ror.org/04ebrck23', 'en', 1, 'https://ror.org/04ebrck23 Hospice Nepal'),
(12937, 'https://ror.org/05ax4es29', 'en', 1, 'https://ror.org/05ax4es29 The Hospice of Baton Rouge'),
(12938, 'https://ror.org/01zgmxw25', 'en', 1, 'https://ror.org/01zgmxw25 Chapters Health System'),
(12939, 'https://ror.org/05nv29j63', 'no_lang_code', 1, 'https://ror.org/05nv29j63 EveryStep'),
(12940, 'https://ror.org/057jahg02', 'en', 1, 'https://ror.org/057jahg02 Good Shepherd Rehabilitation'),
(12941, 'https://ror.org/059jv7160', 'en', 1, 'https://ror.org/059jv7160 Cornerstone Community Development Corporation'),
(12942, 'https://ror.org/0337ytp02', 'en', 1, 'https://ror.org/0337ytp02 Hospice of Charles County'),
(12943, 'https://ror.org/026peqa79', 'en', 1, 'https://ror.org/026peqa79 Goodwill of Orange County'),
(12944, 'https://ror.org/029sxat24', 'en', 1, 'https://ror.org/029sxat24 AdventHealth Gordon'),
(12945, 'https://ror.org/01z528276', 'en', 1, 'https://ror.org/01z528276 Emilio Nares Foundation'),
(12946, 'https://ror.org/01z4ww589', 'en', 1, 'https://ror.org/01z4ww589 Chippewa County Health Department'),
(12947, 'https://ror.org/02fhdkr54', 'en', 1, 'https://ror.org/02fhdkr54 Ohio''s Hospice of Dayton'),
(12948, 'https://ror.org/013b70286', 'en', 1, 'https://ror.org/013b70286 Denver Hospice'),
(12949, 'https://ror.org/02sjyd344', 'en', 1, 'https://ror.org/02sjyd344 Fort Collins Rowing Association'),
(12950, 'https://ror.org/031j4es70', 'en', 1, 'https://ror.org/031j4es70 Hospice of Metropolitan Erie'),
(12951, 'https://ror.org/019knvq46', 'en', 1, 'https://ror.org/019knvq46 Emmanuel Cancer Foundation'),
(12952, 'https://ror.org/045e95p45', 'en', 1, 'https://ror.org/045e95p45 JourneyCare'),
(12953, 'https://ror.org/05031m633', 'en', 1, 'https://ror.org/05031m633 Employment Opportunity and Training Center'),
(12954, 'https://ror.org/0400k7f13', 'en', 1, 'https://ror.org/0400k7f13 Hospice of Orleans'),
(12955, 'https://ror.org/011728q79', 'en', 1, 'https://ror.org/011728q79 Foundation Fighting Blindness'),
(12956, 'https://ror.org/00nzvtd14', 'en', 1, 'https://ror.org/00nzvtd14 Bluegrass Care Navigators'),
(12957, 'https://ror.org/03crcmh94', 'en', 1, 'https://ror.org/03crcmh94 Governance Links Tanzania'),
(12958, 'https://ror.org/03r4w0b84', 'es', 1, 'https://ror.org/03r4w0b84 Fundación Arturo López Pérez Instituto Oncológico FALP'),
(12959, 'https://ror.org/01g5vqq31', 'es', 1, 'https://ror.org/01g5vqq31 FundAyuda'),
(12960, 'https://ror.org/019ksbk73', 'en', 1, 'https://ror.org/019ksbk73 Hospice of the Upstate'),
(12961, 'https://ror.org/042e1dy21', 'en', 1, 'https://ror.org/042e1dy21 Hospice of the Valley'),
(12962, 'https://ror.org/02vrwrw10', 'en', 1, 'https://ror.org/02vrwrw10 Hospice of the Western Reserve'),
(12963, 'https://ror.org/05jwzx688', 'en', 1, 'https://ror.org/05jwzx688 Governor''s Institute on Substance Abuse'),
(12964, 'https://ror.org/0417hfx81', 'en', 1, 'https://ror.org/0417hfx81 Foundation for Integrated Rural Development'),
(12965, 'https://ror.org/04tpy3f14', 'pt', 1, 'https://ror.org/04tpy3f14 Hospital Adventista Silvestre'),
(12966, 'https://ror.org/03byhfv76', 'en', 1, 'https://ror.org/03byhfv76 South Georgia Medical Center'),
(12967, 'https://ror.org/0391e3e29', 'en', 1, 'https://ror.org/0391e3e29 Grace Church of The Nazarene'),
(12968, 'https://ror.org/00k86s890', 'en', 1, 'https://ror.org/00k86s890 Foundation for the National Institutes of Health'),
(12969, 'https://ror.org/00jv1ms45', 'no_lang_code', 1, 'https://ror.org/00jv1ms45 Gradalis (United States)'),
(12970, 'https://ror.org/05902ma20', 'no_lang_code', 1, 'https://ror.org/05902ma20 Gradient Biomodeling (United States)'),
(12971, 'https://ror.org/04b59sp53', 'en', 1, 'https://ror.org/04b59sp53 UDAAN for the Disabled'),
(12972, 'https://ror.org/038syck06', 'es', 1, 'https://ror.org/038syck06 Casita de Mausi'),
(12973, 'https://ror.org/04npkmp39', 'en', 1, 'https://ror.org/04npkmp39 Empower Spinal Cord Injury'),
(12974, 'https://ror.org/01z89r872', 'en', 1, 'https://ror.org/01z89r872 EmpowerTech'),
(12975, 'https://ror.org/02d61wv82', 'pt', 1, 'https://ror.org/02d61wv82 Hospital São Vicente'),
(12976, 'https://ror.org/019dhev54', 'en', 1, 'https://ror.org/019dhev54 Granite State Independent Living'),
(12977, 'https://ror.org/01p6hjg61', 'es', 1, 'https://ror.org/01p6hjg61 Fundación Ciencia and Vida'),
(12978, 'https://ror.org/0090j2029', 'en', 1, 'https://ror.org/0090j2029 Hospital Universiti Sains Malaysia Universiti Sains Malaysia School of Medical Science'),
(12979, 'https://ror.org/00h2d8k73', 'en', 1, 'https://ror.org/00h2d8k73 Hospitality Homes'),
(12980, 'https://ror.org/04w3cpz93', 'en', 1, 'https://ror.org/04w3cpz93 Grant A Wish'),
(12981, 'https://ror.org/01c6ycm57', 'no_lang_code', 1, 'https://ror.org/01c6ycm57 EnBiotix (United States)'),
(12982, 'https://ror.org/00d68nb44', 'en', 1, 'https://ror.org/00d68nb44 GrassrootsHealth');
INSERT INTO `rors` VALUES
(12983, 'https://ror.org/03gyze223', 'es', 1, 'https://ror.org/03gyze223 Fundacion de Neurociencias'),
(12984, 'https://ror.org/054bs2v13', 'en', 1, 'https://ror.org/054bs2v13 Mercy Health'),
(12985, 'https://ror.org/05j066y09', 'en', 1, 'https://ror.org/05j066y09 Hunstad Kortesis Bharti Cosmetic Surgery'),
(12986, 'https://ror.org/00a3hks83', 'no_lang_code', 1, 'https://ror.org/00a3hks83 Housey Pharmaceutical Research Laboratories'),
(12987, 'https://ror.org/002nw1r81', 'es', 1, 'https://ror.org/002nw1r81 Andalusian Public Foundation for Health Research in Biomedicine and Malaga Fundación Pública Andaluza para la Investigación de Málaga en Biomedicina y Salud'),
(12988, 'https://ror.org/049qn2f85', 'en', 1, 'https://ror.org/049qn2f85 Hunts Point Alliance for Children'),
(12989, 'https://ror.org/01njr2r38', 'en', 1, 'https://ror.org/01njr2r38 Hurley Foundation'),
(12990, 'https://ror.org/05qp1m760', 'en', 1, 'https://ror.org/05qp1m760 Hurdle Jumpers'),
(12991, 'https://ror.org/00str1b42', 'en', 1, 'https://ror.org/00str1b42 Houston County'),
(12992, 'https://ror.org/0589fsc66', 'es', 1, 'https://ror.org/0589fsc66 Instituto Nacional del Cáncer'),
(12993, 'https://ror.org/01qp3cj59', 'en', 1, 'https://ror.org/01qp3cj59 International Network for Cancer Treatment and Research'),
(12994, 'https://ror.org/057ch9j82', 'en', 1, 'https://ror.org/057ch9j82 Great Plains Tribal Chairmen’s Health Board'),
(12995, 'https://ror.org/03sn2zf74', 'en', 1, 'https://ror.org/03sn2zf74 Greater Baden Medical Services'),
(12996, 'https://ror.org/05p9y3e72', 'en', 1, 'https://ror.org/05p9y3e72 Schneider Children''s Hospital'),
(12997, 'https://ror.org/04w4k4155', 'no_lang_code', 1, 'https://ror.org/04w4k4155 Hövding (Sweden)'),
(12998, 'https://ror.org/00abwfk08', 'en', 1, 'https://ror.org/00abwfk08 Howard Area Community Center'),
(12999, 'https://ror.org/04sawzq03', 'en', 1, 'https://ror.org/04sawzq03 Howard County Health Department'),
(13000, 'https://ror.org/0079phc76', 'en', 1, 'https://ror.org/0079phc76 Greater Faith Baptist Church'),
(13001, 'https://ror.org/012gye839', 'en', 1, 'https://ror.org/012gye839 Bwrdd Iechyd Lleol Hywel Dda Hywel Dda University Health Board'),
(13002, 'https://ror.org/007r56b43', 'en', 1, 'https://ror.org/007r56b43 Endeavor Charter School'),
(13003, 'https://ror.org/02t78v594', 'en', 1, 'https://ror.org/02t78v594 Greater Holy Temple Church Of God In Christ'),
(13004, 'https://ror.org/01efz0w18', 'en', 1, 'https://ror.org/01efz0w18 Greater Kansas City Spinal Cord Injury Association'),
(13005, 'https://ror.org/01k4vzb64', 'no_lang_code', 1, 'https://ror.org/01k4vzb64 Endo Pharmaceuticals (United States)'),
(13006, 'https://ror.org/03qm72t57', 'es', 1, 'https://ror.org/03qm72t57 Fundación Oncohematología Infantil'),
(13007, 'https://ror.org/00cvfgp24', 'no_lang_code', 1, 'https://ror.org/00cvfgp24 Endocrine Technology (United States)'),
(13008, 'https://ror.org/05p7whk93', 'en', 1, 'https://ror.org/05p7whk93 Energy Therapies Alliance of Central Illinois'),
(13009, 'https://ror.org/04ft04872', 'en', 1, 'https://ror.org/04ft04872 Greater Los Angeles Agency on Deafness'),
(13010, 'https://ror.org/043989r68', 'en', 1, 'https://ror.org/043989r68 Community Foundation for Northeast Michigan'),
(13011, 'https://ror.org/04xqgyf78', 'en', 1, 'https://ror.org/04xqgyf78 Greek Association of Alzheimer''s Disease and Related Disorders'),
(13012, 'https://ror.org/04eg60b20', 'en', 1, 'https://ror.org/04eg60b20 I''m Still Here Foundation'),
(13013, 'https://ror.org/055en7988', 'no_lang_code', 1, 'https://ror.org/055en7988 Ensemble Therapeutics (United States)'),
(13014, 'https://ror.org/01q3zpq21', 'en', 1, 'https://ror.org/01q3zpq21 Ibis Reproductive Health'),
(13015, 'https://ror.org/052rymf92', 'en', 1, 'https://ror.org/052rymf92 Ibaraki Children''s Hospital 茨城県立こども病院'),
(13016, 'https://ror.org/00thc5937', 'es', 1, 'https://ror.org/00thc5937 Fundación Ramón Domínguez'),
(13017, 'https://ror.org/041fc3q68', 'no_lang_code', 1, 'https://ror.org/041fc3q68 EnteraTech (United States)'),
(13018, 'https://ror.org/0160wm621', 'no_lang_code', 1, 'https://ror.org/0160wm621 Green Tech Labs (United States)'),
(13019, 'https://ror.org/05vj0gw61', 'no_lang_code', 1, 'https://ror.org/05vj0gw61 EntreChem (Spain)'),
(13020, 'https://ror.org/03y686t84', 'no_lang_code', 1, 'https://ror.org/03y686t84 Grenada National Organisation of Women'),
(13021, 'https://ror.org/00pnhy634', 'en', 1, 'https://ror.org/00pnhy634 The Entrepreneurs Foundation of Central Texas'),
(13022, 'https://ror.org/0252rqe04', 'en', 1, 'https://ror.org/0252rqe04 International Anesthesia Research Society'),
(13023, 'https://ror.org/002k2wg65', 'no_lang_code', 1, 'https://ror.org/002k2wg65 EntroGen (United States)'),
(13024, 'https://ror.org/03wbdxv85', 'en', 1, 'https://ror.org/03wbdxv85 Greyston'),
(13025, 'https://ror.org/02148sc68', 'en', 1, 'https://ror.org/02148sc68 Gaston County Schools'),
(13026, 'https://ror.org/0593sjj19', 'no_lang_code', 1, 'https://ror.org/0593sjj19 EpaleX (United States)'),
(13027, 'https://ror.org/00zwgqz39', 'es', 1, 'https://ror.org/00zwgqz39 Fundación Severo Ochoa'),
(13028, 'https://ror.org/0034r9358', 'en', 1, 'https://ror.org/0034r9358 Southeast Georgia Health System'),
(13029, 'https://ror.org/01zpsbf45', 'en', 1, 'https://ror.org/01zpsbf45 CHRISTUS St. Michael Health System'),
(13030, 'https://ror.org/02k1b4g33', 'no_lang_code', 1, 'https://ror.org/02k1b4g33 Grind For Life (United States)'),
(13031, 'https://ror.org/01c3w3270', 'en', 1, 'https://ror.org/01c3w3270 Institute of Cognitive and Brain Sciences'),
(13032, 'https://ror.org/01ge9a191', 'no_lang_code', 1, 'https://ror.org/01ge9a191 iCo Therapeutics (Canada)'),
(13033, 'https://ror.org/03ra41c26', 'no_lang_code', 1, 'https://ror.org/03ra41c26 Epigenetix (United States)'),
(13034, 'https://ror.org/02pwd4094', 'en', 1, 'https://ror.org/02pwd4094 Grossmont Hospital Foundation'),
(13035, 'https://ror.org/01pxre019', 'en', 1, 'https://ror.org/01pxre019 Epilepsy Foundation'),
(13036, 'https://ror.org/049qds964', 'en', 1, 'https://ror.org/049qds964 Wilshire Health and Community Services'),
(13037, 'https://ror.org/02m0cd826', 'en', 1, 'https://ror.org/02m0cd826 St. Luke''s Children''s Hospital'),
(13038, 'https://ror.org/05eygvb62', 'en', 1, 'https://ror.org/05eygvb62 Future Generations University'),
(13039, 'https://ror.org/03jk9qe20', 'no_lang_code', 1, 'https://ror.org/03jk9qe20 Epitel (United States)'),
(13040, 'https://ror.org/01ej5d124', 'pt', 1, 'https://ror.org/01ej5d124 Grupo Realizar'),
(13041, 'https://ror.org/03yv2v252', 'no_lang_code', 1, 'https://ror.org/03yv2v252 EpitoGenesis (United States)'),
(13042, 'https://ror.org/02cvw1988', 'en', 1, 'https://ror.org/02cvw1988 Equestrian Aid Foundation'),
(13043, 'https://ror.org/00d9pfn36', 'en', 1, 'https://ror.org/00d9pfn36 George Eliava Institute of Bacteriophage, Microbiology and Virology'),
(13044, 'https://ror.org/044vb2892', 'en', 1, 'https://ror.org/044vb2892 Erebouni Medical Center'),
(13045, 'https://ror.org/01fb4jv08', 'en', 1, 'https://ror.org/01fb4jv08 Guam Communications Network'),
(13046, 'https://ror.org/01f0ynj82', 'en', 1, 'https://ror.org/01f0ynj82 Erie Neighborhood House'),
(13047, 'https://ror.org/02gen5m31', 'en', 1, 'https://ror.org/02gen5m31 Erikson Institute'),
(13048, 'https://ror.org/02ewpgp84', 'en', 1, 'https://ror.org/02ewpgp84 ErinoakKids Centre for Treatment and Development'),
(13049, 'https://ror.org/03ryzec43', 'no_lang_code', 1, 'https://ror.org/03ryzec43 Bio, Tech and Beyond (United States)'),
(13050, 'https://ror.org/00bgp5g67', 'no_lang_code', 1, 'https://ror.org/00bgp5g67 iFyber (United States)'),
(13051, 'https://ror.org/04sz0rs34', 'en', 1, 'https://ror.org/04sz0rs34 Erlanger Health System'),
(13052, 'https://ror.org/05f19wy41', 'no_lang_code', 1, 'https://ror.org/05f19wy41 Igan Biosciences (United States)'),
(13053, 'https://ror.org/02rsq6w37', 'en', 1, 'https://ror.org/02rsq6w37 Ignite Adaptive Sports'),
(13054, 'https://ror.org/01mssdk07', 'no_lang_code', 1, 'https://ror.org/01mssdk07 Enterprise Science and Computing (United States)'),
(13055, 'https://ror.org/01anprz44', 'no_lang_code', 1, 'https://ror.org/01anprz44 Cell Machines (United States)'),
(13056, 'https://ror.org/04jqjaf29', 'en', 1, 'https://ror.org/04jqjaf29 EspeRare Foundation'),
(13057, 'https://ror.org/019ssje31', 'en', 1, 'https://ror.org/019ssje31 Essentia Health'),
(13058, 'https://ror.org/04e7m9p55', 'no_lang_code', 1, 'https://ror.org/04e7m9p55 Galapagos (Netherlands)'),
(13059, 'https://ror.org/051ansx96', 'no_lang_code', 1, 'https://ror.org/051ansx96 Eternity Bioscience (United States)'),
(13060, 'https://ror.org/008zr4d33', 'en', 1, 'https://ror.org/008zr4d33 Galilee Missionary Baptist Church'),
(13061, 'https://ror.org/03pyecx64', 'en', 1, 'https://ror.org/03pyecx64 Cumberland County Schools'),
(13062, 'https://ror.org/047qgrj71', 'en', 1, 'https://ror.org/047qgrj71 Illinois Action for Children'),
(13063, 'https://ror.org/02c31t502', 'en', 1, 'https://ror.org/02c31t502 Guangzhou Institutes of Biomedicine and Health 中国科学院广州生物医药与健康研究院'),
(13064, 'https://ror.org/03vfgta75', 'en', 1, 'https://ror.org/03vfgta75 Illinois CancerCare'),
(13065, 'https://ror.org/025j1vp15', 'en', 1, 'https://ror.org/025j1vp15 Guardian Angel Homes'),
(13066, 'https://ror.org/03ajn7m72', 'en', 1, 'https://ror.org/03ajn7m72 Illinois Central College'),
(13067, 'https://ror.org/02ys5x139', 'en', 1, 'https://ror.org/02ys5x139 Illinois College'),
(13068, 'https://ror.org/03834em22', 'en', 1, 'https://ror.org/03834em22 Illinois Public Health Institute'),
(13069, 'https://ror.org/0209vy811', 'en', 1, 'https://ror.org/0209vy811 Illinois Valley Ear Nose and Throat'),
(13070, 'https://ror.org/00hyf3k92', 'en', 1, 'https://ror.org/00hyf3k92 Ethiopian Community Development Council'),
(13071, 'https://ror.org/04hsm3t82', 'en', 1, 'https://ror.org/04hsm3t82 Gardner''s House'),
(13072, 'https://ror.org/05cdper96', 'no_lang_code', 1, 'https://ror.org/05cdper96 IMGENEX India (India)'),
(13073, 'https://ror.org/00qmezm19', 'en', 1, 'https://ror.org/00qmezm19 Europa Donna'),
(13074, 'https://ror.org/02g03w722', 'en', 1, 'https://ror.org/02g03w722 Guards of The Earth and The Vulnerable'),
(13075, 'https://ror.org/04dtc1m65', 'en', 1, 'https://ror.org/04dtc1m65 Immigrant and Refugee Community Organization'),
(13076, 'https://ror.org/00hn1zk59', 'en', 1, 'https://ror.org/00hn1zk59 Guiding Lights Caregiver Support Center'),
(13077, 'https://ror.org/05vgc9608', 'en', 1, 'https://ror.org/05vgc9608 Guilford County Schools'),
(13078, 'https://ror.org/03et3t032', 'en', 1, 'https://ror.org/03et3t032 Gulf Relief Foundation'),
(13079, 'https://ror.org/00x856k20', 'no_lang_code', 1, 'https://ror.org/00x856k20 ImmuneWorks (United States)'),
(13080, 'https://ror.org/04pxgkb44', 'en', 1, 'https://ror.org/04pxgkb44 Hudson Valley Youth Chorale'),
(13081, 'https://ror.org/012jq2614', 'en', 1, 'https://ror.org/012jq2614 Gateway Confluence Wheelchair Sports Foundation'),
(13082, 'https://ror.org/02x78ab05', 'en', 1, 'https://ror.org/02x78ab05 European Cancer Prevention'),
(13083, 'https://ror.org/030e2am13', 'en', 1, 'https://ror.org/030e2am13 Human Relief Foundation'),
(13084, 'https://ror.org/02nfs1v98', 'en', 1, 'https://ror.org/02nfs1v98 Gateways Hospital and Mental Health Center'),
(13085, 'https://ror.org/02babdz45', 'en', 1, 'https://ror.org/02babdz45 European Neuro Muscular Centre'),
(13086, 'https://ror.org/02bgway40', 'en', 1, 'https://ror.org/02bgway40 Gulu Women with Disabilities Union'),
(13087, 'https://ror.org/0208ywa45', 'en', 1, 'https://ror.org/0208ywa45 Gathering 4 Gardner'),
(13088, 'https://ror.org/02e2xy633', 'en', 1, 'https://ror.org/02e2xy633 Human Resources Development Institute'),
(13089, 'https://ror.org/04ttrjn35', 'en', 1, 'https://ror.org/04ttrjn35 The Center on Colfax'),
(13090, 'https://ror.org/022gwqv30', 'en', 1, 'https://ror.org/022gwqv30 Breast and GYN Health Project'),
(13091, 'https://ror.org/01m3xga44', 'en', 1, 'https://ror.org/01m3xga44 Evergreen Community Charter School'),
(13092, 'https://ror.org/0171n6z35', 'en', 1, 'https://ror.org/0171n6z35 EvergreenHealth Foundation'),
(13093, 'https://ror.org/03eqeqg74', 'en', 1, 'https://ror.org/03eqeqg74 Institute of Protein Biochemistry Istituto di Biochimica delle Proteine'),
(13094, 'https://ror.org/0258a2f50', 'en', 1, 'https://ror.org/0258a2f50 Institute of Software Systems Інститут програмних систем'),
(13095, 'https://ror.org/01gpc1r56', 'en', 1, 'https://ror.org/01gpc1r56 H.Buniatian Institute of Biochemistry'),
(13096, 'https://ror.org/02ck4xq38', 'no_lang_code', 1, 'https://ror.org/02ck4xq38 Impel Neuropharma (United States)'),
(13097, 'https://ror.org/03nznsh21', 'en', 1, 'https://ror.org/03nznsh21 Gems of Hope'),
(13098, 'https://ror.org/0498rcw21', 'en', 1, 'https://ror.org/0498rcw21 Habilitative Systems'),
(13099, 'https://ror.org/04tv16z87', 'en', 1, 'https://ror.org/04tv16z87 Habitat for Humanity Fiji'),
(13100, 'https://ror.org/000rag760', 'en', 1, 'https://ror.org/000rag760 Habitat for Humanity of Greater Charlottesville'),
(13101, 'https://ror.org/05q5snp60', 'en', 1, 'https://ror.org/05q5snp60 St. Luke''s Cystic Fibrosis Center of Idaho'),
(13102, 'https://ror.org/05a19xw41', 'en', 1, 'https://ror.org/05a19xw41 Habitot Children''s Museum'),
(13103, 'https://ror.org/05wrev716', 'no_lang_code', 1, 'https://ror.org/05wrev716 Generex Biotechnology (Canada)'),
(13104, 'https://ror.org/04tst3481', 'no_lang_code', 1, 'https://ror.org/04tst3481 Hadassah'),
(13105, 'https://ror.org/02bfry065', 'no_lang_code', 1, 'https://ror.org/02bfry065 Hagar International'),
(13106, 'https://ror.org/0284hgn97', 'no_lang_code', 1, 'https://ror.org/0284hgn97 Genesis Biotechnologies (United States)'),
(13107, 'https://ror.org/00c6h1169', 'en', 1, 'https://ror.org/00c6h1169 Genesis Counseling Centers'),
(13108, 'https://ror.org/01nz9qm02', 'en', 1, 'https://ror.org/01nz9qm02 Genesis Foundation'),
(13109, 'https://ror.org/00618cy28', 'en', 1, 'https://ror.org/00618cy28 Haitian American Association Against Cancer'),
(13110, 'https://ror.org/059xcee45', 'en', 1, 'https://ror.org/059xcee45 Genesis Health System'),
(13111, 'https://ror.org/0226s8t61', 'en', 1, 'https://ror.org/0226s8t61 Halleck Creek Ranch'),
(13112, 'https://ror.org/04026qg09', 'en', 1, 'https://ror.org/04026qg09 Genesis HealthCare System'),
(13113, 'https://ror.org/002czwf36', 'en', 1, 'https://ror.org/002czwf36 MelroseWakefield Healthcare'),
(13114, 'https://ror.org/04hjhtb64', 'en', 1, 'https://ror.org/04hjhtb64 Elks Rehabilitation Hospital'),
(13115, 'https://ror.org/05ppten54', 'en', 1, 'https://ror.org/05ppten54 Genesys Hurley Cancer Institute'),
(13116, 'https://ror.org/02xnk0c33', 'no_lang_code', 1, 'https://ror.org/02xnk0c33 In Silico Biosciences (United States)'),
(13117, 'https://ror.org/02etp1027', 'en', 1, 'https://ror.org/02etp1027 In The Meantime Men’s Group'),
(13118, 'https://ror.org/05dmj1t18', 'no_lang_code', 1, 'https://ror.org/05dmj1t18 Akashi Therapeutics (United States)'),
(13119, 'https://ror.org/02d1x3182', 'en', 1, 'https://ror.org/02d1x3182 Genetic Research Institute of the Desert'),
(13120, 'https://ror.org/036pfxs78', 'en', 1, 'https://ror.org/036pfxs78 County Councils on Aging'),
(13121, 'https://ror.org/00brvts71', 'en', 1, 'https://ror.org/00brvts71 HP Family Medical Clinic'),
(13122, 'https://ror.org/01rxpfa84', 'en', 1, 'https://ror.org/01rxpfa84 IndependenceFirst'),
(13123, 'https://ror.org/05by9p696', 'no_lang_code', 1, 'https://ror.org/05by9p696 HansaBioMed (Estonia)'),
(13124, 'https://ror.org/01r3hzs43', 'es', 1, 'https://ror.org/01r3hzs43 Instituto de la Memoria Depresión y Enfermedades de Riesgo'),
(13125, 'https://ror.org/055b6zg31', 'en', 1, 'https://ror.org/055b6zg31 genHkids Coalition'),
(13126, 'https://ror.org/051yjgn28', 'no_lang_code', 1, 'https://ror.org/051yjgn28 Genkyotex (Switzerland)'),
(13127, 'https://ror.org/028caqe42', 'pt', 1, 'https://ror.org/028caqe42 Instituto Nacional de Matemática Pura e Aplicada National Institute for Pure and Applied Mathematics'),
(13128, 'https://ror.org/01ay7an66', 'no_lang_code', 1, 'https://ror.org/01ay7an66 VERO Biotech (United States)'),
(13129, 'https://ror.org/03wcw5870', 'en', 1, 'https://ror.org/03wcw5870 India Health Action Trust'),
(13130, 'https://ror.org/017prpf68', 'no_lang_code', 1, 'https://ror.org/017prpf68 OneGift'),
(13131, 'https://ror.org/036pa7g20', 'en', 1, 'https://ror.org/036pa7g20 Harbor Beach Community Hospital'),
(13132, 'https://ror.org/01m417e54', 'en', 1, 'https://ror.org/01m417e54 Indiana Cancer Consortium'),
(13133, 'https://ror.org/00jg4ch48', 'en', 1, 'https://ror.org/00jg4ch48 Indiana Cancer Registrars Association'),
(13134, 'https://ror.org/0131c1w17', 'en', 1, 'https://ror.org/0131c1w17 Harlem Children''s Zone'),
(13135, 'https://ror.org/01x8pzm10', 'no_lang_code', 1, 'https://ror.org/01x8pzm10 Harley-Davidson (United States)'),
(13136, 'https://ror.org/05patbw61', 'en', 1, 'https://ror.org/05patbw61 Individual Differences'),
(13137, 'https://ror.org/033pn6473', 'en', 1, 'https://ror.org/033pn6473 Harm Reduction Services'),
(13138, 'https://ror.org/02d6wbq68', 'en', 1, 'https://ror.org/02d6wbq68 GeoHazards International'),
(13139, 'https://ror.org/014bgkg42', 'en', 1, 'https://ror.org/014bgkg42 George Mark Children''s House'),
(13140, 'https://ror.org/040e8a368', 'no_lang_code', 1, 'https://ror.org/040e8a368 Harmonex (United States)'),
(13141, 'https://ror.org/041p50967', 'pt', 1, 'https://ror.org/041p50967 Instituto Noos'),
(13142, 'https://ror.org/0009gvn90', 'en', 1, 'https://ror.org/0009gvn90 Georgia Breast Cancer Coalition Fund'),
(13143, 'https://ror.org/03qe0c470', 'en', 1, 'https://ror.org/03qe0c470 Indiana Minority Health Coalition'),
(13144, 'https://ror.org/02h606z41', 'en', 1, 'https://ror.org/02h606z41 Georgia Canines for Independence'),
(13145, 'https://ror.org/039whrd55', 'en', 1, 'https://ror.org/039whrd55 Harrington Regional Medical Center'),
(13146, 'https://ror.org/01qa6hr76', 'en', 1, 'https://ror.org/01qa6hr76 Institute for Clinical Social Work'),
(13147, 'https://ror.org/02zsk0y62', 'en', 1, 'https://ror.org/02zsk0y62 Harris County Hospital District Foundation'),
(13148, 'https://ror.org/00wzdat64', 'en', 1, 'https://ror.org/00wzdat64 Instituto Familiar de la Raza'),
(13149, 'https://ror.org/04q71jj82', 'en', 1, 'https://ror.org/04q71jj82 Institute for Development, Research, Advocacy and Applied Care'),
(13150, 'https://ror.org/02yrcx115', 'en', 1, 'https://ror.org/02yrcx115 Texas Health Harris Methodist Hospital Fort Worth'),
(13151, 'https://ror.org/03d7h4x42', 'en', 1, 'https://ror.org/03d7h4x42 Independent Living Resource Center San Francisco'),
(13152, 'https://ror.org/001s48x24', 'en', 1, 'https://ror.org/001s48x24 Independent Living Resources'),
(13153, 'https://ror.org/05y2vby93', 'en', 1, 'https://ror.org/05y2vby93 Texas Health Resources Foundation'),
(13154, 'https://ror.org/02rrpz836', 'en', 1, 'https://ror.org/02rrpz836 Institute for EthnoMedicine'),
(13155, 'https://ror.org/04masjv69', 'en', 1, 'https://ror.org/04masjv69 Harry Gregg Foundation'),
(13156, 'https://ror.org/03jgkmd81', 'en', 1, 'https://ror.org/03jgkmd81 i3gb Foundation'),
(13157, 'https://ror.org/01bhfvx80', 'pt', 1, 'https://ror.org/01bhfvx80 Gestos'),
(13158, 'https://ror.org/024fjxd56', 'en', 1, 'https://ror.org/024fjxd56 Gibson Area Hospital and Health Services'),
(13159, 'https://ror.org/05evayb02', 'en', 1, 'https://ror.org/05evayb02 Baruch S. Blumberg Institute'),
(13160, 'https://ror.org/04nq17x65', 'en', 1, 'https://ror.org/04nq17x65 Bioethics International'),
(13161, 'https://ror.org/0292ppt25', 'en', 1, 'https://ror.org/0292ppt25 Gifts to Share'),
(13162, 'https://ror.org/00yw8fx90', 'en', 1, 'https://ror.org/00yw8fx90 Indo-American Center'),
(13163, 'https://ror.org/01bwznq34', 'en', 1, 'https://ror.org/01bwznq34 Gila Regional Medical Center'),
(13164, 'https://ror.org/051434232', 'en', 1, 'https://ror.org/051434232 Harvey Brooks Motivation and Development Foundation'),
(13165, 'https://ror.org/03zff7r07', 'en', 1, 'https://ror.org/03zff7r07 Gila River Healthcare'),
(13166, 'https://ror.org/03jrk2631', 'en', 1, 'https://ror.org/03jrk2631 Have A Heart Community Trust'),
(13167, 'https://ror.org/0142es516', 'en', 1, 'https://ror.org/0142es516 Gillette Children''s Specialty Healthcare'),
(13168, 'https://ror.org/04wmv4g63', 'en', 1, 'https://ror.org/04wmv4g63 Hawaii Children''s Cancer Foundation'),
(13169, 'https://ror.org/03waww979', 'en', 1, 'https://ror.org/03waww979 Hays Medical Center'),
(13170, 'https://ror.org/00v60dj89', 'no_lang_code', 1, 'https://ror.org/00v60dj89 Indoor Biotechnologies (United States)'),
(13171, 'https://ror.org/05af39960', 'en', 1, 'https://ror.org/05af39960 Gillen Brewer School'),
(13172, 'https://ror.org/05x0fr110', 'no_lang_code', 1, 'https://ror.org/05x0fr110 HBLA (United States)'),
(13173, 'https://ror.org/05rsdpj72', 'no_lang_code', 1, 'https://ror.org/05rsdpj72 Indus Business Systems (India) ఇండస్ బిజినెస్ సిస్టమ్స్ లిమిటెడ్'),
(13174, 'https://ror.org/04b43x362', 'en', 1, 'https://ror.org/04b43x362 International Center of New York'),
(13175, 'https://ror.org/04sxrc563', 'en', 1, 'https://ror.org/04sxrc563 Conversations! The International Ovarian Cancer Connection'),
(13176, 'https://ror.org/05fd2ss89', 'en', 1, 'https://ror.org/05fd2ss89 Chronic Condition Information Network'),
(13177, 'https://ror.org/014zp7s14', 'en', 1, 'https://ror.org/014zp7s14 Dream Foundation'),
(13178, 'https://ror.org/029255j70', 'en', 1, 'https://ror.org/029255j70 Cape Fear Valley Health System'),
(13179, 'https://ror.org/01107ae84', 'en', 1, 'https://ror.org/01107ae84 Des Moines University Osteopathic Medical Center'),
(13180, 'https://ror.org/015enq107', 'en', 1, 'https://ror.org/015enq107 Gallery North'),
(13181, 'https://ror.org/01749ew24', 'en', 1, 'https://ror.org/01749ew24 Friends of the North Carolina Maritime Museum'),
(13182, 'https://ror.org/04k8j6m55', 'no_lang_code', 1, 'https://ror.org/04k8j6m55 Napo Pharmaceuticals (United States)'),
(13183, 'https://ror.org/0382qx554', 'en', 1, 'https://ror.org/0382qx554 Head-Royce School'),
(13184, 'https://ror.org/045sppx81', 'en', 1, 'https://ror.org/045sppx81 HeadNorth'),
(13185, 'https://ror.org/03p2f7q52', 'en', 1, 'https://ror.org/03p2f7q52 Institut Rick Hansen Praxis Spinal Cord Institute'),
(13186, 'https://ror.org/03v7h1165', 'en', 1, 'https://ror.org/03v7h1165 Institute for Microstructural Sciences'),
(13187, 'https://ror.org/035h67p10', 'en', 1, 'https://ror.org/035h67p10 META Health'),
(13188, 'https://ror.org/04m0t0a79', 'pt', 1, 'https://ror.org/04m0t0a79 Promundo'),
(13189, 'https://ror.org/03xe5bc97', 'en', 1, 'https://ror.org/03xe5bc97 Institute for Music and Neurologic Function'),
(13190, 'https://ror.org/01q3p8f34', 'no_lang_code', 1, 'https://ror.org/01q3p8f34 Inflammatory Response Research (United States)'),
(13191, 'https://ror.org/05nmnr071', 'en', 1, 'https://ror.org/05nmnr071 Infrared Breast Health'),
(13192, 'https://ror.org/00cswhr36', 'no_lang_code', 1, 'https://ror.org/00cswhr36 ISA Pharmaceuticals (Netherlands)'),
(13193, 'https://ror.org/022c13n15', 'en', 1, 'https://ror.org/022c13n15 Health Alliance International'),
(13194, 'https://ror.org/05ckqx151', 'en', 1, 'https://ror.org/05ckqx151 Integris Health'),
(13195, 'https://ror.org/03s0p4v02', 'en', 1, 'https://ror.org/03s0p4v02 Health Choice Network'),
(13196, 'https://ror.org/01yq97131', 'no_lang_code', 1, 'https://ror.org/01yq97131 Intellicell Biosciences (United States)'),
(13197, 'https://ror.org/000hva629', 'no_lang_code', 1, 'https://ror.org/000hva629 Inhibikase Therapeutics (United States)'),
(13198, 'https://ror.org/03yew7168', 'en', 1, 'https://ror.org/03yew7168 Inter-Psy'),
(13199, 'https://ror.org/00jt1e157', 'en', 1, 'https://ror.org/00jt1e157 Institute for Reproductive Health'),
(13200, 'https://ror.org/008srgs73', 'en', 1, 'https://ror.org/008srgs73 Inland Empire Concerned African American Churches'),
(13201, 'https://ror.org/00w7vs376', 'en', 1, 'https://ror.org/00w7vs376 Inland Northwest Health Services'),
(13202, 'https://ror.org/00w4gjq77', 'en', 1, 'https://ror.org/00w4gjq77 Interfaith Center of New York'),
(13203, 'https://ror.org/00fd6f737', 'en', 1, 'https://ror.org/00fd6f737 Institute for Security Studies'),
(13204, 'https://ror.org/025kz2973', 'en', 1, 'https://ror.org/025kz2973 Punjab Technical University ਪੰਜਾਬ ਟੈਕਨੀਕਲ ਯੂਨੀਵਰਸਿਟੀ'),
(13205, 'https://ror.org/010c8ab15', 'en', 1, 'https://ror.org/010c8ab15 Health Education Council'),
(13206, 'https://ror.org/0347g7262', 'en', 1, 'https://ror.org/0347g7262 Islamic Shura Council of Southern California'),
(13207, 'https://ror.org/02ga6zq31', 'en', 1, 'https://ror.org/02ga6zq31 Israel Cancer Association USA'),
(13208, 'https://ror.org/01ykqc562', 'en', 1, 'https://ror.org/01ykqc562 Innocence Project'),
(13209, 'https://ror.org/01s1vhe62', 'en', 1, 'https://ror.org/01s1vhe62 International Alliance of ALS/MND Associations'),
(13210, 'https://ror.org/011adb956', 'fr', 1, 'https://ror.org/011adb956 Centre Hospito Universitaire de Sétif'),
(13211, 'https://ror.org/022cany03', 'en', 1, 'https://ror.org/022cany03 Health Promotion Council'),
(13212, 'https://ror.org/04fv19769', 'en', 1, 'https://ror.org/04fv19769 Health Research Alliance'),
(13213, 'https://ror.org/040n23d23', 'no_lang_code', 1, 'https://ror.org/040n23d23 InnoPhage (Portugal)'),
(13214, 'https://ror.org/0040b6869', 'en', 1, 'https://ror.org/0040b6869 International Brain Research Organization Organisation internationale de recherche sur le cerveau'),
(13215, 'https://ror.org/05b2gms10', 'en', 1, 'https://ror.org/05b2gms10 International Breast Cancer Study Group'),
(13216, 'https://ror.org/02a9vnt59', 'en', 1, 'https://ror.org/02a9vnt59 Institute of Biochemistry and Genetics of Ufa Scientific Centre Институт биохимии и генетики'),
(13217, 'https://ror.org/05bw8ek06', 'en', 1, 'https://ror.org/05bw8ek06 Innovation To End Neglected Diseases'),
(13218, 'https://ror.org/02zx9pq98', 'en', 1, 'https://ror.org/02zx9pq98 Innova HealthCare Services'),
(13219, 'https://ror.org/02vx92p56', 'en', 1, 'https://ror.org/02vx92p56 Clubhouse International'),
(13220, 'https://ror.org/01hv5h172', 'en', 1, 'https://ror.org/01hv5h172 Pfeiffer Medical Center'),
(13221, 'https://ror.org/04ehykb85', 'en', 1, 'https://ror.org/04ehykb85 Institute of Biomedical Technologies Istituto di Tecnologie Biomediche'),
(13222, 'https://ror.org/05av82888', 'en', 1, 'https://ror.org/05av82888 New Mexico Cancer Center Foundation'),
(13223, 'https://ror.org/0594bad20', 'en', 1, 'https://ror.org/0594bad20 International Centre for Reproductive Health Kenya'),
(13224, 'https://ror.org/05patmk97', 'en', 1, 'https://ror.org/05patmk97 Institute for Chemical and Physical Processes Istituto per i Processi Chimico Fisici'),
(13225, 'https://ror.org/023wxgq18', 'en', 1, 'https://ror.org/023wxgq18 Ivano-Frankivsk National Medical University Івано-Франківський національний медичний університет'),
(13226, 'https://ror.org/05mtv6b69', 'en', 1, 'https://ror.org/05mtv6b69 Ivy Hill Therapeutic Equestrian Center'),
(13227, 'https://ror.org/00kmz4377', 'en', 1, 'https://ror.org/00kmz4377 HealthEast Care System'),
(13228, 'https://ror.org/0088fqs38', 'en', 1, 'https://ror.org/0088fqs38 HealthNet TPO'),
(13229, 'https://ror.org/05b4fr068', 'en', 1, 'https://ror.org/05b4fr068 Iyengar Yoga Association of Greater New York'),
(13230, 'https://ror.org/05wmmcx08', 'en', 1, 'https://ror.org/05wmmcx08 HealthNow New York'),
(13231, 'https://ror.org/05sggp397', 'en', 1, 'https://ror.org/05sggp397 HealthPoint Communications'),
(13232, 'https://ror.org/01p3qv245', 'en', 1, 'https://ror.org/01p3qv245 HealthRight International'),
(13233, 'https://ror.org/034cg9v65', 'en', 1, 'https://ror.org/034cg9v65 Chatham County Schools'),
(13234, 'https://ror.org/01rf9hd69', 'en', 1, 'https://ror.org/01rf9hd69 Healthy African American Families II'),
(13235, 'https://ror.org/03j13ys91', 'en', 1, 'https://ror.org/03j13ys91 International Medical Corps'),
(13236, 'https://ror.org/04xpz8e97', 'en', 1, 'https://ror.org/04xpz8e97 Jack and Jill Late Stage Cancer Foundation'),
(13237, 'https://ror.org/00pgzg313', 'no_lang_code', 1, 'https://ror.org/00pgzg313 Ponimanie'),
(13238, 'https://ror.org/05mknav37', 'en', 1, 'https://ror.org/05mknav37 International Paralympic Committee Internationales Paralympisches Komitee'),
(13239, 'https://ror.org/04q8q8x21', 'en', 1, 'https://ror.org/04q8q8x21 Jacob''s Heart Children''s Cancer Support Services'),
(13240, 'https://ror.org/01akx8n77', 'no_lang_code', 1, 'https://ror.org/01akx8n77 Dendritic Cell Research (India)'),
(13241, 'https://ror.org/015cdqj77', 'en', 1, 'https://ror.org/015cdqj77 United Medical Center'),
(13242, 'https://ror.org/03rd74t51', 'en', 1, 'https://ror.org/03rd74t51 Healthy Functions'),
(13243, 'https://ror.org/00sj63039', 'en', 1, 'https://ror.org/00sj63039 International Partnership for Microbicides'),
(13244, 'https://ror.org/04pp26y21', 'en', 1, 'https://ror.org/04pp26y21 Healthy Start Coalition of Flagler & Volusia Counties'),
(13245, 'https://ror.org/0369m1a38', 'en', 1, 'https://ror.org/0369m1a38 International Pre-Autistic Network'),
(13246, 'https://ror.org/05yc3mk04', 'en', 1, 'https://ror.org/05yc3mk04 Healthy Start'),
(13247, 'https://ror.org/0103ez066', 'en', 1, 'https://ror.org/0103ez066 Jameson Memorial Hospital'),
(13248, 'https://ror.org/05t86hn44', 'no_lang_code', 1, 'https://ror.org/05t86hn44 InSpark Technologies (United States)'),
(13249, 'https://ror.org/00aanwc55', 'en', 1, 'https://ror.org/00aanwc55 International Society for Augmentative and Alternative Communication'),
(13250, 'https://ror.org/00myyb874', 'en', 1, 'https://ror.org/00myyb874 Heart of Passion'),
(13251, 'https://ror.org/02mmrmf21', 'no_lang_code', 1, 'https://ror.org/02mmrmf21 Janus Biotherapeutics (United States)'),
(13252, 'https://ror.org/022aswt06', 'en', 1, 'https://ror.org/022aswt06 Heartland Head Start'),
(13253, 'https://ror.org/01v28qr30', 'en', 1, 'https://ror.org/01v28qr30 Jazz Foundation of America'),
(13254, 'https://ror.org/03f3zda13', 'no_lang_code', 1, 'https://ror.org/03f3zda13 Heartsong'),
(13255, 'https://ror.org/05xvy6672', 'en', 1, 'https://ror.org/05xvy6672 International Society for Clinical Densitometry'),
(13256, 'https://ror.org/00qrgc437', 'en', 1, 'https://ror.org/00qrgc437 International Symposium on Neural Regeneration'),
(13257, 'https://ror.org/02ecfwn78', 'no_lang_code', 1, 'https://ror.org/02ecfwn78 JB Life Sciences (United States)'),
(13258, 'https://ror.org/02rae2f41', 'en', 1, 'https://ror.org/02rae2f41 International Women''s Development Agency'),
(13259, 'https://ror.org/05v6nmh25', 'no_lang_code', 1, 'https://ror.org/05v6nmh25 Heartspring'),
(13260, 'https://ror.org/034sbyx40', 'en', 1, 'https://ror.org/034sbyx40 Institute of Neurology, Psychiatry and Narcology Інститут неврології, психіатрії та наркології Національної'),
(13261, 'https://ror.org/02advfp87', 'no_lang_code', 1, 'https://ror.org/02advfp87 Corbus Pharmaceuticals (United States)'),
(13262, 'https://ror.org/05p6m4w34', 'no_lang_code', 1, 'https://ror.org/05p6m4w34 Heat Biologics (United States)'),
(13263, 'https://ror.org/05kkrdt60', 'en', 1, 'https://ror.org/05kkrdt60 Hebrew Health Care'),
(13264, 'https://ror.org/013pd3a75', 'en', 1, 'https://ror.org/013pd3a75 Jewish Community Center in Manhattan'),
(13265, 'https://ror.org/03bxr8x39', 'en', 1, 'https://ror.org/03bxr8x39 Jewish Community Center of Fort Lee'),
(13266, 'https://ror.org/021pq8x94', 'en', 1, 'https://ror.org/021pq8x94 JD Breast Cancer Foundation'),
(13267, 'https://ror.org/05fvbe809', 'en', 1, 'https://ror.org/05fvbe809 Youth+Tech+Health'),
(13268, 'https://ror.org/04pmfqr73', 'en', 1, 'https://ror.org/04pmfqr73 Heifer International'),
(13269, 'https://ror.org/04v46qt86', 'no_lang_code', 1, 'https://ror.org/04v46qt86 Intezyne (United States)'),
(13270, 'https://ror.org/037ebw447', 'en', 1, 'https://ror.org/037ebw447 Helen Hay Whitney Foundation'),
(13271, 'https://ror.org/01gf2gn61', 'en', 1, 'https://ror.org/01gf2gn61 VASCOG Society'),
(13272, 'https://ror.org/04qxbzf60', 'en', 1, 'https://ror.org/04qxbzf60 Helen Keller International'),
(13273, 'https://ror.org/02jwqhx24', 'en', 1, 'https://ror.org/02jwqhx24 Cancer Support Center'),
(13274, 'https://ror.org/04jxd1g84', 'en', 1, 'https://ror.org/04jxd1g84 Intractable Childhood Epilepsy Alliance'),
(13275, 'https://ror.org/01yt7p923', 'en', 1, 'https://ror.org/01yt7p923 Laboratory for Personalized Molecular Medicine'),
(13276, 'https://ror.org/031bn8887', 'no_lang_code', 1, 'https://ror.org/031bn8887 Jenrin Discovery (United States)'),
(13277, 'https://ror.org/01g02w781', 'en', 1, 'https://ror.org/01g02w781 Help Hope Live'),
(13278, 'https://ror.org/012t91r40', 'fr', 1, 'https://ror.org/012t91r40 Institut de Microbiologie de la Méditerranée'),
(13279, 'https://ror.org/00pfg3v73', 'en', 1, 'https://ror.org/00pfg3v73 Paralyzed Veterans of America'),
(13280, 'https://ror.org/020qj1b53', 'en', 1, 'https://ror.org/020qj1b53 Helping Hand Society'),
(13281, 'https://ror.org/04n9mpx29', 'no_lang_code', 1, 'https://ror.org/04n9mpx29 IP Israel Patents (Israel)'),
(13282, 'https://ror.org/00hxw4g76', 'en', 1, 'https://ror.org/00hxw4g76 Helping Hands Monkey Helpers'),
(13283, 'https://ror.org/045hjpj39', 'en', 1, 'https://ror.org/045hjpj39 IPC Healthcare'),
(13284, 'https://ror.org/024vvee04', 'en', 1, 'https://ror.org/024vvee04 Hendrick Medical Center'),
(13285, 'https://ror.org/05678xp35', 'en', 1, 'https://ror.org/05678xp35 Iranian Homeopathic Association'),
(13286, 'https://ror.org/03rkvna13', 'en', 1, 'https://ror.org/03rkvna13 Jewish Family Service of San Diego'),
(13287, 'https://ror.org/027rtfv09', 'en', 1, 'https://ror.org/027rtfv09 Jewish Hospital and St. Mary''s HealthCare'),
(13288, 'https://ror.org/03rtkz951', 'en', 1, 'https://ror.org/03rtkz951 Jewish Women''s Archive'),
(13289, 'https://ror.org/02dh03d79', 'no_lang_code', 1, 'https://ror.org/02dh03d79 iRepertoire (United States)'),
(13290, 'https://ror.org/052tzd367', 'en', 1, 'https://ror.org/052tzd367 Granville County Public Schools'),
(13291, 'https://ror.org/051jg5p78', 'en', 1, 'https://ror.org/051jg5p78 First Affiliated Hospital of Soochow University 苏州大学附属第一医院'),
(13292, 'https://ror.org/05wjq4v91', 'en', 1, 'https://ror.org/05wjq4v91 Uganda Institute of Information & Communications Technology'),
(13293, 'https://ror.org/03n89wa68', 'en', 1, 'https://ror.org/03n89wa68 Los Angeles County Office of Education'),
(13294, 'https://ror.org/04dyr4x59', 'en', 1, 'https://ror.org/04dyr4x59 Kingsley House'),
(13295, 'https://ror.org/0112g6h79', 'en', 1, 'https://ror.org/0112g6h79 Iringa Development of Youth Disabled and Children Care'),
(13296, 'https://ror.org/05fkp1h83', 'en', 1, 'https://ror.org/05fkp1h83 Los Angeles LGBT Center'),
(13297, 'https://ror.org/041g4k048', 'en', 1, 'https://ror.org/041g4k048 Iringa Mercy Organization'),
(13298, 'https://ror.org/04crjc626', 'no_lang_code', 1, 'https://ror.org/04crjc626 Kivulini Women’s Rights Organisation'),
(13299, 'https://ror.org/0322wda97', 'en', 1, 'https://ror.org/0322wda97 Los Angeles Pink Dragons'),
(13300, 'https://ror.org/02h3g8t20', 'no_lang_code', 1, 'https://ror.org/02h3g8t20 Liberty Media (United States)'),
(13301, 'https://ror.org/03wqknk68', 'en', 1, 'https://ror.org/03wqknk68 Lou Ruvo Brain Institute'),
(13302, 'https://ror.org/02vdjrg05', 'en', 1, 'https://ror.org/02vdjrg05 Max Healthcare'),
(13303, 'https://ror.org/01nyatq71', 'en', 1, 'https://ror.org/01nyatq71 Institute of Molecular Biology and Pathology Istituto di Biologia e Patologia Molecolare'),
(13304, 'https://ror.org/02cs3k195', 'en', 1, 'https://ror.org/02cs3k195 Juvenile Myelomonocytic Leukemia Foundation'),
(13305, 'https://ror.org/03t8mqd25', 'en', 1, 'https://ror.org/03t8mqd25 Institute of Molecular Biology'),
(13306, 'https://ror.org/05ngknq10', 'no_lang_code', 1, 'https://ror.org/05ngknq10 JN Biosciences (United States)'),
(13307, 'https://ror.org/01fv8s797', 'no_lang_code', 1, 'https://ror.org/01fv8s797 JobTrain'),
(13308, 'https://ror.org/04zmjp854', 'en', 1, 'https://ror.org/04zmjp854 LRGHealthcare'),
(13309, 'https://ror.org/02b9ykk59', 'en', 1, 'https://ror.org/02b9ykk59 Lucas County Board of Developmental Disabilities'),
(13310, 'https://ror.org/04mza7j60', 'en', 1, 'https://ror.org/04mza7j60 Lucia''s Angels'),
(13311, 'https://ror.org/02s47bn48', 'en', 1, 'https://ror.org/02s47bn48 Meadows Regional Medical Center'),
(13312, 'https://ror.org/04wgbm466', 'en', 1, 'https://ror.org/04wgbm466 Kōkua Mau'),
(13313, 'https://ror.org/04afqbm81', 'en', 1, 'https://ror.org/04afqbm81 Mecosta County Medical Center'),
(13314, 'https://ror.org/04smrs866', 'en', 1, 'https://ror.org/04smrs866 Institute of Neurobiology and Molecular Medicine Istituto di Neurobiologia e Medicina Molecolare'),
(13315, 'https://ror.org/05q9yze82', 'en', 1, 'https://ror.org/05q9yze82 Institute of Neurobiology Институт по невробиология'),
(13316, 'https://ror.org/02vn2vd34', 'en', 1, 'https://ror.org/02vn2vd34 Columbus Regional Healthcare System'),
(13317, 'https://ror.org/047dyfk64', 'en', 1, 'https://ror.org/047dyfk64 Medanta The Medicity'),
(13318, 'https://ror.org/01r0ge295', 'en', 1, 'https://ror.org/01r0ge295 John F. Kennedy Memorial Foundation'),
(13319, 'https://ror.org/01yg57d71', 'en', 1, 'https://ror.org/01yg57d71 Institute of Neurological Sciences Istituto di Scienze Neurologiche'),
(13320, 'https://ror.org/05qrhgs40', 'en', 1, 'https://ror.org/05qrhgs40 Korean Community Service Center of Greater Washington'),
(13321, 'https://ror.org/02c4d2n77', 'en', 1, 'https://ror.org/02c4d2n77 Fitzgibbon Hospital'),
(13322, 'https://ror.org/03hznq239', 'en', 1, 'https://ror.org/03hznq239 Korean Community Services of Metropolitan New York'),
(13323, 'https://ror.org/04srfff60', 'en', 1, 'https://ror.org/04srfff60 Kanzius Cancer Research Foundation'),
(13324, 'https://ror.org/051xk8837', 'en', 1, 'https://ror.org/051xk8837 Korean Health Education, Information, and Research Center'),
(13325, 'https://ror.org/02jq3z767', 'en', 1, 'https://ror.org/02jq3z767 John Paul II Medical Research Institute'),
(13326, 'https://ror.org/04fgasy98', 'no_lang_code', 1, 'https://ror.org/04fgasy98 Express Scripts Holding Company (United States)'),
(13327, 'https://ror.org/05pda6j27', 'en', 1, 'https://ror.org/05pda6j27 Korean Resource Center'),
(13328, 'https://ror.org/031h57r44', 'fr', 1, 'https://ror.org/031h57r44 Doctors of the World Médecins du Monde medsɛ̃ dy mɔ̃d'),
(13329, 'https://ror.org/00daztz68', 'no_lang_code', 1, 'https://ror.org/00daztz68 Kostopulos Dream Foundation'),
(13330, 'https://ror.org/01d1vqp66', 'en', 1, 'https://ror.org/01d1vqp66 Regional Health'),
(13331, 'https://ror.org/03n97yw06', 'no_lang_code', 1, 'https://ror.org/03n97yw06 MedGenesis Therapeutix (Canada)'),
(13332, 'https://ror.org/03rsse878', 'en', 1, 'https://ror.org/03rsse878 Media Arts Center San Diego'),
(13333, 'https://ror.org/00b0jb681', 'en', 1, 'https://ror.org/00b0jb681 Krasnoyarsk State Medical University Государственное бюджетное образовательное учреждение высшего профессионального образования Красноярский государственный медицинский университет имени профессора В.Ф. Войно-Ясенецкого Министерства здравоохранения Российской Федерации'),
(13334, 'https://ror.org/00xaj7311', 'no_lang_code', 1, 'https://ror.org/00xaj7311 Lumicell (United States)'),
(13335, 'https://ror.org/03xpcbj56', 'en', 1, 'https://ror.org/03xpcbj56 Medical Care Development International'),
(13336, 'https://ror.org/01e2a5576', 'en', 1, 'https://ror.org/01e2a5576 Medical Center Hospital'),
(13337, 'https://ror.org/059rc1n32', 'en', 1, 'https://ror.org/059rc1n32 Medical City Dallas Hospital'),
(13338, 'https://ror.org/030x94n68', 'en', 1, 'https://ror.org/030x94n68 KVC Health Systems'),
(13339, 'https://ror.org/033b6cz88', 'en', 1, 'https://ror.org/033b6cz88 Lupus Foundation of America'),
(13340, 'https://ror.org/02zf97m15', 'en', 1, 'https://ror.org/02zf97m15 Johnston Memorial Hospital'),
(13341, 'https://ror.org/04b7haz84', 'en', 1, 'https://ror.org/04b7haz84 Lupus Research Institute'),
(13342, 'https://ror.org/01fvg1z63', 'en', 1, 'https://ror.org/01fvg1z63 Joint Muscle Medical Care and Research Institute'),
(13343, 'https://ror.org/05tcf2984', 'en', 1, 'https://ror.org/05tcf2984 Joliet Area Community Hospice'),
(13344, 'https://ror.org/03fa8g464', 'en', 1, 'https://ror.org/03fa8g464 Lutheran Family Health Centers'),
(13345, 'https://ror.org/02sk93007', 'no_lang_code', 1, 'https://ror.org/02sk93007 Jonah’s Just Begun'),
(13346, 'https://ror.org/049rgw923', 'en', 1, 'https://ror.org/049rgw923 Joni and Friends'),
(13347, 'https://ror.org/03jkda953', 'no_lang_code', 1, 'https://ror.org/03jkda953 Kirin (United States)'),
(13348, 'https://ror.org/0089q3791', 'no_lang_code', 1, 'https://ror.org/0089q3791 José Mateo Ballet Theatre (United States)'),
(13349, 'https://ror.org/03ahv9t97', 'en', 1, 'https://ror.org/03ahv9t97 Lymphatic Education & Research Network'),
(13350, 'https://ror.org/04g39xc83', 'en', 1, 'https://ror.org/04g39xc83 Journey Forward'),
(13351, 'https://ror.org/01nath242', 'en', 1, 'https://ror.org/01nath242 Joyce Theater'),
(13352, 'https://ror.org/011bjxg73', 'en', 1, 'https://ror.org/011bjxg73 La Casa Norte'),
(13353, 'https://ror.org/05xyx5995', 'en', 1, 'https://ror.org/05xyx5995 Medscape'),
(13354, 'https://ror.org/01w7r8m15', 'no_lang_code', 1, 'https://ror.org/01w7r8m15 QPS (Austria)'),
(13355, 'https://ror.org/014j38041', 'en', 1, 'https://ror.org/014j38041 La Clinica de La Raza'),
(13356, 'https://ror.org/02pp21x07', 'en', 1, 'https://ror.org/02pp21x07 La Crosse Medical Health Science Consortium'),
(13357, 'https://ror.org/01bjdg534', 'en', 1, 'https://ror.org/01bjdg534 Teens Living with Cancer'),
(13358, 'https://ror.org/02p210k88', 'en', 1, 'https://ror.org/02p210k88 John T. Mather Memorial Hospital'),
(13359, 'https://ror.org/01ec6j128', 'it', 1, 'https://ror.org/01ec6j128 La Forza del Silenzio'),
(13360, 'https://ror.org/05d9wka04', 'no_lang_code', 1, 'https://ror.org/05d9wka04 Mellitech (France)'),
(13361, 'https://ror.org/01phq2394', 'no_lang_code', 1, 'https://ror.org/01phq2394 JustGive'),
(13362, 'https://ror.org/02f0jr828', 'en', 1, 'https://ror.org/02f0jr828 Memorial Foundation'),
(13363, 'https://ror.org/02gf24d79', 'no_lang_code', 1, 'https://ror.org/02gf24d79 M.C. Townsend Associates (United States)'),
(13364, 'https://ror.org/01e1qb944', 'no_lang_code', 1, 'https://ror.org/01e1qb944 Athira Pharma (United States)'),
(13365, 'https://ror.org/00a06kx42', 'en', 1, 'https://ror.org/00a06kx42 La Porte Hospital'),
(13366, 'https://ror.org/02s8sn816', 'en', 1, 'https://ror.org/02s8sn816 Maasai Wilderness Conservation Trust'),
(13367, 'https://ror.org/049d9a475', 'en', 1, 'https://ror.org/049d9a475 Memorial Hermann'),
(13368, 'https://ror.org/0442mhq67', 'en', 1, 'https://ror.org/0442mhq67 Maintaining Active Citizens'),
(13369, 'https://ror.org/0051tdp65', 'en', 1, 'https://ror.org/0051tdp65 Beacon Health System'),
(13370, 'https://ror.org/008tsd037', 'en', 1, 'https://ror.org/008tsd037 Memorial Medical Center'),
(13371, 'https://ror.org/007bef738', 'no_lang_code', 1, 'https://ror.org/007bef738 Kala Pharmaceuticals (United States)'),
(13372, 'https://ror.org/01bbs9f03', 'no_lang_code', 1, 'https://ror.org/01bbs9f03 Celsus Therapeutics (United Kingdom)'),
(13373, 'https://ror.org/0107w4315', 'en', 1, 'https://ror.org/0107w4315 University of Colorado Health'),
(13374, 'https://ror.org/059k3db98', 'en', 1, 'https://ror.org/059k3db98 Morton Plant Mease'),
(13375, 'https://ror.org/02nh6s285', 'en', 1, 'https://ror.org/02nh6s285 Macoupin County Public Health Department'),
(13376, 'https://ror.org/02mfecp81', 'no_lang_code', 1, 'https://ror.org/02mfecp81 Mosaic'),
(13377, 'https://ror.org/005ypw517', 'en', 1, 'https://ror.org/005ypw517 Men''s Health Network'),
(13378, 'https://ror.org/0459hk790', 'en', 1, 'https://ror.org/0459hk790 Madison County Public Schools'),
(13379, 'https://ror.org/034673z17', 'en', 1, 'https://ror.org/034673z17 Epilepsy Support and Education Services'),
(13380, 'https://ror.org/035yccj48', 'en', 1, 'https://ror.org/035yccj48 Kansas City Hospice and Palliative Care'),
(13381, 'https://ror.org/02596hw49', 'en', 1, 'https://ror.org/02596hw49 Cancer Resource Centers of Mendocino County'),
(13382, 'https://ror.org/04f4mf723', 'en', 1, 'https://ror.org/04f4mf723 Mendocino Community Health Clinic'),
(13383, 'https://ror.org/00czgcw56', 'en', 1, 'https://ror.org/00czgcw56 Madras Diabetes Research Foundation'),
(13384, 'https://ror.org/04h8dqz12', 'en', 1, 'https://ror.org/04h8dqz12 Mendocino County AIDS / Viral Hepatitis Network'),
(13385, 'https://ror.org/05g3bg079', 'en', 1, 'https://ror.org/05g3bg079 KU Endowment'),
(13386, 'https://ror.org/03sq8r703', 'en', 1, 'https://ror.org/03sq8r703 Menoufia University Hospitals مستشفيات جامعة المنوفية'),
(13387, 'https://ror.org/04h2wnp96', 'en', 1, 'https://ror.org/04h2wnp96 Motion Picture & Television Fund'),
(13388, 'https://ror.org/02fefk125', 'en', 1, 'https://ror.org/02fefk125 The Harris Center for Mental Health and IDD'),
(13389, 'https://ror.org/0518a5g43', 'no_lang_code', 1, 'https://ror.org/0518a5g43 MentiNova (United States)'),
(13390, 'https://ror.org/046r27a90', 'en', 1, 'https://ror.org/046r27a90 A.I Karaev Institute of Physiology Институт физиологии имени А.И. Караева'),
(13391, 'https://ror.org/01fpn5341', 'en', 1, 'https://ror.org/01fpn5341 Lady of the Sea General Hospital'),
(13392, 'https://ror.org/01xtprm05', 'en', 1, 'https://ror.org/01xtprm05 Mercer County Health Department'),
(13393, 'https://ror.org/01579r607', 'en', 1, 'https://ror.org/01579r607 Mahoning County Educational Service Center'),
(13394, 'https://ror.org/05gjjzd22', 'en', 1, 'https://ror.org/05gjjzd22 Settlement Music School'),
(13395, 'https://ror.org/00rhtct89', 'en', 1, 'https://ror.org/00rhtct89 McLaren Macomb'),
(13396, 'https://ror.org/03mzsqd80', 'en', 1, 'https://ror.org/03mzsqd80 Lakes Region General Hospital'),
(13397, 'https://ror.org/04patbs64', 'en', 1, 'https://ror.org/04patbs64 Lakeshore Foundation'),
(13398, 'https://ror.org/00s5rhn58', 'en', 1, 'https://ror.org/00s5rhn58 Karla J. Williams Foundation'),
(13399, 'https://ror.org/00c74hc78', 'en', 1, 'https://ror.org/00c74hc78 HaitiChildren'),
(13400, 'https://ror.org/028javr49', 'en', 1, 'https://ror.org/028javr49 Distrito Escolar Unificado de Long Beach Long Beach Unified School District'),
(13401, 'https://ror.org/002r82k07', 'en', 1, 'https://ror.org/002r82k07 Mercy Clinic Neurology'),
(13402, 'https://ror.org/00nw7tq55', 'en', 1, 'https://ror.org/00nw7tq55 Mount Nittany Medical Center'),
(13403, 'https://ror.org/00wecdr93', 'no_lang_code', 1, 'https://ror.org/00wecdr93 Lamellar Biomedical (United Kingdom)'),
(13404, 'https://ror.org/00d8qva59', 'en', 1, 'https://ror.org/00d8qva59 Maine Adaptive Sports & Recreation'),
(13405, 'https://ror.org/039gcd439', 'en', 1, 'https://ror.org/039gcd439 Lancaster County Medical Society'),
(13406, 'https://ror.org/04ndvz759', 'en', 1, 'https://ror.org/04ndvz759 Livestrong Foundation'),
(13407, 'https://ror.org/009c3x903', 'en', 1, 'https://ror.org/009c3x903 New England Cancer Specialists'),
(13408, 'https://ror.org/00w1a0259', 'en', 1, 'https://ror.org/00w1a0259 Mercy Hospital'),
(13409, 'https://ror.org/0011aqx02', 'en', 1, 'https://ror.org/0011aqx02 Maine Hospice Council'),
(13410, 'https://ror.org/03vmw1d16', 'en', 1, 'https://ror.org/03vmw1d16 Mercy Medical Center Sioux City'),
(13411, 'https://ror.org/00a9t7j25', 'en', 1, 'https://ror.org/00a9t7j25 Lars Research Institute'),
(13412, 'https://ror.org/05x9yy985', 'en', 1, 'https://ror.org/05x9yy985 University of Mount Olive'),
(13413, 'https://ror.org/02tdaj973', 'en', 1, 'https://ror.org/02tdaj973 Ascension Via Christi Hospital'),
(13414, 'https://ror.org/02rwjxz53', 'en', 1, 'https://ror.org/02rwjxz53 Lassen County'),
(13415, 'https://ror.org/05v6eh043', 'en', 1, 'https://ror.org/05v6eh043 Eastern Maine Healthcare Systems'),
(13416, 'https://ror.org/01jqc8e14', 'en', 1, 'https://ror.org/01jqc8e14 Kalpana Chawla Government Medical College and Hospital कल्पना चावला गवर्नमेंट मेडिकल कॉलेज व अस्पताल'),
(13417, 'https://ror.org/03y50wn05', 'en', 1, 'https://ror.org/03y50wn05 Mountain Empire Older Citizens'),
(13418, 'https://ror.org/031035t24', 'en', 1, 'https://ror.org/031035t24 Latinas Contra Cancer'),
(13419, 'https://ror.org/03rf3nd87', 'en', 1, 'https://ror.org/03rf3nd87 Mountain Home Montana'),
(13420, 'https://ror.org/00c26wt35', 'en', 1, 'https://ror.org/00c26wt35 Maine-Dartmouth Family Medicine Residency'),
(13421, 'https://ror.org/058ekqj56', 'en', 1, 'https://ror.org/058ekqj56 Mountain Park Health Center'),
(13422, 'https://ror.org/022nbxr62', 'en', 1, 'https://ror.org/022nbxr62 MaineGeneral Medical Center'),
(13423, 'https://ror.org/01vc5az52', 'no_lang_code', 1, 'https://ror.org/01vc5az52 Kasiak Research (India)'),
(13424, 'https://ror.org/017xncd55', 'en', 1, 'https://ror.org/017xncd55 MaineHealth'),
(13425, 'https://ror.org/04wy7mt46', 'en', 1, 'https://ror.org/04wy7mt46 Make A Hero'),
(13426, 'https://ror.org/00dqasn30', 'en', 1, 'https://ror.org/00dqasn30 Kathmandu Valley Preservation Trust'),
(13427, 'https://ror.org/057528053', 'no_lang_code', 1, 'https://ror.org/057528053 Mergenet Medical (United States)'),
(13428, 'https://ror.org/012yz6164', 'en', 1, 'https://ror.org/012yz6164 Make-A-Wish Foundation'),
(13429, 'https://ror.org/05qtmfe82', 'no_lang_code', 1, 'https://ror.org/05qtmfe82 Latitude Pharmaceuticals (United States)'),
(13430, 'https://ror.org/051rrn740', 'en', 1, 'https://ror.org/051rrn740 St. Luke''s Mountain States Tumor Institute'),
(13431, 'https://ror.org/0349vnh06', 'en', 1, 'https://ror.org/0349vnh06 Meridian Behavioral Healthcare'),
(13432, 'https://ror.org/05q34ws54', 'en', 1, 'https://ror.org/05q34ws54 Moveable Feast'),
(13433, 'https://ror.org/03wps7b22', 'en', 1, 'https://ror.org/03wps7b22 Movember');
INSERT INTO `rors` VALUES
(13434, 'https://ror.org/00hx55359', 'en', 1, 'https://ror.org/00hx55359 Meridian Plastic Surgeons'),
(13435, 'https://ror.org/00ka0dh64', 'en', 1, 'https://ror.org/00ka0dh64 Granada Hills Community Hospital'),
(13436, 'https://ror.org/00e0tnc81', 'en', 1, 'https://ror.org/00e0tnc81 ManageBGL'),
(13437, 'https://ror.org/03byzcq48', 'en', 1, 'https://ror.org/03byzcq48 Sanford Medical Center'),
(13438, 'https://ror.org/000skyh95', 'en', 1, 'https://ror.org/000skyh95 Manitoga'),
(13439, 'https://ror.org/05ekq4672', 'en', 1, 'https://ror.org/05ekq4672 Manovikas Kendra Rehabilitation and Research Institute'),
(13440, 'https://ror.org/00nkgjn49', 'no_lang_code', 1, 'https://ror.org/00nkgjn49 ManRos Therapeutics (France)'),
(13441, 'https://ror.org/02p96gg69', 'no_lang_code', 1, 'https://ror.org/02p96gg69 Marathon Kids'),
(13442, 'https://ror.org/05tg9b144', 'no_lang_code', 1, 'https://ror.org/05tg9b144 MSM Protein Technologies (United States)'),
(13443, 'https://ror.org/030635250', 'en', 1, 'https://ror.org/030635250 Lustgarten Foundation'),
(13444, 'https://ror.org/01rje5224', 'en', 1, 'https://ror.org/01rje5224 Marian Regional Medical Center'),
(13445, 'https://ror.org/01jaw0925', 'en', 1, 'https://ror.org/01jaw0925 Mount Sinai Queens'),
(13446, 'https://ror.org/02d9dbv29', 'en', 1, 'https://ror.org/02d9dbv29 Law and Advocacy for Women in Uganda'),
(13447, 'https://ror.org/0244v0536', 'en', 1, 'https://ror.org/0244v0536 Republican Oncological Clinical Dispensary Республиканский клинический онкологический диспансер'),
(13448, 'https://ror.org/035q6v129', 'en', 1, 'https://ror.org/035q6v129 League Against Cancer'),
(13449, 'https://ror.org/035sqzf61', 'en', 1, 'https://ror.org/035sqzf61 League of Conservation Voters'),
(13450, 'https://ror.org/01phpae37', 'en', 1, 'https://ror.org/01phpae37 Multidisciplinary Association for Psychedelic Studies'),
(13451, 'https://ror.org/01k5bte77', 'en', 1, 'https://ror.org/01k5bte77 Marshall Medical Center'),
(13452, 'https://ror.org/04r8nkv53', 'en', 1, 'https://ror.org/04r8nkv53 Rising Ground'),
(13453, 'https://ror.org/05pkbct74', 'no_lang_code', 1, 'https://ror.org/05pkbct74 Funk Production (Denmark)'),
(13454, 'https://ror.org/03ww1bx13', 'en', 1, 'https://ror.org/03ww1bx13 Multiple Myeloma Research Foundation'),
(13455, 'https://ror.org/034dw6775', 'no_lang_code', 1, 'https://ror.org/034dw6775 Merrimack Pharmaceuticals (United States)'),
(13456, 'https://ror.org/04nkhj168', 'en', 1, 'https://ror.org/04nkhj168 Leaps of Faith Adaptive Skiers'),
(13457, 'https://ror.org/04qn4s704', 'en', 1, 'https://ror.org/04qn4s704 Arizona Disabled Sports'),
(13458, 'https://ror.org/03s3q2469', 'no_lang_code', 1, 'https://ror.org/03s3q2469 Munogenics (United States)'),
(13459, 'https://ror.org/00yjpbd42', 'en', 1, 'https://ror.org/00yjpbd42 Ride 2 Recovery'),
(13460, 'https://ror.org/01s383j21', 'en', 1, 'https://ror.org/01s383j21 Keiser University'),
(13461, 'https://ror.org/03666ws89', 'en', 1, 'https://ror.org/03666ws89 Mesilla Valley Hospice'),
(13462, 'https://ror.org/02r2t8x54', 'it', 1, 'https://ror.org/02r2t8x54 Lega Italiana per la Lotta ai Tumori'),
(13463, 'https://ror.org/053ndkf46', 'en', 1, 'https://ror.org/053ndkf46 Kelsey Research Foundation'),
(13464, 'https://ror.org/02r4vbb57', 'no_lang_code', 1, 'https://ror.org/02r4vbb57 Metaclipse Therapeutics (United States)'),
(13465, 'https://ror.org/03hf0fw66', 'en', 1, 'https://ror.org/03hf0fw66 Murray Hill Neighborhood Association'),
(13466, 'https://ror.org/00d4wef72', 'en', 1, 'https://ror.org/00d4wef72 Kendra''s Kisses'),
(13467, 'https://ror.org/04gm0ky67', 'no_lang_code', 1, 'https://ror.org/04gm0ky67 Metallopharm (United States)'),
(13468, 'https://ror.org/00m2rg630', 'en', 1, 'https://ror.org/00m2rg630 Kenosha County Department of Human Services'),
(13469, 'https://ror.org/021m39404', 'en', 1, 'https://ror.org/021m39404 Legal Clinic for the Disabled'),
(13470, 'https://ror.org/017e5fj79', 'en', 1, 'https://ror.org/017e5fj79 Covenant Children''s Hospital'),
(13471, 'https://ror.org/012w2p114', 'en', 1, 'https://ror.org/012w2p114 Kent County Health Department'),
(13472, 'https://ror.org/05pjy6894', 'no_lang_code', 1, 'https://ror.org/05pjy6894 Mary’s Center'),
(13473, 'https://ror.org/050818891', 'en', 1, 'https://ror.org/050818891 VNA of Care New England'),
(13474, 'https://ror.org/01z63yw09', 'en', 1, 'https://ror.org/01z63yw09 Legacy of Legends Foundation'),
(13475, 'https://ror.org/01csgpy33', 'en', 1, 'https://ror.org/01csgpy33 Methodist Le Bonheur Healthcare'),
(13476, 'https://ror.org/02ktcxy40', 'en', 1, 'https://ror.org/02ktcxy40 Kentucky Court of Justice'),
(13477, 'https://ror.org/058c69y64', 'en', 1, 'https://ror.org/058c69y64 Museum of American Finance'),
(13478, 'https://ror.org/02sbnzn21', 'en', 1, 'https://ror.org/02sbnzn21 Massachusetts Pain Initiative'),
(13479, 'https://ror.org/00b9qa162', 'no_lang_code', 1, 'https://ror.org/00b9qa162 Keraplast Technologies (United States)'),
(13480, 'https://ror.org/05bggyp09', 'en', 1, 'https://ror.org/05bggyp09 Lenoir–Rhyne University'),
(13481, 'https://ror.org/044t1p926', 'en', 1, 'https://ror.org/044t1p926 Museum of Arts and Design'),
(13482, 'https://ror.org/03sdjgc51', 'en', 1, 'https://ror.org/03sdjgc51 National Museum of Mathematics'),
(13483, 'https://ror.org/05d6hsa78', 'en', 1, 'https://ror.org/05d6hsa78 Museum of Modern Art'),
(13484, 'https://ror.org/01aabt454', 'en', 1, 'https://ror.org/01aabt454 Mark Codner, MD Plastic Surgery'),
(13485, 'https://ror.org/01bcgtw38', 'en', 1, 'https://ror.org/01bcgtw38 St. Luke''s Clinic'),
(13486, 'https://ror.org/004b1aw93', 'no_lang_code', 1, 'https://ror.org/004b1aw93 Keshet Dance Company (United States)'),
(13487, 'https://ror.org/043xwqn65', 'en', 1, 'https://ror.org/043xwqn65 Muslim Community Center Medical Clinic'),
(13488, 'https://ror.org/036vmrn30', 'en', 1, 'https://ror.org/036vmrn30 Maryland Ravens'),
(13489, 'https://ror.org/000psz759', 'en', 1, 'https://ror.org/000psz759 Marymount Manhattan College'),
(13490, 'https://ror.org/055ksem72', 'en', 1, 'https://ror.org/055ksem72 Leonard J. Chabert Medical Center'),
(13491, 'https://ror.org/03zzh2n66', 'no_lang_code', 1, 'https://ror.org/03zzh2n66 M Welborn Group (United States)'),
(13492, 'https://ror.org/01gw93c31', 'en', 1, 'https://ror.org/01gw93c31 Mashantucket Pequot Tribal Nation'),
(13493, 'https://ror.org/04ry56g70', 'no_lang_code', 1, 'https://ror.org/04ry56g70 MetronomX (United States)'),
(13494, 'https://ror.org/04yh9ek66', 'no_lang_code', 1, 'https://ror.org/04yh9ek66 Keystone Nano (United States)'),
(13495, 'https://ror.org/007hxks16', 'en', 1, 'https://ror.org/007hxks16 Leonia Public Schools'),
(13496, 'https://ror.org/00m6wsr38', 'no_lang_code', 1, 'https://ror.org/00m6wsr38 Masilamea Press (New Zealand)'),
(13497, 'https://ror.org/03m3v4c71', 'no_lang_code', 1, 'https://ror.org/03m3v4c71 Genogen (United States)'),
(13498, 'https://ror.org/03d278m65', 'no_lang_code', 1, 'https://ror.org/03d278m65 MyeloRx (United States)'),
(13499, 'https://ror.org/01knvr232', 'en', 1, 'https://ror.org/01knvr232 Leonia United'),
(13500, 'https://ror.org/05sbcvy11', 'en', 1, 'https://ror.org/05sbcvy11 Massachusetts Compassionate Care Coalition'),
(13501, 'https://ror.org/000hmzc02', 'no_lang_code', 1, 'https://ror.org/000hmzc02 Myostin Therapeutics (Australia)'),
(13502, 'https://ror.org/01jtjy335', 'en', 1, 'https://ror.org/01jtjy335 Equal Hope'),
(13503, 'https://ror.org/03r8ta958', 'en', 1, 'https://ror.org/03r8ta958 Myotubular Myopathy Resource Group'),
(13504, 'https://ror.org/05p2frj96', 'en', 1, 'https://ror.org/05p2frj96 Borough of Leonia'),
(13505, 'https://ror.org/05yb3w112', 'en', 1, 'https://ror.org/05yb3w112 Singapore-MIT Alliance for Research and Technology'),
(13506, 'https://ror.org/05ffr8x96', 'en', 1, 'https://ror.org/05ffr8x96 Kidney Cancer Association'),
(13507, 'https://ror.org/05bj02613', 'en', 1, 'https://ror.org/05bj02613 Myrovlytis Trust'),
(13508, 'https://ror.org/04k1x7866', 'en', 1, 'https://ror.org/04k1x7866 Metropolitan Detroit Research and Education Foundation'),
(13509, 'https://ror.org/05dw6vm13', 'no_lang_code', 1, 'https://ror.org/05dw6vm13 Kids ''n Kamp'),
(13510, 'https://ror.org/02e0key02', 'en', 1, 'https://ror.org/02e0key02 Massachusetts School Nurse Research Network'),
(13511, 'https://ror.org/05dap4b42', 'en', 1, 'https://ror.org/05dap4b42 Kids Konnected'),
(13512, 'https://ror.org/0118wgv88', 'en', 1, 'https://ror.org/0118wgv88 New Hanover County Schools'),
(13513, 'https://ror.org/00sry8k12', 'no_lang_code', 1, 'https://ror.org/00sry8k12 MyTeam Triumph'),
(13514, 'https://ror.org/0024x0915', 'en', 1, 'https://ror.org/0024x0915 Math for America'),
(13515, 'https://ror.org/0042p7m09', 'no_lang_code', 1, 'https://ror.org/0042p7m09 Nivalis Therapeutics (United States)'),
(13516, 'https://ror.org/0098cf282', 'no_lang_code', 1, 'https://ror.org/0098cf282 N8 Medical (United States)'),
(13517, 'https://ror.org/00tw2t359', 'en', 1, 'https://ror.org/00tw2t359 Mathematics Foundation of America'),
(13518, 'https://ror.org/00w5mh812', 'no_lang_code', 1, 'https://ror.org/00w5mh812 Kineta (United States)'),
(13519, 'https://ror.org/037msyf12', 'en', 1, 'https://ror.org/037msyf12 MGH Institute of Health Professions'),
(13520, 'https://ror.org/034m9g361', 'no_lang_code', 1, 'https://ror.org/034m9g361 Athenex (United States)'),
(13521, 'https://ror.org/03nh59r74', 'en', 1, 'https://ror.org/03nh59r74 Mather LifeWays'),
(13522, 'https://ror.org/05x30r374', 'en', 1, 'https://ror.org/05x30r374 Mi Raza Community Center'),
(13523, 'https://ror.org/02n8vwz90', 'en', 1, 'https://ror.org/02n8vwz90 NAACP Legal Defense and Educational Fund'),
(13524, 'https://ror.org/058xzat49', 'en', 1, 'https://ror.org/058xzat49 Max Planck Institute of Immunobiology and Epigenetics Max-Planck-Institut für Immunobiologie und Epigenetik'),
(13525, 'https://ror.org/00renxe14', 'en', 1, 'https://ror.org/00renxe14 Services for Independent Living'),
(13526, 'https://ror.org/02rawbx68', 'en', 1, 'https://ror.org/02rawbx68 Disability Rights and Resources'),
(13527, 'https://ror.org/001zna302', 'no_lang_code', 1, 'https://ror.org/001zna302 NanoMed Targeting Systems (United States)'),
(13528, 'https://ror.org/05vsymj75', 'en', 1, 'https://ror.org/05vsymj75 Mayland Community College'),
(13529, 'https://ror.org/02yn37v47', 'en', 1, 'https://ror.org/02yn37v47 Douglas Gardens Hospital'),
(13530, 'https://ror.org/0414e3w08', 'en', 1, 'https://ror.org/0414e3w08 National Latina Institute for Reproductive Health'),
(13531, 'https://ror.org/054as9c11', 'en', 1, 'https://ror.org/054as9c11 Michael Ryan Pattison Foundation'),
(13532, 'https://ror.org/02te3sp65', 'en', 1, 'https://ror.org/02te3sp65 National Law Enforcement and Firefighters Children’s Foundation'),
(13533, 'https://ror.org/00fp8c217', 'en', 1, 'https://ror.org/00fp8c217 Mazor Mental Health Center המרכז הרפואי לבריאות הנפש מזור'),
(13534, 'https://ror.org/00w18ah57', 'en', 1, 'https://ror.org/00w18ah57 Lesotho Planned Parenthood Association'),
(13535, 'https://ror.org/04v2rez45', 'no_lang_code', 1, 'https://ror.org/04v2rez45 MC2 Therapeutics (Denmark)'),
(13536, 'https://ror.org/00w4cxg78', 'no_lang_code', 1, 'https://ror.org/00w4cxg78 Breakthrough'),
(13537, 'https://ror.org/05vwzkh77', 'en', 1, 'https://ror.org/05vwzkh77 National LGBT Cancer Network'),
(13538, 'https://ror.org/04z5k1s77', 'en', 1, 'https://ror.org/04z5k1s77 McAlister Institute'),
(13539, 'https://ror.org/03019wv17', 'en', 1, 'https://ror.org/03019wv17 National Multiple Sclerosis Society'),
(13540, 'https://ror.org/05kqz6183', 'en', 1, 'https://ror.org/05kqz6183 Leukaemia Foundation of Queensland'),
(13541, 'https://ror.org/04m0xav37', 'en', 1, 'https://ror.org/04m0xav37 Leukemia and Lymphoma Society'),
(13542, 'https://ror.org/01tbz5160', 'en', 1, 'https://ror.org/01tbz5160 National Nurses Association of Kenya'),
(13543, 'https://ror.org/036wcgd38', 'en', 1, 'https://ror.org/036wcgd38 Leukemia Research Foundation'),
(13544, 'https://ror.org/031a8k913', 'en', 1, 'https://ror.org/031a8k913 McCabe Centre for Law and Cancer'),
(13545, 'https://ror.org/03t3bph36', 'no_lang_code', 1, 'https://ror.org/03t3bph36 Nanometics (United States)'),
(13546, 'https://ror.org/04rvc0m17', 'no_lang_code', 1, 'https://ror.org/04rvc0m17 Lewin Group (United States)'),
(13547, 'https://ror.org/00spbya24', 'no_lang_code', 1, 'https://ror.org/00spbya24 Lewis and Clark Pharmaceuticals (United States)'),
(13548, 'https://ror.org/05tn2bq24', 'en', 1, 'https://ror.org/05tn2bq24 Lewisham and Greenwich NHS Trust'),
(13549, 'https://ror.org/03fnvja86', 'no_lang_code', 1, 'https://ror.org/03fnvja86 Nanovis (United States)'),
(13550, 'https://ror.org/03z5t3857', 'en', 1, 'https://ror.org/03z5t3857 VA Fanarjian National Center of Oncology Վ.Ա. Ֆանարջյանի անվան ուռուցքաբանության ազգային կենտրոն'),
(13551, 'https://ror.org/01eywxa39', 'en', 1, 'https://ror.org/01eywxa39 Lexington Medical Center'),
(13552, 'https://ror.org/051wbhx61', 'no_lang_code', 1, 'https://ror.org/051wbhx61 McCarthy Modernization (United States)'),
(13553, 'https://ror.org/016yyk170', 'en', 1, 'https://ror.org/016yyk170 Lennox-Gastaut Syndrome Foundation'),
(13554, 'https://ror.org/03c84q386', 'en', 1, 'https://ror.org/03c84q386 McCarton Foundation'),
(13555, 'https://ror.org/05dmrvx33', 'no_lang_code', 1, 'https://ror.org/05dmrvx33 Microchips Biotech (United States)'),
(13556, 'https://ror.org/05kscmd46', 'en', 1, 'https://ror.org/05kscmd46 National Organization for Disorders of the Corpus Callosum'),
(13557, 'https://ror.org/05hbp5640', 'en', 1, 'https://ror.org/05hbp5640 McDonough County Health Department'),
(13558, 'https://ror.org/028h2sf55', 'en', 1, 'https://ror.org/028h2sf55 McDowell County Schools'),
(13559, 'https://ror.org/04ztvme64', 'en', 1, 'https://ror.org/04ztvme64 Texas Medical Association'),
(13560, 'https://ror.org/05g8ngg39', 'en', 1, 'https://ror.org/05g8ngg39 Lideres Campesinas'),
(13561, 'https://ror.org/007rawr89', 'en', 1, 'https://ror.org/007rawr89 Augusta University Health'),
(13562, 'https://ror.org/01cwv5f90', 'en', 1, 'https://ror.org/01cwv5f90 Northeast Health'),
(13563, 'https://ror.org/05m6rdh46', 'en', 1, 'https://ror.org/05m6rdh46 Microfinance and Community Development Institute'),
(13564, 'https://ror.org/00sp0dx83', 'en', 1, 'https://ror.org/00sp0dx83 National Rehabilitation Association'),
(13565, 'https://ror.org/02dz3em48', 'en', 1, 'https://ror.org/02dz3em48 Life Goes On-Home Improvement'),
(13566, 'https://ror.org/01fsfar50', 'no_lang_code', 1, 'https://ror.org/01fsfar50 Ascepion Pharmaceuticals (China)'),
(13567, 'https://ror.org/02k712m23', 'en', 1, 'https://ror.org/02k712m23 Life Rolls On Foundation'),
(13568, 'https://ror.org/01746zk69', 'en', 1, 'https://ror.org/01746zk69 National Advocates for Pregnant Women'),
(13569, 'https://ror.org/03fr5cc17', 'no_lang_code', 1, 'https://ror.org/03fr5cc17 Asklepios Asklepios Kliniken'),
(13570, 'https://ror.org/00evcdx62', 'es', 1, 'https://ror.org/00evcdx62 Asociación para el Desarrollo Integral Comunitario'),
(13571, 'https://ror.org/01dd6b484', 'en', 1, 'https://ror.org/01dd6b484 McLoughlin Consulting'),
(13572, 'https://ror.org/00200ya62', 'en', 1, 'https://ror.org/00200ya62 National Ageing Research Institute'),
(13573, 'https://ror.org/00zxhvp59', 'en', 1, 'https://ror.org/00zxhvp59 Mid Atlantic Wheelchair Athletic Association'),
(13574, 'https://ror.org/05d2zbe90', 'en', 1, 'https://ror.org/05d2zbe90 National Research Center for Maternal and Child Health Ана мен бала ұлттық ғылыми орталығы'),
(13575, 'https://ror.org/01z3wjy47', 'en', 1, 'https://ror.org/01z3wjy47 National Alliance on Mental Illness'),
(13576, 'https://ror.org/04saw1818', 'en', 1, 'https://ror.org/04saw1818 National Ambucs'),
(13577, 'https://ror.org/0013zhk30', 'en', 1, 'https://ror.org/0013zhk30 Institute of Food Science'),
(13578, 'https://ror.org/036vyc207', 'en', 1, 'https://ror.org/036vyc207 Mid Atlantic Epilepsy and Sleep Center'),
(13579, 'https://ror.org/00fvm0x93', 'en', 1, 'https://ror.org/00fvm0x93 National September 11 Memorial and Museum'),
(13580, 'https://ror.org/02ja4sy98', 'en', 1, 'https://ror.org/02ja4sy98 National Society of Genetic Counselors'),
(13581, 'https://ror.org/05g35d951', 'en', 1, 'https://ror.org/05g35d951 LifeBridge Health'),
(13582, 'https://ror.org/04qj9wg75', 'en', 1, 'https://ror.org/04qj9wg75 St. Joseph’s Children’s Hospital'),
(13583, 'https://ror.org/0153wm704', 'en', 1, 'https://ror.org/0153wm704 Goryeb Children''s Hospital'),
(13584, 'https://ror.org/031y9sy98', 'en', 1, 'https://ror.org/031y9sy98 National Aphasia Association'),
(13585, 'https://ror.org/02x6c2007', 'en', 1, 'https://ror.org/02x6c2007 Lifeline Hospital'),
(13586, 'https://ror.org/01qj1sq68', 'en', 1, 'https://ror.org/01qj1sq68 Center for Diagnosis and Research on Alzheimer''s Disease Centre Diagnostique & Recherche en Alzheimer'),
(13587, 'https://ror.org/03mvyyw83', 'no_lang_code', 1, 'https://ror.org/03mvyyw83 Novacule (United States)'),
(13588, 'https://ror.org/03jh2fn47', 'no_lang_code', 1, 'https://ror.org/03jh2fn47 LifeSplice Pharma (United States)'),
(13589, 'https://ror.org/05rb2ch24', 'en', 1, 'https://ror.org/05rb2ch24 National Sports Center for the Disabled'),
(13590, 'https://ror.org/040wa6e75', 'no_lang_code', 1, 'https://ror.org/040wa6e75 NKT Therapeutics (United States)'),
(13591, 'https://ror.org/01z9q0k32', 'en', 1, 'https://ror.org/01z9q0k32 LIFE/RUN Center for Independent Living'),
(13592, 'https://ror.org/04jgzeb83', 'en', 1, 'https://ror.org/04jgzeb83 National Association of E. E. Smith Alumni and Friends'),
(13593, 'https://ror.org/0246b8v59', 'en', 1, 'https://ror.org/0246b8v59 Linking Employment, Abilities and Potential'),
(13594, 'https://ror.org/00v3vnk20', 'en', 1, 'https://ror.org/00v3vnk20 National Wheelchair Basketball Association'),
(13595, 'https://ror.org/02k8rcn44', 'en', 1, 'https://ror.org/02k8rcn44 Light and Salt Association'),
(13596, 'https://ror.org/02rhh1947', 'en', 1, 'https://ror.org/02rhh1947 Barnert Temple'),
(13597, 'https://ror.org/021h49x90', 'en', 1, 'https://ror.org/021h49x90 No Wooden Nickels'),
(13598, 'https://ror.org/01mjpgb45', 'en', 1, 'https://ror.org/01mjpgb45 Native American Advocacy Program'),
(13599, 'https://ror.org/05hwnvh42', 'en', 1, 'https://ror.org/05hwnvh42 Midwest Wheelchair Sport and Social Club'),
(13600, 'https://ror.org/01j8hda60', 'no_lang_code', 1, 'https://ror.org/01j8hda60 Native American Cancer Initiatives (United States)'),
(13601, 'https://ror.org/01a2qtx28', 'en', 1, 'https://ror.org/01a2qtx28 Lili Claire Foundation'),
(13602, 'https://ror.org/004y9hm48', 'en', 1, 'https://ror.org/004y9hm48 Mighty4 Arts Foundation'),
(13603, 'https://ror.org/03j496302', 'en', 1, 'https://ror.org/03j496302 Limbs For Life Foundation'),
(13604, 'https://ror.org/007rmqd49', 'en', 1, 'https://ror.org/007rmqd49 National Bone Marrow Transplant Link'),
(13605, 'https://ror.org/043036461', 'en', 1, 'https://ror.org/043036461 CancerLINC'),
(13606, 'https://ror.org/05qcgr122', 'en', 1, 'https://ror.org/05qcgr122 Native American Kennels'),
(13607, 'https://ror.org/03b58r371', 'en', 1, 'https://ror.org/03b58r371 Noble'),
(13608, 'https://ror.org/051687e73', 'en', 1, 'https://ror.org/051687e73 National Brain Tumor Society'),
(13609, 'https://ror.org/02an78v51', 'en', 1, 'https://ror.org/02an78v51 Lincoln Center for the Performing Arts'),
(13610, 'https://ror.org/05n597h70', 'en', 1, 'https://ror.org/05n597h70 Native Americans for Community Action'),
(13611, 'https://ror.org/03n9jn918', 'en', 1, 'https://ror.org/03n9jn918 Lincoln Charter School'),
(13612, 'https://ror.org/04b85bq70', 'no_lang_code', 1, 'https://ror.org/04b85bq70 Nodality (United States)'),
(13613, 'https://ror.org/04a0v2b96', 'en', 1, 'https://ror.org/04a0v2b96 Migrant Clinicians Network'),
(13614, 'https://ror.org/00n5jbe50', 'en', 1, 'https://ror.org/00n5jbe50 Natividad Foundation'),
(13615, 'https://ror.org/05yf91t27', 'en', 1, 'https://ror.org/05yf91t27 Northwest Community Health Center'),
(13616, 'https://ror.org/05tff2467', 'en', 1, 'https://ror.org/05tff2467 Natural Resources Defense Council'),
(13617, 'https://ror.org/051p0n058', 'no_lang_code', 1, 'https://ror.org/051p0n058 Mikey’s Way Foundation'),
(13618, 'https://ror.org/04sz6k684', 'en', 1, 'https://ror.org/04sz6k684 Lincoln Fencing Club'),
(13619, 'https://ror.org/034k9nh67', 'en', 1, 'https://ror.org/034k9nh67 Greensboro Science Center'),
(13620, 'https://ror.org/046h4gy16', 'en', 1, 'https://ror.org/046h4gy16 Leonia Lions Club'),
(13621, 'https://ror.org/00msdr558', 'en', 1, 'https://ror.org/00msdr558 Miles Perret Cancer Services'),
(13622, 'https://ror.org/01wzjne83', 'en', 1, 'https://ror.org/01wzjne83 Mille Lacs Band of Ojibwe'),
(13623, 'https://ror.org/04wx7x176', 'en', 1, 'https://ror.org/04wx7x176 Psychiatric Medical Center'),
(13624, 'https://ror.org/01gt37935', 'no_lang_code', 1, 'https://ror.org/01gt37935 Linnet Biopharmaceuticals (United States)'),
(13625, 'https://ror.org/04adqta18', 'en', 1, 'https://ror.org/04adqta18 Millennium Charter Academy'),
(13626, 'https://ror.org/00qaxgn38', 'en', 1, 'https://ror.org/00qaxgn38 Millennium Health and Human Services'),
(13627, 'https://ror.org/01rw6jj79', 'no_lang_code', 1, 'https://ror.org/01rw6jj79 Lighting Innovation (United States)'),
(13628, 'https://ror.org/034trs204', 'en', 1, 'https://ror.org/034trs204 Mind Body Solutions'),
(13629, 'https://ror.org/00we1gw23', 'en', 1, 'https://ror.org/00we1gw23 MIND Research Institute'),
(13630, 'https://ror.org/03fat7v77', 'en', 1, 'https://ror.org/03fat7v77 Ministry of Gender and Development'),
(13631, 'https://ror.org/00bz7xw94', 'en', 1, 'https://ror.org/00bz7xw94 Literacy for Environmental Justice'),
(13632, 'https://ror.org/04ft4dj82', 'en', 1, 'https://ror.org/04ft4dj82 Minnesota Department of Corrections'),
(13633, 'https://ror.org/01yrms264', 'en', 1, 'https://ror.org/01yrms264 Little Angels Early Childhood Center'),
(13634, 'https://ror.org/02qnmmb02', 'en', 1, 'https://ror.org/02qnmmb02 Minnesota Epilepsy Group'),
(13635, 'https://ror.org/051r84t36', 'en', 1, 'https://ror.org/051r84t36 Little Bit Therapeutic Riding Center'),
(13636, 'https://ror.org/03f42pk91', 'en', 1, 'https://ror.org/03f42pk91 Norte Maar'),
(13637, 'https://ror.org/0585jt080', 'no_lang_code', 1, 'https://ror.org/0585jt080 It’s The Journey'),
(13638, 'https://ror.org/023xbxt82', 'en', 1, 'https://ror.org/023xbxt82 Live Healthy DeKalb County'),
(13639, 'https://ror.org/059re9458', 'en', 1, 'https://ror.org/059re9458 Professional Association of Therapeutic Horsemanship International'),
(13640, 'https://ror.org/02x7g2480', 'en', 1, 'https://ror.org/02x7g2480 Proof Alliance'),
(13641, 'https://ror.org/04hd0yz67', 'en', 1, 'https://ror.org/04hd0yz67 Egyptian Atomic Energy Authority'),
(13642, 'https://ror.org/02jzmxs17', 'en', 1, 'https://ror.org/02jzmxs17 North Bay Cancer Alliance'),
(13643, 'https://ror.org/04pw6fb54', 'en', 1, 'https://ror.org/04pw6fb54 National Center for Advancing Translational Sciences'),
(13644, 'https://ror.org/05acrxx45', 'en', 1, 'https://ror.org/05acrxx45 Broward Health'),
(13645, 'https://ror.org/01yxrjg25', 'en', 1, 'https://ror.org/01yxrjg25 National Center for Disease Control and Public Health დაავადებათა კონტროლისა და საზოგადოებრივი ჯანმრთელობის ეროვნული ცენტრი'),
(13646, 'https://ror.org/02f8ezy79', 'en', 1, 'https://ror.org/02f8ezy79 Living Beyond Breast Cancer'),
(13647, 'https://ror.org/04kqb8t43', 'en', 1, 'https://ror.org/04kqb8t43 Living Classrooms'),
(13648, 'https://ror.org/03byj3662', 'en', 1, 'https://ror.org/03byj3662 National Center for Farmworker Health'),
(13649, 'https://ror.org/01c3fwx83', 'en', 1, 'https://ror.org/01c3fwx83 Miracle League of Blair County'),
(13650, 'https://ror.org/052teyb98', 'en', 1, 'https://ror.org/052teyb98 North Carolina Aquarium'),
(13651, 'https://ror.org/024n70r63', 'en', 1, 'https://ror.org/024n70r63 Living Independently Now Center'),
(13652, 'https://ror.org/03qkxep52', 'en', 1, 'https://ror.org/03qkxep52 Coastal Land Trust'),
(13653, 'https://ror.org/03ydqnc29', 'en', 1, 'https://ror.org/03ydqnc29 Miriam''s Kitchen'),
(13654, 'https://ror.org/04vjg0a23', 'en', 1, 'https://ror.org/04vjg0a23 National Center for Learning Disabilities'),
(13655, 'https://ror.org/04hp0sd20', 'en', 1, 'https://ror.org/04hp0sd20 Mission Neighborhood Health Center'),
(13656, 'https://ror.org/04z86nr40', 'en', 1, 'https://ror.org/04z86nr40 Living Springs Community Church'),
(13657, 'https://ror.org/026jj6489', 'en', 1, 'https://ror.org/026jj6489 Mission Children''s Hospital'),
(13658, 'https://ror.org/04533yy36', 'en', 1, 'https://ror.org/04533yy36 North Carolina Society of Hispanic Professionals'),
(13659, 'https://ror.org/007nfvg13', 'en', 1, 'https://ror.org/007nfvg13 LivingWell Cancer Resource Center'),
(13660, 'https://ror.org/030bhtx29', 'no_lang_code', 1, 'https://ror.org/030bhtx29 Lixte (United States)'),
(13661, 'https://ror.org/02g802m02', 'en', 1, 'https://ror.org/02g802m02 Mission Health'),
(13662, 'https://ror.org/05gc2z195', 'en', 1, 'https://ror.org/05gc2z195 North Carolina Virtual Public School'),
(13663, 'https://ror.org/007dpey41', 'en', 1, 'https://ror.org/007dpey41 NC Little Memorial Hospice'),
(13664, 'https://ror.org/059rk5f84', 'en', 1, 'https://ror.org/059rk5f84 North Carolina Zoo Society'),
(13665, 'https://ror.org/02tsp7733', 'en', 1, 'https://ror.org/02tsp7733 New York State Office of Children and Family Services'),
(13666, 'https://ror.org/040mcv449', 'no_lang_code', 1, 'https://ror.org/040mcv449 Lohocla Research Corporation (United States)'),
(13667, 'https://ror.org/03cw8xx58', 'en', 1, 'https://ror.org/03cw8xx58 North Colorado Medical Center Foundation'),
(13668, 'https://ror.org/00xhrnd80', 'en', 1, 'https://ror.org/00xhrnd80 North Country Home Health & Hospice Agency'),
(13669, 'https://ror.org/005spvz56', 'en', 1, 'https://ror.org/005spvz56 North Country Hospital'),
(13670, 'https://ror.org/00gd6jw56', 'en', 1, 'https://ror.org/00gd6jw56 Lone Star Paralysis Foundation'),
(13671, 'https://ror.org/02r7md321', 'en', 1, 'https://ror.org/02r7md321 North Florida/South Georgia Veterans Health System'),
(13672, 'https://ror.org/026jqpc47', 'en', 1, 'https://ror.org/026jqpc47 North Fork Breast Health Coalition'),
(13673, 'https://ror.org/04jh42846', 'en', 1, 'https://ror.org/04jh42846 North Central Florida Neurodiagnostic Services'),
(13674, 'https://ror.org/05853wp21', 'en', 1, 'https://ror.org/05853wp21 National Children''s Cancer Society'),
(13675, 'https://ror.org/024328p12', 'en', 1, 'https://ror.org/024328p12 Long Island Association'),
(13676, 'https://ror.org/00rt22t88', 'en', 1, 'https://ror.org/00rt22t88 St. Alexius Heart and Lung Clinic'),
(13677, 'https://ror.org/0149b4c62', 'en', 1, 'https://ror.org/0149b4c62 Long Island Junior Soccer League'),
(13678, 'https://ror.org/05h2v9w40', 'en', 1, 'https://ror.org/05h2v9w40 Tri-State Wheelchair Athletic Association'),
(13679, 'https://ror.org/008vgsq37', 'en', 1, 'https://ror.org/008vgsq37 National Council of Negro Women'),
(13680, 'https://ror.org/05h2tck38', 'en', 1, 'https://ror.org/05h2tck38 Misty Meadows Mitey Riders'),
(13681, 'https://ror.org/0596y7869', 'en', 1, 'https://ror.org/0596y7869 Necessities Bag'),
(13682, 'https://ror.org/01nb7ex83', 'no_lang_code', 1, 'https://ror.org/01nb7ex83 Longevity Biotech (United States)'),
(13683, 'https://ror.org/01qr8rz09', 'en', 1, 'https://ror.org/01qr8rz09 Lori Arquilla Andersen Foundation'),
(13684, 'https://ror.org/01bcnv283', 'en', 1, 'https://ror.org/01bcnv283 Los Angeles Centers for Alcohol and Drug Abuse'),
(13685, 'https://ror.org/047xg5527', 'en', 1, 'https://ror.org/047xg5527 National Council on Indepedent Living'),
(13686, 'https://ror.org/04xd7yt90', 'en', 1, 'https://ror.org/04xd7yt90 Neighborhood House Association'),
(13687, 'https://ror.org/04mz6rz07', 'en', 1, 'https://ror.org/04mz6rz07 North Shore Animal League America'),
(13688, 'https://ror.org/01jwz9x72', 'en', 1, 'https://ror.org/01jwz9x72 North Shore Child & Family Guidance Center'),
(13689, 'https://ror.org/00h741k48', 'no_lang_code', 1, 'https://ror.org/00h741k48 Mitergy (United States)'),
(13690, 'https://ror.org/04jbqg756', 'en', 1, 'https://ror.org/04jbqg756 North Shore Pro Musica'),
(13691, 'https://ror.org/04r74gg67', 'en', 1, 'https://ror.org/04r74gg67 Neil Squire Society'),
(13692, 'https://ror.org/03f82tr05', 'en', 1, 'https://ror.org/03f82tr05 National Domestic Workers Alliance'),
(13693, 'https://ror.org/05p52rc54', 'en', 1, 'https://ror.org/05p52rc54 National Eating Disorders Association'),
(13694, 'https://ror.org/02nkdpb96', 'en', 1, 'https://ror.org/02nkdpb96 Northeast Florida Healthy Start Coalition'),
(13695, 'https://ror.org/02qwkar08', 'no_lang_code', 1, 'https://ror.org/02qwkar08 Mitra Biotech (India)'),
(13696, 'https://ror.org/00tjsgg12', 'en', 1, 'https://ror.org/00tjsgg12 Mixteco Indígena Community Organizing Project'),
(13697, 'https://ror.org/020njkh42', 'en', 1, 'https://ror.org/020njkh42 NEOMED Institute'),
(13698, 'https://ror.org/01j043w21', 'en', 1, 'https://ror.org/01j043w21 Mitochondria Research and Medicine Society'),
(13699, 'https://ror.org/03wtkw294', 'en', 1, 'https://ror.org/03wtkw294 National Hispanic Council on Aging'),
(13700, 'https://ror.org/02qarj925', 'en', 1, 'https://ror.org/02qarj925 Michigan Institute for Neurological Disorders'),
(13701, 'https://ror.org/048j8nq91', 'en', 1, 'https://ror.org/048j8nq91 Nepal Cancer Hospital and Research Center नेपाल क्यान्सर अस्पताल र अनुसन्धान केन्द्र'),
(13702, 'https://ror.org/0330jdp03', 'en', 1, 'https://ror.org/0330jdp03 Nepal Ambulance Service'),
(13703, 'https://ror.org/03yskjj43', 'en', 1, 'https://ror.org/03yskjj43 Texas Neurology'),
(13704, 'https://ror.org/02k5trc82', 'no_lang_code', 1, 'https://ror.org/02k5trc82 Nereus Life Sciences (United States)'),
(13705, 'https://ror.org/003kb2e24', 'en', 1, 'https://ror.org/003kb2e24 National Hospice Foundation'),
(13706, 'https://ror.org/01ft5dd14', 'en', 1, 'https://ror.org/01ft5dd14 Netaji Subhas Chandra Bose Cancer Research Institute'),
(13707, 'https://ror.org/04gxzhg33', 'en', 1, 'https://ror.org/04gxzhg33 Mobility Unlimited'),
(13708, 'https://ror.org/05t918q20', 'en', 1, 'https://ror.org/05t918q20 Northeastern School District'),
(13709, 'https://ror.org/04pjxxd64', 'en', 1, 'https://ror.org/04pjxxd64 Alaska Neurology Center'),
(13710, 'https://ror.org/03rw9a524', 'en', 1, 'https://ror.org/03rw9a524 Northern California Indian Development Council'),
(13711, 'https://ror.org/04v566e62', 'no_lang_code', 1, 'https://ror.org/04v566e62 Netronix (United States)'),
(13712, 'https://ror.org/04g9q2h37', 'en', 1, 'https://ror.org/04g9q2h37 San Francisco VA Health Care System'),
(13713, 'https://ror.org/03rw5jc77', 'en', 1, 'https://ror.org/03rw5jc77 Benefis Health System Foundation'),
(13714, 'https://ror.org/046hxmc98', 'no_lang_code', 1, 'https://ror.org/046hxmc98 Modulation Therapeutics (United States)'),
(13715, 'https://ror.org/048et8x32', 'no_lang_code', 1, 'https://ror.org/048et8x32 Moerae Matrix (United States)'),
(13716, 'https://ror.org/01ryyex45', 'no_lang_code', 1, 'https://ror.org/01ryyex45 NeurAccel Biosciences (United States)'),
(13717, 'https://ror.org/0406ep819', 'en', 1, 'https://ror.org/0406ep819 Neural Repair Institute'),
(13718, 'https://ror.org/00mtnme46', 'en', 1, 'https://ror.org/00mtnme46 Northern Neurosciences'),
(13719, 'https://ror.org/05vksh612', 'en', 1, 'https://ror.org/05vksh612 Neuro Assistance Foundation'),
(13720, 'https://ror.org/00n5szt64', 'no_lang_code', 1, 'https://ror.org/00n5szt64 Neuro-Zone (Italy)'),
(13721, 'https://ror.org/01x25y074', 'en', 1, 'https://ror.org/01x25y074 Northern Nevada Children''s Cancer Foundation'),
(13722, 'https://ror.org/00vdcfb98', 'en', 1, 'https://ror.org/00vdcfb98 Kaiser Permanente Castle Medical Center'),
(13723, 'https://ror.org/02jbegc32', 'en', 1, 'https://ror.org/02jbegc32 Children’s Clinics'),
(13724, 'https://ror.org/050g6df85', 'en', 1, 'https://ror.org/050g6df85 National Institute of Cancer Research and Hospital জাতীয় ক্যান্সার গবেষণা ইনস্টিটিউট ও হাসপাতাল'),
(13725, 'https://ror.org/05dngkv23', 'no_lang_code', 1, 'https://ror.org/05dngkv23 Neurochlore (France)'),
(13726, 'https://ror.org/04r0s0t24', 'en', 1, 'https://ror.org/04r0s0t24 NeuroDevNet'),
(13727, 'https://ror.org/00hh6j532', 'en', 1, 'https://ror.org/00hh6j532 National Institute of Child Health Országos Gyermek Egészségügyi Intézet'),
(13728, 'https://ror.org/01k0w6g34', 'no_lang_code', 1, 'https://ror.org/01k0w6g34 NeuroHealing Pharmaceuticals (United States)'),
(13729, 'https://ror.org/00q1c1v42', 'en', 1, 'https://ror.org/00q1c1v42 Opportunity Foundation of America'),
(13730, 'https://ror.org/03qrrfg84', 'en', 1, 'https://ror.org/03qrrfg84 NeuroLinx Research Institute'),
(13731, 'https://ror.org/04qg5nd35', 'en', 1, 'https://ror.org/04qg5nd35 Northwest Florida Hematology Oncology'),
(13732, 'https://ror.org/05a34gy67', 'no_lang_code', 1, 'https://ror.org/05a34gy67 Opsona Therapeutics (Ireland)'),
(13733, 'https://ror.org/009jmw315', 'en', 1, 'https://ror.org/009jmw315 Northwest Georgia Regional Cancer Coalition'),
(13734, 'https://ror.org/01xq50d72', 'en', 1, 'https://ror.org/01xq50d72 Community Medical Center'),
(13735, 'https://ror.org/03y260e28', 'en', 1, 'https://ror.org/03y260e28 Neurologic Disease Foundation'),
(13736, 'https://ror.org/02wtzjm20', 'en', 1, 'https://ror.org/02wtzjm20 Neurological Recovery House'),
(13737, 'https://ror.org/01eycqy43', 'en', 1, 'https://ror.org/01eycqy43 Northwest Hospital'),
(13738, 'https://ror.org/058wkc079', 'en', 1, 'https://ror.org/058wkc079 Cooper Clinic'),
(13739, 'https://ror.org/04q0ja294', 'en', 1, 'https://ror.org/04q0ja294 Covenant Health System'),
(13740, 'https://ror.org/013jy5726', 'en', 1, 'https://ror.org/013jy5726 Illinois Area Health Education Center'),
(13741, 'https://ror.org/05gbftj13', 'en', 1, 'https://ror.org/05gbftj13 Orange County Asian Pacific Islander Community Alliance'),
(13742, 'https://ror.org/05tns8e08', 'en', 1, 'https://ror.org/05tns8e08 Neurology Specialists of Monmouth County'),
(13743, 'https://ror.org/054pcbf42', 'en', 1, 'https://ror.org/054pcbf42 Orange County School'),
(13744, 'https://ror.org/03qqb4r64', 'no_lang_code', 1, 'https://ror.org/03qqb4r64 Neuron BioPharma (Spain)'),
(13745, 'https://ror.org/05ws79528', 'en', 1, 'https://ror.org/05ws79528 Oregon Adaptive Sports'),
(13746, 'https://ror.org/00cdtrb49', 'en', 1, 'https://ror.org/00cdtrb49 Oregon College of Oriental Medicine'),
(13747, 'https://ror.org/04jzh7r11', 'no_lang_code', 1, 'https://ror.org/04jzh7r11 NX PharmaGen (United States)'),
(13748, 'https://ror.org/04ypb9m04', 'no_lang_code', 1, 'https://ror.org/04ypb9m04 NeuroNascent (United States)'),
(13749, 'https://ror.org/047gyf089', 'en', 1, 'https://ror.org/047gyf089 Orelena Hawks Puckett Institute'),
(13750, 'https://ror.org/035jqr885', 'en', 1, 'https://ror.org/035jqr885 Elkhart Clinic'),
(13751, 'https://ror.org/00x8zak80', 'en', 1, 'https://ror.org/00x8zak80 National Institute of Population Studies'),
(13752, 'https://ror.org/04r8v5t40', 'en', 1, 'https://ror.org/04r8v5t40 Not-Me!'),
(13753, 'https://ror.org/00292bn75', 'en', 1, 'https://ror.org/00292bn75 Note-Able Music Therapy Services'),
(13754, 'https://ror.org/003e85j37', 'en', 1, 'https://ror.org/003e85j37 Nothing But Nets'),
(13755, 'https://ror.org/01gtybw70', 'en', 1, 'https://ror.org/01gtybw70 Georgia Regents Medical Center'),
(13756, 'https://ror.org/00b970z32', 'no_lang_code', 1, 'https://ror.org/00b970z32 Orion Genomics (United States)'),
(13757, 'https://ror.org/03kaj7n58', 'no_lang_code', 1, 'https://ror.org/03kaj7n58 NovaBay Pharmaceuticals (United States)'),
(13758, 'https://ror.org/033ek1554', 'en', 1, 'https://ror.org/033ek1554 Hamot Health Foundation'),
(13759, 'https://ror.org/01nf48187', 'en', 1, 'https://ror.org/01nf48187 Pike County Health Department'),
(13760, 'https://ror.org/00rn5y796', 'en', 1, 'https://ror.org/00rn5y796 Hillcrest Clinics'),
(13761, 'https://ror.org/04cj9pv40', 'en', 1, 'https://ror.org/04cj9pv40 Ormylia Foundation'),
(13762, 'https://ror.org/012vnhm21', 'no_lang_code', 1, 'https://ror.org/012vnhm21 OrphageniX (United States)'),
(13763, 'https://ror.org/01ert7s69', 'en', 1, 'https://ror.org/01ert7s69 Orpheus Chamber Orchestra'),
(13764, 'https://ror.org/04bw38x95', 'en', 1, 'https://ror.org/04bw38x95 Pike High School'),
(13765, 'https://ror.org/056fv9b21', 'no_lang_code', 1, 'https://ror.org/056fv9b21 Orpro Therapeutics (United States)'),
(13766, 'https://ror.org/007t1w466', 'en', 1, 'https://ror.org/007t1w466 Orthopaedic Research Laboratories'),
(13767, 'https://ror.org/02hp5at17', 'en', 1, 'https://ror.org/02hp5at17 Jupiter Medical Center'),
(13768, 'https://ror.org/0452rfk90', 'en', 1, 'https://ror.org/0452rfk90 Pilates of Marin'),
(13769, 'https://ror.org/051zae275', 'en', 1, 'https://ror.org/051zae275 Kadlec Regional Medical Center'),
(13770, 'https://ror.org/028gm7992', 'en', 1, 'https://ror.org/028gm7992 Jefferson University Hospitals'),
(13771, 'https://ror.org/04cfdk084', 'en', 1, 'https://ror.org/04cfdk084 OAK Orthopedics'),
(13772, 'https://ror.org/03d95mc27', 'no_lang_code', 1, 'https://ror.org/03d95mc27 Ortin Laboratories (India)'),
(13773, 'https://ror.org/05acvka91', 'no_lang_code', 1, 'https://ror.org/05acvka91 ViaCyte (United States)'),
(13774, 'https://ror.org/05pqs7520', 'en', 1, 'https://ror.org/05pqs7520 National Capital Baptist Convention'),
(13775, 'https://ror.org/02vpj2j75', 'no_lang_code', 1, 'https://ror.org/02vpj2j75 Neurotez (United States)'),
(13776, 'https://ror.org/00saxze38', 'en', 1, 'https://ror.org/00saxze38 Loma Linda University Health Care'),
(13777, 'https://ror.org/02stmg653', 'en', 1, 'https://ror.org/02stmg653 Pilipino Senior Resource Center'),
(13778, 'https://ror.org/02yer3h76', 'en', 1, 'https://ror.org/02yer3h76 Pine Cobble School'),
(13779, 'https://ror.org/057mcs327', 'no_lang_code', 1, 'https://ror.org/057mcs327 NeuroVigil (United States)'),
(13780, 'https://ror.org/0447c6e97', 'no_lang_code', 1, 'https://ror.org/0447c6e97 NeuroVista (United States)'),
(13781, 'https://ror.org/05404pa79', 'en', 1, 'https://ror.org/05404pa79 OSF Saint Anthony Medical Center'),
(13782, 'https://ror.org/034q5ae56', 'en', 1, 'https://ror.org/034q5ae56 Sound Rivers'),
(13783, 'https://ror.org/02j4a0n65', 'en', 1, 'https://ror.org/02j4a0n65 Nevada Cancer Research Foundation'),
(13784, 'https://ror.org/02svw4v94', 'en', 1, 'https://ror.org/02svw4v94 Hauppauge Public School'),
(13785, 'https://ror.org/02a5mvd52', 'en', 1, 'https://ror.org/02a5mvd52 OSF Saint Francis Foundation'),
(13786, 'https://ror.org/052b7db17', 'en', 1, 'https://ror.org/052b7db17 Nevada Childhood Cancer Foundation'),
(13787, 'https://ror.org/00s5ck612', 'en', 1, 'https://ror.org/00s5ck612 Accessible Space'),
(13788, 'https://ror.org/04gmz9460', 'en', 1, 'https://ror.org/04gmz9460 Lady Mavericks Wheelchair Basketball'),
(13789, 'https://ror.org/02eg1b280', 'en', 1, 'https://ror.org/02eg1b280 Novokuznetsk State Institute of Advanced Medical Education Новокузнецкий институт усовершенствования врачей'),
(13790, 'https://ror.org/03h04vn96', 'no_lang_code', 1, 'https://ror.org/03h04vn96 Nymirum (United States)'),
(13791, 'https://ror.org/01bbba959', 'en', 1, 'https://ror.org/01bbba959 Pink Ribbons Project'),
(13792, 'https://ror.org/02zk14v48', 'en', 1, 'https://ror.org/02zk14v48 Our Family Services'),
(13793, 'https://ror.org/04g007714', 'no_lang_code', 1, 'https://ror.org/04g007714 Noxxon Pharma (Germany)'),
(13794, 'https://ror.org/008zvz098', 'en', 1, 'https://ror.org/008zvz098 New America'),
(13795, 'https://ror.org/05n6y2c30', 'en', 1, 'https://ror.org/05n6y2c30 Pioneer Network'),
(13796, 'https://ror.org/056x8jc78', 'en', 1, 'https://ror.org/056x8jc78 New Americans Community Services'),
(13797, 'https://ror.org/01fqs5523', 'en', 1, 'https://ror.org/01fqs5523 Pisgah Astronomical Research Institute'),
(13798, 'https://ror.org/025q2xt16', 'en', 1, 'https://ror.org/025q2xt16 Dean Health Systems'),
(13799, 'https://ror.org/04e89qg80', 'en', 1, 'https://ror.org/04e89qg80 Kennedy Memorial Hospital'),
(13800, 'https://ror.org/04hw25m76', 'en', 1, 'https://ror.org/04hw25m76 New Beginnings Community Center'),
(13801, 'https://ror.org/00k94y497', 'en', 1, 'https://ror.org/00k94y497 Onslow County School System'),
(13802, 'https://ror.org/05wd0fd11', 'no_lang_code', 1, 'https://ror.org/05wd0fd11 PixarBio (United States)'),
(13803, 'https://ror.org/05324s141', 'en', 1, 'https://ror.org/05324s141 Our Lady of Perpetual Help'),
(13804, 'https://ror.org/00dsh2014', 'en', 1, 'https://ror.org/00dsh2014 Placer School for Adults'),
(13805, 'https://ror.org/02zv5ec81', 'en', 1, 'https://ror.org/02zv5ec81 Ntengwe for Community Development'),
(13806, 'https://ror.org/025g9s518', 'en', 1, 'https://ror.org/025g9s518 New England Anti-Vivisection Society'),
(13807, 'https://ror.org/02ytj9t26', 'en', 1, 'https://ror.org/02ytj9t26 Plan International'),
(13808, 'https://ror.org/03p67qv16', 'en', 1, 'https://ror.org/03p67qv16 Plan International Regional Office of the Americas'),
(13809, 'https://ror.org/02p7ad522', 'en', 1, 'https://ror.org/02p7ad522 New England Coalition for Cancer Survivorship'),
(13810, 'https://ror.org/02p4mb484', 'en', 1, 'https://ror.org/02p4mb484 Plan International Tanzania'),
(13811, 'https://ror.org/0150zzy74', 'en', 1, 'https://ror.org/0150zzy74 New England Disabled Sports'),
(13812, 'https://ror.org/04n2m2v25', 'en', 1, 'https://ror.org/04n2m2v25 New England Handicapped Sports Association'),
(13813, 'https://ror.org/00m4fb445', 'en', 1, 'https://ror.org/00m4fb445 Neurology Associates of Arlington'),
(13814, 'https://ror.org/04y1z0v62', 'en', 1, 'https://ror.org/04y1z0v62 Ovar''coming Together'),
(13815, 'https://ror.org/04ks4f885', 'en', 1, 'https://ror.org/04ks4f885 Nueva Vida'),
(13816, 'https://ror.org/04et83a48', 'en', 1, 'https://ror.org/04et83a48 Ovarian Cancer Institute'),
(13817, 'https://ror.org/00qc61c04', 'en', 1, 'https://ror.org/00qc61c04 New Frontier'),
(13818, 'https://ror.org/01a81w125', 'en', 1, 'https://ror.org/01a81w125 Planned Parenthood Association of Liberia'),
(13819, 'https://ror.org/032ynh934', 'en', 1, 'https://ror.org/032ynh934 New Hampshire Hospice and Palliative Care Organization'),
(13820, 'https://ror.org/01n2sky78', 'en', 1, 'https://ror.org/01n2sky78 Ovarian Cancer National Alliance'),
(13821, 'https://ror.org/00wcraf05', 'en', 1, 'https://ror.org/00wcraf05 New Haven Family Alliance'),
(13822, 'https://ror.org/03xe1hd69', 'en', 1, 'https://ror.org/03xe1hd69 New Horizons Independent Living Center'),
(13823, 'https://ror.org/035z3t173', 'en', 1, 'https://ror.org/035z3t173 District scolaire de Philadelphie Distrito escolar de Filadelfia School District of Philadelphia'),
(13824, 'https://ror.org/0138k6z33', 'en', 1, 'https://ror.org/0138k6z33 Planned Parenthood Hudson Peconic'),
(13825, 'https://ror.org/03yx1gg75', 'en', 1, 'https://ror.org/03yx1gg75 Texas Nurses Association'),
(13826, 'https://ror.org/05k0fdc49', 'en', 1, 'https://ror.org/05k0fdc49 Oxfam America'),
(13827, 'https://ror.org/05xez8392', 'en', 1, 'https://ror.org/05xez8392 Nurse-Family Partnership'),
(13828, 'https://ror.org/00nrppk36', 'no_lang_code', 1, 'https://ror.org/00nrppk36 Ozmosis Research (Canada)'),
(13829, 'https://ror.org/01aqcn407', 'en', 1, 'https://ror.org/01aqcn407 New Orleans Musicians Assistance Foundation'),
(13830, 'https://ror.org/01knqhy07', 'en', 1, 'https://ror.org/01knqhy07 New Pisgah Community Service Organization'),
(13831, 'https://ror.org/028pcv110', 'en', 1, 'https://ror.org/028pcv110 Planned Parenthood of Metropolitan Washington'),
(13832, 'https://ror.org/046rga183', 'en', 1, 'https://ror.org/046rga183 Planned Parenthood Southeast'),
(13833, 'https://ror.org/05dy6te41', 'en', 1, 'https://ror.org/05dy6te41 Nursing Mothers Counsel'),
(13834, 'https://ror.org/04esec225', 'en', 1, 'https://ror.org/04esec225 Plaza Community Services'),
(13835, 'https://ror.org/03b66rp04', 'en', 1, 'https://ror.org/03b66rp04 Olive View-UCLA Medical Center'),
(13836, 'https://ror.org/05jpe9382', 'en', 1, 'https://ror.org/05jpe9382 Pleasant Hill Community Center'),
(13837, 'https://ror.org/00n4nbp68', 'en', 1, 'https://ror.org/00n4nbp68 OSF HealthCare'),
(13838, 'https://ror.org/05rg5kc24', 'en', 1, 'https://ror.org/05rg5kc24 Nutritional Oncology Research Institute'),
(13839, 'https://ror.org/021amba89', 'en', 1, 'https://ror.org/021amba89 New York Collaborates for Autism'),
(13840, 'https://ror.org/03tvp8c36', 'en', 1, 'https://ror.org/03tvp8c36 PA Breast Cancer Coalition'),
(13841, 'https://ror.org/03asvs429', 'en', 1, 'https://ror.org/03asvs429 New York Legal Assistance Group'),
(13842, 'https://ror.org/039j6d549', 'en', 1, 'https://ror.org/039j6d549 Providence Medford Medical Center'),
(13843, 'https://ror.org/05r5g1w07', 'en', 1, 'https://ror.org/05r5g1w07 Pennsylvania Center For Intuitive Studies'),
(13844, 'https://ror.org/05xvp5318', 'en', 1, 'https://ror.org/05xvp5318 Providence St. Peter Hospital'),
(13845, 'https://ror.org/04c0kq537', 'en', 1, 'https://ror.org/04c0kq537 Rapides Regional Medical Center'),
(13846, 'https://ror.org/056p4s391', 'en', 1, 'https://ror.org/056p4s391 New York Restoration Project'),
(13847, 'https://ror.org/04qkdt303', 'en', 1, 'https://ror.org/04qkdt303 New York Public Radio'),
(13848, 'https://ror.org/05sjffw91', 'en', 1, 'https://ror.org/05sjffw91 Encompass Health Rehabilitation Hospital of Tinton Falls'),
(13849, 'https://ror.org/008qy0g71', 'en', 1, 'https://ror.org/008qy0g71 Renown Children''s Hospital'),
(13850, 'https://ror.org/00w205b62', 'en', 1, 'https://ror.org/00w205b62 Renown Health'),
(13851, 'https://ror.org/03zecp235', 'no_lang_code', 1, 'https://ror.org/03zecp235 Plexcera Therapeutics (United States)'),
(13852, 'https://ror.org/01b3b0r57', 'en', 1, 'https://ror.org/01b3b0r57 Parent Advocacy Coalition for Educational Rights'),
(13853, 'https://ror.org/0381d4058', 'en', 1, 'https://ror.org/0381d4058 Renown South Meadows Medical Center'),
(13854, 'https://ror.org/03qzkbe13', 'en', 1, 'https://ror.org/03qzkbe13 New Yorkers for Parks'),
(13855, 'https://ror.org/03w9zd521', 'en', 1, 'https://ror.org/03w9zd521 St. David''s Round Rock Medical Center'),
(13856, 'https://ror.org/03e9g1572', 'no_lang_code', 1, 'https://ror.org/03e9g1572 Neuromathix (Australia)'),
(13857, 'https://ror.org/01b0md462', 'no_lang_code', 1, 'https://ror.org/01b0md462 Plumbline Coaching & Consulting (United States)'),
(13858, 'https://ror.org/05d3xvm78', 'en', 1, 'https://ror.org/05d3xvm78 Newark Academy'),
(13859, 'https://ror.org/04q8sg180', 'en', 1, 'https://ror.org/04q8sg180 Neurology Centers of the Carolinas'),
(13860, 'https://ror.org/04nt88t73', 'en', 1, 'https://ror.org/04nt88t73 PNA Center for Neurological Research'),
(13861, 'https://ror.org/04ak2vh38', 'en', 1, 'https://ror.org/04ak2vh38 Newark Community Health Centers'),
(13862, 'https://ror.org/04rzss152', 'no_lang_code', 1, 'https://ror.org/04rzss152 NewGen Therapeutics (United States)'),
(13863, 'https://ror.org/048fgvb33', 'no_lang_code', 1, 'https://ror.org/048fgvb33 Podiceps (Netherlands)'),
(13864, 'https://ror.org/03k6c3c61', 'en', 1, 'https://ror.org/03k6c3c61 St. Anthony’s Hospital'),
(13865, 'https://ror.org/058643s73', 'en', 1, 'https://ror.org/058643s73 Pachyonychia Congenita Project'),
(13866, 'https://ror.org/04jvcky17', 'en', 1, 'https://ror.org/04jvcky17 Newport Festivals Foundation'),
(13867, 'https://ror.org/03vy8yd42', 'en', 1, 'https://ror.org/03vy8yd42 St. Charles Hospital'),
(13868, 'https://ror.org/02rjkjw28', 'es', 1, 'https://ror.org/02rjkjw28 Policlínica Gipuzkoa'),
(13869, 'https://ror.org/027176q05', 'en', 1, 'https://ror.org/027176q05 St. Francis Medical Center'),
(13870, 'https://ror.org/04arwvm64', 'en', 1, 'https://ror.org/04arwvm64 Pacific Cancer Foundation'),
(13871, 'https://ror.org/011c97447', 'en', 1, 'https://ror.org/011c97447 Newton Symphony Orchestra'),
(13872, 'https://ror.org/05cyed441', 'en', 1, 'https://ror.org/05cyed441 Pacific Center for Human Growth'),
(13873, 'https://ror.org/04k4qvz84', 'en', 1, 'https://ror.org/04k4qvz84 Poly Prep Country Day School'),
(13874, 'https://ror.org/04jf0dw52', 'en', 1, 'https://ror.org/04jf0dw52 Texoma Neurology Associates'),
(13875, 'https://ror.org/05yeqft47', 'en', 1, 'https://ror.org/05yeqft47 Baton Rouge Clinic'),
(13876, 'https://ror.org/056010s74', 'no_lang_code', 1, 'https://ror.org/056010s74 Polyphor (Switzerland)'),
(13877, 'https://ror.org/04d3q1d69', 'en', 1, 'https://ror.org/04d3q1d69 Newton-Conover Health and Science High School'),
(13878, 'https://ror.org/02mczt252', 'no_lang_code', 1, 'https://ror.org/02mczt252 NexImmune (United States)'),
(13879, 'https://ror.org/00ewj2q24', 'en', 1, 'https://ror.org/00ewj2q24 NextSteps Chicago'),
(13880, 'https://ror.org/020fhwg86', 'en', 1, 'https://ror.org/020fhwg86 NextStep Fitness'),
(13881, 'https://ror.org/02j2j3d46', 'en', 1, 'https://ror.org/02j2j3d46 Pacific Crest Trail Association'),
(13882, 'https://ror.org/020ccak28', 'en', 1, 'https://ror.org/020ccak28 Port Jefferson Lions Club'),
(13883, 'https://ror.org/01szw1r19', 'no_lang_code', 1, 'https://ror.org/01szw1r19 Pacific World Discovery (United States)'),
(13884, 'https://ror.org/05fhfxg73', 'en', 1, 'https://ror.org/05fhfxg73 Portland Fruit Tree Project'),
(13885, 'https://ror.org/00xwx2b45', 'en', 1, 'https://ror.org/00xwx2b45 Pushing Boundaries'),
(13886, 'https://ror.org/04nxjmy70', 'en', 1, 'https://ror.org/04nxjmy70 Possible Health'),
(13887, 'https://ror.org/018vx9t46', 'en', 1, 'https://ror.org/018vx9t46 Mazumdar Shaw Medical Centre'),
(13888, 'https://ror.org/053xb8h09', 'en', 1, 'https://ror.org/053xb8h09 Positive Resource Center'),
(13889, 'https://ror.org/00f70np64', 'en', 1, 'https://ror.org/00f70np64 Pain and Rehabilitation Medicine'),
(13890, 'https://ror.org/01srqm736', 'en', 1, 'https://ror.org/01srqm736 Nia Association'),
(13891, 'https://ror.org/03kmbzt92', 'en', 1, 'https://ror.org/03kmbzt92 Pain Clinic of India'),
(13892, 'https://ror.org/00j37m859', 'en', 1, 'https://ror.org/00j37m859 Pain Relief and Palliative Care Society'),
(13893, 'https://ror.org/00f0ppx79', 'en', 1, 'https://ror.org/00f0ppx79 O''Brien Institute');
INSERT INTO `rors` VALUES
(13894, 'https://ror.org/04ft21254', 'en', 1, 'https://ror.org/04ft21254 Pal-O-Mine Equestrian'),
(13895, 'https://ror.org/01j5c7b20', 'en', 1, 'https://ror.org/01j5c7b20 Potomac Massage Training Institute'),
(13896, 'https://ror.org/009s7cn04', 'en', 1, 'https://ror.org/009s7cn04 Nick Simons Institute'),
(13897, 'https://ror.org/04fg4sh42', 'en', 1, 'https://ror.org/04fg4sh42 St Peter''s Hospital'),
(13898, 'https://ror.org/05y9hde07', 'en', 1, 'https://ror.org/05y9hde07 Palo Alto Center for Pulmonary Disease Prevention'),
(13899, 'https://ror.org/03e2k6s26', 'en', 1, 'https://ror.org/03e2k6s26 Nigerian Christian Hospital'),
(13900, 'https://ror.org/008e03r59', 'en', 1, 'https://ror.org/008e03r59 Palo Alto Veterans Institute for Research'),
(13901, 'https://ror.org/032tjz442', 'en', 1, 'https://ror.org/032tjz442 Oakland Symphony'),
(13902, 'https://ror.org/018t53266', 'en', 1, 'https://ror.org/018t53266 Power Paws Assistance Dogs'),
(13903, 'https://ror.org/00sf0vm37', 'en', 1, 'https://ror.org/00sf0vm37 Oakville Public Library'),
(13904, 'https://ror.org/0022pfg65', 'en', 1, 'https://ror.org/0022pfg65 Nightingales Medical Trust'),
(13905, 'https://ror.org/02x3swg45', 'no_lang_code', 1, 'https://ror.org/02x3swg45 Oasis Diagnostics (United States)'),
(13906, 'https://ror.org/01yxtmr67', 'no_lang_code', 1, 'https://ror.org/01yxtmr67 Prana Biotechnology (Australia)'),
(13907, 'https://ror.org/05a6y6d35', 'en', 1, 'https://ror.org/05a6y6d35 Prayer of Faith International Ministries'),
(13908, 'https://ror.org/0192zc472', 'en', 1, 'https://ror.org/0192zc472 Ocean Classroom'),
(13909, 'https://ror.org/00pvgrv63', 'no_lang_code', 1, 'https://ror.org/00pvgrv63 Panasonic (United States)'),
(13910, 'https://ror.org/03ft4ac91', 'en', 1, 'https://ror.org/03ft4ac91 Ochin'),
(13911, 'https://ror.org/01pvdcq70', 'no_lang_code', 1, 'https://ror.org/01pvdcq70 Precision BioSciences (United States)'),
(13912, 'https://ror.org/05qwqv243', 'en', 1, 'https://ror.org/05qwqv243 Rebuilding All Goals Efficiently'),
(13913, 'https://ror.org/04mteaa42', 'en', 1, 'https://ror.org/04mteaa42 Rebuilding Together NYC'),
(13914, 'https://ror.org/009jz9e24', 'en', 1, 'https://ror.org/009jz9e24 Pangaea Global AIDS Foundation'),
(13915, 'https://ror.org/02a7k5x58', 'en', 1, 'https://ror.org/02a7k5x58 Reconstruction of a Survivor'),
(13916, 'https://ror.org/0434xpc34', 'no_lang_code', 1, 'https://ror.org/0434xpc34 Panorama Research (United States)'),
(13917, 'https://ror.org/05s171n88', 'en', 1, 'https://ror.org/05s171n88 Premier Health Care'),
(13918, 'https://ror.org/04hjd4w57', 'en', 1, 'https://ror.org/04hjd4w57 Odyssey School'),
(13919, 'https://ror.org/04ejz3m31', 'en', 1, 'https://ror.org/04ejz3m31 Red Cloud Indian School'),
(13920, 'https://ror.org/05nsscv85', 'en', 1, 'https://ror.org/05nsscv85 Red Feather Development Group'),
(13921, 'https://ror.org/05scb3e57', 'no_lang_code', 1, 'https://ror.org/05scb3e57 Paradigm Shift Therapeutics (United States)'),
(13922, 'https://ror.org/053z7dx55', 'en', 1, 'https://ror.org/053z7dx55 Maternal Child and Family Health'),
(13923, 'https://ror.org/05d3dxa83', 'en', 1, 'https://ror.org/05d3dxa83 National Office of Samoan Affairs'),
(13924, 'https://ror.org/03t0ndf94', 'en', 1, 'https://ror.org/03t0ndf94 Paralyzed Veterans of America, Cal-Diego Chapter'),
(13925, 'https://ror.org/03frdm317', 'en', 1, 'https://ror.org/03frdm317 Paraquad'),
(13926, 'https://ror.org/019g7bh20', 'no_lang_code', 1, 'https://ror.org/019g7bh20 Paratek Pharmaceuticals (United States)'),
(13927, 'https://ror.org/0022r5p04', 'en', 1, 'https://ror.org/0022r5p04 NeuroMedical Center'),
(13928, 'https://ror.org/02ayk3803', 'en', 1, 'https://ror.org/02ayk3803 Parelli Foundation'),
(13929, 'https://ror.org/00d1wxk10', 'en', 1, 'https://ror.org/00d1wxk10 Reel Recovery'),
(13930, 'https://ror.org/04smw2r26', 'en', 1, 'https://ror.org/04smw2r26 Prescott Center for the Arts'),
(13931, 'https://ror.org/05agqdj52', 'en', 1, 'https://ror.org/05agqdj52 Touch the Future'),
(13932, 'https://ror.org/006c8zj95', 'en', 1, 'https://ror.org/006c8zj95 President''s Council of Advisors on Science and Technology'),
(13933, 'https://ror.org/025n0cr27', 'en', 1, 'https://ror.org/025n0cr27 ProMedica Russell J. Ebeid Children''s Hospital'),
(13934, 'https://ror.org/03wbacc17', 'en', 1, 'https://ror.org/03wbacc17 Pressing On'),
(13935, 'https://ror.org/00wh1kc42', 'en', 1, 'https://ror.org/00wh1kc42 Community Partners of South Florida'),
(13936, 'https://ror.org/04z6pqc94', 'no_lang_code', 1, 'https://ror.org/04z6pqc94 Prestige World Genetics Pte (Singapore)'),
(13937, 'https://ror.org/04xanzq95', 'en', 1, 'https://ror.org/04xanzq95 The Parenting Cottage'),
(13938, 'https://ror.org/03jpt8f29', 'en', 1, 'https://ror.org/03jpt8f29 Prevent Cancer Foundation'),
(13939, 'https://ror.org/0355zfr67', 'en', 1, 'https://ror.org/0355zfr67 University of North Carolina Hospitals'),
(13940, 'https://ror.org/021enqb55', 'en', 1, 'https://ror.org/021enqb55 Parents With A Purpose'),
(13941, 'https://ror.org/052ed1t23', 'en', 1, 'https://ror.org/052ed1t23 Park Avenue Synagogue'),
(13942, 'https://ror.org/03gaatb02', 'en', 1, 'https://ror.org/03gaatb02 Primary Care Coalition of Montgomery County'),
(13943, 'https://ror.org/01wt1m959', 'en', 1, 'https://ror.org/01wt1m959 Prince George''s County Health Department'),
(13944, 'https://ror.org/02f588d44', 'en', 1, 'https://ror.org/02f588d44 University of Virginia Hospital'),
(13945, 'https://ror.org/01cc8wa14', 'en', 1, 'https://ror.org/01cc8wa14 Parker Jewish Institute for Health Care and Rehabilitation'),
(13946, 'https://ror.org/020g9v513', 'en', 1, 'https://ror.org/020g9v513 Ohio Pain Initiative'),
(13947, 'https://ror.org/025c4cf84', 'en', 1, 'https://ror.org/025c4cf84 Parkland Foundation'),
(13948, 'https://ror.org/00cqg9869', 'en', 1, 'https://ror.org/00cqg9869 Region One Mental Health'),
(13949, 'https://ror.org/0067eyh19', 'en', 1, 'https://ror.org/0067eyh19 LAND studio'),
(13950, 'https://ror.org/03fqsff15', 'en', 1, 'https://ror.org/03fqsff15 Community Counseling Services'),
(13951, 'https://ror.org/014ktjg17', 'en', 1, 'https://ror.org/014ktjg17 White Plains Hospital'),
(13952, 'https://ror.org/020x9tr75', 'en', 1, 'https://ror.org/020x9tr75 Pine Belt Mental Healthcare Resources'),
(13953, 'https://ror.org/012e9j548', 'en', 1, 'https://ror.org/012e9j548 OhioHealth'),
(13954, 'https://ror.org/011azg567', 'en', 1, 'https://ror.org/011azg567 Regional Cancer Center, Thiruvananthapuram'),
(13955, 'https://ror.org/05hfrjt79', 'en', 1, 'https://ror.org/05hfrjt79 Partners Asia'),
(13956, 'https://ror.org/002q0aa23', 'en', 1, 'https://ror.org/002q0aa23 Princeton Child Development Institute'),
(13957, 'https://ror.org/02kwrph79', 'en', 1, 'https://ror.org/02kwrph79 Partners for Cancer Care and Prevention'),
(13958, 'https://ror.org/0125xqd86', 'en', 1, 'https://ror.org/0125xqd86 INTEGRIS Southwest Medical Center'),
(13959, 'https://ror.org/02ta1dj76', 'en', 1, 'https://ror.org/02ta1dj76 The Princeton Festival'),
(13960, 'https://ror.org/02trd1e52', 'en', 1, 'https://ror.org/02trd1e52 Regional Arab Network against AIDS'),
(13961, 'https://ror.org/03veb6e23', 'no_lang_code', 1, 'https://ror.org/03veb6e23 Prism Biolab Corporation (Japan)'),
(13962, 'https://ror.org/04m1cey27', 'no_lang_code', 1, 'https://ror.org/04m1cey27 Privo Technologies (United States)'),
(13963, 'https://ror.org/017gjr957', 'en', 1, 'https://ror.org/017gjr957 Pro Bono Counseling Project'),
(13964, 'https://ror.org/01sydw166', 'en', 1, 'https://ror.org/01sydw166 Oklahoma Brain Tumor Foundation'),
(13965, 'https://ror.org/03fhv6a52', 'es', 1, 'https://ror.org/03fhv6a52 Supera'),
(13966, 'https://ror.org/059yw8356', 'no_lang_code', 1, 'https://ror.org/059yw8356 ProActive Solutions (United States)'),
(13967, 'https://ror.org/04nhfy784', 'no_lang_code', 1, 'https://ror.org/04nhfy784 ProCrysta Biologix (United States)'),
(13968, 'https://ror.org/04nqwjy64', 'en', 1, 'https://ror.org/04nqwjy64 Rehabilitation Institute of Michigan'),
(13969, 'https://ror.org/03qe7zj77', 'en', 1, 'https://ror.org/03qe7zj77 Carondelet Health'),
(13970, 'https://ror.org/023qcs349', 'en', 1, 'https://ror.org/023qcs349 Rehabilitation Institute of Kansas City'),
(13971, 'https://ror.org/052r0y739', 'no_lang_code', 1, 'https://ror.org/052r0y739 Prodo Laboratories (United States)'),
(13972, 'https://ror.org/028cpyy94', 'en', 1, 'https://ror.org/028cpyy94 Fundación Mercy Care Mercy Care Foundation'),
(13973, 'https://ror.org/033tn4q36', 'en', 1, 'https://ror.org/033tn4q36 Partners for Youth with Disabilities'),
(13974, 'https://ror.org/0132g7q26', 'en', 1, 'https://ror.org/0132g7q26 Old Westbury Gardens'),
(13975, 'https://ror.org/00xwb4n23', 'en', 1, 'https://ror.org/00xwb4n23 Partners In Care'),
(13976, 'https://ror.org/00975k008', 'no_lang_code', 1, 'https://ror.org/00975k008 Dancing Wheels (United States)'),
(13977, 'https://ror.org/00pqbn444', 'en', 1, 'https://ror.org/00pqbn444 Partners in Care Foundation'),
(13978, 'https://ror.org/01avjet51', 'en', 1, 'https://ror.org/01avjet51 St. Patrick Roman Catholic Church'),
(13979, 'https://ror.org/05cvht873', 'en', 1, 'https://ror.org/05cvht873 Professional Tutors of America'),
(13980, 'https://ror.org/0536q8754', 'no_lang_code', 1, 'https://ror.org/0536q8754 Olema Pharmaceuticals (United States)'),
(13981, 'https://ror.org/02tyjnv32', 'en', 1, 'https://ror.org/02tyjnv32 Saitama Medical University Hospital 埼玉医科大学病院'),
(13982, 'https://ror.org/00qcztw05', 'en', 1, 'https://ror.org/00qcztw05 Ministry of Health of the Republic of Uzbekistan Ўзбекистон Республикаси Соғлиқни сақлаш вазирлиги'),
(13983, 'https://ror.org/05haqd335', 'en', 1, 'https://ror.org/05haqd335 Research Advocacy Network'),
(13984, 'https://ror.org/05kbqyj25', 'no_lang_code', 1, 'https://ror.org/05kbqyj25 Saladax Biomedical (United States)'),
(13985, 'https://ror.org/05tynn421', 'no_lang_code', 1, 'https://ror.org/05tynn421 Progenitor Cell Therapy (United States)'),
(13986, 'https://ror.org/01qh9gp70', 'en', 1, 'https://ror.org/01qh9gp70 Partnership for Health Analytic Research'),
(13987, 'https://ror.org/044z3jj38', 'en', 1, 'https://ror.org/044z3jj38 OMNI Institute'),
(13988, 'https://ror.org/011cheg80', 'no_lang_code', 1, 'https://ror.org/011cheg80 Omniox (United States)'),
(13989, 'https://ror.org/05b5v0n31', 'en', 1, 'https://ror.org/05b5v0n31 Salinas Valley Memorial Healthcare System'),
(13990, 'https://ror.org/03bp9pt77', 'en', 1, 'https://ror.org/03bp9pt77 Salt Lake County Parks and Recreation'),
(13991, 'https://ror.org/05m92h626', 'en', 1, 'https://ror.org/05m92h626 Partnership Schools'),
(13992, 'https://ror.org/02wvp2z28', 'en', 1, 'https://ror.org/02wvp2z28 The Salvation Army United States'),
(13993, 'https://ror.org/032rwz169', 'no_lang_code', 1, 'https://ror.org/032rwz169 Oncoceutics (United States)'),
(13994, 'https://ror.org/03983h596', 'en', 1, 'https://ror.org/03983h596 Project Angel Heart'),
(13995, 'https://ror.org/032mwt045', 'en', 1, 'https://ror.org/032mwt045 Neurology Center of Southern California'),
(13996, 'https://ror.org/01en79h04', 'en', 1, 'https://ror.org/01en79h04 Sam Schmidt Paralysis Foundation'),
(13997, 'https://ror.org/02n9p9f13', 'en', 1, 'https://ror.org/02n9p9f13 Sama Resource Group for Women and Health'),
(13998, 'https://ror.org/022f21j22', 'en', 1, 'https://ror.org/022f21j22 Mount Hagen Provincial Hospital'),
(13999, 'https://ror.org/04ct03p83', 'no_lang_code', 1, 'https://ror.org/04ct03p83 Centus'),
(14000, 'https://ror.org/05scg1q91', 'en', 1, 'https://ror.org/05scg1q91 Samaritan Health Services'),
(14001, 'https://ror.org/02dngfz86', 'en', 1, 'https://ror.org/02dngfz86 Center for Courageous Kids'),
(14002, 'https://ror.org/04yd65q24', 'en', 1, 'https://ror.org/04yd65q24 Samaritan Healthcare and Hospice'),
(14003, 'https://ror.org/03vm7rm25', 'en', 1, 'https://ror.org/03vm7rm25 Project Concern International'),
(14004, 'https://ror.org/03myq7b49', 'en', 1, 'https://ror.org/03myq7b49 Samaritan Hospital'),
(14005, 'https://ror.org/04k7cse40', 'en', 1, 'https://ror.org/04k7cse40 Project Empower'),
(14006, 'https://ror.org/008rx8a22', 'en', 1, 'https://ror.org/008rx8a22 Sampson County Schools'),
(14007, 'https://ror.org/00d73ba28', 'no_lang_code', 1, 'https://ror.org/00d73ba28 Oncomatryx (Spain)'),
(14008, 'https://ror.org/03rret387', 'en', 1, 'https://ror.org/03rret387 Project Freedom'),
(14009, 'https://ror.org/01kpm1136', 'en', 1, 'https://ror.org/01kpm1136 Research Institute for Endocrine Sciences پژوهشکده علوم غدد درون ریز و متابولیسم'),
(14010, 'https://ror.org/01dns9649', 'en', 1, 'https://ror.org/01dns9649 Project Open Hand'),
(14011, 'https://ror.org/03hjnhg65', 'no_lang_code', 1, 'https://ror.org/03hjnhg65 Open Hand'),
(14012, 'https://ror.org/02q6q6m23', 'en', 1, 'https://ror.org/02q6q6m23 San Bernardino County Department of Public Health'),
(14013, 'https://ror.org/00b8bzq64', 'no_lang_code', 1, 'https://ror.org/00b8bzq64 Oncos Therapeutics (Finland)'),
(14014, 'https://ror.org/030xyk527', 'no_lang_code', 1, 'https://ror.org/030xyk527 Oncotide Pharmaceuticals (United States)'),
(14015, 'https://ror.org/049fjxn51', 'en', 1, 'https://ror.org/049fjxn51 San Diego American Indian Health Center'),
(14016, 'https://ror.org/03ns2tc75', 'en', 1, 'https://ror.org/03ns2tc75 Quest Center for Integrative Health'),
(14017, 'https://ror.org/01ww5qq62', 'en', 1, 'https://ror.org/01ww5qq62 Pathway School'),
(14018, 'https://ror.org/01ccwxx16', 'en', 1, 'https://ror.org/01ccwxx16 San Diego Hospice and The Institute for Palliative Medicine'),
(14019, 'https://ror.org/00frxwd04', 'en', 1, 'https://ror.org/00frxwd04 Pathways Behavioral Services'),
(14020, 'https://ror.org/054zpyd97', 'en', 1, 'https://ror.org/054zpyd97 San Diego Unified School District'),
(14021, 'https://ror.org/01xrr0m34', 'no_lang_code', 1, 'https://ror.org/01xrr0m34 One River Grants (United States)'),
(14022, 'https://ror.org/03r1vfk75', 'en', 1, 'https://ror.org/03r1vfk75 San Diego Youth Services'),
(14023, 'https://ror.org/0425feb41', 'en', 1, 'https://ror.org/0425feb41 Project Walk Orlando'),
(14024, 'https://ror.org/04ead8931', 'en', 1, 'https://ror.org/04ead8931 Project Walk Paralysis Recovery Centers'),
(14025, 'https://ror.org/02td5wn81', 'en', 1, 'https://ror.org/02td5wn81 Ono Academic College הקריה האקדמית אונו'),
(14026, 'https://ror.org/03q97we10', 'en', 1, 'https://ror.org/03q97we10 SF LGBT Center'),
(14027, 'https://ror.org/052fdn272', 'en', 1, 'https://ror.org/052fdn272 San Francisco Unified School District'),
(14028, 'https://ror.org/04bgb0r98', 'en', 1, 'https://ror.org/04bgb0r98 San Joaquin County Public Health Services'),
(14029, 'https://ror.org/03mbj3p87', 'en', 1, 'https://ror.org/03mbj3p87 San Joaquin Valley Public Health Consortium'),
(14030, 'https://ror.org/04qw4yn54', 'en', 1, 'https://ror.org/04qw4yn54 Mothers’ Milk Bank'),
(14031, 'https://ror.org/04ng7mq07', 'en', 1, 'https://ror.org/04ng7mq07 Pathways'),
(14032, 'https://ror.org/04k9qym02', 'en', 1, 'https://ror.org/04k9qym02 Patient Advocate Foundation'),
(14033, 'https://ror.org/014q65q44', 'en', 1, 'https://ror.org/014q65q44 Patient-Centered Outcomes Research Institute'),
(14034, 'https://ror.org/01gxjn621', 'no_lang_code', 1, 'https://ror.org/01gxjn621 Prolong Pharmaceuticals (United States)'),
(14035, 'https://ror.org/02pkfda39', 'en', 1, 'https://ror.org/02pkfda39 Open Arms of Minnesota'),
(14036, 'https://ror.org/05r9by079', 'en', 1, 'https://ror.org/05r9by079 San Mateo County Health System'),
(14037, 'https://ror.org/01q9g5r39', 'fr', 1, 'https://ror.org/01q9g5r39 Réseau Africain pour le Développement Intégré'),
(14038, 'https://ror.org/01pcn0155', 'en', 1, 'https://ror.org/01pcn0155 Open Door Family Medical Center'),
(14039, 'https://ror.org/014b6hs81', 'no_lang_code', 1, 'https://ror.org/014b6hs81 Prometheus Research (United States)'),
(14040, 'https://ror.org/033g5xh94', 'en', 1, 'https://ror.org/033g5xh94 San Mateo County Probation'),
(14041, 'https://ror.org/0179d7111', 'en', 1, 'https://ror.org/0179d7111 Promise Project'),
(14042, 'https://ror.org/01nwrs673', 'en', 1, 'https://ror.org/01nwrs673 Reset Therapeutics'),
(14043, 'https://ror.org/02sgq5295', 'no_lang_code', 1, 'https://ror.org/02sgq5295 Pronto Diagnostics (Israel) חברת פרונטו דיאגנוסטיקה'),
(14044, 'https://ror.org/015drk921', 'en', 1, 'https://ror.org/015drk921 Patients First'),
(14045, 'https://ror.org/01y6mff13', 'en', 1, 'https://ror.org/01y6mff13 Resource Foundation'),
(14046, 'https://ror.org/032z7g248', 'en', 1, 'https://ror.org/032z7g248 Resources for Children with Special Needs'),
(14047, 'https://ror.org/004m17078', 'en', 1, 'https://ror.org/004m17078 Resources for Independence Central Valley'),
(14048, 'https://ror.org/02b9qqz94', 'en', 1, 'https://ror.org/02b9qqz94 Prosperity Gardens'),
(14049, 'https://ror.org/03a9cx059', 'en', 1, 'https://ror.org/03a9cx059 Restorative Justice Centre'),
(14050, 'https://ror.org/03th4vw55', 'en', 1, 'https://ror.org/03th4vw55 Operation Samahan'),
(14051, 'https://ror.org/047rbbf58', 'en', 1, 'https://ror.org/047rbbf58 Restorix Foundation'),
(14052, 'https://ror.org/0324fk698', 'no_lang_code', 1, 'https://ror.org/0324fk698 Open Window Productions (United States)'),
(14053, 'https://ror.org/00gf55f61', 'no_lang_code', 1, 'https://ror.org/00gf55f61 Opexa Therapeutics (United States)'),
(14054, 'https://ror.org/0593q3t13', 'en', 1, 'https://ror.org/0593q3t13 Prostate Cancer Prevention Foundation'),
(14055, 'https://ror.org/04nzdnk52', 'en', 1, 'https://ror.org/04nzdnk52 Restorix Health'),
(14056, 'https://ror.org/015mn5k65', 'en', 1, 'https://ror.org/015mn5k65 San Mateo Medical Center'),
(14057, 'https://ror.org/03y7gah37', 'no_lang_code', 1, 'https://ror.org/03y7gah37 Prothelia (United States)'),
(14058, 'https://ror.org/0315xr544', 'no_lang_code', 1, 'https://ror.org/0315xr544 ReveraGen BioPharma (United States)'),
(14059, 'https://ror.org/00jkncn63', 'en', 1, 'https://ror.org/00jkncn63 Beijing Sanbo Brain Hospital 北京三博脑科医院'),
(14060, 'https://ror.org/018b8fj92', 'no_lang_code', 1, 'https://ror.org/018b8fj92 Protigen (United States)'),
(14061, 'https://ror.org/04mzgaa85', 'no_lang_code', 1, 'https://ror.org/04mzgaa85 PCAsso Diagnostics (United States)'),
(14062, 'https://ror.org/04n2fyr96', 'en', 1, 'https://ror.org/04n2fyr96 Presence Saint Joseph Hospital'),
(14063, 'https://ror.org/03wkdj490', 'no_lang_code', 1, 'https://ror.org/03wkdj490 RGenix (United States)'),
(14064, 'https://ror.org/0429rc964', 'en', 1, 'https://ror.org/0429rc964 Shoshone-Bannock Tribes'),
(14065, 'https://ror.org/01bts4z81', 'no_lang_code', 1, 'https://ror.org/01bts4z81 Rhenovia (France)'),
(14066, 'https://ror.org/03z0rr544', 'en', 1, 'https://ror.org/03z0rr544 Sanford Health Foundation'),
(14067, 'https://ror.org/00t310794', 'en', 1, 'https://ror.org/00t310794 ShowMe Aquatics & Fitness'),
(14068, 'https://ror.org/00sfn8y78', 'en', 1, 'https://ror.org/00sfn8y78 Sanford Research'),
(14069, 'https://ror.org/02npzsh43', 'en', 1, 'https://ror.org/02npzsh43 Providence Health Foundation'),
(14070, 'https://ror.org/05s52c121', 'en', 1, 'https://ror.org/05s52c121 Santa Clara County Behavioral Health Services'),
(14071, 'https://ror.org/03grwn392', 'en', 1, 'https://ror.org/03grwn392 Santa Clara County Probation Department'),
(14072, 'https://ror.org/030qje202', 'en', 1, 'https://ror.org/030qje202 Peace Winds America'),
(14073, 'https://ror.org/01450df76', 'en', 1, 'https://ror.org/01450df76 Hospitales Shriners para Niños Shriners Hospitals for Children - Mexico'),
(14074, 'https://ror.org/01jc57498', 'en', 1, 'https://ror.org/01jc57498 Retina Associates'),
(14075, 'https://ror.org/004jkmn11', 'en', 1, 'https://ror.org/004jkmn11 Rhino Ark United States of America'),
(14076, 'https://ror.org/03nmmp510', 'no_lang_code', 1, 'https://ror.org/03nmmp510 Saoirse (United States)'),
(14077, 'https://ror.org/01h3r2827', 'en', 1, 'https://ror.org/01h3r2827 Rhode Island Health Center Association'),
(14078, 'https://ror.org/04wzsj946', 'en', 1, 'https://ror.org/04wzsj946 Pediatric Brain Tumor Consortium Foundation'),
(14079, 'https://ror.org/04zzepa29', 'en', 1, 'https://ror.org/04zzepa29 Shriners Hospitals for Children - Salt Lake City'),
(14080, 'https://ror.org/03vqqr080', 'no_lang_code', 1, 'https://ror.org/03vqqr080 Sapna NYC'),
(14081, 'https://ror.org/00z9sw951', 'en', 1, 'https://ror.org/00z9sw951 Shriners Hospitals for Children - Shreveport'),
(14082, 'https://ror.org/03epk7q46', 'en', 1, 'https://ror.org/03epk7q46 Storrs Library'),
(14083, 'https://ror.org/02ejjtg26', 'en', 1, 'https://ror.org/02ejjtg26 Pediatric Oncology Support Team'),
(14084, 'https://ror.org/03xyjk354', 'en', 1, 'https://ror.org/03xyjk354 Peer Assistance Services'),
(14085, 'https://ror.org/0472rwr52', 'en', 1, 'https://ror.org/0472rwr52 Cancer Navigator'),
(14086, 'https://ror.org/047cyjw83', 'en', 1, 'https://ror.org/047cyjw83 Pender County Schools'),
(14087, 'https://ror.org/00w824191', 'en', 1, 'https://ror.org/00w824191 Shriners Hospitals for Children - Springfield'),
(14088, 'https://ror.org/00bbtmy92', 'en', 1, 'https://ror.org/00bbtmy92 Penfold Patterson Research Institute'),
(14089, 'https://ror.org/02qvjf193', 'en', 1, 'https://ror.org/02qvjf193 Shriners Hospitals for Children - Twin Cities'),
(14090, 'https://ror.org/045t28w66', 'en', 1, 'https://ror.org/045t28w66 Pennsylvania Academy of Family Physicians and Foundation'),
(14091, 'https://ror.org/056jn9s46', 'en', 1, 'https://ror.org/056jn9s46 Sibley Memorial Hospital'),
(14092, 'https://ror.org/01z5ce602', 'en', 1, 'https://ror.org/01z5ce602 Penrose-St. Francis Health Services'),
(14093, 'https://ror.org/00fyp5993', 'en', 1, 'https://ror.org/00fyp5993 Essential Partners'),
(14094, 'https://ror.org/04h1txa22', 'en', 1, 'https://ror.org/04h1txa22 Pentacle'),
(14095, 'https://ror.org/00dpx2d03', 'en', 1, 'https://ror.org/00dpx2d03 Sarasota Memorial Health Care System'),
(14096, 'https://ror.org/02706zn47', 'en', 1, 'https://ror.org/02706zn47 Public Health Dayton & Montgomery County'),
(14097, 'https://ror.org/0132f0t75', 'en', 1, 'https://ror.org/0132f0t75 Sarem Cell Research Center'),
(14098, 'https://ror.org/04366aw25', 'en', 1, 'https://ror.org/04366aw25 People for Parks'),
(14099, 'https://ror.org/02cwppe53', 'no_lang_code', 1, 'https://ror.org/02cwppe53 Savara Pharmaceuticals (United States)'),
(14100, 'https://ror.org/01mwzyk87', 'en', 1, 'https://ror.org/01mwzyk87 People Living Through Cancer'),
(14101, 'https://ror.org/052r5gz16', 'en', 1, 'https://ror.org/052r5gz16 People''s Clinic of Morehead'),
(14102, 'https://ror.org/0231yda83', 'en', 1, 'https://ror.org/0231yda83 Save Ourselves Breast Cancer Organization'),
(14103, 'https://ror.org/00en6p903', 'en', 1, 'https://ror.org/00en6p903 Jackson Health System'),
(14104, 'https://ror.org/04dzh1r95', 'en', 1, 'https://ror.org/04dzh1r95 Public School Forum of North Carolina'),
(14105, 'https://ror.org/03gtrve45', 'en', 1, 'https://ror.org/03gtrve45 Society for the Investigation of Early Pregnancy'),
(14106, 'https://ror.org/05tf37670', 'en', 1, 'https://ror.org/05tf37670 The Public Theater'),
(14107, 'https://ror.org/042w3r845', 'en', 1, 'https://ror.org/042w3r845 Scarsdale Public Schools'),
(14108, 'https://ror.org/00tprjh98', 'en', 1, 'https://ror.org/00tprjh98 Scheer Memorial Adventist Hospital शीर मेमोरियल अस्पताल बनेपा'),
(14109, 'https://ror.org/03yf4bd98', 'en', 1, 'https://ror.org/03yf4bd98 Sierra Institute for Community and Environment'),
(14110, 'https://ror.org/04g42c417', 'en', 1, 'https://ror.org/04g42c417 Perinatal Treatment Services'),
(14111, 'https://ror.org/02gbcwx62', 'no_lang_code', 1, 'https://ror.org/02gbcwx62 Pulmatrix (United States)'),
(14112, 'https://ror.org/01yvmqs58', 'en', 1, 'https://ror.org/01yvmqs58 The Schiele Museum of Natural History'),
(14113, 'https://ror.org/02yyaze44', 'no_lang_code', 1, 'https://ror.org/02yyaze44 Perle Bioscience (United States)'),
(14114, 'https://ror.org/02yxgbz14', 'no_lang_code', 1, 'https://ror.org/02yxgbz14 Perscitus Biosciences (United States)'),
(14115, 'https://ror.org/01ktvk109', 'en', 1, 'https://ror.org/01ktvk109 Peru Public Library'),
(14116, 'https://ror.org/043e96c15', 'en', 1, 'https://ror.org/043e96c15 Push to Walk'),
(14117, 'https://ror.org/014d2cv50', 'en', 1, 'https://ror.org/014d2cv50 Research Institute for Social and Health Improvement Foundation ಋಷಿ ಫೌಂಡೇಶನ್'),
(14118, 'https://ror.org/04419vp62', 'en', 1, 'https://ror.org/04419vp62 Putnam County HomeCare & Hospice Auxiliary'),
(14119, 'https://ror.org/00hx26749', 'no_lang_code', 1, 'https://ror.org/00hx26749 Q Therapeutics (United States)'),
(14120, 'https://ror.org/03pja1237', 'en', 1, 'https://ror.org/03pja1237 Yuba City Unified School District'),
(14121, 'https://ror.org/03nzb9h73', 'no_lang_code', 1, 'https://ror.org/03nzb9h73 Riverkeeper'),
(14122, 'https://ror.org/04k2gbm60', 'en', 1, 'https://ror.org/04k2gbm60 Riverkids Pediatric Home Health'),
(14123, 'https://ror.org/04wv9b696', 'no_lang_code', 1, 'https://ror.org/04wv9b696 PetsDx Veterinary Imaging (United States)'),
(14124, 'https://ror.org/04zg0fn89', 'en', 1, 'https://ror.org/04zg0fn89 Sierra Nevada Memorial Hospital Foundation'),
(14125, 'https://ror.org/031m09z27', 'en', 1, 'https://ror.org/031m09z27 Riverside Unified School District'),
(14126, 'https://ror.org/01sm75b57', 'en', 1, 'https://ror.org/01sm75b57 Schwab Rehabilitation Hospital'),
(14127, 'https://ror.org/02nxb9495', 'en', 1, 'https://ror.org/02nxb9495 Riverside San Bernardino County Indian Health'),
(14128, 'https://ror.org/01qv13213', 'en', 1, 'https://ror.org/01qv13213 World Science Festival'),
(14129, 'https://ror.org/01c7at224', 'en', 1, 'https://ror.org/01c7at224 Riverstone Senior Life Services'),
(14130, 'https://ror.org/03gpg5f33', 'no_lang_code', 1, 'https://ror.org/03gpg5f33 RJS Biologics (United States)'),
(14131, 'https://ror.org/01e0aj966', 'no_lang_code', 1, 'https://ror.org/01e0aj966 QRx Pharma (United States)'),
(14132, 'https://ror.org/042r22f45', 'en', 1, 'https://ror.org/042r22f45 Quadriplegics United Against Dependency'),
(14133, 'https://ror.org/03zdah694', 'no_lang_code', 1, 'https://ror.org/03zdah694 Qualiber (United States)'),
(14134, 'https://ror.org/029pa0p32', 'en', 1, 'https://ror.org/029pa0p32 Sierra Streams Institute'),
(14135, 'https://ror.org/01n5pkr65', 'no_lang_code', 1, 'https://ror.org/01n5pkr65 Qualidigm (United States)'),
(14136, 'https://ror.org/03apr9j04', 'en', 1, 'https://ror.org/03apr9j04 Signature Research Institute'),
(14137, 'https://ror.org/022syee28', 'en', 1, 'https://ror.org/022syee28 Ministry of Health of the Republic of Kazakhstan Қазақстан Республикасының Денсаулық сақтау министрлігі'),
(14138, 'https://ror.org/036x58c57', 'no_lang_code', 1, 'https://ror.org/036x58c57 PharmatrophiX (United States)'),
(14139, 'https://ror.org/00zt7j992', 'en', 1, 'https://ror.org/00zt7j992 Quality Living'),
(14140, 'https://ror.org/05vytj560', 'en', 1, 'https://ror.org/05vytj560 Scioto County Juvenile Court'),
(14141, 'https://ror.org/05rczw006', 'en', 1, 'https://ror.org/05rczw006 Scotland County Schools'),
(14142, 'https://ror.org/01n3jtg54', 'en', 1, 'https://ror.org/01n3jtg54 Silicon Valley Independent Living Center'),
(14143, 'https://ror.org/05h8v3e12', 'en', 1, 'https://ror.org/05h8v3e12 Scotland Memorial Hospital'),
(14144, 'https://ror.org/00gdzr170', 'en', 1, 'https://ror.org/00gdzr170 Baylor Scott & White - Central Texas Foundation'),
(14145, 'https://ror.org/01dy8dt32', 'no_lang_code', 1, 'https://ror.org/01dy8dt32 Quantason (United States)'),
(14146, 'https://ror.org/02wh1sf51', 'en', 1, 'https://ror.org/02wh1sf51 Roanoke Rapids Graded School District'),
(14147, 'https://ror.org/01bx41534', 'no_lang_code', 1, 'https://ror.org/01bx41534 Quantum Applied Science and Research (United States)'),
(14148, 'https://ror.org/033z0vf69', 'en', 1, 'https://ror.org/033z0vf69 Roanoke River Valley Education Consortium'),
(14149, 'https://ror.org/054xyc945', 'no_lang_code', 1, 'https://ror.org/054xyc945 Pharmaxis (Australia)'),
(14150, 'https://ror.org/019504w35', 'en', 1, 'https://ror.org/019504w35 Quantum Leap Healthcare Collaborative'),
(14151, 'https://ror.org/01typar55', 'en', 1, 'https://ror.org/01typar55 Screen'),
(14152, 'https://ror.org/03wbjgx32', 'en', 1, 'https://ror.org/03wbjgx32 Robert Louis Stevenson School'),
(14153, 'https://ror.org/035v7sk27', 'no_lang_code', 1, 'https://ror.org/035v7sk27 Pharminox (United Kingdom)'),
(14154, 'https://ror.org/00wqkgs27', 'en', 1, 'https://ror.org/00wqkgs27 Phelan-McDermid Syndrome Foundation'),
(14155, 'https://ror.org/03drnt809', 'no_lang_code', 1, 'https://ror.org/03drnt809 Scynexis (United States)'),
(14156, 'https://ror.org/050cc0966', 'en', 1, 'https://ror.org/050cc0966 Sanford Children''s Specialty Clinic'),
(14157, 'https://ror.org/015gv1k37', 'en', 1, 'https://ror.org/015gv1k37 Post Acute Partners'),
(14158, 'https://ror.org/030x0x547', 'no_lang_code', 1, 'https://ror.org/030x0x547 Sea Lane Biotechnologies (United States)'),
(14159, 'https://ror.org/04gz57z30', 'en', 1, 'https://ror.org/04gz57z30 Seabrook'),
(14160, 'https://ror.org/0239hhd94', 'en', 1, 'https://ror.org/0239hhd94 Quatela Center for Plastic Surgery'),
(14161, 'https://ror.org/05b8tgb13', 'en', 1, 'https://ror.org/05b8tgb13 Robin Hood Foundation'),
(14162, 'https://ror.org/00d08ne02', 'en', 1, 'https://ror.org/00d08ne02 Good Shepherd Penn Partners'),
(14163, 'https://ror.org/05jm4z849', 'en', 1, 'https://ror.org/05jm4z849 Pacific Breast Pathology'),
(14164, 'https://ror.org/02e7m0v19', 'en', 1, 'https://ror.org/02e7m0v19 Roc Institute for Arts and Sciences'),
(14165, 'https://ror.org/03jq88n71', 'en', 1, 'https://ror.org/03jq88n71 Seattle Cancer Care Alliance'),
(14166, 'https://ror.org/03k3w2a28', 'en', 1, 'https://ror.org/03k3w2a28 Philip Rogers Elementary School'),
(14167, 'https://ror.org/050rdvn58', 'en', 1, 'https://ror.org/050rdvn58 Philippine Heart Center'),
(14168, 'https://ror.org/02krpaf84', 'en', 1, 'https://ror.org/02krpaf84 Second Harvest Food Bank'),
(14169, 'https://ror.org/03wqd2h57', 'en', 1, 'https://ror.org/03wqd2h57 Phillips Graduate Institute'),
(14170, 'https://ror.org/034546p91', 'en', 1, 'https://ror.org/034546p91 Rochester City School District'),
(14171, 'https://ror.org/02dhj0p43', 'en', 1, 'https://ror.org/02dhj0p43 Sinha Institute of Medical Science & Technology'),
(14172, 'https://ror.org/04axpdp25', 'no_lang_code', 1, 'https://ror.org/04axpdp25 Sefacor (United States)'),
(14173, 'https://ror.org/03g0jst60', 'no_lang_code', 1, 'https://ror.org/03g0jst60 Selecta Biosciences (United States)'),
(14174, 'https://ror.org/02nmc8040', 'en', 1, 'https://ror.org/02nmc8040 Rochester Rehabilitation Center'),
(14175, 'https://ror.org/034czvt81', 'en', 1, 'https://ror.org/034czvt81 Rockefeller Philanthropy Advisors'),
(14176, 'https://ror.org/045q3sv53', 'no_lang_code', 1, 'https://ror.org/045q3sv53 Seneb BioSciences (United States)'),
(14177, 'https://ror.org/036pnqr73', 'en', 1, 'https://ror.org/036pnqr73 Sinnissippi Centers'),
(14178, 'https://ror.org/02d21rw53', 'en', 1, 'https://ror.org/02d21rw53 Rockingham County Schools'),
(14179, 'https://ror.org/05g4knm43', 'en', 1, 'https://ror.org/05g4knm43 Phoenix Indian Medical Center'),
(14180, 'https://ror.org/04tgdfs98', 'en', 1, 'https://ror.org/04tgdfs98 Sense of Security'),
(14181, 'https://ror.org/00ptywt76', 'en', 1, 'https://ror.org/00ptywt76 Queer African Youth Networking Center'),
(14182, 'https://ror.org/05n6ehk94', 'no_lang_code', 1, 'https://ror.org/05n6ehk94 SipNose (Israel)'),
(14183, 'https://ror.org/0591r7s41', 'en', 1, 'https://ror.org/0591r7s41 Sensory Processing Disorder Foundation'),
(14184, 'https://ror.org/02fnbv092', 'en', 1, 'https://ror.org/02fnbv092 Quest for Life Foundation'),
(14185, 'https://ror.org/05ja6kg22', 'en', 1, 'https://ror.org/05ja6kg22 Quietmind Foundation'),
(14186, 'https://ror.org/00j6whn75', 'en', 1, 'https://ror.org/00j6whn75 Rocky Boy Health Board'),
(14187, 'https://ror.org/04t059p48', 'en', 1, 'https://ror.org/04t059p48 Quinn Community Outreach Corporation'),
(14188, 'https://ror.org/02bm7dx75', 'en', 1, 'https://ror.org/02bm7dx75 SeriousFun Children''s Network'),
(14189, 'https://ror.org/001a4h086', 'no_lang_code', 1, 'https://ror.org/001a4h086 Serpin Pharma (United States)'),
(14190, 'https://ror.org/05ye51q48', 'no_lang_code', 1, 'https://ror.org/05ye51q48 Phylogeny (United States)'),
(14191, 'https://ror.org/03fkh3x71', 'en', 1, 'https://ror.org/03fkh3x71 Roger C. Peace Rehabilitation Hospital'),
(14192, 'https://ror.org/01qbkdg81', 'en', 1, 'https://ror.org/01qbkdg81 Rogerson Communities'),
(14193, 'https://ror.org/00n8yh935', 'en', 1, 'https://ror.org/00n8yh935 Serve Outdoors Texas Hill Country Chapter'),
(14194, 'https://ror.org/05x2sc041', 'en', 1, 'https://ror.org/05x2sc041 Project Walk-Austin'),
(14195, 'https://ror.org/02y220324', 'en', 1, 'https://ror.org/02y220324 Setauket Fire Department'),
(14196, 'https://ror.org/01053yy22', 'en', 1, 'https://ror.org/01053yy22 Seven Generations Ahead'),
(14197, 'https://ror.org/04aemx979', 'en', 1, 'https://ror.org/04aemx979 Roots Community Health Center'),
(14198, 'https://ror.org/003rxtd24', 'en', 1, 'https://ror.org/003rxtd24 Ronald McDonald House Charities'),
(14199, 'https://ror.org/027hwee24', 'en', 1, 'https://ror.org/027hwee24 Seward County Community College'),
(14200, 'https://ror.org/02v0zfv65', 'en', 1, 'https://ror.org/02v0zfv65 Sixteenth Street Community Health Center'),
(14201, 'https://ror.org/02ff7k505', 'en', 1, 'https://ror.org/02ff7k505 R.E. Kavetsky Institute of Experimental Pathology, Oncology and Radiobiology Інститут експериментальної патології, онкології і радіобіології ім. Р.Є. Кавецького'),
(14202, 'https://ror.org/02pyj0w80', 'en', 1, 'https://ror.org/02pyj0w80 Room to Read'),
(14203, 'https://ror.org/031twcj28', 'en', 1, 'https://ror.org/031twcj28 Providence Pediatric Pulmonology & Cystic Fibrosis'),
(14204, 'https://ror.org/0452enn61', 'no_lang_code', 1, 'https://ror.org/0452enn61 Sri Ganapathi Sachchidananda Vagdevi Center'),
(14205, 'https://ror.org/030wwwa97', 'en', 1, 'https://ror.org/030wwwa97 Sail To Prevail'),
(14206, 'https://ror.org/03xsa3q34', 'en', 1, 'https://ror.org/03xsa3q34 Roper St. Francis Foundation'),
(14207, 'https://ror.org/0124zm423', 'en', 1, 'https://ror.org/0124zm423 Piers Park Sailing Center'),
(14208, 'https://ror.org/03kvbr153', 'en', 1, 'https://ror.org/03kvbr153 UF Health Shands Hospital'),
(14209, 'https://ror.org/039479p46', 'en', 1, 'https://ror.org/039479p46 Roper St. Francis Healthcare'),
(14210, 'https://ror.org/058ze9c42', 'en', 1, 'https://ror.org/058ze9c42 RadioIsotope Therapy of America Foundation'),
(14211, 'https://ror.org/049wsgv73', 'en', 1, 'https://ror.org/049wsgv73 UF Health Shands Rehab Hospital'),
(14212, 'https://ror.org/0338fxs55', 'en', 1, 'https://ror.org/0338fxs55 Skin Cancer Foundation'),
(14213, 'https://ror.org/034kfx415', 'en', 1, 'https://ror.org/034kfx415 Sky Tavern Junior Ski Program'),
(14214, 'https://ror.org/033spbm30', 'en', 1, 'https://ror.org/033spbm30 St. Joseph’s Candler Hospital'),
(14215, 'https://ror.org/04w00xm72', 'en', 1, 'https://ror.org/04w00xm72 Shanghai Municipal Center For Disease Control Prevention 上海市疾病预防控制中心'),
(14216, 'https://ror.org/00eq3r432', 'en', 1, 'https://ror.org/00eq3r432 Skyland Care Center'),
(14217, 'https://ror.org/029gpgj23', 'en', 1, 'https://ror.org/029gpgj23 Radiology Associates'),
(14218, 'https://ror.org/04wn64r03', 'en', 1, 'https://ror.org/04wn64r03 Slavic Assistance Center'),
(14219, 'https://ror.org/0520p3z27', 'en', 1, 'https://ror.org/0520p3z27 Rainbow Hospice and Palliative Care'),
(14220, 'https://ror.org/053q7dc62', 'en', 1, 'https://ror.org/053q7dc62 Shanta Foundation'),
(14221, 'https://ror.org/00mh8gk95', 'en', 1, 'https://ror.org/00mh8gk95 Shanti Project'),
(14222, 'https://ror.org/0314qpx15', 'en', 1, 'https://ror.org/0314qpx15 Share and Care Foundation'),
(14223, 'https://ror.org/05cvd4x54', 'en', 1, 'https://ror.org/05cvd4x54 SHARE'),
(14224, 'https://ror.org/04eqdqx09', 'no_lang_code', 1, 'https://ror.org/04eqdqx09 Smart Monitor (United States)'),
(14225, 'https://ror.org/037p72q74', 'en', 1, 'https://ror.org/037p72q74 Raise Hope Foundation'),
(14226, 'https://ror.org/05ba2cw74', 'en', 1, 'https://ror.org/05ba2cw74 Shared Adventures'),
(14227, 'https://ror.org/026a5wm88', 'en', 1, 'https://ror.org/026a5wm88 Public Schools of Robeson County'),
(14228, 'https://ror.org/02bbana41', 'en', 1, 'https://ror.org/02bbana41 Sharp HealthCare Foundation'),
(14229, 'https://ror.org/04k49td77', 'en', 1, 'https://ror.org/04k49td77 Shaw Regional Cancer Center'),
(14230, 'https://ror.org/0095r2297', 'en', 1, 'https://ror.org/0095r2297 Shawnee State University'),
(14231, 'https://ror.org/059eesf83', 'en', 1, 'https://ror.org/059eesf83 St. Laurent Institute'),
(14232, 'https://ror.org/03693et41', 'en', 1, 'https://ror.org/03693et41 Sheridan Technical College'),
(14233, 'https://ror.org/03gt1hw33', 'en', 1, 'https://ror.org/03gt1hw33 St. Mary’s Healthcare System for Children'),
(14234, 'https://ror.org/01bqy5z80', 'no_lang_code', 1, 'https://ror.org/01bqy5z80 Sorrento Therapeutics (United States)'),
(14235, 'https://ror.org/00x94td80', 'en', 1, 'https://ror.org/00x94td80 Smile Train'),
(14236, 'https://ror.org/02gncxw24', 'en', 1, 'https://ror.org/02gncxw24 Smith Center for Healing and the Arts'),
(14237, 'https://ror.org/027fvmc90', 'no_lang_code', 1, 'https://ror.org/027fvmc90 Rubicon Biotechnology (United States)'),
(14238, 'https://ror.org/04y80fq57', 'en', 1, 'https://ror.org/04y80fq57 St. Margaret Mary School'),
(14239, 'https://ror.org/058936h36', 'en', 1, 'https://ror.org/058936h36 SHIELDS for Families'),
(14240, 'https://ror.org/028xv5p07', 'en', 1, 'https://ror.org/028xv5p07 Raising Voices'),
(14241, 'https://ror.org/018pbhh11', 'en', 1, 'https://ror.org/018pbhh11 Rubin Museum of Art'),
(14242, 'https://ror.org/01s50yf06', 'en', 1, 'https://ror.org/01s50yf06 Society for Biomedical Diabetes Research'),
(14243, 'https://ror.org/02wgwxy44', 'en', 1, 'https://ror.org/02wgwxy44 Rajiv Poor People Welfare Society'),
(14244, 'https://ror.org/01tzmg414', 'en', 1, 'https://ror.org/01tzmg414 Society for Mucosal Immunology'),
(14245, 'https://ror.org/02ke8g602', 'en', 1, 'https://ror.org/02ke8g602 Ralph Lauren Center for Cancer Care and Prevention'),
(14246, 'https://ror.org/009dxxa13', 'no_lang_code', 1, 'https://ror.org/009dxxa13 RaNA Therapeutics (United States)'),
(14247, 'https://ror.org/04pkfgh33', 'no_lang_code', 1, 'https://ror.org/04pkfgh33 Tecnicas Cientificas Para Laboratorio (Spain)'),
(14248, 'https://ror.org/0114vcr39', 'no_lang_code', 1, 'https://ror.org/0114vcr39 Rancho BioSciences (United States)'),
(14249, 'https://ror.org/04q0te651', 'en', 1, 'https://ror.org/04q0te651 Society for Research on Nicotine and Tobacco'),
(14250, 'https://ror.org/00qvvtk35', 'en', 1, 'https://ror.org/00qvvtk35 St. Mary’s Health Care System'),
(14251, 'https://ror.org/05gxt5b76', 'en', 1, 'https://ror.org/05gxt5b76 Telluride Adaptive Sports Program'),
(14252, 'https://ror.org/04gafx689', 'en', 1, 'https://ror.org/04gafx689 Society for the Preservation of Long Island Antiquities'),
(14253, 'https://ror.org/04s7a0g31', 'en', 1, 'https://ror.org/04s7a0g31 Rancho Research Institute'),
(14254, 'https://ror.org/03277sm65', 'en', 1, 'https://ror.org/03277sm65 Society of Surgical Oncology'),
(14255, 'https://ror.org/05vdt4g65', 'no_lang_code', 1, 'https://ror.org/05vdt4g65 TeloVISION (United States)'),
(14256, 'https://ror.org/038s1ax16', 'en', 1, 'https://ror.org/038s1ax16 Temple College'),
(14257, 'https://ror.org/02ztc9f43', 'no_lang_code', 1, 'https://ror.org/02ztc9f43 Rare Disease Therapeutics (United States)'),
(14258, 'https://ror.org/058skdy22', 'en', 1, 'https://ror.org/058skdy22 Saint Paul’s Hospital Iloilo'),
(14259, 'https://ror.org/04zp3vy09', 'en', 1, 'https://ror.org/04zp3vy09 Temple Missionary Baptist Church'),
(14260, 'https://ror.org/05kre7h31', 'en', 1, 'https://ror.org/05kre7h31 St. Vincent''s HealthCare'),
(14261, 'https://ror.org/00yv40k20', 'no_lang_code', 1, 'https://ror.org/00yv40k20 Rare Partners (Italy)'),
(14262, 'https://ror.org/045wp1309', 'en', 1, 'https://ror.org/045wp1309 St. Vincent Hospital'),
(14263, 'https://ror.org/002zrf773', 'no_lang_code', 1, 'https://ror.org/002zrf773 Qualcomm (United States)'),
(14264, 'https://ror.org/05262hj55', 'en', 1, 'https://ror.org/05262hj55 RCAP Solutions'),
(14265, 'https://ror.org/03qw7se63', 'en', 1, 'https://ror.org/03qw7se63 Soledad Community Health Care District Foundation'),
(14266, 'https://ror.org/05fwz3716', 'en', 1, 'https://ror.org/05fwz3716 Soldiers'' Angels'),
(14267, 'https://ror.org/02tr0ps12', 'en', 1, 'https://ror.org/02tr0ps12 CHI St. Vincent'),
(14268, 'https://ror.org/02k0pxf68', 'en', 1, 'https://ror.org/02k0pxf68 Sacramento Asian Pacific Chamber of Commerce'),
(14269, 'https://ror.org/002wydw38', 'en', 1, 'https://ror.org/002wydw38 St. Luke''s International Hospital 聖路加国際病院'),
(14270, 'https://ror.org/01y9q0786', 'en', 1, 'https://ror.org/01y9q0786 Sacramento City Unified School District'),
(14271, 'https://ror.org/01wt37816', 'en', 1, 'https://ror.org/01wt37816 Foundation for Children with Cancer'),
(14272, 'https://ror.org/03akswg93', 'en', 1, 'https://ror.org/03akswg93 Safe Horizon'),
(14273, 'https://ror.org/013jm0v29', 'en', 1, 'https://ror.org/013jm0v29 Solutions of Artificial Intelligence Applications'),
(14274, 'https://ror.org/02xnhzs58', 'en', 1, 'https://ror.org/02xnhzs58 Solving Kids'' Cancer'),
(14275, 'https://ror.org/01q219r58', 'en', 1, 'https://ror.org/01q219r58 Tennessee Justice Center'),
(14276, 'https://ror.org/00dt2yt23', 'en', 1, 'https://ror.org/00dt2yt23 Reading Partners'),
(14277, 'https://ror.org/02mt4ht57', 'en', 1, 'https://ror.org/02mt4ht57 Saga Women''s Junior College 佐賀女子短期大学'),
(14278, 'https://ror.org/05rdxva62', 'no_lang_code', 1, 'https://ror.org/05rdxva62 Terapio (United States)'),
(14279, 'https://ror.org/002eajg41', 'no_lang_code', 1, 'https://ror.org/002eajg41 Real Time Tomography (United States)'),
(14280, 'https://ror.org/00zk5d448', 'en', 1, 'https://ror.org/00zk5d448 Testaverde Fund for Spinal Cord Injury'),
(14281, 'https://ror.org/01kah5w88', 'en', 1, 'https://ror.org/01kah5w88 Realistic Education in Action Coalition to Foster Health'),
(14282, 'https://ror.org/02ydpvv49', 'en', 1, 'https://ror.org/02ydpvv49 Flint and Saginaw Odyssey House'),
(14283, 'https://ror.org/03ms86h56', 'en', 1, 'https://ror.org/03ms86h56 Tetra Society of North America'),
(14284, 'https://ror.org/00a8x0890', 'no_lang_code', 1, 'https://ror.org/00a8x0890 TetraLogic Pharmaceuticals (United States)'),
(14285, 'https://ror.org/04sp71t37', 'en', 1, 'https://ror.org/04sp71t37 Texans Care for Children'),
(14286, 'https://ror.org/033ns4d21', 'en', 1, 'https://ror.org/033ns4d21 Stairstep Foundation'),
(14287, 'https://ror.org/04d87y574', 'en', 1, 'https://ror.org/04d87y574 Sydney Children’s Hospitals Network'),
(14288, 'https://ror.org/05fzt6j85', 'en', 1, 'https://ror.org/05fzt6j85 Saint Anne''s Hospital'),
(14289, 'https://ror.org/01yf9rd65', 'en', 1, 'https://ror.org/01yf9rd65 Texas Health and Human Services Commission'),
(14290, 'https://ror.org/055zm4v44', 'en', 1, 'https://ror.org/055zm4v44 La Fondation Stan Cassidy Stan Cassidy Foundation'),
(14291, 'https://ror.org/05g5ny036', 'en', 1, 'https://ror.org/05g5ny036 Sonke Gender Justice'),
(14292, 'https://ror.org/01jr3js48', 'en', 1, 'https://ror.org/01jr3js48 Texas Partnership for End-of-Life Care'),
(14293, 'https://ror.org/03s1f5p42', 'en', 1, 'https://ror.org/03s1f5p42 Thohoyandou Victim Empowerment Programme'),
(14294, 'https://ror.org/01kkwkn88', 'en', 1, 'https://ror.org/01kkwkn88 Thai Health And Information Services'),
(14295, 'https://ror.org/03n027779', 'en', 1, 'https://ror.org/03n027779 Thyroid Head and Neck Cancer Foundation'),
(14296, 'https://ror.org/01dmpb598', 'en', 1, 'https://ror.org/01dmpb598 Entertainment Industry Foundation'),
(14297, 'https://ror.org/01c1b9s34', 'en', 1, 'https://ror.org/01c1b9s34 ABCD'),
(14298, 'https://ror.org/01vcdak53', 'en', 1, 'https://ror.org/01vcdak53 Ability Center of Greater Toledo'),
(14299, 'https://ror.org/000akah41', 'en', 1, 'https://ror.org/000akah41 Sound Choice Pharmaceutical Institute'),
(14300, 'https://ror.org/04pd0d926', 'no_lang_code', 1, 'https://ror.org/04pd0d926 TumorEnd (United States)'),
(14301, 'https://ror.org/04cg6c004', 'en', 1, 'https://ror.org/04cg6c004 Academic College of Tel Aviv-Yafo'),
(14302, 'https://ror.org/046nm0a12', 'en', 1, 'https://ror.org/046nm0a12 Adaptive Sports Foundation'),
(14303, 'https://ror.org/03de9mq04', 'en', 1, 'https://ror.org/03de9mq04 Tuomey Healthcare System'),
(14304, 'https://ror.org/02nn2g073', 'en', 1, 'https://ror.org/02nn2g073 Aesthetic Surgery Center'),
(14305, 'https://ror.org/037psbw62', 'en', 1, 'https://ror.org/037psbw62 Stanley Park'),
(14306, 'https://ror.org/01dz8hz75', 'en', 1, 'https://ror.org/01dz8hz75 American Geriatrics Society'),
(14307, 'https://ror.org/00mwp5989', 'en', 1, 'https://ror.org/00mwp5989 Amyotrophic Lateral Sclerosis Association'),
(14308, 'https://ror.org/01jq6p072', 'en', 1, 'https://ror.org/01jq6p072 Turnstone'),
(14309, 'https://ror.org/026zz8m94', 'en', 1, 'https://ror.org/026zz8m94 Angeles Clinic Foundation'),
(14310, 'https://ror.org/00ww7tv14', 'no_lang_code', 1, 'https://ror.org/00ww7tv14 Angiogenesis Foundation'),
(14311, 'https://ror.org/018dbr456', 'en', 1, 'https://ror.org/018dbr456 STAR Council'),
(14312, 'https://ror.org/03fkvkp40', 'en', 1, 'https://ror.org/03fkvkp40 Star Neuroscience Foundation'),
(14313, 'https://ror.org/04pwzxj71', 'no_lang_code', 1, 'https://ror.org/04pwzxj71 TVAX Biomedical (United States)'),
(14314, 'https://ror.org/054h7rn92', 'en', 1, 'https://ror.org/054h7rn92 Arc of High Point'),
(14315, 'https://ror.org/05kzy7y09', 'en', 1, 'https://ror.org/05kzy7y09 Arthritis Research Institute of America'),
(14316, 'https://ror.org/03dxy5y92', 'en', 1, 'https://ror.org/03dxy5y92 The Arthroplasty Patient Foundation'),
(14317, 'https://ror.org/02411tk93', 'en', 1, 'https://ror.org/02411tk93 Women’s Fund Asia'),
(14318, 'https://ror.org/0377xq834', 'en', 1, 'https://ror.org/0377xq834 Association of Black Women Physicians'),
(14319, 'https://ror.org/03e3kts03', 'en', 1, 'https://ror.org/03e3kts03 South Australian Health and Medical Research Institute'),
(14320, 'https://ror.org/03bcvxv20', 'en', 1, 'https://ror.org/03bcvxv20 Sisters of Providence Health System'),
(14321, 'https://ror.org/04bkhy554', 'en', 1, 'https://ror.org/04bkhy554 Changzhou No.2 People''s Hospital 常州市第二人民医院'),
(14322, 'https://ror.org/02vjprr88', 'en', 1, 'https://ror.org/02vjprr88 Bachmann-Strauss Dystonia & Parkinson Foundation'),
(14323, 'https://ror.org/04v3cx114', 'en', 1, 'https://ror.org/04v3cx114 The Beautiful Gate'),
(14324, 'https://ror.org/018vpay05', 'en', 1, 'https://ror.org/018vpay05 South Carolina Cancer Alliance'),
(14325, 'https://ror.org/02cs65r11', 'en', 1, 'https://ror.org/02cs65r11 State Building & Construction Trades Council of California'),
(14326, 'https://ror.org/02eyp1631', 'en', 1, 'https://ror.org/02eyp1631 South Carolina Department of Corrections'),
(14327, 'https://ror.org/04q6gmg31', 'en', 1, 'https://ror.org/04q6gmg31 South Central Community Services'),
(14328, 'https://ror.org/01y461z74', 'en', 1, 'https://ror.org/01y461z74 Bone Marrow Foundation'),
(14329, 'https://ror.org/04y419f85', 'tr', 1, 'https://ror.org/04y419f85 Moleküler Biyoloji Derneği'),
(14330, 'https://ror.org/01fw88k98', 'en', 1, 'https://ror.org/01fw88k98 State of Connecticut Judicial Branch'),
(14331, 'https://ror.org/01j3ge177', 'en', 1, 'https://ror.org/01j3ge177 Christus Santa Rosa Health System'),
(14332, 'https://ror.org/03q7dzc06', 'en', 1, 'https://ror.org/03q7dzc06 Breakfast Club'),
(14333, 'https://ror.org/02ydpt711', 'en', 1, 'https://ror.org/02ydpt711 John D Bray MD'),
(14334, 'https://ror.org/03z2p9q19', 'en', 1, 'https://ror.org/03z2p9q19 Rhode Island Cancer Council'),
(14335, 'https://ror.org/04cgqw370', 'en', 1, 'https://ror.org/04cgqw370 Brearley School'),
(14336, 'https://ror.org/01vavtp12', 'en', 1, 'https://ror.org/01vavtp12 South Central Family Health Center'),
(14337, 'https://ror.org/05hwnvk36', 'no_lang_code', 1, 'https://ror.org/05hwnvk36 The Bridge (United States)'),
(14338, 'https://ror.org/023tdcb12', 'en', 1, 'https://ror.org/023tdcb12 Brod Group'),
(14339, 'https://ror.org/011mp8w48', 'en', 1, 'https://ror.org/011mp8w48 Bronx Health Link'),
(14340, 'https://ror.org/00bk31p84', 'en', 1, 'https://ror.org/00bk31p84 Blessing Hospital'),
(14341, 'https://ror.org/00x7hks54', 'en', 1, 'https://ror.org/00x7hks54 The Care Communities'),
(14342, 'https://ror.org/02rj64652', 'en', 1, 'https://ror.org/02rj64652 Heroes Foundation'),
(14343, 'https://ror.org/016t7ff42', 'en', 1, 'https://ror.org/016t7ff42 United States Power Soccer Association'),
(14344, 'https://ror.org/03694tx76', 'en', 1, 'https://ror.org/03694tx76 South Elgin FUNdation'),
(14345, 'https://ror.org/04jna0a58', 'en', 1, 'https://ror.org/04jna0a58 Center for Discovery'),
(14346, 'https://ror.org/00dd5gy70', 'en', 1, 'https://ror.org/00dd5gy70 Family Centre for Health and Wellness'),
(14347, 'https://ror.org/0263dyv44', 'en', 1, 'https://ror.org/0263dyv44 Kids Cancer Center'),
(14348, 'https://ror.org/058er4930', 'en', 1, 'https://ror.org/058er4930 Center for Health Justice'),
(14349, 'https://ror.org/04g6ht049', 'en', 1, 'https://ror.org/04g6ht049 South Florida Veterans Affairs Foundation for Research and Education'),
(14350, 'https://ror.org/002qqr512', 'en', 1, 'https://ror.org/002qqr512 South Puget Intertribal Planning Agency'),
(14351, 'https://ror.org/05cghfn11', 'en', 1, 'https://ror.org/05cghfn11 The Center for Mind-Body Medicine'),
(14352, 'https://ror.org/02y4rar07', 'en', 1, 'https://ror.org/02y4rar07 The Center for Pranic Healing'),
(14353, 'https://ror.org/011n1b487', 'en', 1, 'https://ror.org/011n1b487 The Center for the Biology of Chronic Disease'),
(14354, 'https://ror.org/05ry7ey09', 'en', 1, 'https://ror.org/05ry7ey09 Chanda Plan Foundation'),
(14355, 'https://ror.org/020yh1f96', 'en', 1, 'https://ror.org/020yh1f96 Ohio State University Hospital'),
(14356, 'https://ror.org/00c66jq56', 'en', 1, 'https://ror.org/00c66jq56 South Shore Hospital');
INSERT INTO `rors` VALUES
(14357, 'https://ror.org/0058y2432', 'en', 1, 'https://ror.org/0058y2432 Chester County Hospital'),
(14358, 'https://ror.org/04qh7gr18', 'en', 1, 'https://ror.org/04qh7gr18 South Shore YMCA'),
(14359, 'https://ror.org/05223j896', 'en', 1, 'https://ror.org/05223j896 Daniel Drake Center'),
(14360, 'https://ror.org/02z57jm04', 'en', 1, 'https://ror.org/02z57jm04 South Texas Institutes of Health'),
(14361, 'https://ror.org/03yhkgk91', 'en', 1, 'https://ror.org/03yhkgk91 South West Special Recreation Association'),
(14362, 'https://ror.org/03fsr8g81', 'en', 1, 'https://ror.org/03fsr8g81 Children’s Cause for Cancer Advocacy'),
(14363, 'https://ror.org/05mbb3v54', 'en', 1, 'https://ror.org/05mbb3v54 Children''s Home of Wheeling'),
(14364, 'https://ror.org/0485axj58', 'en', 1, 'https://ror.org/0485axj58 University Hospital Southampton NHS Foundation Trust'),
(14365, 'https://ror.org/031sed648', 'no_lang_code', 1, 'https://ror.org/031sed648 Stavros'),
(14366, 'https://ror.org/03kz78w44', 'en', 1, 'https://ror.org/03kz78w44 Uganda Health and Science Press Association'),
(14367, 'https://ror.org/05srg8k79', 'en', 1, 'https://ror.org/05srg8k79 Uganda Protestant Medical Bureau'),
(14368, 'https://ror.org/02ex8ca13', 'en', 1, 'https://ror.org/02ex8ca13 Southbury Clinic'),
(14369, 'https://ror.org/011bvxa88', 'en', 1, 'https://ror.org/011bvxa88 Heather Hill Care Communities'),
(14370, 'https://ror.org/0416ckt74', 'en', 1, 'https://ror.org/0416ckt74 Cancer Connection'),
(14371, 'https://ror.org/05m9m0021', 'en', 1, 'https://ror.org/05m9m0021 United Jewish Appeal Federation of New York'),
(14372, 'https://ror.org/04v76c606', 'en', 1, 'https://ror.org/04v76c606 Community Health Center Association of Mississippi'),
(14373, 'https://ror.org/012ea8q16', 'en', 1, 'https://ror.org/012ea8q16 Southeastern Community College - North Carolina'),
(14374, 'https://ror.org/051bvnz41', 'en', 1, 'https://ror.org/051bvnz41 Children''s Treehouse Foundation'),
(14375, 'https://ror.org/011gg5m49', 'en', 1, 'https://ror.org/011gg5m49 Ulman Cancer Fund for Young Adults'),
(14376, 'https://ror.org/02t5a9j90', 'no_lang_code', 1, 'https://ror.org/02t5a9j90 Ultradian Diagnostics (United States)'),
(14377, 'https://ror.org/003kgv736', 'en', 1, 'https://ror.org/003kgv736 University of the West Indies'),
(14378, 'https://ror.org/03esv2r68', 'no_lang_code', 1, 'https://ror.org/03esv2r68 Stealth Biosciences (United States)'),
(14379, 'https://ror.org/02v5tks88', 'no_lang_code', 1, 'https://ror.org/02v5tks88 Ultrawave Labs (United States)'),
(14380, 'https://ror.org/05hj3r720', 'en', 1, 'https://ror.org/05hj3r720 Clearity Foundation'),
(14381, 'https://ror.org/03wk52r49', 'no_lang_code', 1, 'https://ror.org/03wk52r49 Stella Therapeutics (United States)'),
(14382, 'https://ror.org/01yk1j737', 'en', 1, 'https://ror.org/01yk1j737 Cody Unser First Step Foundation'),
(14383, 'https://ror.org/0574rre95', 'en', 1, 'https://ror.org/0574rre95 Umpqua Community College'),
(14384, 'https://ror.org/04r49a107', 'en', 1, 'https://ror.org/04r49a107 Southern Illinois Healthcare'),
(14385, 'https://ror.org/02qd5rn34', 'en', 1, 'https://ror.org/02qd5rn34 Coexist Initiative'),
(14386, 'https://ror.org/00kmq0020', 'en', 1, 'https://ror.org/00kmq0020 Southern Maine Medical Center'),
(14387, 'https://ror.org/031npn793', 'en', 1, 'https://ror.org/031npn793 ComedyCures Foundation'),
(14388, 'https://ror.org/049kzbj92', 'en', 1, 'https://ror.org/049kzbj92 Commonwealth Fund'),
(14389, 'https://ror.org/01vb24668', 'en', 1, 'https://ror.org/01vb24668 Southern Poverty Law Center'),
(14390, 'https://ror.org/05691sn15', 'en', 1, 'https://ror.org/05691sn15 UN Women’s Office for India, Bhutan, Maldives and Sri Lanka'),
(14391, 'https://ror.org/00hxxb066', 'en', 1, 'https://ror.org/00hxxb066 Community Chest of Leonia'),
(14392, 'https://ror.org/02k1jxv55', 'en', 1, 'https://ror.org/02k1jxv55 Southern Rural Black Women''s Initiative'),
(14393, 'https://ror.org/05gxeae76', 'en', 1, 'https://ror.org/05gxeae76 Connecticut Center for Primary Care'),
(14394, 'https://ror.org/029y62y23', 'en', 1, 'https://ror.org/029y62y23 URSA Institute'),
(14395, 'https://ror.org/042h3a043', 'en', 1, 'https://ror.org/042h3a043 Southern Vermont College'),
(14396, 'https://ror.org/00ca0jp83', 'en', 1, 'https://ror.org/00ca0jp83 Uncas Health District'),
(14397, 'https://ror.org/04gbmxr55', 'en', 1, 'https://ror.org/04gbmxr55 Southerners on New Ground'),
(14398, 'https://ror.org/00p7gy719', 'en', 1, 'https://ror.org/00p7gy719 Southland Hispanic Leadership Council'),
(14399, 'https://ror.org/05btye950', 'en', 1, 'https://ror.org/05btye950 Southwest Autism Research & Resource Center'),
(14400, 'https://ror.org/0213abd61', 'no_lang_code', 1, 'https://ror.org/0213abd61 Velocity BioGroup (United States)'),
(14401, 'https://ror.org/02mhagg83', 'en', 1, 'https://ror.org/02mhagg83 Yaddo'),
(14402, 'https://ror.org/01fjxvf67', 'en', 1, 'https://ror.org/01fjxvf67 Southwest Center for Chronic Disease'),
(14403, 'https://ror.org/00ykgmf04', 'en', 1, 'https://ror.org/00ykgmf04 Counseling Center'),
(14404, 'https://ror.org/03rcdym39', 'en', 1, 'https://ror.org/03rcdym39 Empower Abilities'),
(14405, 'https://ror.org/027ns6m21', 'en', 1, 'https://ror.org/027ns6m21 Southwest Georgia Health Care'),
(14406, 'https://ror.org/02xvm3d98', 'no_lang_code', 1, 'https://ror.org/02xvm3d98 StemMed (United States)'),
(14407, 'https://ror.org/0531gz477', 'en', 1, 'https://ror.org/0531gz477 University Settlement'),
(14408, 'https://ror.org/020mn5703', 'no_lang_code', 1, 'https://ror.org/020mn5703 Stemnion (United States)'),
(14409, 'https://ror.org/044dzr604', 'en', 1, 'https://ror.org/044dzr604 Visiting Nurse Association of South Central Connecticut'),
(14410, 'https://ror.org/00hjfh776', 'no_lang_code', 1, 'https://ror.org/00hjfh776 StemSynergy Therapeutics (United States)'),
(14411, 'https://ror.org/02ejtm324', 'en', 1, 'https://ror.org/02ejtm324 Southwest Wheelchair Athletic Association'),
(14412, 'https://ror.org/02vc1x915', 'no_lang_code', 1, 'https://ror.org/02vc1x915 Sova Pharmaceuticals (United States)'),
(14413, 'https://ror.org/0210crt34', 'en', 1, 'https://ror.org/0210crt34 Wall Las Memorias Project'),
(14414, 'https://ror.org/02c8yyx65', 'en', 1, 'https://ror.org/02c8yyx65 Delaware Academy of Medicine'),
(14415, 'https://ror.org/00mcpwa21', 'en', 1, 'https://ror.org/00mcpwa21 Unicorn Children''s Foundation'),
(14416, 'https://ror.org/05ygm7711', 'en', 1, 'https://ror.org/05ygm7711 GEICAM – Spanish Breast Cancer Group Grupo Español de Investigación en Cáncer de Mama'),
(14417, 'https://ror.org/057ppfc30', 'en', 1, 'https://ror.org/057ppfc30 The Donna Foundation'),
(14418, 'https://ror.org/05yh81666', 'en', 1, 'https://ror.org/05yh81666 Stephen Gaynor School'),
(14419, 'https://ror.org/01v9h0745', 'en', 1, 'https://ror.org/01v9h0745 SPARK Reproductive Justice NOW'),
(14420, 'https://ror.org/00xfhnx88', 'es', 1, 'https://ror.org/00xfhnx88 Unidad de Artritis y Reumatismo'),
(14421, 'https://ror.org/02pgrmd66', 'en', 1, 'https://ror.org/02pgrmd66 Wayside House'),
(14422, 'https://ror.org/00ze1bh94', 'en', 1, 'https://ror.org/00ze1bh94 Stephenson County Health Department'),
(14423, 'https://ror.org/056j7x372', 'en', 1, 'https://ror.org/056j7x372 Neuroworx'),
(14424, 'https://ror.org/01ktsgp73', 'en', 1, 'https://ror.org/01ktsgp73 Hospice Savannah'),
(14425, 'https://ror.org/01qts9y67', 'en', 1, 'https://ror.org/01qts9y67 Best Answer for Cancer Foundation'),
(14426, 'https://ror.org/04z3krz71', 'en', 1, 'https://ror.org/04z3krz71 Unio Recovery Center'),
(14427, 'https://ror.org/00n74s057', 'en', 1, 'https://ror.org/00n74s057 Energy Institute of the Healing Arts Foundation'),
(14428, 'https://ror.org/05p9w4h97', 'en', 1, 'https://ror.org/05p9w4h97 Union Graduate College'),
(14429, 'https://ror.org/01q222b25', 'en', 1, 'https://ror.org/01q222b25 Esther A. & Joseph Klingenstein Fund'),
(14430, 'https://ror.org/0516c4k86', 'en', 1, 'https://ror.org/0516c4k86 Union Hospital'),
(14431, 'https://ror.org/04xcy4533', 'en', 1, 'https://ror.org/04xcy4533 Eye Cancer Foundation'),
(14432, 'https://ror.org/031e8jz65', 'en', 1, 'https://ror.org/031e8jz65 The Family Center'),
(14433, 'https://ror.org/01eetqe63', 'en', 1, 'https://ror.org/01eetqe63 National Council for Gender Equality'),
(14434, 'https://ror.org/02bnjsr23', 'en', 1, 'https://ror.org/02bnjsr23 CancerConnects'),
(14435, 'https://ror.org/05dyc0249', 'en', 1, 'https://ror.org/05dyc0249 Papageno Foundation Stichting Papageno'),
(14436, 'https://ror.org/00rc8tb78', 'en', 1, 'https://ror.org/00rc8tb78 United American Indian Involvement'),
(14437, 'https://ror.org/00m3dfd98', 'en', 1, 'https://ror.org/00m3dfd98 VitaValley Foundation'),
(14438, 'https://ror.org/03ww5p627', 'en', 1, 'https://ror.org/03ww5p627 Florence Crittenton Agency'),
(14439, 'https://ror.org/03zbr5052', 'en', 1, 'https://ror.org/03zbr5052 Spectrum Neuroscience and Treatment Institute'),
(14440, 'https://ror.org/00qmzzn75', 'en', 1, 'https://ror.org/00qmzzn75 Florida Center for Early Childhood'),
(14441, 'https://ror.org/05etp2h92', 'en', 1, 'https://ror.org/05etp2h92 Stop Calling It Autism'),
(14442, 'https://ror.org/01xh29k31', 'en', 1, 'https://ror.org/01xh29k31 Cancer Resources for Elkhart County'),
(14443, 'https://ror.org/022zybs25', 'en', 1, 'https://ror.org/022zybs25 Foodbank'),
(14444, 'https://ror.org/04bgs8335', 'en', 1, 'https://ror.org/04bgs8335 Foresight Project'),
(14445, 'https://ror.org/01rpj9v06', 'en', 1, 'https://ror.org/01rpj9v06 Albany Stratton VA Medical Center Albany'),
(14446, 'https://ror.org/03dp7mk93', 'en', 1, 'https://ror.org/03dp7mk93 Whole Elephant Institute'),
(14447, 'https://ror.org/0459dq860', 'no_lang_code', 1, 'https://ror.org/0459dq860 SPEED BioSystems (United States)'),
(14448, 'https://ror.org/0078rjm63', 'en', 1, 'https://ror.org/0078rjm63 Strength For Life'),
(14449, 'https://ror.org/04exnj962', 'en', 1, 'https://ror.org/04exnj962 Wig Bank of Caldwell County'),
(14450, 'https://ror.org/04aby3d05', 'en', 1, 'https://ror.org/04aby3d05 Stretch to Kindergarten'),
(14451, 'https://ror.org/01wtdg175', 'en', 1, 'https://ror.org/01wtdg175 Speedway Fire Rescue'),
(14452, 'https://ror.org/05fxq1221', 'no_lang_code', 1, 'https://ror.org/05fxq1221 Spero Therapeutics (United States)'),
(14453, 'https://ror.org/0345va412', 'en', 1, 'https://ror.org/0345va412 Strides To Success'),
(14454, 'https://ror.org/01r3dw569', 'en', 1, 'https://ror.org/01r3dw569 Prevea Health'),
(14455, 'https://ror.org/05x45y691', 'en', 1, 'https://ror.org/05x45y691 United Fire Service Women'),
(14456, 'https://ror.org/00fgr8e68', 'no_lang_code', 1, 'https://ror.org/00fgr8e68 Strohl Medical Technologies (United States)'),
(14457, 'https://ror.org/00a5e6254', 'no_lang_code', 1, 'https://ror.org/00a5e6254 Structure Based Design (United States)'),
(14458, 'https://ror.org/04w4gg556', 'en', 1, 'https://ror.org/04w4gg556 Student Sponsor Partners'),
(14459, 'https://ror.org/024nhth42', 'en', 1, 'https://ror.org/024nhth42 United Health Services'),
(14460, 'https://ror.org/03j705z82', 'en', 1, 'https://ror.org/03j705z82 United Hospice'),
(14461, 'https://ror.org/04ss5f518', 'en', 1, 'https://ror.org/04ss5f518 Studio Museum in Harlem'),
(14462, 'https://ror.org/04ttp1a84', 'en', 1, 'https://ror.org/04ttp1a84 United States Association of Blind Athletes'),
(14463, 'https://ror.org/05qbjh804', 'en', 1, 'https://ror.org/05qbjh804 Spina Bifida Resource Network'),
(14464, 'https://ror.org/04mkdzx81', 'en', 1, 'https://ror.org/04mkdzx81 American Bowen Academy'),
(14465, 'https://ror.org/020m0j044', 'en', 1, 'https://ror.org/020m0j044 Gould Farm'),
(14466, 'https://ror.org/007q33p83', 'en', 1, 'https://ror.org/007q33p83 United States Handcycle Federation'),
(14467, 'https://ror.org/056zchc22', 'en', 1, 'https://ror.org/056zchc22 Women''s Center of Jacksonville'),
(14468, 'https://ror.org/05kj4rm74', 'en', 1, 'https://ror.org/05kj4rm74 Wood Hudson Cancer Research Laboratory'),
(14469, 'https://ror.org/000ch3x42', 'en', 1, 'https://ror.org/000ch3x42 United States Olympic & Paralympic Committee'),
(14470, 'https://ror.org/0085h5x07', 'en', 1, 'https://ror.org/0085h5x07 Wounded Artist Project'),
(14471, 'https://ror.org/05p21nc51', 'en', 1, 'https://ror.org/05p21nc51 United States Quad Rugby Association'),
(14472, 'https://ror.org/025drpn91', 'en', 1, 'https://ror.org/025drpn91 United Way of Greater Nashville'),
(14473, 'https://ror.org/04peavn87', 'en', 1, 'https://ror.org/04peavn87 Fund for Global Human Rights'),
(14474, 'https://ror.org/03952wq53', 'en', 1, 'https://ror.org/03952wq53 United Way of Southeastern Idaho'),
(14475, 'https://ror.org/01j1ref86', 'en', 1, 'https://ror.org/01j1ref86 Gathering Place'),
(14476, 'https://ror.org/02hkvad16', 'en', 1, 'https://ror.org/02hkvad16 Spinal Muscular Atrophy Foundation'),
(14477, 'https://ror.org/05ntqke24', 'en', 1, 'https://ror.org/05ntqke24 UnityPoint Health'),
(14478, 'https://ror.org/05mr17y43', 'en', 1, 'https://ror.org/05mr17y43 SUDEP Aware'),
(14479, 'https://ror.org/023xtbz44', 'en', 1, 'https://ror.org/023xtbz44 Spiral Foundation'),
(14480, 'https://ror.org/00nj98j61', 'en', 1, 'https://ror.org/00nj98j61 Sudha Hospital and Medical Research Centre'),
(14481, 'https://ror.org/02yn5by09', 'es', 1, 'https://ror.org/02yn5by09 Catholic University of Cuyo Universidad Católica de Cuyo'),
(14482, 'https://ror.org/054hr5a68', 'en', 1, 'https://ror.org/054hr5a68 Greg Foundation'),
(14483, 'https://ror.org/01e8nps30', 'en', 1, 'https://ror.org/01e8nps30 Spirituality For Kids International'),
(14484, 'https://ror.org/02j83q337', 'en', 1, 'https://ror.org/02j83q337 Gus Foundation'),
(14485, 'https://ror.org/03n0yd032', 'en', 1, 'https://ror.org/03n0yd032 Central American University Universidad Centroamericana'),
(14486, 'https://ror.org/0017y4h13', 'no_lang_code', 1, 'https://ror.org/0017y4h13 Theranova (United States)'),
(14487, 'https://ror.org/0327ybn08', 'en', 1, 'https://ror.org/0327ybn08 Summit School'),
(14488, 'https://ror.org/05kg0va65', 'en', 1, 'https://ror.org/05kg0va65 Healing Co-Operative'),
(14489, 'https://ror.org/01v64sy05', 'en', 1, 'https://ror.org/01v64sy05 Sportable'),
(14490, 'https://ror.org/00e32zj49', 'en', 1, 'https://ror.org/00e32zj49 Therapeutic Research Foundation'),
(14491, 'https://ror.org/03gf89e85', 'en', 1, 'https://ror.org/03gf89e85 SportsClub'),
(14492, 'https://ror.org/04d534064', 'en', 1, 'https://ror.org/04d534064 Children''s Cancer Connection'),
(14493, 'https://ror.org/01g022076', 'no_lang_code', 1, 'https://ror.org/01g022076 Therapure Biopharma (Canada)'),
(14494, 'https://ror.org/00y8jqa74', 'en', 1, 'https://ror.org/00y8jqa74 Springhouse'),
(14495, 'https://ror.org/0085nex47', 'en', 1, 'https://ror.org/0085nex47 Challenge Center'),
(14496, 'https://ror.org/004xzjm20', 'es', 1, 'https://ror.org/004xzjm20 Universidad Iberoamericana'),
(14497, 'https://ror.org/00xpcj002', 'no_lang_code', 1, 'https://ror.org/00xpcj002 TherimuneX Pharmaceuticals (United States)'),
(14498, 'https://ror.org/039vvqy75', 'en', 1, 'https://ror.org/039vvqy75 Phoebe Sumter Medical Center'),
(14499, 'https://ror.org/0261ts428', 'en', 1, 'https://ror.org/0261ts428 Sunset Hill Educational Institute'),
(14500, 'https://ror.org/04spw3a80', 'en', 1, 'https://ror.org/04spw3a80 Hope Light Foundation'),
(14501, 'https://ror.org/03fcx1h14', 'en', 1, 'https://ror.org/03fcx1h14 SSM Health Rehabilitation Hospital'),
(14502, 'https://ror.org/04j7dyy47', 'en', 1, 'https://ror.org/04j7dyy47 St. Charles Community College'),
(14503, 'https://ror.org/05qpe4e51', 'en', 1, 'https://ror.org/05qpe4e51 Secondopinion'),
(14504, 'https://ror.org/01bj8gp17', 'en', 1, 'https://ror.org/01bj8gp17 Hudson River Museum'),
(14505, 'https://ror.org/00nfc4433', 'en', 1, 'https://ror.org/00nfc4433 MidHudson Regional Hospital'),
(14506, 'https://ror.org/0451y5857', 'en', 1, 'https://ror.org/0451y5857 Infant Trust'),
(14507, 'https://ror.org/00mka9g75', 'en', 1, 'https://ror.org/00mka9g75 Positively Pink Packages'),
(14508, 'https://ror.org/0375z3382', 'en', 1, 'https://ror.org/0375z3382 Sundance Research Institute'),
(14509, 'https://ror.org/05b35wm26', 'en', 1, 'https://ror.org/05b35wm26 ThinkFirst Foundation'),
(14510, 'https://ror.org/00j3nqj92', 'en', 1, 'https://ror.org/00j3nqj92 Institute for Behavior Change'),
(14511, 'https://ror.org/022zhjf34', 'en', 1, 'https://ror.org/022zhjf34 Sunlight Nutrition and Health Research Center'),
(14512, 'https://ror.org/01v6pab41', 'en', 1, 'https://ror.org/01v6pab41 PeaceHealth St. John Medical Center'),
(14513, 'https://ror.org/00r59ab07', 'en', 1, 'https://ror.org/00r59ab07 Sunny Days Learning Center of Stickney'),
(14514, 'https://ror.org/02n80qr18', 'en', 1, 'https://ror.org/02n80qr18 Memorial Hermann Northwest Hospital'),
(14515, 'https://ror.org/02hk0z764', 'en', 1, 'https://ror.org/02hk0z764 Side by Side'),
(14516, 'https://ror.org/05eq12k28', 'en', 1, 'https://ror.org/05eq12k28 Thomas Edison State University'),
(14517, 'https://ror.org/058zs5j81', 'en', 1, 'https://ror.org/058zs5j81 Institute for Reproductive and Family Health'),
(14518, 'https://ror.org/03f0njg03', 'fr', 1, 'https://ror.org/03f0njg03 Université des Sciences et Techniques de Masuku'),
(14519, 'https://ror.org/02kab2r08', 'en', 1, 'https://ror.org/02kab2r08 Health Wagon'),
(14520, 'https://ror.org/05qhdpg52', 'en', 1, 'https://ror.org/05qhdpg52 Thorax Foundation Ίδρυμα ΘΩΡΑΞ'),
(14521, 'https://ror.org/00agk7330', 'en', 1, 'https://ror.org/00agk7330 The Institute for Therapeutic Discovery'),
(14522, 'https://ror.org/02m0e8z16', 'en', 1, 'https://ror.org/02m0e8z16 Thousand Waves Foundation'),
(14523, 'https://ror.org/02rsszy23', 'en', 1, 'https://ror.org/02rsszy23 St. Rose Dominican Hospital'),
(14524, 'https://ror.org/035fm0b85', 'en', 1, 'https://ror.org/035fm0b85 St Vincent’s Private Hospital Brisbane'),
(14525, 'https://ror.org/02p43pa18', 'no_lang_code', 1, 'https://ror.org/02p43pa18 Out Front (United States)'),
(14526, 'https://ror.org/04ynv8j79', 'en', 1, 'https://ror.org/04ynv8j79 Three Village Garden Club'),
(14527, 'https://ror.org/04tsmgv27', 'en', 1, 'https://ror.org/04tsmgv27 St. Ann''s Episcopal Church'),
(14528, 'https://ror.org/03h1gea69', 'en', 1, 'https://ror.org/03h1gea69 St. Baldrick''s Foundation'),
(14529, 'https://ror.org/02v5dd905', 'en', 1, 'https://ror.org/02v5dd905 SunServe'),
(14530, 'https://ror.org/02bb3e325', 'no_lang_code', 1, 'https://ror.org/02bb3e325 Threshold Pharmaceuticals (United States)'),
(14531, 'https://ror.org/00wtwth26', 'en', 1, 'https://ror.org/00wtwth26 Access Health Louisiana'),
(14532, 'https://ror.org/01jbd8x32', 'en', 1, 'https://ror.org/01jbd8x32 Through the Looking Glass'),
(14533, 'https://ror.org/03q4r8597', 'en', 1, 'https://ror.org/03q4r8597 St. Charles Foundation'),
(14534, 'https://ror.org/0354gjj39', 'en', 1, 'https://ror.org/0354gjj39 St. Christopher Iba Mar Diop College of Medicine'),
(14535, 'https://ror.org/05wg6j504', 'en', 1, 'https://ror.org/05wg6j504 Catholic Community Services Of Southern Arizona'),
(14536, 'https://ror.org/038ja4880', 'en', 1, 'https://ror.org/038ja4880 Alex''s Lemonade Stand Foundation'),
(14537, 'https://ror.org/04sxwc885', 'en', 1, 'https://ror.org/04sxwc885 Super Stars Literacy'),
(14538, 'https://ror.org/04ez22252', 'en', 1, 'https://ror.org/04ez22252 International Rehabilitation Forum'),
(14539, 'https://ror.org/04b2p2059', 'en', 1, 'https://ror.org/04b2p2059 St. Elizabeth Healthcare'),
(14540, 'https://ror.org/0556b6g90', 'en', 1, 'https://ror.org/0556b6g90 St. Francis Hospital'),
(14541, 'https://ror.org/03rsh9n69', 'en', 1, 'https://ror.org/03rsh9n69 StarRecreation'),
(14542, 'https://ror.org/00qmny302', 'en', 1, 'https://ror.org/00qmny302 St. James AME Zion Church'),
(14543, 'https://ror.org/030zsh764', 'en', 1, 'https://ror.org/030zsh764 Worcestershire Acute Hospitals NHS Trust'),
(14544, 'https://ror.org/01fs5qc70', 'en', 1, 'https://ror.org/01fs5qc70 Tiburcio Vasquez Health Center'),
(14545, 'https://ror.org/017ydz008', 'en', 1, 'https://ror.org/017ydz008 Tigerlily Foundation'),
(14546, 'https://ror.org/01x92ja23', 'no_lang_code', 1, 'https://ror.org/01x92ja23 GeneticaLens (United States)'),
(14547, 'https://ror.org/04crav288', 'no_lang_code', 1, 'https://ror.org/04crav288 Surgisense'),
(14548, 'https://ror.org/02g6jra37', 'no_lang_code', 1, 'https://ror.org/02g6jra37 NJ International (United States)'),
(14549, 'https://ror.org/00bdqcv08', 'no_lang_code', 1, 'https://ror.org/00bdqcv08 Tivorsan Pharmaceuticals (United States)'),
(14550, 'https://ror.org/04yhme281', 'en', 1, 'https://ror.org/04yhme281 Jane Coffin Childs Memorial Fund for Medical Research'),
(14551, 'https://ror.org/00rdsgd78', 'en', 1, 'https://ror.org/00rdsgd78 Mercy Hospital Washington'),
(14552, 'https://ror.org/00bgcje57', 'en', 1, 'https://ror.org/00bgcje57 SAMFund'),
(14553, 'https://ror.org/05q398y82', 'en', 1, 'https://ror.org/05q398y82 St. John''s Riverside Hospital'),
(14554, 'https://ror.org/04c4tvj54', 'en', 1, 'https://ror.org/04c4tvj54 To Help Everyone Health and Wellness Centers'),
(14555, 'https://ror.org/04chs2v90', 'en', 1, 'https://ror.org/04chs2v90 Appalachian College of Pharmacy'),
(14556, 'https://ror.org/03ktbzq37', 'en', 1, 'https://ror.org/03ktbzq37 John A. Hartford Foundation'),
(14557, 'https://ror.org/018f82058', 'en', 1, 'https://ror.org/018f82058 The Kindness Connection'),
(14558, 'https://ror.org/0319d2e87', 'en', 1, 'https://ror.org/0319d2e87 St Helens Hospital'),
(14559, 'https://ror.org/01w2fzp56', 'en', 1, 'https://ror.org/01w2fzp56 Kolkata Municipal Corporation কলকাতা পৌরসংস্থা'),
(14560, 'https://ror.org/00p7ghc88', 'en', 1, 'https://ror.org/00p7ghc88 Larrabee Center'),
(14561, 'https://ror.org/01gf94c09', 'en', 1, 'https://ror.org/01gf94c09 Latina Center'),
(14562, 'https://ror.org/01f06p727', 'en', 1, 'https://ror.org/01f06p727 Survivorship A to Z'),
(14563, 'https://ror.org/01t9act85', 'en', 1, 'https://ror.org/01t9act85 Susan B Allen Memorial Hospital'),
(14564, 'https://ror.org/01v2q8e40', 'en', 1, 'https://ror.org/01v2q8e40 League of Dreams'),
(14565, 'https://ror.org/053sja846', 'en', 1, 'https://ror.org/053sja846 Susan G Komen Arkansas'),
(14566, 'https://ror.org/02b78e269', 'en', 1, 'https://ror.org/02b78e269 Susan G Komen Greater Atlanta'),
(14567, 'https://ror.org/01zdwaq18', 'no_lang_code', 1, 'https://ror.org/01zdwaq18 Illinois Ventures (United States)'),
(14568, 'https://ror.org/05e946j54', 'en', 1, 'https://ror.org/05e946j54 University of Louisville Physicians'),
(14569, 'https://ror.org/05nd73j43', 'en', 1, 'https://ror.org/05nd73j43 Libby Ross Foundation'),
(14570, 'https://ror.org/02rcc0516', 'en', 1, 'https://ror.org/02rcc0516 Liberty Church'),
(14571, 'https://ror.org/04kkgz961', 'en', 1, 'https://ror.org/04kkgz961 Life Monologue Project'),
(14572, 'https://ror.org/05gtsta03', 'en', 1, 'https://ror.org/05gtsta03 Life Raft Group'),
(14573, 'https://ror.org/04wgs4413', 'en', 1, 'https://ror.org/04wgs4413 Tomorrows Children’s Fund'),
(14574, 'https://ror.org/04y61qm95', 'en', 1, 'https://ror.org/04y61qm95 University Of Medicine 1 Yangon ဆေးတက္ကသိုလ် ၁ ရန်ကုန်'),
(14575, 'https://ror.org/00qd1fk85', 'en', 1, 'https://ror.org/00qd1fk85 Navicent Health'),
(14576, 'https://ror.org/00dyspc39', 'en', 1, 'https://ror.org/00dyspc39 Sutter Institute for Medical Research'),
(14577, 'https://ror.org/00s3q3549', 'en', 1, 'https://ror.org/00s3q3549 Mayor''s Fund to Advance New York City'),
(14578, 'https://ror.org/02kvbnm84', 'en', 1, 'https://ror.org/02kvbnm84 Sutter Santa Rosa Regional Hospital'),
(14579, 'https://ror.org/03mtqjg23', 'no_lang_code', 1, 'https://ror.org/03mtqjg23 Mary Maguire Foundation'),
(14580, 'https://ror.org/05hwfvk38', 'en', 1, 'https://ror.org/05hwfvk38 Touro College'),
(14581, 'https://ror.org/04f3yc598', 'en', 1, 'https://ror.org/04f3yc598 Lydia Project'),
(14582, 'https://ror.org/03s2y3a28', 'en', 1, 'https://ror.org/03s2y3a28 Touro Infirmary Foundation'),
(14583, 'https://ror.org/04vam3d04', 'no_lang_code', 1, 'https://ror.org/04vam3d04 Tracon Pharmaceuticals (United States)'),
(14584, 'https://ror.org/04rmmk944', 'no_lang_code', 1, 'https://ror.org/04rmmk944 SV Health Investors (United States)'),
(14585, 'https://ror.org/029n4n358', 'en', 1, 'https://ror.org/029n4n358 Swami Vivekanand College of Pharmacy'),
(14586, 'https://ror.org/036n5h252', 'no_lang_code', 1, 'https://ror.org/036n5h252 Trana Discovery (United States)'),
(14587, 'https://ror.org/02ee95325', 'en', 1, 'https://ror.org/02ee95325 Swedish Family Medicine Residency - Cherry Hill'),
(14588, 'https://ror.org/02cyrpr98', 'en', 1, 'https://ror.org/02cyrpr98 Trans Tasman Radiation Oncology Group'),
(14589, 'https://ror.org/04yk5p402', 'no_lang_code', 1, 'https://ror.org/04yk5p402 TransCure BioServices (Switzerland)'),
(14590, 'https://ror.org/03199wg76', 'en', 1, 'https://ror.org/03199wg76 PearlPoint Cancer Support'),
(14591, 'https://ror.org/01ffxpj85', 'no_lang_code', 1, 'https://ror.org/01ffxpj85 The Miracle Center (United States)'),
(14592, 'https://ror.org/02jfsex62', 'no_lang_code', 1, 'https://ror.org/02jfsex62 TransCure BioServices (France)'),
(14593, 'https://ror.org/03t95yr58', 'no_lang_code', 1, 'https://ror.org/03t95yr58 BioClinica (United States)'),
(14594, 'https://ror.org/01zesp542', 'no_lang_code', 1, 'https://ror.org/01zesp542 SynDevRx (United States)'),
(14595, 'https://ror.org/02vxh6382', 'en', 1, 'https://ror.org/02vxh6382 Pinky Swear Foundation'),
(14596, 'https://ror.org/02b108x81', 'en', 1, 'https://ror.org/02b108x81 University of St. Augustine for Health Sciences'),
(14597, 'https://ror.org/020y46h67', 'no_lang_code', 1, 'https://ror.org/020y46h67 Mifne Center'),
(14598, 'https://ror.org/02bspsv67', 'no_lang_code', 1, 'https://ror.org/02bspsv67 Synergenz BioScience (United States)'),
(14599, 'https://ror.org/004sf5z22', 'no_lang_code', 1, 'https://ror.org/004sf5z22 Synthena (Switzerland)'),
(14600, 'https://ror.org/000fyja13', 'en', 1, 'https://ror.org/000fyja13 Molecular Sciences Institute'),
(14601, 'https://ror.org/04dv7yp79', 'en', 1, 'https://ror.org/04dv7yp79 Montel Williams MS Foundation'),
(14602, 'https://ror.org/00qa1j177', 'en', 1, 'https://ror.org/00qa1j177 National Ability Center'),
(14603, 'https://ror.org/05k0zr802', 'en', 1, 'https://ror.org/05k0zr802 MultiCare Tacoma General Hospital'),
(14604, 'https://ror.org/01c2q3444', 'en', 1, 'https://ror.org/01c2q3444 Tacoma Pierce County Health Department'),
(14605, 'https://ror.org/048tfbp61', 'no_lang_code', 1, 'https://ror.org/048tfbp61 MobiLife (United States)'),
(14606, 'https://ror.org/01mxhss58', 'en', 1, 'https://ror.org/01mxhss58 eTraining Technology Academy'),
(14607, 'https://ror.org/01frxsf98', 'en', 1, 'https://ror.org/01frxsf98 Muscular Dystrophy Association'),
(14608, 'https://ror.org/025v9q431', 'en', 1, 'https://ror.org/025v9q431 Muscular Dystrophy Patients Welfare Association'),
(14609, 'https://ror.org/029x63s82', 'en', 1, 'https://ror.org/029x63s82 Nurse & Hospice of Fairfield County'),
(14610, 'https://ror.org/01464p409', 'en', 1, 'https://ror.org/01464p409 Disability Connection'),
(14611, 'https://ror.org/05szq2344', 'en', 1, 'https://ror.org/05szq2344 Pingjin Hospital 平津医院'),
(14612, 'https://ror.org/013h4ye17', 'en', 1, 'https://ror.org/013h4ye17 Stone Clinic'),
(14613, 'https://ror.org/04emmg248', 'en', 1, 'https://ror.org/04emmg248 Tahirih Justice Center'),
(14614, 'https://ror.org/03m4w0286', 'en', 1, 'https://ror.org/03m4w0286 Tahoe Forest Hospital'),
(14615, 'https://ror.org/05v9tzp52', 'en', 1, 'https://ror.org/05v9tzp52 National Physician and Family Referral'),
(14616, 'https://ror.org/03jwcxq96', 'en', 1, 'https://ror.org/03jwcxq96 Taiz University جامعة تعز'),
(14617, 'https://ror.org/00187jv91', 'en', 1, 'https://ror.org/00187jv91 Lifelabs New York'),
(14618, 'https://ror.org/02bb6wb14', 'en', 1, 'https://ror.org/02bb6wb14 Translational Research in Oncology'),
(14619, 'https://ror.org/01aygtt64', 'en', 1, 'https://ror.org/01aygtt64 New York Says Thank You Foundation'),
(14620, 'https://ror.org/02z3rcy16', 'no_lang_code', 1, 'https://ror.org/02z3rcy16 Translational Therapeutics (United States)'),
(14621, 'https://ror.org/03n2a3p06', 'en', 1, 'https://ror.org/03n2a3p06 New York Stem Cell Foundation'),
(14622, 'https://ror.org/03n678n37', 'en', 1, 'https://ror.org/03n678n37 Greeneville Community Hospital West'),
(14623, 'https://ror.org/05d8pm274', 'en', 1, 'https://ror.org/05d8pm274 University of Guyana'),
(14624, 'https://ror.org/04ghttx68', 'en', 1, 'https://ror.org/04ghttx68 Nicholas Conor Institute'),
(14625, 'https://ror.org/04btmq148', 'en', 1, 'https://ror.org/04btmq148 Transylvania County Schools'),
(14626, 'https://ror.org/054tjx319', 'en', 1, 'https://ror.org/054tjx319 Tree House Humane Society'),
(14627, 'https://ror.org/049jrjb36', 'no_lang_code', 1, 'https://ror.org/049jrjb36 Treventis (United States)'),
(14628, 'https://ror.org/01vt83t39', 'en', 1, 'https://ror.org/01vt83t39 Obesity Society'),
(14629, 'https://ror.org/0050tts15', 'en', 1, 'https://ror.org/0050tts15 Tri-Cities Cancer Center'),
(14630, 'https://ror.org/0523sbv14', 'en', 1, 'https://ror.org/0523sbv14 Open Source Science Project'),
(14631, 'https://ror.org/011t8b496', 'en', 1, 'https://ror.org/011t8b496 Tri-City Health Center'),
(14632, 'https://ror.org/041ddw474', 'en', 1, 'https://ror.org/041ddw474 Tallahassee Memorial HealthCare'),
(14633, 'https://ror.org/035r27d93', 'es', 1, 'https://ror.org/035r27d93 Centro Dr. Belluscio'),
(14634, 'https://ror.org/00qqbzv64', 'en', 1, 'https://ror.org/00qqbzv64 The Painted Turtle'),
(14635, 'https://ror.org/00z90m725', 'no_lang_code', 1, 'https://ror.org/00z90m725 Talon Pharmaceuticals (Canada)'),
(14636, 'https://ror.org/00vtp6271', 'en', 1, 'https://ror.org/00vtp6271 Trinity County Office of Education'),
(14637, 'https://ror.org/04tf53s67', 'en', 1, 'https://ror.org/04tf53s67 People’s Community Baptist Church'),
(14638, 'https://ror.org/05mxdx712', 'en', 1, 'https://ror.org/05mxdx712 Trinity United Church of Christ Child Care Centers'),
(14639, 'https://ror.org/050bz3f23', 'en', 1, 'https://ror.org/050bz3f23 Wake County Human Services'),
(14640, 'https://ror.org/05px2re83', 'en', 1, 'https://ror.org/05px2re83 Tanner Health System'),
(14641, 'https://ror.org/025zgnz97', 'en', 1, 'https://ror.org/025zgnz97 Triumph Foundation'),
(14642, 'https://ror.org/03h7p3m59', 'en', 1, 'https://ror.org/03h7p3m59 Wake County Public School System'),
(14643, 'https://ror.org/022bs7z24', 'no_lang_code', 1, 'https://ror.org/022bs7z24 Pallium India'),
(14644, 'https://ror.org/05pr8kn76', 'no_lang_code', 1, 'https://ror.org/05pr8kn76 Tansna Theraputics (United States)'),
(14645, 'https://ror.org/00dky2106', 'en', 1, 'https://ror.org/00dky2106 Plastic Surgery Foundation'),
(14646, 'https://ror.org/008fn2468', 'en', 1, 'https://ror.org/008fn2468 Walk for Nepal'),
(14647, 'https://ror.org/00cpzjj86', 'en', 1, 'https://ror.org/00cpzjj86 Tapestri'),
(14648, 'https://ror.org/0306p6665', 'en', 1, 'https://ror.org/0306p6665 Play Group Theatre'),
(14649, 'https://ror.org/05hfas298', 'no_lang_code', 1, 'https://ror.org/05hfas298 Targepeutics (United States)'),
(14650, 'https://ror.org/02g5mks94', 'no_lang_code', 1, 'https://ror.org/02g5mks94 Targeted Cell Therapies (United States)'),
(14651, 'https://ror.org/031bxfd44', 'en', 1, 'https://ror.org/031bxfd44 Walking Miracles Family Foundation'),
(14652, 'https://ror.org/007k2zh72', 'en', 1, 'https://ror.org/007k2zh72 Walking With Anthony'),
(14653, 'https://ror.org/059pjy887', 'en', 1, 'https://ror.org/059pjy887 Tuality Healthcare'),
(14654, 'https://ror.org/052tawh47', 'en', 1, 'https://ror.org/052tawh47 Wallace-Kettering Neuroscience Institute'),
(14655, 'https://ror.org/015b22965', 'no_lang_code', 1, 'https://ror.org/015b22965 Taro Pharmaceuticals (United States)'),
(14656, 'https://ror.org/03jaw3x77', 'en', 1, 'https://ror.org/03jaw3x77 Quality of Life Plus'),
(14657, 'https://ror.org/053n5f413', 'en', 1, 'https://ror.org/053n5f413 Walnut Creek Hearing Aid Center'),
(14658, 'https://ror.org/02jcwe568', 'en', 1, 'https://ror.org/02jcwe568 Tarrant County Challenge'),
(14659, 'https://ror.org/04s84vw78', 'en', 1, 'https://ror.org/04s84vw78 Walton Foundation for Independence'),
(14660, 'https://ror.org/033pxr844', 'en', 1, 'https://ror.org/033pxr844 New York State PTA'),
(14661, 'https://ror.org/01abgvx97', 'en', 1, 'https://ror.org/01abgvx97 Ward Melville Heritage Organization'),
(14662, 'https://ror.org/02ps8wg39', 'en', 1, 'https://ror.org/02ps8wg39 Tashkent Institute Of Postgraduate Medical Education'),
(14663, 'https://ror.org/02zsfmb11', 'en', 1, 'https://ror.org/02zsfmb11 Ray of Hope Cancer Foundation'),
(14664, 'https://ror.org/03pr40c41', 'en', 1, 'https://ror.org/03pr40c41 Red Devils'),
(14665, 'https://ror.org/04eh72y51', 'en', 1, 'https://ror.org/04eh72y51 Weldon City Schools'),
(14666, 'https://ror.org/02p750640', 'en', 1, 'https://ror.org/02p750640 WellFlorida Council'),
(14667, 'https://ror.org/03br44f40', 'en', 1, 'https://ror.org/03br44f40 Unlimited Abilities Foundation'),
(14668, 'https://ror.org/027dakc19', 'en', 1, 'https://ror.org/027dakc19 Warren County Schools'),
(14669, 'https://ror.org/04f0jzg23', 'en', 1, 'https://ror.org/04f0jzg23 Wellness House'),
(14670, 'https://ror.org/03y5p2k10', 'en', 1, 'https://ror.org/03y5p2k10 Wellness House'),
(14671, 'https://ror.org/02ytbnx96', 'en', 1, 'https://ror.org/02ytbnx96 Wells Institute for Health Awareness'),
(14672, 'https://ror.org/05nsngn76', 'en', 1, 'https://ror.org/05nsngn76 WellShare International'),
(14673, 'https://ror.org/059hgmr83', 'no_lang_code', 1, 'https://ror.org/059hgmr83 Cavion (United States)'),
(14674, 'https://ror.org/01nknep14', 'en', 1, 'https://ror.org/01nknep14 WellSpan Health'),
(14675, 'https://ror.org/0365sd121', 'en', 1, 'https://ror.org/0365sd121 UPMC McKeesport'),
(14676, 'https://ror.org/002hxf953', 'en', 1, 'https://ror.org/002hxf953 Tazewell County Health Department'),
(14677, 'https://ror.org/01kaqt385', 'en', 1, 'https://ror.org/01kaqt385 WellStar Health System'),
(14678, 'https://ror.org/0073snb49', 'en', 1, 'https://ror.org/0073snb49 weSPARK Cancer Support Center'),
(14679, 'https://ror.org/00cnma114', 'en', 1, 'https://ror.org/00cnma114 Wasatch Adaptive Sports'),
(14680, 'https://ror.org/00wwwzh42', 'en', 1, 'https://ror.org/00wwwzh42 West Bay Pilipino Multi-Service Center'),
(14681, 'https://ror.org/02ha1gc65', 'en', 1, 'https://ror.org/02ha1gc65 West Central Georgia Cancer Coalition'),
(14682, 'https://ror.org/04a0kbv92', 'en', 1, 'https://ror.org/04a0kbv92 West County Health Centers'),
(14683, 'https://ror.org/03exh9a13', 'en', 1, 'https://ror.org/03exh9a13 West Humboldt Park Development Council'),
(14684, 'https://ror.org/00m1r1367', 'en', 1, 'https://ror.org/00m1r1367 National Association of Team Survivor'),
(14685, 'https://ror.org/02p92he45', 'en', 1, 'https://ror.org/02p92he45 Urgent Action Fund'),
(14686, 'https://ror.org/02h5f8v93', 'en', 1, 'https://ror.org/02h5f8v93 Regional Cancer Center'),
(14687, 'https://ror.org/01vq75n56', 'en', 1, 'https://ror.org/01vq75n56 Team Taylor County'),
(14688, 'https://ror.org/03t2egq54', 'en', 1, 'https://ror.org/03t2egq54 Regional Medical Center'),
(14689, 'https://ror.org/05rzk0426', 'en', 1, 'https://ror.org/05rzk0426 West Michigan Cancer Center'),
(14690, 'https://ror.org/01g2kx755', 'en', 1, 'https://ror.org/01g2kx755 West Town Bikes'),
(14691, 'https://ror.org/01m58p389', 'en', 1, 'https://ror.org/01m58p389 Washington County Schools'),
(14692, 'https://ror.org/01g0g4720', 'es', 1, 'https://ror.org/01g0g4720 Fondo de Acción Urgente América Latina y el Caribe Urgent Action Fund for Latin America and the Caribbean'),
(14693, 'https://ror.org/04ecbsf74', 'en', 1, 'https://ror.org/04ecbsf74 Westbury Friends School'),
(14694, 'https://ror.org/008sks094', 'en', 1, 'https://ror.org/008sks094 Urologic Research Institute'),
(14695, 'https://ror.org/01c4kzn98', 'en', 1, 'https://ror.org/01c4kzn98 Westchester Putnam Council'),
(14696, 'https://ror.org/03s727m55', 'en', 1, 'https://ror.org/03s727m55 Western DuPage Special Recreation Association'),
(14697, 'https://ror.org/05g5f7985', 'no_lang_code', 1, 'https://ror.org/05g5f7985 Western Oncolytics (United States)'),
(14698, 'https://ror.org/03tv3cs72', 'en', 1, 'https://ror.org/03tv3cs72 The Washington Institute for Near East Policy'),
(14699, 'https://ror.org/039xp9584', 'en', 1, 'https://ror.org/039xp9584 Westside Health Authority'),
(14700, 'https://ror.org/03ezean90', 'en', 1, 'https://ror.org/03ezean90 Washington Regional Medical Center'),
(14701, 'https://ror.org/04k6w8620', 'en', 1, 'https://ror.org/04k6w8620 Westside Institute for Science and Education'),
(14702, 'https://ror.org/03ztrsx19', 'en', 1, 'https://ror.org/03ztrsx19 Poway Unified School District'),
(14703, 'https://ror.org/02df22b40', 'en', 1, 'https://ror.org/02df22b40 US Human Rights Network'),
(14704, 'https://ror.org/047n2sq83', 'en', 1, 'https://ror.org/047n2sq83 Wicomico County Health Department'),
(14705, 'https://ror.org/01ynqd283', 'en', 1, 'https://ror.org/01ynqd283 United States Immunodeficiency Network'),
(14706, 'https://ror.org/055xrn550', 'en', 1, 'https://ror.org/055xrn550 Wheaton Franciscan Healthcare'),
(14707, 'https://ror.org/02ff93068', 'no_lang_code', 1, 'https://ror.org/02ff93068 Wigs 4 Kids'),
(14708, 'https://ror.org/02pzmpf65', 'en', 1, 'https://ror.org/02pzmpf65 Wheelchair and Ambulatory Sports USA'),
(14709, 'https://ror.org/026qvc471', 'en', 1, 'https://ror.org/026qvc471 Wheelchair Sports Federation'),
(14710, 'https://ror.org/02c4s5t61', 'en', 1, 'https://ror.org/02c4s5t61 Wild for Life'),
(14711, 'https://ror.org/057m2em33', 'en', 1, 'https://ror.org/057m2em33 Washington Hospital Healthcare System'),
(14712, 'https://ror.org/02ndetp66', 'en', 1, 'https://ror.org/02ndetp66 Wheelin'' Team 457'),
(14713, 'https://ror.org/05cdy0410', 'en', 1, 'https://ror.org/05cdy0410 Wild Lens'),
(14714, 'https://ror.org/00dy5by13', 'en', 1, 'https://ror.org/00dy5by13 Wheeling Forward'),
(14715, 'https://ror.org/04t0e1f58', 'en', 1, 'https://ror.org/04t0e1f58 Wilderness Inquiry'),
(14716, 'https://ror.org/056cdnf90', 'en', 1, 'https://ror.org/056cdnf90 Wheels of Progress'),
(14717, 'https://ror.org/05f29ae28', 'en', 1, 'https://ror.org/05f29ae28 Wilderness Matters'),
(14718, 'https://ror.org/0275xpz44', 'en', 1, 'https://ror.org/0275xpz44 The Memorial Foundation'),
(14719, 'https://ror.org/03p0exs25', 'en', 1, 'https://ror.org/03p0exs25 Will2Walk Foundation'),
(14720, 'https://ror.org/02jdjd592', 'en', 1, 'https://ror.org/02jdjd592 White Earth Nation'),
(14721, 'https://ror.org/03bc9tz11', 'en', 1, 'https://ror.org/03bc9tz11 USA Cares'),
(14722, 'https://ror.org/00pngmk50', 'en', 1, 'https://ror.org/00pngmk50 Whiteside County Health Department'),
(14723, 'https://ror.org/01aetv375', 'en', 1, 'https://ror.org/01aetv375 USA Hockey Foundation'),
(14724, 'https://ror.org/003xwgp31', 'en', 1, 'https://ror.org/003xwgp31 The Roumel Group'),
(14725, 'https://ror.org/03ar82423', 'en', 1, 'https://ror.org/03ar82423 Watauga Medical Center'),
(14726, 'https://ror.org/027hx5s14', 'en', 1, 'https://ror.org/027hx5s14 Willamette Valley Cancer Foundation'),
(14727, 'https://ror.org/051yn8276', 'en', 1, 'https://ror.org/051yn8276 Women''s Oncology Research and Dialogue'),
(14728, 'https://ror.org/00jrtvk29', 'en', 1, 'https://ror.org/00jrtvk29 Université de Wilmington Wilmington University'),
(14729, 'https://ror.org/044s55g62', 'en', 1, 'https://ror.org/044s55g62 Women''s Refugee Commission'),
(14730, 'https://ror.org/0321gjx92', 'en', 1, 'https://ror.org/0321gjx92 The Salvation Army Zambia'),
(14731, 'https://ror.org/037cpgk40', 'en', 1, 'https://ror.org/037cpgk40 Women’s Rehabilitation Centre'),
(14732, 'https://ror.org/04q91nm90', 'en', 1, 'https://ror.org/04q91nm90 Wonders and Worries'),
(14733, 'https://ror.org/04b8h1p59', 'en', 1, 'https://ror.org/04b8h1p59 Wave Hill'),
(14734, 'https://ror.org/05f8df042', 'en', 1, 'https://ror.org/05f8df042 Usher III Initiative'),
(14735, 'https://ror.org/05n2hx334', 'en', 1, 'https://ror.org/05n2hx334 Wood River Ability Program'),
(14736, 'https://ror.org/04c6qad64', 'en', 1, 'https://ror.org/04c6qad64 USTA Intermountain Colorado'),
(14737, 'https://ror.org/010rmp704', 'en', 1, 'https://ror.org/010rmp704 Woodrow Wilson Rehabilitation Center Foundation'),
(14738, 'https://ror.org/0308zvy22', 'en', 1, 'https://ror.org/0308zvy22 USTA Foundation'),
(14739, 'https://ror.org/03m0aw686', 'en', 1, 'https://ror.org/03m0aw686 Winchester Hospital'),
(14740, 'https://ror.org/04yvx5a03', 'en', 1, 'https://ror.org/04yvx5a03 WORLD'),
(14741, 'https://ror.org/01khv4e51', 'en', 1, 'https://ror.org/01khv4e51 Wayne Country Day School'),
(14742, 'https://ror.org/040k7ca93', 'en', 1, 'https://ror.org/040k7ca93 World Education'),
(14743, 'https://ror.org/029e1wz89', 'en', 1, 'https://ror.org/029e1wz89 Wind River Cancer Wellness Retreats and Programs'),
(14744, 'https://ror.org/03w8j7142', 'en', 1, 'https://ror.org/03w8j7142 Windber Research Institute'),
(14745, 'https://ror.org/00maq2822', 'en', 1, 'https://ror.org/00maq2822 Self Determination Housing Project of Pennsylvania'),
(14746, 'https://ror.org/04twgwn91', 'en', 1, 'https://ror.org/04twgwn91 The Sherkow Center for Child Development and Autism Spectrum Disorder'),
(14747, 'https://ror.org/03g25vn60', 'en', 1, 'https://ror.org/03g25vn60 Wings Cancer Foundation'),
(14748, 'https://ror.org/044b6j563', 'en', 1, 'https://ror.org/044b6j563 Society of Thoracic Surgeons'),
(14749, 'https://ror.org/04ytszy78', 'en', 1, 'https://ror.org/04ytszy78 Wings of Hope Hospice'),
(14750, 'https://ror.org/02hswss60', 'en', 1, 'https://ror.org/02hswss60 Fairfax Neonatal Associates'),
(14751, 'https://ror.org/0337f4c15', 'en', 1, 'https://ror.org/0337f4c15 WCA Hospital'),
(14752, 'https://ror.org/03ktt9079', 'en', 1, 'https://ror.org/03ktt9079 Neurotech Networks'),
(14753, 'https://ror.org/05ngy7r54', 'en', 1, 'https://ror.org/05ngy7r54 Winning Wheels'),
(14754, 'https://ror.org/01esber41', 'en', 1, 'https://ror.org/01esber41 Wuesthoff Health System'),
(14755, 'https://ror.org/00atett69', 'en', 1, 'https://ror.org/00atett69 Wintergreen Adaptive Sports'),
(14756, 'https://ror.org/00g930198', 'en', 1, 'https://ror.org/00g930198 The Stillpoint Foundation'),
(14757, 'https://ror.org/04ztqy570', 'en', 1, 'https://ror.org/04ztqy570 Sacramento VA Medical Center'),
(14758, 'https://ror.org/0353cdc64', 'en', 1, 'https://ror.org/0353cdc64 The QuadW Foundation'),
(14759, 'https://ror.org/01yxgnz18', 'en', 1, 'https://ror.org/01yxgnz18 Catawba County Schools'),
(14760, 'https://ror.org/0378d7n06', 'en', 1, 'https://ror.org/0378d7n06 Wyoming Comprehensive Cancer Control Consortium'),
(14761, 'https://ror.org/02e1f2f58', 'en', 1, 'https://ror.org/02e1f2f58 Wyoming Services for Independent Living'),
(14762, 'https://ror.org/043n2ap46', 'en', 1, 'https://ror.org/043n2ap46 The School of Theoretical Modeling'),
(14763, 'https://ror.org/02j97b022', 'en', 1, 'https://ror.org/02j97b022 WISE & Healthy Aging'),
(14764, 'https://ror.org/05md44a87', 'en', 1, 'https://ror.org/05md44a87 Wyoming Valley Alcohol and Drug Services'),
(14765, 'https://ror.org/00reded37', 'no_lang_code', 1, 'https://ror.org/00reded37 Valentia Biopharma (Spain)'),
(14766, 'https://ror.org/056t81323', 'en', 1, 'https://ror.org/056t81323 The Seany Foundation'),
(14767, 'https://ror.org/00q6dj830', 'no_lang_code', 1, 'https://ror.org/00q6dj830 WeCanRow DC'),
(14768, 'https://ror.org/02x3e5q37', 'en', 1, 'https://ror.org/02x3e5q37 Weems Community Mental Health Center'),
(14769, 'https://ror.org/057gtbv76', 'en', 1, 'https://ror.org/057gtbv76 Wolfson Children''s Hospital'),
(14770, 'https://ror.org/03x86fq67', 'no_lang_code', 1, 'https://ror.org/03x86fq67 Xen Biofluidx (United States)'),
(14771, 'https://ror.org/01pb5g963', 'en', 1, 'https://ror.org/01pb5g963 Xenobe Research Institute'),
(14772, 'https://ror.org/001t4p955', 'no_lang_code', 1, 'https://ror.org/001t4p955 Xeris Pharmaceuticals (United States)'),
(14773, 'https://ror.org/020wewd22', 'en', 1, 'https://ror.org/020wewd22 Valley City State University'),
(14774, 'https://ror.org/03j22xd51', 'no_lang_code', 1, 'https://ror.org/03j22xd51 The SoundWell (United States)'),
(14775, 'https://ror.org/04rpkcv59', 'en', 1, 'https://ror.org/04rpkcv59 Star Center'),
(14776, 'https://ror.org/04vn0ra85', 'en', 1, 'https://ror.org/04vn0ra85 Vessel Work'),
(14777, 'https://ror.org/01ra40f04', 'en', 1, 'https://ror.org/01ra40f04 Veteran Homestead'),
(14778, 'https://ror.org/03prbmy37', 'en', 1, 'https://ror.org/03prbmy37 Women Against Rape'),
(14779, 'https://ror.org/018r09w17', 'en', 1, 'https://ror.org/018r09w17 Strategic Initiative for Women in the Horn of Africa'),
(14780, 'https://ror.org/017bzf706', 'no_lang_code', 1, 'https://ror.org/017bzf706 Summit Medical Group (United States)'),
(14781, 'https://ror.org/00etktf93', 'en', 1, 'https://ror.org/00etktf93 Sunshine Kids Foundation'),
(14782, 'https://ror.org/04fmvrn11', 'en', 1, 'https://ror.org/04fmvrn11 Susan Cohan Colon Cancer Foundation'),
(14783, 'https://ror.org/00zz3bk03', 'en', 1, 'https://ror.org/00zz3bk03 Scharp-Lacy Research Institute'),
(14784, 'https://ror.org/00r67vw60', 'en', 1, 'https://ror.org/00r67vw60 Women Alive'),
(14785, 'https://ror.org/02nxw7t86', 'en', 1, 'https://ror.org/02nxw7t86 UCHealth Yampa Valley Medical Center'),
(14786, 'https://ror.org/038enx362', 'en', 1, 'https://ror.org/038enx362 Vannie E. Cook Jr. Cancer Foundation'),
(14787, 'https://ror.org/01d735r83', 'no_lang_code', 1, 'https://ror.org/01d735r83 Vironika (United States)'),
(14788, 'https://ror.org/041khxm91', 'no_lang_code', 1, 'https://ror.org/041khxm91 Vanquish Oncology (United States)'),
(14789, 'https://ror.org/039g7zn40', 'en', 1, 'https://ror.org/039g7zn40 Veterans Education and Research Association of Northern New England'),
(14790, 'https://ror.org/03t496v77', 'no_lang_code', 1, 'https://ror.org/03t496v77 Virovek (United States)'),
(14791, 'https://ror.org/05dxcae66', 'no_lang_code', 1, 'https://ror.org/05dxcae66 Vantia (United Kingdom)'),
(14792, 'https://ror.org/058az4744', 'en', 1, 'https://ror.org/058az4744 Virtua Health'),
(14793, 'https://ror.org/03jbgaw48', 'en', 1, 'https://ror.org/03jbgaw48 Women for Peace and Democracy – Nepal'),
(14794, 'https://ror.org/017m4fy44', 'en', 1, 'https://ror.org/017m4fy44 Veterans Research Foundation of Pittsburgh'),
(14795, 'https://ror.org/00k1x1157', 'en', 1, 'https://ror.org/00k1x1157 Variety The Children''s Charity'),
(14796, 'https://ror.org/00gm39w38', 'en', 1, 'https://ror.org/00gm39w38 Women Involved in Nurturing, Giving, Sharing'),
(14797, 'https://ror.org/045zwy983', 'en', 1, 'https://ror.org/045zwy983 Women of Faith and Hope'),
(14798, 'https://ror.org/055rvqr15', 'en', 1, 'https://ror.org/055rvqr15 Visions'),
(14799, 'https://ror.org/045w5nd37', 'en', 1, 'https://ror.org/045w5nd37 Visitation Catholic School'),
(14800, 'https://ror.org/011dxht06', 'en', 1, 'https://ror.org/011dxht06 Women of W.O.R.T.H.'),
(14801, 'https://ror.org/02tbyrb23', 'en', 1, 'https://ror.org/02tbyrb23 Visiting Nurse Association of Erie County'),
(14802, 'https://ror.org/0492wg980', 'en', 1, 'https://ror.org/0492wg980 Women With A Vision'),
(14803, 'https://ror.org/04wpg4c25', 'en', 1, 'https://ror.org/04wpg4c25 The University of Vermont Health Network Home Health & Hospice'),
(14804, 'https://ror.org/05esks986', 'en', 1, 'https://ror.org/05esks986 Yankton Rural Area Health Education Center'),
(14805, 'https://ror.org/028658z74', 'en', 1, 'https://ror.org/028658z74 University of Maryland Upper Chesapeake Health'),
(14806, 'https://ror.org/01e2ynf23', 'en', 1, 'https://ror.org/01e2ynf23 Women''s and Children''s Health Network'),
(14807, 'https://ror.org/0480v3r94', 'en', 1, 'https://ror.org/0480v3r94 Torrance Memorial Medical Center'),
(14808, 'https://ror.org/01mqtae40', 'en', 1, 'https://ror.org/01mqtae40 Vista Community Clinic'),
(14809, 'https://ror.org/05pvkp656', 'en', 1, 'https://ror.org/05pvkp656 RiverStone Health'),
(14810, 'https://ror.org/00svqj211', 'en', 1, 'https://ror.org/00svqj211 Vital Research'),
(14811, 'https://ror.org/05x54c792', 'en', 1, 'https://ror.org/05x54c792 Women''s Cancer Resource Center'),
(14812, 'https://ror.org/007wqy698', 'no_lang_code', 1, 'https://ror.org/007wqy698 Vastrata (United Kingdom)'),
(14813, 'https://ror.org/0511egv62', 'no_lang_code', 1, 'https://ror.org/0511egv62 Viamet Pharmaceuticals (United States)'),
(14814, 'https://ror.org/05fwx1x78', 'no_lang_code', 1, 'https://ror.org/05fwx1x78 Vaxiion Therapeutics (United States)'),
(14815, 'https://ror.org/04kz5w381', 'en', 1, 'https://ror.org/04kz5w381 Family Health Enterprise'),
(14816, 'https://ror.org/01c2t8z64', 'en', 1, 'https://ror.org/01c2t8z64 Vector Physical Therapy & Aquatic Center'),
(14817, 'https://ror.org/042t7yh44', 'en', 1, 'https://ror.org/042t7yh44 Women''s Hospital, School of Medicine, Zhejiang University 浙江大学医学院附属妇产科医院'),
(14818, 'https://ror.org/05xfx3765', 'en', 1, 'https://ror.org/05xfx3765 Women''s International Leadership Institute'),
(14819, 'https://ror.org/03m0pn190', 'en', 1, 'https://ror.org/03m0pn190 Yo San University'),
(14820, 'https://ror.org/04jzz3236', 'en', 1, 'https://ror.org/04jzz3236 Victory Christian International Ministries'),
(14821, 'https://ror.org/01wt2ek55', 'en', 1, 'https://ror.org/01wt2ek55 Women''s International Network for Guatemalan Solutions'),
(14822, 'https://ror.org/026m45d12', 'en', 1, 'https://ror.org/026m45d12 Yonkers Partners in Education'),
(14823, 'https://ror.org/0218mdk53', 'en', 1, 'https://ror.org/0218mdk53 Victory Walk'),
(14824, 'https://ror.org/00kczx164', 'no_lang_code', 1, 'https://ror.org/00kczx164 Verda Bio (United States)'),
(14825, 'https://ror.org/056nnvc71', 'en', 1, 'https://ror.org/056nnvc71 Women''s Link Worldwide'),
(14826, 'https://ror.org/04k3etn62', 'en', 1, 'https://ror.org/04k3etn62 Vermont Cancer Support Network'),
(14827, 'https://ror.org/027cjrx78', 'en', 1, 'https://ror.org/027cjrx78 Vermont Program for Quality in Health Care'),
(14828, 'https://ror.org/033rkxx65', 'en', 1, 'https://ror.org/033rkxx65 Vermont Studio Center'),
(14829, 'https://ror.org/01w5m5321', 'en', 1, 'https://ror.org/01w5m5321 Young Adult Institute'),
(14830, 'https://ror.org/05406m268', 'no_lang_code', 1, 'https://ror.org/05406m268 Applied DNA Sciences (United States)'),
(14831, 'https://ror.org/02ba81j73', 'no_lang_code', 1, 'https://ror.org/02ba81j73 ViOptix (United States)'),
(14832, 'https://ror.org/02rxpm513', 'no_lang_code', 1, 'https://ror.org/02rxpm513 VLP Therapeutics (United States)'),
(14833, 'https://ror.org/04fq6zd17', 'en', 1, 'https://ror.org/04fq6zd17 Virginia Hospital Center');
INSERT INTO `rors` VALUES
(14834, 'https://ror.org/017aszj34', 'en', 1, 'https://ror.org/017aszj34 Voices Against Brain Cancer'),
(14835, 'https://ror.org/05tpcqx04', 'en', 1, 'https://ror.org/05tpcqx04 Volunteers of America Alaska'),
(14836, 'https://ror.org/044a2za73', 'en', 1, 'https://ror.org/044a2za73 Education of Young Leaders Society for Training and Development'),
(14837, 'https://ror.org/0466tpr53', 'en', 1, 'https://ror.org/0466tpr53 International Foundation of Employee Benefit Plans'),
(14838, 'https://ror.org/02k9d9y07', 'en', 1, 'https://ror.org/02k9d9y07 Academy of Management'),
(14839, 'https://ror.org/05cd3ee03', 'en', 1, 'https://ror.org/05cd3ee03 ACLS Humanities E-Book'),
(14840, 'https://ror.org/02ct8rs48', 'en', 1, 'https://ror.org/02ct8rs48 Young Survival Coalition'),
(14841, 'https://ror.org/00by5pn87', 'no_lang_code', 1, 'https://ror.org/00by5pn87 CUNA Mutual Group (United States)'),
(14842, 'https://ror.org/00jy1h085', 'en', 1, 'https://ror.org/00jy1h085 Young Women''s Christian Association'),
(14843, 'https://ror.org/014g11b23', 'en', 1, 'https://ror.org/014g11b23 University of Vermont Children’s Hospital'),
(14844, 'https://ror.org/00vdend65', 'en', 1, 'https://ror.org/00vdend65 International Union of Crystallography'),
(14845, 'https://ror.org/00ttyp561', 'en', 1, 'https://ror.org/00ttyp561 Addison Public Library'),
(14846, 'https://ror.org/019hqrp02', 'en', 1, 'https://ror.org/019hqrp02 Iron County Historical Museum'),
(14847, 'https://ror.org/015jw8x57', 'en', 1, 'https://ror.org/015jw8x57 Youth Alive Uganda'),
(14848, 'https://ror.org/02j42wf49', 'en', 1, 'https://ror.org/02j42wf49 Cuyahoga County Public Library'),
(14849, 'https://ror.org/00egpfv87', 'no_lang_code', 1, 'https://ror.org/00egpfv87 Adelphi Group (United Kingdom)'),
(14850, 'https://ror.org/004rj7d23', 'en', 1, 'https://ror.org/004rj7d23 Dance Heritage Coalition'),
(14851, 'https://ror.org/03t1snc02', 'en', 1, 'https://ror.org/03t1snc02 Advocate South Suburban Hospital'),
(14852, 'https://ror.org/008ja9m31', 'en', 1, 'https://ror.org/008ja9m31 IT''S TIME TEXAS'),
(14853, 'https://ror.org/03gqeqw02', 'en', 1, 'https://ror.org/03gqeqw02 Youth Net and Counselling'),
(14854, 'https://ror.org/00xvfm661', 'en', 1, 'https://ror.org/00xvfm661 Advocate Trinity Hospital'),
(14855, 'https://ror.org/006p15d12', 'en', 1, 'https://ror.org/006p15d12 Daughters of the American Revolution'),
(14856, 'https://ror.org/00g1w6p21', 'en', 1, 'https://ror.org/00g1w6p21 Youth & Opportunity United'),
(14857, 'https://ror.org/004jgdy75', 'en', 1, 'https://ror.org/004jgdy75 Youth Rights Media'),
(14858, 'https://ror.org/042656673', 'en', 1, 'https://ror.org/042656673 Agricultural Institute of Canada'),
(14859, 'https://ror.org/0374c0d66', 'en', 1, 'https://ror.org/0374c0d66 National Louis University'),
(14860, 'https://ror.org/05w0qtv14', 'en', 1, 'https://ror.org/05w0qtv14 American InterContinental University'),
(14861, 'https://ror.org/01yw7hk96', 'no_lang_code', 1, 'https://ror.org/01yw7hk96 Dragonfly Sales and Marketing Consulting (United States)'),
(14862, 'https://ror.org/056bwsz84', 'en', 1, 'https://ror.org/056bwsz84 Akron Art Museum'),
(14863, 'https://ror.org/05p403c12', 'en', 1, 'https://ror.org/05p403c12 Akron-Summit County Public Library'),
(14864, 'https://ror.org/05k7mmk88', 'en', 1, 'https://ror.org/05k7mmk88 Youth Unlimited Programs'),
(14865, 'https://ror.org/018xp1p31', 'en', 1, 'https://ror.org/018xp1p31 ITT Technical Institute'),
(14866, 'https://ror.org/03gg7kg14', 'en', 1, 'https://ror.org/03gg7kg14 youthSpark'),
(14867, 'https://ror.org/04sfrpz15', 'en', 1, 'https://ror.org/04sfrpz15 Dairyland Power Cooperative'),
(14868, 'https://ror.org/02gyj7q16', 'en', 1, 'https://ror.org/02gyj7q16 YouthWorks'),
(14869, 'https://ror.org/03rce1k45', 'en', 1, 'https://ror.org/03rce1k45 Daniel Boone Regional Library'),
(14870, 'https://ror.org/01y823z67', 'en', 1, 'https://ror.org/01y823z67 Danville Area Community College'),
(14871, 'https://ror.org/04ejmve12', 'no_lang_code', 1, 'https://ror.org/04ejmve12 J. J. Keller & Associates (United States)'),
(14872, 'https://ror.org/036hyk644', 'en', 1, 'https://ror.org/036hyk644 Nazarene Theological Seminary'),
(14873, 'https://ror.org/055e80y87', 'en', 1, 'https://ror.org/055e80y87 Davenport University'),
(14874, 'https://ror.org/03wfejh61', 'no_lang_code', 1, 'https://ror.org/03wfejh61 J.M. Smucker Company (United States)'),
(14875, 'https://ror.org/00x9bsj94', 'no_lang_code', 1, 'https://ror.org/00x9bsj94 Emirates NBD'),
(14876, 'https://ror.org/01w92sn15', 'en', 1, 'https://ror.org/01w92sn15 Jackson District Library'),
(14877, 'https://ror.org/05986z039', 'en', 1, 'https://ror.org/05986z039 Chancellor University'),
(14878, 'https://ror.org/00qmb6m92', 'en', 1, 'https://ror.org/00qmb6m92 The Nelson-Atkins Museum of Art'),
(14879, 'https://ror.org/03k3pk368', 'en', 1, 'https://ror.org/03k3pk368 Allen County Public Library'),
(14880, 'https://ror.org/010sn2g43', 'en', 1, 'https://ror.org/010sn2g43 Jasper County Public Library'),
(14881, 'https://ror.org/006k1vg57', 'no_lang_code', 1, 'https://ror.org/006k1vg57 Allen Press (United States)'),
(14882, 'https://ror.org/0435xdk58', 'en', 1, 'https://ror.org/0435xdk58 NERL Consortium'),
(14883, 'https://ror.org/043fmt380', 'en', 1, 'https://ror.org/043fmt380 Dayton Metro Library'),
(14884, 'https://ror.org/04stxdv93', 'en', 1, 'https://ror.org/04stxdv93 Jefferson County Library System'),
(14885, 'https://ror.org/02h1ae871', 'no_lang_code', 1, 'https://ror.org/02h1ae871 Alliant Energy (United States)'),
(14886, 'https://ror.org/007b60k22', 'en', 1, 'https://ror.org/007b60k22 Empire State Library Network'),
(14887, 'https://ror.org/02dzmwb51', 'en', 1, 'https://ror.org/02dzmwb51 Decatur Public Library'),
(14888, 'https://ror.org/01479wc11', 'en', 1, 'https://ror.org/01479wc11 Association of Learned and Professional Society Publishers'),
(14889, 'https://ror.org/00tf97v72', 'no_lang_code', 1, 'https://ror.org/00tf97v72 Zealand Pharma (Denmark)'),
(14890, 'https://ror.org/00wxk2s46', 'en', 1, 'https://ror.org/00wxk2s46 Newberry Library'),
(14891, 'https://ror.org/02vv13147', 'en', 1, 'https://ror.org/02vv13147 Deerfield Public Library'),
(14892, 'https://ror.org/040jdz280', 'en', 1, 'https://ror.org/040jdz280 National Federation of Advanced Information Services'),
(14893, 'https://ror.org/04kq9w562', 'en', 1, 'https://ror.org/04kq9w562 JKM Library'),
(14894, 'https://ror.org/03rjyn861', 'en', 1, 'https://ror.org/03rjyn861 Zekel Healthcare'),
(14895, 'https://ror.org/05q0wgb11', 'en', 1, 'https://ror.org/05q0wgb11 John A. Logan College'),
(14896, 'https://ror.org/02ph8mh81', 'no_lang_code', 1, 'https://ror.org/02ph8mh81 Zenobia Therapeutics (United States)'),
(14897, 'https://ror.org/01h49hc89', 'en', 1, 'https://ror.org/01h49hc89 Normal Public Library'),
(14898, 'https://ror.org/00gbzqw74', 'en', 1, 'https://ror.org/00gbzqw74 Wolf Park'),
(14899, 'https://ror.org/05jd76e15', 'en', 1, 'https://ror.org/05jd76e15 Zero Breast Cancer'),
(14900, 'https://ror.org/000jj6973', 'en', 1, 'https://ror.org/000jj6973 John Wood Community College'),
(14901, 'https://ror.org/010qzgm63', 'en', 1, 'https://ror.org/010qzgm63 Northbrook Public Library'),
(14902, 'https://ror.org/01pqc3561', 'en', 1, 'https://ror.org/01pqc3561 American Academy of Child and Adolescent Psychiatry'),
(14903, 'https://ror.org/022vf5950', 'en', 1, 'https://ror.org/022vf5950 Northcentral Technical College'),
(14904, 'https://ror.org/0024sf220', 'en', 1, 'https://ror.org/0024sf220 American Accounting Association'),
(14905, 'https://ror.org/03679qg67', 'en', 1, 'https://ror.org/03679qg67 Johnson County Public Library'),
(14906, 'https://ror.org/00mcbta55', 'en', 1, 'https://ror.org/00mcbta55 American Association for Clinical Chemistry'),
(14907, 'https://ror.org/016yz4963', 'en', 1, 'https://ror.org/016yz4963 Des Plaines Public Library'),
(14908, 'https://ror.org/02v6d7v96', 'en', 1, 'https://ror.org/02v6d7v96 Joliet Public Library'),
(14909, 'https://ror.org/02j798m12', 'en', 1, 'https://ror.org/02j798m12 American Bankers Association'),
(14910, 'https://ror.org/05gjd3067', 'en', 1, 'https://ror.org/05gjd3067 Youth Action on Tobacco Control and Health'),
(14911, 'https://ror.org/00a1rzv11', 'en', 1, 'https://ror.org/00a1rzv11 American Institute of Aeronautics and Astronautics'),
(14912, 'https://ror.org/05ecqm310', 'en', 1, 'https://ror.org/05ecqm310 Northwest State Community College'),
(14913, 'https://ror.org/05ngeh012', 'en', 1, 'https://ror.org/05ngeh012 Northwestern College - Illinois'),
(14914, 'https://ror.org/00f3ntm46', 'en', 1, 'https://ror.org/00f3ntm46 American Nuclear Society'),
(14915, 'https://ror.org/025e3bx20', 'en', 1, 'https://ror.org/025e3bx20 Northwestern Michigan College'),
(14916, 'https://ror.org/01np7wb66', 'en', 1, 'https://ror.org/01np7wb66 White Oak Library District'),
(14917, 'https://ror.org/03xr60403', 'en', 1, 'https://ror.org/03xr60403 Terra State Community College'),
(14918, 'https://ror.org/01nm0pb19', 'en', 1, 'https://ror.org/01nm0pb19 Judson University'),
(14919, 'https://ror.org/04zjxe411', 'en', 1, 'https://ror.org/04zjxe411 Detroit Public Library'),
(14920, 'https://ror.org/0444akq51', 'no_lang_code', 1, 'https://ror.org/0444akq51 Now Publishers (United States)'),
(14921, 'https://ror.org/00rw81y84', 'en', 1, 'https://ror.org/00rw81y84 Kalamazoo Valley Community College'),
(14922, 'https://ror.org/00g46nx55', 'en', 1, 'https://ror.org/00g46nx55 New York State Energy Research and Development Authority'),
(14923, 'https://ror.org/023hfjp48', 'en', 1, 'https://ror.org/023hfjp48 Kankakee Community College'),
(14924, 'https://ror.org/05kxwp233', 'en', 1, 'https://ror.org/05kxwp233 Oak Lawn Public Library'),
(14925, 'https://ror.org/04mk6vb04', 'en', 1, 'https://ror.org/04mk6vb04 Southeastern Wisconsin Information Technology Exchange Consortium'),
(14926, 'https://ror.org/0201vsb50', 'en', 1, 'https://ror.org/0201vsb50 Oak Park Public Library'),
(14927, 'https://ror.org/03zh9kr32', 'en', 1, 'https://ror.org/03zh9kr32 American Sokol'),
(14928, 'https://ror.org/02jatdd65', 'en', 1, 'https://ror.org/02jatdd65 American Theological Library Association'),
(14929, 'https://ror.org/03nsh5473', 'en', 1, 'https://ror.org/03nsh5473 Oakland Community College'),
(14930, 'https://ror.org/05kxs0h64', 'en', 1, 'https://ror.org/05kxs0h64 Kankakee County Museum'),
(14931, 'https://ror.org/04pwkqp57', 'en', 1, 'https://ror.org/04pwkqp57 Kansas City Public Library'),
(14932, 'https://ror.org/018pahb94', 'en', 1, 'https://ror.org/018pahb94 Texas Digital Library'),
(14933, 'https://ror.org/053pbpj30', 'en', 1, 'https://ror.org/053pbpj30 American Veterinary Medical Association'),
(14934, 'https://ror.org/00b132w65', 'en', 1, 'https://ror.org/00b132w65 Texas State Library and Archives Commission'),
(14935, 'https://ror.org/05cmkp264', 'en', 1, 'https://ror.org/05cmkp264 British Institute of Radiology'),
(14936, 'https://ror.org/028215596', 'en', 1, 'https://ror.org/028215596 Ontario Council of University Libraries'),
(14937, 'https://ror.org/02z38kp20', 'en', 1, 'https://ror.org/02z38kp20 DeVry University'),
(14938, 'https://ror.org/04b3zhw41', 'en', 1, 'https://ror.org/04b3zhw41 Kaskaskia College'),
(14939, 'https://ror.org/05pdgb763', 'no_lang_code', 1, 'https://ror.org/05pdgb763 Analog and Digital Peripherals (United States)'),
(14940, 'https://ror.org/05y26rr34', 'en', 1, 'https://ror.org/05y26rr34 Ancilla College'),
(14941, 'https://ror.org/05h8s0v03', 'en', 1, 'https://ror.org/05h8s0v03 The Ohio State University at Mansfield'),
(14942, 'https://ror.org/035bjd142', 'no_lang_code', 1, 'https://ror.org/035bjd142 Anheuser-Busch InBev (United States)'),
(14943, 'https://ror.org/05pbmky22', 'no_lang_code', 1, 'https://ror.org/05pbmky22 Dickinson Wright (United States)'),
(14944, 'https://ror.org/00mfsk397', 'en', 1, 'https://ror.org/00mfsk397 District of Columbia Public Library'),
(14945, 'https://ror.org/05r2g1b90', 'en', 1, 'https://ror.org/05r2g1b90 Annual Reviews'),
(14946, 'https://ror.org/0288es483', 'en', 1, 'https://ror.org/0288es483 Ewing Marion Kauffman Foundation'),
(14947, 'https://ror.org/03n4efr54', 'no_lang_code', 1, 'https://ror.org/03n4efr54 OhioNET'),
(14948, 'https://ror.org/01bwmqz48', 'en', 1, 'https://ror.org/01bwmqz48 One Earth Future Foundation'),
(14949, 'https://ror.org/004h3nh40', 'en', 1, 'https://ror.org/004h3nh40 Kendall College'),
(14950, 'https://ror.org/022pv2091', 'en', 1, 'https://ror.org/022pv2091 Appleton Public Library'),
(14951, 'https://ror.org/05jp8nm45', 'en', 1, 'https://ror.org/05jp8nm45 Open The Government'),
(14952, 'https://ror.org/005v5p387', 'en', 1, 'https://ror.org/005v5p387 Kent District Library'),
(14953, 'https://ror.org/04t3pzj12', 'en', 1, 'https://ror.org/04t3pzj12 Archdiocese of Chicago'),
(14954, 'https://ror.org/01b3cvv10', 'en', 1, 'https://ror.org/01b3cvv10 Archdiocese of St. Louis Archidiocèse Catholique de St. Louis'),
(14955, 'https://ror.org/019p1xx37', 'en', 1, 'https://ror.org/019p1xx37 College des arts médicaux de kettering Kettering College'),
(14956, 'https://ror.org/02amd0s90', 'en', 1, 'https://ror.org/02amd0s90 Tippecanoe County Public Library'),
(14957, 'https://ror.org/013ddcx26', 'en', 1, 'https://ror.org/013ddcx26 Orland Park Public Library'),
(14958, 'https://ror.org/00f3sby32', 'en', 1, 'https://ror.org/00f3sby32 Kirtland Community College'),
(14959, 'https://ror.org/00q25bx70', 'no_lang_code', 1, 'https://ror.org/00q25bx70 Doximity (United States)'),
(14960, 'https://ror.org/0303sda91', 'en', 1, 'https://ror.org/0303sda91 Kishwaukee College'),
(14961, 'https://ror.org/0101b3513', 'en', 1, 'https://ror.org/0101b3513 Toledo Museum of Art'),
(14962, 'https://ror.org/04np39c31', 'en', 1, 'https://ror.org/04np39c31 Oshkosh Public Library'),
(14963, 'https://ror.org/00mp1mt27', 'en', 1, 'https://ror.org/00mp1mt27 Knowledge Systems Institute'),
(14964, 'https://ror.org/03sb41874', 'en', 1, 'https://ror.org/03sb41874 Arlington Heights Memorial Library'),
(14965, 'https://ror.org/01cr6y145', 'en', 1, 'https://ror.org/01cr6y145 Toledo Lucas County Public Library'),
(14966, 'https://ror.org/02xfmex92', 'en', 1, 'https://ror.org/02xfmex92 Army and Navy Club'),
(14967, 'https://ror.org/04r50xh35', 'en', 1, 'https://ror.org/04r50xh35 Palatine Public Library District'),
(14968, 'https://ror.org/03kyqs312', 'en', 1, 'https://ror.org/03kyqs312 Art Institute of Chicago Institut d''Art de Chicago Instituto de Arte de Chicago'),
(14969, 'https://ror.org/02m6s1q30', 'en', 1, 'https://ror.org/02m6s1q30 Pennsylvania Academic Library Consortium'),
(14970, 'https://ror.org/04hmk0w62', 'en', 1, 'https://ror.org/04hmk0w62 Kokomo-Howard County Public Library'),
(14971, 'https://ror.org/00ntmzg98', 'no_lang_code', 1, 'https://ror.org/00ntmzg98 Meritor (United States)'),
(14972, 'https://ror.org/01avta769', 'en', 1, 'https://ror.org/01avta769 Trinity Christian College'),
(14973, 'https://ror.org/050hz4v21', 'no_lang_code', 1, 'https://ror.org/050hz4v21 A2Dominion'),
(14974, 'https://ror.org/0454dtg60', 'en', 1, 'https://ror.org/0454dtg60 Reaching Across Illinois Library System'),
(14975, 'https://ror.org/0151q7p66', 'en', 1, 'https://ror.org/0151q7p66 Assemblies of God Theological Seminary'),
(14976, 'https://ror.org/0382ee542', 'en', 1, 'https://ror.org/0382ee542 Park Ridge Public Library'),
(14977, 'https://ror.org/0497jzm12', 'no_lang_code', 1, 'https://ror.org/0497jzm12 Dykema (United States)'),
(14978, 'https://ror.org/025jta476', 'en', 1, 'https://ror.org/025jta476 Experimental Aircraft Association'),
(14979, 'https://ror.org/0251ehn88', 'en', 1, 'https://ror.org/0251ehn88 Trinity International University'),
(14980, 'https://ror.org/03cpyj611', 'en', 1, 'https://ror.org/03cpyj611 East Central College'),
(14981, 'https://ror.org/04qv87944', 'en', 1, 'https://ror.org/04qv87944 Trinity Lutheran Seminary'),
(14982, 'https://ror.org/04sn0fx55', 'en', 1, 'https://ror.org/04sn0fx55 Troy Public Library'),
(14983, 'https://ror.org/030148f67', 'en', 1, 'https://ror.org/030148f67 Tuscarawas County Public Library'),
(14984, 'https://ror.org/03hd9e620', 'en', 1, 'https://ror.org/03hd9e620 Pediatric Neurology Briefs'),
(14985, 'https://ror.org/03r8kkn98', 'en', 1, 'https://ror.org/03r8kkn98 L.E. Phillips Memorial Public Library'),
(14986, 'https://ror.org/058hrmf93', 'en', 1, 'https://ror.org/058hrmf93 La Crosse Public Library'),
(14987, 'https://ror.org/03kxew167', 'en', 1, 'https://ror.org/03kxew167 La Grange Public Library'),
(14988, 'https://ror.org/030z4b668', 'en', 1, 'https://ror.org/030z4b668 Assyrian Universal Alliance Foundation'),
(14989, 'https://ror.org/03x9snd86', 'no_lang_code', 1, 'https://ror.org/03x9snd86 PeerJ (United States)'),
(14990, 'https://ror.org/05rs7kt47', 'en', 1, 'https://ror.org/05rs7kt47 Peninsula Library and Historical Society'),
(14991, 'https://ror.org/00dsy9f04', 'no_lang_code', 1, 'https://ror.org/00dsy9f04 EBSCO Industries (United States) EBSCO Information Services Ebsco information services'),
(14992, 'https://ror.org/02h98mq12', 'en', 1, 'https://ror.org/02h98mq12 Peoria Public Library'),
(14993, 'https://ror.org/03gnfa870', 'en', 1, 'https://ror.org/03gnfa870 Athenaeum of Ohio'),
(14994, 'https://ror.org/012f6s028', 'en', 1, 'https://ror.org/012f6s028 Hormel Foundation'),
(14995, 'https://ror.org/02qmwve08', 'en', 1, 'https://ror.org/02qmwve08 Auburn Cord Duesenberg Automobile Museum'),
(14996, 'https://ror.org/041dgkx86', 'en', 1, 'https://ror.org/041dgkx86 Audrain County Historical Society'),
(14997, 'https://ror.org/03z3dqe20', 'en', 1, 'https://ror.org/03z3dqe20 Educopia Institute'),
(14998, 'https://ror.org/02jg7b497', 'en', 1, 'https://ror.org/02jg7b497 Ukrainian Museum-Archives'),
(14999, 'https://ror.org/019wcja80', 'en', 1, 'https://ror.org/019wcja80 Lake County Forest Preserves'),
(15000, 'https://ror.org/00dvjtq12', 'en', 1, 'https://ror.org/00dvjtq12 Lake Erie College'),
(15001, 'https://ror.org/00md6a739', 'en', 1, 'https://ror.org/00md6a739 Phillips Collection'),
(15002, 'https://ror.org/05n2bp911', 'en', 1, 'https://ror.org/05n2bp911 Eiteljorg Museum of American Indians and Western Art'),
(15003, 'https://ror.org/04bd74a48', 'en', 1, 'https://ror.org/04bd74a48 Lake Land College'),
(15004, 'https://ror.org/01tr8yj97', 'en', 1, 'https://ror.org/01tr8yj97 Aurora Public Library'),
(15005, 'https://ror.org/008zgvp64', 'en', 1, 'https://ror.org/008zgvp64 Public Library of Science'),
(15006, 'https://ror.org/019qrs910', 'en', 1, 'https://ror.org/019qrs910 Electronic Privacy Information Center'),
(15007, 'https://ror.org/04zagqw70', 'en', 1, 'https://ror.org/04zagqw70 Plymouth Historical Museum'),
(15008, 'https://ror.org/0510trc57', 'en', 1, 'https://ror.org/0510trc57 Lake Michigan College'),
(15009, 'https://ror.org/05w72d176', 'en', 1, 'https://ror.org/05w72d176 The People of the United Methodist Church'),
(15010, 'https://ror.org/02ep5c830', 'en', 1, 'https://ror.org/02ep5c830 Pontifical College Josephinum'),
(15011, 'https://ror.org/01j1n9y37', 'en', 1, 'https://ror.org/01j1n9y37 Ave Maria School of Law Escuela de Derecho Ave María'),
(15012, 'https://ror.org/02p30c858', 'en', 1, 'https://ror.org/02p30c858 Lakeland Library Cooperative'),
(15013, 'https://ror.org/01weqjw56', 'en', 1, 'https://ror.org/01weqjw56 Elk Grove Village Public Library'),
(15014, 'https://ror.org/048rsxe24', 'en', 1, 'https://ror.org/048rsxe24 Lakeshore Technical College'),
(15015, 'https://ror.org/05r830x40', 'en', 1, 'https://ror.org/05r830x40 Grand Forks Air Force Base'),
(15016, 'https://ror.org/01015b329', 'en', 1, 'https://ror.org/01015b329 Elkhart Public Library'),
(15017, 'https://ror.org/051tq1j63', 'en', 1, 'https://ror.org/051tq1j63 Elmhurst History Museum'),
(15018, 'https://ror.org/02yfbej13', 'en', 1, 'https://ror.org/02yfbej13 Elmhurst Public Library'),
(15019, 'https://ror.org/043bemg15', 'en', 1, 'https://ror.org/043bemg15 Lakeview College of Nursing'),
(15020, 'https://ror.org/01yc4ac23', 'en', 1, 'https://ror.org/01yc4ac23 Baldwin Public Library'),
(15021, 'https://ror.org/03p9p9g95', 'en', 1, 'https://ror.org/03p9p9g95 Balzekas Museum of Lithuanian Culture'),
(15022, 'https://ror.org/04vejaw21', 'en', 1, 'https://ror.org/04vejaw21 Portage County District Library'),
(15023, 'https://ror.org/02vpcxy68', 'en', 1, 'https://ror.org/02vpcxy68 Elyria Public Library System'),
(15024, 'https://ror.org/00s7qay03', 'en', 1, 'https://ror.org/00s7qay03 Portage County Public Library'),
(15025, 'https://ror.org/02nwxzm09', 'en', 1, 'https://ror.org/02nwxzm09 Lansing Community College'),
(15026, 'https://ror.org/040shh675', 'en', 1, 'https://ror.org/040shh675 Porter County Public Library System'),
(15027, 'https://ror.org/04sr9sh66', 'en', 1, 'https://ror.org/04sr9sh66 Bartlett Public Library District'),
(15028, 'https://ror.org/03084a880', 'no_lang_code', 1, 'https://ror.org/03084a880 Latham & Watkins (United States)'),
(15029, 'https://ror.org/04asmr016', 'en', 1, 'https://ror.org/04asmr016 Bay County Library System'),
(15030, 'https://ror.org/02ah3w196', 'en', 1, 'https://ror.org/02ah3w196 Leather Archives and Museum'),
(15031, 'https://ror.org/04fmn4153', 'en', 1, 'https://ror.org/04fmn4153 Leelanau Historical Society'),
(15032, 'https://ror.org/02wd3kv51', 'en', 1, 'https://ror.org/02wd3kv51 Leigh Yawkey Woodson Art Museum'),
(15033, 'https://ror.org/04axy2g94', 'en', 1, 'https://ror.org/04axy2g94 Euclid Public Library'),
(15034, 'https://ror.org/04ybtcs72', 'en', 1, 'https://ror.org/04ybtcs72 Eureka College'),
(15035, 'https://ror.org/0588atr11', 'en', 1, 'https://ror.org/0588atr11 Illinois Community College Board'),
(15036, 'https://ror.org/057tpct07', 'en', 1, 'https://ror.org/057tpct07 Lenawee District Library'),
(15037, 'https://ror.org/026tpeg39', 'en', 1, 'https://ror.org/026tpeg39 Evanston Public Library'),
(15038, 'https://ror.org/04pp47x89', 'en', 1, 'https://ror.org/04pp47x89 Evansville Vanderburgh Public Library'),
(15039, 'https://ror.org/02deb7v37', 'en', 1, 'https://ror.org/02deb7v37 Ohio Attorney General''s Office'),
(15040, 'https://ror.org/04tqs3t69', 'en', 1, 'https://ror.org/04tqs3t69 Bay College'),
(15041, 'https://ror.org/0029qcb02', 'no_lang_code', 1, 'https://ror.org/0029qcb02 Begell House (United States)'),
(15042, 'https://ror.org/034jtsg79', 'no_lang_code', 1, 'https://ror.org/034jtsg79 Evidentia Publishing (Netherlands)'),
(15043, 'https://ror.org/00gpg2q85', 'en', 1, 'https://ror.org/00gpg2q85 Lexington College'),
(15044, 'https://ror.org/00a25bg52', 'en', 1, 'https://ror.org/00a25bg52 Bibliothèque et archives canada Library and Archives Canada'),
(15045, 'https://ror.org/002r6qy28', 'en', 1, 'https://ror.org/002r6qy28 Library of Michigan'),
(15046, 'https://ror.org/02h3mfv55', 'en', 1, 'https://ror.org/02h3mfv55 Lincoln Christian University'),
(15047, 'https://ror.org/051v7cd19', 'en', 1, 'https://ror.org/051v7cd19 Belmont College'),
(15048, 'https://ror.org/02x5wxx17', 'no_lang_code', 1, 'https://ror.org/02x5wxx17 Faculty of 1000 (United States)'),
(15049, 'https://ror.org/04hf9rd26', 'en', 1, 'https://ror.org/04hf9rd26 Preble County District Library'),
(15050, 'https://ror.org/00mdqpf86', 'no_lang_code', 1, 'https://ror.org/00mdqpf86 Bepress (United States)'),
(15051, 'https://ror.org/05wttv044', 'en', 1, 'https://ror.org/05wttv044 Berwyn Public Library'),
(15052, 'https://ror.org/02venxm51', 'en', 1, 'https://ror.org/02venxm51 Principia College'),
(15053, 'https://ror.org/025nqct78', 'en', 1, 'https://ror.org/025nqct78 Agencia de Inteligencia de la Defensa Defense Intelligence Agency'),
(15054, 'https://ror.org/0009s9p66', 'no_lang_code', 1, 'https://ror.org/0009s9p66 BioMed Central (United Kingdom)'),
(15055, 'https://ror.org/05kn3ey67', 'no_lang_code', 1, 'https://ror.org/05kn3ey67 Encyclopædia Britannica (United States)'),
(15056, 'https://ror.org/01nqk4x38', 'en', 1, 'https://ror.org/01nqk4x38 National Defense University Universidad Nacional de Defensa'),
(15057, 'https://ror.org/033whn587', 'en', 1, 'https://ror.org/033whn587 Lincoln Library'),
(15058, 'https://ror.org/00d8n5w16', 'no_lang_code', 1, 'https://ror.org/00d8n5w16 Bioscientifica (United Kingdom)'),
(15059, 'https://ror.org/05v7gv656', 'en', 1, 'https://ror.org/05v7gv656 Federal Energy Regulatory Commission'),
(15060, 'https://ror.org/03n7scr80', 'en', 1, 'https://ror.org/03n7scr80 Federal Reserve Bank of Chicago'),
(15061, 'https://ror.org/01wxdvj03', 'en', 1, 'https://ror.org/01wxdvj03 Federal Reserve Bank of Cleveland'),
(15062, 'https://ror.org/015h21b91', 'en', 1, 'https://ror.org/015h21b91 Federal Reserve Bank of Kansas City'),
(15063, 'https://ror.org/03wwts623', 'en', 1, 'https://ror.org/03wwts623 Public Libraries of Saginaw'),
(15064, 'https://ror.org/020kk1193', 'en', 1, 'https://ror.org/020kk1193 Black Metropolis Research Consortium'),
(15065, 'https://ror.org/03wk3n561', 'en', 1, 'https://ror.org/03wk3n561 Biblioteca Pública de Cincinnati Public Library of Cincinnati and Hamilton County'),
(15066, 'https://ror.org/047mzc334', 'en', 1, 'https://ror.org/047mzc334 Lisle Library District'),
(15067, 'https://ror.org/05g6nzm31', 'en', 1, 'https://ror.org/05g6nzm31 Bloomfield Township Public Library'),
(15068, 'https://ror.org/03nrmdg87', 'en', 1, 'https://ror.org/03nrmdg87 Public Library of Mount Vernon and Knox County'),
(15069, 'https://ror.org/02skhjj30', 'en', 1, 'https://ror.org/02skhjj30 Federal Reserve Bank of St. Louis'),
(15070, 'https://ror.org/03vqwnv59', 'en', 1, 'https://ror.org/03vqwnv59 Grand Rapids Public Museum'),
(15071, 'https://ror.org/0420ycb55', 'en', 1, 'https://ror.org/0420ycb55 Lithuanian Research and Studies Center'),
(15072, 'https://ror.org/05f9xnq60', 'en', 1, 'https://ror.org/05f9xnq60 Livonia Public Library'),
(15073, 'https://ror.org/027w3dq81', 'en', 1, 'https://ror.org/027w3dq81 Blue Mountain Community College'),
(15074, 'https://ror.org/02xa7j758', 'en', 1, 'https://ror.org/02xa7j758 Queensland Children’s Medical Research Institute'),
(15075, 'https://ror.org/02jpn1774', 'en', 1, 'https://ror.org/02jpn1774 Federal Trade Commission'),
(15076, 'https://ror.org/01q6bfj36', 'en', 1, 'https://ror.org/01q6bfj36 Blue Springs Historical Society'),
(15077, 'https://ror.org/00v448643', 'en', 1, 'https://ror.org/00v448643 Federal Reserve Board of Governors'),
(15078, 'https://ror.org/00xgafq27', 'en', 1, 'https://ror.org/00xgafq27 Comisión electoral federal Commission électorale fédérale Federal Election Commission'),
(15079, 'https://ror.org/02ecpn164', 'en', 1, 'https://ror.org/02ecpn164 Quincy Museum'),
(15080, 'https://ror.org/047xexk42', 'en', 1, 'https://ror.org/047xexk42 Lorain Public Library System'),
(15081, 'https://ror.org/05k551411', 'en', 1, 'https://ror.org/05k551411 Racine Art Museum'),
(15082, 'https://ror.org/020xpp268', 'en', 1, 'https://ror.org/020xpp268 Racine Heritage Museum'),
(15083, 'https://ror.org/02vawy993', 'en', 1, 'https://ror.org/02vawy993 United States Government Accountability Office'),
(15084, 'https://ror.org/05fjnk551', 'en', 1, 'https://ror.org/05fjnk551 Racine Public Library'),
(15085, 'https://ror.org/04jgrhh38', 'en', 1, 'https://ror.org/04jgrhh38 United States Government Publishing Office'),
(15086, 'https://ror.org/00g9xdc37', 'en', 1, 'https://ror.org/00g9xdc37 United States House of Representatives'),
(15087, 'https://ror.org/0156efr50', 'no_lang_code', 1, 'https://ror.org/0156efr50 Rand McNally (United States)'),
(15088, 'https://ror.org/05hsggr76', 'en', 1, 'https://ror.org/05hsggr76 Etats-unis. international trade commission United States International Trade Commission'),
(15089, 'https://ror.org/0376wcg10', 'en', 1, 'https://ror.org/0376wcg10 National Counterterrorism Center'),
(15090, 'https://ror.org/051659894', 'no_lang_code', 1, 'https://ror.org/051659894 BP (United States)'),
(15091, 'https://ror.org/006yg7y02', 'en', 1, 'https://ror.org/006yg7y02 Fond du Lac Historical Society'),
(15092, 'https://ror.org/05q0qkg33', 'en', 1, 'https://ror.org/05q0qkg33 Fontbonne University'),
(15093, 'https://ror.org/02qq5j437', 'en', 1, 'https://ror.org/02qq5j437 Brimfield Public Library'),
(15094, 'https://ror.org/03hndsz31', 'en', 1, 'https://ror.org/03hndsz31 British Editorial Society of Bone & Joint Surgery'),
(15095, 'https://ror.org/0351agv44', 'en', 1, 'https://ror.org/0351agv44 National Labor Relations Board'),
(15096, 'https://ror.org/01afspn38', 'en', 1, 'https://ror.org/01afspn38 Prairie State College'),
(15097, 'https://ror.org/03nhmbj89', 'en', 1, 'https://ror.org/03nhmbj89 Comisión Reguladora Nuclear de Estados Unidos Commission de réglementation nucléaire des États-unis United States Nuclear Regulatory Commission'),
(15098, 'https://ror.org/05ffhjy73', 'en', 1, 'https://ror.org/05ffhjy73 MacCormac College'),
(15099, 'https://ror.org/01ep4ry35', 'en', 1, 'https://ror.org/01ep4ry35 Madison County Historical Society'),
(15100, 'https://ror.org/0114yjq47', 'en', 1, 'https://ror.org/0114yjq47 Oficina de Patentes y Marcas de Estados Unidos United States Patent and Trademark Office'),
(15101, 'https://ror.org/05m09p369', 'en', 1, 'https://ror.org/05m09p369 Brown County Library'),
(15102, 'https://ror.org/04zyghr89', 'en', 1, 'https://ror.org/04zyghr89 Pension Benefit Guaranty Corporation'),
(15103, 'https://ror.org/04wzebn39', 'en', 1, 'https://ror.org/04wzebn39 Brown County Public Library'),
(15104, 'https://ror.org/04pfsgw07', 'en', 1, 'https://ror.org/04pfsgw07 Fort Wayne Museum of Art'),
(15105, 'https://ror.org/0507a9w72', 'en', 1, 'https://ror.org/0507a9w72 Brown Mackie College'),
(15106, 'https://ror.org/05spzbw39', 'en', 1, 'https://ror.org/05spzbw39 Brown Mackie College'),
(15107, 'https://ror.org/008g9p546', 'en', 1, 'https://ror.org/008g9p546 Servicio Postal de los Estados Unidos United States Postal Service'),
(15108, 'https://ror.org/00wfvsb96', 'en', 1, 'https://ror.org/00wfvsb96 Fountaindale Public Library'),
(15109, 'https://ror.org/055he6t71', 'en', 1, 'https://ror.org/055he6t71 Mansfield Richland County Public Library'),
(15110, 'https://ror.org/05x3t0w31', 'en', 1, 'https://ror.org/05x3t0w31 Richland Community College'),
(15111, 'https://ror.org/02rdpzb15', 'no_lang_code', 1, 'https://ror.org/02rdpzb15 Bloomberg (United States)'),
(15112, 'https://ror.org/03hr9ag95', 'no_lang_code', 1, 'https://ror.org/03hr9ag95 RMG Consultants (United States)'),
(15113, 'https://ror.org/0554emb10', 'en', 1, 'https://ror.org/0554emb10 Manufacturers’ Representatives Educational Research Foundation'),
(15114, 'https://ror.org/00tsj2f58', 'en', 1, 'https://ror.org/00tsj2f58 United States Senate Library'),
(15115, 'https://ror.org/0295yjh78', 'en', 1, 'https://ror.org/0295yjh78 Rock and Roll Hall of Fame and Museum'),
(15116, 'https://ror.org/032tkjf28', 'no_lang_code', 1, 'https://ror.org/032tkjf28 WPP (United States)'),
(15117, 'https://ror.org/051h5at53', 'en', 1, 'https://ror.org/051h5at53 Marathon County Public Library'),
(15118, 'https://ror.org/059kj1x27', 'en', 1, 'https://ror.org/059kj1x27 Rock County Historical Society'),
(15119, 'https://ror.org/0049d1v72', 'en', 1, 'https://ror.org/0049d1v72 United States Tax Court'),
(15120, 'https://ror.org/05jtwwy05', 'en', 1, 'https://ror.org/05jtwwy05 Rock Valley College'),
(15121, 'https://ror.org/01qwxyq54', 'en', 1, 'https://ror.org/01qwxyq54 Marinette County Libraries'),
(15122, 'https://ror.org/04w30qj40', 'en', 1, 'https://ror.org/04w30qj40 Free Methodist Church'),
(15123, 'https://ror.org/00dttrm27', 'en', 1, 'https://ror.org/00dttrm27 Rockford Public Library'),
(15124, 'https://ror.org/043b9gp27', 'en', 1, 'https://ror.org/043b9gp27 Architect of the Capitol'),
(15125, 'https://ror.org/0052bbe49', 'en', 1, 'https://ror.org/0052bbe49 Rocky River Public Library'),
(15126, 'https://ror.org/003wz8a04', 'en', 1, 'https://ror.org/003wz8a04 Friends of Historic Boonville'),
(15127, 'https://ror.org/02f6vcb37', 'en', 1, 'https://ror.org/02f6vcb37 Martin Township Public Library'),
(15128, 'https://ror.org/02em5fs68', 'en', 1, 'https://ror.org/02em5fs68 Rodman Public Library'),
(15129, 'https://ror.org/05ttdb909', 'en', 1, 'https://ror.org/05ttdb909 Max Perutz Library'),
(15130, 'https://ror.org/04vft5g71', 'en', 1, 'https://ror.org/04vft5g71 Ruth Mott Foundation'),
(15131, 'https://ror.org/0505c3j52', 'no_lang_code', 1, 'https://ror.org/0505c3j52 Sabinet (South Africa)'),
(15132, 'https://ror.org/054zgtc98', 'en', 1, 'https://ror.org/054zgtc98 Calumet College of Saint Joseph Calumet College of St. Joseph'),
(15133, 'https://ror.org/055s5z318', 'en', 1, 'https://ror.org/055s5z318 Sacred Heart Major Seminary'),
(15134, 'https://ror.org/04xqb6e91', 'en', 1, 'https://ror.org/04xqb6e91 Calvary Bible College'),
(15135, 'https://ror.org/0369thf37', 'en', 1, 'https://ror.org/0369thf37 Illinois Eastern Community Colleges'),
(15136, 'https://ror.org/00kf0ew11', 'en', 1, 'https://ror.org/00kf0ew11 University Center of Lake County'),
(15137, 'https://ror.org/046b74p91', 'no_lang_code', 1, 'https://ror.org/046b74p91 Mayer Brown (United States)'),
(15138, 'https://ror.org/05xdrja94', 'en', 1, 'https://ror.org/05xdrja94 Gail Borden Public Library District'),
(15139, 'https://ror.org/00w2b1v71', 'en', 1, 'https://ror.org/00w2b1v71 Hesburgh Libraries'),
(15140, 'https://ror.org/02qyarm48', 'en', 1, 'https://ror.org/02qyarm48 Cambridge Community Library'),
(15141, 'https://ror.org/02n43mq92', 'en', 1, 'https://ror.org/02n43mq92 St. Charles City County Library District'),
(15142, 'https://ror.org/02d13xg07', 'en', 1, 'https://ror.org/02d13xg07 Upper Arlington Public Library'),
(15143, 'https://ror.org/03xb7n045', 'en', 1, 'https://ror.org/03xb7n045 St. Clair County Community College'),
(15144, 'https://ror.org/03jsdjx34', 'no_lang_code', 1, 'https://ror.org/03jsdjx34 Cambridge University Press'),
(15145, 'https://ror.org/02t0mhb72', 'en', 1, 'https://ror.org/02t0mhb72 University of Saint Mary of the Lake'),
(15146, 'https://ror.org/02851yv23', 'no_lang_code', 1, 'https://ror.org/02851yv23 Interpublic Group (United States)'),
(15147, 'https://ror.org/016gahp64', 'en', 1, 'https://ror.org/016gahp64 St. Clair County Library System'),
(15148, 'https://ror.org/0467vhn46', 'en', 1, 'https://ror.org/0467vhn46 St. Joseph County Public Library'),
(15149, 'https://ror.org/048tktj22', 'en', 1, 'https://ror.org/048tktj22 McHenry County College'),
(15150, 'https://ror.org/02fs6en72', 'en', 1, 'https://ror.org/02fs6en72 St. Joseph''s College New York'),
(15151, 'https://ror.org/01k2x9g80', 'en', 1, 'https://ror.org/01k2x9g80 Saint Joseph''s College'),
(15152, 'https://ror.org/00c5d7t12', 'en', 1, 'https://ror.org/00c5d7t12 St. Louis County Library'),
(15153, 'https://ror.org/03y446t42', 'en', 1, 'https://ror.org/03y446t42 St. Louis Public Library'),
(15154, 'https://ror.org/03wykcx19', 'en', 1, 'https://ror.org/03wykcx19 Association Forestière Canadienne Canadian Forestry Association'),
(15155, 'https://ror.org/00ckv2g77', 'no_lang_code', 1, 'https://ror.org/00ckv2g77 Multidisciplinary Digital Publishing Institute (Switzerland)'),
(15156, 'https://ror.org/0390twm75', 'en', 1, 'https://ror.org/0390twm75 Canadian Institute of Public Health Inspectors'),
(15157, 'https://ror.org/03s593324', 'en', 1, 'https://ror.org/03s593324 Geauga County Public Library'),
(15158, 'https://ror.org/00ez32163', 'en', 1, 'https://ror.org/00ez32163 GeoScienceWorld'),
(15159, 'https://ror.org/00xr2nk27', 'en', 1, 'https://ror.org/00xr2nk27 Mead Public Library'),
(15160, 'https://ror.org/05jyxzj98', 'en', 1, 'https://ror.org/05jyxzj98 Meadville Lombard Theological School'),
(15161, 'https://ror.org/01bwbj624', 'no_lang_code', 1, 'https://ror.org/01bwbj624 AMN Healthcare (United States)'),
(15162, 'https://ror.org/01yykhb30', 'en', 1, 'https://ror.org/01yykhb30 Sauk County Historical Society'),
(15163, 'https://ror.org/019r00h23', 'en', 1, 'https://ror.org/019r00h23 Sauk Valley Community College'),
(15164, 'https://ror.org/04zp06k22', 'en', 1, 'https://ror.org/04zp06k22 Statewide California Electronic Library Consortium'),
(15165, 'https://ror.org/023bxn823', 'en', 1, 'https://ror.org/023bxn823 Glen Ellyn Public Library'),
(15166, 'https://ror.org/04dh2y609', 'en', 1, 'https://ror.org/04dh2y609 School of the Art Institute of Chicago École de l''institut d''art de chicago'),
(15167, 'https://ror.org/03j2znq68', 'en', 1, 'https://ror.org/03j2znq68 Schoolcraft College'),
(15168, 'https://ror.org/02gj10y57', 'en', 1, 'https://ror.org/02gj10y57 Glenview Public Library'),
(15169, 'https://ror.org/00zbqg304', 'en', 1, 'https://ror.org/00zbqg304 Canadian Science Publishing'),
(15170, 'https://ror.org/01w2kt439', 'en', 1, 'https://ror.org/01w2kt439 Association canadienne des médecins vétérinaires Canadian Veterinary Medical Association'),
(15171, 'https://ror.org/05wd26881', 'en', 1, 'https://ror.org/05wd26881 Gogebic Community College'),
(15172, 'https://ror.org/01nc8r848', 'no_lang_code', 1, 'https://ror.org/01nc8r848 Scribd (United States)'),
(15173, 'https://ror.org/05c1xmf93', 'en', 1, 'https://ror.org/05c1xmf93 Canton Public Library'),
(15174, 'https://ror.org/05dtcxa32', 'en', 1, 'https://ror.org/05dtcxa32 Capital Area District Libraries'),
(15175, 'https://ror.org/04dwtmx31', 'en', 1, 'https://ror.org/04dwtmx31 Career Education Corporation'),
(15176, 'https://ror.org/05ges7821', 'en', 1, 'https://ror.org/05ges7821 Carl Sandburg College'),
(15177, 'https://ror.org/02cjv3666', 'en', 1, 'https://ror.org/02cjv3666 Shaker Heights Public Library'),
(15178, 'https://ror.org/05qjv6v20', 'en', 1, 'https://ror.org/05qjv6v20 Medina County District Library'),
(15179, 'https://ror.org/02dhzaa20', 'en', 1, 'https://ror.org/02dhzaa20 Swope Art Museum'),
(15180, 'https://ror.org/01qxk5g75', 'no_lang_code', 1, 'https://ror.org/01qxk5g75 Medknow (India)'),
(15181, 'https://ror.org/004pdnb66', 'en', 1, 'https://ror.org/004pdnb66 Grace A. Dow Memorial Library'),
(15182, 'https://ror.org/029c3g514', 'no_lang_code', 1, 'https://ror.org/029c3g514 Mesoblast (United States)'),
(15183, 'https://ror.org/00w4hrb54', 'en', 1, 'https://ror.org/00w4hrb54 Shimer College'),
(15184, 'https://ror.org/04zd61g23', 'en', 1, 'https://ror.org/04zd61g23 The Urbana Free Library'),
(15185, 'https://ror.org/04kp3hw27', 'en', 1, 'https://ror.org/04kp3hw27 Urbana University'),
(15186, 'https://ror.org/02fhmsd26', 'en', 1, 'https://ror.org/02fhmsd26 Ursuline College'),
(15187, 'https://ror.org/01s6z0f52', 'en', 1, 'https://ror.org/01s6z0f52 Catholic Theological Union'),
(15188, 'https://ror.org/02breff74', 'no_lang_code', 1, 'https://ror.org/02breff74 Shook, Hardy & Bacon (United States)'),
(15189, 'https://ror.org/053sbf336', 'en', 1, 'https://ror.org/053sbf336 Grand Rapids Public Library'),
(15190, 'https://ror.org/03gamv550', 'en', 1, 'https://ror.org/03gamv550 U.S. Committee for Refugees and Immigrants'),
(15191, 'https://ror.org/05sv2w840', 'en', 1, 'https://ror.org/05sv2w840 Silver Lake College'),
(15192, 'https://ror.org/01kra6c87', 'en', 1, 'https://ror.org/01kra6c87 Cedarburg Public Library'),
(15193, 'https://ror.org/05t28nr70', 'en', 1, 'https://ror.org/05t28nr70 Cedarhurst Center For The Arts'),
(15194, 'https://ror.org/05c5nrc66', 'en', 1, 'https://ror.org/05c5nrc66 Methodist Theological School in Ohio'),
(15195, 'https://ror.org/059cb7973', 'no_lang_code', 1, 'https://ror.org/059cb7973 SIPX (United States)'),
(15196, 'https://ror.org/05k2n4n22', 'no_lang_code', 1, 'https://ror.org/05k2n4n22 RELX Group (United States)'),
(15197, 'https://ror.org/00p11e287', 'en', 1, 'https://ror.org/00p11e287 Metropolitan Community College'),
(15198, 'https://ror.org/03tjjy644', 'en', 1, 'https://ror.org/03tjjy644 Greater West Bloomfield Historical Society'),
(15199, 'https://ror.org/04rgj3y73', 'en', 1, 'https://ror.org/04rgj3y73 Skokie Public Library'),
(15200, 'https://ror.org/05dky1a08', 'en', 1, 'https://ror.org/05dky1a08 Center for Research Libraries'),
(15201, 'https://ror.org/03x497b72', 'en', 1, 'https://ror.org/03x497b72 Miami County Museum'),
(15202, 'https://ror.org/01hbh1z68', 'en', 1, 'https://ror.org/01hbh1z68 Sloan*Longway'),
(15203, 'https://ror.org/01v575k60', 'en', 1, 'https://ror.org/01v575k60 Michigan City Public Library'),
(15204, 'https://ror.org/02m0g1n06', 'en', 1, 'https://ror.org/02m0g1n06 VanderCook College of Music'),
(15205, 'https://ror.org/04zmm8y38', 'en', 1, 'https://ror.org/04zmm8y38 Central Methodist University'),
(15206, 'https://ror.org/052qpep46', 'en', 1, 'https://ror.org/052qpep46 Michigan History Center'),
(15207, 'https://ror.org/035280t21', 'en', 1, 'https://ror.org/035280t21 Greater Western Library Alliance'),
(15208, 'https://ror.org/018c2ap34', 'en', 1, 'https://ror.org/018c2ap34 Champaign County History Museum'),
(15209, 'https://ror.org/013rm7441', 'en', 1, 'https://ror.org/013rm7441 Champaign Public Library'),
(15210, 'https://ror.org/04rxhfh18', 'en', 1, 'https://ror.org/04rxhfh18 Grosse Pointe Public Library'),
(15211, 'https://ror.org/02g7ar447', 'en', 1, 'https://ror.org/02g7ar447 Chicago History Museum'),
(15212, 'https://ror.org/02easmg06', 'no_lang_code', 1, 'https://ror.org/02easmg06 Guilford Press (United States)'),
(15213, 'https://ror.org/059mcbz87', 'en', 1, 'https://ror.org/059mcbz87 Mid-Continent Public Library'),
(15214, 'https://ror.org/059ep5752', 'en', 1, 'https://ror.org/059ep5752 Hamilton East Public Library'),
(15215, 'https://ror.org/031mpj251', 'en', 1, 'https://ror.org/031mpj251 Mid-State Technical College'),
(15216, 'https://ror.org/03rxv1p12', 'en', 1, 'https://ror.org/03rxv1p12 Hannibal–LaGrange University'),
(15217, 'https://ror.org/05fh0g986', 'en', 1, 'https://ror.org/05fh0g986 Chicago Theological Seminary'),
(15218, 'https://ror.org/00g251176', 'en', 1, 'https://ror.org/00g251176 Middletown Public Library'),
(15219, 'https://ror.org/03m0njh07', 'en', 1, 'https://ror.org/03m0njh07 Midstate College'),
(15220, 'https://ror.org/0062tv278', 'en', 1, 'https://ror.org/0062tv278 Chicago Kent College of Law'),
(15221, 'https://ror.org/02s2j8b28', 'en', 1, 'https://ror.org/02s2j8b28 Chippewa Valley Museum'),
(15222, 'https://ror.org/03tngxx72', 'no_lang_code', 1, 'https://ror.org/03tngxx72 Midwest Tape (United States)'),
(15223, 'https://ror.org/04nxrgp88', 'en', 1, 'https://ror.org/04nxrgp88 South Asian American Digital Archive'),
(15224, 'https://ror.org/01f2td593', 'no_lang_code', 1, 'https://ror.org/01f2td593 Chiquita Brands International (United States)'),
(15225, 'https://ror.org/006kkkp25', 'no_lang_code', 1, 'https://ror.org/006kkkp25 Miller Canfield (United States)'),
(15226, 'https://ror.org/044h88456', 'en', 1, 'https://ror.org/044h88456 South Bend Museum of Art'),
(15227, 'https://ror.org/01vtmwg90', 'en', 1, 'https://ror.org/01vtmwg90 Vigo County Historical Society & Museum'),
(15228, 'https://ror.org/01v1wjv20', 'en', 1, 'https://ror.org/01v1wjv20 South Holland Public Library'),
(15229, 'https://ror.org/052j1gk85', 'en', 1, 'https://ror.org/052j1gk85 Milwaukee Public Library'),
(15230, 'https://ror.org/02v431325', 'en', 1, 'https://ror.org/02v431325 Harrington College of Design'),
(15231, 'https://ror.org/00342ps77', 'en', 1, 'https://ror.org/00342ps77 Cincinnati Christian University'),
(15232, 'https://ror.org/02xz7d723', 'en', 1, 'https://ror.org/02xz7d723 Harry Perkins Institute of Medical Research'),
(15233, 'https://ror.org/00sn5vc60', 'en', 1, 'https://ror.org/00sn5vc60 Vigo County Public Library'),
(15234, 'https://ror.org/01c6kab21', 'en', 1, 'https://ror.org/01c6kab21 South Suburban College'),
(15235, 'https://ror.org/01g5qva43', 'en', 1, 'https://ror.org/01g5qva43 Cincinnati State Technical and Community College'),
(15236, 'https://ror.org/05jkfya49', 'en', 1, 'https://ror.org/05jkfya49 Mishawaka-Penn-Harris Public Library'),
(15237, 'https://ror.org/05c9m3a41', 'en', 1, 'https://ror.org/05c9m3a41 South Suburban Genealogical and Historical Society'),
(15238, 'https://ror.org/05wfyqn93', 'en', 1, 'https://ror.org/05wfyqn93 Missouri Baptist University'),
(15239, 'https://ror.org/02f013h18', 'it', 1, 'https://ror.org/02f013h18 Cineca'),
(15240, 'https://ror.org/02894qy28', 'en', 1, 'https://ror.org/02894qy28 Hayner Public Library District'),
(15241, 'https://ror.org/04prb1696', 'en', 1, 'https://ror.org/04prb1696 Missouri History Museum'),
(15242, 'https://ror.org/02akpbq50', 'en', 1, 'https://ror.org/02akpbq50 Circus World Museum'),
(15243, 'https://ror.org/0287v3241', 'en', 1, 'https://ror.org/0287v3241 University Muslim Medical Association Community Clinic'),
(15244, 'https://ror.org/003013d40', 'en', 1, 'https://ror.org/003013d40 Citizens for Responsibility and Ethics in Washington'),
(15245, 'https://ror.org/01fq88m19', 'en', 1, 'https://ror.org/01fq88m19 Missouri River Regional Library'),
(15246, 'https://ror.org/03xaz7s88', 'en', 1, 'https://ror.org/03xaz7s88 Claremont Colleges'),
(15247, 'https://ror.org/017f49052', 'en', 1, 'https://ror.org/017f49052 Southeastern Illinois College'),
(15248, 'https://ror.org/02fkh1w66', 'en', 1, 'https://ror.org/02fkh1w66 Health Affairs'),
(15249, 'https://ror.org/02k16sh85', 'en', 1, 'https://ror.org/02k16sh85 Clark State Community College'),
(15250, 'https://ror.org/004xm6e62', 'en', 1, 'https://ror.org/004xm6e62 Heartland Community College'),
(15251, 'https://ror.org/04gzrkk07', 'en', 1, 'https://ror.org/04gzrkk07 Clay County Archives and Historical Library'),
(15252, 'https://ror.org/03gbwkj22', 'en', 1, 'https://ror.org/03gbwkj22 Vincennes University'),
(15253, 'https://ror.org/01g2p0822', 'en', 1, 'https://ror.org/01g2p0822 Hebrew Theological College'),
(15254, 'https://ror.org/00zq5bx90', 'en', 1, 'https://ror.org/00zq5bx90 Clermont County Public Library'),
(15255, 'https://ror.org/05kf1qd30', 'en', 1, 'https://ror.org/05kf1qd30 Hedberg Public Library'),
(15256, 'https://ror.org/02msncq66', 'en', 1, 'https://ror.org/02msncq66 Missouri Valley College'),
(15257, 'https://ror.org/03g0nfg79', 'en', 1, 'https://ror.org/03g0nfg79 Heritage Museum and Cultural Center'),
(15258, 'https://ror.org/02xaxz408', 'en', 1, 'https://ror.org/02xaxz408 Southern State Community College'),
(15259, 'https://ror.org/048z9aw23', 'en', 1, 'https://ror.org/048z9aw23 Monroe County Historical Museum'),
(15260, 'https://ror.org/01ndzp278', 'en', 1, 'https://ror.org/01ndzp278 Cleveland Heights University Heights Public Library'),
(15261, 'https://ror.org/02e2bht63', 'en', 1, 'https://ror.org/02e2bht63 Monroe County Library System'),
(15262, 'https://ror.org/02138yn89', 'en', 1, 'https://ror.org/02138yn89 Monroe County Public Library'),
(15263, 'https://ror.org/05wffnp93', 'en', 1, 'https://ror.org/05wffnp93 Institut biblique moody Moody Bible Institute'),
(15264, 'https://ror.org/04y17xm23', 'en', 1, 'https://ror.org/04y17xm23 Southwestern Illinois College'),
(15265, 'https://ror.org/03afd3b65', 'en', 1, 'https://ror.org/03afd3b65 Moraine Park Technical College'),
(15266, 'https://ror.org/041grwk58', 'en', 1, 'https://ror.org/041grwk58 Cleveland Law Library Association'),
(15267, 'https://ror.org/057j98494', 'en', 1, 'https://ror.org/057j98494 Cleveland Museum of Art'),
(15268, 'https://ror.org/04c0z3e83', 'no_lang_code', 1, 'https://ror.org/04c0z3e83 Morgan, Lewis & Bockius (United States)'),
(15269, 'https://ror.org/04426r665', 'en', 1, 'https://ror.org/04426r665 Morley Library'),
(15270, 'https://ror.org/02kybxa90', 'en', 1, 'https://ror.org/02kybxa90 Cleveland Public Library'),
(15271, 'https://ror.org/03wn0d080', 'en', 1, 'https://ror.org/03wn0d080 Morton College'),
(15272, 'https://ror.org/009vb3488', 'no_lang_code', 1, 'https://ror.org/009vb3488 CLOCKSS'),
(15273, 'https://ror.org/05488qq19', 'en', 1, 'https://ror.org/05488qq19 Highland County District Library'),
(15274, 'https://ror.org/05vs4fq96', 'en', 1, 'https://ror.org/05vs4fq96 Hillsdale College'),
(15275, 'https://ror.org/0012fsh60', 'en', 1, 'https://ror.org/0012fsh60 Hillwood Estate, Museum and Garden'),
(15276, 'https://ror.org/043fjtb89', 'en', 1, 'https://ror.org/043fjtb89 Coalition for Networked Information'),
(15277, 'https://ror.org/03fjxhp48', 'en', 1, 'https://ror.org/03fjxhp48 Hoard Historical Museum'),
(15278, 'https://ror.org/01tpw6659', 'en', 1, 'https://ror.org/01tpw6659 Hocking College'),
(15279, 'https://ror.org/0574bwf68', 'en', 1, 'https://ror.org/0574bwf68 Holy Cross College'),
(15280, 'https://ror.org/01g1dn598', 'en', 1, 'https://ror.org/01g1dn598 Southwestern Michigan College'),
(15281, 'https://ror.org/02wg4cc89', 'en', 1, 'https://ror.org/02wg4cc89 Holy Wisdom Monastery'),
(15282, 'https://ror.org/05te4ha46', 'no_lang_code', 1, 'https://ror.org/05te4ha46 Sparks & Co (France)'),
(15283, 'https://ror.org/010apsh61', 'en', 1, 'https://ror.org/010apsh61 Coles County Historical Society'),
(15284, 'https://ror.org/01jtsd542', 'en', 1, 'https://ror.org/01jtsd542 Mount Vernon Nazarene University'),
(15285, 'https://ror.org/01hxtdq06', 'en', 1, 'https://ror.org/01hxtdq06 Spertus Institute for Jewish Learning and Leadership'),
(15286, 'https://ror.org/03v8atx30', 'en', 1, 'https://ror.org/03v8atx30 College of Lake County'),
(15287, 'https://ror.org/025vzq165', 'en', 1, 'https://ror.org/025vzq165 Spoon River College'),
(15288, 'https://ror.org/052ahwq68', 'en', 1, 'https://ror.org/052ahwq68 Muskegon Area District Library'),
(15289, 'https://ror.org/02j8e5x02', 'en', 1, 'https://ror.org/02j8e5x02 Spring Arbor University'),
(15290, 'https://ror.org/01avfcx41', 'en', 1, 'https://ror.org/01avfcx41 Wadsworth Public Library'),
(15291, 'https://ror.org/04pzyxy68', 'en', 1, 'https://ror.org/04pzyxy68 Lakeshore Museum Center'),
(15292, 'https://ror.org/0159z5d03', 'en', 1, 'https://ror.org/0159z5d03 Springfield Greene County Library District'),
(15293, 'https://ror.org/03ntt6y47', 'en', 1, 'https://ror.org/03ntt6y47 SS. Cyril & Methodius Seminary'),
(15294, 'https://ror.org/048b14s48', 'en', 1, 'https://ror.org/048b14s48 Hudson Library and Historical Society'),
(15295, 'https://ror.org/05s4pg032', 'en', 1, 'https://ror.org/05s4pg032 Walsh College'),
(15296, 'https://ror.org/02vnjpj41', 'en', 1, 'https://ror.org/02vnjpj41 St. Joseph Museums'),
(15297, 'https://ror.org/009nkvj02', 'en', 1, 'https://ror.org/009nkvj02 Warren Newport Public Library'),
(15298, 'https://ror.org/02kajxp71', 'en', 1, 'https://ror.org/02kajxp71 National Archives of Hungary'),
(15299, 'https://ror.org/03b27e555', 'en', 1, 'https://ror.org/03b27e555 Warren-Trumbull County Public Library'),
(15300, 'https://ror.org/02a6ztn45', 'en', 1, 'https://ror.org/02a6ztn45 National Academies Press'),
(15301, 'https://ror.org/03mv52406', 'en', 1, 'https://ror.org/03mv52406 Stark County District Library'),
(15302, 'https://ror.org/00hasdx88', 'en', 1, 'https://ror.org/00hasdx88 Washington Research Foundation'),
(15303, 'https://ror.org/00v02jt04', 'en', 1, 'https://ror.org/00v02jt04 State Fair Community College'),
(15304, 'https://ror.org/03mbgzm57', 'en', 1, 'https://ror.org/03mbgzm57 Washington State Community College');
INSERT INTO `rors` VALUES
(15305, 'https://ror.org/03fwsh914', 'en', 1, 'https://ror.org/03fwsh914 State Library of Ohio'),
(15306, 'https://ror.org/03n6gc586', 'en', 1, 'https://ror.org/03n6gc586 Columbus College of Art and Design'),
(15307, 'https://ror.org/05nwva972', 'en', 1, 'https://ror.org/05nwva972 ICE Publishing'),
(15308, 'https://ror.org/017rrqa95', 'en', 1, 'https://ror.org/017rrqa95 National Association of Realtors'),
(15309, 'https://ror.org/03k77wm53', 'en', 1, 'https://ror.org/03k77wm53 Washtenaw Community College'),
(15310, 'https://ror.org/04t48m922', 'en', 1, 'https://ror.org/04t48m922 Wisconsin Legislative Reference Bureau'),
(15311, 'https://ror.org/03yxgvp63', 'no_lang_code', 1, 'https://ror.org/03yxgvp63 IGI Global (United States)'),
(15312, 'https://ror.org/01k2z4a60', 'en', 1, 'https://ror.org/01k2z4a60 Studebaker National Museum'),
(15313, 'https://ror.org/02py3es11', 'en', 1, 'https://ror.org/02py3es11 Illinois Supreme Court Library'),
(15314, 'https://ror.org/03dfsfy59', 'en', 1, 'https://ror.org/03dfsfy59 Waubonsee Community College'),
(15315, 'https://ror.org/008y25t13', 'en', 1, 'https://ror.org/008y25t13 Columbus Law Library Association'),
(15316, 'https://ror.org/01xvcx580', 'en', 1, 'https://ror.org/01xvcx580 Columbus Metropolitan Library'),
(15317, 'https://ror.org/02s8rep32', 'en', 1, 'https://ror.org/02s8rep32 Columbus State Community College'),
(15318, 'https://ror.org/02wyqrf98', 'en', 1, 'https://ror.org/02wyqrf98 National Association of School Psychologists'),
(15319, 'https://ror.org/00b1y8922', 'en', 1, 'https://ror.org/00b1y8922 Columbus Zoo and Aquarium'),
(15320, 'https://ror.org/01a53yy36', 'en', 1, 'https://ror.org/01a53yy36 Wauconda Area Library'),
(15321, 'https://ror.org/024xf4148', 'en', 1, 'https://ror.org/024xf4148 Illinois Mathematics and Science Academy'),
(15322, 'https://ror.org/022bt0g94', 'en', 1, 'https://ror.org/022bt0g94 National Center for Manufacturing Sciences'),
(15323, 'https://ror.org/01nww6879', 'en', 1, 'https://ror.org/01nww6879 Waukesha County Museum'),
(15324, 'https://ror.org/01rqrfd09', 'en', 1, 'https://ror.org/01rqrfd09 Illinois Railway Museum'),
(15325, 'https://ror.org/01hqrfw90', 'en', 1, 'https://ror.org/01hqrfw90 Waukesha County Technical College'),
(15326, 'https://ror.org/04hpt8s23', 'en', 1, 'https://ror.org/04hpt8s23 Supreme Court of Ohio'),
(15327, 'https://ror.org/01vryen79', 'en', 1, 'https://ror.org/01vryen79 Illinois State Archives'),
(15328, 'https://ror.org/003tgaf82', 'en', 1, 'https://ror.org/003tgaf82 Abraham Lincoln Presidential Library and Museum'),
(15329, 'https://ror.org/040730h60', 'en', 1, 'https://ror.org/040730h60 Waukesha Public Library'),
(15330, 'https://ror.org/02ntfsb56', 'en', 1, 'https://ror.org/02ntfsb56 Committee on Institutional Cooperation'),
(15331, 'https://ror.org/00q84em04', 'en', 1, 'https://ror.org/00q84em04 Galería Nacional de Arte National Gallery of Art'),
(15332, 'https://ror.org/00fyvea65', 'en', 1, 'https://ror.org/00fyvea65 National Library of Education'),
(15333, 'https://ror.org/04v1k1t27', 'en', 1, 'https://ror.org/04v1k1t27 Illinois Valley Community College'),
(15334, 'https://ror.org/02qxvcs26', 'en', 1, 'https://ror.org/02qxvcs26 Illinois State Library'),
(15335, 'https://ror.org/02q002e44', 'en', 1, 'https://ror.org/02q002e44 National Museum of Women in the Arts'),
(15336, 'https://ror.org/05tq5tc82', 'en', 1, 'https://ror.org/05tq5tc82 Concordia Seminary Seminario Concordia'),
(15337, 'https://ror.org/02jvqj155', 'en', 1, 'https://ror.org/02jvqj155 Concordia University Chicago Université concordia de chicago'),
(15338, 'https://ror.org/05bvf9f86', 'en', 1, 'https://ror.org/05bvf9f86 Raising Spirits Foundation'),
(15339, 'https://ror.org/05qm91k56', 'en', 1, 'https://ror.org/05qm91k56 International Network for Advancing Science and Policy'),
(15340, 'https://ror.org/03trkbn45', 'en', 1, 'https://ror.org/03trkbn45 Congressional Budget Office'),
(15341, 'https://ror.org/01dp8dw79', 'en', 1, 'https://ror.org/01dp8dw79 Consortium of Academic and Research Libraries in Illinois'),
(15342, 'https://ror.org/02bpry443', 'en', 1, 'https://ror.org/02bpry443 Indiana Historical Society'),
(15343, 'https://ror.org/04ky2re88', 'en', 1, 'https://ror.org/04ky2re88 Wesley Theological Seminary'),
(15344, 'https://ror.org/033hy7589', 'en', 1, 'https://ror.org/033hy7589 Cook County Law Library'),
(15345, 'https://ror.org/02hvkfj85', 'en', 1, 'https://ror.org/02hvkfj85 West Allis Public Library'),
(15346, 'https://ror.org/04cwntf34', 'en', 1, 'https://ror.org/04cwntf34 Indiana Archives and Records Administration'),
(15347, 'https://ror.org/0152xpa72', 'en', 1, 'https://ror.org/0152xpa72 Indiana State Library'),
(15348, 'https://ror.org/05kmsp524', 'en', 1, 'https://ror.org/05kmsp524 Indiana Supreme Court'),
(15349, 'https://ror.org/04fwa5r65', 'en', 1, 'https://ror.org/04fwa5r65 Cook Memorial Public Library District'),
(15350, 'https://ror.org/049kpjn93', 'en', 1, 'https://ror.org/049kpjn93 Westlake Porter Public Library'),
(15351, 'https://ror.org/046z54t28', 'en', 1, 'https://ror.org/046z54t28 Indiana University East'),
(15352, 'https://ror.org/04qx59376', 'en', 1, 'https://ror.org/04qx59376 Westmont Public Library'),
(15353, 'https://ror.org/04161kh40', 'en', 1, 'https://ror.org/04161kh40 Indiana University Kokomo'),
(15354, 'https://ror.org/057ydan45', 'en', 1, 'https://ror.org/057ydan45 Copyright Licensing Agency'),
(15355, 'https://ror.org/05kjfpp30', 'en', 1, 'https://ror.org/05kjfpp30 Westwood College'),
(15356, 'https://ror.org/04ttjs010', 'en', 1, 'https://ror.org/04ttjs010 Indianapolis Public Schools'),
(15357, 'https://ror.org/05bxa5v91', 'en', 1, 'https://ror.org/05bxa5v91 Indianapolis Public Library'),
(15358, 'https://ror.org/03b03v914', 'en', 1, 'https://ror.org/03b03v914 Wheaton Public Library'),
(15359, 'https://ror.org/04hfwsn29', 'no_lang_code', 1, 'https://ror.org/04hfwsn29 Information Today (United States)'),
(15360, 'https://ror.org/04qf1h664', 'en', 1, 'https://ror.org/04qf1h664 Williams County Public Library'),
(15361, 'https://ror.org/02xm60v03', 'en', 1, 'https://ror.org/02xm60v03 Wilmette Public Library'),
(15362, 'https://ror.org/045zcth28', 'en', 1, 'https://ror.org/045zcth28 McLaren Greater Lansing'),
(15363, 'https://ror.org/00r99m169', 'en', 1, 'https://ror.org/00r99m169 Council of State Archivists'),
(15364, 'https://ror.org/01k08ez36', 'en', 1, 'https://ror.org/01k08ez36 Wilmington College'),
(15365, 'https://ror.org/030prv062', 'en', 1, 'https://ror.org/030prv062 Institute of Museum and Library Services'),
(15366, 'https://ror.org/03kyxhh57', 'en', 1, 'https://ror.org/03kyxhh57 Wisconsin Historical Society'),
(15367, 'https://ror.org/05bhzk792', 'en', 1, 'https://ror.org/05bhzk792 Covington and Burling'),
(15368, 'https://ror.org/01r678s56', 'en', 1, 'https://ror.org/01r678s56 Wisconsin Indianhead Technical College'),
(15369, 'https://ror.org/00tdydz48', 'en', 1, 'https://ror.org/00tdydz48 Young Empowered Survivors'),
(15370, 'https://ror.org/00nve0j20', 'en', 1, 'https://ror.org/00nve0j20 Wisconsin Lutheran College'),
(15371, 'https://ror.org/04jwsnw10', 'en', 1, 'https://ror.org/04jwsnw10 CoxHealth'),
(15372, 'https://ror.org/0226w4e92', 'no_lang_code', 1, 'https://ror.org/0226w4e92 Credo Reference (United States)'),
(15373, 'https://ror.org/05rpt7y81', 'en', 1, 'https://ror.org/05rpt7y81 Wisconsin Maritime Museum'),
(15374, 'https://ror.org/02ccjyn18', 'en', 1, 'https://ror.org/02ccjyn18 Wisconsin Veterans Museum'),
(15375, 'https://ror.org/00g6pb267', 'fr', 1, 'https://ror.org/00g6pb267 Bureau de Coopération Interuniversitaire Conférence des Recteurs et des Principaux des Universités du Québec'),
(15376, 'https://ror.org/03t1w6410', 'en', 1, 'https://ror.org/03t1w6410 WISPALS Library Consortium'),
(15377, 'https://ror.org/03gkhzn08', 'no_lang_code', 1, 'https://ror.org/03gkhzn08 Crowell & Moring (United States)'),
(15378, 'https://ror.org/03qemwx69', 'no_lang_code', 1, 'https://ror.org/03qemwx69 Wolters Kluwer (Netherlands)'),
(15379, 'https://ror.org/051hpv692', 'en', 1, 'https://ror.org/051hpv692 CSIRO Publishing'),
(15380, 'https://ror.org/00n855a93', 'en', 1, 'https://ror.org/00n855a93 Culver Stockton College Culver–Stockton College'),
(15381, 'https://ror.org/0102yc990', 'en', 1, 'https://ror.org/0102yc990 Warriors on Wheels of Metropolitan Detroit'),
(15382, 'https://ror.org/05e7tm136', 'no_lang_code', 1, 'https://ror.org/05e7tm136 World Scientific (Singapore)'),
(15383, 'https://ror.org/051940627', 'en', 1, 'https://ror.org/051940627 Wright Memorial Public Library'),
(15384, 'https://ror.org/0404q6692', 'en', 1, 'https://ror.org/0404q6692 Valley Medical Center Foundation'),
(15385, 'https://ror.org/017rwv354', 'en', 1, 'https://ror.org/017rwv354 Washington State Chinese Cancer Network Association'),
(15386, 'https://ror.org/01h5cth39', 'en', 1, 'https://ror.org/01h5cth39 Protestant Reformed Churches in America'),
(15387, 'https://ror.org/05xzrxq68', 'no_lang_code', 1, 'https://ror.org/05xzrxq68 Amos Media (United States)'),
(15388, 'https://ror.org/04mxgrm58', 'no_lang_code', 1, 'https://ror.org/04mxgrm58 Aquamarine Power (United Kingdom)'),
(15389, 'https://ror.org/04zj5m910', 'no_lang_code', 1, 'https://ror.org/04zj5m910 Actalia (France)'),
(15390, 'https://ror.org/02szfyr26', 'no_lang_code', 1, 'https://ror.org/02szfyr26 BioAssay Systems (United States)'),
(15391, 'https://ror.org/03g1bs356', 'no_lang_code', 1, 'https://ror.org/03g1bs356 BioAssessments (United States)'),
(15392, 'https://ror.org/03mr4tp73', 'no_lang_code', 1, 'https://ror.org/03mr4tp73 BioAtlantis (Ireland)'),
(15393, 'https://ror.org/004ayva68', 'no_lang_code', 1, 'https://ror.org/004ayva68 BioBullets (United Kingdom)'),
(15394, 'https://ror.org/01r8nn991', 'no_lang_code', 1, 'https://ror.org/01r8nn991 Biobyte Solutions (Germany)'),
(15395, 'https://ror.org/05fgmb597', 'no_lang_code', 1, 'https://ror.org/05fgmb597 Aitek (Italy)'),
(15396, 'https://ror.org/02hyrh851', 'no_lang_code', 1, 'https://ror.org/02hyrh851 Lallemand (United Kingdom)'),
(15397, 'https://ror.org/04ygec227', 'no_lang_code', 1, 'https://ror.org/04ygec227 Aixtooling (Germany)'),
(15398, 'https://ror.org/04hgy0088', 'no_lang_code', 1, 'https://ror.org/04hgy0088 Association of French Motorway Companies'),
(15399, 'https://ror.org/019szx567', 'fr', 1, 'https://ror.org/019szx567 Traces'),
(15400, 'https://ror.org/01h4hrx10', 'no_lang_code', 1, 'https://ror.org/01h4hrx10 Biocatalysts (United Kingdom)'),
(15401, 'https://ror.org/041b2r204', 'en', 1, 'https://ror.org/041b2r204 Association of Village Council Presidents'),
(15402, 'https://ror.org/03m8wps61', 'no_lang_code', 1, 'https://ror.org/03m8wps61 2 Sisters Food Group (United Kingdom)'),
(15403, 'https://ror.org/00fg75a18', 'no_lang_code', 1, 'https://ror.org/00fg75a18 2.-0 LCA Consultants (Denmark)'),
(15404, 'https://ror.org/01xdhsq08', 'en', 1, 'https://ror.org/01xdhsq08 Jefferson Parish District Attorney'),
(15405, 'https://ror.org/02a3sdd90', 'it', 1, 'https://ror.org/02a3sdd90 Associazione Festival della Scienz'),
(15406, 'https://ror.org/01f6f6n96', 'no_lang_code', 1, 'https://ror.org/01f6f6n96 Biochemtex (Italy)'),
(15407, 'https://ror.org/041d7g367', 'no_lang_code', 1, 'https://ror.org/041d7g367 Friuli Innovazione (Italy)'),
(15408, 'https://ror.org/02rf8xy04', 'it', 1, 'https://ror.org/02rf8xy04 2B'),
(15409, 'https://ror.org/014dgae50', 'no_lang_code', 1, 'https://ror.org/014dgae50 2i Industrial Informatics (Germany)'),
(15410, 'https://ror.org/008j0pa45', 'it', 1, 'https://ror.org/008j0pa45 AIAS Bologna'),
(15411, 'https://ror.org/0408c7e30', 'it', 1, 'https://ror.org/0408c7e30 Associazione Italiana Prove non Distruttive'),
(15412, 'https://ror.org/05c2wgj05', 'no_lang_code', 1, 'https://ror.org/05c2wgj05 Aquasium (United Kingdom)'),
(15413, 'https://ror.org/02gdsvx03', 'no_lang_code', 1, 'https://ror.org/02gdsvx03 3M (United Kingdom)'),
(15414, 'https://ror.org/05a628j96', 'no_lang_code', 1, 'https://ror.org/05a628j96 Aquatest (Czechia)'),
(15415, 'https://ror.org/008a3c408', 'it', 1, 'https://ror.org/008a3c408 Federazione ANIE Federazione Nazionale Imprese Elettroniche ed Elettrotecniche National Federation of Electrotechnical and Electronics'),
(15416, 'https://ror.org/004nrp689', 'no_lang_code', 1, 'https://ror.org/004nrp689 BioPredict (United States)'),
(15417, 'https://ror.org/0417eed32', 'it', 1, 'https://ror.org/0417eed32 Associazione per l''Alta Formazione Giuridico-Economica'),
(15418, 'https://ror.org/032wq4586', 'it', 1, 'https://ror.org/032wq4586 Associazione Regionale Allevatori della Lombardia'),
(15419, 'https://ror.org/00h653085', 'no_lang_code', 1, 'https://ror.org/00h653085 3C Research (United Kingdom)'),
(15420, 'https://ror.org/01nzc6q72', 'no_lang_code', 1, 'https://ror.org/01nzc6q72 Trento RISE (Italy)'),
(15421, 'https://ror.org/01ppcf422', 'no_lang_code', 1, 'https://ror.org/01ppcf422 3D Glass Solutions (United States)'),
(15422, 'https://ror.org/04x6q7861', 'it', 1, 'https://ror.org/04x6q7861 ASSTRA - Associazione Trasporti'),
(15423, 'https://ror.org/04tpfm663', 'no_lang_code', 1, 'https://ror.org/04tpfm663 Aktive Arc (Switzerland)'),
(15424, 'https://ror.org/05168x816', 'no_lang_code', 1, 'https://ror.org/05168x816 Biocrates Life Sciences (Austria)'),
(15425, 'https://ror.org/01nxbg690', 'no_lang_code', 1, 'https://ror.org/01nxbg690 Human Solutions (Germany)'),
(15426, 'https://ror.org/04akkw537', 'no_lang_code', 1, 'https://ror.org/04akkw537 Akira (France)'),
(15427, 'https://ror.org/034d0qf45', 'no_lang_code', 1, 'https://ror.org/034d0qf45 Assystem (France)'),
(15428, 'https://ror.org/01433ep44', 'no_lang_code', 1, 'https://ror.org/01433ep44 Assystem (United Kingdom)'),
(15429, 'https://ror.org/042bdjp78', 'no_lang_code', 1, 'https://ror.org/042bdjp78 Astato (France)'),
(15430, 'https://ror.org/036f8hp55', 'no_lang_code', 1, 'https://ror.org/036f8hp55 3D Industries (United Kingdom)'),
(15431, 'https://ror.org/00e52a384', 'no_lang_code', 1, 'https://ror.org/00e52a384 Biocrede (United States)'),
(15432, 'https://ror.org/05hz1rf52', 'no_lang_code', 1, 'https://ror.org/05hz1rf52 Astech Electronics (United Kingdom)'),
(15433, 'https://ror.org/037m11k76', 'no_lang_code', 1, 'https://ror.org/037m11k76 3d Scanners (United Kingdom)'),
(15434, 'https://ror.org/0504r6d12', 'en', 1, 'https://ror.org/0504r6d12 ASTER Aster, la station de vulgarisation et de loisirs scientifiques du Bas-Saint-Laurent'),
(15435, 'https://ror.org/04t4pcw17', 'en', 1, 'https://ror.org/04t4pcw17 Astronomical Observatory Astronomická Observatoř Bělehrad'),
(15436, 'https://ror.org/05c6smb53', 'no_lang_code', 1, 'https://ror.org/05c6smb53 Aqui-S (New Zealand)'),
(15437, 'https://ror.org/05jcb1s51', 'no_lang_code', 1, 'https://ror.org/05jcb1s51 Regio (Estonia)'),
(15438, 'https://ror.org/04y589z24', 'no_lang_code', 1, 'https://ror.org/04y589z24 3dMD (United Kingdom)'),
(15439, 'https://ror.org/00w3zcs06', 'no_lang_code', 1, 'https://ror.org/00w3zcs06 Sertifitseerimiskeskus'),
(15440, 'https://ror.org/047pgxk19', 'no_lang_code', 1, 'https://ror.org/047pgxk19 Aswega (Estonia)'),
(15441, 'https://ror.org/047acnn05', 'no_lang_code', 1, 'https://ror.org/047acnn05 Asymptote (United Kingdom)'),
(15442, 'https://ror.org/008h7g239', 'no_lang_code', 1, 'https://ror.org/008h7g239 Akyüz Plastik (Turkey)'),
(15443, 'https://ror.org/003rpah63', 'no_lang_code', 1, 'https://ror.org/003rpah63 AkzoNobel (Sweden)'),
(15444, 'https://ror.org/02k7wq289', 'no_lang_code', 1, 'https://ror.org/02k7wq289 3H Biomedical (Sweden)'),
(15445, 'https://ror.org/04ynpt476', 'no_lang_code', 1, 'https://ror.org/04ynpt476 Aquilus Pharmaceuticals (United States)'),
(15446, 'https://ror.org/04dngsc68', 'no_lang_code', 1, 'https://ror.org/04dngsc68 ALA Scientific Instruments (United States)'),
(15447, 'https://ror.org/02bbd5539', 'no_lang_code', 1, 'https://ror.org/02bbd5539 AT&T (United States)'),
(15448, 'https://ror.org/048kc5t54', 'en', 1, 'https://ror.org/048kc5t54 Faulkner University'),
(15449, 'https://ror.org/046qxc353', 'no_lang_code', 1, 'https://ror.org/046qxc353 Bioengineering Technology and Systems (Italy)'),
(15450, 'https://ror.org/033pbx564', 'no_lang_code', 1, 'https://ror.org/033pbx564 3S Photonics (France)'),
(15451, 'https://ror.org/02efxmp95', 'no_lang_code', 1, 'https://ror.org/02efxmp95 AT&T (Netherlands)'),
(15452, 'https://ror.org/03b92zg63', 'en', 1, 'https://ror.org/03b92zg63 Alabama Department of Agriculture and Industries'),
(15453, 'https://ror.org/01kss4073', 'en', 1, 'https://ror.org/01kss4073 Alamo Area Council of Governments'),
(15454, 'https://ror.org/03fqpp165', 'no_lang_code', 1, 'https://ror.org/03fqpp165 Bioergonomics (United States)'),
(15455, 'https://ror.org/056458z20', 'no_lang_code', 1, 'https://ror.org/056458z20 3T RPD (United Kingdom)'),
(15456, 'https://ror.org/034deqj96', 'en', 1, 'https://ror.org/034deqj96 Arab Center for the Studies of Arid Zones and Dry Lands'),
(15457, 'https://ror.org/00zrcp466', 'en', 1, 'https://ror.org/00zrcp466 Advanced Threat Analysis'),
(15458, 'https://ror.org/01kd78z21', 'no_lang_code', 1, 'https://ror.org/01kd78z21 01 Pliroforiki (Greece)'),
(15459, 'https://ror.org/02x20cn33', 'no_lang_code', 1, 'https://ror.org/02x20cn33 BioFluidix (Germany)'),
(15460, 'https://ror.org/03qnzan29', 'no_lang_code', 1, 'https://ror.org/03qnzan29 ATARD Defense and Aerospace Industry'),
(15461, 'https://ror.org/02ebmk238', 'sl', 1, 'https://ror.org/02ebmk238 Agencija za Radioaktivne Odpadke'),
(15462, 'https://ror.org/05s1dqz78', 'no_lang_code', 1, 'https://ror.org/05s1dqz78 451 Research (United Kingdom)'),
(15463, 'https://ror.org/05jqr8t95', 'no_lang_code', 1, 'https://ror.org/05jqr8t95 Biogas Fuel Cell (Spain)'),
(15464, 'https://ror.org/01gr48a54', 'en', 1, 'https://ror.org/01gr48a54 Alaska Marine Safety Education Association'),
(15465, 'https://ror.org/04b8jke36', 'no_lang_code', 1, 'https://ror.org/04b8jke36 enablingMNT (Germany)'),
(15466, 'https://ror.org/05mvb6w45', 'en', 1, 'https://ror.org/05mvb6w45 Alaska Network on Domestic Violence and Sexual Assault'),
(15467, 'https://ror.org/03c3kz798', 'fr', 1, 'https://ror.org/03c3kz798 ATECA - Applications Technologie Avancée'),
(15468, 'https://ror.org/02f4qmp67', 'no_lang_code', 1, 'https://ror.org/02f4qmp67 Aratome (United States)'),
(15469, 'https://ror.org/008yw1q74', 'no_lang_code', 1, 'https://ror.org/008yw1q74 PTC (France)'),
(15470, 'https://ror.org/00nrh3w24', 'no_lang_code', 1, 'https://ror.org/00nrh3w24 Aratos Technologies (Greece) ΆΡΑΤΟΣ ΤΕΧΝΟΛΟΓΊΕΣ'),
(15471, 'https://ror.org/02zwppv60', 'no_lang_code', 1, 'https://ror.org/02zwppv60 Ateknea Solutions (Malta)'),
(15472, 'https://ror.org/01j285b19', 'no_lang_code', 1, 'https://ror.org/01j285b19 AraVasc (United States)'),
(15473, 'https://ror.org/001vc2w94', 'en', 1, 'https://ror.org/001vc2w94 Alaska Department of Education and Early Development'),
(15474, 'https://ror.org/00ecmkm26', 'en', 1, 'https://ror.org/00ecmkm26 Alaska Youth and Family Network'),
(15475, 'https://ror.org/01jtkws96', 'no_lang_code', 1, 'https://ror.org/01jtkws96 Biographics (United States)'),
(15476, 'https://ror.org/00m08vr46', 'en', 1, 'https://ror.org/00m08vr46 Athens Chamber of Commerce and Industry'),
(15477, 'https://ror.org/03fmc9y65', 'no_lang_code', 1, 'https://ror.org/03fmc9y65 Albany Molecular Research (United Kingdom)'),
(15478, 'https://ror.org/03078rq26', 'en', 1, 'https://ror.org/03078rq26 Athens Medical Center Ιατρικό Κέντρο Αθηνών'),
(15479, 'https://ror.org/027vwvv53', 'de', 1, 'https://ror.org/027vwvv53 Arbeitsgemeinschaft Sozialwissenschaftlicher Institute'),
(15480, 'https://ror.org/000ge9g13', 'en', 1, 'https://ror.org/000ge9g13 Athens Technical College'),
(15481, 'https://ror.org/02s347d15', 'no_lang_code', 1, 'https://ror.org/02s347d15 Albasolar (Spain)'),
(15482, 'https://ror.org/057qrfa57', 'no_lang_code', 1, 'https://ror.org/057qrfa57 Atlantec Enterprise Solutions (Germany)'),
(15483, 'https://ror.org/0411qha08', 'en', 1, 'https://ror.org/0411qha08 BioIndustry Association'),
(15484, 'https://ror.org/03tgxkn38', 'no_lang_code', 1, 'https://ror.org/03tgxkn38 Atlantic Industries (Canada)'),
(15485, 'https://ror.org/01se7j361', 'no_lang_code', 1, 'https://ror.org/01se7j361 nLIGHT (United States)'),
(15486, 'https://ror.org/047866h90', 'no_lang_code', 1, 'https://ror.org/047866h90 BioInvent (Sweden)'),
(15487, 'https://ror.org/02e3yqk73', 'no_lang_code', 1, 'https://ror.org/02e3yqk73 5M (Czechia)'),
(15488, 'https://ror.org/03aat3341', 'en', 1, 'https://ror.org/03aat3341 Atlantic Union College'),
(15489, 'https://ror.org/04apsy796', 'no_lang_code', 1, 'https://ror.org/04apsy796 BioInVision (United States)'),
(15490, 'https://ror.org/023366513', 'no_lang_code', 1, 'https://ror.org/023366513 Atlantis Consulting (Greece)'),
(15491, 'https://ror.org/04h6xfr41', 'no_lang_code', 1, 'https://ror.org/04h6xfr41 77 Elektronika (Hungary)'),
(15492, 'https://ror.org/03fs09n75', 'no_lang_code', 1, 'https://ror.org/03fs09n75 Aalborg Portland (Denmark)'),
(15493, 'https://ror.org/015rere91', 'no_lang_code', 1, 'https://ror.org/015rere91 Atlas Biolabs (Germany)'),
(15494, 'https://ror.org/02hwey921', 'no_lang_code', 1, 'https://ror.org/02hwey921 Biolitec (Germany)'),
(15495, 'https://ror.org/00gepdd80', 'en', 1, 'https://ror.org/00gepdd80 Atmosphere Systems and Services'),
(15496, 'https://ror.org/010e6tc72', 'no_lang_code', 1, 'https://ror.org/010e6tc72 Biolog Life Science Institute'),
(15497, 'https://ror.org/05ebj0z80', 'no_lang_code', 1, 'https://ror.org/05ebj0z80 VOCK Maschinen- und Stahlbau (Germany)'),
(15498, 'https://ror.org/04jjrwe69', 'no_lang_code', 1, 'https://ror.org/04jjrwe69 A E Solutions (United Kingdom)'),
(15499, 'https://ror.org/05bdy6z50', 'no_lang_code', 1, 'https://ror.org/05bdy6z50 AJ Plastic Components (Ireland)'),
(15500, 'https://ror.org/01q781422', 'no_lang_code', 1, 'https://ror.org/01q781422 Atomising Systems (United Kingdom)'),
(15501, 'https://ror.org/022mxs943', 'en', 1, 'https://ror.org/022mxs943 Canadian Women''s Health Network Réseau Canadien pour la Santé des Femmes'),
(15502, 'https://ror.org/05bxrj827', 'no_lang_code', 1, 'https://ror.org/05bxrj827 ATON-HT (Poland)'),
(15503, 'https://ror.org/01q3fkf15', 'no_lang_code', 1, 'https://ror.org/01q3fkf15 Arccore (Sweden)'),
(15504, 'https://ror.org/0394awa03', 'no_lang_code', 1, 'https://ror.org/0394awa03 Atos (Turkey)'),
(15505, 'https://ror.org/053swdh51', 'no_lang_code', 1, 'https://ror.org/053swdh51 ADIRA (Portugal)'),
(15506, 'https://ror.org/04z1wkk88', 'no_lang_code', 1, 'https://ror.org/04z1wkk88 Atos (Italy)'),
(15507, 'https://ror.org/0273db185', 'no_lang_code', 1, 'https://ror.org/0273db185 Archeometra (Italy)'),
(15508, 'https://ror.org/03z7ay868', 'no_lang_code', 1, 'https://ror.org/03z7ay868 Atout Vent (France)'),
(15509, 'https://ror.org/05dmfnv36', 'fr', 1, 'https://ror.org/05dmfnv36 Alcimed'),
(15510, 'https://ror.org/01q283t76', 'no_lang_code', 1, 'https://ror.org/01q283t76 Atoutveille (France)'),
(15511, 'https://ror.org/01v07fn85', 'no_lang_code', 1, 'https://ror.org/01v07fn85 A. Brito (Portugal)'),
(15512, 'https://ror.org/04y2v5q05', 'no_lang_code', 1, 'https://ror.org/04y2v5q05 Alcoa (United Kingdom)'),
(15513, 'https://ror.org/03jzs4815', 'en', 1, 'https://ror.org/03jzs4815 A. N. Nesmeyanov Institute of Organoelement Compounds Федеральное государственное бюджетное учреждение науки Институт элементоорганических соединений им. А.Н.Несмеянова Российской академии наук'),
(15514, 'https://ror.org/01gc1ag70', 'en', 1, 'https://ror.org/01gc1ag70 Alcohol Drug Mental Health Board of Franklin County'),
(15515, 'https://ror.org/0274w9y45', 'en', 1, 'https://ror.org/0274w9y45 Minerva Educational Foundation'),
(15516, 'https://ror.org/04s87ky63', 'en', 1, 'https://ror.org/04s87ky63 A.P. Karpinsky Russian Geological Research Institute Всероссийский научно-исследовательский геологический институт им. А.П. Карпинского'),
(15517, 'https://ror.org/04yejes77', 'no_lang_code', 1, 'https://ror.org/04yejes77 A.P.E. Research (Italy)'),
(15518, 'https://ror.org/03bqmf942', 'no_lang_code', 1, 'https://ror.org/03bqmf942 Atrium Innovations (Canada)'),
(15519, 'https://ror.org/0105gtj82', 'no_lang_code', 1, 'https://ror.org/0105gtj82 NORESCO (United States)'),
(15520, 'https://ror.org/011bas443', 'no_lang_code', 1, 'https://ror.org/011bas443 Biolytix (Switzerland)'),
(15521, 'https://ror.org/00qwmbr29', 'en', 1, 'https://ror.org/00qwmbr29 Architectural Research Centers Consortium'),
(15522, 'https://ror.org/00erc4w88', 'no_lang_code', 1, 'https://ror.org/00erc4w88 ATRP Solutions (United States)'),
(15523, 'https://ror.org/05e0yvq18', 'no_lang_code', 1, 'https://ror.org/05e0yvq18 DSVM Group (Denmark)'),
(15524, 'https://ror.org/01zkjwb76', 'no_lang_code', 1, 'https://ror.org/01zkjwb76 A.S.T. Group (Germany) Angewandte System Technik'),
(15525, 'https://ror.org/00bb3dm58', 'no_lang_code', 1, 'https://ror.org/00bb3dm58 Attagene'),
(15526, 'https://ror.org/05nhb7q85', 'no_lang_code', 1, 'https://ror.org/05nhb7q85 ALcontrol Laboratories'),
(15527, 'https://ror.org/04k7qsz50', 'en', 1, 'https://ror.org/04k7qsz50 Archmere Academy'),
(15528, 'https://ror.org/04qydbg58', 'no_lang_code', 1, 'https://ror.org/04qydbg58 Arcola Energy (United Kingdom)'),
(15529, 'https://ror.org/01h05fy77', 'no_lang_code', 1, 'https://ror.org/01h05fy77 ÅAC Microtec (Sweden)'),
(15530, 'https://ror.org/029hqwk21', 'no_lang_code', 1, 'https://ror.org/029hqwk21 Alcyomics (United Kingdom)'),
(15531, 'https://ror.org/01ceqc519', 'en', 1, 'https://ror.org/01ceqc519 United States Arctic Research Commission'),
(15532, 'https://ror.org/03t8x1c03', 'no_lang_code', 1, 'https://ror.org/03t8x1c03 Aalterpaint (Belgium)'),
(15533, 'https://ror.org/02nxmy513', 'en', 1, 'https://ror.org/02nxmy513 Samuel Simmonds Memorial Hospital'),
(15534, 'https://ror.org/00bkqxm79', 'en', 1, 'https://ror.org/00bkqxm79 Aldebaran Marine Research and Broadcast'),
(15535, 'https://ror.org/036n9m383', 'no_lang_code', 1, 'https://ror.org/036n9m383 AB Agri'),
(15536, 'https://ror.org/04zb7yk64', 'no_lang_code', 1, 'https://ror.org/04zb7yk64 Ardaco (Slovakia)'),
(15537, 'https://ror.org/030v6tx56', 'en', 1, 'https://ror.org/030v6tx56 THETA Uganda'),
(15538, 'https://ror.org/05nefdd87', 'no_lang_code', 1, 'https://ror.org/05nefdd87 BioMarck Pharmaceuticals (United States)'),
(15539, 'https://ror.org/03j4qkf39', 'no_lang_code', 1, 'https://ror.org/03j4qkf39 Attocube Systems (Germany)'),
(15540, 'https://ror.org/03px3wr77', 'en', 1, 'https://ror.org/03px3wr77 Danish Academy of Technical Sciences'),
(15541, 'https://ror.org/00jdtc447', 'no_lang_code', 1, 'https://ror.org/00jdtc447 Ab.Acus (Italy)'),
(15542, 'https://ror.org/02v11vt47', 'no_lang_code', 1, 'https://ror.org/02v11vt47 Biomay (Austria)'),
(15543, 'https://ror.org/0359nwj91', 'no_lang_code', 1, 'https://ror.org/0359nwj91 Abamotor Energia (Spain)'),
(15544, 'https://ror.org/02nnffk43', 'no_lang_code', 1, 'https://ror.org/02nnffk43 Audiofile (United States)'),
(15545, 'https://ror.org/025882322', 'no_lang_code', 1, 'https://ror.org/025882322 Ingram Content Group (United States)'),
(15546, 'https://ror.org/05qjkay50', 'no_lang_code', 1, 'https://ror.org/05qjkay50 ABB (Norway)'),
(15547, 'https://ror.org/02twn9v08', 'no_lang_code', 1, 'https://ror.org/02twn9v08 ABB (Canada)'),
(15548, 'https://ror.org/059j8wt77', 'en', 1, 'https://ror.org/059j8wt77 Alexandria Department of Community and Human Services'),
(15549, 'https://ror.org/04vnkt240', 'no_lang_code', 1, 'https://ror.org/04vnkt240 Alexza Pharmaceuticals (United States)'),
(15550, 'https://ror.org/01e09ge17', 'no_lang_code', 1, 'https://ror.org/01e09ge17 EasyCGI (United States)'),
(15551, 'https://ror.org/037aj8726', 'en', 1, 'https://ror.org/037aj8726 North Florida Area Agency on Aging'),
(15552, 'https://ror.org/02nrgrm49', 'no_lang_code', 1, 'https://ror.org/02nrgrm49 Alfa Imaging (Spain)'),
(15553, 'https://ror.org/03avx4w11', 'no_lang_code', 1, 'https://ror.org/03avx4w11 Costruzioni Apparecchiature Elettroniche Nucleari (Italy)'),
(15554, 'https://ror.org/012jkjf69', 'no_lang_code', 1, 'https://ror.org/012jkjf69 Alfa Laval (Sweden)'),
(15555, 'https://ror.org/03faeab35', 'no_lang_code', 1, 'https://ror.org/03faeab35 ABB (Finland)'),
(15556, 'https://ror.org/01jgjmr04', 'no_lang_code', 1, 'https://ror.org/01jgjmr04 Aurora Optics (United States)'),
(15557, 'https://ror.org/04wrzra57', 'en', 1, 'https://ror.org/04wrzra57 Biomedical Engineering Society'),
(15558, 'https://ror.org/01rt4qf18', 'en', 1, 'https://ror.org/01rt4qf18 Abbotsford Veterinary Clinic'),
(15559, 'https://ror.org/052dkve29', 'no_lang_code', 1, 'https://ror.org/052dkve29 Biomedical Enterprises (United States)'),
(15560, 'https://ror.org/019xzfh39', 'no_lang_code', 1, 'https://ror.org/019xzfh39 Huron Technologies (Canada)'),
(15561, 'https://ror.org/05bn6qf70', 'en', 1, 'https://ror.org/05bn6qf70 Aurora College'),
(15562, 'https://ror.org/036atcw47', 'en', 1, 'https://ror.org/036atcw47 Alfred Mann Foundation'),
(15563, 'https://ror.org/00fz5b994', 'no_lang_code', 1, 'https://ror.org/00fz5b994 AbilityNet (United Kingdom)'),
(15564, 'https://ror.org/040q70c97', 'no_lang_code', 1, 'https://ror.org/040q70c97 Aurrenak (Spain)'),
(15565, 'https://ror.org/00sskxf38', 'no_lang_code', 1, 'https://ror.org/00sskxf38 Algade (France)'),
(15566, 'https://ror.org/00h0js975', 'no_lang_code', 1, 'https://ror.org/00h0js975 ABIS (Poland)'),
(15567, 'https://ror.org/01g9rp025', 'en', 1, 'https://ror.org/01g9rp025 Austin Independent School District Distrito Escolar Independiente de Austin'),
(15568, 'https://ror.org/04vafcv05', 'no_lang_code', 1, 'https://ror.org/04vafcv05 AlgaPlus (Portugal)'),
(15569, 'https://ror.org/04m57ab39', 'en', 1, 'https://ror.org/04m57ab39 Austin Travis County Integral Care'),
(15570, 'https://ror.org/05eb0w304', 'no_lang_code', 1, 'https://ror.org/05eb0w304 ABM SOLID (Poland)'),
(15571, 'https://ror.org/00p0vea65', 'no_lang_code', 1, 'https://ror.org/00p0vea65 Abqmr (United States)'),
(15572, 'https://ror.org/04ph1ah53', 'no_lang_code', 1, 'https://ror.org/04ph1ah53 ARES Energiesysteme (Germany)'),
(15573, 'https://ror.org/01yyf4310', 'fr', 1, 'https://ror.org/01yyf4310 Algoé'),
(15574, 'https://ror.org/05km9fv21', 'en', 1, 'https://ror.org/05km9fv21 National Stem Cell Foundation of Australia'),
(15575, 'https://ror.org/00ynx7r03', 'no_lang_code', 1, 'https://ror.org/00ynx7r03 Biomod (Canada)'),
(15576, 'https://ror.org/01dpsf321', 'no_lang_code', 1, 'https://ror.org/01dpsf321 On Telecoms (Greece)'),
(15577, 'https://ror.org/00cmpcq57', 'no_lang_code', 1, 'https://ror.org/00cmpcq57 Areté Associates (United States)'),
(15578, 'https://ror.org/05q4npq70', 'no_lang_code', 1, 'https://ror.org/05q4npq70 Absynth Biologics (United Kingdom)'),
(15579, 'https://ror.org/00vg4nv59', 'en', 1, 'https://ror.org/00vg4nv59 Austrian Foundry Research Institute'),
(15580, 'https://ror.org/04j47vk14', 'en', 1, 'https://ror.org/04j47vk14 Austrian Research Institute for Artificial Intelligence Österreichisches Forschungsinstitut für Artificial Intelligence'),
(15581, 'https://ror.org/057rd1163', 'no_lang_code', 1, 'https://ror.org/057rd1163 Biomol Informatics (Spain)'),
(15582, 'https://ror.org/05hzvxx71', 'en', 1, 'https://ror.org/05hzvxx71 Autism Society of America'),
(15583, 'https://ror.org/00g4cq821', 'no_lang_code', 1, 'https://ror.org/00g4cq821 Triple Point Technology (Canada)'),
(15584, 'https://ror.org/007cyr634', 'no_lang_code', 1, 'https://ror.org/007cyr634 AbTech (United States)'),
(15585, 'https://ror.org/022fx7a43', 'no_lang_code', 1, 'https://ror.org/022fx7a43 Biomolecular Research Genomics (Italy)'),
(15586, 'https://ror.org/010de7v16', 'no_lang_code', 1, 'https://ror.org/010de7v16 Orchid (Switzerland)'),
(15587, 'https://ror.org/0595qv417', 'no_lang_code', 1, 'https://ror.org/0595qv417 Abzyme Therapeutics (United States)'),
(15588, 'https://ror.org/01v56jr26', 'no_lang_code', 1, 'https://ror.org/01v56jr26 BioNanoNet'),
(15589, 'https://ror.org/0116eqt27', 'no_lang_code', 1, 'https://ror.org/0116eqt27 Bionex Pharmaceuticals (United States)'),
(15590, 'https://ror.org/040jnxh95', 'no_lang_code', 1, 'https://ror.org/040jnxh95 AliénorEU'),
(15591, 'https://ror.org/0549xxn78', 'no_lang_code', 1, 'https://ror.org/0549xxn78 Rusal (Ireland) РУСАЛ'),
(15592, 'https://ror.org/04p89va55', 'no_lang_code', 1, 'https://ror.org/04p89va55 TRW Automotive (France)'),
(15593, 'https://ror.org/0217vz783', 'no_lang_code', 1, 'https://ror.org/0217vz783 Autoflug (Germany)'),
(15594, 'https://ror.org/04mmhym95', 'no_lang_code', 1, 'https://ror.org/04mmhym95 Argans (United Kingdom)'),
(15595, 'https://ror.org/044b7f107', 'no_lang_code', 1, 'https://ror.org/044b7f107 BioPhage Pharma (Canada)'),
(15596, 'https://ror.org/00zsd7b19', 'no_lang_code', 1, 'https://ror.org/00zsd7b19 Alitalia (Italy)'),
(15597, 'https://ror.org/04ehgfn88', 'no_lang_code', 1, 'https://ror.org/04ehgfn88 Arge Vegetationsökologie und Landschaftsplanung'),
(15598, 'https://ror.org/05ktp5w69', 'no_lang_code', 1, 'https://ror.org/05ktp5w69 BioPharm (United Kingdom)'),
(15599, 'https://ror.org/035kfrg53', 'no_lang_code', 1, 'https://ror.org/035kfrg53 Argela (Turkey)'),
(15600, 'https://ror.org/04ny0re85', 'no_lang_code', 1, 'https://ror.org/04ny0re85 Biopharma Technology (United Kingdom)'),
(15601, 'https://ror.org/04kpvds24', 'no_lang_code', 1, 'https://ror.org/04kpvds24 Applied Logic Laboratory (Hungary)'),
(15602, 'https://ror.org/05shjdq49', 'no_lang_code', 1, 'https://ror.org/05shjdq49 Argo (Greece)'),
(15603, 'https://ror.org/03j4bbt02', 'no_lang_code', 1, 'https://ror.org/03j4bbt02 Biopolis (Spain)'),
(15604, 'https://ror.org/00qva7y21', 'en', 1, 'https://ror.org/00qva7y21 Academy for Healthcare Improvement'),
(15605, 'https://ror.org/01txxg691', 'no_lang_code', 1, 'https://ror.org/01txxg691 Automated Cells & Equipment (United States)'),
(15606, 'https://ror.org/051b3zp86', 'en', 1, 'https://ror.org/051b3zp86 Academy of Entrepreneurship'),
(15607, 'https://ror.org/05sfzsk90', 'en', 1, 'https://ror.org/05sfzsk90 College of Western Idaho'),
(15608, 'https://ror.org/038s1hq41', 'en', 1, 'https://ror.org/038s1hq41 All Russian Research Institute of Hydrometeorological information World Data Center Всероссийский научно-исследовательский институт России гидрометеорологической информации Мировой центр данных'),
(15609, 'https://ror.org/00tg69j59', 'no_lang_code', 1, 'https://ror.org/00tg69j59 Argus International (United States)'),
(15610, 'https://ror.org/02s9zgk30', 'en', 1, 'https://ror.org/02s9zgk30 Allegheny County Department of Human Services'),
(15611, 'https://ror.org/03n8jr770', 'no_lang_code', 1, 'https://ror.org/03n8jr770 ACAL Energy (United Kingdom)'),
(15612, 'https://ror.org/00mynyp54', 'de', 1, 'https://ror.org/00mynyp54 Allgemeiner Deutscher Automobil Club General German Automobile Club'),
(15613, 'https://ror.org/013xgfd67', 'no_lang_code', 1, 'https://ror.org/013xgfd67 Biopredic (France)'),
(15614, 'https://ror.org/0079hf726', 'no_lang_code', 1, 'https://ror.org/0079hf726 ARIA Technologies'),
(15615, 'https://ror.org/04veekh32', 'en', 1, 'https://ror.org/04veekh32 Autonomous Undersea Systems Institute'),
(15616, 'https://ror.org/01922pt58', 'en', 1, 'https://ror.org/01922pt58 Alliance for Safe Kids'),
(15617, 'https://ror.org/04x4tst13', 'no_lang_code', 1, 'https://ror.org/04x4tst13 Bioprojet (France)'),
(15618, 'https://ror.org/03mg4b565', 'it', 1, 'https://ror.org/03mg4b565 Autorità di bacino dei fiumi Isonzo, Tagliamento, Livenza, Piave, Brenta-Bacchiglione'),
(15619, 'https://ror.org/04vtdnj65', 'no_lang_code', 1, 'https://ror.org/04vtdnj65 Aries Alliance (France)'),
(15620, 'https://ror.org/03m3an259', 'no_lang_code', 1, 'https://ror.org/03m3an259 Arisan Therapeutics (United States)'),
(15621, 'https://ror.org/00g8qdw34', 'no_lang_code', 1, 'https://ror.org/00g8qdw34 Arisaph Pharmaceuticals (United States)'),
(15622, 'https://ror.org/00xemxm68', 'no_lang_code', 1, 'https://ror.org/00xemxm68 All4tec (France)'),
(15623, 'https://ror.org/0248dnv50', 'no_lang_code', 1, 'https://ror.org/0248dnv50 Bioptix (United States)'),
(15624, 'https://ror.org/02jmfhf57', 'no_lang_code', 1, 'https://ror.org/02jmfhf57 Biopure (United States)'),
(15625, 'https://ror.org/05ch6rk19', 'no_lang_code', 1, 'https://ror.org/05ch6rk19 AvanSci Bio (United States)'),
(15626, 'https://ror.org/01zqwky61', 'no_lang_code', 1, 'https://ror.org/01zqwky61 Avantes (Netherlands)'),
(15627, 'https://ror.org/00r0f2n85', 'en', 1, 'https://ror.org/00r0f2n85 Accelerace'),
(15628, 'https://ror.org/01nnq1w58', 'no_lang_code', 1, 'https://ror.org/01nnq1w58 AvantiCell Science (United Kingdom)'),
(15629, 'https://ror.org/05fnat077', 'en', 1, 'https://ror.org/05fnat077 Arise'),
(15630, 'https://ror.org/02gwywt13', 'en', 1, 'https://ror.org/02gwywt13 Allies with Families'),
(15631, 'https://ror.org/03h80hk08', 'no_lang_code', 1, 'https://ror.org/03h80hk08 Alligator Bioscience (Sweden)'),
(15632, 'https://ror.org/050473r14', 'no_lang_code', 1, 'https://ror.org/050473r14 Spectrum Pharmaceuticals (United States)'),
(15633, 'https://ror.org/04e86kw41', 'en', 1, 'https://ror.org/04e86kw41 Arizona Youth Partnership'),
(15634, 'https://ror.org/03hz0jb14', 'no_lang_code', 1, 'https://ror.org/03hz0jb14 Avaxia Biologics (United States)'),
(15635, 'https://ror.org/00n19h079', 'no_lang_code', 1, 'https://ror.org/00n19h079 Arjowiggins (France)'),
(15636, 'https://ror.org/051c1hy38', 'no_lang_code', 1, 'https://ror.org/051c1hy38 Avecom (Belgium)'),
(15637, 'https://ror.org/04fkf4s26', 'no_lang_code', 1, 'https://ror.org/04fkf4s26 Intellijoint Surgical (Canada)'),
(15638, 'https://ror.org/00jh09798', 'no_lang_code', 1, 'https://ror.org/00jh09798 Acos Group (Germany)'),
(15639, 'https://ror.org/00415cn92', 'no_lang_code', 1, 'https://ror.org/00415cn92 Lehnsgaard (Denmark)'),
(15640, 'https://ror.org/04hb7mq03', 'no_lang_code', 1, 'https://ror.org/04hb7mq03 Accessible Designs (United States)'),
(15641, 'https://ror.org/03wde7j36', 'no_lang_code', 1, 'https://ror.org/03wde7j36 Averbis (Germany)'),
(15642, 'https://ror.org/00vm5ky05', 'en', 1, 'https://ror.org/00vm5ky05 Averett University'),
(15643, 'https://ror.org/049k1wy83', 'no_lang_code', 1, 'https://ror.org/049k1wy83 Acciai Speciali Terni (Italy)'),
(15644, 'https://ror.org/01k4bzh19', 'no_lang_code', 1, 'https://ror.org/01k4bzh19 Arjowiggins (United Kingdom)'),
(15645, 'https://ror.org/005szp141', 'no_lang_code', 1, 'https://ror.org/005szp141 ProterixBio (United States)'),
(15646, 'https://ror.org/021mz1r56', 'no_lang_code', 1, 'https://ror.org/021mz1r56 BioSciCon (United States)'),
(15647, 'https://ror.org/01rqt6394', 'en', 1, 'https://ror.org/01rqt6394 Arkansas Science & Technology'),
(15648, 'https://ror.org/020d95911', 'en', 1, 'https://ror.org/020d95911 Almaty University of Power Engineering and Telecommunications Алматинский университет энергетики и связи Алматы энергетика және байланыс институты'),
(15649, 'https://ror.org/00zg9jh77', 'en', 1, 'https://ror.org/00zg9jh77 Arkansas State Hospital'),
(15650, 'https://ror.org/00dnz3441', 'no_lang_code', 1, 'https://ror.org/00dnz3441 Almex (Netherlands)'),
(15651, 'https://ror.org/04btmch86', 'no_lang_code', 1, 'https://ror.org/04btmch86 AccSys Technology (United States)'),
(15652, 'https://ror.org/01nms9j09', 'no_lang_code', 1, 'https://ror.org/01nms9j09 Alpes Lasers (Switzerland)'),
(15653, 'https://ror.org/04jfzmb35', 'no_lang_code', 1, 'https://ror.org/04jfzmb35 Biosensia (Ireland)'),
(15654, 'https://ror.org/01s2ng935', 'no_lang_code', 1, 'https://ror.org/01s2ng935 BioSensics (United States)'),
(15655, 'https://ror.org/04qjx1736', 'no_lang_code', 1, 'https://ror.org/04qjx1736 Biosensor Applications (Sweden)'),
(15656, 'https://ror.org/00dfbgk15', 'no_lang_code', 1, 'https://ror.org/00dfbgk15 AccuStrata (United States)'),
(15657, 'https://ror.org/02bymts86', 'en', 1, 'https://ror.org/02bymts86 Academic and Research Network of Slovenia'),
(15658, 'https://ror.org/04wr95t62', 'no_lang_code', 1, 'https://ror.org/04wr95t62 Alpex Technologies'),
(15659, 'https://ror.org/039g7yg54', 'no_lang_code', 1, 'https://ror.org/039g7yg54 Automobile Association (United Kingdom)'),
(15660, 'https://ror.org/00y0kp964', 'no_lang_code', 1, 'https://ror.org/00y0kp964 Outokumpu (Sweden)'),
(15661, 'https://ror.org/031x2yz16', 'no_lang_code', 1, 'https://ror.org/031x2yz16 Arri (Germany)'),
(15662, 'https://ror.org/00h2r3g41', 'no_lang_code', 1, 'https://ror.org/00h2r3g41 Ausa (Spain)'),
(15663, 'https://ror.org/03fxegb97', 'en', 1, 'https://ror.org/03fxegb97 Alpha Consulting Services'),
(15664, 'https://ror.org/047ac3d11', 'no_lang_code', 1, 'https://ror.org/047ac3d11 Alpha Marine (Greece)'),
(15665, 'https://ror.org/04w3v4n03', 'no_lang_code', 1, 'https://ror.org/04w3v4n03 Biostat (United States)'),
(15666, 'https://ror.org/02vxa5545', 'no_lang_code', 1, 'https://ror.org/02vxa5545 Haemonetics (United States)'),
(15667, 'https://ror.org/03a76f909', 'en', 1, 'https://ror.org/03a76f909 Autoridad Portuaria de Santander Santander Port Authority'),
(15668, 'https://ror.org/0222ak715', 'no_lang_code', 1, 'https://ror.org/0222ak715 ARServices (United States)'),
(15669, 'https://ror.org/03wdfz437', 'en', 1, 'https://ror.org/03wdfz437 Valencia Port'),
(15670, 'https://ror.org/01s6ka014', 'no_lang_code', 1, 'https://ror.org/01s6ka014 AlphaLabs (France)'),
(15671, 'https://ror.org/002g1fh49', 'no_lang_code', 1, 'https://ror.org/002g1fh49 AlphaMed (United States)'),
(15672, 'https://ror.org/00j1qfq25', 'no_lang_code', 1, 'https://ror.org/00j1qfq25 Aceites Malagon (Spain)'),
(15673, 'https://ror.org/01xy8wf83', 'ca', 1, 'https://ror.org/01xy8wf83 Reial Automòbil Club de Catalunya'),
(15674, 'https://ror.org/02f33fz20', 'no_lang_code', 1, 'https://ror.org/02f33fz20 AvidCare (United States)'),
(15675, 'https://ror.org/05g51bs78', 'no_lang_code', 1, 'https://ror.org/05g51bs78 Acelot (United States)'),
(15676, 'https://ror.org/02p2xd084', 'no_lang_code', 1, 'https://ror.org/02p2xd084 Avidity (United States)'),
(15677, 'https://ror.org/00z1gnf82', 'no_lang_code', 1, 'https://ror.org/00z1gnf82 Avilo Software (Canada)'),
(15678, 'https://ror.org/03nb0an85', 'no_lang_code', 1, 'https://ror.org/03nb0an85 Aviointeriors (Italy)'),
(15679, 'https://ror.org/03ve6sf73', 'no_lang_code', 1, 'https://ror.org/03ve6sf73 BioSystem (Germany)'),
(15680, 'https://ror.org/059q7ds12', 'no_lang_code', 1, 'https://ror.org/059q7ds12 Alpha Therm (Germany)'),
(15681, 'https://ror.org/00zndc617', 'no_lang_code', 1, 'https://ror.org/00zndc617 Art of Technology (Switzerland)'),
(15682, 'https://ror.org/01df52k09', 'no_lang_code', 1, 'https://ror.org/01df52k09 Artaic (United States)'),
(15683, 'https://ror.org/03yc4yk34', 'no_lang_code', 1, 'https://ror.org/03yc4yk34 Avitronics Research (Greece)'),
(15684, 'https://ror.org/023yhw405', 'no_lang_code', 1, 'https://ror.org/023yhw405 Aviv Biomedical (United States)'),
(15685, 'https://ror.org/03ct7hd51', 'no_lang_code', 1, 'https://ror.org/03ct7hd51 Henkel (Netherlands)'),
(15686, 'https://ror.org/01xnazj43', 'no_lang_code', 1, 'https://ror.org/01xnazj43 Alsitek (United Kingdom)'),
(15687, 'https://ror.org/05b023967', 'no_lang_code', 1, 'https://ror.org/05b023967 BioTechnica (United States)'),
(15688, 'https://ror.org/04xx5ce35', 'en', 1, 'https://ror.org/04xx5ce35 Fairfield Hospital'),
(15689, 'https://ror.org/02k9pbz03', 'no_lang_code', 1, 'https://ror.org/02k9pbz03 ACIC (Belgium)'),
(15690, 'https://ror.org/011r1ph27', 'no_lang_code', 1, 'https://ror.org/011r1ph27 Avonwood (United Kingdom)'),
(15691, 'https://ror.org/03py22436', 'no_lang_code', 1, 'https://ror.org/03py22436 Zodiac Aerospace (United States)'),
(15692, 'https://ror.org/00ybrvx84', 'no_lang_code', 1, 'https://ror.org/00ybrvx84 Awaiba (Portugal)'),
(15693, 'https://ror.org/033nt4y02', 'no_lang_code', 1, 'https://ror.org/033nt4y02 Advance Concepts for Interactive Technology (Germany)'),
(15694, 'https://ror.org/01x4yq975', 'no_lang_code', 1, 'https://ror.org/01x4yq975 Awite Bioenergie (Germany)'),
(15695, 'https://ror.org/0284a6m60', 'no_lang_code', 1, 'https://ror.org/0284a6m60 Axerion Therapeutics (United States)'),
(15696, 'https://ror.org/0389mec09', 'no_lang_code', 1, 'https://ror.org/0389mec09 Biothermica (Canada)'),
(15697, 'https://ror.org/03ws6g685', 'no_lang_code', 1, 'https://ror.org/03ws6g685 Aciturri (Spain)'),
(15698, 'https://ror.org/015g9cc75', 'no_lang_code', 1, 'https://ror.org/015g9cc75 BIOTECmarin (Germany)'),
(15699, 'https://ror.org/027zd6v59', 'no_lang_code', 1, 'https://ror.org/027zd6v59 Isomerase Therapeutics (United Kingdom)'),
(15700, 'https://ror.org/01j65ny98', 'no_lang_code', 1, 'https://ror.org/01j65ny98 Acktar (Israel)'),
(15701, 'https://ror.org/03d1aqs10', 'no_lang_code', 1, 'https://ror.org/03d1aqs10 ACMA Social Marketing'),
(15702, 'https://ror.org/05w8qnb04', 'no_lang_code', 1, 'https://ror.org/05w8qnb04 Axion Biosystems (United States)'),
(15703, 'https://ror.org/055e84666', 'no_lang_code', 1, 'https://ror.org/055e84666 Acme Express'),
(15704, 'https://ror.org/00vj7a915', 'no_lang_code', 1, 'https://ror.org/00vj7a915 Altair Engineering (France)'),
(15705, 'https://ror.org/01h6fqa13', 'no_lang_code', 1, 'https://ror.org/01h6fqa13 Axon Automotive (United Kingdom)'),
(15706, 'https://ror.org/00q3fka24', 'no_lang_code', 1, 'https://ror.org/00q3fka24 Altairnano (United States)'),
(15707, 'https://ror.org/01fzeeh76', 'no_lang_code', 1, 'https://ror.org/01fzeeh76 Artelys (France)'),
(15708, 'https://ror.org/00ab0d040', 'no_lang_code', 1, 'https://ror.org/00ab0d040 Axon (United States)'),
(15709, 'https://ror.org/04m8q0w70', 'no_lang_code', 1, 'https://ror.org/04m8q0w70 BioTransformations (United Kingdom)'),
(15710, 'https://ror.org/05fr4xz54', 'no_lang_code', 1, 'https://ror.org/05fr4xz54 Nitto (United States)'),
(15711, 'https://ror.org/02fhnan19', 'no_lang_code', 1, 'https://ror.org/02fhnan19 Acpharis'),
(15712, 'https://ror.org/05jkv6633', 'no_lang_code', 1, 'https://ror.org/05jkv6633 Artemis Intelligent Power (United Kingdom)'),
(15713, 'https://ror.org/05h70tr57', 'no_lang_code', 1, 'https://ror.org/05h70tr57 Altec Software (Greece)'),
(15714, 'https://ror.org/0085yms62', 'no_lang_code', 1, 'https://ror.org/0085yms62 AcQ Inducom'),
(15715, 'https://ror.org/05jmy3s26', 'no_lang_code', 1, 'https://ror.org/05jmy3s26 Artes Biotechnology (Germany)'),
(15716, 'https://ror.org/014rb1v48', 'no_lang_code', 1, 'https://ror.org/014rb1v48 AMREP (United States)'),
(15717, 'https://ror.org/023ccd616', 'no_lang_code', 1, 'https://ror.org/023ccd616 AcrossLimits'),
(15718, 'https://ror.org/054xwps40', 'no_lang_code', 1, 'https://ror.org/054xwps40 Axsym (United Kingdom)'),
(15719, 'https://ror.org/01fg04993', 'no_lang_code', 1, 'https://ror.org/01fg04993 ACS Biomarker (Netherlands)'),
(15720, 'https://ror.org/00ch9bs54', 'no_lang_code', 1, 'https://ror.org/00ch9bs54 Altec (United States)'),
(15721, 'https://ror.org/05yny8j84', 'en', 1, 'https://ror.org/05yny8j84 Americas Commercial Transportation Research'),
(15722, 'https://ror.org/00m96gg93', 'no_lang_code', 1, 'https://ror.org/00m96gg93 Altera (United Kingdom)'),
(15723, 'https://ror.org/0562rw148', 'no_lang_code', 1, 'https://ror.org/0562rw148 Biotronics 3D (United Kingdom)'),
(15724, 'https://ror.org/0376pw173', 'no_lang_code', 1, 'https://ror.org/0376pw173 Alteryx (United Kingdom)'),
(15725, 'https://ror.org/02bap3480', 'no_lang_code', 1, 'https://ror.org/02bap3480 BioTronics (United States)'),
(15726, 'https://ror.org/00d269r04', 'no_lang_code', 1, 'https://ror.org/00d269r04 Ayanda Biosystems (Switzerland)'),
(15727, 'https://ror.org/04kzfav20', 'no_lang_code', 1, 'https://ror.org/04kzfav20 Alterra Power (Canada)'),
(15728, 'https://ror.org/00v2kj637', 'no_lang_code', 1, 'https://ror.org/00v2kj637 BioVidria (United States)'),
(15729, 'https://ror.org/01m7s5539', 'no_lang_code', 1, 'https://ror.org/01m7s5539 Altoris (United States)'),
(15730, 'https://ror.org/01avyb607', 'no_lang_code', 1, 'https://ror.org/01avyb607 Artibal (Spain)'),
(15731, 'https://ror.org/01xtbck32', 'no_lang_code', 1, 'https://ror.org/01xtbck32 Actinix (United States)'),
(15732, 'https://ror.org/008abej30', 'no_lang_code', 1, 'https://ror.org/008abej30 Aylesford Newsprint (United Kingdom)'),
(15733, 'https://ror.org/031241j87', 'no_lang_code', 1, 'https://ror.org/031241j87 Artificial Cell Technologies (United States)'),
(15734, 'https://ror.org/044nkqy76', 'no_lang_code', 1, 'https://ror.org/044nkqy76 Ayogo (Canada)'),
(15735, 'https://ror.org/05fz04663', 'no_lang_code', 1, 'https://ror.org/05fz04663 Activation Laboratories'),
(15736, 'https://ror.org/016zn5019', 'no_lang_code', 1, 'https://ror.org/016zn5019 Altran (United Kingdom)'),
(15737, 'https://ror.org/006sr7078', 'no_lang_code', 1, 'https://ror.org/006sr7078 Regenerys (United Kingdom)'),
(15738, 'https://ror.org/02r1e6089', 'no_lang_code', 1, 'https://ror.org/02r1e6089 Lundin Mining (Ireland)'),
(15739, 'https://ror.org/00m51t454', 'no_lang_code', 1, 'https://ror.org/00m51t454 SavvyDox (Canada)'),
(15740, 'https://ror.org/025v2yp51', 'no_lang_code', 1, 'https://ror.org/025v2yp51 Altus Technologies (United States)'),
(15741, 'https://ror.org/05p590m36', 'no_lang_code', 1, 'https://ror.org/05p590m36 Artificial Intelligence in Medicine (Canada)'),
(15742, 'https://ror.org/02794f225', 'no_lang_code', 1, 'https://ror.org/02794f225 Acutech (Greece)'),
(15743, 'https://ror.org/004mx7t23', 'en', 1, 'https://ror.org/004mx7t23 Birmingham Bloomfield Community Coalition'),
(15744, 'https://ror.org/00gh58f75', 'en', 1, 'https://ror.org/00gh58f75 Library of Birmingham'),
(15745, 'https://ror.org/007422545', 'no_lang_code', 1, 'https://ror.org/007422545 Active Space Technologies (Germany)'),
(15746, 'https://ror.org/02qe2w544', 'en', 1, 'https://ror.org/02qe2w544 Birmingham Museum and Art Gallery'),
(15747, 'https://ror.org/05sa51379', 'en', 1, 'https://ror.org/05sa51379 Birmingham Repertory Theatre'),
(15748, 'https://ror.org/02qem3h74', 'en', 1, 'https://ror.org/02qem3h74 Birmingham Science City'),
(15749, 'https://ror.org/011mf7877', 'no_lang_code', 1, 'https://ror.org/011mf7877 Automatizace železniční dopravy Praha AŽD Praha (Czechia)'),
(15750, 'https://ror.org/04hypbt36', 'no_lang_code', 1, 'https://ror.org/04hypbt36 BISDN (Germany)'),
(15751, 'https://ror.org/02jbnyk55', 'no_lang_code', 1, 'https://ror.org/02jbnyk55 Active Spectrum (United States)');
INSERT INTO `rors` VALUES
(15752, 'https://ror.org/04cqe3x57', 'no_lang_code', 1, 'https://ror.org/04cqe3x57 Arctur (Slovenia)'),
(15753, 'https://ror.org/04wmc0p46', 'en', 1, 'https://ror.org/04wmc0p46 Azerbaijan Research Educational Network Association'),
(15754, 'https://ror.org/012dd2p55', 'no_lang_code', 1, 'https://ror.org/012dd2p55 Arttic'),
(15755, 'https://ror.org/03zp7nb85', 'no_lang_code', 1, 'https://ror.org/03zp7nb85 Active Technologies (Italy)'),
(15756, 'https://ror.org/02p4mks29', 'no_lang_code', 1, 'https://ror.org/02p4mks29 Henry Schein (United States)'),
(15757, 'https://ror.org/03qm16g93', 'no_lang_code', 1, 'https://ror.org/03qm16g93 Aluminium Surface Engineering (United Kingdom)'),
(15758, 'https://ror.org/04thmk358', 'no_lang_code', 1, 'https://ror.org/04thmk358 Kyorin (United States)'),
(15759, 'https://ror.org/02teja790', 'no_lang_code', 1, 'https://ror.org/02teja790 Aruna Biomedical (United States)'),
(15760, 'https://ror.org/04mnq8476', 'en', 1, 'https://ror.org/04mnq8476 Aluminium Valley Société de la Vallée de l''Aluminium'),
(15761, 'https://ror.org/01j93z975', 'no_lang_code', 1, 'https://ror.org/01j93z975 Azienda del Consorzio Trasporti Veneziano (Italy)'),
(15762, 'https://ror.org/01pr67x49', 'no_lang_code', 1, 'https://ror.org/01pr67x49 Arvia Technology (United Kingdom)'),
(15763, 'https://ror.org/05p29dk84', 'no_lang_code', 1, 'https://ror.org/05p29dk84 Bisiach & Carru (Italy)'),
(15764, 'https://ror.org/01ebn9j06', 'no_lang_code', 1, 'https://ror.org/01ebn9j06 Iren (Italy)'),
(15765, 'https://ror.org/05q6gmw98', 'en', 1, 'https://ror.org/05q6gmw98 Asatrem'),
(15766, 'https://ror.org/017k93810', 'no_lang_code', 1, 'https://ror.org/017k93810 Azienda Industriali Municipali di Vicenza (Italy)'),
(15767, 'https://ror.org/02r3v5z34', 'no_lang_code', 1, 'https://ror.org/02r3v5z34 AcXys Technologies (France)'),
(15768, 'https://ror.org/00be37468', 'no_lang_code', 1, 'https://ror.org/00be37468 Azienda Mobilità e Trasporti'),
(15769, 'https://ror.org/04k7ty438', 'no_lang_code', 1, 'https://ror.org/04k7ty438 Bitecic (United Kingdom)'),
(15770, 'https://ror.org/04e3mez11', 'no_lang_code', 1, 'https://ror.org/04e3mez11 Immucor (United States)'),
(15771, 'https://ror.org/00fpt6s33', 'no_lang_code', 1, 'https://ror.org/00fpt6s33 AdaCore (France)'),
(15772, 'https://ror.org/00e90q161', 'no_lang_code', 1, 'https://ror.org/00e90q161 ASCOMP (Switzerland)'),
(15773, 'https://ror.org/0032ykz68', 'no_lang_code', 1, 'https://ror.org/0032ykz68 Ascora (Germany)'),
(15774, 'https://ror.org/0533m8w24', 'no_lang_code', 1, 'https://ror.org/0533m8w24 Advanced Simulation & Design (Germany)'),
(15775, 'https://ror.org/02xm6e195', 'no_lang_code', 1, 'https://ror.org/02xm6e195 Bitgear (Serbia)'),
(15776, 'https://ror.org/04201qf96', 'no_lang_code', 1, 'https://ror.org/04201qf96 as2con (Croatia)'),
(15777, 'https://ror.org/00sc4h441', 'no_lang_code', 1, 'https://ror.org/00sc4h441 AM Testing (Italy)'),
(15778, 'https://ror.org/03x4rma83', 'no_lang_code', 1, 'https://ror.org/03x4rma83 Aztec Systems (United States)'),
(15779, 'https://ror.org/04a3jpq51', 'no_lang_code', 1, 'https://ror.org/04a3jpq51 Adaptronica (Poland)'),
(15780, 'https://ror.org/01fshr394', 'no_lang_code', 1, 'https://ror.org/01fshr394 Adarza BioSystems (United States)'),
(15781, 'https://ror.org/01ts0we02', 'no_lang_code', 1, 'https://ror.org/01ts0we02 Walmart (United Kingdom)'),
(15782, 'https://ror.org/03qxmr865', 'no_lang_code', 1, 'https://ror.org/03qxmr865 Amanova (Slovenia)'),
(15783, 'https://ror.org/05135fy66', 'no_lang_code', 1, 'https://ror.org/05135fy66 Black & Veatch (United Kingdom)'),
(15784, 'https://ror.org/02k8ce792', 'no_lang_code', 1, 'https://ror.org/02k8ce792 Amantys (United Kingdom)'),
(15785, 'https://ror.org/03y83c407', 'no_lang_code', 1, 'https://ror.org/03y83c407 Babcock Power (United Kingdom)'),
(15786, 'https://ror.org/04knh8e66', 'no_lang_code', 1, 'https://ror.org/04knh8e66 Aselsan (Turkey) Askeri Elektronik Sanayi Military Electronic Industries'),
(15787, 'https://ror.org/02b4c4128', 'no_lang_code', 1, 'https://ror.org/02b4c4128 Babraham Bioscience Technologies (United Kingdom)'),
(15788, 'https://ror.org/04pqqac29', 'no_lang_code', 1, 'https://ror.org/04pqqac29 Bac2 (United Kingdom)'),
(15789, 'https://ror.org/05axffz73', 'no_lang_code', 1, 'https://ror.org/05axffz73 Amar International (United States)'),
(15790, 'https://ror.org/026a1h106', 'de', 1, 'https://ror.org/026a1h106 Verband kommunaler Unternehmen'),
(15791, 'https://ror.org/003fa5112', 'en', 1, 'https://ror.org/003fa5112 Black Sea NGO Network'),
(15792, 'https://ror.org/007rn0n34', 'no_lang_code', 1, 'https://ror.org/007rn0n34 Ashton & Moore (United Kingdom)'),
(15793, 'https://ror.org/006ryea96', 'no_lang_code', 1, 'https://ror.org/006ryea96 Ashwoods Automotive (United Kingdom)'),
(15794, 'https://ror.org/05fyshf19', 'no_lang_code', 1, 'https://ror.org/05fyshf19 Blastech (United Kingdom)'),
(15795, 'https://ror.org/012kxk780', 'en', 1, 'https://ror.org/012kxk780 Asia Foundation'),
(15796, 'https://ror.org/010tt0206', 'en', 1, 'https://ror.org/010tt0206 Asia Society'),
(15797, 'https://ror.org/00s2mdg70', 'en', 1, 'https://ror.org/00s2mdg70 Asian American Drug Abuse Program'),
(15798, 'https://ror.org/01hzp2x54', 'no_lang_code', 1, 'https://ror.org/01hzp2x54 Amber Waves Software (United States)'),
(15799, 'https://ror.org/05051a828', 'en', 1, 'https://ror.org/05051a828 Asian Community Mental Health Services'),
(15800, 'https://ror.org/03kp5tn18', 'no_lang_code', 1, 'https://ror.org/03kp5tn18 Blatraden (Sweden)'),
(15801, 'https://ror.org/00yt7g523', 'en', 1, 'https://ror.org/00yt7g523 Asian Health Coalition'),
(15802, 'https://ror.org/026s7y345', 'en', 1, 'https://ror.org/026s7y345 Blaufuss Multimedia'),
(15803, 'https://ror.org/01sxbnv57', 'no_lang_code', 1, 'https://ror.org/01sxbnv57 RealNetworks (Canada)'),
(15804, 'https://ror.org/01m12v471', 'no_lang_code', 1, 'https://ror.org/01m12v471 Ambient Systems (Netherlands)'),
(15805, 'https://ror.org/00ms70536', 'no_lang_code', 1, 'https://ror.org/00ms70536 Babcock & Wilcox (Spain)'),
(15806, 'https://ror.org/01k6asa13', 'no_lang_code', 1, 'https://ror.org/01k6asa13 Bactest (United Kingdom)'),
(15807, 'https://ror.org/01w8j2j71', 'no_lang_code', 1, 'https://ror.org/01w8j2j71 Ademtech (France)'),
(15808, 'https://ror.org/018tmag26', 'no_lang_code', 1, 'https://ror.org/018tmag26 Ambiental Technical Solutions (United Kingdom)'),
(15809, 'https://ror.org/00drde038', 'no_lang_code', 1, 'https://ror.org/00drde038 Blendics (United States)'),
(15810, 'https://ror.org/04dxb7m07', 'no_lang_code', 1, 'https://ror.org/04dxb7m07 Bactiguard (Sweden)'),
(15811, 'https://ror.org/04c8tnm64', 'ca', 1, 'https://ror.org/04c8tnm64 Badalona Serveis Assistencials'),
(15812, 'https://ror.org/03rqwpv17', 'no_lang_code', 1, 'https://ror.org/03rqwpv17 Amcor (Switzerland)'),
(15813, 'https://ror.org/02hc6j080', 'no_lang_code', 1, 'https://ror.org/02hc6j080 Blinq Network (Canada)'),
(15814, 'https://ror.org/05xcney74', 'it', 1, 'https://ror.org/05xcney74 Azienda Sanitaria Locale Roma 3'),
(15815, 'https://ror.org/046c16x31', 'en', 1, 'https://ror.org/046c16x31 Pacific Clinics'),
(15816, 'https://ror.org/00h2j5q24', 'it', 1, 'https://ror.org/00h2j5q24 Azienda Unità Sanitaria Locale 11 di Empoli'),
(15817, 'https://ror.org/05tf5t656', 'no_lang_code', 1, 'https://ror.org/05tf5t656 Baebies (United States)'),
(15818, 'https://ror.org/049yptc43', 'en', 1, 'https://ror.org/049yptc43 Asian Pacific Partners for Empowerment, Advocacy and Leadership'),
(15819, 'https://ror.org/03ajkmw94', 'en', 1, 'https://ror.org/03ajkmw94 British Academy of Film and Television Arts'),
(15820, 'https://ror.org/02hz47643', 'en', 1, 'https://ror.org/02hz47643 Asian Technology Information Program'),
(15821, 'https://ror.org/010em6d12', 'no_lang_code', 1, 'https://ror.org/010em6d12 Amec Foster Wheeler (Canada)'),
(15822, 'https://ror.org/02n27h954', 'en', 1, 'https://ror.org/02n27h954 American Academy of Allergy, Asthma and Immunology'),
(15823, 'https://ror.org/044q67424', 'no_lang_code', 1, 'https://ror.org/044q67424 Asius Technologies (United States)'),
(15824, 'https://ror.org/05s6yhj52', 'en', 1, 'https://ror.org/05s6yhj52 American Association for Higher Education and Accreditation'),
(15825, 'https://ror.org/05ds63q12', 'en', 1, 'https://ror.org/05ds63q12 Bakken Museum'),
(15826, 'https://ror.org/03qgqvs90', 'en', 1, 'https://ror.org/03qgqvs90 American Alliance of Museums'),
(15827, 'https://ror.org/03z9rt353', 'en', 1, 'https://ror.org/03z9rt353 American Association of State Colleges and Universities'),
(15828, 'https://ror.org/03yrced67', 'no_lang_code', 1, 'https://ror.org/03yrced67 Blue Wave Semiconductors (United States)'),
(15829, 'https://ror.org/03eg5yv61', 'no_lang_code', 1, 'https://ror.org/03eg5yv61 Neogen Europe (United Kingdom)'),
(15830, 'https://ror.org/05v4dhb64', 'no_lang_code', 1, 'https://ror.org/05v4dhb64 Bluefrog Design (United Kingdom)'),
(15831, 'https://ror.org/05qeark78', 'no_lang_code', 1, 'https://ror.org/05qeark78 Adicep Technologies (United States)'),
(15832, 'https://ror.org/04y4a7s50', 'en', 1, 'https://ror.org/04y4a7s50 American Board of Medical Specialties'),
(15833, 'https://ror.org/05rqggm48', 'en', 1, 'https://ror.org/05rqggm48 New Vista'),
(15834, 'https://ror.org/0463rqm34', 'en', 1, 'https://ror.org/0463rqm34 Center and Courses of Advanced Technology on Image Analysis Centro y Cursos de Tecnología Avanzada de Análisis de Imágenes'),
(15835, 'https://ror.org/017bw3q44', 'no_lang_code', 1, 'https://ror.org/017bw3q44 BMI Association'),
(15836, 'https://ror.org/01vhbxh90', 'no_lang_code', 1, 'https://ror.org/01vhbxh90 Advanced Integrated Technology Solutions & Services'),
(15837, 'https://ror.org/01kratx56', 'de', 1, 'https://ror.org/01kratx56 Federal Statistical Office Statistisches Bundesamt'),
(15838, 'https://ror.org/04t7syk29', 'en', 1, 'https://ror.org/04t7syk29 American Board of Nuclear Medicine'),
(15839, 'https://ror.org/05905mf04', 'no_lang_code', 1, 'https://ror.org/05905mf04 ACI Plastics (United States)'),
(15840, 'https://ror.org/001f7a930', 'it', 1, 'https://ror.org/001f7a930 Azienda Ospedaliera Citta'' della Salute e della Scienza di Torino'),
(15841, 'https://ror.org/05c2mz691', 'no_lang_code', 1, 'https://ror.org/05c2mz691 BMT Group (Germany)'),
(15842, 'https://ror.org/02fhjj867', 'en', 1, 'https://ror.org/02fhjj867 American Crystallographic Association'),
(15843, 'https://ror.org/05hdjr057', 'pt', 1, 'https://ror.org/05hdjr057 Administracao Central do Sistema de Saude'),
(15844, 'https://ror.org/013dmpa26', 'no_lang_code', 1, 'https://ror.org/013dmpa26 Greenvest (Italy)'),
(15845, 'https://ror.org/02md5ab07', 'en', 1, 'https://ror.org/02md5ab07 American Entomological Institute'),
(15846, 'https://ror.org/04976jw76', 'en', 1, 'https://ror.org/04976jw76 Missouri Department of Elementary and Secondary Education'),
(15847, 'https://ror.org/00zfafm43', 'no_lang_code', 1, 'https://ror.org/00zfafm43 APS Biocontrol (United Kingdom)'),
(15848, 'https://ror.org/047137m93', 'en', 1, 'https://ror.org/047137m93 Prince George''s County Public Schools'),
(15849, 'https://ror.org/04qp61r47', 'no_lang_code', 1, 'https://ror.org/04qp61r47 ADRIA Développement'),
(15850, 'https://ror.org/04nb68247', 'no_lang_code', 1, 'https://ror.org/04nb68247 Balcas (United Kingdom)'),
(15851, 'https://ror.org/05dww8f34', 'en', 1, 'https://ror.org/05dww8f34 Balm In Gilead'),
(15852, 'https://ror.org/028nqyn57', 'no_lang_code', 1, 'https://ror.org/028nqyn57 CGI (United States)'),
(15853, 'https://ror.org/029t2mw91', 'en', 1, 'https://ror.org/029t2mw91 Baltic Centre for Contemporary Art'),
(15854, 'https://ror.org/021n1yp58', 'en', 1, 'https://ror.org/021n1yp58 ADS Group'),
(15855, 'https://ror.org/0259f7s45', 'en', 1, 'https://ror.org/0259f7s45 Baltic Innovation Agency'),
(15856, 'https://ror.org/024p04k09', 'lv', 1, 'https://ror.org/024p04k09 Baltic Environmental Forum Baltijas Vides Forums'),
(15857, 'https://ror.org/02ttqft70', 'en', 1, 'https://ror.org/02ttqft70 American National Standards Institute'),
(15858, 'https://ror.org/01qjh7r74', 'no_lang_code', 1, 'https://ror.org/01qjh7r74 Adva Optical Networking (Poland)'),
(15859, 'https://ror.org/0504a7h38', 'en', 1, 'https://ror.org/0504a7h38 Baltic Energy Conservation Agency'),
(15860, 'https://ror.org/05dss5t31', 'no_lang_code', 1, 'https://ror.org/05dss5t31 Advance Composite Fibers (Spain)'),
(15861, 'https://ror.org/0438kyb38', 'en', 1, 'https://ror.org/0438kyb38 Association for Psychological Science'),
(15862, 'https://ror.org/00wk3qr85', 'no_lang_code', 1, 'https://ror.org/00wk3qr85 PerkinElmer (Germany)'),
(15863, 'https://ror.org/020r34245', 'en', 1, 'https://ror.org/020r34245 American Research Center in Egypt'),
(15864, 'https://ror.org/058ywcv06', 'no_lang_code', 1, 'https://ror.org/058ywcv06 Advanced Applications (United States)'),
(15865, 'https://ror.org/02bg8sy94', 'no_lang_code', 1, 'https://ror.org/02bg8sy94 BodiMojo'),
(15866, 'https://ror.org/03jr1w081', 'no_lang_code', 1, 'https://ror.org/03jr1w081 Bandvulc (United Kingdom)'),
(15867, 'https://ror.org/02y7e7h61', 'no_lang_code', 1, 'https://ror.org/02y7e7h61 Bodymetrics (United Kingdom)'),
(15868, 'https://ror.org/037807332', 'no_lang_code', 1, 'https://ror.org/037807332 Best High Pressure & Drilling Technology (Austria)'),
(15869, 'https://ror.org/01jcgc273', 'no_lang_code', 1, 'https://ror.org/01jcgc273 Advanced Coatings (Belgium)'),
(15870, 'https://ror.org/00tbmv503', 'en', 1, 'https://ror.org/00tbmv503 American Society of Law, Medicine and Ethics'),
(15871, 'https://ror.org/00bkf6345', 'en', 1, 'https://ror.org/00bkf6345 American Sexual Health Association'),
(15872, 'https://ror.org/01zqbp192', 'en', 1, 'https://ror.org/01zqbp192 Missouri Southern State University'),
(15873, 'https://ror.org/04g5xjh29', 'en', 1, 'https://ror.org/04g5xjh29 Bangkok Metropolitan Administration'),
(15874, 'https://ror.org/041v7ky66', 'en', 1, 'https://ror.org/041v7ky66 American Society for Photogrammetry and Remote Sensing'),
(15875, 'https://ror.org/02j3ntr89', 'fr', 1, 'https://ror.org/02j3ntr89 Boîte à science'),
(15876, 'https://ror.org/01yj92e08', 'no_lang_code', 1, 'https://ror.org/01yj92e08 Banpil Photonics (United States)'),
(15877, 'https://ror.org/02vpy2028', 'en', 1, 'https://ror.org/02vpy2028 American Society for Virology'),
(15878, 'https://ror.org/02hkdv109', 'no_lang_code', 1, 'https://ror.org/02hkdv109 Bolloré (France)'),
(15879, 'https://ror.org/00r66br24', 'no_lang_code', 1, 'https://ror.org/00r66br24 Advanced Defence Materials (United Kingdom)'),
(15880, 'https://ror.org/04wck6395', 'no_lang_code', 1, 'https://ror.org/04wck6395 Aegis Rubber Engineering (United Kingdom)'),
(15881, 'https://ror.org/00pp1p071', 'no_lang_code', 1, 'https://ror.org/00pp1p071 Banss (Germany)'),
(15882, 'https://ror.org/021998h47', 'en', 1, 'https://ror.org/021998h47 Brookwood Baptist Health'),
(15883, 'https://ror.org/05rmcwb88', 'en', 1, 'https://ror.org/05rmcwb88 Barber–Scotia College'),
(15884, 'https://ror.org/01qa8rm62', 'es', 1, 'https://ror.org/01qa8rm62 Aspapel'),
(15885, 'https://ror.org/01few5909', 'no_lang_code', 1, 'https://ror.org/01few5909 Barclays (United Kingdom)'),
(15886, 'https://ror.org/03bngxz45', 'no_lang_code', 1, 'https://ror.org/03bngxz45 Advanced Energy Materials (United States)'),
(15887, 'https://ror.org/041ch6a11', 'no_lang_code', 1, 'https://ror.org/041ch6a11 Barilla (Italy)'),
(15888, 'https://ror.org/030c07a62', 'no_lang_code', 1, 'https://ror.org/030c07a62 Bombardier (Portugal)'),
(15889, 'https://ror.org/01w9gcz32', 'no_lang_code', 1, 'https://ror.org/01w9gcz32 Barnard Microsystems (United Kingdom)'),
(15890, 'https://ror.org/055et8y89', 'no_lang_code', 1, 'https://ror.org/055et8y89 Barnett Technical Services (United States)'),
(15891, 'https://ror.org/04rk35v57', 'no_lang_code', 1, 'https://ror.org/04rk35v57 Colt International (Germany)'),
(15892, 'https://ror.org/0512c6n60', 'no_lang_code', 1, 'https://ror.org/0512c6n60 Advent Technologies (Greece)'),
(15893, 'https://ror.org/021mk5n73', 'en', 1, 'https://ror.org/021mk5n73 Bonanza High School'),
(15894, 'https://ror.org/008jf2g02', 'en', 1, 'https://ror.org/008jf2g02 Barre Town Middle and Elementary School'),
(15895, 'https://ror.org/0402bxc90', 'no_lang_code', 1, 'https://ror.org/0402bxc90 Barriquand (France)'),
(15896, 'https://ror.org/0447b5h55', 'en', 1, 'https://ror.org/0447b5h55 Barrow Arctic Science Consortium'),
(15897, 'https://ror.org/02tty6654', 'no_lang_code', 1, 'https://ror.org/02tty6654 Base Materials (United Kingdom)'),
(15898, 'https://ror.org/016v9sa88', 'no_lang_code', 1, 'https://ror.org/016v9sa88 Base Protection (Italy)'),
(15899, 'https://ror.org/03g6j6055', 'no_lang_code', 1, 'https://ror.org/03g6j6055 BASF (Switzerland)'),
(15900, 'https://ror.org/04hf68923', 'en', 1, 'https://ror.org/04hf68923 Bath Labs'),
(15901, 'https://ror.org/000ygtd83', 'en', 1, 'https://ror.org/000ygtd83 American Trauma Society'),
(15902, 'https://ror.org/057r54s29', 'en', 1, 'https://ror.org/057r54s29 Baton Rouge Community College'),
(15903, 'https://ror.org/03afcx383', 'es', 1, 'https://ror.org/03afcx383 Asociación Española de Fabricantes de Equipos y Componentes para Automoción'),
(15904, 'https://ror.org/05qss3897', 'no_lang_code', 1, 'https://ror.org/05qss3897 Bord na Móna (Ireland)'),
(15905, 'https://ror.org/00crcaf72', 'en', 1, 'https://ror.org/00crcaf72 American Vacuum Society'),
(15906, 'https://ror.org/03t4qcg79', 'no_lang_code', 1, 'https://ror.org/03t4qcg79 Royal BAM Group (United Kingdom)'),
(15907, 'https://ror.org/00df0dn42', 'no_lang_code', 1, 'https://ror.org/00df0dn42 AMES Technology (United States)'),
(15908, 'https://ror.org/003rgf994', 'no_lang_code', 1, 'https://ror.org/003rgf994 Amethyst Research (United States)'),
(15909, 'https://ror.org/01rh7dh97', 'no_lang_code', 1, 'https://ror.org/01rh7dh97 Amethyst Technologies (United States)'),
(15910, 'https://ror.org/05v60wx04', 'no_lang_code', 1, 'https://ror.org/05v60wx04 Oryx International Growth Fund (Ireland)'),
(15911, 'https://ror.org/05269ja13', 'no_lang_code', 1, 'https://ror.org/05269ja13 Advanced Laser Technology (United Kingdom)'),
(15912, 'https://ror.org/05xr55z04', 'no_lang_code', 1, 'https://ror.org/05xr55z04 Angewandte Micro Messtechnik (Germany)'),
(15913, 'https://ror.org/036j9qe85', 'no_lang_code', 1, 'https://ror.org/036j9qe85 Agricen (United States)'),
(15914, 'https://ror.org/05p4ysp91', 'no_lang_code', 1, 'https://ror.org/05p4ysp91 Advanced Microwave Systems (Greece) ΠΡΟΗΓΜΕΝΑ ΜΙΚΡΟΚΥΜΑΤΙΚΑ ΣΥΣΤΗΜΑΤΑ IKE'),
(15915, 'https://ror.org/034qqhd60', 'no_lang_code', 1, 'https://ror.org/034qqhd60 Advanced Network and Services (United States)'),
(15916, 'https://ror.org/01f2xyc88', 'no_lang_code', 1, 'https://ror.org/01f2xyc88 Vintage Capital Group (United States)'),
(15917, 'https://ror.org/01xjsv217', 'no_lang_code', 1, 'https://ror.org/01xjsv217 Bauhaus Luftfahrt'),
(15918, 'https://ror.org/04esscd53', 'no_lang_code', 1, 'https://ror.org/04esscd53 Amires (Czechia)'),
(15919, 'https://ror.org/05bmabg32', 'no_lang_code', 1, 'https://ror.org/05bmabg32 Advanced Optics Solutions (Germany)'),
(15920, 'https://ror.org/01tzy4237', 'no_lang_code', 1, 'https://ror.org/01tzy4237 Amis (Slovenia)'),
(15921, 'https://ror.org/04573hn72', 'no_lang_code', 1, 'https://ror.org/04573hn72 Borit (Belgium)'),
(15922, 'https://ror.org/01zg9ry50', 'no_lang_code', 1, 'https://ror.org/01zg9ry50 Bavarian Nordic (Germany)'),
(15923, 'https://ror.org/03q4ysy37', 'en', 1, 'https://ror.org/03q4ysy37 Amistades'),
(15924, 'https://ror.org/00303dn90', 'no_lang_code', 1, 'https://ror.org/00303dn90 Advanced Process Combinatorics (United States)'),
(15925, 'https://ror.org/0557zev80', 'no_lang_code', 1, 'https://ror.org/0557zev80 Advirna (United States)'),
(15926, 'https://ror.org/004b61s59', 'no_lang_code', 1, 'https://ror.org/004b61s59 Advanced Science and Automation (United States)'),
(15927, 'https://ror.org/048y6cv72', 'no_lang_code', 1, 'https://ror.org/048y6cv72 Advanced Sensor Technologies (United States)'),
(15928, 'https://ror.org/00m08df59', 'no_lang_code', 1, 'https://ror.org/00m08df59 BDR Thermea (United Kingdom)'),
(15929, 'https://ror.org/040z8en63', 'en', 1, 'https://ror.org/040z8en63 Bay Area Tumor Institute'),
(15930, 'https://ror.org/00a67te62', 'en', 1, 'https://ror.org/00a67te62 Bay Area Video Coalition'),
(15931, 'https://ror.org/04gegbz50', 'en', 1, 'https://ror.org/04gegbz50 Bay Medical Center'),
(15932, 'https://ror.org/01cwg0069', 'it', 1, 'https://ror.org/01cwg0069 Amitie'),
(15933, 'https://ror.org/01znsh139', 'no_lang_code', 1, 'https://ror.org/01znsh139 British American Tobacco (United Kingdom)'),
(15934, 'https://ror.org/052567m16', 'no_lang_code', 1, 'https://ror.org/052567m16 Amorim Cork Composites (Portugal)'),
(15935, 'https://ror.org/00ysm1s19', 'no_lang_code', 1, 'https://ror.org/00ysm1s19 ELE Advanced Technologies (United Kingdom)'),
(15936, 'https://ror.org/020ak9w19', 'en', 1, 'https://ror.org/020ak9w19 Prof. Assen Zlatarov University'),
(15937, 'https://ror.org/007v6yg52', 'en', 1, 'https://ror.org/007v6yg52 Bay State Community Services'),
(15938, 'https://ror.org/00m4kzh57', 'no_lang_code', 1, 'https://ror.org/00m4kzh57 Amplitude Technologies (France)'),
(15939, 'https://ror.org/01fqg5k81', 'en', 1, 'https://ror.org/01fqg5k81 BayCare Health System'),
(15940, 'https://ror.org/04hf34n81', 'no_lang_code', 1, 'https://ror.org/04hf34n81 AmpTec (Germany)'),
(15941, 'https://ror.org/05b8s7b69', 'en', 1, 'https://ror.org/05b8s7b69 Advances in Mineral Metabolism'),
(15942, 'https://ror.org/038fwj823', 'en', 1, 'https://ror.org/038fwj823 Aspen Cancer Conference'),
(15943, 'https://ror.org/05yakbd29', 'no_lang_code', 1, 'https://ror.org/05yakbd29 Aspen Products Group (United States)'),
(15944, 'https://ror.org/04kjf4a42', 'no_lang_code', 1, 'https://ror.org/04kjf4a42 Amron (United States)'),
(15945, 'https://ror.org/05frh7832', 'no_lang_code', 1, 'https://ror.org/05frh7832 Eni (France)'),
(15946, 'https://ror.org/00v0haz73', 'no_lang_code', 1, 'https://ror.org/00v0haz73 Advantage Forensics (Canada)'),
(15947, 'https://ror.org/050rfr085', 'de', 1, 'https://ror.org/050rfr085 Bayerisches Landesamt für Denkmalpflege'),
(15948, 'https://ror.org/05206wn55', 'no_lang_code', 1, 'https://ror.org/05206wn55 Aspen Systems (United States)'),
(15949, 'https://ror.org/0174e3t82', 'en', 1, 'https://ror.org/0174e3t82 Aspen Institute'),
(15950, 'https://ror.org/00js7c390', 'no_lang_code', 1, 'https://ror.org/00js7c390 Amyris (United States)'),
(15951, 'https://ror.org/044xjyn25', 'no_lang_code', 1, 'https://ror.org/044xjyn25 Advantech AMT (Canada)'),
(15952, 'https://ror.org/02s4efn82', 'en', 1, 'https://ror.org/02s4efn82 Boys'' Club of New York'),
(15953, 'https://ror.org/017wnhb12', 'no_lang_code', 1, 'https://ror.org/017wnhb12 Avinet (Norway)'),
(15954, 'https://ror.org/03xfskc23', 'no_lang_code', 1, 'https://ror.org/03xfskc23 Advanced Environmental Technologies (Portugal)'),
(15955, 'https://ror.org/01wghc923', 'en', 1, 'https://ror.org/01wghc923 Anaerobic Digestion and Bioresources Association'),
(15956, 'https://ror.org/01rtxd659', 'no_lang_code', 1, 'https://ror.org/01rtxd659 Moog (Netherlands)'),
(15957, 'https://ror.org/03aydnn87', 'en', 1, 'https://ror.org/03aydnn87 Ars Electronica Center'),
(15958, 'https://ror.org/045nwkm81', 'no_lang_code', 1, 'https://ror.org/045nwkm81 Assing (Italy)'),
(15959, 'https://ror.org/04erj9z09', 'no_lang_code', 1, 'https://ror.org/04erj9z09 Bayessoft (United States)'),
(15960, 'https://ror.org/03nbnyc28', 'no_lang_code', 1, 'https://ror.org/03nbnyc28 Brain Innovation (Netherlands)'),
(15961, 'https://ror.org/04eg2gq66', 'no_lang_code', 1, 'https://ror.org/04eg2gq66 AEC3 (United Kingdom)'),
(15962, 'https://ror.org/01r6w7s48', 'en', 1, 'https://ror.org/01r6w7s48 Association of Environmental Health Academic Programs'),
(15963, 'https://ror.org/05ye48k35', 'no_lang_code', 1, 'https://ror.org/05ye48k35 Brainlab (Germany)'),
(15964, 'https://ror.org/021t53m47', 'no_lang_code', 1, 'https://ror.org/021t53m47 Aecom (Czechia)'),
(15965, 'https://ror.org/03z3n0g53', 'no_lang_code', 1, 'https://ror.org/03z3n0g53 Brainstorm (Spain)'),
(15966, 'https://ror.org/03fkfdh53', 'no_lang_code', 1, 'https://ror.org/03fkfdh53 AED-SICAD (Germany)'),
(15967, 'https://ror.org/03nzfjp98', 'no_lang_code', 1, 'https://ror.org/03nzfjp98 Keepmoat (United Kingdom)'),
(15968, 'https://ror.org/05wrxmc86', 'fr', 1, 'https://ror.org/05wrxmc86 Association des Communicateurs Scientifiques du Québec'),
(15969, 'https://ror.org/046hz2n20', 'en', 1, 'https://ror.org/046hz2n20 Association of British HealthTech Industries'),
(15970, 'https://ror.org/03mzpfx25', 'pt', 1, 'https://ror.org/03mzpfx25 A Rocha'),
(15971, 'https://ror.org/04rj91175', 'no_lang_code', 1, 'https://ror.org/04rj91175 Braemar (United Kingdom)'),
(15972, 'https://ror.org/01176rr26', 'no_lang_code', 1, 'https://ror.org/01176rr26 Anaxsys (United Kingdom)'),
(15973, 'https://ror.org/02yvffa38', 'en', 1, 'https://ror.org/02yvffa38 Anchorage School District'),
(15974, 'https://ror.org/00kergy42', 'no_lang_code', 1, 'https://ror.org/00kergy42 Ancile (United States)'),
(15975, 'https://ror.org/02kq57h59', 'no_lang_code', 1, 'https://ror.org/02kq57h59 Anco Engineers (United States)'),
(15976, 'https://ror.org/01qd58v91', 'en', 1, 'https://ror.org/01qd58v91 Baylor School'),
(15977, 'https://ror.org/048jb8q77', 'en', 1, 'https://ror.org/048jb8q77 Brandywine Counseling & Community Services'),
(15978, 'https://ror.org/015facm29', 'en', 1, 'https://ror.org/015facm29 Aeras'),
(15979, 'https://ror.org/01m08j794', 'no_lang_code', 1, 'https://ror.org/01m08j794 Lürssen (Germany)'),
(15980, 'https://ror.org/05hqw0n54', 'no_lang_code', 1, 'https://ror.org/05hqw0n54 Corden Pharma (United States)'),
(15981, 'https://ror.org/02mxfc935', 'no_lang_code', 1, 'https://ror.org/02mxfc935 Andermatt Biocontrol (Switzerland)'),
(15982, 'https://ror.org/025cbpf27', 'no_lang_code', 1, 'https://ror.org/025cbpf27 Aereco (France)'),
(15983, 'https://ror.org/02xwe8780', 'no_lang_code', 1, 'https://ror.org/02xwe8780 PREtest Consult (United States)'),
(15984, 'https://ror.org/01fxncn81', 'no_lang_code', 1, 'https://ror.org/01fxncn81 Aeristech (United Kingdom)'),
(15985, 'https://ror.org/05k8fh812', 'no_lang_code', 1, 'https://ror.org/05k8fh812 Brechtel (United States)'),
(15986, 'https://ror.org/01xtkmv78', 'en', 1, 'https://ror.org/01xtkmv78 BC Non-Profit Housing Association'),
(15987, 'https://ror.org/058jaty48', 'no_lang_code', 1, 'https://ror.org/058jaty48 Breivoll Inspection Technologies (Norway)'),
(15988, 'https://ror.org/040mhcr37', 'no_lang_code', 1, 'https://ror.org/040mhcr37 Roland Mills United (Germany) Rolandmühle'),
(15989, 'https://ror.org/00y5de064', 'no_lang_code', 1, 'https://ror.org/00y5de064 BCN Biosciences (United States)'),
(15990, 'https://ror.org/001f6wc07', 'no_lang_code', 1, 'https://ror.org/001f6wc07 Aernnova (Spain)'),
(15991, 'https://ror.org/025008g77', 'no_lang_code', 1, 'https://ror.org/025008g77 Bremerhaven Dock (Germany)'),
(15992, 'https://ror.org/029nzwd26', 'no_lang_code', 1, 'https://ror.org/029nzwd26 Brenk Systemplanung (Germany)'),
(15993, 'https://ror.org/01x5cet75', 'no_lang_code', 1, 'https://ror.org/01x5cet75 Bcr Diagnostics (United States)'),
(15994, 'https://ror.org/05bmjxa33', 'no_lang_code', 1, 'https://ror.org/05bmjxa33 Aero Montreal (Canada)'),
(15995, 'https://ror.org/00wp5gz89', 'en', 1, 'https://ror.org/00wp5gz89 Business Council for Sustainable Development UK'),
(15996, 'https://ror.org/00kx89908', 'no_lang_code', 1, 'https://ror.org/00kx89908 Breonics (United States)'),
(15997, 'https://ror.org/02f5yhp51', 'no_lang_code', 1, 'https://ror.org/02f5yhp51 Aero Sekur (Italy)'),
(15998, 'https://ror.org/00fpmfs44', 'no_lang_code', 1, 'https://ror.org/00fpmfs44 Andritz (Finland)'),
(15999, 'https://ror.org/018vmtj90', 'no_lang_code', 1, 'https://ror.org/018vmtj90 Androme (Belgium)'),
(16000, 'https://ror.org/04v13n874', 'no_lang_code', 1, 'https://ror.org/04v13n874 AndroScience (United States)'),
(16001, 'https://ror.org/02q279j80', 'no_lang_code', 1, 'https://ror.org/02q279j80 Anect (Czechia)'),
(16002, 'https://ror.org/02evrz660', 'no_lang_code', 1, 'https://ror.org/02evrz660 Beacon Energy (United Kingdom)'),
(16003, 'https://ror.org/049d2y756', 'no_lang_code', 1, 'https://ror.org/049d2y756 Breyer Group (United Kingdom)'),
(16004, 'https://ror.org/036dfng96', 'en', 1, 'https://ror.org/036dfng96 Beamish Museum'),
(16005, 'https://ror.org/04n9ds574', 'no_lang_code', 1, 'https://ror.org/04n9ds574 Bridge 129 (Italy)'),
(16006, 'https://ror.org/05f935s79', 'no_lang_code', 1, 'https://ror.org/05f935s79 Ikusi (Spain)'),
(16007, 'https://ror.org/03es33149', 'no_lang_code', 1, 'https://ror.org/03es33149 SWAZ Potato Farms (United States)'),
(16008, 'https://ror.org/00kemap29', 'no_lang_code', 1, 'https://ror.org/00kemap29 Aeromechs (Italy)'),
(16009, 'https://ror.org/03xwmpp53', 'no_lang_code', 1, 'https://ror.org/03xwmpp53 Aeromet International (United Kingdom)'),
(16010, 'https://ror.org/00dhrp990', 'no_lang_code', 1, 'https://ror.org/00dhrp990 Associated Dental Products (United Kingdom)'),
(16011, 'https://ror.org/02gv17446', 'no_lang_code', 1, 'https://ror.org/02gv17446 Associated Bonded Cables (United Kingdom)'),
(16012, 'https://ror.org/04k8crc02', 'no_lang_code', 1, 'https://ror.org/04k8crc02 Bright Cloud International (United States)'),
(16013, 'https://ror.org/058bza610', 'no_lang_code', 1, 'https://ror.org/058bza610 Angiologica (Italy)'),
(16014, 'https://ror.org/00km0q180', 'no_lang_code', 1, 'https://ror.org/00km0q180 Brighten Optics (Canada)'),
(16015, 'https://ror.org/02e71h867', 'no_lang_code', 1, 'https://ror.org/02e71h867 Beckers (United Kingdom)'),
(16016, 'https://ror.org/05dh3w354', 'no_lang_code', 1, 'https://ror.org/05dh3w354 Quantum Spatial (United States)'),
(16017, 'https://ror.org/04y4jzv33', 'no_lang_code', 1, 'https://ror.org/04y4jzv33 Aeromics (United States)'),
(16018, 'https://ror.org/04d3r9p82', 'no_lang_code', 1, 'https://ror.org/04d3r9p82 Becs Technology (United States)'),
(16019, 'https://ror.org/03g9ch715', 'en', 1, 'https://ror.org/03g9ch715 National Center for Supercomputing Applications'),
(16020, 'https://ror.org/00nm6n237', 'no_lang_code', 1, 'https://ror.org/00nm6n237 Brighton Technologies Group (United States)'),
(16021, 'https://ror.org/04jfpc645', 'en', 1, 'https://ror.org/04jfpc645 Behavioral Health Network'),
(16022, 'https://ror.org/031nh9x49', 'en', 1, 'https://ror.org/031nh9x49 Animal Behavior Society'),
(16023, 'https://ror.org/0094j3d13', 'no_lang_code', 1, 'https://ror.org/0094j3d13 Brimson Laboratories (United States)'),
(16024, 'https://ror.org/0027ktx17', 'no_lang_code', 1, 'https://ror.org/0027ktx17 Oesterreichs Energie'),
(16025, 'https://ror.org/00txxwv34', 'en', 1, 'https://ror.org/00txxwv34 Agropolis International'),
(16026, 'https://ror.org/01kb5gr72', 'no_lang_code', 1, 'https://ror.org/01kb5gr72 Animal Monday (United Kingdom)'),
(16027, 'https://ror.org/002s66543', 'no_lang_code', 1, 'https://ror.org/002s66543 Aerospace & Advanced Composites (Austria)'),
(16028, 'https://ror.org/01wzy6m46', 'no_lang_code', 1, 'https://ror.org/01wzy6m46 Animal Vegetable Mineral (United Kingdom)'),
(16029, 'https://ror.org/03310m039', 'no_lang_code', 1, 'https://ror.org/03310m039 Brinker Technology (United Kingdom)'),
(16030, 'https://ror.org/02v3h7t65', 'en', 1, 'https://ror.org/02v3h7t65 Horizon Human Services'),
(16031, 'https://ror.org/014y9am47', 'en', 1, 'https://ror.org/014y9am47 Arnolfini'),
(16032, 'https://ror.org/02eat2165', 'no_lang_code', 1, 'https://ror.org/02eat2165 Bristol Industrial and Research Associates (United Kingdom)'),
(16033, 'https://ror.org/0531hmb77', 'en', 1, 'https://ror.org/0531hmb77 Behavioral Tech'),
(16034, 'https://ror.org/03emf1n04', 'no_lang_code', 1, 'https://ror.org/03emf1n04 Bristol-Myers Squibb (United Kingdom)'),
(16035, 'https://ror.org/03h5m5b13', 'no_lang_code', 1, 'https://ror.org/03h5m5b13 Acromas Holdings (United Kingdom)'),
(16036, 'https://ror.org/04ybbb927', 'no_lang_code', 1, 'https://ror.org/04ybbb927 Beicip Franlab (France)'),
(16037, 'https://ror.org/049png478', 'no_lang_code', 1, 'https://ror.org/049png478 Materion (United Kingdom)'),
(16038, 'https://ror.org/01n7rsn58', 'en', 1, 'https://ror.org/01n7rsn58 Association des Constructeurs Européens d''Automobiles European Automobile Manufacturers Association'),
(16039, 'https://ror.org/00085w524', 'no_lang_code', 1, 'https://ror.org/00085w524 Beijing Software Enterprise Advisory Center (China) 北京软协企业管理顾问中心'),
(16040, 'https://ror.org/028evh536', 'fr', 1, 'https://ror.org/028evh536 Association des Operateurs Postaux Publics Europeens Association of European Public Postal Operators'),
(16041, 'https://ror.org/00d3bct21', 'en', 1, 'https://ror.org/00d3bct21 Ann Arbor Hands On Museum'),
(16042, 'https://ror.org/03s25h048', 'en', 1, 'https://ror.org/03s25h048 European Steel Association'),
(16043, 'https://ror.org/00k3bk483', 'en', 1, 'https://ror.org/00k3bk483 Behavioral Health Systems'),
(16044, 'https://ror.org/03k10gx48', 'en', 1, 'https://ror.org/03k10gx48 British Empire and Commonwealth Museum'),
(16045, 'https://ror.org/00f7mq966', 'no_lang_code', 1, 'https://ror.org/00f7mq966 Vidavo (Greece)'),
(16046, 'https://ror.org/01rr6k888', 'en', 1, 'https://ror.org/01rr6k888 Comité de Liaison Européen des fabricants d''équipements et de Pièces Automobiles European Association of Automotive Suppliers'),
(16047, 'https://ror.org/03pydk223', 'en', 1, 'https://ror.org/03pydk223 Beijing Transportation Research Center'),
(16048, 'https://ror.org/028tzde05', 'no_lang_code', 1, 'https://ror.org/028tzde05 Anova IT Consulting (Spain)'),
(16049, 'https://ror.org/00ntmke92', 'en', 1, 'https://ror.org/00ntmke92 Artez and Innovatie'),
(16050, 'https://ror.org/01jq16575', 'en', 1, 'https://ror.org/01jq16575 Agence fédérale de contrôle nucléaire Federaal Agentschap voor Nucleaire Controle Federal Agency for Nuclear Control'),
(16051, 'https://ror.org/00hn3tc42', 'no_lang_code', 1, 'https://ror.org/00hn3tc42 AeroTex UK (United Kingdom)'),
(16052, 'https://ror.org/02vpzk077', 'no_lang_code', 1, 'https://ror.org/02vpzk077 BioMed Design (United States)'),
(16053, 'https://ror.org/03dr4sp04', 'en', 1, 'https://ror.org/03dr4sp04 AEROTRON Research'),
(16054, 'https://ror.org/019gvtj90', 'no_lang_code', 1, 'https://ror.org/019gvtj90 Puratos (Belgium)'),
(16055, 'https://ror.org/005mt8d46', 'no_lang_code', 1, 'https://ror.org/005mt8d46 Proximus (Belgium)'),
(16056, 'https://ror.org/054exvb85', 'en', 1, 'https://ror.org/054exvb85 British Nutrition Foundation'),
(16057, 'https://ror.org/03fw4vf13', 'no_lang_code', 1, 'https://ror.org/03fw4vf13 Total Quadran (France)'),
(16058, 'https://ror.org/01q65bj34', 'en', 1, 'https://ror.org/01q65bj34 European Association for Battery Hybrid and Fuel Cell Electric Vehicles'),
(16059, 'https://ror.org/02fq4p941', 'en', 1, 'https://ror.org/02fq4p941 Association Européenne pour la Biomasse European Biomass Association'),
(16060, 'https://ror.org/00kn2ga67', 'en', 1, 'https://ror.org/00kn2ga67 British Poultry Council'),
(16061, 'https://ror.org/05th36098', 'en', 1, 'https://ror.org/05th36098 Association for the Advancement of Mexican Americans'),
(16062, 'https://ror.org/05bk7gd90', 'en', 1, 'https://ror.org/05bk7gd90 Association for Childrens Mental Health'),
(16063, 'https://ror.org/019sw1443', 'en', 1, 'https://ror.org/019sw1443 Association for Computational Linguistics'),
(16064, 'https://ror.org/05vs4ye41', 'no_lang_code', 1, 'https://ror.org/05vs4ye41 Ansmart (United Kingdom)'),
(16065, 'https://ror.org/045j3za34', 'no_lang_code', 1, 'https://ror.org/045j3za34 AnsuR Technologies (Norway)'),
(16066, 'https://ror.org/04kdd0e80', 'no_lang_code', 1, 'https://ror.org/04kdd0e80 Ansys (Canada)'),
(16067, 'https://ror.org/05sjz3b60', 'no_lang_code', 1, 'https://ror.org/05sjz3b60 British Standards Institution'),
(16068, 'https://ror.org/00gh98d15', 'no_lang_code', 1, 'https://ror.org/00gh98d15 Straumann (Sweden)'),
(16069, 'https://ror.org/038212696', 'en', 1, 'https://ror.org/038212696 Benaki Museum Μουσείο Μπενάκη'),
(16070, 'https://ror.org/04w96ag64', 'no_lang_code', 1, 'https://ror.org/04w96ag64 BioSentinel (United States)'),
(16071, 'https://ror.org/0125p4c40', 'no_lang_code', 1, 'https://ror.org/0125p4c40 Antea Group (Belgium)'),
(16072, 'https://ror.org/01ded9f36', 'en', 1, 'https://ror.org/01ded9f36 British Transport Police'),
(16073, 'https://ror.org/01bkjr271', 'no_lang_code', 1, 'https://ror.org/01bkjr271 Actigen (Norway)'),
(16074, 'https://ror.org/0073qme72', 'no_lang_code', 1, 'https://ror.org/0073qme72 Antec (Germany)'),
(16075, 'https://ror.org/04jh9y258', 'no_lang_code', 1, 'https://ror.org/04jh9y258 Global RNA (United States)'),
(16076, 'https://ror.org/005sp1511', 'no_lang_code', 1, 'https://ror.org/005sp1511 Antenova (United Kingdom)'),
(16077, 'https://ror.org/033523d69', 'en', 1, 'https://ror.org/033523d69 Association for Research in Vision and Ophthalmology'),
(16078, 'https://ror.org/03ej57906', 'no_lang_code', 1, 'https://ror.org/03ej57906 Belsim (Belgium)'),
(16079, 'https://ror.org/037588233', 'en', 1, 'https://ror.org/037588233 Association for the Promotion of Information on Science and Technology for All Countries'),
(16080, 'https://ror.org/026s7sx59', 'no_lang_code', 1, 'https://ror.org/026s7sx59 AnthroTronix (United States)'),
(16081, 'https://ror.org/053txhk38', 'no_lang_code', 1, 'https://ror.org/053txhk38 BroadBit (Slovakia)'),
(16082, 'https://ror.org/04xy11e47', 'fr', 1, 'https://ror.org/04xy11e47 Association Française de Médecine Morpho-Esthétique et anti-âge'),
(16083, 'https://ror.org/003dqcy46', 'no_lang_code', 1, 'https://ror.org/003dqcy46 AFrame Digital (United States)'),
(16084, 'https://ror.org/04nx30h94', 'en', 1, 'https://ror.org/04nx30h94 African Malaria Network Trust'),
(16085, 'https://ror.org/00hx47p69', 'fr', 1, 'https://ror.org/00hx47p69 Maiz''Europ'''),
(16086, 'https://ror.org/04xbnc005', 'en', 1, 'https://ror.org/04xbnc005 Ben Franklin Technology Partners'),
(16087, 'https://ror.org/00vpnca96', 'no_lang_code', 1, 'https://ror.org/00vpnca96 AFS Entwicklungs und Vertriebs (Germany)'),
(16088, 'https://ror.org/02zc4jh04', 'no_lang_code', 1, 'https://ror.org/02zc4jh04 AFT Automation (Germany)'),
(16089, 'https://ror.org/02appya76', 'no_lang_code', 1, 'https://ror.org/02appya76 Bayou Biolabs'),
(16090, 'https://ror.org/01addcj30', 'no_lang_code', 1, 'https://ror.org/01addcj30 Broadcom (Ireland)'),
(16091, 'https://ror.org/04tp44r29', 'no_lang_code', 1, 'https://ror.org/04tp44r29 Anton Paar (Austria)'),
(16092, 'https://ror.org/04bzc6m85', 'no_lang_code', 1, 'https://ror.org/04bzc6m85 Broadley James (United States)'),
(16093, 'https://ror.org/03mt07d61', 'fr', 1, 'https://ror.org/03mt07d61 Ag Quest'),
(16094, 'https://ror.org/02k3w5n89', 'en', 1, 'https://ror.org/02k3w5n89 Agder Research Agderforskning'),
(16095, 'https://ror.org/027v2gp98', 'no_lang_code', 1, 'https://ror.org/027v2gp98 Broadway Malyan (United Kingdom)'),
(16096, 'https://ror.org/002mr7c38', 'fr', 1, 'https://ror.org/002mr7c38 Laval Mayenne Technopole'),
(16097, 'https://ror.org/05bjnkp72', 'en', 1, 'https://ror.org/05bjnkp72 Broadway'),
(16098, 'https://ror.org/01mt5jq93', 'en', 1, 'https://ror.org/01mt5jq93 Association Libanaise pour la Maitrise de l’Energie et pour l’Environnement Lebanese Association for Energy Saving & for Environment'),
(16099, 'https://ror.org/00sqes684', 'en', 1, 'https://ror.org/00sqes684 Agence Federale pour la Securite de la Chaine Alimentaire Federaal Agentschap voor de Veiligheid van de Voedselketen Federal Agency for Food Chain Safety Föderalagentur für die Sicherheit der Nahrungsmittelkette'),
(16100, 'https://ror.org/01fs6y727', 'no_lang_code', 1, 'https://ror.org/01fs6y727 Anvil Semiconductors (United Kingdom)'),
(16101, 'https://ror.org/03px39j76', 'en', 1, 'https://ror.org/03px39j76 Belgian Institute of Management Accountants & Controllers'),
(16102, 'https://ror.org/05150xp52', 'fr', 1, 'https://ror.org/05150xp52 Association Nationale de Parents d''Enfants Déficients Auditifs'),
(16103, 'https://ror.org/03d2qa639', 'no_lang_code', 1, 'https://ror.org/03d2qa639 AnyWi Technologies (Netherlands)'),
(16104, 'https://ror.org/02q0d6f73', 'no_lang_code', 1, 'https://ror.org/02q0d6f73 Agence MTDA'),
(16105, 'https://ror.org/040shjw10', 'fr', 1, 'https://ror.org/040shjw10 Association Nationale pour la Formation Professionnelle des Adultes'),
(16106, 'https://ror.org/039y05x37', 'en', 1, 'https://ror.org/039y05x37 Association of American State Geologists'),
(16107, 'https://ror.org/00awr5166', 'no_lang_code', 1, 'https://ror.org/00awr5166 Benteler (Austria)'),
(16108, 'https://ror.org/01wsxjp84', 'no_lang_code', 1, 'https://ror.org/01wsxjp84 AP&T (Sweden)'),
(16109, 'https://ror.org/03d169816', 'no_lang_code', 1, 'https://ror.org/03d169816 Benten Technologies (United States)'),
(16110, 'https://ror.org/05hqxem06', 'en', 1, 'https://ror.org/05hqxem06 Association of British Science Writers'),
(16111, 'https://ror.org/034vn4e02', 'no_lang_code', 1, 'https://ror.org/034vn4e02 Volkswagen Group (United Kingdom)'),
(16112, 'https://ror.org/05bnfx215', 'no_lang_code', 1, 'https://ror.org/05bnfx215 Sumitomo Chemical (United States)'),
(16113, 'https://ror.org/05cy18k60', 'fr', 1, 'https://ror.org/05cy18k60 Agence Nationale des Technologies de l''Information et de la Communication'),
(16114, 'https://ror.org/03k90y290', 'en', 1, 'https://ror.org/03k90y290 Finnish Marine Industries'),
(16115, 'https://ror.org/00jaqhx10', 'no_lang_code', 1, 'https://ror.org/00jaqhx10 APDM (United States)'),
(16116, 'https://ror.org/02k9jm268', 'fr', 1, 'https://ror.org/02k9jm268 Agence Régionale d''évaluation Environnement et Climat'),
(16117, 'https://ror.org/00etec352', 'no_lang_code', 1, 'https://ror.org/00etec352 Beran Instruments (United Kingdom)'),
(16118, 'https://ror.org/00wtksj25', 'fr', 1, 'https://ror.org/00wtksj25 ARENE Agence régionale de l’environnement et des nouvelles énergies'),
(16119, 'https://ror.org/05mrhv083', 'en', 1, 'https://ror.org/05mrhv083 Brookdale Community College'),
(16120, 'https://ror.org/04w16j270', 'en', 1, 'https://ror.org/04w16j270 Brooklyn Botanic Garden'),
(16121, 'https://ror.org/03gvvb706', 'en', 1, 'https://ror.org/03gvvb706 Association of Schools and Programs of Public Health'),
(16122, 'https://ror.org/05s1w1241', 'en', 1, 'https://ror.org/05s1w1241 Aplastic Anemia and MDS International Foundation'),
(16123, 'https://ror.org/00zycb197', 'ca', 1, 'https://ror.org/00zycb197 Departament de Territori i Sostenibilitat'),
(16124, 'https://ror.org/04ay93s32', 'lt', 1, 'https://ror.org/04ay93s32 Aplinkos Apsaugos Agentura Environmental Protection Agency'),
(16125, 'https://ror.org/02k733j94', 'en', 1, 'https://ror.org/02k733j94 Thrive Together'),
(16126, 'https://ror.org/05m15kh47', 'no_lang_code', 1, 'https://ror.org/05m15kh47 Diageo (Ireland)'),
(16127, 'https://ror.org/05mqvfk86', 'en', 1, 'https://ror.org/05mqvfk86 Association of State Public Health Nutritionists'),
(16128, 'https://ror.org/02sswdw89', 'no_lang_code', 1, 'https://ror.org/02sswdw89 Apotex Fermentation (Canada)'),
(16129, 'https://ror.org/01gf20981', 'en', 1, 'https://ror.org/01gf20981 Appalachian Regional Healthcare'),
(16130, 'https://ror.org/012d6re71', 'no_lang_code', 1, 'https://ror.org/012d6re71 Brotherhood (United States)'),
(16131, 'https://ror.org/040tnnq16', 'en', 1, 'https://ror.org/040tnnq16 Broward County Board'),
(16132, 'https://ror.org/029pncr02', 'no_lang_code', 1, 'https://ror.org/029pncr02 Appen (United States)'),
(16133, 'https://ror.org/03vtekn80', 'fr', 1, 'https://ror.org/03vtekn80 Association pour la Recherche-Développement de l''Enseignement Multimédia et Interactif'),
(16134, 'https://ror.org/027hwrj22', 'no_lang_code', 1, 'https://ror.org/027hwrj22 Bere (United Kingdom)'),
(16135, 'https://ror.org/013g95q71', 'no_lang_code', 1, 'https://ror.org/013g95q71 Broyce Control (United Kingdom)'),
(16136, 'https://ror.org/04ftykp35', 'fr', 1, 'https://ror.org/04ftykp35 Association pour le Developpement de l''Institut de la Viande'),
(16137, 'https://ror.org/01292e826', 'es', 1, 'https://ror.org/01292e826 Agencia de Servicios Sociales y Dependencia de Andalucía'),
(16138, 'https://ror.org/010j1tz71', 'no_lang_code', 1, 'https://ror.org/010j1tz71 Brugarolas (Spain)'),
(16139, 'https://ror.org/04v5a5910', 'no_lang_code', 1, 'https://ror.org/04v5a5910 Bruhn NewTech (Denmark)'),
(16140, 'https://ror.org/03ty9nf77', 'no_lang_code', 1, 'https://ror.org/03ty9nf77 Bruker (United Kingdom)'),
(16141, 'https://ror.org/02n226v23', 'no_lang_code', 1, 'https://ror.org/02n226v23 Bruxton (United States)'),
(16142, 'https://ror.org/05eazss97', 'en', 1, 'https://ror.org/05eazss97 Berkshire Record Office'),
(16143, 'https://ror.org/04dhhgk48', 'no_lang_code', 1, 'https://ror.org/04dhhgk48 Nuclea Biotechnologies (United States)'),
(16144, 'https://ror.org/05ey8y327', 'no_lang_code', 1, 'https://ror.org/05ey8y327 Berlin Energy Agency Berliner Energieagentur (Germany)'),
(16145, 'https://ror.org/0043ncq27', 'de', 1, 'https://ror.org/0043ncq27 Berliner Institut für Sozialforschung'),
(16146, 'https://ror.org/054gj9d11', 'no_lang_code', 1, 'https://ror.org/054gj9d11 Bay Glass (United States)'),
(16147, 'https://ror.org/037263y09', 'en', 1, 'https://ror.org/037263y09 Canadian Lung Association'),
(16148, 'https://ror.org/01q3gg283', 'no_lang_code', 1, 'https://ror.org/01q3gg283 BS Rotor Technic (United Kingdom)'),
(16149, 'https://ror.org/01cjny980', 'no_lang_code', 1, 'https://ror.org/01cjny980 Berlitz (Germany)'),
(16150, 'https://ror.org/052811a42', 'en', 1, 'https://ror.org/052811a42 Canadian Meteorological and Oceanographic Society La Société canadienne de météorologie et d''océanographie'),
(16151, 'https://ror.org/033zbpq04', 'no_lang_code', 1, 'https://ror.org/033zbpq04 Industrial Systems and Control (United Kingdom)'),
(16152, 'https://ror.org/03jr3a030', 'en', 1, 'https://ror.org/03jr3a030 Canadian Parks and Wilderness Society la Société pour la nature et les parcs du Canada'),
(16153, 'https://ror.org/0506wz312', 'no_lang_code', 1, 'https://ror.org/0506wz312 AER Group (United States)'),
(16154, 'https://ror.org/00xp3pa76', 'en', 1, 'https://ror.org/00xp3pa76 Agency for Mobility and EU Programmes'),
(16155, 'https://ror.org/01dxs6p42', 'en', 1, 'https://ror.org/01dxs6p42 European Migration Centre Europäisches Migrationszentrum'),
(16156, 'https://ror.org/05ejpyv46', 'no_lang_code', 1, 'https://ror.org/05ejpyv46 Applied Materials (Germany)'),
(16157, 'https://ror.org/0065wa002', 'no_lang_code', 1, 'https://ror.org/0065wa002 Applied Functional Materials (United Kingdom)'),
(16158, 'https://ror.org/05x1fc249', 'no_lang_code', 1, 'https://ror.org/05x1fc249 Pyrexar Medical (United States)'),
(16159, 'https://ror.org/01c2kj137', 'en', 1, 'https://ror.org/01c2kj137 Agency for Electronic Communications'),
(16160, 'https://ror.org/0429xrf24', 'en', 1, 'https://ror.org/0429xrf24 Canadian Science Writers Association'),
(16161, 'https://ror.org/02sd8rm97', 'no_lang_code', 1, 'https://ror.org/02sd8rm97 BSH Electrodomésticos (Spain)'),
(16162, 'https://ror.org/01a5r1q21', 'no_lang_code', 1, 'https://ror.org/01a5r1q21 Berry & Associates (United States)'),
(16163, 'https://ror.org/05qzdw571', 'no_lang_code', 1, 'https://ror.org/05qzdw571 Agentscape (Germany)'),
(16164, 'https://ror.org/01wtneg90', 'en', 1, 'https://ror.org/01wtneg90 Canadian Society for Exercise Physiology'),
(16165, 'https://ror.org/00n3hdp82', 'no_lang_code', 1, 'https://ror.org/00n3hdp82 Bsoft (Italy)'),
(16166, 'https://ror.org/019htj352', 'no_lang_code', 1, 'https://ror.org/019htj352 Dürr (Germany)'),
(16167, 'https://ror.org/00jjh2b95', 'no_lang_code', 1, 'https://ror.org/00jjh2b95 BST Bio Sensor Technology (Germany)'),
(16168, 'https://ror.org/05kyb8602', 'no_lang_code', 1, 'https://ror.org/05kyb8602 Bertec (United States)'),
(16169, 'https://ror.org/00m694d24', 'en', 1, 'https://ror.org/00m694d24 European Projects & Management Agency'),
(16170, 'https://ror.org/05a6z7k50', 'en', 1, 'https://ror.org/05a6z7k50 Canadore College'),
(16171, 'https://ror.org/01xzpd518', 'en', 1, 'https://ror.org/01xzpd518 BT Archives'),
(16172, 'https://ror.org/05kw43n08', 'no_lang_code', 1, 'https://ror.org/05kw43n08 Berufsfortbildungswerk'),
(16173, 'https://ror.org/05320rs34', 'en', 1, 'https://ror.org/05320rs34 Applied Information Management Institute'),
(16174, 'https://ror.org/01zn3s316', 'no_lang_code', 1, 'https://ror.org/01zn3s316 Buckland & Taylor (Canada)'),
(16175, 'https://ror.org/01gqg0b82', 'no_lang_code', 1, 'https://ror.org/01gqg0b82 Ecobat Technologies (Germany)'),
(16176, 'https://ror.org/001mf2769', 'no_lang_code', 1, 'https://ror.org/001mf2769 Berlin Schalltechnisches Büro'),
(16177, 'https://ror.org/000cgzf80', 'no_lang_code', 1, 'https://ror.org/000cgzf80 Nyrstar Budel (Netherlands)'),
(16178, 'https://ror.org/03wm8rh48', 'no_lang_code', 1, 'https://ror.org/03wm8rh48 Canam Group (Canada)'),
(16179, 'https://ror.org/01425vp67', 'no_lang_code', 1, 'https://ror.org/01425vp67 Applied Materials (Israel)'),
(16180, 'https://ror.org/04b699k03', 'no_lang_code', 1, 'https://ror.org/04b699k03 Canatu (Finland)'),
(16181, 'https://ror.org/006471y50', 'no_lang_code', 1, 'https://ror.org/006471y50 Applied Materials (United Kingdom)'),
(16182, 'https://ror.org/001h71z63', 'no_lang_code', 1, 'https://ror.org/001h71z63 Applied Medical Technology (United States)'),
(16183, 'https://ror.org/03hhmg705', 'no_lang_code', 1, 'https://ror.org/03hhmg705 Medvis (United States)'),
(16184, 'https://ror.org/05kv82629', 'no_lang_code', 1, 'https://ror.org/05kv82629 Applied Microengineering Limited (United Kingdom)'),
(16185, 'https://ror.org/05j6xg781', 'no_lang_code', 1, 'https://ror.org/05j6xg781 TeamBest (United States)'),
(16186, 'https://ror.org/00c68pc60', 'en', 1, 'https://ror.org/00c68pc60 Agenzia Sviluppo Milano Metropoli S.P.A. Milano Metropoli Development Agency'),
(16187, 'https://ror.org/01cakg179', 'no_lang_code', 1, 'https://ror.org/01cakg179 AGF Electronics (Italy)'),
(16188, 'https://ror.org/01hzn9j62', 'no_lang_code', 1, 'https://ror.org/01hzn9j62 Applied Nanodetectors (United Kingdom)'),
(16189, 'https://ror.org/044ddr125', 'no_lang_code', 1, 'https://ror.org/044ddr125 Agfa-Gevaert (Canada)'),
(16190, 'https://ror.org/01e3a4n81', 'en', 1, 'https://ror.org/01e3a4n81 Buffalo Society of Natural Sciences'),
(16191, 'https://ror.org/013x1fq42', 'no_lang_code', 1, 'https://ror.org/013x1fq42 Beta 80 Group (Italy)');
INSERT INTO `rors` VALUES
(16192, 'https://ror.org/00m4vn742', 'no_lang_code', 1, 'https://ror.org/00m4vn742 LafargeHolcim (United Kingdom)'),
(16193, 'https://ror.org/02qws0q96', 'no_lang_code', 1, 'https://ror.org/02qws0q96 Schenck Process (Norway)'),
(16194, 'https://ror.org/019qz2a14', 'no_lang_code', 1, 'https://ror.org/019qz2a14 Buildair (Spain)'),
(16195, 'https://ror.org/01hrz5b21', 'en', 1, 'https://ror.org/01hrz5b21 Building Bridges'),
(16196, 'https://ror.org/03q3bdj78', 'no_lang_code', 1, 'https://ror.org/03q3bdj78 Ericsson (United States)'),
(16197, 'https://ror.org/016qz7879', 'no_lang_code', 1, 'https://ror.org/016qz7879 Voith (United Kingdom)'),
(16198, 'https://ror.org/0286mhe32', 'no_lang_code', 1, 'https://ror.org/0286mhe32 Maxxam (Canada)'),
(16199, 'https://ror.org/04vwqra35', 'no_lang_code', 1, 'https://ror.org/04vwqra35 GF Machining Solutions (Switzerland)'),
(16200, 'https://ror.org/00ym0aw79', 'no_lang_code', 1, 'https://ror.org/00ym0aw79 Betah Associates'),
(16201, 'https://ror.org/057bk3f95', 'no_lang_code', 1, 'https://ror.org/057bk3f95 Cantine d''Alfonso del Sordo (Italy)'),
(16202, 'https://ror.org/005cag216', 'no_lang_code', 1, 'https://ror.org/005cag216 BetaStem Therapeutics (United States)'),
(16203, 'https://ror.org/0575kzg87', 'no_lang_code', 1, 'https://ror.org/0575kzg87 Applied Research Using OMIC Sciences (Spain)'),
(16204, 'https://ror.org/02v82mn77', 'no_lang_code', 1, 'https://ror.org/02v82mn77 Agilent Technologies (Italy)'),
(16205, 'https://ror.org/03sjv2g98', 'no_lang_code', 1, 'https://ror.org/03sjv2g98 Applied Resources (United States)'),
(16206, 'https://ror.org/02kmywe48', 'no_lang_code', 1, 'https://ror.org/02kmywe48 Agilent Technologies (Austria)'),
(16207, 'https://ror.org/058ysfr19', 'en', 1, 'https://ror.org/058ysfr19 Bulgarian European Community Studies Association'),
(16208, 'https://ror.org/03pbeak36', 'en', 1, 'https://ror.org/03pbeak36 Bulgarian Research and Education Network Българска изследователска и образователна мрежа'),
(16209, 'https://ror.org/03yh9bm54', 'no_lang_code', 1, 'https://ror.org/03yh9bm54 AGILIS Α.Ε. ΣΤΑΤΙΣΤΙΚΗΣ ΚΑΙ ΠΛΗΡΟΦΟΡΙΚΗΣ Agilis (Greece)'),
(16210, 'https://ror.org/04pavt865', 'en', 1, 'https://ror.org/04pavt865 Bulgarian Ship Hydrodynamics Centre Български Център по хидро- и аеродинамика'),
(16211, 'https://ror.org/01mge3v08', 'no_lang_code', 1, 'https://ror.org/01mge3v08 Capgemini (United States)'),
(16212, 'https://ror.org/02eqjce94', 'no_lang_code', 1, 'https://ror.org/02eqjce94 Betonsteinwerk Heide (Germany)'),
(16213, 'https://ror.org/05nrca761', 'no_lang_code', 1, 'https://ror.org/05nrca761 Capgemini (Italy)'),
(16214, 'https://ror.org/02w1skc55', 'en', 1, 'https://ror.org/02w1skc55 Cape Cod Community College'),
(16215, 'https://ror.org/04m41m709', 'no_lang_code', 1, 'https://ror.org/04m41m709 AppliFlex (United States)'),
(16216, 'https://ror.org/015daqq20', 'no_lang_code', 1, 'https://ror.org/015daqq20 APR (Italy)'),
(16217, 'https://ror.org/03qg0dp28', 'no_lang_code', 1, 'https://ror.org/03qg0dp28 Agora Conseil'),
(16218, 'https://ror.org/04h7d2806', 'no_lang_code', 1, 'https://ror.org/04h7d2806 Betrieb für InformationsTechnologie'),
(16219, 'https://ror.org/0546cha72', 'no_lang_code', 1, 'https://ror.org/0546cha72 Agoria (Belgium)'),
(16220, 'https://ror.org/03h0ffq42', 'no_lang_code', 1, 'https://ror.org/03h0ffq42 Elite Bread Industry (Greece)'),
(16221, 'https://ror.org/02q8ad752', 'no_lang_code', 1, 'https://ror.org/02q8ad752 Austria Personal Service (Austria)'),
(16222, 'https://ror.org/02d6dfr74', 'no_lang_code', 1, 'https://ror.org/02d6dfr74 Bettergy (United States)'),
(16223, 'https://ror.org/00rcs2c13', 'no_lang_code', 1, 'https://ror.org/00rcs2c13 BeTV (Belgium)'),
(16224, 'https://ror.org/0137xgw27', 'no_lang_code', 1, 'https://ror.org/0137xgw27 Bridgepoint (Germany)'),
(16225, 'https://ror.org/04qhdw391', 'en', 1, 'https://ror.org/04qhdw391 Beverly Hospital'),
(16226, 'https://ror.org/047kvxr97', 'no_lang_code', 1, 'https://ror.org/047kvxr97 Bexion Pharmaceuticals (United States)'),
(16227, 'https://ror.org/05mc3r439', 'en', 1, 'https://ror.org/05mc3r439 Cape Fear Community College'),
(16228, 'https://ror.org/011qe1419', 'en', 1, 'https://ror.org/011qe1419 RiverWatch Insitute of Alberta'),
(16229, 'https://ror.org/026qpk997', 'en', 1, 'https://ror.org/026qpk997 Cape Assist'),
(16230, 'https://ror.org/043fjaj52', 'no_lang_code', 1, 'https://ror.org/043fjaj52 Capita (United Kingdom)'),
(16231, 'https://ror.org/03myb1z84', 'no_lang_code', 1, 'https://ror.org/03myb1z84 Capita Translation and Interpreting (United Kingdom)'),
(16232, 'https://ror.org/05pdz8949', 'no_lang_code', 1, 'https://ror.org/05pdz8949 BFI Betriebstechnik (Germany)'),
(16233, 'https://ror.org/014a8dd26', 'en', 1, 'https://ror.org/014a8dd26 Capital Community College'),
(16234, 'https://ror.org/00cgfxr19', 'no_lang_code', 1, 'https://ror.org/00cgfxr19 ApprenNet (United States)'),
(16235, 'https://ror.org/010g4yg11', 'no_lang_code', 1, 'https://ror.org/010g4yg11 Aqon Water Solutions (Germany)'),
(16236, 'https://ror.org/05pvjgr61', 'no_lang_code', 1, 'https://ror.org/05pvjgr61 Biker Fashion Arena Hamburg'),
(16237, 'https://ror.org/04qktt137', 'no_lang_code', 1, 'https://ror.org/04qktt137 Bumaga (Netherlands)'),
(16238, 'https://ror.org/047jmhw86', 'no_lang_code', 1, 'https://ror.org/047jmhw86 Aqua Consult Ingenieur (Germany)'),
(16239, 'https://ror.org/0570x4g13', 'no_lang_code', 1, 'https://ror.org/0570x4g13 Aquamarijn (Netherlands)'),
(16240, 'https://ror.org/042seb440', 'de', 1, 'https://ror.org/042seb440 Berufsförderungszentrum Essen'),
(16241, 'https://ror.org/04d06q394', 'no_lang_code', 1, 'https://ror.org/04d06q394 Google (Canada)'),
(16242, 'https://ror.org/038680g19', 'en', 1, 'https://ror.org/038680g19 Bundesamt für Eich- und Vermessungswesen Federal Office of Metrology and Surveying'),
(16243, 'https://ror.org/03aak0114', 'no_lang_code', 1, 'https://ror.org/03aak0114 Capital Technology Information Services'),
(16244, 'https://ror.org/00ztjw772', 'fr', 1, 'https://ror.org/00ztjw772 Cégep de Sorel-Tracy'),
(16245, 'https://ror.org/02qyt2t35', 'no_lang_code', 1, 'https://ror.org/02qyt2t35 Capricorn Automotive (United Kingdom)'),
(16246, 'https://ror.org/05d2wqp79', 'en', 1, 'https://ror.org/05d2wqp79 Greenville Children''s Hospital'),
(16247, 'https://ror.org/02axw6z74', 'no_lang_code', 1, 'https://ror.org/02axw6z74 Biaffin (Germany)'),
(16248, 'https://ror.org/01y7a2b37', 'no_lang_code', 1, 'https://ror.org/01y7a2b37 Biametrics (Germany)'),
(16249, 'https://ror.org/03v7mmm26', 'en', 1, 'https://ror.org/03v7mmm26 Bundesamt für Sicherheit in der Informationstechnik Federal Office for Information Security'),
(16250, 'https://ror.org/02x4af624', 'en', 1, 'https://ror.org/02x4af624 Central Statistics Office'),
(16251, 'https://ror.org/00ehy3369', 'en', 1, 'https://ror.org/00ehy3369 Central Virginia Community College'),
(16252, 'https://ror.org/01xg23r53', 'it', 1, 'https://ror.org/01xg23r53 Biblioteca Italiana per i Ciechi "Regina Margherita" - ONLUS'),
(16253, 'https://ror.org/02jvwwy41', 'en', 1, 'https://ror.org/02jvwwy41 Biblioteca Nacional de Portugal National Library of Portugal'),
(16254, 'https://ror.org/01aa1sn70', 'en', 1, 'https://ror.org/01aa1sn70 Bundesanstalt für Arbeitsschutz und Arbeitsmedizin Federal Institute for Occupational Safety and Health'),
(16255, 'https://ror.org/03h42b392', 'en', 1, 'https://ror.org/03h42b392 Biblioteca Nazionale Centrale di Roma Rome National Central Library'),
(16256, 'https://ror.org/04nmrty73', 'en', 1, 'https://ror.org/04nmrty73 Biblioteca Nazionale Marciana National Library of St Mark'),
(16257, 'https://ror.org/02x8cxb12', 'no_lang_code', 1, 'https://ror.org/02x8cxb12 Clearfield (United States)'),
(16258, 'https://ror.org/026sdzz57', 'en', 1, 'https://ror.org/026sdzz57 Centralia College'),
(16259, 'https://ror.org/038n1rk38', 'en', 1, 'https://ror.org/038n1rk38 Business Innovation Centre'),
(16260, 'https://ror.org/04rt32z32', 'en', 1, 'https://ror.org/04rt32z32 Centre d''Expertise en Traitement et Gestion de l''Eau Centre for Expertise in the Treatment and Management of Water'),
(16261, 'https://ror.org/055jqqn57', 'no_lang_code', 1, 'https://ror.org/055jqqn57 Bundesdruckerei (Germany) Reichsdruckerei'),
(16262, 'https://ror.org/04md9sc62', 'en', 1, 'https://ror.org/04md9sc62 Bienvenidos Children''s Center'),
(16263, 'https://ror.org/03z97cd47', 'es', 1, 'https://ror.org/03z97cd47 Fundació Privada Centre CIM'),
(16264, 'https://ror.org/02edcq094', 'no_lang_code', 1, 'https://ror.org/02edcq094 Big Horn Valve'),
(16265, 'https://ror.org/05tbrqg27', 'no_lang_code', 1, 'https://ror.org/05tbrqg27 Agrobiogen (Germany)'),
(16266, 'https://ror.org/01qznp021', 'no_lang_code', 1, 'https://ror.org/01qznp021 CapSenze (Sweden)'),
(16267, 'https://ror.org/0588zzw94', 'no_lang_code', 1, 'https://ror.org/0588zzw94 Arranta Bio (United States)'),
(16268, 'https://ror.org/02p8p3n14', 'no_lang_code', 1, 'https://ror.org/02p8p3n14 Agrovegetal (Spain)'),
(16269, 'https://ror.org/0396vya75', 'no_lang_code', 1, 'https://ror.org/0396vya75 Bilfinger (Germany)'),
(16270, 'https://ror.org/05vp4ka74', 'en', 1, 'https://ror.org/05vp4ka74 Bundesministerium für Gesundheit Federal Ministry of Health'),
(16271, 'https://ror.org/01j6w4907', 'en', 1, 'https://ror.org/01j6w4907 Biloxi Public Schools'),
(16272, 'https://ror.org/00y3wq736', 'en', 1, 'https://ror.org/00y3wq736 Bundesministerium für Bildung und Frauen Federal Ministry for Education and Women'),
(16273, 'https://ror.org/03cf36w49', 'en', 1, 'https://ror.org/03cf36w49 Southern Wesleyan University'),
(16274, 'https://ror.org/05fc83474', 'no_lang_code', 1, 'https://ror.org/05fc83474 Ahlstrom-Munksjö (France)'),
(16275, 'https://ror.org/03wawr393', 'no_lang_code', 1, 'https://ror.org/03wawr393 CarboNix (United States)'),
(16276, 'https://ror.org/05y3agr14', 'no_lang_code', 1, 'https://ror.org/05y3agr14 Ai2 (United Kingdom)'),
(16277, 'https://ror.org/01rjjd360', 'no_lang_code', 1, 'https://ror.org/01rjjd360 KalVista Pharmaceuticals (United States)'),
(16278, 'https://ror.org/046yjek33', 'no_lang_code', 1, 'https://ror.org/046yjek33 Aicas (Germany)'),
(16279, 'https://ror.org/04mmdfz16', 'no_lang_code', 1, 'https://ror.org/04mmdfz16 Bio Med Sciences (United States)'),
(16280, 'https://ror.org/03qw1d968', 'no_lang_code', 1, 'https://ror.org/03qw1d968 PSI Group (Belgium)'),
(16281, 'https://ror.org/05h6qy815', 'en', 1, 'https://ror.org/05h6qy815 Bio Nano Consulting'),
(16282, 'https://ror.org/0476vb322', 'no_lang_code', 1, 'https://ror.org/0476vb322 Carcerano (Italy)'),
(16283, 'https://ror.org/00s1pj327', 'en', 1, 'https://ror.org/00s1pj327 AIDS Arms'),
(16284, 'https://ror.org/01e0wse52', 'de', 1, 'https://ror.org/01e0wse52 Bundesverband der deutschen Fischindustrie und des Fischgroßhandels'),
(16285, 'https://ror.org/053t4zs10', 'no_lang_code', 1, 'https://ror.org/053t4zs10 Bunnell (United States)'),
(16286, 'https://ror.org/0312ax070', 'no_lang_code', 1, 'https://ror.org/0312ax070 LifeWatch (Israel)'),
(16287, 'https://ror.org/03gwjxa72', 'en', 1, 'https://ror.org/03gwjxa72 Alliance for Positive Health'),
(16288, 'https://ror.org/04ecr4902', 'no_lang_code', 1, 'https://ror.org/04ecr4902 Bio S&T (Canada)'),
(16289, 'https://ror.org/00p121j58', 'no_lang_code', 1, 'https://ror.org/00p121j58 Cardboard Citizens (United Kingdom)'),
(16290, 'https://ror.org/04dsm0326', 'no_lang_code', 1, 'https://ror.org/04dsm0326 Bioiliberis Research and Development (Spain)'),
(16291, 'https://ror.org/01rbzk889', 'no_lang_code', 1, 'https://ror.org/01rbzk889 Bio-K+ International (Canada)'),
(16292, 'https://ror.org/01gkd7j47', 'no_lang_code', 1, 'https://ror.org/01gkd7j47 Bio Molecular Technology (United States)'),
(16293, 'https://ror.org/00g0gdw57', 'en', 1, 'https://ror.org/00g0gdw57 AIDS Research Consortium of Atlanta'),
(16294, 'https://ror.org/031me7t03', 'en', 1, 'https://ror.org/031me7t03 Cardiff Council'),
(16295, 'https://ror.org/05ka98816', 'no_lang_code', 1, 'https://ror.org/05ka98816 Bio-Prodict (Netherlands)'),
(16296, 'https://ror.org/01tgr6n47', 'en', 1, 'https://ror.org/01tgr6n47 AIDS Resource Center of Wisconsin'),
(16297, 'https://ror.org/04cgwch75', 'no_lang_code', 1, 'https://ror.org/04cgwch75 Bio-Quick (United States)'),
(16298, 'https://ror.org/0041zj605', 'en', 1, 'https://ror.org/0041zj605 AIDS Services of Austin'),
(16299, 'https://ror.org/03pnx3e94', 'fr', 1, 'https://ror.org/03pnx3e94 Centre d''Études et de Recherches de l''Industrie du Béton'),
(16300, 'https://ror.org/05f3jmw47', 'en', 1, 'https://ror.org/05f3jmw47 Thrive'),
(16301, 'https://ror.org/01zav1s03', 'no_lang_code', 1, 'https://ror.org/01zav1s03 Bio-Technical Resources (United States)'),
(16302, 'https://ror.org/025dtrv42', 'fr', 1, 'https://ror.org/025dtrv42 Centre d''Études et de Recherches Économiques sur l''Énergie'),
(16303, 'https://ror.org/052z4yp15', 'no_lang_code', 1, 'https://ror.org/052z4yp15 BioActor (Netherlands)'),
(16304, 'https://ror.org/03me50s15', 'no_lang_code', 1, 'https://ror.org/03me50s15 Elekta (United States)'),
(16305, 'https://ror.org/056h1w707', 'no_lang_code', 1, 'https://ror.org/056h1w707 Onxeo (France)'),
(16306, 'https://ror.org/020hbh524', 'no_lang_code', 1, 'https://ror.org/020hbh524 Medtronic (United Kingdom)'),
(16307, 'https://ror.org/05avcpr91', 'en', 1, 'https://ror.org/05avcpr91 American Institute for Medical and Biological Engineering'),
(16308, 'https://ror.org/01xbt8t65', 'no_lang_code', 1, 'https://ror.org/01xbt8t65 AIMES Grid Services (United Kingdom)'),
(16309, 'https://ror.org/01g325629', 'en', 1, 'https://ror.org/01g325629 Aims Community College'),
(16310, 'https://ror.org/04f87d812', 'fr', 1, 'https://ror.org/04f87d812 Centre d''Etudes Superieures Industrielles'),
(16311, 'https://ror.org/01n04jf21', 'no_lang_code', 1, 'https://ror.org/01n04jf21 EagleBurgmann (Germany)'),
(16312, 'https://ror.org/03jhg3q89', 'en', 1, 'https://ror.org/03jhg3q89 Care Resource'),
(16313, 'https://ror.org/03prbp808', 'cs', 1, 'https://ror.org/03prbp808 Czech Television Česká televize'),
(16314, 'https://ror.org/04yctbp37', 'en', 1, 'https://ror.org/04yctbp37 Czech Centre for Science and Society'),
(16315, 'https://ror.org/019611881', 'no_lang_code', 1, 'https://ror.org/019611881 Burnbrae Farms (Canada)'),
(16316, 'https://ror.org/01dkzd737', 'en', 1, 'https://ror.org/01dkzd737 Air France Consulting'),
(16317, 'https://ror.org/038yk2262', 'no_lang_code', 1, 'https://ror.org/038yk2262 Burness (United States)'),
(16318, 'https://ror.org/02j4v2965', 'en', 1, 'https://ror.org/02j4v2965 Career Trek'),
(16319, 'https://ror.org/046y74b83', 'no_lang_code', 1, 'https://ror.org/046y74b83 Careers Europe'),
(16320, 'https://ror.org/00ktc0f44', 'no_lang_code', 1, 'https://ror.org/00ktc0f44 Air Products (Germany)'),
(16321, 'https://ror.org/03k952713', 'en', 1, 'https://ror.org/03k952713 Airborne Research Associates'),
(16322, 'https://ror.org/017z1kg06', 'no_lang_code', 1, 'https://ror.org/017z1kg06 Finlombarda (Italy)'),
(16323, 'https://ror.org/04gana571', 'no_lang_code', 1, 'https://ror.org/04gana571 AirBoss Defense (Canada)'),
(16324, 'https://ror.org/03vvh8670', 'en', 1, 'https://ror.org/03vvh8670 Complete Home Care'),
(16325, 'https://ror.org/04n664s92', 'no_lang_code', 1, 'https://ror.org/04n664s92 BPM (Greece)'),
(16326, 'https://ror.org/03m9nwe27', 'ca', 1, 'https://ror.org/03m9nwe27 Centre d''Innovació i Desenvolupament Empresarial'),
(16327, 'https://ror.org/02g3cdg42', 'en', 1, 'https://ror.org/02g3cdg42 Butte County Department of Behavioral Health'),
(16328, 'https://ror.org/05f624153', 'no_lang_code', 1, 'https://ror.org/05f624153 Cargill (France)'),
(16329, 'https://ror.org/03thqnc26', 'no_lang_code', 1, 'https://ror.org/03thqnc26 Aircraft Development and Systems Engineering (Netherlands)'),
(16330, 'https://ror.org/00kqt1k28', 'no_lang_code', 1, 'https://ror.org/00kqt1k28 Van Wees (Netherlands)'),
(16331, 'https://ror.org/00shhkw75', 'no_lang_code', 1, 'https://ror.org/00shhkw75 Airlan (Spain)'),
(16332, 'https://ror.org/05hphav28', 'fr', 1, 'https://ror.org/05hphav28 Airparif'),
(16333, 'https://ror.org/03g9n2p49', 'no_lang_code', 1, 'https://ror.org/03g9n2p49 Airtren (Spain)'),
(16334, 'https://ror.org/02eeqxc82', 'en', 1, 'https://ror.org/02eeqxc82 Centre de Développement des Energies Renouvelables Renewable Energy Development Center'),
(16335, 'https://ror.org/008g3nb29', 'no_lang_code', 1, 'https://ror.org/008g3nb29 BVT Technologies (Czechia)'),
(16336, 'https://ror.org/03btbhp73', 'no_lang_code', 1, 'https://ror.org/03btbhp73 Circulomics (United States)'),
(16337, 'https://ror.org/03jrtvr32', 'en', 1, 'https://ror.org/03jrtvr32 Agence Nationale pour le Développement des Energies Renouvelables et l’Efficacité Energétique National Agency for the Development of Renewable Energy and Energy Efficiency'),
(16338, 'https://ror.org/05y10b138', 'pt', 1, 'https://ror.org/05y10b138 Centro Tecnológico da Pedra Natural de Portugal'),
(16339, 'https://ror.org/04jpf5f68', 'en', 1, 'https://ror.org/04jpf5f68 CaringFamily'),
(16340, 'https://ror.org/012pre389', 'no_lang_code', 1, 'https://ror.org/012pre389 České Energetické Závody (Czechia)'),
(16341, 'https://ror.org/049qtwk65', 'no_lang_code', 1, 'https://ror.org/049qtwk65 Centre de Pyrolyse de Marienau (France)'),
(16342, 'https://ror.org/00fgt9h27', 'no_lang_code', 1, 'https://ror.org/00fgt9h27 Carl Cloos Schweißtechnik (Germany)'),
(16343, 'https://ror.org/03vd5fy29', 'no_lang_code', 1, 'https://ror.org/03vd5fy29 Cezanne (Italy)'),
(16344, 'https://ror.org/03h22yx22', 'no_lang_code', 1, 'https://ror.org/03h22yx22 C & L Instruments (United States)'),
(16345, 'https://ror.org/028ppep60', 'en', 1, 'https://ror.org/028ppep60 Standing Committee of European Doctors'),
(16346, 'https://ror.org/021y45972', 'no_lang_code', 1, 'https://ror.org/021y45972 Consultants for Environmental System Technologies'),
(16347, 'https://ror.org/02pw67e25', 'no_lang_code', 1, 'https://ror.org/02pw67e25 CE Technologies (United Kingdom)'),
(16348, 'https://ror.org/00vqkww48', 'no_lang_code', 1, 'https://ror.org/00vqkww48 Carley Technologies (United States)'),
(16349, 'https://ror.org/004mv3j76', 'no_lang_code', 1, 'https://ror.org/004mv3j76 CFN Precision'),
(16350, 'https://ror.org/03q9x9z62', 'pt', 1, 'https://ror.org/03q9x9z62 Centro de Formação Profissional para o Sector Alimentar'),
(16351, 'https://ror.org/02dgk8j41', 'fr', 1, 'https://ror.org/02dgk8j41 Centre de Recherche en Nutrition Humaine Rhône-Alpes'),
(16352, 'https://ror.org/00bd5vn47', 'no_lang_code', 1, 'https://ror.org/00bd5vn47 Carlsberg Group (Denmark)'),
(16353, 'https://ror.org/03190vh75', 'no_lang_code', 1, 'https://ror.org/03190vh75 Carmell Therapeutics (United States)'),
(16354, 'https://ror.org/03nd0ms94', 'no_lang_code', 1, 'https://ror.org/03nd0ms94 Doris Engineering (France)'),
(16355, 'https://ror.org/0584ce792', 'fr', 1, 'https://ror.org/0584ce792 Chambre de Commerce et d''Industrie Auvergne-Rhône-Alpes'),
(16356, 'https://ror.org/02pnyt573', 'fr', 1, 'https://ror.org/02pnyt573 Chambre de Commerce et d''Industrie Lyon Métropole Saint-Étienne Roanne'),
(16357, 'https://ror.org/00bpwc735', 'en', 1, 'https://ror.org/00bpwc735 Centre of Technological Resources in Chemistry'),
(16358, 'https://ror.org/05kfxbf35', 'no_lang_code', 1, 'https://ror.org/05kfxbf35 Carnego Systems (United Kingdom)'),
(16359, 'https://ror.org/02z89wd67', 'fr', 1, 'https://ror.org/02z89wd67 Confédération Générale du Travail General Confederation of Labour'),
(16360, 'https://ror.org/04kxs9506', 'fr', 1, 'https://ror.org/04kxs9506 Centre de Suivi Ecologique'),
(16361, 'https://ror.org/001vrfy97', 'en', 1, 'https://ror.org/001vrfy97 Carrier Clinic'),
(16362, 'https://ror.org/05n3hnq20', 'fr', 1, 'https://ror.org/05n3hnq20 Centre de Transfert de Technologie du Mans'),
(16363, 'https://ror.org/01s9r5913', 'no_lang_code', 1, 'https://ror.org/01s9r5913 Carte Blanche Conseil'),
(16364, 'https://ror.org/04nmzan17', 'en', 1, 'https://ror.org/04nmzan17 Chabot–Las Positas Community College District'),
(16365, 'https://ror.org/04tbkx594', 'en', 1, 'https://ror.org/04tbkx594 European Centre for Executive Development'),
(16366, 'https://ror.org/01ds3sh29', 'en', 1, 'https://ror.org/01ds3sh29 Children and Adults with Attention Deficit/Hyperactivity Disorder'),
(16367, 'https://ror.org/01mwm5w71', 'en', 1, 'https://ror.org/01mwm5w71 Centre Européen de Géodynamique et de Séismologie European Center for Geodynamics and Seismology'),
(16368, 'https://ror.org/008j31926', 'en', 1, 'https://ror.org/008j31926 Cary Medical Center'),
(16369, 'https://ror.org/01qhxpv22', 'no_lang_code', 1, 'https://ror.org/01qhxpv22 Chalklabs (United States)'),
(16370, 'https://ror.org/028qwvc58', 'en', 1, 'https://ror.org/028qwvc58 Chamber of Commerce and Industry of Romania'),
(16371, 'https://ror.org/01kmkkm51', 'fr', 1, 'https://ror.org/01kmkkm51 Chambre de Commerce et d''Industrie Occitanie Pyrénées-Méditerranée'),
(16372, 'https://ror.org/02ebmva22', 'no_lang_code', 1, 'https://ror.org/02ebmva22 Global Phasing (United Kingdom)'),
(16373, 'https://ror.org/03z5q7c50', 'fr', 1, 'https://ror.org/03z5q7c50 Chambre de Commerce et d''Industrie Pays de la Loire'),
(16374, 'https://ror.org/057a9pj22', 'en', 1, 'https://ror.org/057a9pj22 Cabrini University'),
(16375, 'https://ror.org/003tn2r13', 'en', 1, 'https://ror.org/003tn2r13 Champlain Valley Union High School'),
(16376, 'https://ror.org/027f3vp75', 'no_lang_code', 1, 'https://ror.org/027f3vp75 Centre for Concepts in Mechatronics'),
(16377, 'https://ror.org/012xvbn21', 'no_lang_code', 1, 'https://ror.org/012xvbn21 CEA Systems (Netherlands)'),
(16378, 'https://ror.org/05f5tv502', 'en', 1, 'https://ror.org/05f5tv502 Temecula Valley Unified School District'),
(16379, 'https://ror.org/01b0dbj85', 'no_lang_code', 1, 'https://ror.org/01b0dbj85 Cascade Technologies (United Kingdom)'),
(16380, 'https://ror.org/01tpms519', 'no_lang_code', 1, 'https://ror.org/01tpms519 Cad Modelling Ergonomics (Italy)'),
(16381, 'https://ror.org/04rtc8031', 'no_lang_code', 1, 'https://ror.org/04rtc8031 WPP (United Kingdom)'),
(16382, 'https://ror.org/02dteh969', 'en', 1, 'https://ror.org/02dteh969 Centre For Development Studies'),
(16383, 'https://ror.org/03x67zn13', 'no_lang_code', 1, 'https://ror.org/03x67zn13 Cadauta Engineering (Italy)'),
(16384, 'https://ror.org/00np6sw71', 'no_lang_code', 1, 'https://ror.org/00np6sw71 CASON Engineering (Hungary)'),
(16385, 'https://ror.org/05keyq749', 'en', 1, 'https://ror.org/05keyq749 Virginia Community Action Partnership'),
(16386, 'https://ror.org/001s88f97', 'no_lang_code', 1, 'https://ror.org/001s88f97 Mondelēz International (United Kingdom)'),
(16387, 'https://ror.org/00d9ep044', 'no_lang_code', 1, 'https://ror.org/00d9ep044 Cadence Design Systems (Germany)'),
(16388, 'https://ror.org/055wera52', 'en', 1, 'https://ror.org/055wera52 Chapter Arts Centre'),
(16389, 'https://ror.org/03tkh4446', 'en', 1, 'https://ror.org/03tkh4446 College of Southern Maryland'),
(16390, 'https://ror.org/00dszq289', 'en', 1, 'https://ror.org/00dszq289 Community Bridges'),
(16391, 'https://ror.org/01cc7y984', 'en', 1, 'https://ror.org/01cc7y984 Centre for Environmental Management and Decision Support'),
(16392, 'https://ror.org/00xhk2y44', 'no_lang_code', 1, 'https://ror.org/00xhk2y44 Cadzow Communications Consulting (United Kingdom)'),
(16393, 'https://ror.org/02t08m694', 'no_lang_code', 1, 'https://ror.org/02t08m694 HeidelbergCement (United Kingdom)'),
(16394, 'https://ror.org/03rt32119', 'no_lang_code', 1, 'https://ror.org/03rt32119 Caesar Systems (United Kingdom)'),
(16395, 'https://ror.org/009a9gs26', 'en', 1, 'https://ror.org/009a9gs26 Community Colleges of Spokane'),
(16396, 'https://ror.org/0478xk890', 'en', 1, 'https://ror.org/0478xk890 Community Connections'),
(16397, 'https://ror.org/00sd1ey15', 'no_lang_code', 1, 'https://ror.org/00sd1ey15 Castle Rock Edinvar (United Kingdom)'),
(16398, 'https://ror.org/03s917094', 'en', 1, 'https://ror.org/03s917094 Community Counseling Institute'),
(16399, 'https://ror.org/05w93eq54', 'en', 1, 'https://ror.org/05w93eq54 Drug Free Charlotte County'),
(16400, 'https://ror.org/04g9a2k03', 'en', 1, 'https://ror.org/04g9a2k03 Community Education Group'),
(16401, 'https://ror.org/03pnd9115', 'en', 1, 'https://ror.org/03pnd9115 Community Foundation'),
(16402, 'https://ror.org/00mtv4c34', 'en', 1, 'https://ror.org/00mtv4c34 Community Health Councils'),
(16403, 'https://ror.org/05733ar04', 'en', 1, 'https://ror.org/05733ar04 Community Healthlink'),
(16404, 'https://ror.org/05d8hxw39', 'en', 1, 'https://ror.org/05d8hxw39 Community Mental Health Affiliates'),
(16405, 'https://ror.org/03adps494', 'en', 1, 'https://ror.org/03adps494 Community Network Services'),
(16406, 'https://ror.org/00zq1zj15', 'en', 1, 'https://ror.org/00zq1zj15 Community Prevention Partnership'),
(16407, 'https://ror.org/0503ft796', 'no_lang_code', 1, 'https://ror.org/0503ft796 Castrol (United Kingdom)'),
(16408, 'https://ror.org/0096gcw21', 'en', 1, 'https://ror.org/0096gcw21 Centre for Independent Social Research Центр независимых социальных исследований'),
(16409, 'https://ror.org/003y83p14', 'en', 1, 'https://ror.org/003y83p14 University of the Third Age'),
(16410, 'https://ror.org/038ctdt29', 'en', 1, 'https://ror.org/038ctdt29 Community Services Institute'),
(16411, 'https://ror.org/00p6dtr08', 'no_lang_code', 1, 'https://ror.org/00p6dtr08 Blatchford (United Kingdom)'),
(16412, 'https://ror.org/01a697543', 'en', 1, 'https://ror.org/01a697543 Chattanooga State Community College'),
(16413, 'https://ror.org/034tcbt19', 'no_lang_code', 1, 'https://ror.org/034tcbt19 Catalyse'),
(16414, 'https://ror.org/01djt4c90', 'no_lang_code', 1, 'https://ror.org/01djt4c90 Telefactor Robotics (United States)'),
(16415, 'https://ror.org/03ag8py18', 'fr', 1, 'https://ror.org/03ag8py18 Académie de Montpellier'),
(16416, 'https://ror.org/014e9vv52', 'en', 1, 'https://ror.org/014e9vv52 Cheboygan Otsego Presque Isle Educational Service District'),
(16417, 'https://ror.org/05b3qpf29', 'en', 1, 'https://ror.org/05b3qpf29 Community Resources for Justice'),
(16418, 'https://ror.org/021wrjw75', 'no_lang_code', 1, 'https://ror.org/021wrjw75 CalGavin (United Kingdom)'),
(16419, 'https://ror.org/024rfjv05', 'en', 1, 'https://ror.org/024rfjv05 Centre for Studies in Social Sciences Calcutta'),
(16420, 'https://ror.org/00mssm162', 'en', 1, 'https://ror.org/00mssm162 Community Link'),
(16421, 'https://ror.org/01bmvyk77', 'no_lang_code', 1, 'https://ror.org/01bmvyk77 Chematur Engineering (Sweden)'),
(16422, 'https://ror.org/013s1wp36', 'no_lang_code', 1, 'https://ror.org/013s1wp36 CATAS Catas Laboratorio Analisi Legno Arredo Agroalimentare'),
(16423, 'https://ror.org/0386d9c06', 'no_lang_code', 1, 'https://ror.org/0386d9c06 ChemDiv (United States)'),
(16424, 'https://ror.org/01de6vt88', 'no_lang_code', 1, 'https://ror.org/01de6vt88 Chemetall (Germany)'),
(16425, 'https://ror.org/002hjp317', 'no_lang_code', 1, 'https://ror.org/002hjp317 Compagnie Européenne d’intelligence Stratégique (France)'),
(16426, 'https://ror.org/02rhwc631', 'no_lang_code', 1, 'https://ror.org/02rhwc631 Chemical Dynamics (United States)'),
(16427, 'https://ror.org/04kfyt897', 'en', 1, 'https://ror.org/04kfyt897 Center for Theoretical Physics'),
(16428, 'https://ror.org/002atrf55', 'fr', 1, 'https://ror.org/002atrf55 Centre Hospitalier Chrétien'),
(16429, 'https://ror.org/014j0w741', 'en', 1, 'https://ror.org/014j0w741 Catholic Medical Mission Board'),
(16430, 'https://ror.org/02vc6t684', 'en', 1, 'https://ror.org/02vc6t684 Catlin Gabel School'),
(16431, 'https://ror.org/00bd6zx59', 'de', 1, 'https://ror.org/00bd6zx59 Chemisches und Veterinäruntersuchungsamt Münsterland-Emscher-Lippe'),
(16432, 'https://ror.org/053nwxy06', 'en', 1, 'https://ror.org/053nwxy06 Los Angeles County Arboretum and Botanic Garden'),
(16433, 'https://ror.org/01abfef94', 'no_lang_code', 1, 'https://ror.org/01abfef94 ChemRegen (United States)'),
(16434, 'https://ror.org/008s3dc19', 'no_lang_code', 1, 'https://ror.org/008s3dc19 ChemRoutes (Canada)'),
(16435, 'https://ror.org/03vcezw91', 'en', 1, 'https://ror.org/03vcezw91 California Coalition Against Sexual Assault'),
(16436, 'https://ror.org/02dj2h444', 'no_lang_code', 1, 'https://ror.org/02dj2h444 Compagnie d''aménagement du Bas-Rhône et du Languedoc Groupe BRL (France)'),
(16437, 'https://ror.org/00kgr1f83', 'no_lang_code', 1, 'https://ror.org/00kgr1f83 Chemviron Carbon (United Kingdom)'),
(16438, 'https://ror.org/04kxasy49', 'no_lang_code', 1, 'https://ror.org/04kxasy49 Exide Technologies (France)'),
(16439, 'https://ror.org/04a007b13', 'no_lang_code', 1, 'https://ror.org/04a007b13 Nissatech Innovation Centre (Serbia)'),
(16440, 'https://ror.org/0035qnb68', 'no_lang_code', 1, 'https://ror.org/0035qnb68 Compart (Germany)'),
(16441, 'https://ror.org/027gw1387', 'en', 1, 'https://ror.org/027gw1387 Asociación para Poner Fin a la Violencia Doméstica de California California Partnership to End Domestic Violence'),
(16442, 'https://ror.org/01mz29f88', 'en', 1, 'https://ror.org/01mz29f88 Pasadera Behavioral Health Network'),
(16443, 'https://ror.org/02yvt1b82', 'no_lang_code', 1, 'https://ror.org/02yvt1b82 Chart Industries (United Kingdom)'),
(16444, 'https://ror.org/01wxvb586', 'no_lang_code', 1, 'https://ror.org/01wxvb586 Compass Systems (United States)'),
(16445, 'https://ror.org/05v2dq092', 'fr', 1, 'https://ror.org/05v2dq092 Centre International des Technologies de l''Environnement de Tunis'),
(16446, 'https://ror.org/03q5mqx63', 'en', 1, 'https://ror.org/03q5mqx63 California Health and Human Services Agency'),
(16447, 'https://ror.org/02jkzw668', 'no_lang_code', 1, 'https://ror.org/02jkzw668 CompleGen (United States)'),
(16448, 'https://ror.org/01pdcqg90', 'no_lang_code', 1, 'https://ror.org/01pdcqg90 Composite Integration (United Kingdom)'),
(16449, 'https://ror.org/02vzsb460', 'no_lang_code', 1, 'https://ror.org/02vzsb460 Cavitation-Control Technology'),
(16450, 'https://ror.org/04790m696', 'no_lang_code', 1, 'https://ror.org/04790m696 Composites Evolution (United Kingdom)'),
(16451, 'https://ror.org/003j7c961', 'fr', 1, 'https://ror.org/003j7c961 Centre de Culture Scientifique, Technique et Industrielle'),
(16452, 'https://ror.org/00a5raq24', 'no_lang_code', 1, 'https://ror.org/00a5raq24 A-Gas International (United Kingdom)'),
(16453, 'https://ror.org/01skhtc50', 'no_lang_code', 1, 'https://ror.org/01skhtc50 Hummingbird Diagnostics (Germany)'),
(16454, 'https://ror.org/03cev9t93', 'fr', 1, 'https://ror.org/03cev9t93 Centre National de l''Informatique'),
(16455, 'https://ror.org/029w47y50', 'en', 1, 'https://ror.org/029w47y50 Cheyenne River Sioux Tribe Council'),
(16456, 'https://ror.org/0579ray12', 'fr', 1, 'https://ror.org/0579ray12 Centre National de la Recherche Appliquée au Developpement Rural'),
(16457, 'https://ror.org/018azsp93', 'en', 1, 'https://ror.org/018azsp93 Children’s Cancer Foundation'),
(16458, 'https://ror.org/046467720', 'en', 1, 'https://ror.org/046467720 CB Wetlands & Environmental Specialists'),
(16459, 'https://ror.org/0565atc18', 'en', 1, 'https://ror.org/0565atc18 Calista Elders Council'),
(16460, 'https://ror.org/05me4xs24', 'no_lang_code', 1, 'https://ror.org/05me4xs24 Compugraphics (United Kingdom)'),
(16461, 'https://ror.org/01tjh5r18', 'en', 1, 'https://ror.org/01tjh5r18 Children''s Council'),
(16462, 'https://ror.org/00h86n631', 'en', 1, 'https://ror.org/00h86n631 Children''s Health Fund'),
(16463, 'https://ror.org/045gnpt57', 'no_lang_code', 1, 'https://ror.org/045gnpt57 LETIPharma (Spain)'),
(16464, 'https://ror.org/04bjh1v02', 'de', 1, 'https://ror.org/04bjh1v02 Business Upper Austria – OÖ Wirtschaftsagentur OÖ Wirtschaftsagentur GmbH'),
(16465, 'https://ror.org/05se6w266', 'en', 1, 'https://ror.org/05se6w266 Dutch Institute for Healthcare Improvement'),
(16466, 'https://ror.org/05939ef94', 'no_lang_code', 1, 'https://ror.org/05939ef94 Altair Engineering (United States)'),
(16467, 'https://ror.org/05pxff726', 'no_lang_code', 1, 'https://ror.org/05pxff726 CBRNE (United Kingdom)'),
(16468, 'https://ror.org/05s47z440', 'no_lang_code', 1, 'https://ror.org/05s47z440 Folder Media'),
(16469, 'https://ror.org/043pn0570', 'no_lang_code', 1, 'https://ror.org/043pn0570 Chilworth Technology (United Kingdom)'),
(16470, 'https://ror.org/00p8xx315', 'no_lang_code', 1, 'https://ror.org/00p8xx315 CCC Diagnostics (United States)'),
(16471, 'https://ror.org/038k3ws77', 'en', 1, 'https://ror.org/038k3ws77 Centre of Polymer and Carbon Materials'),
(16472, 'https://ror.org/031ts9d41', 'no_lang_code', 1, 'https://ror.org/031ts9d41 Comité de Concertation et de Coordination de l''Apprentissage du Bâtiment et des Travaux Publics'),
(16473, 'https://ror.org/02szraw88', 'fr', 1, 'https://ror.org/02szraw88 Centre Régional Africain des Sciences et Technologies de l''Espace'),
(16474, 'https://ror.org/01s0wyf50', 'en', 1, 'https://ror.org/01s0wyf50 Computer Network Information Center 计算机网络信息中心'),
(16475, 'https://ror.org/033hv7h54', 'no_lang_code', 1, 'https://ror.org/033hv7h54 Cambridge Consultants (United Kingdom)'),
(16476, 'https://ror.org/04an1th16', 'en', 1, 'https://ror.org/04an1th16 Computer Professionals for Social Responsibility'),
(16477, 'https://ror.org/01e8py533', 'en', 1, 'https://ror.org/01e8py533 Agrhymet Regional Centre'),
(16478, 'https://ror.org/03k03ec42', 'no_lang_code', 1, 'https://ror.org/03k03ec42 Computer Technology Associates (United States)'),
(16479, 'https://ror.org/03fjxe887', 'no_lang_code', 1, 'https://ror.org/03fjxe887 Sumitomo Chemical (United Kingdom)'),
(16480, 'https://ror.org/04h79hz18', 'en', 1, 'https://ror.org/04h79hz18 Chimp Haven'),
(16481, 'https://ror.org/012f3dh63', 'en', 1, 'https://ror.org/012f3dh63 China Academy of Transportation Sciences 交通运输部科学研究院'),
(16482, 'https://ror.org/0533xsy32', 'no_lang_code', 1, 'https://ror.org/0533xsy32 Computercraft (United States)'),
(16483, 'https://ror.org/00a6s8j26', 'no_lang_code', 1, 'https://ror.org/00a6s8j26 Comsa Emte (Spain)'),
(16484, 'https://ror.org/04ts3qa26', 'en', 1, 'https://ror.org/04ts3qa26 China Association of Rural Energy Industry'),
(16485, 'https://ror.org/034j4s684', 'en', 1, 'https://ror.org/034j4s684 European-Mediterranean Seismological Centre'),
(16486, 'https://ror.org/02fsh0r13', 'en', 1, 'https://ror.org/02fsh0r13 China National Center for Biotechnology Development'),
(16487, 'https://ror.org/03jd1w748', 'no_lang_code', 1, 'https://ror.org/03jd1w748 CCTV User Group (United Kingdom)'),
(16488, 'https://ror.org/005ac6938', 'no_lang_code', 1, 'https://ror.org/005ac6938 CDI Bioscience (United States)'),
(16489, 'https://ror.org/00q4gxb20', 'no_lang_code', 1, 'https://ror.org/00q4gxb20 OmniVision Technologies (United States)'),
(16490, 'https://ror.org/00wyrb732', 'no_lang_code', 1, 'https://ror.org/00wyrb732 Comsis (France)'),
(16491, 'https://ror.org/043648k83', 'en', 1, 'https://ror.org/043648k83 China National Health Development Research Center 卫生部卫生发展研究中心'),
(16492, 'https://ror.org/00sadm236', 'no_lang_code', 1, 'https://ror.org/00sadm236 Centro Studi Industriali'),
(16493, 'https://ror.org/048trsg90', 'no_lang_code', 1, 'https://ror.org/048trsg90 Cambustion (United Kingdom)'),
(16494, 'https://ror.org/04g2pxd54', 'en', 1, 'https://ror.org/04g2pxd54 Chipola College'),
(16495, 'https://ror.org/04nfv1e19', 'no_lang_code', 1, 'https://ror.org/04nfv1e19 ALPhANOV (France)'),
(16496, 'https://ror.org/01at47r33', 'no_lang_code', 1, 'https://ror.org/01at47r33 Cameca (France)'),
(16497, 'https://ror.org/04pjbp005', 'no_lang_code', 1, 'https://ror.org/04pjbp005 Camelot Biomedical Systems (Italy)'),
(16498, 'https://ror.org/009c1h633', 'no_lang_code', 1, 'https://ror.org/009c1h633 Concawe'),
(16499, 'https://ror.org/053qa4s13', 'it', 1, 'https://ror.org/053qa4s13 Camera di Commercio di Firenze Florence International Mediation Chamber'),
(16500, 'https://ror.org/0391yk308', 'no_lang_code', 1, 'https://ror.org/0391yk308 Altran (Austria)'),
(16501, 'https://ror.org/03z2rq360', 'no_lang_code', 1, 'https://ror.org/03z2rq360 Camfridge (United Kingdom)'),
(16502, 'https://ror.org/0370m6q82', 'no_lang_code', 1, 'https://ror.org/0370m6q82 Chipworks (Canada)'),
(16503, 'https://ror.org/03tdxyb14', 'no_lang_code', 1, 'https://ror.org/03tdxyb14 ChK Group (United States)'),
(16504, 'https://ror.org/017sazg79', 'no_lang_code', 1, 'https://ror.org/017sazg79 Mersen (France)'),
(16505, 'https://ror.org/05gyeb173', 'fr', 1, 'https://ror.org/05gyeb173 College of General and Vocational Education Cégep de Jonquière'),
(16506, 'https://ror.org/03vm0h048', 'no_lang_code', 1, 'https://ror.org/03vm0h048 Choc Edge (United Kingdom)'),
(16507, 'https://ror.org/05f8m5935', 'fr', 1, 'https://ror.org/05f8m5935 Cégep de Rimouski'),
(16508, 'https://ror.org/01139ec29', 'no_lang_code', 1, 'https://ror.org/01139ec29 Thermo Fisher Scientific (Netherlands)'),
(16509, 'https://ror.org/03vghmn25', 'no_lang_code', 1, 'https://ror.org/03vghmn25 Cementec Industries (Canada)'),
(16510, 'https://ror.org/0055z4983', 'no_lang_code', 1, 'https://ror.org/0055z4983 Christmann Informationstechnik + Medien (Germany)'),
(16511, 'https://ror.org/05xn6v862', 'no_lang_code', 1, 'https://ror.org/05xn6v862 ChromaDex (United States)'),
(16512, 'https://ror.org/01bae3q52', 'no_lang_code', 1, 'https://ror.org/01bae3q52 Sanotron'),
(16513, 'https://ror.org/03f90wp03', 'en', 1, 'https://ror.org/03f90wp03 Canadian Association for Girls in Science'),
(16514, 'https://ror.org/03zm24q55', 'no_lang_code', 1, 'https://ror.org/03zm24q55 Canadian Bank Note Company (Canada)'),
(16515, 'https://ror.org/026kkhf56', 'en', 1, 'https://ror.org/026kkhf56 Shad'),
(16516, 'https://ror.org/00rdbkh09', 'en', 1, 'https://ror.org/00rdbkh09 Canadian Coalition for Seniors Mental Health'),
(16517, 'https://ror.org/04yga0669', 'no_lang_code', 1, 'https://ror.org/04yga0669 ChromoLogic (United States)'),
(16518, 'https://ror.org/05c2m7279', 'no_lang_code', 1, 'https://ror.org/05c2m7279 Companhia de Equipamentos Industriais'),
(16519, 'https://ror.org/0171psx92', 'en', 1, 'https://ror.org/0171psx92 Noranda Income Fund'),
(16520, 'https://ror.org/02hmgg345', 'it', 1, 'https://ror.org/02hmgg345 INiziative Conciarie ASsociate'),
(16521, 'https://ror.org/01zqkbt68', 'no_lang_code', 1, 'https://ror.org/01zqkbt68 Chronos Technology (United Kingdom)'),
(16522, 'https://ror.org/02kjgzx32', 'en', 1, 'https://ror.org/02kjgzx32 Chrysalis House'),
(16523, 'https://ror.org/04wkbmw59', 'en', 1, 'https://ror.org/04wkbmw59 Canadian Institute for the Relief of Pain and Disability'),
(16524, 'https://ror.org/01yma9m40', 'en', 1, 'https://ror.org/01yma9m40 Concordia University Ann Arbor Universidad Concordia'),
(16525, 'https://ror.org/03z1f5h46', 'no_lang_code', 1, 'https://ror.org/03z1f5h46 Compañía Ibérica De Paneles Sintéticos (Spain)'),
(16526, 'https://ror.org/044v41k28', 'no_lang_code', 1, 'https://ror.org/044v41k28 Concrete Repairs (United Kingdom)'),
(16527, 'https://ror.org/00tspxb31', 'en', 1, 'https://ror.org/00tspxb31 Chartered Professional Accountants of Canada comptable professionnel agréé'),
(16528, 'https://ror.org/00y7e0f48', 'no_lang_code', 1, 'https://ror.org/00y7e0f48 Controle & Inspectie Bureau Brouwer (Netherlands)'),
(16529, 'https://ror.org/04wmwts90', 'no_lang_code', 1, 'https://ror.org/04wmwts90 Connexor (Finland)'),
(16530, 'https://ror.org/03s0stn41', 'it', 1, 'https://ror.org/03s0stn41 Confederazione Italiana della Piccola e Media Industria'),
(16531, 'https://ror.org/02qakpg42', 'no_lang_code', 1, 'https://ror.org/02qakpg42 Confederación de Empresarios de Zaragoza'),
(16532, 'https://ror.org/005cv6b38', 'fr', 1, 'https://ror.org/005cv6b38 Celabor'),
(16533, 'https://ror.org/04yqne831', 'es', 1, 'https://ror.org/04yqne831 Confederacion Española De Fabricantes De Alimentos Compuestos Para Animales'),
(16534, 'https://ror.org/03fw2bn12', 'fr', 1, 'https://ror.org/03fw2bn12 Centre d''Imagerie BioMedicale'),
(16535, 'https://ror.org/00yn4x364', 'pt', 1, 'https://ror.org/00yn4x364 Centro de Estudos de Cultura Contemporânea'),
(16536, 'https://ror.org/03pkvgf29', 'no_lang_code', 1, 'https://ror.org/03pkvgf29 Cyke (United States)'),
(16537, 'https://ror.org/047h1e475', 'no_lang_code', 1, 'https://ror.org/047h1e475 Celica (Slovenia)'),
(16538, 'https://ror.org/00qnwh567', 'es', 1, 'https://ror.org/00qnwh567 Federación Española de Padres de Niños con Cáncer'),
(16539, 'https://ror.org/02q7j8a46', 'en', 1, 'https://ror.org/02q7j8a46 Irish Business and Employers Confederation'),
(16540, 'https://ror.org/050rqx152', 'en', 1, 'https://ror.org/050rqx152 Confederation of Organisations in Road Transport Enforcement'),
(16541, 'https://ror.org/03v79p997', 'no_lang_code', 1, 'https://ror.org/03v79p997 Cidete (Spain)'),
(16542, 'https://ror.org/05atpj522', 'no_lang_code', 1, 'https://ror.org/05atpj522 Cyprus Chamber of Commerce and Industry (Cyprus)'),
(16543, 'https://ror.org/02p7kx729', 'en', 1, 'https://ror.org/02p7kx729 Conference for Food Protection'),
(16544, 'https://ror.org/01qckg962', 'no_lang_code', 1, 'https://ror.org/01qckg962 Conference Management Services'),
(16545, 'https://ror.org/03tgve420', 'en', 1, 'https://ror.org/03tgve420 Cielo Institute'),
(16546, 'https://ror.org/02htcra34', 'en', 1, 'https://ror.org/02htcra34 Conference of Radiation Control Program Directors'),
(16547, 'https://ror.org/008y40y60', 'en', 1, 'https://ror.org/008y40y60 Cyprus Police'),
(16548, 'https://ror.org/042bat638', 'no_lang_code', 1, 'https://ror.org/042bat638 ConfometRx (United States)'),
(16549, 'https://ror.org/03vttd812', 'en', 1, 'https://ror.org/03vttd812 Connecticut Education Association'),
(16550, 'https://ror.org/049s5qx48', 'en', 1, 'https://ror.org/049s5qx48 Connecticut State Department of Education'),
(16551, 'https://ror.org/041hy4p77', 'no_lang_code', 1, 'https://ror.org/041hy4p77 ConocoPhillips (United Kingdom)'),
(16552, 'https://ror.org/04r9xv549', 'no_lang_code', 1, 'https://ror.org/04r9xv549 Conoship International (Netherlands)'),
(16553, 'https://ror.org/01mde0021', 'no_lang_code', 1, 'https://ror.org/01mde0021 Cellectis (United States)'),
(16554, 'https://ror.org/05xc7zw37', 'no_lang_code', 1, 'https://ror.org/05xc7zw37 CIM Group (Serbia)'),
(16555, 'https://ror.org/01hhf0c93', 'en', 1, 'https://ror.org/01hhf0c93 Consorzio Armatori per la Ricerca Italian Shipowners Research Consortium'),
(16556, 'https://ror.org/02edkny32', 'fr', 1, 'https://ror.org/02edkny32 Conseil Européen de l''Industrie des Peintures des Encres d''Imprimerie et des Couleurs d''Art'),
(16557, 'https://ror.org/027q99w81', 'no_lang_code', 1, 'https://ror.org/027q99w81 Cell Medica (United Kingdom)'),
(16558, 'https://ror.org/044xhw248', 'no_lang_code', 1, 'https://ror.org/044xhw248 Cell Microsystems (United States)'),
(16559, 'https://ror.org/02wjdtq78', 'es', 1, 'https://ror.org/02wjdtq78 Agencia de Energía Nuclear y Tecnologías de Avanzada'),
(16560, 'https://ror.org/042th2969', 'no_lang_code', 1, 'https://ror.org/042th2969 Centro de Innovación de Infraestructuras Inteligentes (Spain)'),
(16561, 'https://ror.org/016phpf56', 'no_lang_code', 1, 'https://ror.org/016phpf56 Cella Energy (United Kingdom)'),
(16562, 'https://ror.org/03ssm0977', 'no_lang_code', 1, 'https://ror.org/03ssm0977 Cellbond (United Kingdom)'),
(16563, 'https://ror.org/03xsax711', 'cs', 1, 'https://ror.org/03xsax711 Cznic'),
(16564, 'https://ror.org/05p1q6h89', 'no_lang_code', 1, 'https://ror.org/05p1q6h89 D Addato Agroalimentare (Italy)'),
(16565, 'https://ror.org/054bssx30', 'en', 1, 'https://ror.org/054bssx30 Cincinnati Public Schools'),
(16566, 'https://ror.org/032wrwd21', 'no_lang_code', 1, 'https://ror.org/032wrwd21 Takara (France)'),
(16567, 'https://ror.org/009a0gk47', 'no_lang_code', 1, 'https://ror.org/009a0gk47 Fives Landis (United Kingdom)'),
(16568, 'https://ror.org/03ypjf385', 'no_lang_code', 1, 'https://ror.org/03ypjf385 Neos Resources (United Kingdom)'),
(16569, 'https://ror.org/05qq13q49', 'no_lang_code', 1, 'https://ror.org/05qq13q49 CISC Semiconductor (Austria)'),
(16570, 'https://ror.org/04wfsv479', 'no_lang_code', 1, 'https://ror.org/04wfsv479 Cisco Systems (United Kingdom)'),
(16571, 'https://ror.org/03dtd0v69', 'no_lang_code', 1, 'https://ror.org/03dtd0v69 Cellix (Ireland)'),
(16572, 'https://ror.org/04hh2pc08', 'no_lang_code', 1, 'https://ror.org/04hh2pc08 Daat Research (United States)'),
(16573, 'https://ror.org/005h05b25', 'no_lang_code', 1, 'https://ror.org/005h05b25 Circle (United States)'),
(16574, 'https://ror.org/04y7he712', 'no_lang_code', 1, 'https://ror.org/04y7he712 Dacon (Norway)'),
(16575, 'https://ror.org/02a3gzm90', 'en', 1, 'https://ror.org/02a3gzm90 Miami-Dade County Public Schools'),
(16576, 'https://ror.org/00kjw0r97', 'no_lang_code', 1, 'https://ror.org/00kjw0r97 CirComp (Germany)'),
(16577, 'https://ror.org/05s565w61', 'no_lang_code', 1, 'https://ror.org/05s565w61 MeaningCloud (Spain)'),
(16578, 'https://ror.org/054nctx58', 'no_lang_code', 1, 'https://ror.org/054nctx58 Cenex (United Kingdom)'),
(16579, 'https://ror.org/01gqmxc42', 'en', 1, 'https://ror.org/01gqmxc42 Deutsche Angestellten-Gewerkschaft German Union of Salaried Employees'),
(16580, 'https://ror.org/03c1rcd16', 'no_lang_code', 1, 'https://ror.org/03c1rcd16 Daher (France)'),
(16581, 'https://ror.org/04b4qa207', 'no_lang_code', 1, 'https://ror.org/04b4qa207 ZeptoMetrix (United States)'),
(16582, 'https://ror.org/054ykvg32', 'no_lang_code', 1, 'https://ror.org/054ykvg32 Heartware International (United States)'),
(16583, 'https://ror.org/05f3k0a16', 'no_lang_code', 1, 'https://ror.org/05f3k0a16 Consorzio CREO (Italy)'),
(16584, 'https://ror.org/00rk8p873', 'pt', 1, 'https://ror.org/00rk8p873 Centro De Formação Profissional Da Indústria Da Construção Civil E Obras Públicas Do Sul'),
(16585, 'https://ror.org/04jvb9y72', 'no_lang_code', 1, 'https://ror.org/04jvb9y72 Cellular Research (United States)'),
(16586, 'https://ror.org/02nv12n94', 'it', 1, 'https://ror.org/02nv12n94 Consorzio del Formaggio Parmigiano-Reggiano'),
(16587, 'https://ror.org/044w95594', 'it', 1, 'https://ror.org/044w95594 Consorzio di Bioingegneria e Informatica Medica'),
(16588, 'https://ror.org/027b52158', 'no_lang_code', 1, 'https://ror.org/027b52158 Plasma (Macedonia)'),
(16589, 'https://ror.org/04aza2289', 'no_lang_code', 1, 'https://ror.org/04aza2289 Celoxica (United Kingdom)'),
(16590, 'https://ror.org/002ev2d93', 'no_lang_code', 1, 'https://ror.org/002ev2d93 Ciris Ingénierie (France)'),
(16591, 'https://ror.org/01pghxv94', 'no_lang_code', 1, 'https://ror.org/01pghxv94 Celsense (United States)'),
(16592, 'https://ror.org/05g4w0661', 'en', 1, 'https://ror.org/05g4w0661 Canmore Museum and Geoscience Centre'),
(16593, 'https://ror.org/0327mxq88', 'it', 1, 'https://ror.org/0327mxq88 Consorzio Italiano per la Ricerca in Medicina'),
(16594, 'https://ror.org/039kb9274', 'en', 1, 'https://ror.org/039kb9274 Center for Asbestos Related Disease'),
(16595, 'https://ror.org/0132exq81', 'no_lang_code', 1, 'https://ror.org/0132exq81 Smithfield BioScience (United States)'),
(16596, 'https://ror.org/00tgp6v56', 'en', 1, 'https://ror.org/00tgp6v56 Center for Clinical Care and Research in Nigeria'),
(16597, 'https://ror.org/02ftsrc92', 'no_lang_code', 1, 'https://ror.org/02ftsrc92 Celulose Beira Industrial (Portugal)'),
(16598, 'https://ror.org/03tap5z28', 'no_lang_code', 1, 'https://ror.org/03tap5z28 Dairygold Co-Operative Society (Ireland)'),
(16599, 'https://ror.org/03s538y47', 'en', 1, 'https://ror.org/03s538y47 Dallas Independent School District'),
(16600, 'https://ror.org/04h9m3j18', 'no_lang_code', 1, 'https://ror.org/04h9m3j18 CIT Energy Management (Sweden)'),
(16601, 'https://ror.org/013trv503', 'no_lang_code', 1, 'https://ror.org/013trv503 Damen Shipyards Group (Netherlands)'),
(16602, 'https://ror.org/05v0str08', 'en', 1, 'https://ror.org/05v0str08 Midland University'),
(16603, 'https://ror.org/0013xkf77', 'en', 1, 'https://ror.org/0013xkf77 Consortium for Research in Automatic and Telecommunications Consorzio per la Ricerca nell''Automatica e Telecomunicazioni'),
(16604, 'https://ror.org/00jxjq872', 'no_lang_code', 1, 'https://ror.org/00jxjq872 Citard Services (Cyprus)'),
(16605, 'https://ror.org/043bxbz53', 'en', 1, 'https://ror.org/043bxbz53 Experimentarium'),
(16606, 'https://ror.org/01jfqyt17', 'no_lang_code', 1, 'https://ror.org/01jfqyt17 Danaos (Greece)'),
(16607, 'https://ror.org/013vksw20', 'en', 1, 'https://ror.org/013vksw20 Center for Governmental Research'),
(16608, 'https://ror.org/02g2wm361', 'es', 1, 'https://ror.org/02g2wm361 Centro de Investigacion de las Telecomunicaciones'),
(16609, 'https://ror.org/04997nh58', 'en', 1, 'https://ror.org/04997nh58 Center for Health Care Services'),
(16610, 'https://ror.org/01f5tnx94', 'en', 1, 'https://ror.org/01f5tnx94 Institute of Ionized Gas Istituto Gas Ionizzati'),
(16611, 'https://ror.org/02ng1r361', 'fr', 1, 'https://ror.org/02ng1r361 Cité des Sciences et de l''Industrie'),
(16612, 'https://ror.org/0519yw032', 'en', 1, 'https://ror.org/0519yw032 EcoSpark'),
(16613, 'https://ror.org/050kt0y53', 'no_lang_code', 1, 'https://ror.org/050kt0y53 Citrix (United Kingdom)'),
(16614, 'https://ror.org/02164rg35', 'en', 1, 'https://ror.org/02164rg35 Austin Health & Human Services Department'),
(16615, 'https://ror.org/02w3y1050', 'no_lang_code', 1, 'https://ror.org/02w3y1050 Arena Pharmaceuticals (United States)'),
(16616, 'https://ror.org/04ddx8z75', 'no_lang_code', 1, 'https://ror.org/04ddx8z75 Codema (Ireland)'),
(16617, 'https://ror.org/051qkf035', 'no_lang_code', 1, 'https://ror.org/051qkf035 Constellation Technology (United States)'),
(16618, 'https://ror.org/04606j127', 'no_lang_code', 1, 'https://ror.org/04606j127 GarcíaRama (Spain)'),
(16619, 'https://ror.org/02afbgp72', 'no_lang_code', 1, 'https://ror.org/02afbgp72 Construcciones y Auxiliar de Ferrocarriles (Spain)'),
(16620, 'https://ror.org/04sjgrc77', 'no_lang_code', 1, 'https://ror.org/04sjgrc77 Danish Micro Engineering (Denmark)'),
(16621, 'https://ror.org/05b6bjd03', 'no_lang_code', 1, 'https://ror.org/05b6bjd03 Construction Solutions (United States)'),
(16622, 'https://ror.org/01nv7r365', 'no_lang_code', 1, 'https://ror.org/01nv7r365 Constructive Thinking Studio (United Kingdom)'),
(16623, 'https://ror.org/05mhp5f89', 'no_lang_code', 1, 'https://ror.org/05mhp5f89 Af-cityplan (Czechia)'),
(16624, 'https://ror.org/015p4e180', 'no_lang_code', 1, 'https://ror.org/015p4e180 DSB (Denmark)');
INSERT INTO `rors` VALUES
(16625, 'https://ror.org/03kf4k440', 'no_lang_code', 1, 'https://ror.org/03kf4k440 Danish Power Systems (Denmark)'),
(16626, 'https://ror.org/05q8m5985', 'en', 1, 'https://ror.org/05q8m5985 Center for Security Studies Κέντρο Μελετών Ασφαλείας'),
(16627, 'https://ror.org/05wrxrk69', 'en', 1, 'https://ror.org/05wrxrk69 Center For Social Innovation'),
(16628, 'https://ror.org/024p72773', 'no_lang_code', 1, 'https://ror.org/024p72773 Imathia Construcción (Spain)'),
(16629, 'https://ror.org/00305v037', 'en', 1, 'https://ror.org/00305v037 Center for Success and Independence'),
(16630, 'https://ror.org/05egsp010', 'en', 1, 'https://ror.org/05egsp010 Danish Ministry of Transport Transportministeriet'),
(16631, 'https://ror.org/02jx5cp03', 'no_lang_code', 1, 'https://ror.org/02jx5cp03 Cen Group (United Kingdom)'),
(16632, 'https://ror.org/01k6b8252', 'no_lang_code', 1, 'https://ror.org/01k6b8252 Container Finance (Finland)'),
(16633, 'https://ror.org/05qq44506', 'en', 1, 'https://ror.org/05qq44506 Contaminated Land: Applications in the Real Environments'),
(16634, 'https://ror.org/0199wh953', 'no_lang_code', 1, 'https://ror.org/0199wh953 Contech (Canada)'),
(16635, 'https://ror.org/04e5k0n06', 'no_lang_code', 1, 'https://ror.org/04e5k0n06 Civilized Software (United States)'),
(16636, 'https://ror.org/03bskcm82', 'no_lang_code', 1, 'https://ror.org/03bskcm82 Contextual Change (United States)'),
(16637, 'https://ror.org/02bah0q54', 'en', 1, 'https://ror.org/02bah0q54 Clackamas County Children''s Commission Head Start'),
(16638, 'https://ror.org/00ypwp112', 'it', 1, 'https://ror.org/00ypwp112 Centro di Cultura Scientifica Alessandro Volta'),
(16639, 'https://ror.org/04eyx5a65', 'en', 1, 'https://ror.org/04eyx5a65 Center for Transboundary Cooperation'),
(16640, 'https://ror.org/05jeb9h94', 'en', 1, 'https://ror.org/05jeb9h94 Cemit Center of Excellence in Medicine and IT'),
(16641, 'https://ror.org/05xhmq411', 'no_lang_code', 1, 'https://ror.org/05xhmq411 Control 2K'),
(16642, 'https://ror.org/04dt1y190', 'no_lang_code', 1, 'https://ror.org/04dt1y190 Claremont BioSolutions (United States)'),
(16643, 'https://ror.org/05kbent92', 'no_lang_code', 1, 'https://ror.org/05kbent92 Trust Control International (France)'),
(16644, 'https://ror.org/05ybzyq68', 'no_lang_code', 1, 'https://ror.org/05ybzyq68 Castor Technologies (Canada)'),
(16645, 'https://ror.org/02awt9052', 'no_lang_code', 1, 'https://ror.org/02awt9052 ControlVet (Portugal)'),
(16646, 'https://ror.org/02j0jan18', 'fr', 1, 'https://ror.org/02j0jan18 La Cité Médicale'),
(16647, 'https://ror.org/03c0cr114', 'en', 1, 'https://ror.org/03c0cr114 Center of Maritime Technologies'),
(16648, 'https://ror.org/033tw3v53', 'no_lang_code', 1, 'https://ror.org/033tw3v53 Skulpt (United States)'),
(16649, 'https://ror.org/00aj77a24', 'no_lang_code', 1, 'https://ror.org/00aj77a24 Danone (France)'),
(16650, 'https://ror.org/027a1ey92', 'en', 1, 'https://ror.org/027a1ey92 Department of Consumer Protection'),
(16651, 'https://ror.org/05qbzsj10', 'en', 1, 'https://ror.org/05qbzsj10 Danish Institute of Fire and Security Technology Danmarks videncenter for brand og sikring'),
(16652, 'https://ror.org/0084vrs13', 'no_lang_code', 1, 'https://ror.org/0084vrs13 Clariant (Germany)'),
(16653, 'https://ror.org/00zr01g13', 'no_lang_code', 1, 'https://ror.org/00zr01g13 Convex Electrical (Ireland)'),
(16654, 'https://ror.org/032891704', 'no_lang_code', 1, 'https://ror.org/032891704 Clarifica (Canada)'),
(16655, 'https://ror.org/05g65zz68', 'no_lang_code', 1, 'https://ror.org/05g65zz68 Conwal (United States)'),
(16656, 'https://ror.org/057pnws69', 'en', 1, 'https://ror.org/057pnws69 Centre for Planning and Economic Research'),
(16657, 'https://ror.org/04jmj5q32', 'no_lang_code', 1, 'https://ror.org/04jmj5q32 Clarity Biosolutions (United Kingdom)'),
(16658, 'https://ror.org/04ehq7g28', 'en', 1, 'https://ror.org/04ehq7g28 Clark County School District'),
(16659, 'https://ror.org/03tafg684', 'no_lang_code', 1, 'https://ror.org/03tafg684 Clark-MXR (United States)'),
(16660, 'https://ror.org/02trqpj90', 'sl', 1, 'https://ror.org/02trqpj90 Center za Kartografijo Favne in Flore Centre for Cartography of Fauna and Flora'),
(16661, 'https://ror.org/03ss97438', 'no_lang_code', 1, 'https://ror.org/03ss97438 CenterLine (Canada)'),
(16662, 'https://ror.org/05dpd3531', 'en', 1, 'https://ror.org/05dpd3531 Cooperative Educational Service Agencies'),
(16663, 'https://ror.org/03anw0996', 'no_lang_code', 1, 'https://ror.org/03anw0996 Coord3 Industries (Italy)'),
(16664, 'https://ror.org/033tgbx59', 'en', 1, 'https://ror.org/033tgbx59 The Centers'),
(16665, 'https://ror.org/00x9vvs05', 'no_lang_code', 1, 'https://ror.org/00x9vvs05 Dantec Dynamics (United Kingdom)'),
(16666, 'https://ror.org/05gexen20', 'en', 1, 'https://ror.org/05gexen20 Clatsop Community College'),
(16667, 'https://ror.org/034b4j008', 'no_lang_code', 1, 'https://ror.org/034b4j008 Centice (United States)'),
(16668, 'https://ror.org/040qe3166', 'no_lang_code', 1, 'https://ror.org/040qe3166 Class Editori (Italy)'),
(16669, 'https://ror.org/00e5y8987', 'no_lang_code', 1, 'https://ror.org/00e5y8987 CentMa (Germany)'),
(16670, 'https://ror.org/01h6t1j28', 'es', 1, 'https://ror.org/01h6t1j28 Centro de Referencia Estatal de Autonomía Personal y Ayudas Técnicas'),
(16671, 'https://ror.org/00htj2222', 'no_lang_code', 1, 'https://ror.org/00htj2222 Corac Group (United Kingdom)'),
(16672, 'https://ror.org/0258dhc73', 'en', 1, 'https://ror.org/0258dhc73 European Center for Nanostructured Polymers'),
(16673, 'https://ror.org/04absy687', 'no_lang_code', 1, 'https://ror.org/04absy687 DanTech (United Kingdom)'),
(16674, 'https://ror.org/05d30jn11', 'en', 1, 'https://ror.org/05d30jn11 Clean Air Action Group'),
(16675, 'https://ror.org/041g9dd66', 'it', 1, 'https://ror.org/041g9dd66 Centro Europeo Sviluppo Applicazioni Plastiche'),
(16676, 'https://ror.org/02ssz8y77', 'no_lang_code', 1, 'https://ror.org/02ssz8y77 Cleancarb (Luxembourg)'),
(16677, 'https://ror.org/03r51h682', 'no_lang_code', 1, 'https://ror.org/03r51h682 Clear Communication Associates'),
(16678, 'https://ror.org/05xmmkz88', 'no_lang_code', 1, 'https://ror.org/05xmmkz88 Clear Guide Medical (United States)'),
(16679, 'https://ror.org/03m233w73', 'no_lang_code', 1, 'https://ror.org/03m233w73 Michell Instruments (France)'),
(16680, 'https://ror.org/02qsexb35', 'no_lang_code', 1, 'https://ror.org/02qsexb35 Roshydromet'),
(16681, 'https://ror.org/003xs1762', 'en', 1, 'https://ror.org/003xs1762 Central Arizona College'),
(16682, 'https://ror.org/01fa9pv21', 'no_lang_code', 1, 'https://ror.org/01fa9pv21 Coretek (United States)'),
(16683, 'https://ror.org/037ch9n61', 'no_lang_code', 1, 'https://ror.org/037ch9n61 Collaborative Group (United States)'),
(16684, 'https://ror.org/01d061936', 'en', 1, 'https://ror.org/01d061936 Central City Concern'),
(16685, 'https://ror.org/049x3vp31', 'en', 1, 'https://ror.org/049x3vp31 Tuscaloosa City Schools'),
(16686, 'https://ror.org/01ghqfw43', 'no_lang_code', 1, 'https://ror.org/01ghqfw43 Coriant (Germany)'),
(16687, 'https://ror.org/02pfsqg38', 'en', 1, 'https://ror.org/02pfsqg38 Clearfield-Jefferson Drug and Alcohol Commission'),
(16688, 'https://ror.org/00dr9zd82', 'no_lang_code', 1, 'https://ror.org/00dr9zd82 Coris BioConcept (Belgium)'),
(16689, 'https://ror.org/05m615h78', 'en', 1, 'https://ror.org/05m615h78 Cork County Council'),
(16690, 'https://ror.org/00aaf6750', 'no_lang_code', 1, 'https://ror.org/00aaf6750 Cleopa (Germany)'),
(16691, 'https://ror.org/00a45e114', 'en', 1, 'https://ror.org/00a45e114 Virginia Community College System'),
(16692, 'https://ror.org/05nkc6r27', 'it', 1, 'https://ror.org/05nkc6r27 Centro Estero per l''Internazionalizzazione Piemonte Agency for Investments, Export and Tourism'),
(16693, 'https://ror.org/04t3kx162', 'no_lang_code', 1, 'https://ror.org/04t3kx162 Danya Institute'),
(16694, 'https://ror.org/01fhq9k82', 'no_lang_code', 1, 'https://ror.org/01fhq9k82 Daren Labs (Israel)'),
(16695, 'https://ror.org/03gtqhp76', 'en', 1, 'https://ror.org/03gtqhp76 Central Laboratory for Agricultural Climate المعمل المركزي للمناخ الزراعي'),
(16696, 'https://ror.org/04pgnnw35', 'no_lang_code', 1, 'https://ror.org/04pgnnw35 Darlow Smithson Productions (United Kingdom)'),
(16697, 'https://ror.org/04wbxh769', 'en', 1, 'https://ror.org/04wbxh769 Cornwall Council'),
(16698, 'https://ror.org/01x6q1934', 'en', 1, 'https://ror.org/01x6q1934 Cleveland Foundation'),
(16699, 'https://ror.org/048cmes41', 'en', 1, 'https://ror.org/048cmes41 Tempe Union High School District'),
(16700, 'https://ror.org/053833993', 'en', 1, 'https://ror.org/053833993 Institute of Optical Materials and Technologies Jordan Malinowski Институт по оптически материали и технологии “Акад. Йордан Малиновски”'),
(16701, 'https://ror.org/05b7n5w28', 'no_lang_code', 1, 'https://ror.org/05b7n5w28 Corpora Systems (United States)'),
(16702, 'https://ror.org/05d74m226', 'en', 1, 'https://ror.org/05d74m226 Central Laboratory of General Ecology Централна лаборатория по обща екология'),
(16703, 'https://ror.org/04e4qaj02', 'en', 1, 'https://ror.org/04e4qaj02 Central Maine Community College'),
(16704, 'https://ror.org/01c9mdb24', 'en', 1, 'https://ror.org/01c9mdb24 Cleveland Hearing & Speech Center'),
(16705, 'https://ror.org/04xh10z69', 'en', 1, 'https://ror.org/04xh10z69 Cleveland Municipal Court'),
(16706, 'https://ror.org/04jr7pd40', 'en', 1, 'https://ror.org/04jr7pd40 Cleveland State Community College'),
(16707, 'https://ror.org/03xdnx124', 'no_lang_code', 1, 'https://ror.org/03xdnx124 Cortexica (United Kingdom)'),
(16708, 'https://ror.org/05g0sd071', 'no_lang_code', 1, 'https://ror.org/05g0sd071 Central Research Laboratories (United Kingdom)'),
(16709, 'https://ror.org/01jt99c87', 'no_lang_code', 1, 'https://ror.org/01jt99c87 Clevercherry (United Kingdom)'),
(16710, 'https://ror.org/026sbed30', 'no_lang_code', 1, 'https://ror.org/026sbed30 Corvinno Technology Transfer'),
(16711, 'https://ror.org/01w5y4543', 'en', 1, 'https://ror.org/01w5y4543 CIMA Research Foundation'),
(16712, 'https://ror.org/017j5za44', 'no_lang_code', 1, 'https://ror.org/017j5za44 Data Management (Italy)'),
(16713, 'https://ror.org/05vepfk90', 'no_lang_code', 1, 'https://ror.org/05vepfk90 Cosmas (United States)'),
(16714, 'https://ror.org/04wrzsj34', 'no_lang_code', 1, 'https://ror.org/04wrzsj34 Data-Mate (Finland)'),
(16715, 'https://ror.org/00a61fv14', 'no_lang_code', 1, 'https://ror.org/00a61fv14 Data Numerica Institute (United States)'),
(16716, 'https://ror.org/03gjpwc41', 'no_lang_code', 1, 'https://ror.org/03gjpwc41 Cosmetic (Greece)'),
(16717, 'https://ror.org/04zr95r14', 'it', 1, 'https://ror.org/04zr95r14 Centro Italiano Materiali di Applicazione Calzaturiera'),
(16718, 'https://ror.org/015fn7y55', 'no_lang_code', 1, 'https://ror.org/015fn7y55 Costa Edutainment'),
(16719, 'https://ror.org/02rv6pz93', 'no_lang_code', 1, 'https://ror.org/02rv6pz93 PixelMill (United Kingdom)'),
(16720, 'https://ror.org/017hnns59', 'en', 1, 'https://ror.org/017hnns59 Couleecap'),
(16721, 'https://ror.org/02v7ms182', 'en', 1, 'https://ror.org/02v7ms182 Clifford Beers Clinic'),
(16722, 'https://ror.org/00k6bf447', 'en', 1, 'https://ror.org/00k6bf447 Clifford Chance'),
(16723, 'https://ror.org/001nqp226', 'pt', 1, 'https://ror.org/001nqp226 Centro Operativo e de Tecnologia de Regadio'),
(16724, 'https://ror.org/01vjbt677', 'no_lang_code', 1, 'https://ror.org/01vjbt677 ClimateWell (Sweden)'),
(16725, 'https://ror.org/03yc87g51', 'en', 1, 'https://ror.org/03yc87g51 Council for Basic Education'),
(16726, 'https://ror.org/03gd10562', 'no_lang_code', 1, 'https://ror.org/03gd10562 Converspeech (United States)'),
(16727, 'https://ror.org/01da5x211', 'en', 1, 'https://ror.org/01da5x211 Center for Economic Research and Environmental Strategy'),
(16728, 'https://ror.org/00ykv8m38', 'no_lang_code', 1, 'https://ror.org/00ykv8m38 CCL Biomedical (United States)'),
(16729, 'https://ror.org/04kcbt127', 'no_lang_code', 1, 'https://ror.org/04kcbt127 CEDEO (Italy)'),
(16730, 'https://ror.org/00t60rc39', 'no_lang_code', 1, 'https://ror.org/00t60rc39 Clinical Innovations (United States)'),
(16731, 'https://ror.org/04f6xma27', 'no_lang_code', 1, 'https://ror.org/04f6xma27 ClinInfo (France)'),
(16732, 'https://ror.org/0127sq784', 'en', 1, 'https://ror.org/0127sq784 Council of State Science Supervisors'),
(16733, 'https://ror.org/01bs5w571', 'en', 1, 'https://ror.org/01bs5w571 Council on Alcoholism and Drug Abuse'),
(16734, 'https://ror.org/00y3dr645', 'no_lang_code', 1, 'https://ror.org/00y3dr645 CLMS (United Kingdom)'),
(16735, 'https://ror.org/04fpakc82', 'en', 1, 'https://ror.org/04fpakc82 Cliff Funnell Associates'),
(16736, 'https://ror.org/021c40092', 'en', 1, 'https://ror.org/021c40092 Association of Directors of Environment, Economy, Planning and Transport'),
(16737, 'https://ror.org/04s7djw12', 'en', 1, 'https://ror.org/04s7djw12 Gateway ImpACT Coalition'),
(16738, 'https://ror.org/0418rrk10', 'no_lang_code', 1, 'https://ror.org/0418rrk10 Creative Action (United States)'),
(16739, 'https://ror.org/000px4v03', 'no_lang_code', 1, 'https://ror.org/000px4v03 Clopinet'),
(16740, 'https://ror.org/050sbwe70', 'no_lang_code', 1, 'https://ror.org/050sbwe70 Romus (Spain)'),
(16741, 'https://ror.org/002qtbf65', 'no_lang_code', 1, 'https://ror.org/002qtbf65 Federal Mogul (Sweden)'),
(16742, 'https://ror.org/03yberd21', 'no_lang_code', 1, 'https://ror.org/03yberd21 DataFlow/Alaska (United States)'),
(16743, 'https://ror.org/034k91b65', 'no_lang_code', 1, 'https://ror.org/034k91b65 CloudSigma (Switzerland)'),
(16744, 'https://ror.org/00wyejx41', 'pt', 1, 'https://ror.org/00wyejx41 Câmara Municipal de Beja'),
(16745, 'https://ror.org/05h5q0a22', 'no_lang_code', 1, 'https://ror.org/05h5q0a22 CLU (Italy)'),
(16746, 'https://ror.org/0099crw67', 'en', 1, 'https://ror.org/0099crw67 Courtesy Associates'),
(16747, 'https://ror.org/04997dd62', 'es', 1, 'https://ror.org/04997dd62 Basque Energy Cluster Cluster de Energía'),
(16748, 'https://ror.org/01q5ara80', 'pt', 1, 'https://ror.org/01q5ara80 Câmara Municipal do Porto'),
(16749, 'https://ror.org/00rke6v95', 'no_lang_code', 1, 'https://ror.org/00rke6v95 Covalab (France)'),
(16750, 'https://ror.org/03pcn5m15', 'no_lang_code', 1, 'https://ror.org/03pcn5m15 Datamat (Italy)'),
(16751, 'https://ror.org/04kte8x98', 'no_lang_code', 1, 'https://ror.org/04kte8x98 Datamed Systems Integration (Greece)'),
(16752, 'https://ror.org/04twxbp02', 'en', 1, 'https://ror.org/04twxbp02 Centro Ricerche Economico Sociali Economical and Social Research Centre'),
(16753, 'https://ror.org/009ghz987', 'no_lang_code', 1, 'https://ror.org/009ghz987 DataMED (Italy)'),
(16754, 'https://ror.org/05bjb2m32', 'no_lang_code', 1, 'https://ror.org/05bjb2m32 AAC Clyde Space (United Kingdom)'),
(16755, 'https://ror.org/00zxanb56', 'no_lang_code', 1, 'https://ror.org/00zxanb56 Beasy (United Kingdom)'),
(16756, 'https://ror.org/01tjxaw07', 'no_lang_code', 1, 'https://ror.org/01tjxaw07 Colorex Master Batch (Netherlands)'),
(16757, 'https://ror.org/01ygzf271', 'no_lang_code', 1, 'https://ror.org/01ygzf271 Covesion (United Kingdom)'),
(16758, 'https://ror.org/03adw6z89', 'no_lang_code', 1, 'https://ror.org/03adw6z89 Cox Analytical Systems (Sweden)'),
(16759, 'https://ror.org/05sej3528', 'en', 1, 'https://ror.org/05sej3528 Centraal Orgaan voor Kwaliteitsaangelegenheden in de Zuivel Netherlands Controlling Authority for Milk and Milk Products'),
(16760, 'https://ror.org/03hxyy911', 'en', 1, 'https://ror.org/03hxyy911 Day One'),
(16761, 'https://ror.org/0009gv735', 'it', 1, 'https://ror.org/0009gv735 Censis Foundation - Center for Social Studies Fondazione Censis - Centro Studi Investimenti Sociali'),
(16762, 'https://ror.org/024nbjg39', 'nl', 1, 'https://ror.org/024nbjg39 DCMR Milieudienst Rijnmond'),
(16763, 'https://ror.org/0213syy24', 'no_lang_code', 1, 'https://ror.org/0213syy24 Exide Technologies (United Kingdom)'),
(16764, 'https://ror.org/00qq34m93', 'no_lang_code', 1, 'https://ror.org/00qq34m93 Crabbe Consulting'),
(16765, 'https://ror.org/03hb5ht18', 'no_lang_code', 1, 'https://ror.org/03hb5ht18 Craftsman Tools (United Kingdom)'),
(16766, 'https://ror.org/0172ekt87', 'en', 1, 'https://ror.org/0172ekt87 Craftspace'),
(16767, 'https://ror.org/02ec2g004', 'en', 1, 'https://ror.org/02ec2g004 Cranbrook Institute of Science'),
(16768, 'https://ror.org/05c4ny054', 'no_lang_code', 1, 'https://ror.org/05c4ny054 De Neef Chemical Processing (Belgium)'),
(16769, 'https://ror.org/00n523x67', 'en', 1, 'https://ror.org/00n523x67 Crawley Borough Council'),
(16770, 'https://ror.org/02e10hc87', 'no_lang_code', 1, 'https://ror.org/02e10hc87 Centronic (United Kingdom)'),
(16771, 'https://ror.org/0462h0957', 'en', 1, 'https://ror.org/0462h0957 International Centre of Biodynamics'),
(16772, 'https://ror.org/02zqy3981', 'en', 1, 'https://ror.org/02zqy3981 Department for Digital, Culture, Media & Sport Yr Adran Ddigidol, Diwylliant, Cyfryngau a Chwaraeon'),
(16773, 'https://ror.org/007qfc639', 'no_lang_code', 1, 'https://ror.org/007qfc639 CNH Industrial (Belgium)'),
(16774, 'https://ror.org/0320bge18', 'en', 1, 'https://ror.org/0320bge18 Department for Education'),
(16775, 'https://ror.org/021bzfh90', 'en', 1, 'https://ror.org/021bzfh90 Deafinitely Theatre'),
(16776, 'https://ror.org/02pxet008', 'ro', 1, 'https://ror.org/02pxet008 Centrul pentru Promovarea Energiei Curate si Eficiente in Romania'),
(16777, 'https://ror.org/04ntvzq34', 'en', 1, 'https://ror.org/04ntvzq34 Hearing Health Foundation'),
(16778, 'https://ror.org/0092rcp79', 'en', 1, 'https://ror.org/0092rcp79 Dean Associates'),
(16779, 'https://ror.org/02jcwf181', 'en', 1, 'https://ror.org/02jcwf181 Creative Scotland'),
(16780, 'https://ror.org/01vx9hd92', 'no_lang_code', 1, 'https://ror.org/01vx9hd92 Creative Systems Engineering (Greece)'),
(16781, 'https://ror.org/00wh8js32', 'no_lang_code', 1, 'https://ror.org/00wh8js32 Dearman (United Kingdom)'),
(16782, 'https://ror.org/056ndgk74', 'no_lang_code', 1, 'https://ror.org/056ndgk74 Creme Global (Ireland)'),
(16783, 'https://ror.org/04hnb2h89', 'no_lang_code', 1, 'https://ror.org/04hnb2h89 Vinngroup (Sweden)'),
(16784, 'https://ror.org/00nry9f97', 'no_lang_code', 1, 'https://ror.org/00nry9f97 Gizelis Robotics (Greece)'),
(16785, 'https://ror.org/030fq6p50', 'en', 1, 'https://ror.org/030fq6p50 PreventionFirst'),
(16786, 'https://ror.org/05w1d3q28', 'en', 1, 'https://ror.org/05w1d3q28 Coastal Behavioral Healthcare'),
(16787, 'https://ror.org/05g2tt321', 'en', 1, 'https://ror.org/05g2tt321 Coastal Horizons Center'),
(16788, 'https://ror.org/05be7xx76', 'no_lang_code', 1, 'https://ror.org/05be7xx76 Sun Chemical (United Kingdom)'),
(16789, 'https://ror.org/02m388s04', 'en', 1, 'https://ror.org/02m388s04 Department of Atomic Energy परमाणु ऊर्जा विभाग அணு சக்தித்துறை ആണവോർജ്ജ വകുപ്പ്'),
(16790, 'https://ror.org/03wtwre51', 'en', 1, 'https://ror.org/03wtwre51 Decatur Memorial Hospital'),
(16791, 'https://ror.org/021y8w832', 'no_lang_code', 1, 'https://ror.org/021y8w832 Ceps (Czechia)'),
(16792, 'https://ror.org/00qv12s34', 'no_lang_code', 1, 'https://ror.org/00qv12s34 Coaxial Power Systems (United Kingdom)'),
(16793, 'https://ror.org/01k7x8h55', 'it', 1, 'https://ror.org/01k7x8h55 Centro Europa Ricerche'),
(16794, 'https://ror.org/01dmz5y14', 'en', 1, 'https://ror.org/01dmz5y14 Colby–Sawyer College'),
(16795, 'https://ror.org/05d0bdm05', 'en', 1, 'https://ror.org/05d0bdm05 Crimean Astrophysical Observatory Крымская астрофизическая обсерватория'),
(16796, 'https://ror.org/01efjsc63', 'no_lang_code', 1, 'https://ror.org/01efjsc63 Codamotion (United Kingdom)'),
(16797, 'https://ror.org/03g46y557', 'no_lang_code', 1, 'https://ror.org/03g46y557 Codeplay (United Kingdom)'),
(16798, 'https://ror.org/028gmb220', 'nl', 1, 'https://ror.org/028gmb220 Crisisplan'),
(16799, 'https://ror.org/0405v6d59', 'no_lang_code', 1, 'https://ror.org/0405v6d59 Elektrobit (Austria)'),
(16800, 'https://ror.org/0461v4y70', 'no_lang_code', 1, 'https://ror.org/0461v4y70 Codrico (Netherlands)'),
(16801, 'https://ror.org/02qswaj55', 'no_lang_code', 1, 'https://ror.org/02qswaj55 CeramOptec (Germany)'),
(16802, 'https://ror.org/05w59af50', 'no_lang_code', 1, 'https://ror.org/05w59af50 Deimos Engenharia (Portugal)'),
(16803, 'https://ror.org/01r2man76', 'en', 1, 'https://ror.org/01r2man76 DeKalb County Board of Health'),
(16804, 'https://ror.org/04h4j7e88', 'no_lang_code', 1, 'https://ror.org/04h4j7e88 Critical Systems Labs'),
(16805, 'https://ror.org/01jkxsd71', 'no_lang_code', 1, 'https://ror.org/01jkxsd71 Dekati (Finland)'),
(16806, 'https://ror.org/00n28tr38', 'no_lang_code', 1, 'https://ror.org/00n28tr38 Coexpair (Belgium)'),
(16807, 'https://ror.org/016j39z10', 'no_lang_code', 1, 'https://ror.org/016j39z10 Croda (United Kingdom)'),
(16808, 'https://ror.org/00pm11v55', 'no_lang_code', 1, 'https://ror.org/00pm11v55 Dekimo (Belgium)'),
(16809, 'https://ror.org/02b3ny291', 'no_lang_code', 1, 'https://ror.org/02b3ny291 Dekra (Germany)'),
(16810, 'https://ror.org/02azyxf26', 'no_lang_code', 1, 'https://ror.org/02azyxf26 TechnipFMC (France)'),
(16811, 'https://ror.org/0358hkb18', 'en', 1, 'https://ror.org/0358hkb18 Cross-Border Research Association'),
(16812, 'https://ror.org/05tyn2m51', 'no_lang_code', 1, 'https://ror.org/05tyn2m51 COG Analytics (United States)'),
(16813, 'https://ror.org/04jj71316', 'no_lang_code', 1, 'https://ror.org/04jj71316 Delap & Waller (Ireland)'),
(16814, 'https://ror.org/01dpfdz03', 'no_lang_code', 1, 'https://ror.org/01dpfdz03 CrossLang (Belgium)'),
(16815, 'https://ror.org/04sq8d504', 'no_lang_code', 1, 'https://ror.org/04sq8d504 Cogent Technology (United Kingdom)'),
(16816, 'https://ror.org/00f0rkp64', 'en', 1, 'https://ror.org/00f0rkp64 Delaware Coalition Against Domestic Violence'),
(16817, 'https://ror.org/0085sdj13', 'no_lang_code', 1, 'https://ror.org/0085sdj13 Cerebral Diagnostics (Canada)'),
(16818, 'https://ror.org/017cr6139', 'no_lang_code', 1, 'https://ror.org/017cr6139 Ceremed (United States)'),
(16819, 'https://ror.org/04hnb7242', 'no_lang_code', 1, 'https://ror.org/04hnb7242 Cognia (United States)'),
(16820, 'https://ror.org/03645fg60', 'no_lang_code', 1, 'https://ror.org/03645fg60 Ceres Power (United Kingdom)'),
(16821, 'https://ror.org/02mkmrt04', 'no_lang_code', 1, 'https://ror.org/02mkmrt04 Cryogel (France)'),
(16822, 'https://ror.org/02y899687', 'no_lang_code', 1, 'https://ror.org/02y899687 Cohera Medical (United States)'),
(16823, 'https://ror.org/03n7krn06', 'en', 1, 'https://ror.org/03n7krn06 Centro de Recursos Naturais, Ambiente e Sociedade Research Center for Natural Resources, Environment and Society'),
(16824, 'https://ror.org/04ae0v143', 'no_lang_code', 1, 'https://ror.org/04ae0v143 Delfoi (Finland)'),
(16825, 'https://ror.org/00ebjwr02', 'no_lang_code', 1, 'https://ror.org/00ebjwr02 New Hampshire Ball Bearings (Germany)'),
(16826, 'https://ror.org/0001tya14', 'no_lang_code', 1, 'https://ror.org/0001tya14 Crystal Research (United States)'),
(16827, 'https://ror.org/03khjbj61', 'en', 1, 'https://ror.org/03khjbj61 Cerritos College'),
(16828, 'https://ror.org/05rkgsm35', 'en', 1, 'https://ror.org/05rkgsm35 Delgado Community College'),
(16829, 'https://ror.org/05bzyzw86', 'en', 1, 'https://ror.org/05bzyzw86 Cimosa'),
(16830, 'https://ror.org/04hhzbh37', 'no_lang_code', 1, 'https://ror.org/04hhzbh37 CertiChem (United States)'),
(16831, 'https://ror.org/00c3ee991', 'no_lang_code', 1, 'https://ror.org/00c3ee991 Coherent (United Kingdom)'),
(16832, 'https://ror.org/033epb951', 'no_lang_code', 1, 'https://ror.org/033epb951 Powerway (United States)'),
(16833, 'https://ror.org/02tzpx885', 'no_lang_code', 1, 'https://ror.org/02tzpx885 CertiFlyer (Netherlands)'),
(16834, 'https://ror.org/01qke2p33', 'no_lang_code', 1, 'https://ror.org/01qke2p33 Deliverics (United Kingdom)'),
(16835, 'https://ror.org/03hwfnp11', 'en', 1, 'https://ror.org/03hwfnp11 Computer Emergency Response Team'),
(16836, 'https://ror.org/056ceb060', 'no_lang_code', 1, 'https://ror.org/056ceb060 Coillte (Ireland)'),
(16837, 'https://ror.org/05y742b63', 'no_lang_code', 1, 'https://ror.org/05y742b63 Delley Seeds and Plants (Switzerland)'),
(16838, 'https://ror.org/0256cmg21', 'no_lang_code', 1, 'https://ror.org/0256cmg21 Certus Technology (United Kingdom)'),
(16839, 'https://ror.org/05gxmbr45', 'no_lang_code', 1, 'https://ror.org/05gxmbr45 Crown Packaging (United Kingdom)'),
(16840, 'https://ror.org/00ebjse29', 'no_lang_code', 1, 'https://ror.org/00ebjse29 Delong Instruments (Czechia)'),
(16841, 'https://ror.org/02vvm5369', 'no_lang_code', 1, 'https://ror.org/02vvm5369 Aptiv (United Kingdom)'),
(16842, 'https://ror.org/04p90jr61', 'no_lang_code', 1, 'https://ror.org/04p90jr61 Delphinus Medical Technologies (United States)'),
(16843, 'https://ror.org/0562dax79', 'en', 1, 'https://ror.org/0562dax79 Colchester School District'),
(16844, 'https://ror.org/05afhka30', 'no_lang_code', 1, 'https://ror.org/05afhka30 Delsys (United States)'),
(16845, 'https://ror.org/057afqq06', 'en', 1, 'https://ror.org/057afqq06 Delta College'),
(16846, 'https://ror.org/02epzsg75', 'no_lang_code', 1, 'https://ror.org/02epzsg75 Domologic (Germany)'),
(16847, 'https://ror.org/0189swh59', 'no_lang_code', 1, 'https://ror.org/0189swh59 CSTI Acoustics (United States)'),
(16848, 'https://ror.org/04erezm33', 'no_lang_code', 1, 'https://ror.org/04erezm33 Dompé (Italy)'),
(16849, 'https://ror.org/05m21we88', 'no_lang_code', 1, 'https://ror.org/05m21we88 Delta Extinguishers (Belgium)'),
(16850, 'https://ror.org/02jfa4f02', 'no_lang_code', 1, 'https://ror.org/02jfa4f02 Collagen Medical (United States)'),
(16851, 'https://ror.org/04kn99c11', 'en', 1, 'https://ror.org/04kn99c11 Domus Academy'),
(16852, 'https://ror.org/03ewz3a13', 'no_lang_code', 1, 'https://ror.org/03ewz3a13 Delta Technologies Sud Ouest (France)'),
(16853, 'https://ror.org/04jp86b51', 'no_lang_code', 1, 'https://ror.org/04jp86b51 Delta T Devices (United Kingdom)'),
(16854, 'https://ror.org/03ak9f780', 'en', 1, 'https://ror.org/03ak9f780 Harrington Cancer Center'),
(16855, 'https://ror.org/031hbfw38', 'no_lang_code', 1, 'https://ror.org/031hbfw38 Deltagen (United States)'),
(16856, 'https://ror.org/05td63169', 'no_lang_code', 1, 'https://ror.org/05td63169 Deltatec (Belgium)'),
(16857, 'https://ror.org/00xbe3815', 'no_lang_code', 1, 'https://ror.org/00xbe3815 DEMO Consultants'),
(16858, 'https://ror.org/01wsx6q69', 'en', 1, 'https://ror.org/01wsx6q69 Department of the Environment'),
(16859, 'https://ror.org/001b0ke69', 'en', 1, 'https://ror.org/001b0ke69 Democenter Fondazione Democenter'),
(16860, 'https://ror.org/01x1yxa13', 'no_lang_code', 1, 'https://ror.org/01x1yxa13 Hungarian Central Statistical Office'),
(16861, 'https://ror.org/009mt7c73', 'no_lang_code', 1, 'https://ror.org/009mt7c73 Demuris (United Kingdom)'),
(16862, 'https://ror.org/032tx7v10', 'en', 1, 'https://ror.org/032tx7v10 College of Saint Elizabeth'),
(16863, 'https://ror.org/01p3wmk50', 'en', 1, 'https://ror.org/01p3wmk50 College of Saint Mary'),
(16864, 'https://ror.org/012ddpg93', 'no_lang_code', 1, 'https://ror.org/012ddpg93 Denkstatt Bulgaria (Bulgaria)'),
(16865, 'https://ror.org/03wq0ts29', 'en', 1, 'https://ror.org/03wq0ts29 College of the Redwoods'),
(16866, 'https://ror.org/00m2wbw87', 'no_lang_code', 1, 'https://ror.org/00m2wbw87 Colligo (Canada)'),
(16867, 'https://ror.org/05xtrfa17', 'no_lang_code', 1, 'https://ror.org/05xtrfa17 Denso (Germany)'),
(16868, 'https://ror.org/04arpqr50', 'en', 1, 'https://ror.org/04arpqr50 Matanuska-Susitna Borough School District'),
(16869, 'https://ror.org/0466y0231', 'no_lang_code', 1, 'https://ror.org/0466y0231 Competitive Design Network (Spain)'),
(16870, 'https://ror.org/03rw5mv34', 'en', 1, 'https://ror.org/03rw5mv34 Colorado Coalition for the Homeless'),
(16871, 'https://ror.org/02r8sxg18', 'en', 1, 'https://ror.org/02r8sxg18 Colorado Neurological Institute'),
(16872, 'https://ror.org/024qs1y51', 'no_lang_code', 1, 'https://ror.org/024qs1y51 Rio Mobility (United States)'),
(16873, 'https://ror.org/000fdtb56', 'no_lang_code', 1, 'https://ror.org/000fdtb56 Corporate Communications Group (United States)'),
(16874, 'https://ror.org/02ff6cq09', 'no_lang_code', 1, 'https://ror.org/02ff6cq09 Crystallume (United States)'),
(16875, 'https://ror.org/042jr0j26', 'en', 1, 'https://ror.org/042jr0j26 Derby City Council'),
(16876, 'https://ror.org/04jmejg35', 'no_lang_code', 1, 'https://ror.org/04jmejg35 Dacord (United Kingdom)'),
(16877, 'https://ror.org/0334h0b13', 'no_lang_code', 1, 'https://ror.org/0334h0b13 Columbus NanoWorks (United States)'),
(16878, 'https://ror.org/00dq07t65', 'de', 1, 'https://ror.org/00dq07t65 Institut für Forschung und Transfer'),
(16879, 'https://ror.org/03b8hyb18', 'no_lang_code', 1, 'https://ror.org/03b8hyb18 Columbus Superconductors (Italy)'),
(16880, 'https://ror.org/053hexc75', 'no_lang_code', 1, 'https://ror.org/053hexc75 CS Communication & Systèmes (France)'),
(16881, 'https://ror.org/01mx9ck98', 'no_lang_code', 1, 'https://ror.org/01mx9ck98 Dotsoft (Greece)'),
(16882, 'https://ror.org/03y255h89', 'en', 1, 'https://ror.org/03y255h89 Washington Township Fire Department'),
(16883, 'https://ror.org/03mam1w77', 'no_lang_code', 1, 'https://ror.org/03mam1w77 CS Transport (France)'),
(16884, 'https://ror.org/05n7a7b34', 'no_lang_code', 1, 'https://ror.org/05n7a7b34 Moog CSA Engineering (United States)'),
(16885, 'https://ror.org/021sswk79', 'no_lang_code', 1, 'https://ror.org/021sswk79 ConStat'),
(16886, 'https://ror.org/05h0qhk33', 'no_lang_code', 1, 'https://ror.org/05h0qhk33 Double Helix (United States)'),
(16887, 'https://ror.org/00yrwcc77', 'no_lang_code', 1, 'https://ror.org/00yrwcc77 Double Delta (Hungary)'),
(16888, 'https://ror.org/045xce929', 'no_lang_code', 1, 'https://ror.org/045xce929 Double S Instructional Systems'),
(16889, 'https://ror.org/00wdz4w44', 'en', 1, 'https://ror.org/00wdz4w44 Derry City Council'),
(16890, 'https://ror.org/0157qrq16', 'no_lang_code', 1, 'https://ror.org/0157qrq16 Comelz (Italy)'),
(16891, 'https://ror.org/00n89wj26', 'no_lang_code', 1, 'https://ror.org/00n89wj26 Comexi Group (Spain)'),
(16892, 'https://ror.org/04s181d41', 'it', 1, 'https://ror.org/04s181d41 Ev-K2-Cnr'),
(16893, 'https://ror.org/05cpjy057', 'no_lang_code', 1, 'https://ror.org/05cpjy057 Edelweiss Connect (Switzerland)'),
(16894, 'https://ror.org/046nv5659', 'no_lang_code', 1, 'https://ror.org/046nv5659 Dsan Research Solutions'),
(16895, 'https://ror.org/004w4kw49', 'it', 1, 'https://ror.org/004w4kw49 Comitato Termotecnico Italiano Energia e Ambiente'),
(16896, 'https://ror.org/04ewcb322', 'fr', 1, 'https://ror.org/04ewcb322 Réseau pour la Transition Énergétique'),
(16897, 'https://ror.org/01ag4vf25', 'no_lang_code', 1, 'https://ror.org/01ag4vf25 Anton Paar (Switzerland)'),
(16898, 'https://ror.org/0326f1w25', 'en', 1, 'https://ror.org/0326f1w25 Douglas County Health Department'),
(16899, 'https://ror.org/031s7jq69', 'de', 1, 'https://ror.org/031s7jq69 Leonardo Büro Sachsen Anhalt'),
(16900, 'https://ror.org/00yz0gw97', 'en', 1, 'https://ror.org/00yz0gw97 Design Business Association'),
(16901, 'https://ror.org/00cxhe745', 'no_lang_code', 1, 'https://ror.org/00cxhe745 Design Science (United States)'),
(16902, 'https://ror.org/025ekwj97', 'no_lang_code', 1, 'https://ror.org/025ekwj97 Element Materials Technology (Sweden)'),
(16903, 'https://ror.org/01pqwyc94', 'en', 1, 'https://ror.org/01pqwyc94 Danish Film Institute'),
(16904, 'https://ror.org/049px0x49', 'no_lang_code', 1, 'https://ror.org/049px0x49 Dow Chemical (Netherlands)'),
(16905, 'https://ror.org/03yhnhz23', 'pt', 1, 'https://ror.org/03yhnhz23 Centro Interuniversitário de História das Ciências e da Tecnologia'),
(16906, 'https://ror.org/04b29ff96', 'no_lang_code', 1, 'https://ror.org/04b29ff96 Energetiq Technology (United States)'),
(16907, 'https://ror.org/01337fb30', 'no_lang_code', 1, 'https://ror.org/01337fb30 Dow Chemical (Belgium)'),
(16908, 'https://ror.org/028heaq12', 'no_lang_code', 1, 'https://ror.org/028heaq12 Dow Chemical (United Kingdom)'),
(16909, 'https://ror.org/00zdkew04', 'no_lang_code', 1, 'https://ror.org/00zdkew04 Bausch Health (United States)'),
(16910, 'https://ror.org/02wg88z59', 'no_lang_code', 1, 'https://ror.org/02wg88z59 Veolia (Italy)'),
(16911, 'https://ror.org/02y2yt761', 'no_lang_code', 1, 'https://ror.org/02y2yt761 Container Speditions und Transportgesellschaft (Germany)'),
(16912, 'https://ror.org/057r81391', 'no_lang_code', 1, 'https://ror.org/057r81391 Energidalen (Sweden)'),
(16913, 'https://ror.org/0400w6m91', 'no_lang_code', 1, 'https://ror.org/0400w6m91 Basler & Hofmann (Switzerland)'),
(16914, 'https://ror.org/0525npv05', 'no_lang_code', 1, 'https://ror.org/0525npv05 Dr Matzat & Co (Germany)'),
(16915, 'https://ror.org/0476zhn05', 'no_lang_code', 1, 'https://ror.org/0476zhn05 Lakka (Finland)'),
(16916, 'https://ror.org/04nkrm103', 'no_lang_code', 1, 'https://ror.org/04nkrm103 Energrid (Italy)'),
(16917, 'https://ror.org/01ctq0573', 'de', 1, 'https://ror.org/01ctq0573 Kulturrat Österreich'),
(16918, 'https://ror.org/01sw63p34', 'en', 1, 'https://ror.org/01sw63p34 Energy Agency of Plovdiv'),
(16919, 'https://ror.org/00e1jkn44', 'cs', 1, 'https://ror.org/00e1jkn44 Energy Centre Ceske Budejovice'),
(16920, 'https://ror.org/05apy4h12', 'no_lang_code', 1, 'https://ror.org/05apy4h12 Energy Consulting Network (Denmark)'),
(16921, 'https://ror.org/01yvyth17', 'no_lang_code', 1, 'https://ror.org/01yvyth17 Biomer (Germany)'),
(16922, 'https://ror.org/04931ty90', 'en', 1, 'https://ror.org/04931ty90 Detroit Recovery Project'),
(16923, 'https://ror.org/04mg5jx38', 'en', 1, 'https://ror.org/04mg5jx38 Dr Williams''s Library'),
(16924, 'https://ror.org/016nn6y69', 'en', 1, 'https://ror.org/016nn6y69 Carinthian Tech Research'),
(16925, 'https://ror.org/024t72v35', 'fr', 1, 'https://ror.org/024t72v35 Terre des Sciences'),
(16926, 'https://ror.org/04rkfpx64', 'en', 1, 'https://ror.org/04rkfpx64 Center for Community Health Education Research and Service'),
(16927, 'https://ror.org/05dxmfh27', 'en', 1, 'https://ror.org/05dxmfh27 Energy System Analysis and Planning'),
(16928, 'https://ror.org/05c2nqw49', 'no_lang_code', 1, 'https://ror.org/05c2nqw49 Deutsche Energy Agency (Germany)'),
(16929, 'https://ror.org/04s3t0375', 'no_lang_code', 1, 'https://ror.org/04s3t0375 CTVC (United Kingdom)'),
(16930, 'https://ror.org/01n3jdx02', 'no_lang_code', 1, 'https://ror.org/01n3jdx02 Dr. Hönle (Germany)'),
(16931, 'https://ror.org/02crf0z25', 'no_lang_code', 1, 'https://ror.org/02crf0z25 Herry Consult (Austria)'),
(16932, 'https://ror.org/05vjt2s15', 'no_lang_code', 1, 'https://ror.org/05vjt2s15 EnerSearch'),
(16933, 'https://ror.org/05wtnrd36', 'no_lang_code', 1, 'https://ror.org/05wtnrd36 Dr. Schär (Italy)'),
(16934, 'https://ror.org/04mpq0910', 'no_lang_code', 1, 'https://ror.org/04mpq0910 RTD Services (Austria)'),
(16935, 'https://ror.org/0425phg59', 'en', 1, 'https://ror.org/0425phg59 Cuesta College'),
(16936, 'https://ror.org/052hb4r33', 'no_lang_code', 1, 'https://ror.org/052hb4r33 EnerTech (United States)'),
(16937, 'https://ror.org/01jbqg059', 'no_lang_code', 1, 'https://ror.org/01jbqg059 Enervana Technologies (United States)'),
(16938, 'https://ror.org/0229g2g56', 'no_lang_code', 1, 'https://ror.org/0229g2g56 MVV Energie (Germany) MVV Energy'),
(16939, 'https://ror.org/01krfz017', 'en', 1, 'https://ror.org/01krfz017 Engage'),
(16940, 'https://ror.org/05kqy9x67', 'no_lang_code', 1, 'https://ror.org/05kqy9x67 Engage (Germany)'),
(16941, 'https://ror.org/00sgajx84', 'no_lang_code', 1, 'https://ror.org/00sgajx84 BASF (Netherlands)'),
(16942, 'https://ror.org/052bszm02', 'en', 1, 'https://ror.org/052bszm02 Culex Environmental'),
(16943, 'https://ror.org/001jxpk05', 'de', 1, 'https://ror.org/001jxpk05 Deutsche Gesellschaft für Galvano- und Oberflächentechnik'),
(16944, 'https://ror.org/05p90pk86', 'no_lang_code', 1, 'https://ror.org/05p90pk86 Culgi (Netherlands)'),
(16945, 'https://ror.org/010b2bg46', 'no_lang_code', 1, 'https://ror.org/010b2bg46 Culminatum Innovation (Finland)'),
(16946, 'https://ror.org/006g3h191', 'no_lang_code', 1, 'https://ror.org/006g3h191 EngeniusMicro (United States)'),
(16947, 'https://ror.org/0415p9s42', 'no_lang_code', 1, 'https://ror.org/0415p9s42 Dräger (Germany)'),
(16948, 'https://ror.org/05ssz5085', 'no_lang_code', 1, 'https://ror.org/05ssz5085 Materials Technology (United Kingdom)'),
(16949, 'https://ror.org/006wz7f31', 'no_lang_code', 1, 'https://ror.org/006wz7f31 Engineering Acoustics (United States)'),
(16950, 'https://ror.org/04rghc237', 'en', 1, 'https://ror.org/04rghc237 Dream of Hattiesburg'),
(16951, 'https://ror.org/02q6x7761', 'no_lang_code', 1, 'https://ror.org/02q6x7761 Dresden Elektronik Ingenieurtechnik (Germany)'),
(16952, 'https://ror.org/04pyzzc05', 'en', 1, 'https://ror.org/04pyzzc05 Bacon Street'),
(16953, 'https://ror.org/04g1y2z78', 'no_lang_code', 1, 'https://ror.org/04g1y2z78 Engineering Arts (United States)'),
(16954, 'https://ror.org/05mq2xn70', 'no_lang_code', 1, 'https://ror.org/05mq2xn70 Drug Prevention Resources'),
(16955, 'https://ror.org/02y3dtg29', 'en', 1, 'https://ror.org/02y3dtg29 Deutsches Rotes Kreuz German Red Cross'),
(16956, 'https://ror.org/01611ny13', 'no_lang_code', 1, 'https://ror.org/01611ny13 EuroPhoton (Germany)'),
(16957, 'https://ror.org/01srz8p41', 'no_lang_code', 1, 'https://ror.org/01srz8p41 DRVision Technologies (United States)'),
(16958, 'https://ror.org/043rf9d68', 'no_lang_code', 1, 'https://ror.org/043rf9d68 Europlasma (Belgium)'),
(16959, 'https://ror.org/03stcpv37', 'no_lang_code', 1, 'https://ror.org/03stcpv37 Cummins (United Kingdom)'),
(16960, 'https://ror.org/023aczp72', 'no_lang_code', 1, 'https://ror.org/023aczp72 Cup 2000 (Italy)'),
(16961, 'https://ror.org/01y9v7727', 'no_lang_code', 1, 'https://ror.org/01y9v7727 Europliroforissi'),
(16962, 'https://ror.org/05c2ase32', 'no_lang_code', 1, 'https://ror.org/05c2ase32 Dynamic Systems Analysis (Canada)'),
(16963, 'https://ror.org/04hayh169', 'no_lang_code', 1, 'https://ror.org/04hayh169 DSI Informationstechnik (Germany)'),
(16964, 'https://ror.org/014fxpb13', 'no_lang_code', 1, 'https://ror.org/014fxpb13 Engineering Data Management'),
(16965, 'https://ror.org/02s5qve69', 'no_lang_code', 1, 'https://ror.org/02s5qve69 Rogers (Germany)'),
(16966, 'https://ror.org/03h41j949', 'no_lang_code', 1, 'https://ror.org/03h41j949 Cureveda (United States)'),
(16967, 'https://ror.org/0441w6k76', 'no_lang_code', 1, 'https://ror.org/0441w6k76 DTK Electronics (Bulgaria)'),
(16968, 'https://ror.org/040xsmt05', 'en', 1, 'https://ror.org/040xsmt05 Coating Development Coating Développement'),
(16969, 'https://ror.org/02tte3f94', 'en', 1, 'https://ror.org/02tte3f94 Engineering Employers'' Federation'),
(16970, 'https://ror.org/038147z68', 'no_lang_code', 1, 'https://ror.org/038147z68 Promotora de Informaciones (Spain)'),
(16971, 'https://ror.org/01fr56s57', 'no_lang_code', 1, 'https://ror.org/01fr56s57 Curious Directive (United Kingdom)'),
(16972, 'https://ror.org/04jdd6f04', 'no_lang_code', 1, 'https://ror.org/04jdd6f04 Curtumes Aveneda (Portugal)'),
(16973, 'https://ror.org/00zvn3z28', 'no_lang_code', 1, 'https://ror.org/00zvn3z28 Engineering Link (Canada)'),
(16974, 'https://ror.org/01yz68468', 'no_lang_code', 1, 'https://ror.org/01yz68468 Euroscreen (Belgium)'),
(16975, 'https://ror.org/03et11k80', 'no_lang_code', 1, 'https://ror.org/03et11k80 Eurosolare (Italy)'),
(16976, 'https://ror.org/02zvx4k42', 'no_lang_code', 1, 'https://ror.org/02zvx4k42 Eurospider Information Technology (Switzerland)'),
(16977, 'https://ror.org/035dh8y26', 'no_lang_code', 1, 'https://ror.org/035dh8y26 Developmental Technologies (United States)'),
(16978, 'https://ror.org/05k5b7r52', 'no_lang_code', 1, 'https://ror.org/05k5b7r52 Eurospital (Italy)'),
(16979, 'https://ror.org/00gk1z123', 'no_lang_code', 1, 'https://ror.org/00gk1z123 Euskaltel (Spain)'),
(16980, 'https://ror.org/02tga4733', 'no_lang_code', 1, 'https://ror.org/02tga4733 DTV Consultants (Netherlands)'),
(16981, 'https://ror.org/02sbf1347', 'en', 1, 'https://ror.org/02sbf1347 Devon County Council'),
(16982, 'https://ror.org/026mcys63', 'no_lang_code', 1, 'https://ror.org/026mcys63 Thinkpath Engineering Services (Canada)'),
(16983, 'https://ror.org/03mpcp089', 'no_lang_code', 1, 'https://ror.org/03mpcp089 DeWitt Tool (United States)'),
(16984, 'https://ror.org/05j9fmg63', 'no_lang_code', 1, 'https://ror.org/05j9fmg63 DuPont (Spain)'),
(16985, 'https://ror.org/03zd0v772', 'no_lang_code', 1, 'https://ror.org/03zd0v772 Cv Cryptovision (Germany)'),
(16986, 'https://ror.org/00trkpm41', 'no_lang_code', 1, 'https://ror.org/00trkpm41 Engineering Software Research and Development (United States)'),
(16987, 'https://ror.org/03ngsbp86', 'en', 1, 'https://ror.org/03ngsbp86 Dubuque County Safe Youth Coalition'),
(16988, 'https://ror.org/04k8qhz96', 'no_lang_code', 1, 'https://ror.org/04k8qhz96 EnginSoft (United Kingdom)'),
(16989, 'https://ror.org/04sj6pm22', 'no_lang_code', 1, 'https://ror.org/04sj6pm22 Volkswagen Group (Italy)'),
(16990, 'https://ror.org/00tha2n31', 'no_lang_code', 1, 'https://ror.org/00tha2n31 Engitech (Cyprus)'),
(16991, 'https://ror.org/049wyn804', 'no_lang_code', 1, 'https://ror.org/049wyn804 Data Fusion Research Center'),
(16992, 'https://ror.org/009n13a08', 'no_lang_code', 1, 'https://ror.org/009n13a08 Dg Technology Service'),
(16993, 'https://ror.org/0414m8677', 'no_lang_code', 1, 'https://ror.org/0414m8677 Duferco (Belgium)'),
(16994, 'https://ror.org/01x0pmb79', 'en', 1, 'https://ror.org/01x0pmb79 Washington Center for Psychoanalysis'),
(16995, 'https://ror.org/03g83ha52', 'en', 1, 'https://ror.org/03g83ha52 Ukrainian Anti Cancer Institute Ukrainisches Institut für Krebsbekämpfung'),
(16996, 'https://ror.org/041yv5j17', 'en', 1, 'https://ror.org/041yv5j17 Washington School for the Deaf'),
(16997, 'https://ror.org/03gb01811', 'en', 1, 'https://ror.org/03gb01811 Washington State Department of Ecology'),
(16998, 'https://ror.org/017t4sb47', 'en', 1, 'https://ror.org/017t4sb47 Wright Institute'),
(16999, 'https://ror.org/01xeyq157', 'no_lang_code', 1, 'https://ror.org/01xeyq157 DH Consultancy BVBA (Belgium)'),
(17000, 'https://ror.org/03cjp2c87', 'en', 1, 'https://ror.org/03cjp2c87 Glasgow Victoria Infirmary'),
(17001, 'https://ror.org/00k3gyk15', 'no_lang_code', 1, 'https://ror.org/00k3gyk15 China National Pharmaceutical Group Corporation (China) 中国医药集团总公司'),
(17002, 'https://ror.org/005ynf375', 'en', 1, 'https://ror.org/005ynf375 Victorian Infectious Diseases Reference Laboratory'),
(17003, 'https://ror.org/01h8xv021', 'no_lang_code', 1, 'https://ror.org/01h8xv021 Waters (United States)'),
(17004, 'https://ror.org/05bacvf60', 'en', 1, 'https://ror.org/05bacvf60 Watson Clinic'),
(17005, 'https://ror.org/0377kyv52', 'en', 1, 'https://ror.org/0377kyv52 United Lincolnshire Hospitals NHS Trust'),
(17006, 'https://ror.org/01kr2nz80', 'en', 1, 'https://ror.org/01kr2nz80 Canterbury Medical Research Foundation'),
(17007, 'https://ror.org/05vcy2476', 'it', 1, 'https://ror.org/05vcy2476 Fondazione Vincenzo Pansadoro Vincenzo Pansadoro Foundation'),
(17008, 'https://ror.org/00tzssk35', 'no_lang_code', 1, 'https://ror.org/00tzssk35 Celsion (United States)'),
(17009, 'https://ror.org/02t83f864', 'en', 1, 'https://ror.org/02t83f864 Wessex Regional Genetics Laboratory'),
(17010, 'https://ror.org/05ntqkc30', 'en', 1, 'https://ror.org/05ntqkc30 Velindre NHS Trust'),
(17011, 'https://ror.org/03dh12p89', 'en', 1, 'https://ror.org/03dh12p89 Perinatal Institute'),
(17012, 'https://ror.org/02sxpcf54', 'en', 1, 'https://ror.org/02sxpcf54 J. Iverson Riddle Developmental Center'),
(17013, 'https://ror.org/04h6nb532', 'no_lang_code', 1, 'https://ror.org/04h6nb532 Cyberce (Greece)'),
(17014, 'https://ror.org/04hs88j18', 'en', 1, 'https://ror.org/04hs88j18 Yale Griffin Prevention Research Center'),
(17015, 'https://ror.org/01sfj3073', 'no_lang_code', 1, 'https://ror.org/01sfj3073 Cyberlightning (Finland)'),
(17016, 'https://ror.org/05ermrg42', 'en', 1, 'https://ror.org/05ermrg42 Vavilov Institute of General Genetics Федеральное государственное бюджетное учреждение науки Институт общей генетики им. Н.И. Вавилова Российской академии наук'),
(17017, 'https://ror.org/044t8ez79', 'no_lang_code', 1, 'https://ror.org/044t8ez79 Cybermoor (United Kingdom)'),
(17018, 'https://ror.org/04t4e0r52', 'no_lang_code', 1, 'https://ror.org/04t4e0r52 Yamasa Corporation (Japan) ヤマサ醤油'),
(17019, 'https://ror.org/00qd7ns71', 'en', 1, 'https://ror.org/00qd7ns71 ViteroRetinal Surgery'),
(17020, 'https://ror.org/01e5x8t10', 'en', 1, 'https://ror.org/01e5x8t10 Vision Cooperative Research Centre'),
(17021, 'https://ror.org/050g4m073', 'no_lang_code', 1, 'https://ror.org/050g4m073 Crest Nicholson (United Kingdom)'),
(17022, 'https://ror.org/01cn3f357', 'no_lang_code', 1, 'https://ror.org/01cn3f357 Visioncare Research'),
(17023, 'https://ror.org/04zxtsh93', 'en', 1, 'https://ror.org/04zxtsh93 Wichita Clinic'),
(17024, 'https://ror.org/02ssn3c97', 'en', 1, 'https://ror.org/02ssn3c97 York College of Pennsylvania'),
(17025, 'https://ror.org/03kt5jr23', 'en', 1, 'https://ror.org/03kt5jr23 Department of Health and Social Affairs'),
(17026, 'https://ror.org/03kjp3580', 'pt', 1, 'https://ror.org/03kjp3580 Gabinete de Estudos Olisiponenses'),
(17027, 'https://ror.org/04v999613', 'en', 1, 'https://ror.org/04v999613 Wingate Institute מכון וינגייט'),
(17028, 'https://ror.org/01syxq867', 'en', 1, 'https://ror.org/01syxq867 William Thomas Grant Foundation'),
(17029, 'https://ror.org/01baeyq79', 'en', 1, 'https://ror.org/01baeyq79 William Alanson White Institute'),
(17030, 'https://ror.org/03cnry959', 'no_lang_code', 1, 'https://ror.org/03cnry959 European & International Federation of Natural Stone Industries Federation Europeenne & Internationale des Industries de la Pierre Naturelle'),
(17031, 'https://ror.org/04pk7g992', 'en', 1, 'https://ror.org/04pk7g992 Dorset Green Technology Park'),
(17032, 'https://ror.org/032685859', 'en', 1, 'https://ror.org/032685859 Vitiligo and Pigmentation Institute of Southern California'),
(17033, 'https://ror.org/027stek86', 'fr', 1, 'https://ror.org/027stek86 Fédération de la Plasturgie'),
(17034, 'https://ror.org/02x4zab94', 'en', 1, 'https://ror.org/02x4zab94 Federation of European Publishers'),
(17035, 'https://ror.org/03c22w876', 'en', 1, 'https://ror.org/03c22w876 Vittal Mallya Scientific Research Foundation'),
(17036, 'https://ror.org/03j2pv534', 'en', 1, 'https://ror.org/03j2pv534 YR Gaitonde Centre for AIDS Research and Education'),
(17037, 'https://ror.org/05tvxb796', 'fr', 1, 'https://ror.org/05tvxb796 Fédération des Parcs Naturels Régionaux'),
(17038, 'https://ror.org/05dpxhh36', 'ms', 1, 'https://ror.org/05dpxhh36 Institut Penyelidikan Veterinar'),
(17039, 'https://ror.org/04hf8j803', 'en', 1, 'https://ror.org/04hf8j803 European Federation of Nurses Associations'),
(17040, 'https://ror.org/054hm6j14', 'en', 1, 'https://ror.org/054hm6j14 Vollum Institute'),
(17041, 'https://ror.org/01mw2b749', 'no_lang_code', 1, 'https://ror.org/01mw2b749 Dassault Systèmes (Germany)'),
(17042, 'https://ror.org/00m9r8n64', 'en', 1, 'https://ror.org/00m9r8n64 Federation of American Scientists'),
(17043, 'https://ror.org/03zh9hp36', 'en', 1, 'https://ror.org/03zh9hp36 William S. Hall Psychiatric Institute'),
(17044, 'https://ror.org/048abfv28', 'en', 1, 'https://ror.org/048abfv28 Federation of European Motorcyclists Associations'),
(17045, 'https://ror.org/006q46c69', 'sr', 1, 'https://ror.org/006q46c69 Zdravstveni centar'),
(17046, 'https://ror.org/02h8ngt70', 'en', 1, 'https://ror.org/02h8ngt70 Institutul National Victor Babes Victor Babes Institute'),
(17047, 'https://ror.org/03gtcr185', 'en', 1, 'https://ror.org/03gtcr185 W.K. Kellogg Foundation'),
(17048, 'https://ror.org/0524j0t30', 'en', 1, 'https://ror.org/0524j0t30 National Federation of Families for Children''s Mental Health'),
(17049, 'https://ror.org/01tk40402', 'en', 1, 'https://ror.org/01tk40402 Federation of Families of South Carolina'),
(17050, 'https://ror.org/03cjt8a33', 'en', 1, 'https://ror.org/03cjt8a33 Wolfe Eye Clinic'),
(17051, 'https://ror.org/02qxyh493', 'en', 1, 'https://ror.org/02qxyh493 Wakefield Orthopaedic Clinic'),
(17052, 'https://ror.org/00vx6je85', 'no_lang_code', 1, 'https://ror.org/00vx6je85 Zenyaku Kogyo (Japan) 全薬工業株式会社'),
(17053, 'https://ror.org/01x29t295', 'de', 1, 'https://ror.org/01x29t295 Vivantes Klinikum'),
(17054, 'https://ror.org/01s676r39', 'en', 1, 'https://ror.org/01s676r39 Hellenic Federation of Enterprises'),
(17055, 'https://ror.org/04bdtkb86', 'en', 1, 'https://ror.org/04bdtkb86 Federation of Greek Mariculture'),
(17056, 'https://ror.org/04anj6w22', 'en', 1, 'https://ror.org/04anj6w22 Federation of Industries of Northern Greece'),
(17057, 'https://ror.org/03f015z81', 'en', 1, 'https://ror.org/03f015z81 Zhejiang Center for Disease Control and Prevention 浙江省疾病预防控制中心'),
(17058, 'https://ror.org/05vekkk95', 'no_lang_code', 1, 'https://ror.org/05vekkk95 Duffy Engineering and Associates (United States)'),
(17059, 'https://ror.org/04h92v005', 'en', 1, 'https://ror.org/04h92v005 Waldo County Healthcare'),
(17060, 'https://ror.org/03awk9p59', 'en', 1, 'https://ror.org/03awk9p59 Wallace Laboratories'),
(17061, 'https://ror.org/04pg25v93', 'no_lang_code', 1, 'https://ror.org/04pg25v93 Englekirk (United States)'),
(17062, 'https://ror.org/02711wx11', 'en', 1, 'https://ror.org/02711wx11 English Courtyards'),
(17063, 'https://ror.org/01rxaf991', 'en', 1, 'https://ror.org/01rxaf991 Zhejiang Police College 浙江警察学院'),
(17064, 'https://ror.org/02v226c57', 'en', 1, 'https://ror.org/02v226c57 Federation of the European Sporting Goods Industry'),
(17065, 'https://ror.org/04mzr3655', 'en', 1, 'https://ror.org/04mzr3655 Zibo Vocational Institute'),
(17066, 'https://ror.org/00xfx7t79', 'no_lang_code', 1, 'https://ror.org/00xfx7t79 Enigma Diagnostics (United Kingdom)'),
(17067, 'https://ror.org/01kswen19', 'fr', 1, 'https://ror.org/01kswen19 Fédération Nationale des Centres d''Initiatives pour Valoriser l’Agriculture et le Milieu Rural'),
(17068, 'https://ror.org/05t7wym31', 'en', 1, 'https://ror.org/05t7wym31 Federation of Clinical Immunology Societies');
INSERT INTO `rors` VALUES
(17069, 'https://ror.org/01n5p4z29', 'no_lang_code', 1, 'https://ror.org/01n5p4z29 Stantec (United States)'),
(17070, 'https://ror.org/01g44f369', 'no_lang_code', 1, 'https://ror.org/01g44f369 DynaVox (United States)'),
(17071, 'https://ror.org/03tnncq39', 'no_lang_code', 1, 'https://ror.org/03tnncq39 Enkon (Turkey)'),
(17072, 'https://ror.org/054c8sq43', 'en', 1, 'https://ror.org/054c8sq43 Warren Clinic'),
(17073, 'https://ror.org/05dzxqx07', 'no_lang_code', 1, 'https://ror.org/05dzxqx07 KBC Advanced Technologies (United Kingdom)'),
(17074, 'https://ror.org/04nmnc538', 'no_lang_code', 1, 'https://ror.org/04nmnc538 FEIG Electronic (Germany)'),
(17075, 'https://ror.org/03r41zp91', 'no_lang_code', 1, 'https://ror.org/03r41zp91 DAS Environmental Expert (Germany)'),
(17076, 'https://ror.org/02m0s8558', 'no_lang_code', 1, 'https://ror.org/02m0s8558 Ennovatis (Germany)'),
(17077, 'https://ror.org/00t1gpd82', 'en', 1, 'https://ror.org/00t1gpd82 Evaluation and Training Institute'),
(17078, 'https://ror.org/0223cdp82', 'en', 1, 'https://ror.org/0223cdp82 Dupage County Health Department'),
(17079, 'https://ror.org/057fshk20', 'no_lang_code', 1, 'https://ror.org/057fshk20 IHS Markit (Canada)'),
(17080, 'https://ror.org/04z0xef73', 'no_lang_code', 1, 'https://ror.org/04z0xef73 Current Water Technologies (Canada)'),
(17081, 'https://ror.org/03n7edp26', 'no_lang_code', 1, 'https://ror.org/03n7edp26 Enpro Consult (Bulgaria)'),
(17082, 'https://ror.org/001fr6a82', 'en', 1, 'https://ror.org/001fr6a82 Union of Agricultural Cooperatives of Peza'),
(17083, 'https://ror.org/05hxvc906', 'no_lang_code', 1, 'https://ror.org/05hxvc906 Solvay (Netherlands)'),
(17084, 'https://ror.org/032pt1y71', 'no_lang_code', 1, 'https://ror.org/032pt1y71 Britwind (United Kingdom)'),
(17085, 'https://ror.org/01t2c1t51', 'no_lang_code', 1, 'https://ror.org/01t2c1t51 FemtoScale (United States)'),
(17086, 'https://ror.org/04bq4z840', 'en', 1, 'https://ror.org/04bq4z840 Washington Institute of Dermatologic Laser Surgery'),
(17087, 'https://ror.org/025agpj70', 'en', 1, 'https://ror.org/025agpj70 Washington Poison Center'),
(17088, 'https://ror.org/05177zd25', 'no_lang_code', 1, 'https://ror.org/05177zd25 Fenix TNT (Czechia)'),
(17089, 'https://ror.org/03w2zhm87', 'no_lang_code', 1, 'https://ror.org/03w2zhm87 DuPont (Germany)'),
(17090, 'https://ror.org/0139cja35', 'no_lang_code', 1, 'https://ror.org/0139cja35 Dura Vermeer (Netherlands)'),
(17091, 'https://ror.org/046z39w60', 'no_lang_code', 1, 'https://ror.org/046z39w60 EnSilica (United Kingdom)'),
(17092, 'https://ror.org/022enjj11', 'no_lang_code', 1, 'https://ror.org/022enjj11 Fent Innovative Software Solutions (Spain)'),
(17093, 'https://ror.org/02pxcrq67', 'no_lang_code', 1, 'https://ror.org/02pxcrq67 FEO Solutions (United States)'),
(17094, 'https://ror.org/04swvpw46', 'no_lang_code', 1, 'https://ror.org/04swvpw46 Ivanhoe Energy (Canada)'),
(17095, 'https://ror.org/05btx4z39', 'en', 1, 'https://ror.org/05btx4z39 Durham County Council'),
(17096, 'https://ror.org/000kvm359', 'it', 1, 'https://ror.org/000kvm359 National Park of Abruzzo Parco Nazionale d''Abruzzo'),
(17097, 'https://ror.org/040qfvc89', 'fr', 1, 'https://ror.org/040qfvc89 Fédération des Plastiques et Alliances Composites'),
(17098, 'https://ror.org/02p5tqh12', 'no_lang_code', 1, 'https://ror.org/02p5tqh12 Kromek (United Kingdom)'),
(17099, 'https://ror.org/03pdkyj36', 'no_lang_code', 1, 'https://ror.org/03pdkyj36 Evening Star Productions (United States)'),
(17100, 'https://ror.org/05qm32213', 'it', 1, 'https://ror.org/05qm32213 Ente Nazionale ACLI Istruzione Professionale National Network OF Services for Training and Employment Promotion'),
(17101, 'https://ror.org/043affe91', 'no_lang_code', 1, 'https://ror.org/043affe91 Stryker (United States)'),
(17102, 'https://ror.org/0488q6085', 'it', 1, 'https://ror.org/0488q6085 Ente nazionale italiano di unificazione Italian National Unification'),
(17103, 'https://ror.org/032h1gp10', 'no_lang_code', 1, 'https://ror.org/032h1gp10 Fernando Domínguez (Spain)'),
(17104, 'https://ror.org/047etja20', 'no_lang_code', 1, 'https://ror.org/047etja20 Everis (Spain)'),
(17105, 'https://ror.org/018jzsh55', 'no_lang_code', 1, 'https://ror.org/018jzsh55 Fernwärme-Verbund Saar (Germany)'),
(17106, 'https://ror.org/055qvd023', 'no_lang_code', 1, 'https://ror.org/055qvd023 Qualizyme (Austria)'),
(17107, 'https://ror.org/04yecmt82', 'no_lang_code', 1, 'https://ror.org/04yecmt82 InHand Electronics (United States)'),
(17108, 'https://ror.org/05e0mbv58', 'no_lang_code', 1, 'https://ror.org/05e0mbv58 Evestra (United States)'),
(17109, 'https://ror.org/03yxn7r03', 'no_lang_code', 1, 'https://ror.org/03yxn7r03 Pittini Group (Italy)'),
(17110, 'https://ror.org/002mh8q73', 'en', 1, 'https://ror.org/002mh8q73 Enterprise State Community College'),
(17111, 'https://ror.org/03qsq2n78', 'no_lang_code', 1, 'https://ror.org/03qsq2n78 DVC (Belgium)'),
(17112, 'https://ror.org/02f6qgf95', 'en', 1, 'https://ror.org/02f6qgf95 Entertainment Industries Council'),
(17113, 'https://ror.org/03xnb5h64', 'no_lang_code', 1, 'https://ror.org/03xnb5h64 FerRobotics Compliant Robot Technology (Austria)'),
(17114, 'https://ror.org/02zz4qz23', 'no_lang_code', 1, 'https://ror.org/02zz4qz23 DVST (United Kingdom)'),
(17115, 'https://ror.org/0320hew69', 'no_lang_code', 1, 'https://ror.org/0320hew69 Ferroday (United Kingdom)'),
(17116, 'https://ror.org/00zt8d340', 'no_lang_code', 1, 'https://ror.org/00zt8d340 DIAD (Italy)'),
(17117, 'https://ror.org/04vcmzn19', 'no_lang_code', 1, 'https://ror.org/04vcmzn19 Meggitt (Denmark)'),
(17118, 'https://ror.org/04hjxdv96', 'no_lang_code', 1, 'https://ror.org/04hjxdv96 Evidence (Italy)'),
(17119, 'https://ror.org/03sjyg353', 'no_lang_code', 1, 'https://ror.org/03sjyg353 Diagnostic Biochips (United States)'),
(17120, 'https://ror.org/00mfy6m96', 'no_lang_code', 1, 'https://ror.org/00mfy6m96 DxDiscovery (United States)'),
(17121, 'https://ror.org/04gewa138', 'no_lang_code', 1, 'https://ror.org/04gewa138 Evigia Systems (United States)'),
(17122, 'https://ror.org/01m1ems94', 'en', 1, 'https://ror.org/01m1ems94 Sector Skills Council for Science, Engineering and Manufacturing Technologies'),
(17123, 'https://ror.org/041c1w327', 'no_lang_code', 1, 'https://ror.org/041c1w327 DHL (Spain)'),
(17124, 'https://ror.org/00rgeck60', 'no_lang_code', 1, 'https://ror.org/00rgeck60 Evonik (United Kingdom)'),
(17125, 'https://ror.org/01gk96h18', 'no_lang_code', 1, 'https://ror.org/01gk96h18 GreatCell Solar (United Kingdom)'),
(17126, 'https://ror.org/023tfbg60', 'no_lang_code', 1, 'https://ror.org/023tfbg60 Import.io (United States)'),
(17127, 'https://ror.org/041nyfq10', 'no_lang_code', 1, 'https://ror.org/041nyfq10 Mistras Group (Greece)'),
(17128, 'https://ror.org/01w2at733', 'it', 1, 'https://ror.org/01w2at733 Casa di Cura Villa Pini d’Abruzzo'),
(17129, 'https://ror.org/05vzvmc30', 'no_lang_code', 1, 'https://ror.org/05vzvmc30 DE Technologies (United States)'),
(17130, 'https://ror.org/04gxaf668', 'en', 1, 'https://ror.org/04gxaf668 Fevered Sleep'),
(17131, 'https://ror.org/05tyymd87', 'no_lang_code', 1, 'https://ror.org/05tyymd87 DHL (Switzerland)'),
(17132, 'https://ror.org/03mj2tv58', 'no_lang_code', 1, 'https://ror.org/03mj2tv58 Ewos Innovation (Norway)'),
(17133, 'https://ror.org/05vs3ac92', 'no_lang_code', 1, 'https://ror.org/05vs3ac92 Postnova Analytics (United States)'),
(17134, 'https://ror.org/01c5g1574', 'no_lang_code', 1, 'https://ror.org/01c5g1574 Lattanzio Group (Italy)'),
(17135, 'https://ror.org/01d474d81', 'no_lang_code', 1, 'https://ror.org/01d474d81 Husqvarna (Belgium)'),
(17136, 'https://ror.org/03fpb6q62', 'no_lang_code', 1, 'https://ror.org/03fpb6q62 Exalos (Switzerland)'),
(17137, 'https://ror.org/04b295810', 'fr', 1, 'https://ror.org/04b295810 Fédération Générale du Travail de Belgique General Federation of Belgian Labour'),
(17138, 'https://ror.org/02g2wxz83', 'no_lang_code', 1, 'https://ror.org/02g2wxz83 ERBA Diagnostics (United States)'),
(17139, 'https://ror.org/03wxz7j86', 'no_lang_code', 1, 'https://ror.org/03wxz7j86 Diamond Aircraft Industries (Austria)'),
(17140, 'https://ror.org/001yh7w33', 'no_lang_code', 1, 'https://ror.org/001yh7w33 Dynamic Boosting Systems (United Kingdom)'),
(17141, 'https://ror.org/05r716r40', 'no_lang_code', 1, 'https://ror.org/05r716r40 Dynamic Concepts (United States)'),
(17142, 'https://ror.org/04kktsb78', 'en', 1, 'https://ror.org/04kktsb78 Excellence Community Education Welfare Scheme'),
(17143, 'https://ror.org/02t247e37', 'no_lang_code', 1, 'https://ror.org/02t247e37 Dynamic Contours (United States)'),
(17144, 'https://ror.org/020bbn883', 'no_lang_code', 1, 'https://ror.org/020bbn883 Excellims (United States)'),
(17145, 'https://ror.org/048zew673', 'no_lang_code', 1, 'https://ror.org/048zew673 Centrotherm Photovoltaics (Germany)'),
(17146, 'https://ror.org/031dsww89', 'no_lang_code', 1, 'https://ror.org/031dsww89 Becton Dickinson (Canada)'),
(17147, 'https://ror.org/01q7jq182', 'ro', 1, 'https://ror.org/01q7jq182 Executive Unit for Financing Higher Education, Research, Development and Innovation Unitatea Executiva Pentru Finantarea Invatamantului Superior a Cercetarii Dezvoltarii si Inovarii'),
(17148, 'https://ror.org/00xaant88', 'no_lang_code', 1, 'https://ror.org/00xaant88 Quadrise Canada Corporation (Canada)'),
(17149, 'https://ror.org/01434vk98', 'no_lang_code', 1, 'https://ror.org/01434vk98 GrafTech (United States)'),
(17150, 'https://ror.org/04mzgvt54', 'en', 1, 'https://ror.org/04mzgvt54 Environmental Research Institute'),
(17151, 'https://ror.org/04vvcpa15', 'no_lang_code', 1, 'https://ror.org/04vvcpa15 Fiberline Composites (Denmark)'),
(17152, 'https://ror.org/043vm9914', 'no_lang_code', 1, 'https://ror.org/043vm9914 Dynamic Systems (United States)'),
(17153, 'https://ror.org/03fgg2060', 'no_lang_code', 1, 'https://ror.org/03fgg2060 DIARC-Technology (Finland)'),
(17154, 'https://ror.org/00m6gc198', 'no_lang_code', 1, 'https://ror.org/00m6gc198 Diasa Industrial (Spain)'),
(17155, 'https://ror.org/04c4y1k56', 'no_lang_code', 1, 'https://ror.org/04c4y1k56 CoorsTek (United Kingdom)'),
(17156, 'https://ror.org/03zwh7x79', 'no_lang_code', 1, 'https://ror.org/03zwh7x79 Fibre Extrusion Technology (United Kingdom)'),
(17157, 'https://ror.org/00bws1855', 'en', 1, 'https://ror.org/00bws1855 Bureau exécutif du président des États-unis Executive Office of the President Oficina Ejecutiva del Presidente de los Estados Unidos'),
(17158, 'https://ror.org/00rgwvs20', 'no_lang_code', 1, 'https://ror.org/00rgwvs20 Exel Composites (United Kingdom)'),
(17159, 'https://ror.org/03wadyw29', 'no_lang_code', 1, 'https://ror.org/03wadyw29 Parrot (France)'),
(17160, 'https://ror.org/00vggw919', 'no_lang_code', 1, 'https://ror.org/00vggw919 Fibroline (France)'),
(17161, 'https://ror.org/00c5abk38', 'no_lang_code', 1, 'https://ror.org/00c5abk38 Environmental Software and Services (Austria)'),
(17162, 'https://ror.org/03f22z049', 'en', 1, 'https://ror.org/03f22z049 Exeter City Council'),
(17163, 'https://ror.org/034kkc914', 'no_lang_code', 1, 'https://ror.org/034kkc914 Didael KTS (Italy)'),
(17164, 'https://ror.org/04nwdyy60', 'fr', 1, 'https://ror.org/04nwdyy60 Fidal'),
(17165, 'https://ror.org/006wb1h58', 'en', 1, 'https://ror.org/006wb1h58 Dystonia Medical Research Foundation'),
(17166, 'https://ror.org/02cfjxd09', 'no_lang_code', 1, 'https://ror.org/02cfjxd09 Fiday Gestion (France)'),
(17167, 'https://ror.org/01148hc54', 'no_lang_code', 1, 'https://ror.org/01148hc54 Envirup (United Kingdom)'),
(17168, 'https://ror.org/04ytq7468', 'no_lang_code', 1, 'https://ror.org/04ytq7468 Exfo Electro-Optical Engineering (Canada)'),
(17169, 'https://ror.org/05ykwy958', 'no_lang_code', 1, 'https://ror.org/05ykwy958 Dyson Technical Ceramics (United Kingdom)'),
(17170, 'https://ror.org/02wjcvj62', 'no_lang_code', 1, 'https://ror.org/02wjcvj62 Dytecna (United Kingdom)'),
(17171, 'https://ror.org/033cp0g08', 'no_lang_code', 1, 'https://ror.org/033cp0g08 Fidelity Systems (United States)'),
(17172, 'https://ror.org/02b3e4g90', 'no_lang_code', 1, 'https://ror.org/02b3e4g90 DZP Technologies (United Kingdom)'),
(17173, 'https://ror.org/03143bq61', 'no_lang_code', 1, 'https://ror.org/03143bq61 ANDalyze (United States)'),
(17174, 'https://ror.org/033gqy043', 'no_lang_code', 1, 'https://ror.org/033gqy043 Fiedler Optoelektronik (Germany) Fiedler optoelectronics'),
(17175, 'https://ror.org/03exwgf66', 'en', 1, 'https://ror.org/03exwgf66 Fife House'),
(17176, 'https://ror.org/0261s3g35', 'en', 1, 'https://ror.org/0261s3g35 Fife Council'),
(17177, 'https://ror.org/012eck451', 'no_lang_code', 1, 'https://ror.org/012eck451 Experian (United Kingdom)'),
(17178, 'https://ror.org/05pnx2m87', 'en', 1, 'https://ror.org/05pnx2m87 Fighting Back Partnership'),
(17179, 'https://ror.org/01h8srv03', 'no_lang_code', 1, 'https://ror.org/01h8srv03 Fiji Systems (United States)'),
(17180, 'https://ror.org/032by2j30', 'it', 1, 'https://ror.org/032by2j30 Fondazione Filarete'),
(17181, 'https://ror.org/05rx7ak81', 'no_lang_code', 1, 'https://ror.org/05rx7ak81 Eos Neuroscience (United States)'),
(17182, 'https://ror.org/04yk5j107', 'no_lang_code', 1, 'https://ror.org/04yk5j107 EOX IT Services (Austria)'),
(17183, 'https://ror.org/03x320790', 'no_lang_code', 1, 'https://ror.org/03x320790 Dieffe (Italy)'),
(17184, 'https://ror.org/045fjnt03', 'no_lang_code', 1, 'https://ror.org/045fjnt03 Eonic Systems (Belgium)'),
(17185, 'https://ror.org/00fjpbt79', 'no_lang_code', 1, 'https://ror.org/00fjpbt79 ePack (United States)'),
(17186, 'https://ror.org/032av0b93', 'no_lang_code', 1, 'https://ror.org/032av0b93 Expert System (Italy)'),
(17187, 'https://ror.org/05m029q63', 'it', 1, 'https://ror.org/05m029q63 Federazione Italiana Lavoratori Commercio Albergo Mensa e Servizi'),
(17188, 'https://ror.org/01qzakp85', 'no_lang_code', 1, 'https://ror.org/01qzakp85 Boart Longyear (United States)'),
(17189, 'https://ror.org/038729s57', 'no_lang_code', 1, 'https://ror.org/038729s57 ERS Steuerungstechnik (Germany)'),
(17190, 'https://ror.org/05gjytt71', 'en', 1, 'https://ror.org/05gjytt71 E-Connection'),
(17191, 'https://ror.org/012rthc43', 'no_lang_code', 1, 'https://ror.org/012rthc43 Explora (Italy)'),
(17192, 'https://ror.org/055ag5z32', 'no_lang_code', 1, 'https://ror.org/055ag5z32 DIERS International (Germany)'),
(17193, 'https://ror.org/03s5wqn16', 'no_lang_code', 1, 'https://ror.org/03s5wqn16 FilmLight (United Kingdom)'),
(17194, 'https://ror.org/041gnf006', 'no_lang_code', 1, 'https://ror.org/041gnf006 E-nema (Germany)'),
(17195, 'https://ror.org/03nygzm95', 'no_lang_code', 1, 'https://ror.org/03nygzm95 E-Semble (Netherlands)'),
(17196, 'https://ror.org/00gfwqa54', 'en', 1, 'https://ror.org/00gfwqa54 E-Seniors'),
(17197, 'https://ror.org/00e4m3f78', 'no_lang_code', 1, 'https://ror.org/00e4m3f78 Hood Laboratories (United States)'),
(17198, 'https://ror.org/03pt2cx46', 'no_lang_code', 1, 'https://ror.org/03pt2cx46 Films of Record'),
(17199, 'https://ror.org/017fxcy86', 'no_lang_code', 1, 'https://ror.org/017fxcy86 EXPORTech (United States)'),
(17200, 'https://ror.org/03x7vv863', 'no_lang_code', 1, 'https://ror.org/03x7vv863 Novocaptis (Greece)'),
(17201, 'https://ror.org/00vfscp04', 'no_lang_code', 1, 'https://ror.org/00vfscp04 OncoPlex Diagnostics (United States)'),
(17202, 'https://ror.org/05byg9k74', 'no_lang_code', 1, 'https://ror.org/05byg9k74 Filtronic (United Kingdom)'),
(17203, 'https://ror.org/00vxnww48', 'no_lang_code', 1, 'https://ror.org/00vxnww48 Exscien (United States)'),
(17204, 'https://ror.org/02b489s27', 'no_lang_code', 1, 'https://ror.org/02b489s27 Hunosa (Spain)'),
(17205, 'https://ror.org/044bdm595', 'no_lang_code', 1, 'https://ror.org/044bdm595 Hephaestus Holdings (United Kingdom)'),
(17206, 'https://ror.org/006ykk006', 'no_lang_code', 1, 'https://ror.org/006ykk006 Fimet (Finland)'),
(17207, 'https://ror.org/05thqfz72', 'no_lang_code', 1, 'https://ror.org/05thqfz72 Ultra Electronics (United Kingdom)'),
(17208, 'https://ror.org/04ca3hj20', 'no_lang_code', 1, 'https://ror.org/04ca3hj20 Haydale (United Kingdom)'),
(17209, 'https://ror.org/0582tp073', 'no_lang_code', 1, 'https://ror.org/0582tp073 Orflo Technologies (United States)'),
(17210, 'https://ror.org/01ne9en42', 'no_lang_code', 1, 'https://ror.org/01ne9en42 Deutsches Institut für Feuerfest und Keramik'),
(17211, 'https://ror.org/038fxe657', 'no_lang_code', 1, 'https://ror.org/038fxe657 Extended Home Living Services'),
(17212, 'https://ror.org/05rw40a45', 'no_lang_code', 1, 'https://ror.org/05rw40a45 Epleblomsten (Norway)'),
(17213, 'https://ror.org/0053v9m13', 'no_lang_code', 1, 'https://ror.org/0053v9m13 PXBioVisioN (Germany)'),
(17214, 'https://ror.org/00czybt24', 'no_lang_code', 1, 'https://ror.org/00czybt24 Évaluation Technologique Ingénierie and Applications (France)'),
(17215, 'https://ror.org/0431y1695', 'no_lang_code', 1, 'https://ror.org/0431y1695 Eppendorf (Belgium)'),
(17216, 'https://ror.org/02jv94t03', 'no_lang_code', 1, 'https://ror.org/02jv94t03 e2e Services (United Kingdom)'),
(17217, 'https://ror.org/03dgqxa26', 'no_lang_code', 1, 'https://ror.org/03dgqxa26 E2S (Belgium)'),
(17218, 'https://ror.org/0334ht072', 'no_lang_code', 1, 'https://ror.org/0334ht072 EyeRx Research (United States)'),
(17219, 'https://ror.org/001nr2c08', 'en', 1, 'https://ror.org/001nr2c08 Eyes of the World Media Group'),
(17220, 'https://ror.org/04gehpa59', 'no_lang_code', 1, 'https://ror.org/04gehpa59 Digipolis (Belgium)'),
(17221, 'https://ror.org/029kfqa89', 'no_lang_code', 1, 'https://ror.org/029kfqa89 Jotne (Norway)'),
(17222, 'https://ror.org/043mrfn25', 'no_lang_code', 1, 'https://ror.org/043mrfn25 Digirad (United States)'),
(17223, 'https://ror.org/029f77f71', 'no_lang_code', 1, 'https://ror.org/029f77f71 Equipment Simulations (United States)'),
(17224, 'https://ror.org/00t3nnr25', 'no_lang_code', 1, 'https://ror.org/00t3nnr25 Finisar (Israel)'),
(17225, 'https://ror.org/04pese132', 'no_lang_code', 1, 'https://ror.org/04pese132 Equipo de Tecnicos en Transporte y Territorio'),
(17226, 'https://ror.org/05es2h531', 'no_lang_code', 1, 'https://ror.org/05es2h531 Eagle Engineering (United States)'),
(17227, 'https://ror.org/00txgjp11', 'en', 1, 'https://ror.org/00txgjp11 Eagle Ridge Institute'),
(17228, 'https://ror.org/01vzz8w74', 'en', 1, 'https://ror.org/01vzz8w74 Finnish Real Estate Federation'),
(17229, 'https://ror.org/02wr4ty93', 'en', 1, 'https://ror.org/02wr4ty93 Zionsville Community High School'),
(17230, 'https://ror.org/05d5d9f59', 'no_lang_code', 1, 'https://ror.org/05d5d9f59 Licentia (Finland)'),
(17231, 'https://ror.org/02fxy5722', 'en', 1, 'https://ror.org/02fxy5722 One Nucleus'),
(17232, 'https://ror.org/023g5hk70', 'no_lang_code', 1, 'https://ror.org/023g5hk70 EaglePicher (Canada)'),
(17233, 'https://ror.org/030b24d60', 'no_lang_code', 1, 'https://ror.org/030b24d60 Erbicol (Switzerland)'),
(17234, 'https://ror.org/04j58pw68', 'no_lang_code', 1, 'https://ror.org/04j58pw68 Eaker Epidemiology Enterprises (United States)'),
(17235, 'https://ror.org/02kq40n08', 'no_lang_code', 1, 'https://ror.org/02kq40n08 Earlens (United States)'),
(17236, 'https://ror.org/02jn6na36', 'no_lang_code', 1, 'https://ror.org/02jn6na36 Finsa (Italy)'),
(17237, 'https://ror.org/01p35xr84', 'no_lang_code', 1, 'https://ror.org/01p35xr84 Fabes Forschungs (Germany)'),
(17238, 'https://ror.org/04ge7a533', 'no_lang_code', 1, 'https://ror.org/04ge7a533 Digital Video (Italy)'),
(17239, 'https://ror.org/03wdd2732', 'no_lang_code', 1, 'https://ror.org/03wdd2732 FIP Industriale (Italy)'),
(17240, 'https://ror.org/01j1bxw34', 'no_lang_code', 1, 'https://ror.org/01j1bxw34 FIRA International (United Kingdom)'),
(17241, 'https://ror.org/049xhbc08', 'no_lang_code', 1, 'https://ror.org/049xhbc08 FACET Innovations (United States)'),
(17242, 'https://ror.org/056yk1794', 'no_lang_code', 1, 'https://ror.org/056yk1794 Fire Safety Design'),
(17243, 'https://ror.org/04tqgg260', 'de', 1, 'https://ror.org/04tqgg260 FH Aachen'),
(17244, 'https://ror.org/022z2ef35', 'en', 1, 'https://ror.org/022z2ef35 Digital Europe'),
(17245, 'https://ror.org/04mavvr54', 'no_lang_code', 1, 'https://ror.org/04mavvr54 Ergo (Greece)'),
(17246, 'https://ror.org/00c9gjj68', 'no_lang_code', 1, 'https://ror.org/00c9gjj68 Ergon Consulting Group (Greece)'),
(17247, 'https://ror.org/02e1wjw63', 'no_lang_code', 1, 'https://ror.org/02e1wjw63 Abcam (United States)'),
(17248, 'https://ror.org/05wpve720', 'no_lang_code', 1, 'https://ror.org/05wpve720 AdCapital (Germany)'),
(17249, 'https://ror.org/01zy7ja20', 'en', 1, 'https://ror.org/01zy7ja20 Earthquake Planning and Protection Organization'),
(17250, 'https://ror.org/014nnvj65', 'en', 1, 'https://ror.org/014nnvj65 TH Köln TH Köln - University of Applied Sciences'),
(17251, 'https://ror.org/02xy96n81', 'no_lang_code', 1, 'https://ror.org/02xy96n81 Ericsson (Greece)'),
(17252, 'https://ror.org/017g88n73', 'no_lang_code', 1, 'https://ror.org/017g88n73 First Light Diagnostics (United States)'),
(17253, 'https://ror.org/059vymd37', 'de', 1, 'https://ror.org/059vymd37 Hochschule Osnabrück Osnabrück University of Applied Sciences'),
(17254, 'https://ror.org/04gc48f88', 'no_lang_code', 1, 'https://ror.org/04gc48f88 Earthwise Construction (United Kingdom)'),
(17255, 'https://ror.org/02e3hdx05', 'en', 1, 'https://ror.org/02e3hdx05 Hochschule Trier Trier University of Applied Sciences'),
(17256, 'https://ror.org/02xhmts30', 'no_lang_code', 1, 'https://ror.org/02xhmts30 Aerotek (Germany)'),
(17257, 'https://ror.org/05wbpnh19', 'en', 1, 'https://ror.org/05wbpnh19 Fishermen and Scientists Research Society'),
(17258, 'https://ror.org/0387prb75', 'en', 1, 'https://ror.org/0387prb75 FIZ Karlsruhe - Leibniz-Institut für Informationsinfrastruktur FIZ Karlsruhe – Leibniz Institute for Information Infrastructure'),
(17259, 'https://ror.org/045ced850', 'no_lang_code', 1, 'https://ror.org/045ced850 DILAS (Germany)'),
(17260, 'https://ror.org/01zn1kc16', 'de', 1, 'https://ror.org/01zn1kc16 Fachverband Elektronik Design'),
(17261, 'https://ror.org/0596xsc43', 'en', 1, 'https://ror.org/0596xsc43 EMH Group'),
(17262, 'https://ror.org/03hc96946', 'no_lang_code', 1, 'https://ror.org/03hc96946 Facilia (Sweden)'),
(17263, 'https://ror.org/001m53j08', 'en', 1, 'https://ror.org/001m53j08 East Thames Group'),
(17264, 'https://ror.org/048a46z74', 'no_lang_code', 1, 'https://ror.org/048a46z74 Facit Research (Germany)'),
(17265, 'https://ror.org/01tt73103', 'no_lang_code', 1, 'https://ror.org/01tt73103 Erlang Solutions (United Kingdom)'),
(17266, 'https://ror.org/04nt2zc43', 'no_lang_code', 1, 'https://ror.org/04nt2zc43 FIT Biotech (Finland)'),
(17267, 'https://ror.org/045cj2n31', 'no_lang_code', 1, 'https://ror.org/045cj2n31 FiveFocal (United States)'),
(17268, 'https://ror.org/04zatss13', 'no_lang_code', 1, 'https://ror.org/04zatss13 Eastern Analytical (United States)'),
(17269, 'https://ror.org/02nyatx59', 'no_lang_code', 1, 'https://ror.org/02nyatx59 Celanese (Germany)'),
(17270, 'https://ror.org/05mn3rr77', 'en', 1, 'https://ror.org/05mn3rr77 National Cancer Registration Service'),
(17271, 'https://ror.org/04txhk134', 'en', 1, 'https://ror.org/04txhk134 Eastern University'),
(17272, 'https://ror.org/027jm4436', 'en', 1, 'https://ror.org/027jm4436 Institute of Physical Energetics'),
(17273, 'https://ror.org/05vgm9d49', 'no_lang_code', 1, 'https://ror.org/05vgm9d49 FKuR Kunststoff (Germany)'),
(17274, 'https://ror.org/03xdg2f86', 'no_lang_code', 1, 'https://ror.org/03xdg2f86 Flame Spray (Italy)'),
(17275, 'https://ror.org/03k5mg797', 'no_lang_code', 1, 'https://ror.org/03k5mg797 Flanders Color (Belgium)'),
(17276, 'https://ror.org/01at7p410', 'no_lang_code', 1, 'https://ror.org/01at7p410 Ernst Basler + Partner (Switzerland)'),
(17277, 'https://ror.org/010984q05', 'no_lang_code', 1, 'https://ror.org/010984q05 Dioxide Materials (United States)'),
(17278, 'https://ror.org/058d74429', 'no_lang_code', 1, 'https://ror.org/058d74429 Ernst Wittner (Austria)'),
(17279, 'https://ror.org/05cend965', 'en', 1, 'https://ror.org/05cend965 Eurocarers'),
(17280, 'https://ror.org/0213bv924', 'pt', 1, 'https://ror.org/0213bv924 Direcção Regional de Cultura do Alentejo'),
(17281, 'https://ror.org/008bf8b33', 'en', 1, 'https://ror.org/008bf8b33 Flathead High School'),
(17282, 'https://ror.org/013n79s81', 'no_lang_code', 1, 'https://ror.org/013n79s81 Eblana Photonics (Ireland)'),
(17283, 'https://ror.org/04h71df97', 'no_lang_code', 1, 'https://ror.org/04h71df97 Flentrop Orgelbouw (Netherlands)'),
(17284, 'https://ror.org/036178197', 'no_lang_code', 1, 'https://ror.org/036178197 eBOS Technologies (Cyprus)'),
(17285, 'https://ror.org/0235hnd76', 'no_lang_code', 1, 'https://ror.org/0235hnd76 Alpiq (United Kingdom)'),
(17286, 'https://ror.org/0415j9862', 'no_lang_code', 1, 'https://ror.org/0415j9862 Institute for Renewable Energy (Poland)'),
(17287, 'https://ror.org/05pqvzr51', 'no_lang_code', 1, 'https://ror.org/05pqvzr51 FlexTech Systems (United States)'),
(17288, 'https://ror.org/0152arp12', 'en', 1, 'https://ror.org/0152arp12 Flint Community Schools'),
(17289, 'https://ror.org/0393dxb43', 'no_lang_code', 1, 'https://ror.org/0393dxb43 Flisom (Switzerland)'),
(17290, 'https://ror.org/00zv6x249', 'no_lang_code', 1, 'https://ror.org/00zv6x249 ECD Architects'),
(17291, 'https://ror.org/029nw1q67', 'en', 1, 'https://ror.org/029nw1q67 Circle Park'),
(17292, 'https://ror.org/00pfa9y72', 'no_lang_code', 1, 'https://ror.org/00pfa9y72 Ribbon Communications (Israel)'),
(17293, 'https://ror.org/024bp0560', 'en', 1, 'https://ror.org/024bp0560 Florida Alcohol and Drug Abuse Association'),
(17294, 'https://ror.org/04nx63b17', 'fr', 1, 'https://ror.org/04nx63b17 Ministère de l''Économie et des Finances'),
(17295, 'https://ror.org/01ajshr89', 'en', 1, 'https://ror.org/01ajshr89 Florida Coalition Against Domestic Violence'),
(17296, 'https://ror.org/03dtjkc02', 'no_lang_code', 1, 'https://ror.org/03dtjkc02 Erothitan (Germany)'),
(17297, 'https://ror.org/0182pv508', 'en', 1, 'https://ror.org/0182pv508 Florida Hospital Association'),
(17298, 'https://ror.org/04pt73775', 'en', 1, 'https://ror.org/04pt73775 Executive Office of Governor'),
(17299, 'https://ror.org/00gbzwp97', 'no', 1, 'https://ror.org/00gbzwp97 Direktoratet for forvaltning og IKT'),
(17300, 'https://ror.org/030tp6t18', 'no_lang_code', 1, 'https://ror.org/030tp6t18 Discovery Air (Canada)'),
(17301, 'https://ror.org/02fs2bc65', 'no_lang_code', 1, 'https://ror.org/02fs2bc65 Discovery Laboratories (United States)'),
(17302, 'https://ror.org/05fa80v88', 'it', 1, 'https://ror.org/05fa80v88 Confederazione Nazionale dell''Artigianato e Della Piccola e Media Impresa'),
(17303, 'https://ror.org/05y64p741', 'no_lang_code', 1, 'https://ror.org/05y64p741 MP Biomedicals (United States)'),
(17304, 'https://ror.org/03p76jc78', 'no_lang_code', 1, 'https://ror.org/03p76jc78 ES Technology (United Kingdom)'),
(17305, 'https://ror.org/00fjjzm86', 'no_lang_code', 1, 'https://ror.org/00fjjzm86 Flucon Fluid Control (Germany)'),
(17306, 'https://ror.org/00n9hrm35', 'no_lang_code', 1, 'https://ror.org/00n9hrm35 Metrohm Autolab (Netherlands)'),
(17307, 'https://ror.org/02fwpc710', 'no_lang_code', 1, 'https://ror.org/02fwpc710 Esaote (Netherlands)'),
(17308, 'https://ror.org/035x4a178', 'no_lang_code', 1, 'https://ror.org/035x4a178 Fluential (United States)'),
(17309, 'https://ror.org/047bknx65', 'no_lang_code', 1, 'https://ror.org/047bknx65 Eco-Energy (NI) (United Kingdom)'),
(17310, 'https://ror.org/054x53k79', 'no_lang_code', 1, 'https://ror.org/054x53k79 Fluid Operations (Germany)'),
(17311, 'https://ror.org/0053aqt47', 'no_lang_code', 1, 'https://ror.org/0053aqt47 Fluidhouse (Finland)'),
(17312, 'https://ror.org/027vbvd36', 'no_lang_code', 1, 'https://ror.org/027vbvd36 Esciencia (Spain)'),
(17313, 'https://ror.org/01bag9d55', 'no_lang_code', 1, 'https://ror.org/01bag9d55 Fluigent (France)'),
(17314, 'https://ror.org/0177d4e55', 'no_lang_code', 1, 'https://ror.org/0177d4e55 Marvell (Spain)'),
(17315, 'https://ror.org/013pvbr04', 'no_lang_code', 1, 'https://ror.org/013pvbr04 Fluxim (Switzerland)'),
(17316, 'https://ror.org/05tmezz59', 'pt', 1, 'https://ror.org/05tmezz59 Agrupamento de Escolas de Caldas de Vizela'),
(17317, 'https://ror.org/00y93bb21', 'no_lang_code', 1, 'https://ror.org/00y93bb21 Flyby (Italy)'),
(17318, 'https://ror.org/058wdq771', 'pt', 1, 'https://ror.org/058wdq771 Escola Secundária de Loulé'),
(17319, 'https://ror.org/00fbzg557', 'no_lang_code', 1, 'https://ror.org/00fbzg557 Flying Bridge Technologies (United States)'),
(17320, 'https://ror.org/053aamg33', 'no_lang_code', 1, 'https://ror.org/053aamg33 Flying-Cam (Belgium)'),
(17321, 'https://ror.org/05bpzr679', 'no_lang_code', 1, 'https://ror.org/05bpzr679 FM Management Consultancy'),
(17322, 'https://ror.org/059fvx214', 'no_lang_code', 1, 'https://ror.org/059fvx214 Mössner (Germany)'),
(17323, 'https://ror.org/0048mw156', 'no_lang_code', 1, 'https://ror.org/0048mw156 FM Mattsson (Sweden)'),
(17324, 'https://ror.org/03eypca36', 'no_lang_code', 1, 'https://ror.org/03eypca36 FMC (Norway)'),
(17325, 'https://ror.org/007jkeb78', 'no_lang_code', 1, 'https://ror.org/007jkeb78 FocalCool (United States)'),
(17326, 'https://ror.org/03xznyg79', 'en', 1, 'https://ror.org/03xznyg79 Distance Expert'),
(17327, 'https://ror.org/05rxghr70', 'no_lang_code', 1, 'https://ror.org/05rxghr70 Receptors (United States)'),
(17328, 'https://ror.org/043xrkf48', 'no_lang_code', 1, 'https://ror.org/043xrkf48 Fomento de San Sebastián (Spain)'),
(17329, 'https://ror.org/02y8azp93', 'ca', 1, 'https://ror.org/02y8azp93 Foment del Treball Nacional'),
(17330, 'https://ror.org/03kf30874', 'en', 1, 'https://ror.org/03kf30874 District of Columbia Public School Écoles publiques du district de Columbia'),
(17331, 'https://ror.org/02c3k1665', 'no_lang_code', 1, 'https://ror.org/02c3k1665 Fomterv (Hungary)'),
(17332, 'https://ror.org/0138rdd60', 'no_lang_code', 1, 'https://ror.org/0138rdd60 Eni (Belgium)'),
(17333, 'https://ror.org/00gy17c75', 'no_lang_code', 1, 'https://ror.org/00gy17c75 Fon (Spain)'),
(17334, 'https://ror.org/016hwk083', 'no_lang_code', 1, 'https://ror.org/016hwk083 Disy (Germany)'),
(17335, 'https://ror.org/0073dpj33', 'en', 1, 'https://ror.org/0073dpj33 Fond du Lac School District'),
(17336, 'https://ror.org/03vcgp521', 'no_lang_code', 1, 'https://ror.org/03vcgp521 Ripamonti'),
(17337, 'https://ror.org/04y4zad82', 'no_lang_code', 1, 'https://ror.org/04y4zad82 Perma-Fix (United States)'),
(17338, 'https://ror.org/0357b6665', 'fr', 1, 'https://ror.org/0357b6665 Centre d''Etudes des Transports pour la Méditerranée Occidentale'),
(17339, 'https://ror.org/036gzc033', 'no_lang_code', 1, 'https://ror.org/036gzc033 DM-STAT (United States)'),
(17340, 'https://ror.org/05s1j9511', 'no_lang_code', 1, 'https://ror.org/05s1j9511 dMetrics (United States)'),
(17341, 'https://ror.org/03qc7cz08', 'no_lang_code', 1, 'https://ror.org/03qc7cz08 Diversified Maintenance Systems (United States)'),
(17342, 'https://ror.org/05ddxpg43', 'fr', 1, 'https://ror.org/05ddxpg43 École Nationale Supérieure de Chimie, de Biologie et de Physique'),
(17343, 'https://ror.org/01m6mfc08', 'fr', 1, 'https://ror.org/01m6mfc08 Fondation Mérieux'),
(17344, 'https://ror.org/03vcdbg75', 'no_lang_code', 1, 'https://ror.org/03vcdbg75 ATUM (United States)'),
(17345, 'https://ror.org/00sddvp48', 'no_lang_code', 1, 'https://ror.org/00sddvp48 DNAVision (Belgium)'),
(17346, 'https://ror.org/05hczjf77', 'no_lang_code', 1, 'https://ror.org/05hczjf77 DNAmicroarray (United States)'),
(17347, 'https://ror.org/05nkcfv27', 'fr', 1, 'https://ror.org/05nkcfv27 Fondation Sophia Antipolis'),
(17348, 'https://ror.org/01tqv6s24', 'en', 1, 'https://ror.org/01tqv6s24 Docklands Light Railway'),
(17349, 'https://ror.org/00gnq3g83', 'it', 1, 'https://ror.org/00gnq3g83 Accademia Nazionale di Santa Cecilia National Academy of St Cecilia'),
(17350, 'https://ror.org/001yzen24', 'no_lang_code', 1, 'https://ror.org/001yzen24 Docobo (United Kingdom)'),
(17351, 'https://ror.org/00ed3k275', 'en', 1, 'https://ror.org/00ed3k275 Documentary Educational Resources'),
(17352, 'https://ror.org/03yk73538', 'no_lang_code', 1, 'https://ror.org/03yk73538 Doduco (Germany)'),
(17353, 'https://ror.org/037jdf520', 'no_lang_code', 1, 'https://ror.org/037jdf520 Doimak (Spain)'),
(17354, 'https://ror.org/05c88z534', 'pl', 1, 'https://ror.org/05c88z534 Dolnośląski Park Innowacji i Nauki'),
(17355, 'https://ror.org/03bvw7q76', 'no_lang_code', 1, 'https://ror.org/03bvw7q76 Dolphin Design (France)'),
(17356, 'https://ror.org/054w4h840', 'no_lang_code', 1, 'https://ror.org/054w4h840 Enig Associates (United States)'),
(17357, 'https://ror.org/015dvz544', 'no_lang_code', 1, 'https://ror.org/015dvz544 European Safety Management Group'),
(17358, 'https://ror.org/0522v1289', 'it', 1, 'https://ror.org/0522v1289 Museo Nazionale della Scienza e della Tecnologia Leonardo da Vinci'),
(17359, 'https://ror.org/040y40f79', 'it', 1, 'https://ror.org/040y40f79 Fondazione per Adroterapia Oncologica'),
(17360, 'https://ror.org/04f6c7j28', 'no_lang_code', 1, 'https://ror.org/04f6c7j28 ESP Central (United Kingdom)'),
(17361, 'https://ror.org/02kf1n146', 'no_lang_code', 1, 'https://ror.org/02kf1n146 Poweo (France)'),
(17362, 'https://ror.org/03df4xq04', 'no_lang_code', 1, 'https://ror.org/03df4xq04 Espion (Ireland)'),
(17363, 'https://ror.org/00qq8tm81', 'en', 1, 'https://ror.org/00qq8tm81 Fairmont Senior High School'),
(17364, 'https://ror.org/04hsn8391', 'en', 1, 'https://ror.org/04hsn8391 Fairview Health Services'),
(17365, 'https://ror.org/00m35tp20', 'no_lang_code', 1, 'https://ror.org/00m35tp20 2D Formazione (Italy)'),
(17366, 'https://ror.org/027b8j852', 'no_lang_code', 1, 'https://ror.org/027b8j852 Domca (Spain)'),
(17367, 'https://ror.org/02w8ez808', 'it', 1, 'https://ror.org/02w8ez808 Fondazione Stella Maris'),
(17368, 'https://ror.org/035hs0289', 'en', 1, 'https://ror.org/035hs0289 e-Forum'),
(17369, 'https://ror.org/00xryfx14', 'no_lang_code', 1, 'https://ror.org/00xryfx14 Econet (Spain)'),
(17370, 'https://ror.org/0500x9g47', 'no_lang_code', 1, 'https://ror.org/0500x9g47 Senergy (United Kingdom)'),
(17371, 'https://ror.org/00sghps33', 'no_lang_code', 1, 'https://ror.org/00sghps33 Essen BioScience (United States)'),
(17372, 'https://ror.org/01zbqy906', 'no_lang_code', 1, 'https://ror.org/01zbqy906 Econolyst (United Kingdom)'),
(17373, 'https://ror.org/057n96m12', 'no_lang_code', 1, 'https://ror.org/057n96m12 Zanardi Fonderie (Italy)'),
(17374, 'https://ror.org/05vnht861', 'en', 1, 'https://ror.org/05vnht861 Essex County Council'),
(17375, 'https://ror.org/03qtxy027', 'en', 1, 'https://ror.org/03qtxy027 Fonds voor Wetenschappelijk Onderzoek - Vlaanderen Research Foundation - Flanders'),
(17376, 'https://ror.org/00nexz950', 'no_lang_code', 1, 'https://ror.org/00nexz950 Essrg (Hungary)'),
(17377, 'https://ror.org/02sdz5p32', 'no_lang_code', 1, 'https://ror.org/02sdz5p32 Fontanellas Y Marti (Spain)'),
(17378, 'https://ror.org/00v4pk551', 'no_lang_code', 1, 'https://ror.org/00v4pk551 Ecoplan (Switzerland)'),
(17379, 'https://ror.org/05deyvp19', 'no_lang_code', 1, 'https://ror.org/05deyvp19 Food Machinery Española (Spain)'),
(17380, 'https://ror.org/01a669d22', 'no_lang_code', 1, 'https://ror.org/01a669d22 Falex Tribology (Belgium)'),
(17381, 'https://ror.org/00bm89f36', 'en', 1, 'https://ror.org/00bm89f36 Food Safety Authority of Ireland Údarás Sábháilteachta Bia na hÉireann'),
(17382, 'https://ror.org/048mhm070', 'it', 1, 'https://ror.org/048mhm070 Famiglia Artigiana Fratelli Ruffatti'),
(17383, 'https://ror.org/01rgajx11', 'en', 1, 'https://ror.org/01rgajx11 Families Together in New York State'),
(17384, 'https://ror.org/0093px637', 'pl', 1, 'https://ror.org/0093px637 Fundacja Inkubator'),
(17385, 'https://ror.org/033j79j49', 'en', 1, 'https://ror.org/033j79j49 Family & Children’s Services'),
(17386, 'https://ror.org/010nr8d35', 'en', 1, 'https://ror.org/010nr8d35 Family Cafe'),
(17387, 'https://ror.org/02nf85c88', 'no_lang_code', 1, 'https://ror.org/02nf85c88 Estaleiros Navais de Peniche (Portugal)'),
(17388, 'https://ror.org/05k7amn53', 'no_lang_code', 1, 'https://ror.org/05k7amn53 ESTeam (Sweden)'),
(17389, 'https://ror.org/04d75wd27', 'en', 1, 'https://ror.org/04d75wd27 Estonian Educational and Research Network'),
(17390, 'https://ror.org/05veett18', 'en', 1, 'https://ror.org/05veett18 Technology Partners Foundation'),
(17391, 'https://ror.org/04zpv5q97', 'en', 1, 'https://ror.org/04zpv5q97 Stockholm Environment Institute Säästva Eesti Instituut, Stockholmi Keskkonnainstituudi Tallinna Keskus'),
(17392, 'https://ror.org/01rvyy374', 'en', 1, 'https://ror.org/01rvyy374 Majandus- ja Kommunikatsiooniministeerium Ministry of Economic Affairs and Communications'),
(17393, 'https://ror.org/010wk5k38', 'en', 1, 'https://ror.org/010wk5k38 Foundation for Applied Information Technology in Environment, Agriculture and Global Change'),
(17394, 'https://ror.org/01cn9w853', 'no_lang_code', 1, 'https://ror.org/01cn9w853 FunderMax (Austria)'),
(17395, 'https://ror.org/05gm3ry77', 'pt', 1, 'https://ror.org/05gm3ry77 Estrutura de Missão para a Extensão da Plataforma Continental Task Group for the Extension of the Continental Shelf'),
(17396, 'https://ror.org/03s48cw66', 'en', 1, 'https://ror.org/03s48cw66 SBH Behavioral Health'),
(17397, 'https://ror.org/014vt6y07', 'no_lang_code', 1, 'https://ror.org/014vt6y07 Foreca (Finland)'),
(17398, 'https://ror.org/04z7a1k12', 'en', 1, 'https://ror.org/04z7a1k12 Family Support Network'),
(17399, 'https://ror.org/040cyhh47', 'no_lang_code', 1, 'https://ror.org/040cyhh47 Family Works'),
(17400, 'https://ror.org/05kg32t88', 'no_lang_code', 1, 'https://ror.org/05kg32t88 Estanda (Spain)'),
(17401, 'https://ror.org/04vfnb935', 'no_lang_code', 1, 'https://ror.org/04vfnb935 Foreco (Netherlands)'),
(17402, 'https://ror.org/02vm4nz81', 'no_lang_code', 1, 'https://ror.org/02vm4nz81 ECT Oekotoxikologie (Germany)'),
(17403, 'https://ror.org/02qfp2e06', 'no_lang_code', 1, 'https://ror.org/02qfp2e06 Edacentrum'),
(17404, 'https://ror.org/0520ezd47', 'no_lang_code', 1, 'https://ror.org/0520ezd47 Esys (United Kingdom)'),
(17405, 'https://ror.org/01kqydj80', 'es', 1, 'https://ror.org/01kqydj80 Fundación para el Desarrollo de la Función Social de las Comunicaciones'),
(17406, 'https://ror.org/041ad9g51', 'no_lang_code', 1, 'https://ror.org/041ad9g51 EDALab (Italy)'),
(17407, 'https://ror.org/00hsg6w24', 'no_lang_code', 1, 'https://ror.org/00hsg6w24 ET Enterprises (United Kingdom)'),
(17408, 'https://ror.org/05q482v10', 'no_lang_code', 1, 'https://ror.org/05q482v10 Ilunion Consulting (Spain)'),
(17409, 'https://ror.org/01m418p31', 'no_lang_code', 1, 'https://ror.org/01m418p31 Schmolz Bickenbach (Germany)'),
(17410, 'https://ror.org/030bsqk21', 'no_lang_code', 1, 'https://ror.org/030bsqk21 Plant Health Care (United States)'),
(17411, 'https://ror.org/04gk6e387', 'en', 1, 'https://ror.org/04gk6e387 Forest-based Sector Technology Platform'),
(17412, 'https://ror.org/029kpsy61', 'en', 1, 'https://ror.org/029kpsy61 Eden Project'),
(17413, 'https://ror.org/00d8t8t88', 'en', 1, 'https://ror.org/00d8t8t88 ETC International'),
(17414, 'https://ror.org/04xwa2949', 'no_lang_code', 1, 'https://ror.org/04xwa2949 ForestRe (United Kingdom)'),
(17415, 'https://ror.org/004fhx245', 'no_lang_code', 1, 'https://ror.org/004fhx245 Farasis Energy (United States)'),
(17416, 'https://ror.org/05e99em22', 'fi', 1, 'https://ror.org/05e99em22 Etelä-Karjalan sosiaali ja terveyspiiri South Karelia Social and Health Care District'),
(17417, 'https://ror.org/03ht7jd59', 'en', 1, 'https://ror.org/03ht7jd59 Edgewood Independent School District'),
(17418, 'https://ror.org/00czndn44', 'no_lang_code', 1, 'https://ror.org/00czndn44 Eaton (United States)'),
(17419, 'https://ror.org/018zhtp04', 'no_lang_code', 1, 'https://ror.org/018zhtp04 Manoir Industries (France)'),
(17420, 'https://ror.org/04ccq0223', 'no_lang_code', 1, 'https://ror.org/04ccq0223 Future Carbon (Germany)'),
(17421, 'https://ror.org/03q5psq50', 'no_lang_code', 1, 'https://ror.org/03q5psq50 EDI Group (United Kingdom)'),
(17422, 'https://ror.org/001gdnj66', 'no_lang_code', 1, 'https://ror.org/001gdnj66 Future Diagnostics (Netherlands)'),
(17423, 'https://ror.org/00dj8tn85', 'no_lang_code', 1, 'https://ror.org/00dj8tn85 Posti Group (Finland)'),
(17424, 'https://ror.org/03v5kxx62', 'en', 1, 'https://ror.org/03v5kxx62 Farmworker Justice'),
(17425, 'https://ror.org/04nvb1488', 'en', 1, 'https://ror.org/04nvb1488 FutureEverything'),
(17426, 'https://ror.org/03ee26z15', 'no_lang_code', 1, 'https://ror.org/03ee26z15 Formatec Technical Ceramics (Netherlands)'),
(17427, 'https://ror.org/033rk2n62', 'no_lang_code', 1, 'https://ror.org/033rk2n62 Etiometry (United States)'),
(17428, 'https://ror.org/01a50ww41', 'no_lang_code', 1, 'https://ror.org/01a50ww41 FVA New Media Research (Italy)'),
(17429, 'https://ror.org/01nehxb52', 'no_lang_code', 1, 'https://ror.org/01nehxb52 Etma (Greece)'),
(17430, 'https://ror.org/05cz9t057', 'no_lang_code', 1, 'https://ror.org/05cz9t057 Edinethics (United Kingdom)'),
(17431, 'https://ror.org/05amva544', 'no_lang_code', 1, 'https://ror.org/05amva544 Fyodor Biotechnologies (United States)'),
(17432, 'https://ror.org/03ekg6244', 'no_lang_code', 1, 'https://ror.org/03ekg6244 Etna Biotech (Italy)'),
(17433, 'https://ror.org/0063bq527', 'no_lang_code', 1, 'https://ror.org/0063bq527 Farran Technology (Ireland)'),
(17434, 'https://ror.org/051w1mx35', 'no_lang_code', 1, 'https://ror.org/051w1mx35 Thales (Portugal)'),
(17435, 'https://ror.org/00m57xb34', 'no_lang_code', 1, 'https://ror.org/00m57xb34 G24 Power (United Kingdom)'),
(17436, 'https://ror.org/03b01rf26', 'it', 1, 'https://ror.org/03b01rf26 Formedil'),
(17437, 'https://ror.org/03g4gca53', 'en', 1, 'https://ror.org/03g4gca53 Florida SouthWestern State College'),
(17438, 'https://ror.org/011e1gw30', 'no_lang_code', 1, 'https://ror.org/011e1gw30 Forming Technologies (Canada)'),
(17439, 'https://ror.org/04ywd9355', 'en', 1, 'https://ror.org/04ywd9355 EDItEUR'),
(17440, 'https://ror.org/03mfabb88', 'no_lang_code', 1, 'https://ror.org/03mfabb88 FormTech (Germany)'),
(17441, 'https://ror.org/01ejvy845', 'no_lang_code', 1, 'https://ror.org/01ejvy845 Edna Pasher Ph.D & Associates (Israel)'),
(17442, 'https://ror.org/05jqsyj76', 'en', 1, 'https://ror.org/05jqsyj76 German Games Industry Association'),
(17443, 'https://ror.org/04kbxxk13', 'en', 1, 'https://ror.org/04kbxxk13 Research Centre for Applied System Safety and Industrial Medicine'),
(17444, 'https://ror.org/010f6he14', 'no_lang_code', 1, 'https://ror.org/010f6he14 Techno-Membranes (France)'),
(17445, 'https://ror.org/032303h97', 'no_lang_code', 1, 'https://ror.org/032303h97 Geographic Information Management (Belgium)'),
(17446, 'https://ror.org/02by9nb62', 'en', 1, 'https://ror.org/02by9nb62 Diocese of Brooklyn'),
(17447, 'https://ror.org/038srqh25', 'fr', 1, 'https://ror.org/038srqh25 Études Métallurgiques Traitements Thermiques'),
(17448, 'https://ror.org/05xpqbj32', 'no_lang_code', 1, 'https://ror.org/05xpqbj32 Forschungsinstitut für Mineralische und Metallische Werkstoffe Edelsteine/Edemetalle Research Institute for Mineral and Metallic Materials Gemstones/Precious Metals'),
(17449, 'https://ror.org/01pe3b474', 'no_lang_code', 1, 'https://ror.org/01pe3b474 Global Maritime Services (United Kingdom)'),
(17450, 'https://ror.org/014743444', 'de', 1, 'https://ror.org/014743444 Forschungsinstitut für Wärmeschutz München'),
(17451, 'https://ror.org/042zjqf83', 'en', 1, 'https://ror.org/042zjqf83 Hohenstein Institute'),
(17452, 'https://ror.org/03m6f8x93', 'no_lang_code', 1, 'https://ror.org/03m6f8x93 GTD System & Software Engineering (Spain)'),
(17453, 'https://ror.org/015x9tq79', 'de', 1, 'https://ror.org/015x9tq79 Forschungsinstitut Technologie und Behinderung Research Institute Technology and Disability'),
(17454, 'https://ror.org/03682w532', 'no_lang_code', 1, 'https://ror.org/03682w532 EUnited (Belgium)'),
(17455, 'https://ror.org/03t6r2q91', 'no_lang_code', 1, 'https://ror.org/03t6r2q91 Ec3 NetWorks (Austria)'),
(17456, 'https://ror.org/05kc20304', 'no_lang_code', 1, 'https://ror.org/05kc20304 Netsmart Technologies (United States)'),
(17457, 'https://ror.org/03jg2ja29', 'de', 1, 'https://ror.org/03jg2ja29 Forschungszentrum für Kältetechnik und Wärmepumpen'),
(17458, 'https://ror.org/01pv48e96', 'en', 1, 'https://ror.org/01pv48e96 Forschungszentrum für Medizintechnik und Biotechnologie Research Centre of Medical Technology and Biotechnology'),
(17459, 'https://ror.org/0039w6753', 'no_lang_code', 1, 'https://ror.org/0039w6753 Etas (Germany)'),
(17460, 'https://ror.org/010y19q47', 'en', 1, 'https://ror.org/010y19q47 Earth Cryosphere Institute Федеральное государственное бюджетное учреждение науки Институт криосферы Земли Сибирского отделения Российской академии наук'),
(17461, 'https://ror.org/03jtz4s80', 'no_lang_code', 1, 'https://ror.org/03jtz4s80 Microsoft (Norway)'),
(17462, 'https://ror.org/01ke24198', 'no_lang_code', 1, 'https://ror.org/01ke24198 EUrelations (Switzerland)'),
(17463, 'https://ror.org/03nw55154', 'no_lang_code', 1, 'https://ror.org/03nw55154 Fastcom Technology (Switzerland)'),
(17464, 'https://ror.org/00h4bkt10', 'no_lang_code', 1, 'https://ror.org/00h4bkt10 GALAB Laboratories (Germany)'),
(17465, 'https://ror.org/031evws22', 'no_lang_code', 1, 'https://ror.org/031evws22 Galaxy Biotech (United States)'),
(17466, 'https://ror.org/02qbjfj51', 'no_lang_code', 1, 'https://ror.org/02qbjfj51 Galdos Systems (Canada)'),
(17467, 'https://ror.org/053n8rm70', 'en', 1, 'https://ror.org/053n8rm70 European Patients Forum'),
(17468, 'https://ror.org/00e45j822', 'no_lang_code', 1, 'https://ror.org/00e45j822 Eduworks (United States)'),
(17469, 'https://ror.org/01nef6p29', 'no_lang_code', 1, 'https://ror.org/01nef6p29 Gale & Snowden Architects (United Kingdom)'),
(17470, 'https://ror.org/00yr71497', 'de', 1, 'https://ror.org/00yr71497 Institut für regionale Studien in Europa'),
(17471, 'https://ror.org/03f9kek24', 'no_lang_code', 1, 'https://ror.org/03f9kek24 Fatman (Finland)'),
(17472, 'https://ror.org/05k52qr71', 'no_lang_code', 1, 'https://ror.org/05k52qr71 Euroitalia (Italy)'),
(17473, 'https://ror.org/05xj9r987', 'en', 1, 'https://ror.org/05xj9r987 Forum Internazionale ed Europeo di Ricerche sull’Immigrazione International and European Forum on Migration Research'),
(17474, 'https://ror.org/041d53j42', 'en', 1, 'https://ror.org/041d53j42 Eesti Rahvusraamatukogu National Library of Estonia Национальная библиотека Эстонии'),
(17475, 'https://ror.org/03kg1jt28', 'en', 1, 'https://ror.org/03kg1jt28 European Research Institute on Cooperative and Social Enterprise'),
(17476, 'https://ror.org/04syjst69', 'no_lang_code', 1, 'https://ror.org/04syjst69 GALLOP Corporation (United States)'),
(17477, 'https://ror.org/02dmsrt53', 'en', 1, 'https://ror.org/02dmsrt53 Eesti-Rootsi Vaimse Tervise ja Suitsidoloogia Instituut Estonian-Swedish Mental Health and Suicidology Institute'),
(17478, 'https://ror.org/039pwme76', 'no_lang_code', 1, 'https://ror.org/039pwme76 Viasat (United States)'),
(17479, 'https://ror.org/03dq1ad60', 'no_lang_code', 1, 'https://ror.org/03dq1ad60 Galorath (United Kingdom)'),
(17480, 'https://ror.org/004zaxy19', 'no_lang_code', 1, 'https://ror.org/004zaxy19 Faurecia (France)'),
(17481, 'https://ror.org/01p7pw236', 'no_lang_code', 1, 'https://ror.org/01p7pw236 Gamax (Hungary)'),
(17482, 'https://ror.org/04d3zk673', 'no_lang_code', 1, 'https://ror.org/04d3zk673 Faust & Backhaus Environmental Consulting'),
(17483, 'https://ror.org/00svj0p64', 'no_lang_code', 1, 'https://ror.org/00svj0p64 Eurix (Italy)'),
(17484, 'https://ror.org/00rqqd590', 'no_lang_code', 1, 'https://ror.org/00rqqd590 Efficient Innovation (France)'),
(17485, 'https://ror.org/00agrnm56', 'no_lang_code', 1, 'https://ror.org/00agrnm56 SKF (Italy)'),
(17486, 'https://ror.org/004bhtn60', 'no_lang_code', 1, 'https://ror.org/004bhtn60 Eftas Remote Sensing Technology Transfer (Germany)'),
(17487, 'https://ror.org/04qs86835', 'no_lang_code', 1, 'https://ror.org/04qs86835 Euro Projects (United Kingdom)'),
(17488, 'https://ror.org/05peac723', 'no_lang_code', 1, 'https://ror.org/05peac723 Gammastamp (Italy)'),
(17489, 'https://ror.org/00ad1q772', 'no_lang_code', 1, 'https://ror.org/00ad1q772 Eurodecision (France)'),
(17490, 'https://ror.org/04d0tnm02', 'no_lang_code', 1, 'https://ror.org/04d0tnm02 Euro Heat Pipes (Belgium)'),
(17491, 'https://ror.org/021zktr97', 'no_lang_code', 1, 'https://ror.org/021zktr97 Dinex (Finland)'),
(17492, 'https://ror.org/02f0m7778', 'no_lang_code', 1, 'https://ror.org/02f0m7778 Fomento de Construcciones y Contratas (Spain)'),
(17493, 'https://ror.org/051p1yx12', 'no_lang_code', 1, 'https://ror.org/051p1yx12 Egetaepper (Denmark)'),
(17494, 'https://ror.org/02s6qaw64', 'no_lang_code', 1, 'https://ror.org/02s6qaw64 Egnatia Odos (Greece)'),
(17495, 'https://ror.org/056z2mp63', 'fr', 1, 'https://ror.org/056z2mp63 Euro Inox'),
(17496, 'https://ror.org/04638h934', 'no_lang_code', 1, 'https://ror.org/04638h934 FCT Systeme (Germany)'),
(17497, 'https://ror.org/04dree482', 'en', 1, 'https://ror.org/04dree482 Euro Inter'),
(17498, 'https://ror.org/02ndzwq27', 'en', 1, 'https://ror.org/02ndzwq27 Foundation for Innovation and Technology Transfer'),
(17499, 'https://ror.org/0591zqj11', 'no_lang_code', 1, 'https://ror.org/0591zqj11 Gas Sensing Solutions (United Kingdom)'),
(17500, 'https://ror.org/05fea9w83', 'de', 1, 'https://ror.org/05fea9w83 Gas- und Wärme-Institut Essen'),
(17501, 'https://ror.org/03t95vv46', 'no_lang_code', 1, 'https://ror.org/03t95vv46 Gate Fuels (United States)'),
(17502, 'https://ror.org/057w1af56', 'en', 1, 'https://ror.org/057w1af56 Gateway Community Services'),
(17503, 'https://ror.org/0176btp32', 'no_lang_code', 1, 'https://ror.org/0176btp32 Tribal Group'),
(17504, 'https://ror.org/02tzm9s47', 'en', 1, 'https://ror.org/02tzm9s47 Foundation for Research on Sexually Transmitted Diseases'),
(17505, 'https://ror.org/03pmf2g70', 'no_lang_code', 1, 'https://ror.org/03pmf2g70 Fdt Depuratori d'' Acqua (Italy)'),
(17506, 'https://ror.org/057x3a607', 'en', 1, 'https://ror.org/057x3a607 Foundation for Science Technology and Civilisation'),
(17507, 'https://ror.org/0033e0z76', 'no_lang_code', 1, 'https://ror.org/0033e0z76 Eidos (Italy)'),
(17508, 'https://ror.org/044nrx235', 'en', 1, 'https://ror.org/044nrx235 Gay-Straight Alliance Network'),
(17509, 'https://ror.org/05kmn9e50', 'en', 1, 'https://ror.org/05kmn9e50 Greater Bridgeport Area Prevention Program');
INSERT INTO `rors` VALUES
(17510, 'https://ror.org/054ckmy78', 'no_lang_code', 1, 'https://ror.org/054ckmy78 Cap Eiger (Spain)'),
(17511, 'https://ror.org/023dbr455', 'no_lang_code', 1, 'https://ror.org/023dbr455 Eidon (Italy)'),
(17512, 'https://ror.org/02v6nd536', 'en', 1, 'https://ror.org/02v6nd536 Federal Ministry of Health'),
(17513, 'https://ror.org/03n0ge846', 'no_lang_code', 1, 'https://ror.org/03n0ge846 Eight19 (United Kingdom)'),
(17514, 'https://ror.org/02bg76z40', 'no_lang_code', 1, 'https://ror.org/02bg76z40 Eikos (United States)'),
(17515, 'https://ror.org/043m8qc33', 'no_lang_code', 1, 'https://ror.org/043m8qc33 European Institute of Printed Circuits'),
(17516, 'https://ror.org/023kawg24', 'no_lang_code', 1, 'https://ror.org/023kawg24 Federal Mogul (France)'),
(17517, 'https://ror.org/015aet155', 'no_lang_code', 1, 'https://ror.org/015aet155 Euromedica'),
(17518, 'https://ror.org/03c8hnh70', 'en', 1, 'https://ror.org/03c8hnh70 German Breast group'),
(17519, 'https://ror.org/04kcn2w48', 'no_lang_code', 1, 'https://ror.org/04kcn2w48 Eisenmann (Germany)'),
(17520, 'https://ror.org/004hxvm93', 'no_lang_code', 1, 'https://ror.org/004hxvm93 Fractal Systems (United States)'),
(17521, 'https://ror.org/046a8r834', 'no_lang_code', 1, 'https://ror.org/046a8r834 Siamab Therapeutics (United States)'),
(17522, 'https://ror.org/05sy37k83', 'no_lang_code', 1, 'https://ror.org/05sy37k83 Eurofins (United States)'),
(17523, 'https://ror.org/047b7n641', 'no_lang_code', 1, 'https://ror.org/047b7n641 Gilardoni Vittorio (Italy)'),
(17524, 'https://ror.org/046etfw78', 'no_lang_code', 1, 'https://ror.org/046etfw78 Gilden Photonics (United Kingdom)'),
(17525, 'https://ror.org/00z2thw25', 'no_lang_code', 1, 'https://ror.org/00z2thw25 Ekspla (Lithuania)'),
(17526, 'https://ror.org/00sprgc32', 'no_lang_code', 1, 'https://ror.org/00sprgc32 Ekspobalta (Lithuania)'),
(17527, 'https://ror.org/02w7v5077', 'en', 1, 'https://ror.org/02w7v5077 El Centro Elementary School District'),
(17528, 'https://ror.org/00e1c8t20', 'en', 1, 'https://ror.org/00e1c8t20 EuroGeoSurveys'),
(17529, 'https://ror.org/048t7p270', 'fr', 1, 'https://ror.org/048t7p270 GDG Environnement'),
(17530, 'https://ror.org/025120d02', 'en', 1, 'https://ror.org/025120d02 European Ground Penetrating Radar Association'),
(17531, 'https://ror.org/02pw9b361', 'no_lang_code', 1, 'https://ror.org/02pw9b361 Francisco Muñoz Irles (Spain)'),
(17532, 'https://ror.org/05qq9j971', 'no_lang_code', 1, 'https://ror.org/05qq9j971 Giotto Biotech (Italy)'),
(17533, 'https://ror.org/01d84q841', 'no_lang_code', 1, 'https://ror.org/01d84q841 Eurohelp Consulting'),
(17534, 'https://ror.org/01f6y4z59', 'en', 1, 'https://ror.org/01f6y4z59 Benjamin Franklin Institute of Technology'),
(17535, 'https://ror.org/03e1jqq60', 'en', 1, 'https://ror.org/03e1jqq60 Franklin Pierce University'),
(17536, 'https://ror.org/01bwmvz52', 'no_lang_code', 1, 'https://ror.org/01bwmvz52 Frantic Films (Canada)'),
(17537, 'https://ror.org/00matwt90', 'no_lang_code', 1, 'https://ror.org/00matwt90 Giraf PM (Germany)'),
(17538, 'https://ror.org/00p8rk339', 'no_lang_code', 1, 'https://ror.org/00p8rk339 Euroinks (Italy)'),
(17539, 'https://ror.org/054sw3365', 'en', 1, 'https://ror.org/054sw3365 GIS - Transfer Center Foundation'),
(17540, 'https://ror.org/05gv0a532', 'no_lang_code', 1, 'https://ror.org/05gv0a532 Fraport (Germany)'),
(17541, 'https://ror.org/02j3h8a82', 'no_lang_code', 1, 'https://ror.org/02j3h8a82 El Corte Inglés (Portugal)'),
(17542, 'https://ror.org/04za13042', 'no_lang_code', 1, 'https://ror.org/04za13042 GL Chemtec International (Canada)'),
(17543, 'https://ror.org/03dyemd88', 'en', 1, 'https://ror.org/03dyemd88 Nunez Community College'),
(17544, 'https://ror.org/05hp30b06', 'en', 1, 'https://ror.org/05hp30b06 Exploration Place Museum and Science Centre'),
(17545, 'https://ror.org/05ghq7b13', 'no_lang_code', 1, 'https://ror.org/05ghq7b13 Vergnano (Italy)'),
(17546, 'https://ror.org/02c684e48', 'no_lang_code', 1, 'https://ror.org/02c684e48 Elbit Systems (Israel)'),
(17547, 'https://ror.org/02378t231', 'en', 1, 'https://ror.org/02378t231 Glamorgan-Gwent Archaeological Trust'),
(17548, 'https://ror.org/05fezbd26', 'no_lang_code', 1, 'https://ror.org/05fezbd26 Elcriton (United States)'),
(17549, 'https://ror.org/025xcha17', 'en', 1, 'https://ror.org/025xcha17 Glasgow City Council'),
(17550, 'https://ror.org/059vksz24', 'en', 1, 'https://ror.org/059vksz24 Glass Technology Services'),
(17551, 'https://ror.org/00m76dx40', 'no_lang_code', 1, 'https://ror.org/00m76dx40 Gliamed (United States)'),
(17552, 'https://ror.org/031mjy523', 'no_lang_code', 1, 'https://ror.org/031mjy523 Europa Media (Hungary)'),
(17553, 'https://ror.org/029pbd337', 'en', 1, 'https://ror.org/029pbd337 EuropaBio'),
(17554, 'https://ror.org/02np3th21', 'en', 1, 'https://ror.org/02np3th21 Europace'),
(17555, 'https://ror.org/04fbd2g40', 'no_lang_code', 1, 'https://ror.org/04fbd2g40 BioNTech (Germany)'),
(17556, 'https://ror.org/05yq10v05', 'en', 1, 'https://ror.org/05yq10v05 Global Alliance of Mental Illness Advocacy Networks-Europe'),
(17557, 'https://ror.org/00c9qbz52', 'en', 1, 'https://ror.org/00c9qbz52 European Foundation for Clinical Nanomedicine'),
(17558, 'https://ror.org/00xy4nn21', 'no_lang_code', 1, 'https://ror.org/00xy4nn21 FRE Composites (Canada)'),
(17559, 'https://ror.org/006nzxy18', 'no_lang_code', 1, 'https://ror.org/006nzxy18 Senso (Spain)'),
(17560, 'https://ror.org/01c4p0b96', 'no_lang_code', 1, 'https://ror.org/01c4p0b96 Global Digital Technologies (Greece)'),
(17561, 'https://ror.org/01kq87685', 'no_lang_code', 1, 'https://ror.org/01kq87685 Electricidade dos Açores (Portugal)'),
(17562, 'https://ror.org/024awmw52', 'no_lang_code', 1, 'https://ror.org/024awmw52 GECO (Portugal)'),
(17563, 'https://ror.org/05hq14k73', 'en', 1, 'https://ror.org/05hq14k73 Advanced Lead Acid Battery Consortium'),
(17564, 'https://ror.org/0098vp187', 'en', 1, 'https://ror.org/0098vp187 Global Health Systems Solutions'),
(17565, 'https://ror.org/056vj7p55', 'no_lang_code', 1, 'https://ror.org/056vj7p55 ElectroCell (Sweden)'),
(17566, 'https://ror.org/0403wzz51', 'en', 1, 'https://ror.org/0403wzz51 European Aquaculture Technology and Innovation Platform'),
(17567, 'https://ror.org/04hv45e07', 'no_lang_code', 1, 'https://ror.org/04hv45e07 Gedex (Canada)'),
(17568, 'https://ror.org/03ztvfr23', 'no_lang_code', 1, 'https://ror.org/03ztvfr23 Global Inkjet Systems (United Kingdom)'),
(17569, 'https://ror.org/05xxwq927', 'en', 1, 'https://ror.org/05xxwq927 European Blind Union'),
(17570, 'https://ror.org/01msce522', 'en', 1, 'https://ror.org/01msce522 Contractor UK'),
(17571, 'https://ror.org/02395mz47', 'no_lang_code', 1, 'https://ror.org/02395mz47 GlobalSign (Belgium)'),
(17572, 'https://ror.org/04je8vh10', 'no_lang_code', 1, 'https://ror.org/04je8vh10 DryScrub (United States)'),
(17573, 'https://ror.org/0286c0965', 'en', 1, 'https://ror.org/0286c0965 LOBA - Customer Experience Design'),
(17574, 'https://ror.org/028ccnc13', 'no_lang_code', 1, 'https://ror.org/028ccnc13 Geltz Umwelt-Technologie (Germany)'),
(17575, 'https://ror.org/0499vqt91', 'no_lang_code', 1, 'https://ror.org/0499vqt91 Globe Water (Sweden)'),
(17576, 'https://ror.org/0498ppz55', 'no_lang_code', 1, 'https://ror.org/0498ppz55 Gel-Del Technologies (United States)'),
(17577, 'https://ror.org/05cxce809', 'no_lang_code', 1, 'https://ror.org/05cxce809 EcologicTech (United States)'),
(17578, 'https://ror.org/043cevr52', 'no_lang_code', 1, 'https://ror.org/043cevr52 Gem Pharmaceuticals (United States)'),
(17579, 'https://ror.org/01b5g7e71', 'en', 1, 'https://ror.org/01b5g7e71 SAFE consortium'),
(17580, 'https://ror.org/030rzq778', 'en', 1, 'https://ror.org/030rzq778 Fresh Pond Research Institute'),
(17581, 'https://ror.org/006hgn665', 'no_lang_code', 1, 'https://ror.org/006hgn665 Glotech (United States)'),
(17582, 'https://ror.org/0108xkp59', 'no_lang_code', 1, 'https://ror.org/0108xkp59 Gesellschaft für Mikroelektronikanwendung Chemnitz (Germany)'),
(17583, 'https://ror.org/0390pfr19', 'en', 1, 'https://ror.org/0390pfr19 European Association for the Study of Obesity'),
(17584, 'https://ror.org/00ja9zg03', 'de', 1, 'https://ror.org/00ja9zg03 Gematik Gesellschaft für Telematikanwendungen der Gesundheitskarte'),
(17585, 'https://ror.org/01xezpj37', 'en', 1, 'https://ror.org/01xezpj37 European Association of Development Agencies'),
(17586, 'https://ror.org/01atpvt41', 'no_lang_code', 1, 'https://ror.org/01atpvt41 Freshseal Limited (United Kingdom)'),
(17587, 'https://ror.org/03v1rmf39', 'no_lang_code', 1, 'https://ror.org/03v1rmf39 Electron Energy Corporation (United States)'),
(17588, 'https://ror.org/036ay9k05', 'en', 1, 'https://ror.org/036ay9k05 Fresno City College'),
(17589, 'https://ror.org/028a1kb39', 'nl', 1, 'https://ror.org/028a1kb39 Gemeente Helmond'),
(17590, 'https://ror.org/001te2382', 'no_lang_code', 1, 'https://ror.org/001te2382 Electronic Arts (United Kingdom)'),
(17591, 'https://ror.org/04q4pzv93', 'no_lang_code', 1, 'https://ror.org/04q4pzv93 Glottal Enterprises (United States)'),
(17592, 'https://ror.org/01g986079', 'no_lang_code', 1, 'https://ror.org/01g986079 Fresti (Portugal)'),
(17593, 'https://ror.org/051xf7e84', 'en', 1, 'https://ror.org/051xf7e84 Gloucestershire County Council'),
(17594, 'https://ror.org/04mw34986', 'en', 1, 'https://ror.org/04mw34986 Gloucestershire Hospitals NHS Foundation Trust'),
(17595, 'https://ror.org/05ecnxy68', 'no_lang_code', 1, 'https://ror.org/05ecnxy68 Electronic Systems Design (Malta)'),
(17596, 'https://ror.org/01cy78b58', 'en', 1, 'https://ror.org/01cy78b58 European Business Register'),
(17597, 'https://ror.org/031fm6b66', 'no_lang_code', 1, 'https://ror.org/031fm6b66 GlycoMar (United Kingdom)'),
(17598, 'https://ror.org/05ccmc339', 'no_lang_code', 1, 'https://ror.org/05ccmc339 Etra (Spain)'),
(17599, 'https://ror.org/03vyrpd61', 'no_lang_code', 1, 'https://ror.org/03vyrpd61 GFI Informática (Spain)'),
(17600, 'https://ror.org/042fpk261', 'no_lang_code', 1, 'https://ror.org/042fpk261 Freudenberg (Germany)'),
(17601, 'https://ror.org/031xnh898', 'no_lang_code', 1, 'https://ror.org/031xnh898 Glycosyn (United States)'),
(17602, 'https://ror.org/031x5zp43', 'en', 1, 'https://ror.org/031x5zp43 European Centre for Knowledge and Technology Transfer'),
(17603, 'https://ror.org/01yhxf067', 'no_lang_code', 1, 'https://ror.org/01yhxf067 Kaiam Corporation (United States)'),
(17604, 'https://ror.org/015w14j53', 'no_lang_code', 1, 'https://ror.org/015w14j53 Gneuss (Germany)'),
(17605, 'https://ror.org/04wg1q828', 'en', 1, 'https://ror.org/04wg1q828 Goalistics'),
(17606, 'https://ror.org/05p0z2z51', 'en', 1, 'https://ror.org/05p0z2z51 Goddard College'),
(17607, 'https://ror.org/01k8bzw08', 'no_lang_code', 1, 'https://ror.org/01k8bzw08 Genalyte (United States)'),
(17608, 'https://ror.org/03f5avr03', 'en', 1, 'https://ror.org/03f5avr03 Electrotechnical Institute'),
(17609, 'https://ror.org/047t0gj04', 'en', 1, 'https://ror.org/047t0gj04 Friendship College'),
(17610, 'https://ror.org/059s01p87', 'no_lang_code', 1, 'https://ror.org/059s01p87 AFRY (United Kingdom)'),
(17611, 'https://ror.org/01zjyec98', 'no_lang_code', 1, 'https://ror.org/01zjyec98 goHDR (United Kingdom)'),
(17612, 'https://ror.org/05c56kx15', 'no_lang_code', 1, 'https://ror.org/05c56kx15 Fronius (Austria)'),
(17613, 'https://ror.org/00zk89346', 'no_lang_code', 1, 'https://ror.org/00zk89346 Biolinq (United States)'),
(17614, 'https://ror.org/029djx285', 'no_lang_code', 1, 'https://ror.org/029djx285 Front Edge Technology (United States)'),
(17615, 'https://ror.org/015reqs57', 'no_lang_code', 1, 'https://ror.org/015reqs57 Goknow (United States)'),
(17616, 'https://ror.org/032qg9c61', 'en', 1, 'https://ror.org/032qg9c61 European Community Shipowners'' Associations'),
(17617, 'https://ror.org/02e97q397', 'no_lang_code', 1, 'https://ror.org/02e97q397 Gökser Makina (Turkey)'),
(17618, 'https://ror.org/01ren5s60', 'no_lang_code', 1, 'https://ror.org/01ren5s60 Gold Biotechnology (United States)'),
(17619, 'https://ror.org/03z7rky51', 'no_lang_code', 1, 'https://ror.org/03z7rky51 CEI-Bois'),
(17620, 'https://ror.org/01mscn238', 'no_lang_code', 1, 'https://ror.org/01mscn238 GeneCopoeia (United States)'),
(17621, 'https://ror.org/03tb49961', 'no_lang_code', 1, 'https://ror.org/03tb49961 Elektrobit (Finland)'),
(17622, 'https://ror.org/04b6m8j66', 'no_lang_code', 1, 'https://ror.org/04b6m8j66 Goodman Research Group (United States)'),
(17623, 'https://ror.org/01fsr6x28', 'no_lang_code', 1, 'https://ror.org/01fsr6x28 Frutarom (United Kingdom)'),
(17624, 'https://ror.org/03jwfrf17', 'en', 1, 'https://ror.org/03jwfrf17 European Convention for Constructional Steelwork'),
(17625, 'https://ror.org/028mx4j81', 'en', 1, 'https://ror.org/028mx4j81 Ministry of Finance Υπουργείο Οικονομικών Ελλάδας'),
(17626, 'https://ror.org/00d7nha28', 'en', 1, 'https://ror.org/00d7nha28 European Council for Construction Research, Development and Innovation'),
(17627, 'https://ror.org/00frsr784', 'en', 1, 'https://ror.org/00frsr784 European Council of Applied Sciences and Engineering'),
(17628, 'https://ror.org/03w80jr87', 'no_lang_code', 1, 'https://ror.org/03w80jr87 Ecosil Technologies (United States)'),
(17629, 'https://ror.org/047cnmy82', 'no_lang_code', 1, 'https://ror.org/047cnmy82 3M (Germany)'),
(17630, 'https://ror.org/02tarpq30', 'no_lang_code', 1, 'https://ror.org/02tarpq30 General Electric (Germany)'),
(17631, 'https://ror.org/02wena850', 'en', 1, 'https://ror.org/02wena850 Forschungsinstitut für Telekommunikation Research Institute for Telecommunication Cooperation'),
(17632, 'https://ror.org/05v8rqa59', 'no_lang_code', 1, 'https://ror.org/05v8rqa59 FTL Systems (United Kingdom)'),
(17633, 'https://ror.org/04w2a0822', 'no_lang_code', 1, 'https://ror.org/04w2a0822 Element Six (Ireland)'),
(17634, 'https://ror.org/054gder17', 'en', 1, 'https://ror.org/054gder17 Elephant Thoughts'),
(17635, 'https://ror.org/04qf21777', 'no_lang_code', 1, 'https://ror.org/04qf21777 Fuchs (United Kingdom)'),
(17636, 'https://ror.org/0295epx19', 'no_lang_code', 1, 'https://ror.org/0295epx19 Fuchs (Germany)'),
(17637, 'https://ror.org/02r8n1b71', 'no_lang_code', 1, 'https://ror.org/02r8n1b71 General Innovations and Goods (United States)'),
(17638, 'https://ror.org/01zqmjs13', 'no_lang_code', 1, 'https://ror.org/01zqmjs13 Gordon Murray Design (United Kingdom)'),
(17639, 'https://ror.org/02jfqby89', 'en', 1, 'https://ror.org/02jfqby89 European Disability Forum'),
(17640, 'https://ror.org/016x3qj75', 'no_lang_code', 1, 'https://ror.org/016x3qj75 Nielsen (United States)'),
(17641, 'https://ror.org/058fftp70', 'no_lang_code', 1, 'https://ror.org/058fftp70 General Marble (Greece)'),
(17642, 'https://ror.org/04bq7yh11', 'no_lang_code', 1, 'https://ror.org/04bq7yh11 Fujifilm (United Kingdom)'),
(17643, 'https://ror.org/000tz2r96', 'en', 1, 'https://ror.org/000tz2r96 European Distributed Energy Resources Laboratories'),
(17644, 'https://ror.org/05b6fta51', 'no_lang_code', 1, 'https://ror.org/05b6fta51 Fujifilm (Netherlands)'),
(17645, 'https://ror.org/02vhrn167', 'en', 1, 'https://ror.org/02vhrn167 European Distribution System Operators for Smart Grids'),
(17646, 'https://ror.org/05q6k4747', 'no_lang_code', 1, 'https://ror.org/05q6k4747 Fullwell Mill (United Kingdom)'),
(17647, 'https://ror.org/037dhrw12', 'no_lang_code', 1, 'https://ror.org/037dhrw12 Fully Distributed Systems (United Kingdom)'),
(17648, 'https://ror.org/056rxwh87', 'no_lang_code', 1, 'https://ror.org/056rxwh87 General Paints (Ireland)'),
(17649, 'https://ror.org/006jrk197', 'no_lang_code', 1, 'https://ror.org/006jrk197 Goss Springs (United Kingdom)'),
(17650, 'https://ror.org/053y7vn39', 'no_lang_code', 1, 'https://ror.org/053y7vn39 European Dynamics (Greece)'),
(17651, 'https://ror.org/047atj319', 'no_lang_code', 1, 'https://ror.org/047atj319 Functional Technologies (United Kingdom)'),
(17652, 'https://ror.org/05q16h268', 'no_lang_code', 1, 'https://ror.org/05q16h268 Total (United Kingdom)'),
(17653, 'https://ror.org/039z65d40', 'en', 1, 'https://ror.org/039z65d40 European Welding Federation'),
(17654, 'https://ror.org/03tz7dc68', 'no_lang_code', 1, 'https://ror.org/03tz7dc68 Total (Italy)'),
(17655, 'https://ror.org/03fej8604', 'no_lang_code', 1, 'https://ror.org/03fej8604 Elforlight (United Kingdom)'),
(17656, 'https://ror.org/02j9tgd14', 'en', 1, 'https://ror.org/02j9tgd14 European Federation of Allergy and Airways Diseases Patients Associations'),
(17657, 'https://ror.org/02sz9bm21', 'no_lang_code', 1, 'https://ror.org/02sz9bm21 Elia Life Technology (United States)'),
(17658, 'https://ror.org/04gkw9q47', 'en', 1, 'https://ror.org/04gkw9q47 Direction Générale Énergie Directorate-General for Energy Generaldirektion der Kommission'),
(17659, 'https://ror.org/00ag93x16', 'nl', 1, 'https://ror.org/00ag93x16 Goudappel Coffeng'),
(17660, 'https://ror.org/01fbtw415', 'no_lang_code', 1, 'https://ror.org/01fbtw415 Generation Biotech (United States)'),
(17661, 'https://ror.org/03v5b4741', 'no_lang_code', 1, 'https://ror.org/03v5b4741 Ella-Cs (Czechia)'),
(17662, 'https://ror.org/02c1kz490', 'no_lang_code', 1, 'https://ror.org/02c1kz490 Ellemedia Technologies (Greece)'),
(17663, 'https://ror.org/04fhf9k38', 'no_lang_code', 1, 'https://ror.org/04fhf9k38 Generic Robotics (United Kingdom)'),
(17664, 'https://ror.org/02fj83z08', 'en', 1, 'https://ror.org/02fj83z08 Elmira College'),
(17665, 'https://ror.org/05b3fmb74', 'no_lang_code', 1, 'https://ror.org/05b3fmb74 Elmos Semiconductor (Germany)'),
(17666, 'https://ror.org/03y0c3933', 'no_lang_code', 1, 'https://ror.org/03y0c3933 Environmental and Life Support Technology (United States)'),
(17667, 'https://ror.org/01f2grr18', 'no_lang_code', 1, 'https://ror.org/01f2grr18 Elsyca (Belgium)'),
(17668, 'https://ror.org/00cyg5d40', 'es', 1, 'https://ror.org/00cyg5d40 Fundació Privada per a la Investigació Nutricional'),
(17669, 'https://ror.org/00q62px07', 'no_lang_code', 1, 'https://ror.org/00q62px07 Eltek Semiconductors (United Kingdom)'),
(17670, 'https://ror.org/00enk9f97', 'en', 1, 'https://ror.org/00enk9f97 European Federation of Railway Trackwork Contractors'),
(17671, 'https://ror.org/013h98003', 'en', 1, 'https://ror.org/013h98003 European Forum on Nature Conservation and Pastoralism'),
(17672, 'https://ror.org/04cvatx71', 'no_lang_code', 1, 'https://ror.org/04cvatx71 Elumotion (United Kingdom)'),
(17673, 'https://ror.org/04n30cc76', 'no_lang_code', 1, 'https://ror.org/04n30cc76 Guifi.net'),
(17674, 'https://ror.org/037es9x13', 'en', 1, 'https://ror.org/037es9x13 European Games Developer Federation'),
(17675, 'https://ror.org/04gbvx157', 'no_lang_code', 1, 'https://ror.org/04gbvx157 Elusys Therapeutics (United States)'),
(17676, 'https://ror.org/05r66pc04', 'no_lang_code', 1, 'https://ror.org/05r66pc04 Elviex (Greece)'),
(17677, 'https://ror.org/053g97n06', 'en', 1, 'https://ror.org/053g97n06 European Genetic Alliances Network'),
(17678, 'https://ror.org/03bvy3496', 'en', 1, 'https://ror.org/03bvy3496 European Geothermal Energy Council'),
(17679, 'https://ror.org/02a7s8340', 'no_lang_code', 1, 'https://ror.org/02a7s8340 Elvior (Estonia)'),
(17680, 'https://ror.org/05nw98r31', 'en', 1, 'https://ror.org/05nw98r31 European Gravitational Observatory'),
(17681, 'https://ror.org/01qdw1f80', 'no_lang_code', 1, 'https://ror.org/01qdw1f80 GeneSearch (United States)'),
(17682, 'https://ror.org/05cs67685', 'no_lang_code', 1, 'https://ror.org/05cs67685 Elwood Landscape Design (United Kingdom)'),
(17683, 'https://ror.org/01rr96195', 'en', 1, 'https://ror.org/01rr96195 Genesee/Orleans Council on Alcoholism and Substance Abuse'),
(17684, 'https://ror.org/045e9rn67', 'no_lang_code', 1, 'https://ror.org/045e9rn67 EmbedRF (United States)'),
(17685, 'https://ror.org/011r7ts05', 'en', 1, 'https://ror.org/011r7ts05 Advanced Technology Centre for Renewable Energies Centro Tecnológico Avanzado de Energías Renovables'),
(17686, 'https://ror.org/01xny3z34', 'en', 1, 'https://ror.org/01xny3z34 European Health Management Association'),
(17687, 'https://ror.org/02yyb7m34', 'no_lang_code', 1, 'https://ror.org/02yyb7m34 Embedded Access (Canada)'),
(17688, 'https://ror.org/05e7hwa20', 'en', 1, 'https://ror.org/05e7hwa20 European Heat Pump Association'),
(17689, 'https://ror.org/04xhv0r49', 'en', 1, 'https://ror.org/04xhv0r49 Graceland University'),
(17690, 'https://ror.org/02t8cb469', 'en', 1, 'https://ror.org/02t8cb469 European Institute for Advanced Studies in Management'),
(17691, 'https://ror.org/007j95w86', 'en', 1, 'https://ror.org/007j95w86 Greek Rescue Team'),
(17692, 'https://ror.org/02waqnt49', 'no_lang_code', 1, 'https://ror.org/02waqnt49 Grainger and Worral (United Kingdom)'),
(17693, 'https://ror.org/02ay1zt80', 'en', 1, 'https://ror.org/02ay1zt80 European Institute for Participatory Media'),
(17694, 'https://ror.org/014tp7304', 'en', 1, 'https://ror.org/014tp7304 European Institute of Public Administration'),
(17695, 'https://ror.org/05r5zsh59', 'en', 1, 'https://ror.org/05r5zsh59 Genetic Alliance'),
(17696, 'https://ror.org/000wx6j65', 'en', 1, 'https://ror.org/000wx6j65 European Institute of Women''s Health'),
(17697, 'https://ror.org/04apkgm45', 'en', 1, 'https://ror.org/04apkgm45 European Jewellery Technology Network'),
(17698, 'https://ror.org/0331p6r75', 'no_lang_code', 1, 'https://ror.org/0331p6r75 Emcien (United States)'),
(17699, 'https://ror.org/04s0wf777', 'pt', 1, 'https://ror.org/04s0wf777 Empresa Municipal de Mobilidade e Estacionamento de Lisboa'),
(17700, 'https://ror.org/02ff40f54', 'en', 1, 'https://ror.org/02ff40f54 Grand Rapids Community College'),
(17701, 'https://ror.org/03kxyq577', 'en', 1, 'https://ror.org/03kxyq577 Emerald Education Systems'),
(17702, 'https://ror.org/05w4kcm12', 'no_lang_code', 1, 'https://ror.org/05w4kcm12 Emergence Tech Limited (United Kingdom)'),
(17703, 'https://ror.org/02rbfgr17', 'no_lang_code', 1, 'https://ror.org/02rbfgr17 European Media Laboratory (Germany)'),
(17704, 'https://ror.org/056v90990', 'pl', 1, 'https://ror.org/056v90990 Fundusz Górnośląski S.A. Oddział w Katowicach'),
(17705, 'https://ror.org/052eb7a13', 'en', 1, 'https://ror.org/052eb7a13 European Membrane House'),
(17706, 'https://ror.org/00bh7p191', 'no_lang_code', 1, 'https://ror.org/00bh7p191 GMC (Italy)'),
(17707, 'https://ror.org/05ph11b68', 'no_lang_code', 1, 'https://ror.org/05ph11b68 Tunstall (Ireland)'),
(17708, 'https://ror.org/04wfr2810', 'en', 1, 'https://ror.org/04wfr2810 European Molecular Biology Organization'),
(17709, 'https://ror.org/039vz4177', 'no_lang_code', 1, 'https://ror.org/039vz4177 Granlund (Finland)'),
(17710, 'https://ror.org/03qpmfz94', 'no_lang_code', 1, 'https://ror.org/03qpmfz94 GenetiVision (United States)'),
(17711, 'https://ror.org/02aqjhx29', 'no_lang_code', 1, 'https://ror.org/02aqjhx29 Genewave (France)'),
(17712, 'https://ror.org/0510q5f30', 'no_lang_code', 1, 'https://ror.org/0510q5f30 European Multimedia Forum (United Kingdom)'),
(17713, 'https://ror.org/0584wbt59', 'en', 1, 'https://ror.org/0584wbt59 European Network for Cyber Security'),
(17714, 'https://ror.org/02qeyb550', 'no_lang_code', 1, 'https://ror.org/02qeyb550 GeneXplain (Germany)'),
(17715, 'https://ror.org/00rwgk448', 'es', 1, 'https://ror.org/00rwgk448 Fundación INTRAS'),
(17716, 'https://ror.org/00a83sz87', 'no_lang_code', 1, 'https://ror.org/00a83sz87 Grassroots Arts and Research (Germany)'),
(17717, 'https://ror.org/01zd9gz71', 'no_lang_code', 1, 'https://ror.org/01zd9gz71 Genfit (France)'),
(17718, 'https://ror.org/01xhkj350', 'no_lang_code', 1, 'https://ror.org/01xhkj350 GenHunter (United States)'),
(17719, 'https://ror.org/02r6qtd46', 'no_lang_code', 1, 'https://ror.org/02r6qtd46 GenIbet (Portugal)'),
(17720, 'https://ror.org/009xhdy29', 'no_lang_code', 1, 'https://ror.org/009xhdy29 E. Bröll (Austria)'),
(17721, 'https://ror.org/045g6w049', 'no_lang_code', 1, 'https://ror.org/045g6w049 Eminate (United Kingdom)'),
(17722, 'https://ror.org/028m68j28', 'en', 1, 'https://ror.org/028m68j28 Fundacion Latinoamericana De Accion Social'),
(17723, 'https://ror.org/04g9wby70', 'en', 1, 'https://ror.org/04g9wby70 European Organisation for Research and Treatment of Cancer'),
(17724, 'https://ror.org/05509w645', 'en', 1, 'https://ror.org/05509w645 European Passengers'' Federation Europäische Fahrgastverband'),
(17725, 'https://ror.org/050pmr719', 'en', 1, 'https://ror.org/050pmr719 European Patent Organisation Europäische Patentorganisation'),
(17726, 'https://ror.org/04fx4e978', 'no_lang_code', 1, 'https://ror.org/04fx4e978 Graybug Vision (United States)'),
(17727, 'https://ror.org/00e386464', 'en', 1, 'https://ror.org/00e386464 European Photonics Industry Consortium'),
(17728, 'https://ror.org/02b1fy379', 'en', 1, 'https://ror.org/02b1fy379 European Centre for Soft Computing'),
(17729, 'https://ror.org/01n6jnf20', 'no_lang_code', 1, 'https://ror.org/01n6jnf20 Eminent Services Corporation (United States)'),
(17730, 'https://ror.org/04mvbrf96', 'no_lang_code', 1, 'https://ror.org/04mvbrf96 Emissions Reduzierungs Concepte (Germany)'),
(17731, 'https://ror.org/014fxzd16', 'en', 1, 'https://ror.org/014fxzd16 European Public Law Center'),
(17732, 'https://ror.org/01zjcq634', 'no_lang_code', 1, 'https://ror.org/01zjcq634 Newable (United Kingdom)'),
(17733, 'https://ror.org/025ezac93', 'en', 1, 'https://ror.org/025ezac93 European Science Events Association'),
(17734, 'https://ror.org/01pw3xa54', 'en', 1, 'https://ror.org/01pw3xa54 Greater Manchester Combined Authority'),
(17735, 'https://ror.org/03x0c7470', 'no_lang_code', 1, 'https://ror.org/03x0c7470 European Research Services'),
(17736, 'https://ror.org/003fyf471', 'en', 1, 'https://ror.org/003fyf471 European Group for Integrated Social Research Europäische Gesellschaft für Regionale und Internationale Sozialforschung'),
(17737, 'https://ror.org/02dp3xf77', 'en', 1, 'https://ror.org/02dp3xf77 European Society for Therapeutic Radiology and Oncology'),
(17738, 'https://ror.org/02184kv08', 'en', 1, 'https://ror.org/02184kv08 European Solar Thermal Electricity Association'),
(17739, 'https://ror.org/0141hdg13', 'en', 1, 'https://ror.org/0141hdg13 European State Forest Association'),
(17740, 'https://ror.org/01zq3f511', 'no_lang_code', 1, 'https://ror.org/01zq3f511 European Thermodynamics (United Kingdom)'),
(17741, 'https://ror.org/02w5hgx58', 'en', 1, 'https://ror.org/02w5hgx58 Greek Solar Industry Association'),
(17742, 'https://ror.org/042qv2836', 'en', 1, 'https://ror.org/042qv2836 Empowerment Program'),
(17743, 'https://ror.org/03ypk5989', 'en', 1, 'https://ror.org/03ypk5989 Green Aviation Research and Development Network'),
(17744, 'https://ror.org/00m1br750', 'no_lang_code', 1, 'https://ror.org/00m1br750 GMSbiotech (United States)'),
(17745, 'https://ror.org/00r5yyv69', 'en', 1, 'https://ror.org/00r5yyv69 European Trade Union Institute'),
(17746, 'https://ror.org/053jctp32', 'no_lang_code', 1, 'https://ror.org/053jctp32 Green Biologics (United Kingdom)'),
(17747, 'https://ror.org/01rhsna23', 'en', 1, 'https://ror.org/01rhsna23 European Tyre Recycling Association'),
(17748, 'https://ror.org/00ygx9p32', 'no_lang_code', 1, 'https://ror.org/00ygx9p32 Data Fusion International (Ireland)'),
(17749, 'https://ror.org/04e6s6j73', 'no_lang_code', 1, 'https://ror.org/04e6s6j73 Genotype (Germany)'),
(17750, 'https://ror.org/047979f88', 'no_lang_code', 1, 'https://ror.org/047979f88 Águas de Portugal (Portugal)'),
(17751, 'https://ror.org/01f8pxc90', 'en', 1, 'https://ror.org/01f8pxc90 Eurogas'),
(17752, 'https://ror.org/035dzyj47', 'de', 1, 'https://ror.org/035dzyj47 Emschergenossenschaft'),
(17753, 'https://ror.org/01dcwcs90', 'no_lang_code', 1, 'https://ror.org/01dcwcs90 Emtele (Finland)'),
(17754, 'https://ror.org/04gczvb13', 'en', 1, 'https://ror.org/04gczvb13 Illinois Archaeological Survey'),
(17755, 'https://ror.org/03dx84k02', 'no_lang_code', 1, 'https://ror.org/03dx84k02 AtriCure (United States)'),
(17756, 'https://ror.org/04gfner94', 'en', 1, 'https://ror.org/04gfner94 Green Mountain College'),
(17757, 'https://ror.org/01j7c2q87', 'no_lang_code', 1, 'https://ror.org/01j7c2q87 OnCore Biopharma (United States)'),
(17758, 'https://ror.org/0288ctx42', 'en', 1, 'https://ror.org/0288ctx42 Illinois General Assembly'),
(17759, 'https://ror.org/03ngn6116', 'no_lang_code', 1, 'https://ror.org/03ngn6116 Green Tide Turbines (United Kingdom)'),
(17760, 'https://ror.org/03mgga463', 'no_lang_code', 1, 'https://ror.org/03mgga463 Greenbank Group (United Kingdom)'),
(17761, 'https://ror.org/006sm2430', 'en', 1, 'https://ror.org/006sm2430 Illinois State Board of Education'),
(17762, 'https://ror.org/0258fpw94', 'no_lang_code', 1, 'https://ror.org/0258fpw94 TriStar Wellness Solutions (United States)'),
(17763, 'https://ror.org/03x5r0t69', 'no_lang_code', 1, 'https://ror.org/03x5r0t69 GreenField Specialty Alcolhols (Canada)'),
(17764, 'https://ror.org/04v8m3m69', 'no_lang_code', 1, 'https://ror.org/04v8m3m69 Enclavix (United States)'),
(17765, 'https://ror.org/027c2yv63', 'no_lang_code', 1, 'https://ror.org/027c2yv63 Illumina (United Kingdom)'),
(17766, 'https://ror.org/04f085c77', 'no_lang_code', 1, 'https://ror.org/04f085c77 Enco (Italy)'),
(17767, 'https://ror.org/00h6azh28', 'no_lang_code', 1, 'https://ror.org/00h6azh28 Encore Pharmaceuticals (United States)'),
(17768, 'https://ror.org/03v7zdq71', 'no_lang_code', 1, 'https://ror.org/03v7zdq71 Encraft (United Kingdom)'),
(17769, 'https://ror.org/0502g5y81', 'no_lang_code', 1, 'https://ror.org/0502g5y81 Endomag (United Kingdom)'),
(17770, 'https://ror.org/004csq624', 'no_lang_code', 1, 'https://ror.org/004csq624 Gentoo (United Kingdom)'),
(17771, 'https://ror.org/04yr9v708', 'no_lang_code', 1, 'https://ror.org/04yr9v708 HemoGenix (United States)'),
(17772, 'https://ror.org/00xk4wa49', 'en', 1, 'https://ror.org/00xk4wa49 Hemophilia Federation of America'),
(17773, 'https://ror.org/04f43m378', 'en', 1, 'https://ror.org/04f43m378 Greenhope Services for Women'),
(17774, 'https://ror.org/03t26ts93', 'no_lang_code', 1, 'https://ror.org/03t26ts93 Imatecno (Italy)'),
(17775, 'https://ror.org/04pthvp83', 'no_lang_code', 1, 'https://ror.org/04pthvp83 Henkel (Belgium)'),
(17776, 'https://ror.org/00cm6et23', 'en', 1, 'https://ror.org/00cm6et23 Haute École Lucia de Brouckère Higher Education Institution Lucia de Brouckère'),
(17777, 'https://ror.org/05n13t702', 'en', 1, 'https://ror.org/05n13t702 Washington Radiology Associates'),
(17778, 'https://ror.org/032g1nc88', 'no_lang_code', 1, 'https://ror.org/032g1nc88 Albemarle (Belgium)'),
(17779, 'https://ror.org/00eb1tn47', 'no_lang_code', 1, 'https://ror.org/00eb1tn47 Greenspace Scotland (United Kingdom)'),
(17780, 'https://ror.org/04mekkj24', 'no_lang_code', 1, 'https://ror.org/04mekkj24 GeoAdvice Engineering (Canada)'),
(17781, 'https://ror.org/01a4jyf22', 'no_lang_code', 1, 'https://ror.org/01a4jyf22 imaGeau (France)'),
(17782, 'https://ror.org/00jb2qs89', 'no_lang_code', 1, 'https://ror.org/00jb2qs89 ImageCat (United Kingdom)'),
(17783, 'https://ror.org/011pv1j48', 'no_lang_code', 1, 'https://ror.org/011pv1j48 Greentronics (Romania)'),
(17784, 'https://ror.org/05t738f97', 'no_lang_code', 1, 'https://ror.org/05t738f97 Geoanalysis (Greece) ΓΕΩΑΝΑΛΥΣΗ'),
(17785, 'https://ror.org/004wrwd64', 'no_lang_code', 1, 'https://ror.org/004wrwd64 Atlas Copco (United Kingdom)'),
(17786, 'https://ror.org/03vrea996', 'no_lang_code', 1, 'https://ror.org/03vrea996 Source BioScience (Germany)'),
(17787, 'https://ror.org/013kzw641', 'en', 1, 'https://ror.org/013kzw641 Greenwich Public Schools'),
(17788, 'https://ror.org/018zj0h25', 'fr', 1, 'https://ror.org/018zj0h25 Institut de l''Environnement et Recherches Agricoles'),
(17789, 'https://ror.org/020pq6t22', 'no_lang_code', 1, 'https://ror.org/020pq6t22 ImaginAb (United States)'),
(17790, 'https://ror.org/02pwp4n28', 'no_lang_code', 1, 'https://ror.org/02pwp4n28 Imagination Software Corporation (United States)'),
(17791, 'https://ror.org/011r6gp69', 'en', 1, 'https://ror.org/011r6gp69 University of Algiers Benyoucef Benkhedda جامعة الجزائر – بن يوسف بن خـدة'),
(17792, 'https://ror.org/03rf62a76', 'no_lang_code', 1, 'https://ror.org/03rf62a76 Imagination Technologies (United Kingdom)'),
(17793, 'https://ror.org/01bre8q37', 'no_lang_code', 1, 'https://ror.org/01bre8q37 Geocontrol (Spain)'),
(17794, 'https://ror.org/00702wg16', 'fr', 1, 'https://ror.org/00702wg16 Institut National d''Optique National Optics Institute'),
(17795, 'https://ror.org/055wrb292', 'no_lang_code', 1, 'https://ror.org/055wrb292 VizSeek (United States)'),
(17796, 'https://ror.org/015geds03', 'fr', 1, 'https://ror.org/015geds03 Greta Lac'),
(17797, 'https://ror.org/05xng4y02', 'no_lang_code', 1, 'https://ror.org/05xng4y02 Gridpoint solutions (United Kingdom)'),
(17798, 'https://ror.org/0442gk010', 'no_lang_code', 1, 'https://ror.org/0442gk010 ImaTx (United States)'),
(17799, 'https://ror.org/02tkbtm16', 'no_lang_code', 1, 'https://ror.org/02tkbtm16 Grimm Aerosol Technik (Germany)'),
(17800, 'https://ror.org/01mmrtt85', 'no_lang_code', 1, 'https://ror.org/01mmrtt85 Groenholland (Netherlands)'),
(17801, 'https://ror.org/049040e46', 'no_lang_code', 1, 'https://ror.org/049040e46 Imaging Biometrics (United States)'),
(17802, 'https://ror.org/02m39mw39', 'no_lang_code', 1, 'https://ror.org/02m39mw39 Geodiscover (Portugal)'),
(17803, 'https://ror.org/03s68kq02', 'en', 1, 'https://ror.org/03s68kq02 Grossmont Cuyamaca Community College District'),
(17804, 'https://ror.org/00yyva985', 'no_lang_code', 1, 'https://ror.org/00yyva985 HepatoSys (United States)'),
(17805, 'https://ror.org/02cn8ky49', 'fr', 1, 'https://ror.org/02cn8ky49 Groupe de Recherche en Agriculture Biologique'),
(17806, 'https://ror.org/04pzwwc57', 'no_lang_code', 1, 'https://ror.org/04pzwwc57 General Patent Corporation (United States)'),
(17807, 'https://ror.org/049e8me77', 'no_lang_code', 1, 'https://ror.org/049e8me77 Heraeus (United Kingdom)'),
(17808, 'https://ror.org/02718ec78', 'no_lang_code', 1, 'https://ror.org/02718ec78 KraussMaffei (Germany)'),
(17809, 'https://ror.org/01mf3rs17', 'no_lang_code', 1, 'https://ror.org/01mf3rs17 Geoloc Systems (France)'),
(17810, 'https://ror.org/00t4hhw32', 'no_lang_code', 1, 'https://ror.org/00t4hhw32 Hela Spice Canada (Canada)'),
(17811, 'https://ror.org/005haay02', 'fr', 1, 'https://ror.org/005haay02 Institut National de Recherche en Santé Publique'),
(17812, 'https://ror.org/05sadtq09', 'no_lang_code', 1, 'https://ror.org/05sadtq09 Sycamore Entertainment Group (United States)'),
(17813, 'https://ror.org/02we0q870', 'en', 1, 'https://ror.org/02we0q870 State Geological Institute of Dionýz Štúr'),
(17814, 'https://ror.org/00xdvzg58', 'no_lang_code', 1, 'https://ror.org/00xdvzg58 Hermia Business Development (Finland) Hermia Yrityskehitys'),
(17815, 'https://ror.org/01r14tp08', 'no_lang_code', 1, 'https://ror.org/01r14tp08 Ovako (Finland)'),
(17816, 'https://ror.org/04xncs852', 'en', 1, 'https://ror.org/04xncs852 Hernando Community Coalition'),
(17817, 'https://ror.org/01qek4j34', 'fr', 1, 'https://ror.org/01qek4j34 Ministre de la Santé, de la Population et de la Réforme Hospitalière Ministère de la Santé'),
(17818, 'https://ror.org/04sm3yz09', 'no_lang_code', 1, 'https://ror.org/04sm3yz09 Marathon Oil (United States)'),
(17819, 'https://ror.org/03s1jks46', 'no_lang_code', 1, 'https://ror.org/03s1jks46 Hero España (Spain)'),
(17820, 'https://ror.org/020z9nv72', 'no_lang_code', 1, 'https://ror.org/020z9nv72 Maritime Wirtschafts- und Schiffbauforschung (Germany)'),
(17821, 'https://ror.org/02ratyz17', 'no_lang_code', 1, 'https://ror.org/02ratyz17 Herzog + Partner (Germany)'),
(17822, 'https://ror.org/04ez98579', 'de', 1, 'https://ror.org/04ez98579 GründerRegio M'),
(17823, 'https://ror.org/03b2j7609', 'no_lang_code', 1, 'https://ror.org/03b2j7609 Geomer (Germany)'),
(17824, 'https://ror.org/0262b0b41', 'no_lang_code', 1, 'https://ror.org/0262b0b41 GeoMobile (Germany)'),
(17825, 'https://ror.org/01cvgrc03', 'fr', 1, 'https://ror.org/01cvgrc03 Hespul'),
(17826, 'https://ror.org/02tjxv890', 'de', 1, 'https://ror.org/02tjxv890 Hessen Mobil – Straßen- und Verkehrsmanagement'),
(17827, 'https://ror.org/05e1bqs36', 'no_lang_code', 1, 'https://ror.org/05e1bqs36 IMET Corporation (United States)'),
(17828, 'https://ror.org/02hmy2876', 'no_lang_code', 1, 'https://ror.org/02hmy2876 Aethlon Medical (United States)'),
(17829, 'https://ror.org/01cnprv20', 'en', 1, 'https://ror.org/01cnprv20 Institute for Management of Innovation and Technology'),
(17830, 'https://ror.org/05n1gam72', 'en', 1, 'https://ror.org/05n1gam72 Babbage Institute for Knowledge and Information Technologies'),
(17831, 'https://ror.org/01cegwx30', 'no_lang_code', 1, 'https://ror.org/01cegwx30 HÉTFA Research Institute'),
(17832, 'https://ror.org/05vkmhj10', 'en', 1, 'https://ror.org/05vkmhj10 Georgia Gwinnett College'),
(17833, 'https://ror.org/01q25wj29', 'en', 1, 'https://ror.org/01q25wj29 Georgia Mental Health Consumer Network'),
(17834, 'https://ror.org/05g12js95', 'no_lang_code', 1, 'https://ror.org/05g12js95 ImmersiveTouch (United States)'),
(17835, 'https://ror.org/03wy6f566', 'en', 1, 'https://ror.org/03wy6f566 Georgia Parent Support Network'),
(17836, 'https://ror.org/03x8f0b85', 'no_lang_code', 1, 'https://ror.org/03x8f0b85 Hi-Z Technology (United States)'),
(17837, 'https://ror.org/011smmt78', 'no_lang_code', 1, 'https://ror.org/011smmt78 GeoSAS (Ethiopia)'),
(17838, 'https://ror.org/02yakpb28', 'no_lang_code', 1, 'https://ror.org/02yakpb28 Hidromod (Portugal)'),
(17839, 'https://ror.org/02zrqj244', 'no_lang_code', 1, 'https://ror.org/02zrqj244 Hidrowatt (Spain)'),
(17840, 'https://ror.org/032dnw027', 'no_lang_code', 1, 'https://ror.org/032dnw027 HiETA Technologies (United Kingdom)'),
(17841, 'https://ror.org/0145xtn29', 'no_lang_code', 1, 'https://ror.org/0145xtn29 Geosat'),
(17842, 'https://ror.org/02eqp9f22', 'no_lang_code', 1, 'https://ror.org/02eqp9f22 Cartes Bancaires (France)'),
(17843, 'https://ror.org/007cgsn27', 'no_lang_code', 1, 'https://ror.org/007cgsn27 High Voltage Partial Discharge (United Kingdom)'),
(17844, 'https://ror.org/00q519868', 'en', 1, 'https://ror.org/00q519868 Grwp Llandrillo Menai'),
(17845, 'https://ror.org/0206kax92', 'en', 1, 'https://ror.org/0206kax92 L''Institut national du patrimoine National Heritage Institute المعهد الوطني للتراث'),
(17846, 'https://ror.org/01hq5ez54', 'no_lang_code', 1, 'https://ror.org/01hq5ez54 Immuno-Mycologics'),
(17847, 'https://ror.org/00fsfag68', 'no_lang_code', 1, 'https://ror.org/00fsfag68 ImmBio (United Kingdom)'),
(17848, 'https://ror.org/009qm7w92', 'en', 1, 'https://ror.org/009qm7w92 Higher Institute for Applied Sciences and Technology المعهد العالي للعلوم التطبيقية والتكنولوجيا'),
(17849, 'https://ror.org/05wge1d25', 'en', 1, 'https://ror.org/05wge1d25 GS1 Germany'),
(17850, 'https://ror.org/01nsd9919', 'no_lang_code', 1, 'https://ror.org/01nsd9919 ImmuVen (United States)'),
(17851, 'https://ror.org/04xybmk80', 'en', 1, 'https://ror.org/04xybmk80 GS1 Belgium & Luxembourg'),
(17852, 'https://ror.org/0272r9772', 'en', 1, 'https://ror.org/0272r9772 Impact Research and Development Organization'),
(17853, 'https://ror.org/034wxzt12', 'no_lang_code', 1, 'https://ror.org/034wxzt12 Highland Biosciences (United Kingdom)'),
(17854, 'https://ror.org/00q87b836', 'no_lang_code', 1, 'https://ror.org/00q87b836 Impact Innovations (Germany)'),
(17855, 'https://ror.org/05debfj90', 'no_lang_code', 1, 'https://ror.org/05debfj90 Highland Fine Cheeses (United Kingdom)'),
(17856, 'https://ror.org/05t9f6t69', 'fr', 1, 'https://ror.org/05t9f6t69 Institut National d’Hygiène Publique'),
(17857, 'https://ror.org/03yvy0733', 'no_lang_code', 1, 'https://ror.org/03yvy0733 Hightec MC (Switzerland)'),
(17858, 'https://ror.org/026bqf280', 'no_lang_code', 1, 'https://ror.org/026bqf280 GSI Group (United Kingdom)'),
(17859, 'https://ror.org/0561r3x79', 'no_lang_code', 1, 'https://ror.org/0561r3x79 Geosciences Consultants'),
(17860, 'https://ror.org/05c9yxc90', 'no_lang_code', 1, 'https://ror.org/05c9yxc90 Hill+Knowlton Strategies (Estonia)'),
(17861, 'https://ror.org/0411vej12', 'no_lang_code', 1, 'https://ror.org/0411vej12 Hill Group (United States)'),
(17862, 'https://ror.org/0202yb607', 'en', 1, 'https://ror.org/0202yb607 Information Management Policies Assessment for City Transport Systems'),
(17863, 'https://ror.org/01491ht04', 'no_lang_code', 1, 'https://ror.org/01491ht04 GeoSpatiumLab (Spain)'),
(17864, 'https://ror.org/017hxta74', 'no_lang_code', 1, 'https://ror.org/017hxta74 GeoSpectrum Technologies (Canada)'),
(17865, 'https://ror.org/04cx6n327', 'en', 1, 'https://ror.org/04cx6n327 Cornell Scott-Hill Health Center'),
(17866, 'https://ror.org/045x59t40', 'en', 1, 'https://ror.org/045x59t40 Hillsborough County Anti Drug Alliance’s'),
(17867, 'https://ror.org/01kv9ne32', 'no_lang_code', 1, 'https://ror.org/01kv9ne32 Geostock (France)'),
(17868, 'https://ror.org/02qjgmm73', 'no_lang_code', 1, 'https://ror.org/02qjgmm73 HiQScreen (Switzerland)'),
(17869, 'https://ror.org/00aeba842', 'no_lang_code', 1, 'https://ror.org/00aeba842 Impetus Consultants'),
(17870, 'https://ror.org/01w9kqf90', 'no_lang_code', 1, 'https://ror.org/01w9kqf90 Geotechnics (United Kingdom)'),
(17871, 'https://ror.org/051jp6337', 'en', 1, 'https://ror.org/051jp6337 Impression 5 Science Center'),
(17872, 'https://ror.org/011ed2d57', 'fr', 1, 'https://ror.org/011ed2d57 French Polar Institute Institut Polaire Français Paul Émile Victor'),
(17873, 'https://ror.org/050t3rs25', 'no_lang_code', 1, 'https://ror.org/050t3rs25 HireGround (Canada)'),
(17874, 'https://ror.org/05mb9ke45', 'no_lang_code', 1, 'https://ror.org/05mb9ke45 GTC Kappelmeyer (Germany)'),
(17875, 'https://ror.org/00b2pba14', 'no_lang_code', 1, 'https://ror.org/00b2pba14 Imprima Costruzioni (Italy)'),
(17876, 'https://ror.org/01w4x2p98', 'en', 1, 'https://ror.org/01w4x2p98 Local Government Improvement and Development'),
(17877, 'https://ror.org/03zvc9c15', 'no_lang_code', 1, 'https://ror.org/03zvc9c15 Hirst Magnetic Instruments (United Kingdom)'),
(17878, 'https://ror.org/05gyk0k71', 'no_lang_code', 1, 'https://ror.org/05gyk0k71 IMS Nanofabrication (Austria)'),
(17879, 'https://ror.org/018te2y75', 'no_lang_code', 1, 'https://ror.org/018te2y75 Imstar (France)'),
(17880, 'https://ror.org/044csjs83', 'en', 1, 'https://ror.org/044csjs83 Hispanic Serving Health Professions Schools'),
(17881, 'https://ror.org/00as86q06', 'en', 1, 'https://ror.org/00as86q06 Historic Royal Palaces'),
(17882, 'https://ror.org/01wpyw903', 'no_lang_code', 1, 'https://ror.org/01wpyw903 GTP Technology'),
(17883, 'https://ror.org/045zhyc13', 'no_lang_code', 1, 'https://ror.org/045zhyc13 Imtech Marine (Netherlands)'),
(17884, 'https://ror.org/04vkzy908', 'no_lang_code', 1, 'https://ror.org/04vkzy908 GeoVax (United States)'),
(17885, 'https://ror.org/0207xt957', 'no_lang_code', 1, 'https://ror.org/0207xt957 Geowatt (Switzerland)'),
(17886, 'https://ror.org/040dbbn57', 'no_lang_code', 1, 'https://ror.org/040dbbn57 HIT09 (Italy)'),
(17887, 'https://ror.org/00d19bg72', 'no_lang_code', 1, 'https://ror.org/00d19bg72 GeoX (Hungary)'),
(17888, 'https://ror.org/02tbyk536', 'en', 1, 'https://ror.org/02tbyk536 International Medical Equipment Collaborative'),
(17889, 'https://ror.org/01bedg124', 'en', 1, 'https://ror.org/01bedg124 Sinano Institute'),
(17890, 'https://ror.org/00vj44q65', 'no_lang_code', 1, 'https://ror.org/00vj44q65 GEPRO (Germany)'),
(17891, 'https://ror.org/01ssr1j70', 'no_lang_code', 1, 'https://ror.org/01ssr1j70 In Silico Toxicology (Switzerland)'),
(17892, 'https://ror.org/01dd27934', 'en', 1, 'https://ror.org/01dd27934 IN Financing & Project Management'),
(17893, 'https://ror.org/01trbq046', 'en', 1, 'https://ror.org/01trbq046 German Research School for Simulation Sciences'),
(17894, 'https://ror.org/04ks3jq11', 'no_lang_code', 1, 'https://ror.org/04ks3jq11 HITEK Electronic Materials (United Kingdom)'),
(17895, 'https://ror.org/04f1fpz24', 'no_lang_code', 1, 'https://ror.org/04f1fpz24 InTouch (United Kingdom)'),
(17896, 'https://ror.org/01cncfq91', 'no_lang_code', 1, 'https://ror.org/01cncfq91 Gerstel (Germany)'),
(17897, 'https://ror.org/02w506a46', 'no_lang_code', 1, 'https://ror.org/02w506a46 Guardian Chemicals (Canada)'),
(17898, 'https://ror.org/00z2vba08', 'en', 1, 'https://ror.org/00z2vba08 In Vitro Testing Industrial Platform'),
(17899, 'https://ror.org/054hsde96', 'no_lang_code', 1, 'https://ror.org/054hsde96 Gesellschaft für Technologieförderung Itzehoe'),
(17900, 'https://ror.org/03wyknn52', 'no_lang_code', 1, 'https://ror.org/03wyknn52 Inaccess (Greece)'),
(17901, 'https://ror.org/046fjdw68', 'en', 1, 'https://ror.org/046fjdw68 Guerilla Science'),
(17902, 'https://ror.org/033pjdm33', 'no_lang_code', 1, 'https://ror.org/033pjdm33 Inael (Spain)'),
(17903, 'https://ror.org/038nw4939', 'fr', 1, 'https://ror.org/038nw4939 Institut Technique de l''Agriculture Biologique'),
(17904, 'https://ror.org/00spcac30', 'no_lang_code', 1, 'https://ror.org/00spcac30 Guidance (United Kingdom)'),
(17905, 'https://ror.org/023csce19', 'no_lang_code', 1, 'https://ror.org/023csce19 Measurement Specialties (Germany)'),
(17906, 'https://ror.org/029ga8k16', 'en', 1, 'https://ror.org/029ga8k16 Health Level Seven International'),
(17907, 'https://ror.org/03w08v283', 'no_lang_code', 1, 'https://ror.org/03w08v283 Gram & Juhl (Denmark)'),
(17908, 'https://ror.org/04p6spd57', 'no_lang_code', 1, 'https://ror.org/04p6spd57 Inbios (Italy)'),
(17909, 'https://ror.org/00hkb6y19', 'en', 1, 'https://ror.org/00hkb6y19 Her Majesty''s Revenue and Customs'),
(17910, 'https://ror.org/013gqjv35', 'no_lang_code', 1, 'https://ror.org/013gqjv35 HMGene (United States)'),
(17911, 'https://ror.org/03bq13516', 'en', 1, 'https://ror.org/03bq13516 Guilford Technical Community College'),
(17912, 'https://ror.org/02yr5fm11', 'fr', 1, 'https://ror.org/02yr5fm11 Institut de Conseil et d''Études en Développement Durable Institute for Consultancy and Studies in Sustainable Development'),
(17913, 'https://ror.org/0044j1p74', 'no_lang_code', 1, 'https://ror.org/0044j1p74 HMJ Corporation (United States)'),
(17914, 'https://ror.org/022r03w28', 'en', 1, 'https://ror.org/022r03w28 Hochschule der Medien Stuttgart Media University'),
(17915, 'https://ror.org/05bvps080', 'de', 1, 'https://ror.org/05bvps080 Institut Wohnen und Umwelt'),
(17916, 'https://ror.org/03tx9qd31', 'en', 1, 'https://ror.org/03tx9qd31 Gulf of Maine Research Institute'),
(17917, 'https://ror.org/053vrw097', 'no_lang_code', 1, 'https://ror.org/053vrw097 Incogen (United States)'),
(17918, 'https://ror.org/04w12eh87', 'no_lang_code', 1, 'https://ror.org/04w12eh87 Incogna (Canada)'),
(17919, 'https://ror.org/05dez2x05', 'en', 1, 'https://ror.org/05dez2x05 Institute for Advanced Studies in Aging and Geriatric Medicine'),
(17920, 'https://ror.org/032dgyz67', 'no_lang_code', 1, 'https://ror.org/032dgyz67 IncreaseTime (Portugal)'),
(17921, 'https://ror.org/00ctdbf19', 'en', 1, 'https://ror.org/00ctdbf19 Social Work Policy Institute'),
(17922, 'https://ror.org/03xq46679', 'no_lang_code', 1, 'https://ror.org/03xq46679 Hochtief (Germany) Hochtief Aktiengesellschaft'),
(17923, 'https://ror.org/05becgp50', 'no_lang_code', 1, 'https://ror.org/05becgp50 Hocoma (Switzerland)'),
(17924, 'https://ror.org/04s68jp10', 'en', 1, 'https://ror.org/04s68jp10 Gulf Research Center'),
(17925, 'https://ror.org/034wzpw61', 'no_lang_code', 1, 'https://ror.org/034wzpw61 Hodos Media (United Kingdom)'),
(17926, 'https://ror.org/02698x773', 'en', 1, 'https://ror.org/02698x773 Indian Health Board'),
(17927, 'https://ror.org/031emjj03', 'en', 1, 'https://ror.org/031emjj03 Indian Hills Community College'),
(17928, 'https://ror.org/025jq6667', 'de', 1, 'https://ror.org/025jq6667 Gesellschaft für Bioanalytik Münster'),
(17929, 'https://ror.org/03tnb9s98', 'no_lang_code', 1, 'https://ror.org/03tnb9s98 Holo3'),
(17930, 'https://ror.org/04en4ww09', 'en', 1, 'https://ror.org/04en4ww09 Institute for Behavioral Medicine'),
(17931, 'https://ror.org/00cd95c65', 'de', 1, 'https://ror.org/00cd95c65 Gesellschaft für wissenschaftliche Datenverarbeitung mbH Göttingen'),
(17932, 'https://ror.org/04g6csw95', 'no_lang_code', 1, 'https://ror.org/04g6csw95 Holland Renewable Energy Technologies (Netherlands)'),
(17933, 'https://ror.org/041b3m426', 'en', 1, 'https://ror.org/041b3m426 Indigenous Peoples Task Force'),
(17934, 'https://ror.org/04fwrmd76', 'de', 1, 'https://ror.org/04fwrmd76 Gesellschaft zur Förderung angewandter Informatik'),
(17935, 'https://ror.org/00td9nh08', 'no_lang_code', 1, 'https://ror.org/00td9nh08 Tronox (Netherlands)'),
(17936, 'https://ror.org/00ymae584', 'en', 1, 'https://ror.org/00ymae584 Institute for Breathing and Sleep'),
(17937, 'https://ror.org/02rkwhb32', 'it', 1, 'https://ror.org/02rkwhb32 Istituto Nazionale di Documentazione Innovazione e Ricerca Educativa'),
(17938, 'https://ror.org/02kxx1c93', 'en', 1, 'https://ror.org/02kxx1c93 Holmes Community College'),
(17939, 'https://ror.org/03t3ktm93', 'no_lang_code', 1, 'https://ror.org/03t3ktm93 Holonix (Italy)'),
(17940, 'https://ror.org/03zjprt16', 'en', 1, 'https://ror.org/03zjprt16 Institute for Cognitive Prosthetics'),
(17941, 'https://ror.org/00mp82g69', 'no_lang_code', 1, 'https://ror.org/00mp82g69 Holosonics (United States)'),
(17942, 'https://ror.org/01xwcs533', 'no_lang_code', 1, 'https://ror.org/01xwcs533 Hotpoint (United Kingdom)'),
(17943, 'https://ror.org/04drxvh51', 'no_lang_code', 1, 'https://ror.org/04drxvh51 Holscot Fluoroplastics (United Kingdom)'),
(17944, 'https://ror.org/04jyp8093', 'en', 1, 'https://ror.org/04jyp8093 National Healthcare Service Center Állami Egészségügyi Ellátó Központ'),
(17945, 'https://ror.org/026jqgj23', 'en', 1, 'https://ror.org/026jqgj23 Holyoke Community College'),
(17946, 'https://ror.org/02qz22q09', 'no_lang_code', 1, 'https://ror.org/02qz22q09 GexCon (Norway)'),
(17947, 'https://ror.org/02s88ax77', 'en', 1, 'https://ror.org/02s88ax77 Institut für ökologische Wirtschaftsforschung Institute for Ecological Economy Research'),
(17948, 'https://ror.org/05eeps779', 'no_lang_code', 1, 'https://ror.org/05eeps779 Home Group (United Kingdom)'),
(17949, 'https://ror.org/03pca8c78', 'no_lang_code', 1, 'https://ror.org/03pca8c78 H-Cubed (United States)'),
(17950, 'https://ror.org/05m6bg654', 'en', 1, 'https://ror.org/05m6bg654 Help Committee');
INSERT INTO `rors` VALUES
(17951, 'https://ror.org/04a3nrb88', 'en', 1, 'https://ror.org/04a3nrb88 Institute of Energy Problems of Chemical Physics Федеральное государственное бюджетное учреждение науки Институт энергетических проблем химической физики им. В.Л. Тальрозе Российской академии наук'),
(17952, 'https://ror.org/05r1dd276', 'no_lang_code', 1, 'https://ror.org/05r1dd276 ICF International (United Kingdom)'),
(17953, 'https://ror.org/04yycxd24', 'no_lang_code', 1, 'https://ror.org/04yycxd24 Honeywell (Romania)'),
(17954, 'https://ror.org/03en68s56', 'no_lang_code', 1, 'https://ror.org/03en68s56 Haesevoets (Belgium)'),
(17955, 'https://ror.org/02e5q2963', 'en', 1, 'https://ror.org/02e5q2963 Institute for Higher Education Policy'),
(17956, 'https://ror.org/03a4hjz39', 'no_lang_code', 1, 'https://ror.org/03a4hjz39 Getas Petrogeo (Italy)'),
(17957, 'https://ror.org/05r4z9y47', 'no_lang_code', 1, 'https://ror.org/05r4z9y47 H2 Logic (Denmark)'),
(17958, 'https://ror.org/01x9dpc82', 'no_lang_code', 1, 'https://ror.org/01x9dpc82 HAYC3'),
(17959, 'https://ror.org/03tc4hb20', 'no_lang_code', 1, 'https://ror.org/03tc4hb20 Hessen Agentur (Germany)'),
(17960, 'https://ror.org/00b63pv67', 'no_lang_code', 1, 'https://ror.org/00b63pv67 Industrial Optical Measurement Systems (United States)'),
(17961, 'https://ror.org/03459qp74', 'no_lang_code', 1, 'https://ror.org/03459qp74 TRUMPF (Germany)'),
(17962, 'https://ror.org/01y86zv41', 'en', 1, 'https://ror.org/01y86zv41 Habitat Acquisition Trust'),
(17963, 'https://ror.org/02spsym66', 'en', 1, 'https://ror.org/02spsym66 Industrial Research Institute'),
(17964, 'https://ror.org/03t2hta05', 'fr', 1, 'https://ror.org/03t2hta05 Laboratoire d''Analyses Génétiques pour les Espèces Animales'),
(17965, 'https://ror.org/01y6v9r10', 'no_lang_code', 1, 'https://ror.org/01y6v9r10 Horta (Italy)'),
(17966, 'https://ror.org/014a84x66', 'no_lang_code', 1, 'https://ror.org/014a84x66 Denn (Spain)'),
(17967, 'https://ror.org/0238h3r90', 'no_lang_code', 1, 'https://ror.org/0238h3r90 Somelos (Portugal)'),
(17968, 'https://ror.org/01q87er94', 'no_lang_code', 1, 'https://ror.org/01q87er94 Horton Levi (United Kingdom)'),
(17969, 'https://ror.org/01nn2x953', 'en', 1, 'https://ror.org/01nn2x953 Industrial Association Yarns Fabric Technical Textiles Industry'),
(17970, 'https://ror.org/013bqfn71', 'en', 1, 'https://ror.org/013bqfn71 Institute for Market Economics'),
(17971, 'https://ror.org/05az64h21', 'no_lang_code', 1, 'https://ror.org/05az64h21 Grupo Lederval (Spain)'),
(17972, 'https://ror.org/01kcks752', 'en', 1, 'https://ror.org/01kcks752 Institute for Medical BioMathematics'),
(17973, 'https://ror.org/02afhdg85', 'no_lang_code', 1, 'https://ror.org/02afhdg85 Indutherm Erwärmungsanlagen (Germany)'),
(17974, 'https://ror.org/02s4pbe64', 'no_lang_code', 1, 'https://ror.org/02s4pbe64 Haines Lundberg and Waehler'),
(17975, 'https://ror.org/05ajme216', 'pt', 1, 'https://ror.org/05ajme216 Hospital de Santo Espirito de Angra do Heroísmo'),
(17976, 'https://ror.org/05y9mxh13', 'pt', 1, 'https://ror.org/05y9mxh13 Hospital do Mar'),
(17977, 'https://ror.org/03r516865', 'no_lang_code', 1, 'https://ror.org/03r516865 Informatizacija Energetika Avtomatizacija (Slovenia)'),
(17978, 'https://ror.org/000gxrm11', 'en', 1, 'https://ror.org/000gxrm11 Hospital for Sick Children Pediatric Center'),
(17979, 'https://ror.org/00sdk9579', 'no_lang_code', 1, 'https://ror.org/00sdk9579 Hakkı Usta Ogulları Mak.San.Tic (Turkey)'),
(17980, 'https://ror.org/04r7d8a74', 'no_lang_code', 1, 'https://ror.org/04r7d8a74 Halevi Dweck (Israel)'),
(17981, 'https://ror.org/03185ph79', 'no_lang_code', 1, 'https://ror.org/03185ph79 Halliday James (United Kingdom)'),
(17982, 'https://ror.org/01z9k3j07', 'no_lang_code', 1, 'https://ror.org/01z9k3j07 Ramboll (United Kingdom)'),
(17983, 'https://ror.org/04hq7r724', 'no_lang_code', 1, 'https://ror.org/04hq7r724 INERCO (Spain)'),
(17984, 'https://ror.org/03xjr3d37', 'no_lang_code', 1, 'https://ror.org/03xjr3d37 HaloSource (United States)'),
(17985, 'https://ror.org/047n4sz26', 'en', 1, 'https://ror.org/047n4sz26 Institute of Non-ferrous and Rare Metals'),
(17986, 'https://ror.org/05mngvs08', 'no_lang_code', 1, 'https://ror.org/05mngvs08 HalTech'),
(17987, 'https://ror.org/03ws7wb17', 'no_lang_code', 1, 'https://ror.org/03ws7wb17 Hamakua-Kohala Health'),
(17988, 'https://ror.org/0237jrs86', 'en', 1, 'https://ror.org/0237jrs86 House Next Door'),
(17989, 'https://ror.org/0264zze35', 'en', 1, 'https://ror.org/0264zze35 General Confederation of Greek Workers'),
(17990, 'https://ror.org/04nb6x947', 'no_lang_code', 1, 'https://ror.org/04nb6x947 Hamamatsu Photonics (United Kingdom)'),
(17991, 'https://ror.org/0187pag34', 'en', 1, 'https://ror.org/0187pag34 Institute for Physical Research'),
(17992, 'https://ror.org/02xkzav80', 'en', 1, 'https://ror.org/02xkzav80 Housing & Care 21'),
(17993, 'https://ror.org/052w1b871', 'no_lang_code', 1, 'https://ror.org/052w1b871 Bellicum Pharmaceuticals (United States)'),
(17994, 'https://ror.org/04e472991', 'no_lang_code', 1, 'https://ror.org/04e472991 HQ-Dielectrics (Germany)'),
(17995, 'https://ror.org/0262rzr61', 'no_lang_code', 1, 'https://ror.org/0262rzr61 Hamilton Thorne (United States)'),
(17996, 'https://ror.org/00tt1dr37', 'no_lang_code', 1, 'https://ror.org/00tt1dr37 HRI Associates'),
(17997, 'https://ror.org/035vdar92', 'en', 1, 'https://ror.org/035vdar92 Hands on Science Outreach'),
(17998, 'https://ror.org/03rwh4x08', 'no_lang_code', 1, 'https://ror.org/03rwh4x08 HRS Spiratube (Spain)'),
(17999, 'https://ror.org/0300em778', 'en', 1, 'https://ror.org/0300em778 iNets South West'),
(18000, 'https://ror.org/02ygdtt22', 'en', 1, 'https://ror.org/02ygdtt22 HSBC Holdings'),
(18001, 'https://ror.org/05swz5441', 'en', 1, 'https://ror.org/05swz5441 Institute for Social Research'),
(18002, 'https://ror.org/03f1p6998', 'en', 1, 'https://ror.org/03f1p6998 Infectious Diseases Society of America'),
(18003, 'https://ror.org/05shefr17', 'de', 1, 'https://ror.org/05shefr17 Handwerkskammer Trier'),
(18004, 'https://ror.org/017ptvx95', 'no_lang_code', 1, 'https://ror.org/017ptvx95 Infineon Technologies (United Kingdom)'),
(18005, 'https://ror.org/04rpjz321', 'no_lang_code', 1, 'https://ror.org/04rpjz321 Handy Chemicals (Canada)'),
(18006, 'https://ror.org/04carjf23', 'en', 1, 'https://ror.org/04carjf23 Institute for Sustainability'),
(18007, 'https://ror.org/02x3nwd23', 'en', 1, 'https://ror.org/02x3nwd23 Institute for Sustainable Development'),
(18008, 'https://ror.org/054hpzj06', 'no_lang_code', 1, 'https://ror.org/054hpzj06 Infinium (United States)'),
(18009, 'https://ror.org/04ef4sc21', 'no_lang_code', 1, 'https://ror.org/04ef4sc21 HT Laser (Finland)'),
(18010, 'https://ror.org/05kb6er29', 'no_lang_code', 1, 'https://ror.org/05kb6er29 SOLIDpower (Switzerland)'),
(18011, 'https://ror.org/0500fyd17', 'no_lang_code', 1, 'https://ror.org/0500fyd17 Huawei Technologies (Sweden)'),
(18012, 'https://ror.org/01zy5b076', 'no_lang_code', 1, 'https://ror.org/01zy5b076 Infobyte (Italy)'),
(18013, 'https://ror.org/03mnfhy36', 'no_lang_code', 1, 'https://ror.org/03mnfhy36 Hanover Scotland Housing Association (United Kingdom)'),
(18014, 'https://ror.org/004fbgd98', 'no_lang_code', 1, 'https://ror.org/004fbgd98 InfoCamere (Italy)'),
(18015, 'https://ror.org/026bph638', 'no_lang_code', 1, 'https://ror.org/026bph638 Hueck Folien (Austria)'),
(18016, 'https://ror.org/005b83279', 'no_lang_code', 1, 'https://ror.org/005b83279 InfoConsult (Germany)'),
(18017, 'https://ror.org/03tg0tp84', 'en', 1, 'https://ror.org/03tg0tp84 Institute for the Study of Societies and Knowledge Институт за изследване на обществата и знанието'),
(18018, 'https://ror.org/053pt1j04', 'no_lang_code', 1, 'https://ror.org/053pt1j04 Hugin Expert (Denmark)'),
(18019, 'https://ror.org/03f8z3m49', 'no_lang_code', 1, 'https://ror.org/03f8z3m49 InfoCulture (United States)'),
(18020, 'https://ror.org/05h60ts97', 'no_lang_code', 1, 'https://ror.org/05h60ts97 Infoport (Spain)'),
(18021, 'https://ror.org/01qsj6b37', 'en', 1, 'https://ror.org/01qsj6b37 Hugo''s Restaurant'),
(18022, 'https://ror.org/01sjyrz62', 'en', 1, 'https://ror.org/01sjyrz62 Hull City Council'),
(18023, 'https://ror.org/017c2y429', 'no_lang_code', 1, 'https://ror.org/017c2y429 Informa (Italy)'),
(18024, 'https://ror.org/012ctg788', 'no_lang_code', 1, 'https://ror.org/012ctg788 HULVERSHORN Eisengiesserei (Germany)'),
(18025, 'https://ror.org/00y0h2589', 'no_lang_code', 1, 'https://ror.org/00y0h2589 Hansa Industrie Mixer (Germany)'),
(18026, 'https://ror.org/05740ft58', 'no_lang_code', 1, 'https://ror.org/05740ft58 El Corte Inglés (Spain)'),
(18027, 'https://ror.org/02dahmt29', 'no_lang_code', 1, 'https://ror.org/02dahmt29 Humacyte (United States)'),
(18028, 'https://ror.org/041dnb131', 'no_lang_code', 1, 'https://ror.org/041dnb131 CGI (Spain)'),
(18029, 'https://ror.org/04kcnzc28', 'no_lang_code', 1, 'https://ror.org/04kcnzc28 Hanzo Archives (United Kingdom)'),
(18030, 'https://ror.org/02p4ctz53', 'no_lang_code', 1, 'https://ror.org/02p4ctz53 Informatica Tecnologie e Servizi (Italy)'),
(18031, 'https://ror.org/01vg8sr12', 'en', 1, 'https://ror.org/01vg8sr12 Institut für Angewandte Systemtechnik Bremen Institute for Applied Systems Technology Bremen'),
(18032, 'https://ror.org/04fjz0k13', 'no_lang_code', 1, 'https://ror.org/04fjz0k13 Sicherheit, Informatik und Zentrale Services'),
(18033, 'https://ror.org/02ks97v71', 'no_lang_code', 1, 'https://ror.org/02ks97v71 Human Reliability (United Kingdom)'),
(18034, 'https://ror.org/02d7e3b90', 'en', 1, 'https://ror.org/02d7e3b90 Human Services Research Institute'),
(18035, 'https://ror.org/002vxyf08', 'no_lang_code', 1, 'https://ror.org/002vxyf08 Humanetics Corporation (United States)'),
(18036, 'https://ror.org/032vk7j62', 'no_lang_code', 1, 'https://ror.org/032vk7j62 Information & Image Management Systems (Spain)'),
(18037, 'https://ror.org/054y4pt02', 'no_lang_code', 1, 'https://ror.org/054y4pt02 Harineras Villamayor (Spain)'),
(18038, 'https://ror.org/044dnpj34', 'en', 1, 'https://ror.org/044dnpj34 Harlow College'),
(18039, 'https://ror.org/04a6kdq42', 'no_lang_code', 1, 'https://ror.org/04a6kdq42 Information Highway Group (Spain)'),
(18040, 'https://ror.org/023594t55', 'en', 1, 'https://ror.org/023594t55 Humber Bridge Board'),
(18041, 'https://ror.org/05r5gyx33', 'no_lang_code', 1, 'https://ror.org/05r5gyx33 Hummingbird Precision Machine (United States)'),
(18042, 'https://ror.org/02hnr5x72', 'no_lang_code', 1, 'https://ror.org/02hnr5x72 Harman (Germany)'),
(18043, 'https://ror.org/047527p77', 'no_lang_code', 1, 'https://ror.org/047527p77 Hummingbird Scientific (United States)'),
(18044, 'https://ror.org/04v4mek61', 'no_lang_code', 1, 'https://ror.org/04v4mek61 Harman Technology (United Kingdom)'),
(18045, 'https://ror.org/02k6x6h05', 'no_lang_code', 1, 'https://ror.org/02k6x6h05 Harmonia (United States)'),
(18046, 'https://ror.org/02wrd4h10', 'en', 1, 'https://ror.org/02wrd4h10 Instituto Multimedia'),
(18047, 'https://ror.org/04kwq4x05', 'no_lang_code', 1, 'https://ror.org/04kwq4x05 Harmonic Drive (Germany)'),
(18048, 'https://ror.org/04j1e5984', 'no_lang_code', 1, 'https://ror.org/04j1e5984 Magyar Posta'),
(18049, 'https://ror.org/04b76w231', 'no_lang_code', 1, 'https://ror.org/04b76w231 A.S.Sadykov Institute of Bioorganic Chemistry'),
(18050, 'https://ror.org/03tmcyr03', 'en', 1, 'https://ror.org/03tmcyr03 Hartford Public Schools'),
(18051, 'https://ror.org/0298rr784', 'en', 1, 'https://ror.org/0298rr784 Instituto Nacional de Estatística National Statistical Institute of Portugal'),
(18052, 'https://ror.org/054hp8k77', 'no_lang_code', 1, 'https://ror.org/054hp8k77 Informed Horizons Education (United States)'),
(18053, 'https://ror.org/049sbzn78', 'en', 1, 'https://ror.org/049sbzn78 Institute of Chemical Engineering Институт по инженерна химия'),
(18054, 'https://ror.org/01gnp4591', 'en', 1, 'https://ror.org/01gnp4591 Institute of Chemical Engineering'),
(18055, 'https://ror.org/004q3d116', 'en', 1, 'https://ror.org/004q3d116 Institute of Biopolymers and Chemical Fibres'),
(18056, 'https://ror.org/04hzk8845', 'en', 1, 'https://ror.org/04hzk8845 Institute of Chemistry'),
(18057, 'https://ror.org/02zpzxx25', 'en', 1, 'https://ror.org/02zpzxx25 Hunterdon Prevention Resources'),
(18058, 'https://ror.org/01egrn244', 'no_lang_code', 1, 'https://ror.org/01egrn244 Infrabel (Belgium)'),
(18059, 'https://ror.org/05td14x20', 'no_lang_code', 1, 'https://ror.org/05td14x20 Hunting Energy Services (United Kingdom)'),
(18060, 'https://ror.org/00byceh24', 'no_lang_code', 1, 'https://ror.org/00byceh24 Huntington Consultancy (United States)'),
(18061, 'https://ror.org/03w1c1p82', 'no_lang_code', 1, 'https://ror.org/03w1c1p82 Huntsman (Belgium)'),
(18062, 'https://ror.org/02ygxgy27', 'en', 1, 'https://ror.org/02ygxgy27 Hawaii State Department of Education'),
(18063, 'https://ror.org/02j3b8k57', 'en', 1, 'https://ror.org/02j3b8k57 Institute of Contemporary Arts'),
(18064, 'https://ror.org/05v7e2b49', 'no_lang_code', 1, 'https://ror.org/05v7e2b49 Hazen Research (United States)'),
(18065, 'https://ror.org/05f3yt521', 'en', 1, 'https://ror.org/05f3yt521 V. A. Trapeznikov Institute of Control Sciences W.A.Trapeznikow Institut für Steuerungswissenschaften Федеральное государственное бюджетное учреждение науки Институт проблем управления им. В. А. Трапезникова Российской академии наук'),
(18066, 'https://ror.org/01rhrdz17', 'no_lang_code', 1, 'https://ror.org/01rhrdz17 InfraTec (Germany)'),
(18067, 'https://ror.org/01v5rbf40', 'en', 1, 'https://ror.org/01v5rbf40 Yu.G. Shafer Institute of Cosmophysical Research and Aeronomy Федеральное государственное бюджетное учреждение науки Институт космофизических исследований и аэрономии им. Ю.Г.Шафера Сибирского отделения Российской академии наук'),
(18068, 'https://ror.org/01ngcpv42', 'no_lang_code', 1, 'https://ror.org/01ngcpv42 Health Care Service Corporation'),
(18069, 'https://ror.org/049ecjx61', 'en', 1, 'https://ror.org/049ecjx61 A.V. Shubnikov Institute of Crystallography Федеральное государственное бюджетное учреждение науки Институт кристаллографии им. А.В. Шубникова Российской академии наук'),
(18070, 'https://ror.org/024jak282', 'no_lang_code', 1, 'https://ror.org/024jak282 Blutip (Canada)'),
(18071, 'https://ror.org/011p6w039', 'no_lang_code', 1, 'https://ror.org/011p6w039 Hybrid Plastics (United States)'),
(18072, 'https://ror.org/04nj1pt13', 'no_lang_code', 1, 'https://ror.org/04nj1pt13 Hybrigenics (France)'),
(18073, 'https://ror.org/059et9981', 'en', 1, 'https://ror.org/059et9981 ING Bank Internationale Nederlanden Groep'),
(18074, 'https://ror.org/04r837x41', 'en', 1, 'https://ror.org/04r837x41 Institute of Economics'),
(18075, 'https://ror.org/03y2be923', 'en', 1, 'https://ror.org/03y2be923 Economic Research Institute Икономически институт за научни изследвания'),
(18076, 'https://ror.org/012dtcx72', 'no_lang_code', 1, 'https://ror.org/012dtcx72 National Institute for Research and Development in Welding and Material Testing'),
(18077, 'https://ror.org/005m99512', 'ro', 1, 'https://ror.org/005m99512 Institutul National de Cercetare si Dezvoltare pentru Fizica Pamantului National Institutue of Research and Development for Earth’s Physics'),
(18078, 'https://ror.org/00634z117', 'no_lang_code', 1, 'https://ror.org/00634z117 Checkit (United Kingdom)'),
(18079, 'https://ror.org/01e5vvr68', 'no_lang_code', 1, 'https://ror.org/01e5vvr68 Hämosan (Austria)'),
(18080, 'https://ror.org/01agtnb56', 'no_lang_code', 1, 'https://ror.org/01agtnb56 Healionics (United States)'),
(18081, 'https://ror.org/04zc40243', 'en', 1, 'https://ror.org/04zc40243 Instituto Nacional de Medicina National Legal Medicine Institute'),
(18082, 'https://ror.org/01g853f75', 'en', 1, 'https://ror.org/01g853f75 Institute of Ion Plasma Laser Technologies'),
(18083, 'https://ror.org/0299eyn73', 'en', 1, 'https://ror.org/0299eyn73 Institute of Electronics Институт по електроника'),
(18084, 'https://ror.org/00sx2c320', 'en', 1, 'https://ror.org/00sx2c320 Health and Safety Authority'),
(18085, 'https://ror.org/04fv2f128', 'no_lang_code', 1, 'https://ror.org/04fv2f128 Krejci Engineering (Czechia)'),
(18086, 'https://ror.org/04k57j098', 'en', 1, 'https://ror.org/04k57j098 Health Initiatives for Youth'),
(18087, 'https://ror.org/01fp7rv25', 'no_lang_code', 1, 'https://ror.org/01fp7rv25 Ingegneria dei Trasporti (Italy)'),
(18088, 'https://ror.org/02rxp0j51', 'no_lang_code', 1, 'https://ror.org/02rxp0j51 Ingeniatrics Tecnologías (Spain)'),
(18089, 'https://ror.org/01j4wpj84', 'en', 1, 'https://ror.org/01j4wpj84 Health On The Net Foundation'),
(18090, 'https://ror.org/053qf6056', 'no_lang_code', 1, 'https://ror.org/053qf6056 Ingenico (France)'),
(18091, 'https://ror.org/05k1e9879', 'en', 1, 'https://ror.org/05k1e9879 Health Promotion Services'),
(18092, 'https://ror.org/044j1gb67', 'no_lang_code', 1, 'https://ror.org/044j1gb67 Hycult Biotech (Netherlands)'),
(18093, 'https://ror.org/01ctnwa22', 'en', 1, 'https://ror.org/01ctnwa22 Health Resources in Action'),
(18094, 'https://ror.org/043y57f64', 'en', 1, 'https://ror.org/043y57f64 Hyde Housing Association'),
(18095, 'https://ror.org/01sm3jy79', 'no_lang_code', 1, 'https://ror.org/01sm3jy79 Health Technomics (United States)'),
(18096, 'https://ror.org/018fdr531', 'no_lang_code', 1, 'https://ror.org/018fdr531 Yara (Norway)'),
(18097, 'https://ror.org/05cewnq61', 'en', 1, 'https://ror.org/05cewnq61 HealthInsight'),
(18098, 'https://ror.org/01f9fz831', 'no_lang_code', 1, 'https://ror.org/01f9fz831 Ingeniería y Soluciones Informáticas (Spain)'),
(18099, 'https://ror.org/00j4h9q86', 'no_lang_code', 1, 'https://ror.org/00j4h9q86 Ingenieurgesellschaft Auto und Verkehr (Germany)'),
(18100, 'https://ror.org/015m28b66', 'no_lang_code', 1, 'https://ror.org/015m28b66 Ingenieurgesellschaft für Technische Software (Germany)'),
(18101, 'https://ror.org/038dact55', 'no_lang_code', 1, 'https://ror.org/038dact55 Battery Ventures (United States)'),
(18102, 'https://ror.org/00zh01q02', 'no_lang_code', 1, 'https://ror.org/00zh01q02 Healthways (United States)'),
(18103, 'https://ror.org/05bc0ed68', 'en', 1, 'https://ror.org/05bc0ed68 Healthy Communities Initiative of St Joseph County'),
(18104, 'https://ror.org/01temjw93', 'en', 1, 'https://ror.org/01temjw93 Healthy Northeast Pennsylvania Initiative'),
(18105, 'https://ror.org/024dbdr63', 'no_lang_code', 1, 'https://ror.org/024dbdr63 Mowi (Norway)'),
(18106, 'https://ror.org/05krzb242', 'en', 1, 'https://ror.org/05krzb242 Healthy Teen Network'),
(18107, 'https://ror.org/02251ba66', 'no_lang_code', 1, 'https://ror.org/02251ba66 Institute of Forest Ecosystem Research'),
(18108, 'https://ror.org/03j84nv98', 'no_lang_code', 1, 'https://ror.org/03j84nv98 Heart Imaging Technologies (United States)'),
(18109, 'https://ror.org/04pgtsj35', 'en', 1, 'https://ror.org/04pgtsj35 Hearth'),
(18110, 'https://ror.org/02ydk7b78', 'en', 1, 'https://ror.org/02ydk7b78 Heartland Family Service'),
(18111, 'https://ror.org/05gqxfr13', 'en', 1, 'https://ror.org/05gqxfr13 Heartland Alliance'),
(18112, 'https://ror.org/01hy2c330', 'en', 1, 'https://ror.org/01hy2c330 NS Kurnakova Institute of General and Inorganic Chemistry Федеральное государственное бюджетное учреждение науки Институт общей и неорганической химии им. Н.С. Курнакова Российской академии наук'),
(18113, 'https://ror.org/02caxje77', 'no_lang_code', 1, 'https://ror.org/02caxje77 Van Putten-Gas Energy Observatory (Netherlands)'),
(18114, 'https://ror.org/014gd3j97', 'en', 1, 'https://ror.org/014gd3j97 Hebrew Home'),
(18115, 'https://ror.org/027p3g314', 'no_lang_code', 1, 'https://ror.org/027p3g314 Hydrocontrol (Italy)'),
(18116, 'https://ror.org/031213047', 'no_lang_code', 1, 'https://ror.org/031213047 Hebridean Seaweed (United Kingdom)'),
(18117, 'https://ror.org/03p4y9t51', 'no_lang_code', 1, 'https://ror.org/03p4y9t51 Probiodrug (Germany)'),
(18118, 'https://ror.org/05q0xtj32', 'no_lang_code', 1, 'https://ror.org/05q0xtj32 Hydrodata (Italy)'),
(18119, 'https://ror.org/025fy1n79', 'no_lang_code', 1, 'https://ror.org/025fy1n79 Hydrogen Solar (United Kingdom)'),
(18120, 'https://ror.org/00fpvt160', 'no_lang_code', 1, 'https://ror.org/00fpvt160 Inhouse Engineering (Germany)'),
(18121, 'https://ror.org/04j62p693', 'en', 1, 'https://ror.org/04j62p693 Department of Geodesy, Remote Sensing and Land Offices Geodézia, Távérzékelés és Földhivatalok Tanszék'),
(18122, 'https://ror.org/04cj8sj38', 'no_lang_code', 1, 'https://ror.org/04cj8sj38 Hydrogenics (Belgium)'),
(18123, 'https://ror.org/03t2wy197', 'no_lang_code', 1, 'https://ror.org/03t2wy197 HydroLogic (Netherlands)'),
(18124, 'https://ror.org/01hmvx995', 'no_lang_code', 1, 'https://ror.org/01hmvx995 Hydrometeorological Innovative Solutions (Spain)'),
(18125, 'https://ror.org/01kwgtf21', 'en', 1, 'https://ror.org/01kwgtf21 Helena Public School District'),
(18126, 'https://ror.org/0424v9690', 'no_lang_code', 1, 'https://ror.org/0424v9690 Heliatek (Germany)'),
(18127, 'https://ror.org/01keyq725', 'en', 1, 'https://ror.org/01keyq725 Helicon Foundation'),
(18128, 'https://ror.org/03g0fjd93', 'no_lang_code', 1, 'https://ror.org/03g0fjd93 RM Education (United Kingdom)'),
(18129, 'https://ror.org/05qvwps75', 'en', 1, 'https://ror.org/05qvwps75 Helio International'),
(18130, 'https://ror.org/059m1rc96', 'no_lang_code', 1, 'https://ror.org/059m1rc96 Institut für Prüftechnik Gerätebau (Germany)'),
(18131, 'https://ror.org/02rnkgt97', 'no_lang_code', 1, 'https://ror.org/02rnkgt97 Hastoe Group (United Kingdom)'),
(18132, 'https://ror.org/02mn0vt57', 'fr', 1, 'https://ror.org/02mn0vt57 Institut de l''Information Scientifique et Technique Institute of Scientific and Technical Information'),
(18133, 'https://ror.org/01gzdh662', 'no_lang_code', 1, 'https://ror.org/01gzdh662 Hyperion (Ireland)'),
(18134, 'https://ror.org/01c68s590', 'no_lang_code', 1, 'https://ror.org/01c68s590 InLight Solutions (United States)'),
(18135, 'https://ror.org/02jxaxt71', 'no_lang_code', 1, 'https://ror.org/02jxaxt71 Hyperstone (Germany)'),
(18136, 'https://ror.org/013k3b019', 'no_lang_code', 1, 'https://ror.org/013k3b019 Acrion Technologies (United States)'),
(18137, 'https://ror.org/045ybeh27', 'no_lang_code', 1, 'https://ror.org/045ybeh27 Inmatec Technologies (Germany)'),
(18138, 'https://ror.org/0389pd205', 'no_lang_code', 1, 'https://ror.org/0389pd205 Helitune (United Kingdom)'),
(18139, 'https://ror.org/01fdnyw87', 'en', 1, 'https://ror.org/01fdnyw87 M. Nodia Institute of Geophysics'),
(18140, 'https://ror.org/02dsng071', 'no_lang_code', 1, 'https://ror.org/02dsng071 Inmatech (United States)'),
(18141, 'https://ror.org/01gq88837', 'no_lang_code', 1, 'https://ror.org/01gq88837 Hypertech (Greece)'),
(18142, 'https://ror.org/054rms077', 'no_lang_code', 1, 'https://ror.org/054rms077 Innegra Technologies (United States)'),
(18143, 'https://ror.org/03b4ksy95', 'en', 1, 'https://ror.org/03b4ksy95 Institute of Global Climate and Ecology Институт глобального климата и экологии'),
(18144, 'https://ror.org/02wf9ck77', 'pt', 1, 'https://ror.org/02wf9ck77 Instituto Português de Malacologia'),
(18145, 'https://ror.org/051g2vd56', 'no_lang_code', 1, 'https://ror.org/051g2vd56 Lehigh Hanson (Canada)'),
(18146, 'https://ror.org/027f5w594', 'no_lang_code', 1, 'https://ror.org/027f5w594 InnerOptic Technology (United States)'),
(18147, 'https://ror.org/01nyd3116', 'no_lang_code', 1, 'https://ror.org/01nyd3116 Hysytech (Italy)'),
(18148, 'https://ror.org/01s2j5a22', 'no_lang_code', 1, 'https://ror.org/01s2j5a22 Hyundai Motors (Germany)'),
(18149, 'https://ror.org/04gns8903', 'en', 1, 'https://ror.org/04gns8903 Joint Institute for High Temperatures Федеральное государственное бюджетное учреждение науки Институт энергетических исследований Российской академии наук'),
(18150, 'https://ror.org/036j3t423', 'no_lang_code', 1, 'https://ror.org/036j3t423 Piraeus Bank Τράπεζα Πειραιώς'),
(18151, 'https://ror.org/007xvzw21', 'en', 1, 'https://ror.org/007xvzw21 Institute of Highway Engineers'),
(18152, 'https://ror.org/04j2j9782', 'en', 1, 'https://ror.org/04j2j9782 Institute of Ideas'),
(18153, 'https://ror.org/00p2bz193', 'no_lang_code', 1, 'https://ror.org/00p2bz193 I-Moss (Belgium)'),
(18154, 'https://ror.org/05s5kq870', 'en', 1, 'https://ror.org/05s5kq870 Institute of International Education'),
(18155, 'https://ror.org/05c0tak18', 'no_lang_code', 1, 'https://ror.org/05c0tak18 Inner Health'),
(18156, 'https://ror.org/04a1ad523', 'no_lang_code', 1, 'https://ror.org/04a1ad523 I.CO.P (Italy)'),
(18157, 'https://ror.org/05gmpv778', 'no_lang_code', 1, 'https://ror.org/05gmpv778 Innolume (Germany)'),
(18158, 'https://ror.org/004eh9171', 'no_lang_code', 1, 'https://ror.org/004eh9171 Helmed Spine Implants (Greece)'),
(18159, 'https://ror.org/04jqbzt84', 'en', 1, 'https://ror.org/04jqbzt84 I.I. Schmalhausen Institute of Zoology Інститут зоології ім. І. І. Шмальгаузена Національної академії наук України'),
(18160, 'https://ror.org/053tcf519', 'no_lang_code', 1, 'https://ror.org/053tcf519 Innopole (Spain)'),
(18161, 'https://ror.org/00b5qjr76', 'en', 1, 'https://ror.org/00b5qjr76 Institute of Laser Physics Федеральное государственное бюджетное учреждение науки Институт лазерной физики Сибирского отделения Российской академии наук'),
(18162, 'https://ror.org/02337dt86', 'no_lang_code', 1, 'https://ror.org/02337dt86 Helmut Christmann (Germany)'),
(18163, 'https://ror.org/05qck2d60', 'no_lang_code', 1, 'https://ror.org/05qck2d60 I+ (Italy)'),
(18164, 'https://ror.org/033px5146', 'en', 1, 'https://ror.org/033px5146 Institute of Linguistics Федеральное государственное бюджетное учреждение науки Институт языкознания Российской академии наук'),
(18165, 'https://ror.org/04qwevz50', 'en', 1, 'https://ror.org/04qwevz50 Regional Innovation Agency of Central Hungary'),
(18166, 'https://ror.org/04g47bb58', 'no_lang_code', 1, 'https://ror.org/04g47bb58 Innostart (Hungary) Innostart Nemzeti Üzleti és Innovációs Központ Alapítvány'),
(18167, 'https://ror.org/00sqx4367', 'no_lang_code', 1, 'https://ror.org/00sqx4367 Innotec (Italy)'),
(18168, 'https://ror.org/04xtpdj18', 'en', 1, 'https://ror.org/04xtpdj18 Institute of Mathematical Problems of Biology Институт математических проблем биологии (ИМПБ РАН)'),
(18169, 'https://ror.org/00b7zp807', 'no_lang_code', 1, 'https://ror.org/00b7zp807 International Marine and Dredging Consultants'),
(18170, 'https://ror.org/032gaeg66', 'no_lang_code', 1, 'https://ror.org/032gaeg66 Innoterm (Hungary)'),
(18171, 'https://ror.org/00fy4at53', 'en', 1, 'https://ror.org/00fy4at53 Institute of Mathematics and Computer Science'),
(18172, 'https://ror.org/034fpp998', 'no_lang_code', 1, 'https://ror.org/034fpp998 International Medias Data Services (Canada)'),
(18173, 'https://ror.org/052c3cf27', 'no_lang_code', 1, 'https://ror.org/052c3cf27 Oceaneering International (United Kingdom)'),
(18174, 'https://ror.org/05h443j18', 'no_lang_code', 1, 'https://ror.org/05h443j18 Innova (Hungary)'),
(18175, 'https://ror.org/00ab5b586', 'en', 1, 'https://ror.org/00ab5b586 Institute of Mathematics and Mechanics'),
(18176, 'https://ror.org/00m6hsp80', 'en', 1, 'https://ror.org/00m6hsp80 Herzliya Medical Center הרצליה מדיקל סנטר'),
(18177, 'https://ror.org/04aptxm88', 'en', 1, 'https://ror.org/04aptxm88 International Office for Water Office International de l’Eau Oficina Internacional del Agua'),
(18178, 'https://ror.org/00ybj8833', 'no_lang_code', 1, 'https://ror.org/00ybj8833 Innovatia (Canada)'),
(18179, 'https://ror.org/01a1qdv64', 'en', 1, 'https://ror.org/01a1qdv64 G.V. Kurdyumov Institute for Metal Physics Інститут металофізики імені Г. В. Курдюмова НАН України Институт металлофизики НАН Украины'),
(18180, 'https://ror.org/05kfe4t97', 'en', 1, 'https://ror.org/05kfe4t97 Innovation Initiatives Ontario North'),
(18181, 'https://ror.org/01368tg26', 'no_lang_code', 1, 'https://ror.org/01368tg26 IAPETOS (Greece)'),
(18182, 'https://ror.org/0062bek19', 'en', 1, 'https://ror.org/0062bek19 Irish Rail'),
(18183, 'https://ror.org/00p941317', 'no_lang_code', 1, 'https://ror.org/00p941317 Innovasjon Norge Innovation Norway (Norway)'),
(18184, 'https://ror.org/03aztvx54', 'en', 1, 'https://ror.org/03aztvx54 International Organization for Migration'),
(18185, 'https://ror.org/01j7ed328', 'en', 1, 'https://ror.org/01j7ed328 International Organization for Migration Internationale Organisation für Migration Organisation internationale pour les migrations Organizzazione Internazionale per le Migrazioni'),
(18186, 'https://ror.org/04x29sy28', 'no_lang_code', 1, 'https://ror.org/04x29sy28 Innovation Strategies (Spain)'),
(18187, 'https://ror.org/05ws8g470', 'en', 1, 'https://ror.org/05ws8g470 Institute for Biotechnology and Bioengineering'),
(18188, 'https://ror.org/043dpct50', 'no_lang_code', 1, 'https://ror.org/043dpct50 Innovative Biologics (United States)'),
(18189, 'https://ror.org/002rgah83', 'no_lang_code', 1, 'https://ror.org/002rgah83 Rheonix (United States)'),
(18190, 'https://ror.org/0363g3q34', 'no_lang_code', 1, 'https://ror.org/0363g3q34 Innovative Design Labs (United States)'),
(18191, 'https://ror.org/054x1vp63', 'en', 1, 'https://ror.org/054x1vp63 International Primatological Society'),
(18192, 'https://ror.org/00aaafk57', 'no_lang_code', 1, 'https://ror.org/00aaafk57 International Project Management, Plating and Materials (France)'),
(18193, 'https://ror.org/04hsde529', 'en', 1, 'https://ror.org/04hsde529 Wisconsin Institute of Nutrition Research Foundation'),
(18194, 'https://ror.org/01jbwxs60', 'no_lang_code', 1, 'https://ror.org/01jbwxs60 IBC Advanced Technologies (United States)'),
(18195, 'https://ror.org/04dec0k98', 'no_lang_code', 1, 'https://ror.org/04dec0k98 Innovative Research (United States)'),
(18196, 'https://ror.org/030r0t953', 'es', 1, 'https://ror.org/030r0t953 Instituto Tecnológico de Materiales de Asturias'),
(18197, 'https://ror.org/04wbka248', 'en', 1, 'https://ror.org/04wbka248 International Security & Counter Terrorism Academy'),
(18198, 'https://ror.org/04sbqvh08', 'no_lang_code', 1, 'https://ror.org/04sbqvh08 Iberia (Spain)'),
(18199, 'https://ror.org/056635736', 'en', 1, 'https://ror.org/056635736 Institute of Oriental Studies Институт востоковедения'),
(18200, 'https://ror.org/047k18g44', 'en', 1, 'https://ror.org/047k18g44 International Bureau for Environmental Studies'),
(18201, 'https://ror.org/04v074446', 'en', 1, 'https://ror.org/04v074446 Institute of Physical and Organic Chemistry'),
(18202, 'https://ror.org/01dz62b56', 'no_lang_code', 1, 'https://ror.org/01dz62b56 Innoprot (Spain)'),
(18203, 'https://ror.org/02ht8yh85', 'en', 1, 'https://ror.org/02ht8yh85 International Society for Environmental Protection'),
(18204, 'https://ror.org/01nfdb672', 'no_lang_code', 1, 'https://ror.org/01nfdb672 IBK (Germany)'),
(18205, 'https://ror.org/00eebj972', 'no_lang_code', 1, 'https://ror.org/00eebj972 Innovazione Automotive Metalmeccanica (Italy) Polo Innovazione Automotive'),
(18206, 'https://ror.org/03gkf9664', 'no_lang_code', 1, 'https://ror.org/03gkf9664 IBK-Innovation (Germany)'),
(18207, 'https://ror.org/00yywbq76', 'no_lang_code', 1, 'https://ror.org/00yywbq76 Innovia (United States)'),
(18208, 'https://ror.org/03vqa3g80', 'en', 1, 'https://ror.org/03vqa3g80 Species360'),
(18209, 'https://ror.org/034ahpr11', 'no_lang_code', 1, 'https://ror.org/034ahpr11 IBM (India)'),
(18210, 'https://ror.org/02nc81e13', 'no_lang_code', 1, 'https://ror.org/02nc81e13 IBM (Italy)'),
(18211, 'https://ror.org/031nang70', 'pl', 1, 'https://ror.org/031nang70 Innowacja Polska'),
(18212, 'https://ror.org/05r9zy719', 'no_lang_code', 1, 'https://ror.org/05r9zy719 Innowep (Germany)'),
(18213, 'https://ror.org/03jn58q55', 'no_lang_code', 1, 'https://ror.org/03jn58q55 Innu-Science (Canada)'),
(18214, 'https://ror.org/01wwe7a82', 'pt', 1, 'https://ror.org/01wwe7a82 Instituto Terra e Memória'),
(18215, 'https://ror.org/01sj5nb95', 'no_lang_code', 1, 'https://ror.org/01sj5nb95 Inova Pro (Czechia)'),
(18216, 'https://ror.org/04hvtwq28', 'no_lang_code', 1, 'https://ror.org/04hvtwq28 Inox Pneumatic (Denmark)'),
(18217, 'https://ror.org/013rnrt24', 'en', 1, 'https://ror.org/013rnrt24 Institute of Physics'),
(18218, 'https://ror.org/010n36m19', 'no_lang_code', 1, 'https://ror.org/010n36m19 IBSmm (Czechia)'),
(18219, 'https://ror.org/02k784406', 'no_lang_code', 1, 'https://ror.org/02k784406 Inpria (United States)'),
(18220, 'https://ror.org/00ayxy168', 'en', 1, 'https://ror.org/00ayxy168 Institute of Technical Acoustics Інстытут тэхнічнай акустыкі'),
(18221, 'https://ror.org/00kv47y95', 'no_lang_code', 1, 'https://ror.org/00kv47y95 InRay Solutions (Bulgaria)'),
(18222, 'https://ror.org/01z1gfs52', 'no_lang_code', 1, 'https://ror.org/01z1gfs52 Tentnology (Canada)'),
(18223, 'https://ror.org/02jgekf05', 'no_lang_code', 1, 'https://ror.org/02jgekf05 Ibstock Brick (United Kingdom)'),
(18224, 'https://ror.org/00zmh3n37', 'de', 1, 'https://ror.org/00zmh3n37 Institut für Bildungsforschung der Wirtschaft'),
(18225, 'https://ror.org/037x4qk98', 'en', 1, 'https://ror.org/037x4qk98 International Union Against Tuberculosis and Lung Disease'),
(18226, 'https://ror.org/02na67p17', 'no_lang_code', 1, 'https://ror.org/02na67p17 IBZ - Salzchemie (Germany)'),
(18227, 'https://ror.org/05s3yra18', 'en', 1, 'https://ror.org/05s3yra18 International Union for Electricity applications'),
(18228, 'https://ror.org/02n5mme38', 'no_lang_code', 1, 'https://ror.org/02n5mme38 Topigs Norsvin (Netherlands)'),
(18229, 'https://ror.org/00vbmfk28', 'no_lang_code', 1, 'https://ror.org/00vbmfk28 Inro Consultants (Canada)'),
(18230, 'https://ror.org/04pvq8g37', 'no_lang_code', 1, 'https://ror.org/04pvq8g37 IC Consulenten Ziviltechniker (Austria)'),
(18231, 'https://ror.org/027vqky70', 'no_lang_code', 1, 'https://ror.org/027vqky70 Insiel (Italy)'),
(18232, 'https://ror.org/0416tx222', 'en', 1, 'https://ror.org/0416tx222 International Association for Cereal Science and Technology Internationale Gesellschaft für Getreidewissenschaft und -technologie'),
(18233, 'https://ror.org/04663qn06', 'no_lang_code', 1, 'https://ror.org/04663qn06 Insight Design Labs (Canada)'),
(18234, 'https://ror.org/05yhsbg08', 'no_lang_code', 1, 'https://ror.org/05yhsbg08 OS Alliance (Austria)'),
(18235, 'https://ror.org/020bzqr95', 'en', 1, 'https://ror.org/020bzqr95 Institute of Radio Astronomy Радіоастрономічний інститут'),
(18236, 'https://ror.org/01pfrv343', 'en', 1, 'https://ror.org/01pfrv343 Ministry of the Interior İçişleri Bakanlığı'),
(18237, 'https://ror.org/04ee51h57', 'no_lang_code', 1, 'https://ror.org/04ee51h57 InSightec (Israel)'),
(18238, 'https://ror.org/056v1v664', 'no_lang_code', 1, 'https://ror.org/056v1v664 Insilico Biotechnology (Germany)'),
(18239, 'https://ror.org/004va3t80', 'no_lang_code', 1, 'https://ror.org/004va3t80 Internazionale Marmi e Macchine Carrara (Italy)'),
(18240, 'https://ror.org/02z468g17', 'en', 1, 'https://ror.org/02z468g17 Internet Archive'),
(18241, 'https://ror.org/03awv1y89', 'en', 1, 'https://ror.org/03awv1y89 Reproductive Medicine Institute'),
(18242, 'https://ror.org/0062wks65', 'no_lang_code', 1, 'https://ror.org/0062wks65 Internet Society Bulgaria'),
(18243, 'https://ror.org/02a61j498', 'no_lang_code', 1, 'https://ror.org/02a61j498 ICON Technology & Process Consulting (United Kingdom)'),
(18244, 'https://ror.org/00evbjw38', 'en', 1, 'https://ror.org/00evbjw38 Institute of Rural and Agricultural Development Instytut Rozwoju Wsi i Rolnictwa Polskiej Akademii Nauk'),
(18245, 'https://ror.org/003c9rw47', 'no_lang_code', 1, 'https://ror.org/003c9rw47 Icosagen (Estonia)'),
(18246, 'https://ror.org/03qa74b49', 'no_lang_code', 1, 'https://ror.org/03qa74b49 ICTS (United Kingdom)'),
(18247, 'https://ror.org/050bkn381', 'no_lang_code', 1, 'https://ror.org/050bkn381 Interoud Innovation (Spain)'),
(18248, 'https://ror.org/05n8b0n83', 'no_lang_code', 1, 'https://ror.org/05n8b0n83 Insoco (Spain)'),
(18249, 'https://ror.org/040ydq726', 'en', 1, 'https://ror.org/040ydq726 Idaho Federation of Families for Children''s Mental Health'),
(18250, 'https://ror.org/002wz1627', 'no_lang_code', 1, 'https://ror.org/002wz1627 Equens (Netherlands)'),
(18251, 'https://ror.org/05dah1e64', 'en', 1, 'https://ror.org/05dah1e64 Idaho State Department of Education'),
(18252, 'https://ror.org/01wpt0d29', 'en', 1, 'https://ror.org/01wpt0d29 IDConsortium'),
(18253, 'https://ror.org/0408zq502', 'en', 1, 'https://ror.org/0408zq502 Institute of Social Innovations'),
(18254, 'https://ror.org/04ycg6942', 'no_lang_code', 1, 'https://ror.org/04ycg6942 Interporto Bologna (Italy)'),
(18255, 'https://ror.org/006ng7z95', 'no_lang_code', 1, 'https://ror.org/006ng7z95 Interscience Communications (United Kingdom)'),
(18256, 'https://ror.org/01v9fd791', 'no_lang_code', 1, 'https://ror.org/01v9fd791 IDEA Bio-Medical (Israel)'),
(18257, 'https://ror.org/04t70d627', 'ro', 1, 'https://ror.org/04t70d627 Institutul Naţional de Cercetare Dezvoltare pentru Chimie si Petrochimie'),
(18258, 'https://ror.org/039se1n41', 'no_lang_code', 1, 'https://ror.org/039se1n41 Ideasis (Greece)'),
(18259, 'https://ror.org/003qafx79', 'no_lang_code', 1, 'https://ror.org/003qafx79 Ideko (Spain)'),
(18260, 'https://ror.org/05v0gvx94', 'en', 1, 'https://ror.org/05v0gvx94 National Institute for Research and Development of Isotopic and Molecular Technologies'),
(18261, 'https://ror.org/02wc7yv39', 'no_lang_code', 1, 'https://ror.org/02wc7yv39 ideXlab (France)'),
(18262, 'https://ror.org/012q2tk82', 'en', 1, 'https://ror.org/012q2tk82 Institute of Solar-Terrestrial Physics Федеральное государственное бюджетное учреждение науки Институт солнечно-земной физики Сибирского отделения Российской академии наук'),
(18263, 'https://ror.org/057hsm867', 'en', 1, 'https://ror.org/057hsm867 Institute of Solid State Chemistry and Mechanochemistry Федеральное государственное бюджетное учреждение науки Институт химии твердого тела и механохимии Сибирского отделения Российской академии наук'),
(18264, 'https://ror.org/00ty10b85', 'no_lang_code', 1, 'https://ror.org/00ty10b85 Institute of Spring Technology'),
(18265, 'https://ror.org/034vxep50', 'no_lang_code', 1, 'https://ror.org/034vxep50 Idio (United Kingdom)'),
(18266, 'https://ror.org/04z5qbc60', 'no_lang_code', 1, 'https://ror.org/04z5qbc60 InterSystems (United States)'),
(18267, 'https://ror.org/02h3q9f84', 'no_lang_code', 1, 'https://ror.org/02h3q9f84 Intertanko (Norway)'),
(18268, 'https://ror.org/00k9x6n46', 'en', 1, 'https://ror.org/00k9x6n46 Institute of Terrestrial Magnetism Ionosphere and Radio Wave Propagation Институт земного магнетизма, ионосферы и распространения радиоволн им. Н. В. Пушкова'),
(18269, 'https://ror.org/02efwpm71', 'fr', 1, 'https://ror.org/02efwpm71 Belgian Road Safety Institute Belgisch Instituut Voor de Verkeersveiligheid Institut Belge pour la Sécurité Routière'),
(18270, 'https://ror.org/04zy24864', 'en', 1, 'https://ror.org/04zy24864 Institute of Thermophysics Федеральное государственное бюджетное учреждение науки Институт теплофизики Уральского отделения Российской академии наук'),
(18271, 'https://ror.org/03912g573', 'no_lang_code', 1, 'https://ror.org/03912g573 Idom (Spain)'),
(18272, 'https://ror.org/056wf8856', 'en', 1, 'https://ror.org/056wf8856 Kola Science Centre Федеральное государственное бюджетное учреждение науки Горный институт Кольского научного центра Российской академии наук'),
(18273, 'https://ror.org/02yzsw326', 'en', 1, 'https://ror.org/02yzsw326 Institute for Applied Environmental Economics'),
(18274, 'https://ror.org/03wv11p67', 'no_lang_code', 1, 'https://ror.org/03wv11p67 InterveXion Therapeutics (United States)'),
(18275, 'https://ror.org/03h9pd916', 'no_lang_code', 1, 'https://ror.org/03h9pd916 Idrodepurazione (Italy)'),
(18276, 'https://ror.org/04p5jrq42', 'no_lang_code', 1, 'https://ror.org/04p5jrq42 Idropan dell’Orto Depuratori (Italy)'),
(18277, 'https://ror.org/01fypyt73', 'no_lang_code', 1, 'https://ror.org/01fypyt73 Instrument Design Technology (United Kingdom)'),
(18278, 'https://ror.org/04jqmw447', 'en', 1, 'https://ror.org/04jqmw447 Institute of World Economy and International Relations Институт мировой экономики и международных отношений'),
(18279, 'https://ror.org/02c2rwe77', 'no_lang_code', 1, 'https://ror.org/02c2rwe77 Innovation Energie Développement (France)'),
(18280, 'https://ror.org/03hnjq088', 'no_lang_code', 1, 'https://ror.org/03hnjq088 Informatique Electromagnetisme Electronique Analyse Numerique (France)'),
(18281, 'https://ror.org/03hb5cs16', 'en', 1, 'https://ror.org/03hb5cs16 Road and Bridge Research Institute'),
(18282, 'https://ror.org/00ye5fx14', 'ca', 1, 'https://ror.org/00ye5fx14 Institut d''Estadística de Catalunya Statistical Institute of Catalonia'),
(18283, 'https://ror.org/05dwtb503', 'no_lang_code', 1, 'https://ror.org/05dwtb503 Silence Therapeutics (United States)'),
(18284, 'https://ror.org/04apv5y66', 'en', 1, 'https://ror.org/04apv5y66 Rensselaerville Institute'),
(18285, 'https://ror.org/0452jaa17', 'en', 1, 'https://ror.org/0452jaa17 Institute of Plasma Physics and Laser Microfusion'),
(18286, 'https://ror.org/01maah330', 'no_lang_code', 1, 'https://ror.org/01maah330 Intrinsic LifeSciences (United States)'),
(18287, 'https://ror.org/02tb28y24', 'no_lang_code', 1, 'https://ror.org/02tb28y24 Introversion Software (United Kingdom)'),
(18288, 'https://ror.org/05dpc2207', 'en', 1, 'https://ror.org/05dpc2207 Instytut Morski w Gdańsku Maritime Institute in Gdansk'),
(18289, 'https://ror.org/041w3g952', 'no_lang_code', 1, 'https://ror.org/041w3g952 Intune Networks (Ireland)'),
(18290, 'https://ror.org/03dpzam72', 'es', 1, 'https://ror.org/03dpzam72 Instituto Nacional del Agua'),
(18291, 'https://ror.org/05qaxe808', 'en', 1, 'https://ror.org/05qaxe808 Inuit Circumpolar Council'),
(18292, 'https://ror.org/056g2wd64', 'en', 1, 'https://ror.org/056g2wd64 Cervantes Institute Instituto Cervantes'),
(18293, 'https://ror.org/05fwffr47', 'no_lang_code', 1, 'https://ror.org/05fwffr47 inuTech (Germany)'),
(18294, 'https://ror.org/02v4nv830', 'en', 1, 'https://ror.org/02v4nv830 Institute for Fuels and Renewable Energy'),
(18295, 'https://ror.org/01prj3807', 'no_lang_code', 1, 'https://ror.org/01prj3807 Invenio Imaging (United States)'),
(18296, 'https://ror.org/04mb2v544', 'fr', 1, 'https://ror.org/04mb2v544 Institut de recherches économiques et sociales'),
(18297, 'https://ror.org/03dwnrz57', 'no_lang_code', 1, 'https://ror.org/03dwnrz57 Insulcon (Netherlands)'),
(18298, 'https://ror.org/05wvn6j57', 'no_lang_code', 1, 'https://ror.org/05wvn6j57 Invent (Italy)'),
(18299, 'https://ror.org/056pr3z43', 'no_lang_code', 1, 'https://ror.org/056pr3z43 Rolled-Ribbon (United States)'),
(18300, 'https://ror.org/006ddrg17', 'no_lang_code', 1, 'https://ror.org/006ddrg17 ApplusVelosi (United Kingdom)'),
(18301, 'https://ror.org/02z3xdq04', 'pt', 1, 'https://ror.org/02z3xdq04 Instituto de Ciência e Tecnologia de Polímeros Polymer Science and Technology Institute'),
(18302, 'https://ror.org/00np58203', 'no_lang_code', 1, 'https://ror.org/00np58203 Inventys Thermal Technologies (Canada)'),
(18303, 'https://ror.org/05eaem981', 'no_lang_code', 1, 'https://ror.org/05eaem981 Intecsea (Canada)'),
(18304, 'https://ror.org/01aj87c56', 'no_lang_code', 1, 'https://ror.org/01aj87c56 Fluvius (Belgium)'),
(18305, 'https://ror.org/040emvj36', 'no_lang_code', 1, 'https://ror.org/040emvj36 IDI Eikon (Spain)'),
(18306, 'https://ror.org/004bcda17', 'pt', 1, 'https://ror.org/004bcda17 Instituto de Desenvolvimento e Inovação Tecnológica do Minho'),
(18307, 'https://ror.org/02709ws31', 'no_lang_code', 1, 'https://ror.org/02709ws31 Invisible Dust (United Kingdom)'),
(18308, 'https://ror.org/0328hyd77', 'no_lang_code', 1, 'https://ror.org/0328hyd77 Invistics (United States)'),
(18309, 'https://ror.org/013pwk504', 'no_lang_code', 1, 'https://ror.org/013pwk504 Woodward (Switzerland)'),
(18310, 'https://ror.org/01s3s2b03', 'es', 1, 'https://ror.org/01s3s2b03 Instituto de Fomento de la Región de Murcia'),
(18311, 'https://ror.org/02k90w379', 'no_lang_code', 1, 'https://ror.org/02k90w379 Invoke Labs (Canada)'),
(18312, 'https://ror.org/048kt6872', 'no_lang_code', 1, 'https://ror.org/048kt6872 Amphenol (United Kingdom)'),
(18313, 'https://ror.org/00va3z958', 'en', 1, 'https://ror.org/00va3z958 Inwood Community Services'),
(18314, 'https://ror.org/03snc5898', 'no_lang_code', 1, 'https://ror.org/03snc5898 ioGenetics (United States)'),
(18315, 'https://ror.org/00s2jha28', 'fr', 1, 'https://ror.org/00s2jha28 Institut des Sciences Agronomiques du Burundi'),
(18316, 'https://ror.org/00strmx07', 'pt', 1, 'https://ror.org/00strmx07 Instituto de Linguística Teórica e Computacional'),
(18317, 'https://ror.org/052v6gh58', 'no_lang_code', 1, 'https://ror.org/052v6gh58 Integrated Micro Sensors (United States)'),
(18318, 'https://ror.org/00pwar297', 'fr', 1, 'https://ror.org/00pwar297 IFAPME'),
(18319, 'https://ror.org/01cv22w67', 'no_lang_code', 1, 'https://ror.org/01cv22w67 IHI Corporation (United Kingdom)'),
(18320, 'https://ror.org/02gt5pz54', 'no_lang_code', 1, 'https://ror.org/02gt5pz54 IonEdge Corporation (United States)'),
(18321, 'https://ror.org/05xqwqf73', 'en', 1, 'https://ror.org/05xqwqf73 European Embedded Control Institute Institut Européen de Contrôle Embarqué'),
(18322, 'https://ror.org/01rb58919', 'no_lang_code', 1, 'https://ror.org/01rb58919 Ionic (United States)'),
(18323, 'https://ror.org/03jtym624', 'no_lang_code', 1, 'https://ror.org/03jtym624 Integrated Sensing Systems (United States)'),
(18324, 'https://ror.org/013wyvt46', 'en', 1, 'https://ror.org/013wyvt46 Institut für Angewandte Wirtschaftsforschung Institute for Applied Economic Research'),
(18325, 'https://ror.org/04yw9th96', 'no_lang_code', 1, 'https://ror.org/04yw9th96 Ionic Software (Belgium)'),
(18326, 'https://ror.org/01et00j38', 'no_lang_code', 1, 'https://ror.org/01et00j38 Integrated Systems Incorporation (United States)'),
(18327, 'https://ror.org/00ee3x048', 'no_lang_code', 1, 'https://ror.org/00ee3x048 IFU (Germany)'),
(18328, 'https://ror.org/03wjvv117', 'en', 1, 'https://ror.org/03wjvv117 IGAD Climate Prediction and Applications Center'),
(18329, 'https://ror.org/031h74a50', 'en', 1, 'https://ror.org/031h74a50 Iowa Federation of Families for Children''s Mental Health'),
(18330, 'https://ror.org/03ejd2z94', 'en', 1, 'https://ror.org/03ejd2z94 Iowa Department of Education'),
(18331, 'https://ror.org/05jye0b93', 'de', 1, 'https://ror.org/05jye0b93 Institut für Europäische Politik Institute for European Politics'),
(18332, 'https://ror.org/0515z7d79', 'no_lang_code', 1, 'https://ror.org/0515z7d79 IGE Therapeutics (United States)'),
(18333, 'https://ror.org/02khpps76', 'no_lang_code', 1, 'https://ror.org/02khpps76 Institut für Gebirgsmechanik (Germany)'),
(18334, 'https://ror.org/01bws2668', 'no_lang_code', 1, 'https://ror.org/01bws2668 IGEA Clinical Biophysics (Italy)'),
(18335, 'https://ror.org/042th8w18', 'en', 1, 'https://ror.org/042th8w18 Iowa Wesleyan College'),
(18336, 'https://ror.org/054j6z281', 'en', 1, 'https://ror.org/054j6z281 Integrity House'),
(18337, 'https://ror.org/042epbw18', 'no_lang_code', 1, 'https://ror.org/042epbw18 IP Group (United Kingdom)'),
(18338, 'https://ror.org/01s3w4134', 'no_lang_code', 1, 'https://ror.org/01s3w4134 IGI Technologies (United States)'),
(18339, 'https://ror.org/058cxws58', 'no_lang_code', 1, 'https://ror.org/058cxws58 Intel (United Kingdom)'),
(18340, 'https://ror.org/05gsw2536', 'no_lang_code', 1, 'https://ror.org/05gsw2536 IGNIS Innovation (Canada)'),
(18341, 'https://ror.org/00dgkkx07', 'no_lang_code', 1, 'https://ror.org/00dgkkx07 Institut für Getreideverarbeitung (Germany)'),
(18342, 'https://ror.org/013e7et93', 'de', 1, 'https://ror.org/013e7et93 Leipziger Institut für Energie'),
(18343, 'https://ror.org/037sqac13', 'no_lang_code', 1, 'https://ror.org/037sqac13 Intelen (Cyprus)'),
(18344, 'https://ror.org/001rww263', 'no_lang_code', 1, 'https://ror.org/001rww263 Murata (France)'),
(18345, 'https://ror.org/01wmp8x44', 'no_lang_code', 1, 'https://ror.org/01wmp8x44 Ikona (United States)'),
(18346, 'https://ror.org/05v5s8n75', 'no_lang_code', 1, 'https://ror.org/05v5s8n75 Ipec (United Kingdom)'),
(18347, 'https://ror.org/003aveg56', 'no_lang_code', 1, 'https://ror.org/003aveg56 Ilika (United Kingdom)'),
(18348, 'https://ror.org/03f9m1k43', 'no_lang_code', 1, 'https://ror.org/03f9m1k43 BP (France)'),
(18349, 'https://ror.org/05tzsrw37', 'en', 1, 'https://ror.org/05tzsrw37 Joint Nature Conservation Committee'),
(18350, 'https://ror.org/03gpg3e34', 'no_lang_code', 1, 'https://ror.org/03gpg3e34 Pillar (Ukraine)'),
(18351, 'https://ror.org/04hsqns05', 'no_lang_code', 1, 'https://ror.org/04hsqns05 IPCOS (Belgium)');
INSERT INTO `rors` VALUES
(18352, 'https://ror.org/034d3kf40', 'no_lang_code', 1, 'https://ror.org/034d3kf40 Telekom Srbija (Serbia)'),
(18353, 'https://ror.org/0277e9g92', 'no_lang_code', 1, 'https://ror.org/0277e9g92 iProov (United Kingdom)'),
(18354, 'https://ror.org/00jafye06', 'no_lang_code', 1, 'https://ror.org/00jafye06 Intelligentsia Consultants (Luxembourg)'),
(18355, 'https://ror.org/035eg8817', 'no_lang_code', 1, 'https://ror.org/035eg8817 Qiagen (France)'),
(18356, 'https://ror.org/04083zv18', 'no_lang_code', 1, 'https://ror.org/04083zv18 Intelligent Mechatronic Systems (United States)'),
(18357, 'https://ror.org/006xake10', 'en', 1, 'https://ror.org/006xake10 Jones County Junior College'),
(18358, 'https://ror.org/00e7ske31', 'no_lang_code', 1, 'https://ror.org/00e7ske31 Intellipro Group (United States)'),
(18359, 'https://ror.org/008qv5513', 'no_lang_code', 1, 'https://ror.org/008qv5513 Intellispeak (United States)'),
(18360, 'https://ror.org/044as9138', 'no_lang_code', 1, 'https://ror.org/044as9138 IntelliView Technologies (Canada)'),
(18361, 'https://ror.org/0260kc719', 'no_lang_code', 1, 'https://ror.org/0260kc719 Intempora (France)'),
(18362, 'https://ror.org/02gewd711', 'no_lang_code', 1, 'https://ror.org/02gewd711 Inter-Euro Technology'),
(18363, 'https://ror.org/0163xqp73', 'en', 1, 'https://ror.org/0163xqp73 IUF - Leibniz-Institut für umweltmedizinische Forschung Leibniz Institute of Environmental Medicine'),
(18364, 'https://ror.org/04r3h5j56', 'no_lang_code', 1, 'https://ror.org/04r3h5j56 Jowat (Germany)'),
(18365, 'https://ror.org/018ed3c32', 'no_lang_code', 1, 'https://ror.org/018ed3c32 Institut IGH (Croatia)'),
(18366, 'https://ror.org/0008zj958', 'no_lang_code', 1, 'https://ror.org/0008zj958 JPT Peptide Technologies (Germany)'),
(18367, 'https://ror.org/01h9s9j69', 'no_lang_code', 1, 'https://ror.org/01h9s9j69 JRI Orthopaedics (United Kingdom)'),
(18368, 'https://ror.org/056n4cb97', 'no_lang_code', 1, 'https://ror.org/056n4cb97 Jürging (Germany)'),
(18369, 'https://ror.org/04fax8843', 'no_lang_code', 1, 'https://ror.org/04fax8843 Juice Technology (United Kingdom)'),
(18370, 'https://ror.org/05gh88052', 'no_lang_code', 1, 'https://ror.org/05gh88052 iQur (United Kingdom)'),
(18371, 'https://ror.org/03xvpr131', 'no_lang_code', 1, 'https://ror.org/03xvpr131 Jule (United States)'),
(18372, 'https://ror.org/02t84dn55', 'en', 1, 'https://ror.org/02t84dn55 IRC International Water and Sanitation Centre'),
(18373, 'https://ror.org/02t5ee083', 'no_lang_code', 1, 'https://ror.org/02t5ee083 Interactive Flow Studies (United States)'),
(18374, 'https://ror.org/03cr5p796', 'no_lang_code', 1, 'https://ror.org/03cr5p796 Learning Express Toys (United States)'),
(18375, 'https://ror.org/05hmdkd37', 'no_lang_code', 1, 'https://ror.org/05hmdkd37 Learning Multi Systems (United States)'),
(18376, 'https://ror.org/03hcjbn12', 'no_lang_code', 1, 'https://ror.org/03hcjbn12 interactive instruments (Germany)'),
(18377, 'https://ror.org/03534h624', 'en', 1, 'https://ror.org/03534h624 JustCommunity'),
(18378, 'https://ror.org/034vz8e35', 'en', 1, 'https://ror.org/034vz8e35 Justice & Public Safety Cabinet'),
(18379, 'https://ror.org/044yv1k53', 'en', 1, 'https://ror.org/044yv1k53 Justice Resource Institute'),
(18380, 'https://ror.org/0188sk047', 'no_lang_code', 1, 'https://ror.org/0188sk047 Irecoop Emilia-Romagna (Italy)'),
(18381, 'https://ror.org/01xvfw287', 'no_lang_code', 1, 'https://ror.org/01xvfw287 Leuco Ledermann (Germany)'),
(18382, 'https://ror.org/04z08rc02', 'no_lang_code', 1, 'https://ror.org/04z08rc02 Iren Acqua Gas (Italy)'),
(18383, 'https://ror.org/0243mn861', 'no_lang_code', 1, 'https://ror.org/0243mn861 JXT Applications (United States)'),
(18384, 'https://ror.org/04svmrs70', 'no_lang_code', 1, 'https://ror.org/04svmrs70 Intercytex (United Kingdom)'),
(18385, 'https://ror.org/02wp9w043', 'en', 1, 'https://ror.org/02wp9w043 Leeds City Council'),
(18386, 'https://ror.org/04rd5j182', 'no_lang_code', 1, 'https://ror.org/04rd5j182 Leeoat (United States)'),
(18387, 'https://ror.org/04zssq864', 'no_lang_code', 1, 'https://ror.org/04zssq864 K&S Projektmanagement (Germany)'),
(18388, 'https://ror.org/00zg7c252', 'no_lang_code', 1, 'https://ror.org/00zg7c252 IRGO Consulting (Slovenia) Inštitut za rudarstvo, geotehnologijo in okolje'),
(18389, 'https://ror.org/01611w595', 'en', 1, 'https://ror.org/01611w595 Iris House'),
(18390, 'https://ror.org/03v7mfg33', 'en', 1, 'https://ror.org/03v7mfg33 Legacy Community Health Services'),
(18391, 'https://ror.org/008rbpk15', 'no_lang_code', 1, 'https://ror.org/008rbpk15 Interface Biologics (Canada)'),
(18392, 'https://ror.org/05kxkjm75', 'no_lang_code', 1, 'https://ror.org/05kxkjm75 Interface Europe (Belgium)'),
(18393, 'https://ror.org/014q4ab21', 'it', 1, 'https://ror.org/014q4ab21 Legambiente'),
(18394, 'https://ror.org/03731r596', 'no_lang_code', 1, 'https://ror.org/03731r596 Legendary Games (United Kingdom)'),
(18395, 'https://ror.org/02dzg8324', 'no_lang_code', 1, 'https://ror.org/02dzg8324 Kaleido Technology (Denmark)'),
(18396, 'https://ror.org/03nte2z44', 'no_lang_code', 1, 'https://ror.org/03nte2z44 Iris (Italy)'),
(18397, 'https://ror.org/00vryq048', 'no_lang_code', 1, 'https://ror.org/00vryq048 KALGEn Consultants (United States)'),
(18398, 'https://ror.org/020zw1p93', 'no_lang_code', 1, 'https://ror.org/020zw1p93 Iris Vernici (Italy)'),
(18399, 'https://ror.org/05f2srq42', 'no_lang_code', 1, 'https://ror.org/05f2srq42 Stratasys (United States)'),
(18400, 'https://ror.org/03e491272', 'en', 1, 'https://ror.org/03e491272 Irish Congress of Trade Unions'),
(18401, 'https://ror.org/02brx1k43', 'no_lang_code', 1, 'https://ror.org/02brx1k43 Interfusion Services (Cyprus)'),
(18402, 'https://ror.org/02y1mqg45', 'no_lang_code', 1, 'https://ror.org/02y1mqg45 Irish Hydrodata (Ireland)'),
(18403, 'https://ror.org/02kg29r51', 'no_lang_code', 1, 'https://ror.org/02kg29r51 Kampakas (Greece)'),
(18404, 'https://ror.org/04d62a771', 'en', 1, 'https://ror.org/04d62a771 Leibniz Institute for Agricultural Engineering and Bioeconomy Leibniz-Institut für Agrartechnik und Bioökonomie'),
(18405, 'https://ror.org/02j809324', 'en', 1, 'https://ror.org/02j809324 Kanlo Consultants'),
(18406, 'https://ror.org/00hkhma91', 'en', 1, 'https://ror.org/00hkhma91 International Association of Environmental Mutagenesis and Genomics Societies'),
(18407, 'https://ror.org/05nx6m946', 'fi', 1, 'https://ror.org/05nx6m946 Arkistolaitos National Archives Service'),
(18408, 'https://ror.org/01fwrew07', 'no_lang_code', 1, 'https://ror.org/01fwrew07 Starlab (United States)'),
(18409, 'https://ror.org/01jb23d14', 'no_lang_code', 1, 'https://ror.org/01jb23d14 IMS Maxims (Ireland)'),
(18410, 'https://ror.org/014s9rr70', 'en', 1, 'https://ror.org/014s9rr70 Kansas City CARE Clinic'),
(18411, 'https://ror.org/05wbr5e76', 'en', 1, 'https://ror.org/05wbr5e76 Kansas Department for Aging and Disability Services'),
(18412, 'https://ror.org/00jvx3029', 'en', 1, 'https://ror.org/00jvx3029 Kansas State Department of Education'),
(18413, 'https://ror.org/00nan4c27', 'no_lang_code', 1, 'https://ror.org/00nan4c27 Inter Science Research Associates (United States)'),
(18414, 'https://ror.org/05w6jpy68', 'no_lang_code', 1, 'https://ror.org/05w6jpy68 Kanthal (Sweden)'),
(18415, 'https://ror.org/00gtfax65', 'en', 1, 'https://ror.org/00gtfax65 International Atomic Energy Agency'),
(18416, 'https://ror.org/05der9a39', 'no_lang_code', 1, 'https://ror.org/05der9a39 Lemvig Varmeværk (Denmark)'),
(18417, 'https://ror.org/043hjsp66', 'en', 1, 'https://ror.org/043hjsp66 P.L. Kapitza Institute for Physical Problems Институт физических проблем имени П. Л. Капицы РАН'),
(18418, 'https://ror.org/02fpfg069', 'no_lang_code', 1, 'https://ror.org/02fpfg069 International Automotive Desig (United Kingdom)'),
(18419, 'https://ror.org/03mh23547', 'no_lang_code', 1, 'https://ror.org/03mh23547 Ironbound Films (United States)'),
(18420, 'https://ror.org/05x6z3731', 'no_lang_code', 1, 'https://ror.org/05x6z3731 International Biomedical (United States)'),
(18421, 'https://ror.org/02rp48z36', 'no_lang_code', 1, 'https://ror.org/02rp48z36 Lenntech (Netherlands)'),
(18422, 'https://ror.org/02tk2gv85', 'no_lang_code', 1, 'https://ror.org/02tk2gv85 Kapsch (Austria)'),
(18423, 'https://ror.org/00vxbb377', 'no_lang_code', 1, 'https://ror.org/00vxbb377 Lenz Instruments (Spain)'),
(18424, 'https://ror.org/04s4agn64', 'en', 1, 'https://ror.org/04s4agn64 International Brotherhood of Teamsters'),
(18425, 'https://ror.org/010hax789', 'en', 1, 'https://ror.org/010hax789 International center for Advancement of Research Technology and Innovation'),
(18426, 'https://ror.org/019v3r356', 'no_lang_code', 1, 'https://ror.org/019v3r356 Karmic (Switzerland)'),
(18427, 'https://ror.org/00rk1ea29', 'en', 1, 'https://ror.org/00rk1ea29 International Centre for Black Sea Studies'),
(18428, 'https://ror.org/029508905', 'en', 1, 'https://ror.org/029508905 International Center for Minority Studies and Intercultural Relations'),
(18429, 'https://ror.org/01j73pp16', 'no_lang_code', 1, 'https://ror.org/01j73pp16 Leonardo Film (Germany)'),
(18430, 'https://ror.org/004vnf813', 'no_lang_code', 1, 'https://ror.org/004vnf813 Katchem (Czechia)'),
(18431, 'https://ror.org/02zk9yr48', 'no_lang_code', 1, 'https://ror.org/02zk9yr48 Leotech Rapid Prototyping und Werkzeugbau (Germany)'),
(18432, 'https://ror.org/05x3a2381', 'no_lang_code', 1, 'https://ror.org/05x3a2381 KCET'),
(18433, 'https://ror.org/02z2hxe94', 'it', 1, 'https://ror.org/02z2hxe94 Centre of Theoretical and Applied Ecology Centro di Ecologia Teorica ed Applicata'),
(18434, 'https://ror.org/02r2nj961', 'no_lang_code', 1, 'https://ror.org/02r2nj961 Irvine Sensors (United States)'),
(18435, 'https://ror.org/02k74w593', 'en', 1, 'https://ror.org/02k74w593 Irvine Unified School District'),
(18436, 'https://ror.org/006exzm93', 'no_lang_code', 1, 'https://ror.org/006exzm93 Morris Leslie Group (United Kingdom)'),
(18437, 'https://ror.org/01xyb4y13', 'fr', 1, 'https://ror.org/01xyb4y13 Espace pour la vie Space for Life'),
(18438, 'https://ror.org/004jpn268', 'no_lang_code', 1, 'https://ror.org/004jpn268 Lesprojekt (Czechia)'),
(18439, 'https://ror.org/02c7f4b44', 'no_lang_code', 1, 'https://ror.org/02c7f4b44 Lesswire (Germany)'),
(18440, 'https://ror.org/05np0jp17', 'en', 1, 'https://ror.org/05np0jp17 Lethbridge College'),
(18441, 'https://ror.org/03qyvqf30', 'en', 1, 'https://ror.org/03qyvqf30 IS practice'),
(18442, 'https://ror.org/00fp0qh18', 'en', 1, 'https://ror.org/00fp0qh18 International Commission for the Protection of the Danube River Internationale Kommission zum Schutz der Donau'),
(18443, 'https://ror.org/018x1vg82', 'no_lang_code', 1, 'https://ror.org/018x1vg82 KE-Works (Netherlands)'),
(18444, 'https://ror.org/03k3apd45', 'en', 1, 'https://ror.org/03k3apd45 International Commission on Radiological Protection'),
(18445, 'https://ror.org/006828x19', 'no_lang_code', 1, 'https://ror.org/006828x19 Level 7 Systems (United Kingdom)'),
(18446, 'https://ror.org/05vb5dy28', 'en', 1, 'https://ror.org/05vb5dy28 International Dark Sky Association'),
(18447, 'https://ror.org/02sm33451', 'no_lang_code', 1, 'https://ror.org/02sm33451 Keep Solutions (Portugal)'),
(18448, 'https://ror.org/05f5ae947', 'no_lang_code', 1, 'https://ror.org/05f5ae947 Levitronix (United States)'),
(18449, 'https://ror.org/03gzf5338', 'en', 1, 'https://ror.org/03gzf5338 International Ecological Engineering Society'),
(18450, 'https://ror.org/00n8ttd98', 'en', 1, 'https://ror.org/00n8ttd98 Institute of Atmospheric Sciences and Climate Istituto di Scienze dell''Atmosfera e del Clima'),
(18451, 'https://ror.org/03nqngt38', 'en', 1, 'https://ror.org/03nqngt38 International Fishmeal and Oil Manufacturers Association'),
(18452, 'https://ror.org/04p276q92', 'en', 1, 'https://ror.org/04p276q92 ISC Intelligence in Science'),
(18453, 'https://ror.org/023ew8649', 'no_lang_code', 1, 'https://ror.org/023ew8649 IDS Scheer (Czechia)'),
(18454, 'https://ror.org/036w35s91', 'no_lang_code', 1, 'https://ror.org/036w35s91 Kelliher & Associates (United States)'),
(18455, 'https://ror.org/020bpey71', 'no_lang_code', 1, 'https://ror.org/020bpey71 Poço Bravo Marbles (Portugal)'),
(18456, 'https://ror.org/050k5ft87', 'en', 1, 'https://ror.org/050k5ft87 Mars Hill University'),
(18457, 'https://ror.org/05vphmq64', 'en', 1, 'https://ror.org/05vphmq64 Natrona County School District'),
(18458, 'https://ror.org/031khrq71', 'no_lang_code', 1, 'https://ror.org/031khrq71 MARS Laser (Germany)'),
(18459, 'https://ror.org/05pt5rg11', 'no_lang_code', 1, 'https://ror.org/05pt5rg11 LexRite (United States)'),
(18460, 'https://ror.org/023man992', 'no_lang_code', 1, 'https://ror.org/023man992 Marshalls (United Kingdom)'),
(18461, 'https://ror.org/0408a5x16', 'no_lang_code', 1, 'https://ror.org/0408a5x16 Bühler (Germany)'),
(18462, 'https://ror.org/056vvdf79', 'no_lang_code', 1, 'https://ror.org/056vvdf79 Marsilio Editori (Italy)'),
(18463, 'https://ror.org/021n2jk87', 'no_lang_code', 1, 'https://ror.org/021n2jk87 Airwave Solutions (United Kingdom)'),
(18464, 'https://ror.org/02wghjg14', 'no_lang_code', 1, 'https://ror.org/02wghjg14 Integrated Systems Development (Greece)'),
(18465, 'https://ror.org/008h20257', 'no_lang_code', 1, 'https://ror.org/008h20257 Martech International (Belgium)'),
(18466, 'https://ror.org/03fadn241', 'no_lang_code', 1, 'https://ror.org/03fadn241 Martechnic (Germany)'),
(18467, 'https://ror.org/03hx2yz19', 'no_lang_code', 1, 'https://ror.org/03hx2yz19 Paccar (United Kingdom)'),
(18468, 'https://ror.org/02khq4z72', 'no_lang_code', 1, 'https://ror.org/02khq4z72 Kelvin Nanotechnology (United Kingdom)'),
(18469, 'https://ror.org/01j262e40', 'no_lang_code', 1, 'https://ror.org/01j262e40 Mouchel (United Kingdom)'),
(18470, 'https://ror.org/05j7s4w29', 'no_lang_code', 1, 'https://ror.org/05j7s4w29 SGH Martineau (United Kingdom)'),
(18471, 'https://ror.org/00m5yvh71', 'no_lang_code', 1, 'https://ror.org/00m5yvh71 Lhoist (United Kingdom)'),
(18472, 'https://ror.org/0343dap81', 'en', 1, 'https://ror.org/0343dap81 IEEE Information Theory Society'),
(18473, 'https://ror.org/05xvkjh87', 'no_lang_code', 1, 'https://ror.org/05xvkjh87 Metabolomx (United States)'),
(18474, 'https://ror.org/00vj8w868', 'en', 1, 'https://ror.org/00vj8w868 Marygrove College'),
(18475, 'https://ror.org/05vyrqa83', 'en', 1, 'https://ror.org/05vyrqa83 Marylhurst University'),
(18476, 'https://ror.org/01q44vc25', 'no_lang_code', 1, 'https://ror.org/01q44vc25 Kenaf Eco Fibers Italia (Italy)'),
(18477, 'https://ror.org/03w3w9873', 'en', 1, 'https://ror.org/03w3w9873 Maryland Public Television'),
(18478, 'https://ror.org/017e5zc16', 'no_lang_code', 1, 'https://ror.org/017e5zc16 Industrielle Steuerungstechnik (Germany)'),
(18479, 'https://ror.org/014g5ne65', 'no_lang_code', 1, 'https://ror.org/014g5ne65 Libertine FPE (United Kingdom)'),
(18480, 'https://ror.org/05w8pa285', 'no_lang_code', 1, 'https://ror.org/05w8pa285 Iron Pump (Denmark)'),
(18481, 'https://ror.org/00yhce098', 'no_lang_code', 1, 'https://ror.org/00yhce098 Librt (Netherlands)'),
(18482, 'https://ror.org/003nw0037', 'no_lang_code', 1, 'https://ror.org/003nw0037 Masmec (Italy)'),
(18483, 'https://ror.org/04e6e5356', 'en', 1, 'https://ror.org/04e6e5356 Masonry Society'),
(18484, 'https://ror.org/00dk3f710', 'no_lang_code', 1, 'https://ror.org/00dk3f710 Mass Spec Analytical (United Kingdom)'),
(18485, 'https://ror.org/01a99rs65', 'no_lang_code', 1, 'https://ror.org/01a99rs65 Kennametal (United Kingdom)'),
(18486, 'https://ror.org/02tab1h96', 'en', 1, 'https://ror.org/02tab1h96 Massachusetts Department of Elementary and Secondary Education'),
(18487, 'https://ror.org/03wbpr740', 'no_lang_code', 1, 'https://ror.org/03wbpr740 Innovative Solution In Space (Netherlands)'),
(18488, 'https://ror.org/03wgq5m90', 'en', 1, 'https://ror.org/03wgq5m90 Massachusetts Department of Higher Education'),
(18489, 'https://ror.org/04rfx4365', 'en', 1, 'https://ror.org/04rfx4365 Licking County Alcoholism Prevention Program'),
(18490, 'https://ror.org/02zm9fh11', 'en', 1, 'https://ror.org/02zm9fh11 Lietuvos dailės muziejus Lithuanian Art Museum'),
(18491, 'https://ror.org/04574r077', 'en', 1, 'https://ror.org/04574r077 Lietuvos Mokslininkų Sąjungos Lithuanian Scientific Society'),
(18492, 'https://ror.org/02jv9nh47', 'en', 1, 'https://ror.org/02jv9nh47 Académie de marine du massachusetts Massachusetts Maritime Academy'),
(18493, 'https://ror.org/038jkh114', 'no_lang_code', 1, 'https://ror.org/038jkh114 Kentech Instruments (United Kingdom)'),
(18494, 'https://ror.org/0018fr046', 'en', 1, 'https://ror.org/0018fr046 Life Lab'),
(18495, 'https://ror.org/05rtb6q31', 'no_lang_code', 1, 'https://ror.org/05rtb6q31 Life Length (Spain)'),
(18496, 'https://ror.org/009x4vx18', 'en', 1, 'https://ror.org/009x4vx18 Islenet'),
(18497, 'https://ror.org/050d44380', 'en', 1, 'https://ror.org/050d44380 Life Science Association of Manitoba'),
(18498, 'https://ror.org/010d6p438', 'no_lang_code', 1, 'https://ror.org/010d6p438 Life Systems (United States)'),
(18499, 'https://ror.org/0373f6s78', 'no_lang_code', 1, 'https://ror.org/0373f6s78 Innovative Technologies Center (Greece) Κέντρο καινοτόμων τεχνολογιών'),
(18500, 'https://ror.org/05sz9r015', 'en', 1, 'https://ror.org/05sz9r015 Massachusetts General Court'),
(18501, 'https://ror.org/03gkfpj41', 'no_lang_code', 1, 'https://ror.org/03gkfpj41 Icelandic New Energy (Iceland)'),
(18502, 'https://ror.org/01hsff479', 'en', 1, 'https://ror.org/01hsff479 Kentucky Department of Education'),
(18503, 'https://ror.org/02w6ewz22', 'en', 1, 'https://ror.org/02w6ewz22 Iceland GeoSurvey Íslenskar orkurannsóknir'),
(18504, 'https://ror.org/0069fh197', 'no_lang_code', 1, 'https://ror.org/0069fh197 Kepar Electronica (Spain)'),
(18505, 'https://ror.org/00vcrft92', 'no_lang_code', 1, 'https://ror.org/00vcrft92 Kepstrum (Canada)'),
(18506, 'https://ror.org/058f8dm33', 'no_lang_code', 1, 'https://ror.org/058f8dm33 LifeGlimmer (Germany)'),
(18507, 'https://ror.org/0040q1c48', 'no_lang_code', 1, 'https://ror.org/0040q1c48 Agrii (United Kingdom)'),
(18508, 'https://ror.org/00hq2z256', 'no_lang_code', 1, 'https://ror.org/00hq2z256 Keraben Grupo (Spain)'),
(18509, 'https://ror.org/03kdt9j02', 'no_lang_code', 1, 'https://ror.org/03kdt9j02 Keracol (United Kingdom)'),
(18510, 'https://ror.org/03mmsp106', 'no_lang_code', 1, 'https://ror.org/03mmsp106 KeraMed (United States)'),
(18511, 'https://ror.org/01dyrtb20', 'no_lang_code', 1, 'https://ror.org/01dyrtb20 Munich Re (United States)'),
(18512, 'https://ror.org/019evbm58', 'it', 1, 'https://ror.org/019evbm58 Istituto Sperimentale Modelli E Strutture'),
(18513, 'https://ror.org/03aajm102', 'no_lang_code', 1, 'https://ror.org/03aajm102 Keronite (United Kingdom)'),
(18514, 'https://ror.org/04f9m0784', 'no_lang_code', 1, 'https://ror.org/04f9m0784 LifeSensors (United States)'),
(18515, 'https://ror.org/03hx4fx74', 'en', 1, 'https://ror.org/03hx4fx74 Keuka College'),
(18516, 'https://ror.org/01qa19b44', 'no_lang_code', 1, 'https://ror.org/01qa19b44 Mars (United Kingdom)'),
(18517, 'https://ror.org/03v2e2v10', 'en', 1, 'https://ror.org/03v2e2v10 Nederland Voedsel- en Waren Autoriteit Netherlands Food and Consumer Product Safety Authority'),
(18518, 'https://ror.org/03t15zy94', 'no_lang_code', 1, 'https://ror.org/03t15zy94 LifeTec Group (Netherlands)'),
(18519, 'https://ror.org/05mchsq43', 'en', 1, 'https://ror.org/05mchsq43 Keweenaw Bay Ojibwa Community College'),
(18520, 'https://ror.org/05wx9za24', 'no_lang_code', 1, 'https://ror.org/05wx9za24 Ortec (France)'),
(18521, 'https://ror.org/03tx9ef16', 'no_lang_code', 1, 'https://ror.org/03tx9ef16 Materia (United States)'),
(18522, 'https://ror.org/004tefm87', 'no_lang_code', 1, 'https://ror.org/004tefm87 Isofoton (Spain)'),
(18523, 'https://ror.org/03m9crh17', 'no_lang_code', 1, 'https://ror.org/03m9crh17 III-N Technology (United States)'),
(18524, 'https://ror.org/01wekt990', 'no_lang_code', 1, 'https://ror.org/01wekt990 Light Prescriptions Innovators (Spain)'),
(18525, 'https://ror.org/034x1ve75', 'no_lang_code', 1, 'https://ror.org/034x1ve75 McGraw-Hill Education (United States)'),
(18526, 'https://ror.org/05tpn0h14', 'no_lang_code', 1, 'https://ror.org/05tpn0h14 LightForm (United States)'),
(18527, 'https://ror.org/05sjw7d59', 'no_lang_code', 1, 'https://ror.org/05sjw7d59 Key Industrial Software Systems (United Kingdom)'),
(18528, 'https://ror.org/02165q211', 'no_lang_code', 1, 'https://ror.org/02165q211 LightMachinery (Canada)'),
(18529, 'https://ror.org/0401a6w30', 'en', 1, 'https://ror.org/0401a6w30 Keys for Networking'),
(18530, 'https://ror.org/04zym2g32', 'no_lang_code', 1, 'https://ror.org/04zym2g32 Lightpoint Medical (United Kingdom)'),
(18531, 'https://ror.org/00marjb61', 'no_lang_code', 1, 'https://ror.org/00marjb61 Materials Innovation Technologies (United States)'),
(18532, 'https://ror.org/0050kdp78', 'no_lang_code', 1, 'https://ror.org/0050kdp78 Materials Science International Services (Germany)'),
(18533, 'https://ror.org/02w1sf669', 'no_lang_code', 1, 'https://ror.org/02w1sf669 Isovolta (Austria)'),
(18534, 'https://ror.org/0504yp647', 'no_lang_code', 1, 'https://ror.org/0504yp647 Materials Solutions (United Kingdom)'),
(18535, 'https://ror.org/02enqcp25', 'no_lang_code', 1, 'https://ror.org/02enqcp25 Limbs Alive (United Kingdom)'),
(18536, 'https://ror.org/05mgtkj71', 'no_lang_code', 1, 'https://ror.org/05mgtkj71 Limetec (United Kingdom)'),
(18537, 'https://ror.org/04nt8wd35', 'en', 1, 'https://ror.org/04nt8wd35 Comhairle Contae Luimnigh Limerick County Council'),
(18538, 'https://ror.org/0132r2f10', 'no_lang_code', 1, 'https://ror.org/0132r2f10 Kinedyne (United States)'),
(18539, 'https://ror.org/00k320b46', 'no_lang_code', 1, 'https://ror.org/00k320b46 Ion Linac Systems (United States)'),
(18540, 'https://ror.org/03pd1sq22', 'no_lang_code', 1, 'https://ror.org/03pd1sq22 Linagora (France)'),
(18541, 'https://ror.org/00mzrph17', 'en', 1, 'https://ror.org/00mzrph17 Lincoln Park Zoo'),
(18542, 'https://ror.org/0393dce17', 'no_lang_code', 1, 'https://ror.org/0393dce17 Maire Tecnimont (Italy)'),
(18543, 'https://ror.org/02d1pme30', 'no_lang_code', 1, 'https://ror.org/02d1pme30 Kirkstall (United Kingdom)'),
(18544, 'https://ror.org/05j59av97', 'en', 1, 'https://ror.org/05j59av97 Kista Photonics Research Center'),
(18545, 'https://ror.org/056xved97', 'en', 1, 'https://ror.org/056xved97 Lindamood-Bell'),
(18546, 'https://ror.org/050pc9c24', 'no_lang_code', 1, 'https://ror.org/050pc9c24 Kistler (Switzerland)'),
(18547, 'https://ror.org/00eakxg05', 'no_lang_code', 1, 'https://ror.org/00eakxg05 Mosaix Software (United States)'),
(18548, 'https://ror.org/01vyc5m15', 'no_lang_code', 1, 'https://ror.org/01vyc5m15 Kite Innovation (United Kingdom)'),
(18549, 'https://ror.org/019syv921', 'no_lang_code', 1, 'https://ror.org/019syv921 Linguamatics (United Kingdom)'),
(18550, 'https://ror.org/05x8aff37', 'no_lang_code', 1, 'https://ror.org/05x8aff37 Matrasur Composites (France)'),
(18551, 'https://ror.org/02b4afs97', 'pt', 1, 'https://ror.org/02b4afs97 IrRADIARE'),
(18552, 'https://ror.org/00mkw8c80', 'no_lang_code', 1, 'https://ror.org/00mkw8c80 Kloé (France)'),
(18553, 'https://ror.org/03tzy5638', 'no_lang_code', 1, 'https://ror.org/03tzy5638 Link2Energy (United Kingdom)'),
(18554, 'https://ror.org/02fb3ta41', 'no_lang_code', 1, 'https://ror.org/02fb3ta41 Matres (Italy)'),
(18555, 'https://ror.org/02vzrk436', 'en', 1, 'https://ror.org/02vzrk436 Vibrant Emotional Health'),
(18556, 'https://ror.org/031mpgh04', 'no_lang_code', 1, 'https://ror.org/031mpgh04 Linkra (Italy)'),
(18557, 'https://ror.org/04a37aq75', 'no_lang_code', 1, 'https://ror.org/04a37aq75 Omnicom Group (United States)'),
(18558, 'https://ror.org/04pg24b43', 'en', 1, 'https://ror.org/04pg24b43 Links Incorporated'),
(18559, 'https://ror.org/01md11a61', 'no_lang_code', 1, 'https://ror.org/01md11a61 Kleinewefers Kunststoffanlagen (Germany)'),
(18560, 'https://ror.org/03gr38452', 'no_lang_code', 1, 'https://ror.org/03gr38452 Metallurgische Verfahrenstechnik (Germany)'),
(18561, 'https://ror.org/05mydvn22', 'en', 1, 'https://ror.org/05mydvn22 Massachusetts Technology Collaborative'),
(18562, 'https://ror.org/0190rg629', 'no_lang_code', 1, 'https://ror.org/0190rg629 Knauf (Germany)'),
(18563, 'https://ror.org/010c9nr19', 'no_lang_code', 1, 'https://ror.org/010c9nr19 Knorr-Bremse (Germany)'),
(18564, 'https://ror.org/01e35h870', 'en', 1, 'https://ror.org/01e35h870 European Learning Industry Group'),
(18565, 'https://ror.org/01d28vn04', 'no_lang_code', 1, 'https://ror.org/01d28vn04 KiNNO'),
(18566, 'https://ror.org/0137qt802', 'en', 1, 'https://ror.org/0137qt802 Knowledge Innovation Market'),
(18567, 'https://ror.org/001kwas94', 'no_lang_code', 1, 'https://ror.org/001kwas94 Knowledge Integration (United Kingdom)'),
(18568, 'https://ror.org/01me3dp58', 'no_lang_code', 1, 'https://ror.org/01me3dp58 Knowledge Now (United Kingdom)'),
(18569, 'https://ror.org/05yapj268', 'en', 1, 'https://ror.org/05yapj268 Education Scotland Foghlam Alba'),
(18570, 'https://ror.org/04z572642', 'en', 1, 'https://ror.org/04z572642 Centre International de Hautes Etudes Agronomiques Méditerranéennes International Centre for Advanced Mediterranean Agronomic Studies'),
(18571, 'https://ror.org/05fahdk25', 'no_lang_code', 1, 'https://ror.org/05fahdk25 Knudsen Plast (Denmark)'),
(18572, 'https://ror.org/014cycx13', 'it', 1, 'https://ror.org/014cycx13 Istituto Centrale per la Ricerca Scientifica e Tecnologica Applicata al Mare'),
(18573, 'https://ror.org/02trhs052', 'no_lang_code', 1, 'https://ror.org/02trhs052 KOAC'),
(18574, 'https://ror.org/0166gt567', 'no_lang_code', 1, 'https://ror.org/0166gt567 Koba Institute'),
(18575, 'https://ror.org/041554441', 'no_lang_code', 1, 'https://ror.org/041554441 ConMed (Finland)'),
(18576, 'https://ror.org/0378pjg29', 'no_lang_code', 1, 'https://ror.org/0378pjg29 Kombiverkehr (Germany)'),
(18577, 'https://ror.org/01pk3tm20', 'no_lang_code', 1, 'https://ror.org/01pk3tm20 Kommunedata (Denmark)'),
(18578, 'https://ror.org/029znv963', 'en', 1, 'https://ror.org/029znv963 Kommunenes Sentralforbund Norwegian Association of Local and Regional Authorities'),
(18579, 'https://ror.org/05vnnaf55', 'no_lang_code', 1, 'https://ror.org/05vnnaf55 Kompania Węglowa (Poland)'),
(18580, 'https://ror.org/056g65q42', 'en', 1, 'https://ror.org/056g65q42 Berlin Centre of Competence for Water Kompetenzzentrum Wasser Berlin'),
(18581, 'https://ror.org/03f8sb410', 'no_lang_code', 1, 'https://ror.org/03f8sb410 Maus (Germany)'),
(18582, 'https://ror.org/00x5h0d60', 'no_lang_code', 1, 'https://ror.org/00x5h0d60 KITH (Norway) Norwegian Centre for Informatics in Health and Social Care'),
(18583, 'https://ror.org/0329n2y83', 'no_lang_code', 1, 'https://ror.org/0329n2y83 Max Fordham (United Kingdom)'),
(18584, 'https://ror.org/02yh73909', 'no_lang_code', 1, 'https://ror.org/02yh73909 ImaSight (Canada)'),
(18585, 'https://ror.org/022eec223', 'no_lang_code', 1, 'https://ror.org/022eec223 LiqTech (Denmark)'),
(18586, 'https://ror.org/003fmz167', 'it', 1, 'https://ror.org/003fmz167 Istituto di Ricerche Economiche e Sociali'),
(18587, 'https://ror.org/03ve07f57', 'no_lang_code', 1, 'https://ror.org/03ve07f57 Kongsberg Gruppen (Norway)'),
(18588, 'https://ror.org/02j6gm739', 'en', 1, 'https://ror.org/02j6gm739 Max Planck Institute for Solar System Research Max-Planck-Institut für Sonnensystemforschung'),
(18589, 'https://ror.org/0060zp422', 'no_lang_code', 1, 'https://ror.org/0060zp422 Koninklijke BAM Groep Royal BAM Group (Netherlands)'),
(18590, 'https://ror.org/04dszkr43', 'no_lang_code', 1, 'https://ror.org/04dszkr43 De Agostini (Italy)'),
(18591, 'https://ror.org/0317phh79', 'no_lang_code', 1, 'https://ror.org/0317phh79 MaxCyte (United States)'),
(18592, 'https://ror.org/05ym5dp96', 'en', 1, 'https://ror.org/05ym5dp96 Liverpool City Council'),
(18593, 'https://ror.org/03hm54n21', 'it', 1, 'https://ror.org/03hm54n21 Istituto Italiano della Saldatura Italian Institute of Welding'),
(18594, 'https://ror.org/0466zcr09', 'en', 1, 'https://ror.org/0466zcr09 SkyTeam'),
(18595, 'https://ror.org/02svcmy74', 'no_lang_code', 1, 'https://ror.org/02svcmy74 LiveU (Israel)'),
(18596, 'https://ror.org/05sft7551', 'no_lang_code', 1, 'https://ror.org/05sft7551 Living Systems (United States)'),
(18597, 'https://ror.org/03qfyes53', 'no_lang_code', 1, 'https://ror.org/03qfyes53 Interaction Design (United Kingdom)'),
(18598, 'https://ror.org/02ys6ht81', 'no_lang_code', 1, 'https://ror.org/02ys6ht81 Livos (Germany)'),
(18599, 'https://ror.org/05kxf7578', 'no_lang_code', 1, 'https://ror.org/05kxf7578 Sphinx (Netherlands)'),
(18600, 'https://ror.org/01eppzd87', 'no_lang_code', 1, 'https://ror.org/01eppzd87 LKSoftWare (Germany)'),
(18601, 'https://ror.org/04ss7ct16', 'no_lang_code', 1, 'https://ror.org/04ss7ct16 LLA Instruments (Germany)'),
(18602, 'https://ror.org/03kq2rg86', 'no_lang_code', 1, 'https://ror.org/03kq2rg86 Konrad Fischer (Austria)'),
(18603, 'https://ror.org/03ta6rc77', 'no_lang_code', 1, 'https://ror.org/03ta6rc77 Lloyds Banking Group (United Kingdom)'),
(18604, 'https://ror.org/05cjbf184', 'it', 1, 'https://ror.org/05cjbf184 Agenzia per la Promozione All''estero e l''Internazionalizzazione Delle Imprese Italiane Italian Trade Promotion Agency'),
(18605, 'https://ror.org/00jd34n28', 'no_lang_code', 1, 'https://ror.org/00jd34n28 Charter Kontron (United Kingdom)'),
(18606, 'https://ror.org/03pmmsa77', 'de', 1, 'https://ror.org/03pmmsa77 Kooperationsstelle Hamburg'),
(18607, 'https://ror.org/00gs0ax16', 'en', 1, 'https://ror.org/00gs0ax16 Institut pour les études de politique internationale Institute for International Political Studies'),
(18608, 'https://ror.org/05dzkb247', 'it', 1, 'https://ror.org/05dzkb247 Environmental and Ethical Certification Institute Istituto per la Certificazione Etica ed Ambientale'),
(18609, 'https://ror.org/00n7jbm43', 'no_lang_code', 1, 'https://ror.org/00n7jbm43 Kopitarna Sevnica (Slovenia)'),
(18610, 'https://ror.org/02gnhjw76', 'no_lang_code', 1, 'https://ror.org/02gnhjw76 Lockheed Martin (United Kingdom)'),
(18611, 'https://ror.org/02x6t2s89', 'no_lang_code', 1, 'https://ror.org/02x6t2s89 Kopoos Consulting (France)'),
(18612, 'https://ror.org/02dnajs12', 'no_lang_code', 1, 'https://ror.org/02dnajs12 Koppert (Netherlands)'),
(18613, 'https://ror.org/02bg3j696', 'no_lang_code', 1, 'https://ror.org/02bg3j696 Maxtech (Canada)'),
(18614, 'https://ror.org/015w1qa96', 'en', 1, 'https://ror.org/015w1qa96 Korea Institute for Advancement of Technology'),
(18615, 'https://ror.org/008j6jh18', 'no_lang_code', 1, 'https://ror.org/008j6jh18 Korona (Slovenia)'),
(18616, 'https://ror.org/03p14zg79', 'no_lang_code', 1, 'https://ror.org/03p14zg79 Loake Shoemakers (United Kingdom)'),
(18617, 'https://ror.org/03sarta97', 'no_lang_code', 1, 'https://ror.org/03sarta97 Maxwell Technologies (Switzerland)'),
(18618, 'https://ror.org/02av6zw72', 'en', 1, 'https://ror.org/02av6zw72 Danish Geodata Agency'),
(18619, 'https://ror.org/01q527f83', 'en', 1, 'https://ror.org/01q527f83 Kozloduy Nuclear Power Plant'),
(18620, 'https://ror.org/05rjsp326', 'no_lang_code', 1, 'https://ror.org/05rjsp326 KPMG (United Kingdom)'),
(18621, 'https://ror.org/00sqg3532', 'no_lang_code', 1, 'https://ror.org/00sqg3532 Maxygen (United States)'),
(18622, 'https://ror.org/04mf4f618', 'no_lang_code', 1, 'https://ror.org/04mf4f618 IS Instruments (United Kingdom)'),
(18623, 'https://ror.org/015vhyq37', 'no_lang_code', 1, 'https://ror.org/015vhyq37 Mayer Brown (United Kingdom)'),
(18624, 'https://ror.org/049ngdd28', 'no_lang_code', 1, 'https://ror.org/049ngdd28 KPMG (United States)'),
(18625, 'https://ror.org/018270v17', 'en', 1, 'https://ror.org/018270v17 Mazzoni Center'),
(18626, 'https://ror.org/04tv3wg24', 'no_lang_code', 1, 'https://ror.org/04tv3wg24 Henkel (Ireland)'),
(18627, 'https://ror.org/00z0jwm84', 'no_lang_code', 1, 'https://ror.org/00z0jwm84 Locus Systems (United States)'),
(18628, 'https://ror.org/01g00ps54', 'no_lang_code', 1, 'https://ror.org/01g00ps54 Kraken Sonar (Canada)'),
(18629, 'https://ror.org/05td2ja26', 'no_lang_code', 1, 'https://ror.org/05td2ja26 MBC Research (United States)'),
(18630, 'https://ror.org/04xwjzk13', 'no_lang_code', 1, 'https://ror.org/04xwjzk13 LogControl (Germany)'),
(18631, 'https://ror.org/00afj9w65', 'no_lang_code', 1, 'https://ror.org/00afj9w65 MBDA (United Kingdom)'),
(18632, 'https://ror.org/05bbhmq49', 'no_lang_code', 1, 'https://ror.org/05bbhmq49 McBride and Associates (United States)'),
(18633, 'https://ror.org/05hgx8167', 'en', 1, 'https://ror.org/05hgx8167 Massachusetts Department of Mental Health'),
(18634, 'https://ror.org/02mh9jb68', 'sr', 1, 'https://ror.org/02mh9jb68 Creative Educational Centre Kreativno Edukativni Centar'),
(18635, 'https://ror.org/04g0yyw61', 'no_lang_code', 1, 'https://ror.org/04g0yyw61 Krones (Germany)'),
(18636, 'https://ror.org/00c0vk765', 'no_lang_code', 1, 'https://ror.org/00c0vk765 Logisticon (Netherlands)'),
(18637, 'https://ror.org/04dfr9g69', 'no_lang_code', 1, 'https://ror.org/04dfr9g69 KSB (Germany)'),
(18638, 'https://ror.org/04pvwy558', 'en', 1, 'https://ror.org/04pvwy558 Leuven Security Excellence Consortium'),
(18639, 'https://ror.org/01pv4sc22', 'no_lang_code', 1, 'https://ror.org/01pv4sc22 KSE (United States)'),
(18640, 'https://ror.org/028v5rv72', 'no_lang_code', 1, 'https://ror.org/028v5rv72 McBurney (United Kingdom)'),
(18641, 'https://ror.org/01svjmt78', 'no_lang_code', 1, 'https://ror.org/01svjmt78 McCann Associates (United States)'),
(18642, 'https://ror.org/02ppzqx84', 'no_lang_code', 1, 'https://ror.org/02ppzqx84 Logit Systems (Belgium)'),
(18643, 'https://ror.org/023d8gn94', 'no_lang_code', 1, 'https://ror.org/023d8gn94 IT+Robotics (Italy)'),
(18644, 'https://ror.org/031ytbe94', 'no_lang_code', 1, 'https://ror.org/031ytbe94 Mahlo (Germany)'),
(18645, 'https://ror.org/049bcjd44', 'en', 1, 'https://ror.org/049bcjd44 International Transports & Cargo Agency'),
(18646, 'https://ror.org/01w74xd96', 'no_lang_code', 1, 'https://ror.org/01w74xd96 Lohmann Tierzucht (Germany)'),
(18647, 'https://ror.org/04zfyj091', 'no_lang_code', 1, 'https://ror.org/04zfyj091 McMillan and Moss Research'),
(18648, 'https://ror.org/039xd5z05', 'no_lang_code', 1, 'https://ror.org/039xd5z05 Logística y Acondicionamientos Industriales (Spain)'),
(18649, 'https://ror.org/01pmvz131', 'no_lang_code', 1, 'https://ror.org/01pmvz131 Eli Lilly (Germany)'),
(18650, 'https://ror.org/058qk8f51', 'no_lang_code', 1, 'https://ror.org/058qk8f51 Innovative Sensor Technology (Switzerland)'),
(18651, 'https://ror.org/008mkmw26', 'no_lang_code', 1, 'https://ror.org/008mkmw26 Kubota Research Associates (United States)'),
(18652, 'https://ror.org/02d33yc31', 'no_lang_code', 1, 'https://ror.org/02d33yc31 Smartrac (Germany)'),
(18653, 'https://ror.org/00amm9s20', 'en', 1, 'https://ror.org/00amm9s20 London Borough of Islington'),
(18654, 'https://ror.org/02spkns44', 'en', 1, 'https://ror.org/02spkns44 London Borough of Tower Hamlets'),
(18655, 'https://ror.org/00kjw1h22', 'no_lang_code', 1, 'https://ror.org/00kjw1h22 Itasca Consultants (Germany)'),
(18656, 'https://ror.org/034ca3821', 'en', 1, 'https://ror.org/034ca3821 London Regional Children''s Museum'),
(18657, 'https://ror.org/01nb9ks67', 'no_lang_code', 1, 'https://ror.org/01nb9ks67 Itasca Consultants (France)'),
(18658, 'https://ror.org/04x32t337', 'en', 1, 'https://ror.org/04x32t337 London TravelWatch'),
(18659, 'https://ror.org/00mcjxw34', 'en', 1, 'https://ror.org/00mcjxw34 Itawamba Community College'),
(18660, 'https://ror.org/02mz79w21', 'en', 1, 'https://ror.org/02mz79w21 Austrian Road Safety Board Kuratorium fuer Verkehrssicherheit'),
(18661, 'https://ror.org/02xptb358', 'no_lang_code', 1, 'https://ror.org/02xptb358 Lonix (Finland)'),
(18662, 'https://ror.org/00a7vez14', 'no_lang_code', 1, 'https://ror.org/00a7vez14 Looking Glass Analytics (United States)'),
(18663, 'https://ror.org/0217b1f02', 'no_lang_code', 1, 'https://ror.org/0217b1f02 Limaging (United States)'),
(18664, 'https://ror.org/01wh99039', 'en', 1, 'https://ror.org/01wh99039 Lord Fairfax Community College'),
(18665, 'https://ror.org/002kwhf16', 'no_lang_code', 1, 'https://ror.org/002kwhf16 5N Plus (United Kingdom)'),
(18666, 'https://ror.org/05svz4z02', 'en', 1, 'https://ror.org/05svz4z02 Los Alamos Public Schools'),
(18667, 'https://ror.org/02tbw9n11', 'en', 1, 'https://ror.org/02tbw9n11 Los Angeles County Department of Mental Health'),
(18668, 'https://ror.org/00wr6qv54', 'en', 1, 'https://ror.org/00wr6qv54 Los Angeles Southwest College'),
(18669, 'https://ror.org/02tdf3b18', 'no_lang_code', 1, 'https://ror.org/02tdf3b18 McPhy Energy (France)'),
(18670, 'https://ror.org/01p3zag48', 'no_lang_code', 1, 'https://ror.org/01p3zag48 Aker (United Kingdom)'),
(18671, 'https://ror.org/043422d20', 'no_lang_code', 1, 'https://ror.org/043422d20 Itelsa (Spain)'),
(18672, 'https://ror.org/055k4r149', 'no_lang_code', 1, 'https://ror.org/055k4r149 ITEMS International'),
(18673, 'https://ror.org/05t0e1a79', 'no_lang_code', 1, 'https://ror.org/05t0e1a79 Mannesmann Demag (Germany)'),
(18674, 'https://ror.org/035k7ej72', 'no_lang_code', 1, 'https://ror.org/035k7ej72 Kompetente Werthaltige Ingenieurleistung (Austria)'),
(18675, 'https://ror.org/02pqv9m23', 'no_lang_code', 1, 'https://ror.org/02pqv9m23 Lufthansa Technical Training (Germany)'),
(18676, 'https://ror.org/04png2m53', 'en', 1, 'https://ror.org/04png2m53 Maryland Coalition of Families'),
(18677, 'https://ror.org/04qaypf21', 'no_lang_code', 1, 'https://ror.org/04qaypf21 Trapeze (United Kingdom)'),
(18678, 'https://ror.org/00vnsbt24', 'no_lang_code', 1, 'https://ror.org/00vnsbt24 KWJ Engineering (United States)'),
(18679, 'https://ror.org/01499pn86', 'no_lang_code', 1, 'https://ror.org/01499pn86 Kyos (Switzerland)'),
(18680, 'https://ror.org/022sp9r28', 'no_lang_code', 1, 'https://ror.org/022sp9r28 ITLink'),
(18681, 'https://ror.org/045pqzn81', 'no_lang_code', 1, 'https://ror.org/045pqzn81 Mécanique et Engrenage Moderne (France)'),
(18682, 'https://ror.org/00bn7ex21', 'no_lang_code', 1, 'https://ror.org/00bn7ex21 Mecanizados Escribano'),
(18683, 'https://ror.org/05s48v759', 'no_lang_code', 1, 'https://ror.org/05s48v759 Meccanica Nova (Italy)'),
(18684, 'https://ror.org/03sb44z08', 'no_lang_code', 1, 'https://ror.org/03sb44z08 Quantum Design (Germany)'),
(18685, 'https://ror.org/03qgkkv45', 'en', 1, 'https://ror.org/03qgkkv45 Police Scotland'),
(18686, 'https://ror.org/01q54vk58', 'no_lang_code', 1, 'https://ror.org/01q54vk58 ITRB (Cyprus)'),
(18687, 'https://ror.org/04swdfh12', 'no_lang_code', 1, 'https://ror.org/04swdfh12 Ericsson (Ireland)'),
(18688, 'https://ror.org/026hk8y88', 'en', 1, 'https://ror.org/026hk8y88 International Tin Research Institute'),
(18689, 'https://ror.org/022fhy294', 'no_lang_code', 1, 'https://ror.org/022fhy294 Mechatronic Systemtechnik (Austria)'),
(18690, 'https://ror.org/01p1jgk06', 'no_lang_code', 1, 'https://ror.org/01p1jgk06 Mecos Traxler (Switzerland)'),
(18691, 'https://ror.org/04tsbwh72', 'fr', 1, 'https://ror.org/04tsbwh72 CRÉ de Montréal'),
(18692, 'https://ror.org/04xfc5120', 'no_lang_code', 1, 'https://ror.org/04xfc5120 Itrust Consulting'),
(18693, 'https://ror.org/0058kkn34', 'en', 1, 'https://ror.org/0058kkn34 Lottolab Studio'),
(18694, 'https://ror.org/01prxxc82', 'it', 1, 'https://ror.org/01prxxc82 Lega Italiana Protezione Uccelli'),
(18695, 'https://ror.org/02sdvza63', 'fr', 1, 'https://ror.org/02sdvza63 La Maison Léon-Provancher'),
(18696, 'https://ror.org/031yp1y05', 'no_lang_code', 1, 'https://ror.org/031yp1y05 Loufakis (Greece) ΛΟΥΦΑΚΗΣ ΧΗΜΙΚΑ'),
(18697, 'https://ror.org/00rvn7j03', 'en', 1, 'https://ror.org/00rvn7j03 Santa Fe Public Schools'),
(18698, 'https://ror.org/01xgyw658', 'en', 1, 'https://ror.org/01xgyw658 Louisburg College'),
(18699, 'https://ror.org/03h60kq84', 'no_lang_code', 1, 'https://ror.org/03h60kq84 Medennium (United States)'),
(18700, 'https://ror.org/0433tpc78', 'en', 1, 'https://ror.org/0433tpc78 La Palma Research Centre for Future Studies'),
(18701, 'https://ror.org/04czczm92', 'no_lang_code', 1, 'https://ror.org/04czczm92 Medes (France)'),
(18702, 'https://ror.org/004hpvt45', 'no_lang_code', 1, 'https://ror.org/004hpvt45 Mediamobile (Finland)'),
(18703, 'https://ror.org/01m29p162', 'no_lang_code', 1, 'https://ror.org/01m29p162 Median SCP (Spain)'),
(18704, 'https://ror.org/04y3nvy62', 'no_lang_code', 1, 'https://ror.org/04y3nvy62 Lablogic Systems (United Kingdom)'),
(18705, 'https://ror.org/04r13g438', 'en', 1, 'https://ror.org/04r13g438 Louisiana Federation of Families for Children''s Mental Health'),
(18706, 'https://ror.org/00eq8n589', 'it', 1, 'https://ror.org/00eq8n589 ASL Roma'),
(18707, 'https://ror.org/02ype5435', 'en', 1, 'https://ror.org/02ype5435 Louisiana Department of Education'),
(18708, 'https://ror.org/05xyrf554', 'de', 1, 'https://ror.org/05xyrf554 Intelligent Transport Systems Niedersachsen'),
(18709, 'https://ror.org/055hv2t95', 'no_lang_code', 1, 'https://ror.org/055hv2t95 Imagina (Spain)'),
(18710, 'https://ror.org/01nw59437', 'en', 1, 'https://ror.org/01nw59437 Louth County Council'),
(18711, 'https://ror.org/01gd1dh27', 'fr', 1, 'https://ror.org/01gd1dh27 Laboratoire de Recherche des Monuments Historiques'),
(18712, 'https://ror.org/02mzsdx16', 'no_lang_code', 1, 'https://ror.org/02mzsdx16 Lowri Beck (United Kingdom)'),
(18713, 'https://ror.org/04sd5y079', 'no_lang_code', 1, 'https://ror.org/04sd5y079 LS Plant Breeding (United Kingdom)'),
(18714, 'https://ror.org/0491wxq94', 'no_lang_code', 1, 'https://ror.org/0491wxq94 LSVT Global (United States)'),
(18715, 'https://ror.org/02qtpb069', 'no_lang_code', 1, 'https://ror.org/02qtpb069 Medica (Italy)'),
(18716, 'https://ror.org/02wb36b75', 'en', 1, 'https://ror.org/02wb36b75 Lubbock Christian University'),
(18717, 'https://ror.org/048dpf041', 'no_lang_code', 1, 'https://ror.org/048dpf041 Lucchini (Italy)'),
(18718, 'https://ror.org/04r2khh81', 'no_lang_code', 1, 'https://ror.org/04r2khh81 IVU Traffic Technologies (Germany)'),
(18719, 'https://ror.org/01d530j85', 'no_lang_code', 1, 'https://ror.org/01d530j85 Luceome Biotechnologies (United States)'),
(18720, 'https://ror.org/01q5wx109', 'no_lang_code', 1, 'https://ror.org/01q5wx109 IVV Automação (Portugal)'),
(18721, 'https://ror.org/047tbwy41', 'no_lang_code', 1, 'https://ror.org/047tbwy41 Lucid Technologies (United States)'),
(18722, 'https://ror.org/01xar0e72', 'no_lang_code', 1, 'https://ror.org/01xar0e72 IX-Factory (Germany)'),
(18723, 'https://ror.org/003gfpb19', 'no_lang_code', 1, 'https://ror.org/003gfpb19 Caliber Imaging and Diagnostics (United States)'),
(18724, 'https://ror.org/05hzwst11', 'no_lang_code', 1, 'https://ror.org/05hzwst11 Lucite International (United Kingdom)'),
(18725, 'https://ror.org/05bm86k51', 'no_lang_code', 1, 'https://ror.org/05bm86k51 Ludger (United Kingdom)'),
(18726, 'https://ror.org/03mz5a533', 'no_lang_code', 1, 'https://ror.org/03mz5a533 iXpressGenes (United States)'),
(18727, 'https://ror.org/02vx35127', 'en', 1, 'https://ror.org/02vx35127 Medical Data Exchange'),
(18728, 'https://ror.org/00stasw52', 'no_lang_code', 1, 'https://ror.org/00stasw52 General Society of Surveillance SGS (France)'),
(18729, 'https://ror.org/02p19yx96', 'no_lang_code', 1, 'https://ror.org/02p19yx96 Luminomics (United States)'),
(18730, 'https://ror.org/05cmaqt93', 'no_lang_code', 1, 'https://ror.org/05cmaqt93 Lumiphore (United States)'),
(18731, 'https://ror.org/01fhvk277', 'no_lang_code', 1, 'https://ror.org/01fhvk277 Medical Engineering Innovations (United States)'),
(18732, 'https://ror.org/01sfgr903', 'no_lang_code', 1, 'https://ror.org/01sfgr903 Mediri (Germany)'),
(18733, 'https://ror.org/04ht12d51', 'en', 1, 'https://ror.org/04ht12d51 Lunaria Association'),
(18734, 'https://ror.org/04bn6e003', 'no_lang_code', 1, 'https://ror.org/04bn6e003 Medical Indicators (United States)'),
(18735, 'https://ror.org/043esfj33', 'en', 1, 'https://ror.org/043esfj33 Medical Institute for Sexual Health'),
(18736, 'https://ror.org/026xpx458', 'de', 1, 'https://ror.org/026xpx458 Institut für ZukunftsEnergie- und Stoffstromsysteme'),
(18737, 'https://ror.org/0380g9t27', 'en', 1, 'https://ror.org/0380g9t27 Lurleen B Wallace Community College'),
(18738, 'https://ror.org/01s9da178', 'no_lang_code', 1, 'https://ror.org/01s9da178 Iznab (Poland)'),
(18739, 'https://ror.org/053dpzm93', 'pt', 1, 'https://ror.org/053dpzm93 Lusa Agência de Notícias de Portugal'),
(18740, 'https://ror.org/00t4n3812', 'en', 1, 'https://ror.org/00t4n3812 J.F. Drake State Community and Technical College'),
(18741, 'https://ror.org/00c5ttz44', 'no_lang_code', 1, 'https://ror.org/00c5ttz44 Lusotufo (Portugal)'),
(18742, 'https://ror.org/005x6m040', 'en', 1, 'https://ror.org/005x6m040 International Virtual Laboratory for Enterprise Interoperability'),
(18743, 'https://ror.org/00ta0bp18', 'no_lang_code', 1, 'https://ror.org/00ta0bp18 LUX Assure (United Kingdom)'),
(18744, 'https://ror.org/00bt32k84', 'no_lang_code', 1, 'https://ror.org/00bt32k84 Luxcontrol (Luxembourg)'),
(18745, 'https://ror.org/0576t9y10', 'no_lang_code', 1, 'https://ror.org/0576t9y10 JR Technology (United Kingdom)'),
(18746, 'https://ror.org/02pbwqv79', 'en', 1, 'https://ror.org/02pbwqv79 Reynolds Community College'),
(18747, 'https://ror.org/02806kr08', 'no_lang_code', 1, 'https://ror.org/02806kr08 Jablite (United Kingdom)'),
(18748, 'https://ror.org/05ecr8233', 'no_lang_code', 1, 'https://ror.org/05ecr8233 Mectron (Italy)'),
(18749, 'https://ror.org/010qn8y93', 'no_lang_code', 1, 'https://ror.org/010qn8y93 LVD (Belgium)'),
(18750, 'https://ror.org/00hq40871', 'no_lang_code', 1, 'https://ror.org/00hq40871 Jacobson Holman (United States)'),
(18751, 'https://ror.org/00crrhx33', 'no_lang_code', 1, 'https://ror.org/00crrhx33 Laitek (United States)'),
(18752, 'https://ror.org/0433seb41', 'no_lang_code', 1, 'https://ror.org/0433seb41 Lybradyn (United States)'),
(18753, 'https://ror.org/048c9kr85', 'no_lang_code', 1, 'https://ror.org/048c9kr85 AXYS Technologies (Canada)'),
(18754, 'https://ror.org/01f9j1315', 'no_lang_code', 1, 'https://ror.org/01f9j1315 Lymba (United States)'),
(18755, 'https://ror.org/039vmq038', 'no_lang_code', 1, 'https://ror.org/039vmq038 Lyncean Technologies (United States)'),
(18756, 'https://ror.org/05chgd482', 'no_lang_code', 1, 'https://ror.org/05chgd482 Lyngsø Marine (Denmark)'),
(18757, 'https://ror.org/03k8cn029', 'no_lang_code', 1, 'https://ror.org/03k8cn029 Lynkeus (Italy)'),
(18758, 'https://ror.org/05frrjn34', 'no_lang_code', 1, 'https://ror.org/05frrjn34 Lynx (Italy)'),
(18759, 'https://ror.org/056krdw94', 'no_lang_code', 1, 'https://ror.org/056krdw94 Jáfi-Autókut (Hungary)'),
(18760, 'https://ror.org/048hrra09', 'no_lang_code', 1, 'https://ror.org/048hrra09 Medicon (United States)'),
(18761, 'https://ror.org/03a9d3647', 'en', 1, 'https://ror.org/03a9d3647 Rhodes State College'),
(18762, 'https://ror.org/020gmsm27', 'no_lang_code', 1, 'https://ror.org/020gmsm27 James Agee Film Project'),
(18763, 'https://ror.org/019faqe83', 'en', 1, 'https://ror.org/019faqe83 Lac du Flambeau Band of Lake Superior Chippewa Indians'),
(18764, 'https://ror.org/04mya7254', 'no_lang_code', 1, 'https://ror.org/04mya7254 James Kent (United Kingdom)'),
(18765, 'https://ror.org/00z51f924', 'no_lang_code', 1, 'https://ror.org/00z51f924 Lypro Biosciences (United States)'),
(18766, 'https://ror.org/02kx1jy33', 'no_lang_code', 1, 'https://ror.org/02kx1jy33 Lyven (France)'),
(18767, 'https://ror.org/00tmg8x76', 'no_lang_code', 1, 'https://ror.org/00tmg8x76 MVSystems (United States)'),
(18768, 'https://ror.org/0399jq845', 'no_lang_code', 1, 'https://ror.org/0399jq845 Lafer (Italy)'),
(18769, 'https://ror.org/00mww6988', 'no_lang_code', 1, 'https://ror.org/00mww6988 KBR (United Kingdom)'),
(18770, 'https://ror.org/02mkscs58', 'no_lang_code', 1, 'https://ror.org/02mkscs58 Viasat (Switzerland)'),
(18771, 'https://ror.org/052jw4t43', 'no_lang_code', 1, 'https://ror.org/052jw4t43 M Wright and Sons (United Kingdom)'),
(18772, 'https://ror.org/04g544j85', 'no_lang_code', 1, 'https://ror.org/04g544j85 M.A. Turbo Engine (Canada)'),
(18773, 'https://ror.org/00ecpkf08', 'no_lang_code', 1, 'https://ror.org/00ecpkf08 Ljubljana Passenger Transport'),
(18774, 'https://ror.org/02b76pd77', 'no_lang_code', 1, 'https://ror.org/02b76pd77 M3 Systems (France)'),
(18775, 'https://ror.org/00dcstt96', 'en', 1, 'https://ror.org/00dcstt96 Mediterranean Information Office for Environment Culture and Sustainable Development'),
(18776, 'https://ror.org/0064gh735', 'en', 1, 'https://ror.org/0064gh735 Mediterranean Institute of Fundamental Physics'),
(18777, 'https://ror.org/002jks503', 'no_lang_code', 1, 'https://ror.org/002jks503 Medivir (Sweden)'),
(18778, 'https://ror.org/00q3qq605', 'no_lang_code', 1, 'https://ror.org/00q3qq605 MA Systems and Control (United Kingdom)'),
(18779, 'https://ror.org/04yrw5p64', 'no_lang_code', 1, 'https://ror.org/04yrw5p64 MedPharm (United Kingdom)'),
(18780, 'https://ror.org/006b89x83', 'no_lang_code', 1, 'https://ror.org/006b89x83 JBS Science (United States)'),
(18781, 'https://ror.org/023wx1945', 'no_lang_code', 1, 'https://ror.org/023wx1945 Mace (United Kingdom)'),
(18782, 'https://ror.org/035rr6c23', 'en', 1, 'https://ror.org/035rr6c23 MacGillivray Freeman Films'),
(18783, 'https://ror.org/05cyjba52', 'pt', 1, 'https://ror.org/05cyjba52 Ministry of Agriculture, Forestry and Rural Development Ministério da Agricultura Ministério da Agricultura, Florestas e Desenvolvimento Rural'),
(18784, 'https://ror.org/046q8mv93', 'no_lang_code', 1, 'https://ror.org/046q8mv93 Mitel (Ireland)'),
(18785, 'https://ror.org/05gcmgp11', 'no_lang_code', 1, 'https://ror.org/05gcmgp11 Jefar-Indústria De Calçado'),
(18786, 'https://ror.org/05y20sz16', 'pt', 1, 'https://ror.org/05y20sz16 Ministry of National Defense Ministério da Defesa Nacional'),
(18787, 'https://ror.org/05thfaz05', 'en', 1, 'https://ror.org/05thfaz05 Mach4 Lab'),
(18788, 'https://ror.org/05vg3p333', 'no_lang_code', 1, 'https://ror.org/05vg3p333 Lakeshore Group (United States)'),
(18789, 'https://ror.org/008hr1h38', 'en', 1, 'https://ror.org/008hr1h38 Century College'),
(18790, 'https://ror.org/00p7jhx04', 'no_lang_code', 1, 'https://ror.org/00p7jhx04 Medtrac Technologies (United States)'),
(18791, 'https://ror.org/02hrr9v50', 'en', 1, 'https://ror.org/02hrr9v50 Machine Science'),
(18792, 'https://ror.org/02kxemb23', 'en', 1, 'https://ror.org/02kxemb23 Jefferson County Department of Health'),
(18793, 'https://ror.org/05dmmmj28', 'no_lang_code', 1, 'https://ror.org/05dmmmj28 Machinefabriek Otto Schouten (Netherlands)');
INSERT INTO `rors` VALUES
(18794, 'https://ror.org/0325p1j31', 'no_lang_code', 1, 'https://ror.org/0325p1j31 Coherent (Germany)'),
(18795, 'https://ror.org/03snfqm79', 'en', 1, 'https://ror.org/03snfqm79 Lancashire County Council'),
(18796, 'https://ror.org/03ywb2q15', 'en', 1, 'https://ror.org/03ywb2q15 Lafayette School Corporation'),
(18797, 'https://ror.org/0387ev146', 'en', 1, 'https://ror.org/0387ev146 Lancaster City Council'),
(18798, 'https://ror.org/0013kfc53', 'en', 1, 'https://ror.org/0013kfc53 Land Quality Management'),
(18799, 'https://ror.org/056j0ka11', 'no_lang_code', 1, 'https://ror.org/056j0ka11 JenLab (Germany)'),
(18800, 'https://ror.org/00z65ng94', 'en', 1, 'https://ror.org/00z65ng94 Landau Institute for Theoretical Physics Институт теоретической физики им. Л. Д. Ландау'),
(18801, 'https://ror.org/05g7t5c49', 'no_lang_code', 1, 'https://ror.org/05g7t5c49 Jenoptik (Germany)'),
(18802, 'https://ror.org/04fvsd280', 'en', 1, 'https://ror.org/04fvsd280 Danish Agriculture and Food Council'),
(18803, 'https://ror.org/04eb8df09', 'no_lang_code', 1, 'https://ror.org/04eb8df09 Orano (United States)'),
(18804, 'https://ror.org/0437g4y96', 'no_lang_code', 1, 'https://ror.org/0437g4y96 Mega Electronics (Finland)'),
(18805, 'https://ror.org/02qya6g42', 'no_lang_code', 1, 'https://ror.org/02qya6g42 Boeing (Germany)'),
(18806, 'https://ror.org/037n8p820', 'en', 1, 'https://ror.org/037n8p820 Ministerstvo školství, mládeže a tělovýchovy České republiky Ministry of Education Youth and Sports'),
(18807, 'https://ror.org/0481ybd91', 'en', 1, 'https://ror.org/0481ybd91 Jewish Home'),
(18808, 'https://ror.org/05w1nn565', 'en', 1, 'https://ror.org/05w1nn565 Ministerstvo vnitra Ministry of the Interior'),
(18809, 'https://ror.org/0221ghv91', 'en', 1, 'https://ror.org/0221ghv91 Ministria e Arsimit dhe Shkencës Ministry of Education and Science'),
(18810, 'https://ror.org/01hdcyq69', 'no_lang_code', 1, 'https://ror.org/01hdcyq69 Meggitt (United Kingdom)'),
(18811, 'https://ror.org/022059r74', 'no_lang_code', 1, 'https://ror.org/022059r74 Meggitt (Switzerland)'),
(18812, 'https://ror.org/03tmjzy81', 'en', 1, 'https://ror.org/03tmjzy81 Ministerstwo Kultury i Dziedzictwa Narodowego Ministry of Culture and National Heritage'),
(18813, 'https://ror.org/00ct8ya87', 'en', 1, 'https://ror.org/00ct8ya87 Living with Disability'),
(18814, 'https://ror.org/03jkjqx69', 'no_lang_code', 1, 'https://ror.org/03jkjqx69 Helliniki Meletitiki (Greece)'),
(18815, 'https://ror.org/02zt74990', 'no_lang_code', 1, 'https://ror.org/02zt74990 Joel Popkin and Company'),
(18816, 'https://ror.org/01j45tp19', 'no_lang_code', 1, 'https://ror.org/01j45tp19 Joensuu Science Park'),
(18817, 'https://ror.org/0369g1y44', 'en', 1, 'https://ror.org/0369g1y44 Ministry of Agriculture Forestry and Food'),
(18818, 'https://ror.org/04c9wtt72', 'no_lang_code', 1, 'https://ror.org/04c9wtt72 MagArray (United States)'),
(18819, 'https://ror.org/031cs6d58', 'no_lang_code', 1, 'https://ror.org/031cs6d58 Toshiba (Switzerland)'),
(18820, 'https://ror.org/01gj24y87', 'en', 1, 'https://ror.org/01gj24y87 Ministrstvo za Kulturo Ministry of Culture'),
(18821, 'https://ror.org/03w60e920', 'no_lang_code', 1, 'https://ror.org/03w60e920 Magee Scientific (United States)'),
(18822, 'https://ror.org/02mf2qw78', 'no_lang_code', 1, 'https://ror.org/02mf2qw78 Toshiba (France)'),
(18823, 'https://ror.org/058gk5394', 'en', 1, 'https://ror.org/058gk5394 Ministrstvo za pravosodje Ministry of Justice'),
(18824, 'https://ror.org/04vv4v570', 'en', 1, 'https://ror.org/04vv4v570 Landmark College'),
(18825, 'https://ror.org/047d3ep63', 'en', 1, 'https://ror.org/047d3ep63 Ministry for Education and Employment'),
(18826, 'https://ror.org/03gb5pj65', 'no_lang_code', 1, 'https://ror.org/03gb5pj65 Fuchs (Austria)'),
(18827, 'https://ror.org/016a8y628', 'no_lang_code', 1, 'https://ror.org/016a8y628 Magma (Germany)'),
(18828, 'https://ror.org/00yy6km68', 'en', 1, 'https://ror.org/00yy6km68 Ministry for Sustainable Development the Environment and Climate change'),
(18829, 'https://ror.org/05p3we513', 'no_lang_code', 1, 'https://ror.org/05p3we513 Melodea (Israel)'),
(18830, 'https://ror.org/052b68304', 'no_lang_code', 1, 'https://ror.org/052b68304 Magna Parva (United Kingdom)'),
(18831, 'https://ror.org/0580j1464', 'no_lang_code', 1, 'https://ror.org/0580j1464 Meloni Vini (Italy)'),
(18832, 'https://ror.org/02wfzks91', 'de', 1, 'https://ror.org/02wfzks91 Landwirtschaftliche Fachschule Tulln professional school for agriculture Tulln'),
(18833, 'https://ror.org/00e7vgg86', 'en', 1, 'https://ror.org/00e7vgg86 Lane College'),
(18834, 'https://ror.org/05x76z110', 'no_lang_code', 1, 'https://ror.org/05x76z110 John Caunt Scientific (United Kingdom)'),
(18835, 'https://ror.org/04qx8er17', 'no_lang_code', 1, 'https://ror.org/04qx8er17 Magnetfabrik Bonn (Germany)'),
(18836, 'https://ror.org/01f43e063', 'no_lang_code', 1, 'https://ror.org/01f43e063 Magneti Ljubljana (Slovenia)'),
(18837, 'https://ror.org/01zcb7j14', 'no_lang_code', 1, 'https://ror.org/01zcb7j14 Nuance Communications (Belgium)'),
(18838, 'https://ror.org/01vqxw943', 'no_lang_code', 1, 'https://ror.org/01vqxw943 The Meltech (United Kingdom)'),
(18839, 'https://ror.org/013mgh495', 'no_lang_code', 1, 'https://ror.org/013mgh495 Language Computer (United States)'),
(18840, 'https://ror.org/00xe53w23', 'no_lang_code', 1, 'https://ror.org/00xe53w23 John Gill Technology (United Kingdom)'),
(18841, 'https://ror.org/048gzej48', 'no_lang_code', 1, 'https://ror.org/048gzej48 Lanner Group (United Kingdom)'),
(18842, 'https://ror.org/052vb0z63', 'no_lang_code', 1, 'https://ror.org/052vb0z63 Tokyo Electron (Ireland)'),
(18843, 'https://ror.org/03p6bvv51', 'no_lang_code', 1, 'https://ror.org/03p6bvv51 Revlon (United States)'),
(18844, 'https://ror.org/01zm94433', 'no_lang_code', 1, 'https://ror.org/01zm94433 John Wiley & Sons (United Kingdom)'),
(18845, 'https://ror.org/04v1xq350', 'no_lang_code', 1, 'https://ror.org/04v1xq350 SunEdison (Italy)'),
(18846, 'https://ror.org/0132f5d22', 'no_lang_code', 1, 'https://ror.org/0132f5d22 Magnomatics (United Kingdom)'),
(18847, 'https://ror.org/00wgpww39', 'en', 1, 'https://ror.org/00wgpww39 Hungarian Association of Content Industry'),
(18848, 'https://ror.org/05xhvxn93', 'no_lang_code', 1, 'https://ror.org/05xhvxn93 MemEx (Italy)'),
(18849, 'https://ror.org/00fgmmg43', 'no_lang_code', 1, 'https://ror.org/00fgmmg43 UniCredit (Italy) UniCredito Italiano'),
(18850, 'https://ror.org/043z38488', 'no_lang_code', 1, 'https://ror.org/043z38488 Laryngograph (United Kingdom)'),
(18851, 'https://ror.org/05cvky844', 'en', 1, 'https://ror.org/05cvky844 Ministry of Transport and Communications'),
(18852, 'https://ror.org/01brbem53', 'en', 1, 'https://ror.org/01brbem53 Ministry of Communications Science and Technology'),
(18853, 'https://ror.org/04vsqr388', 'no_lang_code', 1, 'https://ror.org/04vsqr388 Deutsche Telekom (Hungary)'),
(18854, 'https://ror.org/04bac3z79', 'en', 1, 'https://ror.org/04bac3z79 Shelby County Schools'),
(18855, 'https://ror.org/00x4hs846', 'no_lang_code', 1, 'https://ror.org/00x4hs846 MemPro (United States)'),
(18856, 'https://ror.org/00see0y83', 'en', 1, 'https://ror.org/00see0y83 Ministry of Education, Arts and Culture'),
(18857, 'https://ror.org/034c9fe80', 'no_lang_code', 1, 'https://ror.org/034c9fe80 Rofin (Switzerland)'),
(18858, 'https://ror.org/048pz4a95', 'no_lang_code', 1, 'https://ror.org/048pz4a95 Vionyx (United States)'),
(18859, 'https://ror.org/01wj8sy84', 'en', 1, 'https://ror.org/01wj8sy84 Laser Institute of America'),
(18860, 'https://ror.org/0327edc10', 'no_lang_code', 1, 'https://ror.org/0327edc10 Laser Optical Engineering (United Kingdom)'),
(18861, 'https://ror.org/00f53v221', 'no_lang_code', 1, 'https://ror.org/00f53v221 Laser Tissue Welding (United States)'),
(18862, 'https://ror.org/0270k0c71', 'en', 1, 'https://ror.org/0270k0c71 Ministry of Education Science and Technology'),
(18863, 'https://ror.org/03j1srb55', 'no_lang_code', 1, 'https://ror.org/03j1srb55 Laser- und Medizin-Technologie (Germany)'),
(18864, 'https://ror.org/03fqqns24', 'fr', 1, 'https://ror.org/03fqqns24 Missions Publiques'),
(18865, 'https://ror.org/04es3ne34', 'en', 1, 'https://ror.org/04es3ne34 Ministry of Health Ministério da Saúde'),
(18866, 'https://ror.org/04jt2r126', 'no_lang_code', 1, 'https://ror.org/04jt2r126 LaserLeap Technologies (Portugal)'),
(18867, 'https://ror.org/0181arg19', 'en', 1, 'https://ror.org/0181arg19 Mississippi Band of Choctaw Indians'),
(18868, 'https://ror.org/04yadxf37', 'en', 1, 'https://ror.org/04yadxf37 Ministry of Health'),
(18869, 'https://ror.org/00s6jcp09', 'no_lang_code', 1, 'https://ror.org/00s6jcp09 Laserlith (United States)'),
(18870, 'https://ror.org/05mhnzk71', 'en', 1, 'https://ror.org/05mhnzk71 Hungarian Chemical Industry Association'),
(18871, 'https://ror.org/04ksf9y74', 'no_lang_code', 1, 'https://ror.org/04ksf9y74 MEMX (United States)'),
(18872, 'https://ror.org/03b1p5875', 'fr', 1, 'https://ror.org/03b1p5875 Ministère de la Santé Publique et de la Population'),
(18873, 'https://ror.org/033yatp22', 'en', 1, 'https://ror.org/033yatp22 Ministerstvo Vnútra Slovenskej Republiky Ministry of Interior'),
(18874, 'https://ror.org/00f42c411', 'no_lang_code', 1, 'https://ror.org/00f42c411 Lab_Bell (Canada)'),
(18875, 'https://ror.org/05n686b12', 'no_lang_code', 1, 'https://ror.org/05n686b12 Maillefer (Switzerland)'),
(18876, 'https://ror.org/051aeqp85', 'en', 1, 'https://ror.org/051aeqp85 Mississippi Department of Education'),
(18877, 'https://ror.org/02st8gf30', 'no_lang_code', 1, 'https://ror.org/02st8gf30 LSI Solutions (United States)'),
(18878, 'https://ror.org/0042p6c32', 'no_lang_code', 1, 'https://ror.org/0042p6c32 IVL Audio (Canada)'),
(18879, 'https://ror.org/033env547', 'en', 1, 'https://ror.org/033env547 Laskeek Bay Conservation Society'),
(18880, 'https://ror.org/04nzhmg91', 'en', 1, 'https://ror.org/04nzhmg91 Ministerie van Justitie en Veiligheid Ministry of Security and Justice'),
(18881, 'https://ror.org/01ptfqt82', 'no_lang_code', 1, 'https://ror.org/01ptfqt82 Lassila & Tikanoja (Finland)'),
(18882, 'https://ror.org/02kexh790', 'no_lang_code', 1, 'https://ror.org/02kexh790 Missouri Breaks Industries Research (United States)'),
(18883, 'https://ror.org/003g29k51', 'no_lang_code', 1, 'https://ror.org/003g29k51 Latécoère (France)'),
(18884, 'https://ror.org/01zbnj927', 'en', 1, 'https://ror.org/01zbnj927 Missouri Department of Social Services'),
(18885, 'https://ror.org/00epfzn27', 'en', 1, 'https://ror.org/00epfzn27 Mental Health America of Oregon'),
(18886, 'https://ror.org/03r2fj775', 'en', 1, 'https://ror.org/03r2fj775 Maine Audubon'),
(18887, 'https://ror.org/02qr36w40', 'fr', 1, 'https://ror.org/02qr36w40 Ministère de l''Agriculture'),
(18888, 'https://ror.org/046dybe93', 'en', 1, 'https://ror.org/046dybe93 Office of Missouri Governor'),
(18889, 'https://ror.org/034szbq97', 'no_lang_code', 1, 'https://ror.org/034szbq97 Soltigua (Italy)'),
(18890, 'https://ror.org/01f15gz68', 'no_lang_code', 1, 'https://ror.org/01f15gz68 GVS (United States)'),
(18891, 'https://ror.org/049twep74', 'no_lang_code', 1, 'https://ror.org/049twep74 Lati Industria Termoplastici (Italy)'),
(18892, 'https://ror.org/010qx2c09', 'en', 1, 'https://ror.org/010qx2c09 Latino Community Services'),
(18893, 'https://ror.org/048vgks49', 'en', 1, 'https://ror.org/048vgks49 Maine Parent Federation'),
(18894, 'https://ror.org/047m6hg73', 'no_lang_code', 1, 'https://ror.org/047m6hg73 Management Intelligenter Technologien (Germany)'),
(18895, 'https://ror.org/01p3fa845', 'en', 1, 'https://ror.org/01p3fa845 Laucks Foundation'),
(18896, 'https://ror.org/02b173w12', 'no_lang_code', 1, 'https://ror.org/02b173w12 MiTeGen (United States)'),
(18897, 'https://ror.org/04t5w6b17', 'no_lang_code', 1, 'https://ror.org/04t5w6b17 Lavrentyev Institute of Hydrodynamics Федеральное государственное бюджетное учреждение науки Институт гидродинамики им. М.А. Лаврентьева Сибирского отделения Российской академии наук'),
(18898, 'https://ror.org/00jccxv75', 'en', 1, 'https://ror.org/00jccxv75 Law and Internet Foundation'),
(18899, 'https://ror.org/036grjg58', 'en', 1, 'https://ror.org/036grjg58 Ministry of the Interior Sisäministeriö'),
(18900, 'https://ror.org/05khkqa44', 'en', 1, 'https://ror.org/05khkqa44 Lietuvos Respublikos vidaus reikalų ministerija Ministry of the Interior of the Republic of Lithuania'),
(18901, 'https://ror.org/04q2p9044', 'no_lang_code', 1, 'https://ror.org/04q2p9044 MakeBelieve Arts (United Kingdom)'),
(18902, 'https://ror.org/00emwta72', 'en', 1, 'https://ror.org/00emwta72 Makin It Happen Coalition for Resilient Youth'),
(18903, 'https://ror.org/04c1zgk38', 'no_lang_code', 1, 'https://ror.org/04c1zgk38 MAKScientific (United States)'),
(18904, 'https://ror.org/00r9rdf15', 'en', 1, 'https://ror.org/00r9rdf15 Ministry of Transport and Communications kommunikationsministeriet liikenne- ja viestintäministeriö'),
(18905, 'https://ror.org/01cz7pz66', 'no_lang_code', 1, 'https://ror.org/01cz7pz66 MitoHealth (United States)'),
(18906, 'https://ror.org/025bepc78', 'no_lang_code', 1, 'https://ror.org/025bepc78 3D Systems (Belgium)'),
(18907, 'https://ror.org/04yzd5a95', 'en', 1, 'https://ror.org/04yzd5a95 Mental Health Consumer Survivor Network'),
(18908, 'https://ror.org/02abh5f58', 'no_lang_code', 1, 'https://ror.org/02abh5f58 LC Vision (United States)'),
(18909, 'https://ror.org/0023n7k70', 'en', 1, 'https://ror.org/0023n7k70 Memorial Blood Centers'),
(18910, 'https://ror.org/01ygx6877', 'en', 1, 'https://ror.org/01ygx6877 Mind'),
(18911, 'https://ror.org/048v4wb07', 'en', 1, 'https://ror.org/048v4wb07 Minnesota Association for Children''s Mental Health'),
(18912, 'https://ror.org/0558fr586', 'en', 1, 'https://ror.org/0558fr586 Mental Health Systems'),
(18913, 'https://ror.org/03p72cz81', 'no_lang_code', 1, 'https://ror.org/03p72cz81 LDK (Greece)'),
(18914, 'https://ror.org/01kf1n431', 'en', 1, 'https://ror.org/01kf1n431 Minnesota Educational Computing Consortium'),
(18915, 'https://ror.org/05c9nwr56', 'en', 1, 'https://ror.org/05c9nwr56 Riverland Community College'),
(18916, 'https://ror.org/04bhzjf61', 'en', 1, 'https://ror.org/04bhzjf61 Minnesota Department of Education'),
(18917, 'https://ror.org/03jq5gp77', 'en', 1, 'https://ror.org/03jq5gp77 Minnesota Zoo'),
(18918, 'https://ror.org/0317pbn61', 'en', 1, 'https://ror.org/0317pbn61 Minot Public Schools'),
(18919, 'https://ror.org/0536ye693', 'en', 1, 'https://ror.org/0536ye693 Mental Health and Recovery Services Board'),
(18920, 'https://ror.org/048aq6484', 'no_lang_code', 1, 'https://ror.org/048aq6484 Intersand (Canada)'),
(18921, 'https://ror.org/02zkph911', 'no_lang_code', 1, 'https://ror.org/02zkph911 AVL (France)'),
(18922, 'https://ror.org/04qpp5q81', 'en', 1, 'https://ror.org/04qpp5q81 Minuteman High School'),
(18923, 'https://ror.org/0344tkb11', 'no_lang_code', 1, 'https://ror.org/0344tkb11 Los Alamos Technical Associates (United States)'),
(18924, 'https://ror.org/04z8j8871', 'en', 1, 'https://ror.org/04z8j8871 Mental Health Mental Retardation of Tarrant County'),
(18925, 'https://ror.org/01btem129', 'no_lang_code', 1, 'https://ror.org/01btem129 LeadScope (United States)'),
(18926, 'https://ror.org/019nfqa94', 'no_lang_code', 1, 'https://ror.org/019nfqa94 Biotage (Sweden)'),
(18927, 'https://ror.org/01s12hv96', 'no_lang_code', 1, 'https://ror.org/01s12hv96 Miraculins (Canada)'),
(18928, 'https://ror.org/05m3mzx29', 'no_lang_code', 1, 'https://ror.org/05m3mzx29 Gnubila Technology (France)'),
(18929, 'https://ror.org/029nxc858', 'en', 1, 'https://ror.org/029nxc858 Maine Department of Education'),
(18930, 'https://ror.org/01j7j0055', 'no_lang_code', 1, 'https://ror.org/01j7j0055 Lear (Spain)'),
(18931, 'https://ror.org/05nq31604', 'no_lang_code', 1, 'https://ror.org/05nq31604 Mirari Biosciences (United States)'),
(18932, 'https://ror.org/04sgryq04', 'no_lang_code', 1, 'https://ror.org/04sgryq04 Mirasys (Finland)'),
(18933, 'https://ror.org/0024fc285', 'en', 1, 'https://ror.org/0024fc285 FrontLine Service'),
(18934, 'https://ror.org/05wvb7e41', 'no_lang_code', 1, 'https://ror.org/05wvb7e41 Mentor InterActive (United States)'),
(18935, 'https://ror.org/058t6q245', 'no_lang_code', 1, 'https://ror.org/058t6q245 Chemsupply (Switzerland)'),
(18936, 'https://ror.org/04etart85', 'no_lang_code', 1, 'https://ror.org/04etart85 Guideline Geo (Sweden)'),
(18937, 'https://ror.org/04xhwje32', 'no_lang_code', 1, 'https://ror.org/04xhwje32 Mirriad (United Kingdom)'),
(18938, 'https://ror.org/0589vxh51', 'no_lang_code', 1, 'https://ror.org/0589vxh51 Datacorp (United States)'),
(18939, 'https://ror.org/055mawj54', 'en', 1, 'https://ror.org/055mawj54 Mercy Medical Center Merced'),
(18940, 'https://ror.org/04n3nh595', 'en', 1, 'https://ror.org/04n3nh595 Department of Forestry'),
(18941, 'https://ror.org/04eerm638', 'en', 1, 'https://ror.org/04eerm638 Mercer Island School District'),
(18942, 'https://ror.org/02xhybk62', 'en', 1, 'https://ror.org/02xhybk62 National AIDS Commission'),
(18943, 'https://ror.org/05sdess02', 'no_lang_code', 1, 'https://ror.org/05sdess02 mLED (United Kingdom)'),
(18944, 'https://ror.org/04w0krt75', 'no_lang_code', 1, 'https://ror.org/04w0krt75 MLS Multimedia (Greece)'),
(18945, 'https://ror.org/044sxgs38', 'en', 1, 'https://ror.org/044sxgs38 National Foundation for Educational Research'),
(18946, 'https://ror.org/02xxmeg14', 'en', 1, 'https://ror.org/02xxmeg14 MyFace'),
(18947, 'https://ror.org/00ck9ex56', 'en', 1, 'https://ror.org/00ck9ex56 Malta Enterprise'),
(18948, 'https://ror.org/02gk90651', 'no_lang_code', 1, 'https://ror.org/02gk90651 Mobics (Greece)'),
(18949, 'https://ror.org/02r1ykk72', 'no_lang_code', 1, 'https://ror.org/02r1ykk72 Mobilaps (United States)'),
(18950, 'https://ror.org/01c983z55', 'no_lang_code', 1, 'https://ror.org/01c983z55 New World Medical (United States)'),
(18951, 'https://ror.org/03k3dgs02', 'no_lang_code', 1, 'https://ror.org/03k3dgs02 Orange (Belgium)'),
(18952, 'https://ror.org/01yf3k683', 'en', 1, 'https://ror.org/01yf3k683 New York City Fire Department'),
(18953, 'https://ror.org/001bj3k32', 'en', 1, 'https://ror.org/001bj3k32 Administration for Children''s Services'),
(18954, 'https://ror.org/048b34d51', 'en', 1, 'https://ror.org/048b34d51 National Hospital for Neurology and Neurosurgery'),
(18955, 'https://ror.org/04h6f0y45', 'no_lang_code', 1, 'https://ror.org/04h6f0y45 National Hyperbaric Centre'),
(18956, 'https://ror.org/02bf8nh75', 'no_lang_code', 1, 'https://ror.org/02bf8nh75 ModellTechnik Rapid Prototyping (Germany)'),
(18957, 'https://ror.org/04jjpme94', 'no_lang_code', 1, 'https://ror.org/04jjpme94 Meridian Bioscience (United States)'),
(18958, 'https://ror.org/02jy5b122', 'en', 1, 'https://ror.org/02jy5b122 Management and Development for Health'),
(18959, 'https://ror.org/0079mgn81', 'no_lang_code', 1, 'https://ror.org/0079mgn81 Modelon (Sweden)'),
(18960, 'https://ror.org/022ps9t53', 'en', 1, 'https://ror.org/022ps9t53 New York State Senate'),
(18961, 'https://ror.org/049f03n31', 'en', 1, 'https://ror.org/049f03n31 Meridian Community College'),
(18962, 'https://ror.org/055c5vt19', 'no_lang_code', 1, 'https://ror.org/055c5vt19 EnServe Group (United Kingdom)'),
(18963, 'https://ror.org/059b0jm33', 'no_lang_code', 1, 'https://ror.org/059b0jm33 Management Science Associates (United States)'),
(18964, 'https://ror.org/00wf4pt88', 'en', 1, 'https://ror.org/00wf4pt88 Management Sciences for Health'),
(18965, 'https://ror.org/046xprq08', 'no_lang_code', 1, 'https://ror.org/046xprq08 Management Support Technology (United States)'),
(18966, 'https://ror.org/04n76m431', 'no_lang_code', 1, 'https://ror.org/04n76m431 Meridian Medical Systems (United States)'),
(18967, 'https://ror.org/02f25xq68', 'no_lang_code', 1, 'https://ror.org/02f25xq68 Modern Water (United Kingdom)'),
(18968, 'https://ror.org/05r8m9m38', 'no_lang_code', 1, 'https://ror.org/05r8m9m38 Newbiotechnic (Spain)'),
(18969, 'https://ror.org/009axdy66', 'no_lang_code', 1, 'https://ror.org/009axdy66 Erka Group (Turkey)'),
(18970, 'https://ror.org/020gp5z38', 'en', 1, 'https://ror.org/020gp5z38 Newburgh Enlarged City School District'),
(18971, 'https://ror.org/02zb8tm77', 'en', 1, 'https://ror.org/02zb8tm77 Yosemite Community College District'),
(18972, 'https://ror.org/05qf4x681', 'en', 1, 'https://ror.org/05qf4x681 Manchester Digital Laboratory'),
(18973, 'https://ror.org/027x71w42', 'no_lang_code', 1, 'https://ror.org/027x71w42 Mandala Biosciences (United States)'),
(18974, 'https://ror.org/04c97xg15', 'no_lang_code', 1, 'https://ror.org/04c97xg15 Modular Robotics (United States)'),
(18975, 'https://ror.org/0266khk21', 'no_lang_code', 1, 'https://ror.org/0266khk21 Merlin Circuit Technology (United Kingdom)'),
(18976, 'https://ror.org/01rtq8t93', 'en', 1, 'https://ror.org/01rtq8t93 National Institute for Research and Development in Microtechnologies'),
(18977, 'https://ror.org/04240b022', 'no_lang_code', 1, 'https://ror.org/04240b022 Feonic Technology (United Kingdom)'),
(18978, 'https://ror.org/032cxyf89', 'no_lang_code', 1, 'https://ror.org/032cxyf89 Maniero Elettronica (Italy)'),
(18979, 'https://ror.org/009ng5f87', 'no_lang_code', 1, 'https://ror.org/009ng5f87 Modulex (Denmark)'),
(18980, 'https://ror.org/02dy89791', 'no_lang_code', 1, 'https://ror.org/02dy89791 Manifattura Italiana del Brembo (Italy)'),
(18981, 'https://ror.org/04syg1z63', 'en', 1, 'https://ror.org/04syg1z63 Maniilaq Association'),
(18982, 'https://ror.org/05spz0x25', 'en', 1, 'https://ror.org/05spz0x25 National Institute of Building Sciences'),
(18983, 'https://ror.org/01am32j78', 'no_lang_code', 1, 'https://ror.org/01am32j78 New Metals and Chemicals (United Kingdom)'),
(18984, 'https://ror.org/03vtyzs10', 'en', 1, 'https://ror.org/03vtyzs10 Mersey Care NHS Trust'),
(18985, 'https://ror.org/00pprbn54', 'no_lang_code', 1, 'https://ror.org/00pprbn54 Newomics (United States)'),
(18986, 'https://ror.org/02mp6w091', 'en', 1, 'https://ror.org/02mp6w091 NewOpera'),
(18987, 'https://ror.org/000qn5756', 'en', 1, 'https://ror.org/000qn5756 Newport News Public Schools'),
(18988, 'https://ror.org/01r9fck11', 'en', 1, 'https://ror.org/01r9fck11 Manitoba Environmental Industries Association'),
(18989, 'https://ror.org/01wbcv120', 'en', 1, 'https://ror.org/01wbcv120 Manchester Airport'),
(18990, 'https://ror.org/05r7wgd74', 'no_lang_code', 1, 'https://ror.org/05r7wgd74 Nexans (Germany)'),
(18991, 'https://ror.org/026a52219', 'no_lang_code', 1, 'https://ror.org/026a52219 Moixa (United Kingdom)'),
(18992, 'https://ror.org/035vgnr05', 'no_lang_code', 1, 'https://ror.org/035vgnr05 Nexcis (France)'),
(18993, 'https://ror.org/05azmgh93', 'en', 1, 'https://ror.org/05azmgh93 Merseytravel'),
(18994, 'https://ror.org/01sab8554', 'no_lang_code', 1, 'https://ror.org/01sab8554 Moixa Technology (United Kingdom)'),
(18995, 'https://ror.org/01gvkyp03', 'en', 1, 'https://ror.org/01gvkyp03 National Institute of Oceanography राष्ट्रीय समुद्र विज्ञान संस्थान தேசிய கடலியல் நிறுவனம் നാഷണൽ ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് ഓഷ്യാനോഗ്രഫി'),
(18996, 'https://ror.org/024am6q88', 'no_lang_code', 1, 'https://ror.org/024am6q88 HBW-Gubesch Kunststoff-Engineering (Germany)'),
(18997, 'https://ror.org/01b6bqq51', 'no_lang_code', 1, 'https://ror.org/01b6bqq51 Mesa Analytics & Computing (United States)'),
(18998, 'https://ror.org/02ch5h698', 'no_lang_code', 1, 'https://ror.org/02ch5h698 Nexor (United Kingdom)'),
(18999, 'https://ror.org/01ct8rs42', 'en', 1, 'https://ror.org/01ct8rs42 National Institute of Public Health វិទ្យាស្ថានជាតិសុខភាពសាធារណៈ'),
(19000, 'https://ror.org/01wchfr56', 'no_lang_code', 1, 'https://ror.org/01wchfr56 Mesolight (United States)'),
(19001, 'https://ror.org/00tww8m46', 'no_lang_code', 1, 'https://ror.org/00tww8m46 Next Ingegneria dei Sistemi (Italy)'),
(19002, 'https://ror.org/01zhpfy26', 'no_lang_code', 1, 'https://ror.org/01zhpfy26 Next Limit Technologies (Spain)'),
(19003, 'https://ror.org/03mzgz227', 'no_lang_code', 1, 'https://ror.org/03mzgz227 Meso (United States)'),
(19004, 'https://ror.org/04ecsax77', 'no_lang_code', 1, 'https://ror.org/04ecsax77 Message Pharmaceuticals (United States)'),
(19005, 'https://ror.org/053qp6k29', 'no_lang_code', 1, 'https://ror.org/053qp6k29 MAN (Denmark)'),
(19006, 'https://ror.org/05aq6yn88', 'en', 1, 'https://ror.org/05aq6yn88 Office of Extramural Research'),
(19007, 'https://ror.org/00dymss37', 'no_lang_code', 1, 'https://ror.org/00dymss37 Safran (United Kingdom)'),
(19008, 'https://ror.org/05wj4em96', 'no_lang_code', 1, 'https://ror.org/05wj4em96 NextInput (United States)'),
(19009, 'https://ror.org/02hsk2p49', 'en', 1, 'https://ror.org/02hsk2p49 United States Conference of Mayors'),
(19010, 'https://ror.org/027ng0s03', 'no_lang_code', 1, 'https://ror.org/027ng0s03 META Group'),
(19011, 'https://ror.org/00wb3z218', 'no_lang_code', 1, 'https://ror.org/00wb3z218 MammaCare (United States)'),
(19012, 'https://ror.org/01pp7vs05', 'no_lang_code', 1, 'https://ror.org/01pp7vs05 Nexture Consulting'),
(19013, 'https://ror.org/00mxv8r67', 'en', 1, 'https://ror.org/00mxv8r67 Latvijas Nacionālā bibliotēka National Library of Latvia'),
(19014, 'https://ror.org/04980c792', 'no_lang_code', 1, 'https://ror.org/04980c792 MOL Group (Hungary)'),
(19015, 'https://ror.org/008yv5115', 'no_lang_code', 1, 'https://ror.org/008yv5115 MetaSystem (Italy)'),
(19016, 'https://ror.org/02p9tsq18', 'en', 1, 'https://ror.org/02p9tsq18 Nexus Research'),
(19017, 'https://ror.org/02se5xj66', 'en', 1, 'https://ror.org/02se5xj66 National Medical Association'),
(19018, 'https://ror.org/02hrrdm75', 'en', 1, 'https://ror.org/02hrrdm75 Institut für Kooperationsmanagement und interdisziplinäre Forschung Nexus Institute for Cooperation Management and Interdisciplinary Research'),
(19019, 'https://ror.org/03jem4j71', 'no_lang_code', 1, 'https://ror.org/03jem4j71 Meta Vision Systems (United Kingdom)'),
(19020, 'https://ror.org/04qctfn73', 'no_lang_code', 1, 'https://ror.org/04qctfn73 Nexus Engineering (Bulgaria)'),
(19021, 'https://ror.org/01299qg41', 'en', 1, 'https://ror.org/01299qg41 Nez Perce Tribal Executive Committee'),
(19022, 'https://ror.org/00dksv941', 'no_lang_code', 1, 'https://ror.org/00dksv941 METabolic Explorer (France)'),
(19023, 'https://ror.org/0295q2p17', 'no_lang_code', 1, 'https://ror.org/0295q2p17 Metabolic Solutions Development Company (United States)'),
(19024, 'https://ror.org/0227qpa16', 'en', 1, 'https://ror.org/0227qpa16 NHS Blood and Transplant'),
(19025, 'https://ror.org/02vhqqh86', 'no_lang_code', 1, 'https://ror.org/02vhqqh86 Rio Tinto (United States)'),
(19026, 'https://ror.org/001xgg719', 'no_lang_code', 1, 'https://ror.org/001xgg719 Metal Matrix Cast Composites (United States)'),
(19027, 'https://ror.org/00m6mew50', 'hu', 1, 'https://ror.org/00m6mew50 Országos Gyógyintézeti Központ'),
(19028, 'https://ror.org/010vry420', 'en', 1, 'https://ror.org/010vry420 National Merit Scholarship Corporation'),
(19029, 'https://ror.org/024wfy702', 'no_lang_code', 1, 'https://ror.org/024wfy702 Niadyne Pharma (United States)'),
(19030, 'https://ror.org/03sj17n32', 'no_lang_code', 1, 'https://ror.org/03sj17n32 Molecular Innovations (United States)'),
(19031, 'https://ror.org/03tjw1547', 'en', 1, 'https://ror.org/03tjw1547 Innovate Niagara'),
(19032, 'https://ror.org/0393z2b10', 'en', 1, 'https://ror.org/0393z2b10 Institute of Fisheries and Aquaculture'),
(19033, 'https://ror.org/003kfm697', 'no_lang_code', 1, 'https://ror.org/003kfm697 Niagara Scientific Products (United States)'),
(19034, 'https://ror.org/00qvg6x21', 'en', 1, 'https://ror.org/00qvg6x21 Molecular Medicine Ireland'),
(19035, 'https://ror.org/04rtnbn65', 'no_lang_code', 1, 'https://ror.org/04rtnbn65 Molecular Networks (Germany)'),
(19036, 'https://ror.org/047vmzn25', 'no_lang_code', 1, 'https://ror.org/047vmzn25 Digital Equipment (Germany)'),
(19037, 'https://ror.org/05hpsdw90', 'no_lang_code', 1, 'https://ror.org/05hpsdw90 Nice Systems (Israel)'),
(19038, 'https://ror.org/04a4v0j95', 'en', 1, 'https://ror.org/04a4v0j95 National Museum of Natural History Национален природонаучен музей'),
(19039, 'https://ror.org/03gs3ft47', 'en', 1, 'https://ror.org/03gs3ft47 Science Museum Group'),
(19040, 'https://ror.org/01pe51140', 'no_lang_code', 1, 'https://ror.org/01pe51140 Molecular Sensing (United States)'),
(19041, 'https://ror.org/01stdbz34', 'en', 1, 'https://ror.org/01stdbz34 National Native American AIDS Prevention Center'),
(19042, 'https://ror.org/0345azg35', 'no_lang_code', 1, 'https://ror.org/0345azg35 Entellexi (Ireland)'),
(19043, 'https://ror.org/03w40bm70', 'no_lang_code', 1, 'https://ror.org/03w40bm70 Manufacturas Serviplast (Spain)'),
(19044, 'https://ror.org/03n0qh685', 'en', 1, 'https://ror.org/03n0qh685 National Patient Safety Agency'),
(19045, 'https://ror.org/01df6fw27', 'en', 1, 'https://ror.org/01df6fw27 National Patient Safety Foundation'),
(19046, 'https://ror.org/006s85q77', 'no_lang_code', 1, 'https://ror.org/006s85q77 Michelin (France)'),
(19047, 'https://ror.org/00bcwc583', 'en', 1, 'https://ror.org/00bcwc583 Molina Center for Energy and the Environment'),
(19048, 'https://ror.org/004hn8266', 'en', 1, 'https://ror.org/004hn8266 Danish National Police'),
(19049, 'https://ror.org/01gsm0s82', 'en', 1, 'https://ror.org/01gsm0s82 National Postdoctoral Association'),
(19050, 'https://ror.org/01t47ze65', 'no_lang_code', 1, 'https://ror.org/01t47ze65 Manus Bio (United States)'),
(19051, 'https://ror.org/05dnz5861', 'no_lang_code', 1, 'https://ror.org/05dnz5861 Metalografica (Spain)'),
(19052, 'https://ror.org/00g0b5e28', 'no_lang_code', 1, 'https://ror.org/00g0b5e28 Engie (United Kingdom)'),
(19053, 'https://ror.org/01ngsex56', 'no_lang_code', 1, 'https://ror.org/01ngsex56 Mologic (United Kingdom)'),
(19054, 'https://ror.org/007gsak37', 'en', 1, 'https://ror.org/007gsak37 National Public Health Information Coalition'),
(19055, 'https://ror.org/034taa614', 'no_lang_code', 1, 'https://ror.org/034taa614 MetaSensing (Netherlands)'),
(19056, 'https://ror.org/03w52sy75', 'no_lang_code', 1, 'https://ror.org/03w52sy75 Moma (Italy)'),
(19057, 'https://ror.org/00yfj3947', 'no_lang_code', 1, 'https://ror.org/00yfj3947 Momatec (Germany)'),
(19058, 'https://ror.org/04fbzsy15', 'no_lang_code', 1, 'https://ror.org/04fbzsy15 Manus Neurodynamica (United Kingdom)'),
(19059, 'https://ror.org/05yede386', 'no_lang_code', 1, 'https://ror.org/05yede386 Manz (Germany)'),
(19060, 'https://ror.org/012mfm969', 'no_lang_code', 1, 'https://ror.org/012mfm969 NIL Technology (Denmark)'),
(19061, 'https://ror.org/03t7ag653', 'ro', 1, 'https://ror.org/03t7ag653 Institutul National de Cercetare Dezvoltare pentru Tehnologii Criogenice si Izotopice'),
(19062, 'https://ror.org/05py7h914', 'no_lang_code', 1, 'https://ror.org/05py7h914 Nimbus (Italy)'),
(19063, 'https://ror.org/00zc7cw49', 'no_lang_code', 1, 'https://ror.org/00zc7cw49 Momentum (United Kingdom)'),
(19064, 'https://ror.org/00158bh81', 'no_lang_code', 1, 'https://ror.org/00158bh81 Monarch Media (United States)'),
(19065, 'https://ror.org/05q2fkx40', 'no_lang_code', 1, 'https://ror.org/05q2fkx40 Mondeca (France)'),
(19066, 'https://ror.org/05y8ejc62', 'no_lang_code', 1, 'https://ror.org/05y8ejc62 Mellon Technologies (Greece)'),
(19067, 'https://ror.org/00mt2q647', 'no_lang_code', 1, 'https://ror.org/00mt2q647 Nimesis Technology (France)'),
(19068, 'https://ror.org/01kpbz654', 'en', 1, 'https://ror.org/01kpbz654 National School Boards Association'),
(19069, 'https://ror.org/0119z9797', 'no_lang_code', 1, 'https://ror.org/0119z9797 Cybernet Systems Corporation (Canada)'),
(19070, 'https://ror.org/051mkpw87', 'en', 1, 'https://ror.org/051mkpw87 Nipomo Health Center'),
(19071, 'https://ror.org/02r42y861', 'no_lang_code', 1, 'https://ror.org/02r42y861 Monition (United Kingdom)'),
(19072, 'https://ror.org/04eg77e50', 'no_lang_code', 1, 'https://ror.org/04eg77e50 Texas Instruments (United Kingdom)'),
(19073, 'https://ror.org/035e3w906', 'no_lang_code', 1, 'https://ror.org/035e3w906 Mapper Lithography (Netherlands)'),
(19074, 'https://ror.org/00rdvc274', 'no_lang_code', 1, 'https://ror.org/00rdvc274 Metec (Germany)'),
(19075, 'https://ror.org/02abn3h81', 'en', 1, 'https://ror.org/02abn3h81 National Society of Black Physicists'),
(19076, 'https://ror.org/01hpjfm62', 'en', 1, 'https://ror.org/01hpjfm62 National Society of Professional Engineers'),
(19077, 'https://ror.org/00g56d382', 'en', 1, 'https://ror.org/00g56d382 Metec Innovation Consulting'),
(19078, 'https://ror.org/037mdcp74', 'no_lang_code', 1, 'https://ror.org/037mdcp74 NIS (United Kingdom)'),
(19079, 'https://ror.org/004ckc033', 'en', 1, 'https://ror.org/004ckc033 National Stroke Foundation'),
(19080, 'https://ror.org/019kdps70', 'no_lang_code', 1, 'https://ror.org/019kdps70 Marben (France)'),
(19081, 'https://ror.org/02q3acz97', 'no_lang_code', 1, 'https://ror.org/02q3acz97 Materialise (Germany)'),
(19082, 'https://ror.org/005430417', 'no_lang_code', 1, 'https://ror.org/005430417 Arqiva (United Kingdom)'),
(19083, 'https://ror.org/01ekj9t27', 'no_lang_code', 1, 'https://ror.org/01ekj9t27 Nissan (Switzerland)'),
(19084, 'https://ror.org/009e19j97', 'no_lang_code', 1, 'https://ror.org/009e19j97 Nissan (United Kingdom)'),
(19085, 'https://ror.org/02bftc014', 'no_lang_code', 1, 'https://ror.org/02bftc014 Audiprel (Spain)'),
(19086, 'https://ror.org/027m8k660', 'en', 1, 'https://ror.org/027m8k660 Monroe County Department of Human Services'),
(19087, 'https://ror.org/048e56r52', 'no_lang_code', 1, 'https://ror.org/048e56r52 NexusAB (United Kingdom)'),
(19088, 'https://ror.org/0441qm375', 'no_lang_code', 1, 'https://ror.org/0441qm375 Meteotest (Switzerland)'),
(19089, 'https://ror.org/02440j369', 'no_lang_code', 1, 'https://ror.org/02440j369 NiTech Solutions (United Kingdom)'),
(19090, 'https://ror.org/04zqv4n59', 'no_lang_code', 1, 'https://ror.org/04zqv4n59 MetraLabs (Germany)'),
(19091, 'https://ror.org/024nrkt38', 'no_lang_code', 1, 'https://ror.org/024nrkt38 Diebold Nixdorf (Germany)'),
(19092, 'https://ror.org/02nbhy609', 'en', 1, 'https://ror.org/02nbhy609 Monroe County Department of Public Health'),
(19093, 'https://ror.org/026x43f05', 'no_lang_code', 1, 'https://ror.org/026x43f05 NKE Instrumentation (France)'),
(19094, 'https://ror.org/057stj941', 'en', 1, 'https://ror.org/057stj941 National Trust for Scotland'),
(19095, 'https://ror.org/00mbjzh15', 'no_lang_code', 1, 'https://ror.org/00mbjzh15 Montana Molecular (United States)'),
(19096, 'https://ror.org/0231kjt76', 'en', 1, 'https://ror.org/0231kjt76 Montana Office of Public Instruction'),
(19097, 'https://ror.org/0466m5p44', 'no_lang_code', 1, 'https://ror.org/0466m5p44 ACOEM (France)'),
(19098, 'https://ror.org/02c3ywg26', 'no_lang_code', 1, 'https://ror.org/02c3ywg26 Edison (Italy)'),
(19099, 'https://ror.org/02qmp6f83', 'en', 1, 'https://ror.org/02qmp6f83 Office of the Bronx District Attorney'),
(19100, 'https://ror.org/01yt8p082', 'no_lang_code', 1, 'https://ror.org/01yt8p082 Nobatek'),
(19101, 'https://ror.org/04rqchc36', 'en', 1, 'https://ror.org/04rqchc36 Native Health'),
(19102, 'https://ror.org/01902pd86', 'en', 1, 'https://ror.org/01902pd86 Manchester Digital Development Agency'),
(19103, 'https://ror.org/00qzyfa72', 'en', 1, 'https://ror.org/00qzyfa72 Native American Management Services'),
(19104, 'https://ror.org/04dabmn58', 'en', 1, 'https://ror.org/04dabmn58 Monterey Institute for Research in Astronomy'),
(19105, 'https://ror.org/05w9m5a46', 'en', 1, 'https://ror.org/05w9m5a46 National Blood Clot Alliance'),
(19106, 'https://ror.org/03jf8k683', 'en', 1, 'https://ror.org/03jf8k683 Monterey Peninsula Unified School District'),
(19107, 'https://ror.org/03syqx014', 'no_lang_code', 1, 'https://ror.org/03syqx014 Marie Curie Association'),
(19108, 'https://ror.org/0473emp75', 'no_lang_code', 1, 'https://ror.org/0473emp75 Moor Instruments (United Kingdom)'),
(19109, 'https://ror.org/059cxs985', 'no_lang_code', 1, 'https://ror.org/059cxs985 MariLim (Germany)'),
(19110, 'https://ror.org/03zaddr67', 'en', 1, 'https://ror.org/03zaddr67 Moorfields Eye Hospital NHS Foundation Trust'),
(19111, 'https://ror.org/006tpsn23', 'en', 1, 'https://ror.org/006tpsn23 College of Marin'),
(19112, 'https://ror.org/00ms2t790', 'en', 1, 'https://ror.org/00ms2t790 Moorpark College'),
(19113, 'https://ror.org/0106ne629', 'no_lang_code', 1, 'https://ror.org/0106ne629 Metronix (Germany)'),
(19114, 'https://ror.org/056kd2x19', 'en', 1, 'https://ror.org/056kd2x19 Moors for the Future Partnership'),
(19115, 'https://ror.org/05thgyd14', 'en', 1, 'https://ror.org/05thgyd14 Metropolitan Interdenominational Church'),
(19116, 'https://ror.org/047t0bc17', 'no_lang_code', 1, 'https://ror.org/047t0bc17 Moravek Biochemicals (United States)'),
(19117, 'https://ror.org/015yk4694', 'no_lang_code', 1, 'https://ror.org/015yk4694 Noesis Solutions (Belgium)'),
(19118, 'https://ror.org/04fg9yv80', 'en', 1, 'https://ror.org/04fg9yv80 Nature Conservancy of Canada'),
(19119, 'https://ror.org/00b787347', 'de', 1, 'https://ror.org/00b787347 Naturland'),
(19120, 'https://ror.org/051ewjv50', 'no_lang_code', 1, 'https://ror.org/051ewjv50 Nohms Technologies (United States)'),
(19121, 'https://ror.org/007n30b05', 'en', 1, 'https://ror.org/007n30b05 MPC Corporation'),
(19122, 'https://ror.org/05qqnvx16', 'no_lang_code', 1, 'https://ror.org/05qqnvx16 Metropolitana Milanese (Italy)'),
(19123, 'https://ror.org/01vspgn73', 'no_lang_code', 1, 'https://ror.org/01vspgn73 Morgan Innovation and Technology (United Kingdom)'),
(19124, 'https://ror.org/0423djy10', 'no_lang_code', 1, 'https://ror.org/0423djy10 Naturstoff-Technik (Germany)'),
(19125, 'https://ror.org/00zpf0626', 'no_lang_code', 1, 'https://ror.org/00zpf0626 Nokia (United Kingdom)'),
(19126, 'https://ror.org/00v8f0m76', 'no_lang_code', 1, 'https://ror.org/00v8f0m76 Accenture (Italy)'),
(19127, 'https://ror.org/01f0k6s82', 'en', 1, 'https://ror.org/01f0k6s82 Morgantown High School'),
(19128, 'https://ror.org/02b2dcj06', 'no_lang_code', 1, 'https://ror.org/02b2dcj06 Nokian Renkaat Nokian Tyres (Finland)'),
(19129, 'https://ror.org/02ehsaf86', 'no_lang_code', 1, 'https://ror.org/02ehsaf86 Mark Group (United Kingdom)'),
(19130, 'https://ror.org/01sde3g80', 'no_lang_code', 1, 'https://ror.org/01sde3g80 Nomad Tech (Portugal)'),
(19131, 'https://ror.org/00xxtbb12', 'no_lang_code', 1, 'https://ror.org/00xxtbb12 Naval Architecture Progress (Greece)'),
(19132, 'https://ror.org/039gx9203', 'en', 1, 'https://ror.org/039gx9203 Navarro College'),
(19133, 'https://ror.org/04qhjq449', 'no_lang_code', 1, 'https://ror.org/04qhjq449 Nomisma (Italy)'),
(19134, 'https://ror.org/04z6mea27', 'no_lang_code', 1, 'https://ror.org/04z6mea27 Mexel (France)'),
(19135, 'https://ror.org/04j5b4618', 'no_lang_code', 1, 'https://ror.org/04j5b4618 Navidea Biopharmaceuticals (United States)'),
(19136, 'https://ror.org/04727qm97', 'no_lang_code', 1, 'https://ror.org/04727qm97 Nomor Research (Germany)'),
(19137, 'https://ror.org/053tj6993', 'no_lang_code', 1, 'https://ror.org/053tj6993 Schauenburg (United Kingdom)'),
(19138, 'https://ror.org/01gfmr708', 'no_lang_code', 1, 'https://ror.org/01gfmr708 MHG Systems (Finland)'),
(19139, 'https://ror.org/03kw02y34', 'no_lang_code', 1, 'https://ror.org/03kw02y34 Navimetric (Spain)'),
(19140, 'https://ror.org/02k52c211', 'en', 1, 'https://ror.org/02k52c211 Marketing Science Institute'),
(19141, 'https://ror.org/045zca936', 'no_lang_code', 1, 'https://ror.org/045zca936 Mosaic Films (United Kingdom)'),
(19142, 'https://ror.org/022nmct36', 'en', 1, 'https://ror.org/022nmct36 Michigan Coalition to End Domestic and Sexual Violence'),
(19143, 'https://ror.org/03f6phn52', 'no_lang_code', 1, 'https://ror.org/03f6phn52 Compañía Mexicana de Radiología (United States)'),
(19144, 'https://ror.org/008ggzb67', 'no_lang_code', 1, 'https://ror.org/008ggzb67 Navtech Radar (United Kingdom)'),
(19145, 'https://ror.org/00fv12b26', 'en', 1, 'https://ror.org/00fv12b26 Nazareth Hospital'),
(19146, 'https://ror.org/042a0mn98', 'no_lang_code', 1, 'https://ror.org/042a0mn98 Essent (Netherlands)'),
(19147, 'https://ror.org/05k5g2d46', 'no_lang_code', 1, 'https://ror.org/05k5g2d46 NBE Tech (United States)'),
(19148, 'https://ror.org/04p6k7180', 'no_lang_code', 1, 'https://ror.org/04p6k7180 Marksman Cellject (Canada)'),
(19149, 'https://ror.org/01qgxr245', 'no_lang_code', 1, 'https://ror.org/01qgxr245 NCR (United Kingdom)'),
(19150, 'https://ror.org/05f6vdg41', 'no_lang_code', 1, 'https://ror.org/05f6vdg41 Noray Bioinformatics (Spain)'),
(19151, 'https://ror.org/021xsee05', 'no_lang_code', 1, 'https://ror.org/021xsee05 Norac Pharma (United States)'),
(19152, 'https://ror.org/05884e364', 'no_lang_code', 1, 'https://ror.org/05884e364 nsm Norbert Schläfli (Switzerland)'),
(19153, 'https://ror.org/04vf94f14', 'no_lang_code', 1, 'https://ror.org/04vf94f14 Northern Lipids (Canada)'),
(19154, 'https://ror.org/02hf6mx60', 'en', 1, 'https://ror.org/02hf6mx60 National Research University of Electronic Technology Национальный исследовательский университет МИЭТ'),
(19155, 'https://ror.org/056s99406', 'no_lang_code', 1, 'https://ror.org/056s99406 Norcada (Canada)'),
(19156, 'https://ror.org/00mcdb425', 'no_lang_code', 1, 'https://ror.org/00mcdb425 HeidelbergCement (Norway)'),
(19157, 'https://ror.org/05gqfmc91', 'en', 1, 'https://ror.org/05gqfmc91 Nebraska Department of Agriculture'),
(19158, 'https://ror.org/02jpv5m37', 'no_lang_code', 1, 'https://ror.org/02jpv5m37 NorChip (Norway)'),
(19159, 'https://ror.org/04v3zn617', 'no_lang_code', 1, 'https://ror.org/04v3zn617 Fungisem (Spain)'),
(19160, 'https://ror.org/02agt5758', 'no_lang_code', 1, 'https://ror.org/02agt5758 Northern Technologies International (United States)'),
(19161, 'https://ror.org/03xyda961', 'en', 1, 'https://ror.org/03xyda961 Northland Pioneer College'),
(19162, 'https://ror.org/02hevb853', 'en', 1, 'https://ror.org/02hevb853 Nebraska Educational Telecommunications'),
(19163, 'https://ror.org/00hc1y308', 'no_lang_code', 1, 'https://ror.org/00hc1y308 VivoSight (United Kingdom)'),
(19164, 'https://ror.org/01c3gx397', 'en', 1, 'https://ror.org/01c3gx397 Nederlands Jeugdinstituut Netherlands Youth Institute'),
(19165, 'https://ror.org/00ge7mp65', 'en', 1, 'https://ror.org/00ge7mp65 Thatcham Research'),
(19166, 'https://ror.org/01vw04q95', 'no_lang_code', 1, 'https://ror.org/01vw04q95 Motor Oil (Greece)'),
(19167, 'https://ror.org/01gddze50', 'en', 1, 'https://ror.org/01gddze50 Central Michigan University Research Corporation'),
(19168, 'https://ror.org/01tm8wm67', 'no_lang_code', 1, 'https://ror.org/01tm8wm67 Motorola Solutions (Israel)'),
(19169, 'https://ror.org/052e8ag96', 'en', 1, 'https://ror.org/052e8ag96 Northwest Florida State College'),
(19170, 'https://ror.org/04f0w3t91', 'no_lang_code', 1, 'https://ror.org/04f0w3t91 Vestas (Netherlands)'),
(19171, 'https://ror.org/01n9x4465', 'no_lang_code', 1, 'https://ror.org/01n9x4465 Nordeconsult (Sweden)'),
(19172, 'https://ror.org/00nx2d878', 'en', 1, 'https://ror.org/00nx2d878 Mount Washington Observatory'),
(19173, 'https://ror.org/05esb3126', 'en', 1, 'https://ror.org/05esb3126 Mountain Comprehensive Care Centre'),
(19174, 'https://ror.org/031tysd23', 'no_lang_code', 1, 'https://ror.org/031tysd23 Coherent (United States)'),
(19175, 'https://ror.org/03nr54n68', 'no_lang_code', 1, 'https://ror.org/03nr54n68 Nordic Bioscience (Denmark)'),
(19176, 'https://ror.org/03jafxc29', 'no_lang_code', 1, 'https://ror.org/03jafxc29 Micro Photon Devices'),
(19177, 'https://ror.org/04pvywd96', 'no_lang_code', 1, 'https://ror.org/04pvywd96 Microsystems (United Kingdom)'),
(19178, 'https://ror.org/03kfrqx27', 'no_lang_code', 1, 'https://ror.org/03kfrqx27 Nemaura Pharma (United Kingdom)'),
(19179, 'https://ror.org/045na4q63', 'no_lang_code', 1, 'https://ror.org/045na4q63 Nemetschek (Germany)'),
(19180, 'https://ror.org/02svrcw68', 'no_lang_code', 1, 'https://ror.org/02svrcw68 Micro Systems Engineering (Germany)'),
(19181, 'https://ror.org/03pz77m13', 'no_lang_code', 1, 'https://ror.org/03pz77m13 Nemetschek Allplan (Slovakia)'),
(19182, 'https://ror.org/03jvxy171', 'no_lang_code', 1, 'https://ror.org/03jvxy171 Micro Optics Technologies (United States)'),
(19183, 'https://ror.org/01ppn2r43', 'no_lang_code', 1, 'https://ror.org/01ppn2r43 Nemko (Norway) Norges Elektriske Materiellkontroll'),
(19184, 'https://ror.org/04es4vf69', 'no_lang_code', 1, 'https://ror.org/04es4vf69 Nemucore Medical Innovations (United States)'),
(19185, 'https://ror.org/04dkmxz35', 'no_lang_code', 1, 'https://ror.org/04dkmxz35 NorthWestNET'),
(19186, 'https://ror.org/04yhwpc24', 'no_lang_code', 1, 'https://ror.org/04yhwpc24 Microbial ID (United States)'),
(19187, 'https://ror.org/04hsnt894', 'no_lang_code', 1, 'https://ror.org/04hsnt894 Microbial Insights (United States)'),
(19188, 'https://ror.org/010gr4v10', 'no_lang_code', 1, 'https://ror.org/010gr4v10 Nenuphar (France)'),
(19189, 'https://ror.org/014ydfp77', 'no_lang_code', 1, 'https://ror.org/014ydfp77 Neoceram (Belgium)'),
(19190, 'https://ror.org/01p542m48', 'no_lang_code', 1, 'https://ror.org/01p542m48 NeoCytex Biopharma (United States)'),
(19191, 'https://ror.org/04de4xn59', 'no_lang_code', 1, 'https://ror.org/04de4xn59 Neogen (United States)'),
(19192, 'https://ror.org/01hy5h819', 'no_lang_code', 1, 'https://ror.org/01hy5h819 First Sensor (Canada)'),
(19193, 'https://ror.org/03zvhsj76', 'no_lang_code', 1, 'https://ror.org/03zvhsj76 Microcosm (United States)'),
(19194, 'https://ror.org/048mdnr65', 'no_lang_code', 1, 'https://ror.org/048mdnr65 Nortis (United States)'),
(19195, 'https://ror.org/034fwy907', 'no_lang_code', 1, 'https://ror.org/034fwy907 Mountain View Clinical Research'),
(19196, 'https://ror.org/01cqxqw57', 'no_lang_code', 1, 'https://ror.org/01cqxqw57 Norton Aluminium (United Kingdom)'),
(19197, 'https://ror.org/05y0ts542', 'no_lang_code', 1, 'https://ror.org/05y0ts542 Norton Cast Products (United Kingdom)'),
(19198, 'https://ror.org/053x1t631', 'no_lang_code', 1, 'https://ror.org/053x1t631 Neotherix (United Kingdom)'),
(19199, 'https://ror.org/05q1nwf35', 'sv', 1, 'https://ror.org/05q1nwf35 NordGen'),
(19200, 'https://ror.org/002wz8j95', 'no_lang_code', 1, 'https://ror.org/002wz8j95 Norton Hydraulics (United Kingdom)'),
(19201, 'https://ror.org/00sn5j281', 'no_lang_code', 1, 'https://ror.org/00sn5j281 Move Entwicklungs Infrastruktur und Service (Germany)'),
(19202, 'https://ror.org/03y7n6m87', 'en', 1, 'https://ror.org/03y7n6m87 Norton Sound Health Corporation'),
(19203, 'https://ror.org/02y7tka90', 'no_lang_code', 1, 'https://ror.org/02y7tka90 MicroDiscovery (Germany)'),
(19204, 'https://ror.org/039pz2z06', 'en', 1, 'https://ror.org/039pz2z06 Norwalk Community College'),
(19205, 'https://ror.org/003srnj92', 'no_lang_code', 1, 'https://ror.org/003srnj92 MicroDish (Netherlands)'),
(19206, 'https://ror.org/0295ktr04', 'no_lang_code', 1, 'https://ror.org/0295ktr04 Nordic Transport Development'),
(19207, 'https://ror.org/01dx3d866', 'no_lang_code', 1, 'https://ror.org/01dx3d866 Nesch (United States)'),
(19208, 'https://ror.org/04f6j3x86', 'en', 1, 'https://ror.org/04f6j3x86 Nordic Innovation'),
(19209, 'https://ror.org/02rqc5533', 'en', 1, 'https://ror.org/02rqc5533 Nesta'),
(19210, 'https://ror.org/01keak954', 'no_lang_code', 1, 'https://ror.org/01keak954 Microelectronica (Romania)'),
(19211, 'https://ror.org/01rd9jd59', 'en', 1, 'https://ror.org/01rd9jd59 MRB Forschungszentrum für Magnet-Resonanz-Bayern MRB Research Center for Magnetic Resonance Bavaria'),
(19212, 'https://ror.org/03zj6v943', 'en', 1, 'https://ror.org/03zj6v943 Norfolk County Council'),
(19213, 'https://ror.org/05j75hk11', 'no_lang_code', 1, 'https://ror.org/05j75hk11 Masermic (Spain)'),
(19214, 'https://ror.org/04v9sac23', 'no_lang_code', 1, 'https://ror.org/04v9sac23 Microflown Technologies (Netherlands)'),
(19215, 'https://ror.org/037fxwm47', 'no_lang_code', 1, 'https://ror.org/037fxwm47 Iron Mountain (United States)'),
(19216, 'https://ror.org/02wcat891', 'no_lang_code', 1, 'https://ror.org/02wcat891 MRC Holland (Netherlands)'),
(19217, 'https://ror.org/00evp8v92', 'no_lang_code', 1, 'https://ror.org/00evp8v92 Lab21 (United Kingdom)'),
(19218, 'https://ror.org/01kse2t29', 'no_lang_code', 1, 'https://ror.org/01kse2t29 Microgen (United States)'),
(19219, 'https://ror.org/00knakc29', 'no_lang_code', 1, 'https://ror.org/00knakc29 Nestlé (United Kingdom)'),
(19220, 'https://ror.org/0086t2w58', 'no_lang_code', 1, 'https://ror.org/0086t2w58 Dustin (Norway)'),
(19221, 'https://ror.org/02y600b55', 'no_lang_code', 1, 'https://ror.org/02y600b55 Microlab Devices (United Kingdom)'),
(19222, 'https://ror.org/00rnxjt19', 'no_lang_code', 1, 'https://ror.org/00rnxjt19 Federation of Norwegian Industries Norsk Industri (Norway)'),
(19223, 'https://ror.org/01e6b1w57', 'no_lang_code', 1, 'https://ror.org/01e6b1w57 MicroLS (Germany)'),
(19224, 'https://ror.org/04ymsjg74', 'no_lang_code', 1, 'https://ror.org/04ymsjg74 MRK Systeme (Germany)'),
(19225, 'https://ror.org/055x1j102', 'en', 1, 'https://ror.org/055x1j102 Norwegian Shipowners'' Association'),
(19226, 'https://ror.org/02y6w3696', 'en', 1, 'https://ror.org/02y6w3696 Norwegian Seafood Association'),
(19227, 'https://ror.org/00eqfbw40', 'no_lang_code', 1, 'https://ror.org/00eqfbw40 Microsoft (Portugal)'),
(19228, 'https://ror.org/02syy7986', 'en', 1, 'https://ror.org/02syy7986 Norwegian Water Resources and Energy Directorate'),
(19229, 'https://ror.org/01avsfs85', 'no_lang_code', 1, 'https://ror.org/01avsfs85 Micromath (United States)'),
(19230, 'https://ror.org/00sag0k61', 'en', 1, 'https://ror.org/00sag0k61 North American Association for Environmental Education'),
(19231, 'https://ror.org/0523w1957', 'no_lang_code', 1, 'https://ror.org/0523w1957 Micromatica (Italy)'),
(19232, 'https://ror.org/00h642n86', 'no_lang_code', 1, 'https://ror.org/00h642n86 Noterik (Netherlands)'),
(19233, 'https://ror.org/01gxw4h97', 'en', 1, 'https://ror.org/01gxw4h97 Nottingham Community Housing Association'),
(19234, 'https://ror.org/034g8wg77', 'no_lang_code', 1, 'https://ror.org/034g8wg77 Vandurit (Italy)'),
(19235, 'https://ror.org/01mhzw324', 'no_lang_code', 1, 'https://ror.org/01mhzw324 Nottingham Express Transit (United Kingdom)'),
(19236, 'https://ror.org/018cwj358', 'no_lang_code', 1, 'https://ror.org/018cwj358 Micromega Dynamics (Belgium)');
INSERT INTO `rors` VALUES
(19237, 'https://ror.org/038tkhb28', 'no_lang_code', 1, 'https://ror.org/038tkhb28 MicronOptics (United States)'),
(19238, 'https://ror.org/02ff3pb56', 'no_lang_code', 1, 'https://ror.org/02ff3pb56 NetSmart (Greece)'),
(19239, 'https://ror.org/04avwdy85', 'en', 1, 'https://ror.org/04avwdy85 Nottinghamshire County Council'),
(19240, 'https://ror.org/02v996210', 'no_lang_code', 1, 'https://ror.org/02v996210 NetUnion (Switzerland)'),
(19241, 'https://ror.org/01wnj5m91', 'no_lang_code', 1, 'https://ror.org/01wnj5m91 Bonnier Technology Group (Germany)'),
(19242, 'https://ror.org/02day0j61', 'no_lang_code', 1, 'https://ror.org/02day0j61 Nova Medical (United States)'),
(19243, 'https://ror.org/00pbka429', 'no_lang_code', 1, 'https://ror.org/00pbka429 NETvisor (Hungary)'),
(19244, 'https://ror.org/015snna87', 'no_lang_code', 1, 'https://ror.org/015snna87 NOVA Scientific (United States)'),
(19245, 'https://ror.org/01ry0d141', 'no_lang_code', 1, 'https://ror.org/01ry0d141 Müller BBM (Germany)'),
(19246, 'https://ror.org/04s1zn642', 'no_lang_code', 1, 'https://ror.org/04s1zn642 Notox (Denmark)'),
(19247, 'https://ror.org/047dr9v36', 'en', 1, 'https://ror.org/047dr9v36 Network Human Services'),
(19248, 'https://ror.org/040tj8752', 'no_lang_code', 1, 'https://ror.org/040tj8752 Multicert (Portugal)'),
(19249, 'https://ror.org/00r1erk38', 'no_lang_code', 1, 'https://ror.org/00r1erk38 MultiD Analyses (Sweden)'),
(19250, 'https://ror.org/04peg0q52', 'en', 1, 'https://ror.org/04peg0q52 Network of Aquaculture Centres in Asia-Pacific'),
(19251, 'https://ror.org/00cxaqd06', 'no_lang_code', 1, 'https://ror.org/00cxaqd06 Exceet Group (Germany)'),
(19252, 'https://ror.org/050e4js82', 'no_lang_code', 1, 'https://ror.org/050e4js82 Neumedicines (United States)'),
(19253, 'https://ror.org/03hyrhe39', 'no_lang_code', 1, 'https://ror.org/03hyrhe39 Novacta (United Kingdom)'),
(19254, 'https://ror.org/00pmf8m46', 'no_lang_code', 1, 'https://ror.org/00pmf8m46 Neuro Kinetics (United States)'),
(19255, 'https://ror.org/02wmz0223', 'no_lang_code', 1, 'https://ror.org/02wmz0223 Micropore Technologies (United Kingdom)'),
(19256, 'https://ror.org/004wx9438', 'no_lang_code', 1, 'https://ror.org/004wx9438 Micropyretics Heater International (United States)'),
(19257, 'https://ror.org/018d33y89', 'en', 1, 'https://ror.org/018d33y89 Neurobehavioral Systems'),
(19258, 'https://ror.org/05m25x550', 'no_lang_code', 1, 'https://ror.org/05m25x550 Microsens (Switzerland)'),
(19259, 'https://ror.org/05xnzvx23', 'no_lang_code', 1, 'https://ror.org/05xnzvx23 Multimatic ILSA (Germany)'),
(19260, 'https://ror.org/04s4k6s39', 'no_lang_code', 1, 'https://ror.org/04s4k6s39 Samsung (Germany)'),
(19261, 'https://ror.org/00h4x2v81', 'no_lang_code', 1, 'https://ror.org/00h4x2v81 Netivei Israel (Israel) החברה הלאומית לדרכים בישראל'),
(19262, 'https://ror.org/05xjh4a29', 'no_lang_code', 1, 'https://ror.org/05xjh4a29 Mine Safety Appliances (United States)'),
(19263, 'https://ror.org/01znzmx53', 'no_lang_code', 1, 'https://ror.org/01znzmx53 Multimeric Biotherapeutics (United States)'),
(19264, 'https://ror.org/03wwn0z54', 'no_lang_code', 1, 'https://ror.org/03wwn0z54 NovaMechanics (Cyprus)'),
(19265, 'https://ror.org/00m4w5c43', 'no_lang_code', 1, 'https://ror.org/00m4w5c43 Novarials (United States)'),
(19266, 'https://ror.org/05afs3z13', 'no_lang_code', 1, 'https://ror.org/05afs3z13 Novartis (Canada)'),
(19267, 'https://ror.org/00x4mmh13', 'no_lang_code', 1, 'https://ror.org/00x4mmh13 Nonwovens Innovation & Research Institute'),
(19268, 'https://ror.org/016r60a96', 'no_lang_code', 1, 'https://ror.org/016r60a96 NOVASiC (France)'),
(19269, 'https://ror.org/047dmk096', 'en', 1, 'https://ror.org/047dmk096 Metro Wellness and Community Centers'),
(19270, 'https://ror.org/048j6y202', 'no_lang_code', 1, 'https://ror.org/048j6y202 Novatea (Italy)'),
(19271, 'https://ror.org/03pge2g16', 'no_lang_code', 1, 'https://ror.org/03pge2g16 NovAtel (Canada)'),
(19272, 'https://ror.org/027x7jn80', 'no_lang_code', 1, 'https://ror.org/027x7jn80 NeuroSearch (Denmark)'),
(19273, 'https://ror.org/01k42ef11', 'en', 1, 'https://ror.org/01k42ef11 Department of County Human Services'),
(19274, 'https://ror.org/00n7se427', 'no_lang_code', 1, 'https://ror.org/00n7se427 NeuroSigma (United States)'),
(19275, 'https://ror.org/05qj4gz58', 'no_lang_code', 1, 'https://ror.org/05qj4gz58 MicroSurfaces (United States)'),
(19276, 'https://ror.org/03a17f132', 'no_lang_code', 1, 'https://ror.org/03a17f132 Light Chain Bioscience (Switzerland)'),
(19277, 'https://ror.org/00b6drk25', 'en', 1, 'https://ror.org/00b6drk25 Government Finance Officers Association'),
(19278, 'https://ror.org/014gamn09', 'no_lang_code', 1, 'https://ror.org/014gamn09 Novomer (United States)'),
(19279, 'https://ror.org/02eney694', 'en', 1, 'https://ror.org/02eney694 Nevada PEP'),
(19280, 'https://ror.org/030zrse19', 'en', 1, 'https://ror.org/030zrse19 New and Renewable Energy Authority'),
(19281, 'https://ror.org/03etyp213', 'no_lang_code', 1, 'https://ror.org/03etyp213 Municipality of Athens Development Agency'),
(19282, 'https://ror.org/01ajhw692', 'no_lang_code', 1, 'https://ror.org/01ajhw692 NP Photonics (United States)'),
(19283, 'https://ror.org/01r49jb64', 'no_lang_code', 1, 'https://ror.org/01r49jb64 MicroTEC (Germany)'),
(19284, 'https://ror.org/059aewc73', 'en', 1, 'https://ror.org/059aewc73 New England College'),
(19285, 'https://ror.org/03hhk3369', 'fr', 1, 'https://ror.org/03hhk3369 Armand Frappier Museum'),
(19286, 'https://ror.org/038s37067', 'pt', 1, 'https://ror.org/038s37067 Museu de Arte Pré-Histórica de Mação'),
(19287, 'https://ror.org/00dheky92', 'en', 1, 'https://ror.org/00dheky92 New England Institute of Addiction Studies'),
(19288, 'https://ror.org/008jpgg46', 'en', 1, 'https://ror.org/008jpgg46 New England Wild Flower Society'),
(19289, 'https://ror.org/002p5mx82', 'no_lang_code', 1, 'https://ror.org/002p5mx82 Microtest (United Kingdom)'),
(19290, 'https://ror.org/0415cr103', 'no_lang_code', 1, 'https://ror.org/0415cr103 Novo Nordisk (United Kingdom)'),
(19291, 'https://ror.org/00gytzf17', 'no_lang_code', 1, 'https://ror.org/00gytzf17 SMS Siemag (Germany)'),
(19292, 'https://ror.org/01m274k23', 'no_lang_code', 1, 'https://ror.org/01m274k23 Zoetis (Canada)'),
(19293, 'https://ror.org/03ksty822', 'no_lang_code', 1, 'https://ror.org/03ksty822 New Generation Biogas'),
(19294, 'https://ror.org/03ceam220', 'pt', 1, 'https://ror.org/03ceam220 Museu da Presidência da República'),
(19295, 'https://ror.org/01q06dd50', 'en', 1, 'https://ror.org/01q06dd50 New Hampshire Department of Education'),
(19296, 'https://ror.org/05ntbjw82', 'no_lang_code', 1, 'https://ror.org/05ntbjw82 Microtest (Spain)'),
(19297, 'https://ror.org/05htkw892', 'no_lang_code', 1, 'https://ror.org/05htkw892 Hemanext (United States)'),
(19298, 'https://ror.org/02xtk7r80', 'en', 1, 'https://ror.org/02xtk7r80 New Horizons Community Service Board'),
(19299, 'https://ror.org/02y88x190', 'en', 1, 'https://ror.org/02y88x190 Museu Nacional de Arqueologia National Archaeology Museum'),
(19300, 'https://ror.org/04xxqrf38', 'no_lang_code', 1, 'https://ror.org/04xxqrf38 New Jersey Microsystems (United States)'),
(19301, 'https://ror.org/03hm2pw19', 'no_lang_code', 1, 'https://ror.org/03hm2pw19 NRU Präzisionstechnologie (Germany)'),
(19302, 'https://ror.org/018ekew90', 'en', 1, 'https://ror.org/018ekew90 New Jersey Department of Corrections'),
(19303, 'https://ror.org/04tsj5e88', 'no_lang_code', 1, 'https://ror.org/04tsj5e88 New Light Industries (United States)'),
(19304, 'https://ror.org/03fcyzf82', 'en', 1, 'https://ror.org/03fcyzf82 New Mexico Family Network'),
(19305, 'https://ror.org/02engqd33', 'en', 1, 'https://ror.org/02engqd33 Museum of New Mexico'),
(19306, 'https://ror.org/04fcynh72', 'en', 1, 'https://ror.org/04fcynh72 Departamento de Niños, Juventud y Familias de Nuevo México New Mexico Children Youth and Families Department'),
(19307, 'https://ror.org/03e5ggr08', 'no_lang_code', 1, 'https://ror.org/03e5ggr08 Kelme (Spain)'),
(19308, 'https://ror.org/03xbt0w63', 'en', 1, 'https://ror.org/03xbt0w63 New Orleans AIDS Task Force'),
(19309, 'https://ror.org/03mqxhm40', 'en', 1, 'https://ror.org/03mqxhm40 Museums Association'),
(19310, 'https://ror.org/04dt01t51', 'en', 1, 'https://ror.org/04dt01t51 Orleans Parish School Board'),
(19311, 'https://ror.org/03tbnx652', 'en', 1, 'https://ror.org/03tbnx652 Missouri Area Health Education Center'),
(19312, 'https://ror.org/036qcnh52', 'en', 1, 'https://ror.org/036qcnh52 Education Northwest'),
(19313, 'https://ror.org/02h1mkm69', 'en', 1, 'https://ror.org/02h1mkm69 Musicians Union'),
(19314, 'https://ror.org/03hj4jr80', 'en', 1, 'https://ror.org/03hj4jr80 North Carolina Biotechnology Center'),
(19315, 'https://ror.org/02rdhze40', 'en', 1, 'https://ror.org/02rdhze40 Middlesex Community College'),
(19316, 'https://ror.org/017t65n61', 'en', 1, 'https://ror.org/017t65n61 North Carolina Families United'),
(19317, 'https://ror.org/03ymdz715', 'no_lang_code', 1, 'https://ror.org/03ymdz715 MIDI (United States)'),
(19318, 'https://ror.org/00w940402', 'no_lang_code', 1, 'https://ror.org/00w940402 Muthén & Muthén (United States)'),
(19319, 'https://ror.org/010vqh084', 'en', 1, 'https://ror.org/010vqh084 North Carolina Public Schools'),
(19320, 'https://ror.org/05x8hy709', 'en', 1, 'https://ror.org/05x8hy709 North Carolina Wesleyan College'),
(19321, 'https://ror.org/04bs93498', 'en', 1, 'https://ror.org/04bs93498 North Country Health Consortium'),
(19322, 'https://ror.org/02dbkpn67', 'no_lang_code', 1, 'https://ror.org/02dbkpn67 Nutech Industries (United States)'),
(19323, 'https://ror.org/02cv67x09', 'en', 1, 'https://ror.org/02cv67x09 North Dakota Legislative Council'),
(19324, 'https://ror.org/023njmx50', 'no_lang_code', 1, 'https://ror.org/023njmx50 Midland Valley Exploration (United Kingdom)'),
(19325, 'https://ror.org/01pshz178', 'no_lang_code', 1, 'https://ror.org/01pshz178 Nuance Communications (Canada)'),
(19326, 'https://ror.org/01emh3a91', 'no_lang_code', 1, 'https://ror.org/01emh3a91 Midlands Aerospace Alliance'),
(19327, 'https://ror.org/02hfw7a32', 'en', 1, 'https://ror.org/02hfw7a32 North Hennepin Community College'),
(19328, 'https://ror.org/02d7rnk16', 'en', 1, 'https://ror.org/02d7rnk16 North Seattle College'),
(19329, 'https://ror.org/04mfr9y95', 'en', 1, 'https://ror.org/04mfr9y95 Midlands Technical College'),
(19330, 'https://ror.org/00yeg5v71', 'no_lang_code', 1, 'https://ror.org/00yeg5v71 Nubad (United States)'),
(19331, 'https://ror.org/01qjejj07', 'no_lang_code', 1, 'https://ror.org/01qjejj07 Börsenverein des Deutschen Buchhandels (Germany)'),
(19332, 'https://ror.org/03yy8w025', 'en', 1, 'https://ror.org/03yy8w025 Nuclear Safety Research Institute Nukleáris Biztonsági Kutatóintézet'),
(19333, 'https://ror.org/024j02139', 'en', 1, 'https://ror.org/024j02139 Northeast Communities Against Substance Abuse'),
(19334, 'https://ror.org/0413w0z02', 'en', 1, 'https://ror.org/0413w0z02 Northeast Document Conservation Center'),
(19335, 'https://ror.org/04g934a02', 'no_lang_code', 1, 'https://ror.org/04g934a02 Mierij Meteo'),
(19336, 'https://ror.org/03fzvpt97', 'en', 1, 'https://ror.org/03fzvpt97 Northeast Iowa Dairy Foundation'),
(19337, 'https://ror.org/030wrns14', 'no_lang_code', 1, 'https://ror.org/030wrns14 Northern Digital (Canada)'),
(19338, 'https://ror.org/04as3by48', 'no_lang_code', 1, 'https://ror.org/04as3by48 Electricity Supply Board (United Kingdom)'),
(19339, 'https://ror.org/003sfv155', 'en', 1, 'https://ror.org/003sfv155 Nuclear Physics European Collaboration Committee'),
(19340, 'https://ror.org/03v8pzh67', 'no_lang_code', 1, 'https://ror.org/03v8pzh67 Eurofins (Germany)'),
(19341, 'https://ror.org/04pat0b95', 'no_lang_code', 1, 'https://ror.org/04pat0b95 OnTo Technology (United States)'),
(19342, 'https://ror.org/0597mp424', 'no_lang_code', 1, 'https://ror.org/0597mp424 Myasishchev Design Bureau (Russia)'),
(19343, 'https://ror.org/04y086814', 'no_lang_code', 1, 'https://ror.org/04y086814 Onyx Solar (Spain)'),
(19344, 'https://ror.org/01d0ans39', 'en', 1, 'https://ror.org/01d0ans39 Nuclear Regulatory Authority of the Slovak Republic'),
(19345, 'https://ror.org/04cz2yk65', 'en', 1, 'https://ror.org/04cz2yk65 Myndigheten för samhällsskydd och beredskap Swedish Civil Contingencies Agency'),
(19346, 'https://ror.org/05m0z9f45', 'no_lang_code', 1, 'https://ror.org/05m0z9f45 Duro Felguera (Spain)'),
(19347, 'https://ror.org/04artyh12', 'no_lang_code', 1, 'https://ror.org/04artyh12 Opalux (Canada)'),
(19348, 'https://ror.org/044qmzh69', 'pt', 1, 'https://ror.org/044qmzh69 Núcleo Interactivo de Astronomia'),
(19349, 'https://ror.org/0595jb241', 'no_lang_code', 1, 'https://ror.org/0595jb241 Mikron (Germany)'),
(19350, 'https://ror.org/02jndq195', 'no_lang_code', 1, 'https://ror.org/02jndq195 Vixar (United States)'),
(19351, 'https://ror.org/01mkymc65', 'no_lang_code', 1, 'https://ror.org/01mkymc65 N.A.Software (United Kingdom)'),
(19352, 'https://ror.org/03yz6x113', 'no_lang_code', 1, 'https://ror.org/03yz6x113 Cisco Systems (Israel)'),
(19353, 'https://ror.org/04pcnys31', 'no_lang_code', 1, 'https://ror.org/04pcnys31 Numerical Algorithms Group (United Kingdom)'),
(19354, 'https://ror.org/03kvekp81', 'no_lang_code', 1, 'https://ror.org/03kvekp81 Turkish Electro Technology (Turkey)'),
(19355, 'https://ror.org/02hr72y72', 'en', 1, 'https://ror.org/02hr72y72 Open Data Institute'),
(19356, 'https://ror.org/03jv4cw45', 'no_lang_code', 1, 'https://ror.org/03jv4cw45 AudioCodes (Israel)'),
(19357, 'https://ror.org/02sh2xr17', 'no_lang_code', 1, 'https://ror.org/02sh2xr17 MIL Corporation (United States)'),
(19358, 'https://ror.org/036yfjc53', 'en', 1, 'https://ror.org/036yfjc53 Nassau Alcohol Crime Drug Abatement Coalition'),
(19359, 'https://ror.org/05h2ydr55', 'no_lang_code', 1, 'https://ror.org/05h2ydr55 Milagen (United States)'),
(19360, 'https://ror.org/01wzp0b05', 'en', 1, 'https://ror.org/01wzp0b05 Milford Elementary School'),
(19361, 'https://ror.org/023ys3x64', 'no_lang_code', 1, 'https://ror.org/023ys3x64 Thermo Fisher Scientific (Denmark)'),
(19362, 'https://ror.org/04sbdyg82', 'no_lang_code', 1, 'https://ror.org/04sbdyg82 Piaggio (Spain)'),
(19363, 'https://ror.org/01w41ag04', 'no_lang_code', 1, 'https://ror.org/01w41ag04 Millab Consult (Norway)'),
(19364, 'https://ror.org/0042ycb06', 'no_lang_code', 1, 'https://ror.org/0042ycb06 Naftosol (Greece)'),
(19365, 'https://ror.org/001z81t90', 'no_lang_code', 1, 'https://ror.org/001z81t90 OPeNDAP'),
(19366, 'https://ror.org/00c12ad68', 'no_lang_code', 1, 'https://ror.org/00c12ad68 Opera North (United Kingdom)'),
(19367, 'https://ror.org/012m7et47', 'no_lang_code', 1, 'https://ror.org/012m7et47 Naneum (United Kingdom)'),
(19368, 'https://ror.org/04bm0js74', 'no_lang_code', 1, 'https://ror.org/04bm0js74 Cristal (United Kingdom)'),
(19369, 'https://ror.org/05h2czb21', 'no_lang_code', 1, 'https://ror.org/05h2czb21 Nutech (Germany)'),
(19370, 'https://ror.org/033dcc869', 'no_lang_code', 1, 'https://ror.org/033dcc869 Nano Liquid Devices (United States)'),
(19371, 'https://ror.org/05v8evh13', 'no_lang_code', 1, 'https://ror.org/05v8evh13 Nutra Canada (Canada)'),
(19372, 'https://ror.org/04f254318', 'no_lang_code', 1, 'https://ror.org/04f254318 Skretting (Norway)'),
(19373, 'https://ror.org/04cb36z24', 'ro', 1, 'https://ror.org/04cb36z24 Opinia'),
(19374, 'https://ror.org/04ny69498', 'no_lang_code', 1, 'https://ror.org/04ny69498 Millidyne (Finland)'),
(19375, 'https://ror.org/04qcmbz41', 'no_lang_code', 1, 'https://ror.org/04qcmbz41 NanOasis Technologies (United States)'),
(19376, 'https://ror.org/04jb7ky60', 'no_lang_code', 1, 'https://ror.org/04jb7ky60 Nanocerox (United States)'),
(19377, 'https://ror.org/041vrah58', 'no_lang_code', 1, 'https://ror.org/041vrah58 Nanocopoeia (United States)'),
(19378, 'https://ror.org/03njz2k95', 'no_lang_code', 1, 'https://ror.org/03njz2k95 Optech (Canada)'),
(19379, 'https://ror.org/05y8sjx72', 'no_lang_code', 1, 'https://ror.org/05y8sjx72 Nanofiber Solutions (United States)'),
(19380, 'https://ror.org/02wtt8e62', 'no_lang_code', 1, 'https://ror.org/02wtt8e62 OpTek Systems (United Kingdom)'),
(19381, 'https://ror.org/00wyga863', 'no_lang_code', 1, 'https://ror.org/00wyga863 Nanoforce Technology (United Kingdom)'),
(19382, 'https://ror.org/02hz1w568', 'no_lang_code', 1, 'https://ror.org/02hz1w568 Nanogap Sub-NM-Powder (Spain)'),
(19383, 'https://ror.org/01x8f1980', 'no_lang_code', 1, 'https://ror.org/01x8f1980 NanoGriptech (United States)'),
(19384, 'https://ror.org/01d12jx16', 'no_lang_code', 1, 'https://ror.org/01d12jx16 Nanohmics (United States)'),
(19385, 'https://ror.org/00s6c1066', 'en', 1, 'https://ror.org/00s6c1066 NanoImaging Services'),
(19386, 'https://ror.org/05sngcy82', 'no_lang_code', 1, 'https://ror.org/05sngcy82 STEAG (Germany) Steinkohlen-Elektrizität'),
(19387, 'https://ror.org/05jf4s961', 'no_lang_code', 1, 'https://ror.org/05jf4s961 NanoIntegris (United States)'),
(19388, 'https://ror.org/04smrv092', 'no_lang_code', 1, 'https://ror.org/04smrv092 KLA (Ireland)'),
(19389, 'https://ror.org/00q2rr681', 'no_lang_code', 1, 'https://ror.org/00q2rr681 Nuvation (Canada)'),
(19390, 'https://ror.org/037y00t77', 'en', 1, 'https://ror.org/037y00t77 Milton Keynes Council'),
(19391, 'https://ror.org/00rskqs20', 'no_lang_code', 1, 'https://ror.org/00rskqs20 Nuvera (Italy)'),
(19392, 'https://ror.org/00cwcb431', 'no_lang_code', 1, 'https://ror.org/00cwcb431 Opticology (United States)'),
(19393, 'https://ror.org/04dwrr446', 'no_lang_code', 1, 'https://ror.org/04dwrr446 Optics Technology (United States)'),
(19394, 'https://ror.org/05htw5381', 'no_lang_code', 1, 'https://ror.org/05htw5381 Organogenesis (United States)'),
(19395, 'https://ror.org/03hbnch67', 'en', 1, 'https://ror.org/03hbnch67 Social Development Commission'),
(19396, 'https://ror.org/03vvfjv50', 'en', 1, 'https://ror.org/03vvfjv50 OpticsValley'),
(19397, 'https://ror.org/00w0dra04', 'no_lang_code', 1, 'https://ror.org/00w0dra04 NanoMEMS Research (United States)'),
(19398, 'https://ror.org/05w5qjg18', 'en', 1, 'https://ror.org/05w5qjg18 Milwaukee Public Schools'),
(19399, 'https://ror.org/00185f784', 'no_lang_code', 1, 'https://ror.org/00185f784 OptiEnz Sensors (United States)'),
(19400, 'https://ror.org/01sv65921', 'no_lang_code', 1, 'https://ror.org/01sv65921 Optima Neuroscience (United States)'),
(19401, 'https://ror.org/02bpb1j41', 'en', 1, 'https://ror.org/02bpb1j41 Nye Communities Coalition'),
(19402, 'https://ror.org/04rnd5t03', 'no_lang_code', 1, 'https://ror.org/04rnd5t03 Nanomotion (Israel)'),
(19403, 'https://ror.org/02d3f2520', 'no_lang_code', 1, 'https://ror.org/02d3f2520 Nanonex (United States)'),
(19404, 'https://ror.org/039he1k03', 'no_lang_code', 1, 'https://ror.org/039he1k03 Nanoparticle BioChem (United States)'),
(19405, 'https://ror.org/01jrywz31', 'no_lang_code', 1, 'https://ror.org/01jrywz31 Optimare (Germany)'),
(19406, 'https://ror.org/05pqt0f15', 'no_lang_code', 1, 'https://ror.org/05pqt0f15 NanoPET Pharma (Germany)'),
(19407, 'https://ror.org/047865819', 'fr', 1, 'https://ror.org/047865819 NanoQuébec (Canada)'),
(19408, 'https://ror.org/001pw8x48', 'no_lang_code', 1, 'https://ror.org/001pw8x48 NZI (Spain)'),
(19409, 'https://ror.org/00w8szr09', 'no_lang_code', 1, 'https://ror.org/00w8szr09 NanoTecCenter Weiz Forschungsgesellschaft (Austria)'),
(19410, 'https://ror.org/025ebgz81', 'no_lang_code', 1, 'https://ror.org/025ebgz81 NanoTechLabs (United States)'),
(19411, 'https://ror.org/00rtryt44', 'no_lang_code', 1, 'https://ror.org/00rtryt44 Nzytech (Portugal)'),
(19412, 'https://ror.org/02vbm2f39', 'no_lang_code', 1, 'https://ror.org/02vbm2f39 Nanova Biomaterials (United States)'),
(19413, 'https://ror.org/03gy7zk94', 'no_lang_code', 1, 'https://ror.org/03gy7zk94 O-Ray Pharma (United States)'),
(19414, 'https://ror.org/05mwf7z25', 'no_lang_code', 1, 'https://ror.org/05mwf7z25 Refind (Sweden)'),
(19415, 'https://ror.org/03bq93t15', 'no_lang_code', 1, 'https://ror.org/03bq93t15 NanoVir (United States)'),
(19416, 'https://ror.org/05mjwb095', 'no_lang_code', 1, 'https://ror.org/05mjwb095 NanoWave (United States)'),
(19417, 'https://ror.org/02mfqq252', 'no_lang_code', 1, 'https://ror.org/02mfqq252 Optivision (United States)'),
(19418, 'https://ror.org/01x2g0m45', 'no_lang_code', 1, 'https://ror.org/01x2g0m45 Ocean Atmosphere Systems (Germany)'),
(19419, 'https://ror.org/022fzky59', 'no_lang_code', 1, 'https://ror.org/022fzky59 Optiwave Systems (Canada)'),
(19420, 'https://ror.org/04retwk85', 'no_lang_code', 1, 'https://ror.org/04retwk85 O.D. 260 (United States)'),
(19421, 'https://ror.org/017kqf203', 'no_lang_code', 1, 'https://ror.org/017kqf203 Napper Architects (United Kingdom)'),
(19422, 'https://ror.org/046e9gn41', 'no_lang_code', 1, 'https://ror.org/046e9gn41 Offshore Monitoring (Cyprus)'),
(19423, 'https://ror.org/05jrasj33', 'no_lang_code', 1, 'https://ror.org/05jrasj33 Optocap (United Kingdom)'),
(19424, 'https://ror.org/04p8px794', 'no_lang_code', 1, 'https://ror.org/04p8px794 Optomec (United States)'),
(19425, 'https://ror.org/01c7gck54', 'en', 1, 'https://ror.org/01c7gck54 Natural Procreative Technology'),
(19426, 'https://ror.org/041g8ev90', 'no_lang_code', 1, 'https://ror.org/041g8ev90 Optomesures (France)'),
(19427, 'https://ror.org/02gs9j702', 'no_lang_code', 1, 'https://ror.org/02gs9j702 Narco Freedom (United States)'),
(19428, 'https://ror.org/034mv9n91', 'en', 1, 'https://ror.org/034mv9n91 National Health Information Center Národné Centrum Zdravotníckych Informácií'),
(19429, 'https://ror.org/042ge2m79', 'no_lang_code', 1, 'https://ror.org/042ge2m79 OptoNet (United States)'),
(19430, 'https://ror.org/04pqyhc66', 'no_lang_code', 1, 'https://ror.org/04pqyhc66 OptoSci (United Kingdom)'),
(19431, 'https://ror.org/04k9y3p96', 'no_lang_code', 1, 'https://ror.org/04k9y3p96 Optoscribe (United Kingdom)'),
(19432, 'https://ror.org/018kks649', 'no_lang_code', 1, 'https://ror.org/018kks649 Optotek (Slovenia)'),
(19433, 'https://ror.org/00v9tt762', 'no_lang_code', 1, 'https://ror.org/00v9tt762 Telefónica (United Kingdom)'),
(19434, 'https://ror.org/03zay0n25', 'no_lang_code', 1, 'https://ror.org/03zay0n25 Nasfine Photonics (United States)'),
(19435, 'https://ror.org/00j83d509', 'en', 1, 'https://ror.org/00j83d509 Nashua School District'),
(19436, 'https://ror.org/0094fh067', 'no_lang_code', 1, 'https://ror.org/0094fh067 Manpower Employment Organisation'),
(19437, 'https://ror.org/05k120s23', 'en', 1, 'https://ror.org/05k120s23 Nasson College'),
(19438, 'https://ror.org/02x14ne40', 'no_lang_code', 1, 'https://ror.org/02x14ne40 Optrak (United Kingdom)'),
(19439, 'https://ror.org/01f3f2284', 'en', 1, 'https://ror.org/01f3f2284 National Council for Voluntary Organisations'),
(19440, 'https://ror.org/009n3eh62', 'en', 1, 'https://ror.org/009n3eh62 Oakland Family Services'),
(19441, 'https://ror.org/01vp1fv93', 'no_lang_code', 1, 'https://ror.org/01vp1fv93 OAS (Germany)'),
(19442, 'https://ror.org/00gerpx08', 'no_lang_code', 1, 'https://ror.org/00gerpx08 Obducat (Sweden)'),
(19443, 'https://ror.org/04kwdvd47', 'no_lang_code', 1, 'https://ror.org/04kwdvd47 Optronics Technologies (Greece)'),
(19444, 'https://ror.org/03e4w4b74', 'no_lang_code', 1, 'https://ror.org/03e4w4b74 OptTek Systems (United States)'),
(19445, 'https://ror.org/01hwhvh84', 'no_lang_code', 1, 'https://ror.org/01hwhvh84 ObjectSecurity (United Kingdom)'),
(19446, 'https://ror.org/040ycw505', 'no_lang_code', 1, 'https://ror.org/040ycw505 Oracle (Belgium)'),
(19447, 'https://ror.org/04sc7sk27', 'en', 1, 'https://ror.org/04sc7sk27 European Social Observatory'),
(19448, 'https://ror.org/01rqzkn19', 'no_lang_code', 1, 'https://ror.org/01rqzkn19 Oerlikon (Liechtenstein)'),
(19449, 'https://ror.org/03k42h168', 'en', 1, 'https://ror.org/03k42h168 Indspire'),
(19450, 'https://ror.org/04qxyd889', 'en', 1, 'https://ror.org/04qxyd889 Ocean County College'),
(19451, 'https://ror.org/021rhh009', 'no_lang_code', 1, 'https://ror.org/021rhh009 Oracle (Germany)'),
(19452, 'https://ror.org/034dk5y08', 'en', 1, 'https://ror.org/034dk5y08 Ocean Discovery Institute'),
(19453, 'https://ror.org/00vr8yd88', 'no_lang_code', 1, 'https://ror.org/00vr8yd88 Oragenics (United States)'),
(19454, 'https://ror.org/02htmyh81', 'en', 1, 'https://ror.org/02htmyh81 Slovak Business Agency'),
(19455, 'https://ror.org/00pz2dk38', 'en', 1, 'https://ror.org/00pz2dk38 Orange Coast College'),
(19456, 'https://ror.org/05htddj49', 'en', 1, 'https://ror.org/05htddj49 Orange County Board of Commissioners'),
(19457, 'https://ror.org/01bcan022', 'en', 1, 'https://ror.org/01bcan022 National Aids Education and Services for Minorities'),
(19458, 'https://ror.org/04wpttf67', 'no_lang_code', 1, 'https://ror.org/04wpttf67 Orbital Biosciences (United States)'),
(19459, 'https://ror.org/054ja5q23', 'en', 1, 'https://ror.org/054ja5q23 National Alliance for Partnerships in Equity'),
(19460, 'https://ror.org/01znas443', 'en', 1, 'https://ror.org/01znas443 Ministry of Education, Science and Technological Development'),
(19461, 'https://ror.org/02cz4sf27', 'en', 1, 'https://ror.org/02cz4sf27 National Alliance for Medication Assisted Recovery'),
(19462, 'https://ror.org/000s9mk50', 'no_lang_code', 1, 'https://ror.org/000s9mk50 Ordecsys (Switzerland)'),
(19463, 'https://ror.org/01xexqx38', 'en', 1, 'https://ror.org/01xexqx38 Ministarstvo Prosvjete Ministry of Education'),
(19464, 'https://ror.org/04vck0k59', 'en', 1, 'https://ror.org/04vck0k59 Ministry of Agriculture وزارة الفلاحة'),
(19465, 'https://ror.org/01egjwb26', 'fr', 1, 'https://ror.org/01egjwb26 Ministère de l’Éducation nationale, de l’Enfance et de la Jeunesse'),
(19466, 'https://ror.org/00tcvgn28', 'en', 1, 'https://ror.org/00tcvgn28 Oregon Coast Community College'),
(19467, 'https://ror.org/001gc6461', 'en', 1, 'https://ror.org/001gc6461 Oregon Public Broadcasting'),
(19468, 'https://ror.org/05atnc387', 'no_lang_code', 1, 'https://ror.org/05atnc387 O.N. Diagnostics (United States)'),
(19469, 'https://ror.org/02qpg3d02', 'no_lang_code', 1, 'https://ror.org/02qpg3d02 Safran (Germany)'),
(19470, 'https://ror.org/00ypv0m95', 'en', 1, 'https://ror.org/00ypv0m95 Ministry of Culture Ministère de la Culture'),
(19471, 'https://ror.org/02j3yv935', 'en', 1, 'https://ror.org/02j3yv935 Oceanites'),
(19472, 'https://ror.org/02qqh1v44', 'no_lang_code', 1, 'https://ror.org/02qqh1v44 OceanWaveS (Germany)'),
(19473, 'https://ror.org/03vcjwt28', 'en', 1, 'https://ror.org/03vcjwt28 Organisation for International Dialogue and Conflict Management'),
(19474, 'https://ror.org/03z157k13', 'no_lang_code', 1, 'https://ror.org/03z157k13 OceanWorks International (Canada)'),
(19475, 'https://ror.org/04ks7cj51', 'no_lang_code', 1, 'https://ror.org/04ks7cj51 Petroleum of Venezuela (Venezuela) Petróleos de Venezuela'),
(19476, 'https://ror.org/04zj5v917', 'en', 1, 'https://ror.org/04zj5v917 Peabody'),
(19477, 'https://ror.org/020e47v47', 'no_lang_code', 1, 'https://ror.org/020e47v47 Organovo (United States)'),
(19478, 'https://ror.org/0201by934', 'en', 1, 'https://ror.org/0201by934 Octavia Housing'),
(19479, 'https://ror.org/0465dww62', 'no_lang_code', 1, 'https://ror.org/0465dww62 Acentia (United States)'),
(19480, 'https://ror.org/05bep5d95', 'no_lang_code', 1, 'https://ror.org/05bep5d95 Schumacher Orgelbau (Belgium)'),
(19481, 'https://ror.org/02hg69287', 'no_lang_code', 1, 'https://ror.org/02hg69287 Peacocks Medical Group (United Kingdom)'),
(19482, 'https://ror.org/00f149504', 'no_lang_code', 1, 'https://ror.org/00f149504 Pearlhill Technologies (United States)'),
(19483, 'https://ror.org/046gbzb64', 'no_lang_code', 1, 'https://ror.org/046gbzb64 A.P. Møller–Mærsk A/S Maersk (Denmark)'),
(19484, 'https://ror.org/048kzgs94', 'no_lang_code', 1, 'https://ror.org/048kzgs94 Orla Protein Technologies (United Kingdom)'),
(19485, 'https://ror.org/024xe4a86', 'no_lang_code', 1, 'https://ror.org/024xe4a86 Oros (France)'),
(19486, 'https://ror.org/03twmm656', 'da', 1, 'https://ror.org/03twmm656 Syddansk Erhvervsskole'),
(19487, 'https://ror.org/010dms986', 'no_lang_code', 1, 'https://ror.org/010dms986 ORT Israel'),
(19488, 'https://ror.org/051ny1b38', 'no_lang_code', 1, 'https://ror.org/051ny1b38 Orthogonal (United States)'),
(19489, 'https://ror.org/00zgqfa58', 'en', 1, 'https://ror.org/00zgqfa58 Odyssey House Louisiana'),
(19490, 'https://ror.org/032h5dn41', 'no_lang_code', 1, 'https://ror.org/032h5dn41 Orthox (United Kingdom)'),
(19491, 'https://ror.org/02t8gc695', 'en', 1, 'https://ror.org/02t8gc695 Odyssey House'),
(19492, 'https://ror.org/03n5zh241', 'no_lang_code', 1, 'https://ror.org/03n5zh241 Oryzon Genomics (Spain)'),
(19493, 'https://ror.org/00wkvq828', 'en', 1, 'https://ror.org/00wkvq828 Osborne Association'),
(19494, 'https://ror.org/04jjy0g33', 'pt', 1, 'https://ror.org/04jjy0g33 Hospital Braga Hospital de Braga'),
(19495, 'https://ror.org/05nkfrm56', 'fr', 1, 'https://ror.org/05nkfrm56 Ministère de l''Enseignement Superieur et de la Recherche'),
(19496, 'https://ror.org/04xb8zj39', 'no_lang_code', 1, 'https://ror.org/04xb8zj39 Mincon (Ireland)'),
(19497, 'https://ror.org/007e25j64', 'no_lang_code', 1, 'https://ror.org/007e25j64 NanoPhos (Greece)'),
(19498, 'https://ror.org/0314vzp76', 'en', 1, 'https://ror.org/0314vzp76 Orkney Fisheries Association'),
(19499, 'https://ror.org/00spvm362', 'no_lang_code', 1, 'https://ror.org/00spvm362 ORME (France)'),
(19500, 'https://ror.org/03r8s5x58', 'no_lang_code', 1, 'https://ror.org/03r8s5x58 Osiris Therapeutics (United States)'),
(19501, 'https://ror.org/04f77nk30', 'en', 1, 'https://ror.org/04f77nk30 National Asian Pacific American Families Against Substance Abuse'),
(19502, 'https://ror.org/05w9cds44', 'no_lang_code', 1, 'https://ror.org/05w9cds44 Oelheld (Germany)'),
(19503, 'https://ror.org/00ygc7g86', 'en', 1, 'https://ror.org/00ygc7g86 National Association of Local Boards of Health'),
(19504, 'https://ror.org/001zajz59', 'no_lang_code', 1, 'https://ror.org/001zajz59 Canadian Malartic (Canada)'),
(19505, 'https://ror.org/02arcr276', 'en', 1, 'https://ror.org/02arcr276 National Association of State Departments of Agriculture'),
(19506, 'https://ror.org/04qt1cz93', 'en', 1, 'https://ror.org/04qt1cz93 National Association of EMS Physicians'),
(19507, 'https://ror.org/022vfdk28', 'no_lang_code', 1, 'https://ror.org/022vfdk28 OSM DAN (Israel) או.אס.אמ. - דן בע"מ'),
(19508, 'https://ror.org/03r0ajw35', 'en', 1, 'https://ror.org/03r0ajw35 National Association of Research and Educational e-Infrastructures'),
(19509, 'https://ror.org/008wxtx05', 'no_lang_code', 1, 'https://ror.org/008wxtx05 Ossidian Technologies (Ireland)'),
(19510, 'https://ror.org/01awap711', 'en', 1, 'https://ror.org/01awap711 Office of Naval Research'),
(19511, 'https://ror.org/05jk5p721', 'no_lang_code', 1, 'https://ror.org/05jk5p721 Pedro Roquet (Spain)'),
(19512, 'https://ror.org/01r01qv34', 'no_lang_code', 1, 'https://ror.org/01r01qv34 OsteoGeneX (United States)'),
(19513, 'https://ror.org/03qv51n94', 'en', 1, 'https://ror.org/03qv51n94 National Authority for Remote Sensing and Space Sciences'),
(19514, 'https://ror.org/04wmg9c19', 'en', 1, 'https://ror.org/04wmg9c19 Office of Rail Regulation'),
(19515, 'https://ror.org/00yf1b023', 'no_lang_code', 1, 'https://ror.org/00yf1b023 Verbund (Austria)'),
(19516, 'https://ror.org/001ym8t39', 'en', 1, 'https://ror.org/001ym8t39 Peer Services'),
(19517, 'https://ror.org/037ampg77', 'en', 1, 'https://ror.org/037ampg77 Office of Science & Technology Austria'),
(19518, 'https://ror.org/057j7ch92', 'no_lang_code', 1, 'https://ror.org/057j7ch92 National Bank of Greece (Greece) Εθνική Τράπεζα της Ελλάδος'),
(19519, 'https://ror.org/00pn7nn48', 'no_lang_code', 1, 'https://ror.org/00pn7nn48 Office Public d''Aménagement et de Construction de l''Isère (France)'),
(19520, 'https://ror.org/014nw6h77', 'en', 1, 'https://ror.org/014nw6h77 Regional Energy Agency of Crete'),
(19521, 'https://ror.org/03b243z64', 'no_lang_code', 1, 'https://ror.org/03b243z64 Pellet Productions (United States)'),
(19522, 'https://ror.org/01pmnjq51', 'no_lang_code', 1, 'https://ror.org/01pmnjq51 Otoconsult (Belgium)'),
(19523, 'https://ror.org/018y2gs33', 'ro', 1, 'https://ror.org/018y2gs33 Institutul Naţional de Cercetare-Dezvoltare in Construcţii Urbanism şi Dezvoltare Teritorială Durabilă National Institute for Research and Development in Construction, Urban Planning and Sustainable Spatial Development'),
(19524, 'https://ror.org/0424nxb97', 'en', 1, 'https://ror.org/0424nxb97 National Alliance of Healthcare Purchaser Coalitions'),
(19525, 'https://ror.org/048tcp333', 'no_lang_code', 1, 'https://ror.org/048tcp333 Polysolar (United Kingdom)'),
(19526, 'https://ror.org/033z3xa85', 'en', 1, 'https://ror.org/033z3xa85 Invest Canada'),
(19527, 'https://ror.org/04pyty074', 'en', 1, 'https://ror.org/04pyty074 Pennsylvania Coalition Against Rape'),
(19528, 'https://ror.org/02zmzxn38', 'en', 1, 'https://ror.org/02zmzxn38 Pennsylvania Institute of Technology'),
(19529, 'https://ror.org/01b3ar606', 'no_lang_code', 1, 'https://ror.org/01b3ar606 Eliko Tehnoloogia Arenduskeskus'),
(19530, 'https://ror.org/01k1qm960', 'no_lang_code', 1, 'https://ror.org/01k1qm960 Polytronix (United States)'),
(19531, 'https://ror.org/01znaqx63', 'no_lang_code', 1, 'https://ror.org/01znaqx63 Pensoft Publishers (Bulgaria)'),
(19532, 'https://ror.org/022wsx863', 'et', 1, 'https://ror.org/022wsx863 Miksike'),
(19533, 'https://ror.org/056z4ss26', 'no_lang_code', 1, 'https://ror.org/056z4ss26 People Designs (United States)'),
(19534, 'https://ror.org/05ye5k232', 'no_lang_code', 1, 'https://ror.org/05ye5k232 Pontydysgu'),
(19535, 'https://ror.org/02z1yy887', 'no_lang_code', 1, 'https://ror.org/02z1yy887 Population and Social Policy Consultants'),
(19536, 'https://ror.org/02ca38p84', 'no_lang_code', 1, 'https://ror.org/02ca38p84 Quretec (Estonia)'),
(19537, 'https://ror.org/03098ta78', 'no_lang_code', 1, 'https://ror.org/03098ta78 Optical Fiber Solutions (Denmark)'),
(19538, 'https://ror.org/05qgtj846', 'no_lang_code', 1, 'https://ror.org/05qgtj846 Ogenx Therapeutics (United States)'),
(19539, 'https://ror.org/00gc3zx13', 'en', 1, 'https://ror.org/00gc3zx13 Ounce of Prevention Fund'),
(19540, 'https://ror.org/004zfsx81', 'no_lang_code', 1, 'https://ror.org/004zfsx81 Embraer (Portugal)'),
(19541, 'https://ror.org/006bj3v15', 'no_lang_code', 1, 'https://ror.org/006bj3v15 Peppermint (Germany)'),
(19542, 'https://ror.org/0586wsk08', 'no_lang_code', 1, 'https://ror.org/0586wsk08 OHB (Germany)'),
(19543, 'https://ror.org/03ddtra52', 'en', 1, 'https://ror.org/03ddtra52 Mikocheni Agricultural Research Institute'),
(19544, 'https://ror.org/05qd85289', 'no_lang_code', 1, 'https://ror.org/05qd85289 Outotec (Finland)'),
(19545, 'https://ror.org/04avzvx04', 'en', 1, 'https://ror.org/04avzvx04 National Community Health Partners'),
(19546, 'https://ror.org/013etyn53', 'en', 1, 'https://ror.org/013etyn53 National Communication Association'),
(19547, 'https://ror.org/02ekfze92', 'en', 1, 'https://ror.org/02ekfze92 Ohio County Together We Care Coalition'),
(19548, 'https://ror.org/00bpwbx65', 'en', 1, 'https://ror.org/00bpwbx65 National Composites Centre'),
(19549, 'https://ror.org/00grwm276', 'no_lang_code', 1, 'https://ror.org/00grwm276 Peptides International (United States)'),
(19550, 'https://ror.org/05gptew44', 'no_lang_code', 1, 'https://ror.org/05gptew44 National Computing Centre (United Kingdom)'),
(19551, 'https://ror.org/03cyvf362', 'no_lang_code', 1, 'https://ror.org/03cyvf362 Immune Regulation (United Kingdom)'),
(19552, 'https://ror.org/045bf1m77', 'no_lang_code', 1, 'https://ror.org/045bf1m77 CJR Propulsion (United Kingdom)'),
(19553, 'https://ror.org/024xrts92', 'en', 1, 'https://ror.org/024xrts92 Port Gamble S''Klallam Tribal Council'),
(19554, 'https://ror.org/005a4vt43', 'en', 1, 'https://ror.org/005a4vt43 Ohio Domestic Violence Network'),
(19555, 'https://ror.org/04zcv8n51', 'no_lang_code', 1, 'https://ror.org/04zcv8n51 Ohmatex (Denmark)'),
(19556, 'https://ror.org/0486mwv16', 'en', 1, 'https://ror.org/0486mwv16 Portbase'),
(19557, 'https://ror.org/01388jj23', 'en', 1, 'https://ror.org/01388jj23 National Consumers League'),
(19558, 'https://ror.org/00awfcg31', 'no_lang_code', 1, 'https://ror.org/00awfcg31 Oval Window Audio (United States)'),
(19559, 'https://ror.org/01kb1df65', 'en', 1, 'https://ror.org/01kb1df65 National Council for Geographic Education'),
(19560, 'https://ror.org/03gfza185', 'no_lang_code', 1, 'https://ror.org/03gfza185 EduHintOVD (Netherlands)'),
(19561, 'https://ror.org/02et1jt70', 'no_lang_code', 1, 'https://ror.org/02et1jt70 Peraso Technologies (Canada)'),
(19562, 'https://ror.org/05r7p7m46', 'no_lang_code', 1, 'https://ror.org/05r7p7m46 Offshore Installation Services (United Kingdom)'),
(19563, 'https://ror.org/039deg344', 'no_lang_code', 1, 'https://ror.org/039deg344 OJ-Bio (United Kingdom)'),
(19564, 'https://ror.org/044dman78', 'en', 1, 'https://ror.org/044dman78 National Counter Terrorism Security Office'),
(19565, 'https://ror.org/00p15zq72', 'en', 1, 'https://ror.org/00p15zq72 Okanagan Science Centre'),
(19566, 'https://ror.org/04hcrmf43', 'en', 1, 'https://ror.org/04hcrmf43 National Down Syndrome Society'),
(19567, 'https://ror.org/05y3ab566', 'en', 1, 'https://ror.org/05y3ab566 Okayama Ceramics Research Foundation 岡山セラミックスセンター'),
(19568, 'https://ror.org/01n22w217', 'en', 1, 'https://ror.org/01n22w217 Oklahoma City Community College'),
(19569, 'https://ror.org/00kdx6519', 'no_lang_code', 1, 'https://ror.org/00kdx6519 Applied Science Laboratories (United States)'),
(19570, 'https://ror.org/05qep9y26', 'no_lang_code', 1, 'https://ror.org/05qep9y26 Perceptive Engineering (United Kingdom)'),
(19571, 'https://ror.org/03s9etx54', 'en', 1, 'https://ror.org/03s9etx54 National Economists Club'),
(19572, 'https://ror.org/03r16h820', 'en', 1, 'https://ror.org/03r16h820 Oklahoma Department of Agriculture Food and Forestry'),
(19573, 'https://ror.org/015byt818', 'en', 1, 'https://ror.org/015byt818 National Energy Research Center'),
(19574, 'https://ror.org/0147bee55', 'no_lang_code', 1, 'https://ror.org/0147bee55 Mondragon Corporation (Germany)'),
(19575, 'https://ror.org/007bkwj81', 'no_lang_code', 1, 'https://ror.org/007bkwj81 Oktal (France)'),
(19576, 'https://ror.org/04s1c7214', 'no_lang_code', 1, 'https://ror.org/04s1c7214 Pretexo (France)'),
(19577, 'https://ror.org/02xq7yj60', 'no_lang_code', 1, 'https://ror.org/02xq7yj60 Overspeed (Germany)'),
(19578, 'https://ror.org/0457w0821', 'en', 1, 'https://ror.org/0457w0821 OW2 Consortium'),
(19579, 'https://ror.org/02nysre97', 'en', 1, 'https://ror.org/02nysre97 Olathe Public Schools'),
(19580, 'https://ror.org/019h09n30', 'no_lang_code', 1, 'https://ror.org/019h09n30 Positron Systems (United States)'),
(19581, 'https://ror.org/001d74r65', 'en', 1, 'https://ror.org/001d74r65 Post and Telecom Administration Póst og Fjarskiptastofnun'),
(19582, 'https://ror.org/05qtb1210', 'no_lang_code', 1, 'https://ror.org/05qtb1210 Poste Italiane (Italy)'),
(19583, 'https://ror.org/00ehhcx69', 'no_lang_code', 1, 'https://ror.org/00ehhcx69 Performance Communications'),
(19584, 'https://ror.org/02h1gvb73', 'no_lang_code', 1, 'https://ror.org/02h1gvb73 Oliver Crispin Robotics (United Kingdom)'),
(19585, 'https://ror.org/022283x63', 'no_lang_code', 1, 'https://ror.org/022283x63 Oxfam'),
(19586, 'https://ror.org/01ybgev21', 'no_lang_code', 1, 'https://ror.org/01ybgev21 Prevas (Norway)'),
(19587, 'https://ror.org/03dp0vf82', 'no_lang_code', 1, 'https://ror.org/03dp0vf82 Oxford BioMedica (United Kingdom)'),
(19588, 'https://ror.org/0305q4m96', 'no_lang_code', 1, 'https://ror.org/0305q4m96 PostScriptum (Greece)'),
(19589, 'https://ror.org/052b1ym09', 'en', 1, 'https://ror.org/052b1ym09 Oxford City Council'),
(19590, 'https://ror.org/01rh2am22', 'no_lang_code', 1, 'https://ror.org/01rh2am22 Pericle Communications (United States)'),
(19591, 'https://ror.org/01e3wqt79', 'en', 1, 'https://ror.org/01e3wqt79 Prevent of Brevard'),
(19592, 'https://ror.org/00q7btw65', 'en', 1, 'https://ror.org/00q7btw65 Prevention Connections'),
(19593, 'https://ror.org/0370r0855', 'en', 1, 'https://ror.org/0370r0855 Prevention Links'),
(19594, 'https://ror.org/01rhgps79', 'no_lang_code', 1, 'https://ror.org/01rhgps79 Oltis Group (Czechia)'),
(19595, 'https://ror.org/05152r856', 'no_lang_code', 1, 'https://ror.org/05152r856 Socotec (France)'),
(19596, 'https://ror.org/031601h81', 'no_lang_code', 1, 'https://ror.org/031601h81 PricewaterhouseCoopers (Netherlands)'),
(19597, 'https://ror.org/02ds0wa60', 'en', 1, 'https://ror.org/02ds0wa60 Olympic Athletic Center of Athens "Spiros Louis"'),
(19598, 'https://ror.org/04scjv535', 'no_lang_code', 1, 'https://ror.org/04scjv535 Hedgeye (United States)'),
(19599, 'https://ror.org/048q8cd91', 'en', 1, 'https://ror.org/048q8cd91 Omaha Nation Community Response Team'),
(19600, 'https://ror.org/00bn8y738', 'en', 1, 'https://ror.org/00bn8y738 Primary Care Development Corporation'),
(19601, 'https://ror.org/00njayd33', 'no_lang_code', 1, 'https://ror.org/00njayd33 Omax (United States)'),
(19602, 'https://ror.org/02n84y322', 'no_lang_code', 1, 'https://ror.org/02n84y322 OXGENE (United Kingdom)'),
(19603, 'https://ror.org/01s9fwc30', 'no_lang_code', 1, 'https://ror.org/01s9fwc30 Permanova Lasersystem (Sweden)'),
(19604, 'https://ror.org/02wxh6849', 'no_lang_code', 1, 'https://ror.org/02wxh6849 SQW Group (United Kingdom)'),
(19605, 'https://ror.org/057ewam52', 'no_lang_code', 1, 'https://ror.org/057ewam52 Oxford Intelligent Machines (United Kingdom)'),
(19606, 'https://ror.org/02y8qpa51', 'no_lang_code', 1, 'https://ror.org/02y8qpa51 JDA Software (Canada)'),
(19607, 'https://ror.org/03kvy9649', 'fr', 1, 'https://ror.org/03kvy9649 Pour la Solidarité'),
(19608, 'https://ror.org/034zz5290', 'no_lang_code', 1, 'https://ror.org/034zz5290 Perseus (Belgium)'),
(19609, 'https://ror.org/03mmsj102', 'no_lang_code', 1, 'https://ror.org/03mmsj102 Personal Space Technologies (Netherlands)'),
(19610, 'https://ror.org/044zqfh96', 'no_lang_code', 1, 'https://ror.org/044zqfh96 Oxford Metrics (United Kingdom)'),
(19611, 'https://ror.org/04hyfx005', 'no_lang_code', 1, 'https://ror.org/04hyfx005 Oxford Nanopore Technologies (United Kingdom)'),
(19612, 'https://ror.org/04f3y7g60', 'no_lang_code', 1, 'https://ror.org/04f3y7g60 Omgatech (Italy)'),
(19613, 'https://ror.org/02ch8xp61', 'no_lang_code', 1, 'https://ror.org/02ch8xp61 Oxford NanoSystems (United Kingdom)'),
(19614, 'https://ror.org/01fmzkf37', 'no_lang_code', 1, 'https://ror.org/01fmzkf37 Pervatech (Netherlands)'),
(19615, 'https://ror.org/047m46r71', 'no_lang_code', 1, 'https://ror.org/047m46r71 Oxford Technologies (United Kingdom)'),
(19616, 'https://ror.org/01qjpbj62', 'no_lang_code', 1, 'https://ror.org/01qjpbj62 Omm Scientific (United States)'),
(19617, 'https://ror.org/042vkw919', 'no_lang_code', 1, 'https://ror.org/042vkw919 Oxis Energy (United Kingdom)'),
(19618, 'https://ror.org/054w60c75', 'no_lang_code', 1, 'https://ror.org/054w60c75 Touchstone Exploration (Canada)'),
(19619, 'https://ror.org/04020mn90', 'no_lang_code', 1, 'https://ror.org/04020mn90 Oxitec (United Kingdom)'),
(19620, 'https://ror.org/05x9bmy83', 'no_lang_code', 1, 'https://ror.org/05x9bmy83 Ommic (France)'),
(19621, 'https://ror.org/04da2f798', 'no_lang_code', 1, 'https://ror.org/04da2f798 Prime Photonics (United States)'),
(19622, 'https://ror.org/01z55tz06', 'no_lang_code', 1, 'https://ror.org/01z55tz06 Oxsensis (United Kingdom)'),
(19623, 'https://ror.org/01z02vf77', 'no_lang_code', 1, 'https://ror.org/01z02vf77 Oxyrase (United States)'),
(19624, 'https://ror.org/01nzeya05', 'no_lang_code', 1, 'https://ror.org/01nzeya05 Polska Grupa Energetyczna (Poland)'),
(19625, 'https://ror.org/01yb9sv02', 'no_lang_code', 1, 'https://ror.org/01yb9sv02 Petroleum Helicopters International (United States)'),
(19626, 'https://ror.org/05rga6m50', 'no_lang_code', 1, 'https://ror.org/05rga6m50 OmniActive Health Technologies (Canada)'),
(19627, 'https://ror.org/04nhyde41', 'no_lang_code', 1, 'https://ror.org/04nhyde41 Premix (Finland)'),
(19628, 'https://ror.org/02pzx2c51', 'no_lang_code', 1, 'https://ror.org/02pzx2c51 OyaGen (United States)'),
(19629, 'https://ror.org/04pp32a12', 'no_lang_code', 1, 'https://ror.org/04pp32a12 Pfaff Industriemaschinen (Germany)'),
(19630, 'https://ror.org/03cx5n871', 'no_lang_code', 1, 'https://ror.org/03cx5n871 OZ Biosciences (France)'),
(19631, 'https://ror.org/01nscpg76', 'no_lang_code', 1, 'https://ror.org/01nscpg76 OZ Optics (Canada)'),
(19632, 'https://ror.org/00e4rzw98', 'no_lang_code', 1, 'https://ror.org/00e4rzw98 OmniGuide (United States)'),
(19633, 'https://ror.org/051gp5616', 'no_lang_code', 1, 'https://ror.org/051gp5616 Teledyne Princeton Instruments (United States)'),
(19634, 'https://ror.org/00t6yq161', 'no_lang_code', 1, 'https://ror.org/00t6yq161 Powerline Technologies (United Kingdom)'),
(19635, 'https://ror.org/05jtjvf20', 'no_lang_code', 1, 'https://ror.org/05jtjvf20 Omnisense (United Kingdom)'),
(19636, 'https://ror.org/006ghrq92', 'no_lang_code', 1, 'https://ror.org/006ghrq92 Principia Ingenieros Consultores'),
(19637, 'https://ror.org/05072ws38', 'no_lang_code', 1, 'https://ror.org/05072ws38 Omtaş (Turkey)'),
(19638, 'https://ror.org/03vd9ca20', 'no_lang_code', 1, 'https://ror.org/03vd9ca20 Pflegewerk (Germany)'),
(19639, 'https://ror.org/03jh7vc52', 'no_lang_code', 1, 'https://ror.org/03jh7vc52 PA Consulting Group'),
(19640, 'https://ror.org/04h484195', 'no_lang_code', 1, 'https://ror.org/04h484195 Printed Electronics (United Kingdom)'),
(19641, 'https://ror.org/052j5y866', 'no_lang_code', 1, 'https://ror.org/052j5y866 On Our Own of Maryland (United States)'),
(19642, 'https://ror.org/00gpdh364', 'no_lang_code', 1, 'https://ror.org/00gpdh364 OncoMark (Ireland)'),
(19643, 'https://ror.org/02zy1d441', 'no_lang_code', 1, 'https://ror.org/02zy1d441 Sensap (Greece)'),
(19644, 'https://ror.org/02h0hx086', 'no_lang_code', 1, 'https://ror.org/02h0hx086 Predict (France)'),
(19645, 'https://ror.org/00qfm6q04', 'en', 1, 'https://ror.org/00qfm6q04 Pennsylvania Department of Drug and Alcohol Programs'),
(19646, 'https://ror.org/00smnxt90', 'no_lang_code', 1, 'https://ror.org/00smnxt90 pH Matter (United States)'),
(19647, 'https://ror.org/039neah40', 'en', 1, 'https://ror.org/039neah40 Practical Action'),
(19648, 'https://ror.org/051544512', 'no_lang_code', 1, 'https://ror.org/051544512 Oncovir (United States)'),
(19649, 'https://ror.org/01b755e19', 'no_lang_code', 1, 'https://ror.org/01b755e19 Pacbrake (Canada)'),
(19650, 'https://ror.org/04t5n6k60', 'no_lang_code', 1, 'https://ror.org/04t5n6k60 Praevium Research (United States)'),
(19651, 'https://ror.org/04fxhkj84', 'no_lang_code', 1, 'https://ror.org/04fxhkj84 Adlink (United Kingdom)'),
(19652, 'https://ror.org/00ykc7z09', 'no_lang_code', 1, 'https://ror.org/00ykc7z09 PragmatIC (United Kingdom)'),
(19653, 'https://ror.org/02zy3sy39', 'no_lang_code', 1, 'https://ror.org/02zy3sy39 Pacific Biomarkers (United States)'),
(19654, 'https://ror.org/00qs3ke40', 'no_lang_code', 1, 'https://ror.org/00qs3ke40 Ecolyse (United States)'),
(19655, 'https://ror.org/04x85at27', 'en', 1, 'https://ror.org/04x85at27 Pacific Environment'),
(19656, 'https://ror.org/01g9vka88', 'en', 1, 'https://ror.org/01g9vka88 College Medical Center'),
(19657, 'https://ror.org/05pbbmz23', 'en', 1, 'https://ror.org/05pbbmz23 Bureau du Conseil privé Privy Council Office'),
(19658, 'https://ror.org/02ktv4k43', 'no_lang_code', 1, 'https://ror.org/02ktv4k43 Pacific Insight Electronics (Canada)'),
(19659, 'https://ror.org/03kytw120', 'no_lang_code', 1, 'https://ror.org/03kytw120 Pro Optica (Romania)'),
(19660, 'https://ror.org/0576nnr74', 'en', 1, 'https://ror.org/0576nnr74 Pacific Union College'),
(19661, 'https://ror.org/044wgre19', 'no_lang_code', 1, 'https://ror.org/044wgre19 Octane Wireless (United States)'),
(19662, 'https://ror.org/05ehb7y93', 'no_lang_code', 1, 'https://ror.org/05ehb7y93 PageFlip (United States)'),
(19663, 'https://ror.org/0063qh129', 'no_lang_code', 1, 'https://ror.org/0063qh129 Hungarian Electricity Private (Hungary)'),
(19664, 'https://ror.org/00wtp2z59', 'en', 1, 'https://ror.org/00wtp2z59 Palestinian Energy and Environment Research Center'),
(19665, 'https://ror.org/03txgdk33', 'no_lang_code', 1, 'https://ror.org/03txgdk33 Probetex (United States)'),
(19666, 'https://ror.org/00ekyfe59', 'en', 1, 'https://ror.org/00ekyfe59 Palestinian Hydrology Group مجموعة الهيدرولوجيين الفلسطينيين'),
(19667, 'https://ror.org/01mw43m66', 'no_lang_code', 1, 'https://ror.org/01mw43m66 Pallas (Germany)'),
(19668, 'https://ror.org/010m84w02', 'no_lang_code', 1, 'https://ror.org/010m84w02 Helix Biopharma (Canada)'),
(19669, 'https://ror.org/01qd74814', 'no_lang_code', 1, 'https://ror.org/01qd74814 Porifera (United States)'),
(19670, 'https://ror.org/04hmkr267', 'no_lang_code', 1, 'https://ror.org/04hmkr267 Onefive (Switzerland)'),
(19671, 'https://ror.org/01c1hh988', 'no_lang_code', 1, 'https://ror.org/01c1hh988 PalmSens (Netherlands)'),
(19672, 'https://ror.org/05fhkjk84', 'no_lang_code', 1, 'https://ror.org/05fhkjk84 Onteca (United Kingdom)'),
(19673, 'https://ror.org/00n2m9w05', 'no_lang_code', 1, 'https://ror.org/00n2m9w05 ProBiotix (United States)'),
(19674, 'https://ror.org/02sj6gg16', 'no_lang_code', 1, 'https://ror.org/02sj6gg16 Pharmaplant (Germany)'),
(19675, 'https://ror.org/02t1zaz23', 'no_lang_code', 1, 'https://ror.org/02t1zaz23 Procarta Biosystems (United Kingdom)'),
(19676, 'https://ror.org/043f17j87', 'no_lang_code', 1, 'https://ror.org/043f17j87 Pre Chasm Research Limited (United Kingdom)'),
(19677, 'https://ror.org/0232v5h12', 'no_lang_code', 1, 'https://ror.org/0232v5h12 PharmaReview Corporation'),
(19678, 'https://ror.org/05552se64', 'no_lang_code', 1, 'https://ror.org/05552se64 Proceed (United States)'),
(19679, 'https://ror.org/02xf01n45', 'en', 1, 'https://ror.org/02xf01n45 Palo Alto Institute'),
(19680, 'https://ror.org/03me22p27', 'no_lang_code', 1, 'https://ror.org/03me22p27 ProCertus BioPharm (United States)'),
(19681, 'https://ror.org/04c2yfj62', 'no_lang_code', 1, 'https://ror.org/04c2yfj62 Precision BioLogic (Canada)'),
(19682, 'https://ror.org/00crwr158', 'en', 1, 'https://ror.org/00crwr158 Palomar College'),
(19683, 'https://ror.org/001qp3c53', 'no_lang_code', 1, 'https://ror.org/001qp3c53 Procoat Tecnologias (Spain)'),
(19684, 'https://ror.org/034frgp20', 'no_lang_code', 1, 'https://ror.org/034frgp20 TE Connectivity (United States)'),
(19685, 'https://ror.org/01yj2ng88', 'no_lang_code', 1, 'https://ror.org/01yj2ng88 ProControl (Italy)');
INSERT INTO `rors` VALUES
(19686, 'https://ror.org/00t0n4y22', 'no_lang_code', 1, 'https://ror.org/00t0n4y22 PaneraTech (United States)'),
(19687, 'https://ror.org/04djzg510', 'no_lang_code', 1, 'https://ror.org/04djzg510 Procter & Gamble (Switzerland)'),
(19688, 'https://ror.org/01tdcdz60', 'no_lang_code', 1, 'https://ror.org/01tdcdz60 Procter & Gamble (Italy)'),
(19689, 'https://ror.org/05k1xfg56', 'no_lang_code', 1, 'https://ror.org/05k1xfg56 Pharos International (Belgium)'),
(19690, 'https://ror.org/00xpsm226', 'no_lang_code', 1, 'https://ror.org/00xpsm226 Grupo Panorama (Spain)'),
(19691, 'https://ror.org/0197se455', 'no_lang_code', 1, 'https://ror.org/0197se455 Product Innovation and Engineering (United States)'),
(19692, 'https://ror.org/04yytzs50', 'no_lang_code', 1, 'https://ror.org/04yytzs50 Avaya (Israel)'),
(19693, 'https://ror.org/04y784b90', 'no_lang_code', 1, 'https://ror.org/04y784b90 Precision Research (United States)'),
(19694, 'https://ror.org/018a3we97', 'no_lang_code', 1, 'https://ror.org/018a3we97 RAFT Solutions (United Kingdom)'),
(19695, 'https://ror.org/02g6vys92', 'no_lang_code', 1, 'https://ror.org/02g6vys92 PFP Cybersecurity (United States)'),
(19696, 'https://ror.org/01f51hc20', 'en', 1, 'https://ror.org/01f51hc20 State Agency for the Prevention of Alcohol Related Problems'),
(19697, 'https://ror.org/0593ysv62', 'no_lang_code', 1, 'https://ror.org/0593ysv62 Rainbow Photonics (Switzerland)'),
(19698, 'https://ror.org/02wnmt242', 'no_lang_code', 1, 'https://ror.org/02wnmt242 PhaseBio Pharmaceuticals (United States)'),
(19699, 'https://ror.org/00n4nbk77', 'en', 1, 'https://ror.org/00n4nbk77 National Archives of Estonia Rahvusarhiiv'),
(19700, 'https://ror.org/01s3yh696', 'no_lang_code', 1, 'https://ror.org/01s3yh696 Phase Motion Control (Italy)'),
(19701, 'https://ror.org/020vpzw85', 'no_lang_code', 1, 'https://ror.org/020vpzw85 PhaseSpace (United Kingdom)'),
(19702, 'https://ror.org/03bd77x85', 'no_lang_code', 1, 'https://ror.org/03bd77x85 Raisio (Finland)'),
(19703, 'https://ror.org/03gz60y52', 'pt', 1, 'https://ror.org/03gz60y52 Raiz - Instituto De Investigação Da Floresta E Papel'),
(19704, 'https://ror.org/041xceh77', 'no_lang_code', 1, 'https://ror.org/041xceh77 Paques (Netherlands)'),
(19705, 'https://ror.org/044hjch50', 'no_lang_code', 1, 'https://ror.org/044hjch50 Phasex (United States)'),
(19706, 'https://ror.org/00w3adw05', 'no_lang_code', 1, 'https://ror.org/00w3adw05 Ramboll (Denmark)'),
(19707, 'https://ror.org/04yzhbz69', 'no_lang_code', 1, 'https://ror.org/04yzhbz69 Produtec (Germany)'),
(19708, 'https://ror.org/05cckd696', 'no_lang_code', 1, 'https://ror.org/05cckd696 PCAS (France)'),
(19709, 'https://ror.org/03j2kra17', 'no_lang_code', 1, 'https://ror.org/03j2kra17 Prodyne (United States)'),
(19710, 'https://ror.org/0551j4575', 'no_lang_code', 1, 'https://ror.org/0551j4575 Parabon Computation (United States)'),
(19711, 'https://ror.org/027z1kr85', 'no_lang_code', 1, 'https://ror.org/027z1kr85 PhenoSystems (Belgium)'),
(19712, 'https://ror.org/00g5nn676', 'en', 1, 'https://ror.org/00g5nn676 Phi Theta Kappa Honor Society'),
(19713, 'https://ror.org/05av3kx76', 'no_lang_code', 1, 'https://ror.org/05av3kx76 Ramon.Space (Israel)'),
(19714, 'https://ror.org/03cze4377', 'no_lang_code', 1, 'https://ror.org/03cze4377 Power Curbers (United States)'),
(19715, 'https://ror.org/04f8nq106', 'no_lang_code', 1, 'https://ror.org/04f8nq106 PHIMECA (France)'),
(19716, 'https://ror.org/02krbtc48', 'no_lang_code', 1, 'https://ror.org/02krbtc48 Paradigm Pharmaceuticals (United States)'),
(19717, 'https://ror.org/02jewd384', 'no_lang_code', 1, 'https://ror.org/02jewd384 Phil Jones Associates (United Kingdom)'),
(19718, 'https://ror.org/00w84v084', 'no_lang_code', 1, 'https://ror.org/00w84v084 PSA (United States)'),
(19719, 'https://ror.org/05gtkhg75', 'no_lang_code', 1, 'https://ror.org/05gtkhg75 Predictek (United States)'),
(19720, 'https://ror.org/05jybk243', 'en', 1, 'https://ror.org/05jybk243 Professional Engineers Ontario'),
(19721, 'https://ror.org/05pgmqf50', 'no_lang_code', 1, 'https://ror.org/05pgmqf50 Profile Associates (United States)'),
(19722, 'https://ror.org/05sfyk691', 'en', 1, 'https://ror.org/05sfyk691 Department of Behavioral Health and Intellectual Disability Services'),
(19723, 'https://ror.org/01cs05k22', 'no_lang_code', 1, 'https://ror.org/01cs05k22 Belit (Serbia)'),
(19724, 'https://ror.org/03cssbw37', 'no_lang_code', 1, 'https://ror.org/03cssbw37 Parallel Consulting (United States)'),
(19725, 'https://ror.org/03pca2t30', 'en', 1, 'https://ror.org/03pca2t30 Presbyterian Medical Services'),
(19726, 'https://ror.org/04gka6q50', 'en', 1, 'https://ror.org/04gka6q50 Presbyterian St. Luke''s Medical Center'),
(19727, 'https://ror.org/04rktjw27', 'no_lang_code', 1, 'https://ror.org/04rktjw27 Profusa (United States)'),
(19728, 'https://ror.org/04pf6mc33', 'en', 1, 'https://ror.org/04pf6mc33 Maine School Administrative District 1'),
(19729, 'https://ror.org/05yd5nz87', 'no_lang_code', 1, 'https://ror.org/05yd5nz87 Glintt (Portugal)'),
(19730, 'https://ror.org/006zfr810', 'en', 1, 'https://ror.org/006zfr810 Philippine Educational Theater Association'),
(19731, 'https://ror.org/00qq0vj26', 'no_lang_code', 1, 'https://ror.org/00qq0vj26 Paraytec (United Kingdom)'),
(19732, 'https://ror.org/015avwq19', 'no_lang_code', 1, 'https://ror.org/015avwq19 Resoltech (France)'),
(19733, 'https://ror.org/040cwqt59', 'no_lang_code', 1, 'https://ror.org/040cwqt59 Pemu (Hungary)'),
(19734, 'https://ror.org/03njk0639', 'no_lang_code', 1, 'https://ror.org/03njk0639 Rangen (United States)'),
(19735, 'https://ror.org/05wgv9z07', 'no_lang_code', 1, 'https://ror.org/05wgv9z07 Resonant Sensors (United States)'),
(19736, 'https://ror.org/05q2q5n15', 'no_lang_code', 1, 'https://ror.org/05q2q5n15 Progis Software (Austria)'),
(19737, 'https://ror.org/01hhm9k47', 'en', 1, 'https://ror.org/01hhm9k47 Parent Project Muscular Dystrophy'),
(19738, 'https://ror.org/02zrx8k78', 'no_lang_code', 1, 'https://ror.org/02zrx8k78 Resonon (United States)'),
(19739, 'https://ror.org/03c922h13', 'no_lang_code', 1, 'https://ror.org/03c922h13 Xerox (United Kingdom)'),
(19740, 'https://ror.org/01rswjc57', 'no_lang_code', 1, 'https://ror.org/01rswjc57 Philips (Spain)'),
(19741, 'https://ror.org/039szfp14', 'en', 1, 'https://ror.org/039szfp14 Ranken Technical College'),
(19742, 'https://ror.org/05j7bes85', 'no_lang_code', 1, 'https://ror.org/05j7bes85 Progress Printing (United States)'),
(19743, 'https://ror.org/03ct1tp35', 'no_lang_code', 1, 'https://ror.org/03ct1tp35 Progressive Energy (United Kingdom)'),
(19744, 'https://ror.org/002sg8b56', 'no_lang_code', 1, 'https://ror.org/002sg8b56 Resource (United States)'),
(19745, 'https://ror.org/00r8rhe65', 'en', 1, 'https://ror.org/00r8rhe65 Progressive Life Center'),
(19746, 'https://ror.org/05qqqz947', 'en', 1, 'https://ror.org/05qqqz947 Ohio Development Services Agency'),
(19747, 'https://ror.org/01e8sqr65', 'en', 1, 'https://ror.org/01e8sqr65 Parent Support Network of Rhode Island'),
(19748, 'https://ror.org/03xaemp51', 'no_lang_code', 1, 'https://ror.org/03xaemp51 Phoebus Optoelectronics (United States)'),
(19749, 'https://ror.org/00shp5a81', 'no_lang_code', 1, 'https://ror.org/00shp5a81 Rapanelli Fioravante (Italy)'),
(19750, 'https://ror.org/01n1wka83', 'en', 1, 'https://ror.org/01n1wka83 Parent/Professional Advocacy League'),
(19751, 'https://ror.org/059srqj16', 'en', 1, 'https://ror.org/059srqj16 Responsive Centers For Psychology & Learning'),
(19752, 'https://ror.org/01p5m8335', 'no_lang_code', 1, 'https://ror.org/01p5m8335 Rapp (Switzerland)'),
(19753, 'https://ror.org/00sa21z63', 'no_lang_code', 1, 'https://ror.org/00sa21z63 Rapport (United States)'),
(19754, 'https://ror.org/05323ve69', 'no_lang_code', 1, 'https://ror.org/05323ve69 RetroVirox (United States)'),
(19755, 'https://ror.org/02sr8z564', 'no_lang_code', 1, 'https://ror.org/02sr8z564 Northrop Grumman (Norway)'),
(19756, 'https://ror.org/02vdg3j11', 'no_lang_code', 1, 'https://ror.org/02vdg3j11 Rational Biotechnology (United States)'),
(19757, 'https://ror.org/01sg34z40', 'fr', 1, 'https://ror.org/01sg34z40 Réunion des musées nationaux Grand Palais'),
(19758, 'https://ror.org/04z7k0065', 'no_lang_code', 1, 'https://ror.org/04z7k0065 Phoenix Contact (Germany)'),
(19759, 'https://ror.org/036z4j470', 'no_lang_code', 1, 'https://ror.org/036z4j470 Systems, Applications & Products in Data Processing (Switzerland)'),
(19760, 'https://ror.org/02vmfn041', 'en', 1, 'https://ror.org/02vmfn041 Phoenix Programs'),
(19761, 'https://ror.org/02cdhc958', 'no_lang_code', 1, 'https://ror.org/02cdhc958 Parker Hannifin (United Kingdom)'),
(19762, 'https://ror.org/055214t07', 'no_lang_code', 1, 'https://ror.org/055214t07 ProImmune (United Kingdom)'),
(19763, 'https://ror.org/015pd1843', 'no_lang_code', 1, 'https://ror.org/015pd1843 Phoenix Scientific Industries (United Kingdom)'),
(19764, 'https://ror.org/03gh8yg14', 'en', 1, 'https://ror.org/03gh8yg14 Project Oceanology'),
(19765, 'https://ror.org/04789m930', 'no_lang_code', 1, 'https://ror.org/04789m930 SNL (Sweden)'),
(19766, 'https://ror.org/04c5rqn31', 'no_lang_code', 1, 'https://ror.org/04c5rqn31 Projection Plasma Système (France)'),
(19767, 'https://ror.org/04ceqtd27', 'no_lang_code', 1, 'https://ror.org/04ceqtd27 Phoenix Systems (United States)'),
(19768, 'https://ror.org/00pefpf42', 'no_lang_code', 1, 'https://ror.org/00pefpf42 RH Lyon (United States)'),
(19769, 'https://ror.org/01crqqh49', 'en', 1, 'https://ror.org/01crqqh49 Parmenides Foundation'),
(19770, 'https://ror.org/03y3mds25', 'no_lang_code', 1, 'https://ror.org/03y3mds25 Phoenix Technologies (Canada)'),
(19771, 'https://ror.org/036dhjm48', 'no_lang_code', 1, 'https://ror.org/036dhjm48 Pars Makina (Turkey)'),
(19772, 'https://ror.org/046dsb945', 'no_lang_code', 1, 'https://ror.org/046dsb945 Cicor (Germany)'),
(19773, 'https://ror.org/02s3p6s69', 'en', 1, 'https://ror.org/02s3p6s69 Projects in Motion'),
(19774, 'https://ror.org/02pse8162', 'en', 1, 'https://ror.org/02pse8162 RWI – Leibniz Institute for Economic Research RWI – Leibniz-Institut für Wirtschaftsforschung'),
(19775, 'https://ror.org/01wa93237', 'no_lang_code', 1, 'https://ror.org/01wa93237 Raymor (Canada)'),
(19776, 'https://ror.org/01ep0vp31', 'no_lang_code', 1, 'https://ror.org/01ep0vp31 Rheinmetall (Germany)'),
(19777, 'https://ror.org/03fzdf593', 'de', 1, 'https://ror.org/03fzdf593 PROJEKTkompetenz'),
(19778, 'https://ror.org/02rj52618', 'no_lang_code', 1, 'https://ror.org/02rj52618 RheoSense (United States)'),
(19779, 'https://ror.org/01f1vsw14', 'no_lang_code', 1, 'https://ror.org/01f1vsw14 Raytek (Germany)'),
(19780, 'https://ror.org/01fk6s398', 'no_lang_code', 1, 'https://ror.org/01fk6s398 Gilead Sciences (Canada)'),
(19781, 'https://ror.org/015yks327', 'en', 1, 'https://ror.org/015yks327 Rhode Island Coalition Against Domestic Violence'),
(19782, 'https://ror.org/035r6p857', 'en', 1, 'https://ror.org/035r6p857 Rhode Island League of Cities and Towns'),
(19783, 'https://ror.org/010wna455', 'no_lang_code', 1, 'https://ror.org/010wna455 ELFE Group (Greece) Ελληνικά Λιπάσματα και Χημικά'),
(19784, 'https://ror.org/00s35gs08', 'no_lang_code', 1, 'https://ror.org/00s35gs08 Couniniotis Group (Greece)'),
(19785, 'https://ror.org/01g9fy909', 'no_lang_code', 1, 'https://ror.org/01g9fy909 ProAmpac (Canada)'),
(19786, 'https://ror.org/04zvx4d72', 'en', 1, 'https://ror.org/04zvx4d72 Royal Commission on the Ancient and Historical Monuments of Wales'),
(19787, 'https://ror.org/044g7e667', 'no_lang_code', 1, 'https://ror.org/044g7e667 R-Biopharm (United Kingdom)'),
(19788, 'https://ror.org/03r885q17', 'no_lang_code', 1, 'https://ror.org/03r885q17 Prolog Development Center'),
(19789, 'https://ror.org/038k3z155', 'no_lang_code', 1, 'https://ror.org/038k3z155 RDM Group (United Kingdom)'),
(19790, 'https://ror.org/038qg8k28', 'no_lang_code', 1, 'https://ror.org/038qg8k28 Prologia (France)'),
(19791, 'https://ror.org/041r3wk12', 'en', 1, 'https://ror.org/041r3wk12 Partnership for Food Safety Education'),
(19792, 'https://ror.org/05v3gve10', 'no_lang_code', 1, 'https://ror.org/05v3gve10 Prolon Control Systems (Denmark)'),
(19793, 'https://ror.org/04e9s0y96', 'en', 1, 'https://ror.org/04e9s0y96 Partnership for Prevention'),
(19794, 'https://ror.org/059q1xd66', 'no_lang_code', 1, 'https://ror.org/059q1xd66 RE Hydrogen (United Kingdom)'),
(19795, 'https://ror.org/05t6b6536', 'no_lang_code', 1, 'https://ror.org/05t6b6536 PhotoBiotics (United Kingdom)'),
(19796, 'https://ror.org/05sd0rs38', 'no_lang_code', 1, 'https://ror.org/05sd0rs38 Reach Technologies (Canada)'),
(19797, 'https://ror.org/04t57g552', 'no_lang_code', 1, 'https://ror.org/04t57g552 Reaction Engines (United Kingdom)'),
(19798, 'https://ror.org/038m8ky73', 'no_lang_code', 1, 'https://ror.org/038m8ky73 Promau Engineering (Italy)'),
(19799, 'https://ror.org/00jkh1375', 'no_lang_code', 1, 'https://ror.org/00jkh1375 Prometheus Biosciences (United States)'),
(19800, 'https://ror.org/01t8zd103', 'en', 1, 'https://ror.org/01t8zd103 Reading Borough Council'),
(19801, 'https://ror.org/046f4dc56', 'en', 1, 'https://ror.org/046f4dc56 Dynastee'),
(19802, 'https://ror.org/00qnt7d66', 'no_lang_code', 1, 'https://ror.org/00qnt7d66 Photometrics (United States)'),
(19803, 'https://ror.org/02tg03m61', 'no_lang_code', 1, 'https://ror.org/02tg03m61 Photon Design (United Kingdom)'),
(19804, 'https://ror.org/031xrtf85', 'no_lang_code', 1, 'https://ror.org/031xrtf85 PassivSystems (United Kingdom)'),
(19805, 'https://ror.org/00h0zfe78', 'no_lang_code', 1, 'https://ror.org/00h0zfe78 Prometni institut Ljubljana'),
(19806, 'https://ror.org/039je2z22', 'no_lang_code', 1, 'https://ror.org/039je2z22 PathoFinder (Netherlands)'),
(19807, 'https://ror.org/02bwmj336', 'no_lang_code', 1, 'https://ror.org/02bwmj336 NSK (United Kingdom)'),
(19808, 'https://ror.org/0138xww93', 'no_lang_code', 1, 'https://ror.org/0138xww93 Prism Informatics (Italy)'),
(19809, 'https://ror.org/02bz32326', 'en', 1, 'https://ror.org/02bz32326 Philadelphia Education Fund'),
(19810, 'https://ror.org/008v1x891', 'en', 1, 'https://ror.org/008v1x891 Pathways to Housing'),
(19811, 'https://ror.org/05ref2c25', 'no_lang_code', 1, 'https://ror.org/05ref2c25 Valacta (Canada)'),
(19812, 'https://ror.org/01gdx5384', 'no_lang_code', 1, 'https://ror.org/01gdx5384 Ribocon (Germany)'),
(19813, 'https://ror.org/009b3qm07', 'en', 1, 'https://ror.org/009b3qm07 PAU Education'),
(19814, 'https://ror.org/04t6erm02', 'no_lang_code', 1, 'https://ror.org/04t6erm02 Infor (United States)'),
(19815, 'https://ror.org/00phhaz14', 'no_lang_code', 1, 'https://ror.org/00phhaz14 Rizzo International (United States)'),
(19816, 'https://ror.org/02kqgpw05', 'no_lang_code', 1, 'https://ror.org/02kqgpw05 Photonic Knowledge (Canada)'),
(19817, 'https://ror.org/0106dk572', 'nl', 1, 'https://ror.org/0106dk572 Promotie Binnenvaart Vlaanderen Promotion Office for Inland Navigation in Flanders'),
(19818, 'https://ror.org/055zfv570', 'no_lang_code', 1, 'https://ror.org/055zfv570 Brookes Publishing (United States)'),
(19819, 'https://ror.org/03pxrb028', 'no_lang_code', 1, 'https://ror.org/03pxrb028 Photonic Science (United Kingdom)'),
(19820, 'https://ror.org/05v4wt877', 'en', 1, 'https://ror.org/05v4wt877 Paul Watkiss Associates'),
(19821, 'https://ror.org/025tyv665', 'no_lang_code', 1, 'https://ror.org/025tyv665 Pavemetrics Systems (Canada)'),
(19822, 'https://ror.org/05ba61w94', 'no_lang_code', 1, 'https://ror.org/05ba61w94 Photonics Bretagne (France)'),
(19823, 'https://ror.org/058xhgv89', 'no_lang_code', 1, 'https://ror.org/058xhgv89 Railinfratrust (Netherlands)'),
(19824, 'https://ror.org/04btw2k35', 'no_lang_code', 1, 'https://ror.org/04btw2k35 Reagecon (Ireland)'),
(19825, 'https://ror.org/04pbdwx95', 'no_lang_code', 1, 'https://ror.org/04pbdwx95 Opway (Portugal)'),
(19826, 'https://ror.org/0142kd761', 'it', 1, 'https://ror.org/0142kd761 Ricerca e Progetto'),
(19827, 'https://ror.org/0425hsv68', 'no_lang_code', 1, 'https://ror.org/0425hsv68 PaxVax (United States)'),
(19828, 'https://ror.org/05nvnp350', 'en', 1, 'https://ror.org/05nvnp350 Richmond Area Multi-Services'),
(19829, 'https://ror.org/0271jbv59', 'no_lang_code', 1, 'https://ror.org/0271jbv59 Proactive Oral Solutions (United States)'),
(19830, 'https://ror.org/05q9vjc76', 'no_lang_code', 1, 'https://ror.org/05q9vjc76 Richmond Chemical (United States)'),
(19831, 'https://ror.org/03pwm1612', 'no_lang_code', 1, 'https://ror.org/03pwm1612 Allied Vision Technologies (Canada)'),
(19832, 'https://ror.org/015b1qg33', 'no_lang_code', 1, 'https://ror.org/015b1qg33 PBL Assay Science (United States)'),
(19833, 'https://ror.org/00v6srm21', 'no_lang_code', 1, 'https://ror.org/00v6srm21 PBLH International Consulting'),
(19834, 'https://ror.org/024h3kh50', 'no_lang_code', 1, 'https://ror.org/024h3kh50 Ridan (Poland)'),
(19835, 'https://ror.org/05jthnf79', 'no_lang_code', 1, 'https://ror.org/05jthnf79 PBS Turbo (Czechia)'),
(19836, 'https://ror.org/02s47bv30', 'no_lang_code', 1, 'https://ror.org/02s47bv30 Prosolia (United States)'),
(19837, 'https://ror.org/04ppn0b98', 'no_lang_code', 1, 'https://ror.org/04ppn0b98 Rebellion (United Kingdom)'),
(19838, 'https://ror.org/05bzhd221', 'no_lang_code', 1, 'https://ror.org/05bzhd221 Ridge and Partners (United Kingdom)'),
(19839, 'https://ror.org/018krw812', 'no_lang_code', 1, 'https://ror.org/018krw812 Ridgeback (Italy)'),
(19840, 'https://ror.org/036bprp03', 'en', 1, 'https://ror.org/036bprp03 Ridgeview'),
(19841, 'https://ror.org/04776hp32', 'en', 1, 'https://ror.org/04776hp32 Prospectors & Developers Association of Canada'),
(19842, 'https://ror.org/04yd2kr04', 'no_lang_code', 1, 'https://ror.org/04yd2kr04 PCB Piezotronics (United States)'),
(19843, 'https://ror.org/053qrc350', 'no_lang_code', 1, 'https://ror.org/053qrc350 Riegger Diamantwerkzeuge (Germany)'),
(19844, 'https://ror.org/02by1h611', 'no_lang_code', 1, 'https://ror.org/02by1h611 Prospektiker (Spain)'),
(19845, 'https://ror.org/033a14h05', 'no_lang_code', 1, 'https://ror.org/033a14h05 Ball (Germany)'),
(19846, 'https://ror.org/04zg05e03', 'no_lang_code', 1, 'https://ror.org/04zg05e03 Autoneum (Switzerland)'),
(19847, 'https://ror.org/05wh3xd46', 'en', 1, 'https://ror.org/05wh3xd46 Riga Graduate School of Law Rygos aukštoji teisės mokykla Рижская высшая школа права'),
(19848, 'https://ror.org/05xeh0r58', 'no_lang_code', 1, 'https://ror.org/05xeh0r58 PhytoCeutica (United States)'),
(19849, 'https://ror.org/01qv0ss31', 'no_lang_code', 1, 'https://ror.org/01qv0ss31 Reconnecting Youth (United States)'),
(19850, 'https://ror.org/03endhe31', 'en', 1, 'https://ror.org/03endhe31 PDC-ARGOS'),
(19851, 'https://ror.org/05q1xcs51', 'no_lang_code', 1, 'https://ror.org/05q1xcs51 PDS Biotechnology (United States)'),
(19852, 'https://ror.org/0465f2g39', 'no_lang_code', 1, 'https://ror.org/0465f2g39 RBC Investor & Treasury Services (France)'),
(19853, 'https://ror.org/01zv5dm50', 'no_lang_code', 1, 'https://ror.org/01zv5dm50 PDS (United States)'),
(19854, 'https://ror.org/001f54z88', 'no_lang_code', 1, 'https://ror.org/001f54z88 Phytodata'),
(19855, 'https://ror.org/05f1mgb50', 'no_lang_code', 1, 'https://ror.org/05f1mgb50 Phytolutions (Germany)'),
(19856, 'https://ror.org/027g41b71', 'no_lang_code', 1, 'https://ror.org/027g41b71 Picanol (Belgium)'),
(19857, 'https://ror.org/02pr9jr80', 'no_lang_code', 1, 'https://ror.org/02pr9jr80 Prosys (Germany)'),
(19858, 'https://ror.org/027df5686', 'en', 1, 'https://ror.org/027df5686 Learning Ally'),
(19859, 'https://ror.org/008am1c32', 'no_lang_code', 1, 'https://ror.org/008am1c32 Recore Systems (Netherlands)'),
(19860, 'https://ror.org/03z9psf49', 'no_lang_code', 1, 'https://ror.org/03z9psf49 Protabit (United States)'),
(19861, 'https://ror.org/03kcc1a98', 'no_lang_code', 1, 'https://ror.org/03kcc1a98 Recupyl (France)'),
(19862, 'https://ror.org/01fx4ky02', 'no_lang_code', 1, 'https://ror.org/01fx4ky02 Protagen (Germany)'),
(19863, 'https://ror.org/03ex17v30', 'no_lang_code', 1, 'https://ror.org/03ex17v30 RMC Research (United States)'),
(19864, 'https://ror.org/024pjcr93', 'no_lang_code', 1, 'https://ror.org/024pjcr93 Red Electrica de Espana (Spain)'),
(19865, 'https://ror.org/00s730510', 'no_lang_code', 1, 'https://ror.org/00s730510 Soitec (France)'),
(19866, 'https://ror.org/0500ysm83', 'no_lang_code', 1, 'https://ror.org/0500ysm83 RoadNarrows (United States)'),
(19867, 'https://ror.org/025tf9d31', 'no_lang_code', 1, 'https://ror.org/025tf9d31 Red Hat (Ireland)'),
(19868, 'https://ror.org/03vyvsr30', 'en', 1, 'https://ror.org/03vyvsr30 Roane County Anti-Drug Coalition'),
(19869, 'https://ror.org/00f9r7e77', 'en', 1, 'https://ror.org/00f9r7e77 Roane State Community College'),
(19870, 'https://ror.org/013vgsx18', 'no_lang_code', 1, 'https://ror.org/013vgsx18 Protein Express (United States)'),
(19871, 'https://ror.org/02av9qc14', 'no_lang_code', 1, 'https://ror.org/02av9qc14 Protein Metrics (United States)'),
(19872, 'https://ror.org/05pbmhp44', 'en', 1, 'https://ror.org/05pbmhp44 Mediterranean Network of Basin Organisations'),
(19873, 'https://ror.org/04hy3rc65', 'no_lang_code', 1, 'https://ror.org/04hy3rc65 Red Tail Hawk Corporation (United States)'),
(19874, 'https://ror.org/028m0e381', 'no_lang_code', 1, 'https://ror.org/028m0e381 Protein Technologies (United Kingdom)'),
(19875, 'https://ror.org/03v8ncw80', 'no_lang_code', 1, 'https://ror.org/03v8ncw80 Robinson Brothers (United Kingdom)'),
(19876, 'https://ror.org/00tsz2810', 'no_lang_code', 1, 'https://ror.org/00tsz2810 Affini Technology (United Kingdom)'),
(19877, 'https://ror.org/05gfgee67', 'no_lang_code', 1, 'https://ror.org/05gfgee67 ProteinLogic (United Kingdom)'),
(19878, 'https://ror.org/04aszsx88', 'no_lang_code', 1, 'https://ror.org/04aszsx88 Robotronics (United States)'),
(19879, 'https://ror.org/043hwx747', 'no_lang_code', 1, 'https://ror.org/043hwx747 Proteome Sciences (United Kingdom)'),
(19880, 'https://ror.org/03t1pvr70', 'en', 1, 'https://ror.org/03t1pvr70 Roca'),
(19881, 'https://ror.org/009dw2t03', 'en', 1, 'https://ror.org/009dw2t03 Pima County Health Department'),
(19882, 'https://ror.org/033g2f326', 'en', 1, 'https://ror.org/033g2f326 Pima County Juvenile Court'),
(19883, 'https://ror.org/0583cna36', 'no_lang_code', 1, 'https://ror.org/0583cna36 Rochal Industries (United States)'),
(19884, 'https://ror.org/02pfzx187', 'no_lang_code', 1, 'https://ror.org/02pfzx187 Norwegian Veterinary Centre for Contract Research and Commercial Services'),
(19885, 'https://ror.org/02gwnf178', 'en', 1, 'https://ror.org/02gwnf178 Swedish Chemicals Agency'),
(19886, 'https://ror.org/05fafcp48', 'no_lang_code', 1, 'https://ror.org/05fafcp48 Golder Associates (United Kingdom)'),
(19887, 'https://ror.org/01q74hp50', 'no_lang_code', 1, 'https://ror.org/01q74hp50 Blackstone (United States)'),
(19888, 'https://ror.org/00wz3h896', 'no_lang_code', 1, 'https://ror.org/00wz3h896 RedZinc (Ireland)'),
(19889, 'https://ror.org/00axfqm84', 'en', 1, 'https://ror.org/00axfqm84 Rockland County Department of Mental Health'),
(19890, 'https://ror.org/04gs1nw86', 'no_lang_code', 1, 'https://ror.org/04gs1nw86 FiberLogix (United Kingdom)'),
(19891, 'https://ror.org/03jd2c182', 'no_lang_code', 1, 'https://ror.org/03jd2c182 REFAMED (Italy)'),
(19892, 'https://ror.org/00xag4a20', 'ca', 1, 'https://ror.org/00xag4a20 Petita i Mitjana Empresa de Catalunya'),
(19893, 'https://ror.org/02mxrwx85', 'en', 1, 'https://ror.org/02mxrwx85 Pinal Hispanic Council'),
(19894, 'https://ror.org/00k9phg42', 'no_lang_code', 1, 'https://ror.org/00k9phg42 Rockwell Automation (United Kingdom)'),
(19895, 'https://ror.org/03ktccz26', 'no_lang_code', 1, 'https://ror.org/03ktccz26 PinMed (United States)'),
(19896, 'https://ror.org/03s746s06', 'no_lang_code', 1, 'https://ror.org/03s746s06 Pinnacle Pharmaceuticals (United States)'),
(19897, 'https://ror.org/015mtjx14', 'no_lang_code', 1, 'https://ror.org/015mtjx14 RegeneMed (United States)'),
(19898, 'https://ror.org/05ejj5g23', 'no_lang_code', 1, 'https://ror.org/05ejj5g23 Pipistrel (Slovenia)'),
(19899, 'https://ror.org/05wq53m96', 'no_lang_code', 1, 'https://ror.org/05wq53m96 Rockwood Lithium (Germany)'),
(19900, 'https://ror.org/03x0e3627', 'no_lang_code', 1, 'https://ror.org/03x0e3627 Regens (Hungary)'),
(19901, 'https://ror.org/0090bh305', 'no_lang_code', 1, 'https://ror.org/0090bh305 Proveca (United Kingdom)'),
(19902, 'https://ror.org/05mbcxm36', 'no_lang_code', 1, 'https://ror.org/05mbcxm36 Almina (Portugal)'),
(19903, 'https://ror.org/02eftbv72', 'en', 1, 'https://ror.org/02eftbv72 Rocky Mountain Virology Club'),
(19904, 'https://ror.org/046107172', 'en', 1, 'https://ror.org/046107172 Providence Center'),
(19905, 'https://ror.org/059gprs28', 'no_lang_code', 1, 'https://ror.org/059gprs28 Rocky Research (United States)'),
(19906, 'https://ror.org/01bgs7g74', 'no_lang_code', 1, 'https://ror.org/01bgs7g74 Roctest (Canada)'),
(19907, 'https://ror.org/0570cz029', 'no_lang_code', 1, 'https://ror.org/0570cz029 Rodenburg Biopolymers (Netherlands)'),
(19908, 'https://ror.org/019qrvs61', 'no_lang_code', 1, 'https://ror.org/019qrvs61 Pittards (United Kingdom)'),
(19909, 'https://ror.org/026b2vr33', 'no_lang_code', 1, 'https://ror.org/026b2vr33 Rofin (United Kingdom)'),
(19910, 'https://ror.org/05dgxmx67', 'en', 1, 'https://ror.org/05dgxmx67 Romanian Authority For Nuclear Activities'),
(19911, 'https://ror.org/01rzvxf60', 'en', 1, 'https://ror.org/01rzvxf60 Pittsburgh AIDS Task Force'),
(19912, 'https://ror.org/03ms28n48', 'no_lang_code', 1, 'https://ror.org/03ms28n48 Pixelligent (United States)'),
(19913, 'https://ror.org/01m9ht412', 'no_lang_code', 1, 'https://ror.org/01m9ht412 První Brněnská Strojírna Velká Bíteš (Czechia)'),
(19914, 'https://ror.org/0502t5s28', 'en', 1, 'https://ror.org/0502t5s28 International Research Institute of Stavanger'),
(19915, 'https://ror.org/01kh3en48', 'no_lang_code', 1, 'https://ror.org/01kh3en48 Prysmian Group (Italy)'),
(19916, 'https://ror.org/04j6csa16', 'en', 1, 'https://ror.org/04j6csa16 Rogers County Volunteers for Youth'),
(19917, 'https://ror.org/03nhf7k19', 'no_lang_code', 1, 'https://ror.org/03nhf7k19 PJH (United Kingdom)'),
(19918, 'https://ror.org/02znknb21', 'no_lang_code', 1, 'https://ror.org/02znknb21 Prysmian Group (United Kingdom)'),
(19919, 'https://ror.org/036nzz613', 'en', 1, 'https://ror.org/036nzz613 Places For People'),
(19920, 'https://ror.org/02fm5cr50', 'no_lang_code', 1, 'https://ror.org/02fm5cr50 Rohrer (Switzerland)'),
(19921, 'https://ror.org/03ghr6q93', 'no_lang_code', 1, 'https://ror.org/03ghr6q93 PLANCO Consulting (Germany)'),
(19922, 'https://ror.org/02fwj4283', 'pl', 1, 'https://ror.org/02fwj4283 Geoscience and Marine Research & Consulting Przedsiębiorstwo Badań i Doradztwa'),
(19923, 'https://ror.org/02nanqt16', 'no_lang_code', 1, 'https://ror.org/02nanqt16 Planer (United Kingdom)'),
(19924, 'https://ror.org/0294yf460', 'no_lang_code', 1, 'https://ror.org/0294yf460 France Rol (France)'),
(19925, 'https://ror.org/01rr8w476', 'no_lang_code', 1, 'https://ror.org/01rr8w476 Przedsiębiorstwo Innowacyjno Wdrożeniowe Complex (Poland)'),
(19926, 'https://ror.org/02ekwm539', 'no_lang_code', 1, 'https://ror.org/02ekwm539 Planet'),
(19927, 'https://ror.org/03rhn0886', 'en', 1, 'https://ror.org/03rhn0886 Regional Youth Adult Social Action Partnership'),
(19928, 'https://ror.org/04tzj1935', 'no_lang_code', 1, 'https://ror.org/04tzj1935 Planet'),
(19929, 'https://ror.org/05d4tza70', 'no_lang_code', 1, 'https://ror.org/05d4tza70 Roland Hill (United Kingdom)'),
(19930, 'https://ror.org/02cpp6046', 'en', 1, 'https://ror.org/02cpp6046 Regional Advisory and Information Centre Presov'),
(19931, 'https://ror.org/02vsbhs07', 'no_lang_code', 1, 'https://ror.org/02vsbhs07 Planetek Hellas (Greece)'),
(19932, 'https://ror.org/005s79z43', 'no_lang_code', 1, 'https://ror.org/005s79z43 Rolatube Technology (United Kingdom)'),
(19933, 'https://ror.org/04344z734', 'no_lang_code', 1, 'https://ror.org/04344z734 Romax Technology (United Kingdom)'),
(19934, 'https://ror.org/034p8wt80', 'no_lang_code', 1, 'https://ror.org/034p8wt80 Industrial Solar (Germany)'),
(19935, 'https://ror.org/04v7h0g25', 'no_lang_code', 1, 'https://ror.org/04v7h0g25 Plant Bioscience Limited (United Kingdom)'),
(19936, 'https://ror.org/00nn34t03', 'no_lang_code', 1, 'https://ror.org/00nn34t03 Innovation Ecology (Israel)'),
(19937, 'https://ror.org/0334dng85', 'no_lang_code', 1, 'https://ror.org/0334dng85 Agroknow (Greece)'),
(19938, 'https://ror.org/04spmxm14', 'en', 1, 'https://ror.org/04spmxm14 Plant Protection Institute'),
(19939, 'https://ror.org/04dge0m73', 'no_lang_code', 1, 'https://ror.org/04dge0m73 Psutec (Belgium)'),
(19940, 'https://ror.org/009ephb22', 'no_lang_code', 1, 'https://ror.org/009ephb22 Rood Wit Blauw Water Services (Netherlands)'),
(19941, 'https://ror.org/039f5pg25', 'it', 1, 'https://ror.org/039f5pg25 Azienda Sanitaria Locale Alessandria'),
(19942, 'https://ror.org/05g223j58', 'no_lang_code', 1, 'https://ror.org/05g223j58 Plant (United States)'),
(19943, 'https://ror.org/031vt9q97', 'en', 1, 'https://ror.org/031vt9q97 Brønnøysund Register Centre'),
(19944, 'https://ror.org/03pq0dv21', 'no_lang_code', 1, 'https://ror.org/03pq0dv21 Vecima Technology (United Kingdom)'),
(19945, 'https://ror.org/03wtgv294', 'no_lang_code', 1, 'https://ror.org/03wtgv294 Regulus (Czechia)'),
(19946, 'https://ror.org/042dcve90', 'en', 1, 'https://ror.org/042dcve90 Rose State College'),
(19947, 'https://ror.org/03kytre74', 'no_lang_code', 1, 'https://ror.org/03kytre74 Roslin Cells (United Kingdom)'),
(19948, 'https://ror.org/0493fng90', 'no_lang_code', 1, 'https://ror.org/0493fng90 Rosti (Denmark)'),
(19949, 'https://ror.org/027qm5t47', 'no_lang_code', 1, 'https://ror.org/027qm5t47 FitzGerald Nurseries (Ireland)'),
(19950, 'https://ror.org/05vmcgv71', 'no_lang_code', 1, 'https://ror.org/05vmcgv71 Dana (Germany)'),
(19951, 'https://ror.org/05sps8h71', 'no_lang_code', 1, 'https://ror.org/05sps8h71 Reischauer (Germany)'),
(19952, 'https://ror.org/00vspj326', 'no_lang_code', 1, 'https://ror.org/00vspj326 Plantechno (Italy)'),
(19953, 'https://ror.org/04jxt9a41', 'no_lang_code', 1, 'https://ror.org/04jxt9a41 Plasma Clean (United Kingdom)'),
(19954, 'https://ror.org/0311x3t35', 'no_lang_code', 1, 'https://ror.org/0311x3t35 REL (United States)'),
(19955, 'https://ror.org/02tdw9g37', 'no_lang_code', 1, 'https://ror.org/02tdw9g37 Release Mobile (United Kingdom)'),
(19956, 'https://ror.org/02j7qhm81', 'no_lang_code', 1, 'https://ror.org/02j7qhm81 Alu-Releco Oy (Finland)'),
(19957, 'https://ror.org/04811ff34', 'en', 1, 'https://ror.org/04811ff34 Public Entity Risk Institute'),
(19958, 'https://ror.org/01f7yhe80', 'no_lang_code', 1, 'https://ror.org/01f7yhe80 Relight (Italy)'),
(19959, 'https://ror.org/02zmc3h95', 'en', 1, 'https://ror.org/02zmc3h95 Public Health Foundation'),
(19960, 'https://ror.org/025pjyp02', 'no_lang_code', 1, 'https://ror.org/025pjyp02 Plasma Coatings (United Kingdom)'),
(19961, 'https://ror.org/00gfbsa94', 'no_lang_code', 1, 'https://ror.org/00gfbsa94 Plasma Quest (United Kingdom)'),
(19962, 'https://ror.org/04f9fry73', 'no_lang_code', 1, 'https://ror.org/04f9fry73 Plassys (France)'),
(19963, 'https://ror.org/0174fh497', 'no_lang_code', 1, 'https://ror.org/0174fh497 Remmers Bouwchemie (Netherlands)'),
(19964, 'https://ror.org/029rkt035', 'en', 1, 'https://ror.org/029rkt035 Remote Sensing Application Center'),
(19965, 'https://ror.org/00gfany95', 'en', 1, 'https://ror.org/00gfany95 Royal Agricultural Society of England'),
(19966, 'https://ror.org/04bp6s359', 'en', 1, 'https://ror.org/04bp6s359 Association of European Science and Technology Transfer Professionals'),
(19967, 'https://ror.org/03t2yqt79', 'no_lang_code', 1, 'https://ror.org/03t2yqt79 Plastal (Italy)'),
(19968, 'https://ror.org/023cs4y60', 'no_lang_code', 1, 'https://ror.org/023cs4y60 Remote Sensing Solutions (Germany)'),
(19969, 'https://ror.org/010jcak55', 'no_lang_code', 1, 'https://ror.org/010jcak55 Plastia (Spain)'),
(19970, 'https://ror.org/04hb77r84', 'no_lang_code', 1, 'https://ror.org/04hb77r84 Plastic Electronic (Austria)'),
(19971, 'https://ror.org/0543r8412', 'en', 1, 'https://ror.org/0543r8412 Public Technology Institute'),
(19972, 'https://ror.org/02xz41712', 'en', 1, 'https://ror.org/02xz41712 Billedkunst Skolerne Det Kongelige Danske Kunstakademis Schools of Visual Arts, The Royal Danish Academy of Fine Arts'),
(19973, 'https://ror.org/03qgxnq88', 'no_lang_code', 1, 'https://ror.org/03qgxnq88 Redes Energéticas Nacionais (Portugal)'),
(19974, 'https://ror.org/05sbphk63', 'no_lang_code', 1, 'https://ror.org/05sbphk63 Plastic Flow (United States)'),
(19975, 'https://ror.org/02sh10804', 'no_lang_code', 1, 'https://ror.org/02sh10804 Future Electronics (Netherlands)'),
(19976, 'https://ror.org/01zcwem74', 'no_lang_code', 1, 'https://ror.org/01zcwem74 Post Brenhinol Royal Mail Group (United Kingdom) a'' Phuist Rìoghail'),
(19977, 'https://ror.org/02bn5bg05', 'no_lang_code', 1, 'https://ror.org/02bn5bg05 Plasticell (United Kingdom)'),
(19978, 'https://ror.org/032g46r36', 'en', 1, 'https://ror.org/032g46r36 Renal Research Institute'),
(19979, 'https://ror.org/05m4hh157', 'no_lang_code', 1, 'https://ror.org/05m4hh157 Pulkovo Observatory Пулковская обсерватория'),
(19980, 'https://ror.org/03gex3a30', 'en', 1, 'https://ror.org/03gex3a30 PlasticsEurope'),
(19981, 'https://ror.org/003r53j91', 'en', 1, 'https://ror.org/003r53j91 Royal Navy'),
(19982, 'https://ror.org/051t2wp85', 'no_lang_code', 1, 'https://ror.org/051t2wp85 Pulmotect (United States)'),
(19983, 'https://ror.org/01je02926', 'en', 1, 'https://ror.org/01je02926 Liverpool Heart and Chest Hospital NHS Trust'),
(19984, 'https://ror.org/04kpzy923', 'en', 1, 'https://ror.org/04kpzy923 Princess Alexandra Hospital NHS Trust'),
(19985, 'https://ror.org/01e9g9p17', 'en', 1, 'https://ror.org/01e9g9p17 Ysbyty Gwynedd Hospital NHS Trust'),
(19986, 'https://ror.org/04qkkdk37', 'en', 1, 'https://ror.org/04qkkdk37 Royal Oak Community Coalition'),
(19987, 'https://ror.org/03zhs2308', 'en', 1, 'https://ror.org/03zhs2308 Royal Society of Tropical Medicine and Hygiene'),
(19988, 'https://ror.org/00gknw275', 'en', 1, 'https://ror.org/00gknw275 Responsible Retailing Forum'),
(19989, 'https://ror.org/028tdwj14', 'no_lang_code', 1, 'https://ror.org/028tdwj14 RSscan International (Belgium)'),
(19990, 'https://ror.org/04ax1v403', 'no_lang_code', 1, 'https://ror.org/04ax1v403 Renson (Belgium)'),
(19991, 'https://ror.org/00sh40694', 'no_lang_code', 1, 'https://ror.org/00sh40694 Rádio e Televisão de Portugal (Portugal)'),
(19992, 'https://ror.org/02t5bjk31', 'no_lang_code', 1, 'https://ror.org/02t5bjk31 Pulsotronic (Germany)'),
(19993, 'https://ror.org/00w0e7243', 'en', 1, 'https://ror.org/00w0e7243 Renz Addiction Counseling Center'),
(19994, 'https://ror.org/05wt11w07', 'no_lang_code', 1, 'https://ror.org/05wt11w07 Pultrall (Canada)'),
(19995, 'https://ror.org/03fdxqq72', 'no_lang_code', 1, 'https://ror.org/03fdxqq72 Puracyp (United States)'),
(19996, 'https://ror.org/02m8e4g04', 'no_lang_code', 1, 'https://ror.org/02m8e4g04 RTZ Associates (United States)'),
(19997, 'https://ror.org/04zc4t851', 'en', 1, 'https://ror.org/04zc4t851 Ruby Lake Lagoon Nature Reserve Society'),
(19998, 'https://ror.org/02za70122', 'no_lang_code', 1, 'https://ror.org/02za70122 Ruhrverband (Germany)'),
(19999, 'https://ror.org/01hnk4t11', 'no_lang_code', 1, 'https://ror.org/01hnk4t11 Repotec (Austria)'),
(20000, 'https://ror.org/05abphe57', 'no_lang_code', 1, 'https://ror.org/05abphe57 Runcom Technologies (Israel)'),
(20001, 'https://ror.org/019wfwn56', 'no_lang_code', 1, 'https://ror.org/019wfwn56 Putzier Oberflächentechnik (Germany)'),
(20002, 'https://ror.org/037p78440', 'no_lang_code', 1, 'https://ror.org/037p78440 Rups Consultancy and Project Management'),
(20003, 'https://ror.org/01ehwm037', 'no_lang_code', 1, 'https://ror.org/01ehwm037 Ruskinn Technology (United Kingdom)'),
(20004, 'https://ror.org/028r5k665', 'no_lang_code', 1, 'https://ror.org/028r5k665 Platit (Switzerland)'),
(20005, 'https://ror.org/05h2sfb33', 'de', 1, 'https://ror.org/05h2sfb33 Platte Consult'),
(20006, 'https://ror.org/04pfq1012', 'no_lang_code', 1, 'https://ror.org/04pfq1012 Pyramid Technical Consultants (United States)'),
(20007, 'https://ror.org/048t8tm52', 'no_lang_code', 1, 'https://ror.org/048t8tm52 Q Bioanalytic (Germany)'),
(20008, 'https://ror.org/05j35dh88', 'no_lang_code', 1, 'https://ror.org/05j35dh88 Q Bot (United Kingdom)'),
(20009, 'https://ror.org/000wpdz03', 'no_lang_code', 1, 'https://ror.org/000wpdz03 Plaxica (United Kingdom)'),
(20010, 'https://ror.org/02h400990', 'no_lang_code', 1, 'https://ror.org/02h400990 Q linea (Sweden)'),
(20011, 'https://ror.org/022w8nz24', 'no_lang_code', 1, 'https://ror.org/022w8nz24 PlayGen (United Kingdom)'),
(20012, 'https://ror.org/04dew2c51', 'en', 1, 'https://ror.org/04dew2c51 Russian State Hydrometeorological University федеральное государственное бюджетное образовательное учреждение высшего образования Российский государственный гидрометеорологический университет'),
(20013, 'https://ror.org/01mv7kb54', 'no_lang_code', 1, 'https://ror.org/01mv7kb54 Rescon Technologies (United Kingdom)'),
(20014, 'https://ror.org/02kpejc28', 'no_lang_code', 1, 'https://ror.org/02kpejc28 Siemens (Greece)'),
(20015, 'https://ror.org/03ddhqc48', 'no_lang_code', 1, 'https://ror.org/03ddhqc48 Q Sphere (United Kingdom)'),
(20016, 'https://ror.org/01j8j8a87', 'no_lang_code', 1, 'https://ror.org/01j8j8a87 Nanothinx (Greece)'),
(20017, 'https://ror.org/03gq1kz58', 'no_lang_code', 1, 'https://ror.org/03gq1kz58 Research & Diagnostic Antibodies (United States)'),
(20018, 'https://ror.org/04kxxrj13', 'no_lang_code', 1, 'https://ror.org/04kxxrj13 QCMetrix (United States)'),
(20019, 'https://ror.org/00rp9y493', 'en', 1, 'https://ror.org/00rp9y493 Rutherford + Chekene'),
(20020, 'https://ror.org/021gxmd22', 'no_lang_code', 1, 'https://ror.org/021gxmd22 RVJ - Editores (Portugal)'),
(20021, 'https://ror.org/03a8wcj58', 'en', 1, 'https://ror.org/03a8wcj58 Research Circle Associates'),
(20022, 'https://ror.org/04wz8fg60', 'no_lang_code', 1, 'https://ror.org/04wz8fg60 QED Technologies (United States)'),
(20023, 'https://ror.org/02p48rd74', 'no_lang_code', 1, 'https://ror.org/02p48rd74 Research Detectors (United States)'),
(20024, 'https://ror.org/034kn0n30', 'no_lang_code', 1, 'https://ror.org/034kn0n30 Phio Pharmaceuticals (United States)'),
(20025, 'https://ror.org/05sd91r15', 'en', 1, 'https://ror.org/05sd91r15 Istituto di Ricerca per la Terapia Genetica Umana Research Institute for Genetic and Human Therapy'),
(20026, 'https://ror.org/0235cda14', 'no_lang_code', 1, 'https://ror.org/0235cda14 Qserve Group (Netherlands)'),
(20027, 'https://ror.org/04dj4k716', 'no_lang_code', 1, 'https://ror.org/04dj4k716 S&F Systemtechnik (Germany)'),
(20028, 'https://ror.org/00dcb6288', 'no_lang_code', 1, 'https://ror.org/00dcb6288 ProSensing (United States)'),
(20029, 'https://ror.org/042jnea65', 'en', 1, 'https://ror.org/042jnea65 Institute of Agricultural Economics and Information'),
(20030, 'https://ror.org/037ya9w12', 'hu', 1, 'https://ror.org/037ya9w12 Állattenyésztési és Takarmányozási Kutatóintézet'),
(20031, 'https://ror.org/00c6kkt76', 'no_lang_code', 1, 'https://ror.org/00c6kkt76 PLS Consult (Denmark)'),
(20032, 'https://ror.org/026cgfq41', 'no_lang_code', 1, 'https://ror.org/026cgfq41 Quality Electrodynamics (United States)'),
(20033, 'https://ror.org/01g79at26', 'en', 1, 'https://ror.org/01g79at26 Research Institute for Tropical Medicine'),
(20034, 'https://ror.org/03s2p3287', 'no_lang_code', 1, 'https://ror.org/03s2p3287 Pluservice (Italy)'),
(20035, 'https://ror.org/059vkfm47', 'it', 1, 'https://ror.org/059vkfm47 Agenzia Regionale di Sanità della Toscana'),
(20036, 'https://ror.org/054e03k79', 'no_lang_code', 1, 'https://ror.org/054e03k79 PML Applications (United Kingdom)'),
(20037, 'https://ror.org/04p58r664', 'no_lang_code', 1, 'https://ror.org/04p58r664 Ratos (Sweden)'),
(20038, 'https://ror.org/05rtxtk57', 'en', 1, 'https://ror.org/05rtxtk57 Pocatello High School'),
(20039, 'https://ror.org/01bhb2k54', 'en', 1, 'https://ror.org/01bhb2k54 Quality Meat Scotland'),
(20040, 'https://ror.org/04tqy5b82', 'no_lang_code', 1, 'https://ror.org/04tqy5b82 QuanTech (United States)'),
(20041, 'https://ror.org/03ge13j80', 'no_lang_code', 1, 'https://ror.org/03ge13j80 Analogic (United States)'),
(20042, 'https://ror.org/00n93ay28', 'no_lang_code', 1, 'https://ror.org/00n93ay28 RR Donnelley (United States)'),
(20043, 'https://ror.org/00jtt2n09', 'no_lang_code', 1, 'https://ror.org/00jtt2n09 Poeton Industries (United Kingdom)'),
(20044, 'https://ror.org/03ht5e806', 'en', 1, 'https://ror.org/03ht5e806 Northern Ostrobothnia Hospital District Pohjois-Pohjanmaan Sairaanhoitopiiri'),
(20045, 'https://ror.org/01we5we17', 'no_lang_code', 1, 'https://ror.org/01we5we17 S. B. Barnes Associates (United States)'),
(20046, 'https://ror.org/019v2dz26', 'no_lang_code', 1, 'https://ror.org/019v2dz26 Point L (Bulgaria)'),
(20047, 'https://ror.org/00dd4r039', 'no_lang_code', 1, 'https://ror.org/00dd4r039 Quantemol (United Kingdom)'),
(20048, 'https://ror.org/02mp26y45', 'no_lang_code', 1, 'https://ror.org/02mp26y45 Precical (Belgium)'),
(20049, 'https://ror.org/014hygp17', 'no_lang_code', 1, 'https://ror.org/014hygp17 Vitkovice - Research and Development (Czechia)'),
(20050, 'https://ror.org/0215hrs79', 'no_lang_code', 1, 'https://ror.org/0215hrs79 Plasmaterm (Romania)'),
(20051, 'https://ror.org/01s4hhr68', 'no_lang_code', 1, 'https://ror.org/01s4hhr68 Polar Mobile (Canada)'),
(20052, 'https://ror.org/038h1j843', 'no_lang_code', 1, 'https://ror.org/038h1j843 SGG (Italy)'),
(20053, 'https://ror.org/044zpm314', 'no_lang_code', 1, 'https://ror.org/044zpm314 PolarOnyx (United States)'),
(20054, 'https://ror.org/05n8nz691', 'no_lang_code', 1, 'https://ror.org/05n8nz691 SOLID (Austria)'),
(20055, 'https://ror.org/05rp7bv68', 'no_lang_code', 1, 'https://ror.org/05rp7bv68 Polatis (United Kingdom)'),
(20056, 'https://ror.org/05x1tpn63', 'fr', 1, 'https://ror.org/05x1tpn63 Pôle Véhicule du Futur'),
(20057, 'https://ror.org/0599s7z02', 'no_lang_code', 1, 'https://ror.org/0599s7z02 QuantLogic (United States)'),
(20058, 'https://ror.org/039rc8x03', 'no_lang_code', 1, 'https://ror.org/039rc8x03 Polgenix (United States)'),
(20059, 'https://ror.org/05wnzmz28', 'no_lang_code', 1, 'https://ror.org/05wnzmz28 S2 Corporation (United States)'),
(20060, 'https://ror.org/05bvt3s14', 'no_lang_code', 1, 'https://ror.org/05bvt3s14 S2 Grupo (Spain)'),
(20061, 'https://ror.org/01af87512', 'en', 1, 'https://ror.org/01af87512 National Policing Improvement Agency'),
(20062, 'https://ror.org/04wkq2s46', 'en', 1, 'https://ror.org/04wkq2s46 Police University College Poliisiammattikorkeakoulu'),
(20063, 'https://ror.org/05jj78523', 'no_lang_code', 1, 'https://ror.org/05jj78523 Polinter (Spain)'),
(20064, 'https://ror.org/03zw9a495', 'no_lang_code', 1, 'https://ror.org/03zw9a495 Quantos (France)'),
(20065, 'https://ror.org/03hbpmj07', 'no_lang_code', 1, 'https://ror.org/03hbpmj07 ResearchWorks (United States)'),
(20066, 'https://ror.org/032bb5546', 'en', 1, 'https://ror.org/032bb5546 Polis'),
(20067, 'https://ror.org/01v8tdd80', 'no_lang_code', 1, 'https://ror.org/01v8tdd80 QuantumBio (United States)'),
(20068, 'https://ror.org/04vva3h08', 'fr', 1, 'https://ror.org/04vva3h08 Réseau Trans-Tech’s'),
(20069, 'https://ror.org/02m4skm46', 'no_lang_code', 1, 'https://ror.org/02m4skm46 National Electric Vehicle Sweden (Sweden)'),
(20070, 'https://ror.org/0408ee822', 'en', 1, 'https://ror.org/0408ee822 Quebec Labrador Foundation'),
(20071, 'https://ror.org/024xqxd02', 'no_lang_code', 1, 'https://ror.org/024xqxd02 RUAG (Sweden)'),
(20072, 'https://ror.org/027pap738', 'no_lang_code', 1, 'https://ror.org/027pap738 Resensys (United States)'),
(20073, 'https://ror.org/00v2w0a04', 'en', 1, 'https://ror.org/00v2w0a04 Polk State College'),
(20074, 'https://ror.org/0106g1z72', 'no_lang_code', 1, 'https://ror.org/0106g1z72 Quercus X-ray Technologies (United States)'),
(20075, 'https://ror.org/03154z139', 'no_lang_code', 1, 'https://ror.org/03154z139 Creation Technologies (United States)'),
(20076, 'https://ror.org/05szy4c49', 'en', 1, 'https://ror.org/05szy4c49 San Diego City College'),
(20077, 'https://ror.org/050bn6e97', 'no_lang_code', 1, 'https://ror.org/050bn6e97 Sächsische Binnenhäfen Oberelbe (Germany)'),
(20078, 'https://ror.org/05afmgm93', 'no_lang_code', 1, 'https://ror.org/05afmgm93 Sachtleben Bergbau (Germany)'),
(20079, 'https://ror.org/045e6gk66', 'no_lang_code', 1, 'https://ror.org/045e6gk66 Queues Enforth Development (United States)'),
(20080, 'https://ror.org/00wv4gv48', 'no_lang_code', 1, 'https://ror.org/00wv4gv48 Quick Reaction Corporation (United States)'),
(20081, 'https://ror.org/02fky0856', 'pt', 1, 'https://ror.org/02fky0856 Madeira Tecnopolo'),
(20082, 'https://ror.org/015n5ef16', 'en', 1, 'https://ror.org/015n5ef16 Quinsigamond Community College'),
(20083, 'https://ror.org/04xjm9m94', 'en', 1, 'https://ror.org/04xjm9m94 Swedish National Police Board'),
(20084, 'https://ror.org/02mb9ff20', 'no_lang_code', 1, 'https://ror.org/02mb9ff20 QuSpin (United States)'),
(20085, 'https://ror.org/05q10zf45', 'no_lang_code', 1, 'https://ror.org/05q10zf45 Quviq (Sweden)'),
(20086, 'https://ror.org/05k887p27', 'no_lang_code', 1, 'https://ror.org/05k887p27 R&D Systems (United States)'),
(20087, 'https://ror.org/04qnw1866', 'no_lang_code', 1, 'https://ror.org/04qnw1866 Polycom (Slovenia)'),
(20088, 'https://ror.org/00nb2fk45', 'no_lang_code', 1, 'https://ror.org/00nb2fk45 RiNA (Germany)'),
(20089, 'https://ror.org/058t5ay13', 'no_lang_code', 1, 'https://ror.org/058t5ay13 RGB Medical Devices (Spain)'),
(20090, 'https://ror.org/04kdk6h75', 'no_lang_code', 1, 'https://ror.org/04kdk6h75 Registro Internacional Naval (Portugal)'),
(20091, 'https://ror.org/04cvncw24', 'no_lang_code', 1, 'https://ror.org/04cvncw24 Rinicom (United Kingdom)'),
(20092, 'https://ror.org/044j72x94', 'no_lang_code', 1, 'https://ror.org/044j72x94 PolyGene'),
(20093, 'https://ror.org/019hr5954', 'en', 1, 'https://ror.org/019hr5954 Safe Blood for Africa Foundation'),
(20094, 'https://ror.org/02m9n8819', 'no_lang_code', 1, 'https://ror.org/02m9n8819 Polykemi (Sweden)'),
(20095, 'https://ror.org/044vb6b87', 'no_lang_code', 1, 'https://ror.org/044vb6b87 Polymark (Netherlands)'),
(20096, 'https://ror.org/05j53g380', 'no_lang_code', 1, 'https://ror.org/05j53g380 Innovation Pharmaceuticals (United States)'),
(20097, 'https://ror.org/04m8jeb72', 'no_lang_code', 1, 'https://ror.org/04m8jeb72 Polymem (France)'),
(20098, 'https://ror.org/040ppgc54', 'no_lang_code', 1, 'https://ror.org/040ppgc54 R-Biopharm (Germany)'),
(20099, 'https://ror.org/0077djf60', 'no_lang_code', 1, 'https://ror.org/0077djf60 Landauer (United States)'),
(20100, 'https://ror.org/05ax6jr03', 'no_lang_code', 1, 'https://ror.org/05ax6jr03 Polymer Chemistry Innovations (United States)'),
(20101, 'https://ror.org/05rrwve30', 'no_lang_code', 1, 'https://ror.org/05rrwve30 Ripple (United States)'),
(20102, 'https://ror.org/04q23nr55', 'en', 1, 'https://ror.org/04q23nr55 Safe States Alliance'),
(20103, 'https://ror.org/03pmd4r81', 'no_lang_code', 1, 'https://ror.org/03pmd4r81 R&R Systems (Netherlands)'),
(20104, 'https://ror.org/04mfx2z51', 'no_lang_code', 1, 'https://ror.org/04mfx2z51 Replicon (United States)'),
(20105, 'https://ror.org/0017nar98', 'no_lang_code', 1, 'https://ror.org/0017nar98 Safe Engineering Services & Technologies (Canada)'),
(20106, 'https://ror.org/00kjvy846', 'no_lang_code', 1, 'https://ror.org/00kjvy846 PolyPeptide Group (United States)'),
(20107, 'https://ror.org/02j3x9q40', 'no_lang_code', 1, 'https://ror.org/02j3x9q40 Polyphotonix (United Kingdom)'),
(20108, 'https://ror.org/016xjr028', 'no_lang_code', 1, 'https://ror.org/016xjr028 Rad Data Communications (Israel)'),
(20109, 'https://ror.org/051e4zg07', 'no_lang_code', 1, 'https://ror.org/051e4zg07 Risk Engineering (Bulgaria) Риск инженеринг'),
(20110, 'https://ror.org/03b80zh39', 'en', 1, 'https://ror.org/03b80zh39 Saskatchewan Science Centre'),
(20111, 'https://ror.org/05pa5kt82', 'en', 1, 'https://ror.org/05pa5kt82 Radioactive Waste Repository Authority'),
(20112, 'https://ror.org/03ctf4s64', 'no_lang_code', 1, 'https://ror.org/03ctf4s64 Safoso (Switzerland)'),
(20113, 'https://ror.org/0089sg868', 'no_lang_code', 1, 'https://ror.org/0089sg868 Risk Management Solutions (United Kingdom)'),
(20114, 'https://ror.org/05x3h8029', 'no_lang_code', 1, 'https://ror.org/05x3h8029 Gruppo Trombini (Italy)'),
(20115, 'https://ror.org/02pc02b40', 'no_lang_code', 1, 'https://ror.org/02pc02b40 Saturn Bioponics (United Kingdom)'),
(20116, 'https://ror.org/03ndmx042', 'en', 1, 'https://ror.org/03ndmx042 Riverside County Department of Environmental Health'),
(20117, 'https://ror.org/02vj2b283', 'en', 1, 'https://ror.org/02vj2b283 Setting Priorities for Retirement Years Foundation'),
(20118, 'https://ror.org/02xtrpd94', 'no_lang_code', 1, 'https://ror.org/02xtrpd94 Seureco (France)'),
(20119, 'https://ror.org/0577sef82', 'en', 1, 'https://ror.org/0577sef82 Severtsov Institute of Ecology and Evolution Федеральное государственное бюджетное учреждение науки Институт проблем экологии и эволюции им.А.Н. Северцова Российской академии наук'),
(20120, 'https://ror.org/02f73m916', 'no_lang_code', 1, 'https://ror.org/02f73m916 Sauf Consulting'),
(20121, 'https://ror.org/00n7jqz22', 'no_lang_code', 1, 'https://ror.org/00n7jqz22 Sagentia (United Kingdom)'),
(20122, 'https://ror.org/02k1p7q76', 'no_lang_code', 1, 'https://ror.org/02k1p7q76 RJ Lee Group (United States)'),
(20123, 'https://ror.org/01k7x2c64', 'en', 1, 'https://ror.org/01k7x2c64 Riverside County Superior Court'),
(20124, 'https://ror.org/009jr9909', 'no_lang_code', 1, 'https://ror.org/009jr9909 Sagivtech (Israel)'),
(20125, 'https://ror.org/04rb4x926', 'no_lang_code', 1, 'https://ror.org/04rb4x926 ShapeSpace (United Kingdom)'),
(20126, 'https://ror.org/03984t928', 'en', 1, 'https://ror.org/03984t928 Science Health Allied Research Education'),
(20127, 'https://ror.org/0289zbq28', 'en', 1, 'https://ror.org/0289zbq28 Shasta County Chemical People'),
(20128, 'https://ror.org/02x2yhv10', 'en', 1, 'https://ror.org/02x2yhv10 Shawnee Health Service and Development Corporation');
INSERT INTO `rors` VALUES
(20129, 'https://ror.org/01v3kn215', 'en', 1, 'https://ror.org/01v3kn215 Shawnee Mission Northwest High School'),
(20130, 'https://ror.org/0027kz691', 'no_lang_code', 1, 'https://ror.org/0027kz691 Sbs Byfornyelse'),
(20131, 'https://ror.org/02wfc0z28', 'en', 1, 'https://ror.org/02wfc0z28 Shawnee Mission South High School'),
(20132, 'https://ror.org/02pj05f64', 'no_lang_code', 1, 'https://ror.org/02pj05f64 Etegent Technologies (United States)'),
(20133, 'https://ror.org/04dthhc71', 'no_lang_code', 1, 'https://ror.org/04dthhc71 RODAX Impex (Romania)'),
(20134, 'https://ror.org/00p9b8g15', 'no_lang_code', 1, 'https://ror.org/00p9b8g15 Shellcase (Israel)'),
(20135, 'https://ror.org/01t2ccy50', 'en', 1, 'https://ror.org/01t2ccy50 Shellfish Association of Great Britain'),
(20136, 'https://ror.org/04eqf8242', 'no_lang_code', 1, 'https://ror.org/04eqf8242 SKF (France)'),
(20137, 'https://ror.org/038q56410', 'fr', 1, 'https://ror.org/038q56410 Société de Protection des Forêts contre les Insectes et Maladies'),
(20138, 'https://ror.org/056cpmr59', 'no_lang_code', 1, 'https://ror.org/056cpmr59 Aluminium Refining, Degassing and Filtering (Canada)'),
(20139, 'https://ror.org/04pf4cg46', 'no_lang_code', 1, 'https://ror.org/04pf4cg46 Speech Processing Solutions (United States)'),
(20140, 'https://ror.org/04ch7mp32', 'no_lang_code', 1, 'https://ror.org/04ch7mp32 PY Automation (France)'),
(20141, 'https://ror.org/01awd1q38', 'en', 1, 'https://ror.org/01awd1q38 Saint Martin''s University'),
(20142, 'https://ror.org/02k87s158', 'no_lang_code', 1, 'https://ror.org/02k87s158 Sherbrooke Innopole (Canada)'),
(20143, 'https://ror.org/03zxhtw58', 'no_lang_code', 1, 'https://ror.org/03zxhtw58 Manufacture d''Orgues Muhleisen (France)'),
(20144, 'https://ror.org/05sr81t86', 'no_lang_code', 1, 'https://ror.org/05sr81t86 Scan Messtechnik (Austria)'),
(20145, 'https://ror.org/004k51631', 'en', 1, 'https://ror.org/004k51631 Sheridan College'),
(20146, 'https://ror.org/02gs7pb27', 'no_lang_code', 1, 'https://ror.org/02gs7pb27 ScanArc Plasma Technologies (Sweden)'),
(20147, 'https://ror.org/05x1e2z17', 'no_lang_code', 1, 'https://ror.org/05x1e2z17 Sherwood Scientific (United Kingdom)'),
(20148, 'https://ror.org/041h8y823', 'en', 1, 'https://ror.org/041h8y823 Ecomuseum Zoo Zoo Ecomuseum'),
(20149, 'https://ror.org/020ek1893', 'no_lang_code', 1, 'https://ror.org/020ek1893 Salsnes Filter (Norway)'),
(20150, 'https://ror.org/02ahe3232', 'en', 1, 'https://ror.org/02ahe3232 European Society of Cardiology'),
(20151, 'https://ror.org/01ry2m115', 'no_lang_code', 1, 'https://ror.org/01ry2m115 Samaritan Pharmaceuticals (United States)'),
(20152, 'https://ror.org/01jmxjw73', 'no_lang_code', 1, 'https://ror.org/01jmxjw73 Cabot Microelectronics (United States)'),
(20153, 'https://ror.org/012v8ks77', 'en', 1, 'https://ror.org/012v8ks77 San Luis Obispo County Drug and Alcohol Services'),
(20154, 'https://ror.org/00e6d8m49', 'no_lang_code', 1, 'https://ror.org/00e6d8m49 Scanimetrics (Canada)'),
(20155, 'https://ror.org/03ybzg790', 'en', 1, 'https://ror.org/03ybzg790 Shoreline Community College'),
(20156, 'https://ror.org/025xt6a66', 'no_lang_code', 1, 'https://ror.org/025xt6a66 Samo (Italy)'),
(20157, 'https://ror.org/0567d0m75', 'en', 1, 'https://ror.org/0567d0m75 Shropshire Council'),
(20158, 'https://ror.org/02phxrh78', 'no_lang_code', 1, 'https://ror.org/02phxrh78 Samputensili (Italy)'),
(20159, 'https://ror.org/01kz0v978', 'no_lang_code', 1, 'https://ror.org/01kz0v978 eBaltics (Latvia)'),
(20160, 'https://ror.org/0557nfa06', 'no_lang_code', 1, 'https://ror.org/0557nfa06 Société Tunisienne de l''Electricité et du Gaz (Tunisia) الشركة التونسية للكهرباء و الغاز'),
(20161, 'https://ror.org/04e5ccf06', 'en', 1, 'https://ror.org/04e5ccf06 Society for Muscle Biology'),
(20162, 'https://ror.org/05r7x7136', 'en', 1, 'https://ror.org/05r7x7136 Society for Mathematical Psychology'),
(20163, 'https://ror.org/008kv0w14', 'en', 1, 'https://ror.org/008kv0w14 Siberian Center for Environmental Research and Training Сибирский центр климато-экологических исследований и образования'),
(20164, 'https://ror.org/04dkzbv90', 'en', 1, 'https://ror.org/04dkzbv90 Society for Personality and Social Psychology'),
(20165, 'https://ror.org/05hjs5k87', 'no_lang_code', 1, 'https://ror.org/05hjs5k87 Sick (Germany)'),
(20166, 'https://ror.org/00v7w6310', 'no_lang_code', 1, 'https://ror.org/00v7w6310 Questel (France)'),
(20167, 'https://ror.org/022j77113', 'en', 1, 'https://ror.org/022j77113 San Juan County Partnership'),
(20168, 'https://ror.org/05b724e43', 'en', 1, 'https://ror.org/05b724e43 Society of Behavioral Medicine'),
(20169, 'https://ror.org/00nsta845', 'no_lang_code', 1, 'https://ror.org/00nsta845 Sico Technology (Austria)'),
(20170, 'https://ror.org/052yb5x42', 'en', 1, 'https://ror.org/052yb5x42 San Luis Obispo County Mental Health Services'),
(20171, 'https://ror.org/0049xjz07', 'en', 1, 'https://ror.org/0049xjz07 San Luis Obispo County Public Health Department'),
(20172, 'https://ror.org/0348e5q84', 'en', 1, 'https://ror.org/0348e5q84 Society of Indian Automobile Manufacturers'),
(20173, 'https://ror.org/04cw56e87', 'no_lang_code', 1, 'https://ror.org/04cw56e87 Sidasa Engineering (Spain)'),
(20174, 'https://ror.org/02k5gcb44', 'en', 1, 'https://ror.org/02k5gcb44 Society of Nuclear Medicine and Molecular Imaging'),
(20175, 'https://ror.org/032tne230', 'en', 1, 'https://ror.org/032tne230 Society of Wetland Scientists'),
(20176, 'https://ror.org/027pq2t86', 'no_lang_code', 1, 'https://ror.org/027pq2t86 Sidac (Italy)'),
(20177, 'https://ror.org/02qfb0f37', 'en', 1, 'https://ror.org/02qfb0f37 San Mateo County Human Services'),
(20178, 'https://ror.org/023kh3y84', 'no_lang_code', 1, 'https://ror.org/023kh3y84 Sidekick Studios (United Kingdom)'),
(20179, 'https://ror.org/053x7m526', 'no_lang_code', 1, 'https://ror.org/053x7m526 Renewable Energy Corporation (Norway)'),
(20180, 'https://ror.org/00ypzqf67', 'en', 1, 'https://ror.org/00ypzqf67 Sanexen Environmental Services'),
(20181, 'https://ror.org/037xpb040', 'en', 1, 'https://ror.org/037xpb040 Sanford Medical Center'),
(20182, 'https://ror.org/03zrqq643', 'en', 1, 'https://ror.org/03zrqq643 Santa Barbara County Public Health Department'),
(20183, 'https://ror.org/0095wd727', 'no_lang_code', 1, 'https://ror.org/0095wd727 Robbe (France)'),
(20184, 'https://ror.org/011y4d392', 'en', 1, 'https://ror.org/011y4d392 Superior Court of California'),
(20185, 'https://ror.org/04wwnad27', 'en', 1, 'https://ror.org/04wwnad27 Santa Fe Indian School'),
(20186, 'https://ror.org/03njhn887', 'en', 1, 'https://ror.org/03njhn887 Society of Wood Science and Technology'),
(20187, 'https://ror.org/01dxdky35', 'en', 1, 'https://ror.org/01dxdky35 Sidwell Friends School'),
(20188, 'https://ror.org/00hth7971', 'en', 1, 'https://ror.org/00hth7971 Danish Maritime Authority'),
(20189, 'https://ror.org/03sb6zx08', 'no_lang_code', 1, 'https://ror.org/03sb6zx08 Scanwel (United Kingdom)'),
(20190, 'https://ror.org/019r04q09', 'no_lang_code', 1, 'https://ror.org/019r04q09 SOLIDpower (Italy)'),
(20191, 'https://ror.org/0281w2821', 'no_lang_code', 1, 'https://ror.org/0281w2821 Sofie Biosciences (United States)'),
(20192, 'https://ror.org/03bjqrv17', 'no_lang_code', 1, 'https://ror.org/03bjqrv17 SeaOwl Technology Solutions (France)'),
(20193, 'https://ror.org/036j17m86', 'no_lang_code', 1, 'https://ror.org/036j17m86 Soft dB (Canada)'),
(20194, 'https://ror.org/03v7qgt03', 'no_lang_code', 1, 'https://ror.org/03v7qgt03 Siemens (Sweden)'),
(20195, 'https://ror.org/03m033p80', 'no_lang_code', 1, 'https://ror.org/03m033p80 Sappi (Netherlands)'),
(20196, 'https://ror.org/01z1mg159', 'no_lang_code', 1, 'https://ror.org/01z1mg159 Schafer-N (Denmark)'),
(20197, 'https://ror.org/02mt4w922', 'no_lang_code', 1, 'https://ror.org/02mt4w922 Siemens (Netherlands)'),
(20198, 'https://ror.org/02vbc1t40', 'no_lang_code', 1, 'https://ror.org/02vbc1t40 Softing (Germany)'),
(20199, 'https://ror.org/04pyajs57', 'no_lang_code', 1, 'https://ror.org/04pyajs57 Inspecta (Sweden)'),
(20200, 'https://ror.org/02vcffh37', 'en', 1, 'https://ror.org/02vcffh37 Sarah Bush Lincoln Health System'),
(20201, 'https://ror.org/003jrsn97', 'no_lang_code', 1, 'https://ror.org/003jrsn97 Software AG (Italy)'),
(20202, 'https://ror.org/03qn4hk51', 'no_lang_code', 1, 'https://ror.org/03qn4hk51 Xilinx (Canada)'),
(20203, 'https://ror.org/01w8n3n62', 'no_lang_code', 1, 'https://ror.org/01w8n3n62 Schneider Electric (Germany)'),
(20204, 'https://ror.org/00racmn62', 'no_lang_code', 1, 'https://ror.org/00racmn62 Schneider Electric (United Kingdom)'),
(20205, 'https://ror.org/055a3gx21', 'no_lang_code', 1, 'https://ror.org/055a3gx21 Schoenfabriek Wed. J.P. van Bommel (Netherlands)'),
(20206, 'https://ror.org/0405vqf70', 'no_lang_code', 1, 'https://ror.org/0405vqf70 Scholastic Corporation (United States)'),
(20207, 'https://ror.org/02em67c34', 'no_lang_code', 1, 'https://ror.org/02em67c34 Siet (Italy)'),
(20208, 'https://ror.org/0509k2n94', 'en', 1, 'https://ror.org/0509k2n94 Society for Research on Biological Rhythms'),
(20209, 'https://ror.org/04pdbrh74', 'no_lang_code', 1, 'https://ror.org/04pdbrh74 Sievi (Finland)'),
(20210, 'https://ror.org/05mcefa73', 'no_lang_code', 1, 'https://ror.org/05mcefa73 Sifam Tinsley (United Kingdom)'),
(20211, 'https://ror.org/031km1t38', 'no_lang_code', 1, 'https://ror.org/031km1t38 Software for Critical Systems (Spain)'),
(20212, 'https://ror.org/040v4pr09', 'no_lang_code', 1, 'https://ror.org/040v4pr09 RSK Assessments (United States)'),
(20213, 'https://ror.org/004b3k735', 'no_lang_code', 1, 'https://ror.org/004b3k735 Sigma Engineering (Germany)'),
(20214, 'https://ror.org/00mehg084', 'no_lang_code', 1, 'https://ror.org/00mehg084 Spectris (United States)'),
(20215, 'https://ror.org/01h8pq181', 'no_lang_code', 1, 'https://ror.org/01h8pq181 Ailleron (Poland)'),
(20216, 'https://ror.org/01phrhn87', 'no_lang_code', 1, 'https://ror.org/01phrhn87 Acobiom (France)'),
(20217, 'https://ror.org/05czwfr97', 'no_lang_code', 1, 'https://ror.org/05czwfr97 Innovalia (Spain)'),
(20218, 'https://ror.org/013r61763', 'no_lang_code', 1, 'https://ror.org/013r61763 SignaBlok (United States)'),
(20219, 'https://ror.org/043753e82', 'no_lang_code', 1, 'https://ror.org/043753e82 Sarmap (Switzerland)'),
(20220, 'https://ror.org/054446c79', 'no_lang_code', 1, 'https://ror.org/054446c79 SAS Institute (United Kingdom)'),
(20221, 'https://ror.org/01fnv4f45', 'no_lang_code', 1, 'https://ror.org/01fnv4f45 Sogesca (Italy)'),
(20222, 'https://ror.org/00axnmm79', 'no_lang_code', 1, 'https://ror.org/00axnmm79 Signo Motus (Italy)'),
(20223, 'https://ror.org/05rye6v40', 'en', 1, 'https://ror.org/05rye6v40 Saskatchewan Conservation Learning Centre'),
(20224, 'https://ror.org/04cqvxz08', 'no_lang_code', 1, 'https://ror.org/04cqvxz08 Signum Computer (Germany)'),
(20225, 'https://ror.org/01pjkhn78', 'en', 1, 'https://ror.org/01pjkhn78 School District of Palm Beach County'),
(20226, 'https://ror.org/0282d8z17', 'no_lang_code', 1, 'https://ror.org/0282d8z17 Coesia (Italy)'),
(20227, 'https://ror.org/04qkww785', 'en', 1, 'https://ror.org/04qkww785 Saskatchewan Environment Industry and Managers Association'),
(20228, 'https://ror.org/034pxmg95', 'no_lang_code', 1, 'https://ror.org/034pxmg95 Silanis Technology (Canada)'),
(20229, 'https://ror.org/01zgv1x24', 'en', 1, 'https://ror.org/01zgv1x24 Portland Public Schools'),
(20230, 'https://ror.org/0483w8753', 'no_lang_code', 1, 'https://ror.org/0483w8753 Silex Microsystems (Sweden)'),
(20231, 'https://ror.org/029gksr15', 'no_lang_code', 1, 'https://ror.org/029gksr15 SilicoLife (Portugal)'),
(20232, 'https://ror.org/02t51xq98', 'no_lang_code', 1, 'https://ror.org/02t51xq98 SoilVision Systems (Canada)'),
(20233, 'https://ror.org/05qdfs727', 'no_lang_code', 1, 'https://ror.org/05qdfs727 Silicon Audio (United States)'),
(20234, 'https://ror.org/02st14b97', 'no_lang_code', 1, 'https://ror.org/02st14b97 Sokolovská Uhelná (Czechia)'),
(20235, 'https://ror.org/019af7775', 'en', 1, 'https://ror.org/019af7775 St. Joseph Youth Alliance'),
(20236, 'https://ror.org/0394e4913', 'no_lang_code', 1, 'https://ror.org/0394e4913 Silicon Radar (Germany)'),
(20237, 'https://ror.org/0565tfh19', 'no_lang_code', 1, 'https://ror.org/0565tfh19 Sol-Gel Solutions (United States)'),
(20238, 'https://ror.org/02nz79p21', 'no_lang_code', 1, 'https://ror.org/02nz79p21 Solagro'),
(20239, 'https://ror.org/03x4dqr80', 'no_lang_code', 1, 'https://ror.org/03x4dqr80 SiliCycle (Canada)'),
(20240, 'https://ror.org/0260zag83', 'en', 1, 'https://ror.org/0260zag83 St. Lawrence College'),
(20241, 'https://ror.org/01zy04g55', 'no_lang_code', 1, 'https://ror.org/01zy04g55 Silios Technologies (France)'),
(20242, 'https://ror.org/02fz88323', 'no_lang_code', 1, 'https://ror.org/02fz88323 SP Group (Denmark)'),
(20243, 'https://ror.org/00qj1mf81', 'no_lang_code', 1, 'https://ror.org/00qj1mf81 Schulman, Ronca & Bucuvalas'),
(20244, 'https://ror.org/0261fx274', 'no_lang_code', 1, 'https://ror.org/0261fx274 Schüßler-Plan (Germany)'),
(20245, 'https://ror.org/003g85c66', 'en', 1, 'https://ror.org/003g85c66 Silver Buffalo Consulting'),
(20246, 'https://ror.org/059r07p39', 'no_lang_code', 1, 'https://ror.org/059r07p39 Silver Lake Research (United States)'),
(20247, 'https://ror.org/03s7e5303', 'no_lang_code', 1, 'https://ror.org/03s7e5303 SGF International (Germany)'),
(20248, 'https://ror.org/02qdw7f92', 'no_lang_code', 1, 'https://ror.org/02qdw7f92 Solari (Italy)'),
(20249, 'https://ror.org/05f57qd45', 'no_lang_code', 1, 'https://ror.org/05f57qd45 Simbiente (Portugal)'),
(20250, 'https://ror.org/0497ykj02', 'no_lang_code', 1, 'https://ror.org/0497ykj02 Simcon kunststofftechnische Software (Germany)'),
(20251, 'https://ror.org/05k35b119', 'de', 1, 'https://ror.org/05k35b119 Staatliches Museum für Naturkunde Stuttgart State Museum of Natural History Stuttgart'),
(20252, 'https://ror.org/04fyd6s73', 'no_lang_code', 1, 'https://ror.org/04fyd6s73 Fiat Chrysler Automobiles (France)'),
(20253, 'https://ror.org/02j65kc59', 'no_lang_code', 1, 'https://ror.org/02j65kc59 Simcyp (United Kingdom)'),
(20254, 'https://ror.org/00vnvj755', 'no_lang_code', 1, 'https://ror.org/00vnvj755 Simmetrix (United States)'),
(20255, 'https://ror.org/04d9b4k91', 'no_lang_code', 1, 'https://ror.org/04d9b4k91 Sciarra Laboratories'),
(20256, 'https://ror.org/01w21ky57', 'no_lang_code', 1, 'https://ror.org/01w21ky57 SiMPore (United States)'),
(20257, 'https://ror.org/00fkes842', 'no_lang_code', 1, 'https://ror.org/00fkes842 Solarplan (Denmark)'),
(20258, 'https://ror.org/02akgnc95', 'no_lang_code', 1, 'https://ror.org/02akgnc95 Solems (France)'),
(20259, 'https://ror.org/03f4xfe90', 'no_lang_code', 1, 'https://ror.org/03f4xfe90 Simulation Solutions (United Kingdom)'),
(20260, 'https://ror.org/03c4na604', 'no_lang_code', 1, 'https://ror.org/03c4na604 Soliani Emc (Italy)'),
(20261, 'https://ror.org/031gdw727', 'no_lang_code', 1, 'https://ror.org/031gdw727 SimulConsult'),
(20262, 'https://ror.org/03pmvds50', 'en', 1, 'https://ror.org/03pmvds50 MindFuel'),
(20263, 'https://ror.org/0580hfn92', 'no_lang_code', 1, 'https://ror.org/0580hfn92 Solidica (United States)'),
(20264, 'https://ror.org/02rpp4n56', 'en', 1, 'https://ror.org/02rpp4n56 Science and Technology Interactive Center'),
(20265, 'https://ror.org/019b9yp12', 'en', 1, 'https://ror.org/019b9yp12 SINE-Institut Sine Institute Süddeutsches Institut für Empirische Sozialforschung'),
(20266, 'https://ror.org/00kdf6750', 'no_lang_code', 1, 'https://ror.org/00kdf6750 Solidus Biosciences (United States)'),
(20267, 'https://ror.org/01sg12c31', 'no_lang_code', 1, 'https://ror.org/01sg12c31 Stabilitech BioPharma (United Kingdom)'),
(20268, 'https://ror.org/01qpqce32', 'en', 1, 'https://ror.org/01qpqce32 Connecticut Science Center'),
(20269, 'https://ror.org/01kavk215', 'no_lang_code', 1, 'https://ror.org/01kavk215 Sineurop Nanotech (Germany)'),
(20270, 'https://ror.org/02esyae02', 'en', 1, 'https://ror.org/02esyae02 Science Fair Foundation of BC'),
(20271, 'https://ror.org/04ns7jw88', 'no_lang_code', 1, 'https://ror.org/04ns7jw88 Solo Kleinmotoren (Germany)'),
(20272, 'https://ror.org/00wwfjc16', 'no_lang_code', 1, 'https://ror.org/00wwfjc16 Singleton Birch (United Kingdom)'),
(20273, 'https://ror.org/04bdwem21', 'no_lang_code', 1, 'https://ror.org/04bdwem21 Energieversorgungs und Verkehrsgesellschaft Aachen (Germany)'),
(20274, 'https://ror.org/05ay71920', 'no_lang_code', 1, 'https://ror.org/05ay71920 Solpros (Finland)'),
(20275, 'https://ror.org/0476nv437', 'no_lang_code', 1, 'https://ror.org/0476nv437 Sinhatech (United States)'),
(20276, 'https://ror.org/0562efv25', 'de', 1, 'https://ror.org/0562efv25 Stadtwerke Bad Urach (Germany)'),
(20277, 'https://ror.org/04qrbj889', 'no_lang_code', 1, 'https://ror.org/04qrbj889 Stadtwerke Bochum (Germany)'),
(20278, 'https://ror.org/01baz4g36', 'no_lang_code', 1, 'https://ror.org/01baz4g36 Gfi Informatique (France)'),
(20279, 'https://ror.org/0023x8n30', 'no_lang_code', 1, 'https://ror.org/0023x8n30 Science Wares (United States)'),
(20280, 'https://ror.org/0489rhw98', 'no_lang_code', 1, 'https://ror.org/0489rhw98 Sintec (Italy)'),
(20281, 'https://ror.org/04q1p4j28', 'no_lang_code', 1, 'https://ror.org/04q1p4j28 Solvo Biotechnology (Hungary)'),
(20282, 'https://ror.org/00yvkcc48', 'no_lang_code', 1, 'https://ror.org/00yvkcc48 SomaLogic (United States)'),
(20283, 'https://ror.org/02na5hw74', 'no_lang_code', 1, 'https://ror.org/02na5hw74 Sciences Computers Consultants (France)'),
(20284, 'https://ror.org/02cyaf297', 'no_lang_code', 1, 'https://ror.org/02cyaf297 Sonic Concepts (United States)'),
(20285, 'https://ror.org/01dh1ha31', 'no_lang_code', 1, 'https://ror.org/01dh1ha31 Stan''s Cafe (United Kingdom)'),
(20286, 'https://ror.org/027a72a41', 'no_lang_code', 1, 'https://ror.org/027a72a41 Sioux Manufacturing (United States)'),
(20287, 'https://ror.org/03ckrc057', 'no_lang_code', 1, 'https://ror.org/03ckrc057 Norsk Hydro (Sweden)'),
(20288, 'https://ror.org/02qjcp783', 'en', 1, 'https://ror.org/02qjcp783 Services, Industrial, Professional and Technical Union'),
(20289, 'https://ror.org/02123w421', 'no_lang_code', 1, 'https://ror.org/02123w421 Sir Robert McAlpine (United Kingdom)'),
(20290, 'https://ror.org/008g13a47', 'ms', 1, 'https://ror.org/008g13a47 Sirim Berhad'),
(20291, 'https://ror.org/04wrajv07', 'no_lang_code', 1, 'https://ror.org/04wrajv07 Sirius Thinking (United States)'),
(20292, 'https://ror.org/050znhp97', 'no_lang_code', 1, 'https://ror.org/050znhp97 Sirtres (Italy)'),
(20293, 'https://ror.org/025tsch51', 'no_lang_code', 1, 'https://ror.org/025tsch51 Scientific Computing & Modelling (Netherlands)'),
(20294, 'https://ror.org/03wgc9z97', 'en', 1, 'https://ror.org/03wgc9z97 Stanley Park Ecology Society'),
(20295, 'https://ror.org/050m55h61', 'no_lang_code', 1, 'https://ror.org/050m55h61 Stansted Fluid Power (United Kingdom)'),
(20296, 'https://ror.org/01vp66713', 'es', 1, 'https://ror.org/01vp66713 Sistemas Expertos'),
(20297, 'https://ror.org/04r5d4283', 'no_lang_code', 1, 'https://ror.org/04r5d4283 Starfire Industries (United States)'),
(20298, 'https://ror.org/04vvfch80', 'es', 1, 'https://ror.org/04vvfch80 Sistemas Genómicos'),
(20299, 'https://ror.org/018xv9w84', 'no_lang_code', 1, 'https://ror.org/018xv9w84 Starpharma (Australia)'),
(20300, 'https://ror.org/01w0d2z22', 'no_lang_code', 1, 'https://ror.org/01w0d2z22 Sonnenkraft (Austria)'),
(20301, 'https://ror.org/021q7b987', 'no_lang_code', 1, 'https://ror.org/021q7b987 Tadiran Batteries (Germany)'),
(20302, 'https://ror.org/05vwr6v04', 'no_lang_code', 1, 'https://ror.org/05vwr6v04 Sistemas Y Redes Telematicas (Spain)'),
(20303, 'https://ror.org/055agmx53', 'en', 1, 'https://ror.org/055agmx53 Michigan Department of Education'),
(20304, 'https://ror.org/02y535c02', 'en', 1, 'https://ror.org/02y535c02 State College of Florida Manatee-Sarasota'),
(20305, 'https://ror.org/0102bpa71', 'no_lang_code', 1, 'https://ror.org/0102bpa71 Sisteplant (Spain)'),
(20306, 'https://ror.org/02t8vgv97', 'no_lang_code', 1, 'https://ror.org/02t8vgv97 Sony (Sweden)'),
(20307, 'https://ror.org/01hftn006', 'no_lang_code', 1, 'https://ror.org/01hftn006 Scientific Software International (United States)'),
(20308, 'https://ror.org/00z72df47', 'no_lang_code', 1, 'https://ror.org/00z72df47 Scientifica (United Kingdom)'),
(20309, 'https://ror.org/044ht0n88', 'en', 1, 'https://ror.org/044ht0n88 State Hydrological Institute федеральное государственное бюджетное учреждение Государственный гидрологический институт'),
(20310, 'https://ror.org/0594b8154', 'no_lang_code', 1, 'https://ror.org/0594b8154 SiteOne Therapeutics (United States)'),
(20311, 'https://ror.org/01mhfg188', 'en', 1, 'https://ror.org/01mhfg188 Public Health Authority of the Slovak Republic'),
(20312, 'https://ror.org/023r30q21', 'no_lang_code', 1, 'https://ror.org/023r30q21 Sitex 45 (Romania)'),
(20313, 'https://ror.org/05h017e13', 'no_lang_code', 1, 'https://ror.org/05h017e13 Sciperio (United States)'),
(20314, 'https://ror.org/00vc2nm91', 'en', 1, 'https://ror.org/00vc2nm91 Higher Institute on Territorial Systems for Innovation Istituto Superiore sui Sistemi Territoriali per l’Innovazione'),
(20315, 'https://ror.org/0302zgk11', 'en', 1, 'https://ror.org/0302zgk11 Zubov State Oceanographic Institute Федеральное государственное бюджетное учреждение Государственный океанографический институт имени Н.Н.Зубова'),
(20316, 'https://ror.org/02bt72x97', 'no_lang_code', 1, 'https://ror.org/02bt72x97 Sciprom (Switzerland)'),
(20317, 'https://ror.org/01d8h9b46', 'en', 1, 'https://ror.org/01d8h9b46 Voyager Sopris Learning'),
(20318, 'https://ror.org/05nrv0z71', 'no_lang_code', 1, 'https://ror.org/05nrv0z71 Sorain Cecchini Tecno (Italy)'),
(20319, 'https://ror.org/037bs9x45', 'no_lang_code', 1, 'https://ror.org/037bs9x45 Sivers IMA (Sweden)'),
(20320, 'https://ror.org/05sxd8019', 'en', 1, 'https://ror.org/05sxd8019 Six County Association of Governments'),
(20321, 'https://ror.org/01cwv3a06', 'no_lang_code', 1, 'https://ror.org/01cwv3a06 Sixteen Films (United Kingdom)'),
(20322, 'https://ror.org/054s97w65', 'en', 1, 'https://ror.org/054s97w65 National School of Public Health, Management and Professional Development Şcoala Naţională de Sănătate Publică, Management şi Perfecţionare în Domeniul Sanitar'),
(20323, 'https://ror.org/018dcz204', 'en', 1, 'https://ror.org/018dcz204 Scope'),
(20324, 'https://ror.org/025rxqy43', 'da', 1, 'https://ror.org/025rxqy43 Danish National Archives Statens Arkivers'),
(20325, 'https://ror.org/00jc5t317', 'no_lang_code', 1, 'https://ror.org/00jc5t317 SKA Polska (Poland)'),
(20326, 'https://ror.org/01s5zad14', 'no_lang_code', 1, 'https://ror.org/01s5zad14 Skanska (Sweden)'),
(20327, 'https://ror.org/056bwcz71', 'en', 1, 'https://ror.org/056bwcz71 Scottish Funding Council'),
(20328, 'https://ror.org/04rtr9n62', 'en', 1, 'https://ror.org/04rtr9n62 Scottish Qualifications Authority'),
(20329, 'https://ror.org/02rgx8605', 'en', 1, 'https://ror.org/02rgx8605 Scottsdale Community College'),
(20330, 'https://ror.org/01mk0yp55', 'en', 1, 'https://ror.org/01mk0yp55 Soul City Institute for Health & Development Communication'),
(20331, 'https://ror.org/04jzb8h35', 'no_lang_code', 1, 'https://ror.org/04jzb8h35 Sound&Fury'),
(20332, 'https://ror.org/042c61z58', 'no_lang_code', 1, 'https://ror.org/042c61z58 SimuTech Group (United States)'),
(20333, 'https://ror.org/01jg4cx18', 'no_lang_code', 1, 'https://ror.org/01jg4cx18 Statiflo International (United Kingdom)'),
(20334, 'https://ror.org/02tp9ep96', 'en', 1, 'https://ror.org/02tp9ep96 Statistical Office of the Republic of Slovenia'),
(20335, 'https://ror.org/00sfq3g82', 'it', 1, 'https://ror.org/00sfq3g82 Sinform'),
(20336, 'https://ror.org/03q1mhb89', 'no_lang_code', 1, 'https://ror.org/03q1mhb89 Scour Prevention Systems (United Kingdom)'),
(20337, 'https://ror.org/03kswc577', 'no_lang_code', 1, 'https://ror.org/03kswc577 Statistics Collaborative'),
(20338, 'https://ror.org/000f7jy90', 'en', 1, 'https://ror.org/000f7jy90 Danmarks Statistik Statistics Denmark'),
(20339, 'https://ror.org/047dz7p79', 'fr', 1, 'https://ror.org/047dz7p79 Océanopolis'),
(20340, 'https://ror.org/05ccyg372', 'en', 1, 'https://ror.org/05ccyg372 National Institute for Nuclear, Chemical and Biological Protection'),
(20341, 'https://ror.org/019ryn279', 'en', 1, 'https://ror.org/019ryn279 State and University Library'),
(20342, 'https://ror.org/0475dfc79', 'no_lang_code', 1, 'https://ror.org/0475dfc79 Stavanger Installasjon (Norway)'),
(20343, 'https://ror.org/02r6y1x03', 'no_lang_code', 1, 'https://ror.org/02r6y1x03 STC Group (Netherlands)'),
(20344, 'https://ror.org/046w1bq45', 'en', 1, 'https://ror.org/046w1bq45 Skellefteå Municipality'),
(20345, 'https://ror.org/04t8nza80', 'no_lang_code', 1, 'https://ror.org/04t8nza80 MathWorks (United Kingdom)'),
(20346, 'https://ror.org/01mkrzp48', 'no_lang_code', 1, 'https://ror.org/01mkrzp48 SKF (Germany)'),
(20347, 'https://ror.org/048g63s89', 'no_lang_code', 1, 'https://ror.org/048g63s89 Soundprint Media Center'),
(20348, 'https://ror.org/03rnv3v52', 'no_lang_code', 1, 'https://ror.org/03rnv3v52 Source BioScience (United Kingdom)'),
(20349, 'https://ror.org/004qdne14', 'no_lang_code', 1, 'https://ror.org/004qdne14 Source Production & Equipment Company (United States)'),
(20350, 'https://ror.org/0148chp23', 'no_lang_code', 1, 'https://ror.org/0148chp23 Cortech Solutions (United States)'),
(20351, 'https://ror.org/04nxy6d06', 'no_lang_code', 1, 'https://ror.org/04nxy6d06 Stelar (Italy)'),
(20352, 'https://ror.org/01qw5dj60', 'no_lang_code', 1, 'https://ror.org/01qw5dj60 Stellar Biotechnologies (United States)'),
(20353, 'https://ror.org/046k0vn34', 'no_lang_code', 1, 'https://ror.org/046k0vn34 SKF (United Kingdom)'),
(20354, 'https://ror.org/03paspt34', 'no_lang_code', 1, 'https://ror.org/03paspt34 Microlime (Portugal)'),
(20355, 'https://ror.org/01pakje56', 'no_lang_code', 1, 'https://ror.org/01pakje56 Stellarray (United States)'),
(20356, 'https://ror.org/01cxaar63', 'no_lang_code', 1, 'https://ror.org/01cxaar63 Skunkwerks Software (Canada)'),
(20357, 'https://ror.org/02b50et21', 'no_lang_code', 1, 'https://ror.org/02b50et21 Souriau (France)'),
(20358, 'https://ror.org/0393pnh14', 'en', 1, 'https://ror.org/0393pnh14 Skyline High School'),
(20359, 'https://ror.org/05f560223', 'no_lang_code', 1, 'https://ror.org/05f560223 Skymark (United Kingdom)'),
(20360, 'https://ror.org/049cnc419', 'no_lang_code', 1, 'https://ror.org/049cnc419 Stemina Biomarker Discovery (United States)'),
(20361, 'https://ror.org/024mfhp94', 'no_lang_code', 1, 'https://ror.org/024mfhp94 Scytl (Spain)'),
(20362, 'https://ror.org/0280gjv27', 'no_lang_code', 1, 'https://ror.org/0280gjv27 GMV Innovating Solutions (Portugal)'),
(20363, 'https://ror.org/00985q454', 'en', 1, 'https://ror.org/00985q454 Science, Technology, Engineering and Mathematics Network'),
(20364, 'https://ror.org/05rfgws98', 'en', 1, 'https://ror.org/05rfgws98 Department of Health'),
(20365, 'https://ror.org/00qasm074', 'no_lang_code', 1, 'https://ror.org/00qasm074 Skyworks Solutions (United Kingdom)'),
(20366, 'https://ror.org/00rm12d62', 'no_lang_code', 1, 'https://ror.org/00rm12d62 Stena (Sweden)'),
(20367, 'https://ror.org/00pcpzq46', 'en', 1, 'https://ror.org/00pcpzq46 Danish Meat Trade College'),
(20368, 'https://ror.org/03477ff34', 'en', 1, 'https://ror.org/03477ff34 Drug-Free NC'),
(20369, 'https://ror.org/03ev3zx04', 'no_lang_code', 1, 'https://ror.org/03ev3zx04 Slider Studio (United Kingdom)'),
(20370, 'https://ror.org/01my97204', 'no_lang_code', 1, 'https://ror.org/01my97204 WIND Hellas (Greece)'),
(20371, 'https://ror.org/03zzjgp12', 'en', 1, 'https://ror.org/03zzjgp12 South Carolina Sea Grant Consortium'),
(20372, 'https://ror.org/049yar178', 'en', 1, 'https://ror.org/049yar178 South Carolina Department of Education'),
(20373, 'https://ror.org/02atwwv43', 'en', 1, 'https://ror.org/02atwwv43 Slovenian Institute for Adult Education'),
(20374, 'https://ror.org/0281stt89', 'no_lang_code', 1, 'https://ror.org/0281stt89 Gruppo Scienzia Machinale (Italy)'),
(20375, 'https://ror.org/05w0r7981', 'no_lang_code', 1, 'https://ror.org/05w0r7981 Steven Winter Associates (United States)'),
(20376, 'https://ror.org/04dfd2922', 'en', 1, 'https://ror.org/04dfd2922 South Great Plain Regional Innovation Agency'),
(20377, 'https://ror.org/035cxwv94', 'en', 1, 'https://ror.org/035cxwv94 South Side Help Center'),
(20378, 'https://ror.org/02bs1me11', 'en', 1, 'https://ror.org/02bs1me11 Sea Studios Foundation'),
(20379, 'https://ror.org/047dkfr85', 'en', 1, 'https://ror.org/047dkfr85 South East Texas Council on Alcohol and Drug Abuse'),
(20380, 'https://ror.org/05bh64v90', 'en', 1, 'https://ror.org/05bh64v90 South Thames College'),
(20381, 'https://ror.org/03r4mvw95', 'no_lang_code', 1, 'https://ror.org/03r4mvw95 South Yorkshire Passenger Transport Executive'),
(20382, 'https://ror.org/02g14hj64', 'no_lang_code', 1, 'https://ror.org/02g14hj64 Smart Reamer Drilling Systems (United Kingdom)'),
(20383, 'https://ror.org/03qjxzd42', 'en', 1, 'https://ror.org/03qjxzd42 South West Regional Authority'),
(20384, 'https://ror.org/00emq8v37', 'no_lang_code', 1, 'https://ror.org/00emq8v37 Smart Software (United States)'),
(20385, 'https://ror.org/01d646h83', 'no_lang_code', 1, 'https://ror.org/01d646h83 Smartec (Switzerland)'),
(20386, 'https://ror.org/039b6fr04', 'no_lang_code', 1, 'https://ror.org/039b6fr04 SEA-invest (France)'),
(20387, 'https://ror.org/01sa7gm83', 'en', 1, 'https://ror.org/01sa7gm83 South Eastern Europe Telecommunications Academy'),
(20388, 'https://ror.org/04jaxd697', 'no_lang_code', 1, 'https://ror.org/04jaxd697 SeaChange Pharmaceuticals (United States)'),
(20389, 'https://ror.org/007pfmx21', 'no_lang_code', 1, 'https://ror.org/007pfmx21 Seafarm (Netherlands)'),
(20390, 'https://ror.org/02fdpxr39', 'no_lang_code', 1, 'https://ror.org/02fdpxr39 Southern Biotechnology Associates'),
(20391, 'https://ror.org/01qbtys04', 'no_lang_code', 1, 'https://ror.org/01qbtys04 Stichting Accessibility'),
(20392, 'https://ror.org/04ag0vk97', 'no_lang_code', 1, 'https://ror.org/04ag0vk97 Stichting AlmereGrid'),
(20393, 'https://ror.org/031qqmw72', 'no_lang_code', 1, 'https://ror.org/031qqmw72 SmileSonica (Canada)'),
(20394, 'https://ror.org/04xafps82', 'en', 1, 'https://ror.org/04xafps82 Southern Adventist University'),
(20395, 'https://ror.org/03agge938', 'no_lang_code', 1, 'https://ror.org/03agge938 Smith & Nephew (United Kingdom)'),
(20396, 'https://ror.org/04hqh3a23', 'nl', 1, 'https://ror.org/04hqh3a23 Stichting Bouwresearch'),
(20397, 'https://ror.org/01hf4z573', 'no_lang_code', 1, 'https://ror.org/01hf4z573 Smithers Group (United Kingdom)'),
(20398, 'https://ror.org/04pm6wp87', 'no_lang_code', 1, 'https://ror.org/04pm6wp87 Smiths Detection (Canada)'),
(20399, 'https://ror.org/03wjfkr41', 'no_lang_code', 1, 'https://ror.org/03wjfkr41 Smiths Group (Germany)'),
(20400, 'https://ror.org/017d8cr03', 'nl', 1, 'https://ror.org/017d8cr03 Centre for Agriculture and Environment Foundation Centrum voor Landbouw en Milieu'),
(20401, 'https://ror.org/03v1e0p66', 'no_lang_code', 1, 'https://ror.org/03v1e0p66 Smiths Detection (France)'),
(20402, 'https://ror.org/04709y508', 'no_lang_code', 1, 'https://ror.org/04709y508 Seagate (United Kingdom)'),
(20403, 'https://ror.org/015135f27', 'en', 1, 'https://ror.org/015135f27 Sealaska Heritage Institute'),
(20404, 'https://ror.org/041deym60', 'en', 1, 'https://ror.org/041deym60 Center for Technology & Innovation Management'),
(20405, 'https://ror.org/002sayz20', 'no_lang_code', 1, 'https://ror.org/002sayz20 SMST Designers & Constructors (Netherlands)'),
(20406, 'https://ror.org/00j7zhd55', 'no_lang_code', 1, 'https://ror.org/00j7zhd55 SMT Machine (Sweden)'),
(20407, 'https://ror.org/055622428', 'en', 1, 'https://ror.org/055622428 Digital Heritage Netherlands'),
(20408, 'https://ror.org/05gp0bv85', 'no_lang_code', 1, 'https://ror.org/05gp0bv85 SEAS-NVE (Denmark)'),
(20409, 'https://ror.org/01m71fs94', 'en', 1, 'https://ror.org/01m71fs94 Dutch Polymer Institute'),
(20410, 'https://ror.org/03qgjv684', 'no_lang_code', 1, 'https://ror.org/03qgjv684 SeaSpace (United States)'),
(20411, 'https://ror.org/02c9ztd98', 'en', 1, 'https://ror.org/02c9ztd98 Seattle Public Schools'),
(20412, 'https://ror.org/01w7yex89', 'no_lang_code', 1, 'https://ror.org/01w7yex89 Exechon (Sweden)'),
(20413, 'https://ror.org/05xk81g65', 'no_lang_code', 1, 'https://ror.org/05xk81g65 SR Technics (Ireland)'),
(20414, 'https://ror.org/04h2hb382', 'en', 1, 'https://ror.org/04h2hb382 Southwest Georgia Area Health Education Center'),
(20415, 'https://ror.org/03hxjwt59', 'en', 1, 'https://ror.org/03hxjwt59 Southwest Louisiana Area Health Education Center'),
(20416, 'https://ror.org/03aynys49', 'en', 1, 'https://ror.org/03aynys49 Southwest Texas Junior College'),
(20417, 'https://ror.org/00qd4hy53', 'en', 1, 'https://ror.org/00qd4hy53 Southwest Virginia Community College'),
(20418, 'https://ror.org/04t104d61', 'en', 1, 'https://ror.org/04t104d61 Southwestern College - Kansas'),
(20419, 'https://ror.org/0334n7472', 'nl', 1, 'https://ror.org/0334n7472 Stichting Ecobaby'),
(20420, 'https://ror.org/02dzc0673', 'en', 1, 'https://ror.org/02dzc0673 Alliance for Permanent Access'),
(20421, 'https://ror.org/02za9ff59', 'en', 1, 'https://ror.org/02za9ff59 European Rail Research Institute'),
(20422, 'https://ror.org/010fb5010', 'pt', 1, 'https://ror.org/010fb5010 Secretaria Regional do Ambiente e Recursos Naturais'),
(20423, 'https://ror.org/04azdj983', 'en', 1, 'https://ror.org/04azdj983 Snow College'),
(20424, 'https://ror.org/01gdg5y72', 'no_lang_code', 1, 'https://ror.org/01gdg5y72 Syntesa (Faroe Islands)'),
(20425, 'https://ror.org/0472pbn77', 'no_lang_code', 1, 'https://ror.org/0472pbn77 NTN-SNR (France)'),
(20426, 'https://ror.org/01sw8gj26', 'no_lang_code', 1, 'https://ror.org/01sw8gj26 Space Environment Corporation (United States)'),
(20427, 'https://ror.org/017gvys12', 'no_lang_code', 1, 'https://ror.org/017gvys12 Sogin (Italy)'),
(20428, 'https://ror.org/044jjd544', 'nl', 1, 'https://ror.org/044jjd544 Dedicon Federatie Nederlandse Blindenbibliotheken'),
(20429, 'https://ror.org/02wa2k617', 'no_lang_code', 1, 'https://ror.org/02wa2k617 Space Syntax (United Kingdom)'),
(20430, 'https://ror.org/02wdrwh83', 'en', 1, 'https://ror.org/02wdrwh83 Space Telescope European Coordinating Facility'),
(20431, 'https://ror.org/04vv3qe07', 'en', 1, 'https://ror.org/04vv3qe07 Social and Environmental Research Institute'),
(20432, 'https://ror.org/052matx73', 'no_lang_code', 1, 'https://ror.org/052matx73 Span'),
(20433, 'https://ror.org/05ppgmq25', 'no_lang_code', 1, 'https://ror.org/05ppgmq25 Socialdata (Germany)'),
(20434, 'https://ror.org/00qq5ag78', 'no_lang_code', 1, 'https://ror.org/00qq5ag78 Sociedad Anónima Industrias Celulosa Aragonesa (Spain)'),
(20435, 'https://ror.org/05ke08a35', 'no_lang_code', 1, 'https://ror.org/05ke08a35 Air Products (Spain)'),
(20436, 'https://ror.org/04hdfdt60', 'no_lang_code', 1, 'https://ror.org/04hdfdt60 Spartan Solutions (United Kingdom)'),
(20437, 'https://ror.org/04vp8rw50', 'en', 1, 'https://ror.org/04vp8rw50 Green IT Amsterdam'),
(20438, 'https://ror.org/03ks3fa41', 'no_lang_code', 1, 'https://ror.org/03ks3fa41 SpazioDati (Italy)'),
(20439, 'https://ror.org/02dyjqg10', 'es', 1, 'https://ror.org/02dyjqg10 Sociedad Hispano Mundial'),
(20440, 'https://ror.org/034hr8t11', 'no_lang_code', 1, 'https://ror.org/034hr8t11 SecurityMatters (Netherlands)'),
(20441, 'https://ror.org/010tvj547', 'no_lang_code', 1, 'https://ror.org/010tvj547 Sedia Biosciences (United States)'),
(20442, 'https://ror.org/01e2brw58', 'no_lang_code', 1, 'https://ror.org/01e2brw58 Seecon (Switzerland)'),
(20443, 'https://ror.org/04pys4598', 'en', 1, 'https://ror.org/04pys4598 Internet Memory Foundation'),
(20444, 'https://ror.org/048t5j590', 'no_lang_code', 1, 'https://ror.org/048t5j590 Seedri Puukool'),
(20445, 'https://ror.org/02z7t7h39', 'no_lang_code', 1, 'https://ror.org/02z7t7h39 Società Italiana Apparecchi Scientifici (Italy)'),
(20446, 'https://ror.org/05w7nha79', 'no_lang_code', 1, 'https://ror.org/05w7nha79 Seekda (Austria)'),
(20447, 'https://ror.org/055133v13', 'no_lang_code', 1, 'https://ror.org/055133v13 Segasist Technologies (Canada)'),
(20448, 'https://ror.org/01kyqk585', 'en', 1, 'https://ror.org/01kyqk585 Sejet Plant Breeding'),
(20449, 'https://ror.org/00c4rk012', 'no_lang_code', 1, 'https://ror.org/00c4rk012 Selcom (Italy)'),
(20450, 'https://ror.org/05wn3nd60', 'no_lang_code', 1, 'https://ror.org/05wn3nd60 Specto Natura'),
(20451, 'https://ror.org/02tfgas26', 'no_lang_code', 1, 'https://ror.org/02tfgas26 Sèleco (Italy)'),
(20452, 'https://ror.org/05gwq9m97', 'no_lang_code', 1, 'https://ror.org/05gwq9m97 SpectraGenetics (United States)'),
(20453, 'https://ror.org/02zkpaw44', 'en', 1, 'https://ror.org/02zkpaw44 Herbs for Horses'),
(20454, 'https://ror.org/04ekw4q78', 'no_lang_code', 1, 'https://ror.org/04ekw4q78 Selective Genetics (United States)'),
(20455, 'https://ror.org/009rrq568', 'nl', 1, 'https://ror.org/009rrq568 Kenniscentrum Papier en Karton'),
(20456, 'https://ror.org/04e53n160', 'no_lang_code', 1, 'https://ror.org/04e53n160 Società Industrie Chimiche ITaliane (Italy)'),
(20457, 'https://ror.org/050qdy167', 'en', 1, 'https://ror.org/050qdy167 Knowledge Centre Wind turbine Materials and Constructions'),
(20458, 'https://ror.org/05y7nb940', 'nl', 1, 'https://ror.org/05y7nb940 Stichting Lettinga Associates'),
(20459, 'https://ror.org/04g2nab09', 'no_lang_code', 1, 'https://ror.org/04g2nab09 Snam (Italy)'),
(20460, 'https://ror.org/052heck55', 'no_lang_code', 1, 'https://ror.org/052heck55 SelenBio (United States)'),
(20461, 'https://ror.org/03kvq4w45', 'nl', 1, 'https://ror.org/03kvq4w45 Nationaal ICT Instituut in de Zorg'),
(20462, 'https://ror.org/04gpr3c11', 'no_lang_code', 1, 'https://ror.org/04gpr3c11 Società Italiana Trasporti Automobilistici (Italy)'),
(20463, 'https://ror.org/039j29a96', 'no_lang_code', 1, 'https://ror.org/039j29a96 Plastic Electronics (Netherlands)'),
(20464, 'https://ror.org/04d5w6769', 'en', 1, 'https://ror.org/04d5w6769 STM Association'),
(20465, 'https://ror.org/0581ret63', 'no_lang_code', 1, 'https://ror.org/0581ret63 Societate Comerciala Pentru Cercetare, Proiectare si Productie de Echipamente si Instalatii de Automatizare (Romania)'),
(20466, 'https://ror.org/018skgq22', 'no_lang_code', 1, 'https://ror.org/018skgq22 Sellafield (United Kingdom)'),
(20467, 'https://ror.org/02p5b1x56', 'no_lang_code', 1, 'https://ror.org/02p5b1x56 Spirent Communications (United Kingdom)'),
(20468, 'https://ror.org/04h80zb52', 'no_lang_code', 1, 'https://ror.org/04h80zb52 International Game Technology (Canada)'),
(20469, 'https://ror.org/01myfyr56', 'no_lang_code', 1, 'https://ror.org/01myfyr56 Spok'),
(20470, 'https://ror.org/05e3env38', 'no_lang_code', 1, 'https://ror.org/05e3env38 Sintex (Czechia)'),
(20471, 'https://ror.org/01nap1w14', 'no_lang_code', 1, 'https://ror.org/01nap1w14 Transnet (South Africa)'),
(20472, 'https://ror.org/02wqh6z44', 'fr', 1, 'https://ror.org/02wqh6z44 Chateau Guiraud'),
(20473, 'https://ror.org/010frds68', 'no_lang_code', 1, 'https://ror.org/010frds68 Seluxit (Denmark)'),
(20474, 'https://ror.org/00c8emq34', 'nl', 1, 'https://ror.org/00c8emq34 Vilans'),
(20475, 'https://ror.org/057tq3593', 'en', 1, 'https://ror.org/057tq3593 Technologiestichting STW Technology Foundation STW'),
(20476, 'https://ror.org/03vgpfk89', 'nl', 1, 'https://ror.org/03vgpfk89 Waste'),
(20477, 'https://ror.org/04td9e852', 'en', 1, 'https://ror.org/04td9e852 Wetlands International'),
(20478, 'https://ror.org/03f419588', 'no_lang_code', 1, 'https://ror.org/03f419588 Confers (United Kingdom)'),
(20479, 'https://ror.org/018322479', 'en', 1, 'https://ror.org/018322479 Sullivan Veterinary Clinic'),
(20480, 'https://ror.org/05e8ym512', 'en', 1, 'https://ror.org/05e8ym512 Stockholm International Peace Research Institute'),
(20481, 'https://ror.org/01b0z6r56', 'sv', 1, 'https://ror.org/01b0z6r56 Teknikens Hus The Technology House'),
(20482, 'https://ror.org/02hg9tz16', 'no_lang_code', 1, 'https://ror.org/02hg9tz16 Spree NDT'),
(20483, 'https://ror.org/0106g8w88', 'no_lang_code', 1, 'https://ror.org/0106g8w88 Spring Bank Pharmaceuticals (United States)'),
(20484, 'https://ror.org/02g5n6964', 'no_lang_code', 1, 'https://ror.org/02g5n6964 Sembiosys Genetics (Canada)'),
(20485, 'https://ror.org/0282rt868', 'en', 1, 'https://ror.org/0282rt868 Deutsches Hygiene-Museum German Hygiene Museum'),
(20486, 'https://ror.org/004rjvc46', 'no_lang_code', 1, 'https://ror.org/004rjvc46 Home Bank (United States)'),
(20487, 'https://ror.org/03ex76y18', 'no_lang_code', 1, 'https://ror.org/03ex76y18 Spring Techno (Germany)'),
(20488, 'https://ror.org/013ykv656', 'en', 1, 'https://ror.org/013ykv656 SEMI'),
(20489, 'https://ror.org/030raqa76', 'no_lang_code', 1, 'https://ror.org/030raqa76 Stirling Cryogenics (Netherlands)'),
(20490, 'https://ror.org/01e9c5p79', 'no_lang_code', 1, 'https://ror.org/01e9c5p79 Stirling Dynamics (United Kingdom)'),
(20491, 'https://ror.org/022rmxm39', 'no_lang_code', 1, 'https://ror.org/022rmxm39 Sprout Design (United Kingdom)'),
(20492, 'https://ror.org/01e78mv37', 'en', 1, 'https://ror.org/01e78mv37 Seminole State College Oklahoma'),
(20493, 'https://ror.org/0413qrt75', 'no_lang_code', 1, 'https://ror.org/0413qrt75 Stirling Technology (United States)'),
(20494, 'https://ror.org/01nmkhv89', 'no_lang_code', 1, 'https://ror.org/01nmkhv89 Squaris'),
(20495, 'https://ror.org/05mqxwn60', 'no_lang_code', 1, 'https://ror.org/05mqxwn60 Star-Oddi (Iceland)'),
(20496, 'https://ror.org/029d6y387', 'no_lang_code', 1, 'https://ror.org/029d6y387 STM Products (Italy)'),
(20497, 'https://ror.org/04mfpk422', 'no_lang_code', 1, 'https://ror.org/04mfpk422 Srico (United States)'),
(20498, 'https://ror.org/02peb2h94', 'en', 1, 'https://ror.org/02peb2h94 Stockport Metropolitan Borough Council'),
(20499, 'https://ror.org/001gmby50', 'no_lang_code', 1, 'https://ror.org/001gmby50 Oracle (Spain)'),
(20500, 'https://ror.org/03p7psc15', 'no_lang_code', 1, 'https://ror.org/03p7psc15 Stocznia Gdynia (Poland)'),
(20501, 'https://ror.org/04zvs4n17', 'no_lang_code', 1, 'https://ror.org/04zvs4n17 SRM Reti e Mobilità (Italy)'),
(20502, 'https://ror.org/02by00s02', 'no_lang_code', 1, 'https://ror.org/02by00s02 SunPower (Germany)'),
(20503, 'https://ror.org/05mpv2p10', 'no_lang_code', 1, 'https://ror.org/05mpv2p10 Sunamp (United Kingdom)'),
(20504, 'https://ror.org/01rdkm032', 'no_lang_code', 1, 'https://ror.org/01rdkm032 SSBV Aerospace & Technology Group (United Kingdom)'),
(20505, 'https://ror.org/02wdfve94', 'no_lang_code', 1, 'https://ror.org/02wdfve94 Stokast (Canada)'),
(20506, 'https://ror.org/03zvd4k21', 'no_lang_code', 1, 'https://ror.org/03zvd4k21 CFI Technologies (United States)'),
(20507, 'https://ror.org/04mptne15', 'no_lang_code', 1, 'https://ror.org/04mptne15 Strategic Solutions Consulting (United States)'),
(20508, 'https://ror.org/00j91ek55', 'no_lang_code', 1, 'https://ror.org/00j91ek55 Sundew Technologies (United States)'),
(20509, 'https://ror.org/03pgf7z08', 'no_lang_code', 1, 'https://ror.org/03pgf7z08 SSM Computer Systems (Cyprus)'),
(20510, 'https://ror.org/048maqj86', 'no_lang_code', 1, 'https://ror.org/048maqj86 Stone Ridge Technology (United States)'),
(20511, 'https://ror.org/01ep8zz70', 'no_lang_code', 1, 'https://ror.org/01ep8zz70 SSPA (Sweden)'),
(20512, 'https://ror.org/02e9j2825', 'en', 1, 'https://ror.org/02e9j2825 St. Albans School'),
(20513, 'https://ror.org/02pfxyr52', 'no_lang_code', 1, 'https://ror.org/02pfxyr52 Sunfire (Germany)'),
(20514, 'https://ror.org/04hect109', 'en', 1, 'https://ror.org/04hect109 Saint Gregory''s Catholic College'),
(20515, 'https://ror.org/05x786n86', 'no_lang_code', 1, 'https://ror.org/05x786n86 Stopford Energy & Environment (United Kingdom)'),
(20516, 'https://ror.org/00y8cbr22', 'no_lang_code', 1, 'https://ror.org/00y8cbr22 Senceive (United Kingdom)'),
(20517, 'https://ror.org/014fgst40', 'no_lang_code', 1, 'https://ror.org/014fgst40 Suni Medical Imaging (United States)'),
(20518, 'https://ror.org/04hvybk54', 'no_lang_code', 1, 'https://ror.org/04hvybk54 Seneca Productions (United Kingdom)'),
(20519, 'https://ror.org/013wfcy24', 'no_lang_code', 1, 'https://ror.org/013wfcy24 Storvik (Norway)'),
(20520, 'https://ror.org/00bq8y167', 'no_lang_code', 1, 'https://ror.org/00bq8y167 Arcadis (Canada)'),
(20521, 'https://ror.org/03cacct79', 'no', 1, 'https://ror.org/03cacct79 Seniornett'),
(20522, 'https://ror.org/0572yqv42', 'no_lang_code', 1, 'https://ror.org/0572yqv42 Sunplugged (Austria)'),
(20523, 'https://ror.org/01yp0v682', 'no_lang_code', 1, 'https://ror.org/01yp0v682 StrateCision (United States)'),
(20524, 'https://ror.org/01t1wnw38', 'en', 1, 'https://ror.org/01t1wnw38 Strategic Community Services'),
(20525, 'https://ror.org/04g6ar987', 'no_lang_code', 1, 'https://ror.org/04g6ar987 S-Solar (Sweden)'),
(20526, 'https://ror.org/011va6w40', 'no_lang_code', 1, 'https://ror.org/011va6w40 Stratophase (United Kingdom)'),
(20527, 'https://ror.org/03aa02381', 'en', 1, 'https://ror.org/03aa02381 Bulgarian Association of Software Companies'),
(20528, 'https://ror.org/04454sk28', 'no_lang_code', 1, 'https://ror.org/04454sk28 Aer Lingus (Ireland)'),
(20529, 'https://ror.org/00eq1d260', 'no_lang_code', 1, 'https://ror.org/00eq1d260 Suttle-Straus (United States)'),
(20530, 'https://ror.org/02401m575', 'no_lang_code', 1, 'https://ror.org/02401m575 Supanetics (United Kingdom)'),
(20531, 'https://ror.org/04f8bz958', 'no_lang_code', 1, 'https://ror.org/04f8bz958 Super Pulse (United States)'),
(20532, 'https://ror.org/00g1vdf17', 'en', 1, 'https://ror.org/00g1vdf17 TeamPatent'),
(20533, 'https://ror.org/03cdvzq70', 'no_lang_code', 1, 'https://ror.org/03cdvzq70 Körber (Germany)'),
(20534, 'https://ror.org/05rvmn457', 'no_lang_code', 1, 'https://ror.org/05rvmn457 Visual Health Information'),
(20535, 'https://ror.org/01xq6at75', 'no_lang_code', 1, 'https://ror.org/01xq6at75 Team (Italy)'),
(20536, 'https://ror.org/01bb1ac21', 'no_lang_code', 1, 'https://ror.org/01bb1ac21 SCI Engineered Materials (United States)'),
(20537, 'https://ror.org/02kwxw490', 'no_lang_code', 1, 'https://ror.org/02kwxw490 Superform (United Kingdom)'),
(20538, 'https://ror.org/04g3q2c19', 'no_lang_code', 1, 'https://ror.org/04g3q2c19 Stromatec (United States)'),
(20539, 'https://ror.org/03rk04a05', 'no_lang_code', 1, 'https://ror.org/03rk04a05 Tecan (United Kingdom)'),
(20540, 'https://ror.org/000t5z820', 'no_lang_code', 1, 'https://ror.org/000t5z820 SensoMotoric Instruments (Germany)'),
(20541, 'https://ror.org/0372scc98', 'no_lang_code', 1, 'https://ror.org/0372scc98 Supply Network Shannon (Ireland)'),
(20542, 'https://ror.org/036jygv32', 'en', 1, 'https://ror.org/036jygv32 Supreme Council of Antiquities'),
(20543, 'https://ror.org/02c8ytn85', 'no_lang_code', 1, 'https://ror.org/02c8ytn85 SMART Group (United Kingdom)'),
(20544, 'https://ror.org/0519xb662', 'no_lang_code', 1, 'https://ror.org/0519xb662 Sensor Coating Systems (United Kingdom)'),
(20545, 'https://ror.org/007hw9631', 'no_lang_code', 1, 'https://ror.org/007hw9631 Surface Phenomena Researches Group (Russia)'),
(20546, 'https://ror.org/04ha7mv34', 'no_lang_code', 1, 'https://ror.org/04ha7mv34 Surface Transforms (United Kingdom)'),
(20547, 'https://ror.org/000kgrw24', 'no_lang_code', 1, 'https://ror.org/000kgrw24 Savcor (Finland)'),
(20548, 'https://ror.org/02scrd410', 'no_lang_code', 1, 'https://ror.org/02scrd410 Techin (Poland)'),
(20549, 'https://ror.org/05jv51744', 'no_lang_code', 1, 'https://ror.org/05jv51744 Surflay Nanotec (Germany)'),
(20550, 'https://ror.org/012tc8p52', 'no_lang_code', 1, 'https://ror.org/012tc8p52 Techint (Italy)'),
(20551, 'https://ror.org/016jwxj93', 'en', 1, 'https://ror.org/016jwxj93 Surrey County Council'),
(20552, 'https://ror.org/03z7yy926', 'no_lang_code', 1, 'https://ror.org/03z7yy926 Techneat Engineering (United Kingdom)'),
(20553, 'https://ror.org/00hm42c93', 'no_lang_code', 1, 'https://ror.org/00hm42c93 Sensor Developments (United States)'),
(20554, 'https://ror.org/0293hjc54', 'no_lang_code', 1, 'https://ror.org/0293hjc54 Sustainable Energy Systems (United Kingdom)'),
(20555, 'https://ror.org/03f750x06', 'en', 1, 'https://ror.org/03f750x06 Technical Chamber of Greece'),
(20556, 'https://ror.org/00bda6055', 'no_lang_code', 1, 'https://ror.org/00bda6055 Sensor-Technik Wiedemann (Germany)'),
(20557, 'https://ror.org/02zjv1c92', 'no_lang_code', 1, 'https://ror.org/02zjv1c92 Sustainable Venture Development Partners (United Kingdom)'),
(20558, 'https://ror.org/01v1gc487', 'no_lang_code', 1, 'https://ror.org/01v1gc487 Technical Database Services (United States)'),
(20559, 'https://ror.org/00cbzxk82', 'no_lang_code', 1, 'https://ror.org/00cbzxk82 Econova (Sweden)'),
(20560, 'https://ror.org/03pnxfz55', 'no_lang_code', 1, 'https://ror.org/03pnxfz55 Boehringer Ingelheim (Sweden)'),
(20561, 'https://ror.org/00nwez256', 'no_lang_code', 1, 'https://ror.org/00nwez256 Sviluppo Toscana (Italy)'),
(20562, 'https://ror.org/04gptps55', 'no_lang_code', 1, 'https://ror.org/04gptps55 Senstar (Canada)'),
(20563, 'https://ror.org/01rdrt489', 'en', 1, 'https://ror.org/01rdrt489 Development of Research and Technologies for Sustainable and Seismically Safe Building'),
(20564, 'https://ror.org/0120t7422', 'no_lang_code', 1, 'https://ror.org/0120t7422 Sensys Networks (United States)'),
(20565, 'https://ror.org/00g342m42', 'no_lang_code', 1, 'https://ror.org/00g342m42 SVUM (Czechia)'),
(20566, 'https://ror.org/034j4d090', 'no_lang_code', 1, 'https://ror.org/034j4d090 Sentinel Oncology (United Kingdom)'),
(20567, 'https://ror.org/02g4dgx92', 'no_lang_code', 1, 'https://ror.org/02g4dgx92 Separation Design Group'),
(20568, 'https://ror.org/02bczys52', 'en', 1, 'https://ror.org/02bczys52 Society for Science & the Public'),
(20569, 'https://ror.org/03dy61e04', 'no_lang_code', 1, 'https://ror.org/03dy61e04 ScienCentral (United States)'),
(20570, 'https://ror.org/03t0xat23', 'no_lang_code', 1, 'https://ror.org/03t0xat23 Paralab (Portugal)'),
(20571, 'https://ror.org/05e9egp81', 'no_lang_code', 1, 'https://ror.org/05e9egp81 Swamp Optics (United States)'),
(20572, 'https://ror.org/00x37ty92', 'en', 1, 'https://ror.org/00x37ty92 Student Biotechnology Network'),
(20573, 'https://ror.org/01jq32a23', 'no_lang_code', 1, 'https://ror.org/01jq32a23 Swanbarton (United Kingdom)');
INSERT INTO `rors` VALUES
(20574, 'https://ror.org/02mgbaa73', 'en', 1, 'https://ror.org/02mgbaa73 Students on Ice'),
(20575, 'https://ror.org/03rb80v65', 'no_lang_code', 1, 'https://ror.org/03rb80v65 Sequenom (United States)'),
(20576, 'https://ror.org/00zd3hh13', 'no_lang_code', 1, 'https://ror.org/00zd3hh13 SEQUOIA (Italy)'),
(20577, 'https://ror.org/0387p5v08', 'en', 1, 'https://ror.org/0387p5v08 Research Association for Tunnels and Transport Facilities Studiengesellschaft für Tunnel und Verkehrsanlagen'),
(20578, 'https://ror.org/00mseky10', 'no_lang_code', 1, 'https://ror.org/00mseky10 Sequoia Environmental Remediation (Canada)'),
(20579, 'https://ror.org/05ndyzk28', 'no_lang_code', 1, 'https://ror.org/05ndyzk28 Luftfartsverket (Sweden) Swedish Civil Aviation Administration'),
(20580, 'https://ror.org/004nw8z31', 'no_lang_code', 1, 'https://ror.org/004nw8z31 Studiengesellschaft für Eisenerzaufbereitung (Germany)'),
(20581, 'https://ror.org/000hc8n84', 'no_lang_code', 1, 'https://ror.org/000hc8n84 Sequoia Scientific (United States)'),
(20582, 'https://ror.org/00erf1y78', 'it', 1, 'https://ror.org/00erf1y78 Studio Ricerche Sociali'),
(20583, 'https://ror.org/006sw6d69', 'en', 1, 'https://ror.org/006sw6d69 Scottish Agricultural Science Agency'),
(20584, 'https://ror.org/03c8qq315', 'en', 1, 'https://ror.org/03c8qq315 Tver State University Тверской государственный университет'),
(20585, 'https://ror.org/038tfyw56', 'no_lang_code', 1, 'https://ror.org/038tfyw56 Sequoyah (Belgium)'),
(20586, 'https://ror.org/03k7v9g07', 'no_lang_code', 1, 'https://ror.org/03k7v9g07 Seratec (Germany)'),
(20587, 'https://ror.org/02rna7j18', 'no_lang_code', 1, 'https://ror.org/02rna7j18 Abzena (United Kingdom)'),
(20588, 'https://ror.org/05367pr87', 'no_lang_code', 1, 'https://ror.org/05367pr87 Smart Polymers Research Corporation (United States)'),
(20589, 'https://ror.org/04c1jfd27', 'en', 1, 'https://ror.org/04c1jfd27 Substance Abuse Free Environment'),
(20590, 'https://ror.org/040747t72', 'no_lang_code', 1, 'https://ror.org/040747t72 Substrakt (United Kingdom)'),
(20591, 'https://ror.org/02s12gd46', 'en', 1, 'https://ror.org/02s12gd46 Sjofartsverket Swedish Maritime Administration'),
(20592, 'https://ror.org/04xnj7444', 'no_lang_code', 1, 'https://ror.org/04xnj7444 Südwestrundfunk (Germany)'),
(20593, 'https://ror.org/049xny288', 'no_lang_code', 1, 'https://ror.org/049xny288 SERE-Tech Innovation (United Kingdom)'),
(20594, 'https://ror.org/02e3fqh84', 'no_lang_code', 1, 'https://ror.org/02e3fqh84 Serim Research Corporation (United States)'),
(20595, 'https://ror.org/00hzf4v26', 'no_lang_code', 1, 'https://ror.org/00hzf4v26 Sermes CRO (Spain)'),
(20596, 'https://ror.org/03c8a9g31', 'no_lang_code', 1, 'https://ror.org/03c8a9g31 Power Lake (Sweden)'),
(20597, 'https://ror.org/02mr2gx69', 'en', 1, 'https://ror.org/02mr2gx69 Experimental Station for the Industry of the Essential Oils and Citrus Products Stazione Sperimentale per le Industrie delle Essenze e dei Derivati dagli Agrumi'),
(20598, 'https://ror.org/05ppcbv70', 'no_lang_code', 1, 'https://ror.org/05ppcbv70 Meggitt (France)'),
(20599, 'https://ror.org/04adde783', 'no_lang_code', 1, 'https://ror.org/04adde783 Unisign (Netherlands)'),
(20600, 'https://ror.org/02h9dhk84', 'no_lang_code', 1, 'https://ror.org/02h9dhk84 SweTree Technologies (Sweden)'),
(20601, 'https://ror.org/0260r5f51', 'en', 1, 'https://ror.org/0260r5f51 Swindon Borough Council'),
(20602, 'https://ror.org/02jybwh86', 'nl', 1, 'https://ror.org/02jybwh86 Stichting Technisch Centrum vd Keramische Industrie'),
(20603, 'https://ror.org/03wsag231', 'en', 1, 'https://ror.org/03wsag231 Bureau suisse de prévention des accidents Swiss Council for Accident Prevention'),
(20604, 'https://ror.org/00k62pe27', 'en', 1, 'https://ror.org/00k62pe27 Technical University of Applied Sciences Wildau Technische Hochschule Wildau'),
(20605, 'https://ror.org/04vev9295', 'de', 1, 'https://ror.org/04vev9295 Technisches Museum Wien Vienna Technical Museum'),
(20606, 'https://ror.org/03z30sy43', 'no_lang_code', 1, 'https://ror.org/03z30sy43 Imenco (Norway)'),
(20607, 'https://ror.org/027h8t796', 'en', 1, 'https://ror.org/027h8t796 Bundesamt für Statistik Federal Statistical Office Office fédéral de la statistique Ufficio federale di statistica Uffizi federal da statistica'),
(20608, 'https://ror.org/03w3fxa59', 'no_lang_code', 1, 'https://ror.org/03w3fxa59 Technodyne International (United Kingdom)'),
(20609, 'https://ror.org/03qm7cd09', 'no_lang_code', 1, 'https://ror.org/03qm7cd09 TechnoFirst (France)'),
(20610, 'https://ror.org/04w32pe18', 'no_lang_code', 1, 'https://ror.org/04w32pe18 Thalia Design Automation (United Kingdom)'),
(20611, 'https://ror.org/02nwd3v30', 'no_lang_code', 1, 'https://ror.org/02nwd3v30 Groupe Lacroix (France)'),
(20612, 'https://ror.org/0144xq035', 'en', 1, 'https://ror.org/0144xq035 FOD Financiën FÖD Finanzen SPF Finances Service Public Federal Finances'),
(20613, 'https://ror.org/04j539t95', 'no_lang_code', 1, 'https://ror.org/04j539t95 Meyer Burger Technology (Switzerland)'),
(20614, 'https://ror.org/03h362x79', 'en', 1, 'https://ror.org/03h362x79 Missoula County Public Schools'),
(20615, 'https://ror.org/0178yne88', 'es', 1, 'https://ror.org/0178yne88 Servicio Aragonés de Salud'),
(20616, 'https://ror.org/031jtdj18', 'no_lang_code', 1, 'https://ror.org/031jtdj18 Technologie Agentur Struktur Keramik (Germany)'),
(20617, 'https://ror.org/01vp36a05', 'en', 1, 'https://ror.org/01vp36a05 Swiss Internet Security Alliance'),
(20618, 'https://ror.org/05t197591', 'en', 1, 'https://ror.org/05t197591 American University of Paris'),
(20619, 'https://ror.org/02c2fvd82', 'en', 1, 'https://ror.org/02c2fvd82 Association for Science and Discovery Centres'),
(20620, 'https://ror.org/02598xm52', 'no_lang_code', 1, 'https://ror.org/02598xm52 Services and Studies for Air Navigation and Aeronautical Safety'),
(20621, 'https://ror.org/01jrpnz59', 'en', 1, 'https://ror.org/01jrpnz59 Serviciul Hidrmetrologic de Stat State Hydrometeorological Service'),
(20622, 'https://ror.org/04zwbxk42', 'en', 1, 'https://ror.org/04zwbxk42 Switchboard of Miami'),
(20623, 'https://ror.org/013jc2p81', 'en', 1, 'https://ror.org/013jc2p81 Swope Health Services'),
(20624, 'https://ror.org/04k7gd586', 'no_lang_code', 1, 'https://ror.org/04k7gd586 Systems, Applications & Products in Data Processing (United Kingdom)'),
(20625, 'https://ror.org/029jcrc31', 'en', 1, 'https://ror.org/029jcrc31 British Constructional Steelwork Association'),
(20626, 'https://ror.org/04danph04', 'en', 1, 'https://ror.org/04danph04 British School at Rome'),
(20627, 'https://ror.org/0568rcd29', 'no_lang_code', 1, 'https://ror.org/0568rcd29 Kharkov Technologies'),
(20628, 'https://ror.org/058m4x348', 'no_lang_code', 1, 'https://ror.org/058m4x348 Setas (Turkey)'),
(20629, 'https://ror.org/04na4ar59', 'en', 1, 'https://ror.org/04na4ar59 Center of Informatization in the Sphere of Culture'),
(20630, 'https://ror.org/03e4qp353', 'en', 1, 'https://ror.org/03e4qp353 Sylvia Lawry Centre for Multiple Sclerosis Research'),
(20631, 'https://ror.org/011wegm62', 'no_lang_code', 1, 'https://ror.org/011wegm62 Technomar (Germany)'),
(20632, 'https://ror.org/05mzsjr54', 'no_lang_code', 1, 'https://ror.org/05mzsjr54 TechnoPhage (Portugal)'),
(20633, 'https://ror.org/02m0mz421', 'en', 1, 'https://ror.org/02m0mz421 Children''s Society'),
(20634, 'https://ror.org/05qc8r157', 'no_lang_code', 1, 'https://ror.org/05qc8r157 Portic Barcelona'),
(20635, 'https://ror.org/00narfz77', 'en', 1, 'https://ror.org/00narfz77 New Mexico Museum of Natural History and Science'),
(20636, 'https://ror.org/03mwysa89', 'en', 1, 'https://ror.org/03mwysa89 The Concrete Centre'),
(20637, 'https://ror.org/02mrv4556', 'en', 1, 'https://ror.org/02mrv4556 Technopolis'),
(20638, 'https://ror.org/04f79ny61', 'no_lang_code', 1, 'https://ror.org/04f79ny61 Symetrica Security (United Kingdom)'),
(20639, 'https://ror.org/03n3q3154', 'en', 1, 'https://ror.org/03n3q3154 Concrete Society'),
(20640, 'https://ror.org/0463w2783', 'en', 1, 'https://ror.org/0463w2783 Confederation of British Metalforming'),
(20641, 'https://ror.org/05jsyda60', 'no_lang_code', 1, 'https://ror.org/05jsyda60 Technoport (Luxembourg)'),
(20642, 'https://ror.org/03skmn868', 'no_lang_code', 1, 'https://ror.org/03skmn868 Saltworks Technologies (Canada)'),
(20643, 'https://ror.org/04yvhah88', 'no_lang_code', 1, 'https://ror.org/04yvhah88 SymTrend (United States)'),
(20644, 'https://ror.org/01caave54', 'no_lang_code', 1, 'https://ror.org/01caave54 Technostics (United Kingdom)'),
(20645, 'https://ror.org/00p5rpb50', 'no_lang_code', 1, 'https://ror.org/00p5rpb50 Synapse Biomedical (United States)'),
(20646, 'https://ror.org/01930h994', 'no_lang_code', 1, 'https://ror.org/01930h994 TechnoVax (United States)'),
(20647, 'https://ror.org/008nycg72', 'no_lang_code', 1, 'https://ror.org/008nycg72 SynChem (United States)'),
(20648, 'https://ror.org/02jz9yj75', 'no_lang_code', 1, 'https://ror.org/02jz9yj75 Tecmic (Portugal)'),
(20649, 'https://ror.org/006gmnk03', 'no_lang_code', 1, 'https://ror.org/006gmnk03 Tecnia'),
(20650, 'https://ror.org/04dmp9d90', 'no_lang_code', 1, 'https://ror.org/04dmp9d90 Teinsa (Spain)'),
(20651, 'https://ror.org/04m5tys43', 'it', 1, 'https://ror.org/04m5tys43 Tecnoalimenti'),
(20652, 'https://ror.org/04eq9z946', 'no_lang_code', 1, 'https://ror.org/04eq9z946 Synergetics (Belgium)'),
(20653, 'https://ror.org/05j9gf041', 'no_lang_code', 1, 'https://ror.org/05j9gf041 Merinova (Finland)'),
(20654, 'https://ror.org/01jyyrs78', 'en', 1, 'https://ror.org/01jyyrs78 Dr Edward Koch Foundation'),
(20655, 'https://ror.org/038r0hg73', 'en', 1, 'https://ror.org/038r0hg73 Environmental and Sustainable Construction Association'),
(20656, 'https://ror.org/01whdh078', 'no_lang_code', 1, 'https://ror.org/01whdh078 Positron (United States)'),
(20657, 'https://ror.org/03gvct920', 'no_lang_code', 1, 'https://ror.org/03gvct920 Tecnologia e Engenharia de Materiais (Portugal)'),
(20658, 'https://ror.org/014hb3529', 'no_lang_code', 1, 'https://ror.org/014hb3529 Synome (United Kingdom)'),
(20659, 'https://ror.org/05gx5rk78', 'no_lang_code', 1, 'https://ror.org/05gx5rk78 Spolchemie (Czechia) Spolek pro chemickou a hutní výrobu'),
(20660, 'https://ror.org/049s20792', 'en', 1, 'https://ror.org/049s20792 European Committee of Environmental Technology Suppliers Associations'),
(20661, 'https://ror.org/0233by794', 'no_lang_code', 1, 'https://ror.org/0233by794 ReNeuron (United Kingdom)'),
(20662, 'https://ror.org/00gmnqd91', 'no_lang_code', 1, 'https://ror.org/00gmnqd91 Ipsen (United Kingdom)'),
(20663, 'https://ror.org/000hzts19', 'no_lang_code', 1, 'https://ror.org/000hzts19 Synthesia Group (Spain)'),
(20664, 'https://ror.org/03zsfdv59', 'no_lang_code', 1, 'https://ror.org/03zsfdv59 Tecnologías y Equipos para el Medio Ambiente (Spain)'),
(20665, 'https://ror.org/02c8rf527', 'no_lang_code', 1, 'https://ror.org/02c8rf527 Synthesis and Research (Greece)'),
(20666, 'https://ror.org/044zf4559', 'no_lang_code', 1, 'https://ror.org/044zf4559 Food Machinery Company (United Kingdom)'),
(20667, 'https://ror.org/0494t4v58', 'no_lang_code', 1, 'https://ror.org/0494t4v58 Synthesites (Greece)'),
(20668, 'https://ror.org/03f1b8d27', 'no_lang_code', 1, 'https://ror.org/03f1b8d27 Foundry (United Kingdom)'),
(20669, 'https://ror.org/0429kgt51', 'en', 1, 'https://ror.org/0429kgt51 Geophysical Institute of Israel המכון הגיאופיסי לישראל'),
(20670, 'https://ror.org/019496w77', 'en', 1, 'https://ror.org/019496w77 Getty Conservation Institute'),
(20671, 'https://ror.org/01zdej617', 'no_lang_code', 1, 'https://ror.org/01zdej617 SyntheZyme (United States)'),
(20672, 'https://ror.org/03mjm4596', 'no_lang_code', 1, 'https://ror.org/03mjm4596 TYPSA Group (Spain)'),
(20673, 'https://ror.org/002ze7e15', 'no_lang_code', 1, 'https://ror.org/002ze7e15 Syntiron (United States)'),
(20674, 'https://ror.org/032qvyh31', 'en', 1, 'https://ror.org/032qvyh31 Goulandris Natural History Museum Μουσείο Γουλανδρή Φυσικής Ιστορίας'),
(20675, 'https://ror.org/02141x466', 'no_lang_code', 1, 'https://ror.org/02141x466 Subsea 7 (United Kingdom)'),
(20676, 'https://ror.org/0345me483', 'no_lang_code', 1, 'https://ror.org/0345me483 Origo (Iceland)'),
(20677, 'https://ror.org/03fbb4j63', 'no_lang_code', 1, 'https://ror.org/03fbb4j63 Finisar (Sweden)'),
(20678, 'https://ror.org/04bkge991', 'no_lang_code', 1, 'https://ror.org/04bkge991 Next Technology Tecnotessile (Italy)'),
(20679, 'https://ror.org/05eqgj969', 'en', 1, 'https://ror.org/05eqgj969 Austrian Society for Environment and Technology Österreichische Gesellschaft für Umwelt und Technik'),
(20680, 'https://ror.org/00xhnny30', 'en', 1, 'https://ror.org/00xhnny30 Ideas Foundation'),
(20681, 'https://ror.org/024q7v561', 'no_lang_code', 1, 'https://ror.org/024q7v561 Synyo (Austria)'),
(20682, 'https://ror.org/0156q9695', 'no_lang_code', 1, 'https://ror.org/0156q9695 Tecsol'),
(20683, 'https://ror.org/01vyfs773', 'no_lang_code', 1, 'https://ror.org/01vyfs773 NETE (United States)'),
(20684, 'https://ror.org/02t80dd48', 'no_lang_code', 1, 'https://ror.org/02t80dd48 Teem Photonics (France)'),
(20685, 'https://ror.org/01rxwxv45', 'no_lang_code', 1, 'https://ror.org/01rxwxv45 Miba (United Kingdom)'),
(20686, 'https://ror.org/03atgj124', 'en', 1, 'https://ror.org/03atgj124 World Obesity Federation'),
(20687, 'https://ror.org/03673ew24', 'lv', 1, 'https://ror.org/03673ew24 Tehnoloģiju Attīstības Forums'),
(20688, 'https://ror.org/02zax3c17', 'en', 1, 'https://ror.org/02zax3c17 Jerusalem Institute for Israel Studies'),
(20689, 'https://ror.org/011w61724', 'no_lang_code', 1, 'https://ror.org/011w61724 Sysgo (Czechia)'),
(20690, 'https://ror.org/05v8dd891', 'no_lang_code', 1, 'https://ror.org/05v8dd891 Tekkva Consult (Denmark)'),
(20691, 'https://ror.org/00s6gwy34', 'no_lang_code', 1, 'https://ror.org/00s6gwy34 Team Neurodynamics (United States)'),
(20692, 'https://ror.org/015mnn720', 'en', 1, 'https://ror.org/015mnn720 Learning Partnership'),
(20693, 'https://ror.org/02zyq5q98', 'no_lang_code', 1, 'https://ror.org/02zyq5q98 Meyer Turku (Finland)'),
(20694, 'https://ror.org/02fg51t11', 'en', 1, 'https://ror.org/02fg51t11 Safe Drinking Water Foundation'),
(20695, 'https://ror.org/04eq6c443', 'no_lang_code', 1, 'https://ror.org/04eq6c443 The Maltsters'' Association of Great Britain (United Kingdom)'),
(20696, 'https://ror.org/05g0b4875', 'no_lang_code', 1, 'https://ror.org/05g0b4875 Teknimed (France)'),
(20697, 'https://ror.org/00skbbq95', 'sv', 1, 'https://ror.org/00skbbq95 Lantmäteriet Swedish National Land Survey'),
(20698, 'https://ror.org/012k6p920', 'no_lang_code', 1, 'https://ror.org/012k6p920 National Microelectronics Applications Centre (Ireland)'),
(20699, 'https://ror.org/040nc8096', 'no_lang_code', 1, 'https://ror.org/040nc8096 Teknoloji Arastirma ve Gelistirme Endustriyel Urunler Bilisim Teknolojileri San Tic'),
(20700, 'https://ror.org/00eqcpt58', 'no_lang_code', 1, 'https://ror.org/00eqcpt58 NAVSYS (United States)'),
(20701, 'https://ror.org/011nrx077', 'no_lang_code', 1, 'https://ror.org/011nrx077 Systematic (Netherlands)'),
(20702, 'https://ror.org/01skbhc43', 'no_lang_code', 1, 'https://ror.org/01skbhc43 Ogilvy (Greece)'),
(20703, 'https://ror.org/059n14w82', 'no_lang_code', 1, 'https://ror.org/059n14w82 TomTom (Belgium)'),
(20704, 'https://ror.org/05tjt1495', 'no_lang_code', 1, 'https://ror.org/05tjt1495 Systèmes d''Information à Référence Spatiale (France)'),
(20705, 'https://ror.org/02pvy4b66', 'no_lang_code', 1, 'https://ror.org/02pvy4b66 TomTom (Germany)'),
(20706, 'https://ror.org/04xfzjn96', 'no_lang_code', 1, 'https://ror.org/04xfzjn96 Polytec Research (Norway)'),
(20707, 'https://ror.org/056j3a225', 'no_lang_code', 1, 'https://ror.org/056j3a225 Tele-Rilevamento Europa (Italy)'),
(20708, 'https://ror.org/00ydqb522', 'no_lang_code', 1, 'https://ror.org/00ydqb522 Systemexpert Consulting'),
(20709, 'https://ror.org/05g269s74', 'no_lang_code', 1, 'https://ror.org/05g269s74 Systemite (Sweden)'),
(20710, 'https://ror.org/02t5kd339', 'en', 1, 'https://ror.org/02t5kd339 Ontario Aggregate Resources Corporation'),
(20711, 'https://ror.org/0552sh187', 'no_lang_code', 1, 'https://ror.org/0552sh187 Cohort (United Kingdom)'),
(20712, 'https://ror.org/05nm1mf61', 'no_lang_code', 1, 'https://ror.org/05nm1mf61 Cegos (Italy)'),
(20713, 'https://ror.org/05sjfxm32', 'en', 1, 'https://ror.org/05sjfxm32 Orders of St John Care Trust'),
(20714, 'https://ror.org/03dqd5c54', 'en', 1, 'https://ror.org/03dqd5c54 Telecommunications Policy Research Conference'),
(20715, 'https://ror.org/05v3fv602', 'no_lang_code', 1, 'https://ror.org/05v3fv602 Endeavour (United Kingdom)'),
(20716, 'https://ror.org/04d567260', 'en', 1, 'https://ror.org/04d567260 Protein Society'),
(20717, 'https://ror.org/05bhh5n73', 'no_lang_code', 1, 'https://ror.org/05bhh5n73 Utility Systems Science and Software (United States)'),
(20718, 'https://ror.org/0335wvc55', 'no_lang_code', 1, 'https://ror.org/0335wvc55 Teledyne Technologies (Canada)'),
(20719, 'https://ror.org/03rt6nv56', 'no_lang_code', 1, 'https://ror.org/03rt6nv56 PowerCell (Sweden)'),
(20720, 'https://ror.org/04sjj9841', 'no_lang_code', 1, 'https://ror.org/04sjj9841 Avid (Germany)'),
(20721, 'https://ror.org/00vqfx781', 'no_lang_code', 1, 'https://ror.org/00vqfx781 Systran (France)'),
(20722, 'https://ror.org/02cj2g073', 'no_lang_code', 1, 'https://ror.org/02cj2g073 Syzygy Memory Plastics (United States)'),
(20723, 'https://ror.org/024gy8x37', 'en', 1, 'https://ror.org/024gy8x37 Population Reference Bureau'),
(20724, 'https://ror.org/00z4t3785', 'en', 1, 'https://ror.org/00z4t3785 The Rotherham NHS Foundation Trust'),
(20725, 'https://ror.org/04s4egp92', 'no', 1, 'https://ror.org/04s4egp92 Tel-Tek'),
(20726, 'https://ror.org/05war1b27', 'no_lang_code', 1, 'https://ror.org/05war1b27 TQ Environmental (United Kingdom)'),
(20727, 'https://ror.org/024w5t184', 'en', 1, 'https://ror.org/024w5t184 Runnymede Trust'),
(20728, 'https://ror.org/04a52t496', 'no_lang_code', 1, 'https://ror.org/04a52t496 Teleprime (United States)'),
(20729, 'https://ror.org/022y4t490', 'en', 1, 'https://ror.org/022y4t490 Sarah Samuels Center for Public Health & Evaluation'),
(20730, 'https://ror.org/05hk9ey90', 'en', 1, 'https://ror.org/05hk9ey90 Sage Gateshead'),
(20731, 'https://ror.org/02hxnx131', 'no_lang_code', 1, 'https://ror.org/02hxnx131 T-Connect (Italy)'),
(20732, 'https://ror.org/04xmxqq10', 'no_lang_code', 1, 'https://ror.org/04xmxqq10 Teles (Germany)'),
(20733, 'https://ror.org/02f28xw52', 'no_lang_code', 1, 'https://ror.org/02f28xw52 Verisante Technology (Canada)'),
(20734, 'https://ror.org/01sx0ab33', 'no_lang_code', 1, 'https://ror.org/01sx0ab33 Technology Transfer and Innovation (Italy) Trasferimento Tecnologico e Innovazione'),
(20735, 'https://ror.org/04qd9zx60', 'no_lang_code', 1, 'https://ror.org/04qd9zx60 Swatch Group (Switzerland)'),
(20736, 'https://ror.org/030tx1703', 'no_lang_code', 1, 'https://ror.org/030tx1703 Tacchella Macchine (Italy)'),
(20737, 'https://ror.org/03rt1dc30', 'en', 1, 'https://ror.org/03rt1dc30 Swedish Foundry Association'),
(20738, 'https://ror.org/03etsty64', 'no_lang_code', 1, 'https://ror.org/03etsty64 Tadiso (United States)'),
(20739, 'https://ror.org/02vbxvt28', 'en', 1, 'https://ror.org/02vbxvt28 Swedish Institute of Assistive Technology'),
(20740, 'https://ror.org/032wwjz85', 'no_lang_code', 1, 'https://ror.org/032wwjz85 TELINT RTD Consultancy Services (United Kingdom)'),
(20741, 'https://ror.org/03x2gtw59', 'no_lang_code', 1, 'https://ror.org/03x2gtw59 TagArray (United States)'),
(20742, 'https://ror.org/03kk6t048', 'no_lang_code', 1, 'https://ror.org/03kk6t048 Taitech (United States)'),
(20743, 'https://ror.org/03s9xhv46', 'no_lang_code', 1, 'https://ror.org/03s9xhv46 Take The Wind (Portugal)'),
(20744, 'https://ror.org/047fp1735', 'en', 1, 'https://ror.org/047fp1735 Mineral Products Association'),
(20745, 'https://ror.org/04ttx6h98', 'en', 1, 'https://ror.org/04ttx6h98 Talcott Mountain Science Center for Student Involvement'),
(20746, 'https://ror.org/00qthcq23', 'no_lang_code', 1, 'https://ror.org/00qthcq23 Talent Systems (Greece)'),
(20747, 'https://ror.org/00w31we65', 'no_lang_code', 1, 'https://ror.org/00w31we65 Talisman (United States)'),
(20748, 'https://ror.org/01g8wqh49', 'no_lang_code', 1, 'https://ror.org/01g8wqh49 Talkamatic (Sweden)'),
(20749, 'https://ror.org/046m09909', 'no_lang_code', 1, 'https://ror.org/046m09909 Venture Chemicals (United States)'),
(20750, 'https://ror.org/052j6vb86', 'no_lang_code', 1, 'https://ror.org/052j6vb86 WPP (Belgium)'),
(20751, 'https://ror.org/00kxa2r20', 'no_lang_code', 1, 'https://ror.org/00kxa2r20 Talking Fingers (United States)'),
(20752, 'https://ror.org/01wnnzc43', 'no_lang_code', 1, 'https://ror.org/01wnnzc43 Tobii (Sweden)'),
(20753, 'https://ror.org/05sj65q02', 'no_lang_code', 1, 'https://ror.org/05sj65q02 THAP Group (United States)'),
(20754, 'https://ror.org/003wrb977', 'en', 1, 'https://ror.org/003wrb977 Toiyabe Indian Health Project'),
(20755, 'https://ror.org/059ymwe78', 'no_lang_code', 1, 'https://ror.org/059ymwe78 Tangerine (United Kingdom)'),
(20756, 'https://ror.org/04a2tdz26', 'no_lang_code', 1, 'https://ror.org/04a2tdz26 TheraTarget (United States)'),
(20757, 'https://ror.org/01rhd8q72', 'no_lang_code', 1, 'https://ror.org/01rhd8q72 Tolsa (Spain)'),
(20758, 'https://ror.org/00h7v7847', 'no_lang_code', 1, 'https://ror.org/00h7v7847 Tanneries du Puy (France)'),
(20759, 'https://ror.org/01qyk0172', 'no_lang_code', 1, 'https://ror.org/01qyk0172 Tantalus Systems (United States)'),
(20760, 'https://ror.org/02wp8az94', 'no_lang_code', 1, 'https://ror.org/02wp8az94 HolidayCheck Group (Germany)'),
(20761, 'https://ror.org/03d8nc804', 'en', 1, 'https://ror.org/03d8nc804 Tantramar Wetlands Centre'),
(20762, 'https://ror.org/00dhh3h17', 'no_lang_code', 1, 'https://ror.org/00dhh3h17 Tokamak Energy (United Kingdom)'),
(20763, 'https://ror.org/03891kb88', 'en', 1, 'https://ror.org/03891kb88 Tanzania Youth Alliance'),
(20764, 'https://ror.org/01a8rv278', 'no_lang_code', 1, 'https://ror.org/01a8rv278 Thermacore (United Kingdom)'),
(20765, 'https://ror.org/0490r6s77', 'en', 1, 'https://ror.org/0490r6s77 Tapestry Institute'),
(20766, 'https://ror.org/036h2g521', 'no_lang_code', 1, 'https://ror.org/036h2g521 Tony Gee and Partners'),
(20767, 'https://ror.org/00wrkkt81', 'no_lang_code', 1, 'https://ror.org/00wrkkt81 Kemrock Industries And Exports (Italy)'),
(20768, 'https://ror.org/0591ezr39', 'no_lang_code', 1, 'https://ror.org/0591ezr39 Desso (Belgium)'),
(20769, 'https://ror.org/013n8jm40', 'no_lang_code', 1, 'https://ror.org/013n8jm40 Thésame (France)'),
(20770, 'https://ror.org/0148s0r28', 'no_lang_code', 1, 'https://ror.org/0148s0r28 Pharmaxis (Canada)'),
(20771, 'https://ror.org/01hwpsz06', 'en', 1, 'https://ror.org/01hwpsz06 Federal Food Safety and Veterinary Office'),
(20772, 'https://ror.org/02h7txh22', 'en', 1, 'https://ror.org/02h7txh22 Sage Colleges'),
(20773, 'https://ror.org/039br8e21', 'fr', 1, 'https://ror.org/039br8e21 Topos Aquitaine'),
(20774, 'https://ror.org/04bhtgq69', 'no_lang_code', 1, 'https://ror.org/04bhtgq69 Thien eDrives (Austria)'),
(20775, 'https://ror.org/05hpjvd22', 'en', 1, 'https://ror.org/05hpjvd22 Republican Research and Practical Center for Epidemiology and Microbiology Республиканский научно-практический центр эпидемиологии и микробиологии'),
(20776, 'https://ror.org/0399cww89', 'no_lang_code', 1, 'https://ror.org/0399cww89 Toppan (United Kingdom)'),
(20777, 'https://ror.org/02szcd955', 'no_lang_code', 1, 'https://ror.org/02szcd955 Positive Action'),
(20778, 'https://ror.org/03cn75x12', 'no_lang_code', 1, 'https://ror.org/03cn75x12 Elwyn'),
(20779, 'https://ror.org/02yzpv617', 'no_lang_code', 1, 'https://ror.org/02yzpv617 Piramal (Canada)'),
(20780, 'https://ror.org/02q65bp28', 'no_lang_code', 1, 'https://ror.org/02q65bp28 Tordivel (Norway)'),
(20781, 'https://ror.org/02hjh3741', 'no_lang_code', 1, 'https://ror.org/02hjh3741 THINK3 (France)'),
(20782, 'https://ror.org/04kmxp840', 'no_lang_code', 1, 'https://ror.org/04kmxp840 Target (Germany)'),
(20783, 'https://ror.org/01sj9rw78', 'no_lang_code', 1, 'https://ror.org/01sj9rw78 Torrecid (Spain)'),
(20784, 'https://ror.org/03g5fjs36', 'no_lang_code', 1, 'https://ror.org/03g5fjs36 Third Dimension Technologies (United States)'),
(20785, 'https://ror.org/0231mbz86', 'no_lang_code', 1, 'https://ror.org/0231mbz86 Anglo American (United Kingdom)'),
(20786, 'https://ror.org/02dchwm66', 'no_lang_code', 1, 'https://ror.org/02dchwm66 Third Eye Diagnostics (United States)'),
(20787, 'https://ror.org/00sp59e90', 'no_lang_code', 1, 'https://ror.org/00sp59e90 Toscana Biomarkers (Italy)'),
(20788, 'https://ror.org/02kh2f959', 'en', 1, 'https://ror.org/02kh2f959 Marine Scotland'),
(20789, 'https://ror.org/03v1s7z10', 'no_lang_code', 1, 'https://ror.org/03v1s7z10 Norcontel'),
(20790, 'https://ror.org/03hqvaq14', 'en', 1, 'https://ror.org/03hqvaq14 Thomas Nelson Community College'),
(20791, 'https://ror.org/026enhk32', 'no_lang_code', 1, 'https://ror.org/026enhk32 Tarp (United States)'),
(20792, 'https://ror.org/02emk4871', 'no_lang_code', 1, 'https://ror.org/02emk4871 Polyraz (Israel)'),
(20793, 'https://ror.org/016eqnh03', 'en', 1, 'https://ror.org/016eqnh03 Tartu Biotechnology Park'),
(20794, 'https://ror.org/0096wds27', 'en', 1, 'https://ror.org/0096wds27 Tartu Science Park'),
(20795, 'https://ror.org/02vt0t860', 'no_lang_code', 1, 'https://ror.org/02vt0t860 In-Situ (United States)'),
(20796, 'https://ror.org/019dk7w11', 'no_lang_code', 1, 'https://ror.org/019dk7w11 Touch Graphics (United States)'),
(20797, 'https://ror.org/05ppr9v64', 'no_lang_code', 1, 'https://ror.org/05ppr9v64 Posit Science (United States)'),
(20798, 'https://ror.org/00h4fan47', 'no_lang_code', 1, 'https://ror.org/00h4fan47 Tauw Group (Netherlands)'),
(20799, 'https://ror.org/04wdzge25', 'no_lang_code', 1, 'https://ror.org/04wdzge25 Semapa (Portugal)'),
(20800, 'https://ror.org/03q2kkx59', 'no_lang_code', 1, 'https://ror.org/03q2kkx59 Touchstone Research Laboratory (United States)'),
(20801, 'https://ror.org/01n2czj98', 'en', 1, 'https://ror.org/01n2czj98 Touring Club Italiano'),
(20802, 'https://ror.org/00hgk2d63', 'fr', 1, 'https://ror.org/00hgk2d63 Tourisme Transports Territoires Environnement Conseil'),
(20803, 'https://ror.org/05qteks55', 'no_lang_code', 1, 'https://ror.org/05qteks55 Ametek (United Kingdom)'),
(20804, 'https://ror.org/0297hyv43', 'en', 1, 'https://ror.org/0297hyv43 National Cancer Registrars Association'),
(20805, 'https://ror.org/05xmgd629', 'en', 1, 'https://ror.org/05xmgd629 TB HIV Care Association'),
(20806, 'https://ror.org/023wbcv08', 'no_lang_code', 1, 'https://ror.org/023wbcv08 TP Vision (Belgium)'),
(20807, 'https://ror.org/052gehj09', 'no_lang_code', 1, 'https://ror.org/052gehj09 TBC Innovations (France)'),
(20808, 'https://ror.org/00nk1fh63', 'no_lang_code', 1, 'https://ror.org/00nk1fh63 TBZ PARIV (Germany)'),
(20809, 'https://ror.org/05h3nqt19', 'no_lang_code', 1, 'https://ror.org/05h3nqt19 TC Scientific (Canada)'),
(20810, 'https://ror.org/01q2xjy72', 'no_lang_code', 1, 'https://ror.org/01q2xjy72 ReProtect (United States)'),
(20811, 'https://ror.org/042647v76', 'en', 1, 'https://ror.org/042647v76 Together Enhancing Awareness Coalition'),
(20812, 'https://ror.org/01mc2bj25', 'no_lang_code', 1, 'https://ror.org/01mc2bj25 Thor Technologies (United States)'),
(20813, 'https://ror.org/0395v5z30', 'en', 1, 'https://ror.org/0395v5z30 Austrian Institute of Spatial Planning'),
(20814, 'https://ror.org/03f511537', 'no_lang_code', 1, 'https://ror.org/03f511537 Zumtobel Group (United Kingdom)'),
(20815, 'https://ror.org/02sca6s74', 'no_lang_code', 1, 'https://ror.org/02sca6s74 Tracasa (Spain)'),
(20816, 'https://ror.org/04nt4km71', 'no_lang_code', 1, 'https://ror.org/04nt4km71 Ventiva (United States)'),
(20817, 'https://ror.org/02q5k5n31', 'en', 1, 'https://ror.org/02q5k5n31 Colorado Women''s College'),
(20818, 'https://ror.org/03v96p621', 'no_lang_code', 1, 'https://ror.org/03v96p621 TenCate (Netherlands)'),
(20819, 'https://ror.org/014m3pp97', 'en', 1, 'https://ror.org/014m3pp97 San Diego Mesa College'),
(20820, 'https://ror.org/02b34td92', 'no_lang_code', 1, 'https://ror.org/02b34td92 Ai Corporation (United Kingdom)'),
(20821, 'https://ror.org/05p5dfv61', 'en', 1, 'https://ror.org/05p5dfv61 Tennessee Voices for Children'),
(20822, 'https://ror.org/0563nxn44', 'en', 1, 'https://ror.org/0563nxn44 Tennessee Wesleyan College'),
(20823, 'https://ror.org/03tqyjq53', 'no_lang_code', 1, 'https://ror.org/03tqyjq53 Burness Corlett Three Quays (United Kingdom)'),
(20824, 'https://ror.org/05kzvw994', 'en', 1, 'https://ror.org/05kzvw994 Three Rivers Community College'),
(20825, 'https://ror.org/014pn4247', 'no_lang_code', 1, 'https://ror.org/014pn4247 FitBionic (United States)'),
(20826, 'https://ror.org/00qsw2f44', 'no_lang_code', 1, 'https://ror.org/00qsw2f44 Industrins Kraft Abp Teollisuuden Voima (Finland)'),
(20827, 'https://ror.org/02mvdhz93', 'no_lang_code', 1, 'https://ror.org/02mvdhz93 Aqua Metrology Systems (United States)'),
(20828, 'https://ror.org/03zttj648', 'no_lang_code', 1, 'https://ror.org/03zttj648 Tractell (United States)'),
(20829, 'https://ror.org/01ms7ay74', 'no_lang_code', 1, 'https://ror.org/01ms7ay74 Permobil (United States)'),
(20830, 'https://ror.org/01dp3s597', 'en', 1, 'https://ror.org/01dp3s597 Thresholds'),
(20831, 'https://ror.org/03hh4xv28', 'en', 1, 'https://ror.org/03hh4xv28 Trades Union Congress'),
(20832, 'https://ror.org/04f1w1v43', 'no_lang_code', 1, 'https://ror.org/04f1w1v43 Teracom (Sweden)'),
(20833, 'https://ror.org/0489xkg05', 'no_lang_code', 1, 'https://ror.org/0489xkg05 Traficon (Finland)'),
(20834, 'https://ror.org/01093z329', 'no_lang_code', 1, 'https://ror.org/01093z329 SAS Institute (United States)'),
(20835, 'https://ror.org/03efy3764', 'no_lang_code', 1, 'https://ror.org/03efy3764 THT Control Oy (Finland)'),
(20836, 'https://ror.org/05eg6hv92', 'no_lang_code', 1, 'https://ror.org/05eg6hv92 Thunderhead Engineering (United States)'),
(20837, 'https://ror.org/01e2rnt89', 'en', 1, 'https://ror.org/01e2rnt89 Trans European Policy Studies Association'),
(20838, 'https://ror.org/00f5s9131', 'no_lang_code', 1, 'https://ror.org/00f5s9131 TeraPore Technologies (United States)'),
(20839, 'https://ror.org/03d1dz577', 'no_lang_code', 1, 'https://ror.org/03d1dz577 WSP Sverige (Sweden)'),
(20840, 'https://ror.org/02zy8pf47', 'no_lang_code', 1, 'https://ror.org/02zy8pf47 TransÉnergie (France)'),
(20841, 'https://ror.org/02nc4gn73', 'da', 1, 'https://ror.org/02nc4gn73 Thomas B Thriges Fond'),
(20842, 'https://ror.org/05a2d1861', 'no_lang_code', 1, 'https://ror.org/05a2d1861 Transfaction (United Kingdom)'),
(20843, 'https://ror.org/009q43145', 'no_lang_code', 1, 'https://ror.org/009q43145 Transfer Devices (United States)'),
(20844, 'https://ror.org/02ddk7s51', 'es', 1, 'https://ror.org/02ddk7s51 TICBioMed'),
(20845, 'https://ror.org/0294g4w14', 'no_lang_code', 1, 'https://ror.org/0294g4w14 TerOpta (United Kingdom)'),
(20846, 'https://ror.org/006gxfz55', 'no_lang_code', 1, 'https://ror.org/006gxfz55 Terminal San Giorgio (Italy)'),
(20847, 'https://ror.org/01z0qcv19', 'en', 1, 'https://ror.org/01z0qcv19 Oakwater Laboratories'),
(20848, 'https://ror.org/03egsqc60', 'no_lang_code', 1, 'https://ror.org/03egsqc60 TiConUno (Italy)'),
(20849, 'https://ror.org/0523dv891', 'no_lang_code', 1, 'https://ror.org/0523dv891 3R Agrocarbon (Hungary)'),
(20850, 'https://ror.org/04x2ven38', 'en', 1, 'https://ror.org/04x2ven38 Tidewater Community College'),
(20851, 'https://ror.org/00jtwxn03', 'pt', 1, 'https://ror.org/00jtwxn03 Terra Scenica'),
(20852, 'https://ror.org/02q8ggc38', 'en', 1, 'https://ror.org/02q8ggc38 Transnational Family Research Institute'),
(20853, 'https://ror.org/00m8jfr10', 'no_lang_code', 1, 'https://ror.org/00m8jfr10 Destia'),
(20854, 'https://ror.org/056twcg53', 'en', 1, 'https://ror.org/056twcg53 Terros'),
(20855, 'https://ror.org/00ghtc020', 'no_lang_code', 1, 'https://ror.org/00ghtc020 Data Sciences International (United States)'),
(20856, 'https://ror.org/02e9hj615', 'no_lang_code', 1, 'https://ror.org/02e9hj615 Transpire (United States)'),
(20857, 'https://ror.org/02a6j1h04', 'fi', 1, 'https://ror.org/02a6j1h04 Tietotalo'),
(20858, 'https://ror.org/00e2dwm47', 'no_lang_code', 1, 'https://ror.org/00e2dwm47 RenaSci (United Kingdom)'),
(20859, 'https://ror.org/01ghjfc28', 'en', 1, 'https://ror.org/01ghjfc28 Tigard-Tualatin School District'),
(20860, 'https://ror.org/03bmvpf93', 'no_lang_code', 1, 'https://ror.org/03bmvpf93 Tesco (United Kingdom)'),
(20861, 'https://ror.org/00m4tdv39', 'no_lang_code', 1, 'https://ror.org/00m4tdv39 TeselaGen Biotechnology (United States)'),
(20862, 'https://ror.org/01mzcg363', 'no_lang_code', 1, 'https://ror.org/01mzcg363 Tiger Optics (United States)'),
(20863, 'https://ror.org/02enncp58', 'no_lang_code', 1, 'https://ror.org/02enncp58 Tigerlily Films (United Kingdom)'),
(20864, 'https://ror.org/00tymhf19', 'en', 1, 'https://ror.org/00tymhf19 Technology Innovation International'),
(20865, 'https://ror.org/04pyed255', 'en', 1, 'https://ror.org/04pyed255 Transport Systems Catapult'),
(20866, 'https://ror.org/05gzs4q18', 'no_lang_code', 1, 'https://ror.org/05gzs4q18 Tesla Engineering (United Kingdom)'),
(20867, 'https://ror.org/04t3bd569', 'no_lang_code', 1, 'https://ror.org/04t3bd569 Power Plus Communications (Germany)'),
(20868, 'https://ror.org/02e2avb86', 'en', 1, 'https://ror.org/02e2avb86 Information Technology Foundation for Education'),
(20869, 'https://ror.org/00fpcwp04', 'no_lang_code', 1, 'https://ror.org/00fpcwp04 Tessella (United Kingdom)'),
(20870, 'https://ror.org/0272t8w72', 'no_lang_code', 1, 'https://ror.org/0272t8w72 Naeva Tec (Spain)'),
(20871, 'https://ror.org/022vq0k77', 'no_lang_code', 1, 'https://ror.org/022vq0k77 Test Labs International (Canada)'),
(20872, 'https://ror.org/05sed7d42', 'no_lang_code', 1, 'https://ror.org/05sed7d42 Tingtun (Norway)'),
(20873, 'https://ror.org/05r2h7161', 'en', 1, 'https://ror.org/05r2h7161 Test Positive Aware Network'),
(20874, 'https://ror.org/05ddtd277', 'no_lang_code', 1, 'https://ror.org/05ddtd277 Tinsley Bridge Group'),
(20875, 'https://ror.org/0474evh54', 'en', 1, 'https://ror.org/0474evh54 Tioga County Partnership for Community Health'),
(20876, 'https://ror.org/00aqcbq31', 'no_lang_code', 1, 'https://ror.org/00aqcbq31 Testmark Laboratories (Canada)'),
(20877, 'https://ror.org/021wwet11', 'no_lang_code', 1, 'https://ror.org/021wwet11 Transvalor (France)'),
(20878, 'https://ror.org/04yeh8h63', 'en', 1, 'https://ror.org/04yeh8h63 General Secretariat for Research and Technology'),
(20879, 'https://ror.org/01z947v86', 'no_lang_code', 1, 'https://ror.org/01z947v86 Tetra Corporation (United States)'),
(20880, 'https://ror.org/02mmf4x63', 'no_lang_code', 1, 'https://ror.org/02mmf4x63 Tetra Therapeutics (United States)'),
(20881, 'https://ror.org/027xm5n95', 'en', 1, 'https://ror.org/027xm5n95 National Research and Education Network'),
(20882, 'https://ror.org/054gfsx77', 'no_lang_code', 1, 'https://ror.org/054gfsx77 Techno Innovation South Tyrol (Italy)'),
(20883, 'https://ror.org/03t8fag37', 'no_lang_code', 1, 'https://ror.org/03t8fag37 Tiscali (Italy)'),
(20884, 'https://ror.org/01necnd72', 'no_lang_code', 1, 'https://ror.org/01necnd72 Tisec (Canada)'),
(20885, 'https://ror.org/015c3k777', 'en', 1, 'https://ror.org/015c3k777 Texans Standing Tall'),
(20886, 'https://ror.org/02p4t4z91', 'no_lang_code', 1, 'https://ror.org/02p4t4z91 Ori Martin (Italy)'),
(20887, 'https://ror.org/008rp3t36', 'no_lang_code', 1, 'https://ror.org/008rp3t36 Ocera Therapeutics (United States)'),
(20888, 'https://ror.org/04rtgz764', 'en', 1, 'https://ror.org/04rtgz764 Texas Center for Infectious Disease'),
(20889, 'https://ror.org/03a1a6r50', 'no_lang_code', 1, 'https://ror.org/03a1a6r50 Trasys International (Belgium)'),
(20890, 'https://ror.org/01mdqeh78', 'en', 1, 'https://ror.org/01mdqeh78 Agricultural University of Georgia'),
(20891, 'https://ror.org/005zc2807', 'no_lang_code', 1, 'https://ror.org/005zc2807 Tissue Regeneration Systems (United States)'),
(20892, 'https://ror.org/01anxpp02', 'no_lang_code', 1, 'https://ror.org/01anxpp02 TissueVision (United States)'),
(20893, 'https://ror.org/05as1qb59', 'en', 1, 'https://ror.org/05as1qb59 Texas Higher Education Coordinating Board'),
(20894, 'https://ror.org/00kcqj673', 'no_lang_code', 1, 'https://ror.org/00kcqj673 Grupo TTT (Spain)'),
(20895, 'https://ror.org/0485xdc86', 'no_lang_code', 1, 'https://ror.org/0485xdc86 Texas MicroPower (United States)'),
(20896, 'https://ror.org/052f9ak76', 'no_lang_code', 1, 'https://ror.org/052f9ak76 Recylex (France)'),
(20897, 'https://ror.org/05x92kx88', 'en', 1, 'https://ror.org/05x92kx88 North Dakota State Board of Higher Education'),
(20898, 'https://ror.org/050m0fd20', 'no_lang_code', 1, 'https://ror.org/050m0fd20 Texilia (Italy)'),
(20899, 'https://ror.org/02k8yy996', 'no_lang_code', 1, 'https://ror.org/02k8yy996 TLS Technik Spezialpulver (Germany)'),
(20900, 'https://ror.org/048tcym87', 'no_lang_code', 1, 'https://ror.org/048tcym87 Treibacher (Austria)'),
(20901, 'https://ror.org/03862pz95', 'no_lang_code', 1, 'https://ror.org/03862pz95 Trellis Bioscience (United States)'),
(20902, 'https://ror.org/03q8k9q03', 'no_lang_code', 1, 'https://ror.org/03q8k9q03 Huntsman (United Kingdom)'),
(20903, 'https://ror.org/056w4rq63', 'no_lang_code', 1, 'https://ror.org/056w4rq63 Trentino Network (Italy)'),
(20904, 'https://ror.org/02rrrky22', 'no_lang_code', 1, 'https://ror.org/02rrrky22 Development Delivery International'),
(20905, 'https://ror.org/02b1nt179', 'no_lang_code', 1, 'https://ror.org/02b1nt179 Harvard Bioscience (United States)'),
(20906, 'https://ror.org/05skzv947', 'no_lang_code', 1, 'https://ror.org/05skzv947 CTT Group (Canada)'),
(20907, 'https://ror.org/059g9tt96', 'no_lang_code', 1, 'https://ror.org/059g9tt96 Finisar (Germany)'),
(20908, 'https://ror.org/00m8gx614', 'no_lang_code', 1, 'https://ror.org/00m8gx614 Palomino System Innovations (Canada)'),
(20909, 'https://ror.org/02aye8x76', 'no_lang_code', 1, 'https://ror.org/02aye8x76 Triarii (Netherlands)'),
(20910, 'https://ror.org/02a9dqv95', 'no_lang_code', 1, 'https://ror.org/02a9dqv95 Trias (Greece)'),
(20911, 'https://ror.org/02cs9t297', 'no_lang_code', 1, 'https://ror.org/02cs9t297 Thales (Austria)'),
(20912, 'https://ror.org/01x74qw27', 'no_lang_code', 1, 'https://ror.org/01x74qw27 Tribo Flow Separations (United States)'),
(20913, 'https://ror.org/02d994c36', 'no_lang_code', 1, 'https://ror.org/02d994c36 Aerogeodezijos institutas Institute of Aerial Geodesy (Lithuania)'),
(20914, 'https://ror.org/02mhr7958', 'en', 1, 'https://ror.org/02mhr7958 Positive Impact'),
(20915, 'https://ror.org/017056r72', 'no_lang_code', 1, 'https://ror.org/017056r72 Thales (Belgium)'),
(20916, 'https://ror.org/02fb1gt16', 'no_lang_code', 1, 'https://ror.org/02fb1gt16 Tribosonics (United Kingdom)'),
(20917, 'https://ror.org/04wsphp71', 'en', 1, 'https://ror.org/04wsphp71 Port of Gothenburg'),
(20918, 'https://ror.org/0529f2p24', 'no_lang_code', 1, 'https://ror.org/0529f2p24 Trillium Therapeutics (Canada)'),
(20919, 'https://ror.org/02cmcc109', 'no_lang_code', 1, 'https://ror.org/02cmcc109 TRIM edicine (United States)'),
(20920, 'https://ror.org/01b06j989', 'no_lang_code', 1, 'https://ror.org/01b06j989 Ubiquitous Energy (United States)'),
(20921, 'https://ror.org/05gj0xf20', 'no_lang_code', 1, 'https://ror.org/05gj0xf20 Ubisense'),
(20922, 'https://ror.org/031q3mt20', 'no_lang_code', 1, 'https://ror.org/031q3mt20 UbiVac (United States)'),
(20923, 'https://ror.org/02fpgs304', 'no_lang_code', 1, 'https://ror.org/02fpgs304 Trimek (Spain)'),
(20924, 'https://ror.org/04qsyx010', 'no_lang_code', 1, 'https://ror.org/04qsyx010 TriOS Mess und Datentechnik (Germany)'),
(20925, 'https://ror.org/04f33ym80', 'no_lang_code', 1, 'https://ror.org/04f33ym80 Triple Ring Technologies (United States)'),
(20926, 'https://ror.org/03ytfqd86', 'no_lang_code', 1, 'https://ror.org/03ytfqd86 UD-GenoMed (Hungary)'),
(20927, 'https://ror.org/0093xx764', 'no_lang_code', 1, 'https://ror.org/0093xx764 Moog (United Kingdom)'),
(20928, 'https://ror.org/03d7x2a93', 'no_lang_code', 1, 'https://ror.org/03d7x2a93 Tritech Group (United Kingdom)'),
(20929, 'https://ror.org/05cydna96', 'no_lang_code', 1, 'https://ror.org/05cydna96 TPF (Poland)'),
(20930, 'https://ror.org/04bn7c421', 'no_lang_code', 1, 'https://ror.org/04bn7c421 Trivella (Italy)'),
(20931, 'https://ror.org/05tkd5f92', 'no_lang_code', 1, 'https://ror.org/05tkd5f92 UGN-Umwelttechnik (Germany)'),
(20932, 'https://ror.org/02pkcfj18', 'no_lang_code', 1, 'https://ror.org/02pkcfj18 Trivisio Prototyping (Germany)'),
(20933, 'https://ror.org/0060wre92', 'en', 1, 'https://ror.org/0060wre92 Troitsk Institute for Innovation and Fusion Research Троицкий институт инновационных и термоядерных исследований'),
(20934, 'https://ror.org/01mqmer16', 'no_lang_code', 1, 'https://ror.org/01mqmer16 Hoffmann-La Roche Roche (France)'),
(20935, 'https://ror.org/03xgtvr81', 'it', 1, 'https://ror.org/03xgtvr81 Italian Labour Union Unione Italiana del Lavoro'),
(20936, 'https://ror.org/046k1jz27', 'no_lang_code', 1, 'https://ror.org/046k1jz27 Troux Technologies (Norway)'),
(20937, 'https://ror.org/05tdgzn66', 'en', 1, 'https://ror.org/05tdgzn66 Troy Community Coalition'),
(20938, 'https://ror.org/04pan0z69', 'no_lang_code', 1, 'https://ror.org/04pan0z69 Trueflaw (Finland)'),
(20939, 'https://ror.org/0468v2w64', 'fr', 1, 'https://ror.org/0468v2w64 Union des Industries et des Métiers de la Métallurgie Union of Metallurgies Industries'),
(20940, 'https://ror.org/02rzbnj22', 'no_lang_code', 1, 'https://ror.org/02rzbnj22 Trusted Positioning (Canada)'),
(20941, 'https://ror.org/03k0tfa09', 'no_lang_code', 1, 'https://ror.org/03k0tfa09 Trusted Renewables (United Kingdom)'),
(20942, 'https://ror.org/021k2cy37', 'it', 1, 'https://ror.org/021k2cy37 Suor Orsola Benincasa University of Naples Università degli Studi Suor Orsola Benincasa Université sœur-ursule-benincasa'),
(20943, 'https://ror.org/03dpd7s60', 'no_lang_code', 1, 'https://ror.org/03dpd7s60 Trustor Precision Components (Sweden)'),
(20944, 'https://ror.org/0319ch597', 'no_lang_code', 1, 'https://ror.org/0319ch597 Floralis (France)'),
(20945, 'https://ror.org/01jzgmh92', 'no_lang_code', 1, 'https://ror.org/01jzgmh92 TRW Automotive (United States)'),
(20946, 'https://ror.org/04y087m76', 'no_lang_code', 1, 'https://ror.org/04y087m76 TRX Systems (United States)'),
(20947, 'https://ror.org/001eqnp72', 'no_lang_code', 1, 'https://ror.org/001eqnp72 Transeuropean Consultants for Transport, Development and Information Technology (Greece) διευρωπαϊκών Συμβούλων Μεταφορών, Ανάπτυξης και Πληροφορικής'),
(20948, 'https://ror.org/05bkfzh58', 'en', 1, 'https://ror.org/05bkfzh58 Surfactant Associates'),
(20949, 'https://ror.org/00238wh69', 'no_lang_code', 1, 'https://ror.org/00238wh69 TSD Projects (Italy)'),
(20950, 'https://ror.org/00h3hvd98', 'no_lang_code', 1, 'https://ror.org/00h3hvd98 Linamar (Canada)'),
(20951, 'https://ror.org/01npmjh66', 'no_lang_code', 1, 'https://ror.org/01npmjh66 Team Defence Information (United Kingdom)'),
(20952, 'https://ror.org/03fknw408', 'en', 1, 'https://ror.org/03fknw408 UK Data Archive'),
(20953, 'https://ror.org/04yfnda77', 'en', 1, 'https://ror.org/04yfnda77 UK Energy Research Centre'),
(20954, 'https://ror.org/048d6we82', 'no_lang_code', 1, 'https://ror.org/048d6we82 TSM Control Systems (Ireland)'),
(20955, 'https://ror.org/05nqrfj72', 'no_lang_code', 1, 'https://ror.org/05nqrfj72 UK Power Networks'),
(20956, 'https://ror.org/03hm6e417', 'en', 1, 'https://ror.org/03hm6e417 Radiation Protection Institute'),
(20957, 'https://ror.org/024yfg990', 'en', 1, 'https://ror.org/024yfg990 Ukrainian Scientific and Research Institute of Ecological Problems'),
(20958, 'https://ror.org/0303yjn29', 'en', 1, 'https://ror.org/0303yjn29 Ukrainian scientific center of Ecology of Sea'),
(20959, 'https://ror.org/03s5kf753', 'no_lang_code', 1, 'https://ror.org/03s5kf753 ULMA Embedded Solutions'),
(20960, 'https://ror.org/01zfx2510', 'it', 1, 'https://ror.org/01zfx2510 TTS Italia'),
(20961, 'https://ror.org/01r7j6e08', 'no_lang_code', 1, 'https://ror.org/01r7j6e08 Ultima Foods (Canada)'),
(20962, 'https://ror.org/0068fs539', 'no_lang_code', 1, 'https://ror.org/0068fs539 TTS (Sweden)'),
(20963, 'https://ror.org/05s08zz66', 'no_lang_code', 1, 'https://ror.org/05s08zz66 Ultrasion (Spain)'),
(20964, 'https://ror.org/04h1c0m97', 'no_lang_code', 1, 'https://ror.org/04h1c0m97 Umweltsensortechnik (Germany)'),
(20965, 'https://ror.org/04ckzt204', 'en', 1, 'https://ror.org/04ckzt204 Distrito Escolar Unificado de Tucson Tucson Unified School District'),
(20966, 'https://ror.org/05hkcdk24', 'en', 1, 'https://ror.org/05hkcdk24 Union of Dairy Beef Food Industrialists and Producers of Turkey'),
(20967, 'https://ror.org/051ff2v60', 'en', 1, 'https://ror.org/051ff2v60 House of Experiments'),
(20968, 'https://ror.org/00xfvkq36', 'en', 1, 'https://ror.org/00xfvkq36 Vasyl'' Stus Donetsk National University Донецький національний університет імені Василя Стуса'),
(20969, 'https://ror.org/015gsp051', 'en', 1, 'https://ror.org/015gsp051 Tuesdays Children'),
(20970, 'https://ror.org/054v95b28', 'en', 1, 'https://ror.org/054v95b28 Tufts Health Care Institute'),
(20971, 'https://ror.org/00p7b2q74', 'no_lang_code', 1, 'https://ror.org/00p7b2q74 Tunitas Therapeutics (United States)'),
(20972, 'https://ror.org/00d90r471', 'tr', 1, 'https://ror.org/00d90r471 Uluslararası Nakliyeciler Derneği'),
(20973, 'https://ror.org/02e2j2x69', 'no_lang_code', 1, 'https://ror.org/02e2j2x69 Tunstall Healthcare (United Kingdom)'),
(20974, 'https://ror.org/048xkyz52', 'no_lang_code', 1, 'https://ror.org/048xkyz52 Umbria Filler (Italy)'),
(20975, 'https://ror.org/00cedjf57', 'no_lang_code', 1, 'https://ror.org/00cedjf57 Turbocoating (Italy)'),
(20976, 'https://ror.org/009x26v36', 'no_lang_code', 1, 'https://ror.org/009x26v36 Mitsubishi Heavy Industries (Italy)'),
(20977, 'https://ror.org/05gn43523', 'no_lang_code', 1, 'https://ror.org/05gn43523 Smart Metering Systems (United Kingdom)'),
(20978, 'https://ror.org/00zthth08', 'no_lang_code', 1, 'https://ror.org/00zthth08 Uvasol (United Kingdom)'),
(20979, 'https://ror.org/03z3p7a13', 'no_lang_code', 1, 'https://ror.org/03z3p7a13 Turbowinds (Belgium)'),
(20980, 'https://ror.org/0151s7v18', 'no_lang_code', 1, 'https://ror.org/0151s7v18 Umicore (Germany)'),
(20981, 'https://ror.org/051vt5y84', 'no_lang_code', 1, 'https://ror.org/051vt5y84 Turkcell (Turkey)'),
(20982, 'https://ror.org/001szys49', 'en', 1, 'https://ror.org/001szys49 Turkish Society of HVAC and Sanitary Engineers'),
(20983, 'https://ror.org/00hj48m64', 'tr', 1, 'https://ror.org/00hj48m64 Technology Development Foundation of Turkey Turkiye Teknoloji Gelistirme Vakfi Türkiye Teknoloji Geliştirme Vakfı'),
(20984, 'https://ror.org/00vcz1s14', 'no_lang_code', 1, 'https://ror.org/00vcz1s14 Turner Designs (United States)'),
(20985, 'https://ror.org/03wbhaj27', 'no_lang_code', 1, 'https://ror.org/03wbhaj27 VIB Isolatietechniek (Netherlands)'),
(20986, 'https://ror.org/04e43jr31', 'no_lang_code', 1, 'https://ror.org/04e43jr31 Turris (Canada)'),
(20987, 'https://ror.org/04vq1gm90', 'en', 1, 'https://ror.org/04vq1gm90 V. Bakul Institute for Superhard Materials'),
(20988, 'https://ror.org/0532a6411', 'no_lang_code', 1, 'https://ror.org/0532a6411 Twickenham Plating Group (United Kingdom)'),
(20989, 'https://ror.org/017qp3084', 'no_lang_code', 1, 'https://ror.org/017qp3084 Vaasaett (Finland)'),
(20990, 'https://ror.org/01v7jqw26', 'en', 1, 'https://ror.org/01v7jqw26 Department of General Services'),
(20991, 'https://ror.org/01svw4c36', 'no_lang_code', 1, 'https://ror.org/01svw4c36 TwistDx (United Kingdom)'),
(20992, 'https://ror.org/00y0cw843', 'no_lang_code', 1, 'https://ror.org/00y0cw843 Scanogen (United States)'),
(20993, 'https://ror.org/05hnnj870', 'hu', 1, 'https://ror.org/05hnnj870 VADASKERT FOUNDATION FOR CHILDREN''S MENTAL HEALTH Vadaskert Alapítvány a Gyermekek Lelki Egészségéért'),
(20994, 'https://ror.org/026y0w292', 'en', 1, 'https://ror.org/026y0w292 Twyford Church of England High School'),
(20995, 'https://ror.org/05yhgzh28', 'no_lang_code', 1, 'https://ror.org/05yhgzh28 Vaisala (Finland) ʋæi̯sælæ'),
(20996, 'https://ror.org/04dd14e02', 'no_lang_code', 1, 'https://ror.org/04dd14e02 Tymora Analytical Operations (United States)'),
(20997, 'https://ror.org/01yrvea59', 'no_lang_code', 1, 'https://ror.org/01yrvea59 Valdez & Associates (United States)'),
(20998, 'https://ror.org/05h4nz838', 'no_lang_code', 1, 'https://ror.org/05h4nz838 UCO Raymond Denim (Belgium)'),
(20999, 'https://ror.org/04v85zm05', 'no_lang_code', 1, 'https://ror.org/04v85zm05 Valencell (United States)'),
(21000, 'https://ror.org/01hf1y767', 'no_lang_code', 1, 'https://ror.org/01hf1y767 Valeport (United Kingdom)'),
(21001, 'https://ror.org/01h5hcg91', 'no_lang_code', 1, 'https://ror.org/01h5hcg91 Valitor (United States)'),
(21002, 'https://ror.org/02d1znh19', 'no_lang_code', 1, 'https://ror.org/02d1znh19 Vallon (Germany)'),
(21003, 'https://ror.org/01xqc8g04', 'en', 1, 'https://ror.org/01xqc8g04 Un-Convention'),
(21004, 'https://ror.org/01bnn5p02', 'en', 1, 'https://ror.org/01bnn5p02 Uplift'),
(21005, 'https://ror.org/0256nsb38', 'no_lang_code', 1, 'https://ror.org/0256nsb38 Urba 2000'),
(21006, 'https://ror.org/04dhsfx79', 'en', 1, 'https://ror.org/04dhsfx79 Maritime Administration of Latvia'),
(21007, 'https://ror.org/056cswn75', 'no_lang_code', 1, 'https://ror.org/056cswn75 Tesi (Italy)'),
(21008, 'https://ror.org/03x3ydk90', 'en', 1, 'https://ror.org/03x3ydk90 Finansministeriet Ministry of Finance Valtiovarainministeriö'),
(21009, 'https://ror.org/05yat8w11', 'no_lang_code', 1, 'https://ror.org/05yat8w11 Valtronic (Switzerland)'),
(21010, 'https://ror.org/00qjwgg65', 'en', 1, 'https://ror.org/00qjwgg65 Value-Driven Design Institute'),
(21011, 'https://ror.org/00qhqx688', 'no_lang_code', 1, 'https://ror.org/00qhqx688 Ursit (Bulgaria)'),
(21012, 'https://ror.org/02pygx129', 'pl', 1, 'https://ror.org/02pygx129 Urząd Miasta Krakowa'),
(21013, 'https://ror.org/02de9p942', 'no_lang_code', 1, 'https://ror.org/02de9p942 ValveXchange (United States)'),
(21014, 'https://ror.org/02jvezs96', 'no_lang_code', 1, 'https://ror.org/02jvezs96 Vamp Tech (Italy)');
INSERT INTO `rors` VALUES
(21015, 'https://ror.org/01f0erc76', 'no_lang_code', 1, 'https://ror.org/01f0erc76 Uncopiers'),
(21016, 'https://ror.org/03daw3m97', 'no_lang_code', 1, 'https://ror.org/03daw3m97 Schlumberger (Netherlands)'),
(21017, 'https://ror.org/05w0kdr76', 'en', 1, 'https://ror.org/05w0kdr76 Us Helping Us People Into Living'),
(21018, 'https://ror.org/0004h8z94', 'en', 1, 'https://ror.org/0004h8z94 US Ignite'),
(21019, 'https://ror.org/035ennw33', 'no_lang_code', 1, 'https://ror.org/035ennw33 Vanchem Performance Chemicals (Canada)'),
(21020, 'https://ror.org/05y5wb377', 'no_lang_code', 1, 'https://ror.org/05y5wb377 Vanderpol''s Eggs (Canada)'),
(21021, 'https://ror.org/01j0sjc77', 'no_lang_code', 1, 'https://ror.org/01j0sjc77 Vanguard Foundry (United Kingdom)'),
(21022, 'https://ror.org/00m448187', 'no_lang_code', 1, 'https://ror.org/00m448187 Vantage Power (United Kingdom)'),
(21023, 'https://ror.org/04jbqz480', 'no_lang_code', 1, 'https://ror.org/04jbqz480 Variation Biotechnologies (Canada)'),
(21024, 'https://ror.org/00143hx31', 'no_lang_code', 1, 'https://ror.org/00143hx31 Varsi (Slovenia)'),
(21025, 'https://ror.org/023jjn461', 'no_lang_code', 1, 'https://ror.org/023jjn461 Varta Microbattery (Germany)'),
(21026, 'https://ror.org/00k8q6b24', 'no_lang_code', 1, 'https://ror.org/00k8q6b24 Vasade Biosciences (United States)'),
(21027, 'https://ror.org/03dwthp43', 'no_lang_code', 1, 'https://ror.org/03dwthp43 Vascular Pharmaceuticals (United States)'),
(21028, 'https://ror.org/00jat8r15', 'no_lang_code', 1, 'https://ror.org/00jat8r15 VasGene Therapeutics (United States)'),
(21029, 'https://ror.org/04t50sy53', 'sv', 1, 'https://ror.org/04t50sy53 Västerbottens Läns Landsting'),
(21030, 'https://ror.org/00ejs3f24', 'no_lang_code', 1, 'https://ror.org/00ejs3f24 Unilever (Portugal)'),
(21031, 'https://ror.org/03qecha53', 'no_lang_code', 1, 'https://ror.org/03qecha53 Vaxart (United States)'),
(21032, 'https://ror.org/0198hft79', 'no_lang_code', 1, 'https://ror.org/0198hft79 Vaxcel (United States)'),
(21033, 'https://ror.org/0384gj524', 'no_lang_code', 1, 'https://ror.org/0384gj524 Diazyme (United States)'),
(21034, 'https://ror.org/04p0rqr57', 'no_lang_code', 1, 'https://ror.org/04p0rqr57 Unimetrik (Spain)'),
(21035, 'https://ror.org/05xz7ye37', 'no_lang_code', 1, 'https://ror.org/05xz7ye37 Union Biometrica (United States)'),
(21036, 'https://ror.org/056e22e24', 'en', 1, 'https://ror.org/056e22e24 Vaughn College of Aeronautics and Technology'),
(21037, 'https://ror.org/00kjgj482', 'no_lang_code', 1, 'https://ror.org/00kjgj482 VaxInnate (United States)'),
(21038, 'https://ror.org/00wjxpj07', 'en', 1, 'https://ror.org/00wjxpj07 Union County College'),
(21039, 'https://ror.org/01p12g133', 'no_lang_code', 1, 'https://ror.org/01p12g133 VBC Group (United Kingdom)'),
(21040, 'https://ror.org/014hye081', 'no_lang_code', 1, 'https://ror.org/014hye081 Maxam (Spain)'),
(21041, 'https://ror.org/05aydvg23', 'de', 1, 'https://ror.org/05aydvg23 Verband Deutscher Maschinen- und Anlagenbau'),
(21042, 'https://ror.org/04kn30428', 'no_lang_code', 1, 'https://ror.org/04kn30428 BSD Crown (Israel)'),
(21043, 'https://ror.org/018hwj434', 'en', 1, 'https://ror.org/018hwj434 Flemish Public Employment Service Vlaamse Dienst voor Arbeidsbemiddeling en Beroepsopleiding'),
(21044, 'https://ror.org/01b4rx434', 'en', 1, 'https://ror.org/01b4rx434 Union of the Baltic Cities'),
(21045, 'https://ror.org/00yn7fh07', 'en', 1, 'https://ror.org/00yn7fh07 International Union of Radioecology'),
(21046, 'https://ror.org/01vxy3v29', 'en', 1, 'https://ror.org/01vxy3v29 Eurelectric'),
(21047, 'https://ror.org/01nyfcf47', 'it', 1, 'https://ror.org/01nyfcf47 Unioncamere Piemonte'),
(21048, 'https://ror.org/01r3ms014', 'no_lang_code', 1, 'https://ror.org/01r3ms014 U-Hopper (Italy)'),
(21049, 'https://ror.org/02vvsd246', 'no_lang_code', 1, 'https://ror.org/02vvsd246 Vorbeck (United States)'),
(21050, 'https://ror.org/0504g5x95', 'no_lang_code', 1, 'https://ror.org/0504g5x95 Vornia Biomaterials (Ireland)'),
(21051, 'https://ror.org/00fxhtz28', 'no_lang_code', 1, 'https://ror.org/00fxhtz28 VORtech (Netherlands)'),
(21052, 'https://ror.org/05x9r8j38', 'no_lang_code', 1, 'https://ror.org/05x9r8j38 Vector Fabrics (Netherlands)'),
(21053, 'https://ror.org/02wr25f53', 'no_lang_code', 1, 'https://ror.org/02wr25f53 Unisense (Denmark)'),
(21054, 'https://ror.org/015a43103', 'no_lang_code', 1, 'https://ror.org/015a43103 Unisoft (Romania)'),
(21055, 'https://ror.org/00qnqcd72', 'no_lang_code', 1, 'https://ror.org/00qnqcd72 Vorwerk (Germany)'),
(21056, 'https://ror.org/0220q4w51', 'en', 1, 'https://ror.org/0220q4w51 WEGEMT'),
(21057, 'https://ror.org/032j67572', 'no_lang_code', 1, 'https://ror.org/032j67572 Vossloh (Spain)'),
(21058, 'https://ror.org/02hgg3s41', 'no_lang_code', 1, 'https://ror.org/02hgg3s41 Veiki-VNL (Hungary)'),
(21059, 'https://ror.org/03yff7e55', 'no_lang_code', 1, 'https://ror.org/03yff7e55 Unisys (Belgium)'),
(21060, 'https://ror.org/031rhf983', 'no_lang_code', 1, 'https://ror.org/031rhf983 Veeco (United Kingdom)'),
(21061, 'https://ror.org/00vbbfz92', 'en', 1, 'https://ror.org/00vbbfz92 Welding Research Institute - Industrial Institute SR'),
(21062, 'https://ror.org/05rnpra73', 'no_lang_code', 1, 'https://ror.org/05rnpra73 Tapecon (United States)'),
(21063, 'https://ror.org/021mz4j77', 'no_lang_code', 1, 'https://ror.org/021mz4j77 Velcourt (United Kingdom)'),
(21064, 'https://ror.org/022awwm23', 'en', 1, 'https://ror.org/022awwm23 Wellcome Collection'),
(21065, 'https://ror.org/05t3rbf71', 'no_lang_code', 1, 'https://ror.org/05t3rbf71 Voxiva (United States)'),
(21066, 'https://ror.org/00g20ky41', 'no_lang_code', 1, 'https://ror.org/00g20ky41 Vipap (Slovenia)'),
(21067, 'https://ror.org/05h85dx49', 'no_lang_code', 1, 'https://ror.org/05h85dx49 Vipem Hackert (Germany)'),
(21068, 'https://ror.org/04qkxwh87', 'no_lang_code', 1, 'https://ror.org/04qkxwh87 Wellcore'),
(21069, 'https://ror.org/03tdxj229', 'no_lang_code', 1, 'https://ror.org/03tdxj229 VPIphotonics (Germany)'),
(21070, 'https://ror.org/04n2k3w88', 'en', 1, 'https://ror.org/04n2k3w88 Welsh Centre for Printing and Coating'),
(21071, 'https://ror.org/03twab133', 'no_lang_code', 1, 'https://ror.org/03twab133 Viper RF (United Kingdom)'),
(21072, 'https://ror.org/03v11kp57', 'no_lang_code', 1, 'https://ror.org/03v11kp57 Merlexi (United States)'),
(21073, 'https://ror.org/01vy2y168', 'no_lang_code', 1, 'https://ror.org/01vy2y168 SimulTOF Systems (United States)'),
(21074, 'https://ror.org/00k859c30', 'no_lang_code', 1, 'https://ror.org/00k859c30 United Biscuits (United Kingdom)'),
(21075, 'https://ror.org/04ar26726', 'en', 1, 'https://ror.org/04ar26726 Wesley College'),
(21076, 'https://ror.org/01rb66x86', 'no_lang_code', 1, 'https://ror.org/01rb66x86 Veneto Innovazione (Italy)'),
(21077, 'https://ror.org/02f7sfa33', 'en', 1, 'https://ror.org/02f7sfa33 John F. Kennedy Center for the Performing Arts'),
(21078, 'https://ror.org/01kfgca96', 'no_lang_code', 1, 'https://ror.org/01kfgca96 VersuchsStollen Hagerbach (Switzerland)'),
(21079, 'https://ror.org/030rphv15', 'en', 1, 'https://ror.org/030rphv15 Virtual Dimension Center'),
(21080, 'https://ror.org/00t7nkj63', 'no_lang_code', 1, 'https://ror.org/00t7nkj63 Ashmore Energy International (United Kingdom)'),
(21081, 'https://ror.org/00h486367', 'en', 1, 'https://ror.org/00h486367 United Hospital Center'),
(21082, 'https://ror.org/02mpd6q30', 'no_lang_code', 1, 'https://ror.org/02mpd6q30 Velcura Therapeutics (United States)'),
(21083, 'https://ror.org/0431htb77', 'no_lang_code', 1, 'https://ror.org/0431htb77 Vukov Extra (Slovakia)'),
(21084, 'https://ror.org/05wxraw41', 'no_lang_code', 1, 'https://ror.org/05wxraw41 Nortek (Canada)'),
(21085, 'https://ror.org/0018h5d52', 'en', 1, 'https://ror.org/0018h5d52 Virginia Western Community College'),
(21086, 'https://ror.org/00dyyan63', 'no_lang_code', 1, 'https://ror.org/00dyyan63 Vennsa Technologies (Canada)'),
(21087, 'https://ror.org/02wh0by57', 'no_lang_code', 1, 'https://ror.org/02wh0by57 Vybion (United States)'),
(21088, 'https://ror.org/05xq4sr56', 'lv', 1, 'https://ror.org/05xq4sr56 Ventspils Digitālais Centrs'),
(21089, 'https://ror.org/0582rgx13', 'no_lang_code', 1, 'https://ror.org/0582rgx13 Veolia (United Kingdom)'),
(21090, 'https://ror.org/03gfrak98', 'en', 1, 'https://ror.org/03gfrak98 West Liberty University'),
(21091, 'https://ror.org/047gmeb26', 'no_lang_code', 1, 'https://ror.org/047gmeb26 VeraChem (United States)'),
(21092, 'https://ror.org/05a8pa318', 'no_lang_code', 1, 'https://ror.org/05a8pa318 Vertex Pharmaceuticals (Canada)'),
(21093, 'https://ror.org/00kqye711', 'en', 1, 'https://ror.org/00kqye711 W.E. Upjohn Institute for Employment Research'),
(21094, 'https://ror.org/05by3c979', 'no_lang_code', 1, 'https://ror.org/05by3c979 Verax Biomedical (United States)'),
(21095, 'https://ror.org/041drhd97', 'no_lang_code', 1, 'https://ror.org/041drhd97 United Medix Laboratories (Finland) Yhtyneet Medix Laboratoriot'),
(21096, 'https://ror.org/019dka583', 'en', 1, 'https://ror.org/019dka583 Petal School District'),
(21097, 'https://ror.org/04qd8km43', 'en', 1, 'https://ror.org/04qd8km43 West Valley College'),
(21098, 'https://ror.org/05n7j1m63', 'en', 1, 'https://ror.org/05n7j1m63 West Valley High School'),
(21099, 'https://ror.org/03bvdp262', 'en', 1, 'https://ror.org/03bvdp262 Farrington High School'),
(21100, 'https://ror.org/00kf9rx15', 'en', 1, 'https://ror.org/00kf9rx15 West Yorkshire Police'),
(21101, 'https://ror.org/03bwvnd45', 'no_lang_code', 1, 'https://ror.org/03bwvnd45 TecPart Verband Technische Kunststoff-Produkte e.V.'),
(21102, 'https://ror.org/04r3ghh39', 'no_lang_code', 1, 'https://ror.org/04r3ghh39 Virtici (United States)'),
(21103, 'https://ror.org/05mb0rj41', 'no_lang_code', 1, 'https://ror.org/05mb0rj41 Virtual Brands (United States)'),
(21104, 'https://ror.org/05st2e578', 'no_lang_code', 1, 'https://ror.org/05st2e578 Verdezyne (United States)'),
(21105, 'https://ror.org/02tvd9h19', 'no_lang_code', 1, 'https://ror.org/02tvd9h19 Virtual Corporation (United States)'),
(21106, 'https://ror.org/01138at48', 'no_lang_code', 1, 'https://ror.org/01138at48 Virtual Open Systems (France)'),
(21107, 'https://ror.org/04rs46204', 'no_lang_code', 1, 'https://ror.org/04rs46204 United Science'),
(21108, 'https://ror.org/02evkff51', 'no_lang_code', 1, 'https://ror.org/02evkff51 J.Schneeberger Maschinen (Switzerland)'),
(21109, 'https://ror.org/04fg67f94', 'en', 1, 'https://ror.org/04fg67f94 German Machine Tool Builders Association Verein Deutscher Werkzeugmaschinenfabriken'),
(21110, 'https://ror.org/0048r6h17', 'no_lang_code', 1, 'https://ror.org/0048r6h17 United Silicon Carbide (United States)'),
(21111, 'https://ror.org/04ptyy568', 'en', 1, 'https://ror.org/04ptyy568 Western Iowa Tech Community College'),
(21112, 'https://ror.org/05smwx616', 'no_lang_code', 1, 'https://ror.org/05smwx616 Schneeberger (Switzerland)'),
(21113, 'https://ror.org/016bj9f63', 'en', 1, 'https://ror.org/016bj9f63 United Way of Anchorage'),
(21114, 'https://ror.org/019s0ax51', 'en', 1, 'https://ror.org/019s0ax51 United Way of the Ozarks'),
(21115, 'https://ror.org/00c1w3156', 'en', 1, 'https://ror.org/00c1w3156 Maryland Area Health Education Center West'),
(21116, 'https://ror.org/02q0kr716', 'en', 1, 'https://ror.org/02q0kr716 United Way of Yellowstone County'),
(21117, 'https://ror.org/051tn6h07', 'no_lang_code', 1, 'https://ror.org/051tn6h07 Heraeus (Germany) Heraeus Konzern'),
(21118, 'https://ror.org/045z19p32', 'no_lang_code', 1, 'https://ror.org/045z19p32 Virtual Trip (Greece)'),
(21119, 'https://ror.org/00eagt536', 'no_lang_code', 1, 'https://ror.org/00eagt536 W.F. Baird & Associates Coastal Engineers (Canada)'),
(21120, 'https://ror.org/05f7acz87', 'no_lang_code', 1, 'https://ror.org/05f7acz87 W/E Consultants'),
(21121, 'https://ror.org/04ky74j22', 'en', 1, 'https://ror.org/04ky74j22 Technologie-Transfer-Zentrum Bremerhaven Technology Transfer Center Bremerhaven'),
(21122, 'https://ror.org/041d0jh94', 'en', 1, 'https://ror.org/041d0jh94 Western Massachusetts Training Consortium'),
(21123, 'https://ror.org/03hhjm063', 'en', 1, 'https://ror.org/03hhjm063 Western Piedmont Community College'),
(21124, 'https://ror.org/02yeqtv37', 'no_lang_code', 1, 'https://ror.org/02yeqtv37 Wärtsilä (Netherlands)'),
(21125, 'https://ror.org/02g8ybs83', 'no_lang_code', 1, 'https://ror.org/02g8ybs83 AstenJohnson (Belgium)'),
(21126, 'https://ror.org/039nqq780', 'no_lang_code', 1, 'https://ror.org/039nqq780 Virtualware Group (Spain)'),
(21127, 'https://ror.org/05pq96t26', 'no_lang_code', 1, 'https://ror.org/05pq96t26 Association of the Austrian Cement Industry Vereinigung der Österreichischen Zementindustrie'),
(21128, 'https://ror.org/05wwhcb10', 'no_lang_code', 1, 'https://ror.org/05wwhcb10 Western Systems Research (United States)'),
(21129, 'https://ror.org/029nhgs15', 'no_lang_code', 1, 'https://ror.org/029nhgs15 WesTest Engineering (United States)'),
(21130, 'https://ror.org/037ksca52', 'no_lang_code', 1, 'https://ror.org/037ksca52 PerkinElmer (Finland)'),
(21131, 'https://ror.org/022hr6a87', 'en', 1, 'https://ror.org/022hr6a87 Veria Central Public Library δημόσια κεντρική βιβλιοθήκη βέροιας'),
(21132, 'https://ror.org/023mbkk92', 'no_lang_code', 1, 'https://ror.org/023mbkk92 Tektronix (Canada)'),
(21133, 'https://ror.org/01a35x275', 'en', 1, 'https://ror.org/01a35x275 Westminster City Council'),
(21134, 'https://ror.org/051dyvc17', 'en', 1, 'https://ror.org/051dyvc17 Technical College of Applied Sciences'),
(21135, 'https://ror.org/04rg2ce06', 'no_lang_code', 1, 'https://ror.org/04rg2ce06 VistaMed (Ireland)'),
(21136, 'https://ror.org/04we7sp72', 'no_lang_code', 1, 'https://ror.org/04we7sp72 Visual Acuity (United Kingdom)'),
(21137, 'https://ror.org/00rhh8s91', 'no_lang_code', 1, 'https://ror.org/00rhh8s91 Wallenius Lines (Sweden)'),
(21138, 'https://ror.org/01zjsj463', 'no_lang_code', 1, 'https://ror.org/01zjsj463 Walter Frank & Sons (United Kingdom)'),
(21139, 'https://ror.org/005cdk606', 'no_lang_code', 1, 'https://ror.org/005cdk606 Visual Awareness Research Group (United States)'),
(21140, 'https://ror.org/01c3gv589', 'en', 1, 'https://ror.org/01c3gv589 Walters Public Schools'),
(21141, 'https://ror.org/02pn8ds72', 'no_lang_code', 1, 'https://ror.org/02pn8ds72 Wetlands Incubator (Belgium)'),
(21142, 'https://ror.org/05sjmgm82', 'en', 1, 'https://ror.org/05sjmgm82 World Agency of Planetary Monitoring & Earthquake Risk Reduction'),
(21143, 'https://ror.org/015pwzh41', 'no_lang_code', 1, 'https://ror.org/015pwzh41 Weyerhaeuser (United States)'),
(21144, 'https://ror.org/02vttnw51', 'en', 1, 'https://ror.org/02vttnw51 Verification Research, Training and Information Centre'),
(21145, 'https://ror.org/02hqgsn65', 'no_lang_code', 1, 'https://ror.org/02hqgsn65 Visual Dimension (Belgium)'),
(21146, 'https://ror.org/03y0ep822', 'en', 1, 'https://ror.org/03y0ep822 World Health Organization - Zambia'),
(21147, 'https://ror.org/03y69cp37', 'no_lang_code', 1, 'https://ror.org/03y69cp37 Veris Technologies (United States)'),
(21148, 'https://ror.org/0524gsp03', 'no_lang_code', 1, 'https://ror.org/0524gsp03 Visup (Italy)'),
(21149, 'https://ror.org/03ga86b15', 'en', 1, 'https://ror.org/03ga86b15 Living on Earth'),
(21150, 'https://ror.org/02aethq11', 'no_lang_code', 1, 'https://ror.org/02aethq11 Wapice (Finland)'),
(21151, 'https://ror.org/00sv59x24', 'no_lang_code', 1, 'https://ror.org/00sv59x24 Warburtons (United Kingdom)'),
(21152, 'https://ror.org/00wpwke06', 'en', 1, 'https://ror.org/00wpwke06 wfk - Cleaning Technology Institute'),
(21153, 'https://ror.org/01ahgwn58', 'no_lang_code', 1, 'https://ror.org/01ahgwn58 Eckert & Ziegler (United States)'),
(21154, 'https://ror.org/0468knt27', 'no_lang_code', 1, 'https://ror.org/0468knt27 Worldsensing (Spain)'),
(21155, 'https://ror.org/05y6c0296', 'no_lang_code', 1, 'https://ror.org/05y6c0296 Tetra Tech (Canada)'),
(21156, 'https://ror.org/045pr1e07', 'no_lang_code', 1, 'https://ror.org/045pr1e07 Vitalus Nutrition (Canada)'),
(21157, 'https://ror.org/04vt0z780', 'en', 1, 'https://ror.org/04vt0z780 Warren Wilson College'),
(21158, 'https://ror.org/00vzfja08', 'en', 1, 'https://ror.org/00vzfja08 Vermont Agency of Education'),
(21159, 'https://ror.org/02zw4ny56', 'no_lang_code', 1, 'https://ror.org/02zw4ny56 Vitamib (France)'),
(21160, 'https://ror.org/04enbdz15', 'no_lang_code', 1, 'https://ror.org/04enbdz15 Worldwide Fruit (United Kingdom)'),
(21161, 'https://ror.org/02ef5kc35', 'no_lang_code', 1, 'https://ror.org/02ef5kc35 Vitas (Norway)'),
(21162, 'https://ror.org/01b2wke14', 'no_lang_code', 1, 'https://ror.org/01b2wke14 Wowbagger Productions'),
(21163, 'https://ror.org/02r34kc48', 'no_lang_code', 1, 'https://ror.org/02r34kc48 WheelRight (United Kingdom)'),
(21164, 'https://ror.org/01brx0y03', 'no_lang_code', 1, 'https://ror.org/01brx0y03 Vitec (France)'),
(21165, 'https://ror.org/05k6ewa71', 'no_lang_code', 1, 'https://ror.org/05k6ewa71 Where''s Everybody (Malta)'),
(21166, 'https://ror.org/04aw3a105', 'no_lang_code', 1, 'https://ror.org/04aw3a105 Vitech Systems (United States)'),
(21167, 'https://ror.org/053pwmv60', 'en', 1, 'https://ror.org/053pwmv60 V.I. Vernadsky Institute of Geochemistry and Analytical Chemistry Федеральное государственное бюджетное учреждение науки Ордена Ленина и Ордена Октябрьской Революции Институт геохимии и аналитической химии им. В.И. Вернадского Российской академии наук'),
(21168, 'https://ror.org/00fa1k613', 'no_lang_code', 1, 'https://ror.org/00fa1k613 Wrap (United Kingdom)'),
(21169, 'https://ror.org/03faefq04', 'no_lang_code', 1, 'https://ror.org/03faefq04 Warwick Analytics (United Kingdom)'),
(21170, 'https://ror.org/034pc0d25', 'no_lang_code', 1, 'https://ror.org/034pc0d25 Versarien Technologies (United Kingdom)'),
(21171, 'https://ror.org/04e7cmm10', 'no_lang_code', 1, 'https://ror.org/04e7cmm10 Wherry & Sons (United Kingdom)'),
(21172, 'https://ror.org/05e29fw09', 'en', 1, 'https://ror.org/05e29fw09 Wright House Wellness Center'),
(21173, 'https://ror.org/026xnjn61', 'no_lang_code', 1, 'https://ror.org/026xnjn61 Whirlpool (Italy)'),
(21174, 'https://ror.org/008ksm830', 'en', 1, 'https://ror.org/008ksm830 Valley City Public School District'),
(21175, 'https://ror.org/0241ard09', 'no_lang_code', 1, 'https://ror.org/0241ard09 Vertellus Specialties (United Kingdom)'),
(21176, 'https://ror.org/02d07sw41', 'no_lang_code', 1, 'https://ror.org/02d07sw41 WS Energia (Portugal)'),
(21177, 'https://ror.org/00kdbj440', 'no_lang_code', 1, 'https://ror.org/00kdbj440 Glencore (Canada)'),
(21178, 'https://ror.org/00qmq1337', 'en', 1, 'https://ror.org/00qmq1337 Stiftung Verum Verum - Foundation for Behaviour and Environment'),
(21179, 'https://ror.org/05j857112', 'no_lang_code', 1, 'https://ror.org/05j857112 WS (Germany)'),
(21180, 'https://ror.org/02gdq7j49', 'en', 1, 'https://ror.org/02gdq7j49 White Balance Projects Pool Agency'),
(21181, 'https://ror.org/02rxdft45', 'en', 1, 'https://ror.org/02rxdft45 Water Authority of Jordan'),
(21182, 'https://ror.org/00bgp5503', 'no_lang_code', 1, 'https://ror.org/00bgp5503 Water & Earth Technologie (United States)'),
(21183, 'https://ror.org/04ce08670', 'no_lang_code', 1, 'https://ror.org/04ce08670 IHS Markit (Germany)'),
(21184, 'https://ror.org/0110g7c84', 'no_lang_code', 1, 'https://ror.org/0110g7c84 WHM Group'),
(21185, 'https://ror.org/03sz3nv18', 'no_lang_code', 1, 'https://ror.org/03sz3nv18 VHsquared (United Kingdom)'),
(21186, 'https://ror.org/00b3e0r50', 'no_lang_code', 1, 'https://ror.org/00b3e0r50 Water Services Corporation (Malta)'),
(21187, 'https://ror.org/041ftcz16', 'en', 1, 'https://ror.org/041ftcz16 Naugatuck Valley Community College'),
(21188, 'https://ror.org/01997ht09', 'no_lang_code', 1, 'https://ror.org/01997ht09 Virtuelle Fabrik (Switzerland)'),
(21189, 'https://ror.org/013g3g638', 'no_lang_code', 1, 'https://ror.org/013g3g638 Vertically Integrated Systems (Germany)'),
(21190, 'https://ror.org/01q48h373', 'no_lang_code', 1, 'https://ror.org/01q48h373 Glanbia (Ireland)'),
(21191, 'https://ror.org/01r2zsa88', 'no_lang_code', 1, 'https://ror.org/01r2zsa88 Vivid Technologies (United States)'),
(21192, 'https://ror.org/05h877m37', 'no_lang_code', 1, 'https://ror.org/05h877m37 WaterstofNet (Belgium)'),
(21193, 'https://ror.org/032ycrz75', 'no_lang_code', 1, 'https://ror.org/032ycrz75 WiCell'),
(21194, 'https://ror.org/05m3wdv79', 'en', 1, 'https://ror.org/05m3wdv79 Wichita Community Foundation'),
(21195, 'https://ror.org/02abxwv41', 'en', 1, 'https://ror.org/02abxwv41 Wyoming Department of Education'),
(21196, 'https://ror.org/05ggndd89', 'no_lang_code', 1, 'https://ror.org/05ggndd89 eLEAF (Netherlands)'),
(21197, 'https://ror.org/01e2apd69', 'en', 1, 'https://ror.org/01e2apd69 Wytheville Community College'),
(21198, 'https://ror.org/00ms25z94', 'no_lang_code', 1, 'https://ror.org/00ms25z94 Wates (United Kingdom)'),
(21199, 'https://ror.org/01w3f6g06', 'no_lang_code', 1, 'https://ror.org/01w3f6g06 Wieland (Germany)'),
(21200, 'https://ror.org/01rebhs43', 'en', 1, 'https://ror.org/01rebhs43 Watts Health Center'),
(21201, 'https://ror.org/01h0jwd72', 'no_lang_code', 1, 'https://ror.org/01h0jwd72 Alfa Laval (France)'),
(21202, 'https://ror.org/01qx5e557', 'no_lang_code', 1, 'https://ror.org/01qx5e557 Vicinay Cadenas (Spain)'),
(21203, 'https://ror.org/00pew5z05', 'no_lang_code', 1, 'https://ror.org/00pew5z05 Vicon (United Kingdom)'),
(21204, 'https://ror.org/01a583453', 'en', 1, 'https://ror.org/01a583453 Victoria Heart Institute Foundation'),
(21205, 'https://ror.org/01v5hvs93', 'en', 1, 'https://ror.org/01v5hvs93 Victorian Aboriginal Health Service'),
(21206, 'https://ror.org/02a809t02', 'no_lang_code', 1, 'https://ror.org/02a809t02 Vizzuality (Spain)'),
(21207, 'https://ror.org/001y71q13', 'no_lang_code', 1, 'https://ror.org/001y71q13 Wave Dragon (Denmark)'),
(21208, 'https://ror.org/00pnzak35', 'no_lang_code', 1, 'https://ror.org/00pnzak35 Victrex (United Kingdom)'),
(21209, 'https://ror.org/03htt2d69', 'no_lang_code', 1, 'https://ror.org/03htt2d69 Pfizer (Italy)'),
(21210, 'https://ror.org/020ck1591', 'en', 1, 'https://ror.org/020ck1591 Police Academy in Szczytno'),
(21211, 'https://ror.org/052am5598', 'no_lang_code', 1, 'https://ror.org/052am5598 Vida Diagnostics (United States)'),
(21212, 'https://ror.org/01vbx2754', 'no_lang_code', 1, 'https://ror.org/01vbx2754 Unis (Czechia)'),
(21213, 'https://ror.org/02dx4w725', 'de', 1, 'https://ror.org/02dx4w725 Wirtschaftsförderungsinstitut'),
(21214, 'https://ror.org/02rs30x67', 'no_lang_code', 1, 'https://ror.org/02rs30x67 Melexis (Germany)'),
(21215, 'https://ror.org/04g86yb67', 'no_lang_code', 1, 'https://ror.org/04g86yb67 VLP Biotech (United States)'),
(21216, 'https://ror.org/024ccd889', 'en', 1, 'https://ror.org/024ccd889 Wayland Baptist University'),
(21217, 'https://ror.org/02h2m5t91', 'no_lang_code', 1, 'https://ror.org/02h2m5t91 WIGeoGIS (Austria)'),
(21218, 'https://ror.org/051g6zc94', 'no_lang_code', 1, 'https://ror.org/051g6zc94 VM Discovery (United States)'),
(21219, 'https://ror.org/02evz6a53', 'no_lang_code', 1, 'https://ror.org/02evz6a53 X Flow (Netherlands)'),
(21220, 'https://ror.org/01esc3z41', 'en', 1, 'https://ror.org/01esc3z41 Wildlife Conservation Society Canada'),
(21221, 'https://ror.org/02kzda898', 'no_lang_code', 1, 'https://ror.org/02kzda898 Videometer (Denmark)'),
(21222, 'https://ror.org/00tsqpx02', 'no_lang_code', 1, 'https://ror.org/00tsqpx02 VocaLink (United Kingdom)'),
(21223, 'https://ror.org/01amy5q57', 'en', 1, 'https://ror.org/01amy5q57 Viewpoints Research Institute'),
(21224, 'https://ror.org/055vanj37', 'no_lang_code', 1, 'https://ror.org/055vanj37 Shift (United Kingdom)'),
(21225, 'https://ror.org/00nk33e27', 'no_lang_code', 1, 'https://ror.org/00nk33e27 X-Treme Creations (Netherlands)'),
(21226, 'https://ror.org/03q0k8124', 'no_lang_code', 1, 'https://ror.org/03q0k8124 Xaar (United Kingdom)'),
(21227, 'https://ror.org/0105bs557', 'no_lang_code', 1, 'https://ror.org/0105bs557 De Lijn (Belgium)'),
(21228, 'https://ror.org/05vn6by16', 'no_lang_code', 1, 'https://ror.org/05vn6by16 Viewrope'),
(21229, 'https://ror.org/04gse8s13', 'no_lang_code', 1, 'https://ror.org/04gse8s13 Xactagen (United States)'),
(21230, 'https://ror.org/02ecccn63', 'no_lang_code', 1, 'https://ror.org/02ecccn63 Xandem Technology (United States)'),
(21231, 'https://ror.org/05k2ek264', 'no_lang_code', 1, 'https://ror.org/05k2ek264 Vigo System (Poland)'),
(21232, 'https://ror.org/04mgp5b41', 'no_lang_code', 1, 'https://ror.org/04mgp5b41 Sarossa (United States)'),
(21233, 'https://ror.org/030f3em06', 'no_lang_code', 1, 'https://ror.org/030f3em06 XData Corporation (United States)'),
(21234, 'https://ror.org/043kj4v41', 'en', 1, 'https://ror.org/043kj4v41 William F Ryan Community Health Center'),
(21235, 'https://ror.org/03sja0d46', 'en', 1, 'https://ror.org/03sja0d46 Village for Families and Children'),
(21236, 'https://ror.org/03dbt2x59', 'no_lang_code', 1, 'https://ror.org/03dbt2x59 Villeroy & Boch (Germany)'),
(21237, 'https://ror.org/01fgnkn65', 'en', 1, 'https://ror.org/01fgnkn65 Euro-Mediterranean Water Information System Méditerranéen d''Information sur les Savoir'),
(21238, 'https://ror.org/003s4cb46', 'no_lang_code', 1, 'https://ror.org/003s4cb46 YIT (Finland)'),
(21239, 'https://ror.org/02jakhr06', 'no_lang_code', 1, 'https://ror.org/02jakhr06 Voicekey (United Kingdom)'),
(21240, 'https://ror.org/0431re516', 'no_lang_code', 1, 'https://ror.org/0431re516 Ylec Consultants'),
(21241, 'https://ror.org/04g9r9c91', 'no_lang_code', 1, 'https://ror.org/04g9r9c91 Volcano Corporation (United States)'),
(21242, 'https://ror.org/02g5t8y66', 'no_lang_code', 1, 'https://ror.org/02g5t8y66 Yole Développement (France)'),
(21243, 'https://ror.org/056qmem13', 'en', 1, 'https://ror.org/056qmem13 Xenobiotic Detection Systems'),
(21244, 'https://ror.org/03a7vht50', 'no_lang_code', 1, 'https://ror.org/03a7vht50 Grenson (United Kingdom)'),
(21245, 'https://ror.org/01hg95g34', 'en', 1, 'https://ror.org/01hg95g34 York Archaeological Trust'),
(21246, 'https://ror.org/05teaww98', 'en', 1, 'https://ror.org/05teaww98 York Technical College'),
(21247, 'https://ror.org/02f38w092', 'no_lang_code', 1, 'https://ror.org/02f38w092 Xeros Technologies (United Kingdom)'),
(21248, 'https://ror.org/011zf9m55', 'no_lang_code', 1, 'https://ror.org/011zf9m55 William Ross (United Kingdom)'),
(21249, 'https://ror.org/02336q433', 'no_lang_code', 1, 'https://ror.org/02336q433 Enghouse Interactive (United Kingdom)'),
(21250, 'https://ror.org/005kb9y44', 'no_lang_code', 1, 'https://ror.org/005kb9y44 Vinidea'),
(21251, 'https://ror.org/027f5z015', 'no_lang_code', 1, 'https://ror.org/027f5z015 Xigen (Switzerland)'),
(21252, 'https://ror.org/03rk9dw54', 'en', 1, 'https://ror.org/03rk9dw54 Williams Unified School District'),
(21253, 'https://ror.org/04vt6h473', 'no_lang_code', 1, 'https://ror.org/04vt6h473 Vioryl (Greece)'),
(21254, 'https://ror.org/01jncky63', 'en', 1, 'https://ror.org/01jncky63 Williams & Associates'),
(21255, 'https://ror.org/042xxm757', 'no_lang_code', 1, 'https://ror.org/042xxm757 Viotech Communications (France)'),
(21256, 'https://ror.org/02ec5fm39', 'no_lang_code', 1, 'https://ror.org/02ec5fm39 First Innovation Park'),
(21257, 'https://ror.org/03vfey433', 'no_lang_code', 1, 'https://ror.org/03vfey433 Lion Capital (United Kingdom)'),
(21258, 'https://ror.org/04yewpw08', 'no_lang_code', 1, 'https://ror.org/04yewpw08 Xim (United Kingdom)'),
(21259, 'https://ror.org/0396gjt51', 'no_lang_code', 1, 'https://ror.org/0396gjt51 Volterra (United Kingdom)'),
(21260, 'https://ror.org/04htkzn50', 'en', 1, 'https://ror.org/04htkzn50 Youth & Family Services'),
(21261, 'https://ror.org/00vgt4p82', 'no_lang_code', 1, 'https://ror.org/00vgt4p82 Center for Innovation and Technology Zentrum für Innovation und Technik in Nordrhein-Westfalen'),
(21262, 'https://ror.org/03bhas793', 'en', 1, 'https://ror.org/03bhas793 Youth Development'),
(21263, 'https://ror.org/0391kcn80', 'no_lang_code', 1, 'https://ror.org/0391kcn80 Zentrum für Rationelle Energieanwendung und Umwelt (Germany)'),
(21264, 'https://ror.org/05fejsj94', 'en', 1, 'https://ror.org/05fejsj94 Volunteer Behavioral Health Care System'),
(21265, 'https://ror.org/039ardd72', 'no_lang_code', 1, 'https://ror.org/039ardd72 Xintek (United States)'),
(21266, 'https://ror.org/045gpd643', 'en', 1, 'https://ror.org/045gpd643 Volunteers of America Oregon'),
(21267, 'https://ror.org/048jjtk40', 'no_lang_code', 1, 'https://ror.org/048jjtk40 Youth Radio (United States)'),
(21268, 'https://ror.org/0381mdg49', 'no_lang_code', 1, 'https://ror.org/0381mdg49 XiO Photonics (Netherlands)'),
(21269, 'https://ror.org/04t60r196', 'no_lang_code', 1, 'https://ror.org/04t60r196 Xiros (United Kingdom)'),
(21270, 'https://ror.org/0134twj05', 'en', 1, 'https://ror.org/0134twj05 Youth Service Project'),
(21271, 'https://ror.org/03s13ge81', 'en', 1, 'https://ror.org/03s13ge81 Youth and Family Services of Haddam Killingworth'),
(21272, 'https://ror.org/05r4ezy10', 'no_lang_code', 1, 'https://ror.org/05r4ezy10 XMOS (United Kingdom)'),
(21273, 'https://ror.org/05keb2d81', 'no_lang_code', 1, 'https://ror.org/05keb2d81 Yprema (France)'),
(21274, 'https://ror.org/01egpew89', 'no_lang_code', 1, 'https://ror.org/01egpew89 YTKO (United Kingdom)'),
(21275, 'https://ror.org/05q1et630', 'no_lang_code', 1, 'https://ror.org/05q1et630 Prototal (Sweden)'),
(21276, 'https://ror.org/02380m508', 'en', 1, 'https://ror.org/02380m508 Medway Maritime Hospital'),
(21277, 'https://ror.org/04fqgk073', 'en', 1, 'https://ror.org/04fqgk073 Yuba Community College District'),
(21278, 'https://ror.org/041geh851', 'en', 1, 'https://ror.org/041geh851 Melksham Community Hospital'),
(21279, 'https://ror.org/02xzt0b24', 'no_lang_code', 1, 'https://ror.org/02xzt0b24 Yuzhnoye State Design Office (Ukraine) Державне конструкторське бюро «Південне» ім. М. К. Янгеля'),
(21280, 'https://ror.org/019rfn866', 'en', 1, 'https://ror.org/019rfn866 Melton Mowbray Hospital'),
(21281, 'https://ror.org/00ffjew77', 'no_lang_code', 1, 'https://ror.org/00ffjew77 Wiener Stadtwerke (Austria)'),
(21282, 'https://ror.org/045ct3157', 'no_lang_code', 1, 'https://ror.org/045ct3157 Zabala Innovation Consulting (Spain)'),
(21283, 'https://ror.org/039e57198', 'no_lang_code', 1, 'https://ror.org/039e57198 XSB (United States)'),
(21284, 'https://ror.org/0280r7h11', 'en', 1, 'https://ror.org/0280r7h11 Mid Essex Hospital Services NHS Trust'),
(21285, 'https://ror.org/05db2n282', 'no_lang_code', 1, 'https://ror.org/05db2n282 Willmott Dixon (United Kingdom)'),
(21286, 'https://ror.org/03tx9kw79', 'en', 1, 'https://ror.org/03tx9kw79 The Hydrogen and Fuel Cell Center The Zentrum für BrennstoffzellenTechnik'),
(21287, 'https://ror.org/0399msg87', 'no_lang_code', 1, 'https://ror.org/0399msg87 Grammer (Germany)'),
(21288, 'https://ror.org/05g23q746', 'en', 1, 'https://ror.org/05g23q746 Mid Yorkshire Hospitals NHS Trust'),
(21289, 'https://ror.org/02yy98a98', 'en', 1, 'https://ror.org/02yy98a98 Zero Carbon Hub'),
(21290, 'https://ror.org/03vn3wv31', 'en', 1, 'https://ror.org/03vn3wv31 Midhurst Community Hospital'),
(21291, 'https://ror.org/045n1e339', 'en', 1, 'https://ror.org/045n1e339 Mile End Hospital'),
(21292, 'https://ror.org/045a17r54', 'no_lang_code', 1, 'https://ror.org/045a17r54 Xyken (United States)'),
(21293, 'https://ror.org/00m1cca61', 'en', 1, 'https://ror.org/00m1cca61 Milford Hospital'),
(21294, 'https://ror.org/001n2yb14', 'no_lang_code', 1, 'https://ror.org/001n2yb14 Zadig (Italy)'),
(21295, 'https://ror.org/05f1yv317', 'no_lang_code', 1, 'https://ror.org/05f1yv317 Zansors (United States)'),
(21296, 'https://ror.org/02wyktf69', 'en', 1, 'https://ror.org/02wyktf69 Mill View Hospital'),
(21297, 'https://ror.org/026jsye16', 'no_lang_code', 1, 'https://ror.org/026jsye16 Y-Stress (United States)'),
(21298, 'https://ror.org/0333kwv03', 'en', 1, 'https://ror.org/0333kwv03 Millom Hospital'),
(21299, 'https://ror.org/02xd7yj05', 'no_lang_code', 1, 'https://ror.org/02xd7yj05 Yamaha (Netherlands)'),
(21300, 'https://ror.org/05r5dcc67', 'en', 1, 'https://ror.org/05r5dcc67 Mold Community Hospital Ysbyty Cymuned yr Wyddgrug'),
(21301, 'https://ror.org/0554vw273', 'en', 1, 'https://ror.org/0554vw273 Molesey Hospital'),
(21302, 'https://ror.org/03rkhvp51', 'en', 1, 'https://ror.org/03rkhvp51 Yamhill County Public Health'),
(21303, 'https://ror.org/02xbagc94', 'no_lang_code', 1, 'https://ror.org/02xbagc94 Yankee Environmental System (United States)'),
(21304, 'https://ror.org/050pakd64', 'no_lang_code', 1, 'https://ror.org/050pakd64 Diodes (United Kingdom)'),
(21305, 'https://ror.org/028301226', 'en', 1, 'https://ror.org/028301226 West Virginia Department of Education'),
(21306, 'https://ror.org/04gvwsw92', 'no_lang_code', 1, 'https://ror.org/04gvwsw92 Yantric (United States)'),
(21307, 'https://ror.org/05d10zv92', 'en', 1, 'https://ror.org/05d10zv92 Monkton Hall Hospital'),
(21308, 'https://ror.org/0047ad446', 'no_lang_code', 1, 'https://ror.org/0047ad446 Yara (United Kingdom)'),
(21309, 'https://ror.org/05bmme985', 'en', 1, 'https://ror.org/05bmme985 Monkwearmouth Hospital'),
(21310, 'https://ror.org/01pk3g458', 'en', 1, 'https://ror.org/01pk3g458 Westchester County Department of Public Safety'),
(21311, 'https://ror.org/02xbmha33', 'en', 1, 'https://ror.org/02xbmha33 Montagu Hospital'),
(21312, 'https://ror.org/02mvn1p69', 'no_lang_code', 1, 'https://ror.org/02mvn1p69 Ivchenko Progress (Ukraine) Запорізьке машинобудівне конструкторське бюро'),
(21313, 'https://ror.org/04r5hpa11', 'no_lang_code', 1, 'https://ror.org/04r5hpa11 YDreams (Portugal)'),
(21314, 'https://ror.org/056ct0w58', 'en', 1, 'https://ror.org/056ct0w58 George Moore Community Clinic'),
(21315, 'https://ror.org/00ryba775', 'en', 1, 'https://ror.org/00ryba775 Yellowhawk Tribal Health Center'),
(21316, 'https://ror.org/03ff1e896', 'en', 1, 'https://ror.org/03ff1e896 Centre for Applied Psychology, Environmental and Social Research Zentrum für angewandte Psychologie, Umwelt- und Sozialforschung'),
(21317, 'https://ror.org/01qq4rp48', 'en', 1, 'https://ror.org/01qq4rp48 Wiltshire Council'),
(21318, 'https://ror.org/010n3pg47', 'no_lang_code', 1, 'https://ror.org/010n3pg47 Zeus Scientific (United States)'),
(21319, 'https://ror.org/02a7ztw78', 'no_lang_code', 1, 'https://ror.org/02a7ztw78 Microsemi (United Kingdom)'),
(21320, 'https://ror.org/03f6smv36', 'no_lang_code', 1, 'https://ror.org/03f6smv36 Wind Technologies (United Kingdom)'),
(21321, 'https://ror.org/00d337t51', 'no_lang_code', 1, 'https://ror.org/00d337t51 Wind (Italy)'),
(21322, 'https://ror.org/010e34m27', 'no_lang_code', 1, 'https://ror.org/010e34m27 Zayer (Spain)'),
(21323, 'https://ror.org/00wpr8n40', 'en', 1, 'https://ror.org/00wpr8n40 Morpeth Cottage Hospital'),
(21324, 'https://ror.org/03a0s3r85', 'no_lang_code', 1, 'https://ror.org/03a0s3r85 Ziena Optimization (United States)'),
(21325, 'https://ror.org/037fz4341', 'en', 1, 'https://ror.org/037fz4341 Moseley Hall Hospital'),
(21326, 'https://ror.org/05smvaw93', 'no_lang_code', 1, 'https://ror.org/05smvaw93 Zigpos (Germany)'),
(21327, 'https://ror.org/031swr525', 'en', 1, 'https://ror.org/031swr525 Mossley Hill Hospital'),
(21328, 'https://ror.org/0259yjc90', 'en', 1, 'https://ror.org/0259yjc90 Zimbabwe Association of Church-Related Hospitals'),
(21329, 'https://ror.org/029vb5696', 'en', 1, 'https://ror.org/029vb5696 Zimbabwe National Quality Assurance Program'),
(21330, 'https://ror.org/01ty9p111', 'en', 1, 'https://ror.org/01ty9p111 Mount Alvernia Hospital'),
(21331, 'https://ror.org/01yb75b63', 'no_lang_code', 1, 'https://ror.org/01yb75b63 Zeeko (United Kingdom)'),
(21332, 'https://ror.org/007b4bn60', 'no_lang_code', 1, 'https://ror.org/007b4bn60 McWane Technology (United Kingdom)'),
(21333, 'https://ror.org/00wz8ne48', 'no_lang_code', 1, 'https://ror.org/00wz8ne48 Zipalog (United States)'),
(21334, 'https://ror.org/01btzfj32', 'en', 1, 'https://ror.org/01btzfj32 BMI Healthcare'),
(21335, 'https://ror.org/00w9htx78', 'en', 1, 'https://ror.org/00w9htx78 Mount Vernon Hospital'),
(21336, 'https://ror.org/00f20wb28', 'no_lang_code', 1, 'https://ror.org/00f20wb28 Ziplast (Italy)'),
(21337, 'https://ror.org/03pj63790', 'no_lang_code', 1, 'https://ror.org/03pj63790 ZirChrom Separations (United States)'),
(21338, 'https://ror.org/007phxq15', 'en', 1, 'https://ror.org/007phxq15 N.D. Zelinsky Institute of Organic Chemistry Федеральное государственное бюджетное учреждение науки Институт органической химии им. Н.Д. Зелинского Российской академии наук'),
(21339, 'https://ror.org/041z9yd20', 'en', 1, 'https://ror.org/041z9yd20 InsPIRE Network for Environment'),
(21340, 'https://ror.org/02rrq8748', 'no_lang_code', 1, 'https://ror.org/02rrq8748 Descartes (Belgium)'),
(21341, 'https://ror.org/054mek730', 'no_lang_code', 1, 'https://ror.org/054mek730 Zoo Digital (United Kingdom)'),
(21342, 'https://ror.org/05t156v90', 'no_lang_code', 1, 'https://ror.org/05t156v90 ZS-Handling (Germany)'),
(21343, 'https://ror.org/01na7zr61', 'no_lang_code', 1, 'https://ror.org/01na7zr61 ZTS Výskumno-Vývojový Ústav (Slovakia)'),
(21344, 'https://ror.org/03esg6y90', 'no_lang_code', 1, 'https://ror.org/03esg6y90 Zenalux Biomedical (United States)'),
(21345, 'https://ror.org/02g102751', 'en', 1, 'https://ror.org/02g102751 Wisconsin Department of Public Instruction'),
(21346, 'https://ror.org/01hsdm129', 'en', 1, 'https://ror.org/01hsdm129 Wisconsin State Office of the Governor'),
(21347, 'https://ror.org/03jyntf28', 'no_lang_code', 1, 'https://ror.org/03jyntf28 Zubiola (Spain)'),
(21348, 'https://ror.org/052hs4w81', 'no_lang_code', 1, 'https://ror.org/052hs4w81 Bonn Science Shop Wissenschaftsladen'),
(21349, 'https://ror.org/01wze9664', 'no_lang_code', 1, 'https://ror.org/01wze9664 Zeno Semiconductor (United States)'),
(21350, 'https://ror.org/00mb2j026', 'no_lang_code', 1, 'https://ror.org/00mb2j026 Zenotech (United Kingdom)'),
(21351, 'https://ror.org/047ej6x83', 'no_lang_code', 1, 'https://ror.org/047ej6x83 Within Technologies (United Kingdom)'),
(21352, 'https://ror.org/04gx8zb05', 'de', 1, 'https://ror.org/04gx8zb05 Zentralinstitut für die Kassenärztliche Versorgung in der Bundesrepublik Deutschland'),
(21353, 'https://ror.org/01j3wmr10', 'en', 1, 'https://ror.org/01j3wmr10 Accrington Victoria Hospital'),
(21354, 'https://ror.org/046c75y25', 'no_lang_code', 1, 'https://ror.org/046c75y25 Witt Industrial Electronics (Germany)'),
(21355, 'https://ror.org/02km87d05', 'no_lang_code', 1, 'https://ror.org/02km87d05 Wittmann (Austria)'),
(21356, 'https://ror.org/02191hv61', 'no_lang_code', 1, 'https://ror.org/02191hv61 Zyberwear (United States)'),
(21357, 'https://ror.org/026v6r221', 'en', 1, 'https://ror.org/026v6r221 Tewkesbury Community Hospital'),
(21358, 'https://ror.org/05j8nkz58', 'no_lang_code', 1, 'https://ror.org/05j8nkz58 Innovation Enterprise Impuls (Poland)'),
(21359, 'https://ror.org/04nqhm289', 'en', 1, 'https://ror.org/04nqhm289 New Victoria Hospital'),
(21360, 'https://ror.org/002j43z05', 'no_lang_code', 1, 'https://ror.org/002j43z05 Wolframcarb (Italy)'),
(21361, 'https://ror.org/05wch2w55', 'no_lang_code', 1, 'https://ror.org/05wch2w55 Zylon (United States)'),
(21362, 'https://ror.org/03ewnz430', 'en', 1, 'https://ror.org/03ewnz430 Women Accepting Responsibility'),
(21363, 'https://ror.org/03s1cky33', 'en', 1, 'https://ror.org/03s1cky33 Newark Hospital'),
(21364, 'https://ror.org/030bs8t82', 'no_lang_code', 1, 'https://ror.org/030bs8t82 Zymera (United States)'),
(21365, 'https://ror.org/045r28721', 'en', 1, 'https://ror.org/045r28721 Newham University Hospital'),
(21366, 'https://ror.org/0057f6x09', 'en', 1, 'https://ror.org/0057f6x09 Airedale NHS Foundation Trust'),
(21367, 'https://ror.org/017f0cd82', 'no_lang_code', 1, 'https://ror.org/017f0cd82 Continental (United Kingdom)'),
(21368, 'https://ror.org/024v03d05', 'en', 1, 'https://ror.org/024v03d05 Bradwell Community Hospital'),
(21369, 'https://ror.org/01yjpe866', 'en', 1, 'https://ror.org/01yjpe866 Women in Government'),
(21370, 'https://ror.org/04hvez104', 'en', 1, 'https://ror.org/04hvez104 Ross on Wye Hospital'),
(21371, 'https://ror.org/05dyv4r79', 'en', 1, 'https://ror.org/05dyv4r79 Women In Need'),
(21372, 'https://ror.org/04t93g058', 'en', 1, 'https://ror.org/04t93g058 Rossall Hospital'),
(21373, 'https://ror.org/027a5xq62', 'en', 1, 'https://ror.org/027a5xq62 Women in Resource Development'),
(21374, 'https://ror.org/00z9hsx23', 'en', 1, 'https://ror.org/00z9hsx23 Rothbury Community Hospital'),
(21375, 'https://ror.org/05sagpq04', 'en', 1, 'https://ror.org/05sagpq04 Women in Science and Engineering Newfoundland and Labrador'),
(21376, 'https://ror.org/00yb46674', 'en', 1, 'https://ror.org/00yb46674 Newquay Community Hospital'),
(21377, 'https://ror.org/03mq8zc85', 'en', 1, 'https://ror.org/03mq8zc85 Central Middlesex Hospital'),
(21378, 'https://ror.org/05vv75456', 'en', 1, 'https://ror.org/05vv75456 Alcoholism Center for Women'),
(21379, 'https://ror.org/00n2vs911', 'en', 1, 'https://ror.org/00n2vs911 Newton Abbot Community Hospital'),
(21380, 'https://ror.org/02canyd30', 'en', 1, 'https://ror.org/02canyd30 Newton Community Hospital'),
(21381, 'https://ror.org/02qy5zc16', 'en', 1, 'https://ror.org/02qy5zc16 Women''s Health In Women''s Hands'),
(21382, 'https://ror.org/00r6gb998', 'en', 1, 'https://ror.org/00r6gb998 Chalfonts and Gerrards Cross Hospital'),
(21383, 'https://ror.org/0262yf988', 'en', 1, 'https://ror.org/0262yf988 Alderney Hospital'),
(21384, 'https://ror.org/03nycav22', 'en', 1, 'https://ror.org/03nycav22 Roxbourne Medical Centre'),
(21385, 'https://ror.org/00xkkpn05', 'en', 1, 'https://ror.org/00xkkpn05 Norfolk Community Health and Care NHS Trust'),
(21386, 'https://ror.org/01h4zj733', 'en', 1, 'https://ror.org/01h4zj733 North Cambridgeshire Hospital'),
(21387, 'https://ror.org/025s2ay93', 'en', 1, 'https://ror.org/025s2ay93 North Cotswolds Hospital'),
(21388, 'https://ror.org/056zqx422', 'en', 1, 'https://ror.org/056zqx422 Chantry House Day Hospital'),
(21389, 'https://ror.org/00cv4n034', 'en', 1, 'https://ror.org/00cv4n034 Royal Brompton Hospital'),
(21390, 'https://ror.org/03rrvgg66', 'en', 1, 'https://ror.org/03rrvgg66 Women''s Treatment Center'),
(21391, 'https://ror.org/04kmnk678', 'en', 1, 'https://ror.org/04kmnk678 Woodstock Union High School & Middle School'),
(21392, 'https://ror.org/03pf5zs64', 'en', 1, 'https://ror.org/03pf5zs64 Royal National Throat Nose and Ear Hospital'),
(21393, 'https://ror.org/01dx1mr58', 'en', 1, 'https://ror.org/01dx1mr58 Royal Stoke University Hospital'),
(21394, 'https://ror.org/04n037429', 'en', 1, 'https://ror.org/04n037429 Chard & District Hospital'),
(21395, 'https://ror.org/05ygpsa84', 'en', 1, 'https://ror.org/05ygpsa84 North Downs Hospital'),
(21396, 'https://ror.org/04shzs249', 'en', 1, 'https://ror.org/04shzs249 Hampshire Hospitals NHS Foundation Trust'),
(21397, 'https://ror.org/00eph4903', 'en', 1, 'https://ror.org/00eph4903 North Middlesex Hospital'),
(21398, 'https://ror.org/01wx3s220', 'en', 1, 'https://ror.org/01wx3s220 Alton Community Hospital'),
(21399, 'https://ror.org/01dhpn446', 'no_lang_code', 1, 'https://ror.org/01dhpn446 Worgas Bruciatori (Italy)'),
(21400, 'https://ror.org/048919h66', 'en', 1, 'https://ror.org/048919h66 North Middlesex University Hospital NHS Trust'),
(21401, 'https://ror.org/028f2wx05', 'en', 1, 'https://ror.org/028f2wx05 Chartwell Diagnostic and Imaging Centre'),
(21402, 'https://ror.org/04z26gb41', 'no_lang_code', 1, 'https://ror.org/04z26gb41 Workbook Publishing'),
(21403, 'https://ror.org/02d5d0r05', 'en', 1, 'https://ror.org/02d5d0r05 North Staffordshire Combined Healthcare NHS Trust'),
(21404, 'https://ror.org/01jtws262', 'en', 1, 'https://ror.org/01jtws262 Chase Acute Outpatients Hospital'),
(21405, 'https://ror.org/00fryxp10', 'en', 1, 'https://ror.org/00fryxp10 Cymdeithas Addysg y Gweithwyr Workers Educational Association'),
(21406, 'https://ror.org/00ak30749', 'en', 1, 'https://ror.org/00ak30749 Cheadle Community Hospital'),
(21407, 'https://ror.org/01v09hh66', 'en', 1, 'https://ror.org/01v09hh66 Rowley Regis Hospital'),
(21408, 'https://ror.org/02gm74063', 'en', 1, 'https://ror.org/02gm74063 Priory Hospital Cheadle Royal'),
(21409, 'https://ror.org/04d87jn14', 'en', 1, 'https://ror.org/04d87jn14 Royston Hospital'),
(21410, 'https://ror.org/05jjyv308', 'en', 1, 'https://ror.org/05jjyv308 Chelmsford and Essex Hospital'),
(21411, 'https://ror.org/02jtgw663', 'en', 1, 'https://ror.org/02jtgw663 North Walsham and District War Memorial Hospital'),
(21412, 'https://ror.org/018qh5t24', 'en', 1, 'https://ror.org/018qh5t24 North West Ambulance Service NHS Trust'),
(21413, 'https://ror.org/013qbng65', 'en', 1, 'https://ror.org/013qbng65 Andover War Memorial Hospital'),
(21414, 'https://ror.org/038zxea36', 'en', 1, 'https://ror.org/038zxea36 Chelsea and Westminster Hospital'),
(21415, 'https://ror.org/02e3jby32', 'en', 1, 'https://ror.org/02e3jby32 BMI The Runnymede Hospital'),
(21416, 'https://ror.org/043djj103', 'en', 1, 'https://ror.org/043djj103 Goole and District Hospital'),
(21417, 'https://ror.org/00mp5cm68', 'en', 1, 'https://ror.org/00mp5cm68 Arrowe Park Hospital'),
(21418, 'https://ror.org/03pq34j38', 'en', 1, 'https://ror.org/03pq34j38 BMI Goring Hall Hospital'),
(21419, 'https://ror.org/01vh0ja39', 'en', 1, 'https://ror.org/01vh0ja39 Northgate Hospital'),
(21420, 'https://ror.org/02e5pwb51', 'en', 1, 'https://ror.org/02e5pwb51 Rochford Community Hospital'),
(21421, 'https://ror.org/055sezq52', 'en', 1, 'https://ror.org/055sezq52 Northumbria Specialist Emergency Care Hospital'),
(21422, 'https://ror.org/04ehjk122', 'en', 1, 'https://ror.org/04ehjk122 Nottinghamshire Healthcare NHS Foundation Trust'),
(21423, 'https://ror.org/055qs4r72', 'en', 1, 'https://ror.org/055qs4r72 Gosport War Memorial Hospital'),
(21424, 'https://ror.org/017b62a57', 'en', 1, 'https://ror.org/017b62a57 Ashburton and Buckfastleigh Health and Wellbeing Centre'),
(21425, 'https://ror.org/01z5z6p69', 'en', 1, 'https://ror.org/01z5z6p69 Alston Community Hospital'),
(21426, 'https://ror.org/04d7nv189', 'en', 1, 'https://ror.org/04d7nv189 Wolverhampton Hospital'),
(21427, 'https://ror.org/02w91w637', 'en', 1, 'https://ror.org/02w91w637 Newcastle upon Tyne Hospital'),
(21428, 'https://ror.org/02nz5n617', 'en', 1, 'https://ror.org/02nz5n617 Oaklands Hospital'),
(21429, 'https://ror.org/03fqttr31', 'en', 1, 'https://ror.org/03fqttr31 Odiham Cottage Hospital'),
(21430, 'https://ror.org/00q2cvp40', 'en', 1, 'https://ror.org/00q2cvp40 Cheshunt Minor Injuries Unit'),
(21431, 'https://ror.org/05d9zj517', 'en', 1, 'https://ror.org/05d9zj517 Ormskirk District General Hospital'),
(21432, 'https://ror.org/03afd0v14', 'en', 1, 'https://ror.org/03afd0v14 Orpington Hospital'),
(21433, 'https://ror.org/05k21nx54', 'en', 1, 'https://ror.org/05k21nx54 Samuel Johnson Community Hospital'),
(21434, 'https://ror.org/0436f0775', 'en', 1, 'https://ror.org/0436f0775 Ashford Hospital'),
(21435, 'https://ror.org/00dqxgc74', 'en', 1, 'https://ror.org/00dqxgc74 Orsett Hospital'),
(21436, 'https://ror.org/0210zq234', 'en', 1, 'https://ror.org/0210zq234 Savernake Community Hospital'),
(21437, 'https://ror.org/04mb3yn31', 'en', 1, 'https://ror.org/04mb3yn31 Wansbeck General Hospital'),
(21438, 'https://ror.org/00npj8037', 'en', 1, 'https://ror.org/00npj8037 Paddocks Hospital'),
(21439, 'https://ror.org/040ngxe09', 'en', 1, 'https://ror.org/040ngxe09 Ashtead Hospital'),
(21440, 'https://ror.org/04vb14m12', 'en', 1, 'https://ror.org/04vb14m12 Paignton Health and Wellbeing Centre'),
(21441, 'https://ror.org/01ba6zt09', 'no_lang_code', 1, 'https://ror.org/01ba6zt09 Meritor (Germany)'),
(21442, 'https://ror.org/058tjhm78', 'en', 1, 'https://ror.org/058tjhm78 Grays Court Community Hospital'),
(21443, 'https://ror.org/03g16s487', 'en', 1, 'https://ror.org/03g16s487 Palmer Community Hospital'),
(21444, 'https://ror.org/01yssfs05', 'en', 1, 'https://ror.org/01yssfs05 Green Lane Hospital'),
(21445, 'https://ror.org/01ywnqg74', 'en', 1, 'https://ror.org/01ywnqg74 Chichester Hospital'),
(21446, 'https://ror.org/058gc3944', 'en', 1, 'https://ror.org/058gc3944 The Chiltern Hospital'),
(21447, 'https://ror.org/055vv6n72', 'en', 1, 'https://ror.org/055vv6n72 Sevenoaks Hospital'),
(21448, 'https://ror.org/02gyrfm31', 'en', 1, 'https://ror.org/02gyrfm31 Sheppey Community Hospital'),
(21449, 'https://ror.org/04ssgxk51', 'en', 1, 'https://ror.org/04ssgxk51 Ashworth Hospital'),
(21450, 'https://ror.org/05vhbmg11', 'en', 1, 'https://ror.org/05vhbmg11 Auckland Park Hospital'),
(21451, 'https://ror.org/039s4ex98', 'en', 1, 'https://ror.org/039s4ex98 Patrick Stead Hospital'),
(21452, 'https://ror.org/02mgaej21', 'en', 1, 'https://ror.org/02mgaej21 Guest Hospital'),
(21453, 'https://ror.org/04evvaq96', 'en', 1, 'https://ror.org/04evvaq96 Shirley Oaks Hospital'),
(21454, 'https://ror.org/0142g0j16', 'en', 1, 'https://ror.org/0142g0j16 Pendle Community Hospital'),
(21455, 'https://ror.org/047feaw16', 'en', 1, 'https://ror.org/047feaw16 Shrewsbury and Telford Hospital NHS Trust'),
(21456, 'https://ror.org/0379k6g72', 'en', 1, 'https://ror.org/0379k6g72 Avon and Wiltshire Mental Health Partnership NHS Trust'),
(21457, 'https://ror.org/033wn7604', 'en', 1, 'https://ror.org/033wn7604 Babington Hospital'),
(21458, 'https://ror.org/03t59pc95', 'en', 1, 'https://ror.org/03t59pc95 Pennine Care NHS Foundation Trust'),
(21459, 'https://ror.org/02fpcgg22', 'en', 1, 'https://ror.org/02fpcgg22 Penrith Community Hospital'),
(21460, 'https://ror.org/027wvv544', 'en', 1, 'https://ror.org/027wvv544 Pershore Community Hospital'),
(21461, 'https://ror.org/05td7ze90', 'en', 1, 'https://ror.org/05td7ze90 GB Hunter Memorial Hospital'),
(21462, 'https://ror.org/05xekmj63', 'en', 1, 'https://ror.org/05xekmj63 Sir Robert Peel Community Hospital'),
(21463, 'https://ror.org/05j2jar38', 'en', 1, 'https://ror.org/05j2jar38 Peterlee Community Hospital'),
(21464, 'https://ror.org/01bnxkh93', 'en', 1, 'https://ror.org/01bnxkh93 Petersfield Community Hospital'),
(21465, 'https://ror.org/03snwcw72', 'en', 1, 'https://ror.org/03snwcw72 Sittingbourne Memorial Hospital'),
(21466, 'https://ror.org/00hwjda20', 'en', 1, 'https://ror.org/00hwjda20 Barking Community Hospital'),
(21467, 'https://ror.org/0240exq58', 'en', 1, 'https://ror.org/0240exq58 Skegness Hospital');
INSERT INTO `rors` VALUES
(21468, 'https://ror.org/017cs0m08', 'en', 1, 'https://ror.org/017cs0m08 Guisborough Primary Care Hospital'),
(21469, 'https://ror.org/043tekr24', 'en', 1, 'https://ror.org/043tekr24 Skipton General Hospital'),
(21470, 'https://ror.org/03xnr5143', 'en', 1, 'https://ror.org/03xnr5143 Barking, Havering And Redbridge University Hospitals NHS Trust'),
(21471, 'https://ror.org/04q4vw719', 'en', 1, 'https://ror.org/04q4vw719 Plymouth Hospital'),
(21472, 'https://ror.org/05dfkf260', 'en', 1, 'https://ror.org/05dfkf260 Cirencester Hospital'),
(21473, 'https://ror.org/03z02dh69', 'en', 1, 'https://ror.org/03z02dh69 The South Cheshire Private Hospital'),
(21474, 'https://ror.org/00dwsv166', 'en', 1, 'https://ror.org/00dwsv166 Poltair Community Hospital'),
(21475, 'https://ror.org/05tfkwc03', 'en', 1, 'https://ror.org/05tfkwc03 Barnes Hospital'),
(21476, 'https://ror.org/0343mqp27', 'en', 1, 'https://ror.org/0343mqp27 The Portland Hospital'),
(21477, 'https://ror.org/01kwj6g62', 'en', 1, 'https://ror.org/01kwj6g62 South Hams Hospital'),
(21478, 'https://ror.org/0174ygc67', 'en', 1, 'https://ror.org/0174ygc67 Potters Bar Community Hospital'),
(21479, 'https://ror.org/05epxhz73', 'en', 1, 'https://ror.org/05epxhz73 South Molton Medical Centre'),
(21480, 'https://ror.org/00d2v4e22', 'en', 1, 'https://ror.org/00d2v4e22 Barnet Enfield and Haringey Mental Health Trust'),
(21481, 'https://ror.org/003pb1s55', 'en', 1, 'https://ror.org/003pb1s55 South West London and St George''s Mental Health NHS Trust'),
(21482, 'https://ror.org/015xhb971', 'en', 1, 'https://ror.org/015xhb971 Primrose Hill Hospital'),
(21483, 'https://ror.org/05mxhk636', 'en', 1, 'https://ror.org/05mxhk636 Princess of Wales Community Hospital'),
(21484, 'https://ror.org/00ncdw424', 'en', 1, 'https://ror.org/00ncdw424 Southlands Hospital'),
(21485, 'https://ror.org/02sx8r245', 'en', 1, 'https://ror.org/02sx8r245 Southwold Hospital'),
(21486, 'https://ror.org/03gd99924', 'en', 1, 'https://ror.org/03gd99924 Spire Alexandra Hospital'),
(21487, 'https://ror.org/05acryg85', 'en', 1, 'https://ror.org/05acryg85 Claremont Private Hospital'),
(21488, 'https://ror.org/004zb6b85', 'en', 1, 'https://ror.org/004zb6b85 Spire Cheshire Hospital'),
(21489, 'https://ror.org/05mcdgy79', 'en', 1, 'https://ror.org/05mcdgy79 Spire Clare Park Hospital'),
(21490, 'https://ror.org/056r32056', 'en', 1, 'https://ror.org/056r32056 Spire Manchester Hospital'),
(21491, 'https://ror.org/00pb1mx67', 'en', 1, 'https://ror.org/00pb1mx67 Spire Hull and East Riding Hospital'),
(21492, 'https://ror.org/05myvnr67', 'en', 1, 'https://ror.org/05myvnr67 Romsey Hospital'),
(21493, 'https://ror.org/02de7mm40', 'en', 1, 'https://ror.org/02de7mm40 Basildon Hospital'),
(21494, 'https://ror.org/0513sfw33', 'en', 1, 'https://ror.org/0513sfw33 BMI The Princess Margaret Hospital'),
(21495, 'https://ror.org/01m6agm53', 'en', 1, 'https://ror.org/01m6agm53 Prospect Park Hospital'),
(21496, 'https://ror.org/0144zzh56', 'en', 1, 'https://ror.org/0144zzh56 Bassetlaw Hospital'),
(21497, 'https://ror.org/01btmgx36', 'en', 1, 'https://ror.org/01btmgx36 Spire Cambridge Lea Hospital'),
(21498, 'https://ror.org/053f59471', 'en', 1, 'https://ror.org/053f59471 Haltwhistle War Memorial Hospital'),
(21499, 'https://ror.org/025bx6p27', 'en', 1, 'https://ror.org/025bx6p27 St Pancras Hospital'),
(21500, 'https://ror.org/00knds943', 'en', 1, 'https://ror.org/00knds943 Tolworth Hospital'),
(21501, 'https://ror.org/0287cjk10', 'en', 1, 'https://ror.org/0287cjk10 Spire Little Aston Hospital'),
(21502, 'https://ror.org/016vdk046', 'en', 1, 'https://ror.org/016vdk046 Whipps Cross University Hospital'),
(21503, 'https://ror.org/0463j8f36', 'en', 1, 'https://ror.org/0463j8f36 Spire Regency Hospital'),
(21504, 'https://ror.org/04vpw3947', 'en', 1, 'https://ror.org/04vpw3947 Spire Southampton Hospital'),
(21505, 'https://ror.org/05x5xt830', 'en', 1, 'https://ror.org/05x5xt830 Spire Washington Hospital'),
(21506, 'https://ror.org/010nb2b07', 'en', 1, 'https://ror.org/010nb2b07 Purley War Memorial Hospital'),
(21507, 'https://ror.org/02pc4ce72', 'en', 1, 'https://ror.org/02pc4ce72 Richardson Hospital'),
(21508, 'https://ror.org/02p1s6n26', 'en', 1, 'https://ror.org/02p1s6n26 Spire Wellesley Hospital'),
(21509, 'https://ror.org/02kss3272', 'en', 1, 'https://ror.org/02kss3272 Newcastle Dental Hospital'),
(21510, 'https://ror.org/05j49wk85', 'en', 1, 'https://ror.org/05j49wk85 Springfield University Hospital'),
(21511, 'https://ror.org/03af1tj71', 'en', 1, 'https://ror.org/03af1tj71 Queen Charlotte''s and Chelsea Hospital'),
(21512, 'https://ror.org/051ar9e27', 'en', 1, 'https://ror.org/051ar9e27 St Albans City Hospital'),
(21513, 'https://ror.org/00p6q5476', 'en', 1, 'https://ror.org/00p6q5476 Queen Elizabeth Hospital'),
(21514, 'https://ror.org/05nw3yr55', 'en', 1, 'https://ror.org/05nw3yr55 St Ann’s Hospital'),
(21515, 'https://ror.org/04389kb95', 'en', 1, 'https://ror.org/04389kb95 Queen Mary''s Hospital'),
(21516, 'https://ror.org/02jjcbg38', 'en', 1, 'https://ror.org/02jjcbg38 St Ann''s Hospital'),
(21517, 'https://ror.org/020vke347', 'en', 1, 'https://ror.org/020vke347 Queen Mary''s Hospital For Children'),
(21518, 'https://ror.org/00k478g59', 'en', 1, 'https://ror.org/00k478g59 Bealey Community Hospital'),
(21519, 'https://ror.org/014x14082', 'en', 1, 'https://ror.org/014x14082 Queen Victoria Hospital'),
(21520, 'https://ror.org/04qnyww97', 'en', 1, 'https://ror.org/04qnyww97 Spire St Anthony’s Hospital'),
(21521, 'https://ror.org/02se1sp19', 'en', 1, 'https://ror.org/02se1sp19 Harplands Hospital'),
(21522, 'https://ror.org/02ync6318', 'en', 1, 'https://ror.org/02ync6318 The Beardwood Hospital'),
(21523, 'https://ror.org/02tk9ek40', 'en', 1, 'https://ror.org/02tk9ek40 Clitheroe Community Hospital'),
(21524, 'https://ror.org/045yxgc38', 'en', 1, 'https://ror.org/045yxgc38 The Beaumont Hospital'),
(21525, 'https://ror.org/05m58vw43', 'en', 1, 'https://ror.org/05m58vw43 St Austell Community Hospital'),
(21526, 'https://ror.org/05b6t0504', 'en', 1, 'https://ror.org/05b6t0504 Queen Victoria Memorial Hospital'),
(21527, 'https://ror.org/012g3p565', 'en', 1, 'https://ror.org/012g3p565 St Barnabas Hospital'),
(21528, 'https://ror.org/011k2tc02', 'en', 1, 'https://ror.org/011k2tc02 Beccles & District War Memorial Hospital'),
(21529, 'https://ror.org/00n974j89', 'en', 1, 'https://ror.org/00n974j89 St Charles Hospital'),
(21530, 'https://ror.org/046rmzh87', 'en', 1, 'https://ror.org/046rmzh87 Bensham Hospital'),
(21531, 'https://ror.org/01en9z723', 'en', 1, 'https://ror.org/01en9z723 Redcar Primary Care Hospital'),
(21532, 'https://ror.org/0579ze136', 'en', 1, 'https://ror.org/0579ze136 Havant War Memorial Hospital'),
(21533, 'https://ror.org/04h6m2g55', 'en', 1, 'https://ror.org/04h6m2g55 Cobham Community Hospital'),
(21534, 'https://ror.org/03caevp73', 'en', 1, 'https://ror.org/03caevp73 Renacres Hospital'),
(21535, 'https://ror.org/015swn341', 'en', 1, 'https://ror.org/015swn341 Hawkhurst Community Hospital'),
(21536, 'https://ror.org/04f4nzq23', 'en', 1, 'https://ror.org/04f4nzq23 Retford Hospital'),
(21537, 'https://ror.org/05535qr20', 'en', 1, 'https://ror.org/05535qr20 New Selby War Memorial Hospital'),
(21538, 'https://ror.org/03t542436', 'en', 1, 'https://ror.org/03t542436 Berkshire Healthcare NHS Foundation Trust'),
(21539, 'https://ror.org/02606ke74', 'en', 1, 'https://ror.org/02606ke74 Richmond Royal Hospital'),
(21540, 'https://ror.org/00tgz5618', 'en', 1, 'https://ror.org/00tgz5618 Cockermouth Community Hospital'),
(21541, 'https://ror.org/02dhmwy14', 'en', 1, 'https://ror.org/02dhmwy14 The Berkshire Independent Hospital'),
(21542, 'https://ror.org/01bpk4154', 'en', 1, 'https://ror.org/01bpk4154 St Clement''s Hospital'),
(21543, 'https://ror.org/03zbds496', 'en', 1, 'https://ror.org/03zbds496 Berrywood Hospital'),
(21544, 'https://ror.org/0279qd249', 'en', 1, 'https://ror.org/0279qd249 Bexhill Hospital'),
(21545, 'https://ror.org/032kn8622', 'en', 1, 'https://ror.org/032kn8622 Colman Hospital'),
(21546, 'https://ror.org/05s293m17', 'en', 1, 'https://ror.org/05s293m17 Congleton War Memorial Hospital'),
(21547, 'https://ror.org/00f147v33', 'en', 1, 'https://ror.org/00f147v33 Corbett Hospital'),
(21548, 'https://ror.org/00ekntx28', 'en', 1, 'https://ror.org/00ekntx28 Rutson Hospital'),
(21549, 'https://ror.org/01g96h026', 'en', 1, 'https://ror.org/01g96h026 Corby Community Hospital'),
(21550, 'https://ror.org/02507sy82', 'en', 1, 'https://ror.org/02507sy82 St George''s Hospital'),
(21551, 'https://ror.org/04e0p7290', 'en', 1, 'https://ror.org/04e0p7290 Cossham Hospital'),
(21552, 'https://ror.org/0547wea53', 'en', 1, 'https://ror.org/0547wea53 St George''s Park'),
(21553, 'https://ror.org/02e6wxz44', 'en', 1, 'https://ror.org/02e6wxz44 St Helens and Knowsley Teaching Hospitals NHS Trust'),
(21554, 'https://ror.org/02xphqm22', 'en', 1, 'https://ror.org/02xphqm22 County Hospital'),
(21555, 'https://ror.org/00b43q041', 'en', 1, 'https://ror.org/00b43q041 County Hospital Louth'),
(21556, 'https://ror.org/01y9fq553', 'en', 1, 'https://ror.org/01y9fq553 St Helen''s Rehabilitation Hospital'),
(21557, 'https://ror.org/04r10g051', 'en', 1, 'https://ror.org/04r10g051 Birmingham Community Healthcare NHS Trust'),
(21558, 'https://ror.org/00cants75', 'en', 1, 'https://ror.org/00cants75 Bishop''s Castle Community Hospital'),
(21559, 'https://ror.org/02vh6gg23', 'en', 1, 'https://ror.org/02vh6gg23 Crawley Hospital'),
(21560, 'https://ror.org/00cfsj734', 'en', 1, 'https://ror.org/00cfsj734 St. Joseph''s Hospital'),
(21561, 'https://ror.org/03jytqt55', 'en', 1, 'https://ror.org/03jytqt55 BMI Bishops Wood Hospital'),
(21562, 'https://ror.org/0038dsf96', 'en', 1, 'https://ror.org/0038dsf96 St Leonards Community Hospital'),
(21563, 'https://ror.org/0457fah73', 'en', 1, 'https://ror.org/0457fah73 Cromer Hospital'),
(21564, 'https://ror.org/059c7vm29', 'en', 1, 'https://ror.org/059c7vm29 St Lukes Hospital'),
(21565, 'https://ror.org/05jn5y837', 'en', 1, 'https://ror.org/05jn5y837 Cross Lane Hospital'),
(21566, 'https://ror.org/0340p7w89', 'en', 1, 'https://ror.org/0340p7w89 Crowborough War Memorial Hospital'),
(21567, 'https://ror.org/00sh7p618', 'en', 1, 'https://ror.org/00sh7p618 Croydon Health Services NHS Trust'),
(21568, 'https://ror.org/00ajy2k49', 'en', 1, 'https://ror.org/00ajy2k49 Cygnet Hospital Beckton'),
(21569, 'https://ror.org/059jz3381', 'en', 1, 'https://ror.org/059jz3381 Cygnet Hospital Wyke'),
(21570, 'https://ror.org/04jr90994', 'en', 1, 'https://ror.org/04jr90994 St Martin''s Hospital'),
(21571, 'https://ror.org/02ckzhz90', 'en', 1, 'https://ror.org/02ckzhz90 Blackberry Hill Hospital'),
(21572, 'https://ror.org/053xzd705', 'en', 1, 'https://ror.org/053xzd705 St Martins Hospital'),
(21573, 'https://ror.org/003dyzj34', 'en', 1, 'https://ror.org/003dyzj34 Danetre Hospital'),
(21574, 'https://ror.org/024mswg55', 'en', 1, 'https://ror.org/024mswg55 Blakelands Hospital'),
(21575, 'https://ror.org/03rm88931', 'en', 1, 'https://ror.org/03rm88931 Blandford Community Hospital'),
(21576, 'https://ror.org/011c78869', 'en', 1, 'https://ror.org/011c78869 Hemel Hempstead Hospital'),
(21577, 'https://ror.org/02b27c547', 'en', 1, 'https://ror.org/02b27c547 Dartford And Gravesham NHS Trust'),
(21578, 'https://ror.org/02j3qj605', 'en', 1, 'https://ror.org/02j3qj605 Dartmouth Hospital'),
(21579, 'https://ror.org/03jjx5w61', 'en', 1, 'https://ror.org/03jjx5w61 Rathbone Hospital'),
(21580, 'https://ror.org/04nx23795', 'en', 1, 'https://ror.org/04nx23795 Blyth Community Hospital'),
(21581, 'https://ror.org/036dpa939', 'en', 1, 'https://ror.org/036dpa939 Dawlish Community Hospital'),
(21582, 'https://ror.org/03kea0d35', 'en', 1, 'https://ror.org/03kea0d35 St Mary''s Hospital'),
(21583, 'https://ror.org/02q2vkv24', 'en', 1, 'https://ror.org/02q2vkv24 Bodmin Hospital'),
(21584, 'https://ror.org/02jv2qv86', 'en', 1, 'https://ror.org/02jv2qv86 St Mary''s Hospital'),
(21585, 'https://ror.org/02xnefk61', 'en', 1, 'https://ror.org/02xnefk61 Ridge Lea Hospital'),
(21586, 'https://ror.org/03qyvw759', 'en', 1, 'https://ror.org/03qyvw759 St Mary''s Hospital'),
(21587, 'https://ror.org/049q27a79', 'en', 1, 'https://ror.org/049q27a79 Dereham Hospital'),
(21588, 'https://ror.org/00w9tyd30', 'en', 1, 'https://ror.org/00w9tyd30 Devizes Community Hospital'),
(21589, 'https://ror.org/04d78jp86', 'en', 1, 'https://ror.org/04d78jp86 Ripon Community Hospital'),
(21590, 'https://ror.org/04fkxrb51', 'en', 1, 'https://ror.org/04fkxrb51 Devon Partnership NHS Trust'),
(21591, 'https://ror.org/01fd10471', 'en', 1, 'https://ror.org/01fd10471 Didcot Community Hospital'),
(21592, 'https://ror.org/0154ejv33', 'en', 1, 'https://ror.org/0154ejv33 Herts and Essex Hospital'),
(21593, 'https://ror.org/03d8xva75', 'en', 1, 'https://ror.org/03d8xva75 Dilke Memorial Hospital'),
(21594, 'https://ror.org/013sryf19', 'en', 1, 'https://ror.org/013sryf19 Hertfordshire Community NHS Trust'),
(21595, 'https://ror.org/05w3scj59', 'en', 1, 'https://ror.org/05w3scj59 Doddington Hospital'),
(21596, 'https://ror.org/04jyr6737', 'en', 1, 'https://ror.org/04jyr6737 Hexham General Hospital'),
(21597, 'https://ror.org/038n73266', 'en', 1, 'https://ror.org/038n73266 St Michael''s Hospital'),
(21598, 'https://ror.org/05e1n7415', 'en', 1, 'https://ror.org/05e1n7415 Highbury Hospital'),
(21599, 'https://ror.org/046wsbf61', 'en', 1, 'https://ror.org/046wsbf61 St Michael''s Hospital'),
(21600, 'https://ror.org/04dj8vz80', 'en', 1, 'https://ror.org/04dj8vz80 Doncaster Gate Hospital'),
(21601, 'https://ror.org/01yxt3w38', 'en', 1, 'https://ror.org/01yxt3w38 Dorking Community Hospital'),
(21602, 'https://ror.org/03m3n7e70', 'en', 1, 'https://ror.org/03m3n7e70 Braintree Community Hospital'),
(21603, 'https://ror.org/041105s88', 'en', 1, 'https://ror.org/041105s88 Dovedale Day Hospital'),
(21604, 'https://ror.org/053mas820', 'en', 1, 'https://ror.org/053mas820 The Holly Private Hospital'),
(21605, 'https://ror.org/02mzn3c26', 'en', 1, 'https://ror.org/02mzn3c26 Holmevalley Memorial Hospital'),
(21606, 'https://ror.org/02yvak009', 'en', 1, 'https://ror.org/02yvak009 Holsworthy Community Hospital'),
(21607, 'https://ror.org/007dt0z55', 'en', 1, 'https://ror.org/007dt0z55 Holy Cross Hospital'),
(21608, 'https://ror.org/00x444s43', 'en', 1, 'https://ror.org/00x444s43 Homerton University Hospital'),
(21609, 'https://ror.org/053gqad93', 'en', 1, 'https://ror.org/053gqad93 Swaffham Community Hospital'),
(21610, 'https://ror.org/003fj3t94', 'en', 1, 'https://ror.org/003fj3t94 Swanage Community Hospital'),
(21611, 'https://ror.org/01gyar131', 'en', 1, 'https://ror.org/01gyar131 Tarporley War Memorial Hospital'),
(21612, 'https://ror.org/0003ccc38', 'en', 1, 'https://ror.org/0003ccc38 St Monicas Hospital'),
(21613, 'https://ror.org/055k5br96', 'en', 1, 'https://ror.org/055k5br96 Bridgewater Hospital'),
(21614, 'https://ror.org/00h8etg68', 'en', 1, 'https://ror.org/00h8etg68 Tavistock Hospital'),
(21615, 'https://ror.org/0579rm888', 'en', 1, 'https://ror.org/0579rm888 St Nicholas Hospital'),
(21616, 'https://ror.org/04p861642', 'en', 1, 'https://ror.org/04p861642 Dulwich Community Hospital'),
(21617, 'https://ror.org/04nz0sd46', 'en', 1, 'https://ror.org/04nz0sd46 Teddington Memorial Hospital'),
(21618, 'https://ror.org/00dee9m47', 'en', 1, 'https://ror.org/00dee9m47 St. Oswald''s Hospital'),
(21619, 'https://ror.org/04s03zf45', 'en', 1, 'https://ror.org/04s03zf45 Tees, Esk and Wear Valleys NHS Foundation Trust'),
(21620, 'https://ror.org/04amyvf24', 'en', 1, 'https://ror.org/04amyvf24 St Peter''s Hospital'),
(21621, 'https://ror.org/02pt8pf90', 'en', 1, 'https://ror.org/02pt8pf90 Horncastle War Memorial Hospital'),
(21622, 'https://ror.org/029xkyf70', 'en', 1, 'https://ror.org/029xkyf70 Spire Dunedin Hospital'),
(21623, 'https://ror.org/0098w0b67', 'en', 1, 'https://ror.org/0098w0b67 Teignmouth Community Hospital'),
(21624, 'https://ror.org/02gfnab20', 'en', 1, 'https://ror.org/02gfnab20 Bridgnorth Community Hospital'),
(21625, 'https://ror.org/03kce8684', 'en', 1, 'https://ror.org/03kce8684 Tenbury Community Hospital'),
(21626, 'https://ror.org/00kckms84', 'en', 1, 'https://ror.org/00kckms84 Tetbury Hospital'),
(21627, 'https://ror.org/00a8ct372', 'en', 1, 'https://ror.org/00a8ct372 Bridlington Hospital'),
(21628, 'https://ror.org/01eh8k851', 'en', 1, 'https://ror.org/01eh8k851 Bridport Community Hospital'),
(21629, 'https://ror.org/04ze4qf38', 'en', 1, 'https://ror.org/04ze4qf38 Thame Community Hospital'),
(21630, 'https://ror.org/058mq4s80', 'en', 1, 'https://ror.org/058mq4s80 Stamford and Rutland Hospital'),
(21631, 'https://ror.org/0010vn771', 'en', 1, 'https://ror.org/0010vn771 Dunston Hill Hospital'),
(21632, 'https://ror.org/01xew6m16', 'en', 1, 'https://ror.org/01xew6m16 Nuffield Health Bristol Hospital'),
(21633, 'https://ror.org/02dt8zs37', 'en', 1, 'https://ror.org/02dt8zs37 The Foscote Hospital'),
(21634, 'https://ror.org/0220rp185', 'en', 1, 'https://ror.org/0220rp185 Stockport NHS Foundation Trust'),
(21635, 'https://ror.org/04g3zjj79', 'en', 1, 'https://ror.org/04g3zjj79 Stratford Hospital'),
(21636, 'https://ror.org/02ryc4y44', 'en', 1, 'https://ror.org/02ryc4y44 East and North Hertfordshire NHS Trust'),
(21637, 'https://ror.org/04h6jt451', 'en', 1, 'https://ror.org/04h6jt451 Stratton Community Hospital'),
(21638, 'https://ror.org/0200b5370', 'en', 1, 'https://ror.org/0200b5370 The Gordon Hospital'),
(21639, 'https://ror.org/01j64ar73', 'en', 1, 'https://ror.org/01j64ar73 East Cheshire NHS Trust'),
(21640, 'https://ror.org/00rzjv003', 'en', 1, 'https://ror.org/00rzjv003 Stretford Memorial Hospital'),
(21641, 'https://ror.org/054wcm905', 'en', 1, 'https://ror.org/054wcm905 Stroud General Hospital'),
(21642, 'https://ror.org/017ah0j38', 'en', 1, 'https://ror.org/017ah0j38 Horsham Hospital'),
(21643, 'https://ror.org/04bd41p10', 'en', 1, 'https://ror.org/04bd41p10 Bristol Homeopathic Hospital'),
(21644, 'https://ror.org/02xex0f63', 'en', 1, 'https://ror.org/02xex0f63 Stroud Maternity Hospital'),
(21645, 'https://ror.org/03t9xp890', 'en', 1, 'https://ror.org/03t9xp890 East Cleveland Primary Care Hospital'),
(21646, 'https://ror.org/03tarqk49', 'en', 1, 'https://ror.org/03tarqk49 Hospital of St. Cross'),
(21647, 'https://ror.org/00ffqn037', 'en', 1, 'https://ror.org/00ffqn037 Hospital of St John & St Elizabeth'),
(21648, 'https://ror.org/01ngyvd83', 'en', 1, 'https://ror.org/01ngyvd83 Brixham Community Hospital'),
(21649, 'https://ror.org/01gcsh020', 'en', 1, 'https://ror.org/01gcsh020 Hounslow and Richmond Community Healthcare NHS Trust'),
(21650, 'https://ror.org/00f83h470', 'en', 1, 'https://ror.org/00f83h470 Surrey and Borders Partnership NHS Foundation Trust'),
(21651, 'https://ror.org/0480vrj36', 'en', 1, 'https://ror.org/0480vrj36 Surrey and Sussex Healthcare NHS Trust'),
(21652, 'https://ror.org/002pa9318', 'en', 1, 'https://ror.org/002pa9318 East Lancashire Hospitals NHS Trust'),
(21653, 'https://ror.org/055pdxb86', 'en', 1, 'https://ror.org/055pdxb86 East Midlands Ambulance Service NHS Trust'),
(21654, 'https://ror.org/03f7qhc68', 'en', 1, 'https://ror.org/03f7qhc68 Broadgreen Hospital'),
(21655, 'https://ror.org/01p6fsx62', 'en', 1, 'https://ror.org/01p6fsx62 Spire Bristol Hospital'),
(21656, 'https://ror.org/00zdr6w59', 'en', 1, 'https://ror.org/00zdr6w59 Sutton Hospital'),
(21657, 'https://ror.org/00cepga67', 'en', 1, 'https://ror.org/00cepga67 Lambeth Hospital'),
(21658, 'https://ror.org/05anzrg13', 'en', 1, 'https://ror.org/05anzrg13 East of England Ambulance Service NHS Trust'),
(21659, 'https://ror.org/055wnve73', 'en', 1, 'https://ror.org/055wnve73 Bromyard Community Hospital'),
(21660, 'https://ror.org/04sx1q420', 'en', 1, 'https://ror.org/04sx1q420 East Riding Community Hospital'),
(21661, 'https://ror.org/007f12622', 'en', 1, 'https://ror.org/007f12622 Bognor Regis War Memorial Hospital'),
(21662, 'https://ror.org/033z99h42', 'en', 1, 'https://ror.org/033z99h42 Montefiore Hospital'),
(21663, 'https://ror.org/03c4aza49', 'en', 1, 'https://ror.org/03c4aza49 HRH Princess Christian''s Hospital'),
(21664, 'https://ror.org/04tvjvp97', 'en', 1, 'https://ror.org/04tvjvp97 East Sussex Healthcare NHS Trust'),
(21665, 'https://ror.org/055jskg35', 'en', 1, 'https://ror.org/055jskg35 Eastman Dental Hospital'),
(21666, 'https://ror.org/006jqh454', 'en', 1, 'https://ror.org/006jqh454 Brookfields Hospital'),
(21667, 'https://ror.org/05fnsjm04', 'en', 1, 'https://ror.org/05fnsjm04 Brooklands Hospital'),
(21668, 'https://ror.org/016sj4q14', 'en', 1, 'https://ror.org/016sj4q14 Buckingham Community Hospital'),
(21669, 'https://ror.org/036tx2n48', 'en', 1, 'https://ror.org/036tx2n48 Edenbridge and District War Memorial Hospital'),
(21670, 'https://ror.org/01y661f36', 'en', 1, 'https://ror.org/01y661f36 Wantage Community Hospital'),
(21671, 'https://ror.org/04j9g4c85', 'en', 1, 'https://ror.org/04j9g4c85 Wareham Community Hospital'),
(21672, 'https://ror.org/037f2xv36', 'en', 1, 'https://ror.org/037f2xv36 Buckinghamshire Healthcare NHS Trust'),
(21673, 'https://ror.org/057trv649', 'en', 1, 'https://ror.org/057trv649 Edgware Community Hospital'),
(21674, 'https://ror.org/024tpjw43', 'en', 1, 'https://ror.org/024tpjw43 The Princess Grace Hospital'),
(21675, 'https://ror.org/03gr30s78', 'en', 1, 'https://ror.org/03gr30s78 Buckland Hospital'),
(21676, 'https://ror.org/01pw31s78', 'en', 1, 'https://ror.org/01pw31s78 Huntercombe Hospital'),
(21677, 'https://ror.org/01m4ay116', 'en', 1, 'https://ror.org/01m4ay116 Edward Hain Community Hospital'),
(21678, 'https://ror.org/0272v4z91', 'en', 1, 'https://ror.org/0272v4z91 Warminster Community Hospital'),
(21679, 'https://ror.org/0411fwb51', 'en', 1, 'https://ror.org/0411fwb51 Ellen Badger Hospital'),
(21680, 'https://ror.org/05pvtn103', 'en', 1, 'https://ror.org/05pvtn103 Hythe Hospital'),
(21681, 'https://ror.org/055qatb41', 'en', 1, 'https://ror.org/055qatb41 Royal London Hospital for Integrated Medicine'),
(21682, 'https://ror.org/05pjd0m90', 'en', 1, 'https://ror.org/05pjd0m90 The Royal Wolverhampton NHS Trust'),
(21683, 'https://ror.org/003e62q52', 'en', 1, 'https://ror.org/003e62q52 Ellesmere Port Hospital'),
(21684, 'https://ror.org/00swtqd36', 'en', 1, 'https://ror.org/00swtqd36 Vale Community Hospital'),
(21685, 'https://ror.org/04fb0yn25', 'en', 1, 'https://ror.org/04fb0yn25 The Wellington Hospital'),
(21686, 'https://ror.org/0465c2k31', 'en', 1, 'https://ror.org/0465c2k31 Bupa Cromwell Hospital'),
(21687, 'https://ror.org/04xg7ga92', 'en', 1, 'https://ror.org/04xg7ga92 Wathwood Hospital'),
(21688, 'https://ror.org/04ny9jk61', 'en', 1, 'https://ror.org/04ny9jk61 Clevedon Hospital'),
(21689, 'https://ror.org/03c8kha54', 'en', 1, 'https://ror.org/03c8kha54 Spire Hartswood Hospital'),
(21690, 'https://ror.org/05t1w2321', 'en', 1, 'https://ror.org/05t1w2321 Wells Community Hospital'),
(21691, 'https://ror.org/01m53p035', 'en', 1, 'https://ror.org/01m53p035 Tickhill Road Hospital'),
(21692, 'https://ror.org/00nct2329', 'en', 1, 'https://ror.org/00nct2329 New Epsom and Ewell Community Hospital'),
(21693, 'https://ror.org/00c7sr793', 'en', 1, 'https://ror.org/00c7sr793 Tonbridge Cottage Hospital'),
(21694, 'https://ror.org/026cn0061', 'en', 1, 'https://ror.org/026cn0061 Erith and District Hospital'),
(21695, 'https://ror.org/036p7xd52', 'en', 1, 'https://ror.org/036p7xd52 West Berkshire Community Hospital'),
(21696, 'https://ror.org/022jsgk59', 'en', 1, 'https://ror.org/022jsgk59 West Cornwall Hospital'),
(21697, 'https://ror.org/00crq8079', 'en', 1, 'https://ror.org/00crq8079 Euxton Hall Hospital'),
(21698, 'https://ror.org/04b3gg905', 'en', 1, 'https://ror.org/04b3gg905 Evesham Community Hospital'),
(21699, 'https://ror.org/01h7rq191', 'en', 1, 'https://ror.org/01h7rq191 Torrington Hospital'),
(21700, 'https://ror.org/03e4g1593', 'en', 1, 'https://ror.org/03e4g1593 West Hertfordshire Hospitals NHS Trust'),
(21701, 'https://ror.org/0368bwa14', 'en', 1, 'https://ror.org/0368bwa14 West Lane Hospital'),
(21702, 'https://ror.org/05a5dkj17', 'en', 1, 'https://ror.org/05a5dkj17 Exeter Hospital'),
(21703, 'https://ror.org/05fgy3p67', 'en', 1, 'https://ror.org/05fgy3p67 West London Mental Health NHS Trust'),
(21704, 'https://ror.org/00z1wsn64', 'en', 1, 'https://ror.org/00z1wsn64 Bushey Fields Hospital'),
(21705, 'https://ror.org/05x1mdb86', 'en', 1, 'https://ror.org/05x1mdb86 Totnes Community Hospital'),
(21706, 'https://ror.org/00ezmxr80', 'en', 1, 'https://ror.org/00ezmxr80 Fairfield Independent Hospital'),
(21707, 'https://ror.org/05xhfc919', 'en', 1, 'https://ror.org/05xhfc919 Fairford Hospital'),
(21708, 'https://ror.org/00f574b02', 'en', 1, 'https://ror.org/00f574b02 West Park Hospital'),
(21709, 'https://ror.org/02kkv7f68', 'en', 1, 'https://ror.org/02kkv7f68 Falmouth Community Hospital'),
(21710, 'https://ror.org/043zhb260', 'en', 1, 'https://ror.org/043zhb260 Buxton Hospital'),
(21711, 'https://ror.org/05ymj3g35', 'en', 1, 'https://ror.org/05ymj3g35 Trowbridge Community Hospital'),
(21712, 'https://ror.org/02ckk6855', 'en', 1, 'https://ror.org/02ckk6855 Kent Community Health NHS Foundation Trust'),
(21713, 'https://ror.org/03v330a52', 'en', 1, 'https://ror.org/03v330a52 Tunbridge Wells Hospital'),
(21714, 'https://ror.org/05xwfa541', 'en', 1, 'https://ror.org/05xwfa541 Keswick Community Hospital'),
(21715, 'https://ror.org/03774pf85', 'en', 1, 'https://ror.org/03774pf85 Fareham Community Hospital'),
(21716, 'https://ror.org/000kfx178', 'en', 1, 'https://ror.org/000kfx178 Calderstones Partnership NHS Foundation Trust'),
(21717, 'https://ror.org/03gdfyp04', 'en', 1, 'https://ror.org/03gdfyp04 Farnham Hospital & Centre For Health'),
(21718, 'https://ror.org/01zhzx806', 'en', 1, 'https://ror.org/01zhzx806 Callington Road Hospital'),
(21719, 'https://ror.org/049d3ch40', 'en', 1, 'https://ror.org/049d3ch40 Kidderminster Hospital and Treatment Centre'),
(21720, 'https://ror.org/03rhw7p81', 'en', 1, 'https://ror.org/03rhw7p81 Camborne Redruth Community Hospital'),
(21721, 'https://ror.org/04fham916', 'en', 1, 'https://ror.org/04fham916 Farnham Road Hospital'),
(21722, 'https://ror.org/041q37h40', 'en', 1, 'https://ror.org/041q37h40 Cambridgeshire Community Services NHS Trust'),
(21723, 'https://ror.org/05e4e0g07', 'en', 1, 'https://ror.org/05e4e0g07 Westbourne Green Community Hospital'),
(21724, 'https://ror.org/022brwp40', 'en', 1, 'https://ror.org/022brwp40 Cannock Chase Hospital'),
(21725, 'https://ror.org/0325v0r75', 'en', 1, 'https://ror.org/0325v0r75 Faversham Cottage Hospital'),
(21726, 'https://ror.org/00xjnse39', 'en', 1, 'https://ror.org/00xjnse39 Oaks Hospital'),
(21727, 'https://ror.org/03pqmqc37', 'en', 1, 'https://ror.org/03pqmqc37 St. Margaret''s Hospital'),
(21728, 'https://ror.org/02ekga339', 'en', 1, 'https://ror.org/02ekga339 Duchy Hospital'),
(21729, 'https://ror.org/006sa3014', 'en', 1, 'https://ror.org/006sa3014 Rivers Hospital'),
(21730, 'https://ror.org/04atxr455', 'en', 1, 'https://ror.org/04atxr455 BMI Fawkham Manor Hospital'),
(21731, 'https://ror.org/03dww3s84', 'en', 1, 'https://ror.org/03dww3s84 Springfield Hospital'),
(21732, 'https://ror.org/03qc71575', 'en', 1, 'https://ror.org/03qc71575 Western Community Hospital'),
(21733, 'https://ror.org/0410akr80', 'en', 1, 'https://ror.org/0410akr80 Esperance Hospital'),
(21734, 'https://ror.org/04g0t2d47', 'en', 1, 'https://ror.org/04g0t2d47 Western Eye Hospital'),
(21735, 'https://ror.org/02ndvaj90', 'en', 1, 'https://ror.org/02ndvaj90 Westhaven Hospital'),
(21736, 'https://ror.org/01k2edc04', 'en', 1, 'https://ror.org/01k2edc04 Carter Bequest Primary Care Hospital'),
(21737, 'https://ror.org/02tg3d712', 'en', 1, 'https://ror.org/02tg3d712 Lambert Memorial Community Hospital'),
(21738, 'https://ror.org/03zefc030', 'en', 1, 'https://ror.org/03zefc030 Lancashire Care NHS Foundation Trust'),
(21739, 'https://ror.org/013veys68', 'en', 1, 'https://ror.org/013veys68 Cassel Hospital'),
(21740, 'https://ror.org/01wx7k245', 'en', 1, 'https://ror.org/01wx7k245 Langdon Hospital'),
(21741, 'https://ror.org/02pgzvy52', 'en', 1, 'https://ror.org/02pgzvy52 Westmorland General Hospital'),
(21742, 'https://ror.org/01tnf8c58', 'en', 1, 'https://ror.org/01tnf8c58 Feilding Palmer Hospital'),
(21743, 'https://ror.org/010exe056', 'en', 1, 'https://ror.org/010exe056 Ilfracombe Tyrrell Hospital'),
(21744, 'https://ror.org/048vvpr19', 'en', 1, 'https://ror.org/048vvpr19 Felixstowe Community Hospital'),
(21745, 'https://ror.org/03ztzw430', 'en', 1, 'https://ror.org/03ztzw430 Uckfield Community Hospital'),
(21746, 'https://ror.org/013wphc16', 'en', 1, 'https://ror.org/013wphc16 Castleberg Hospital'),
(21747, 'https://ror.org/01brsq570', 'en', 1, 'https://ror.org/01brsq570 Weymouth Community Hospital'),
(21748, 'https://ror.org/00wrevg56', 'en', 1, 'https://ror.org/00wrevg56 University College Hospital'),
(21749, 'https://ror.org/002yssj28', 'en', 1, 'https://ror.org/002yssj28 Wharfedale Hospital'),
(21750, 'https://ror.org/00z1y4j19', 'en', 1, 'https://ror.org/00z1y4j19 University Hospital of Hartlepool'),
(21751, 'https://ror.org/03g47g866', 'en', 1, 'https://ror.org/03g47g866 University Hospitals of North Midlands NHS Trust'),
(21752, 'https://ror.org/04q1zdg40', 'en', 1, 'https://ror.org/04q1zdg40 Caterham Dene Hospital'),
(21753, 'https://ror.org/007bv1h22', 'en', 1, 'https://ror.org/007bv1h22 The Edgbaston Hospital'),
(21754, 'https://ror.org/041gzn235', 'en', 1, 'https://ror.org/041gzn235 Hendon Hospital'),
(21755, 'https://ror.org/02n6vx076', 'en', 1, 'https://ror.org/02n6vx076 BMI The Highfield Hospital'),
(21756, 'https://ror.org/022ejqa41', 'en', 1, 'https://ror.org/022ejqa41 BMI The Ridgeway Hospital'),
(21757, 'https://ror.org/0116kk067', 'en', 1, 'https://ror.org/0116kk067 Leatherhead Community Hospital'),
(21758, 'https://ror.org/05vkg6y29', 'en', 1, 'https://ror.org/05vkg6y29 Fieldhead Hospital'),
(21759, 'https://ror.org/01776ep11', 'en', 1, 'https://ror.org/01776ep11 Leeds Community Healthcare NHS Trust'),
(21760, 'https://ror.org/00tq70902', 'en', 1, 'https://ror.org/00tq70902 Finchley Memorial Hospital'),
(21761, 'https://ror.org/01nefj689', 'en', 1, 'https://ror.org/01nefj689 Rye Winchelsea and District Memorial Hospital'),
(21762, 'https://ror.org/008ngcp91', 'en', 1, 'https://ror.org/008ngcp91 Central London Community Healthcare NHS Trust'),
(21763, 'https://ror.org/04rxffs27', 'en', 1, 'https://ror.org/04rxffs27 Fleet Community Hospital'),
(21764, 'https://ror.org/05x6t5z92', 'en', 1, 'https://ror.org/05x6t5z92 Fleetwood Hospital'),
(21765, 'https://ror.org/01my6jy29', 'en', 1, 'https://ror.org/01my6jy29 Helston Community Hospital'),
(21766, 'https://ror.org/002ekrn29', 'en', 1, 'https://ror.org/002ekrn29 Abingdon Community Hospital'),
(21767, 'https://ror.org/05be09h62', 'en', 1, 'https://ror.org/05be09h62 Fordingbridge Hospital'),
(21768, 'https://ror.org/00n0m9p12', 'en', 1, 'https://ror.org/00n0m9p12 The Acre'),
(21769, 'https://ror.org/021qf1j15', 'en', 1, 'https://ror.org/021qf1j15 Townlands Memorial Hospital'),
(21770, 'https://ror.org/03k6wst68', 'en', 1, 'https://ror.org/03k6wst68 Hopewood Park Hospital'),
(21771, 'https://ror.org/043kgww95', 'en', 1, 'https://ror.org/043kgww95 Fowey Hospital'),
(21772, 'https://ror.org/02vpjdc07', 'en', 1, 'https://ror.org/02vpjdc07 Franklyn Community Hospital'),
(21773, 'https://ror.org/04vndy634', 'en', 1, 'https://ror.org/04vndy634 Friary Community Hospital'),
(21774, 'https://ror.org/00rqys923', 'en', 1, 'https://ror.org/00rqys923 Victoria Community Hospital'),
(21775, 'https://ror.org/02c3a1v05', 'en', 1, 'https://ror.org/02c3a1v05 Spire Gatwick Park Hospital'),
(21776, 'https://ror.org/03khznd17', 'en', 1, 'https://ror.org/03khznd17 Gloucestershire Health and Care NHS Foundation Trust'),
(21777, 'https://ror.org/05641j286', 'en', 1, 'https://ror.org/05641j286 Leek Moorlands Hospital'),
(21778, 'https://ror.org/00x0j8257', 'en', 1, 'https://ror.org/00x0j8257 Goodmayes Hospital'),
(21779, 'https://ror.org/0233tck35', 'en', 1, 'https://ror.org/0233tck35 Wallingford Community Hospital'),
(21780, 'https://ror.org/02ewbw974', 'en', 1, 'https://ror.org/02ewbw974 Leigh House Hospital'),
(21781, 'https://ror.org/039sdwk42', 'en', 1, 'https://ror.org/039sdwk42 Leominster Community Hospital'),
(21782, 'https://ror.org/01ketq791', 'en', 1, 'https://ror.org/01ketq791 Aldeburgh Hospital'),
(21783, 'https://ror.org/05fsnfd13', 'en', 1, 'https://ror.org/05fsnfd13 Lewes Victoria Hospital'),
(21784, 'https://ror.org/04vgz8j88', 'en', 1, 'https://ror.org/04vgz8j88 University Hospital Lewisham'),
(21785, 'https://ror.org/01vz7g950', 'en', 1, 'https://ror.org/01vz7g950 Seaford Day Hospital'),
(21786, 'https://ror.org/03zs39p74', 'en', 1, 'https://ror.org/03zs39p74 Altrincham Hospital'),
(21787, 'https://ror.org/00r5ys630', 'en', 1, 'https://ror.org/00r5ys630 Amberstone Hospital'),
(21788, 'https://ror.org/057jy1g44', 'en', 1, 'https://ror.org/057jy1g44 Liskeard Community Hospital'),
(21789, 'https://ror.org/01bc2jm91', 'en', 1, 'https://ror.org/01bc2jm91 Haywards Heath Hospital'),
(21790, 'https://ror.org/005jzz257', 'en', 1, 'https://ror.org/005jzz257 Liverpool Community Health NHS Trust'),
(21791, 'https://ror.org/044t6xx36', 'en', 1, 'https://ror.org/044t6xx36 Chippenham Community Hospital'),
(21792, 'https://ror.org/00n293x32', 'en', 1, 'https://ror.org/00n293x32 Clay Cross Hospital'),
(21793, 'https://ror.org/03srdnd02', 'en', 1, 'https://ror.org/03srdnd02 Livingstone Community Hospital'),
(21794, 'https://ror.org/04scsxq13', 'en', 1, 'https://ror.org/04scsxq13 Newholme Hospital'),
(21795, 'https://ror.org/01hk5ha98', 'en', 1, 'https://ror.org/01hk5ha98 St Mary''s Hospital'),
(21796, 'https://ror.org/04jzrvb03', 'en', 1, 'https://ror.org/04jzrvb03 Walsall Healthcare NHS Trust'),
(21797, 'https://ror.org/04cd78k07', 'en', 1, 'https://ror.org/04cd78k07 London Ambulance Service NHS Trust'),
(21798, 'https://ror.org/00d8sh725', 'en', 1, 'https://ror.org/00d8sh725 Coalville Community Hospital'),
(21799, 'https://ror.org/0103jrh39', 'en', 1, 'https://ror.org/0103jrh39 BMI The London Independent Hospital'),
(21800, 'https://ror.org/04cntmc13', 'en', 1, 'https://ror.org/04cntmc13 London North West Healthcare NHS Trust'),
(21801, 'https://ror.org/04py01q17', 'en', 1, 'https://ror.org/04py01q17 BMI The Droitwich Spa Hospital'),
(21802, 'https://ror.org/02htksw11', 'en', 1, 'https://ror.org/02htksw11 Longridge Community Hospital'),
(21803, 'https://ror.org/03vbb1674', 'en', 1, 'https://ror.org/03vbb1674 Longton Cottage Hospital'),
(21804, 'https://ror.org/000ttz716', 'en', 1, 'https://ror.org/000ttz716 Ludlow Community Hospital'),
(21805, 'https://ror.org/03ms5t516', 'en', 1, 'https://ror.org/03ms5t516 Lydney and District Hospital'),
(21806, 'https://ror.org/048knqr75', 'en', 1, 'https://ror.org/048knqr75 Bicester Community Hospital'),
(21807, 'https://ror.org/04bk3rn37', 'en', 1, 'https://ror.org/04bk3rn37 Lytham Hospital'),
(21808, 'https://ror.org/024n99014', 'en', 1, 'https://ror.org/024n99014 Thames Valley Hospital'),
(21809, 'https://ror.org/02yq33n72', 'en', 1, 'https://ror.org/02yq33n72 Maidstone and Tunbridge Wells NHS Trust'),
(21810, 'https://ror.org/01j9fyk40', 'en', 1, 'https://ror.org/01j9fyk40 Chester le Street Community Hospital'),
(21811, 'https://ror.org/01zk9kz10', 'en', 1, 'https://ror.org/01zk9kz10 Nelson Hospital'),
(21812, 'https://ror.org/05smxxj12', 'en', 1, 'https://ror.org/05smxxj12 Malton Community Hospital'),
(21813, 'https://ror.org/01ar9ff23', 'en', 1, 'https://ror.org/01ar9ff23 Malvern Community Hospital'),
(21814, 'https://ror.org/04pt7tz26', 'en', 1, 'https://ror.org/04pt7tz26 West Heath Hospital'),
(21815, 'https://ror.org/05sq6ae13', 'en', 1, 'https://ror.org/05sq6ae13 Manor Hospital'),
(21816, 'https://ror.org/03df6me86', 'en', 1, 'https://ror.org/03df6me86 West View Integrated Care Centre'),
(21817, 'https://ror.org/04t7w7h11', 'en', 1, 'https://ror.org/04t7w7h11 Alfred Bean Hospital'),
(21818, 'https://ror.org/04t83hz09', 'en', 1, 'https://ror.org/04t83hz09 Mansfield Community Hospital'),
(21819, 'https://ror.org/02r8zc629', 'en', 1, 'https://ror.org/02r8zc629 Market Drayton Cottage Hospital'),
(21820, 'https://ror.org/00kaped05', 'en', 1, 'https://ror.org/00kaped05 Chipping Norton War Memorial Community Hospital'),
(21821, 'https://ror.org/00h1cg828', 'en', 1, 'https://ror.org/00h1cg828 Marlow Community Hospital'),
(21822, 'https://ror.org/02bwd6p34', 'en', 1, 'https://ror.org/02bwd6p34 Ashfield Community Hospital'),
(21823, 'https://ror.org/05tfp2303', 'en', 1, 'https://ror.org/05tfp2303 Clacton Hospital'),
(21824, 'https://ror.org/0395ge265', 'en', 1, 'https://ror.org/0395ge265 Weybridge Community Hospital'),
(21825, 'https://ror.org/04xjs5g68', 'en', 1, 'https://ror.org/04xjs5g68 Spire London East Hospital'),
(21826, 'https://ror.org/02d0hr347', 'en', 1, 'https://ror.org/02d0hr347 Maryport Victoria Cottage Hospital'),
(21827, 'https://ror.org/02788t795', 'en', 1, 'https://ror.org/02788t795 Maudsley Hospital'),
(21828, 'https://ror.org/01t881g83', 'en', 1, 'https://ror.org/01t881g83 Saffron Walden Community Hospital'),
(21829, 'https://ror.org/029y8px13', 'en', 1, 'https://ror.org/029y8px13 Newmarket Hospital'),
(21830, 'https://ror.org/05a9xrg77', 'en', 1, 'https://ror.org/05a9xrg77 Mayfair Day Hospital'),
(21831, 'https://ror.org/00p5pgq41', 'en', 1, 'https://ror.org/00p5pgq41 Elmleigh Hospital'),
(21832, 'https://ror.org/01ztsjv38', 'en', 1, 'https://ror.org/01ztsjv38 Mayflower Community Hospital'),
(21833, 'https://ror.org/01d97fd71', 'en', 1, 'https://ror.org/01d97fd71 Sedgefield Community Hospital'),
(21834, 'https://ror.org/058y6mx80', 'en', 1, 'https://ror.org/058y6mx80 Shipley Hospital'),
(21835, 'https://ror.org/051bw0z52', 'en', 1, 'https://ror.org/051bw0z52 Emsworth Hospital'),
(21836, 'https://ror.org/041mj3y24', 'en', 1, 'https://ror.org/041mj3y24 Eccleshill Community Hospital'),
(21837, 'https://ror.org/02h43kn72', 'en', 1, 'https://ror.org/02h43kn72 St. Leonards Hospital'),
(21838, 'https://ror.org/054ysee23', 'en', 1, 'https://ror.org/054ysee23 Barton Community Health & Care Centre'),
(21839, 'https://ror.org/04sahz302', 'en', 1, 'https://ror.org/04sahz302 Newtown Hospital'),
(21840, 'https://ror.org/027ep7e51', 'en', 1, 'https://ror.org/027ep7e51 Sutton Cottage Hospital'),
(21841, 'https://ror.org/00h2car28', 'en', 1, 'https://ror.org/00h2car28 Walton Community Hospital'),
(21842, 'https://ror.org/00gk22h75', 'en', 1, 'https://ror.org/00gk22h75 Walton Hospital'),
(21843, 'https://ror.org/00kgv1q58', 'en', 1, 'https://ror.org/00kgv1q58 Grantham and District Hospital'),
(21844, 'https://ror.org/0372w8x42', 'en', 1, 'https://ror.org/0372w8x42 Bideford Medical Centre'),
(21845, 'https://ror.org/01fpdz014', 'en', 1, 'https://ror.org/01fpdz014 Biggleswade Hospital Spring House'),
(21846, 'https://ror.org/02846rb74', 'en', 1, 'https://ror.org/02846rb74 Whitby Hospital'),
(21847, 'https://ror.org/00qx46v42', 'en', 1, 'https://ror.org/00qx46v42 Bispham Hospital'),
(21848, 'https://ror.org/00gfqxe82', 'en', 1, 'https://ror.org/00gfqxe82 Wilson Hospital'),
(21849, 'https://ror.org/00g3ea624', 'en', 1, 'https://ror.org/00g3ea624 Bletchley Community Hospital'),
(21850, 'https://ror.org/01zfccs95', 'en', 1, 'https://ror.org/01zfccs95 Gravesham Community Hospital'),
(21851, 'https://ror.org/00jw4j947', 'en', 1, 'https://ror.org/00jw4j947 Bolsover Hospital'),
(21852, 'https://ror.org/02vxbf684', 'en', 1, 'https://ror.org/02vxbf684 Winfield Hospital'),
(21853, 'https://ror.org/05f9e0404', 'en', 1, 'https://ror.org/05f9e0404 Paulton Hospital'),
(21854, 'https://ror.org/00s9rtw68', 'en', 1, 'https://ror.org/00s9rtw68 Peasley Cross Hospital'),
(21855, 'https://ror.org/021wnqb35', 'en', 1, 'https://ror.org/021wnqb35 Withernsea Hospital'),
(21856, 'https://ror.org/04bqa8v55', 'en', 1, 'https://ror.org/04bqa8v55 Bowmere Hospital'),
(21857, 'https://ror.org/01jmwv231', 'en', 1, 'https://ror.org/01jmwv231 Witney Community Hospital'),
(21858, 'https://ror.org/01pggea98', 'en', 1, 'https://ror.org/01pggea98 Johnson Community Hospital'),
(21859, 'https://ror.org/05d4aam89', 'en', 1, 'https://ror.org/05d4aam89 Woking Community Hospital'),
(21860, 'https://ror.org/03dw0z746', 'en', 1, 'https://ror.org/03dw0z746 Halstead Hospital'),
(21861, 'https://ror.org/03cej9w90', 'en', 1, 'https://ror.org/03cej9w90 Wokingham Hospital'),
(21862, 'https://ror.org/0026b6z69', 'en', 1, 'https://ror.org/0026b6z69 Whitchurch Community Hospital'),
(21863, 'https://ror.org/05dktpm65', 'en', 1, 'https://ror.org/05dktpm65 White Cross Court Rehabilitation Hospital'),
(21864, 'https://ror.org/01pyd3y08', 'en', 1, 'https://ror.org/01pyd3y08 Brampton War Memorial Hospital'),
(21865, 'https://ror.org/051dv4419', 'en', 1, 'https://ror.org/051dv4419 Woodlands Hospital'),
(21866, 'https://ror.org/02x5def49', 'en', 1, 'https://ror.org/02x5def49 Whitstable and Tankerton Hospital'),
(21867, 'https://ror.org/05p2fta25', 'en', 1, 'https://ror.org/05p2fta25 Harwich And District Hospital'),
(21868, 'https://ror.org/04t3wh438', 'en', 1, 'https://ror.org/04t3wh438 Haslemere Hospital'),
(21869, 'https://ror.org/05f4fmq20', 'en', 1, 'https://ror.org/05f4fmq20 Brentwood Community Hospital'),
(21870, 'https://ror.org/04ygf3832', 'en', 1, 'https://ror.org/04ygf3832 Whitworth Hospital'),
(21871, 'https://ror.org/04n6z1w07', 'en', 1, 'https://ror.org/04n6z1w07 Bridgeways Day Hospital'),
(21872, 'https://ror.org/01k322j33', 'en', 1, 'https://ror.org/01k322j33 Hellesdon Hospital'),
(21873, 'https://ror.org/04c5em741', 'en', 1, 'https://ror.org/04c5em741 Wigton Community Hospital'),
(21874, 'https://ror.org/050j7sq19', 'en', 1, 'https://ror.org/050j7sq19 Woodlands Hospital'),
(21875, 'https://ror.org/05h9ysj75', 'en', 1, 'https://ror.org/05h9ysj75 Willesden Community Rehabilitation Hospital'),
(21876, 'https://ror.org/02bsvz023', 'en', 1, 'https://ror.org/02bsvz023 Hinckley and Bosworth Community Hospital'),
(21877, 'https://ror.org/031mc4w27', 'en', 1, 'https://ror.org/031mc4w27 Hinckley and District Hospital'),
(21878, 'https://ror.org/04gp23z26', 'en', 1, 'https://ror.org/04gp23z26 Prudhoe Hospital'),
(21879, 'https://ror.org/043tt0v89', 'en', 1, 'https://ror.org/043tt0v89 Calderstones Hospital'),
(21880, 'https://ror.org/03acae918', 'en', 1, 'https://ror.org/03acae918 Hitchin Hospital'),
(21881, 'https://ror.org/01cbxe745', 'en', 1, 'https://ror.org/01cbxe745 Queen Victoria Memorial Hospital'),
(21882, 'https://ror.org/05n1t5q87', 'en', 1, 'https://ror.org/05n1t5q87 Ripley Hospital'),
(21883, 'https://ror.org/03bnqh738', 'en', 1, 'https://ror.org/03bnqh738 Castleford, Normanton and District Hospital'),
(21884, 'https://ror.org/05yd61k38', 'en', 1, 'https://ror.org/05yd61k38 Hollins Park Hospital'),
(21885, 'https://ror.org/01gnx5040', 'en', 1, 'https://ror.org/01gnx5040 Cavendish Hospital'),
(21886, 'https://ror.org/04epv6m25', 'en', 1, 'https://ror.org/04epv6m25 Hornsea Cottage Hospital'),
(21887, 'https://ror.org/02s1b7x83', 'en', 1, 'https://ror.org/02s1b7x83 Workington Community Hospital'),
(21888, 'https://ror.org/051s9as34', 'en', 1, 'https://ror.org/051s9as34 Hundens Lane Day Hospital'),
(21889, 'https://ror.org/05q7b6a32', 'en', 1, 'https://ror.org/05q7b6a32 Orchards Day Hospital'),
(21890, 'https://ror.org/030p4ph45', 'en', 1, 'https://ror.org/030p4ph45 Wotton Lawn Hospital'),
(21891, 'https://ror.org/03yk2q786', 'en', 1, 'https://ror.org/03yk2q786 Wye Valley NHS Trust'),
(21892, 'https://ror.org/04xamr707', 'en', 1, 'https://ror.org/04xamr707 Ilkeston Hospital'),
(21893, 'https://ror.org/027e4g787', 'en', 1, 'https://ror.org/027e4g787 York Teaching Hospital NHS Foundation Trust'),
(21894, 'https://ror.org/01sawky49', 'en', 1, 'https://ror.org/01sawky49 Yorkshire Ambulance Service NHS Trust'),
(21895, 'https://ror.org/02jxcp012', 'en', 1, 'https://ror.org/02jxcp012 Ida Darwin hospital'),
(21896, 'https://ror.org/01fc8vj32', 'en', 1, 'https://ror.org/01fc8vj32 Zachary Merton Hospital'),
(21897, 'https://ror.org/03egk3v94', 'en', 1, 'https://ror.org/03egk3v94 Advanced Applied Physics Solutions'),
(21898, 'https://ror.org/03b5r4s12', 'en', 1, 'https://ror.org/03b5r4s12 Victoria Central Hospital'),
(21899, 'https://ror.org/03hcgzj74', 'en', 1, 'https://ror.org/03hcgzj74 Isebrook Hospital'),
(21900, 'https://ror.org/02g77ac10', 'en', 1, 'https://ror.org/02g77ac10 Red Crow Community College'),
(21901, 'https://ror.org/03ygyva39', 'en', 1, 'https://ror.org/03ygyva39 Walnut Tree Hospital'),
(21902, 'https://ror.org/048sa9h54', 'en', 1, 'https://ror.org/048sa9h54 John Black Day Hospital'),
(21903, 'https://ror.org/04k34dm23', 'en', 1, 'https://ror.org/04k34dm23 John Coupland Hospital'),
(21904, 'https://ror.org/02f622w49', 'en', 1, 'https://ror.org/02f622w49 Kelling Hospital'),
(21905, 'https://ror.org/024epr358', 'en', 1, 'https://ror.org/024epr358 Kendray Hospital'),
(21906, 'https://ror.org/05bk70695', 'fr', 1, 'https://ror.org/05bk70695 Association Canadienne d''Education de Langue Française'),
(21907, 'https://ror.org/02e6tdc21', 'en', 1, 'https://ror.org/02e6tdc21 Association Canadienne de Linguistique Canadian Linguistic Association'),
(21908, 'https://ror.org/055k1rd14', 'en', 1, 'https://ror.org/055k1rd14 GreenCentre Canada'),
(21909, 'https://ror.org/04z5n3121', 'en', 1, 'https://ror.org/04z5n3121 Kings Park Hospital'),
(21910, 'https://ror.org/01pjc8p36', 'en', 1, 'https://ror.org/01pjc8p36 Historical Studies in Education Revue d''histoire de l''éducation'),
(21911, 'https://ror.org/00pf6z250', 'en', 1, 'https://ror.org/00pf6z250 Knutsford and District Community Hospital'),
(21912, 'https://ror.org/05shyvt50', 'en', 1, 'https://ror.org/05shyvt50 Langley Green Hospital'),
(21913, 'https://ror.org/0392yzq14', 'no_lang_code', 1, 'https://ror.org/0392yzq14 Inanna Publications and Education (Canada)'),
(21914, 'https://ror.org/03fpnp855', 'fr', 1, 'https://ror.org/03fpnp855 Association Canadienne des Sociologues et Anthropologues de Langue Française'),
(21915, 'https://ror.org/05we8km13', 'en', 1, 'https://ror.org/05we8km13 Leeds Dental Hospital'),
(21916, 'https://ror.org/02c18bt40', 'en', 1, 'https://ror.org/02c18bt40 Leicester Frith Hospital'),
(21917, 'https://ror.org/05ha03268', 'en', 1, 'https://ror.org/05ha03268 Lincolnshire Community Health Services NHS Trust'),
(21918, 'https://ror.org/01zzt6n55', 'fr', 1, 'https://ror.org/01zzt6n55 Institut d''Histoire de l''Amérique Française'),
(21919, 'https://ror.org/01wgb4d05', 'en', 1, 'https://ror.org/01wgb4d05 Lings Bar Hospital'),
(21920, 'https://ror.org/0127drs35', 'en', 1, 'https://ror.org/0127drs35 Little Plumstead Hospital'),
(21921, 'https://ror.org/04jxq7458', 'fr', 1, 'https://ror.org/04jxq7458 Association des Démographes du Québec'),
(21922, 'https://ror.org/03db8ra47', 'en', 1, 'https://ror.org/03db8ra47 Association for Canadian and Québec Literatures L’Association des littératures canadiennes et québécoise'),
(21923, 'https://ror.org/04qtafx02', 'en', 1, 'https://ror.org/04qtafx02 Informal logic (Canada)'),
(21924, 'https://ror.org/03q83c436', 'en', 1, 'https://ror.org/03q83c436 Association for Canadian Studies'),
(21925, 'https://ror.org/000qwnj69', 'en', 1, 'https://ror.org/000qwnj69 Institute of Public Administration of Canada'),
(21926, 'https://ror.org/04jwm9504', 'en', 1, 'https://ror.org/04jwm9504 International Council for Canadian Studies'),
(21927, 'https://ror.org/04wwsjb72', 'en', 1, 'https://ror.org/04wwsjb72 Canadian Cartographic Association L''Association Canadienne de Cartographie'),
(21928, 'https://ror.org/031mcge81', 'en', 1, 'https://ror.org/031mcge81 Nunavik Regional Board of Health and Social Services Régie régionale de la santé et des services sociaux du Nunavik'),
(21929, 'https://ror.org/04snjkd04', 'en', 1, 'https://ror.org/04snjkd04 Association Canadienne pour la Recherche Théâtrale Canadian Association for Theatre Research'),
(21930, 'https://ror.org/00rgatc64', 'en', 1, 'https://ror.org/00rgatc64 Kamloops Art Gallery'),
(21931, 'https://ror.org/05f8ahf97', 'en', 1, 'https://ror.org/05f8ahf97 Llandrindod Wells Hospital'),
(21932, 'https://ror.org/05dj7ef89', 'en', 1, 'https://ror.org/05dj7ef89 Canadian Network for Innovation in Education Réseau Canadien Pour l''innovation en Education'),
(21933, 'https://ror.org/03pkrx282', 'en', 1, 'https://ror.org/03pkrx282 Loughborough Hospital'),
(21934, 'https://ror.org/035xbae69', 'en', 1, 'https://ror.org/035xbae69 Lymington New Forest Hospital'),
(21935, 'https://ror.org/04kw8a006', 'en', 1, 'https://ror.org/04kw8a006 Julian Hospital'),
(21936, 'https://ror.org/00pk39639', 'en', 1, 'https://ror.org/00pk39639 Canadian Centre for Community Renewal'),
(21937, 'https://ror.org/02hvxe361', 'en', 1, 'https://ror.org/02hvxe361 Queen''s Hospital'),
(21938, 'https://ror.org/03tz9dg23', 'fr', 1, 'https://ror.org/03tz9dg23 La Boîte à lettres'),
(21939, 'https://ror.org/00knefa62', 'en', 1, 'https://ror.org/00knefa62 Canadian Centre for Policy Alternatives'),
(21940, 'https://ror.org/02ys1m002', 'en', 1, 'https://ror.org/02ys1m002 Association for the Advancement of Scandinavian Studies in Canada l''Association pour l''avancement des études scandinaves au Canada'),
(21941, 'https://ror.org/04kw0xk03', 'en', 1, 'https://ror.org/04kw0xk03 Canadian Co-operative Association'),
(21942, 'https://ror.org/017bt7t72', 'en', 1, 'https://ror.org/017bt7t72 Leamington Spa Hospital'),
(21943, 'https://ror.org/00h2art69', 'fr', 1, 'https://ror.org/00h2art69 Société Canadienne de Science Economique'),
(21944, 'https://ror.org/05cq1w341', 'fr', 1, 'https://ror.org/05cq1w341 Société Canadienne de Théologie'),
(21945, 'https://ror.org/004z6x951', 'en', 1, 'https://ror.org/004z6x951 Collège marianopolis Marianopolis College'),
(21946, 'https://ror.org/04ns19e26', 'en', 1, 'https://ror.org/04ns19e26 Association of Canadian College and University Teachers of English'),
(21947, 'https://ror.org/0460r5302', 'en', 1, 'https://ror.org/0460r5302 MaRS Innovation'),
(21948, 'https://ror.org/00h0zws58', 'en', 1, 'https://ror.org/00h0zws58 McCord Museum Musée McCord'),
(21949, 'https://ror.org/03v02jr28', 'no_lang_code', 1, 'https://ror.org/03v02jr28 Amerindian Research in Quebec (Canada)'),
(21950, 'https://ror.org/01k4bzs92', 'en', 1, 'https://ror.org/01k4bzs92 Association des Cartothèques et Archives Cartographiques du Canada Association of Canadian Map Libraries and Archives'),
(21951, 'https://ror.org/00se0qw52', 'en', 1, 'https://ror.org/00se0qw52 Canadian Society for Digital Humanities Société Canadienne pour les Humanités Numériques.'),
(21952, 'https://ror.org/0102ea670', 'en', 1, 'https://ror.org/0102ea670 Society for Socialist Studies Société détudes socialistes'),
(21953, 'https://ror.org/01t2ez611', 'fr', 1, 'https://ror.org/01t2ez611 Association pour le Développement de la Mesure et de l''Evaluation en Education');
INSERT INTO `rors` VALUES
(21954, 'https://ror.org/015z05t63', 'en', 1, 'https://ror.org/015z05t63 Métis National Council Ralliement national des Métis'),
(21955, 'https://ror.org/02ry6ba16', 'en', 1, 'https://ror.org/02ry6ba16 Society for the Study of Architecture in Canada Société pour l''Étude de l''Architecture au Canada'),
(21956, 'https://ror.org/03pgvsr43', 'en', 1, 'https://ror.org/03pgvsr43 Mining Industry Human Resources Council'),
(21957, 'https://ror.org/01xs3h851', 'en', 1, 'https://ror.org/01xs3h851 Society for the Study of Egyptian Antiquities'),
(21958, 'https://ror.org/00j8x2c33', 'fr', 1, 'https://ror.org/00j8x2c33 Sociologie et Sociétés'),
(21959, 'https://ror.org/03jnhsd98', 'en', 1, 'https://ror.org/03jnhsd98 Bioindustrial Innovation Canada'),
(21960, 'https://ror.org/04ky2sd92', 'en', 1, 'https://ror.org/04ky2sd92 Squamish Nation'),
(21961, 'https://ror.org/02mdd6971', 'en', 1, 'https://ror.org/02mdd6971 Canadian Society of Church History Société Canadienne d’Histoire de l’Eglise'),
(21962, 'https://ror.org/031903y12', 'en', 1, 'https://ror.org/031903y12 Canadian Council on Social Development'),
(21963, 'https://ror.org/05drjbx41', 'en', 1, 'https://ror.org/05drjbx41 MiningWatch Canada'),
(21964, 'https://ror.org/00y0x8k49', 'en', 1, 'https://ror.org/00y0x8k49 Association Canadienne de Counseling et de Psychothérapie Canadian Counselling and Psychotherapy Association'),
(21965, 'https://ror.org/03pkwvf72', 'en', 1, 'https://ror.org/03pkwvf72 Campion College'),
(21966, 'https://ror.org/04vq5b176', 'en', 1, 'https://ror.org/04vq5b176 TESL Canada Federation'),
(21967, 'https://ror.org/04zhcfg57', 'en', 1, 'https://ror.org/04zhcfg57 Avataq Cultural Institute'),
(21968, 'https://ror.org/05ge25h32', 'en', 1, 'https://ror.org/05ge25h32 National Circus School École nationale de cirque'),
(21969, 'https://ror.org/005tyn647', 'en', 1, 'https://ror.org/005tyn647 Bibliographical Society of Canada La Société Bibliographique du Canada'),
(21970, 'https://ror.org/05fhgtk93', 'en', 1, 'https://ror.org/05fhgtk93 La commission des étudiants Students Commission'),
(21971, 'https://ror.org/00nfht809', 'en', 1, 'https://ror.org/00nfht809 Association Canadienne de Justice Pénale Canadian Criminal Justice Association'),
(21972, 'https://ror.org/006nw5s10', 'en', 1, 'https://ror.org/006nw5s10 Wellesley Institute'),
(21973, 'https://ror.org/01q7nv767', 'en', 1, 'https://ror.org/01q7nv767 Toronto Arts Foundation'),
(21974, 'https://ror.org/04ax9w078', 'en', 1, 'https://ror.org/04ax9w078 Canadian Anthropology Society'),
(21975, 'https://ror.org/034msqq35', 'fr', 1, 'https://ror.org/034msqq35 Université Sainte-Anne'),
(21976, 'https://ror.org/05fsfff09', 'en', 1, 'https://ror.org/05fsfff09 L''Association d''art des universités du Canada Universities Art Association of Canada'),
(21977, 'https://ror.org/05ty6tb10', 'en', 1, 'https://ror.org/05ty6tb10 Native Women''s Association of Canada'),
(21978, 'https://ror.org/00t0mzb74', 'fr', 1, 'https://ror.org/00t0mzb74 Université de Hearst'),
(21979, 'https://ror.org/01kgmdj61', 'en', 1, 'https://ror.org/01kgmdj61 Canadian Arctic Resources Committee'),
(21980, 'https://ror.org/00nd98w52', 'en', 1, 'https://ror.org/00nd98w52 Canadian Arthritis Network'),
(21981, 'https://ror.org/019dhar59', 'en', 1, 'https://ror.org/019dhar59 Trinity College'),
(21982, 'https://ror.org/03a98ms41', 'no_lang_code', 1, 'https://ror.org/03a98ms41 New Dawn Enterprises (Canada)'),
(21983, 'https://ror.org/035bfyh12', 'en', 1, 'https://ror.org/035bfyh12 Canadian Association for Business Economics'),
(21984, 'https://ror.org/0422ksx61', 'en', 1, 'https://ror.org/0422ksx61 Prostate Centre’s Translational Research Initiative for Accelerated Discovery and Development'),
(21985, 'https://ror.org/011pn8n48', 'en', 1, 'https://ror.org/011pn8n48 Canadian Association for Commonwealth Literature and Language Studies'),
(21986, 'https://ror.org/00skx0050', 'en', 1, 'https://ror.org/00skx0050 Canadian Association for Graduate Studies'),
(21987, 'https://ror.org/01wca3r14', 'en', 1, 'https://ror.org/01wca3r14 Wavefront Wireless Commercialization Centre'),
(21988, 'https://ror.org/05dsrdr13', 'en', 1, 'https://ror.org/05dsrdr13 Canadian Forum on Civil Justice'),
(21989, 'https://ror.org/04pvj3017', 'en', 1, 'https://ror.org/04pvj3017 Wycliffe College'),
(21990, 'https://ror.org/04p77ts85', 'en', 1, 'https://ror.org/04p77ts85 Canadian Historical Association Société historique du Canada'),
(21991, 'https://ror.org/02czb6c47', 'en', 1, 'https://ror.org/02czb6c47 Association canadienne d''études en loisir Canadian Association for Leisure Studies'),
(21992, 'https://ror.org/04z5gvs07', 'en', 1, 'https://ror.org/04z5gvs07 Bureau des Services à la Jeunesse Youth Services Bureau of Ottawa'),
(21993, 'https://ror.org/02465cd10', 'fr', 1, 'https://ror.org/02465cd10 Women''s and Gender Studies et Recherches Féministes'),
(21994, 'https://ror.org/02zrdtc90', 'en', 1, 'https://ror.org/02zrdtc90 McMaster Divinity College'),
(21995, 'https://ror.org/03bpj1h80', 'en', 1, 'https://ror.org/03bpj1h80 Centre for Community Based Research'),
(21996, 'https://ror.org/014v77g24', 'en', 1, 'https://ror.org/014v77g24 Centre for Drug Research and Development'),
(21997, 'https://ror.org/03qx9j992', 'en', 1, 'https://ror.org/03qx9j992 Association Canadienne de Communication Canadian Communication Association'),
(21998, 'https://ror.org/013p2c441', 'no_lang_code', 1, 'https://ror.org/013p2c441 Centre for Imaging Technology Commercialization'),
(21999, 'https://ror.org/025zz8754', 'en', 1, 'https://ror.org/025zz8754 NWT Literacy Council'),
(22000, 'https://ror.org/01crx9472', 'en', 1, 'https://ror.org/01crx9472 Canadian Association for Social Work Education'),
(22001, 'https://ror.org/025zp0g22', 'en', 1, 'https://ror.org/025zp0g22 Association Canadienne pour les Études sur la Cooperation Canadian Association for Studies in Co-operation'),
(22002, 'https://ror.org/03pmj9e82', 'en', 1, 'https://ror.org/03pmj9e82 Centre for Probe Development and Commercialization'),
(22003, 'https://ror.org/03n8k5298', 'en', 1, 'https://ror.org/03n8k5298 Association canadienne des industrielles Canadian Industrial Relations Association'),
(22004, 'https://ror.org/02feeaa54', 'en', 1, 'https://ror.org/02feeaa54 Association Canadienne pour l''Avancement des études Néerlandaises Canadian Association for the Advancement of Netherlandic Studies'),
(22005, 'https://ror.org/02d640813', 'en', 1, 'https://ror.org/02d640813 International Centre for Comparative Criminology'),
(22006, 'https://ror.org/037mvh302', 'en', 1, 'https://ror.org/037mvh302 Canadian Association for the Study of Adult Education'),
(22007, 'https://ror.org/035s9ab89', 'en', 1, 'https://ror.org/035s9ab89 Canadiana.org'),
(22008, 'https://ror.org/05e1h7h42', 'en', 1, 'https://ror.org/05e1h7h42 Pan-Provincial Vaccine Enterprise'),
(22009, 'https://ror.org/01mgm2h35', 'en', 1, 'https://ror.org/01mgm2h35 Center of Excellence in Energy Efficiency'),
(22010, 'https://ror.org/00frndg15', 'en', 1, 'https://ror.org/00frndg15 Association des Musées Canadiens Canadian Museums Association'),
(22011, 'https://ror.org/007b5mw80', 'en', 1, 'https://ror.org/007b5mw80 Physicians for a Smoke-Free Canada'),
(22012, 'https://ror.org/04zzdbj59', 'en', 1, 'https://ror.org/04zzdbj59 Canadian Nautical Research Society Société Canadienne Pour la Recherche Nautique'),
(22013, 'https://ror.org/019w06c66', 'en', 1, 'https://ror.org/019w06c66 Association canadienne des revues savantes Canadian Association of Learned Journals'),
(22014, 'https://ror.org/01649ww56', 'en', 1, 'https://ror.org/01649ww56 Institut Pontifical d''Études Médiévales Pontifical Institute of Mediaeval Studies'),
(22015, 'https://ror.org/01v1t8x37', 'en', 1, 'https://ror.org/01v1t8x37 Providence University College and Theological Seminary'),
(22016, 'https://ror.org/02dv1n029', 'fr', 1, 'https://ror.org/02dv1n029 Santé Mentale au Québec'),
(22017, 'https://ror.org/051tv6j02', 'en', 1, 'https://ror.org/051tv6j02 Canadian Bioethics Society Société Canadienne de la Bioéthique Médicale'),
(22018, 'https://ror.org/05ffyfw07', 'en', 1, 'https://ror.org/05ffyfw07 Association canadienne de science politique Canadian Political Science Association'),
(22019, 'https://ror.org/02znd6t60', 'en', 1, 'https://ror.org/02znd6t60 Canadian Psychological Association'),
(22020, 'https://ror.org/019sq5g45', 'fr', 1, 'https://ror.org/019sq5g45 Collège de Valleyfield'),
(22021, 'https://ror.org/017bynh47', 'en', 1, 'https://ror.org/017bynh47 Hospital La Paz Institute for Health Research'),
(22022, 'https://ror.org/05p4xk507', 'en', 1, 'https://ror.org/05p4xk507 Canadian Research Institute for the Advancement of Women Institut Canadien de Recherches sur les Femmes'),
(22023, 'https://ror.org/010j3wg85', 'en', 1, 'https://ror.org/010j3wg85 Communitech'),
(22024, 'https://ror.org/02bgm5h12', 'en', 1, 'https://ror.org/02bgm5h12 Community Living Welland Pelham'),
(22025, 'https://ror.org/02558h854', 'es', 1, 'https://ror.org/02558h854 Hospital Quirónsalud Barcelona'),
(22026, 'https://ror.org/001yzzh53', 'en', 1, 'https://ror.org/001yzzh53 Hyogo Chuo National Hospital 兵庫中央病院'),
(22027, 'https://ror.org/023gbp227', 'en', 1, 'https://ror.org/023gbp227 Community Sector Council Newfoundland and Labrador'),
(22028, 'https://ror.org/00v60f727', 'en', 1, 'https://ror.org/00v60f727 Conference Board of Canada Le Conference Board du Canada'),
(22029, 'https://ror.org/02brpgm25', 'en', 1, 'https://ror.org/02brpgm25 Canadian Evaluation Society Société Canadienne d''évaluation'),
(22030, 'https://ror.org/02xt2gf57', 'no_lang_code', 1, 'https://ror.org/02xt2gf57 Imamura Hospital 今村病院'),
(22031, 'https://ror.org/04k2k1k52', 'no_lang_code', 1, 'https://ror.org/04k2k1k52 Isesaki Fukushima Hospital 伊勢崎福島病院'),
(22032, 'https://ror.org/00ppcg417', 'en', 1, 'https://ror.org/00ppcg417 Congress of Aboriginal Peoples'),
(22033, 'https://ror.org/02akddf79', 'en', 1, 'https://ror.org/02akddf79 Canadian Catholic Historical Association'),
(22034, 'https://ror.org/02dhn4e70', 'en', 1, 'https://ror.org/02dhn4e70 Itami City Hospital 市立伊丹病院'),
(22035, 'https://ror.org/03t7c1217', 'en', 1, 'https://ror.org/03t7c1217 Keiju Medical Center 恵寿総合病院'),
(22036, 'https://ror.org/03w4vm615', 'en', 1, 'https://ror.org/03w4vm615 Kitakashiwa Rehabilitation General Hospital 北柏リハビリ総合病院'),
(22037, 'https://ror.org/05cwdc397', 'es', 1, 'https://ror.org/05cwdc397 Hospital Posadas'),
(22038, 'https://ror.org/027yy2w57', 'en', 1, 'https://ror.org/027yy2w57 Kobatake Hospital 小畠病院'),
(22039, 'https://ror.org/0241a4222', 'es', 1, 'https://ror.org/0241a4222 Hospital Provincial de Rosario'),
(22040, 'https://ror.org/00ay59j04', 'en', 1, 'https://ror.org/00ay59j04 Koujin Hospital 紘仁病院'),
(22041, 'https://ror.org/01cysch38', 'en', 1, 'https://ror.org/01cysch38 Quebec Federation of University Students'),
(22042, 'https://ror.org/0210qe842', 'no_lang_code', 1, 'https://ror.org/0210qe842 Mannari Hospital 万成病院'),
(22043, 'https://ror.org/00x6s3a91', 'en', 1, 'https://ror.org/00x6s3a91 Saint Göran Hospital Sankt Görans sjukhus'),
(22044, 'https://ror.org/02haqm712', 'en', 1, 'https://ror.org/02haqm712 Matsubara Mayflower Hospital 松原メイフラワー病'),
(22045, 'https://ror.org/05dj7d812', 'en', 1, 'https://ror.org/05dj7d812 Midorigaoka Hospital みどりヶ丘病院'),
(22046, 'https://ror.org/01e0nt744', 'en', 1, 'https://ror.org/01e0nt744 Naga Municipal Hospital 公立那賀病院'),
(22047, 'https://ror.org/04qwwm875', 'en', 1, 'https://ror.org/04qwwm875 Nanao hospital 七尾病院'),
(22048, 'https://ror.org/01tm7nw04', 'fr', 1, 'https://ror.org/01tm7nw04 Corporation d’Aménagement et de Protection de la Sainte-Anne'),
(22049, 'https://ror.org/021rpyr13', 'en', 1, 'https://ror.org/021rpyr13 Canadian Society for Italian Studies Société Canadienne pour les Études Italiennes'),
(22050, 'https://ror.org/00qbkg805', 'en', 1, 'https://ror.org/00qbkg805 Cabrini Hospital'),
(22051, 'https://ror.org/02h3p3q22', 'en', 1, 'https://ror.org/02h3p3q22 Canadian Society for Mesopotamian Studies Société Canadienne des Etudes Mésopotamiennes'),
(22052, 'https://ror.org/00se67j64', 'en', 1, 'https://ror.org/00se67j64 Ehime Medical Center 国立病院機構 愛媛医療センター'),
(22053, 'https://ror.org/02nwsnt47', 'en', 1, 'https://ror.org/02nwsnt47 Council of Canadians with Disabilities'),
(22054, 'https://ror.org/00161f548', 'en', 1, 'https://ror.org/00161f548 Kobe Medical Center 神戸医療センター'),
(22055, 'https://ror.org/0376t7t08', 'sv', 1, 'https://ror.org/0376t7t08 Södertälje Hospital Södertälje Sjukhus'),
(22056, 'https://ror.org/05te51965', 'en', 1, 'https://ror.org/05te51965 Kure Medical Center 国立病院機構呉医療センター'),
(22057, 'https://ror.org/029v2wj86', 'en', 1, 'https://ror.org/029v2wj86 Council of Ministers of Education'),
(22058, 'https://ror.org/035hn9w86', 'en', 1, 'https://ror.org/035hn9w86 Canadian Society for the Study of Higher Education'),
(22059, 'https://ror.org/05pzh4402', 'sv', 1, 'https://ror.org/05pzh4402 Visby lasarett'),
(22060, 'https://ror.org/044q21j42', 'en', 1, 'https://ror.org/044q21j42 Ureshino Medical Center 嬉野医療センター'),
(22061, 'https://ror.org/0422kxg07', 'nl', 1, 'https://ror.org/0422kxg07 Mariaziekenhuis'),
(22062, 'https://ror.org/011w66729', 'en', 1, 'https://ror.org/011w66729 Daniel Langlois Foundation for Art Science and Technology'),
(22063, 'https://ror.org/00b747122', 'de', 1, 'https://ror.org/00b747122 Kantonsspital Baselland'),
(22064, 'https://ror.org/001zdzp98', 'en', 1, 'https://ror.org/001zdzp98 Collège universitaire dominicain Dominican University College'),
(22065, 'https://ror.org/01q8pr365', 'en', 1, 'https://ror.org/01q8pr365 Hirslanden Private Hospital Group Privatklinikgruppe Hirslanden'),
(22066, 'https://ror.org/044wksr86', 'no_lang_code', 1, 'https://ror.org/044wksr86 Okayama Saidaiji Hospital 岡山西大寺病院'),
(22067, 'https://ror.org/04d77zt55', 'en', 1, 'https://ror.org/04d77zt55 Multiprofile Hospital for Active Treatment in Neurology and Psychiatry St. Naum'),
(22068, 'https://ror.org/01safxj67', 'en', 1, 'https://ror.org/01safxj67 Markham Stouffville Hospital'),
(22069, 'https://ror.org/016g07382', 'no_lang_code', 1, 'https://ror.org/016g07382 Saiseikai Takaoka Hospital 済生会高岡病院'),
(22070, 'https://ror.org/02crzj551', 'en', 1, 'https://ror.org/02crzj551 Hôpital Montfort Montfort Hospital'),
(22071, 'https://ror.org/02g5dr532', 'no_lang_code', 1, 'https://ror.org/02g5dr532 Seirei Sakura Citizen Hospital 聖隷佐倉市民病院'),
(22072, 'https://ror.org/05c016d08', 'no_lang_code', 1, 'https://ror.org/05c016d08 ECW Press (Canada)'),
(22073, 'https://ror.org/0535vdn91', 'en', 1, 'https://ror.org/0535vdn91 Soma Central Hospital 茶畑会 相馬中央病院'),
(22074, 'https://ror.org/00my1td19', 'en', 1, 'https://ror.org/00my1td19 En''owkin Centre'),
(22075, 'https://ror.org/05wwm0q58', 'en', 1, 'https://ror.org/05wwm0q58 Chung Shan Hospital 中山醫院'),
(22076, 'https://ror.org/0347vza26', 'en', 1, 'https://ror.org/0347vza26 Association Canadienne d''Etudes Environnementales Environmental Studies Association of Canada'),
(22077, 'https://ror.org/04z95ym83', 'no_lang_code', 1, 'https://ror.org/04z95ym83 Takao Hospital すむのさと高尾病院'),
(22078, 'https://ror.org/02xv0d283', 'en', 1, 'https://ror.org/02xv0d283 Essays on Canadian Writing'),
(22079, 'https://ror.org/01swdcs64', 'en', 1, 'https://ror.org/01swdcs64 Tokyo-Kita Medical Center 東京北医療センター'),
(22080, 'https://ror.org/01a7g4m79', 'no_lang_code', 1, 'https://ror.org/01a7g4m79 Anyang Eye Hospital 安阳市眼科医院'),
(22081, 'https://ror.org/00m8adh64', 'no_lang_code', 1, 'https://ror.org/00m8adh64 Municipal Tsuruga Hospital 市立敦賀病院'),
(22082, 'https://ror.org/0548ncv24', 'fr', 1, 'https://ror.org/0548ncv24 Federation of Canadian Demographers Fédération Canadienne de Démographie'),
(22083, 'https://ror.org/01hs21r74', 'en', 1, 'https://ror.org/01hs21r74 Anyang Tumor Hospital 安阳市肿瘤医院'),
(22084, 'https://ror.org/016ec0748', 'no_lang_code', 1, 'https://ror.org/016ec0748 Naval Hospital Yokosuka Japan 横須賀米海軍病院'),
(22085, 'https://ror.org/050nfgr37', 'en', 1, 'https://ror.org/050nfgr37 Beijing Tsinghua Chang Gung Hospital 北京清华长庚医院'),
(22086, 'https://ror.org/05c0hj959', 'en', 1, 'https://ror.org/05c0hj959 Hospital Tengku Ampuan Rahimah Tengku Ampuan Rahimah Hospital'),
(22087, 'https://ror.org/05aargr36', 'en', 1, 'https://ror.org/05aargr36 Association Canadienne d’études Cinématographiques Film Studies Association of Canada'),
(22088, 'https://ror.org/02sd61b37', 'no_lang_code', 1, 'https://ror.org/02sd61b37 Yangon ENT Hospital ရန်ကုန် နား နှာခေါင်း လည်ချောင်း ဆေးရုံ'),
(22089, 'https://ror.org/02vp0x259', 'en', 1, 'https://ror.org/02vp0x259 Association Canadienne d''Ethnologie et de Folklore Folklore Studies Association of Canada'),
(22090, 'https://ror.org/027cgen28', 'en', 1, 'https://ror.org/027cgen28 Shanghai Guanghua Hospital of Integrated Traditional Chinese and Western Medicine 上海市光华中西医结合医院'),
(22091, 'https://ror.org/04qs2sz84', 'en', 1, 'https://ror.org/04qs2sz84 Central Hospital of Wuhan 武汉市中心医院'),
(22092, 'https://ror.org/006zn6z18', 'en', 1, 'https://ror.org/006zn6z18 Xinxiang Central Hospital 新乡市中心医院'),
(22093, 'https://ror.org/029s29983', 'en', 1, 'https://ror.org/029s29983 Genome Canada'),
(22094, 'https://ror.org/02q28q956', 'en', 1, 'https://ror.org/02q28q956 Chengdu Second People''s Hospital 成都市第二人民医院'),
(22095, 'https://ror.org/030nfm877', 'no_lang_code', 1, 'https://ror.org/030nfm877 Saigata National Hospital 国立病院機構さいがた病院'),
(22096, 'https://ror.org/01nqa4s53', 'no_lang_code', 1, 'https://ror.org/01nqa4s53 Nihonkai General Hospital 日本海総合病院'),
(22097, 'https://ror.org/051p4rr20', 'en', 1, 'https://ror.org/051p4rr20 Ashford and St Peter''s Hospitals NHS Foundation Trust'),
(22098, 'https://ror.org/00d4qgb23', 'en', 1, 'https://ror.org/00d4qgb23 GPI Atlantic'),
(22099, 'https://ror.org/02hx18343', 'en', 1, 'https://ror.org/02hx18343 Pudong New Area People''s Hospital'),
(22100, 'https://ror.org/03444yt49', 'en', 1, 'https://ror.org/03444yt49 Blackpool Teaching Hospitals NHS Foundation Trust'),
(22101, 'https://ror.org/029mrrs96', 'en', 1, 'https://ror.org/029mrrs96 Noah''s Ark Children''s Hospital for Wales Ysbyty Arch Noa Plant Cymru'),
(22102, 'https://ror.org/04nckd528', 'en', 1, 'https://ror.org/04nckd528 Dorset County Hospital NHS Foundation Trust'),
(22103, 'https://ror.org/04g6v3637', 'en', 1, 'https://ror.org/04g6v3637 Great Western Hospitals NHS Foundation Trust'),
(22104, 'https://ror.org/00yb8k233', 'en', 1, 'https://ror.org/00yb8k233 Shanghai Second People''s Hospital 上海市第二人民医院'),
(22105, 'https://ror.org/01ta56j94', 'no_lang_code', 1, 'https://ror.org/01ta56j94 Dalian Dermatosis Hospital 大连市皮肤病医院'),
(22106, 'https://ror.org/022s5gm85', 'en', 1, 'https://ror.org/022s5gm85 Dongguan People’s Hospital 东莞市人民医院'),
(22107, 'https://ror.org/004pedq54', 'de', 1, 'https://ror.org/004pedq54 Katholisches Kinderkrankenhaus Wilhelmstift'),
(22108, 'https://ror.org/02rbkz523', 'en', 1, 'https://ror.org/02rbkz523 Yancheng First People''s Hospital 盐城市第一人民医院'),
(22109, 'https://ror.org/03r1qk590', 'en', 1, 'https://ror.org/03r1qk590 Milton Keynes Hospital NHS Foundation Trust'),
(22110, 'https://ror.org/039g8ab81', 'en', 1, 'https://ror.org/039g8ab81 Fourth People''s Hospital of Shenzhen 深圳市第四人民医院'),
(22111, 'https://ror.org/011m1x742', 'en', 1, 'https://ror.org/011m1x742 First People''s Hospital of Chongqing 重庆市第一人民医院'),
(22112, 'https://ror.org/00xteb469', 'en', 1, 'https://ror.org/00xteb469 Shanghai Huangpu District Central Hospital 黄浦区中心医院'),
(22113, 'https://ror.org/016ntyy59', 'no_lang_code', 1, 'https://ror.org/016ntyy59 Noble’s Hospital'),
(22114, 'https://ror.org/038thw008', 'en', 1, 'https://ror.org/038thw008 Fujian Provincial People''s Hospital 福建省人民医院'),
(22115, 'https://ror.org/01ep18d71', 'en', 1, 'https://ror.org/01ep18d71 Northern Lincolnshire and Goole Hospitals NHS Foundation Trust'),
(22116, 'https://ror.org/02js17r36', 'en', 1, 'https://ror.org/02js17r36 South Tees Hospitals NHS Foundation Trust'),
(22117, 'https://ror.org/03xmq9934', 'en', 1, 'https://ror.org/03xmq9934 Han Dan City Eye Hospital - The Third Hospital of Handan 邯郸市眼科医院(邯郸市第三医院)'),
(22118, 'https://ror.org/03k95y741', 'en', 1, 'https://ror.org/03k95y741 South Warwickshire NHS Foundation Trust'),
(22119, 'https://ror.org/02zq48n91', 'en', 1, 'https://ror.org/02zq48n91 Hanzhong People''s Hospital 汉中市人民医院'),
(22120, 'https://ror.org/05hawxe81', 'en', 1, 'https://ror.org/05hawxe81 YangPu Geriatric Hospital 上海市杨浦老年医院'),
(22121, 'https://ror.org/04v0as660', 'en', 1, 'https://ror.org/04v0as660 Hillingdon Hospitals NHS Foundation Trust'),
(22122, 'https://ror.org/048s0v676', 'en', 1, 'https://ror.org/048s0v676 Abu Dhabi Falcon Hospital مستشفى أبو ظبي للصقور'),
(22123, 'https://ror.org/030pd1x82', 'de', 1, 'https://ror.org/030pd1x82 Kreiskliniken Reutlingen'),
(22124, 'https://ror.org/042bpn241', 'en', 1, 'https://ror.org/042bpn241 Bayside Hospital for Animals'),
(22125, 'https://ror.org/01nv7k942', 'en', 1, 'https://ror.org/01nv7k942 Hebei General Hospital 河北省人民医院'),
(22126, 'https://ror.org/05msnze33', 'de', 1, 'https://ror.org/05msnze33 Agaplesion Diakonieklinikum Rotenburg'),
(22127, 'https://ror.org/05ncqj764', 'en', 1, 'https://ror.org/05ncqj764 Huangshi Central Hospital 黄石市中心医院'),
(22128, 'https://ror.org/042ry7b85', 'en', 1, 'https://ror.org/042ry7b85 Shanxi Provincial Children''s Hospital 山西省妇幼保健院'),
(22129, 'https://ror.org/037hxym60', 'de', 1, 'https://ror.org/037hxym60 Evangelisches Krankenhaus Bethesda Mönchengladbach'),
(22130, 'https://ror.org/01hcefx46', 'en', 1, 'https://ror.org/01hcefx46 ShenZhen People’s Hospital 深圳市人民医院'),
(22131, 'https://ror.org/010s9qs41', 'en', 1, 'https://ror.org/010s9qs41 Shijiazhuang Great Wall Hospital 石家庄长城医院'),
(22132, 'https://ror.org/03323pz98', 'en', 1, 'https://ror.org/03323pz98 Hubei Provincial Women and Children''s Hospital 湖北省妇幼保健院'),
(22133, 'https://ror.org/03e207173', 'en', 1, 'https://ror.org/03e207173 Hunan Children''s Hospital 湖南省儿童医院'),
(22134, 'https://ror.org/00hmfe493', 'en', 1, 'https://ror.org/00hmfe493 Doctors Hospital of Laredo'),
(22135, 'https://ror.org/00q3p9p08', 'en', 1, 'https://ror.org/00q3p9p08 Suizhou Central Hospital 随州市中心医院'),
(22136, 'https://ror.org/02cdyrc89', 'en', 1, 'https://ror.org/02cdyrc89 Suzhou Municipal Hospital 苏州市立医院'),
(22137, 'https://ror.org/05km9hp38', 'en', 1, 'https://ror.org/05km9hp38 Jefferson Hospital for Neuroscience'),
(22138, 'https://ror.org/02yng3249', 'en', 1, 'https://ror.org/02yng3249 Inner Mongolia People''s Hospital 内蒙古自治区人民医院'),
(22139, 'https://ror.org/00vgek070', 'en', 1, 'https://ror.org/00vgek070 Jilin Province Tumor Hospital 吉林省肿瘤医院'),
(22140, 'https://ror.org/04btmx930', 'en', 1, 'https://ror.org/04btmx930 Kaiser Permanente San Leandro Medical Center'),
(22141, 'https://ror.org/043yfh051', 'de', 1, 'https://ror.org/043yfh051 Prof. Hess Kinderklinik'),
(22142, 'https://ror.org/0264gtk20', 'en', 1, 'https://ror.org/0264gtk20 Marion General Hospital'),
(22143, 'https://ror.org/05d944x37', 'en', 1, 'https://ror.org/05d944x37 Jimo District Qingdao Hospital of Traditional Chinese Medicine 青岛市即墨区中医医院'),
(22144, 'https://ror.org/00e96sn98', 'en', 1, 'https://ror.org/00e96sn98 Peyton Manning Children’s Hospital at St.Vincent'),
(22145, 'https://ror.org/00sr40296', 'no_lang_code', 1, 'https://ror.org/00sr40296 Tangshan Gongren Hospital'),
(22146, 'https://ror.org/04ct9as78', 'en', 1, 'https://ror.org/04ct9as78 Jinzhou Kangning Hospital 锦州市康宁医院'),
(22147, 'https://ror.org/04fefzq80', 'en', 1, 'https://ror.org/04fefzq80 Javon Bea Hospital-Rockton'),
(22148, 'https://ror.org/01k0q5v34', 'en', 1, 'https://ror.org/01k0q5v34 PLA 306 Hospital 解放军306医院'),
(22149, 'https://ror.org/02x1vjb06', 'en', 1, 'https://ror.org/02x1vjb06 Nakagawanosato Hospital for the Disabled'),
(22150, 'https://ror.org/05vh9vp33', 'en', 1, 'https://ror.org/05vh9vp33 Zucker Hillside Hospital'),
(22151, 'https://ror.org/05yj9kv10', 'de', 1, 'https://ror.org/05yj9kv10 Salus-Fachklinikum Uchtspringe Klinik für Allgemeine Psychiatrie und Psychotherapie'),
(22152, 'https://ror.org/00vvmxh39', 'en', 1, 'https://ror.org/00vvmxh39 Bugshan Hospital مستشفى بقشان'),
(22153, 'https://ror.org/00t93jj79', 'en', 1, 'https://ror.org/00t93jj79 Wuhu Fourth People Hospital 芜湖市第四人民医院'),
(22154, 'https://ror.org/058n7kw16', 'en', 1, 'https://ror.org/058n7kw16 Netcare Jakaranda Hospital'),
(22155, 'https://ror.org/01ypqqm93', 'en', 1, 'https://ror.org/01ypqqm93 Port Elizabeth Provincial Hospital'),
(22156, 'https://ror.org/019jjbt65', 'en', 1, 'https://ror.org/019jjbt65 St. Josefs Hospital'),
(22157, 'https://ror.org/01v9zh240', 'en', 1, 'https://ror.org/01v9zh240 Bệnh viện Nhi đồng 2 Children''s Hospital 2'),
(22158, 'https://ror.org/04f5epv26', 'en', 1, 'https://ror.org/04f5epv26 Weskoppies Psychiatric Hospital'),
(22159, 'https://ror.org/04y735546', 'en', 1, 'https://ror.org/04y735546 Bệnh Viện Đa Khoa Đồng Tháp Dong Thap Hospital'),
(22160, 'https://ror.org/02k4qm934', 'ca', 1, 'https://ror.org/02k4qm934 Hospital General de Catalunya'),
(22161, 'https://ror.org/04tccz814', 'no_lang_code', 1, 'https://ror.org/04tccz814 Hua chiew hospital โรงพยาบาลหัวเฉียว'),
(22162, 'https://ror.org/02ar3bt91', 'en', 1, 'https://ror.org/02ar3bt91 Bệnh Viện Da Liễu Thành Phố Hồ Chí Minh HCMC Hospital of Dermato Venereology'),
(22163, 'https://ror.org/00wydr975', 'en', 1, 'https://ror.org/00wydr975 Northwest Women''s and Children''s Hospital 西北妇女儿童医院'),
(22164, 'https://ror.org/019nf3y14', 'en', 1, 'https://ror.org/019nf3y14 General Hospital of Jinan Military Command'),
(22165, 'https://ror.org/00rd5z074', 'en', 1, 'https://ror.org/00rd5z074 Fifth Hospital of Shijiazhuang'),
(22166, 'https://ror.org/01b8x5j53', 'en', 1, 'https://ror.org/01b8x5j53 Bệnh viện Trung Ương Huế Hue Central Hospital'),
(22167, 'https://ror.org/00xdrzy17', 'en', 1, 'https://ror.org/00xdrzy17 National Institute of Hospital Administration 卫生部医院管理研究所'),
(22168, 'https://ror.org/04qrwnv94', 'en', 1, 'https://ror.org/04qrwnv94 Bệnh viện Hùng Vương Hung Vuong Hospital'),
(22169, 'https://ror.org/04p0fsa07', 'en', 1, 'https://ror.org/04p0fsa07 Bệnh viện đa khoa tỉnh Khánh Hòa Khanh Hoa General Hospital'),
(22170, 'https://ror.org/025gwsg11', 'en', 1, 'https://ror.org/025gwsg11 Shangqiu First People''s Hospital 商丘市第一人民医院'),
(22171, 'https://ror.org/05yevm258', 'en', 1, 'https://ror.org/05yevm258 Bệnh viện Phạm Ngọc Thạch Pham Ngoc Thach Hospital'),
(22172, 'https://ror.org/018w5ms25', 'en', 1, 'https://ror.org/018w5ms25 Second Hospital of Liaohe Oilfield'),
(22173, 'https://ror.org/00gmbx398', 'en', 1, 'https://ror.org/00gmbx398 Urumqi 4th People''s Hospital 乌鲁木齐市第四人民医院'),
(22174, 'https://ror.org/01j5awv26', 'en', 1, 'https://ror.org/01j5awv26 Prince Mohammed bin Abdulaziz Hospital'),
(22175, 'https://ror.org/056sq4g25', 'en', 1, 'https://ror.org/056sq4g25 Bệnh viện Đa khoa Trung tâm Tiền Giang Tien Giang General Hospital'),
(22176, 'https://ror.org/03784bx86', 'en', 1, 'https://ror.org/03784bx86 Zhuhai Hospital of Integrated Traditional Chinese and Western Medicine 珠海市第二人民医院'),
(22177, 'https://ror.org/01p51xv55', 'en', 1, 'https://ror.org/01p51xv55 St. Marien Hospital'),
(22178, 'https://ror.org/00p1jee13', 'en', 1, 'https://ror.org/00p1jee13 Fuyang City People''s Hospital 濮阳市人民医院'),
(22179, 'https://ror.org/0264qnp36', 'en', 1, 'https://ror.org/0264qnp36 Second Artillery General Hospital of Chinese People''s Liberation Army 中国人民解放军第二炮兵总医院'),
(22180, 'https://ror.org/038p55355', 'de', 1, 'https://ror.org/038p55355 Altonaer Kinderkrankenhaus'),
(22181, 'https://ror.org/0555qme52', 'en', 1, 'https://ror.org/0555qme52 Third People''s Hospital of Yunnan Province 云南省第三人民医院'),
(22182, 'https://ror.org/04a0xmf69', 'en', 1, 'https://ror.org/04a0xmf69 General Hospital of Nafplio Γενικό Νοσοκομείο Αργολίδας'),
(22183, 'https://ror.org/04v5gcw55', 'en', 1, 'https://ror.org/04v5gcw55 Shanghai Pudong New Area Gongli Hospital 上海市浦东新区公利医院'),
(22184, 'https://ror.org/02xse0b92', 'en', 1, 'https://ror.org/02xse0b92 NIU Observatory'),
(22185, 'https://ror.org/011n2s048', 'en', 1, 'https://ror.org/011n2s048 Tianjin Anding Hospital 天津市安定医院'),
(22186, 'https://ror.org/009czp143', 'en', 1, 'https://ror.org/009czp143 Shaanxi Provincial People''s Hospital 陕西省人民医院'),
(22187, 'https://ror.org/04jdjn903', 'en', 1, 'https://ror.org/04jdjn903 Jingning County People''s Hospital 景宁畲族自治县人民医院'),
(22188, 'https://ror.org/03raf0607', 'en', 1, 'https://ror.org/03raf0607 Linzhou Cancer Hospital 林州市肿瘤医院'),
(22189, 'https://ror.org/03b135v89', 'en', 1, 'https://ror.org/03b135v89 Moscow Regional Psychiatry Hospital No.5 Психиатрическая больница №5'),
(22190, 'https://ror.org/0010mjy66', 'en', 1, 'https://ror.org/0010mjy66 Byurakan Astrophysical Observatory'),
(22191, 'https://ror.org/0399zkh42', 'en', 1, 'https://ror.org/0399zkh42 Wuxi No.2 People''s Hospital 无锡市第二人民医院'),
(22192, 'https://ror.org/042g3qa69', 'en', 1, 'https://ror.org/042g3qa69 Xian Yang Central Hospital 咸阳市中心医院'),
(22193, 'https://ror.org/02cgt3c05', 'en', 1, 'https://ror.org/02cgt3c05 Guangxi Zhuang Autonomous Region Brain Hospital 广西壮族自治区脑科医院'),
(22194, 'https://ror.org/00nmyjn66', 'no_lang_code', 1, 'https://ror.org/00nmyjn66 iTelescope.Net'),
(22195, 'https://ror.org/033hgw744', 'en', 1, 'https://ror.org/033hgw744 Hebei Eye Hospital 河北省眼科医院'),
(22196, 'https://ror.org/04yhr9792', 'ca', 1, 'https://ror.org/04yhr9792 Fundació Observatori Esteve Duran'),
(22197, 'https://ror.org/03mg4mw05', 'es', 1, 'https://ror.org/03mg4mw05 Grupo de Observadores Astronómicos de Tenerife'),
(22198, 'https://ror.org/02k20ry04', 'en', 1, 'https://ror.org/02k20ry04 Guadarrama Observatory'),
(22199, 'https://ror.org/00amxdy06', 'en', 1, 'https://ror.org/00amxdy06 La Cañada Observatory Observatorio de La Cañada'),
(22200, 'https://ror.org/05yprsb81', 'en', 1, 'https://ror.org/05yprsb81 The Chagrin Valley Astronomical Society'),
(22201, 'https://ror.org/0028r9r35', 'en', 1, 'https://ror.org/0028r9r35 Akureyri Hospital Sjúkrahúsið á Akureyri'),
(22202, 'https://ror.org/01kmcym32', 'en', 1, 'https://ror.org/01kmcym32 Ellinbank Observatory'),
(22203, 'https://ror.org/027e1wk64', 'en', 1, 'https://ror.org/027e1wk64 Hunters Hill Observatory'),
(22204, 'https://ror.org/01ned1220', 'en', 1, 'https://ror.org/01ned1220 Ispat General Hospital इसपट जनरल अस्पताल'),
(22205, 'https://ror.org/030w7x329', 'es', 1, 'https://ror.org/030w7x329 Observatorio astronómico municipal de Murcia "La Murta"'),
(22206, 'https://ror.org/03tgm5090', 'en', 1, 'https://ror.org/03tgm5090 Observatorio Astronómico Nacional de España Spanish National Observatory'),
(22207, 'https://ror.org/03hqvqf51', 'no_lang_code', 1, 'https://ror.org/03hqvqf51 Xinyang Central Hospital 信阳市中心医院'),
(22208, 'https://ror.org/02y2zxx30', 'en', 1, 'https://ror.org/02y2zxx30 Lizard Hollow Observatory'),
(22209, 'https://ror.org/04dga5e65', 'en', 1, 'https://ror.org/04dga5e65 Lifeline Hospital ലൈഫ് ലൈൻ ഹോസ്പിറ്റൽ'),
(22210, 'https://ror.org/05vawe413', 'no_lang_code', 1, 'https://ror.org/05vawe413 Yuhuangding Hospital 烟台毓璜顶医院'),
(22211, 'https://ror.org/006a4jj40', 'en', 1, 'https://ror.org/006a4jj40 Mount Stromlo Observatory'),
(22212, 'https://ror.org/0117rgr12', 'en', 1, 'https://ror.org/0117rgr12 Perth Exoplanet Survey Telescope Observatory'),
(22213, 'https://ror.org/039401462', 'en', 1, 'https://ror.org/039401462 Yuxian People''s Hospital 盂县人民医院'),
(22214, 'https://ror.org/053sksp51', 'en', 1, 'https://ror.org/053sksp51 Perth Observatory'),
(22215, 'https://ror.org/03xvqcz58', 'en', 1, 'https://ror.org/03xvqcz58 Mount Wilson Observatory Observatoire du mont wilson Observatorio Monte Wilson'),
(22216, 'https://ror.org/01nvdh647', 'en', 1, 'https://ror.org/01nvdh647 Zaozhuang Municipal Hospital 枣庄市立医院'),
(22217, 'https://ror.org/04skaq459', 'es', 1, 'https://ror.org/04skaq459 Hospital Nacional de Niños'),
(22218, 'https://ror.org/00bk35j03', 'en', 1, 'https://ror.org/00bk35j03 NF Observatory'),
(22219, 'https://ror.org/04mma9b71', 'en', 1, 'https://ror.org/04mma9b71 Shri Siddhivinayak Ganapati Cancer Hospital श्री सिद्धिविनायक गणपती कॅन्सर हॉस्पिटल'),
(22220, 'https://ror.org/04jj8zx97', 'no_lang_code', 1, 'https://ror.org/04jj8zx97 Shahid Motahari Hospital بیمارستان شهید مطهری'),
(22221, 'https://ror.org/03x43nn58', 'de', 1, 'https://ror.org/03x43nn58 Bagnoud Observatory Observatoire François-Xavier Bagnoud'),
(22222, 'https://ror.org/03ee58b76', 'en', 1, 'https://ror.org/03ee58b76 Kellokosken Sairaala Kellokoski Hospital'),
(22223, 'https://ror.org/05wgye104', 'no_lang_code', 1, 'https://ror.org/05wgye104 143-Gnosca Osservatorio Astronomico di Gnosca'),
(22224, 'https://ror.org/035r9vd46', 'en', 1, 'https://ror.org/035r9vd46 Ospidéal Naomh Fionnbarra St. Finbarr''s Hospital'),
(22225, 'https://ror.org/02a46sb39', 'en', 1, 'https://ror.org/02a46sb39 Tetoora Road Observatory'),
(22226, 'https://ror.org/02gad0c63', 'en', 1, 'https://ror.org/02gad0c63 Polaris Observatory Association'),
(22227, 'https://ror.org/00hz94r37', 'en', 1, 'https://ror.org/00hz94r37 Rolling Hills Observatory'),
(22228, 'https://ror.org/017j8hh08', 'de', 1, 'https://ror.org/017j8hh08 Schweizerisches Forschungsinstitut für Hochgebirgsklima und Medizin'),
(22229, 'https://ror.org/00xfgvj95', 'en', 1, 'https://ror.org/00xfgvj95 TÜBİTAK National Observatory TÜBİTAK Ulusal Gözlemevi'),
(22230, 'https://ror.org/052hkvj39', 'en', 1, 'https://ror.org/052hkvj39 Spot Observatory'),
(22231, 'https://ror.org/008xh4d89', 'en', 1, 'https://ror.org/008xh4d89 Brixiis Astronomical Observatory'),
(22232, 'https://ror.org/05bpqke85', 'en', 1, 'https://ror.org/05bpqke85 Coddenham Astronomical Observatory'),
(22233, 'https://ror.org/010xbqa75', 'de', 1, 'https://ror.org/010xbqa75 Krankenhaus Bruneck'),
(22234, 'https://ror.org/01mdg2p21', 'en', 1, 'https://ror.org/01mdg2p21 Oregon Observatory'),
(22235, 'https://ror.org/03w0prb16', 'es', 1, 'https://ror.org/03w0prb16 Observatorio San Calixto'),
(22236, 'https://ror.org/03d47z838', 'en', 1, 'https://ror.org/03d47z838 National Observatory Observatório Nacional'),
(22237, 'https://ror.org/048s2rn92', 'en', 1, 'https://ror.org/048s2rn92 United States Naval Observatory'),
(22238, 'https://ror.org/016kj2436', 'en', 1, 'https://ror.org/016kj2436 Royal Observatory'),
(22239, 'https://ror.org/026tvqe20', 'no_lang_code', 1, 'https://ror.org/026tvqe20 Astronomical Observatory Nicolaus Copernicus астрономическа обсерватория и планетариум „Николай Коперник“'),
(22240, 'https://ror.org/04zzpgm55', 'en', 1, 'https://ror.org/04zzpgm55 Abbey Ridge Observatory'),
(22241, 'https://ror.org/006yr9253', 'es', 1, 'https://ror.org/006yr9253 Campo Catino Astronomical Observatory Osservatorio Astronomico di Campo Catino'),
(22242, 'https://ror.org/03g33jp38', 'en', 1, 'https://ror.org/03g33jp38 Los Algarrobos Observatory Observatorio Los Algarrobos'),
(22243, 'https://ror.org/00ajddz62', 'en', 1, 'https://ror.org/00ajddz62 Amateur Telescope Makers of Boston'),
(22244, 'https://ror.org/03rmnkv16', 'en', 1, 'https://ror.org/03rmnkv16 Antelope Hills Observatory'),
(22245, 'https://ror.org/02r084d93', 'fr', 1, 'https://ror.org/02r084d93 Centre Hospitalier Andrée Rosemon'),
(22246, 'https://ror.org/01663mv64', 'fr', 1, 'https://ror.org/01663mv64 Centre hospitalier Bretagne Atlantique'),
(22247, 'https://ror.org/04ahb7r80', 'no_lang_code', 1, 'https://ror.org/04ahb7r80 Chienkuo Technology University 建國科技大學'),
(22248, 'https://ror.org/0377t1328', 'en', 1, 'https://ror.org/0377t1328 European Southern Observatory'),
(22249, 'https://ror.org/04nk1k821', 'en', 1, 'https://ror.org/04nk1k821 Kao Yuan University 高苑科技大學'),
(22250, 'https://ror.org/03fv6f056', 'fr', 1, 'https://ror.org/03fv6f056 Centre Hospitalier d''Arras'),
(22251, 'https://ror.org/02zqg7m89', 'fr', 1, 'https://ror.org/02zqg7m89 Centre Hospitalier de Béthune'),
(22252, 'https://ror.org/054etzm63', 'en', 1, 'https://ror.org/054etzm63 Minghsin University of Science and Technology 明新科技大學'),
(22253, 'https://ror.org/02vm0aw48', 'fr', 1, 'https://ror.org/02vm0aw48 Centre Hospitalier de Troyes'),
(22254, 'https://ror.org/02qykes20', 'fr', 1, 'https://ror.org/02qykes20 Centre Hospitalier de Valence'),
(22255, 'https://ror.org/05gcakm88', 'en', 1, 'https://ror.org/05gcakm88 Association of Lunar and Planetary Observers'),
(22256, 'https://ror.org/01sqy6j62', 'fr', 1, 'https://ror.org/01sqy6j62 Centre Hospitalier Intercommunal André Grégoire Montreuil'),
(22257, 'https://ror.org/01wpjrj73', 'fr', 1, 'https://ror.org/01wpjrj73 Centre Hospitalier de Niort'),
(22258, 'https://ror.org/05c815e48', 'fr', 1, 'https://ror.org/05c815e48 Centre Hospitalier Intercommunal de Fréjus Saint-Raphaël'),
(22259, 'https://ror.org/05jm9mh74', 'fr', 1, 'https://ror.org/05jm9mh74 Centre Hospitalier René-Dubos'),
(22260, 'https://ror.org/05tk74w54', 'fr', 1, 'https://ror.org/05tk74w54 Fédération Hospitalière de France'),
(22261, 'https://ror.org/02jn32p79', 'it', 1, 'https://ror.org/02jn32p79 Ospedale Madonna Delle Grazie'),
(22262, 'https://ror.org/00b06cz11', 'de', 1, 'https://ror.org/00b06cz11 Kinderkrankenhaus auf der Bult'),
(22263, 'https://ror.org/03mj51g65', 'it', 1, 'https://ror.org/03mj51g65 Ospedaliero Santa Barbara'),
(22264, 'https://ror.org/04gfxe325', 'en', 1, 'https://ror.org/04gfxe325 Black Swamp Bird Observatory'),
(22265, 'https://ror.org/03fxxpd92', 'en', 1, 'https://ror.org/03fxxpd92 National Penghu University of Science and Technology 國立澎湖科技大學'),
(22266, 'https://ror.org/01e6j9276', 'en', 1, 'https://ror.org/01e6j9276 Caltech Submillimeter Observatory'),
(22267, 'https://ror.org/05w4mbn40', 'en', 1, 'https://ror.org/05w4mbn40 Aichi Developmental Disability Center 愛知県医療療育総合センター'),
(22268, 'https://ror.org/02r6k7132', 'no_lang_code', 1, 'https://ror.org/02r6k7132 Chiang Mai Rajabhat University มหาวิทยาลัยราชภัฏเชียงใหม่'),
(22269, 'https://ror.org/05xq4gr47', 'en', 1, 'https://ror.org/05xq4gr47 Canada–France–Hawaii Telescope'),
(22270, 'https://ror.org/0116akb37', 'en', 1, 'https://ror.org/0116akb37 Chiba Kaihin Municipal Hospital 千葉市立海浜病院'),
(22271, 'https://ror.org/00259c050', 'no_lang_code', 1, 'https://ror.org/00259c050 Chibaken Saiseikai Narashino Hospital 千葉県済生会習志野病院'),
(22272, 'https://ror.org/015cbgp91', 'en', 1, 'https://ror.org/015cbgp91 Chibune General Hospital 千船病院'),
(22273, 'https://ror.org/01bcjx771', 'en', 1, 'https://ror.org/01bcjx771 Southern Astrophysical Research Telescope'),
(22274, 'https://ror.org/031dgzs07', 'no_lang_code', 1, 'https://ror.org/031dgzs07 Dogo Onsen Hospital 道後温泉病院'),
(22275, 'https://ror.org/0446qvy77', 'en', 1, 'https://ror.org/0446qvy77 Fuji Heavy Industries Health Insurance Society Ota Memorial Hospital 総合太田病院'),
(22276, 'https://ror.org/0180ay989', 'no_lang_code', 1, 'https://ror.org/0180ay989 Fukushimura Hospital 伊勢崎福島病院'),
(22277, 'https://ror.org/049wrh220', 'no_lang_code', 1, 'https://ror.org/049wrh220 Hashimoto Municipal Hospital 橋本市民病院'),
(22278, 'https://ror.org/01cxg6q60', 'no_lang_code', 1, 'https://ror.org/01cxg6q60 Hidaka Hospital ひだか病院'),
(22279, 'https://ror.org/019vdbe39', 'en', 1, 'https://ror.org/019vdbe39 Ishigaki Local Meteorological Observatory'),
(22280, 'https://ror.org/00zdyy359', 'en', 1, 'https://ror.org/00zdyy359 Abdullah Gül University Abdullah Gül Üniversitesi'),
(22281, 'https://ror.org/01rfam919', 'en', 1, 'https://ror.org/01rfam919 Inner Mongolia Autonomous Region Meteorological Bureau 内蒙古自治区气象科学研究所'),
(22282, 'https://ror.org/01k80zh77', 'en', 1, 'https://ror.org/01k80zh77 Xingming Observatory'),
(22283, 'https://ror.org/03g407536', 'en', 1, 'https://ror.org/03g407536 University of Toliara Université de Toliara'),
(22284, 'https://ror.org/044sckz61', 'no_lang_code', 1, 'https://ror.org/044sckz61 Matsushiro Seismological Observatory 気象庁松代地震観測所'),
(22285, 'https://ror.org/038n50j48', 'en', 1, 'https://ror.org/038n50j48 Altan Observatory'),
(22286, 'https://ror.org/03s9hs139', 'en', 1, 'https://ror.org/03s9hs139 International Islamic University Malaysia Universiti Islam Antarabangsa Malaysia ഇൻറർനാഷനൽ ഇസ്ലാമിക് യൂനിവേഴ്സിറ്റി മലേഷ്യ'),
(22287, 'https://ror.org/05h22s698', 'fi', 1, 'https://ror.org/05h22s698 Hankasalmen observatorio Hankasalmi Observatory'),
(22288, 'https://ror.org/03wcr7550', 'en', 1, 'https://ror.org/03wcr7550 Sendai Astronomical Observatory'),
(22289, 'https://ror.org/00sdawg68', 'en', 1, 'https://ror.org/00sdawg68 Stardome Observatory'),
(22290, 'https://ror.org/03szqsq92', 'en', 1, 'https://ror.org/03szqsq92 Carter Observatory'),
(22291, 'https://ror.org/02a97td45', 'fr', 1, 'https://ror.org/02a97td45 Observatoire de Dauban'),
(22292, 'https://ror.org/00gb7zg29', 'en', 1, 'https://ror.org/00gb7zg29 Farm Cove Observatory'),
(22293, 'https://ror.org/03339q147', 'en', 1, 'https://ror.org/03339q147 HÄRKÄMÄEN OBSERVATORIO Taurus Hill Observatory'),
(22294, 'https://ror.org/01827cp44', 'en', 1, 'https://ror.org/01827cp44 Geyserland Observatory'),
(22295, 'https://ror.org/00b8g9t96', 'en', 1, 'https://ror.org/00b8g9t96 Kumeu Observatory'),
(22296, 'https://ror.org/05x6q7t13', 'no_lang_code', 1, 'https://ror.org/05x6q7t13 Alberoni University دانشگاه البیرونی'),
(22297, 'https://ror.org/042xfk211', 'es', 1, 'https://ror.org/042xfk211 Universidad Politécnica de Baja California'),
(22298, 'https://ror.org/02cqr9y77', 'en', 1, 'https://ror.org/02cqr9y77 Possum Observatory'),
(22299, 'https://ror.org/059zvbg42', 'en', 1, 'https://ror.org/059zvbg42 Balkh University پوهنتون بلخ'),
(22300, 'https://ror.org/0157yqb81', 'en', 1, 'https://ror.org/0157yqb81 Kandahar University دانشگاه قندهار'),
(22301, 'https://ror.org/02shmve39', 'en', 1, 'https://ror.org/02shmve39 Mongolian University of Science and Technology Шинжлэх Ухаан Технологийн Их Сургууль'),
(22302, 'https://ror.org/03r7b1f79', 'en', 1, 'https://ror.org/03r7b1f79 Turgut Özal University Turgut Özal Üniversitesi'),
(22303, 'https://ror.org/016jrh007', 'en', 1, 'https://ror.org/016jrh007 Khost University دانشگاه خوست'),
(22304, 'https://ror.org/05n47cs30', 'en', 1, 'https://ror.org/05n47cs30 Nangarhar University دانشگاه ننگرهار'),
(22305, 'https://ror.org/0451w9n55', 'en', 1, 'https://ror.org/0451w9n55 Polytechnical University of Kabul دکابل پولی تخنیک پوهنتون'),
(22306, 'https://ror.org/032e59714', 'en', 1, 'https://ror.org/032e59714 Olsztyn Planetarium and Astronomical Observatory Olsztyńskiego Planetarium i Obserwatorium Astronomicznego'),
(22307, 'https://ror.org/03kkfk814', 'en', 1, 'https://ror.org/03kkfk814 University of Jijel جامعة جيجل'),
(22308, 'https://ror.org/01tkmq646', 'es', 1, 'https://ror.org/01tkmq646 Universidad Maimónides'),
(22309, 'https://ror.org/05baf4s06', 'en', 1, 'https://ror.org/05baf4s06 Ussuriysk Astrophysical Observatory Уссурийская астрофизическая обсерватория ДВО РАН'),
(22310, 'https://ror.org/03cyqfb07', 'sk', 1, 'https://ror.org/03cyqfb07 Tekovská Hvezdáreň Tekovská hvezdáreň v Leviciach'),
(22311, 'https://ror.org/04t730v47', 'en', 1, 'https://ror.org/04t730v47 National Technological University Universidad Tecnológica Nacional'),
(22312, 'https://ror.org/00vfhjf66', 'no_lang_code', 1, 'https://ror.org/00vfhjf66 Vihorlat Observatory Vihorlatská hvezdáreň'),
(22313, 'https://ror.org/05hhc1155', 'en', 1, 'https://ror.org/05hhc1155 Bronberg Observatory'),
(22314, 'https://ror.org/030xx9n34', 'en', 1, 'https://ror.org/030xx9n34 Mandalay University မန္တလေးတက္ကသိုလ်'),
(22315, 'https://ror.org/03cgbtn12', 'en', 1, 'https://ror.org/03cgbtn12 Pyay Technological University ပြည်နည်းပညာတက္ကသိုလ်'),
(22316, 'https://ror.org/03qxvyy35', 'en', 1, 'https://ror.org/03qxvyy35 Dhaka University of Engineering & Technology ঢাকা প্রকৌশল ও প্রযুক্তি বিশ্ববিদ্যালয়'),
(22317, 'https://ror.org/03b7kxh09', 'en', 1, 'https://ror.org/03b7kxh09 Balearic Islands Coastal Observing and Forecasting System'),
(22318, 'https://ror.org/05fa42p74', 'en', 1, 'https://ror.org/05fa42p74 Southend University Hospital NHS Foundation Trust'),
(22319, 'https://ror.org/02zp2wx66', 'en', 1, 'https://ror.org/02zp2wx66 Schnörringen Telescope Science Institute'),
(22320, 'https://ror.org/031ph8d53', 'en', 1, 'https://ror.org/031ph8d53 Hochschule Worms University of Applied Sciences Worms'),
(22321, 'https://ror.org/04ymc1w90', 'en', 1, 'https://ror.org/04ymc1w90 Admiral Makarov National University of Shipbuilding Национальный университет кораблестроения имени адмирала Макарова Національний університет кораблебудування імені адмірала Макарова'),
(22322, 'https://ror.org/039jmcx36', 'no_lang_code', 1, 'https://ror.org/039jmcx36 Csillagászati és Földtudományi Kutatóközpont Konkoly Thege Miklós Csillagászati Intézet Konkoly Observatory'),
(22323, 'https://ror.org/03b9y4e65', 'en', 1, 'https://ror.org/03b9y4e65 Abdul Wali Khan University Mardan'),
(22324, 'https://ror.org/009apaj69', 'en', 1, 'https://ror.org/009apaj69 Cherkasy National University Черкаський національний університет імені Богдана Хмельницького'),
(22325, 'https://ror.org/01vf56d70', 'en', 1, 'https://ror.org/01vf56d70 Balochistan University of Information Technology, Engineering and Management Sciences'),
(22326, 'https://ror.org/02t4nyn12', 'en', 1, 'https://ror.org/02t4nyn12 Aryabhatta Research Institute of Observational Sciences'),
(22327, 'https://ror.org/05pv4jg27', 'en', 1, 'https://ror.org/05pv4jg27 Udaipur Solar Observatory'),
(22328, 'https://ror.org/018y22094', 'en', 1, 'https://ror.org/018y22094 Hazara University جامعہ ہزارہ'),
(22329, 'https://ror.org/007h7f935', 'en', 1, 'https://ror.org/007h7f935 State University of Haiti University of Haiti Université d''État d''haïti'),
(22330, 'https://ror.org/0202f7m63', 'it', 1, 'https://ror.org/0202f7m63 Osservatorio Astronomico Armenzano'),
(22331, 'https://ror.org/02anx2442', 'en', 1, 'https://ror.org/02anx2442 Simon Kuznets Kharkiv National University of Economics Харківський національний економічний університет Харьковский национальный экономический университет'),
(22332, 'https://ror.org/01w17ks16', 'en', 1, 'https://ror.org/01w17ks16 Gabriel René Moreno Autonomous University Universidad Autónoma Gabriel René Moreno'),
(22333, 'https://ror.org/01hnk0667', 'en', 1, 'https://ror.org/01hnk0667 Zrínyi Miklós National Defence University'),
(22334, 'https://ror.org/00j0prg66', 'en', 1, 'https://ror.org/00j0prg66 Tomás Frías Autonomous University Universidad Autónoma Tomás Frías'),
(22335, 'https://ror.org/05db8zr24', 'en', 1, 'https://ror.org/05db8zr24 NED University of Engineering and Technology انجنيئرڱ ۽ ٽيڪنالاجي جي جامعہ اين اي ڊي جامعہ این ای ڈی برائے انجنئرنگ اور ٹیکنالوجی'),
(22336, 'https://ror.org/01vn2rt83', 'pt', 1, 'https://ror.org/01vn2rt83 Centro Universitário de Volta Redonda'),
(22337, 'https://ror.org/05ycegt40', 'en', 1, 'https://ror.org/05ycegt40 Banasthali University वनस्थली विद्यापीठ'),
(22338, 'https://ror.org/035zn2q74', 'en', 1, 'https://ror.org/035zn2q74 Pir Mehr Ali Shah Arid Agriculture University پیر مہر علی شاہ بارانی یونیورسٹی'),
(22339, 'https://ror.org/04ndj7y66', 'it', 1, 'https://ror.org/04ndj7y66 Osservatorio Astronomico della Regione Autonoma Valle d''Aosta'),
(22340, 'https://ror.org/04dcx0979', 'pt', 1, 'https://ror.org/04dcx0979 Centro Universitário Una'),
(22341, 'https://ror.org/03ag0xf08', 'en', 1, 'https://ror.org/03ag0xf08 Bassano Bresciano Astronomical Observatory Osservatorio Astronomico di Bassano Bresciano'),
(22342, 'https://ror.org/0485yr844', 'en', 1, 'https://ror.org/0485yr844 Bellatrix Astronomical Observatory'),
(22343, 'https://ror.org/051jrjw38', 'en', 1, 'https://ror.org/051jrjw38 University of Lahore جامعہ لاہور'),
(22344, 'https://ror.org/05akcf597', 'en', 1, 'https://ror.org/05akcf597 Geological Observatory of Coldigioco Osservatorio Geologico di Coldigioco'),
(22345, 'https://ror.org/04be2dn15', 'en', 1, 'https://ror.org/04be2dn15 University of Science and Technology Bannu بنوں یونیورسٹی آف سائنس اینڈ ٹیکنالوجی');
INSERT INTO `rors` VALUES
(22346, 'https://ror.org/036t2wx59', 'it', 1, 'https://ror.org/036t2wx59 Osservatorio Astronomico di Monte Agliale'),
(22347, 'https://ror.org/05h279t85', 'en', 1, 'https://ror.org/05h279t85 Observatoire du vatican Specola Vaticana Vatican Observatory Vatikanische Sternwarte'),
(22348, 'https://ror.org/02r8frq60', 'en', 1, 'https://ror.org/02r8frq60 Bisei Astronomical Observatory'),
(22349, 'https://ror.org/01ee0g236', 'pt', 1, 'https://ror.org/01ee0g236 Universidade do Estado do Rio Grande do Norte'),
(22350, 'https://ror.org/04jmsq731', 'en', 1, 'https://ror.org/04jmsq731 Arab American University الجامعة العربية الأمريكية - جنين'),
(22351, 'https://ror.org/047bp1713', 'en', 1, 'https://ror.org/047bp1713 North University of China 中北大学'),
(22352, 'https://ror.org/0086db414', 'en', 1, 'https://ror.org/0086db414 Hôpital Ignace Deen Ignace Deen Hospital'),
(22353, 'https://ror.org/04e118j07', 'en', 1, 'https://ror.org/04e118j07 Dallas Baptist University'),
(22354, 'https://ror.org/03wwspn40', 'en', 1, 'https://ror.org/03wwspn40 Palestine Polytechnic University جامعة بوليتكنك فلسطين'),
(22355, 'https://ror.org/047vkpj90', 'en', 1, 'https://ror.org/047vkpj90 San Cristóbal of Huamanga University Universidad Nacional de San Cristóbal de Huamanga'),
(22356, 'https://ror.org/05h6yvy73', 'es', 1, 'https://ror.org/05h6yvy73 Universidad Nacional de la Amazonía Peruana'),
(22357, 'https://ror.org/01ry6r150', 'en', 1, 'https://ror.org/01ry6r150 Pamantasang Silliman Silliman University'),
(22358, 'https://ror.org/02p928v94', 'en', 1, 'https://ror.org/02p928v94 Universidade da Integração Internacional da Lusofonia Afro-Brasileira University for International Integration of the Afro-Brazilian Lusophony'),
(22359, 'https://ror.org/03kkjyb15', 'en', 1, 'https://ror.org/03kkjyb15 Peking University Shenzhen Hospital 北京大学深圳医院'),
(22360, 'https://ror.org/03gq1d339', 'en', 1, 'https://ror.org/03gq1d339 University of Ngaoundéré Université de Ngaoundéré'),
(22361, 'https://ror.org/02gdc3814', 'en', 1, 'https://ror.org/02gdc3814 Lipscomb University'),
(22362, 'https://ror.org/02hx0yn76', 'en', 1, 'https://ror.org/02hx0yn76 Quest University Canada'),
(22363, 'https://ror.org/058vzj997', 'en', 1, 'https://ror.org/058vzj997 MidAmerica Nazarene University'),
(22364, 'https://ror.org/05r2yk395', 'en', 1, 'https://ror.org/05r2yk395 Tähtitieteellinen yhdistys Ursa ry Ursa Astronomical Association'),
(22365, 'https://ror.org/044pany34', 'en', 1, 'https://ror.org/044pany34 Sanming University 三明学院'),
(22366, 'https://ror.org/01gbfax37', 'en', 1, 'https://ror.org/01gbfax37 Shandong Jianzhu University 山东建筑大学'),
(22367, 'https://ror.org/01hnrbb29', 'en', 1, 'https://ror.org/01hnrbb29 Financial University Финансовый университет при Правительстве Российской Федерации'),
(22368, 'https://ror.org/03p7g4h78', 'en', 1, 'https://ror.org/03p7g4h78 Gorno-Altaisk State University Горно-Алтайский государственный университет'),
(22369, 'https://ror.org/04fjxr127', 'en', 1, 'https://ror.org/04fjxr127 The Silesian Planetarium Śląskie Planetarium i Obserwatorium Astronomiczne'),
(22370, 'https://ror.org/03s8xc553', 'en', 1, 'https://ror.org/03s8xc553 Shanxi Datong University 山西大同大学'),
(22371, 'https://ror.org/001rahr89', 'en', 1, 'https://ror.org/001rahr89 Affiliated Hospital of Nantong University 南通大学附属医院'),
(22372, 'https://ror.org/028rmam09', 'no_lang_code', 1, 'https://ror.org/028rmam09 Shijiazhuang University 石家庄学院'),
(22373, 'https://ror.org/00erq7915', 'en', 1, 'https://ror.org/00erq7915 Sichuan University of Arts and Science 四川文理学院'),
(22374, 'https://ror.org/01kdzej58', 'en', 1, 'https://ror.org/01kdzej58 Bohai University 渤海大学'),
(22375, 'https://ror.org/054nkx469', 'en', 1, 'https://ror.org/054nkx469 Capital University of Physical Education and Sports 首都体育学院'),
(22376, 'https://ror.org/00yfjng44', 'en', 1, 'https://ror.org/00yfjng44 Universities at Shady Grove'),
(22377, 'https://ror.org/035cyhw15', 'en', 1, 'https://ror.org/035cyhw15 Changchun University of Chinese Medicine'),
(22378, 'https://ror.org/04mw1zx86', 'en', 1, 'https://ror.org/04mw1zx86 Karachay-Cherkess State Pedagogical University Карачаево-Черкесский государственный университет'),
(22379, 'https://ror.org/03yph8055', 'en', 1, 'https://ror.org/03yph8055 Changsha University of Science and Technology 长沙理工大学'),
(22380, 'https://ror.org/04ymgwq66', 'en', 1, 'https://ror.org/04ymgwq66 Changzhou University 常州大学'),
(22381, 'https://ror.org/05petvd47', 'en', 1, 'https://ror.org/05petvd47 Tibet University 西藏大学'),
(22382, 'https://ror.org/00ax83b61', 'en', 1, 'https://ror.org/00ax83b61 Triangle Universities Nuclear Laboratory'),
(22383, 'https://ror.org/04bssxt85', 'no_lang_code', 1, 'https://ror.org/04bssxt85 Universal Technology Corporation (United States)'),
(22384, 'https://ror.org/02msjvh03', 'en', 1, 'https://ror.org/02msjvh03 Govind Ballabh Pant University of Agriculture and Technology गोविन्द बल्लभ पन्त कृषि एवं प्रौद्योगिकी विश्वविद्यालय'),
(22385, 'https://ror.org/00ab9nq73', 'en', 1, 'https://ror.org/00ab9nq73 Indian Maritime University இந்தியக் கடல்சார் பல்கலைக்கழகம்'),
(22386, 'https://ror.org/05f5j6225', 'en', 1, 'https://ror.org/05f5j6225 University Town of Shenzhen 深圳大学城'),
(22387, 'https://ror.org/05g1k4d79', 'en', 1, 'https://ror.org/05g1k4d79 North-Caucasus Federal University Северо-Кавказский федеральный университет'),
(22388, 'https://ror.org/013qfkw58', 'en', 1, 'https://ror.org/013qfkw58 Maharishi Markandeshwar University, Mullana महर्षि मर्कंदेश्वर विश्वविद्यालय, मुलाना'),
(22389, 'https://ror.org/02p6aa271', 'en', 1, 'https://ror.org/02p6aa271 North-Eastern Federal University Северо-Восточный федеральный университет'),
(22390, 'https://ror.org/05b0f8e85', 'en', 1, 'https://ror.org/05b0f8e85 Orenburg State University Оренбургский государственный университет'),
(22391, 'https://ror.org/0481cg432', 'en', 1, 'https://ror.org/0481cg432 Pandit Ravishankar Shukla University पंडित रविशंकर शुक्ल विश्वविद्यालय'),
(22392, 'https://ror.org/05mnjs436', 'en', 1, 'https://ror.org/05mnjs436 Dezhou University 德州学院'),
(22393, 'https://ror.org/036x6w630', 'en', 1, 'https://ror.org/036x6w630 Shri Mata Vaishno Devi University श्री माता वैष्णो देवी विश्वविद्यालय'),
(22394, 'https://ror.org/02rh4fw73', 'en', 1, 'https://ror.org/02rh4fw73 University of Minnesota Rochester'),
(22395, 'https://ror.org/05c0ns027', 'en', 1, 'https://ror.org/05c0ns027 Perm National Research Polytechnic University Федеральное государственное бюджетное образовательное учреждение высшего профессионального образования Пермский национальный исследовательский политехнический университет'),
(22396, 'https://ror.org/0176aa147', 'en', 1, 'https://ror.org/0176aa147 Petrozavodsk State University Петрозаводский государственный университет'),
(22397, 'https://ror.org/02fj6b627', 'en', 1, 'https://ror.org/02fj6b627 Guangxi University of Science and Technology 广西科技大学'),
(22398, 'https://ror.org/05arjae42', 'en', 1, 'https://ror.org/05arjae42 Guilin University of Electronic Technology 桂林电子科技大学'),
(22399, 'https://ror.org/040c7js64', 'no_lang_code', 1, 'https://ror.org/040c7js64 Xi''an Shiyou University 西安石油大学'),
(22400, 'https://ror.org/04wegbp55', 'en', 1, 'https://ror.org/04wegbp55 Tambov State Technical University Тамбовский государственный технический университет'),
(22401, 'https://ror.org/01zzmf129', 'en', 1, 'https://ror.org/01zzmf129 Xi’an University 西安文理学院'),
(22402, 'https://ror.org/02m4a5582', 'en', 1, 'https://ror.org/02m4a5582 Voronezh State Pedagogical University Воронежский государственный педагогический университет'),
(22403, 'https://ror.org/04qzrw529', 'en', 1, 'https://ror.org/04qzrw529 Yaroslav-the-Wise Novgorod State University Новгородский государственный университет имени Ярослава Мудрого'),
(22404, 'https://ror.org/02fsk5c21', 'en', 1, 'https://ror.org/02fsk5c21 University Pathologists'),
(22405, 'https://ror.org/01dyr7034', 'en', 1, 'https://ror.org/01dyr7034 Yan''an University 延安大学'),
(22406, 'https://ror.org/05xc4qj60', 'en', 1, 'https://ror.org/05xc4qj60 Libertador Experimental Pedagogical University Universidad Pedagógica Experimental Libertador'),
(22407, 'https://ror.org/00qseeb08', 'es', 1, 'https://ror.org/00qseeb08 Universidad Nacional Experimental de Guayana'),
(22408, 'https://ror.org/00k5x6r15', 'id', 1, 'https://ror.org/00k5x6r15 Universitas Ma Chung'),
(22409, 'https://ror.org/011adk382', 'en', 1, 'https://ror.org/011adk382 Yanbu University College كلية ينبع الجامعية'),
(22410, 'https://ror.org/03951zg45', 'es', 1, 'https://ror.org/03951zg45 Universidad Nacional Experimental Simón Rodríguez'),
(22411, 'https://ror.org/01xprs690', 'en', 1, 'https://ror.org/01xprs690 Université de ziguinchor Ziguinchor University'),
(22412, 'https://ror.org/019htgm96', 'en', 1, 'https://ror.org/019htgm96 Yili Normal University 伊犁师范学院'),
(22413, 'https://ror.org/01ggnn306', 'en', 1, 'https://ror.org/01ggnn306 Hunan University of Arts and Science 湖南文理学院'),
(22414, 'https://ror.org/00s7jmd98', 'en', 1, 'https://ror.org/00s7jmd98 Hunan University of Humanities, Science and Technology 湖南人文科技学院'),
(22415, 'https://ror.org/046nf9z89', 'en', 1, 'https://ror.org/046nf9z89 Golestan University دانشگاه گلستان'),
(22416, 'https://ror.org/00zyh6d22', 'no_lang_code', 1, 'https://ror.org/00zyh6d22 Hakim Sabzevari University دانشگاه حکیم سبزواری'),
(22417, 'https://ror.org/02t54e151', 'en', 1, 'https://ror.org/02t54e151 Icesi University Universidad Icesi'),
(22418, 'https://ror.org/024nbxn35', 'en', 1, 'https://ror.org/024nbxn35 Jiaozuo University 焦作大学'),
(22419, 'https://ror.org/051rngw70', 'no_lang_code', 1, 'https://ror.org/051rngw70 Shahrekord University دانشگاه شهرکرد'),
(22420, 'https://ror.org/0506tgm76', 'en', 1, 'https://ror.org/0506tgm76 Shahrekord University of Medical Sciences دانشگاه علوم پزشکي شهرکرد'),
(22421, 'https://ror.org/04wgyjv21', 'en', 1, 'https://ror.org/04wgyjv21 Le Quy Don Technical University Đại học Kỹ thuật Lê Quý Đôn'),
(22422, 'https://ror.org/059sj0146', 'en', 1, 'https://ror.org/059sj0146 Trường Đại học Công nghiệp Việt Trì Viet Tri University of Industry'),
(22423, 'https://ror.org/04tc27d43', 'es', 1, 'https://ror.org/04tc27d43 Escuela Universitaria de Fisioterapia de la ONCE'),
(22424, 'https://ror.org/0066vpg85', 'en', 1, 'https://ror.org/0066vpg85 Jiujiang University 九江学院'),
(22425, 'https://ror.org/02hzqbc55', 'en', 1, 'https://ror.org/02hzqbc55 Kaili University 凯里学院'),
(22426, 'https://ror.org/04tqrbk66', 'es', 1, 'https://ror.org/04tqrbk66 Hospital Universitario de Móstoles'),
(22427, 'https://ror.org/05ay23762', 'en', 1, 'https://ror.org/05ay23762 Liaoning University of Technology 辽宁工业大学'),
(22428, 'https://ror.org/03ddeer04', 'en', 1, 'https://ror.org/03ddeer04 University of Qom دانشگاه قم'),
(22429, 'https://ror.org/01y38kk41', 'en', 1, 'https://ror.org/01y38kk41 Logistics University of People''s Armed Police Force 中国人民武装警察部队后勤学院'),
(22430, 'https://ror.org/04mk5mk38', 'en', 1, 'https://ror.org/04mk5mk38 Cyprus International University Uluslararası Kıbrıs Üniversitesi'),
(22431, 'https://ror.org/04xp48827', 'en', 1, 'https://ror.org/04xp48827 European University Cyprus Ευρωπαϊκό Πανεπιστήμιο Κύπρου'),
(22432, 'https://ror.org/02fwtg066', 'en', 1, 'https://ror.org/02fwtg066 Sudan University of Science and Technology جامعة السودان للعلوم والتكنولوجيا'),
(22433, 'https://ror.org/02m8qhj08', 'en', 1, 'https://ror.org/02m8qhj08 Anton de Kom Universiteit van Suriname Anton de Kom University of Suriname'),
(22434, 'https://ror.org/031y8am81', 'en', 1, 'https://ror.org/031y8am81 Nanjing University of Finance and Economics 南京财经大学'),
(22435, 'https://ror.org/02j2yhq26', 'en', 1, 'https://ror.org/02j2yhq26 Naval Aeronautical and Astronautical University 中国人民解放军海军航空工程学院'),
(22436, 'https://ror.org/026efkc57', 'en', 1, 'https://ror.org/026efkc57 Scottish Universities Physics Alliance'),
(22437, 'https://ror.org/05478zz46', 'es', 1, 'https://ror.org/05478zz46 Autonomous University of Santo Domingo Universidad Autónoma de Santo Domingo'),
(22438, 'https://ror.org/03s8c2x09', 'en', 1, 'https://ror.org/03s8c2x09 Future University in Egypt جامعة المستقبل بمصر'),
(22439, 'https://ror.org/0364c8r59', 'no_lang_code', 1, 'https://ror.org/0364c8r59 Chubu Gakuin University 中部学院大学'),
(22440, 'https://ror.org/04a3htt14', 'it', 1, 'https://ror.org/04a3htt14 Consorzio Interuniversitario Fisica Spaziale'),
(22441, 'https://ror.org/02cntp233', 'en', 1, 'https://ror.org/02cntp233 Daido University 大同大学'),
(22442, 'https://ror.org/005vfwz38', 'no_lang_code', 1, 'https://ror.org/005vfwz38 Gifu Kyoritsu University 岐阜協立大学'),
(22443, 'https://ror.org/05h9h0e34', 'en', 1, 'https://ror.org/05h9h0e34 Hokkai Gakuen University 北海学園大学'),
(22444, 'https://ror.org/05debfq75', 'en', 1, 'https://ror.org/05debfq75 Misr University for Science and Technology جامعة مصر للعلوم والتكنولوجيا'),
(22445, 'https://ror.org/00nyxpe17', 'en', 1, 'https://ror.org/00nyxpe17 Hokkaido Information University 北海道情報大学'),
(22446, 'https://ror.org/01vx5yq44', 'en', 1, 'https://ror.org/01vx5yq44 Port Said University جامعة بورسعيد'),
(22447, 'https://ror.org/022b6b871', 'en', 1, 'https://ror.org/022b6b871 Jobu University 上武大学'),
(22448, 'https://ror.org/02xjxgz53', 'en', 1, 'https://ror.org/02xjxgz53 Joetsu University of Education 上越教育大学'),
(22449, 'https://ror.org/039pch476', 'en', 1, 'https://ror.org/039pch476 Josai International University 城西国際大学'),
(22450, 'https://ror.org/004dan487', 'fr', 1, 'https://ror.org/004dan487 Centre Hospitalier Universitaire de La Réunion'),
(22451, 'https://ror.org/044bdx604', 'en', 1, 'https://ror.org/044bdx604 Tokyo University of Information Sciences 東京情報大学'),
(22452, 'https://ror.org/055khg266', 'fr', 1, 'https://ror.org/055khg266 Institut Universitaire de France'),
(22453, 'https://ror.org/04qcq6322', 'en', 1, 'https://ror.org/04qcq6322 Yamagata Prefectural University of Health Sciences 山形県立保健医療大学'),
(22454, 'https://ror.org/02jgpyd84', 'en', 1, 'https://ror.org/02jgpyd84 German Jordanian University الجامعة الألمانية الأردنية'),
(22455, 'https://ror.org/00rghrr56', 'en', 1, 'https://ror.org/00rghrr56 Kochi University of Technology 高知工科大学'),
(22456, 'https://ror.org/05q041y44', 'no_lang_code', 1, 'https://ror.org/05q041y44 Kokugakuin University 國學院大學'),
(22457, 'https://ror.org/05tjaf288', 'en', 1, 'https://ror.org/05tjaf288 Komazawa University 駒澤大学'),
(22458, 'https://ror.org/04h794874', 'en', 1, 'https://ror.org/04h794874 Koriyama Women''s University 郡山女子大学'),
(22459, 'https://ror.org/04xtvq436', 'en', 1, 'https://ror.org/04xtvq436 Kurashiki University of Science and the Arts 倉敷芸術科学大学'),
(22460, 'https://ror.org/05qs31q25', 'en', 1, 'https://ror.org/05qs31q25 Kyoto University Research Reactor Institute 京都大学複合原子力科学研究所'),
(22461, 'https://ror.org/038jdep47', 'en', 1, 'https://ror.org/038jdep47 Kyushu Nutrition Welfare University 九州栄養福祉大学'),
(22462, 'https://ror.org/03f099r71', 'fr', 1, 'https://ror.org/03f099r71 Institut universitaire de technologie Instituts Universitaires de Technologie'),
(22463, 'https://ror.org/03wkbyb17', 'en', 1, 'https://ror.org/03wkbyb17 Morioka University 盛岡大学'),
(22464, 'https://ror.org/03a42q045', 'en', 1, 'https://ror.org/03a42q045 Nara University 奈良大学'),
(22465, 'https://ror.org/05rr3y439', 'en', 1, 'https://ror.org/05rr3y439 Free University of Tbilisi Свободный университет Тбилиси თავისუფალი უნივერსიტეტი'),
(22466, 'https://ror.org/0004r6b85', 'en', 1, 'https://ror.org/0004r6b85 Hochschule Biberach University of Applied Sciences Biberach'),
(22467, 'https://ror.org/01h2m4f20', 'en', 1, 'https://ror.org/01h2m4f20 Osaka Sangyo University 大阪産業大学'),
(22468, 'https://ror.org/01t4pxy10', 'en', 1, 'https://ror.org/01t4pxy10 Dresden International University'),
(22469, 'https://ror.org/05v1ekw79', 'en', 1, 'https://ror.org/05v1ekw79 Dongyang University 동양대학교'),
(22470, 'https://ror.org/059r50h13', 'en', 1, 'https://ror.org/059r50h13 Gyeongnam National University of Science and Technology 경남과학기술대학교'),
(22471, 'https://ror.org/01xjgpq49', 'no_lang_code', 1, 'https://ror.org/01xjgpq49 Sakushin Gakuin University 作新学院大学'),
(22472, 'https://ror.org/03jzxkg37', 'en', 1, 'https://ror.org/03jzxkg37 Senshu University 専修大学'),
(22473, 'https://ror.org/05jvh0739', 'en', 1, 'https://ror.org/05jvh0739 Sonoda Women''s University 園田学園女子大学'),
(22474, 'https://ror.org/05qh38f12', 'en', 1, 'https://ror.org/05qh38f12 Takushoku University 拓殖 大学'),
(22475, 'https://ror.org/01fzsd381', 'en', 1, 'https://ror.org/01fzsd381 HafenCity University Hamburg HafenCity Universität Hamburg'),
(22476, 'https://ror.org/034zkkc78', 'no_lang_code', 1, 'https://ror.org/034zkkc78 Teikyo Heisei University 帝京平成大学'),
(22477, 'https://ror.org/048yn7628', 'en', 1, 'https://ror.org/048yn7628 Harz University of Applied Sciences Hochschule Harz'),
(22478, 'https://ror.org/050mgpz97', 'en', 1, 'https://ror.org/050mgpz97 Jungwon University'),
(22479, 'https://ror.org/0504dfg48', 'no_lang_code', 1, 'https://ror.org/0504dfg48 Tohoku Gakuin University 東北学院大学'),
(22480, 'https://ror.org/03c9fpk55', 'en', 1, 'https://ror.org/03c9fpk55 Korea National University of Education 한국교원대학교'),
(22481, 'https://ror.org/03xe7w214', 'en', 1, 'https://ror.org/03xe7w214 East–West University'),
(22482, 'https://ror.org/01c8qhb70', 'en', 1, 'https://ror.org/01c8qhb70 College of The Bahamas'),
(22483, 'https://ror.org/02nv0qb16', 'en', 1, 'https://ror.org/02nv0qb16 Ohio Christian University'),
(22484, 'https://ror.org/04j351e79', 'en', 1, 'https://ror.org/04j351e79 Hochschule Koblenz Koblenz University of Applied Sciences'),
(22485, 'https://ror.org/00fgcap50', 'en', 1, 'https://ror.org/00fgcap50 Universidad de Belice University of Belize'),
(22486, 'https://ror.org/05xbyzq55', 'en', 1, 'https://ror.org/05xbyzq55 Tokyo Kasei University 東京家政大学'),
(22487, 'https://ror.org/053nycv62', 'en', 1, 'https://ror.org/053nycv62 Korea University of Technology and Education 한국기술교육대학교'),
(22488, 'https://ror.org/03b0ym704', 'en', 1, 'https://ror.org/03b0ym704 Tokyo Keizai University 東京経済大学'),
(22489, 'https://ror.org/024kwvm84', 'en', 1, 'https://ror.org/024kwvm84 Kyungil University'),
(22490, 'https://ror.org/037pkxm09', 'en', 1, 'https://ror.org/037pkxm09 Kyungnam University 경남대학교'),
(22491, 'https://ror.org/02qch8k63', 'en', 1, 'https://ror.org/02qch8k63 Briercrest College and Seminary'),
(22492, 'https://ror.org/00ncqx842', 'en', 1, 'https://ror.org/00ncqx842 Seowon University 서원대학교'),
(22493, 'https://ror.org/04vjfp916', 'de', 1, 'https://ror.org/04vjfp916 Hochschule Magdeburg-Stendal Magdeburg-Stendal University of Applied Sciences'),
(22494, 'https://ror.org/02k98xb21', 'en', 1, 'https://ror.org/02k98xb21 Kim Il-sung University 김일성종합대학'),
(22495, 'https://ror.org/01js8h045', 'en', 1, 'https://ror.org/01js8h045 Bērnu klīniskā universitātes slimnīca Children''s Clinical University Hospital'),
(22496, 'https://ror.org/04t8wxc05', 'en', 1, 'https://ror.org/04t8wxc05 Yorkville University'),
(22497, 'https://ror.org/00br73y72', 'en', 1, 'https://ror.org/00br73y72 Atlantic School of Theology'),
(22498, 'https://ror.org/01xzw5f75', 'es', 1, 'https://ror.org/01xzw5f75 Universidad de San Pedro Sula University of San Pedro Sula'),
(22499, 'https://ror.org/057g08s23', 'es', 1, 'https://ror.org/057g08s23 Universidad Anáhuac México Sur Universidad Anáhuac del Sur'),
(22500, 'https://ror.org/01agfbd76', 'es', 1, 'https://ror.org/01agfbd76 Universidad de las Californias'),
(22501, 'https://ror.org/03qzc6q48', 'es', 1, 'https://ror.org/03qzc6q48 Universidad de Tijuana'),
(22502, 'https://ror.org/00j5cb536', 'es', 1, 'https://ror.org/00j5cb536 Universidad Tecnológica de Honduras'),
(22503, 'https://ror.org/03mcgtd30', 'es', 1, 'https://ror.org/03mcgtd30 Centro de Diseño, Arquitectura y Construcción'),
(22504, 'https://ror.org/04m0bzb15', 'en', 1, 'https://ror.org/04m0bzb15 Rogers State University Université d''État de rogers'),
(22505, 'https://ror.org/00dsfsy77', 'es', 1, 'https://ror.org/00dsfsy77 Universidad Chapultepec'),
(22506, 'https://ror.org/02y28sc20', 'en', 1, 'https://ror.org/02y28sc20 Visva-Bharati University विश्व-भारती विश्वविद्यालय বিশ্বভারতী বিশ্ববিদ্যালয় ਵਿਸ਼ਵ ਭਾਰਤੀ ਯੂਨੀਵਰਸਿਟੀ വിശ്വഭാരതി സർ വ്വകലാശാല'),
(22507, 'https://ror.org/05j8jw743', 'es', 1, 'https://ror.org/05j8jw743 Universidad de la Comunicación'),
(22508, 'https://ror.org/02j003371', 'es', 1, 'https://ror.org/02j003371 Universidad de las Américas'),
(22509, 'https://ror.org/01kt2cx88', 'en', 1, 'https://ror.org/01kt2cx88 Escuela Agrícola Panamericana Zamorano Zamorano Pan-American Agricultural School'),
(22510, 'https://ror.org/04f2wck35', 'en', 1, 'https://ror.org/04f2wck35 St. Stephen''s University'),
(22511, 'https://ror.org/00gcm2421', 'es', 1, 'https://ror.org/00gcm2421 Universidad Emilio Cárdenas'),
(22512, 'https://ror.org/03befxt38', 'en', 1, 'https://ror.org/03befxt38 Everest University'),
(22513, 'https://ror.org/0414fnh91', 'en', 1, 'https://ror.org/0414fnh91 Huntington University'),
(22514, 'https://ror.org/0003ahp46', 'es', 1, 'https://ror.org/0003ahp46 Universidad ETAC'),
(22515, 'https://ror.org/05wc21r71', 'es', 1, 'https://ror.org/05wc21r71 Universidad de Negocios ISEC'),
(22516, 'https://ror.org/00tsxbx86', 'es', 1, 'https://ror.org/00tsxbx86 Universidad Interamericana para el Desarrollo'),
(22517, 'https://ror.org/01p2bvc62', 'en', 1, 'https://ror.org/01p2bvc62 Columbia International University'),
(22518, 'https://ror.org/02pgkhq67', 'es', 1, 'https://ror.org/02pgkhq67 Universidad del Altiplano'),
(22519, 'https://ror.org/05c9jga87', 'en', 1, 'https://ror.org/05c9jga87 Assumption University'),
(22520, 'https://ror.org/02te4t940', 'en', 1, 'https://ror.org/02te4t940 Universidad del Claustro de Sor Juana University of the Cloister of Sor Juana'),
(22521, 'https://ror.org/02fnq4841', 'es', 1, 'https://ror.org/02fnq4841 Universidad Católica de Honduras Nuestra Señora Reina de la Paz'),
(22522, 'https://ror.org/050h4qj76', 'es', 1, 'https://ror.org/050h4qj76 Universidad del Desarrollo Empresarial y Pedagógico'),
(22523, 'https://ror.org/02fgyh323', 'es', 1, 'https://ror.org/02fgyh323 Universidad del Valle de Toluca'),
(22524, 'https://ror.org/0335q7x18', 'es', 1, 'https://ror.org/0335q7x18 Universidad José Cecilio del Valle'),
(22525, 'https://ror.org/00a3sq030', 'en', 1, 'https://ror.org/00a3sq030 Franklin University'),
(22526, 'https://ror.org/00ydm7519', 'es', 1, 'https://ror.org/00ydm7519 Universidad Isidro Fabela de Toluca'),
(22527, 'https://ror.org/04d6bgk38', 'es', 1, 'https://ror.org/04d6bgk38 Universidad del Distrito Federal'),
(22528, 'https://ror.org/04j2q1352', 'es', 1, 'https://ror.org/04j2q1352 Instituto Centroamericano de Administración de Empresas'),
(22529, 'https://ror.org/05ede8r89', 'en', 1, 'https://ror.org/05ede8r89 Central American Adventist University Universidad Adventista de Centro America'),
(22530, 'https://ror.org/04vbnwv73', 'es', 1, 'https://ror.org/04vbnwv73 Universidad del Ejército y Fuerza Aérea'),
(22531, 'https://ror.org/03dnnq935', 'en', 1, 'https://ror.org/03dnnq935 Antioch University Los Angeles'),
(22532, 'https://ror.org/010c6zy12', 'en', 1, 'https://ror.org/010c6zy12 Trident University International'),
(22533, 'https://ror.org/05rsfnx05', 'es', 1, 'https://ror.org/05rsfnx05 Universidad Pedagógica Nacional Francisco Morazán'),
(22534, 'https://ror.org/04bwwvv47', 'es', 1, 'https://ror.org/04bwwvv47 National Police of Honduras Policía Nacional de Honduras'),
(22535, 'https://ror.org/052egrr51', 'es', 1, 'https://ror.org/052egrr51 Universidad del Pedregal'),
(22536, 'https://ror.org/05spgdz37', 'es', 1, 'https://ror.org/05spgdz37 Universidad Autónoma de La Laguna'),
(22537, 'https://ror.org/03w44ry84', 'en', 1, 'https://ror.org/03w44ry84 Mico University College'),
(22538, 'https://ror.org/05h9c3z20', 'es', 1, 'https://ror.org/05h9c3z20 Universidad del Valle de México'),
(22539, 'https://ror.org/02w1kdc51', 'en', 1, 'https://ror.org/02w1kdc51 University of Technology, Jamaica'),
(22540, 'https://ror.org/02pfwd463', 'es', 1, 'https://ror.org/02pfwd463 Universidad Gestalt'),
(22541, 'https://ror.org/04yv47b75', 'en', 1, 'https://ror.org/04yv47b75 Northern Caribbean University'),
(22542, 'https://ror.org/0078tmr20', 'es', 1, 'https://ror.org/0078tmr20 Universidad Hebraica'),
(22543, 'https://ror.org/01mx1hz05', 'en', 1, 'https://ror.org/01mx1hz05 Schiller International University'),
(22544, 'https://ror.org/00e9yqc18', 'es', 1, 'https://ror.org/00e9yqc18 Universidad Tollancingo'),
(22545, 'https://ror.org/00exe2989', 'es', 1, 'https://ror.org/00exe2989 Centro Universitario del Pacífico Sur'),
(22546, 'https://ror.org/04f1s1f80', 'es', 1, 'https://ror.org/04f1s1f80 Universidad Florencio del Castillo'),
(22547, 'https://ror.org/05gjd9170', 'en', 1, 'https://ror.org/05gjd9170 Polytechnic University of the Valley of Mexico Universidad Politécnica del Valle de México'),
(22548, 'https://ror.org/038d7xb21', 'es', 1, 'https://ror.org/038d7xb21 Universidad ICEL'),
(22549, 'https://ror.org/01v8mkp61', 'es', 1, 'https://ror.org/01v8mkp61 Universidad Santa Paula'),
(22550, 'https://ror.org/01gxfn525', 'es', 1, 'https://ror.org/01gxfn525 Universidad de Ciencias y Artes de Chiapas'),
(22551, 'https://ror.org/03z0m9f65', 'es', 1, 'https://ror.org/03z0m9f65 Universidad Pablo Guardado Chávez'),
(22552, 'https://ror.org/04qm2hq24', 'es', 1, 'https://ror.org/04qm2hq24 Universidad Insurgentes'),
(22553, 'https://ror.org/04ena6v85', 'es', 1, 'https://ror.org/04ena6v85 Universidad Politécnica de Chiapas'),
(22554, 'https://ror.org/021njs178', 'es', 1, 'https://ror.org/021njs178 Intercontinental University Universidad Intercontinental'),
(22555, 'https://ror.org/028dfkq31', 'es', 1, 'https://ror.org/028dfkq31 Universidad Americana de Acapulco'),
(22556, 'https://ror.org/03qg1ka05', 'es', 1, 'https://ror.org/03qg1ka05 Universidad Loyola del Pacífico'),
(22557, 'https://ror.org/03tz0hf33', 'es', 1, 'https://ror.org/03tz0hf33 Universidad Internacional San Isidro Labrador'),
(22558, 'https://ror.org/00cxp1a86', 'es', 1, 'https://ror.org/00cxp1a86 Universidad Internacional'),
(22559, 'https://ror.org/04mvrqy78', 'es', 1, 'https://ror.org/04mvrqy78 Universidad del Desarrollo Profesional'),
(22560, 'https://ror.org/03pnptn66', 'es', 1, 'https://ror.org/03pnptn66 Universidad Internacional de Profesiones y Escuela Internacional de Turismo'),
(22561, 'https://ror.org/059p0a776', 'en', 1, 'https://ror.org/059p0a776 American Sentinel University'),
(22562, 'https://ror.org/04cnaq122', 'es', 1, 'https://ror.org/04cnaq122 Universidad Madero Papaloapan'),
(22563, 'https://ror.org/047hq4296', 'es', 1, 'https://ror.org/047hq4296 Universidad Valle del Grijalva'),
(22564, 'https://ror.org/01gaavs46', 'en', 1, 'https://ror.org/01gaavs46 Justo Sierra University Universidad Justo Sierra'),
(22565, 'https://ror.org/00bmh7e34', 'es', 1, 'https://ror.org/00bmh7e34 Universidad Autónoma de Centro América'),
(22566, 'https://ror.org/04ychh985', 'es', 1, 'https://ror.org/04ychh985 Universidad del Valle de Tlaxcala'),
(22567, 'https://ror.org/04k2dc025', 'es', 1, 'https://ror.org/04k2dc025 Universidad Don Vasco'),
(22568, 'https://ror.org/035tcgz88', 'es', 1, 'https://ror.org/035tcgz88 Universidad Marista'),
(22569, 'https://ror.org/02p06pt44', 'es', 1, 'https://ror.org/02p06pt44 Universidad Mexicana'),
(22570, 'https://ror.org/04be5z192', 'es', 1, 'https://ror.org/04be5z192 Universidad Bíblica Latinoamericana'),
(22571, 'https://ror.org/05xg5y175', 'es', 1, 'https://ror.org/05xg5y175 Polytechnic University of Aguascalientes Universidad Politécnica de Aguascalientes'),
(22572, 'https://ror.org/02jhx4860', 'en', 1, 'https://ror.org/02jhx4860 Upper Iowa University'),
(22573, 'https://ror.org/0426xa281', 'es', 1, 'https://ror.org/0426xa281 Universidad Tecnológica de Aguascalientes'),
(22574, 'https://ror.org/023m5rq87', 'en', 1, 'https://ror.org/023m5rq87 National Pedagogic University Universidad Pedagógica Nacional'),
(22575, 'https://ror.org/01sv41c41', 'es', 1, 'https://ror.org/01sv41c41 Universidad Villasunción'),
(22576, 'https://ror.org/04arhmz60', 'en', 1, 'https://ror.org/04arhmz60 Heritage Christian University'),
(22577, 'https://ror.org/02s93t850', 'es', 1, 'https://ror.org/02s93t850 Universidad Pontificia de México'),
(22578, 'https://ror.org/03b80ms04', 'es', 1, 'https://ror.org/03b80ms04 Universidad Jean Piaget'),
(22579, 'https://ror.org/038s91v75', 'en', 1, 'https://ror.org/038s91v75 L''Université du Maine à Fort Kent University of Maine at Fort Kent'),
(22580, 'https://ror.org/00x76st93', 'es', 1, 'https://ror.org/00x76st93 Universidad Católica de Costa Rica'),
(22581, 'https://ror.org/04vhngq09', 'en', 1, 'https://ror.org/04vhngq09 Salesian University Universidad Salesiana'),
(22582, 'https://ror.org/01f00fn77', 'en', 1, 'https://ror.org/01f00fn77 Fresno Pacific University'),
(22583, 'https://ror.org/039207457', 'es', 1, 'https://ror.org/039207457 Centro Universitario Hispano Mexicano'),
(22584, 'https://ror.org/02rzpp332', 'es', 1, 'https://ror.org/02rzpp332 Universidad Cristóbal Colón'),
(22585, 'https://ror.org/01wnb0b83', 'es', 1, 'https://ror.org/01wnb0b83 Universidad Central'),
(22586, 'https://ror.org/01r6bea41', 'es', 1, 'https://ror.org/01r6bea41 Universidad Centroamericana de Ciencias Sociales'),
(22587, 'https://ror.org/0297n1v45', 'en', 1, 'https://ror.org/0297n1v45 Amberton University Universidad Amberton'),
(22588, 'https://ror.org/02z191186', 'es', 1, 'https://ror.org/02z191186 Universidad Tecnológica Americana'),
(22589, 'https://ror.org/00jyxmj57', 'es', 1, 'https://ror.org/00jyxmj57 Universidad Westhill'),
(22590, 'https://ror.org/03001j263', 'es', 1, 'https://ror.org/03001j263 Universidad Continental de las Ciencias las Artes'),
(22591, 'https://ror.org/056nda222', 'en', 1, 'https://ror.org/056nda222 Kentucky Christian University'),
(22592, 'https://ror.org/03aqsxt86', 'es', 1, 'https://ror.org/03aqsxt86 Universidad Creativa'),
(22593, 'https://ror.org/01ebkw403', 'es', 1, 'https://ror.org/01ebkw403 Universidad YMCA'),
(22594, 'https://ror.org/03rj1yh85', 'en', 1, 'https://ror.org/03rj1yh85 Bob Jones University'),
(22595, 'https://ror.org/05htw0667', 'en', 1, 'https://ror.org/05htw0667 Finlandia University Université finlandia'),
(22596, 'https://ror.org/01w9xxr98', 'en', 1, 'https://ror.org/01w9xxr98 Freed–Hardeman University'),
(22597, 'https://ror.org/05773jf61', 'es', 1, 'https://ror.org/05773jf61 Universidad Olmeca'),
(22598, 'https://ror.org/03fhhje23', 'en', 1, 'https://ror.org/03fhhje23 Cleary University'),
(22599, 'https://ror.org/033fgr632', 'es', 1, 'https://ror.org/033fgr632 Universidad de Ciencias Medicas'),
(22600, 'https://ror.org/02aneaq95', 'es', 1, 'https://ror.org/02aneaq95 Universidad de Xalapa'),
(22601, 'https://ror.org/02gj6ck68', 'en', 1, 'https://ror.org/02gj6ck68 Iberoamerican University Universidad de Iberoamérica'),
(22602, 'https://ror.org/03beypq35', 'es', 1, 'https://ror.org/03beypq35 Universidad Hernán Cortés'),
(22603, 'https://ror.org/01h39r951', 'es', 1, 'https://ror.org/01h39r951 Universidad Paccioli Xalapa'),
(22604, 'https://ror.org/04djera41', 'es', 1, 'https://ror.org/04djera41 Universidad La Salle Costa Rica'),
(22605, 'https://ror.org/02kha8k84', 'es', 1, 'https://ror.org/02kha8k84 Universidad de la Sierra'),
(22606, 'https://ror.org/03q03s114', 'es', 1, 'https://ror.org/03q03s114 Universidad de las Ciencias y el Arte de Costa Rica'),
(22607, 'https://ror.org/04j9vr008', 'es', 1, 'https://ror.org/04j9vr008 Centro Universitário Internacional'),
(22608, 'https://ror.org/01thvz382', 'es', 1, 'https://ror.org/01thvz382 Universidad de San Jose'),
(22609, 'https://ror.org/048yh2980', 'es', 1, 'https://ror.org/048yh2980 Universidad Villa Rica'),
(22610, 'https://ror.org/04aaq2k96', 'en', 1, 'https://ror.org/04aaq2k96 Martin University'),
(22611, 'https://ror.org/0028kf729', 'en', 1, 'https://ror.org/0028kf729 Concordia University Irvine'),
(22612, 'https://ror.org/053d5gs04', 'es', 1, 'https://ror.org/053d5gs04 Universidad Filadelfia de México'),
(22613, 'https://ror.org/01jxhzn15', 'es', 1, 'https://ror.org/01jxhzn15 Centro Universitario México Valle'),
(22614, 'https://ror.org/02c561939', 'en', 1, 'https://ror.org/02c561939 Union University'),
(22615, 'https://ror.org/04nfs2483', 'en', 1, 'https://ror.org/04nfs2483 Universidad de St. Francis University of St. Francis'),
(22616, 'https://ror.org/003gh8k45', 'es', 1, 'https://ror.org/003gh8k45 Universidad Tecnológica del Sureste de Veracruz'),
(22617, 'https://ror.org/03g0mt494', 'es', 1, 'https://ror.org/03g0mt494 Universidad Anáhuac de Cancún'),
(22618, 'https://ror.org/03yy7hq10', 'en', 1, 'https://ror.org/03yy7hq10 Grantham University'),
(22619, 'https://ror.org/04hm3y828', 'es', 1, 'https://ror.org/04hm3y828 Universidad del Caribe'),
(22620, 'https://ror.org/05d7z0p34', 'es', 1, 'https://ror.org/05d7z0p34 Instituto Universitario en Sistemas Administrativos de Monterrey'),
(22621, 'https://ror.org/00y7snj24', 'en', 1, 'https://ror.org/00y7snj24 Northwest University'),
(22622, 'https://ror.org/035t09566', 'en', 1, 'https://ror.org/035t09566 Universidad del Turismo University of Tourism'),
(22623, 'https://ror.org/00hcsja64', 'en', 1, 'https://ror.org/00hcsja64 Allied American University'),
(22624, 'https://ror.org/008bzz504', 'es', 1, 'https://ror.org/008bzz504 Universidad Xicotepetl'),
(22625, 'https://ror.org/05mcesg65', 'en', 1, 'https://ror.org/05mcesg65 Colorado Christian University'),
(22626, 'https://ror.org/02xw8cw23', 'es', 1, 'https://ror.org/02xw8cw23 Universidad del Valle'),
(22627, 'https://ror.org/01109d775', 'en', 1, 'https://ror.org/01109d775 Cairn University'),
(22628, 'https://ror.org/019fz0m35', 'es', 1, 'https://ror.org/019fz0m35 Universidad Maya de las Américas'),
(22629, 'https://ror.org/02wtemq51', 'en', 1, 'https://ror.org/02wtemq51 Cumberland University'),
(22630, 'https://ror.org/0145cvg83', 'en', 1, 'https://ror.org/0145cvg83 Business University of Costa Rica Universidad Empresarial de Costa Rica'),
(22631, 'https://ror.org/02gm6vn88', 'es', 1, 'https://ror.org/02gm6vn88 Consorcio Educativo Oxford'),
(22632, 'https://ror.org/03rp0q895', 'es', 1, 'https://ror.org/03rp0q895 Universidad Albert Einstein'),
(22633, 'https://ror.org/016wh5q48', 'es', 1, 'https://ror.org/016wh5q48 Centro Universitario del Valle de Zacapu'),
(22634, 'https://ror.org/057nkmn52', 'es', 1, 'https://ror.org/057nkmn52 Universidad Escuela Libre de Derecho'),
(22635, 'https://ror.org/027q6qt05', 'es', 1, 'https://ror.org/027q6qt05 Universidad Evangélica de las Américas'),
(22636, 'https://ror.org/059m1x137', 'en', 1, 'https://ror.org/059m1x137 Universidad de Celaya University of Celaya'),
(22637, 'https://ror.org/04edxwx83', 'en', 1, 'https://ror.org/04edxwx83 Fidélitas University Universidad Fidélitas'),
(22638, 'https://ror.org/05hjyfv39', 'es', 1, 'https://ror.org/05hjyfv39 Universidad del Centro del Bajío'),
(22639, 'https://ror.org/02mczgx58', 'es', 1, 'https://ror.org/02mczgx58 Universidad Latina de México'),
(22640, 'https://ror.org/03979gq82', 'es', 1, 'https://ror.org/03979gq82 Universidad Fundepos'),
(22641, 'https://ror.org/01r98zz61', 'es', 1, 'https://ror.org/01r98zz61 Universidad Azteca Universidad Azteca de Chalco'),
(22642, 'https://ror.org/0350h3282', 'es', 1, 'https://ror.org/0350h3282 Universidad del Norte'),
(22643, 'https://ror.org/02j5qmn70', 'en', 1, 'https://ror.org/02j5qmn70 Dongguk University Los Angeles'),
(22644, 'https://ror.org/01gsj8877', 'es', 1, 'https://ror.org/01gsj8877 Universidad Hispanoamericana'),
(22645, 'https://ror.org/055wq3834', 'en', 1, 'https://ror.org/055wq3834 Samra University of Oriental Medicine'),
(22646, 'https://ror.org/00krqj642', 'es', 1, 'https://ror.org/00krqj642 Universidad Humanista de las Américas'),
(22647, 'https://ror.org/021jdc910', 'es', 1, 'https://ror.org/021jdc910 Universidad Regional del Norte'),
(22648, 'https://ror.org/02kx72w21', 'en', 1, 'https://ror.org/02kx72w21 University of Philosophical Research'),
(22649, 'https://ror.org/04jj38x11', 'en', 1, 'https://ror.org/04jj38x11 West Coast University'),
(22650, 'https://ror.org/030ncfx10', 'es', 1, 'https://ror.org/030ncfx10 Universidad Metropolitana de Monterrey'),
(22651, 'https://ror.org/0175p1a50', 'es', 1, 'https://ror.org/0175p1a50 Universidad Latinoamericana de Ciencia y Tecnología'),
(22652, 'https://ror.org/03q0gmx50', 'es', 1, 'https://ror.org/03q0gmx50 Universidad Libre de Costa Rica'),
(22653, 'https://ror.org/01pjrq695', 'es', 1, 'https://ror.org/01pjrq695 Universidad Magister'),
(22654, 'https://ror.org/021s39r20', 'es', 1, 'https://ror.org/021s39r20 Colegio Metodista de Costa Rica'),
(22655, 'https://ror.org/04s65rw96', 'es', 1, 'https://ror.org/04s65rw96 Universidad Regiomontana'),
(22656, 'https://ror.org/01b9q6e25', 'es', 1, 'https://ror.org/01b9q6e25 Universidad Valle Continental'),
(22657, 'https://ror.org/00tnb2p82', 'es', 1, 'https://ror.org/00tnb2p82 Universidad de Morelia University of Morelia'),
(22658, 'https://ror.org/0575c3z81', 'en', 1, 'https://ror.org/0575c3z81 Sullivan University'),
(22659, 'https://ror.org/0259tmr25', 'es', 1, 'https://ror.org/0259tmr25 Centro Universitario Juana de Asbaje'),
(22660, 'https://ror.org/03hr7f472', 'es', 1, 'https://ror.org/03hr7f472 Centro Universitario de Ciudad Juárez'),
(22661, 'https://ror.org/05j2xah23', 'es', 1, 'https://ror.org/05j2xah23 Universidad Latina de América'),
(22662, 'https://ror.org/04zgwt671', 'es', 1, 'https://ror.org/04zgwt671 Universidad Vasco de Quiroga'),
(22663, 'https://ror.org/00cxrw595', 'en', 1, 'https://ror.org/00cxrw595 Universidad para la Paz University for Peace'),
(22664, 'https://ror.org/017m8hp04', 'en', 1, 'https://ror.org/017m8hp04 University of Northern Virginia'),
(22665, 'https://ror.org/04svzdw14', 'es', 1, 'https://ror.org/04svzdw14 Centro Universitario de Mercadotecnia y Publicidad'),
(22666, 'https://ror.org/013fgjz36', 'es', 1, 'https://ror.org/013fgjz36 Universidad Lux'),
(22667, 'https://ror.org/04t718460', 'en', 1, 'https://ror.org/04t718460 Southern New Hampshire University Université du sud du new hampshire'),
(22668, 'https://ror.org/00b1c0c11', 'es', 1, 'https://ror.org/00b1c0c11 Universidad Santa Lucía'),
(22669, 'https://ror.org/03m69ak30', 'es', 1, 'https://ror.org/03m69ak30 Universidad de Norteamérica'),
(22670, 'https://ror.org/04tjmjk63', 'es', 1, 'https://ror.org/04tjmjk63 Universidad de Zamora'),
(22671, 'https://ror.org/0189yfh12', 'es', 1, 'https://ror.org/0189yfh12 Franco Mexican University Universidad Franco Mexicana'),
(22672, 'https://ror.org/04kwrcn69', 'es', 1, 'https://ror.org/04kwrcn69 Universidad Tecnológica Costarricense'),
(22673, 'https://ror.org/0006g9r95', 'es', 1, 'https://ror.org/0006g9r95 Universidad América Latina'),
(22674, 'https://ror.org/026p1jb43', 'en', 1, 'https://ror.org/026p1jb43 Universidad del Valle de Atemajac University of the Valley of Atemajac'),
(22675, 'https://ror.org/049sdnw14', 'es', 1, 'https://ror.org/049sdnw14 Universidad Veritas'),
(22676, 'https://ror.org/049tfqy31', 'es', 1, 'https://ror.org/049tfqy31 Universidad México Americana del Norte'),
(22677, 'https://ror.org/05q6sxg43', 'es', 1, 'https://ror.org/05q6sxg43 Universidad Interamericana del Norte'),
(22678, 'https://ror.org/04caqsq71', 'es', 1, 'https://ror.org/04caqsq71 Universidad Marista de Guadalajara'),
(22679, 'https://ror.org/04yd0ad61', 'en', 1, 'https://ror.org/04yd0ad61 Latin University of Costa Rica Universidad Latina de Costa Rica'),
(22680, 'https://ror.org/04pggra29', 'en', 1, 'https://ror.org/04pggra29 Miami International University of Art & Design Universidad Internacional de Miami de Arte & Diseño'),
(22681, 'https://ror.org/01hk15q16', 'en', 1, 'https://ror.org/01hk15q16 Northwood University'),
(22682, 'https://ror.org/02gk19b80', 'en', 1, 'https://ror.org/02gk19b80 North Central University'),
(22683, 'https://ror.org/00gjr9m44', 'en', 1, 'https://ror.org/00gjr9m44 Amridge University'),
(22684, 'https://ror.org/05dm1m153', 'es', 1, 'https://ror.org/05dm1m153 International University of America Universidad Internacional de América'),
(22685, 'https://ror.org/05x0fca68', 'en', 1, 'https://ror.org/05x0fca68 Universidad de Navojoa University of Navojoa'),
(22686, 'https://ror.org/015h3ax78', 'en', 1, 'https://ror.org/015h3ax78 Trevecca Nazarene University'),
(22687, 'https://ror.org/058znsm64', 'en', 1, 'https://ror.org/058znsm64 Bluefields Indian and Caribbean University'),
(22688, 'https://ror.org/0501n4373', 'es', 1, 'https://ror.org/0501n4373 Grupo Universitario Modelo'),
(22689, 'https://ror.org/02qchka04', 'es', 1, 'https://ror.org/02qchka04 Instituto Universitario de Oaxaca'),
(22690, 'https://ror.org/00epbww69', 'en', 1, 'https://ror.org/00epbww69 Patten University'),
(22691, 'https://ror.org/01pj4rr81', 'en', 1, 'https://ror.org/01pj4rr81 Mid-America Christian University'),
(22692, 'https://ror.org/00sb61x57', 'es', 1, 'https://ror.org/00sb61x57 Universidad Lucerna'),
(22693, 'https://ror.org/034sakr12', 'es', 1, 'https://ror.org/034sakr12 Universidad Anahuac Oaxaca'),
(22694, 'https://ror.org/02wmzx058', 'es', 1, 'https://ror.org/02wmzx058 Universidad José Vasconcelos de Oaxaca'),
(22695, 'https://ror.org/04c7brx88', 'es', 1, 'https://ror.org/04c7brx88 Centro Universitario de Coatzacoalcos'),
(22696, 'https://ror.org/05xpg8a23', 'en', 1, 'https://ror.org/05xpg8a23 Grace University'),
(22697, 'https://ror.org/01eaxze48', 'en', 1, 'https://ror.org/01eaxze48 Catholic University of Dry Tropic Farming and Livestock Universidad Católica del Trópico Seco'),
(22698, 'https://ror.org/057ngt219', 'es', 1, 'https://ror.org/057ngt219 Universidad de Sotavento'),
(22699, 'https://ror.org/0084en736', 'es', 1, 'https://ror.org/0084en736 Universidad Regional del Sureste'),
(22700, 'https://ror.org/04xx19x53', 'es', 1, 'https://ror.org/04xx19x53 Universidad del Sureste'),
(22701, 'https://ror.org/04ft55h12', 'es', 1, 'https://ror.org/04ft55h12 Universidad del Norte de Nicaragua'),
(22702, 'https://ror.org/01axmcb72', 'es', 1, 'https://ror.org/01axmcb72 Universidad Dorados'),
(22703, 'https://ror.org/05s8ae250', 'es', 1, 'https://ror.org/05s8ae250 American Isthmus University Universidad Istmo Americana'),
(22704, 'https://ror.org/03m7qwy32', 'en', 1, 'https://ror.org/03m7qwy32 William Penn University'),
(22705, 'https://ror.org/02djp1y08', 'es', 1, 'https://ror.org/02djp1y08 Universidad Tajín'),
(22706, 'https://ror.org/02bzvpv63', 'es', 1, 'https://ror.org/02bzvpv63 Universidad Autónoma del Pacífico'),
(22707, 'https://ror.org/05m031e17', 'en', 1, 'https://ror.org/05m031e17 Universidad de Cienfuegos University of Cienfuegos'),
(22708, 'https://ror.org/056az9397', 'es', 1, 'https://ror.org/056az9397 Universidad Santo Tomas de Oriente y Medio Día'),
(22709, 'https://ror.org/015ahgd08', 'en', 1, 'https://ror.org/015ahgd08 Brescia University'),
(22710, 'https://ror.org/03q8g2x76', 'es', 1, 'https://ror.org/03q8g2x76 Universidad Cristiana Autónoma de Nicaragua'),
(22711, 'https://ror.org/002rcs021', 'es', 1, 'https://ror.org/002rcs021 Universidad Partenón de Cozumel'),
(22712, 'https://ror.org/031y39h26', 'es', 1, 'https://ror.org/031y39h26 Universidad del Valle de Orizaba'),
(22713, 'https://ror.org/03wa0f361', 'es', 1, 'https://ror.org/03wa0f361 Instituto Latinoamericano de Computación'),
(22714, 'https://ror.org/05a9wb080', 'es', 1, 'https://ror.org/05a9wb080 Universidad Adventista de Nicaragua'),
(22715, 'https://ror.org/016aq4f67', 'es', 1, 'https://ror.org/016aq4f67 Centro de Estudios Universitarios Horacio Zuñiga'),
(22716, 'https://ror.org/05bf5jb12', 'es', 1, 'https://ror.org/05bf5jb12 Universidad Alzate de Ozumba'),
(22717, 'https://ror.org/00m0tz504', 'en', 1, 'https://ror.org/00m0tz504 Central University of Nicaragua Universidad Central de Nicaragua'),
(22718, 'https://ror.org/04zccg612', 'es', 1, 'https://ror.org/04zccg612 Universidad Centroamericana de Ciencias Empresariales'),
(22719, 'https://ror.org/0351rxv20', 'en', 1, 'https://ror.org/0351rxv20 Universidad de Ciencias Comerciales University of Commercial Sciences'),
(22720, 'https://ror.org/00fn3n594', 'es', 1, 'https://ror.org/00fn3n594 Centro Universitario Hidalguense'),
(22721, 'https://ror.org/05radvt19', 'en', 1, 'https://ror.org/05radvt19 University of Hawaii–West Oahu'),
(22722, 'https://ror.org/00nrr4d03', 'es', 1, 'https://ror.org/00nrr4d03 Universidad de Cuautitlán Izcalli'),
(22723, 'https://ror.org/0182jhx89', 'no_lang_code', 1, 'https://ror.org/0182jhx89 Dunlap-Stone University'),
(22724, 'https://ror.org/01ysbeb83', 'es', 1, 'https://ror.org/01ysbeb83 Universidad de Ciencias Pedagógicas José de la Luz Caballero'),
(22725, 'https://ror.org/03e398g80', 'es', 1, 'https://ror.org/03e398g80 Centro Universitario Americano del Estado de Morelos'),
(22726, 'https://ror.org/040w1dr55', 'en', 1, 'https://ror.org/040w1dr55 University of the Arts'),
(22727, 'https://ror.org/01xpzce83', 'es', 1, 'https://ror.org/01xpzce83 Centro Universitario Siglo XXI'),
(22728, 'https://ror.org/00z1pf798', 'es', 1, 'https://ror.org/00z1pf798 Universidad de Managua'),
(22729, 'https://ror.org/00y13f984', 'es', 1, 'https://ror.org/00y13f984 Universidad Científica Latinoamericana de Hidalgo'),
(22730, 'https://ror.org/017mfww27', 'en', 1, 'https://ror.org/017mfww27 Point Park University'),
(22731, 'https://ror.org/03c0n7870', 'es', 1, 'https://ror.org/03c0n7870 Universidad de Tecnología y Comercio'),
(22732, 'https://ror.org/01nvgv947', 'es', 1, 'https://ror.org/01nvgv947 Universidad Evangelica Nicaraguense'),
(22733, 'https://ror.org/001m8k465', 'es', 1, 'https://ror.org/001m8k465 Universidad Iberoamericana de Ciencias y Tecnología'),
(22734, 'https://ror.org/02a7np905', 'es', 1, 'https://ror.org/02a7np905 Centro Universitario Latinoamericano de Morelos'),
(22735, 'https://ror.org/05r754v60', 'es', 1, 'https://ror.org/05r754v60 Universidad Autónoma de Piedras Negras'),
(22736, 'https://ror.org/04fcs7q74', 'es', 1, 'https://ror.org/04fcs7q74 Universidad de la Ciénega'),
(22737, 'https://ror.org/02cf9zs75', 'es', 1, 'https://ror.org/02cf9zs75 Universidad Americana de Morelos'),
(22738, 'https://ror.org/04wvr4b69', 'es', 1, 'https://ror.org/04wvr4b69 Universidad Internacional de la Integración de América Latina'),
(22739, 'https://ror.org/030jtw105', 'es', 1, 'https://ror.org/030jtw105 Universidad Cuauhnáhuac'),
(22740, 'https://ror.org/01deq2m43', 'es', 1, 'https://ror.org/01deq2m43 Universidad Del Valle De Cuernavaca'),
(22741, 'https://ror.org/0544vva66', 'es', 1, 'https://ror.org/0544vva66 Universidad Fray Luca Paccioli'),
(22742, 'https://ror.org/02fxyjz60', 'es', 1, 'https://ror.org/02fxyjz60 Universidad Interamericana'),
(22743, 'https://ror.org/057ckep42', 'es', 1, 'https://ror.org/057ckep42 Universidad Jean-Jacques Rousseau'),
(22744, 'https://ror.org/0150qbw95', 'es', 1, 'https://ror.org/0150qbw95 Universidad Mexicana de Educación a Distancia'),
(22745, 'https://ror.org/0573cnq15', 'es', 1, 'https://ror.org/0573cnq15 Instituto Superior Politécnico José Antonio Echeverría Polytechnic José Antonio Echeverría'),
(22746, 'https://ror.org/04xf6c905', 'en', 1, 'https://ror.org/04xf6c905 Northcentral University'),
(22747, 'https://ror.org/00brc6r59', 'en', 1, 'https://ror.org/00brc6r59 National University of Engineering Universidad Nacional de Ingeniería'),
(22748, 'https://ror.org/02s2a9m37', 'en', 1, 'https://ror.org/02s2a9m37 Agricultural University of Havana'),
(22749, 'https://ror.org/0106sxj39', 'es', 1, 'https://ror.org/0106sxj39 Universidad Casa Blanca'),
(22750, 'https://ror.org/01bxyhb88', 'en', 1, 'https://ror.org/01bxyhb88 Nicaraguan University of Science and Technology Universidad Nicaragüense de Ciencia y Tecnologia'),
(22751, 'https://ror.org/022camr20', 'en', 1, 'https://ror.org/022camr20 Universidad de las Ciencias Informáticas University of Information Science'),
(22752, 'https://ror.org/05jnqz832', 'es', 1, 'https://ror.org/05jnqz832 Catholic University of Culiacan Universidad Católica de Culiacán'),
(22753, 'https://ror.org/04ea6sw58', 'es', 1, 'https://ror.org/04ea6sw58 Universidad Nicaragüense de Estudios Humanisticos'),
(22754, 'https://ror.org/04b9js332', 'es', 1, 'https://ror.org/04b9js332 Universidad de San Miguel'),
(22755, 'https://ror.org/051vg7x60', 'en', 1, 'https://ror.org/051vg7x60 Simpson University'),
(22756, 'https://ror.org/02sghbs34', 'en', 1, 'https://ror.org/02sghbs34 University of Rio Grande and Rio Grande Community College');
INSERT INTO `rors` VALUES
(22757, 'https://ror.org/02wk2dc91', 'en', 1, 'https://ror.org/02wk2dc91 William Jessup University'),
(22758, 'https://ror.org/01pkd0t05', 'es', 1, 'https://ror.org/01pkd0t05 Colegio Libre de Estudios Universitarios'),
(22759, 'https://ror.org/045k6gy12', 'es', 1, 'https://ror.org/045k6gy12 Instituto Universitario Anglo Español'),
(22760, 'https://ror.org/00grdkt08', 'es', 1, 'https://ror.org/00grdkt08 Universidad Técnica de Comercio'),
(22761, 'https://ror.org/04wd2n987', 'en', 1, 'https://ror.org/04wd2n987 Autonomous University of Durango Universidad Autónoma de Durango'),
(22762, 'https://ror.org/008rn4f38', 'es', 1, 'https://ror.org/008rn4f38 Universidad Tecnológica Nicaragüense'),
(22763, 'https://ror.org/01xhcza12', 'en', 1, 'https://ror.org/01xhcza12 University of the West'),
(22764, 'https://ror.org/02vg7rh06', 'es', 1, 'https://ror.org/02vg7rh06 Thomas More Universitas Universidad Thomas More'),
(22765, 'https://ror.org/03gtw5096', 'es', 1, 'https://ror.org/03gtw5096 Universidad Xilotzingo'),
(22766, 'https://ror.org/054phan86', 'en', 1, 'https://ror.org/054phan86 Independence University'),
(22767, 'https://ror.org/022qam104', 'es', 1, 'https://ror.org/022qam104 Spanish Autonomous University of Durango Universidad Autónoma España de Durango'),
(22768, 'https://ror.org/02drgk151', 'en', 1, 'https://ror.org/02drgk151 Coleman University'),
(22769, 'https://ror.org/04jr0a134', 'en', 1, 'https://ror.org/04jr0a134 Academy of Art University'),
(22770, 'https://ror.org/01t573x46', 'es', 1, 'https://ror.org/01t573x46 Universidad del Valle de Guadiana'),
(22771, 'https://ror.org/002gezp78', 'es', 1, 'https://ror.org/002gezp78 Instituto Universitario de Tecnologia y Humanidades'),
(22772, 'https://ror.org/04p2g8a33', 'es', 1, 'https://ror.org/04p2g8a33 Instituto Universitario Puebla'),
(22773, 'https://ror.org/05vm4ac48', 'es', 1, 'https://ror.org/05vm4ac48 Universidad Alva Edison'),
(22774, 'https://ror.org/02t22fn57', 'es', 1, 'https://ror.org/02t22fn57 Universidad Anglohispanomexicana'),
(22775, 'https://ror.org/04ny3nx36', 'es', 1, 'https://ror.org/04ny3nx36 Universidad Benito Juárez García'),
(22776, 'https://ror.org/04vq0vq60', 'es', 1, 'https://ror.org/04vq0vq60 Universidad Estatal del Valle de Ecatepec'),
(22777, 'https://ror.org/032tej786', 'es', 1, 'https://ror.org/032tej786 Centro Universitario Oparin'),
(22778, 'https://ror.org/05d6fm330', 'es', 1, 'https://ror.org/05d6fm330 Universidad Privada del Estado de México'),
(22779, 'https://ror.org/03z59cm68', 'en', 1, 'https://ror.org/03z59cm68 Henley-Putnam School of Strategic Security'),
(22780, 'https://ror.org/04axt3e70', 'en', 1, 'https://ror.org/04axt3e70 Autonomous Intercultural University of Sinaloa Universidad Autónoma Intercultural de Sinaloa'),
(22781, 'https://ror.org/007chxf81', 'en', 1, 'https://ror.org/007chxf81 Universidad de Pinar del Río University of Pinar del Río'),
(22782, 'https://ror.org/00zy9qe71', 'en', 1, 'https://ror.org/00zy9qe71 Centro de Estudios Universitarios Xochicalco Xochicalco University'),
(22783, 'https://ror.org/04jk6hn97', 'en', 1, 'https://ror.org/04jk6hn97 Silicon Valley University Universidad de Silicon Valley'),
(22784, 'https://ror.org/05k19bk82', 'es', 1, 'https://ror.org/05k19bk82 Universidad Cristiana de Panamá'),
(22785, 'https://ror.org/039emag51', 'es', 1, 'https://ror.org/039emag51 Autonomous University of Fresnillo Universidad Autónoma de Fresnillo'),
(22786, 'https://ror.org/01z110311', 'es', 1, 'https://ror.org/01z110311 Universidad Especializada de las Américas'),
(22787, 'https://ror.org/04dz93c71', 'es', 1, 'https://ror.org/04dz93c71 Universidad Central de México'),
(22788, 'https://ror.org/05fheeb41', 'en', 1, 'https://ror.org/05fheeb41 Universidad de Sancti Spíritus José Martí Pérez University of Sancti Spíritus José Martí Pérez'),
(22789, 'https://ror.org/039n74540', 'es', 1, 'https://ror.org/039n74540 Centro Universitario de Occidente'),
(22790, 'https://ror.org/03k9hrc16', 'en', 1, 'https://ror.org/03k9hrc16 Florida State University-Panama'),
(22791, 'https://ror.org/01r99ca40', 'es', 1, 'https://ror.org/01r99ca40 Universidad Abierta y a Distancia de Panamá'),
(22792, 'https://ror.org/01yczqg15', 'es', 1, 'https://ror.org/01yczqg15 Universidad Enrique Díaz de León'),
(22793, 'https://ror.org/03m1s4j75', 'es', 1, 'https://ror.org/03m1s4j75 Universidad de Oriente'),
(22794, 'https://ror.org/02rsx0d74', 'es', 1, 'https://ror.org/02rsx0d74 Universidad de Puebla'),
(22795, 'https://ror.org/05xrt2s12', 'es', 1, 'https://ror.org/05xrt2s12 Universidad del Desarrollo del Estado de Puebla'),
(22796, 'https://ror.org/01eyjev41', 'es', 1, 'https://ror.org/01eyjev41 Universidad Europea'),
(22797, 'https://ror.org/03rsfqa52', 'es', 1, 'https://ror.org/03rsfqa52 Universidad de Especialidades'),
(22798, 'https://ror.org/044ypyq07', 'es', 1, 'https://ror.org/044ypyq07 Universidad Hispana'),
(22799, 'https://ror.org/01rdh6z55', 'en', 1, 'https://ror.org/01rdh6z55 Columbus University'),
(22800, 'https://ror.org/007m7ww56', 'es', 1, 'https://ror.org/007m7ww56 Lamar Universidad'),
(22801, 'https://ror.org/031m3tz43', 'es', 1, 'https://ror.org/031m3tz43 Universidad Mesoamericana'),
(22802, 'https://ror.org/047qtjs73', 'es', 1, 'https://ror.org/047qtjs73 Universidad Metropolitana Latin Campus'),
(22803, 'https://ror.org/016k08642', 'es', 1, 'https://ror.org/016k08642 Universidad Sämann de Jalisco'),
(22804, 'https://ror.org/04htacw13', 'es', 1, 'https://ror.org/04htacw13 Universidad Politécnica Hispano Mexicana'),
(22805, 'https://ror.org/03y42nm11', 'es', 1, 'https://ror.org/03y42nm11 Universidad de Ciencias Pedagógicas Félix Varela Morales'),
(22806, 'https://ror.org/00njxm476', 'es', 1, 'https://ror.org/00njxm476 Universidad Popular Autónoma del Estado de Puebla'),
(22807, 'https://ror.org/05fnph064', 'es', 1, 'https://ror.org/05fnph064 Universidad Realística de México'),
(22808, 'https://ror.org/03hhd1t97', 'es', 1, 'https://ror.org/03hhd1t97 Universidad Tec De Oriente'),
(22809, 'https://ror.org/03cj80e19', 'es', 1, 'https://ror.org/03cj80e19 Universitario Bauhaus'),
(22810, 'https://ror.org/05e812q79', 'es', 1, 'https://ror.org/05e812q79 Universidad Católica Tecnológica de Barahona'),
(22811, 'https://ror.org/00erejq84', 'es', 1, 'https://ror.org/00erejq84 Universidad Univer'),
(22812, 'https://ror.org/05myvyk91', 'es', 1, 'https://ror.org/05myvyk91 Universidad del Arte Ganexa'),
(22813, 'https://ror.org/00kyx8y88', 'es', 1, 'https://ror.org/00kyx8y88 Universidad del Mar'),
(22814, 'https://ror.org/05hjjhn63', 'es', 1, 'https://ror.org/05hjjhn63 Centro de Estudios Universitarios Arkos'),
(22815, 'https://ror.org/01kyn4312', 'es', 1, 'https://ror.org/01kyn4312 Universidad Agroforestal Fernando Arturo de Meriño'),
(22816, 'https://ror.org/0085ewn55', 'es', 1, 'https://ror.org/0085ewn55 Universidad del Istmo University of the Isthmus'),
(22817, 'https://ror.org/026s89d26', 'en', 1, 'https://ror.org/026s89d26 William Howard Taft University'),
(22818, 'https://ror.org/0358d0w14', 'en', 1, 'https://ror.org/0358d0w14 Antioch University Santa Barbara'),
(22819, 'https://ror.org/000mgxg22', 'es', 1, 'https://ror.org/000mgxg22 Universidad Anáhuac Querétaro'),
(22820, 'https://ror.org/054tzxc20', 'es', 1, 'https://ror.org/054tzxc20 Universidad Católica Nordestana'),
(22821, 'https://ror.org/025d3w458', 'es', 1, 'https://ror.org/025d3w458 Universidad Interamericana de Educación a Distancia de Panamá'),
(22822, 'https://ror.org/044jexg93', 'es', 1, 'https://ror.org/044jexg93 Universidad Contemporánea'),
(22823, 'https://ror.org/03grmx823', 'es', 1, 'https://ror.org/03grmx823 Universidad Interamericana de Panamá'),
(22824, 'https://ror.org/03chmh893', 'es', 1, 'https://ror.org/03chmh893 Universidad Santa Fe'),
(22825, 'https://ror.org/03myyx716', 'es', 1, 'https://ror.org/03myyx716 Universidad ISA'),
(22826, 'https://ror.org/0019g1982', 'es', 1, 'https://ror.org/0019g1982 Universidad de Hermosillo'),
(22827, 'https://ror.org/042xekv98', 'es', 1, 'https://ror.org/042xekv98 Universidad Tamaulipeca'),
(22828, 'https://ror.org/02ahky613', 'es', 1, 'https://ror.org/02ahky613 Northeastern University Universidad del Noreste'),
(22829, 'https://ror.org/04en6gs70', 'es', 1, 'https://ror.org/04en6gs70 Universidad Kino'),
(22830, 'https://ror.org/04x8q5j40', 'es', 1, 'https://ror.org/04x8q5j40 Technological University of Hermosillo Universidad Tecnológica de Hermosillo'),
(22831, 'https://ror.org/05jthsa98', 'es', 1, 'https://ror.org/05jthsa98 Universidad Abierta Para Adultos'),
(22832, 'https://ror.org/058gcv483', 'en', 1, 'https://ror.org/058gcv483 Antioch University Seattle'),
(22833, 'https://ror.org/03nvtfm43', 'en', 1, 'https://ror.org/03nvtfm43 Concordia University'),
(22834, 'https://ror.org/03f08pf79', 'en', 1, 'https://ror.org/03f08pf79 St. Gregory''s University'),
(22835, 'https://ror.org/00w62r976', 'en', 1, 'https://ror.org/00w62r976 Briar Cliff University'),
(22836, 'https://ror.org/0138bxv06', 'es', 1, 'https://ror.org/0138bxv06 Centro Universitario Luis Donaldo Colosio Murrieta'),
(22837, 'https://ror.org/04dxan340', 'en', 1, 'https://ror.org/04dxan340 Neumont University'),
(22838, 'https://ror.org/02c6xtt27', 'en', 1, 'https://ror.org/02c6xtt27 University of East-West Medicine'),
(22839, 'https://ror.org/01v9kmn87', 'es', 1, 'https://ror.org/01v9kmn87 Centro Universitario Vasco de Quiroga de Huejutla'),
(22840, 'https://ror.org/03wb76824', 'es', 1, 'https://ror.org/03wb76824 The New World University Universidad Nuevo Mundo'),
(22841, 'https://ror.org/02e4cmf45', 'es', 1, 'https://ror.org/02e4cmf45 Universidad Liceo Cervantino'),
(22842, 'https://ror.org/00taf6c38', 'es', 1, 'https://ror.org/00taf6c38 Instituto Superior de Formación Docente Salomé Ureña'),
(22843, 'https://ror.org/05d8vt634', 'en', 1, 'https://ror.org/05d8vt634 Harrison Middleton University'),
(22844, 'https://ror.org/01bqp7k56', 'en', 1, 'https://ror.org/01bqp7k56 University of Advancing Technology'),
(22845, 'https://ror.org/05kkct931', 'es', 1, 'https://ror.org/05kkct931 Universidad APEC Universidad Acción Pro-Educación y Cultura'),
(22846, 'https://ror.org/0263kr214', 'es', 1, 'https://ror.org/0263kr214 Universidad del Valle de Santiago'),
(22847, 'https://ror.org/00v9kaj80', 'es', 1, 'https://ror.org/00v9kaj80 Universidad México Contemporáneo'),
(22848, 'https://ror.org/04b28td81', 'en', 1, 'https://ror.org/04b28td81 Latin University of Panama Universidad Latina de Panamá'),
(22849, 'https://ror.org/03wz3nt64', 'es', 1, 'https://ror.org/03wz3nt64 Universidad Autónoma del Noreste'),
(22850, 'https://ror.org/05vr9w866', 'en', 1, 'https://ror.org/05vr9w866 Latin American University of Science and Technology Universidad Latinoamericana de Ciencia y Tecnología'),
(22851, 'https://ror.org/02c5he528', 'en', 1, 'https://ror.org/02c5he528 International Maritime University of Panama Universidad Marítima Internacional de Panamá'),
(22852, 'https://ror.org/040hyy284', 'es', 1, 'https://ror.org/040hyy284 Universidad Experimental Felix Adam Universidad Experimental Félix Adam'),
(22853, 'https://ror.org/0053y3939', 'es', 1, 'https://ror.org/0053y3939 Universidad del Futbol y Ciencias del Deporte'),
(22854, 'https://ror.org/0250q0m17', 'es', 1, 'https://ror.org/0250q0m17 Universidad Interamericana'),
(22855, 'https://ror.org/03ad1cn37', 'es', 1, 'https://ror.org/03ad1cn37 Universidad Nacional Pedro Henríquez Ureña'),
(22856, 'https://ror.org/02p6gmn22', 'es', 1, 'https://ror.org/02p6gmn22 Universidad Anáhuac Puebla'),
(22857, 'https://ror.org/02k7ven88', 'es', 1, 'https://ror.org/02k7ven88 Universidad Metropolitana del Centro'),
(22858, 'https://ror.org/017g3c465', 'es', 1, 'https://ror.org/017g3c465 Universidad Metropolitana de Ciencia y Tecnología'),
(22859, 'https://ror.org/00mq34s35', 'es', 1, 'https://ror.org/00mq34s35 Universidad de Los Altos de Chiapas'),
(22860, 'https://ror.org/01vyn2554', 'en', 1, 'https://ror.org/01vyn2554 Universidad del Caribe del Sur University of the Southern Caribbean Université de la caraïbe du sud'),
(22861, 'https://ror.org/04rhjk233', 'es', 1, 'https://ror.org/04rhjk233 Universidad Instituto Nacional de Ciencias Exactas'),
(22862, 'https://ror.org/040p70661', 'es', 1, 'https://ror.org/040p70661 Universidad Intercultural de Chiapas'),
(22863, 'https://ror.org/018zgbn57', 'es', 1, 'https://ror.org/018zgbn57 Universidad del Istmo'),
(22864, 'https://ror.org/01ggm0w72', 'es', 1, 'https://ror.org/01ggm0w72 Universidad Internacional de La Paz'),
(22865, 'https://ror.org/043h8xk50', 'es', 1, 'https://ror.org/043h8xk50 Universidad Maya'),
(22866, 'https://ror.org/05kvc3j25', 'es', 1, 'https://ror.org/05kvc3j25 Universidad Mundial'),
(22867, 'https://ror.org/004kq1w56', 'en', 1, 'https://ror.org/004kq1w56 Mesoamerican University Universidad Mesoamericana'),
(22868, 'https://ror.org/02e7h1n39', 'es', 1, 'https://ror.org/02e7h1n39 Universidad Intercultural del Estado de México'),
(22869, 'https://ror.org/043xyyp36', 'en', 1, 'https://ror.org/043xyyp36 Bethesda University'),
(22870, 'https://ror.org/0197qh103', 'en', 1, 'https://ror.org/0197qh103 South Baylo University'),
(22871, 'https://ror.org/02kpy6370', 'es', 1, 'https://ror.org/02kpy6370 Universidad Alfred Nobel de Mexico'),
(22872, 'https://ror.org/04szbq460', 'es', 1, 'https://ror.org/04szbq460 Universidad Abierta'),
(22873, 'https://ror.org/02g236n66', 'fr', 1, 'https://ror.org/02g236n66 Université Roi Henri Christophe'),
(22874, 'https://ror.org/00rkfyy45', 'en', 1, 'https://ror.org/00rkfyy45 Ohio Valley University Université de la vallée de l''ohio'),
(22875, 'https://ror.org/00x835z16', 'fr', 1, 'https://ror.org/00x835z16 Université Chrétienne du Nord d’Haïti'),
(22876, 'https://ror.org/04eeb2398', 'en', 1, 'https://ror.org/04eeb2398 Post University'),
(22877, 'https://ror.org/05jz3sn81', 'en', 1, 'https://ror.org/05jz3sn81 University of the Cumberlands'),
(22878, 'https://ror.org/051nhdr80', 'es', 1, 'https://ror.org/051nhdr80 Universidad del Centro de México'),
(22879, 'https://ror.org/04hx5st34', 'en', 1, 'https://ror.org/04hx5st34 University of Virginia''s College at Wise'),
(22880, 'https://ror.org/024et1e33', 'en', 1, 'https://ror.org/024et1e33 Polytechnic University of San Luis Potosí Universidad Politécnica de San Luis Potosí'),
(22881, 'https://ror.org/01fvz3c20', 'es', 1, 'https://ror.org/01fvz3c20 Universidad del Valle del Fuerte'),
(22882, 'https://ror.org/02g21fq05', 'fr', 1, 'https://ror.org/02g21fq05 Institut des Hautes Études Commerciales et Économiques'),
(22883, 'https://ror.org/04s3hp788', 'es', 1, 'https://ror.org/04s3hp788 Centro Universitario del Noreste'),
(22884, 'https://ror.org/02d75a424', 'en', 1, 'https://ror.org/02d75a424 University of Management and Technology'),
(22885, 'https://ror.org/043gn8060', 'en', 1, 'https://ror.org/043gn8060 Adventist University of Haiti Université Adventiste d''Haïti'),
(22886, 'https://ror.org/041gqhg24', 'en', 1, 'https://ror.org/041gqhg24 University of Maine at Augusta'),
(22887, 'https://ror.org/05yh2rr37', 'en', 1, 'https://ror.org/05yh2rr37 Caribbean University Université Caraïbe'),
(22888, 'https://ror.org/028177t76', 'en', 1, 'https://ror.org/028177t76 Concordia University Texas Universidad Concordia Texas'),
(22889, 'https://ror.org/023cpce20', 'en', 1, 'https://ror.org/023cpce20 Universidad Internacional Webber Webber International University'),
(22890, 'https://ror.org/044evsy53', 'es', 1, 'https://ror.org/044evsy53 Universidad San Pablo'),
(22891, 'https://ror.org/0072e5x58', 'fr', 1, 'https://ror.org/0072e5x58 University Notre Dame of Haiti Université Notre Dame d''Haïti'),
(22892, 'https://ror.org/05twga530', 'en', 1, 'https://ror.org/05twga530 Oklahoma Wesleyan University'),
(22893, 'https://ror.org/058cq2c73', 'es', 1, 'https://ror.org/058cq2c73 Centro Universitario de Sonora'),
(22894, 'https://ror.org/02tq8vz07', 'en', 1, 'https://ror.org/02tq8vz07 Quisqueya University Université Quisqueya'),
(22895, 'https://ror.org/05b51m931', 'es', 1, 'https://ror.org/05b51m931 Universidad Nacional de Agricultura'),
(22896, 'https://ror.org/00dtsyq89', 'es', 1, 'https://ror.org/00dtsyq89 Universidad Pedro de Gante'),
(22897, 'https://ror.org/05p9dka41', 'es', 1, 'https://ror.org/05p9dka41 Universidad de Matehuala'),
(22898, 'https://ror.org/00sy2m382', 'es', 1, 'https://ror.org/00sy2m382 Instituto Universitario Escuela Superior de Economía y Administración de Empresas'),
(22899, 'https://ror.org/0473v0343', 'es', 1, 'https://ror.org/0473v0343 Center of Higher University Studies Centro de Estudios Superiores Universitarios'),
(22900, 'https://ror.org/05xw5kw49', 'es', 1, 'https://ror.org/05xw5kw49 Universidad de Tamazunchale'),
(22901, 'https://ror.org/05t6bf545', 'es', 1, 'https://ror.org/05t6bf545 Centro Universitario Interamericano'),
(22902, 'https://ror.org/04qgx7b19', 'es', 1, 'https://ror.org/04qgx7b19 Universidad de Relaciones y Estudios Internacionales'),
(22903, 'https://ror.org/001nq7s39', 'en', 1, 'https://ror.org/001nq7s39 American Jewish University'),
(22904, 'https://ror.org/03t1bjt91', 'es', 1, 'https://ror.org/03t1bjt91 Universidad del Golfo'),
(22905, 'https://ror.org/0436xg366', 'es', 1, 'https://ror.org/0436xg366 Instituto Universitario de Ciencias de la Salud - Fundación Héctor A. Barceló'),
(22906, 'https://ror.org/0384p7414', 'es', 1, 'https://ror.org/0384p7414 Instituto Universitario de la Policía Federal Argentina'),
(22907, 'https://ror.org/05hpc6k82', 'es', 1, 'https://ror.org/05hpc6k82 Universidad Marista de Mérida'),
(22908, 'https://ror.org/057pbd488', 'es', 1, 'https://ror.org/057pbd488 Universidad Mesoamericana de San Agustín'),
(22909, 'https://ror.org/01ykn4h51', 'es', 1, 'https://ror.org/01ykn4h51 Universidad del Soconusco'),
(22910, 'https://ror.org/0029df882', 'es', 1, 'https://ror.org/0029df882 Universidad Modelo'),
(22911, 'https://ror.org/03cqn2k13', 'es', 1, 'https://ror.org/03cqn2k13 Universidad del Tacana'),
(22912, 'https://ror.org/03nm76w91', 'es', 1, 'https://ror.org/03nm76w91 Universidad Instituto Universitario del Estado de México'),
(22913, 'https://ror.org/03wwbgv53', 'es', 1, 'https://ror.org/03wwbgv53 Escuela Argentina de Negocios'),
(22914, 'https://ror.org/02f3t1d20', 'es', 1, 'https://ror.org/02f3t1d20 Instituto Universitario Franco Inglés de México'),
(22915, 'https://ror.org/05dx64395', 'en', 1, 'https://ror.org/05dx64395 National University of the Arts Universidad Nacional de las Artes'),
(22916, 'https://ror.org/05qj15q72', 'en', 1, 'https://ror.org/05qj15q72 Southwestern Christian University'),
(22917, 'https://ror.org/05t9gqf54', 'en', 1, 'https://ror.org/05t9gqf54 New Charter University'),
(22918, 'https://ror.org/02w7b8538', 'es', 1, 'https://ror.org/02w7b8538 Centro Universitario de Tenango del Valle'),
(22919, 'https://ror.org/03e47dk66', 'es', 1, 'https://ror.org/03e47dk66 Universidad Argentina John F. Kennedy'),
(22920, 'https://ror.org/05rqdkd73', 'es', 1, 'https://ror.org/05rqdkd73 Centro Universitario Columbia'),
(22921, 'https://ror.org/000rhjc77', 'es', 1, 'https://ror.org/000rhjc77 Universidad Centro de Altos Estudios en Ciencias Exactas'),
(22922, 'https://ror.org/015jgm839', 'es', 1, 'https://ror.org/015jgm839 Centro Universitario Emmanuel Kant'),
(22923, 'https://ror.org/03n2yg143', 'es', 1, 'https://ror.org/03n2yg143 Centro Universitario en Periodismo y Publicidad'),
(22924, 'https://ror.org/00v2tva64', 'es', 1, 'https://ror.org/00v2tva64 Centro de Estudios Universitarios de Baja California'),
(22925, 'https://ror.org/03v5ycz03', 'en', 1, 'https://ror.org/03v5ycz03 Universidad de Belgrano University of Belgrano Université de belgrano'),
(22926, 'https://ror.org/02gj0v433', 'en', 1, 'https://ror.org/02gj0v433 Gardner–Webb University'),
(22927, 'https://ror.org/03qsw6f66', 'es', 1, 'https://ror.org/03qsw6f66 Universidad del Alica'),
(22928, 'https://ror.org/02hsdts66', 'es', 1, 'https://ror.org/02hsdts66 Universidad de Flores'),
(22929, 'https://ror.org/03wgh3441', 'es', 1, 'https://ror.org/03wgh3441 Colegio Francés Hidalgo de México'),
(22930, 'https://ror.org/03g867362', 'es', 1, 'https://ror.org/03g867362 Universidad de la Marina Mercante'),
(22931, 'https://ror.org/016b8st17', 'es', 1, 'https://ror.org/016b8st17 Universidad Vizcaya de las Américas'),
(22932, 'https://ror.org/04j3tef82', 'es', 1, 'https://ror.org/04j3tef82 Centro Universitario Incarnate Word'),
(22933, 'https://ror.org/02nv68711', 'es', 1, 'https://ror.org/02nv68711 Universidad del Cine'),
(22934, 'https://ror.org/02gqhnf32', 'es', 1, 'https://ror.org/02gqhnf32 Centro Universitario Oriente de México'),
(22935, 'https://ror.org/02n094r49', 'en', 1, 'https://ror.org/02n094r49 Universidad del Museo Social Argentino University of Argentine Social Museum'),
(22936, 'https://ror.org/04v9get85', 'es', 1, 'https://ror.org/04v9get85 Centro Universitario Patria'),
(22937, 'https://ror.org/013fs2498', 'en', 1, 'https://ror.org/013fs2498 Woodbury University'),
(22938, 'https://ror.org/03jfhm487', 'en', 1, 'https://ror.org/03jfhm487 National University of Chilecito Universidad Nacional de Chilecito'),
(22939, 'https://ror.org/00b37sa87', 'es', 1, 'https://ror.org/00b37sa87 Universidad de Concepción del Uruguay'),
(22940, 'https://ror.org/02p303e31', 'es', 1, 'https://ror.org/02p303e31 Universidad Tecnológica Iberoamericana'),
(22941, 'https://ror.org/054s7hj41', 'en', 1, 'https://ror.org/054s7hj41 Jones International University'),
(22942, 'https://ror.org/00d7rqp94', 'es', 1, 'https://ror.org/00d7rqp94 Universidad de la Cuenca del Plata University of Cuenca del Plata'),
(22943, 'https://ror.org/05wrc0w56', 'en', 1, 'https://ror.org/05wrc0w56 National University of Formosa Universidad Nacional de Formosa'),
(22944, 'https://ror.org/02nf34254', 'en', 1, 'https://ror.org/02nf34254 Queens University of Charlotte'),
(22945, 'https://ror.org/04hdj2902', 'en', 1, 'https://ror.org/04hdj2902 Tennessee Temple University'),
(22946, 'https://ror.org/030b93p62', 'es', 1, 'https://ror.org/030b93p62 Universidad Champagnat'),
(22947, 'https://ror.org/038t6d126', 'es', 1, 'https://ror.org/038t6d126 Instituto Universitario Aeronáutico'),
(22948, 'https://ror.org/03z0f3m78', 'es', 1, 'https://ror.org/03z0f3m78 Universidad del Pacífico'),
(22949, 'https://ror.org/004nxe453', 'es', 1, 'https://ror.org/004nxe453 Universidad Evangélica del Paraguay'),
(22950, 'https://ror.org/02arzvn48', 'es', 1, 'https://ror.org/02arzvn48 Instituto de Ciencias Tecnológicas'),
(22951, 'https://ror.org/01j3b2975', 'es', 1, 'https://ror.org/01j3b2975 Universidad Metropolitana de Asunción'),
(22952, 'https://ror.org/04jyjz861', 'pt', 1, 'https://ror.org/04jyjz861 Centro Universitário Módulo'),
(22953, 'https://ror.org/03k552p43', 'es', 1, 'https://ror.org/03k552p43 Universidad Católica de La Plata'),
(22954, 'https://ror.org/03r487h15', 'es', 1, 'https://ror.org/03r487h15 Universidad Notarial Argentina'),
(22955, 'https://ror.org/0122g5k54', 'pt', 1, 'https://ror.org/0122g5k54 Centro Universitário de Caratinga'),
(22956, 'https://ror.org/00mkdrs62', 'es', 1, 'https://ror.org/00mkdrs62 Universidad Politécnica y Artística del Paraguay'),
(22957, 'https://ror.org/05tv4xd72', 'es', 1, 'https://ror.org/05tv4xd72 Universidad Tecnológica Intercontinental'),
(22958, 'https://ror.org/00xwv4z20', 'es', 1, 'https://ror.org/00xwv4z20 Universidad Nacional del Este'),
(22959, 'https://ror.org/0371t1780', 'es', 1, 'https://ror.org/0371t1780 Universidad Nacional de Itapúa'),
(22960, 'https://ror.org/03p5xhb29', 'es', 1, 'https://ror.org/03p5xhb29 Universidad Nacional de Pilar'),
(22961, 'https://ror.org/013m3my89', 'es', 1, 'https://ror.org/013m3my89 Universidad Nacional Micaela Bastidas de Apurimac'),
(22962, 'https://ror.org/0030hgr47', 'es', 1, 'https://ror.org/0030hgr47 Universidad Nacional José María Arguedas'),
(22963, 'https://ror.org/01pxyx032', 'es', 1, 'https://ror.org/01pxyx032 Fundación Universitaria Colombo Internacional'),
(22964, 'https://ror.org/05yq37p91', 'pt', 1, 'https://ror.org/05yq37p91 Centro Universitário do Leste de Minas Gerais'),
(22965, 'https://ror.org/043vxnh96', 'en', 1, 'https://ror.org/043vxnh96 Universidade de Cruz Alta University of Cruz Alta'),
(22966, 'https://ror.org/03db1hz44', 'es', 1, 'https://ror.org/03db1hz44 Universidad Católica San Pablo'),
(22967, 'https://ror.org/03a5kqj07', 'pt', 1, 'https://ror.org/03a5kqj07 Centro Universitário Unirondon'),
(22968, 'https://ror.org/004fs0e42', 'en', 1, 'https://ror.org/004fs0e42 National University of Cajamarca Universidad Nacional de Cajamarca'),
(22969, 'https://ror.org/02k5yax48', 'es', 1, 'https://ror.org/02k5yax48 Universidad Rural de Guatemala'),
(22970, 'https://ror.org/05e2jbm26', 'es', 1, 'https://ror.org/05e2jbm26 Universidad Privada Antonio Guillermo Urrelo'),
(22971, 'https://ror.org/059hjnz30', 'es', 1, 'https://ror.org/059hjnz30 Fundación de Estudios Superiores Comfanorte Universidad FESC'),
(22972, 'https://ror.org/02rabtj57', 'es', 1, 'https://ror.org/02rabtj57 Instituto Profesional de Chile'),
(22973, 'https://ror.org/02dd4nc12', 'es', 1, 'https://ror.org/02dd4nc12 Centro Diocesano de Estudio y Reflexión'),
(22974, 'https://ror.org/01vwm8t51', 'en', 1, 'https://ror.org/01vwm8t51 Francisco de Paula Santander University Universidad Francisco de Paula Santander'),
(22975, 'https://ror.org/01yztcr70', 'pt', 1, 'https://ror.org/01yztcr70 Universidade de Cuiabá'),
(22976, 'https://ror.org/04wwz3282', 'en', 1, 'https://ror.org/04wwz3282 EIA University Universidad EIA'),
(22977, 'https://ror.org/029qjm428', 'es', 1, 'https://ror.org/029qjm428 Instituto Profesional de Ciencias de la Computación'),
(22978, 'https://ror.org/00x51ts23', 'pt', 1, 'https://ror.org/00x51ts23 Centro Universitário Campos de Andrade'),
(22979, 'https://ror.org/00r54sf44', 'es', 1, 'https://ror.org/00r54sf44 Universidad de Morón'),
(22980, 'https://ror.org/05jj6ma85', 'es', 1, 'https://ror.org/05jj6ma85 Institución Universitaria de Envigado'),
(22981, 'https://ror.org/029jgxb70', 'pt', 1, 'https://ror.org/029jgxb70 Centro Universitário Curitiba'),
(22982, 'https://ror.org/03aawc123', 'es', 1, 'https://ror.org/03aawc123 Fundación Universitaria del Espinal'),
(22983, 'https://ror.org/01h558915', 'es', 1, 'https://ror.org/01h558915 Universidad Católica Santo Toribio de Mogrovejo'),
(22984, 'https://ror.org/05qxc8r48', 'es', 1, 'https://ror.org/05qxc8r48 Instituto Profesional De Ciencias Y Artes'),
(22985, 'https://ror.org/046vjzm79', 'es', 1, 'https://ror.org/046vjzm79 Universidad Gastón Dachary'),
(22986, 'https://ror.org/01h1szm41', 'es', 1, 'https://ror.org/01h1szm41 Universidad de Chiclayo'),
(22987, 'https://ror.org/03e79yx85', 'es', 1, 'https://ror.org/03e79yx85 Instituto Tolimense de Formación Técnica Profesional'),
(22988, 'https://ror.org/02e8s3123', 'es', 1, 'https://ror.org/02e8s3123 Instituto Universitario Italiano de Rosario'),
(22989, 'https://ror.org/05p4rzq96', 'es', 1, 'https://ror.org/05p4rzq96 Universidad Señor de Sipán'),
(22990, 'https://ror.org/01za8kp04', 'en', 1, 'https://ror.org/01za8kp04 National University of Catamarca Universidad Nacional de Catamarca'),
(22991, 'https://ror.org/03gsgk545', 'en', 1, 'https://ror.org/03gsgk545 Universidad de la Amazonia University of the Amazon'),
(22992, 'https://ror.org/0198n3j25', 'en', 1, 'https://ror.org/0198n3j25 Saint Thomas Aquinas North University Universidad del Norte Santo Tomás de Aquino'),
(22993, 'https://ror.org/040tqqd15', 'en', 1, 'https://ror.org/040tqqd15 Universidad de Cundinamarca University of Cundinamarca'),
(22994, 'https://ror.org/02gashc76', 'es', 1, 'https://ror.org/02gashc76 Instituto Profesional Eatri'),
(22995, 'https://ror.org/02b7n7v15', 'es', 1, 'https://ror.org/02b7n7v15 Universidad Católica de Santa Fe'),
(22996, 'https://ror.org/027840k02', 'en', 1, 'https://ror.org/027840k02 Catholic University of Santiago del Estero Universidad Católica de Santiago del Estero'),
(22997, 'https://ror.org/012mmaq80', 'pt', 1, 'https://ror.org/012mmaq80 Centro Universitário Franciscano do Paraná'),
(22998, 'https://ror.org/03hendk30', 'es', 1, 'https://ror.org/03hendk30 Enac Instituto Profesional'),
(22999, 'https://ror.org/00te64c61', 'pt', 1, 'https://ror.org/00te64c61 Universidade Tuiuti do Paraná'),
(23000, 'https://ror.org/03fehwj53', 'es', 1, 'https://ror.org/03fehwj53 Universidad San Pedro'),
(23001, 'https://ror.org/05net6471', 'pt', 1, 'https://ror.org/05net6471 Centro Universitário da Grande Dourados'),
(23002, 'https://ror.org/00jfare13', 'es', 1, 'https://ror.org/00jfare13 Autonomous University of Manizales Universidad Autonoma de Manizales'),
(23003, 'https://ror.org/0283d6p96', 'es', 1, 'https://ror.org/0283d6p96 Instituto Profesional Escuela De Contadores Auditores De Santiago'),
(23004, 'https://ror.org/058aanc53', 'es', 1, 'https://ror.org/058aanc53 Escuela Moderna de Música y Danza Instituto Profesional Escuela Moderna De Musica'),
(23005, 'https://ror.org/05bnh4739', 'pt', 1, 'https://ror.org/05bnh4739 Universidade Regional Integrada do Alto Uruguai e das Missões'),
(23006, 'https://ror.org/0577hrn12', 'es', 1, 'https://ror.org/0577hrn12 Instituto Profesional Esucomex'),
(23007, 'https://ror.org/02q4bdb50', 'pt', 1, 'https://ror.org/02q4bdb50 Centro Regional Universitário de Espírito Santo do Pinhal'),
(23008, 'https://ror.org/040akr227', 'es', 1, 'https://ror.org/040akr227 Universidad Nacional José Faustino Sánchez Carrión'),
(23009, 'https://ror.org/012wtwr40', 'pt', 1, 'https://ror.org/012wtwr40 Centro Universitário Newton Paiva'),
(23010, 'https://ror.org/043eemy38', 'pt', 1, 'https://ror.org/043eemy38 Centro Universitário de Formiga'),
(23011, 'https://ror.org/01adb4m49', 'pt', 1, 'https://ror.org/01adb4m49 Centro Universitário de Franca'),
(23012, 'https://ror.org/00r8xnn14', 'es', 1, 'https://ror.org/00r8xnn14 Instituto Guillermo Subercaseaux'),
(23013, 'https://ror.org/00arjnt84', 'pt', 1, 'https://ror.org/00arjnt84 Centro Universitário de Goiás'),
(23014, 'https://ror.org/03hefp680', 'es', 1, 'https://ror.org/03hefp680 Universidad Nacional de Huancavelica'),
(23015, 'https://ror.org/02x6tcp11', 'en', 1, 'https://ror.org/02x6tcp11 Bolivia Adventist University Universidad Adventista de Bolivia'),
(23016, 'https://ror.org/02d6evb60', 'es', 1, 'https://ror.org/02d6evb60 Instituto Profesional La Araucana'),
(23017, 'https://ror.org/03bzmm215', 'pt', 1, 'https://ror.org/03bzmm215 Centro Universitário da Fundação Educacional Guaxupé'),
(23018, 'https://ror.org/05rcf8d17', 'es', 1, 'https://ror.org/05rcf8d17 Universidad Continental'),
(23019, 'https://ror.org/03pxqyk55', 'pt', 1, 'https://ror.org/03pxqyk55 Universidade Regional do Noroeste do Estado do Rio Grande do Sul'),
(23020, 'https://ror.org/01kyyzm82', 'es', 1, 'https://ror.org/01kyyzm82 Universidad Central'),
(23021, 'https://ror.org/0289gr697', 'es', 1, 'https://ror.org/0289gr697 Institución Universitaria Colegio Mayor de Antioquia'),
(23022, 'https://ror.org/01380h596', 'es', 1, 'https://ror.org/01380h596 Instituto Profesional Latinoamericano de Comercio Exterior'),
(23023, 'https://ror.org/022t9bz35', 'es', 1, 'https://ror.org/022t9bz35 Instituto Profesional Los Leones'),
(23024, 'https://ror.org/009kktb11', 'en', 1, 'https://ror.org/009kktb11 Los Andes Peruvian University Universidad Peruana Los Andes'),
(23025, 'https://ror.org/00tfjp359', 'pt', 1, 'https://ror.org/00tfjp359 Centro Universitário Leonardo da Vinci'),
(23026, 'https://ror.org/03g6mxw58', 'es', 1, 'https://ror.org/03g6mxw58 Universidad Indígena Quechua Boliviana Casimiro Huanca'),
(23027, 'https://ror.org/015cent83', 'es', 1, 'https://ror.org/015cent83 Instituto Profesional Providencia'),
(23028, 'https://ror.org/01fgscm92', 'es', 1, 'https://ror.org/01fgscm92 Universidad de Huánuco'),
(23029, 'https://ror.org/03ge8ff34', 'es', 1, 'https://ror.org/03ge8ff34 Universidad Latinoamericana'),
(23030, 'https://ror.org/053ctwk70', 'pt', 1, 'https://ror.org/053ctwk70 Centro Universitário Assunção'),
(23031, 'https://ror.org/0565qcy75', 'es', 1, 'https://ror.org/0565qcy75 Universidad Privada Abierta Latinoamericana'),
(23032, 'https://ror.org/02vbtzd72', 'es', 1, 'https://ror.org/02vbtzd72 Universidad Santo Tomás'),
(23033, 'https://ror.org/03758j340', 'es', 1, 'https://ror.org/03758j340 Universidad Privada Boliviana'),
(23034, 'https://ror.org/028gkvf62', 'pt', 1, 'https://ror.org/028gkvf62 Centro Universitário Nossa Senhora do Patrocínio'),
(23035, 'https://ror.org/03wjn2094', 'es', 1, 'https://ror.org/03wjn2094 Universidad Privada del Valle'),
(23036, 'https://ror.org/00fx5h019', 'es', 1, 'https://ror.org/00fx5h019 Universidad Andina Néstor Cáceres Velásquez'),
(23037, 'https://ror.org/05gaa6j70', 'en', 1, 'https://ror.org/05gaa6j70 Bolivarian University of Chile Universidad Bolivariana de Chile'),
(23038, 'https://ror.org/05khdc453', 'es', 1, 'https://ror.org/05khdc453 Universidad Pública de El Alto'),
(23039, 'https://ror.org/003mpdt17', 'es', 1, 'https://ror.org/003mpdt17 Universidad Católica Silva Henríquez'),
(23040, 'https://ror.org/02dm3hc63', 'pt', 1, 'https://ror.org/02dm3hc63 Centro Universitário de Jales'),
(23041, 'https://ror.org/027y3mp05', 'es', 1, 'https://ror.org/027y3mp05 Universidad Chileno Británica de Cultura'),
(23042, 'https://ror.org/04vh21716', 'es', 1, 'https://ror.org/04vh21716 Universidad Unión Bolivariana'),
(23043, 'https://ror.org/02cs9pv18', 'en', 1, 'https://ror.org/02cs9pv18 Universidad Ciencias de la Informática University Ucinf'),
(23044, 'https://ror.org/005xdc256', 'es', 1, 'https://ror.org/005xdc256 Fundación Universitaria Bellas Artes'),
(23045, 'https://ror.org/055d5bf90', 'es', 1, 'https://ror.org/055d5bf90 Universidad Católica Luis Amigó'),
(23046, 'https://ror.org/03n7nwh86', 'es', 1, 'https://ror.org/03n7nwh86 Universidad Católica Sedes Sapientiae'),
(23047, 'https://ror.org/00j31gd42', 'pt', 1, 'https://ror.org/00j31gd42 Centro Universitário de Jaraguá do Sul'),
(23048, 'https://ror.org/03deqdj72', 'es', 1, 'https://ror.org/03deqdj72 Universidad de San Martín de Porres University of San Martín de Porres'),
(23049, 'https://ror.org/00fc5ew81', 'es', 1, 'https://ror.org/00fc5ew81 Universidad de la Cordillera'),
(23050, 'https://ror.org/03463y591', 'es', 1, 'https://ror.org/03463y591 Instituto Gamma'),
(23051, 'https://ror.org/04pnqcx66', 'pt', 1, 'https://ror.org/04pnqcx66 Centro Universitário de João Pessoa'),
(23052, 'https://ror.org/04pqpvr75', 'es', 1, 'https://ror.org/04pqpvr75 Universidad de Los Andes'),
(23053, 'https://ror.org/00je1p681', 'pt', 1, 'https://ror.org/00je1p681 Universidade da Região de Joinville'),
(23054, 'https://ror.org/011ebne09', 'pt', 1, 'https://ror.org/011ebne09 Centro Universitário Padre Anchieta'),
(23055, 'https://ror.org/05xs36f43', 'es', 1, 'https://ror.org/05xs36f43 Universidad La República'),
(23056, 'https://ror.org/05ap1zt54', 'en', 1, 'https://ror.org/05ap1zt54 Miguel de Cervantes University Universidad Miguel de Cervantes'),
(23057, 'https://ror.org/03sdg3x20', 'es', 1, 'https://ror.org/03sdg3x20 Universidad Femenina del Sagrado Corazón'),
(23058, 'https://ror.org/01ef0g096', 'pt', 1, 'https://ror.org/01ef0g096 Universidade do Planalto Catarinense'),
(23059, 'https://ror.org/04bpsn575', 'en', 1, 'https://ror.org/04bpsn575 Metropolitan University of Technology Universidad Tecnológica Metropolitana'),
(23060, 'https://ror.org/010r9dy59', 'es', 1, 'https://ror.org/010r9dy59 Universidad Autónoma de Chile'),
(23061, 'https://ror.org/01ybmjm77', 'es', 1, 'https://ror.org/01ybmjm77 Instituto Profesional Helen Keller'),
(23062, 'https://ror.org/0527rwj48', 'es', 1, 'https://ror.org/0527rwj48 Colegiatura Colombiana Institución Universitaria'),
(23063, 'https://ror.org/01wfnf418', 'es', 1, 'https://ror.org/01wfnf418 Universidad Loyola'),
(23064, 'https://ror.org/00txsqk22', 'en', 1, 'https://ror.org/00txsqk22 Universidad Viña del Mar Viña del Mar University'),
(23065, 'https://ror.org/0184kye93', 'es', 1, 'https://ror.org/0184kye93 Universidad del Mar'),
(23066, 'https://ror.org/03kqywj10', 'es', 1, 'https://ror.org/03kqywj10 Universidad Nuestra Señora de La Paz'),
(23067, 'https://ror.org/03pxqf194', 'pt', 1, 'https://ror.org/03pxqf194 Centro Universitário Anhanguera'),
(23068, 'https://ror.org/007qdam28', 'pt', 1, 'https://ror.org/007qdam28 Centro Universitário de Lins'),
(23069, 'https://ror.org/04m5pzk31', 'es', 1, 'https://ror.org/04m5pzk31 Fundación Universitaria Autónoma De Las Américas'),
(23070, 'https://ror.org/0431avj27', 'en', 1, 'https://ror.org/0431avj27 National University of Education Enrique Guzmán y Valle Universidad Nacional de Educación Enrique Guzmán y Valle'),
(23071, 'https://ror.org/04cyft771', 'es', 1, 'https://ror.org/04cyft771 Fundación de Estudios Superiores Universitarios de Urabá'),
(23072, 'https://ror.org/024wgn240', 'pt', 1, 'https://ror.org/024wgn240 Centro Universitário de Desenvolvimento do Centro Oeste'),
(23073, 'https://ror.org/03pze9w21', 'es', 1, 'https://ror.org/03pze9w21 Corporación Universitaria Americana'),
(23074, 'https://ror.org/0566ns265', 'es', 1, 'https://ror.org/0566ns265 Politécnico de la Costa Atlántica'),
(23075, 'https://ror.org/01v5nhr20', 'en', 1, 'https://ror.org/01v5nhr20 Universidad de la Costa University of the Coast'),
(23076, 'https://ror.org/0352jg241', 'es', 1, 'https://ror.org/0352jg241 Corporación Universitaria Empresarial de Salamanca'),
(23077, 'https://ror.org/02nq1ed11', 'es', 1, 'https://ror.org/02nq1ed11 Corporación Universitaria Reformada'),
(23078, 'https://ror.org/05gqfsf87', 'es', 1, 'https://ror.org/05gqfsf87 Universidad Autónoma del Caribe'),
(23079, 'https://ror.org/00cey1j90', 'es', 1, 'https://ror.org/00cey1j90 Universidad Metropolitana'),
(23080, 'https://ror.org/02njbw696', 'es', 1, 'https://ror.org/02njbw696 Simón Bolívar University Universidad Simón Bolívar'),
(23081, 'https://ror.org/007drf487', 'es', 1, 'https://ror.org/007drf487 Centro de Investigación Docencia y Consultoria Administrativa'),
(23082, 'https://ror.org/00gm52g34', 'es', 1, 'https://ror.org/00gm52g34 Colegio de Estudios Superiores de Administración'),
(23083, 'https://ror.org/05ss0jg28', 'es', 1, 'https://ror.org/05ss0jg28 Institución Tecnológica Cedesistemas'),
(23084, 'https://ror.org/022sn3k05', 'es', 1, 'https://ror.org/022sn3k05 Universidad Peruana de Ciencias e Informática'),
(23085, 'https://ror.org/04p47he44', 'pt', 1, 'https://ror.org/04p47he44 Sociedade de Ensino Universitário do Nordeste'),
(23086, 'https://ror.org/00d5d1v82', 'es', 1, 'https://ror.org/00d5d1v82 Institución Universitaria Esumer'),
(23087, 'https://ror.org/00vh0dr83', 'es', 1, 'https://ror.org/00vh0dr83 Universidad Salesiana de Bolivia'),
(23088, 'https://ror.org/01a81wk68', 'pt', 1, 'https://ror.org/01a81wk68 Centro Universitário de Ensino Superior do Amazonas'),
(23089, 'https://ror.org/047xxr477', 'es', 1, 'https://ror.org/047xxr477 Institución Universitaria Salazar y Herrera'),
(23090, 'https://ror.org/041wsqp45', 'es', 1, 'https://ror.org/041wsqp45 Institución Universitaria Colegios de Colombia'),
(23091, 'https://ror.org/018mj2m06', 'pt', 1, 'https://ror.org/018mj2m06 Centro Universitário do Norte'),
(23092, 'https://ror.org/04wj0w424', 'pt', 1, 'https://ror.org/04wj0w424 Universidade Nilton Lins'),
(23093, 'https://ror.org/01w96sp43', 'pt', 1, 'https://ror.org/01w96sp43 Universidade de Marília'),
(23094, 'https://ror.org/01skkym94', 'es', 1, 'https://ror.org/01skkym94 Corporación Escuela de Artes y Letras'),
(23095, 'https://ror.org/00d6gkv56', 'es', 1, 'https://ror.org/00d6gkv56 Universidad Tecnológica Boliviana'),
(23096, 'https://ror.org/03byjr489', 'pt', 1, 'https://ror.org/03byjr489 Centro Universitário Cesumar'),
(23097, 'https://ror.org/056g73y51', 'es', 1, 'https://ror.org/056g73y51 Politécnico Colombiano Jaime Isaza Cadavid'),
(23098, 'https://ror.org/04abrpb32', 'es', 1, 'https://ror.org/04abrpb32 Universidad Norbert Wiener'),
(23099, 'https://ror.org/00fyj0e42', 'pt', 1, 'https://ror.org/00fyj0e42 Universidade Braz Cubas'),
(23100, 'https://ror.org/00315pw02', 'pt', 1, 'https://ror.org/00315pw02 Universidade Potiguar'),
(23101, 'https://ror.org/0540xtx50', 'es', 1, 'https://ror.org/0540xtx50 Corporación Internacional para el Desarrollo Educativo'),
(23102, 'https://ror.org/015x6xa25', 'es', 1, 'https://ror.org/015x6xa25 Corporación John F. Kennedy'),
(23103, 'https://ror.org/01q4mdv90', 'es', 1, 'https://ror.org/01q4mdv90 Universidad Privada de Oruro'),
(23104, 'https://ror.org/03qtxpc80', 'pt', 1, 'https://ror.org/03qtxpc80 Centro Universitário Plínio Leite'),
(23105, 'https://ror.org/019c89h28', 'en', 1, 'https://ror.org/019c89h28 Oruro Technical University Universidad Técnica de Oruro'),
(23106, 'https://ror.org/05tkb8v92', 'es', 1, 'https://ror.org/05tkb8v92 Universidad Autónoma Latinoamericana'),
(23107, 'https://ror.org/0152e2z91', 'pt', 1, 'https://ror.org/0152e2z91 Universidade Iguaçu'),
(23108, 'https://ror.org/007ywk955', 'es', 1, 'https://ror.org/007ywk955 Universidad Bethesda'),
(23109, 'https://ror.org/04afz7s27', 'pt', 1, 'https://ror.org/04afz7s27 Centro Universitário Barriga Verde'),
(23110, 'https://ror.org/028w3g135', 'es', 1, 'https://ror.org/028w3g135 Universidad José Carlos Mariategui'),
(23111, 'https://ror.org/05v2asf50', 'es', 1, 'https://ror.org/05v2asf50 Universidad Nacional de Moquegua'),
(23112, 'https://ror.org/03fjqhm56', 'es', 1, 'https://ror.org/03fjqhm56 Universidad Cristiana de Bolivia'),
(23113, 'https://ror.org/05f46p870', 'pt', 1, 'https://ror.org/05f46p870 Centro Universitário Católico do Sudoeste do Paraná'),
(23114, 'https://ror.org/01yg3gs77', 'es', 1, 'https://ror.org/01yg3gs77 Corporación Politécnico Colombo Andino'),
(23115, 'https://ror.org/04s2jq961', 'es', 1, 'https://ror.org/04s2jq961 Universidad Nacional del Oriente'),
(23116, 'https://ror.org/013ys5k90', 'es', 1, 'https://ror.org/013ys5k90 Universidad del Sinú'),
(23117, 'https://ror.org/031vfrf75', 'es', 1, 'https://ror.org/031vfrf75 Universidad Nacional de Piura'),
(23118, 'https://ror.org/04nen0q36', 'es', 1, 'https://ror.org/04nen0q36 Corporación Tecnológica de Bogotá'),
(23119, 'https://ror.org/02rp4gd98', 'es', 1, 'https://ror.org/02rp4gd98 Universidad Nacional de Ucayali'),
(23120, 'https://ror.org/01jgs5r19', 'es', 1, 'https://ror.org/01jgs5r19 Universidad Privada de Pucallpa'),
(23121, 'https://ror.org/01jc1nc57', 'es', 1, 'https://ror.org/01jc1nc57 Corporación Universitaria del Huila'),
(23122, 'https://ror.org/01h62a972', 'es', 1, 'https://ror.org/01h62a972 Corporación Universitaria de Ciencia y Desarrollo'),
(23123, 'https://ror.org/01gah9v52', 'pt', 1, 'https://ror.org/01gah9v52 Centro Universitário de Patos de Minas'),
(23124, 'https://ror.org/03kqcyw85', 'es', 1, 'https://ror.org/03kqcyw85 Universidad Nacional del Altiplano'),
(23125, 'https://ror.org/050j0b044', 'es', 1, 'https://ror.org/050j0b044 Universidad Privada Cumbre'),
(23126, 'https://ror.org/0025p3069', 'es', 1, 'https://ror.org/0025p3069 Corporación Universitaria de Colombia Ideas'),
(23127, 'https://ror.org/00z6nh165', 'es', 1, 'https://ror.org/00z6nh165 Universidad Privada San Carlos'),
(23128, 'https://ror.org/01sm8xv65', 'es', 1, 'https://ror.org/01sm8xv65 Universidad Tecnológica Privada de Santa Cruz'),
(23129, 'https://ror.org/04dfr7a85', 'en', 1, 'https://ror.org/04dfr7a85 Universidad de Pamplona University of Pamplona'),
(23130, 'https://ror.org/004nyzb81', 'es', 1, 'https://ror.org/004nyzb81 Universidad Privada de Santa Cruz de la Sierra'),
(23131, 'https://ror.org/015rec412', 'es', 1, 'https://ror.org/015rec412 Corporación Universitaria Autónoma de Nariño'),
(23132, 'https://ror.org/015wdp703', 'en', 1, 'https://ror.org/015wdp703 Federico Villarreal National University Universidad Nacional Federico Villarreal'),
(23133, 'https://ror.org/04331z002', 'es', 1, 'https://ror.org/04331z002 Corporación Universitaria Iberoamericana'),
(23134, 'https://ror.org/03nfzc873', 'es', 1, 'https://ror.org/03nfzc873 Universidad Boliviana de Informática'),
(23135, 'https://ror.org/0087jna26', 'en', 1, 'https://ror.org/0087jna26 Jorge Basadre Grohmann National University Universidad Nacional Jorge Basadre Grohmann'),
(23136, 'https://ror.org/029ccny38', 'es', 1, 'https://ror.org/029ccny38 Universidad Católica de Pereira'),
(23137, 'https://ror.org/027pwvz62', 'es', 1, 'https://ror.org/027pwvz62 Universidad Pedagógica Mariscal Sucre'),
(23138, 'https://ror.org/04eeanr22', 'es', 1, 'https://ror.org/04eeanr22 Universidad Unidad'),
(23139, 'https://ror.org/05ggcs531', 'en', 1, 'https://ror.org/05ggcs531 Catholic University of Trujillo Universidad Católica de Trujillo'),
(23140, 'https://ror.org/0087wh857', 'es', 1, 'https://ror.org/0087wh857 Institución Universitaria Colegio Mayor del Cauca'),
(23141, 'https://ror.org/055k73q58', 'es', 1, 'https://ror.org/055k73q58 Corporación Universitaria Autónoma del Cauca'),
(23142, 'https://ror.org/00qtapa42', 'pt', 1, 'https://ror.org/00qtapa42 Centro Universitário Barão de Mauá'),
(23143, 'https://ror.org/03p7h8068', 'es', 1, 'https://ror.org/03p7h8068 Fundación Universitaria de Popayán'),
(23144, 'https://ror.org/05956p547', 'pt', 1, 'https://ror.org/05956p547 Centro Universitário Moura Lacerda'),
(23145, 'https://ror.org/04thy0g29', 'es', 1, 'https://ror.org/04thy0g29 Universitaria Agustiniana'),
(23146, 'https://ror.org/03wbarw78', 'es', 1, 'https://ror.org/03wbarw78 Universidad Nacional de Tumbes'),
(23147, 'https://ror.org/029z5ap77', 'es', 1, 'https://ror.org/029z5ap77 Corporación Universitaria Republicana'),
(23148, 'https://ror.org/05dyy5830', 'es', 1, 'https://ror.org/05dyy5830 Corporación Universitaria Unitec'),
(23149, 'https://ror.org/00p1j0r66', 'pt', 1, 'https://ror.org/00p1j0r66 Colégio Metodista Bennett'),
(23150, 'https://ror.org/01555fr96', 'pt', 1, 'https://ror.org/01555fr96 Centro Universitário Amparense'),
(23151, 'https://ror.org/02ab1bc46', 'en', 1, 'https://ror.org/02ab1bc46 University Center Augusto Motta'),
(23152, 'https://ror.org/04qtcz169', 'es', 1, 'https://ror.org/04qtcz169 Universitario Francisco de Asís'),
(23153, 'https://ror.org/02pzxyp49', 'es', 1, 'https://ror.org/02pzxyp49 Universidad Católica de Oriente'),
(23154, 'https://ror.org/05kpdq249', 'pt', 1, 'https://ror.org/05kpdq249 Centro Universitário Celso Lisboa'),
(23155, 'https://ror.org/032bg8m67', 'pt', 1, 'https://ror.org/032bg8m67 Centro Universitário da Cidade'),
(23156, 'https://ror.org/003wm4260', 'es', 1, 'https://ror.org/003wm4260 Universitario Crandon'),
(23157, 'https://ror.org/003ct7658', 'pt', 1, 'https://ror.org/003ct7658 Centro Universitário Católico Salesiano Auxilium'),
(23158, 'https://ror.org/02e0n1919', 'es', 1, 'https://ror.org/02e0n1919 Instituto Universitario Centro de Estudio y Diagnóstico de las Disgnacias del Uruguay'),
(23159, 'https://ror.org/02854zp38', 'pt', 1, 'https://ror.org/02854zp38 Centro Universitario Toledo'),
(23160, 'https://ror.org/01pn2rg09', 'pt', 1, 'https://ror.org/01pn2rg09 Universidade Castelo Branco'),
(23161, 'https://ror.org/04qxpma28', 'pt', 1, 'https://ror.org/04qxpma28 Centro Universitário de Araraquara'),
(23162, 'https://ror.org/01zw0xy27', 'es', 1, 'https://ror.org/01zw0xy27 Escuela de Cadetes de Policía General Santander'),
(23163, 'https://ror.org/001fypf81', 'pt', 1, 'https://ror.org/001fypf81 Universidade Unigranrio'),
(23164, 'https://ror.org/019fhz939', 'es', 1, 'https://ror.org/019fhz939 Escuela Superior de Ciencias Empresariales'),
(23165, 'https://ror.org/00aq5m079', 'pt', 1, 'https://ror.org/00aq5m079 Centro Universitario de Araras Dr Edmunso Ulson'),
(23166, 'https://ror.org/00ct7kr02', 'es', 1, 'https://ror.org/00ct7kr02 Universidad Mariana'),
(23167, 'https://ror.org/02q3wgj37', 'es', 1, 'https://ror.org/02q3wgj37 Instituto Barraquer de América'),
(23168, 'https://ror.org/04z7f4v54', 'pt', 1, 'https://ror.org/04z7f4v54 Centro Universitário Herminio Ometto de Araras'),
(23169, 'https://ror.org/03836f632', 'pt', 1, 'https://ror.org/03836f632 Centro Universitário do Planalto de Araxá'),
(23170, 'https://ror.org/009ytxb56', 'es', 1, 'https://ror.org/009ytxb56 Asociación Psicoanalítica del Uruguay'),
(23171, 'https://ror.org/056nq5k92', 'pt', 1, 'https://ror.org/056nq5k92 Universidade Presidente Antônio Carlos'),
(23172, 'https://ror.org/04kdk0s45', 'es', 1, 'https://ror.org/04kdk0s45 Corporación Universitaria Santa Rosa de Cabal'),
(23173, 'https://ror.org/02h5n6z77', 'en', 1, 'https://ror.org/02h5n6z77 Centro Universitário Jorge Amado Jorge Amado University Center'),
(23174, 'https://ror.org/03x53c263', 'es', 1, 'https://ror.org/03x53c263 Facultad de Teología del Uruguay Monseñor Mariano Soler'),
(23175, 'https://ror.org/04k1c4v44', 'pt', 1, 'https://ror.org/04k1c4v44 Centro Universitário de Barra Mansa'),
(23176, 'https://ror.org/019mnh256', 'es', 1, 'https://ror.org/019mnh256 Fundación Centro de Educación Superior Investigación y Profesionalización'),
(23177, 'https://ror.org/006zzfd13', 'pt', 1, 'https://ror.org/006zzfd13 Centro Universitário da Fundação Educacional de Barretos'),
(23178, 'https://ror.org/02yke5x89', 'es', 1, 'https://ror.org/02yke5x89 Universidad de la Empresa'),
(23179, 'https://ror.org/02604an77', 'es', 1, 'https://ror.org/02604an77 Escuela Colombiana de Rehabilitación'),
(23180, 'https://ror.org/05q37wj74', 'es', 1, 'https://ror.org/05q37wj74 Fundación Universitaria de San Gil'),
(23181, 'https://ror.org/00cvckk37', 'pt', 1, 'https://ror.org/00cvckk37 Centro Universitário Claretiano'),
(23182, 'https://ror.org/051xvqh87', 'es', 1, 'https://ror.org/051xvqh87 Católica del Norte Fundación Universitaria'),
(23183, 'https://ror.org/012835d77', 'pt', 1, 'https://ror.org/012835d77 Centro Universitário do Pará'),
(23184, 'https://ror.org/003vxvw45', 'pt', 1, 'https://ror.org/003vxvw45 Universidade da Amazônia'),
(23185, 'https://ror.org/02b2yz332', 'es', 1, 'https://ror.org/02b2yz332 Universidad Nororiental Privada Gran Mariscal de Ayacucho'),
(23186, 'https://ror.org/03mnvhz29', 'es', 1, 'https://ror.org/03mnvhz29 Universidad Nacional Experimental Politécnica "Antonio José de Sucre"'),
(23187, 'https://ror.org/028fpac96', 'es', 1, 'https://ror.org/028fpac96 Fundación Interamericana Técnica'),
(23188, 'https://ror.org/01afz2176', 'pt', 1, 'https://ror.org/01afz2176 Universidade Salvador'),
(23189, 'https://ror.org/01zstgj41', 'es', 1, 'https://ror.org/01zstgj41 Universidad Nacional Experimental Rafael María Baralt'),
(23190, 'https://ror.org/03ba09a49', 'es', 1, 'https://ror.org/03ba09a49 Fundación Tecnológica Autónoma de Bogotá'),
(23191, 'https://ror.org/017snsh34', 'es', 1, 'https://ror.org/017snsh34 Institución Universitaria Latina');
INSERT INTO `rors` VALUES
(23192, 'https://ror.org/03whcj350', 'en', 1, 'https://ror.org/03whcj350 Universidad Fermín Toro University Fermín Toro'),
(23193, 'https://ror.org/00ffq6216', 'en', 1, 'https://ror.org/00ffq6216 Central University of Valle del Cauca Unidad Central del Valle del Cauca'),
(23194, 'https://ror.org/03et5bx91', 'es', 1, 'https://ror.org/03et5bx91 Fundación Universitaria Juan de Castellanos'),
(23195, 'https://ror.org/01x2szn70', 'es', 1, 'https://ror.org/01x2szn70 Universidad Cervantina'),
(23196, 'https://ror.org/00amt5186', 'pt', 1, 'https://ror.org/00amt5186 Centro Universitário Lusíada'),
(23197, 'https://ror.org/01hb6tn62', 'es', 1, 'https://ror.org/01hb6tn62 Fundación Universitaria del Área Andina'),
(23198, 'https://ror.org/01n4hzf84', 'pt', 1, 'https://ror.org/01n4hzf84 Uniabeu Centro Universitário'),
(23199, 'https://ror.org/03ye93e96', 'pt', 1, 'https://ror.org/03ye93e96 Centro Universitário Monte Serrat São Judas Campus Unimonte'),
(23200, 'https://ror.org/055kzt142', 'es', 1, 'https://ror.org/055kzt142 Fundación Universitaria Internacional del Tropico Américano'),
(23201, 'https://ror.org/030vkw561', 'es', 1, 'https://ror.org/030vkw561 Universidad Alejandro de Humboldt'),
(23202, 'https://ror.org/035mpnm25', 'pt', 1, 'https://ror.org/035mpnm25 Universidade Metropolitana de Santos'),
(23203, 'https://ror.org/00vfxd102', 'pt', 1, 'https://ror.org/00vfxd102 Instituto Metodista Izabela Hendrix'),
(23204, 'https://ror.org/02rrha849', 'pt', 1, 'https://ror.org/02rrha849 Universidade Santa Cecília'),
(23205, 'https://ror.org/013pajk64', 'pt', 1, 'https://ror.org/013pajk64 FUMEC University Universidade Fundação Mineira de Educação e Cultura'),
(23206, 'https://ror.org/01em71b57', 'es', 1, 'https://ror.org/01em71b57 Universidad Católica Santa Rosa'),
(23207, 'https://ror.org/01crvtj80', 'pt', 1, 'https://ror.org/01crvtj80 Instituto Mauá de Tecnologia'),
(23208, 'https://ror.org/02zkjb195', 'es', 1, 'https://ror.org/02zkjb195 Universidad José María Vargas'),
(23209, 'https://ror.org/00h547294', 'pt', 1, 'https://ror.org/00h547294 Centro Universitário Euroamericano'),
(23210, 'https://ror.org/046np5693', 'en', 1, 'https://ror.org/046np5693 Metropolitan University Universidad Metropolitana'),
(23211, 'https://ror.org/05pm0vd24', 'es', 1, 'https://ror.org/05pm0vd24 Fundación Universitaria Los Libertadores University Foundation Los Libertadores'),
(23212, 'https://ror.org/017qtn133', 'es', 1, 'https://ror.org/017qtn133 Universidad Monteávila'),
(23213, 'https://ror.org/02gz76y84', 'es', 1, 'https://ror.org/02gz76y84 Universidad Nacional Abierta'),
(23214, 'https://ror.org/031h0qv85', 'es', 1, 'https://ror.org/031h0qv85 Universidad Nacional Experimental de las Artes'),
(23215, 'https://ror.org/02bb0ey42', 'es', 1, 'https://ror.org/02bb0ey42 Universidad Nueva Esparta'),
(23216, 'https://ror.org/0570zmv60', 'es', 1, 'https://ror.org/0570zmv60 Universidad Técnica de Babahoyo'),
(23217, 'https://ror.org/05avmn224', 'es', 1, 'https://ror.org/05avmn224 Fundación Universitaria San Alfonso'),
(23218, 'https://ror.org/010ps5r85', 'en', 1, 'https://ror.org/010ps5r85 Fundación Universitaria San Martín Saint Martin University'),
(23219, 'https://ror.org/051kdrm61', 'es', 1, 'https://ror.org/051kdrm61 Universidad Santa María'),
(23220, 'https://ror.org/03mvpvm42', 'en', 1, 'https://ror.org/03mvpvm42 Center Technological University Universidad Tecnológica del Centro'),
(23221, 'https://ror.org/00gby0d64', 'pt', 1, 'https://ror.org/00gby0d64 City University of São Caetano do Sul Universidade Municipal de São Caetano do Sul'),
(23222, 'https://ror.org/0568p5w10', 'pt', 1, 'https://ror.org/0568p5w10 Centro Universitário Central Paulista'),
(23223, 'https://ror.org/0305nje64', 'pt', 1, 'https://ror.org/0305nje64 Universidade Salgado de Oliveira'),
(23224, 'https://ror.org/049r7sn84', 'es', 1, 'https://ror.org/049r7sn84 Universidad Rafael Belloso Chacín'),
(23225, 'https://ror.org/031j8q670', 'en', 1, 'https://ror.org/031j8q670 Rafael Urdaneta University Universidad Rafael Urdaneta'),
(23226, 'https://ror.org/04f6dd023', 'pt', 1, 'https://ror.org/04f6dd023 Centro Universitário Municipal de São José'),
(23227, 'https://ror.org/05cqge031', 'es', 1, 'https://ror.org/05cqge031 Universidad Católica del Táchira'),
(23228, 'https://ror.org/00fr68j09', 'es', 1, 'https://ror.org/00fr68j09 Universidad Nacional Experimental del Táchira'),
(23229, 'https://ror.org/05f2jr081', 'pt', 1, 'https://ror.org/05f2jr081 Centro Universitário de Rio Preto'),
(23230, 'https://ror.org/04f6sbc78', 'pt', 1, 'https://ror.org/04f6sbc78 Centro Universitario Fluminense'),
(23231, 'https://ror.org/005cgg117', 'es', 1, 'https://ror.org/005cgg117 Universidad Estatal de Bolívar'),
(23232, 'https://ror.org/03g8egf97', 'pt', 1, 'https://ror.org/03g8egf97 Centro Universitário do Norte Paulista'),
(23233, 'https://ror.org/04kbsj707', 'es', 1, 'https://ror.org/04kbsj707 Escuela Tecnológica Instituto Técnico Central'),
(23234, 'https://ror.org/01dzqrq04', 'pt', 1, 'https://ror.org/01dzqrq04 Universidade La Salle'),
(23235, 'https://ror.org/00n7m6g17', 'es', 1, 'https://ror.org/00n7m6g17 Institución Universitaria Politecnico Grancolombiano Politécnico Grancolombiano'),
(23236, 'https://ror.org/00hbwk525', 'en', 1, 'https://ror.org/00hbwk525 Anhanguera-Uniderp University Universidade Anhanguera Uniderp'),
(23237, 'https://ror.org/02np1f094', 'es', 1, 'https://ror.org/02np1f094 Unión Americana de Educación Superior'),
(23238, 'https://ror.org/0576s0350', 'es', 1, 'https://ror.org/0576s0350 Universidad Autónoma de Colombia'),
(23239, 'https://ror.org/011bd9v54', 'es', 1, 'https://ror.org/011bd9v54 Universidad Casa Grande'),
(23240, 'https://ror.org/01scwqh06', 'en', 1, 'https://ror.org/01scwqh06 Catholic University of Colombia Universidad Católica de Colombia'),
(23241, 'https://ror.org/01mdm1v36', 'en', 1, 'https://ror.org/01mdm1v36 Central University Universidad Central'),
(23242, 'https://ror.org/055mabf46', 'es', 1, 'https://ror.org/055mabf46 Universidad Colegio Mayor de Cundinamarca'),
(23243, 'https://ror.org/047kyg834', 'en', 1, 'https://ror.org/047kyg834 Universidad de Guayaquil University of Guayaquil'),
(23244, 'https://ror.org/0474gxy81', 'en', 1, 'https://ror.org/0474gxy81 Universidad de La Salle (Bogotá) University of La Salle'),
(23245, 'https://ror.org/00vtwt580', 'pt', 1, 'https://ror.org/00vtwt580 Centro Universitário Adventista de São Paulo'),
(23246, 'https://ror.org/009fkxv41', 'en', 1, 'https://ror.org/009fkxv41 Arturo Michelena University Universidad Arturo Michelena'),
(23247, 'https://ror.org/000xmhb57', 'es', 1, 'https://ror.org/000xmhb57 Universidad Incca de Colombia'),
(23248, 'https://ror.org/03d6w0229', 'es', 1, 'https://ror.org/03d6w0229 Universidad José Antonio Páez'),
(23249, 'https://ror.org/01r5afm23', 'en', 1, 'https://ror.org/01r5afm23 La Gran Colombia University Universidad La Gran Colombia'),
(23250, 'https://ror.org/02hm6zw53', 'pt', 1, 'https://ror.org/02hm6zw53 Centro Universitário Belas Artes de São Paulo'),
(23251, 'https://ror.org/03yzht074', 'es', 1, 'https://ror.org/03yzht074 Universidad Valle del Momboy'),
(23252, 'https://ror.org/04bjr9m61', 'es', 1, 'https://ror.org/04bjr9m61 Manuela Beltrán University Universidad Manuela Beltrán'),
(23253, 'https://ror.org/040tkk892', 'es', 1, 'https://ror.org/040tkk892 Universidad Nacional Experimental Marítima del Caribe'),
(23254, 'https://ror.org/01w37vv29', 'pt', 1, 'https://ror.org/01w37vv29 Centro Universitário Capital'),
(23255, 'https://ror.org/038bgqv50', 'es', 1, 'https://ror.org/038bgqv50 Universidad Laica Vicente Rocafuerte de Guayaquil'),
(23256, 'https://ror.org/02sqp5835', 'es', 1, 'https://ror.org/02sqp5835 Universidad de los Hemisferios'),
(23257, 'https://ror.org/03c1bg807', 'pt', 1, 'https://ror.org/03c1bg807 Centro Universitário de Votuporanga'),
(23258, 'https://ror.org/03ykx6g33', 'pt', 1, 'https://ror.org/03ykx6g33 Centro Universitario FIAM FAAM'),
(23259, 'https://ror.org/02ckere89', 'en', 1, 'https://ror.org/02ckere89 Sergio Arboleda University Universidad Sergio Arboleda'),
(23260, 'https://ror.org/0046y6b22', 'pt', 1, 'https://ror.org/0046y6b22 Centro Universitário Ítalo Brasileiro'),
(23261, 'https://ror.org/038j0b276', 'es', 1, 'https://ror.org/038j0b276 Universidad Adventista de Chile'),
(23262, 'https://ror.org/00eg5dk50', 'es', 1, 'https://ror.org/00eg5dk50 Universidad Del Pacífico Ecuador'),
(23263, 'https://ror.org/02bnw0f54', 'es', 1, 'https://ror.org/02bnw0f54 Universidad de Investigación y Desarrollo Universitaria de Investigación y Desarrollo'),
(23264, 'https://ror.org/04gq65788', 'pt', 1, 'https://ror.org/04gq65788 Centro Universitário Paulistano'),
(23265, 'https://ror.org/01z675j45', 'es', 1, 'https://ror.org/01z675j45 Unidades Tecnológicas de Santander'),
(23266, 'https://ror.org/016967s24', 'es', 1, 'https://ror.org/016967s24 Instituto Profesional Valle Central'),
(23267, 'https://ror.org/05pnzjf85', 'es', 1, 'https://ror.org/05pnzjf85 Universidad Estatal del Sur de Manabi'),
(23268, 'https://ror.org/02ed69v98', 'es', 1, 'https://ror.org/02ed69v98 Instituto Profesional Diego Portales'),
(23269, 'https://ror.org/04553p226', 'es', 1, 'https://ror.org/04553p226 Instituto Técnico Agrícola'),
(23270, 'https://ror.org/00hysm292', 'pt', 1, 'https://ror.org/00hysm292 Centro Universitário Sant’Anna'),
(23271, 'https://ror.org/00aa17k52', 'es', 1, 'https://ror.org/00aa17k52 Instituto Profesional Ipg'),
(23272, 'https://ror.org/015hsqv25', 'es', 1, 'https://ror.org/015hsqv25 Corporación Escuela Superior de Administración y Estudios Tecnológicos'),
(23273, 'https://ror.org/03a5x6z77', 'es', 1, 'https://ror.org/03a5x6z77 Universidad Nacional de Loja'),
(23274, 'https://ror.org/04p83bg23', 'es', 1, 'https://ror.org/04p83bg23 Instituto Profesional Libertador de Los Andes'),
(23275, 'https://ror.org/04031z735', 'pt', 1, 'https://ror.org/04031z735 Universidade Brasil'),
(23276, 'https://ror.org/05p8sx023', 'es', 1, 'https://ror.org/05p8sx023 Corporación Universitaria Centro Superior'),
(23277, 'https://ror.org/00ttbwp87', 'pt', 1, 'https://ror.org/00ttbwp87 Universidade São Judas Tadeu'),
(23278, 'https://ror.org/021zm0v94', 'es', 1, 'https://ror.org/021zm0v94 Instituto Profesional Agrario Adolfo Matthei'),
(23279, 'https://ror.org/02sfdnr59', 'pt', 1, 'https://ror.org/02sfdnr59 Universidade São Marcos'),
(23280, 'https://ror.org/04azbjd07', 'pt', 1, 'https://ror.org/04azbjd07 Centro Universitário de Sete Lagoas'),
(23281, 'https://ror.org/038ddjp72', 'en', 1, 'https://ror.org/038ddjp72 State University of Vale do Acaraú Universidade Estadual Vale do Acaraú'),
(23282, 'https://ror.org/0139vf833', 'es', 1, 'https://ror.org/0139vf833 Universidad San Gregorio de Portoviejo'),
(23283, 'https://ror.org/028380v12', 'es', 1, 'https://ror.org/028380v12 Fundación Academia de Dibujo Profesional'),
(23284, 'https://ror.org/02qgahb88', 'es', 1, 'https://ror.org/02qgahb88 Universidad Técnica de Manabí'),
(23285, 'https://ror.org/030v7ct83', 'es', 1, 'https://ror.org/030v7ct83 Institución Universitaria Antonio José Camacho'),
(23286, 'https://ror.org/03rjhfb18', 'es', 1, 'https://ror.org/03rjhfb18 Universidad de Aconcagua'),
(23287, 'https://ror.org/02b4apg34', 'es', 1, 'https://ror.org/02b4apg34 Escuela Politécnica Javeriana del Ecuador'),
(23288, 'https://ror.org/03rdgye13', 'pt', 1, 'https://ror.org/03rdgye13 Centro Universitário do Sul de Minas'),
(23289, 'https://ror.org/00dxj9a45', 'es', 1, 'https://ror.org/00dxj9a45 Universidad Santiago de Cali'),
(23290, 'https://ror.org/00emh4n53', 'es', 1, 'https://ror.org/00emh4n53 Instituto Profesional Alemán Wilhelm von Humboldt'),
(23291, 'https://ror.org/02ech7z91', 'es', 1, 'https://ror.org/02ech7z91 Corporación Universitaria Rafael Nuñez'),
(23292, 'https://ror.org/031pdhx80', 'es', 1, 'https://ror.org/031pdhx80 Escuela Superior Politécnica Ecológica Amazónica'),
(23293, 'https://ror.org/00rpjcd45', 'pt', 1, 'https://ror.org/00rpjcd45 Centro Universitário de Várzea Grande'),
(23294, 'https://ror.org/04yrw8521', 'es', 1, 'https://ror.org/04yrw8521 Instituto Profesional Carlos Casanueva'),
(23295, 'https://ror.org/04msd0t92', 'es', 1, 'https://ror.org/04msd0t92 Universidad Politécnica Estatal del Carchi'),
(23296, 'https://ror.org/037h6n733', 'es', 1, 'https://ror.org/037h6n733 Corporación Universitaria Regional del Caribe'),
(23297, 'https://ror.org/029zzvq50', 'es', 1, 'https://ror.org/029zzvq50 Universidad Israel'),
(23298, 'https://ror.org/0498fb204', 'es', 1, 'https://ror.org/0498fb204 Instituto Nacional de Educación Superior Dr. Raúl Peña'),
(23299, 'https://ror.org/02f6q5s54', 'es', 1, 'https://ror.org/02f6q5s54 Universidad Americana'),
(23300, 'https://ror.org/007t9h129', 'en', 1, 'https://ror.org/007t9h129 Universidade de Vassouras University of Vassouras'),
(23301, 'https://ror.org/04yexcn51', 'no_lang_code', 1, 'https://ror.org/04yexcn51 Ghana Institute of Management and Public Administration'),
(23302, 'https://ror.org/04dvk9y30', 'es', 1, 'https://ror.org/04dvk9y30 Universidad Autónoma de Asunción'),
(23303, 'https://ror.org/03x653m21', 'es', 1, 'https://ror.org/03x653m21 Universidad Autónoma del Paraguay'),
(23304, 'https://ror.org/043e0fg15', 'en', 1, 'https://ror.org/043e0fg15 Chartered Institute of Marketing Ghana'),
(23305, 'https://ror.org/04r8gaf17', 'pt', 1, 'https://ror.org/04r8gaf17 Universidade Vila Velha'),
(23306, 'https://ror.org/05a9sj961', 'en', 1, 'https://ror.org/05a9sj961 Methodist University College Ghana'),
(23307, 'https://ror.org/04jst1j84', 'es', 1, 'https://ror.org/04jst1j84 Universidad Columbia del Paraguay'),
(23308, 'https://ror.org/00t7chh67', 'fr', 1, 'https://ror.org/00t7chh67 Institut Facultaire des Sciences de l''Information et de la Communication'),
(23309, 'https://ror.org/0285v1m71', 'es', 1, 'https://ror.org/0285v1m71 Universidad Comunera'),
(23310, 'https://ror.org/05xrwp171', 'pt', 1, 'https://ror.org/05xrwp171 Centro Universitário Geraldo Di Biase'),
(23311, 'https://ror.org/02tgqv590', 'en', 1, 'https://ror.org/02tgqv590 Regent University College of Science and Technology'),
(23312, 'https://ror.org/05r9r2h28', 'es', 1, 'https://ror.org/05r9r2h28 Universidad de la Integración de las Américas'),
(23313, 'https://ror.org/03791dn70', 'en', 1, 'https://ror.org/03791dn70 Regional Maritime University'),
(23314, 'https://ror.org/01jthvx19', 'en', 1, 'https://ror.org/01jthvx19 University College of Management Studies'),
(23315, 'https://ror.org/01h8yp048', 'es', 1, 'https://ror.org/01h8yp048 Universidad del Cono Sur de las Américas'),
(23316, 'https://ror.org/03xe86v46', 'en', 1, 'https://ror.org/03xe86v46 Wisconsin International University College'),
(23317, 'https://ror.org/03jjrt588', 'en', 1, 'https://ror.org/03jjrt588 Zenith University College'),
(23318, 'https://ror.org/02rbr5948', 'no_lang_code', 1, 'https://ror.org/02rbr5948 Ghana Christian University College'),
(23319, 'https://ror.org/05x21v161', 'fr', 1, 'https://ror.org/05x21v161 Institut Supérieur d’Informatique, Programmation et Analyse'),
(23320, 'https://ror.org/0482ajw49', 'en', 1, 'https://ror.org/0482ajw49 Ghana Baptist University College'),
(23321, 'https://ror.org/04cat5h68', 'fr', 1, 'https://ror.org/04cat5h68 Institut des Hautes Études de Management Institute for Advanced Studies in Management'),
(23322, 'https://ror.org/045rztm55', 'en', 1, 'https://ror.org/045rztm55 University of Sierra Leone'),
(23323, 'https://ror.org/05ncmk960', 'fr', 1, 'https://ror.org/05ncmk960 Institut National d''Aménagement et d''Urbanisme'),
(23324, 'https://ror.org/02g8ke585', 'fr', 1, 'https://ror.org/02g8ke585 Institut National de Statistique et d''Economie Appliquée المعهد الوطني للإحصاء والاقتصادالتطبيقي'),
(23325, 'https://ror.org/0398jd975', 'en', 1, 'https://ror.org/0398jd975 IMM Graduate School of Marketing'),
(23326, 'https://ror.org/03mcm6a50', 'fr', 1, 'https://ror.org/03mcm6a50 Institut Supérieur de Statistiques de Kinshasa'),
(23327, 'https://ror.org/03gca2v38', 'en', 1, 'https://ror.org/03gca2v38 Production Management Institute of Southern Africa'),
(23328, 'https://ror.org/0502vxg14', 'en', 1, 'https://ror.org/0502vxg14 Catholic University College of Ghana'),
(23329, 'https://ror.org/03gqwjw57', 'en', 1, 'https://ror.org/03gqwjw57 Damelin'),
(23330, 'https://ror.org/056jc8s48', 'en', 1, 'https://ror.org/056jc8s48 Regent Business School'),
(23331, 'https://ror.org/03f5kyb42', 'en', 1, 'https://ror.org/03f5kyb42 Greenside Design Center College of Design'),
(23332, 'https://ror.org/00v13f844', 'fr', 1, 'https://ror.org/00v13f844 Institut Supérieur d’Art Dramatique et d’Animation Culturelle'),
(23333, 'https://ror.org/005bfja03', 'en', 1, 'https://ror.org/005bfja03 Regenesys Business School'),
(23334, 'https://ror.org/05awwc719', 'fr', 1, 'https://ror.org/05awwc719 Institut Supérieur de l''Information et de la Communication'),
(23335, 'https://ror.org/013p21z46', 'fr', 1, 'https://ror.org/013p21z46 Institut supérieur de la Magistrature المعهد العالي للقضاء'),
(23336, 'https://ror.org/03mxhve08', 'fr', 1, 'https://ror.org/03mxhve08 Institut Supérieur Pédagogique Technique'),
(23337, 'https://ror.org/0400yw722', 'en', 1, 'https://ror.org/0400yw722 South African College of Applied Psychology'),
(23338, 'https://ror.org/0170ffh34', 'fr', 1, 'https://ror.org/0170ffh34 Institut Supérieur du Génie Appliqué'),
(23339, 'https://ror.org/0160m7k04', 'fr', 1, 'https://ror.org/0160m7k04 Institut Supérieur de Technique Médicale'),
(23340, 'https://ror.org/02b2fgs53', 'en', 1, 'https://ror.org/02b2fgs53 St Augustine College of South Africa'),
(23341, 'https://ror.org/049ta3d96', 'en', 1, 'https://ror.org/049ta3d96 Institute For Leadership And Communication Studies'),
(23342, 'https://ror.org/04xbsst68', 'fr', 1, 'https://ror.org/04xbsst68 Higher National Agronomic School École Nationale Supérieure Agronomique لمدرسة الوطنية العليا للفلاحة'),
(23343, 'https://ror.org/042y9a646', 'en', 1, 'https://ror.org/042y9a646 International Institute for Higher Education in Morocco'),
(23344, 'https://ror.org/01agq7t95', 'en', 1, 'https://ror.org/01agq7t95 Open Window School of Visual Communication'),
(23345, 'https://ror.org/00qfxgm20', 'es', 1, 'https://ror.org/00qfxgm20 Universidad Real'),
(23346, 'https://ror.org/02pbyff74', 'fr', 1, 'https://ror.org/02pbyff74 Institut Royal de Formation des Cadres de la Jeunesse et des Sports المعهد الملكي لتكوين أطر الشبيبة و الرياضة'),
(23347, 'https://ror.org/05hsgxf19', 'en', 1, 'https://ror.org/05hsgxf19 Milpark Education'),
(23348, 'https://ror.org/04dj1dn66', 'fr', 1, 'https://ror.org/04dj1dn66 École Nationale Supérieure d''Informatique المدرسة الوطنية العليا للإعلام الألي'),
(23349, 'https://ror.org/00yp89t60', 'en', 1, 'https://ror.org/00yp89t60 National School of Business and Management in Settat École Nationale de Commerce et de Gestion de Settat'),
(23350, 'https://ror.org/024yaae06', 'fr', 1, 'https://ror.org/024yaae06 Université Catholique du Congo'),
(23351, 'https://ror.org/03q1ded50', 'en', 1, 'https://ror.org/03q1ded50 Midrand Graduate Institute'),
(23352, 'https://ror.org/00zxsnd45', 'en', 1, 'https://ror.org/00zxsnd45 Cranefield College'),
(23353, 'https://ror.org/02nm3nh05', 'fr', 1, 'https://ror.org/02nm3nh05 École des Hautes Études Commerciales Techniques et Informatiques'),
(23354, 'https://ror.org/02rjekw63', 'fr', 1, 'https://ror.org/02rjekw63 Institut Supérieur des Sciences de l''Éducation de Guinée'),
(23355, 'https://ror.org/02g9gg448', 'fr', 1, 'https://ror.org/02g9gg448 École Nationale de Management et de l''Administration de la Santé'),
(23356, 'https://ror.org/01svbr712', 'fr', 1, 'https://ror.org/01svbr712 Université Général Lansana Conté'),
(23357, 'https://ror.org/03yj8bt58', 'fr', 1, 'https://ror.org/03yj8bt58 École Nationale de Commerce et de Gestion de Tanger المدرسة الوطنية للتجارة والتسيير بطنجة'),
(23358, 'https://ror.org/008v08256', 'fr', 1, 'https://ror.org/008v08256 Université de Cepromad'),
(23359, 'https://ror.org/01517we84', 'fr', 1, 'https://ror.org/01517we84 Institut Supérieur International du Tourisme de Tanger المعهد العالي الدولي للسياحة'),
(23360, 'https://ror.org/025tvnr06', 'en', 1, 'https://ror.org/025tvnr06 National School of Built and Ground Works Engineering'),
(23361, 'https://ror.org/01wnxx236', 'en', 1, 'https://ror.org/01wnxx236 Blue Nile University جامعة النيل الأزرق'),
(23362, 'https://ror.org/04pry7b16', 'fr', 1, 'https://ror.org/04pry7b16 École Normale Supérieure de Tétouan'),
(23363, 'https://ror.org/03ea76440', 'fr', 1, 'https://ror.org/03ea76440 Université Libre de Kinshasa'),
(23364, 'https://ror.org/0432yv872', 'fr', 1, 'https://ror.org/0432yv872 Université Pédagogique Nationale'),
(23365, 'https://ror.org/0117q7625', 'fr', 1, 'https://ror.org/0117q7625 Protestant University in Congo Université Protestante au Congo'),
(23366, 'https://ror.org/02jk75847', 'en', 1, 'https://ror.org/02jk75847 Higher National Veterinary School المدرسة الوطنية العليا للبيطرة'),
(23367, 'https://ror.org/03hfh6394', 'pt', 1, 'https://ror.org/03hfh6394 Instituto Superior Cristão'),
(23368, 'https://ror.org/02657e607', 'pt', 1, 'https://ror.org/02657e607 Instituto Superior de Ciências e Tecnologia Alberto Chipande'),
(23369, 'https://ror.org/05y7edy46', 'no_lang_code', 1, 'https://ror.org/05y7edy46 West Kordofan University جامعة غرب كردفان'),
(23370, 'https://ror.org/02azgvq37', 'pt', 1, 'https://ror.org/02azgvq37 Universidade Zambeze'),
(23371, 'https://ror.org/054ky9h60', 'en', 1, 'https://ror.org/054ky9h60 Bel Campus Technological University Université Technologique Bel Campus'),
(23372, 'https://ror.org/02hy1ey22', 'fr', 1, 'https://ror.org/02hy1ey22 École Polytechnique d''Architecture et d''Urbanisme'),
(23373, 'https://ror.org/03j6adw74', 'en', 1, 'https://ror.org/03j6adw74 Gadarif University جامعة القضارف'),
(23374, 'https://ror.org/03ws9cb65', 'fr', 1, 'https://ror.org/03ws9cb65 École Supérieure Algérienne des Affaires'),
(23375, 'https://ror.org/03ydszt61', 'fr', 1, 'https://ror.org/03ydszt61 École Supérieure de Banque المدرسة العليا للمصرفة'),
(23376, 'https://ror.org/02ayk5126', 'no_lang_code', 1, 'https://ror.org/02ayk5126 Dalanj University جامعة الدلنج'),
(23377, 'https://ror.org/018v0f754', 'fr', 1, 'https://ror.org/018v0f754 École Supérieure de la Magistrature المدرســـــة العليـــــا للقضــــاء'),
(23378, 'https://ror.org/0040db356', 'en', 1, 'https://ror.org/0040db356 Al Fashir University جامعة الفاشر'),
(23379, 'https://ror.org/03pkpht31', 'fr', 1, 'https://ror.org/03pkpht31 Institut Supérieur de Commerce de Kinshasa'),
(23380, 'https://ror.org/04fd5vj08', 'pt', 1, 'https://ror.org/04fd5vj08 Instituto Superior Politécnico de Manica'),
(23381, 'https://ror.org/02cxvat25', 'en', 1, 'https://ror.org/02cxvat25 University of Bakhtalruda جامعة بخت الرضا'),
(23382, 'https://ror.org/00hw53j55', 'pt', 1, 'https://ror.org/00hw53j55 Escola Superior de Jornalismo'),
(23383, 'https://ror.org/00cepgz04', 'en', 1, 'https://ror.org/00cepgz04 National Higher School of Statistics and Applied Economy المدرسة الوطنية العليا للاحصاء و الاقتصاد التطبيقي الجزائر'),
(23384, 'https://ror.org/00p4jn321', 'en', 1, 'https://ror.org/00p4jn321 Sudan International University جامعة السودان العالمية'),
(23385, 'https://ror.org/02n4khb55', 'en', 1, 'https://ror.org/02n4khb55 Open University of Sudan جامعة السودان المفتوحة'),
(23386, 'https://ror.org/04n6hyy67', 'pt', 1, 'https://ror.org/04n6hyy67 Instituto Superior de Artes e Cultura'),
(23387, 'https://ror.org/04cj88d36', 'fr', 1, 'https://ror.org/04cj88d36 Institut National de la Poste et des Technologies de l''Information et de la Communication المعهد الوطني للبريد وتكنولوجيات الإعلام والاتصال'),
(23388, 'https://ror.org/04dqppw26', 'pt', 1, 'https://ror.org/04dqppw26 Instituto Superior de Ciencias de Saude'),
(23389, 'https://ror.org/02y7rg150', 'pt', 1, 'https://ror.org/02y7rg150 Instituto Superior de Ciências e Tecnologia de Moçambique'),
(23390, 'https://ror.org/029jt9a82', 'en', 1, 'https://ror.org/029jt9a82 International University of Africa جامعة إفريقيا العالمية'),
(23391, 'https://ror.org/00dx9f181', 'pt', 1, 'https://ror.org/00dx9f181 Instituto Superior de Comunicação e Imagem de Moçambique'),
(23392, 'https://ror.org/048aa3w78', 'fr', 1, 'https://ror.org/048aa3w78 Institut Supérieur Agronomique et Vétérinaire Valéry Giscard d''Estaing'),
(23393, 'https://ror.org/038cq1h45', 'en', 1, 'https://ror.org/038cq1h45 Khartoum International Institute for Arabic Languague معهد الخرطوم الدولي للغة العربية'),
(23394, 'https://ror.org/01hhbtp58', 'en', 1, 'https://ror.org/01hhbtp58 Julius Nyerere University of Kankan Université Julius Nyerere de Kankan'),
(23395, 'https://ror.org/01j7x7d84', 'no_lang_code', 1, 'https://ror.org/01j7x7d84 Alzaiem Alazhari University جامعة الزعيم الأزهري'),
(23396, 'https://ror.org/01b0sca09', 'en', 1, 'https://ror.org/01b0sca09 University of El Imam El Mahdi جامعة الامام المهدي'),
(23397, 'https://ror.org/02k7y2v57', 'fr', 1, 'https://ror.org/02k7y2v57 Université Protestante de Lubumbashi'),
(23398, 'https://ror.org/03275xe23', 'en', 1, 'https://ror.org/03275xe23 University of Nyala جامعة نيالا'),
(23399, 'https://ror.org/00vww8g40', 'fr', 1, 'https://ror.org/00vww8g40 Centre Universitaire de Labé'),
(23400, 'https://ror.org/03h1y5m90', 'fr', 1, 'https://ror.org/03h1y5m90 Institut Supérieur de Statistique de Lubumbashi'),
(23401, 'https://ror.org/01g5skz36', 'en', 1, 'https://ror.org/01g5skz36 Ahfad University for Women جامعة الأحفاد للبنات'),
(23402, 'https://ror.org/01hjdgr63', 'pt', 1, 'https://ror.org/01hjdgr63 Instituto Superior de Transportes e Comunicaçõe'),
(23403, 'https://ror.org/02dveg925', 'en', 1, 'https://ror.org/02dveg925 University of Boumerdes جامعة امحمد بوڤرة بومرداس'),
(23404, 'https://ror.org/04egxam60', 'fr', 1, 'https://ror.org/04egxam60 Institut Universitaire du Congo'),
(23405, 'https://ror.org/0239tnv53', 'no_lang_code', 1, 'https://ror.org/0239tnv53 Omdurman Ahlia University جامعة أم درمان الأهلية'),
(23406, 'https://ror.org/025qja684', 'en', 1, 'https://ror.org/025qja684 Omdurman Islamic University جامعة أم درمان الإسلامية'),
(23407, 'https://ror.org/02z5k4q74', 'fr', 1, 'https://ror.org/02z5k4q74 Université Libre de Luozi'),
(23408, 'https://ror.org/04k46b490', 'en', 1, 'https://ror.org/04k46b490 Red Sea University جامعة البحر الأحمر'),
(23409, 'https://ror.org/03xz4j444', 'fr', 1, 'https://ror.org/03xz4j444 École Normale Supérieure de Constantine'),
(23410, 'https://ror.org/03rqy4d08', 'en', 1, 'https://ror.org/03rqy4d08 Emir Abdelkader University of Islamic Sciences جامعة الأمير عبد القادر'),
(23411, 'https://ror.org/000jvv118', 'en', 1, 'https://ror.org/000jvv118 Ziane Achour University of Djelfa جامعة زيان عاشور-الجلفة'),
(23412, 'https://ror.org/00vyjaz76', 'pt', 1, 'https://ror.org/00vyjaz76 Universidade Jean Piaget de Moçambique'),
(23413, 'https://ror.org/04j9dfg85', 'en', 1, 'https://ror.org/04j9dfg85 Kongo University Université Kongo'),
(23414, 'https://ror.org/042x9qq51', 'en', 1, 'https://ror.org/042x9qq51 University of Zalingei جامعة زالنجي'),
(23415, 'https://ror.org/02e2ve941', 'en', 1, 'https://ror.org/02e2ve941 Mount Meru University'),
(23416, 'https://ror.org/020wq5714', 'en', 1, 'https://ror.org/020wq5714 Chuo Kikuu cha Arusha University of Arusha'),
(23417, 'https://ror.org/00fp42952', 'en', 1, 'https://ror.org/00fp42952 University of Mbuji Mayi'),
(23418, 'https://ror.org/0331kj160', 'en', 1, 'https://ror.org/0331kj160 Pedagogical University Universidade Pedagógica'),
(23419, 'https://ror.org/044ce3082', 'pt', 1, 'https://ror.org/044ce3082 Universidade São Tomás de Moçambique'),
(23420, 'https://ror.org/041f1nz98', 'pt', 1, 'https://ror.org/041f1nz98 Universidade Técnica de Moçambique'),
(23421, 'https://ror.org/01vy3hr18', 'en', 1, 'https://ror.org/01vy3hr18 Chuo Kikuu cha Kumbukumbu cha Hubert Kairuki Hubert Kairuki Memorial University'),
(23422, 'https://ror.org/02hh51f62', 'en', 1, 'https://ror.org/02hh51f62 International Medical and Technological University'),
(23423, 'https://ror.org/05n2gzs35', 'fr', 1, 'https://ror.org/05n2gzs35 Université Djilali Bounaama Khemis Miliana جامعة جيلالي بونعامة خميس مليانة'),
(23424, 'https://ror.org/02jmk1h66', 'en', 1, 'https://ror.org/02jmk1h66 Chuo Kikuu cha Mtakatifu Yohana Tanzania St. John''s University of Tanzania'),
(23425, 'https://ror.org/0338q3942', 'en', 1, 'https://ror.org/0338q3942 Akhbar El Yom Academy اكاديمية اخبار اليوم'),
(23426, 'https://ror.org/01c8vqx53', 'pt', 1, 'https://ror.org/01c8vqx53 Instituto Superior Politécnico de Songo'),
(23427, 'https://ror.org/05tv80m53', 'pt', 1, 'https://ror.org/05tv80m53 Instituto Superior Politecnico de Tete'),
(23428, 'https://ror.org/02t055680', 'en', 1, 'https://ror.org/02t055680 Ahram Canadian University جامعة الأهرام الكندية'),
(23429, 'https://ror.org/025xjs150', 'en', 1, 'https://ror.org/025xjs150 El Shorouk Academy'),
(23430, 'https://ror.org/02qrvdj69', 'en', 1, 'https://ror.org/02qrvdj69 Chuo Kikuu cha Mzumbe Mzumbe University'),
(23431, 'https://ror.org/03aam4v69', 'pt', 1, 'https://ror.org/03aam4v69 Universidade Colinas de Boé'),
(23432, 'https://ror.org/00e2rng16', 'en', 1, 'https://ror.org/00e2rng16 University of Eastern Africa, Baraton'),
(23433, 'https://ror.org/026pfmg90', 'fr', 1, 'https://ror.org/026pfmg90 École Africaine de la Météorologie et de l''Aviation Civile'),
(23434, 'https://ror.org/017jtd728', 'en', 1, 'https://ror.org/017jtd728 Higher Institute of Mining, Industry and Geology École des Mines, de l''Industrie et de la Géologie'),
(23435, 'https://ror.org/04tcyer40', 'en', 1, 'https://ror.org/04tcyer40 High Institute for Management Sciences المعهد العالى للعلوم الإدارية بالقطامية'),
(23436, 'https://ror.org/00aze9982', 'en', 1, 'https://ror.org/00aze9982 St. Paul''s University'),
(23437, 'https://ror.org/05sd11n59', 'fr', 1, 'https://ror.org/05sd11n59 École Nationale d''Administration et de Magistrature'),
(23438, 'https://ror.org/03kn6cb12', 'en', 1, 'https://ror.org/03kn6cb12 October High Institute For Enginnering and Technology معهد أكتوبر العالي للهندسة والتكنولوجيا'),
(23439, 'https://ror.org/02e2yc259', 'en', 1, 'https://ror.org/02e2yc259 University Yahia Fares of Medea جامعة يحي فارس بالمدية'),
(23440, 'https://ror.org/033tvp994', 'en', 1, 'https://ror.org/033tvp994 Kenya Methodist University'),
(23441, 'https://ror.org/00htzc939', 'en', 1, 'https://ror.org/00htzc939 Crescent University'),
(23442, 'https://ror.org/05twfp995', 'en', 1, 'https://ror.org/05twfp995 Africa Nazarene University'),
(23443, 'https://ror.org/001pma463', 'en', 1, 'https://ror.org/001pma463 University of Kara Université de Kara'),
(23444, 'https://ror.org/00jjtmm83', 'en', 1, 'https://ror.org/00jjtmm83 Kiriri Women''s University of Science and Technology'),
(23445, 'https://ror.org/05rcqrz41', 'en', 1, 'https://ror.org/05rcqrz41 African Institute of Science and Technology'),
(23446, 'https://ror.org/02xyh0e61', 'fr', 1, 'https://ror.org/02xyh0e61 École Africaine des Métiers de l''Architecture et de l''Urbanisme'),
(23447, 'https://ror.org/00v11es25', 'fr', 1, 'https://ror.org/00v11es25 École Nationale d''Administration'),
(23448, 'https://ror.org/03p823x35', 'en', 1, 'https://ror.org/03p823x35 Caritas University'),
(23449, 'https://ror.org/05qj64q37', 'en', 1, 'https://ror.org/05qj64q37 United States International University Africa'),
(23450, 'https://ror.org/02nbj1r55', 'fr', 1, 'https://ror.org/02nbj1r55 Université des Sciences et de la Technologie d''Oran Mohamed Boudiaf'),
(23451, 'https://ror.org/01zw9zg68', 'no_lang_code', 1, 'https://ror.org/01zw9zg68 African Methodist Episcopal University'),
(23452, 'https://ror.org/058qd2v11', 'en', 1, 'https://ror.org/058qd2v11 Auchi Polytechnic'),
(23453, 'https://ror.org/05589zr38', 'en', 1, 'https://ror.org/05589zr38 Cuttington University'),
(23454, 'https://ror.org/01a203m72', 'en', 1, 'https://ror.org/01a203m72 Benson Idahosa University'),
(23455, 'https://ror.org/000g0zm60', 'en', 1, 'https://ror.org/000g0zm60 University of Jendouba Université de jendouba جامعة جندوبة'),
(23456, 'https://ror.org/041rwsw06', 'en', 1, 'https://ror.org/041rwsw06 Igbinedion University'),
(23457, 'https://ror.org/02nwh8244', 'no_lang_code', 1, 'https://ror.org/02nwh8244 Federal Polytechnic Nekede'),
(23458, 'https://ror.org/05amrd548', 'en', 1, 'https://ror.org/05amrd548 University of Ouargla جامعة قاصدي مرباح'),
(23459, 'https://ror.org/050swxx85', 'en', 1, 'https://ror.org/050swxx85 Plateau State University'),
(23460, 'https://ror.org/024mpte60', 'en', 1, 'https://ror.org/024mpte60 University of Kairouan Université de kairouan جامعة القيروان'),
(23461, 'https://ror.org/005ywxj74', 'en', 1, 'https://ror.org/005ywxj74 Yobe State University'),
(23462, 'https://ror.org/02571vj15', 'no_lang_code', 1, 'https://ror.org/02571vj15 University of Skikda Université of 20 août 1955 of Skikda'),
(23463, 'https://ror.org/04ntynb59', 'en', 1, 'https://ror.org/04ntynb59 Enugu State University of Science and Technology'),
(23464, 'https://ror.org/05f93c840', 'en', 1, 'https://ror.org/05f93c840 International Academy for Engineering and Media Science الاكاديمية الدولية للهندسة وعلوم الاعلام'),
(23465, 'https://ror.org/020w9wy05', 'en', 1, 'https://ror.org/020w9wy05 Renaissance University'),
(23466, 'https://ror.org/052vng007', 'en', 1, 'https://ror.org/052vng007 University of Mkar'),
(23467, 'https://ror.org/00rxcsz93', 'fr', 1, 'https://ror.org/00rxcsz93 Université Privée du Sud'),
(23468, 'https://ror.org/03k6gj822', 'en', 1, 'https://ror.org/03k6gj822 Ajayi Crowther University'),
(23469, 'https://ror.org/043z5qa52', 'en', 1, 'https://ror.org/043z5qa52 Lead City University'),
(23470, 'https://ror.org/02acc9e56', 'fr', 1, 'https://ror.org/02acc9e56 Institut des Hautes Études de Tunis Institute of Advanced Studies of Tunis'),
(23471, 'https://ror.org/03y2yf271', 'fr', 1, 'https://ror.org/03y2yf271 Time Université'),
(23472, 'https://ror.org/00tnac320', 'fr', 1, 'https://ror.org/00tnac320 Université Larbi Tébessi'),
(23473, 'https://ror.org/038ajm817', 'fr', 1, 'https://ror.org/038ajm817 Université Arabe des Sciences'),
(23474, 'https://ror.org/02j07fr50', 'fr', 1, 'https://ror.org/02j07fr50 Université Centrale de Tunis الجامعة المركزية الخاصة'),
(23475, 'https://ror.org/01v0we819', 'en', 1, 'https://ror.org/01v0we819 Redeemer''s University'),
(23476, 'https://ror.org/04t9p4363', 'en', 1, 'https://ror.org/04t9p4363 Joseph Ayo Babalola University'),
(23477, 'https://ror.org/01fv8ny24', 'fr', 1, 'https://ror.org/01fv8ny24 École Supérieure des Études Administratives et Commerciales'),
(23478, 'https://ror.org/04sh4pf16', 'pt', 1, 'https://ror.org/04sh4pf16 Instituto Superior de Ciencias Sociais e Relações Internacionais'),
(23479, 'https://ror.org/04m1ha467', 'en', 1, 'https://ror.org/04m1ha467 Sebha University جامعة سبها'),
(23480, 'https://ror.org/0057ag334', 'pt', 1, 'https://ror.org/0057ag334 Agostinho Neto University Universidade Agostinho Neto'),
(23481, 'https://ror.org/0547s4559', 'en', 1, 'https://ror.org/0547s4559 Catholic University of Angola Universidade Católica de Angola'),
(23482, 'https://ror.org/04sk00116', 'en', 1, 'https://ror.org/04sk00116 Higher Knowledge Institute of Languages and Translation'),
(23483, 'https://ror.org/04ebnqc56', 'en', 1, 'https://ror.org/04ebnqc56 Egyptian Institute of Alexandria Academy for Administration & Accounting المعهد المصري لأكاديمية الإسكندرية للإدارة والمحاسبة'),
(23484, 'https://ror.org/01g03yb06', 'pt', 1, 'https://ror.org/01g03yb06 Universidade Gregório Semedo'),
(23485, 'https://ror.org/02ghs4671', 'pt', 1, 'https://ror.org/02ghs4671 Universidade Independente de Angola'),
(23486, 'https://ror.org/02y4de895', 'en', 1, 'https://ror.org/02y4de895 Methodist University of Angola Universidade Metodista de Angola'),
(23487, 'https://ror.org/01sh4dd92', 'pt', 1, 'https://ror.org/01sh4dd92 Universidade Óscar Ribas'),
(23488, 'https://ror.org/000848h33', 'fr', 1, 'https://ror.org/000848h33 Hautes Études Chrétiennes de Management et de Mathématiques Appliquées'),
(23489, 'https://ror.org/00g7skf89', 'en', 1, 'https://ror.org/00g7skf89 Private University of Angola Universidade Privada de Angola'),
(23490, 'https://ror.org/01gnc7759', 'en', 1, 'https://ror.org/01gnc7759 Technical University of Angola Universidade Técnica de Angola'),
(23491, 'https://ror.org/01vwap211', 'fr', 1, 'https://ror.org/01vwap211 Institut National des Sciences Comptables et de l’Administration d’Entreprises'),
(23492, 'https://ror.org/01erhpg17', 'en', 1, 'https://ror.org/01erhpg17 Catholic University of Madagascar Oniversite Katolika eto Madagasikara Université Catholique de Madagascar'),
(23493, 'https://ror.org/001v8xr05', 'fr', 1, 'https://ror.org/001v8xr05 Institut Supérieur de la Communication, des Affaires et du Management'),
(23494, 'https://ror.org/00pd4qq98', 'fr', 1, 'https://ror.org/00pd4qq98 Université d’Antsiranana'),
(23495, 'https://ror.org/00hhvp820', 'fr', 1, 'https://ror.org/00hhvp820 Université de Mahajanga'),
(23496, 'https://ror.org/03vr42a56', 'en', 1, 'https://ror.org/03vr42a56 Oniversite Toamasina University of Toamasina Université de Toamasina'),
(23497, 'https://ror.org/02ar7jm50', 'en', 1, 'https://ror.org/02ar7jm50 Kwara State Polytechnic'),
(23498, 'https://ror.org/03a0zrg31', 'fr', 1, 'https://ror.org/03a0zrg31 Université Internationale de Tunis الجامعة الدولية لتونس'),
(23499, 'https://ror.org/03y5bfq47', 'en', 1, 'https://ror.org/03y5bfq47 Health International Private University'),
(23500, 'https://ror.org/033xhzd30', 'en', 1, 'https://ror.org/033xhzd30 Tunisia Private University Université libre de tunis'),
(23501, 'https://ror.org/03smwm886', 'en', 1, 'https://ror.org/03smwm886 Higher Institute for Tourism, Hotels and Computer المعهد العالى للسياحة والفنادق والحاسب الآلى - السيوف / الإسكندرية'),
(23502, 'https://ror.org/05cdryb21', 'fr', 1, 'https://ror.org/05cdryb21 Université Montplaisir Tunis'),
(23503, 'https://ror.org/04cgmbd24', 'en', 1, 'https://ror.org/04cgmbd24 Pharos University in Alexandria جامعة فاروس بالإسكندرية'),
(23504, 'https://ror.org/033vzfc66', 'fr', 1, 'https://ror.org/033vzfc66 École Normale Supérieure de Nouakchott'),
(23505, 'https://ror.org/03spqk736', 'fr', 1, 'https://ror.org/03spqk736 Haute École de Commerce et de Management'),
(23506, 'https://ror.org/00f3apt60', 'en', 1, 'https://ror.org/00f3apt60 Kaduna Polytechnic'),
(23507, 'https://ror.org/0063tkv49', 'en', 1, 'https://ror.org/0063tkv49 Kaduna State University'),
(23508, 'https://ror.org/03pys9888', 'en', 1, 'https://ror.org/03pys9888 High-Tech Rabat-Agdal'),
(23509, 'https://ror.org/02fyv5292', 'en', 1, 'https://ror.org/02fyv5292 Mediterranean School of Business المدرسة المتوسطية للأعمال'),
(23510, 'https://ror.org/01g37t325', 'fr', 1, 'https://ror.org/01g37t325 Université Ibn Khaldoun جامعة إبن خلدون الخاصّة'),
(23511, 'https://ror.org/05gwcqj56', 'en', 1, 'https://ror.org/05gwcqj56 Umaru Musa Yar''adua University'),
(23512, 'https://ror.org/01cw3ja29', 'en', 1, 'https://ror.org/01cw3ja29 Higher Institute of Social Service'),
(23513, 'https://ror.org/0105bda30', 'en', 1, 'https://ror.org/0105bda30 Virtual University of Tunis جامعة تونس الافتراضية'),
(23514, 'https://ror.org/009tveq15', 'en', 1, 'https://ror.org/009tveq15 National Open University of Nigeria'),
(23515, 'https://ror.org/02tythz78', 'en', 1, 'https://ror.org/02tythz78 Pan-Atlantic University'),
(23516, 'https://ror.org/03s5r1026', 'en', 1, 'https://ror.org/03s5r1026 Mountains of the Moon University'),
(23517, 'https://ror.org/05chrxg27', 'en', 1, 'https://ror.org/05chrxg27 Ibrahim Badamasi Babangida University'),
(23518, 'https://ror.org/05s29c959', 'en', 1, 'https://ror.org/05s29c959 Nahda University جامعة النهضة'),
(23519, 'https://ror.org/05397ce75', 'en', 1, 'https://ror.org/05397ce75 Busoga University'),
(23520, 'https://ror.org/02fgfjw51', 'en', 1, 'https://ror.org/02fgfjw51 Mauritius Institute of Education'),
(23521, 'https://ror.org/056e30g48', 'en', 1, 'https://ror.org/056e30g48 Salem University'),
(23522, 'https://ror.org/02trpe492', 'en', 1, 'https://ror.org/02trpe492 Bugema University'),
(23523, 'https://ror.org/031ra7072', 'fr', 1, 'https://ror.org/031ra7072 Universiapolis - Université Internationale d''Agadir'),
(23524, 'https://ror.org/0568y3j03', 'en', 1, 'https://ror.org/0568y3j03 Federal University of Technology Minna'),
(23525, 'https://ror.org/01t11nq62', 'en', 1, 'https://ror.org/01t11nq62 Adamawa State University'),
(23526, 'https://ror.org/03jfsyd35', 'en', 1, 'https://ror.org/03jfsyd35 Clarke International University'),
(23527, 'https://ror.org/014khff20', 'en', 1, 'https://ror.org/014khff20 Kampala University'),
(23528, 'https://ror.org/04dbvvk55', 'en', 1, 'https://ror.org/04dbvvk55 Bingham University'),
(23529, 'https://ror.org/05pvbk494', 'en', 1, 'https://ror.org/05pvbk494 Western Delta University'),
(23530, 'https://ror.org/05yh37w40', 'en', 1, 'https://ror.org/05yh37w40 Uganda Management Institute'),
(23531, 'https://ror.org/00zqfkn54', 'en', 1, 'https://ror.org/00zqfkn54 Wesley University'),
(23532, 'https://ror.org/052mp5r63', 'fr', 1, 'https://ror.org/052mp5r63 Pigier Bénin'),
(23533, 'https://ror.org/00ah3j950', 'en', 1, 'https://ror.org/00ah3j950 Fountain University'),
(23534, 'https://ror.org/00xb81q67', 'fr', 1, 'https://ror.org/00xb81q67 École Supérieure de Gestion'),
(23535, 'https://ror.org/045zk7t12', 'en', 1, 'https://ror.org/045zk7t12 Académie internationale mohammed vi de l''aviation civile International Academy Mohammed VI of Civil Aviation أكاديمية محمد السادس الدولية للطيران المدني'),
(23536, 'https://ror.org/01hjj5n27', 'en', 1, 'https://ror.org/01hjj5n27 University of Science and Technology of Benin Université des Sciences et Technologies du Bénin'),
(23537, 'https://ror.org/009drq556', 'en', 1, 'https://ror.org/009drq556 Bells University of Technology'),
(23538, 'https://ror.org/02vmcxs72', 'no_lang_code', 1, 'https://ror.org/02vmcxs72 Mulungushi University'),
(23539, 'https://ror.org/000bkwn04', 'fr', 1, 'https://ror.org/000bkwn04 Université Protestante d''Afrique de l''Ouest'),
(23540, 'https://ror.org/050850526', 'en', 1, 'https://ror.org/050850526 Michael Okpara University of Agriculture'),
(23541, 'https://ror.org/02045bf64', 'en', 1, 'https://ror.org/02045bf64 Tansian University'),
(23542, 'https://ror.org/03fgtjr33', 'en', 1, 'https://ror.org/03fgtjr33 Copperbelt University'),
(23543, 'https://ror.org/037bdd431', 'en', 1, 'https://ror.org/037bdd431 Arab Open University الجامعة العربية المفتوحة'),
(23544, 'https://ror.org/002z77y34', 'en', 1, 'https://ror.org/002z77y34 Copperstone University'),
(23545, 'https://ror.org/008t11f85', 'fr', 1, 'https://ror.org/008t11f85 Université Ouaga II'),
(23546, 'https://ror.org/02fjyx055', 'fr', 1, 'https://ror.org/02fjyx055 Institut Supérieur de Gestion des Entreprises'),
(23547, 'https://ror.org/05g3wdh84', 'en', 1, 'https://ror.org/05g3wdh84 Akwa Ibom State University'),
(23548, 'https://ror.org/01p81kj40', 'fr', 1, 'https://ror.org/01p81kj40 Université des Grands Lacs'),
(23549, 'https://ror.org/03nmehh68', 'fr', 1, 'https://ror.org/03nmehh68 Université du Lac Tanganyika'),
(23550, 'https://ror.org/02w4pz848', 'en', 1, 'https://ror.org/02w4pz848 Light University of Bujumbur Université lLumière de Bujumbura'),
(23551, 'https://ror.org/01z6f4063', 'en', 1, 'https://ror.org/01z6f4063 DMI St. Eugene University'),
(23552, 'https://ror.org/036m3h813', 'en', 1, 'https://ror.org/036m3h813 University of Ngozi Université de Ngozi'),
(23553, 'https://ror.org/05wt6nv93', 'en', 1, 'https://ror.org/05wt6nv93 University College of Technology'),
(23554, 'https://ror.org/045rvh172', 'en', 1, 'https://ror.org/045rvh172 Cairo Higher Institute'),
(23555, 'https://ror.org/057943037', 'no_lang_code', 1, 'https://ror.org/057943037 National Institute of Public Administration'),
(23556, 'https://ror.org/04xrk2k91', 'en', 1, 'https://ror.org/04xrk2k91 University of Africa'),
(23557, 'https://ror.org/00603mc70', 'no_lang_code', 1, 'https://ror.org/00603mc70 University of Lusaka'),
(23558, 'https://ror.org/02j0dnv45', 'en', 1, 'https://ror.org/02j0dnv45 Zambia Centre for Accountancy Studies'),
(23559, 'https://ror.org/029me2q51', 'en', 1, 'https://ror.org/029me2q51 Egyptian Russian University الجامعة الروسية المصرية'),
(23560, 'https://ror.org/05srxwy94', 'en', 1, 'https://ror.org/05srxwy94 Higher Institute of Applied Arts المعهد العالي للفنون التطبيقية'),
(23561, 'https://ror.org/00vz50m28', 'en', 1, 'https://ror.org/00vz50m28 Zambian Open University'),
(23562, 'https://ror.org/04nsmrq40', 'en', 1, 'https://ror.org/04nsmrq40 Kwararafa University'),
(23563, 'https://ror.org/0522zyy65', 'no_lang_code', 1, 'https://ror.org/0522zyy65 Rusangu University'),
(23564, 'https://ror.org/026vdme11', 'en', 1, 'https://ror.org/026vdme11 Higher Institute for Cooperative and Administrative Studies'),
(23565, 'https://ror.org/03pwcr767', 'en', 1, 'https://ror.org/03pwcr767 Niger Delta University'),
(23566, 'https://ror.org/03vgyhc77', 'en', 1, 'https://ror.org/03vgyhc77 Northrise University'),
(23567, 'https://ror.org/02kv8bx48', 'en', 1, 'https://ror.org/02kv8bx48 American University of Nigeria'),
(23568, 'https://ror.org/00d1mmk36', 'en', 1, 'https://ror.org/00d1mmk36 High Institute of Management and Entrepreneurship Institut de Management et de l'' Entrepreunariat'),
(23569, 'https://ror.org/04f9bf414', 'en', 1, 'https://ror.org/04f9bf414 Niger State Polytechnic'),
(23570, 'https://ror.org/047353127', 'fr', 1, 'https://ror.org/047353127 Institut Supérieur Pédagogique de Gitwe'),
(23571, 'https://ror.org/02fwenk18', 'en', 1, 'https://ror.org/02fwenk18 Thebes Academy أكاديمية طيبه'),
(23572, 'https://ror.org/03e7f5c12', 'fr', 1, 'https://ror.org/03e7f5c12 Institut Universitaire de la Côte'),
(23573, 'https://ror.org/05cqf3m25', 'en', 1, 'https://ror.org/05cqf3m25 Adventist University Cosendai Université Adventiste Cosendai'),
(23574, 'https://ror.org/028th4269', 'fr', 1, 'https://ror.org/028th4269 École des Hautes Études de Biotechnologie et de Santé'),
(23575, 'https://ror.org/02hx2nv16', 'fr', 1, 'https://ror.org/02hx2nv16 École des Hautes Études en Ingénierie des Systèmes d''Information'),
(23576, 'https://ror.org/02exeb428', 'en', 1, 'https://ror.org/02exeb428 Modern Academy'),
(23577, 'https://ror.org/05g82f642', 'en', 1, 'https://ror.org/05g82f642 National Telecommunications Institute المعهد القومى للاتصالات'),
(23578, 'https://ror.org/035a99w03', 'fr', 1, 'https://ror.org/035a99w03 École Nationale d''Administration et de Magistrature'),
(23579, 'https://ror.org/04scnnc07', 'en', 1, 'https://ror.org/04scnnc07 Sadat Academy for Management Sciences أكاديمية السادات للعلوم الإدارية'),
(23580, 'https://ror.org/05c2yb215', 'fr', 1, 'https://ror.org/05c2yb215 École des Hautes Études Économiques et Commerciales'),
(23581, 'https://ror.org/01dd13a92', 'en', 1, 'https://ror.org/01dd13a92 Sinai University جامعة سيناء'),
(23582, 'https://ror.org/01w1jmq84', 'fr', 1, 'https://ror.org/01w1jmq84 École Normale Supérieure - Marrakech'),
(23583, 'https://ror.org/05eq5hq62', 'en', 1, 'https://ror.org/05eq5hq62 Tabbin Institute for Metallurgical Studies معهد التبين للدراسات المعدنية'),
(23584, 'https://ror.org/03njp5837', 'fr', 1, 'https://ror.org/03njp5837 École Royale de l''Air de Marrakech المدرسة الملكية الجوية'),
(23585, 'https://ror.org/001msrs66', 'fr', 1, 'https://ror.org/001msrs66 Institut Panafricain pour le Développement Afrique Centrale'),
(23586, 'https://ror.org/02n0het18', 'en', 1, 'https://ror.org/02n0het18 Adventist University of Central Africa Universite Adventiste d''Afrique Central'),
(23587, 'https://ror.org/04g124k93', 'fr', 1, 'https://ror.org/04g124k93 École Supérieure d''Informatique Appliquée à la Gestion'),
(23588, 'https://ror.org/03ez88s78', 'fr', 1, 'https://ror.org/03ez88s78 Sup de Co Marrakech École Supérieure de Commerce de Marrakech'),
(23589, 'https://ror.org/017wwgg26', 'en', 1, 'https://ror.org/017wwgg26 Kigali Independent University Université libre de kigali'),
(23590, 'https://ror.org/01d1pbg09', 'fr', 1, 'https://ror.org/01d1pbg09 École Marocaine des Sciences de l''Ingénieur المدرسة المغربية لعلوم الهندسة'),
(23591, 'https://ror.org/0052qvr31', 'fr', 1, 'https://ror.org/0052qvr31 École Normale Supérieure Casablanca'),
(23592, 'https://ror.org/03zkf9p37', 'fr', 1, 'https://ror.org/03zkf9p37 École Supérieure de Management Appliqué'),
(23593, 'https://ror.org/02pyw9g57', 'en', 1, 'https://ror.org/02pyw9g57 Higher Institute of Engineering المعهد العالي للهندسة'),
(23594, 'https://ror.org/05p811391', 'en', 1, 'https://ror.org/05p811391 National Advanced School of Public Works École Nationale Supérieure des Travaux Publics'),
(23595, 'https://ror.org/0480jab46', 'fr', 1, 'https://ror.org/0480jab46 Institut International des Assurances'),
(23596, 'https://ror.org/02rq1qj48', 'fr', 1, 'https://ror.org/02rq1qj48 Institut National de la Jeunesse et des Sports'),
(23597, 'https://ror.org/059dwew39', 'fr', 1, 'https://ror.org/059dwew39 École Supérieure des Sciences de l''Ingénierie Commerciale');
INSERT INTO `rors` VALUES
(23598, 'https://ror.org/04aen0982', 'fr', 1, 'https://ror.org/04aen0982 Centre Africain d''Études Supérieures en Gestion'),
(23599, 'https://ror.org/02jwdjd44', 'fr', 1, 'https://ror.org/02jwdjd44 Institut Universitaire Siantou'),
(23600, 'https://ror.org/02ddjw503', 'en', 1, 'https://ror.org/02ddjw503 Academy of Arts أكاديمية الفنون'),
(23601, 'https://ror.org/02v8m8m62', 'fr', 1, 'https://ror.org/02v8m8m62 École Inter-États des Sciences et Médecine Vétérinaires de Dakar'),
(23602, 'https://ror.org/03arr3t82', 'fr', 1, 'https://ror.org/03arr3t82 Institut Sous-Régional de Statistique et d''Economie Appliquée'),
(23603, 'https://ror.org/03x6w2s62', 'fr', 1, 'https://ror.org/03x6w2s62 Université Protestante d''Afrique Centrale'),
(23604, 'https://ror.org/00x4mq261', 'fr', 1, 'https://ror.org/00x4mq261 École Nationale d''Administration'),
(23605, 'https://ror.org/001fphc23', 'en', 1, 'https://ror.org/001fphc23 Universidade de Cabo Verde University of Cape Verde'),
(23606, 'https://ror.org/04arj7s97', 'fr', 1, 'https://ror.org/04arj7s97 Groupe École Supérieure de Commerce de Dakar'),
(23607, 'https://ror.org/01nvnhx40', 'en', 1, 'https://ror.org/01nvnhx40 October University of Modern Sciences and Arts جامعة أكتوبر للعلوم الحديثة والآداب'),
(23608, 'https://ror.org/035pp4j25', 'fr', 1, 'https://ror.org/035pp4j25 École Normale Supérieure de l''Enseignement Technique de Mohammedia'),
(23609, 'https://ror.org/047vq0f11', 'fr', 1, 'https://ror.org/047vq0f11 Université du Sahel'),
(23610, 'https://ror.org/004y9tt39', 'pt', 1, 'https://ror.org/004y9tt39 Instituto Superior de Ciências Económicas e Empresariais'),
(23611, 'https://ror.org/05m7smv12', 'en', 1, 'https://ror.org/05m7smv12 Egyptian Aviation Academy الأكاديمية المصرية لعلوم الطيران'),
(23612, 'https://ror.org/05pa24340', 'fr', 1, 'https://ror.org/05pa24340 École Royale Navale'),
(23613, 'https://ror.org/03fgj8421', 'fr', 1, 'https://ror.org/03fgj8421 École d''Architecture de Casablanca'),
(23614, 'https://ror.org/01gdk5c28', 'fr', 1, 'https://ror.org/01gdk5c28 Institut des Hautes Études Bancaires et Financières'),
(23615, 'https://ror.org/047e7td90', 'fr', 1, 'https://ror.org/047e7td90 École Supérieure d''Informatique Appliquée'),
(23616, 'https://ror.org/016fjr533', 'fr', 1, 'https://ror.org/016fjr533 Université du Sine Saloum El-Hâdj Ibrahima NIASS'),
(23617, 'https://ror.org/01yt1q538', 'fr', 1, 'https://ror.org/01yt1q538 Institut International des Sciences et de Technologie'),
(23618, 'https://ror.org/0235m5777', 'fr', 1, 'https://ror.org/0235m5777 École Supérieure de Communication et de Publicité'),
(23619, 'https://ror.org/0279yv972', 'en', 1, 'https://ror.org/0279yv972 Pharaohs Higher Institute of Computer Information Systems and Management معهد الفراعنة العالى للحاسب الألى ونظم المعلومات والإدارة'),
(23620, 'https://ror.org/01e7fkm87', 'fr', 1, 'https://ror.org/01e7fkm87 École Supérieure de Design et des Arts Visuels'),
(23621, 'https://ror.org/01913dg57', 'fr', 1, 'https://ror.org/01913dg57 École Supérieure Multinationale des Télécommunications'),
(23622, 'https://ror.org/023zc1f33', 'fr', 1, 'https://ror.org/023zc1f33 Établissement Dar El Hadith El Hassania مؤسسة دار الحديث الحسنية'),
(23623, 'https://ror.org/00jb25p80', 'fr', 1, 'https://ror.org/00jb25p80 Ecole Supérieure d’Economie Appliquée'),
(23624, 'https://ror.org/04q8seb48', 'fr', 1, 'https://ror.org/04q8seb48 École Supérieure de Management'),
(23625, 'https://ror.org/036gt0m92', 'en', 1, 'https://ror.org/036gt0m92 Jean Piaget University of Cape Verde Universidade Jean Piaget de Cabo Verde'),
(23626, 'https://ror.org/01ddvnr27', 'fr', 1, 'https://ror.org/01ddvnr27 École Supérieure de Psychologie'),
(23627, 'https://ror.org/01jp0tk64', 'fr', 1, 'https://ror.org/01jp0tk64 Gaston Berger University Université Gaston Berger'),
(23628, 'https://ror.org/00160a123', 'fr', 1, 'https://ror.org/00160a123 École Supérieure des Multimédia, Informatique & Réseaux'),
(23629, 'https://ror.org/04h86q851', 'fr', 1, 'https://ror.org/04h86q851 École Supérieure Internationale de Gestion'),
(23630, 'https://ror.org/02kpg0b77', 'fr', 1, 'https://ror.org/02kpg0b77 Institut des Hautes Études Bancaires, Financières et Managériale'),
(23631, 'https://ror.org/04wx25x02', 'fr', 1, 'https://ror.org/04wx25x02 École des Sciences de I''information مدرسة علوم المعلومات'),
(23632, 'https://ror.org/00m4aft17', 'fr', 1, 'https://ror.org/00m4aft17 Université Adam Barka d''Abéché'),
(23633, 'https://ror.org/05e2hx460', 'fr', 1, 'https://ror.org/05e2hx460 École Marocaine de Banque et de Commerce International'),
(23634, 'https://ror.org/02qn44j35', 'fr', 1, 'https://ror.org/02qn44j35 Université de Moundou'),
(23635, 'https://ror.org/00cacz449', 'fr', 1, 'https://ror.org/00cacz449 Institut Supérieur d''Etudes Sociales'),
(23636, 'https://ror.org/03374t109', 'en', 1, 'https://ror.org/03374t109 Canadian International College الكلية الكندية الدولية'),
(23637, 'https://ror.org/0158yx659', 'fr', 1, 'https://ror.org/0158yx659 Groupe Institut des Hautes Études Économiques et Sociales'),
(23638, 'https://ror.org/01x7pha69', 'fr', 1, 'https://ror.org/01x7pha69 Institut Marocain de Management'),
(23639, 'https://ror.org/02ns7ka34', 'en', 1, 'https://ror.org/02ns7ka34 Arab Studies and Research Institute معهد البحوث والدراسات العربية'),
(23640, 'https://ror.org/05t8m1733', 'en', 1, 'https://ror.org/05t8m1733 Social Work Institute in Cairo'),
(23641, 'https://ror.org/01whrhv58', 'fr', 1, 'https://ror.org/01whrhv58 Institut Supérieur d’Electronique et des Réseaux & Télécommunications'),
(23642, 'https://ror.org/05cedyx57', 'fr', 1, 'https://ror.org/05cedyx57 Institut Supérieur de Commerce et d''Administration des Entreprises'),
(23643, 'https://ror.org/02z0zz187', 'fr', 1, 'https://ror.org/02z0zz187 Institut Supérieur de comptabilité Audit et Finance'),
(23644, 'https://ror.org/00j6k1v44', 'fr', 1, 'https://ror.org/00j6k1v44 Institut Supérieur de Formation en Technologie Alimentaire'),
(23645, 'https://ror.org/05g9kje37', 'fr', 1, 'https://ror.org/05g9kje37 Institut Supérieur de Gestion'),
(23646, 'https://ror.org/00wx3ns38', 'fr', 1, 'https://ror.org/00wx3ns38 Institut Supérieur d''Études Maritimes المعهد العالي للدراسات البحرية'),
(23647, 'https://ror.org/03mexge56', 'fr', 1, 'https://ror.org/03mexge56 École Supérieure d''Informatique et de Management des Affaires'),
(23648, 'https://ror.org/04700yz30', 'fr', 1, 'https://ror.org/04700yz30 Université libre des Pays des Grands Lacs'),
(23649, 'https://ror.org/04y12vd76', 'fr', 1, 'https://ror.org/04y12vd76 École Nationale Supérieure de l''Administration المدرسة الوطنية العليا للإدارة'),
(23650, 'https://ror.org/00n7n3773', 'en', 1, 'https://ror.org/00n7n3773 Ecole Nationale d''Architecture National School of Architecture المدرسة الوطنية للهندسة المعمارية'),
(23651, 'https://ror.org/00ychtq28', 'fr', 1, 'https://ror.org/00ychtq28 École des Hautes Études Commerciales'),
(23652, 'https://ror.org/04j6ssn11', 'en', 1, 'https://ror.org/04j6ssn11 Sinai Higher Institute for Tourism and Hotels المعهد المصرى العالى للسياحة والفنادق'),
(23653, 'https://ror.org/05pnejf26', 'fr', 1, 'https://ror.org/05pnejf26 École Polyvalente Supérieure d''Informatique et d''Électronique'),
(23654, 'https://ror.org/03dt5t405', 'fr', 1, 'https://ror.org/03dt5t405 École Supérieure d''Architecture d''Intérieur'),
(23655, 'https://ror.org/04r8t4c49', 'en', 1, 'https://ror.org/04r8t4c49 Sup Management سيب مناجمنت'),
(23656, 'https://ror.org/02xt59385', 'fr', 1, 'https://ror.org/02xt59385 École Supérieure de Gestion et des Sciences de l''Informatique'),
(23657, 'https://ror.org/018vhc422', 'fr', 1, 'https://ror.org/018vhc422 École Supérieure des Télécommunications'),
(23658, 'https://ror.org/00tt5kf04', 'en', 1, 'https://ror.org/00tt5kf04 Marien Ngouabi University Université Marien Ngouabi'),
(23659, 'https://ror.org/019y83h24', 'fr', 1, 'https://ror.org/019y83h24 École Supérieure Vinci'),
(23660, 'https://ror.org/0306pcd50', 'fr', 1, 'https://ror.org/0306pcd50 Université Evangélique en Afrique'),
(23661, 'https://ror.org/02pad2v09', 'fr', 1, 'https://ror.org/02pad2v09 Université Officielle de Bukavu'),
(23662, 'https://ror.org/04sd0cj41', 'fr', 1, 'https://ror.org/04sd0cj41 Académie des Beaux-Arts'),
(23663, 'https://ror.org/00wbbfv86', 'fr', 1, 'https://ror.org/00wbbfv86 Université Catholique du Graben'),
(23664, 'https://ror.org/04s6jxt38', 'en', 1, 'https://ror.org/04s6jxt38 Sindh Agriculture University سنڌ زرعي يونيورسٽي ٽنڊو ڄام'),
(23665, 'https://ror.org/00fh84p67', 'fr', 1, 'https://ror.org/00fh84p67 École d''Informatique, d''Électronique et d''Expertise Comptable'),
(23666, 'https://ror.org/045m93336', 'en', 1, 'https://ror.org/045m93336 National University of Equatorial Guinea Universidad Nacional de Guinea Ecuatorial'),
(23667, 'https://ror.org/00409ce90', 'en', 1, 'https://ror.org/00409ce90 Ethiopian Civil Service University የኢትዮጵያ ሲቪል ሰርቪስ ዩኒቨርሲቲ'),
(23668, 'https://ror.org/00ssp9h11', 'en', 1, 'https://ror.org/00ssp9h11 Arba Minch University የአርባ ምንጭ ዩኒቨርሲቲ'),
(23669, 'https://ror.org/01670bg46', 'en', 1, 'https://ror.org/01670bg46 Bahir Dar University ባህር ዳር ዩኒቨርስቲ'),
(23670, 'https://ror.org/05jnrzf43', 'en', 1, 'https://ror.org/05jnrzf43 Unity University College ዩኒቲ ዩኒቨርስቲ'),
(23671, 'https://ror.org/01pk8rb11', 'en', 1, 'https://ror.org/01pk8rb11 University of Kirkuk جامعة كركوك'),
(23672, 'https://ror.org/0486gbb16', 'en', 1, 'https://ror.org/0486gbb16 Higher Institute of Computer Science and Management Technology'),
(23673, 'https://ror.org/029sbsp57', 'en', 1, 'https://ror.org/029sbsp57 Badakhshan University پوهنتون بدخشان'),
(23674, 'https://ror.org/01s4pfm44', 'fr', 1, 'https://ror.org/01s4pfm44 Institut Africain d''Informatique'),
(23675, 'https://ror.org/0212pqc18', 'en', 1, 'https://ror.org/0212pqc18 Lasbela University of Agriculture Water and Marine Science'),
(23676, 'https://ror.org/02ht5pq60', 'en', 1, 'https://ror.org/02ht5pq60 Kabul University دانشگاه کابل'),
(23677, 'https://ror.org/03ajsbp04', 'en', 1, 'https://ror.org/03ajsbp04 Accra Institute of Technology'),
(23678, 'https://ror.org/037732v94', 'en', 1, 'https://ror.org/037732v94 Central University'),
(23679, 'https://ror.org/020we4134', 'en', 1, 'https://ror.org/020we4134 University of Wah واہ یونیورسٹی'),
(23680, 'https://ror.org/01qe1a488', 'en', 1, 'https://ror.org/01qe1a488 Azerbaijan Technical University Azərbaycan Texniki Universiteti Азербайджанский технический университет'),
(23681, 'https://ror.org/050r2qc20', 'en', 1, 'https://ror.org/050r2qc20 Kyushu University of Nursing and Social Welfare 九州看護福祉大学'),
(23682, 'https://ror.org/00d440w27', 'no_lang_code', 1, 'https://ror.org/00d440w27 Tenri University 天理大学'),
(23683, 'https://ror.org/01znwv148', 'en', 1, 'https://ror.org/01znwv148 Azerbaijan State Marine Academy Azərbaycan Dövlət Dəniz Akademiyası Азербайджанская государственная морская академия'),
(23684, 'https://ror.org/02mpq1w39', 'en', 1, 'https://ror.org/02mpq1w39 Suamandeep Vidyapeeth University સુમનદીપ વિધાપીઠ'),
(23685, 'https://ror.org/058e7px26', 'en', 1, 'https://ror.org/058e7px26 Azerbaijan State Pedagogical University Azərbaycan Dövlət Pedaqoji Universiteti'),
(23686, 'https://ror.org/00vr9xx71', 'en', 1, 'https://ror.org/00vr9xx71 Central University of Tibetan Studies'),
(23687, 'https://ror.org/0080c1a18', 'en', 1, 'https://ror.org/0080c1a18 Azerbaijan State University of Culture and Arts Azərbaycan Dövlət Mədəniyyət və İncəsənət Universiteti Азербайджанский государственный университет культуры и искусств'),
(23688, 'https://ror.org/050dyg448', 'en', 1, 'https://ror.org/050dyg448 Azerbaijan University of Languages Azərbaycan Dillər Universiteti Азербайджанский университет языков'),
(23689, 'https://ror.org/01px61q40', 'fr', 1, 'https://ror.org/01px61q40 Institut Privé de Gestion Institut Supérieur de Technologie Industrielle'),
(23690, 'https://ror.org/04cgn5q20', 'en', 1, 'https://ror.org/04cgn5q20 Al-Quds Open University جامعة القدس المفتوحة'),
(23691, 'https://ror.org/03jeahd70', 'no_lang_code', 1, 'https://ror.org/03jeahd70 Shikoku University 四国大学'),
(23692, 'https://ror.org/00rq5kg69', 'en', 1, 'https://ror.org/00rq5kg69 Azerbaijan International University'),
(23693, 'https://ror.org/017nqsd88', 'no_lang_code', 1, 'https://ror.org/017nqsd88 Sampurnanand Sanskrit Vishwavidyalaya सम्पूर्णानन्द संस्कृत विश्वविद्यालय சம்பூர்ணானந்து சமசுகிருத பல்கலைக்கழகம்'),
(23694, 'https://ror.org/02shm3a27', 'en', 1, 'https://ror.org/02shm3a27 Azerbaijan University of Architecture and Construction Azərbaycan Memarlıq və İnşaat Universiteti'),
(23695, 'https://ror.org/053h75930', 'en', 1, 'https://ror.org/053h75930 Bunkyo University 文教大学'),
(23696, 'https://ror.org/00g1psz15', 'en', 1, 'https://ror.org/00g1psz15 Azerbaijan University Azərbaycan Universiteti'),
(23697, 'https://ror.org/02erz7116', 'no_lang_code', 1, 'https://ror.org/02erz7116 Gakushūin School Corporation 学校法人 学習院'),
(23698, 'https://ror.org/03x1wer98', 'en', 1, 'https://ror.org/03x1wer98 Kaetsu University 嘉悦大学'),
(23699, 'https://ror.org/03e99kh24', 'en', 1, 'https://ror.org/03e99kh24 Al-Aqsa University جامعة الأقصى'),
(23700, 'https://ror.org/027dkjg03', 'en', 1, 'https://ror.org/027dkjg03 Keisen University 恵泉女学園大学'),
(23701, 'https://ror.org/02gfhhc90', 'en', 1, 'https://ror.org/02gfhhc90 Komazawa Women''s University 駒沢女子大学'),
(23702, 'https://ror.org/00sew4x53', 'en', 1, 'https://ror.org/00sew4x53 Odlar Yurdu Universiteti Odlar Yurdu University'),
(23703, 'https://ror.org/008bb2h75', 'no_lang_code', 1, 'https://ror.org/008bb2h75 Musashino Academia Musicae 武蔵野音楽大学'),
(23704, 'https://ror.org/04wwgp209', 'en', 1, 'https://ror.org/04wwgp209 Hebron University جامعة الخليل'),
(23705, 'https://ror.org/0538j0209', 'en', 1, 'https://ror.org/0538j0209 Qafqaz Universiteti Qafqaz University'),
(23706, 'https://ror.org/04csdwy58', 'no_lang_code', 1, 'https://ror.org/04csdwy58 Mahatma Gandhi Antarrashtriya Hindi Vishwavidyalaya Mahatma Gandhi International Hindi University महात्मा गांधी अन्तरराष्ट्रीय हिन्दी विश्वविद्यालय'),
(23707, 'https://ror.org/02gpy8g87', 'en', 1, 'https://ror.org/02gpy8g87 Western Philippines University'),
(23708, 'https://ror.org/04mdk1103', 'en', 1, 'https://ror.org/04mdk1103 Angeles University Foundation Pundasyong Pamantasang Angeles'),
(23709, 'https://ror.org/05cgtjz78', 'en', 1, 'https://ror.org/05cgtjz78 Qərbi Kaspi Universiteti Western Caspian University'),
(23710, 'https://ror.org/01x1bp495', 'en', 1, 'https://ror.org/01x1bp495 Holy Angel University Pamantasang Holy Angel'),
(23711, 'https://ror.org/00bgzqr58', 'id', 1, 'https://ror.org/00bgzqr58 Universitas Sains dan Teknologi Jayapura'),
(23712, 'https://ror.org/02c37r983', 'en', 1, 'https://ror.org/02c37r983 University of Negros Occidental – Recoletos'),
(23713, 'https://ror.org/00pdwbh96', 'en', 1, 'https://ror.org/00pdwbh96 University of St. La Salle'),
(23714, 'https://ror.org/05y9enm95', 'en', 1, 'https://ror.org/05y9enm95 Baguio Central University'),
(23715, 'https://ror.org/054fdbt51', 'en', 1, 'https://ror.org/054fdbt51 AZƏRBAYCAN RESPUBLİKASININ PREZİDENTİ YANINDA DÖVLƏT İDARƏÇİLİK AKADEMİYASI Academy of Public Administration'),
(23716, 'https://ror.org/0451bvc41', 'en', 1, 'https://ror.org/0451bvc41 Ganja State University Gəncə Dövlət Universiteti Гянджинский государственный университет'),
(23717, 'https://ror.org/00yrjw682', 'id', 1, 'https://ror.org/00yrjw682 Universitas Darussalam Ambon'),
(23718, 'https://ror.org/056d32z48', 'en', 1, 'https://ror.org/056d32z48 Pamantasan ng Baguio University of Baguio'),
(23719, 'https://ror.org/0518w5j31', 'en', 1, 'https://ror.org/0518w5j31 Lankaran State University Lənkəran Dövlət Universiteti'),
(23720, 'https://ror.org/02wne9d91', 'en', 1, 'https://ror.org/02wne9d91 Nakhchivan State University Naxçıvan Dövlət Universiteti Нахичеванский государственный университет'),
(23721, 'https://ror.org/03rwzd843', 'id', 1, 'https://ror.org/03rwzd843 Universitas Kristen Indonesia Maluku'),
(23722, 'https://ror.org/03yca6a35', 'id', 1, 'https://ror.org/03yca6a35 Universitas Ratu Samban'),
(23723, 'https://ror.org/05dj31k33', 'id', 1, 'https://ror.org/05dj31k33 Universitas Balikpapan'),
(23724, 'https://ror.org/02eg6d927', 'en', 1, 'https://ror.org/02eg6d927 University of the Cordilleras'),
(23725, 'https://ror.org/02f3j0q24', 'en', 1, 'https://ror.org/02f3j0q24 Baliuag University'),
(23726, 'https://ror.org/0496p0503', 'en', 1, 'https://ror.org/0496p0503 Rissho University 立正大学'),
(23727, 'https://ror.org/002rphp73', 'id', 1, 'https://ror.org/002rphp73 Universitas Tri Dharma'),
(23728, 'https://ror.org/02bprcs59', 'en', 1, 'https://ror.org/02bprcs59 Mariano Marcos State University Pambansang Pamantasan ng Mariano Marcos'),
(23729, 'https://ror.org/04q5p4a74', 'no_lang_code', 1, 'https://ror.org/04q5p4a74 Seisen University 清泉女子大学'),
(23730, 'https://ror.org/04qszbx34', 'en', 1, 'https://ror.org/04qszbx34 University of the Sacred Heart 聖心女子大学'),
(23731, 'https://ror.org/005z3e143', 'id', 1, 'https://ror.org/005z3e143 Universitas Abulyatama'),
(23732, 'https://ror.org/00rt3cy21', 'en', 1, 'https://ror.org/00rt3cy21 Visayas State University'),
(23733, 'https://ror.org/05e5m9w32', 'en', 1, 'https://ror.org/05e5m9w32 Nueva Vizcaya State University'),
(23734, 'https://ror.org/004drcv69', 'id', 1, 'https://ror.org/004drcv69 Universitas Iskandar Muda'),
(23735, 'https://ror.org/00jkdhd30', 'en', 1, 'https://ror.org/00jkdhd30 Saint Mary''s University'),
(23736, 'https://ror.org/037wmkw40', 'en', 1, 'https://ror.org/037wmkw40 Benguet State University'),
(23737, 'https://ror.org/02yyxkw16', 'en', 1, 'https://ror.org/02yyxkw16 Arab Open University الجامعة العربية المفتوحة'),
(23738, 'https://ror.org/011rv5893', 'en', 1, 'https://ror.org/011rv5893 Delmon University for Science & Technology جامعة دلمون للعلوم والتكنولوجيا'),
(23739, 'https://ror.org/04g3hr176', 'en', 1, 'https://ror.org/04g3hr176 Kingdom University جامعة المملكة'),
(23740, 'https://ror.org/03ga61755', 'id', 1, 'https://ror.org/03ga61755 Universitas Bandar Lampung'),
(23741, 'https://ror.org/04zskzc62', 'en', 1, 'https://ror.org/04zskzc62 Eastern Samar State University'),
(23742, 'https://ror.org/051j9rm73', 'en', 1, 'https://ror.org/051j9rm73 Father Saturnino Urios University Pamantasang Padre Saturnino Urios'),
(23743, 'https://ror.org/021yq0b87', 'en', 1, 'https://ror.org/021yq0b87 Wesleyan University Philippines'),
(23744, 'https://ror.org/00567j574', 'id', 1, 'https://ror.org/00567j574 Universitas Malahayati'),
(23745, 'https://ror.org/050hatp65', 'en', 1, 'https://ror.org/050hatp65 Capitol University'),
(23746, 'https://ror.org/04x499113', 'en', 1, 'https://ror.org/04x499113 Pundra University of Science and Technology পুন্ড্র ইউনিভার্সিটি অফ সায়েন্স অ্যান্ড টেকনোলজি'),
(23747, 'https://ror.org/05s2ecw65', 'en', 1, 'https://ror.org/05s2ecw65 BGC Trust University Bangladesh বিজিসি ট্রাস্ট বিশ্ববিদ্যালয় বাংলাদেশ'),
(23748, 'https://ror.org/03zf73d71', 'id', 1, 'https://ror.org/03zf73d71 Universitas Muhammadiyah Lampung'),
(23749, 'https://ror.org/021anqv82', 'no_lang_code', 1, 'https://ror.org/021anqv82 Shirayuri University 白百合女子大学'),
(23750, 'https://ror.org/053gxvt69', 'id', 1, 'https://ror.org/053gxvt69 Universitas Saburai'),
(23751, 'https://ror.org/05bg0c903', 'en', 1, 'https://ror.org/05bg0c903 Southern University সার্দান বিশ্ববিদ্যালয়'),
(23752, 'https://ror.org/00jcrsy58', 'en', 1, 'https://ror.org/00jcrsy58 Sugino Fashion College 杉野服飾大学'),
(23753, 'https://ror.org/02c733g32', 'id', 1, 'https://ror.org/02c733g32 Universitas Tulang Bawang Lampung'),
(23754, 'https://ror.org/02j8ga255', 'en', 1, 'https://ror.org/02j8ga255 American International University-Bangladesh আমেরিকান ইন্টারন্যাশনাল ইউনিভার্সিটি-বাংলাদেশ'),
(23755, 'https://ror.org/00c2t9540', 'en', 1, 'https://ror.org/00c2t9540 Taisho University 大正大学'),
(23756, 'https://ror.org/01mm32049', 'en', 1, 'https://ror.org/01mm32049 Pamantasan ng Lungsod ng Kalookan University of Caloocan City'),
(23757, 'https://ror.org/01qq6yz91', 'en', 1, 'https://ror.org/01qq6yz91 Manila Central University'),
(23758, 'https://ror.org/00dwyn417', 'en', 1, 'https://ror.org/00dwyn417 Takachiho University 高千穂大学'),
(23759, 'https://ror.org/05w5r2e40', 'en', 1, 'https://ror.org/05w5r2e40 Atish Dipankar University of Science and Technology অতীশ দীপঙ্কর ইউনিভার্সিটি অফ সায়েন্স অ্যান্ড টেকনোলজি'),
(23760, 'https://ror.org/05pzp6855', 'en', 1, 'https://ror.org/05pzp6855 Samar State University'),
(23761, 'https://ror.org/01044vd48', 'en', 1, 'https://ror.org/01044vd48 Tama Art University 多摩美術大学'),
(23762, 'https://ror.org/01743b883', 'en', 1, 'https://ror.org/01743b883 Central Women''s University কেন্দ্রীয় মহিলা বিশ্ববিদ্যালয়'),
(23763, 'https://ror.org/00y809n33', 'en', 1, 'https://ror.org/00y809n33 Tokyo University of the Arts 東京芸術大学'),
(23764, 'https://ror.org/011tc6n71', 'en', 1, 'https://ror.org/011tc6n71 Cebu Doctors'' University'),
(23765, 'https://ror.org/01vg6n598', 'en', 1, 'https://ror.org/01vg6n598 Darul Ihsan University দারুল ইহসান ইউনিভার্সিটি'),
(23766, 'https://ror.org/05nsh7a69', 'en', 1, 'https://ror.org/05nsh7a69 Dhaka International University ঢাকা ইন্টারন্যাশনাল ইউনিভার্সিটি'),
(23767, 'https://ror.org/05wawev23', 'en', 1, 'https://ror.org/05wawev23 Southwestern University'),
(23768, 'https://ror.org/034xkmw20', 'en', 1, 'https://ror.org/034xkmw20 Pamantasan ng Cebu University of Cebu'),
(23769, 'https://ror.org/05e2ncr14', 'en', 1, 'https://ror.org/05e2ncr14 Eastern University ইস্টার্ন ইউনিভার্সিটি'),
(23770, 'https://ror.org/03ryjp350', 'en', 1, 'https://ror.org/03ryjp350 Pamantasan sa Bisayas University of the Visayas'),
(23771, 'https://ror.org/049jpg876', 'en', 1, 'https://ror.org/049jpg876 Higher Institute for Qualitative Studies المعهد العالي للدراسات النوعية'),
(23772, 'https://ror.org/01c5aqg65', 'en', 1, 'https://ror.org/01c5aqg65 Bulacan State University Pamantasang Pampamahalaang Bulacan'),
(23773, 'https://ror.org/009sv4j63', 'en', 1, 'https://ror.org/009sv4j63 La Consolacion University Philippines Pamantasang La Consolacion sa Pilipinas'),
(23774, 'https://ror.org/024hcay96', 'en', 1, 'https://ror.org/024hcay96 Achva Academic College המכללה האקדמית אחוה'),
(23775, 'https://ror.org/01khe0643', 'en', 1, 'https://ror.org/01khe0643 Harapan Bangsa Institute of Technology Institut Teknologi Harapan Bangsa'),
(23776, 'https://ror.org/05rce5g70', 'en', 1, 'https://ror.org/05rce5g70 Manarat International University মানারাত ইন্টারন্যাশনাল ইউনিভার্সিটি'),
(23777, 'https://ror.org/01pc8bt60', 'en', 1, 'https://ror.org/01pc8bt60 Higher Institute of Islamic Studies المعهد العالى للدراسات الاسلامية'),
(23778, 'https://ror.org/01jc1xp35', 'en', 1, 'https://ror.org/01jc1xp35 Northern University Bangladesh নর্দার্ন ইউনিভার্সিটি'),
(23779, 'https://ror.org/03a2yg438', 'id', 1, 'https://ror.org/03a2yg438 Institut Seni Budaya Indonesia Bandung'),
(23780, 'https://ror.org/03vzjn737', 'en', 1, 'https://ror.org/03vzjn737 Presidency University প্রেসিডেন্সী বিশ্ববিদ্যালয়'),
(23781, 'https://ror.org/00strmv13', 'en', 1, 'https://ror.org/00strmv13 Queens University কুইন্স বিশ্ববিদ্যালয়'),
(23782, 'https://ror.org/00b718e82', 'en', 1, 'https://ror.org/00b718e82 Shanto-Mariam University of Creative Technology শান্ত-মরিয়ম সৃজনশীল প্রযুক্তি বিশ্ববিদ্যালয়'),
(23783, 'https://ror.org/04mwhg379', 'en', 1, 'https://ror.org/04mwhg379 Notre Dame University Pamantasang Notre Dame'),
(23784, 'https://ror.org/00cf0ab87', 'en', 1, 'https://ror.org/00cf0ab87 Southeast University সাউথইস্ট বিশ্ববিদ্যালয়'),
(23785, 'https://ror.org/03xfjma97', 'en', 1, 'https://ror.org/03xfjma97 Lyceum-Northwestern University'),
(23786, 'https://ror.org/01g14tq52', 'en', 1, 'https://ror.org/01g14tq52 State University of Bangladesh স্টেট ইউনিভার্সিটি অফ বাংলাদেশ'),
(23787, 'https://ror.org/050nxyk29', 'en', 1, 'https://ror.org/050nxyk29 Tokyo College of Music 東京音楽大学'),
(23788, 'https://ror.org/04n6bbc07', 'en', 1, 'https://ror.org/04n6bbc07 The Millennium University মিলেনিয়াম বিশ্ববিদ্যালয়'),
(23789, 'https://ror.org/03zzekj93', 'en', 1, 'https://ror.org/03zzekj93 University of Luzon'),
(23790, 'https://ror.org/00194tb08', 'en', 1, 'https://ror.org/00194tb08 People''s University of Bangladesh দ্য পিপলস ইউনিভার্সিটি অফ বাংলাদেশ'),
(23791, 'https://ror.org/0549zdk35', 'en', 1, 'https://ror.org/0549zdk35 Pamantasan ng Pangasinan University of Pangasinan'),
(23792, 'https://ror.org/02yzsqk70', 'id', 1, 'https://ror.org/02yzsqk70 Universitas Al-Ghifari'),
(23793, 'https://ror.org/00mpnf546', 'en', 1, 'https://ror.org/00mpnf546 Unibersidad ng Mindanaw University of Mindanao'),
(23794, 'https://ror.org/0204b4294', 'en', 1, 'https://ror.org/0204b4294 Pamantasang Imaculada Conception University of the Immaculate Conception'),
(23795, 'https://ror.org/04j1zjr14', 'no_lang_code', 1, 'https://ror.org/04j1zjr14 Lander Institute'),
(23796, 'https://ror.org/00we17t20', 'en', 1, 'https://ror.org/00we17t20 Foundation University'),
(23797, 'https://ror.org/00syjsq54', 'en', 1, 'https://ror.org/00syjsq54 Bezalel Academy of Arts and Design בצלאל, אקדמיה לאמנות ועיצוב'),
(23798, 'https://ror.org/00e26jr92', 'id', 1, 'https://ror.org/00e26jr92 Universitas Bale Bandung'),
(23799, 'https://ror.org/0444jhh32', 'en', 1, 'https://ror.org/0444jhh32 Bandung Raya University Universitas Bandung Raya'),
(23800, 'https://ror.org/016t28114', 'en', 1, 'https://ror.org/016t28114 Negros Oriental State University Pamantasang Estatal ng Negros Oriental'),
(23801, 'https://ror.org/05yge8w48', 'en', 1, 'https://ror.org/05yge8w48 Ueno Gakuen University 上野学園大学'),
(23802, 'https://ror.org/00sxnz850', 'en', 1, 'https://ror.org/00sxnz850 University of Development Alternative ইউনিভার্সিটি অব ডেভলপমেন্ট অল্টারনেটিভ'),
(23803, 'https://ror.org/012br3z79', 'en', 1, 'https://ror.org/012br3z79 University of Liberal Arts Bangladesh ইউনির্ভাসিটি অব লিবারেল আর্টস বাংলাদেশ'),
(23804, 'https://ror.org/035zypg15', 'en', 1, 'https://ror.org/035zypg15 Uttara University উত্তরা ইউনিভার্সিটি'),
(23805, 'https://ror.org/04m2r0735', 'en', 1, 'https://ror.org/04m2r0735 Schechter Institute of Jewish Studies מכון שכטר למדעי היהדות'),
(23806, 'https://ror.org/0054vex45', 'en', 1, 'https://ror.org/0054vex45 Victoria University of Bangladesh ভিক্টোরিয়া ইউনিভার্সিটি অফ বাংলাদেশ'),
(23807, 'https://ror.org/01g9q1f24', 'id', 1, 'https://ror.org/01g9q1f24 Universitas Informatika dan Bisnis Indonesia'),
(23808, 'https://ror.org/0150mxn38', 'en', 1, 'https://ror.org/0150mxn38 President Ramon Magsaysay State University'),
(23809, 'https://ror.org/0238cf984', 'en', 1, 'https://ror.org/0238cf984 Central Philippine University Pamantasang Sentral ng Pilipinas'),
(23810, 'https://ror.org/05s3ca234', 'en', 1, 'https://ror.org/05s3ca234 Bangladesh Open University বাংলাদেশ উন্মুক্ত বিশ্ববিদ্যালয়'),
(23811, 'https://ror.org/049fvjs25', 'en', 1, 'https://ror.org/049fvjs25 Tokyo University of Social Welfare 東京福祉大学'),
(23812, 'https://ror.org/0090dta57', 'id', 1, 'https://ror.org/0090dta57 Universitas Islam Nusantara'),
(23813, 'https://ror.org/057gnqw22', 'en', 1, 'https://ror.org/057gnqw22 Islamic University of Technology ইসলামিক ইউনিভার্সিটি অফ টেকনোলজি'),
(23814, 'https://ror.org/0575dme84', 'en', 1, 'https://ror.org/0575dme84 Tottori University of Environmental Studies 鳥取環境大学'),
(23815, 'https://ror.org/009kcw598', 'en', 1, 'https://ror.org/009kcw598 Jatiya Kabi Kazi Nazrul Islam University জাতীয় কবি কাজী নজরুল ইসলাম বিশ্ববিদ্যালয়'),
(23816, 'https://ror.org/05g7zxm15', 'id', 1, 'https://ror.org/05g7zxm15 Universitas Kebangsaan Republik Indonesia'),
(23817, 'https://ror.org/0172hvg27', 'en', 1, 'https://ror.org/0172hvg27 Aichi University 愛知大学'),
(23818, 'https://ror.org/01kyajw84', 'en', 1, 'https://ror.org/01kyajw84 Pamantasan ng Iloilo University of Iloilo'),
(23819, 'https://ror.org/03bdv1r55', 'en', 1, 'https://ror.org/03bdv1r55 Hadassah Academic College מכללה אקדמית הדסה ירושלים'),
(23820, 'https://ror.org/04zrzwm74', 'id', 1, 'https://ror.org/04zrzwm74 Universitas Langlangbuana'),
(23821, 'https://ror.org/02hda4733', 'en', 1, 'https://ror.org/02hda4733 Pamantasan ng San Agustin University of San Agustin'),
(23822, 'https://ror.org/02wbzep73', 'en', 1, 'https://ror.org/02wbzep73 West Visayas State University'),
(23823, 'https://ror.org/043say313', 'en', 1, 'https://ror.org/043say313 Cavite State University'),
(23824, 'https://ror.org/05v4xtv52', 'id', 1, 'https://ror.org/05v4xtv52 Universitas Nasional Pasim'),
(23825, 'https://ror.org/054e0wg16', 'en', 1, 'https://ror.org/054e0wg16 University of Northeastern Philippines'),
(23826, 'https://ror.org/015t4c879', 'id', 1, 'https://ror.org/015t4c879 Universitas Nurtanio'),
(23827, 'https://ror.org/059cs8z68', 'id', 1, 'https://ror.org/059cs8z68 Universitas Pasundan'),
(23828, 'https://ror.org/03bktwf13', 'no_lang_code', 1, 'https://ror.org/03bktwf13 Aichi Gakusen University 愛知学泉大学'),
(23829, 'https://ror.org/044b0xj37', 'en', 1, 'https://ror.org/044b0xj37 Indonesia University of Education Universitas Pendidikan Indonesia'),
(23830, 'https://ror.org/04mtcj695', 'en', 1, 'https://ror.org/04mtcj695 Unibersidad ng Katimugang Mindanao University of Southern Mindanao'),
(23831, 'https://ror.org/01bp4wd47', 'en', 1, 'https://ror.org/01bp4wd47 Aklan State University'),
(23832, 'https://ror.org/004hnyk37', 'en', 1, 'https://ror.org/004hnyk37 Rangamati Science and Technology University রাঙ্গামাটি বিজ্ঞান ও প্রযুক্তি বিশ্ববিদ্যালয়'),
(23833, 'https://ror.org/0163dw893', 'en', 1, 'https://ror.org/0163dw893 Aichi Mizuho College 愛知みずほ大学'),
(23834, 'https://ror.org/03q5fwy02', 'en', 1, 'https://ror.org/03q5fwy02 Notre Dame of Marbel University Pamantasang Notre Dame ng Marbel'),
(23835, 'https://ror.org/0300khg14', 'fr', 1, 'https://ror.org/0300khg14 Institut Supérieur de Formation à Distance'),
(23836, 'https://ror.org/01k604769', 'en', 1, 'https://ror.org/01k604769 University of Santo Tomas–Legazpi'),
(23837, 'https://ror.org/04hdrrs71', 'en', 1, 'https://ror.org/04hdrrs71 Metropolitan University মট্রোপলিটন ইউনিভার্সিটি'),
(23838, 'https://ror.org/01jdzvf98', 'en', 1, 'https://ror.org/01jdzvf98 Pamantasang Estado ng Pangasinan Pangasinan State University'),
(23839, 'https://ror.org/05y4r9290', 'en', 1, 'https://ror.org/05y4r9290 Sylhet International University সিলেট ইন্টারন্যাশনাল ইউনিভার্সিটি'),
(23840, 'https://ror.org/0036qse20', 'no_lang_code', 1, 'https://ror.org/0036qse20 Ohkagakuen University 桜花学園大学'),
(23841, 'https://ror.org/053g25f89', 'id', 1, 'https://ror.org/053g25f89 Universitas Sangga Buana YPKP'),
(23842, 'https://ror.org/01y80n017', 'id', 1, 'https://ror.org/01y80n017 Universitas Achmad Yani'),
(23843, 'https://ror.org/03d7p8g51', 'en', 1, 'https://ror.org/03d7p8g51 Netanya Academic College كلية نتانيا الأكاديمية'),
(23844, 'https://ror.org/04r30sv87', 'id', 1, 'https://ror.org/04r30sv87 Universitas Islam Kalimantan Muhammad Arsyad Al Banjary'),
(23845, 'https://ror.org/00473rv55', 'en', 1, 'https://ror.org/00473rv55 Pamantasan ng Makati University of Makati'),
(23846, 'https://ror.org/00na8b236', 'en', 1, 'https://ror.org/00na8b236 De La Salle Araneta University Pamantasang De La Salle Araneta'),
(23847, 'https://ror.org/01wz7zs96', 'no_lang_code', 1, 'https://ror.org/01wz7zs96 Mimasaka University 美作大学'),
(23848, 'https://ror.org/03sgcr744', 'en', 1, 'https://ror.org/03sgcr744 Ube Frontier University 宇部フロンティア大学'),
(23849, 'https://ror.org/01nbgfe29', 'en', 1, 'https://ror.org/01nbgfe29 Build Bright University សាកលវិទ្យាល័យបៀលប្រាយ រាជធានីភ្នំពេញ'),
(23850, 'https://ror.org/01y2mxy57', 'en', 1, 'https://ror.org/01y2mxy57 José Rizal University Pamantasang José Rizal'),
(23851, 'https://ror.org/03aptyv62', 'en', 1, 'https://ror.org/03aptyv62 Nagano University 長野大学'),
(23852, 'https://ror.org/011vbeg19', 'en', 1, 'https://ror.org/011vbeg19 Rizal Technological University'),
(23853, 'https://ror.org/0037an472', 'en', 1, 'https://ror.org/0037an472 Kyoto Bunkyo University 京都文教大学'),
(23854, 'https://ror.org/04nmr9340', 'en', 1, 'https://ror.org/04nmr9340 Kyoto Saga University of Arts 京都嵯峨芸術大学'),
(23855, 'https://ror.org/04janbd12', 'no_lang_code', 1, 'https://ror.org/04janbd12 Centro Escolar University Pamantasang Centro Escolar'),
(23856, 'https://ror.org/00ge2jh15', 'en', 1, 'https://ror.org/00ge2jh15 Peres Academic Center המרכז האקדמי פרס'),
(23857, 'https://ror.org/04nawkn69', 'en', 1, 'https://ror.org/04nawkn69 Bunsei University of Art 文星芸術大學'),
(23858, 'https://ror.org/02knr1992', 'en', 1, 'https://ror.org/02knr1992 International University សាកលវិទ្យាល័យអន្តរជាតិ'),
(23859, 'https://ror.org/059gxc315', 'en', 1, 'https://ror.org/059gxc315 Cambodian Mekong University សាកលវិទ្យាល័យមេគង្គកម្ពុជា'),
(23860, 'https://ror.org/05qby2688', 'id', 1, 'https://ror.org/05qby2688 Universitas Baturaja'),
(23861, 'https://ror.org/05t56qd09', 'id', 1, 'https://ror.org/05t56qd09 Dayanu Ikhsanuddin University Universitas Dayanu Ikhsanuddin'),
(23862, 'https://ror.org/02xwcny57', 'id', 1, 'https://ror.org/02xwcny57 Universitas Muhammadiyah Buton'),
(23863, 'https://ror.org/02mh3at17', 'en', 1, 'https://ror.org/02mh3at17 Royal University of Law and Economics Université royale de droit et des sciences economiques សាកលវិទ្យាល័យភូមិន្ទនីតិសាស្ត្រនិងវិទ្យាសាស្ត្រសេដ្ឋកិច្ច'),
(23864, 'https://ror.org/03cv1mx62', 'id', 1, 'https://ror.org/03cv1mx62 Universitas Islam 45 Bekasi'),
(23865, 'https://ror.org/0034wme67', 'id', 1, 'https://ror.org/0034wme67 Universitas Muhammadiyah Bengkulu'),
(23866, 'https://ror.org/00cyrx553', 'id', 1, 'https://ror.org/00cyrx553 Universitas Prof. Dr. Hazairin SH.'),
(23867, 'https://ror.org/05kw9ye22', 'id', 1, 'https://ror.org/05kw9ye22 Institut Ilmu Sosial dan Ilmu Politik Yapis Biak'),
(23868, 'https://ror.org/02f49t952', 'id', 1, 'https://ror.org/02f49t952 Universitas Almuslim'),
(23869, 'https://ror.org/01j5wgc53', 'id', 1, 'https://ror.org/01j5wgc53 Universitas Djuanda'),
(23870, 'https://ror.org/025q3xb93', 'en', 1, 'https://ror.org/025q3xb93 FEATI University'),
(23871, 'https://ror.org/00atcgp07', 'en', 1, 'https://ror.org/00atcgp07 Manuel L. Quezon University Pamantasang Manuel L. Quezon'),
(23872, 'https://ror.org/02v91zq07', 'no_lang_code', 1, 'https://ror.org/02v91zq07 Wakkanai Hokusei Gakuen College 稚内北星学園大学'),
(23873, 'https://ror.org/01e8byp18', 'en', 1, 'https://ror.org/01e8byp18 Pamantasang Kristiyano ng Pilipinas Philippine Christian University'),
(23874, 'https://ror.org/019n6wd93', 'en', 1, 'https://ror.org/019n6wd93 St. Paul University Manila'),
(23875, 'https://ror.org/01qw7a563', 'no_lang_code', 1, 'https://ror.org/01qw7a563 Tokyo Seitoku University 東京成徳大学'),
(23876, 'https://ror.org/00v4vjb95', 'en', 1, 'https://ror.org/00v4vjb95 Technological University of the Philippines Teknolohikal na Unibersidad ng Pilipinas'),
(23877, 'https://ror.org/05933aq68', 'en', 1, 'https://ror.org/05933aq68 Shizuoka University of Welfare 静岡福祉大学'),
(23878, 'https://ror.org/03dxh7253', 'id', 1, 'https://ror.org/03dxh7253 Universitas Bojonegoro'),
(23879, 'https://ror.org/01bq81t66', 'en', 1, 'https://ror.org/01bq81t66 Philippine Women''s University'),
(23880, 'https://ror.org/00v3ejk86', 'en', 1, 'https://ror.org/00v3ejk86 National Institute of Business វិទ្យាស្ថានជាតិពាណិជ្ជសាស្រ្ដ'),
(23881, 'https://ror.org/01539v588', 'en', 1, 'https://ror.org/01539v588 Oranim Academic College of Education אורנים - המכללה האקדמית לחינוך اورنيم'),
(23882, 'https://ror.org/0318kta67', 'en', 1, 'https://ror.org/0318kta67 Tohoku University of Art and Design 東北芸術工科大学'),
(23883, 'https://ror.org/008xj1y67', 'en', 1, 'https://ror.org/008xj1y67 National Technical Training Institute វិទ្យាស្ថានជាតិបណ្តុះបណ្តាលបច្ចេកទេស'),
(23884, 'https://ror.org/04c9af145', 'en', 1, 'https://ror.org/04c9af145 University of Manila'),
(23885, 'https://ror.org/009st3569', 'en', 1, 'https://ror.org/009st3569 Tel Hai Academic College המכללה האקדמית תל-חי'),
(23886, 'https://ror.org/05xeme822', 'no_lang_code', 1, 'https://ror.org/05xeme822 Paññāsāstra University of Cambodia សាកលវិទ្យាល័យបញ្ញាសាស្ត្រកម្ពុជា'),
(23887, 'https://ror.org/03zfwg795', 'no_lang_code', 1, 'https://ror.org/03zfwg795 Chuo Gakuin University 中央学院大学'),
(23888, 'https://ror.org/0285m7689', 'en', 1, 'https://ror.org/0285m7689 Phnom Penh International University'),
(23889, 'https://ror.org/03yz74e78', 'no_lang_code', 1, 'https://ror.org/03yz74e78 Shiseikan University 至誠館大学'),
(23890, 'https://ror.org/00xbjad38', 'en', 1, 'https://ror.org/00xbjad38 Adamson University Pamantasang Adamson'),
(23891, 'https://ror.org/011m7wt79', 'id', 1, 'https://ror.org/011m7wt79 Universitas Trunajaya Bontang'),
(23892, 'https://ror.org/03sqexp58', 'en', 1, 'https://ror.org/03sqexp58 Kawamura Gakuen Women''s University 川村学園女子大学'),
(23893, 'https://ror.org/00rspdh33', 'en', 1, 'https://ror.org/00rspdh33 Asia Euro University សាកលវិទ្យាល័យ អាស៊ី អឺរ៉ុប'),
(23894, 'https://ror.org/019qp0530', 'id', 1, 'https://ror.org/019qp0530 Universitas Boyolali'),
(23895, 'https://ror.org/04mdddd78', 'en', 1, 'https://ror.org/04mdddd78 Minobusan University 身延山大学'),
(23896, 'https://ror.org/01r3kcg18', 'en', 1, 'https://ror.org/01r3kcg18 Osaka University of Economics and Law 大阪経済法科大学'),
(23897, 'https://ror.org/047rtk203', 'en', 1, 'https://ror.org/047rtk203 Swiss German University Universitas Swiss German'),
(23898, 'https://ror.org/0556naa44', 'en', 1, 'https://ror.org/0556naa44 Yokkaichi University 四日市大学'),
(23899, 'https://ror.org/0184f3p11', 'en', 1, 'https://ror.org/0184f3p11 Central Mindanao University'),
(23900, 'https://ror.org/02re6fe17', 'en', 1, 'https://ror.org/02re6fe17 Norton University សាកលវិទ្យាល័យ ន័រតុន'),
(23901, 'https://ror.org/0314zyy82', 'en', 1, 'https://ror.org/0314zyy82 Ferris University フェリス女学院大学'),
(23902, 'https://ror.org/02yz8wm13', 'en', 1, 'https://ror.org/02yz8wm13 Tokyo Future University 東京未来大学'),
(23903, 'https://ror.org/021tsqw04', 'en', 1, 'https://ror.org/021tsqw04 Ateneo de Naga University Pamantasang Ateneo de Naga'),
(23904, 'https://ror.org/04p9zgs78', 'no_lang_code', 1, 'https://ror.org/04p9zgs78 Seigakuin University 聖学院大学'),
(23905, 'https://ror.org/05n4r2p88', 'es', 1, 'https://ror.org/05n4r2p88 Universidad de Sta. Isabel'),
(23906, 'https://ror.org/02pht8w30', 'en', 1, 'https://ror.org/02pht8w30 Universidad de Nueva Caceres University of Nueva Caceres'),
(23907, 'https://ror.org/059t51t95', 'en', 1, 'https://ror.org/059t51t95 Misamis University'),
(23908, 'https://ror.org/00hny2n79', 'en', 1, 'https://ror.org/00hny2n79 Pamantasan ng Asya at Pasipiko University of Asia and the Pacific'),
(23909, 'https://ror.org/05x5g1486', 'en', 1, 'https://ror.org/05x5g1486 Palawan State University'),
(23910, 'https://ror.org/001r73k91', 'en', 1, 'https://ror.org/001r73k91 AMA Computer University Pamantasang Pangkompyuter ng AMA'),
(23911, 'https://ror.org/053kevk63', 'en', 1, 'https://ror.org/053kevk63 Ateneo de Manila University'),
(23912, 'https://ror.org/01yv6y468', 'no_lang_code', 1, 'https://ror.org/01yv6y468 Setec Institute វិទ្យាស្ថាន ស៊ិតិក'),
(23913, 'https://ror.org/01r4khx38', 'en', 1, 'https://ror.org/01r4khx38 Aichi Prefectural University of Fine Arts and Music 愛知県立芸術大学'),
(23914, 'https://ror.org/002m6kk35', 'no_lang_code', 1, 'https://ror.org/002m6kk35 Vanda Institute វិទ្យាស្ថាន វ៉ាន់ដា'),
(23915, 'https://ror.org/02agqkc58', 'en', 1, 'https://ror.org/02agqkc58 Western University សាកលវិទ្យាល័យវេស្ទើន'),
(23916, 'https://ror.org/0071art98', 'no_lang_code', 1, 'https://ror.org/0071art98 Angkor University សាកលវិទ្យាល័យអង្គរ'),
(23917, 'https://ror.org/024b38m94', 'en', 1, 'https://ror.org/024b38m94 St. Paul University Quezon City'),
(23918, 'https://ror.org/05ga5zc50', 'no_lang_code', 1, 'https://ror.org/05ga5zc50 Aikoku Gakuen University 愛国学園大学'),
(23919, 'https://ror.org/010nsc013', 'no_lang_code', 1, 'https://ror.org/010nsc013 Svay Rieng University សាកលវិទ្យាល័យស្វាយរៀង'),
(23920, 'https://ror.org/0224tgs93', 'en', 1, 'https://ror.org/0224tgs93 Pamantasang Trinitas ng Asya Trinity University of Asia'),
(23921, 'https://ror.org/003w6kb85', 'no_lang_code', 1, 'https://ror.org/003w6kb85 Shikoku Gakuin University 四国学院大学'),
(23922, 'https://ror.org/0085wxm22', 'no_lang_code', 1, 'https://ror.org/0085wxm22 Seijoh University 星城大学'),
(23923, 'https://ror.org/036fndg97', 'en', 1, 'https://ror.org/036fndg97 Madina Academy أكاديمية المدينه'),
(23924, 'https://ror.org/05202v862', 'en', 1, 'https://ror.org/05202v862 Tarim University 塔里木大学'),
(23925, 'https://ror.org/01djkf495', 'en', 1, 'https://ror.org/01djkf495 BaiCheng Normal University 白城师范学院'),
(23926, 'https://ror.org/02g3wgj66', 'en', 1, 'https://ror.org/02g3wgj66 Beijing Dance Academy 北京舞蹈学院'),
(23927, 'https://ror.org/03y0w9190', 'en', 1, 'https://ror.org/03y0w9190 Beijing Film Academy 北京电影学院'),
(23928, 'https://ror.org/05s0z8a66', 'en', 1, 'https://ror.org/05s0z8a66 Yokohama University of Pharmacy 横浜薬科大学'),
(23929, 'https://ror.org/02s5d1b23', 'en', 1, 'https://ror.org/02s5d1b23 Yokohama College of Commerce 横浜商科大学'),
(23930, 'https://ror.org/01mq0zx57', 'en', 1, 'https://ror.org/01mq0zx57 Virgen Milagrosa University Foundation'),
(23931, 'https://ror.org/03zwesg40', 'en', 1, 'https://ror.org/03zwesg40 Indonesia Open University Universitas Terbuka'),
(23932, 'https://ror.org/03te2zs36', 'en', 1, 'https://ror.org/03te2zs36 Beijing Language and Culture University 北京语言大学'),
(23933, 'https://ror.org/02bn7h511', 'en', 1, 'https://ror.org/02bn7h511 University of La Salette'),
(23934, 'https://ror.org/02qf7df19', 'en', 1, 'https://ror.org/02qf7df19 Central Luzon State University Pamantasang Estado sa Gitnang Luzon'),
(23935, 'https://ror.org/02hssg709', 'en', 1, 'https://ror.org/02hssg709 Adventist University of the Philippines'),
(23936, 'https://ror.org/01nsv4k44', 'id', 1, 'https://ror.org/01nsv4k44 Universitas Swadaya Gunung Jati'),
(23937, 'https://ror.org/03hkga097', 'en', 1, 'https://ror.org/03hkga097 Central Academy of Drama 中央戏剧学院'),
(23938, 'https://ror.org/056rhyt66', 'en', 1, 'https://ror.org/056rhyt66 Saint Paul University Surigao'),
(23939, 'https://ror.org/00nbyv331', 'en', 1, 'https://ror.org/00nbyv331 Central Academy of Fine Arts 中央美术学院'),
(23940, 'https://ror.org/00kxb1h72', 'en', 1, 'https://ror.org/00kxb1h72 China Foreign Affairs University 外交学院'),
(23941, 'https://ror.org/01e0p8e37', 'en', 1, 'https://ror.org/01e0p8e37 China Youth University for Political Sciences 中国青年政治学院'),
(23942, 'https://ror.org/011xrgv27', 'en', 1, 'https://ror.org/011xrgv27 Leyte Normal University'),
(23943, 'https://ror.org/01c81a459', 'en', 1, 'https://ror.org/01c81a459 Holy Name University'),
(23944, 'https://ror.org/009323b35', 'id', 1, 'https://ror.org/009323b35 Universitas Sultan Fatah'),
(23945, 'https://ror.org/052q2t745', 'en', 1, 'https://ror.org/052q2t745 China Conservatory 中国音乐学院'),
(23946, 'https://ror.org/05khqpb71', 'en', 1, 'https://ror.org/05khqpb71 University of International Business and Economics 对外经济贸易大学'),
(23947, 'https://ror.org/01efqy167', 'en', 1, 'https://ror.org/01efqy167 Pambansang Pamantasan ng Tarlac Tarlac State University'),
(23948, 'https://ror.org/054m41m41', 'fr', 1, 'https://ror.org/054m41m41 Institut National du Bâtiment et des Travaux Publics'),
(23949, 'https://ror.org/05ms4pv23', 'en', 1, 'https://ror.org/05ms4pv23 Cagayan State University Pamantasang Estado sa Cagayan'),
(23950, 'https://ror.org/05djmm265', 'id', 1, 'https://ror.org/05djmm265 Universitas Hindu Indonesia'),
(23951, 'https://ror.org/007avbc90', 'en', 1, 'https://ror.org/007avbc90 Kansai University of Social Welfare 関西福祉大学'),
(23952, 'https://ror.org/00cbhey71', 'en', 1, 'https://ror.org/00cbhey71 Changchun Normal University 长春师范大学'),
(23953, 'https://ror.org/02xpf0x05', 'en', 1, 'https://ror.org/02xpf0x05 St. Paul University Philippines'),
(23954, 'https://ror.org/04az9eh24', 'en', 1, 'https://ror.org/04az9eh24 Jilin University of Finance and Economics 吉林财经大学'),
(23955, 'https://ror.org/059jntb51', 'en', 1, 'https://ror.org/059jntb51 Unibersidad ng Saint Louis University of Saint Louis'),
(23956, 'https://ror.org/025kxab11', 'en', 1, 'https://ror.org/025kxab11 Jilin College of the Arts 吉林艺术学院'),
(23957, 'https://ror.org/026k26b95', 'no_lang_code', 1, 'https://ror.org/026k26b95 Aomori Chuo Gakuin University 青森中央学院大学'),
(23958, 'https://ror.org/05sykgj25', 'en', 1, 'https://ror.org/05sykgj25 Pamantasan ng Hilagang Pilipinas University of Northern Philippines'),
(23959, 'https://ror.org/02asgt557', 'en', 1, 'https://ror.org/02asgt557 Arab Open University الجامعة العربية المفتوحة / الأردن'),
(23960, 'https://ror.org/02wqs2q29', 'en', 1, 'https://ror.org/02wqs2q29 Western Mindanao State University'),
(23961, 'https://ror.org/018vvrr03', 'id', 1, 'https://ror.org/018vvrr03 Universitas Gajayana Malang'),
(23962, 'https://ror.org/01mz1bm43', 'id', 1, 'https://ror.org/01mz1bm43 Universitas Flores'),
(23963, 'https://ror.org/002hbfc50', 'en', 1, 'https://ror.org/002hbfc50 Jilin Jianzhu University 吉林建筑大学'),
(23964, 'https://ror.org/05417j740', 'en', 1, 'https://ror.org/05417j740 State University of Gorontalo Universitas Negeri Gorontalo'),
(23965, 'https://ror.org/039xekb14', 'en', 1, 'https://ror.org/039xekb14 Amman Arab University جامعة عمان العربية للدراسات العليا الخاصة'),
(23966, 'https://ror.org/03q9g2k63', 'id', 1, 'https://ror.org/03q9g2k63 Universitas Muhammadiyah Gorontalo'),
(23967, 'https://ror.org/01hq9q866', 'no_lang_code', 1, 'https://ror.org/01hq9q866 Hirosaki Gakuin University 弘前学院大学'),
(23968, 'https://ror.org/00f8d9297', 'id', 1, 'https://ror.org/00f8d9297 Universitas Muhammadiyah Gresik'),
(23969, 'https://ror.org/020mrfq61', 'en', 1, 'https://ror.org/020mrfq61 Changzhou Institute of Technology 常州工学院'),
(23970, 'https://ror.org/013mk4f48', 'id', 1, 'https://ror.org/013mk4f48 Universitas Wiralodra'),
(23971, 'https://ror.org/029zx7z39', 'en', 1, 'https://ror.org/029zx7z39 Aomori Public University 青森公立大学');
INSERT INTO `rors` VALUES
(23972, 'https://ror.org/04ke9yr06', 'en', 1, 'https://ror.org/04ke9yr06 Seisa University 星槎大学'),
(23973, 'https://ror.org/0330rc745', 'en', 1, 'https://ror.org/0330rc745 Ashikaga University 足利工業大学'),
(23974, 'https://ror.org/056fhh809', 'en', 1, 'https://ror.org/056fhh809 Ashiya University 芦屋大学'),
(23975, 'https://ror.org/01d357781', 'en', 1, 'https://ror.org/01d357781 Institut Bisnis dan Informatika Kwik Kian Gie Kwik Kian Gie School of Business'),
(23976, 'https://ror.org/01jra8x56', 'id', 1, 'https://ror.org/01jra8x56 Institut Kesenian Jakarta'),
(23977, 'https://ror.org/02x3ztz93', 'en', 1, 'https://ror.org/02x3ztz93 Shoin University 松蔭大学'),
(23978, 'https://ror.org/05j412v70', 'en', 1, 'https://ror.org/05j412v70 Beppu University 別府大学'),
(23979, 'https://ror.org/03vfnky71', 'en', 1, 'https://ror.org/03vfnky71 Arab Open University الجامعة العربية المفتوحة'),
(23980, 'https://ror.org/05580ht21', 'en', 1, 'https://ror.org/05580ht21 Chengdu Sport University 成都体育学院'),
(23981, 'https://ror.org/01khb1c27', 'en', 1, 'https://ror.org/01khb1c27 Sichuan Conservatory of Music 四川音乐学院'),
(23982, 'https://ror.org/03xyq7v33', 'en', 1, 'https://ror.org/03xyq7v33 Bunkyo Gakuin University 文京学院大学'),
(23983, 'https://ror.org/047mw5m74', 'en', 1, 'https://ror.org/047mw5m74 Jerash University جامعة جرش'),
(23984, 'https://ror.org/05wr48765', 'en', 1, 'https://ror.org/05wr48765 Chifeng University 赤峰学院'),
(23985, 'https://ror.org/04bmm0q23', 'en', 1, 'https://ror.org/04bmm0q23 Sichuan Fine Arts Institute 四川美术学院'),
(23986, 'https://ror.org/04pbams03', 'en', 1, 'https://ror.org/04pbams03 Perbanas Institute'),
(23987, 'https://ror.org/05db1pj03', 'en', 1, 'https://ror.org/05db1pj03 Dongbei University of Finance and Economics 东北财经大学'),
(23988, 'https://ror.org/04s8jdf66', 'en', 1, 'https://ror.org/04s8jdf66 LASALLE College of the Arts Maktab Seni Lasalle 拉萨尔艺术学院'),
(23989, 'https://ror.org/00cae8n39', 'en', 1, 'https://ror.org/00cae8n39 Yessenov University Ш. Есенов атындағы Университет'),
(23990, 'https://ror.org/01pjme364', 'en', 1, 'https://ror.org/01pjme364 Nanyang Academy of Fine Arts நன்யாங் அகாடமி ஆஃப் ஃபைன் ஆர்ட்ஸ்'),
(23991, 'https://ror.org/05540h853', 'no_lang_code', 1, 'https://ror.org/05540h853 Chiba Keizai University 千葉経済大学'),
(23992, 'https://ror.org/03rmfrm44', 'en', 1, 'https://ror.org/03rmfrm44 Institute of Information Security 情報セキュリティ大学院大学'),
(23993, 'https://ror.org/04bs5h869', 'id', 1, 'https://ror.org/04bs5h869 Institut Teknologi dan Bisnis Kalbe'),
(23994, 'https://ror.org/00g0t4m04', 'en', 1, 'https://ror.org/00g0t4m04 Japanese Red Cross College of Nursing 日本赤十字看護大学'),
(23995, 'https://ror.org/01wx5mw98', 'en', 1, 'https://ror.org/01wx5mw98 Buddhist and Pali University of Sri Lanka ශ්රී ලංකා බෞද්ධ හා පාලි විශ්වවිද්යාලය'),
(23996, 'https://ror.org/046r6pk12', 'en', 1, 'https://ror.org/046r6pk12 Guangzhou Sport University 广州体育学院'),
(23997, 'https://ror.org/04hx9jj82', 'en', 1, 'https://ror.org/04hx9jj82 Kanda University of International Studies 神田外語大学'),
(23998, 'https://ror.org/056nwn519', 'en', 1, 'https://ror.org/056nwn519 Keiai University 敬愛大学'),
(23999, 'https://ror.org/02wmsc916', 'en', 1, 'https://ror.org/02wmsc916 Guizhou University 贵州大学'),
(24000, 'https://ror.org/00kgrdz47', 'en', 1, 'https://ror.org/00kgrdz47 Digital Hollywood University デジタルハリウッド大学'),
(24001, 'https://ror.org/004eeze55', 'en', 1, 'https://ror.org/004eeze55 Hainan Medical University 海南医学院'),
(24002, 'https://ror.org/01r61sr78', 'en', 1, 'https://ror.org/01r61sr78 China Academy of Art 中国美术学院'),
(24003, 'https://ror.org/01ch6q924', 'en', 1, 'https://ror.org/01ch6q924 Globis University Graduate School of Management グロービス経営大学院大学'),
(24004, 'https://ror.org/043vmz451', 'en', 1, 'https://ror.org/043vmz451 Syrian Virtual University الجامعة الافتراضية السورية'),
(24005, 'https://ror.org/00ey9xa07', 'en', 1, 'https://ror.org/00ey9xa07 Harbin University 哈尔滨学院'),
(24006, 'https://ror.org/04whwem28', 'en', 1, 'https://ror.org/04whwem28 Japan College of Social Work 日本社会事業大学'),
(24007, 'https://ror.org/0005k2a75', 'id', 1, 'https://ror.org/0005k2a75 Universitas Suryadarma'),
(24008, 'https://ror.org/02vx41k98', 'en', 1, 'https://ror.org/02vx41k98 Hulunbuir University 呼伦贝尔学院'),
(24009, 'https://ror.org/04ehpm154', 'en', 1, 'https://ror.org/04ehpm154 West Kazakhstan Marat Ospanov State Medical University М.Оспанов атындағы Батыс Қазақстан мемлекеттік медицина университеті'),
(24010, 'https://ror.org/02e2nnq08', 'en', 1, 'https://ror.org/02e2nnq08 Shandong University of Finance and Economics 山东财经大学'),
(24011, 'https://ror.org/00cwwxh37', 'id', 1, 'https://ror.org/00cwwxh37 Universitas Esa Unggul'),
(24012, 'https://ror.org/00td5v713', 'en', 1, 'https://ror.org/00td5v713 National Institute of Public Administration المعهد الوطني للإدارة العامة'),
(24013, 'https://ror.org/00qjgk605', 'en', 1, 'https://ror.org/00qjgk605 Mercu Buana University Universitas Mercu Buana'),
(24014, 'https://ror.org/00hnq3t35', 'id', 1, 'https://ror.org/00hnq3t35 Universitas Satyagama'),
(24015, 'https://ror.org/02q35ve03', 'en', 1, 'https://ror.org/02q35ve03 Kazakh Ablai Khan University of International Relations and World Languages Казахский университет международных отношений и мировых языков имени Абылай хана Қазақ халықаралық қатынастар және әлем тілдері университеті'),
(24016, 'https://ror.org/00vb9c215', 'en', 1, 'https://ror.org/00vb9c215 Universitas Bunda Mulia University of Bunda Mulia'),
(24017, 'https://ror.org/03wcw7m36', 'en', 1, 'https://ror.org/03wcw7m36 Business Breakthrough University ビジネス・ブレークスルー大学'),
(24018, 'https://ror.org/03a8rwx10', 'en', 1, 'https://ror.org/03a8rwx10 Universitas YARSI Yarsi University'),
(24019, 'https://ror.org/04ztbty92', 'id', 1, 'https://ror.org/04ztbty92 Institut Ilmu Sosial dan Ilmu Politik Jakarta'),
(24020, 'https://ror.org/04nn8h763', 'id', 1, 'https://ror.org/04nn8h763 Universitas Azzahra'),
(24021, 'https://ror.org/02g847680', 'en', 1, 'https://ror.org/02g847680 University of Kalamoon جامعة القلمون الخاصة'),
(24022, 'https://ror.org/05a4v8r91', 'en', 1, 'https://ror.org/05a4v8r91 Yunnan Arts University 云南艺术学院'),
(24023, 'https://ror.org/05vzasa79', 'en', 1, 'https://ror.org/05vzasa79 Kurmangazy Kazakh National Conservatory Қазақ ұлттық консерваториясы'),
(24024, 'https://ror.org/05vewjh97', 'en', 1, 'https://ror.org/05vewjh97 Ministry of Internal Affairs of the Republic of Tajikistan Вазорати корҳои дохилии Ҷумҳурии Тоҷикистон'),
(24025, 'https://ror.org/02m71k567', 'no_lang_code', 1, 'https://ror.org/02m71k567 Nishogakusha University 二松學舍大学'),
(24026, 'https://ror.org/008cmk776', 'id', 1, 'https://ror.org/008cmk776 Universitas Islam Attahiriyah'),
(24027, 'https://ror.org/04ysgxa85', 'en', 1, 'https://ror.org/04ysgxa85 Toho Gakuen School of Music 桐朋学園 音楽部門'),
(24028, 'https://ror.org/02avqnk51', 'en', 1, 'https://ror.org/02avqnk51 Kazakh Academy of Sport and Tourism Қазақ спорт және туризм академиясы'),
(24029, 'https://ror.org/031px5f40', 'id', 1, 'https://ror.org/031px5f40 Universitas Muhammadiyah Jakarta'),
(24030, 'https://ror.org/05pc6w891', 'en', 1, 'https://ror.org/05pc6w891 Kazakh National Medical University Казахский национальный медицинский университет имени С. Д. Асфендиярова Қазақ ұлттық медицина университеті'),
(24031, 'https://ror.org/01wqn3353', 'id', 1, 'https://ror.org/01wqn3353 Universitas Muhammadiyah Prof Dr Hamka'),
(24032, 'https://ror.org/05hfpw879', 'en', 1, 'https://ror.org/05hfpw879 Chiba Institute of Science 千葉科学大学'),
(24033, 'https://ror.org/04g8bba17', 'id', 1, 'https://ror.org/04g8bba17 Universitas Paramadina'),
(24034, 'https://ror.org/025km4h87', 'en', 1, 'https://ror.org/025km4h87 Gansu Institute of Political Science and Law 甘肃政法学院'),
(24035, 'https://ror.org/05w6dwp35', 'no_lang_code', 1, 'https://ror.org/05w6dwp35 Chikushi Jogakuen University 筑紫女学園大学'),
(24036, 'https://ror.org/04v7yv031', 'en', 1, 'https://ror.org/04v7yv031 Lanzhou University of Finance and Economics 兰州财经大学'),
(24037, 'https://ror.org/01rn0fp76', 'en', 1, 'https://ror.org/01rn0fp76 Kazakh-British Technical University Казахстанско-Британский технический университет Қазақстан-Британ техникалық университеті'),
(24038, 'https://ror.org/05f211872', 'en', 1, 'https://ror.org/05f211872 LEC Tokyo Legal Mind University LEC東京リーガルマインド大学院大学'),
(24039, 'https://ror.org/04q9yc293', 'id', 1, 'https://ror.org/04q9yc293 Universitas Tama Jagakarsa'),
(24040, 'https://ror.org/02bvvhn54', 'en', 1, 'https://ror.org/02bvvhn54 Abai Kazakh National Pedagogical University Абай атындағы Қазақ ұлттық педагогика университеті'),
(24041, 'https://ror.org/058w2q710', 'id', 1, 'https://ror.org/058w2q710 Universitas Wiraswasta Indonesia'),
(24042, 'https://ror.org/01pt4x202', 'en', 1, 'https://ror.org/01pt4x202 Kyushu Institute of Information Sciences 九州情報大学'),
(24043, 'https://ror.org/04z484c04', 'id', 1, 'https://ror.org/04z484c04 Universitas Borobudur'),
(24044, 'https://ror.org/03jqhsn85', 'no_lang_code', 1, 'https://ror.org/03jqhsn85 Seinan Gakuin University 西南学院大学'),
(24045, 'https://ror.org/04yntn793', 'id', 1, 'https://ror.org/04yntn793 Universitas Darma Persada'),
(24046, 'https://ror.org/046xqdg50', 'id', 1, 'https://ror.org/046xqdg50 Universitas Ibnu Chaldun Jakarta'),
(24047, 'https://ror.org/0476td389', 'en', 1, 'https://ror.org/0476td389 Tibet Autonomous Region People''s Hospital 西藏自治区人民医院'),
(24048, 'https://ror.org/023ntbt15', 'en', 1, 'https://ror.org/023ntbt15 Japanese Red Cross Toyota College of Nursing 日本赤十字豊田看護大学'),
(24049, 'https://ror.org/00rhgqg04', 'en', 1, 'https://ror.org/00rhgqg04 Almaty Management University Международная академия бизнеса Халықаралық бизнес академиясы'),
(24050, 'https://ror.org/02s8x5a25', 'en', 1, 'https://ror.org/02s8x5a25 Suleyman Demirel University Сүлейман Демирел атындағы Университет'),
(24051, 'https://ror.org/018jdfk45', 'en', 1, 'https://ror.org/018jdfk45 Jiaying University 嘉应学院'),
(24052, 'https://ror.org/045mxyc94', 'en', 1, 'https://ror.org/045mxyc94 Turan University Тұран Университеті Университет Туран'),
(24053, 'https://ror.org/036prgm77', 'en', 1, 'https://ror.org/036prgm77 Honghe University'),
(24054, 'https://ror.org/03xqzzq44', 'id', 1, 'https://ror.org/03xqzzq44 Christian University of Indonesia Universitas Kristen Indonesia'),
(24055, 'https://ror.org/03g8fqe42', 'id', 1, 'https://ror.org/03g8fqe42 Universitas Mpu Tantular'),
(24056, 'https://ror.org/02pd46y72', 'id', 1, 'https://ror.org/02pd46y72 Universitas Respati Indonesia'),
(24057, 'https://ror.org/04htq1b81', 'id', 1, 'https://ror.org/04htq1b81 Universitas Surapati'),
(24058, 'https://ror.org/031bayg24', 'en', 1, 'https://ror.org/031bayg24 Cenderawasih University Universitas Cenderawasih'),
(24059, 'https://ror.org/03k44kp71', 'id', 1, 'https://ror.org/03k44kp71 Universitas Darul Ulum'),
(24060, 'https://ror.org/00fqfkm54', 'no_lang_code', 1, 'https://ror.org/00fqfkm54 Matsuyama Shinonome College 松山東雲女子大学'),
(24061, 'https://ror.org/01km1t027', 'id', 1, 'https://ror.org/01km1t027 Universitas Pesantren Tinggi Darul Ulum Jombang'),
(24062, 'https://ror.org/01rkrzs64', 'en', 1, 'https://ror.org/01rkrzs64 Hokkaido Bunkyo University 北海道文教大学'),
(24063, 'https://ror.org/05j1vt166', 'no_lang_code', 1, 'https://ror.org/05j1vt166 Fuji Tokoha University 富士常葉大学'),
(24064, 'https://ror.org/01pkeax38', 'en', 1, 'https://ror.org/01pkeax38 Saitama Institute of Technology 埼玉工業大学'),
(24065, 'https://ror.org/01845nt85', 'id', 1, 'https://ror.org/01845nt85 Universitas Pendidikan Putra Indonesia Cianjur'),
(24066, 'https://ror.org/0457pxg28', 'en', 1, 'https://ror.org/0457pxg28 Nanjing University of the Arts 南京艺术学院'),
(24067, 'https://ror.org/01k9bqa11', 'en', 1, 'https://ror.org/01k9bqa11 Ehime Prefectural University of Health Science 愛媛県立医療技術大学'),
(24068, 'https://ror.org/04gy42h78', 'en', 1, 'https://ror.org/04gy42h78 Nanjing Sport Institute 南京体育学院'),
(24069, 'https://ror.org/02scgt846', 'id', 1, 'https://ror.org/02scgt846 Universitas Ngurah Rai'),
(24070, 'https://ror.org/03cjmb844', 'no_lang_code', 1, 'https://ror.org/03cjmb844 Fukuoka Jo Gakuin University 福岡女学院大学'),
(24071, 'https://ror.org/0302nvj93', 'id', 1, 'https://ror.org/0302nvj93 Universitas Nusa Lontar Rote'),
(24072, 'https://ror.org/01h8y6y39', 'en', 1, 'https://ror.org/01h8y6y39 Panzhihua University 攀枝花学院'),
(24073, 'https://ror.org/05081wb05', 'no_lang_code', 1, 'https://ror.org/05081wb05 Yang-En University 仰恩大学'),
(24074, 'https://ror.org/024etxn40', 'en', 1, 'https://ror.org/024etxn40 S.Seifullin Kazakh Agro Technical University С. Сейфуллин атындағы қазақ агротехникалық университеті'),
(24075, 'https://ror.org/01k1ffv36', 'en', 1, 'https://ror.org/01k1ffv36 Finance and Economics Institute of Tajikistan'),
(24076, 'https://ror.org/03mw9fr44', 'en', 1, 'https://ror.org/03mw9fr44 Atyrau University of Oil and Gas Атырау мұнай және газ Университеті'),
(24077, 'https://ror.org/02k517853', 'en', 1, 'https://ror.org/02k517853 Luxun Academy of Fine Arts'),
(24078, 'https://ror.org/04z3jpx43', 'en', 1, 'https://ror.org/04z3jpx43 Shenyang Conservatory of Music 沈阳音乐学院'),
(24079, 'https://ror.org/02pfsj857', 'en', 1, 'https://ror.org/02pfsj857 Shenyang Institute of Engineering 沈阳工程学院'),
(24080, 'https://ror.org/00m77t269', 'id', 1, 'https://ror.org/00m77t269 Institut Ilmu Kesehatan Bhakti Wiyata'),
(24081, 'https://ror.org/048bfyy22', 'id', 1, 'https://ror.org/048bfyy22 Universitas Islam Kadiri'),
(24082, 'https://ror.org/040n9c877', 'id', 1, 'https://ror.org/040n9c877 Universitas Kadiri'),
(24083, 'https://ror.org/03zjb7z20', 'en', 1, 'https://ror.org/03zjb7z20 Fukushima University 福島大学'),
(24084, 'https://ror.org/015dapv07', 'en', 1, 'https://ror.org/015dapv07 Tajik State Pedagogical University Донишгоҳи давлатии омӯзгории Тоҷикистон ба номи Садриддин Айнӣ Таджикский государственный педагогический университет им. С.Айни'),
(24085, 'https://ror.org/01exjg943', 'no_lang_code', 1, 'https://ror.org/01exjg943 Fukuyama Heisei University 福山平成大学'),
(24086, 'https://ror.org/05kz9ez20', 'id', 1, 'https://ror.org/05kz9ez20 Universitas Pawyatan Daha Kediri'),
(24087, 'https://ror.org/00v76vw28', 'en', 1, 'https://ror.org/00v76vw28 Tajik State University of Commerce Донишгоҳи давлатии тиҷорати Тоҷикистон Таджикский государственный университет коммерции'),
(24088, 'https://ror.org/05kz0b404', 'en', 1, 'https://ror.org/05kz0b404 Shenyang Sport University 沈阳体育学院'),
(24089, 'https://ror.org/02bvwpb24', 'en', 1, 'https://ror.org/02bvwpb24 Kokshetau State University Кокшетауский государственный университет Көкшетау мемлекеттік университеті'),
(24090, 'https://ror.org/024ba6473', 'en', 1, 'https://ror.org/024ba6473 Hebei Institute of Physical Education 河北体育学院'),
(24091, 'https://ror.org/018jek817', 'no_lang_code', 1, 'https://ror.org/018jek817 Shuchiin University 種智院大学'),
(24092, 'https://ror.org/032f9e998', 'id', 1, 'https://ror.org/032f9e998 Universitas Muhammadiyah Kendari'),
(24093, 'https://ror.org/024d7eg57', 'id', 1, 'https://ror.org/024d7eg57 Universitas Sulawesi Tenggara'),
(24094, 'https://ror.org/045cv1381', 'no_lang_code', 1, 'https://ror.org/045cv1381 Tajik Agrarian University Shirinsho Shotemur Донишгоҳи аграрии Тоҷикистон Таджикский аграрный университет'),
(24095, 'https://ror.org/02emvsg33', 'en', 1, 'https://ror.org/02emvsg33 Tajik State Medical University Донишгоҳи давлатии тиббии Тоҷикистон ба номи Абӯалӣ Ибни Сино Таджикский государственный медицинский университет'),
(24096, 'https://ror.org/00pqc4v87', 'id', 1, 'https://ror.org/00pqc4v87 Universitas Widya Dharma Klaten'),
(24097, 'https://ror.org/04bccg972', 'en', 1, 'https://ror.org/04bccg972 Tajik National University Донишгоҳи давлатии миллии Тоҷикистон Таджикский национальный университет'),
(24098, 'https://ror.org/01xydej26', 'id', 1, 'https://ror.org/01xydej26 Universitas Mahaputra Muhammad Yamin'),
(24099, 'https://ror.org/059pgr720', 'en', 1, 'https://ror.org/059pgr720 Gifu Women''s University 岐阜女子大学'),
(24100, 'https://ror.org/00rfn0469', 'en', 1, 'https://ror.org/00rfn0469 Tangshan College 唐山学院'),
(24101, 'https://ror.org/02jdm8069', 'en', 1, 'https://ror.org/02jdm8069 Tangshan Normal University 唐山师范大学'),
(24102, 'https://ror.org/04155gf20', 'en', 1, 'https://ror.org/04155gf20 Institute of Technologists ものつくり大学'),
(24103, 'https://ror.org/039dz9590', 'en', 1, 'https://ror.org/039dz9590 Tianjin Conservatory of Music 天津音乐学院'),
(24104, 'https://ror.org/05pg3mb97', 'en', 1, 'https://ror.org/05pg3mb97 Muria Kudus University Universitas Muria Kudus'),
(24105, 'https://ror.org/05wj18248', 'en', 1, 'https://ror.org/05wj18248 Hachinohe Institute of Technology 八戸工業大学'),
(24106, 'https://ror.org/0417k2898', 'en', 1, 'https://ror.org/0417k2898 Innovative University of Eurasia Инновационный Евразийский Университет'),
(24107, 'https://ror.org/05c6ejt42', 'en', 1, 'https://ror.org/05c6ejt42 Nihon Bunka University 日本文化大学'),
(24108, 'https://ror.org/0194nje30', 'id', 1, 'https://ror.org/0194nje30 Universitas Kuningan'),
(24109, 'https://ror.org/042aj7s67', 'id', 1, 'https://ror.org/042aj7s67 Universitas Muhammadiyah Kupang'),
(24110, 'https://ror.org/025p4jf48', 'en', 1, 'https://ror.org/025p4jf48 Tokyo Junshin University 東京純心大学'),
(24111, 'https://ror.org/02tc9zr52', 'en', 1, 'https://ror.org/02tc9zr52 Darul Ulum Islamic University Universitas Islam Darul Ulum Lamongan'),
(24112, 'https://ror.org/059nxy021', 'en', 1, 'https://ror.org/059nxy021 Tokyo Zokei University 東京造形大学'),
(24113, 'https://ror.org/005j4qv80', 'no_lang_code', 1, 'https://ror.org/005j4qv80 Xinjiang Petroleum Society 中国石油学会'),
(24114, 'https://ror.org/01sgknf35', 'en', 1, 'https://ror.org/01sgknf35 Hakodate University 函館大学'),
(24115, 'https://ror.org/052crx470', 'id', 1, 'https://ror.org/052crx470 Universitas Islam Lamongan'),
(24116, 'https://ror.org/005k0q572', 'en', 1, 'https://ror.org/005k0q572 Tajik State University of Law Business and Politics Донишгоҳи Давлатии Ҳуқуқ, Бизнес, ва Сиёсати Тоҷикистон'),
(24117, 'https://ror.org/04frsmv44', 'no_lang_code', 1, 'https://ror.org/04frsmv44 Hamamatsu Gakuin University 浜松学院大学'),
(24118, 'https://ror.org/01gpyzk95', 'en', 1, 'https://ror.org/01gpyzk95 Samudra University Universitas Samudra'),
(24119, 'https://ror.org/010kbv636', 'en', 1, 'https://ror.org/010kbv636 Hubei Institute of Fine Arts 湖北美术学院'),
(24120, 'https://ror.org/03c21xx79', 'en', 1, 'https://ror.org/03c21xx79 Malikussaleh University Universitas Malikussaleh'),
(24121, 'https://ror.org/02cd6sx47', 'en', 1, 'https://ror.org/02cd6sx47 Seirei Christopher University 聖隷クリストファー大学'),
(24122, 'https://ror.org/04q1n2n82', 'en', 1, 'https://ror.org/04q1n2n82 Shizuoka University of Art and Culture 静岡文化芸術大学'),
(24123, 'https://ror.org/00dgyv454', 'en', 1, 'https://ror.org/00dgyv454 Fuji University 富士大学'),
(24124, 'https://ror.org/00c4wmy51', 'no_lang_code', 1, 'https://ror.org/00c4wmy51 Surugadai University 駿河台大学'),
(24125, 'https://ror.org/025hwk980', 'en', 1, 'https://ror.org/025hwk980 South Kazakhstan Medical Academy Оңтүстік Қазақстан медицина академиясы'),
(24126, 'https://ror.org/05008jp45', 'en', 1, 'https://ror.org/05008jp45 Northwest University of Politics and Law 西北政法大学'),
(24127, 'https://ror.org/03nff2e18', 'en', 1, 'https://ror.org/03nff2e18 Kulyab State University named after Abuabdullo Rudaki Донишгоҳи давлатии Кӯлоб ба номи Абӯабдуллоҳи Рӯдакӣ Кулябский государственный университет'),
(24128, 'https://ror.org/01bb96d76', 'id', 1, 'https://ror.org/01bb96d76 Universitas Musi Rawas'),
(24129, 'https://ror.org/04ebe6j88', 'en', 1, 'https://ror.org/04ebe6j88 Xi''an Academy of Fine Arts 西安美术学院'),
(24130, 'https://ror.org/05xzaq362', 'en', 1, 'https://ror.org/05xzaq362 M.Auezov South Kazakhstan State University М.ӘУЕЗОВ АТЫНДАҒЫ ОҢТҮСТІК ҚАЗАҚСТАН МЕМЛЕКЕТТІК УНИВЕРСИТЕТІ'),
(24131, 'https://ror.org/039xv0h05', 'en', 1, 'https://ror.org/039xv0h05 Xi''an Conservatory of Music 西安音乐学院'),
(24132, 'https://ror.org/029smmd76', 'en', 1, 'https://ror.org/029smmd76 University of Human Environments 人間環境大学'),
(24133, 'https://ror.org/00pt5by23', 'en', 1, 'https://ror.org/00pt5by23 Xi''an Physical Education University 西安体育学院'),
(24134, 'https://ror.org/05gcme754', 'en', 1, 'https://ror.org/05gcme754 Xi''an International Studies University 西安外国语大学'),
(24135, 'https://ror.org/05c1r5z64', 'en', 1, 'https://ror.org/05c1r5z64 Xingtai University 邢台学院'),
(24136, 'https://ror.org/05tvatp40', 'no_lang_code', 1, 'https://ror.org/05tvatp40 Gifu Shotoku Gakuen University 岐阜聖徳学園大学'),
(24137, 'https://ror.org/04yh6v913', 'en', 1, 'https://ror.org/04yh6v913 North Asia University ノースアジア大学'),
(24138, 'https://ror.org/042k5fe81', 'en', 1, 'https://ror.org/042k5fe81 Yancheng Teachers University'),
(24139, 'https://ror.org/030290415', 'en', 1, 'https://ror.org/030290415 Gifu College of Nursing 岐阜県立看護大学'),
(24140, 'https://ror.org/028h95t32', 'en', 1, 'https://ror.org/028h95t32 Ludong University 鲁东大学'),
(24141, 'https://ror.org/03rrkrc24', 'en', 1, 'https://ror.org/03rrkrc24 Shandong Institute of Business and Technology 山东工商学院'),
(24142, 'https://ror.org/05hd9py65', 'id', 1, 'https://ror.org/05hd9py65 Universitas Merdeka Madiun'),
(24143, 'https://ror.org/04qa18r22', 'id', 1, 'https://ror.org/04qa18r22 Universitas Tidar'),
(24144, 'https://ror.org/00qgg7097', 'id', 1, 'https://ror.org/00qgg7097 Universitas Majalengka'),
(24145, 'https://ror.org/01gtvs751', 'no_lang_code', 1, 'https://ror.org/01gtvs751 Ahmet Yesevi University Международный казахско-турецкий университет имени Х. А. Яссави Халықаралық қазақ-түрік университеті'),
(24146, 'https://ror.org/058ange06', 'en', 1, 'https://ror.org/058ange06 Hebei University of Architecture 河北建筑工程学院'),
(24147, 'https://ror.org/0033gxm08', 'en', 1, 'https://ror.org/0033gxm08 Mahambet Otemiusly West Kazakhstan University Махамбет Өтемісов атындағы Батыс Қазақстан Мемлекеттік Университеті'),
(24148, 'https://ror.org/01n7wbg90', 'no_lang_code', 1, 'https://ror.org/01n7wbg90 Higashiosaka College & Higashiosaka Junior College 東大阪大学・東大阪大学短期大学部'),
(24149, 'https://ror.org/01k12f283', 'no_lang_code', 1, 'https://ror.org/01k12f283 Dhurakij Pundit University มหาวิทยาลัยธุรกิจบัณฑิตย์'),
(24150, 'https://ror.org/00krt8g98', 'id', 1, 'https://ror.org/00krt8g98 Institut Kesenian Makassar'),
(24151, 'https://ror.org/05xc0dy80', 'en', 1, 'https://ror.org/05xc0dy80 Osaka University of Commerce 大阪商業大学'),
(24152, 'https://ror.org/04bwss030', 'no_lang_code', 1, 'https://ror.org/04bwss030 Zhezkazgan Baikonurov University Жезказганский университет имени О.А. Байконурова'),
(24153, 'https://ror.org/05t0s7273', 'en', 1, 'https://ror.org/05t0s7273 Kansai Gaidai University 関西外国語大学'),
(24154, 'https://ror.org/02dqf3w62', 'en', 1, 'https://ror.org/02dqf3w62 Osaka International University 大阪国際大学'),
(24155, 'https://ror.org/03gvw6m91', 'en', 1, 'https://ror.org/03gvw6m91 Higher Institute of Business Administration المعهد العالي لادارة الاعمال'),
(24156, 'https://ror.org/03kc2e209', 'en', 1, 'https://ror.org/03kc2e209 Muhammadiyah University of Makassar Universitas Muhammadiyah Makassar'),
(24157, 'https://ror.org/03m7a5q02', 'en', 1, 'https://ror.org/03m7a5q02 University of the Thai Chamber of Commerce มหาวิทยาลัยหอการค้าไทย'),
(24158, 'https://ror.org/00f5esq17', 'en', 1, 'https://ror.org/00f5esq17 Hijiyama University 比治山大学'),
(24159, 'https://ror.org/05fzw1z08', 'en', 1, 'https://ror.org/05fzw1z08 State University of Makassar Universitas Negeri Makassar'),
(24160, 'https://ror.org/039rewm17', 'en', 1, 'https://ror.org/039rewm17 Kasem Bundit University มหาวิทยาลัยเกษมบัณฑิต'),
(24161, 'https://ror.org/05cn6ne53', 'id', 1, 'https://ror.org/05cn6ne53 Universitas Pancasakti Makassar'),
(24162, 'https://ror.org/002qeva03', 'en', 1, 'https://ror.org/002qeva03 Bangkok University มหาวิทยาลัยกรุงเทพ'),
(24163, 'https://ror.org/04d8yqq70', 'en', 1, 'https://ror.org/04d8yqq70 Krirk University มหาวิทยาลัยเกริก'),
(24164, 'https://ror.org/02yypjn06', 'no_lang_code', 1, 'https://ror.org/02yypjn06 Hiroshima Jogakuin University 広島女学院大学'),
(24165, 'https://ror.org/03e0h3d81', 'en', 1, 'https://ror.org/03e0h3d81 Bansomdejchaopraya Rajabhat University มหาวิทยาลัยราชภัฏบ้านสมเด็จเจ้าพระยา'),
(24166, 'https://ror.org/02g8brk88', 'no_lang_code', 1, 'https://ror.org/02g8brk88 Phranakhon Si Ayutthaya Rajabhat University มหาวิทยาลัยราชภัฏพระนครศรีอยุธยา'),
(24167, 'https://ror.org/04a8tp355', 'id', 1, 'https://ror.org/04a8tp355 Universitas Teknologi Sulawesi'),
(24168, 'https://ror.org/00mns7418', 'no_lang_code', 1, 'https://ror.org/00mns7418 Hiroshima Kokusai Gakuin University 広島国際学院大学'),
(24169, 'https://ror.org/00et93377', 'en', 1, 'https://ror.org/00et93377 Rattana Bundit University มหาวิทยาลัยรัตนบัณฑิต'),
(24170, 'https://ror.org/001et4e78', 'en', 1, 'https://ror.org/001et4e78 Hiroshima City University 広島市立大学'),
(24171, 'https://ror.org/05n757p35', 'en', 1, 'https://ror.org/05n757p35 Hiroshima Shudo University 広島修道大学'),
(24172, 'https://ror.org/04ec26n40', 'en', 1, 'https://ror.org/04ec26n40 Saint John''s University มหาวิทยาลัยเซนต์จอห์น'),
(24173, 'https://ror.org/00g0p9k78', 'en', 1, 'https://ror.org/00g0p9k78 Onomichi City University 尾道市立大学'),
(24174, 'https://ror.org/00g9rmg66', 'en', 1, 'https://ror.org/00g9rmg66 Institut Pertanian Malang'),
(24175, 'https://ror.org/0311whq26', 'en', 1, 'https://ror.org/0311whq26 St Theresa International College วิทยาลัยนานาชาติ เซนต์เทเรซา'),
(24176, 'https://ror.org/00r6nzx24', 'en', 1, 'https://ror.org/00r6nzx24 Ibaraki Christian University 茨城キリスト教大学'),
(24177, 'https://ror.org/0212gyx73', 'en', 1, 'https://ror.org/0212gyx73 Batumi Shota Rustaveli State University Батумский государственный университет имени Шота Руставели ბათუმის შოთა რუსთაველის სახელმწიფო უნივერსიტეტი'),
(24178, 'https://ror.org/01qne9c81', 'en', 1, 'https://ror.org/01qne9c81 St. Catherine University 聖カタリナ大学'),
(24179, 'https://ror.org/001wjeh94', 'en', 1, 'https://ror.org/001wjeh94 Hokusho University 北翔大学'),
(24180, 'https://ror.org/035367g48', 'no_lang_code', 1, 'https://ror.org/035367g48 Tomakomai Komazawa University 苫小牧駒澤大学'),
(24181, 'https://ror.org/01bdmvf66', 'id', 1, 'https://ror.org/01bdmvf66 Institut Teknologi Nasional Malang'),
(24182, 'https://ror.org/05ghynn27', 'id', 1, 'https://ror.org/05ghynn27 Universitas Islam Malang'),
(24183, 'https://ror.org/02kvrk655', 'en', 1, 'https://ror.org/02kvrk655 Universitas Katolik Widya Karya Malang Widya Karya Catholic University'),
(24184, 'https://ror.org/01s0tbs34', 'en', 1, 'https://ror.org/01s0tbs34 Sukhishvili Teaching University'),
(24185, 'https://ror.org/01rtkeb16', 'id', 1, 'https://ror.org/01rtkeb16 Universitas Merdeka Malang'),
(24186, 'https://ror.org/01j1wt659', 'id', 1, 'https://ror.org/01j1wt659 Universitas Muhammadiyah Malang'),
(24187, 'https://ror.org/015k56t61', 'id', 1, 'https://ror.org/015k56t61 Universitas Tribhuwana Tunggadewi'),
(24188, 'https://ror.org/02dzzka09', 'no_lang_code', 1, 'https://ror.org/02dzzka09 Sungkyul University'),
(24189, 'https://ror.org/0509ndt57', 'en', 1, 'https://ror.org/0509ndt57 Namseoul University 남서울대학교'),
(24190, 'https://ror.org/03nfkpr39', 'en', 1, 'https://ror.org/03nfkpr39 Cheongju National University of Education 청주교육대학교'),
(24191, 'https://ror.org/04fy6jb97', 'en', 1, 'https://ror.org/04fy6jb97 King Mongkut''s University of Technology North Bangkok มหาวิทยาลัยเทคโนโลยีพระจอมเกล้าพระนครเหนือ'),
(24192, 'https://ror.org/05wgsx832', 'en', 1, 'https://ror.org/05wgsx832 Kkottongnae University'),
(24193, 'https://ror.org/01b1rvg28', 'en', 1, 'https://ror.org/01b1rvg28 Daegu Arts University 대구예술대학교'),
(24194, 'https://ror.org/042jsgw44', 'en', 1, 'https://ror.org/042jsgw44 Chinju National University of Education 진주교육대학교'),
(24195, 'https://ror.org/05986n320', 'en', 1, 'https://ror.org/05986n320 Akaki Tsereteli State University Ակակի Ծերեթելիի անվան պետական համալսարան ქუთაისის სახელმწიფო უნივერსიტეტი'),
(24196, 'https://ror.org/04hjv8v27', 'id', 1, 'https://ror.org/04hjv8v27 Universitas Nusantara Manado'),
(24197, 'https://ror.org/03j0zym75', 'en', 1, 'https://ror.org/03j0zym75 Rajapark Institute สถาบันรัชต์ภาคย์'),
(24198, 'https://ror.org/008bbzm95', 'en', 1, 'https://ror.org/008bbzm95 Korea Nazarene University 나사렛대학교'),
(24199, 'https://ror.org/04gpajp33', 'id', 1, 'https://ror.org/04gpajp33 North Sulawesi University of Technology Universitas Teknologi Sulawesi Utara'),
(24200, 'https://ror.org/03016c374', 'en', 1, 'https://ror.org/03016c374 Chungwoon University 청운대학교'),
(24201, 'https://ror.org/01y56kp76', 'en', 1, 'https://ror.org/01y56kp76 Southeast Bangkok College วิทยาลัยเซาธ์อีสท์บางกอก'),
(24202, 'https://ror.org/02s5s5e14', 'en', 1, 'https://ror.org/02s5s5e14 Daegu National University of Education 대구교육대학교'),
(24203, 'https://ror.org/05ehpzq05', 'en', 1, 'https://ror.org/05ehpzq05 Korea Baptist Theological University and Seminary 침례신학대학교'),
(24204, 'https://ror.org/05k4ves29', 'en', 1, 'https://ror.org/05k4ves29 University of Marketing and Distribution Sciences 流通科学大学'),
(24205, 'https://ror.org/02kqv7v54', 'en', 1, 'https://ror.org/02kqv7v54 Baika Women''s University 梅花女子大学'),
(24206, 'https://ror.org/009mysd22', 'no_lang_code', 1, 'https://ror.org/009mysd22 Otemon Gakuin University 追手門学院大学'),
(24207, 'https://ror.org/04na2vb51', 'no_lang_code', 1, 'https://ror.org/04na2vb51 Tsukuba Gakuin University 筑波学院大学'),
(24208, 'https://ror.org/0473nvz85', 'en', 1, 'https://ror.org/0473nvz85 Hanbuk University'),
(24209, 'https://ror.org/01pxek286', 'en', 1, 'https://ror.org/01pxek286 Thongsook College วิทยาลัยทองสุข'),
(24210, 'https://ror.org/05y7b4225', 'en', 1, 'https://ror.org/05y7b4225 Hanzhong University 한중대학교'),
(24211, 'https://ror.org/04a03m737', 'id', 1, 'https://ror.org/04a03m737 Universitas 45 Mataram'),
(24212, 'https://ror.org/015q2z284', 'en', 1, 'https://ror.org/015q2z284 Tsukuba International University つくば国際大学'),
(24213, 'https://ror.org/021p07t45', 'id', 1, 'https://ror.org/021p07t45 Universitas Gunung Rinjani'),
(24214, 'https://ror.org/02qn0vb48', 'en', 1, 'https://ror.org/02qn0vb48 Chiba University of Commerce 千葉商科大学'),
(24215, 'https://ror.org/04hah6r58', 'en', 1, 'https://ror.org/04hah6r58 Asian University มหาวิทยาลัยเอเชียน'),
(24216, 'https://ror.org/00cgkxv41', 'en', 1, 'https://ror.org/00cgkxv41 Buriram Rajabhat University มหาวิทยาลัยราชภัฏบุรีรัมย์'),
(24217, 'https://ror.org/03sf7t726', 'en', 1, 'https://ror.org/03sf7t726 Gongju National University of Education 공주교육대학교'),
(24218, 'https://ror.org/05yqeww58', 'en', 1, 'https://ror.org/05yqeww58 Rajabhat Rajanagarindra University มหาวิทยาลัยราชภัฏราชนครินทร์'),
(24219, 'https://ror.org/01tqhyj40', 'en', 1, 'https://ror.org/01tqhyj40 Chaiyaphum Rajabhat University มหาวิทยาลัยราชภัฏชัยภูมิ'),
(24220, 'https://ror.org/02qedp211', 'en', 1, 'https://ror.org/02qedp211 Kyungdong University'),
(24221, 'https://ror.org/01bxsr356', 'en', 1, 'https://ror.org/01bxsr356 Hansei University 한세대학교'),
(24222, 'https://ror.org/01w7c9759', 'id', 1, 'https://ror.org/01w7c9759 Universitas Islam Al-Azhar Mataram'),
(24223, 'https://ror.org/04s6e0d17', 'no_lang_code', 1, 'https://ror.org/04s6e0d17 Nagoya Keizai University 名古屋経済大学'),
(24224, 'https://ror.org/035bxea77', 'en', 1, 'https://ror.org/035bxea77 Bunka Gakuen University 文化学園大学'),
(24225, 'https://ror.org/02y6r1c45', 'en', 1, 'https://ror.org/02y6r1c45 Kogakkan University 皇學館大学'),
(24226, 'https://ror.org/051et2y58', 'en', 1, 'https://ror.org/051et2y58 Joong-Ang Sangha University'),
(24227, 'https://ror.org/00331xs95', 'en', 1, 'https://ror.org/00331xs95 Howon University 호원대학교'),
(24228, 'https://ror.org/059hy2f55', 'en', 1, 'https://ror.org/059hy2f55 Gwangju National University of Education 광주교육대학교'),
(24229, 'https://ror.org/04synqw60', 'en', 1, 'https://ror.org/04synqw60 Rajamangala University of Technology Lanna มหาวิทยาลัยเทคโนโลยีราชมงคลล้านนา'),
(24230, 'https://ror.org/01gcnxt20', 'no_lang_code', 1, 'https://ror.org/01gcnxt20 Gwangju University 광주대학교'),
(24231, 'https://ror.org/0037nyg09', 'en', 1, 'https://ror.org/0037nyg09 UNIVERSITAS MUHAMMADIYAH MATARAM University of Muhammadiyah Mataram'),
(24232, 'https://ror.org/04xz43j90', 'en', 1, 'https://ror.org/04xz43j90 Kwangju Women''s University 광주여자대학교'),
(24233, 'https://ror.org/02f9rwx65', 'en', 1, 'https://ror.org/02f9rwx65 Honam Theological University and Seminary 호남신학대학교'),
(24234, 'https://ror.org/0035dw758', 'en', 1, 'https://ror.org/0035dw758 Rustavi Academy of Higher Education'),
(24235, 'https://ror.org/055mbnd94', 'no_lang_code', 1, 'https://ror.org/055mbnd94 Sanno University 産業能率大学'),
(24236, 'https://ror.org/04vj5r404', 'en', 1, 'https://ror.org/04vj5r404 Honam University 호남대학교'),
(24237, 'https://ror.org/048t58j41', 'en', 1, 'https://ror.org/048t58j41 Kwangshin University'),
(24238, 'https://ror.org/02a7kg544', 'no_lang_code', 1, 'https://ror.org/02a7kg544 Seoul Jangsin University'),
(24239, 'https://ror.org/036swew50', 'en', 1, 'https://ror.org/036swew50 Chiangrai College วิทยาลัยเชียงราย'),
(24240, 'https://ror.org/03xf99d80', 'en', 1, 'https://ror.org/03xf99d80 Hanlyo University 한려대학교'),
(24241, 'https://ror.org/00p8em311', 'en', 1, 'https://ror.org/00p8em311 Gyeongju University 경주대학교'),
(24242, 'https://ror.org/02e8yt306', 'id', 1, 'https://ror.org/02e8yt306 Nusa Tenggara Barat University Universitas Nusa Tenggara Barat'),
(24243, 'https://ror.org/01jt32312', 'en', 1, 'https://ror.org/01jt32312 Uiduk University 위덕대학교'),
(24244, 'https://ror.org/05w61br16', 'en', 1, 'https://ror.org/05w61br16 Ekvtime Takaishvili Teaching University სასწავლო უნივერსიტეტი „რვალი“'),
(24245, 'https://ror.org/03k922132', 'id', 1, 'https://ror.org/03k922132 Universitas Nusa Nipa Maumere'),
(24246, 'https://ror.org/04yff2m38', 'id', 1, 'https://ror.org/04yff2m38 Institut Sains dan Teknologi TD Pardede TD Pardede Institute of Science and Technology'),
(24247, 'https://ror.org/045qyjz25', 'no_lang_code', 1, 'https://ror.org/045qyjz25 Baekseok University 백석대학교'),
(24248, 'https://ror.org/03tc2j669', 'id', 1, 'https://ror.org/03tc2j669 Institut Teknologi Medan'),
(24249, 'https://ror.org/03hd23385', 'en', 1, 'https://ror.org/03hd23385 Sokhumi State University Սուխումի պետական համալսարան სოხუმის სახელმწიფო უნივერსიტეტი'),
(24250, 'https://ror.org/03ewepe58', 'en', 1, 'https://ror.org/03ewepe58 Al-Azhar University Universitas Al-Azhar'),
(24251, 'https://ror.org/02g702008', 'en', 1, 'https://ror.org/02g702008 Kalasin University มหาวิทยาลัยกาฬสินธุ์'),
(24252, 'https://ror.org/02s6q6726', 'id', 1, 'https://ror.org/02s6q6726 Universitas Al Washliyah'),
(24253, 'https://ror.org/020ja6z54', 'en', 1, 'https://ror.org/020ja6z54 Kamphaeng Phet Rajabhat University มหาวิทยาลัยราชภัฏกำแพงเพชร'),
(24254, 'https://ror.org/03r1pm171', 'en', 1, 'https://ror.org/03r1pm171 Kanchanaburi Rajabhat University มหาวิทยาลัยราชภัฏกาญจนบุรี'),
(24255, 'https://ror.org/018pdh902', 'en', 1, 'https://ror.org/018pdh902 Anyang University 안양대학교'),
(24256, 'https://ror.org/01q6w5x52', 'en', 1, 'https://ror.org/01q6w5x52 North Eastern University มหาวิทยาลัยภาคตะวันออกเฉียงเหนือ'),
(24257, 'https://ror.org/02zrz7n38', 'id', 1, 'https://ror.org/02zrz7n38 Universitas Dian Nusantara'),
(24258, 'https://ror.org/038t7hz69', 'en', 1, 'https://ror.org/038t7hz69 IB Euro-Caucasus University'),
(24259, 'https://ror.org/00tas1680', 'en', 1, 'https://ror.org/00tas1680 North Sumatra Islamic University Universitas Islam Sumatera Utara'),
(24260, 'https://ror.org/01m877795', 'en', 1, 'https://ror.org/01m877795 Museum of Contemporary Art Chicago'),
(24261, 'https://ror.org/01bwbjs64', 'id', 1, 'https://ror.org/01bwbjs64 Universitas Katolik Santo Thomas'),
(24262, 'https://ror.org/01a6gjq30', 'id', 1, 'https://ror.org/01a6gjq30 Universitas Methodist Indonesia'),
(24263, 'https://ror.org/010cbg926', 'en', 1, 'https://ror.org/010cbg926 Hyupsung University 협성대학교'),
(24264, 'https://ror.org/03ve0eh58', 'id', 1, 'https://ror.org/03ve0eh58 Universitas Muhammadiyah Sumatera Utara'),
(24265, 'https://ror.org/02t3h6354', 'en', 1, 'https://ror.org/02t3h6354 Suwon Catholic University'),
(24266, 'https://ror.org/037gx5d02', 'en', 1, 'https://ror.org/037gx5d02 Yewon Arts University 예원예술대학교'),
(24267, 'https://ror.org/0357f5c77', 'en', 1, 'https://ror.org/0357f5c77 Bangkok Business College โรงเรียนกรุงเทพการบัญชีวิทยาลัย'),
(24268, 'https://ror.org/007s7qx27', 'en', 1, 'https://ror.org/007s7qx27 Gyeongin National University of Education 경인교육대학교'),
(24269, 'https://ror.org/0014xm371', 'en', 1, 'https://ror.org/0014xm371 Foundation for Research on Information Technologies in Society'),
(24270, 'https://ror.org/029t3me68', 'en', 1, 'https://ror.org/029t3me68 Mary Bridge Children''s Health Center'),
(24271, 'https://ror.org/04x4bgc51', 'fr', 1, 'https://ror.org/04x4bgc51 Institut du Sahel'),
(24272, 'https://ror.org/02h8tmh67', 'it', 1, 'https://ror.org/02h8tmh67 Istituto Guglielmo Tagliacarne'),
(24273, 'https://ror.org/03sfxyd37', 'en', 1, 'https://ror.org/03sfxyd37 HopeHealth'),
(24274, 'https://ror.org/02jx61y97', 'no_lang_code', 1, 'https://ror.org/02jx61y97 Eurocarbon (Netherlands)'),
(24275, 'https://ror.org/01136x372', 'en', 1, 'https://ror.org/01136x372 Institute of Nuclear Physics'),
(24276, 'https://ror.org/0212sa234', 'no_lang_code', 1, 'https://ror.org/0212sa234 Cybula (United Kingdom)'),
(24277, 'https://ror.org/03ayd8t59', 'en', 1, 'https://ror.org/03ayd8t59 Qidong Liver Cancer Prevention Research'),
(24278, 'https://ror.org/056p61s65', 'no_lang_code', 1, 'https://ror.org/056p61s65 Horiba (United Kingdom)'),
(24279, 'https://ror.org/02kja7485', 'en', 1, 'https://ror.org/02kja7485 Hopa Mountain'),
(24280, 'https://ror.org/00v8sj862', 'en', 1, 'https://ror.org/00v8sj862 Cure 4 The Kids Foundation'),
(24281, 'https://ror.org/045kcbr23', 'en', 1, 'https://ror.org/045kcbr23 Friendship House'),
(24282, 'https://ror.org/020kyg948', 'en', 1, 'https://ror.org/020kyg948 Health Charities Coalition of Canada'),
(24283, 'https://ror.org/05xz4d742', 'mt', 1, 'https://ror.org/05xz4d742 Fondazzjoni Temi Zammit'),
(24284, 'https://ror.org/053wp5j10', 'no_lang_code', 1, 'https://ror.org/053wp5j10 International Technology Products'),
(24285, 'https://ror.org/02t0s0z58', 'en', 1, 'https://ror.org/02t0s0z58 LUNGevity Foundation'),
(24286, 'https://ror.org/01ea9yh77', 'en', 1, 'https://ror.org/01ea9yh77 Magic Valley Arts Council'),
(24287, 'https://ror.org/001575385', 'en', 1, 'https://ror.org/001575385 International Centre for Genetic Engineering and Biotechnology'),
(24288, 'https://ror.org/01a3wy042', 'es', 1, 'https://ror.org/01a3wy042 Fundación Vía Libre'),
(24289, 'https://ror.org/05mzp7213', 'en', 1, 'https://ror.org/05mzp7213 WYSO Radio Station'),
(24290, 'https://ror.org/018ey4p62', 'no_lang_code', 1, 'https://ror.org/018ey4p62 Advanced Hall Sensors (United Kingdom)'),
(24291, 'https://ror.org/03mkgng06', 'en', 1, 'https://ror.org/03mkgng06 NorthEast Independent Living Services'),
(24292, 'https://ror.org/020hftg31', 'en', 1, 'https://ror.org/020hftg31 Institute for Schools of the Future'),
(24293, 'https://ror.org/01xh0rq67', 'no_lang_code', 1, 'https://ror.org/01xh0rq67 Lajovic Tuba Embalaža (Slovenia)'),
(24294, 'https://ror.org/059dyfn28', 'en', 1, 'https://ror.org/059dyfn28 Center for Prevention Services'),
(24295, 'https://ror.org/048d6j696', 'en', 1, 'https://ror.org/048d6j696 Kennedy–King College'),
(24296, 'https://ror.org/00j8vky29', 'no_lang_code', 1, 'https://ror.org/00j8vky29 Euroalarm (Czechia)'),
(24297, 'https://ror.org/04ty4mp95', 'en', 1, 'https://ror.org/04ty4mp95 Jorvik Viking Centre'),
(24298, 'https://ror.org/02xs4jc78', 'en', 1, 'https://ror.org/02xs4jc78 Algerian Petroleum Institute Institut Algérien du Pétrole'),
(24299, 'https://ror.org/019cqkm24', 'en', 1, 'https://ror.org/019cqkm24 Cannon Cancer Ministry'),
(24300, 'https://ror.org/01jqhew41', 'no_lang_code', 1, 'https://ror.org/01jqhew41 Svar Life Science (Netherlands)'),
(24301, 'https://ror.org/03kfrc103', 'no_lang_code', 1, 'https://ror.org/03kfrc103 Deutsche Montan Technologie (Germany)'),
(24302, 'https://ror.org/05a33p325', 'no_lang_code', 1, 'https://ror.org/05a33p325 NovaTarg Therapeutics (United States)'),
(24303, 'https://ror.org/00t12nc24', 'no_lang_code', 1, 'https://ror.org/00t12nc24 Pfeiffer Vacuum (France)'),
(24304, 'https://ror.org/058tztn15', 'no_lang_code', 1, 'https://ror.org/058tztn15 Hydro International (Ireland)'),
(24305, 'https://ror.org/018cmez05', 'en', 1, 'https://ror.org/018cmez05 Adventist HealthCare Shady Grove Medical Center'),
(24306, 'https://ror.org/02kfn1p21', 'no_lang_code', 1, 'https://ror.org/02kfn1p21 Cybergenetics (United States)'),
(24307, 'https://ror.org/027vj6z88', 'en', 1, 'https://ror.org/027vj6z88 International College of Applied Kinesiology-USA'),
(24308, 'https://ror.org/02er6sh59', 'en', 1, 'https://ror.org/02er6sh59 Suncoast Health Council'),
(24309, 'https://ror.org/03qtr7n72', 'fr', 1, 'https://ror.org/03qtr7n72 Agence Nationale des Fréquences'),
(24310, 'https://ror.org/02hrvn918', 'no_lang_code', 1, 'https://ror.org/02hrvn918 Hydrion (Netherlands)'),
(24311, 'https://ror.org/03v43ry70', 'no_lang_code', 1, 'https://ror.org/03v43ry70 Hybrizyme (United States)'),
(24312, 'https://ror.org/01zxjwg19', 'no_lang_code', 1, 'https://ror.org/01zxjwg19 Lymphedema Therapy (United States)'),
(24313, 'https://ror.org/04hb2sf66', 'no_lang_code', 1, 'https://ror.org/04hb2sf66 Kypha (United States)'),
(24314, 'https://ror.org/02cpgzn10', 'no_lang_code', 1, 'https://ror.org/02cpgzn10 AI Biosciences (United States)'),
(24315, 'https://ror.org/00kvgk775', 'en', 1, 'https://ror.org/00kvgk775 Rise Adventures'),
(24316, 'https://ror.org/037bsar61', 'de', 1, 'https://ror.org/037bsar61 Bundeskriminalamt Federal Criminal Police Office'),
(24317, 'https://ror.org/00mhsjf71', 'en', 1, 'https://ror.org/00mhsjf71 Lake Simcoe Region Conservation Authority'),
(24318, 'https://ror.org/02dwjjq70', 'no_lang_code', 1, 'https://ror.org/02dwjjq70 Cycleco (France)'),
(24319, 'https://ror.org/02hf81m35', 'en', 1, 'https://ror.org/02hf81m35 Riordan Clinic'),
(24320, 'https://ror.org/00xz8jv85', 'en', 1, 'https://ror.org/00xz8jv85 Richard J. Daley College'),
(24321, 'https://ror.org/01zskeg15', 'en', 1, 'https://ror.org/01zskeg15 Animal Production Institute'),
(24322, 'https://ror.org/003wx9n05', 'en', 1, 'https://ror.org/003wx9n05 Stony Brook School'),
(24323, 'https://ror.org/050pbhp67', 'en', 1, 'https://ror.org/050pbhp67 Consortium for Coordination of Research activities Concerning the Venice Lagoon System Consorzio per il coordinamento delle ricerche inerenti al sistema lagunare di Venezia'),
(24324, 'https://ror.org/01z3yjr32', 'en', 1, 'https://ror.org/01z3yjr32 El Paso Children''s Hospital'),
(24325, 'https://ror.org/01zgmhv16', 'no_lang_code', 1, 'https://ror.org/01zgmhv16 Danaher (Belgium)'),
(24326, 'https://ror.org/01wsre374', 'en', 1, 'https://ror.org/01wsre374 Olive–Harvey College'),
(24327, 'https://ror.org/01fcxf261', 'en', 1, 'https://ror.org/01fcxf261 Caulfield Hospital'),
(24328, 'https://ror.org/03bvtqh46', 'en', 1, 'https://ror.org/03bvtqh46 Department of Embryology'),
(24329, 'https://ror.org/04pqedt90', 'en', 1, 'https://ror.org/04pqedt90 Baton Rouge Area Foundation'),
(24330, 'https://ror.org/025h0r574', 'es', 1, 'https://ror.org/025h0r574 Fundación Pública Galega de Medicina Xenómica Genomic Medicine Group'),
(24331, 'https://ror.org/04eba5983', 'en', 1, 'https://ror.org/04eba5983 Biotechnology Research Institute'),
(24332, 'https://ror.org/053v5zb41', 'en', 1, 'https://ror.org/053v5zb41 Harry S Truman College'),
(24333, 'https://ror.org/02e46xh50', 'en', 1, 'https://ror.org/02e46xh50 International Documentary Association'),
(24334, 'https://ror.org/01a3vkf51', 'en', 1, 'https://ror.org/01a3vkf51 Harold Washington College'),
(24335, 'https://ror.org/04s0vw952', 'no_lang_code', 1, 'https://ror.org/04s0vw952 Nuova Quasco (Italy)'),
(24336, 'https://ror.org/00t5e6645', 'no_lang_code', 1, 'https://ror.org/00t5e6645 Debiopharm Group (Canada)'),
(24337, 'https://ror.org/01dssfj41', 'en', 1, 'https://ror.org/01dssfj41 University Memory and Aging Center'),
(24338, 'https://ror.org/050z7kr33', 'it', 1, 'https://ror.org/050z7kr33 Fondazione Lelio e Lisli Basso'),
(24339, 'https://ror.org/01azf6k87', 'en', 1, 'https://ror.org/01azf6k87 Malcolm X College'),
(24340, 'https://ror.org/01ryxs984', 'en', 1, 'https://ror.org/01ryxs984 NorthEast Regional Epilepsy Group'),
(24341, 'https://ror.org/03txeq812', 'no_lang_code', 1, 'https://ror.org/03txeq812 Maurer (Germany)'),
(24342, 'https://ror.org/030zy2k76', 'en', 1, 'https://ror.org/030zy2k76 Wilbur Wright College'),
(24343, 'https://ror.org/05h7zf334', 'no_lang_code', 1, 'https://ror.org/05h7zf334 Bombardier (United Kingdom)'),
(24344, 'https://ror.org/011tvp436', 'en', 1, 'https://ror.org/011tvp436 Iona Senior Services'),
(24345, 'https://ror.org/01cewnk49', 'no_lang_code', 1, 'https://ror.org/01cewnk49 Associated British Foods (United Kingdom)'),
(24346, 'https://ror.org/03an54s92', 'en', 1, 'https://ror.org/03an54s92 Summit County Juvenile Court'),
(24347, 'https://ror.org/04c244340', 'no_lang_code', 1, 'https://ror.org/04c244340 Era-Maptec (Ireland)'),
(24348, 'https://ror.org/04fe55288', 'es', 1, 'https://ror.org/04fe55288 Asociación de Empresarios Textiles de la Comunidad Valenciana'),
(24349, 'https://ror.org/02w34pv31', 'en', 1, 'https://ror.org/02w34pv31 International Community of Women Living with HIV'),
(24350, 'https://ror.org/045a1m333', 'no_lang_code', 1, 'https://ror.org/045a1m333 Lumos Pharma (United States)');
INSERT INTO `rors` VALUES
(24351, 'https://ror.org/05j0yvv31', 'no_lang_code', 1, 'https://ror.org/05j0yvv31 Rigel (United States)'),
(24352, 'https://ror.org/023k50a48', 'it', 1, 'https://ror.org/023k50a48 Fondazione Italiana per la Ricerca in Agricoltura Biologica e Biodinamica'),
(24353, 'https://ror.org/04bfjqy79', 'en', 1, 'https://ror.org/04bfjqy79 Incheon Catholic University 인천가톨릭대학교'),
(24354, 'https://ror.org/00hvwkt50', 'en', 1, 'https://ror.org/00hvwkt50 Leibniz Institute for the German Language Leibniz-Institut für Deutsche Sprache'),
(24355, 'https://ror.org/01wacaj92', 'en', 1, 'https://ror.org/01wacaj92 Nation University มหาวิทยาลัยเนชั่น'),
(24356, 'https://ror.org/025vqqa73', 'no_lang_code', 1, 'https://ror.org/025vqqa73 J P Kenny'),
(24357, 'https://ror.org/04p9hvh53', 'en', 1, 'https://ror.org/04p9hvh53 Loei Rajabhat University มหาวิทยาลัยราชภัฏเลย'),
(24358, 'https://ror.org/02ehsvt70', 'pt', 1, 'https://ror.org/02ehsvt70 Hospital do Divino Espírito Santo'),
(24359, 'https://ror.org/05a61hj73', 'en', 1, 'https://ror.org/05a61hj73 Thepsatri Rajabhat University มหาวิทยาลัยราชภัฏเทพสตรีลพบุรี'),
(24360, 'https://ror.org/00bhzt187', 'id', 1, 'https://ror.org/00bhzt187 Universitas Pembinaan Masyarakat Indonesia Medan'),
(24361, 'https://ror.org/04zvt5792', 'no_lang_code', 1, 'https://ror.org/04zvt5792 Four Elements Capital (United Kingdom)'),
(24362, 'https://ror.org/03k5bgb88', 'no_lang_code', 1, 'https://ror.org/03k5bgb88 Bombardier (Italy)'),
(24363, 'https://ror.org/02hph8r17', 'en', 1, 'https://ror.org/02hph8r17 Grigol Robakidze University გრიგოლ რობაქიძის სახელობის უნივერსიტეტი'),
(24364, 'https://ror.org/01vbp3w59', 'no_lang_code', 1, 'https://ror.org/01vbp3w59 Instantview (United Kingdom)'),
(24365, 'https://ror.org/03r9v0161', 'no_lang_code', 1, 'https://ror.org/03r9v0161 Elektro Ljubljana (Slovenia)'),
(24366, 'https://ror.org/00tzrs836', 'no_lang_code', 1, 'https://ror.org/00tzrs836 Stahl-Zentrum (Germany)'),
(24367, 'https://ror.org/054e4t190', 'en', 1, 'https://ror.org/054e4t190 Jeonju National University of Education 전주교육대학교'),
(24368, 'https://ror.org/01nm0nj94', 'en', 1, 'https://ror.org/01nm0nj94 Jesus University'),
(24369, 'https://ror.org/013s89d74', 'en', 1, 'https://ror.org/013s89d74 St James''s University Hospital'),
(24370, 'https://ror.org/057jpqa22', 'en', 1, 'https://ror.org/057jpqa22 Christian University of Thailand มหาวิทยาลัยคริสเตียน'),
(24371, 'https://ror.org/00k6ffj36', 'en', 1, 'https://ror.org/00k6ffj36 Caucasus Academic Centre'),
(24372, 'https://ror.org/01mj1hb53', 'it', 1, 'https://ror.org/01mj1hb53 Consorzio Interuniversitario per la Ricerca Tecnologica Nucleare'),
(24373, 'https://ror.org/03y12yp46', 'en', 1, 'https://ror.org/03y12yp46 Nakhon Pathom Rajabhat University มหาวิทยาลัยราชภัฏนครปฐม'),
(24374, 'https://ror.org/00atp1s12', 'en', 1, 'https://ror.org/00atp1s12 Caucasus International University'),
(24375, 'https://ror.org/003h4kj85', 'en', 1, 'https://ror.org/003h4kj85 Rajamangala University of Technology Rattanakosin มหาวิทยาลัยเทคโนโลยีราชมงคลรัตนโกสินทร์'),
(24376, 'https://ror.org/02tc4et63', 'en', 1, 'https://ror.org/02tc4et63 Caucasus University კავკასიის უნივერსიტეტი'),
(24377, 'https://ror.org/03js77h61', 'en', 1, 'https://ror.org/03js77h61 Classical and Traditional Medicine Academy'),
(24378, 'https://ror.org/01msfnj86', 'id', 1, 'https://ror.org/01msfnj86 Universitas Sisingamangaraja XII'),
(24379, 'https://ror.org/0341e8845', 'en', 1, 'https://ror.org/0341e8845 Saengtham College วิทยาลัยแสงธรรม'),
(24380, 'https://ror.org/00x3gtf37', 'en', 1, 'https://ror.org/00x3gtf37 Shizuoka Sangyo University 静岡産業大学'),
(24381, 'https://ror.org/02532pm14', 'en', 1, 'https://ror.org/02532pm14 International University of Korea 한국국제대학교'),
(24382, 'https://ror.org/054dx8336', 'en', 1, 'https://ror.org/054dx8336 Iwate Prefectural University 岩手県立大学'),
(24383, 'https://ror.org/04m59hw59', 'en', 1, 'https://ror.org/04m59hw59 Musamus Merauke University Universitas Musamus Merauke'),
(24384, 'https://ror.org/03ne5hn26', 'en', 1, 'https://ror.org/03ne5hn26 Samtskhe-Javakheti State University სამცხე-ჯავახეთის სახელმწიფო უნივერსიტეტი'),
(24385, 'https://ror.org/01ngjj893', 'en', 1, 'https://ror.org/01ngjj893 University of Human Arts and Sciences 人間総合科学大学'),
(24386, 'https://ror.org/00peyn760', 'no_lang_code', 1, 'https://ror.org/00peyn760 Vongchavalitkul University มหาวิทยาลัยวงษ์ชวลิตกุล'),
(24387, 'https://ror.org/048z9th72', 'no_lang_code', 1, 'https://ror.org/048z9th72 Momoyama Gakuin University 桃山学院大学'),
(24388, 'https://ror.org/03sq7qp22', 'en', 1, 'https://ror.org/03sq7qp22 Kutaisi Institute of Medicine'),
(24389, 'https://ror.org/01h6cr239', 'en', 1, 'https://ror.org/01h6cr239 International University of Kagoshima 鹿児島国際大学'),
(24390, 'https://ror.org/04688a324', 'en', 1, 'https://ror.org/04688a324 Nakhon Ratchasima Rajabhat University มหาวิทยาลัยราชภัฏนครราชสีมา'),
(24391, 'https://ror.org/00n6web48', 'en', 1, 'https://ror.org/00n6web48 Georgian State University of Subtropical Agriculture Грузинский государственный университет субтропического хозяйства'),
(24392, 'https://ror.org/03ckbnn72', 'en', 1, 'https://ror.org/03ckbnn72 Transnational Law and Business University 국제법률경영대학원대학교'),
(24393, 'https://ror.org/0478mxw43', 'en', 1, 'https://ror.org/0478mxw43 Kamakura Women''s University 鎌倉女子大学'),
(24394, 'https://ror.org/04gyfd783', 'no_lang_code', 1, 'https://ror.org/04gyfd783 Chaopraya University มหาวิทยาลัยเจ้าพระยา'),
(24395, 'https://ror.org/00kkavr87', 'en', 1, 'https://ror.org/00kkavr87 Heisei College of Music 平成音楽大学'),
(24396, 'https://ror.org/03373tb44', 'en', 1, 'https://ror.org/03373tb44 Toyama University of International Studies 富山国際大学'),
(24397, 'https://ror.org/01mys8c02', 'en', 1, 'https://ror.org/01mys8c02 Niigata University of Management 新潟経営大学'),
(24398, 'https://ror.org/01n6wkv11', 'id', 1, 'https://ror.org/01n6wkv11 Universitas Muara Bungo'),
(24399, 'https://ror.org/050n8gz83', 'en', 1, 'https://ror.org/050n8gz83 University of Central Thailand มหาวิทยาลัยภาคกลาง'),
(24400, 'https://ror.org/04m8f9392', 'en', 1, 'https://ror.org/04m8f9392 Youngnam Foreign Language College 영남 외국어 대학'),
(24401, 'https://ror.org/03dhz6n86', 'en', 1, 'https://ror.org/03dhz6n86 Kanagawa University of Human Services 神奈川県立保健福祉大学'),
(24402, 'https://ror.org/032pgwm02', 'en', 1, 'https://ror.org/032pgwm02 Petre Shotadze Tbilisi Medical Academy პეტრე შოთაძის სახელობის თბილისის სამედიცინო აკადემია'),
(24403, 'https://ror.org/03hnckv05', 'en', 1, 'https://ror.org/03hnckv05 Mokpo Catholic University 목포가톨릭대학교'),
(24404, 'https://ror.org/01vpt4w06', 'id', 1, 'https://ror.org/01vpt4w06 Universitas Iqra Buru'),
(24405, 'https://ror.org/00nv3pd93', 'en', 1, 'https://ror.org/00nv3pd93 Kanazawa College of Art 金沢美術工芸大学'),
(24406, 'https://ror.org/023jsyh61', 'en', 1, 'https://ror.org/023jsyh61 Mokpo National Maritime University 목포해양대학교'),
(24407, 'https://ror.org/04cymw545', 'en', 1, 'https://ror.org/04cymw545 Shota Rustaveli Theatre and Film Georgia State University საქართველოს შოთა რუსთაველის თეატრის და კინოს უნივერსიტეტი'),
(24408, 'https://ror.org/0408gh695', 'en', 1, 'https://ror.org/0408gh695 Nakhon Sawan Rajabhat University มหาวิทยาลัยราชภัฏนครสวรรค์'),
(24409, 'https://ror.org/00yezxw87', 'no_lang_code', 1, 'https://ror.org/00yezxw87 Chodang University 초당대학교'),
(24410, 'https://ror.org/000ks8283', 'id', 1, 'https://ror.org/000ks8283 Universitas Soerjo Ngawi'),
(24411, 'https://ror.org/03vhwes25', 'en', 1, 'https://ror.org/03vhwes25 Gwangju Catholic University 광주가톨릭대학교'),
(24412, 'https://ror.org/05qx3ve03', 'en', 1, 'https://ror.org/05qx3ve03 Geumgang University 금강대학교'),
(24413, 'https://ror.org/039fgyk85', 'en', 1, 'https://ror.org/039fgyk85 Hanshin University 한신대학교'),
(24414, 'https://ror.org/03xpxn276', 'en', 1, 'https://ror.org/03xpxn276 David Agmashenebeli University of Georgia საქართველოს დავით აღმაშენებლის სახელობის უნივერსიტეტი'),
(24415, 'https://ror.org/03tawch75', 'en', 1, 'https://ror.org/03tawch75 Catholic University of Pusan 부산가톨릭대학교'),
(24416, 'https://ror.org/01rf04680', 'en', 1, 'https://ror.org/01rf04680 Busan National University of Education 부산교육대학교'),
(24417, 'https://ror.org/0455zdm83', 'en', 1, 'https://ror.org/0455zdm83 Busan University of Foreign Studies 부산외국어대학교'),
(24418, 'https://ror.org/01asa8g02', 'en', 1, 'https://ror.org/01asa8g02 Tongmyong University 동명 대학교'),
(24419, 'https://ror.org/05yhrkh78', 'no_lang_code', 1, 'https://ror.org/05yhrkh78 Nishikyushu University 西九州大学'),
(24420, 'https://ror.org/01s5kvh23', 'en', 1, 'https://ror.org/01s5kvh23 Youngsan University 영산대학교'),
(24421, 'https://ror.org/01n0ym997', 'en', 1, 'https://ror.org/01n0ym997 Kaichi International University 開智国際大学'),
(24422, 'https://ror.org/02rwyg032', 'no_lang_code', 1, 'https://ror.org/02rwyg032 Reitaku University 麗澤大学'),
(24423, 'https://ror.org/04gqpx257', 'en', 1, 'https://ror.org/04gqpx257 Niigata Sangyo University 新潟産業大学'),
(24424, 'https://ror.org/04f7wmd40', 'en', 1, 'https://ror.org/04f7wmd40 Pyeongtaek University 평택대학교'),
(24425, 'https://ror.org/01gtgc095', 'en', 1, 'https://ror.org/01gtgc095 Kyoei University 共栄大学'),
(24426, 'https://ror.org/04pqmjc38', 'id', 1, 'https://ror.org/04pqmjc38 Universitas Putra Indonesia "YPTK"'),
(24427, 'https://ror.org/004th3s59', 'en', 1, 'https://ror.org/004th3s59 International Budo University 国際武道大学'),
(24428, 'https://ror.org/0100d8y50', 'id', 1, 'https://ror.org/0100d8y50 Universitas Tamansiswa Universitas Tamansiswa Padang'),
(24429, 'https://ror.org/0395g0930', 'en', 1, 'https://ror.org/0395g0930 Toho College of Music 東邦音楽大学'),
(24430, 'https://ror.org/02ewm5p09', 'en', 1, 'https://ror.org/02ewm5p09 Saitama Gakuen University 埼玉学園大学'),
(24431, 'https://ror.org/05kc0qv85', 'en', 1, 'https://ror.org/05kc0qv85 Berea International Theological Seminary 베뢰아국제대학원대학교'),
(24432, 'https://ror.org/04mbnaz72', 'en', 1, 'https://ror.org/04mbnaz72 Georgian Aviation University საქართველოს საავიაციო უნივერსიტეტი'),
(24433, 'https://ror.org/026qx6917', 'en', 1, 'https://ror.org/026qx6917 Chongshin University 총신대학교'),
(24434, 'https://ror.org/01bzvkv54', 'en', 1, 'https://ror.org/01bzvkv54 Chugye University for the Arts 추계예술대학교'),
(24435, 'https://ror.org/05gz40769', 'en', 1, 'https://ror.org/05gz40769 Den-en Chofu University 田園調布学園大学'),
(24436, 'https://ror.org/03mkcyk72', 'en', 1, 'https://ror.org/03mkcyk72 Heisei International University 平成国際大学'),
(24437, 'https://ror.org/03bya9897', 'en', 1, 'https://ror.org/03bya9897 Seiwa University 清和大学'),
(24438, 'https://ror.org/03s336c88', 'en', 1, 'https://ror.org/03s336c88 Princess of Naradhiwas University มหาวิทยาลัยนราธิวาสราชนครินทร์'),
(24439, 'https://ror.org/05v56p320', 'id', 1, 'https://ror.org/05v56p320 Universitas Muhammadiyah Tapanuli Selatan'),
(24440, 'https://ror.org/00hdt0550', 'en', 1, 'https://ror.org/00hdt0550 Kagawa Prefectural College of Health Sciences 香川県立保健医療大学'),
(24441, 'https://ror.org/03m60k875', 'en', 1, 'https://ror.org/03m60k875 Kyushu Women''s University 九州女子大学'),
(24442, 'https://ror.org/02579k123', 'id', 1, 'https://ror.org/02579k123 Universitas Bina Darma'),
(24443, 'https://ror.org/05ar41694', 'en', 1, 'https://ror.org/05ar41694 Korea Christian University'),
(24444, 'https://ror.org/00s2dgg43', 'id', 1, 'https://ror.org/00s2dgg43 Universitas Iba'),
(24445, 'https://ror.org/05f06q946', 'id', 1, 'https://ror.org/05f06q946 Universitas Kader Bangsa'),
(24446, 'https://ror.org/05w462p65', 'id', 1, 'https://ror.org/05w462p65 Universitas Muhammadiyah Palembang'),
(24447, 'https://ror.org/02f7nxk86', 'id', 1, 'https://ror.org/02f7nxk86 Universitas Palembang'),
(24448, 'https://ror.org/05h6xaj60', 'en', 1, 'https://ror.org/05h6xaj60 Korean Bible University'),
(24449, 'https://ror.org/01wmc1580', 'en', 1, 'https://ror.org/01wmc1580 Methodist Theological University'),
(24450, 'https://ror.org/04vxqfe68', 'en', 1, 'https://ror.org/04vxqfe68 Pathumthani University มหาวิทยาลัยปทุมธานี'),
(24451, 'https://ror.org/02s22e816', 'en', 1, 'https://ror.org/02s22e816 Kyushu International University 九州国際大学'),
(24452, 'https://ror.org/02hngjw26', 'en', 1, 'https://ror.org/02hngjw26 Seoul Christian University'),
(24453, 'https://ror.org/01xts9v65', 'en', 1, 'https://ror.org/01xts9v65 Seoul National University of Education 서울교육대학교'),
(24454, 'https://ror.org/003ag3w45', 'en', 1, 'https://ror.org/003ag3w45 Saint Andrew First-Called Georgian University of the Patriarchate of Georgia საქართველოს საპატრიარქოს წმიდა ანდრია პირველწოდებულის სახელობის ქართული უნივერსიტეტი'),
(24455, 'https://ror.org/01ah0xq26', 'id', 1, 'https://ror.org/01ah0xq26 Universitas Sjakhyakirti'),
(24456, 'https://ror.org/04hp7kk26', 'no_lang_code', 1, 'https://ror.org/04hp7kk26 Valaya Alongkorn Rajabhat University มหาวิทยาลัยราชภัฏวไลยอลงกรณ์ ในพระบรมราชูปถัมภ์'),
(24457, 'https://ror.org/02p76dr31', 'id', 1, 'https://ror.org/02p76dr31 Universitas Tridinanti Palembang'),
(24458, 'https://ror.org/04ctw6466', 'en', 1, 'https://ror.org/04ctw6466 Seoul Social Welfare Graduate University 서울사회복지대학원대학교'),
(24459, 'https://ror.org/0018jvy55', 'id', 1, 'https://ror.org/0018jvy55 Universitas Alkhairaat'),
(24460, 'https://ror.org/00e4pwa85', 'en', 1, 'https://ror.org/00e4pwa85 Rudny Industrial Institute Рудный Индустриалдық Институты'),
(24461, 'https://ror.org/024j7nb58', 'en', 1, 'https://ror.org/024j7nb58 Pavlodar State Pedagogical University Павлодар мемлекеттік педагогикалық университеті'),
(24462, 'https://ror.org/04rg3qa61', 'no_lang_code', 1, 'https://ror.org/04rg3qa61 Sungkonghoe University 성공회대학교'),
(24463, 'https://ror.org/051xzna40', 'id', 1, 'https://ror.org/051xzna40 Universitas Muhammadiyah Palu'),
(24464, 'https://ror.org/01crwkz66', 'en', 1, 'https://ror.org/01crwkz66 Fatoni University มหาวิทยาลัยฟาฏอนี'),
(24465, 'https://ror.org/053fxhf38', 'en', 1, 'https://ror.org/053fxhf38 International Black Sea University შავი ზღვის საერთაშორისო უნივერსიტეტი'),
(24466, 'https://ror.org/004emtb57', 'en', 1, 'https://ror.org/004emtb57 Phetchabun Rajabhat University มหาวิทยาลัยราชภัฎเพชรบูรณ์'),
(24467, 'https://ror.org/01d3jsk91', 'en', 1, 'https://ror.org/01d3jsk91 Phetchaburi Rajabhat University มหาวิทยาลัยราชภัฏเพชรบุรี'),
(24468, 'https://ror.org/015n4ka04', 'en', 1, 'https://ror.org/015n4ka04 Webster University Thailand มหาวิทยาลัยเวบสเตอร์'),
(24469, 'https://ror.org/05j2ycs33', 'id', 1, 'https://ror.org/05j2ycs33 Universitas Mathla''ul Anwar Banten'),
(24470, 'https://ror.org/04v7cww51', 'id', 1, 'https://ror.org/04v7cww51 Universitas Antakusuma'),
(24471, 'https://ror.org/04zbaj011', 'no_lang_code', 1, 'https://ror.org/04zbaj011 Seinan Jo Gakuin University 西南女学院大学'),
(24472, 'https://ror.org/01fwksc03', 'en', 1, 'https://ror.org/01fwksc03 Far East University'),
(24473, 'https://ror.org/02x7w2961', 'en', 1, 'https://ror.org/02x7w2961 Pibulsongkram Rajabhat University มหาวิทยาลัยราชภัฏพิบูลสงคราม'),
(24474, 'https://ror.org/03kw5ag50', 'en', 1, 'https://ror.org/03kw5ag50 Halla University 한라대학교'),
(24475, 'https://ror.org/03xbq6057', 'en', 1, 'https://ror.org/03xbq6057 Kobe Institute Of Computing 神戸情報大学院大学'),
(24476, 'https://ror.org/040kwjv41', 'en', 1, 'https://ror.org/040kwjv41 Kobe Kaisei College 神戸海星女子学院大学'),
(24477, 'https://ror.org/01xy1dh32', 'en', 1, 'https://ror.org/01xy1dh32 Kobe International University 神戸国際大学'),
(24478, 'https://ror.org/00xwryd04', 'en', 1, 'https://ror.org/00xwryd04 Kobe Shinwa Women''s University 神戸親和女子大学'),
(24479, 'https://ror.org/00bt0h739', 'id', 1, 'https://ror.org/00bt0h739 Universitas Muhammadiyah Parepare'),
(24480, 'https://ror.org/03bwsp312', 'en', 1, 'https://ror.org/03bwsp312 Kobe Shoin Women''s University 神戸松蔭女子学院大学'),
(24481, 'https://ror.org/00fnry208', 'en', 1, 'https://ror.org/00fnry208 Daejeon Catholic University'),
(24482, 'https://ror.org/058bps337', 'id', 1, 'https://ror.org/058bps337 Universitas Pasir Pangaraian'),
(24483, 'https://ror.org/03meq3t09', 'en', 1, 'https://ror.org/03meq3t09 Kobe Yamate University 神戸山手大学'),
(24484, 'https://ror.org/05055ck28', 'en', 1, 'https://ror.org/05055ck28 Calvin University 칼빈대학교'),
(24485, 'https://ror.org/00ea13906', 'en', 1, 'https://ror.org/00ea13906 Kangnam University 강남대학교'),
(24486, 'https://ror.org/008wkze26', 'en', 1, 'https://ror.org/008wkze26 Phitsanulok University มหาวิทยาลัยพิษณุโลก'),
(24487, 'https://ror.org/037a1p293', 'id', 1, 'https://ror.org/037a1p293 Universitas Merdeka Pasuruan'),
(24488, 'https://ror.org/03mh64g46', 'en', 1, 'https://ror.org/03mh64g46 Phuket Rajabhat University มหาวิทยาลัยราชภัฏภูเก็ต'),
(24489, 'https://ror.org/020peey21', 'en', 1, 'https://ror.org/020peey21 Kobe City University of Foreign Studies 神戸市外国語大学'),
(24490, 'https://ror.org/016n6yn28', 'id', 1, 'https://ror.org/016n6yn28 Universitas Yudharta Pasuruan'),
(24491, 'https://ror.org/049v2fv58', 'en', 1, 'https://ror.org/049v2fv58 Muban Chombueng Rajabhat University มหาวิทยาลัยราชภัฏหมู่บ้านจอมบึง'),
(24492, 'https://ror.org/01ryrzh03', 'en', 1, 'https://ror.org/01ryrzh03 Kobe City College of Nursing 神戸市看護大学'),
(24493, 'https://ror.org/051zns832', 'en', 1, 'https://ror.org/051zns832 Konan Women''s University 甲南女子大学'),
(24494, 'https://ror.org/02v1sf687', 'en', 1, 'https://ror.org/02v1sf687 University of Kochi 高知県立大学'),
(24495, 'https://ror.org/02wq2gg07', 'no_lang_code', 1, 'https://ror.org/02wq2gg07 Huachiew Chalermprakiet University มหาวิทยาลัยหัวเฉียวเฉลิมพระเกียรติ'),
(24496, 'https://ror.org/04qb0r423', 'en', 1, 'https://ror.org/04qb0r423 Georgian American University ქართულ-ამერიკული უნივერსიტეტი'),
(24497, 'https://ror.org/00m2sk374', 'en', 1, 'https://ror.org/00m2sk374 Asia Pacific International University Asia-Pacific International University มหาวิทยาลัยนานาชาติเอเชีย-แปซิฟิก'),
(24498, 'https://ror.org/032392f02', 'en', 1, 'https://ror.org/032392f02 Sisaket Rajabhat University มหาวิทยาลัยราชภัฏ ศรีสะเกษ'),
(24499, 'https://ror.org/015dhy417', 'en', 1, 'https://ror.org/015dhy417 Luther University 루터대학교'),
(24500, 'https://ror.org/04qdzzb42', 'en', 1, 'https://ror.org/04qdzzb42 Musashino Art University 武蔵野美術大学'),
(24501, 'https://ror.org/0283yy536', 'id', 1, 'https://ror.org/0283yy536 Universitas Lancang Kuning'),
(24502, 'https://ror.org/049q7vv14', 'id', 1, 'https://ror.org/049q7vv14 Universitas Muhammadiyah Riau'),
(24503, 'https://ror.org/00nk7p507', 'en', 1, 'https://ror.org/00nk7p507 Riau University Universitas Riau'),
(24504, 'https://ror.org/027mg2511', 'en', 1, 'https://ror.org/027mg2511 Tsuda University 津田塾大学'),
(24505, 'https://ror.org/035qaq447', 'en', 1, 'https://ror.org/035qaq447 Yong In University 용인대학교'),
(24506, 'https://ror.org/00ey2ce45', 'id', 1, 'https://ror.org/00ey2ce45 Universitas Simalungun'),
(24507, 'https://ror.org/030fd1j28', 'no_lang_code', 1, 'https://ror.org/030fd1j28 Yamanashi Eiwa College 山梨英和大学'),
(24508, 'https://ror.org/05rxs7517', 'en', 1, 'https://ror.org/05rxs7517 Songkhla Rajabhat University มหาวิทยาลัยราชภัฏสงขลา'),
(24509, 'https://ror.org/04ka27d61', 'en', 1, 'https://ror.org/04ka27d61 Al Asyariah Mandar University Universitas Al Asyariah Mandar'),
(24510, 'https://ror.org/04p9k4b15', 'id', 1, 'https://ror.org/04p9k4b15 Universitas Merdeka Ponorogo'),
(24511, 'https://ror.org/04xampv42', 'en', 1, 'https://ror.org/04xampv42 Sehan University 세한대학교'),
(24512, 'https://ror.org/01jbjw881', 'en', 1, 'https://ror.org/01jbjw881 Youngdong University 영동대학교'),
(24513, 'https://ror.org/04rbrkq32', 'en', 1, 'https://ror.org/04rbrkq32 Yamanashi Prefectural University 山梨県立大学'),
(24514, 'https://ror.org/03zrfs389', 'en', 1, 'https://ror.org/03zrfs389 Aichi Bunkyo University 愛知文教大学'),
(24515, 'https://ror.org/05aymst21', 'en', 1, 'https://ror.org/05aymst21 Minami Kyushu University 南九州大学'),
(24516, 'https://ror.org/02byy8g27', 'en', 1, 'https://ror.org/02byy8g27 Kyushu Lutheran College 九州ルーテル学院大学'),
(24517, 'https://ror.org/04r04yh88', 'no_lang_code', 1, 'https://ror.org/04r04yh88 Shokei College 尚絅大学'),
(24518, 'https://ror.org/0287qtx49', 'id', 1, 'https://ror.org/0287qtx49 Universitas Sintuwu Maroso'),
(24519, 'https://ror.org/05dx9zk73', 'en', 1, 'https://ror.org/05dx9zk73 Tokyo Women''s College of Physical Education 東京女子体育大学'),
(24520, 'https://ror.org/0538g0d09', 'no_lang_code', 1, 'https://ror.org/0538g0d09 Kurashiki Sakuyo University くらしき作陽大学'),
(24521, 'https://ror.org/05byzd324', 'no_lang_code', 1, 'https://ror.org/05byzd324 Hiroshima Bunka Gakuen University 広島文化学園大学'),
(24522, 'https://ror.org/00wptnt05', 'en', 1, 'https://ror.org/00wptnt05 Utsunomiya Kyowa University 宇都宮共和大学'),
(24523, 'https://ror.org/03cvxzw02', 'en', 1, 'https://ror.org/03cvxzw02 Rajamangala University of Technology Tawan-ok มหาวิทยาลัยราชมงคลตะวันออก'),
(24524, 'https://ror.org/047vj8n35', 'en', 1, 'https://ror.org/047vj8n35 Tapee University วิทยาลัยตาปี'),
(24525, 'https://ror.org/04d3gck32', 'id', 1, 'https://ror.org/04d3gck32 Universitas Wijayakusuma Purwokerto'),
(24526, 'https://ror.org/03866db80', 'en', 1, 'https://ror.org/03866db80 Kushiro Public University of Economics 釧路公立大学'),
(24527, 'https://ror.org/00myp7129', 'en', 1, 'https://ror.org/00myp7129 Youngsan University of Son Studies 영산선학대학교'),
(24528, 'https://ror.org/04wv2vw16', 'en', 1, 'https://ror.org/04wv2vw16 Surindra Rajabhat University มหาวิทยาลัยราชภัฏสุรินทร์'),
(24529, 'https://ror.org/014bk4g26', 'en', 1, 'https://ror.org/014bk4g26 International Teaching University of Georgia თბილისის სასწავლო უნივერსიტეტი "გორგასალი"'),
(24530, 'https://ror.org/02p6jga18', 'en', 1, 'https://ror.org/02p6jga18 Doshisha Women''s College of Liberal Arts 同志社女子大学'),
(24531, 'https://ror.org/03s0nek04', 'no_lang_code', 1, 'https://ror.org/03s0nek04 Lumnamping College วิทยาลัยลุ่มน้ำปิง'),
(24532, 'https://ror.org/01kq1we52', 'en', 1, 'https://ror.org/01kq1we52 Eastern Asia University มหาวิทยาลัยอีสเทิร์นเอเชีย'),
(24533, 'https://ror.org/04629sk87', 'en', 1, 'https://ror.org/04629sk87 Bukkyo University 佛教大学'),
(24534, 'https://ror.org/00ebk5277', 'en', 1, 'https://ror.org/00ebk5277 Tbilisi Humanitarian Teaching University თბილისის ჰუმანიტარული სასწავლო უნივერსიტეტი'),
(24535, 'https://ror.org/03mzvzx07', 'en', 1, 'https://ror.org/03mzvzx07 Dhonburi Rajabhat University มหาวิทยาลัยราชภัฏธนบุรี'),
(24536, 'https://ror.org/010vxxa64', 'en', 1, 'https://ror.org/010vxxa64 Kyrgyz State National University И.Арабаев атындагы Кыргыз мамлекеттик университети'),
(24537, 'https://ror.org/0247pbj10', 'en', 1, 'https://ror.org/0247pbj10 Ubon Ratchathani Rajabhat University มหาวิทยาลัยราชภัฏอุบลราชธานี'),
(24538, 'https://ror.org/04t1qn077', 'en', 1, 'https://ror.org/04t1qn077 Kyoto Koka Women''s University 京都光華女子大学'),
(24539, 'https://ror.org/04mfefe23', 'en', 1, 'https://ror.org/04mfefe23 Kyoto Notre Dame University 京都ノートルダム女子大学'),
(24540, 'https://ror.org/02hxajc23', 'en', 1, 'https://ror.org/02hxajc23 Kyoto City University of Arts 京都市立芸術大学'),
(24541, 'https://ror.org/001hawd46', 'id', 1, 'https://ror.org/001hawd46 Universitas Al-washliyah Labuhanbatu'),
(24542, 'https://ror.org/04xs0cw05', 'en', 1, 'https://ror.org/04xs0cw05 Kyoto University of Art and Design 京都造形芸術大学'),
(24543, 'https://ror.org/02s5jck73', 'en', 1, 'https://ror.org/02s5jck73 J. F. Oberlin University 桜美林大学'),
(24544, 'https://ror.org/05h6yt550', 'en', 1, 'https://ror.org/05h6yt550 Udon Thani Rajabhat University มหาวิทยาลัยราชภัฏอุดรธานี'),
(24545, 'https://ror.org/02nc54350', 'id', 1, 'https://ror.org/02nc54350 Universitas Sawerigading Makassar'),
(24546, 'https://ror.org/009m17x95', 'en', 1, 'https://ror.org/009m17x95 Kyrgyz Economic University Кыргыз Экономика университети М. Рыскулбеков Кыргызский экономический университет им. М. Рыскулбекова'),
(24547, 'https://ror.org/04a698174', 'no_lang_code', 1, 'https://ror.org/04a698174 Tokyo Kasei Gakuin University 東京家政学院大学'),
(24548, 'https://ror.org/01c4p4327', 'id', 1, 'https://ror.org/01c4p4327 Universitas Darwan Ali'),
(24549, 'https://ror.org/059hx7q04', 'en', 1, 'https://ror.org/059hx7q04 Gunma University of Health and Welfare 群馬医療福祉大学'),
(24550, 'https://ror.org/03ncgps69', 'no_lang_code', 1, 'https://ror.org/03ncgps69 Maebashi Kyoai Gakuen College 共愛学園前橋国際大学'),
(24551, 'https://ror.org/03rfp4q66', 'en', 1, 'https://ror.org/03rfp4q66 Santapol College นิติศาสตร์ วิทยาลัยสันตพล'),
(24552, 'https://ror.org/01x05rm94', 'en', 1, 'https://ror.org/01x05rm94 Maebashi Institute of Technology 前橋工科大学'),
(24553, 'https://ror.org/01rs03g07', 'en', 1, 'https://ror.org/01rs03g07 Uttaradit Rajabhat University มหาวิทยาลัยราชภัฏอุตรดิตถ์'),
(24554, 'https://ror.org/05ke4ws41', 'en', 1, 'https://ror.org/05ke4ws41 Yala Rajabhat University มหาวิทยาลัยราชภัฎยะลา'),
(24555, 'https://ror.org/0441s6w50', 'no_lang_code', 1, 'https://ror.org/0441s6w50 Seitoku University 聖徳大学'),
(24556, 'https://ror.org/02rttk866', 'en', 1, 'https://ror.org/02rttk866 Matsumoto University 松本大学'),
(24557, 'https://ror.org/00379n634', 'en', 1, 'https://ror.org/00379n634 Kyrgyz State University of Construction, Transport and Architecture named after N. Isanov Кыргызский государственный университет строительства, транспорта и архитектуры им.Н.Исанова Н.Исанов атындагы Кыргыз мамлекеттик курулуш, транспорт жана архитектура университети'),
(24558, 'https://ror.org/0267k9n61', 'no_lang_code', 1, 'https://ror.org/0267k9n61 Kinjo University 金城大学'),
(24559, 'https://ror.org/04atzpa02', 'en', 1, 'https://ror.org/04atzpa02 Aichi Toho University 愛知東邦大学'),
(24560, 'https://ror.org/02csxcg02', 'id', 1, 'https://ror.org/02csxcg02 Universitas Dian Nuswantoro'),
(24561, 'https://ror.org/05xkw0e31', 'en', 1, 'https://ror.org/05xkw0e31 V. Sarajishvili Tbilisi State Conservation თბილისის ვ.სარაჯიშვილის სახელობის სახელმწიფო კონსერვატორია'),
(24562, 'https://ror.org/0238qsm25', 'en', 1, 'https://ror.org/0238qsm25 Nihon Fukushi University 日本福祉大学'),
(24563, 'https://ror.org/03qcg1j33', 'no_lang_code', 1, 'https://ror.org/03qcg1j33 Taisei Gakuin University 太成学院大学'),
(24564, 'https://ror.org/05hra0856', 'id', 1, 'https://ror.org/05hra0856 Universitas Muhammadiyah Semarang'),
(24565, 'https://ror.org/020qfzf72', 'en', 1, 'https://ror.org/020qfzf72 Kyrgyz-Russian Slavic University named after B.N. Yeltsin Киргизско-российский славянский университет имени Бориса Ельцина'),
(24566, 'https://ror.org/05qbvwf88', 'en', 1, 'https://ror.org/05qbvwf88 Osaka University of Arts 大阪芸術大学'),
(24567, 'https://ror.org/04w893s72', 'en', 1, 'https://ror.org/04w893s72 David Tvildiani Medical University დავით ტვილდიანის სახ. სამედიცინო უნივერსიტეტი'),
(24568, 'https://ror.org/03wya1h47', 'id', 1, 'https://ror.org/03wya1h47 Universitas Pandanaran'),
(24569, 'https://ror.org/04gtsq315', 'id', 1, 'https://ror.org/04gtsq315 Universitas Wahid Hasyim'),
(24570, 'https://ror.org/01dafqj83', 'en', 1, 'https://ror.org/01dafqj83 Japan Lutheran College ルーテル学院大学'),
(24571, 'https://ror.org/0051kz410', 'en', 1, 'https://ror.org/0051kz410 Tokiwa University 常磐大学'),
(24572, 'https://ror.org/022xhck05', 'en', 1, 'https://ror.org/022xhck05 Haliç University Haliç Üniversitesi'),
(24573, 'https://ror.org/01qheje62', 'no_lang_code', 1, 'https://ror.org/01qheje62 Shokei Gakuin University 尚絅学院大学'),
(24574, 'https://ror.org/01gm99y36', 'hi', 1, 'https://ror.org/01gm99y36 Gujarat Vidyapith गुजरात विद्यापीठ ગુજરાત વિદ્યાપીઠ குஜராத் வித்யாபீடம்'),
(24575, 'https://ror.org/04k4re972', 'id', 1, 'https://ror.org/04k4re972 Universitas Sisingamangaraja XII Tapanuli'),
(24576, 'https://ror.org/05nsdjj25', 'en', 1, 'https://ror.org/05nsdjj25 Miyagi University 宮城大学'),
(24577, 'https://ror.org/0229k3q35', 'en', 1, 'https://ror.org/0229k3q35 Maharshi Dayanand Saraswati University महर्षि दयानन्द सरस्वती विश्वविद्यालय, अजमेर'),
(24578, 'https://ror.org/030wwj796', 'id', 1, 'https://ror.org/030wwj796 Universitas Jabal Ghafur'),
(24579, 'https://ror.org/04jty2903', 'en', 1, 'https://ror.org/04jty2903 Nishinippon Institute of Technology 西日本工業大学'),
(24580, 'https://ror.org/04vh2cv64', 'en', 1, 'https://ror.org/04vh2cv64 Miyazaki Prefectural Nursing University 宮崎県立看護大学'),
(24581, 'https://ror.org/03jr06221', 'en', 1, 'https://ror.org/03jr06221 Dr Panjabrao Deshmukh Krishi Vidyapeeth डॉ. पंजाबराव देशमुख कृषी विद्यापीठ'),
(24582, 'https://ror.org/05e8ahe21', 'en', 1, 'https://ror.org/05e8ahe21 Miyazaki International College 宮崎国際大学'),
(24583, 'https://ror.org/01gfny940', 'en', 1, 'https://ror.org/01gfny940 Miyazaki Municipal University 宮崎公立大学'),
(24584, 'https://ror.org/05frh4635', 'no_lang_code', 1, 'https://ror.org/05frh4635 Miyazaki Sangyo-keiei University 宮崎産業経営大学'),
(24585, 'https://ror.org/0567mpb57', 'id', 1, 'https://ror.org/0567mpb57 Universitas Abdurahman Saleh Situbondo'),
(24586, 'https://ror.org/024p3pn20', 'no_lang_code', 1, 'https://ror.org/024p3pn20 Seisa Dohto University 星槎道都大学'),
(24587, 'https://ror.org/00g0n6t22', 'en', 1, 'https://ror.org/00g0n6t22 Fakir Mohan University'),
(24588, 'https://ror.org/01h9zz434', 'en', 1, 'https://ror.org/01h9zz434 Japanese Red Cross Kyushu International College of Nursing 日本赤十字九州国際看護大学'),
(24589, 'https://ror.org/03q750z50', 'en', 1, 'https://ror.org/03q750z50 Lebanese Canadian University Université Libano-Canadienne'),
(24590, 'https://ror.org/02sfa0g63', 'id', 1, 'https://ror.org/02sfa0g63 Universitas Muhamadiyah Sorong'),
(24591, 'https://ror.org/02dvskw32', 'en', 1, 'https://ror.org/02dvskw32 Makhanlal Chaturvedi National University of Journalism and Communication माखनलाल चतुर्वेदी राष्ट्रीय पत्रकारिता एवं संचार विश्वविद्यालय'),
(24592, 'https://ror.org/031gj7m30', 'id', 1, 'https://ror.org/031gj7m30 Universitas Kristen Papua'),
(24593, 'https://ror.org/02q3t9m57', 'en', 1, 'https://ror.org/02q3t9m57 National Law Institute University'),
(24594, 'https://ror.org/04spwz235', 'en', 1, 'https://ror.org/04spwz235 American University of Science and Technology Université américaine de sciences et technologie الجامعة الأميركية للعلوم والتكنولوجيا'),
(24595, 'https://ror.org/05c5yp582', 'id', 1, 'https://ror.org/05c5yp582 Universitas Subang'),
(24596, 'https://ror.org/038hwvh16', 'fr', 1, 'https://ror.org/038hwvh16 École Supérieure des Affaires الكلية العالية لادارة الاعمال'),
(24597, 'https://ror.org/033243786', 'id', 1, 'https://ror.org/033243786 Universitas Muhammadiyah Sukabumi'),
(24598, 'https://ror.org/04sjvrk20', 'no_lang_code', 1, 'https://ror.org/04sjvrk20 Maharaja Ganga Singh University महाराजा गंगा सिंह विश्वविधालय'),
(24599, 'https://ror.org/01kyzdy66', 'fr', 1, 'https://ror.org/01kyzdy66 Al Imam Al Ouzai University جامعة الإمام الأوزاعي الإسلامية'),
(24600, 'https://ror.org/01cyq8n55', 'en', 1, 'https://ror.org/01cyq8n55 Asia University 亜細亜大学'),
(24601, 'https://ror.org/00a8hpd04', 'en', 1, 'https://ror.org/00a8hpd04 Niigata University of Rehabilitation 新潟リハビリテーション大学'),
(24602, 'https://ror.org/01a3w2x24', 'no_lang_code', 1, 'https://ror.org/01a3w2x24 Magadh University मगध विश्वविद्यालय'),
(24603, 'https://ror.org/04k0d3t24', 'no_lang_code', 1, 'https://ror.org/04k0d3t24 Al-Kafaàt University جامعة الكفاءات'),
(24604, 'https://ror.org/02vc4jb94', 'en', 1, 'https://ror.org/02vc4jb94 Ministry of Foreign Affairs of Turkmenistan МИНИСТЕРСТВО ИНОСТРАННЫХ ДЕЛ ТУРКМЕНИСТАНА'),
(24605, 'https://ror.org/00mqpp445', 'id', 1, 'https://ror.org/00mqpp445 Universitas Samawa'),
(24606, 'https://ror.org/010nsv610', 'no_lang_code', 1, 'https://ror.org/010nsv610 Seisen Jogakuin College 清泉女学院大学'),
(24607, 'https://ror.org/04byxj259', 'id', 1, 'https://ror.org/04byxj259 Universitas Winaya Mukti'),
(24608, 'https://ror.org/02dg6na50', 'en', 1, 'https://ror.org/02dg6na50 Halkara Türkmen-Türk uniwersiteti International Turkmen-Turkish University Международный туркмено-турецкий университет'),
(24609, 'https://ror.org/002grtm11', 'no_lang_code', 1, 'https://ror.org/002grtm11 Dakshina Bharat Hindi Prachar Sabha'),
(24610, 'https://ror.org/053hsst90', 'en', 1, 'https://ror.org/053hsst90 Dr. M.G.R. Educational and Research Institute'),
(24611, 'https://ror.org/00yydx071', 'no_lang_code', 1, 'https://ror.org/00yydx071 Osaka Seikei University 大阪成蹊大学'),
(24612, 'https://ror.org/048c1xv24', 'en', 1, 'https://ror.org/048c1xv24 Toyo Gakuen University 東洋学園大学'),
(24613, 'https://ror.org/04jdy5g59', 'en', 1, 'https://ror.org/04jdy5g59 Meenakshi Academy of Higher Education and Research'),
(24614, 'https://ror.org/006c2dp67', 'en', 1, 'https://ror.org/006c2dp67 Kwassui Women''s University 活水女子大学'),
(24615, 'https://ror.org/01ypcyq30', 'en', 1, 'https://ror.org/01ypcyq30 Nagasaki University of Foreign Studies 長崎外国語大学'),
(24616, 'https://ror.org/04756ha57', 'en', 1, 'https://ror.org/04756ha57 Nagasaki Junshin Catholic University 長崎純心大学'),
(24617, 'https://ror.org/04zqz4f11', 'id', 1, 'https://ror.org/04zqz4f11 Universitas Wiraraja'),
(24618, 'https://ror.org/01r3zxa49', 'id', 1, 'https://ror.org/01r3zxa49 Indonesian Institute of Informatics Institut Informatika Indonesia'),
(24619, 'https://ror.org/011x6fh62', 'en', 1, 'https://ror.org/011x6fh62 Tamil Nadu Dr. Ambedkar Law University டாக்டர் அம்பேத்கர் சட்டப் பல்கலைக்கழகம்'),
(24620, 'https://ror.org/01qc33y56', 'en', 1, 'https://ror.org/01qc33y56 National Institute of Sports and Tourism of Turkmenistan'),
(24621, 'https://ror.org/014bbcf72', 'en', 1, 'https://ror.org/014bbcf72 Nagasaki Wesleyan University 長崎ウエスレヤン大学'),
(24622, 'https://ror.org/00ca12a38', 'hi', 1, 'https://ror.org/00ca12a38 Mahatma Gandhi Chitrakoot Gramodaya Vishwavidyalaya'),
(24623, 'https://ror.org/05d0pgx42', 'en', 1, 'https://ror.org/05d0pgx42 Meio University 名桜大学'),
(24624, 'https://ror.org/051jm0x83', 'en', 1, 'https://ror.org/051jm0x83 Jalalabad State University Жалал-Абад мамлекеттик университети'),
(24625, 'https://ror.org/05007jy86', 'id', 1, 'https://ror.org/05007jy86 Institut Teknologi Adhi Tama Surabaya'),
(24626, 'https://ror.org/03s2yse38', 'en', 1, 'https://ror.org/03s2yse38 Turkmen National Institute of Foreign Languages named after D. Azadi'),
(24627, 'https://ror.org/03hn03h23', 'fr', 1, 'https://ror.org/03hn03h23 Université La Sagesse جامعة الحكمة'),
(24628, 'https://ror.org/026j13a09', 'en', 1, 'https://ror.org/026j13a09 Doho University 同朋大学'),
(24629, 'https://ror.org/02xrm8562', 'id', 1, 'https://ror.org/02xrm8562 Universitas 17 Agustus 1945 Surabaya'),
(24630, 'https://ror.org/05hjapd30', 'en', 1, 'https://ror.org/05hjapd30 State Academy of Arts of Turkmenistan Türkmenistanyň Döwlet çeperçilik akademiýasy'),
(24631, 'https://ror.org/03aet8853', 'no_lang_code', 1, 'https://ror.org/03aet8853 Tokai Gakuen University 東海学園大学'),
(24632, 'https://ror.org/042vvq103', 'en', 1, 'https://ror.org/042vvq103 Makassed University جامعة المقاصد في بيروت'),
(24633, 'https://ror.org/04s03g948', 'id', 1, 'https://ror.org/04s03g948 Universitas Dr. Soetomo'),
(24634, 'https://ror.org/046zepm61', 'en', 1, 'https://ror.org/046zepm61 Okinawa University 沖縄大学'),
(24635, 'https://ror.org/05yk27p37', 'en', 1, 'https://ror.org/05yk27p37 Elisabeth University of Music エリザベト音楽大学'),
(24636, 'https://ror.org/03gb3sn92', 'no_lang_code', 1, 'https://ror.org/03gb3sn92 Dr. Balasaheb Sawant Konkan Krishi Vidyapeeth'),
(24637, 'https://ror.org/02mwnfc70', 'en', 1, 'https://ror.org/02mwnfc70 Turkmen State Institute of Culture'),
(24638, 'https://ror.org/05h0pqw77', 'id', 1, 'https://ror.org/05h0pqw77 Universitas Hang Tuah'),
(24639, 'https://ror.org/03d8nmh82', 'en', 1, 'https://ror.org/03d8nmh82 Kameshwar Singh Darbhanga Sanskrit University कामेश्वर सिंह दरभंगा संस्कृत विश्वविद्यालय'),
(24640, 'https://ror.org/03t0fy352', 'en', 1, 'https://ror.org/03t0fy352 Okinawa Christian University 沖縄キリスト教学院大学'),
(24641, 'https://ror.org/037thy319', 'id', 1, 'https://ror.org/037thy319 Kartini University Universitas Kartini'),
(24642, 'https://ror.org/02saqjz85', 'no_lang_code', 1, 'https://ror.org/02saqjz85 Chukyo Gakuin University 中京学院大学'),
(24643, 'https://ror.org/039pzne76', 'en', 1, 'https://ror.org/039pzne76 Beirut Islamic University الجامعة الإسلامية في لبنان'),
(24644, 'https://ror.org/03m5h1s11', 'en', 1, 'https://ror.org/03m5h1s11 Turkmen State Institute of Economics and Management Туркменский государственный институт экономики и управления'),
(24645, 'https://ror.org/03ydd9q52', 'en', 1, 'https://ror.org/03ydd9q52 Nara Prefectural University 奈良県立大学'),
(24646, 'https://ror.org/00e936y53', 'en', 1, 'https://ror.org/00e936y53 Turkmen State Institute of Transport and Communication'),
(24647, 'https://ror.org/051wzgj54', 'id', 1, 'https://ror.org/051wzgj54 Universitas Narotama'),
(24648, 'https://ror.org/02vh85b91', 'no_lang_code', 1, 'https://ror.org/02vh85b91 Sido Kanhu Murmu University सिदो कान्हू मुर्मू युनिवर्सिटी'),
(24649, 'https://ror.org/01x24z916', 'en', 1, 'https://ror.org/01x24z916 Turkmen State Institute of Architecture and Construction'),
(24650, 'https://ror.org/034agrd14', 'en', 1, 'https://ror.org/034agrd14 Lebanese International University Université internationale libanaise الجامعة اللبنانية الدولية'),
(24651, 'https://ror.org/00gjmav90', 'id', 1, 'https://ror.org/00gjmav90 Universitas Sunan Giri'),
(24652, 'https://ror.org/00vnpja80', 'en', 1, 'https://ror.org/00vnpja80 Modern University for Business and Science الجامعة الحديثة للإدارة والعلوم'),
(24653, 'https://ror.org/0272csn50', 'en', 1, 'https://ror.org/0272csn50 Lakshmibai National Institute of Physical Education'),
(24654, 'https://ror.org/05x5rpn21', 'en', 1, 'https://ror.org/05x5rpn21 American University of Technology دانشگاه آمریکایی فناوری'),
(24655, 'https://ror.org/040eqhp13', 'en', 1, 'https://ror.org/040eqhp13 Islamic University of Lebanon الجامعة الإسلامية في لبنان'),
(24656, 'https://ror.org/013609965', 'en', 1, 'https://ror.org/013609965 City University جامعة المنار في طرابلس'),
(24657, 'https://ror.org/025ee3160', 'id', 1, 'https://ror.org/025ee3160 Universitas WR Supratman'),
(24658, 'https://ror.org/0210pwe06', 'en', 1, 'https://ror.org/0210pwe06 Tezukayama University 帝塚山大学'),
(24659, 'https://ror.org/0149y8a98', 'en', 1, 'https://ror.org/0149y8a98 Turkmen State Power Engineering Institute Türkmenistanyñ Döwlet Energetika Instituty'),
(24660, 'https://ror.org/05qp61e83', 'en', 1, 'https://ror.org/05qp61e83 Musashi University 武蔵大学'),
(24661, 'https://ror.org/005gjt698', 'en', 1, 'https://ror.org/005gjt698 University Geomedi უნივერსიტეტი გეომედი'),
(24662, 'https://ror.org/020an1644', 'en', 1, 'https://ror.org/020an1644 Maulana Azad National Urdu University مولانا آزاد نیشنل اردو یونیورسٹی மவுலானா ஆசாத் தேசிய உருது பல்கலைக்கழகம் చర్చ:మౌలానా అబుల్ కలామ్ ఆజాద్ മൌലാനാ ആസാദ് നാഷനൽ ഉർദു യൂനിവേഴ്സിറ്റി ਮੌਲਾਨਾ ਆਜ਼ਾਦ ਨੈਸ਼ਨਲ ਉਰਦੂ ਯੂਨੀਵਰਸਿਟੀ'),
(24663, 'https://ror.org/0539zen48', 'en', 1, 'https://ror.org/0539zen48 Nalsar University of Law'),
(24664, 'https://ror.org/056bksm23', 'en', 1, 'https://ror.org/056bksm23 Osaka Electro-Communication University 大阪電気通信大学'),
(24665, 'https://ror.org/01mh73q44', 'en', 1, 'https://ror.org/01mh73q44 Potti Sreeramulu Telugu University தெலுங்கு பல்கலைக்கழகம் పొట్టి శ్రీరాములు తెలుగు విశ్వవిద్యాలయము'),
(24666, 'https://ror.org/02cgbcj98', 'en', 1, 'https://ror.org/02cgbcj98 Limkokwing University of Creative Technology Universiti Teknologi Kreatif Limkokwing'),
(24667, 'https://ror.org/05ebt7533', 'en', 1, 'https://ror.org/05ebt7533 Turkmen State Pedagogical Institute named Seidnazar Seydi Туркменский государственный педагогический институт имени Сейитназара Сейди'),
(24668, 'https://ror.org/00qmy9z88', 'en', 1, 'https://ror.org/00qmy9z88 Higher Colleges of Technology كليّات التقنيّة العليا'),
(24669, 'https://ror.org/01zwh2149', 'no_lang_code', 1, 'https://ror.org/01zwh2149 Jawaharlal Nehru Krishi Vishwa Vidyalaya जवाहरलाल नेहरू कृषि विश्वविद्यालय'),
(24670, 'https://ror.org/019787q29', 'en', 1, 'https://ror.org/019787q29 UCSI University Universiti UCSI'),
(24671, 'https://ror.org/03jp7rg16', 'en', 1, 'https://ror.org/03jp7rg16 LNM Institute of Information Technology'),
(24672, 'https://ror.org/04n3n6d60', 'en', 1, 'https://ror.org/04n3n6d60 Sher-e-Kashmir University of Agricultural Sciences and Technology of Jammu'),
(24673, 'https://ror.org/05qmfqe91', 'id', 1, 'https://ror.org/05qmfqe91 Universitas Yos Soedarso'),
(24674, 'https://ror.org/05y8x6h30', 'en', 1, 'https://ror.org/05y8x6h30 Al Ghurair University'),
(24675, 'https://ror.org/03yta1g89', 'en', 1, 'https://ror.org/03yta1g89 Niigata College of Nursing 新潟県立看護大学'),
(24676, 'https://ror.org/03w6mtb84', 'en', 1, 'https://ror.org/03w6mtb84 Niigata Institute of Technology 新潟工科大学'),
(24677, 'https://ror.org/018tkrn90', 'id', 1, 'https://ror.org/018tkrn90 Universitas Islam Batik'),
(24678, 'https://ror.org/03nskz175', 'en', 1, 'https://ror.org/03nskz175 Niigata University of International and Information Studies 新潟国際情報大学'),
(24679, 'https://ror.org/00nqcp204', 'no_lang_code', 1, 'https://ror.org/00nqcp204 Niigata Seiryo University 新潟青陵大学'),
(24680, 'https://ror.org/04frcff47', 'en', 1, 'https://ror.org/04frcff47 Malaysia University of Science and Technology Universiti Sains dan Teknologi Malaysia'),
(24681, 'https://ror.org/04kjpwa96', 'en', 1, 'https://ror.org/04kjpwa96 Atomi University 跡見学園女子大学'),
(24682, 'https://ror.org/00y5xdc54', 'id', 1, 'https://ror.org/00y5xdc54 Universitas Nahdlatul Ulama Surakarta'),
(24683, 'https://ror.org/03068df82', 'en', 1, 'https://ror.org/03068df82 Jumonji University 十文字学園女子大学'),
(24684, 'https://ror.org/05h0z7c09', 'en', 1, 'https://ror.org/05h0z7c09 University of Dubai جامعة دبي'),
(24685, 'https://ror.org/054sr2w55', 'en', 1, 'https://ror.org/054sr2w55 Binary University of Management & Entrepreneurship'),
(24686, 'https://ror.org/0560jvm78', 'en', 1, 'https://ror.org/0560jvm78 Veer Bahadur Singh Purvanchal University वीर बहादुर सिंह पूर्वांचल विश्वविद्यालय வீர் பகதூர் சிங் பூர்வாஞ்சல் பல்கலைக்கழகம்'),
(24687, 'https://ror.org/02pxsrh16', 'en', 1, 'https://ror.org/02pxsrh16 Singhania University सिंघानिया विश्वविद्यालय'),
(24688, 'https://ror.org/01q00vp39', 'en', 1, 'https://ror.org/01q00vp39 Nagoya University of Arts 名古屋芸術大学'),
(24689, 'https://ror.org/03qnpty21', 'en', 1, 'https://ror.org/03qnpty21 Jai Narain Vyas University जयनारायण व्यास विश्वविद्यालय'),
(24690, 'https://ror.org/005bjd415', 'en', 1, 'https://ror.org/005bjd415 Sultan Idris Education University Universiti Pendidikan Sultan Idris பெண்டிடிக்கான் சுல்தான் இத்ரீசு பல்கலைக்கழகம்'),
(24691, 'https://ror.org/014phfv49', 'en', 1, 'https://ror.org/014phfv49 Kobe College 神戸女学院大学'),
(24692, 'https://ror.org/04kc6x746', 'no_lang_code', 1, 'https://ror.org/04kc6x746 Otemae University 大手前大学'),
(24693, 'https://ror.org/03k9f1n96', 'en', 1, 'https://ror.org/03k9f1n96 Nagoya University of Foreign Studies 名古屋外国語大学'),
(24694, 'https://ror.org/054jv7347', 'en', 1, 'https://ror.org/054jv7347 Kannada University ಕನ್ನಡ ವಿಶ್ವವಿದ್ಯಾಲಯ'),
(24695, 'https://ror.org/04n1has83', 'id', 1, 'https://ror.org/04n1has83 Universitas Sahid Surakarta'),
(24696, 'https://ror.org/021hq5q33', 'en', 1, 'https://ror.org/021hq5q33 Sebelas Maret University Universitas Sebelas Maret'),
(24697, 'https://ror.org/03gn53446', 'id', 1, 'https://ror.org/03gn53446 Universitas Setia Budi'),
(24698, 'https://ror.org/05g48k331', 'en', 1, 'https://ror.org/05g48k331 Hamdan Bin Mohammed Smart University جامعة حمدان بن محمد الإلكترونية');
INSERT INTO `rors` VALUES
(24699, 'https://ror.org/0403ytw22', 'en', 1, 'https://ror.org/0403ytw22 Chandra Shekhar Azad University of Agriculture and Technology चंद्र शेखर आजाद कृषि एवं प्रौद्योगिकी विश्वविद्यालय'),
(24700, 'https://ror.org/01t79g318', 'id', 1, 'https://ror.org/01t79g318 Universitas Slamet Riyadi'),
(24701, 'https://ror.org/02c8fr539', 'en', 1, 'https://ror.org/02c8fr539 North Bengal Agricultural University Uttar Banga Krishi Viswavidyalaya'),
(24702, 'https://ror.org/00mc18523', 'en', 1, 'https://ror.org/00mc18523 British University in Dubai'),
(24703, 'https://ror.org/0447ajy94', 'en', 1, 'https://ror.org/0447ajy94 University of Wollongong in Dubai جامعة ولونغونغ في دبي'),
(24704, 'https://ror.org/02a7zg443', 'en', 1, 'https://ror.org/02a7zg443 University of the Humanities Хүмүүнлэгийн Ухааны Их Сургууль'),
(24705, 'https://ror.org/01zte6c10', 'id', 1, 'https://ror.org/01zte6c10 Universitas Cordova'),
(24706, 'https://ror.org/03pkka491', 'id', 1, 'https://ror.org/03pkka491 Universitas Islam Syekh Yusuf'),
(24707, 'https://ror.org/04zj95y60', 'en', 1, 'https://ror.org/04zj95y60 Dravidian University द्रविड़ विश्वविद्यालय திராவிடப் பல்கலைக்கழகம் ద్రవిడ విశ్వవిద్యాలయము ದ್ರಾವಿಡ ವಿಶ್ವವಿದ್ಯಾನಿಲಯ'),
(24708, 'https://ror.org/03tqe1x88', 'en', 1, 'https://ror.org/03tqe1x88 Andijan Institute of Agricultural Andijon qishloq xo''jalik instituti'),
(24709, 'https://ror.org/02rbqkj03', 'id', 1, 'https://ror.org/02rbqkj03 Universitas Pramita Indonesia'),
(24710, 'https://ror.org/01wmn7w14', 'en', 1, 'https://ror.org/01wmn7w14 Institute of Advanced Media Arts and Sciences 情報科学芸術大学院大学'),
(24711, 'https://ror.org/01nkqk925', 'en', 1, 'https://ror.org/01nkqk925 Jain Vishva Bharati University जैन विश्व भारती विश्वविद्यालय'),
(24712, 'https://ror.org/02z7pfr92', 'en', 1, 'https://ror.org/02z7pfr92 Oita University of Nursing and Health Sciences 大分県立看護科学大学'),
(24713, 'https://ror.org/040gghh09', 'no_lang_code', 1, 'https://ror.org/040gghh09 Chugoku Gakuen University 中国学園大学'),
(24714, 'https://ror.org/05999pw96', 'id', 1, 'https://ror.org/05999pw96 Universitas Pancasakti Tegal'),
(24715, 'https://ror.org/0085esk58', 'id', 1, 'https://ror.org/0085esk58 Universitas Kutai Kartanegara'),
(24716, 'https://ror.org/01ga8zd22', 'en', 1, 'https://ror.org/01ga8zd22 Andijan State Medical Institute Andijon Davlat Tibbiyot Instituti'),
(24717, 'https://ror.org/011w3dy65', 'no_lang_code', 1, 'https://ror.org/011w3dy65 Bhupendra Narayan Mandal University भूपेंद्र नारायण मंडल विश्वविद्यालय'),
(24718, 'https://ror.org/05rap1m08', 'no_lang_code', 1, 'https://ror.org/05rap1m08 Maharaja Sriram Chandra Bhanja Deo University ମହାରାଜା ଶ୍ରୀରାମ ଚନ୍ଦ୍ର ଭଞ୍ଜ ଦେଓ ଇଉନିଭର୍ସିଟି'),
(24719, 'https://ror.org/00bad4666', 'en', 1, 'https://ror.org/00bad4666 Andijan State University Andijon davlat universiteti'),
(24720, 'https://ror.org/03pqde616', 'en', 1, 'https://ror.org/03pqde616 Okayama Shoka University 岡山商科大学'),
(24721, 'https://ror.org/010pkba38', 'en', 1, 'https://ror.org/010pkba38 Sanyo Gakuen University 山陽学園大学'),
(24722, 'https://ror.org/01r27v904', 'en', 1, 'https://ror.org/01r27v904 Sardar Vallabhbhai Patel University of Agriculture & Technology सरदार वल्लभभाई पटेल युनिवर्सिटी ऑफ़ एग्रीकल्चर & टेक्नोलॉजी'),
(24723, 'https://ror.org/007hp0t61', 'en', 1, 'https://ror.org/007hp0t61 Muhammadiyah University of North Maluku Universitas Muhammadiyah Maluku Utara'),
(24724, 'https://ror.org/05f0cs849', 'en', 1, 'https://ror.org/05f0cs849 Aichi Sangyo University 愛知産業大学'),
(24725, 'https://ror.org/04gz2h231', 'en', 1, 'https://ror.org/04gz2h231 Okinawa Prefectural College of Nursing 沖縄県立看護大学'),
(24726, 'https://ror.org/04jpmwt24', 'no_lang_code', 1, 'https://ror.org/04jpmwt24 Bidhan Chandra Krishi Viswavidyalaya बिधान चन्द्र कृषि विश्वविद्यालय বিধানচন্দ্র কৃষি বিশ্ববিদ্যালয়'),
(24727, 'https://ror.org/04b4kxc62', 'id', 1, 'https://ror.org/04b4kxc62 Universitas Halmahera'),
(24728, 'https://ror.org/02zp6e752', 'en', 1, 'https://ror.org/02zp6e752 Osaka University of Tourism 大阪観光大学'),
(24729, 'https://ror.org/03qfmrs34', 'en', 1, 'https://ror.org/03qfmrs34 Central Institute of Fisheries Education'),
(24730, 'https://ror.org/00k729t32', 'id', 1, 'https://ror.org/00k729t32 Institut Teknologi Minaesa'),
(24731, 'https://ror.org/02whw1h12', 'id', 1, 'https://ror.org/02whw1h12 Universitas Kristen Indonesia Tomohon'),
(24732, 'https://ror.org/04n1dph88', 'id', 1, 'https://ror.org/04n1dph88 Universitas Sariputra Indonesia Tomohon'),
(24733, 'https://ror.org/05dybcw48', 'id', 1, 'https://ror.org/05dybcw48 Universitas Tulungagung'),
(24734, 'https://ror.org/04n731m62', 'en', 1, 'https://ror.org/04n731m62 Osaka Shoin Women''s University 大阪樟蔭女子大学'),
(24735, 'https://ror.org/04q5v8a44', 'en', 1, 'https://ror.org/04q5v8a44 Ulaanbaatar International University Олон улсын улаанбаатарын их сургууль'),
(24736, 'https://ror.org/03zjy9626', 'en', 1, 'https://ror.org/03zjy9626 Jizzakh Polytechnic Institute Jizzax Poltexnika Instituti'),
(24737, 'https://ror.org/02fm1my09', 'id', 1, 'https://ror.org/02fm1my09 Universitas Kristen Indonesia Paulus'),
(24738, 'https://ror.org/045qb5273', 'en', 1, 'https://ror.org/045qb5273 D.Y. Patil University'),
(24739, 'https://ror.org/00m2v3519', 'no_lang_code', 1, 'https://ror.org/00m2v3519 Zasagt Khan institute'),
(24740, 'https://ror.org/059fmyk31', 'en', 1, 'https://ror.org/059fmyk31 Soai University 相愛大学'),
(24741, 'https://ror.org/00efgh409', 'en', 1, 'https://ror.org/00efgh409 Indian Institute of Foreign Trade भारतीय विदेश व्यापार संस्थान'),
(24742, 'https://ror.org/03nw47j70', 'no_lang_code', 1, 'https://ror.org/03nw47j70 Kanto Gakuen University 関東学園大学'),
(24743, 'https://ror.org/02bbvzp74', 'en', 1, 'https://ror.org/02bbvzp74 Indian Law Institute'),
(24744, 'https://ror.org/05bsrqh80', 'en', 1, 'https://ror.org/05bsrqh80 University of Medicine Magway'),
(24745, 'https://ror.org/00d7gza76', 'id', 1, 'https://ror.org/00d7gza76 Universitas Darul Ulum Islamic Centre Sudirman'),
(24746, 'https://ror.org/02z5xhm28', 'id', 1, 'https://ror.org/02z5xhm28 Universitas Gunung Kidul'),
(24747, 'https://ror.org/01268am16', 'en', 1, 'https://ror.org/01268am16 National Museum Institute of the History of Art, Conservation and Museology राष्ट्रीय संग्रहालय संस्थान कला इतिहास, संरक्षण एवं संग्रहालय विज्ञान'),
(24748, 'https://ror.org/01gwmqw64', 'en', 1, 'https://ror.org/01gwmqw64 Mandalay Technological University မန္တလေးနည်းပညာတက္ကသိုလ်'),
(24749, 'https://ror.org/008jssb69', 'en', 1, 'https://ror.org/008jssb69 University of Computer Studies Mandalay'),
(24750, 'https://ror.org/03s3x9r14', 'en', 1, 'https://ror.org/03s3x9r14 Shri Lal Bahadur Shastri Rashtriya Sanskrit Vidyapeetha श्री लाल बहादुरशास्त्री राष्ट्रियसंस्कृत विद्यापीठ'),
(24751, 'https://ror.org/00pbv8y11', 'en', 1, 'https://ror.org/00pbv8y11 Otaru University of Commerce 小樽商科大学'),
(24752, 'https://ror.org/04sb3zx15', 'id', 1, 'https://ror.org/04sb3zx15 Institut Pertanian Intan'),
(24753, 'https://ror.org/03gz88214', 'en', 1, 'https://ror.org/03gz88214 University of Medicine Mandalay မန္တလေးဆေးတက္ကသိုလ်'),
(24754, 'https://ror.org/022b23347', 'en', 1, 'https://ror.org/022b23347 Seian University of Art and Design 成安造形大学'),
(24755, 'https://ror.org/00dcg0248', 'no_lang_code', 1, 'https://ror.org/00dcg0248 Yadanabon University ရတနာပုံ တက္ကသိုလ်'),
(24756, 'https://ror.org/02m0d6s97', 'id', 1, 'https://ror.org/02m0d6s97 Institut Sains & Teknologi Akprind Yogyakarta'),
(24757, 'https://ror.org/037wmsn67', 'en', 1, 'https://ror.org/037wmsn67 Nagoya Sangyo University 名古屋産業大学'),
(24758, 'https://ror.org/01rckwh32', 'en', 1, 'https://ror.org/01rckwh32 Mawlamyine University မော်လမြိုင် တက္ကသိုလ်'),
(24759, 'https://ror.org/05vkk5g69', 'en', 1, 'https://ror.org/05vkk5g69 Hakuoh University 白鴎大学'),
(24760, 'https://ror.org/04pad1p35', 'id', 1, 'https://ror.org/04pad1p35 Universitas Cokroaminoto Ngayogyakarta Universitas Cokroaminoto Yogyakarta'),
(24761, 'https://ror.org/05j20qz36', 'en', 1, 'https://ror.org/05j20qz36 Janabadra University'),
(24762, 'https://ror.org/0520yg777', 'no_lang_code', 1, 'https://ror.org/0520yg777 MindSet Rx (United States)'),
(24763, 'https://ror.org/02dhd8054', 'no_lang_code', 1, 'https://ror.org/02dhd8054 Arqball (United States)'),
(24764, 'https://ror.org/0350qvj56', 'en', 1, 'https://ror.org/0350qvj56 Karshi State University Qarshi Davlat Universiteti'),
(24765, 'https://ror.org/0362r6n51', 'en', 1, 'https://ror.org/0362r6n51 Kokand State Pedagogical Institute named after Mukimi Muqimiy nomidagi Qo''qon davlat pedagogika instituti'),
(24766, 'https://ror.org/049sxg896', 'en', 1, 'https://ror.org/049sxg896 Hemchandracharya North Gujarat University'),
(24767, 'https://ror.org/0264cyj93', 'en', 1, 'https://ror.org/0264cyj93 Sagami Women''s University 相模女子大学'),
(24768, 'https://ror.org/05arzt710', 'en', 1, 'https://ror.org/05arzt710 Sri Sathya Sai Institute of Higher Learning'),
(24769, 'https://ror.org/00megt644', 'en', 1, 'https://ror.org/00megt644 Namangan Engineering Pedagogical Institute Namangan muhandislik-pedagogika instituti'),
(24770, 'https://ror.org/03k5q1m42', 'no_lang_code', 1, 'https://ror.org/03k5q1m42 Poole Gakuin University 学校法人プール学院'),
(24771, 'https://ror.org/039aamd19', 'en', 1, 'https://ror.org/039aamd19 Nihon Pharmaceutical University 日本薬科大学'),
(24772, 'https://ror.org/04xc7z697', 'en', 1, 'https://ror.org/04xc7z697 Navoi State Mining Institute'),
(24773, 'https://ror.org/025q7w350', 'en', 1, 'https://ror.org/025q7w350 Yezin Agricultural University ရေဆင်းစိုက်ပျိုးရေးတက္ကသိုလ်'),
(24774, 'https://ror.org/03zgadm16', 'en', 1, 'https://ror.org/03zgadm16 Bunri University of Hospitality 西武文理大学'),
(24775, 'https://ror.org/00wtb8g49', 'en', 1, 'https://ror.org/00wtb8g49 Shobi University 尚美学園大学'),
(24776, 'https://ror.org/02em1tr51', 'en', 1, 'https://ror.org/02em1tr51 University of Petroleum'),
(24777, 'https://ror.org/046st9p05', 'en', 1, 'https://ror.org/046st9p05 Taunggyi University တောင်ကြီး တက္ကသိုလ်'),
(24778, 'https://ror.org/0207r1190', 'en', 1, 'https://ror.org/0207r1190 Urawa University 浦和大学'),
(24779, 'https://ror.org/003ktzf45', 'id', 1, 'https://ror.org/003ktzf45 Universitas Respati Yogyakarta'),
(24780, 'https://ror.org/01b54nd92', 'en', 1, 'https://ror.org/01b54nd92 AJINIYOZ NOMIDAGI NUKUS DAVLAT PEDAGOGIKA INSTITUTI Nukus State Pedagogical Institute named after Ajiniyaz'),
(24781, 'https://ror.org/05rn78z96', 'en', 1, 'https://ror.org/05rn78z96 Dagon University ဒဂုံ တက္ကသိုလ်'),
(24782, 'https://ror.org/049gff252', 'en', 1, 'https://ror.org/049gff252 Universitas Sarjanawiyata Tamansiswa University of Sarjanawiyata Tamansiswa'),
(24783, 'https://ror.org/04x8bys48', 'id', 1, 'https://ror.org/04x8bys48 Universitas Widya Mataram Yogyakarta'),
(24784, 'https://ror.org/01y7t5s25', 'en', 1, 'https://ror.org/01y7t5s25 Samarkand State Architectural and Civil-Engineering Institute Samarqand davlat arxitektura qurilish instituti'),
(24785, 'https://ror.org/05mzj8a56', 'en', 1, 'https://ror.org/05mzj8a56 Kyoto College of Graduate Studies for Informatics 京都情報大学院大学'),
(24786, 'https://ror.org/03ksn2k92', 'en', 1, 'https://ror.org/03ksn2k92 University of Dental Medicine'),
(24787, 'https://ror.org/00azgtq24', 'en', 1, 'https://ror.org/00azgtq24 Shri Jagannath Sanskrit University श्री जगन्नाथ संस्कृत विश्वविद्यालय ଶ୍ରୀ ଜଗନ୍ନାଥ ସଂସ୍କୃତ ବିଶ୍ୱବିଦ୍ୟାଳୟ'),
(24788, 'https://ror.org/05g4f0342', 'en', 1, 'https://ror.org/05g4f0342 Kyoto Seika University 京都精華大学'),
(24789, 'https://ror.org/00mcwq335', 'en', 1, 'https://ror.org/00mcwq335 Indira Gandhi Agricultural University इंदिरा गांधी कृषि विश्वविद्यालय'),
(24790, 'https://ror.org/03hja9k84', 'en', 1, 'https://ror.org/03hja9k84 Fuji Women''s University 藤女子大学'),
(24791, 'https://ror.org/03sb1j698', 'no_lang_code', 1, 'https://ror.org/03sb1j698 Indira Kala Sangeet University इंदिरा कला संगीत विश्वविद्यालय'),
(24792, 'https://ror.org/0483fxt86', 'en', 1, 'https://ror.org/0483fxt86 Samarkand State Institute of Foreign Languages Samarqand davlat chet tillar instituti'),
(24793, 'https://ror.org/03c824k52', 'en', 1, 'https://ror.org/03c824k52 Samarkand State Medical Institute САМАРКАНДСКИЙ ГОСУДАРСТВЕННЫЙ МЕДИЦИНСКИЙ ИНСТИТУТ'),
(24794, 'https://ror.org/0391xbs96', 'en', 1, 'https://ror.org/0391xbs96 Hokkai School of Commerce 北海商科大学'),
(24795, 'https://ror.org/01hhetk66', 'no_lang_code', 1, 'https://ror.org/01hhetk66 Kavikulaguru Kalidas Sanskrit University कविकुलगुरु कालिदास संस्कृत विश्वविद्यालय'),
(24796, 'https://ror.org/03a7ksb41', 'en', 1, 'https://ror.org/03a7ksb41 Birsa Agricultural University बिरसा कृषि विश्वविद्यालय'),
(24797, 'https://ror.org/05gqsa340', 'en', 1, 'https://ror.org/05gqsa340 Hokkaido University of Science 北海道科学大学'),
(24798, 'https://ror.org/05028dx30', 'en', 1, 'https://ror.org/05028dx30 University of Medicine 2 Yangon ဆေးတက္ကသိုလ်၂ ရန်ကုန်'),
(24799, 'https://ror.org/00ae65a65', 'en', 1, 'https://ror.org/00ae65a65 Samarkand Institute of Economics and Service Samarqand iqtisodiyot va servis instituti'),
(24800, 'https://ror.org/04bz6gw73', 'en', 1, 'https://ror.org/04bz6gw73 Sapporo University 札幌大学'),
(24801, 'https://ror.org/01xapxe37', 'en', 1, 'https://ror.org/01xapxe37 Dr. Hari Singh Gour University डॉ. हरिसिंह गौर विश्वविद्यालय'),
(24802, 'https://ror.org/03wt62c10', 'en', 1, 'https://ror.org/03wt62c10 Vinayaka Missions University விநாயகா மிஷன்ஸ் பல்கலைக்கழகம்'),
(24803, 'https://ror.org/0490a2476', 'en', 1, 'https://ror.org/0490a2476 Sapporo International University 札幌国際大学'),
(24804, 'https://ror.org/01981np70', 'en', 1, 'https://ror.org/01981np70 Tenshi College 天使大学'),
(24805, 'https://ror.org/0056jkv70', 'en', 1, 'https://ror.org/0056jkv70 Dr. Rajendra Prasad Central Agriculture University डॉ. राजेंद्र प्रसाद केन्द्रीय कृषि विश्वविद्यालय'),
(24806, 'https://ror.org/03ppx1p25', 'en', 1, 'https://ror.org/03ppx1p25 University of Nagasaki 長崎県立大学'),
(24807, 'https://ror.org/04s222234', 'en', 1, 'https://ror.org/04s222234 Sambalpur University ସମ୍ବଲପୁର ବିଶ୍ବବିଦ୍ୟାଳୟ'),
(24808, 'https://ror.org/016hp9x85', 'en', 1, 'https://ror.org/016hp9x85 Gunma Prefectural Women''s University 群馬県立女子大学'),
(24809, 'https://ror.org/05cqdcg79', 'no_lang_code', 1, 'https://ror.org/05cqdcg79 Musashino Gakuin University 武蔵野学院大学'),
(24810, 'https://ror.org/048mwn423', 'en', 1, 'https://ror.org/048mwn423 Sardarkrushinagar Dantiwada Agricultural University કૃષિ યુનિવર્સિટી, સરદારકૃષિનગર દાંતીવાડા'),
(24811, 'https://ror.org/016bpc336', 'en', 1, 'https://ror.org/016bpc336 International Pacific University 環太平洋大学'),
(24812, 'https://ror.org/00jgwn197', 'en', 1, 'https://ror.org/00jgwn197 Sher-e-Kashmir University of Agricultural Sciences and Technology of Kashmir शेर-ए-कश्मीर कृषि विज्ञान एवं प्रौद्योगिकी विश्वविद्यालय'),
(24813, 'https://ror.org/02y394t43', 'en', 1, 'https://ror.org/02y394t43 Sardar Vallabhbhai National Institute of Technology Surat सरदार वल्लभभाई राष्ट्रीय प्रौद्योगिकी संस्थान, सूरत'),
(24814, 'https://ror.org/05g910a37', 'en', 1, 'https://ror.org/05g910a37 Yangon University of Education ရန်ကုန်ပညာရေးတက္ကသိုလ်'),
(24815, 'https://ror.org/008pxsf13', 'en', 1, 'https://ror.org/008pxsf13 Yangon Technological University ရန်ကုန်နည်းပညာတက္ကသိုလ်'),
(24816, 'https://ror.org/034k66c68', 'en', 1, 'https://ror.org/034k66c68 Yangon University Of Distance Education အဝေးသင် တက္ကသိုလ်'),
(24817, 'https://ror.org/02et39n43', 'no_lang_code', 1, 'https://ror.org/02et39n43 Kerala Kalamandalam கலாமண்டலம் കേരളകലാമണ്ഡലം'),
(24818, 'https://ror.org/041xnqz41', 'en', 1, 'https://ror.org/041xnqz41 Rashtriya Sanskrit Vidyapeetha రాష్ట్రీయ సంస్కృత విద్యాపీఠం'),
(24819, 'https://ror.org/00abagg24', 'en', 1, 'https://ror.org/00abagg24 Janardan Rai Nagar Rajasthan Vidyapeeth University जनार्दन राय नागर राजस्थान विद्यापीठ विश्वविद्यालय'),
(24820, 'https://ror.org/03pwq8a06', 'en', 1, 'https://ror.org/03pwq8a06 Yangon University of Foreign Languages'),
(24821, 'https://ror.org/05jhq2w18', 'en', 1, 'https://ror.org/05jhq2w18 Maharana Pratap University of Agriculture and Technology'),
(24822, 'https://ror.org/02nbq4b63', 'en', 1, 'https://ror.org/02nbq4b63 Maharishi Mahesh Yogi Vedic University महर्षि महेश योगी वैदिक विश्वविद्यालय'),
(24823, 'https://ror.org/04ebscd73', 'en', 1, 'https://ror.org/04ebscd73 European University College الكلية الأوروبية الجامعية'),
(24824, 'https://ror.org/033kwjh11', 'no_lang_code', 1, 'https://ror.org/033kwjh11 Nepal Sanskrit University नेपाल संस्कृत विश्वविद्यालय'),
(24825, 'https://ror.org/01amn0803', 'en', 1, 'https://ror.org/01amn0803 Waljat Colleges of Applied Sciences كليةولجات للعلوم التطبيقية'),
(24826, 'https://ror.org/01bmg2a15', 'en', 1, 'https://ror.org/01bmg2a15 Islom Karimov nomidagi Toshkent davlat texnika universiteti Tashkent State Technical University named after Islam Karimov'),
(24827, 'https://ror.org/02sqfdy44', 'en', 1, 'https://ror.org/02sqfdy44 Kagoshima Immaculate Heart University 鹿児島純心女子大学'),
(24828, 'https://ror.org/036feze91', 'no_lang_code', 1, 'https://ror.org/036feze91 Miyagi Gakuin Women''s University 宮城学院女子大学'),
(24829, 'https://ror.org/02bc24n80', 'en', 1, 'https://ror.org/02bc24n80 Sendai Shirayuri Women''s College 仙台白百合女子大学'),
(24830, 'https://ror.org/01wmx5158', 'no_lang_code', 1, 'https://ror.org/01wmx5158 Tohoku Bunka Gakuen University 東北文化学園大学'),
(24831, 'https://ror.org/03p7vg590', 'en', 1, 'https://ror.org/03p7vg590 Al-Zahra College for Women كلية الزهراء للبنات'),
(24832, 'https://ror.org/022ckte53', 'en', 1, 'https://ror.org/022ckte53 Institute of Chartered Financial Analysts of India भारतीय चार्टर्ड वित्तीय विश्लेषक संस्थान'),
(24833, 'https://ror.org/01phqre83', 'en', 1, 'https://ror.org/01phqre83 Tohoku Institute of Technology 東北工業大学'),
(24834, 'https://ror.org/03byfn584', 'en', 1, 'https://ror.org/03byfn584 Academy of Arts of Uzbekistan O‘zbekiston Badiiy akademiyasi Академия художеств Узбекистана'),
(24835, 'https://ror.org/03aqgee13', 'en', 1, 'https://ror.org/03aqgee13 Isfahan University of Art دانشگاه هنر اصفهان'),
(24836, 'https://ror.org/03472k602', 'no_lang_code', 1, 'https://ror.org/03472k602 Tohoku Seikatsu Bunka University 東北生活文化大学'),
(24837, 'https://ror.org/00ggmmz77', 'en', 1, 'https://ror.org/00ggmmz77 Iakob Gogebashvili Telavi State University იაკობ გოგებაშვილის სახელობის თელავის სახელმწიფო უნივერსტიტეტი'),
(24838, 'https://ror.org/030dak672', 'en', 1, 'https://ror.org/030dak672 National Textile University نیشنل ٹیکسٹائل یونیورسٹی'),
(24839, 'https://ror.org/03dc0dy65', 'en', 1, 'https://ror.org/03dc0dy65 Kashan University of Medical Sciences'),
(24840, 'https://ror.org/03gsvvm69', 'no_lang_code', 1, 'https://ror.org/03gsvvm69 Nagoya Gakuin University 名古屋学院大学'),
(24841, 'https://ror.org/05cp38y47', 'en', 1, 'https://ror.org/05cp38y47 Osaka University of Human Sciences 大阪人間科学大学'),
(24842, 'https://ror.org/026q96n20', 'en', 1, 'https://ror.org/026q96n20 Keiwa College 敬和学園大学'),
(24843, 'https://ror.org/00pxasb28', 'en', 1, 'https://ror.org/00pxasb28 Bunka Fashion Graduate University 文化ファッション大学院大学'),
(24844, 'https://ror.org/01e0ns064', 'en', 1, 'https://ror.org/01e0ns064 University of East يونيورسٽي آف انجنيئرڱ، آرٽس، سائنس اينڊ ٽيڪنالاجي'),
(24845, 'https://ror.org/03yfe9v83', 'en', 1, 'https://ror.org/03yfe9v83 Air University جامعہ فضایہ'),
(24846, 'https://ror.org/01hxe3g21', 'en', 1, 'https://ror.org/01hxe3g21 Hanoi University of Culture Đại học Văn hóa Hà Nội'),
(24847, 'https://ror.org/04edybc52', 'no_lang_code', 1, 'https://ror.org/04edybc52 Biwako Seikei Sport College びわこ成蹊スポーツ大学'),
(24848, 'https://ror.org/0130a6s10', 'en', 1, 'https://ror.org/0130a6s10 Foundation University Islamabad فاؤنڈیشن یونیورسٹی اسلام آباد'),
(24849, 'https://ror.org/01tmmzv45', 'en', 1, 'https://ror.org/01tmmzv45 Institute of Space Technology انسٹی ٹیوٹ آف اسپیس ٹیکنالوجی'),
(24850, 'https://ror.org/059cjcr63', 'no_lang_code', 1, 'https://ror.org/059cjcr63 Baiko Gakuin University 梅光学院大学'),
(24851, 'https://ror.org/02xx4jg88', 'en', 1, 'https://ror.org/02xx4jg88 Mohammad Ali Jinnah University جامعہ محمد علی جناح'),
(24852, 'https://ror.org/008dh2426', 'en', 1, 'https://ror.org/008dh2426 National University of Modern Languages قومی جامعہ برائے جدید لسانیات'),
(24853, 'https://ror.org/055688f96', 'en', 1, 'https://ror.org/055688f96 State Conservatory of Uzbekistan'),
(24854, 'https://ror.org/04f9apy08', 'en', 1, 'https://ror.org/04f9apy08 Advanced Institute of Industrial Technology 産業技術大学院大学'),
(24855, 'https://ror.org/047wxqn68', 'en', 1, 'https://ror.org/047wxqn68 Mejiro University 目白大学'),
(24856, 'https://ror.org/0480pdg65', 'no_lang_code', 1, 'https://ror.org/0480pdg65 Shizuoka Eiwa Gakuin University 静岡英和学院大学'),
(24857, 'https://ror.org/03mq68c95', 'no_lang_code', 1, 'https://ror.org/03mq68c95 Tokoha Gakuen University 常葉学園大学'),
(24858, 'https://ror.org/05dsae220', 'en', 1, 'https://ror.org/05dsae220 Khayyam University دانشگاه خیام'),
(24859, 'https://ror.org/03fvscn16', 'en', 1, 'https://ror.org/03fvscn16 Okinawa Prefectural University of Arts 沖縄県立芸術大学'),
(24860, 'https://ror.org/01s5r7k60', 'en', 1, 'https://ror.org/01s5r7k60 Razavi University of Islamic Sciences دانشگاه علوم اسلامی رضوی'),
(24861, 'https://ror.org/02bdt4v11', 'en', 1, 'https://ror.org/02bdt4v11 Pakistan Institute of Development Economics'),
(24862, 'https://ror.org/02v5ef260', 'en', 1, 'https://ror.org/02v5ef260 Hong Bang International University Trường Đại học Quốc tế Hồng Bàng'),
(24863, 'https://ror.org/03wj83q95', 'en', 1, 'https://ror.org/03wj83q95 Tashkent Automobile and Road Construction Institute Toshkent avtomobil yo''llarini loyihalash, qurish va ekspluatatsiyasi instituti'),
(24864, 'https://ror.org/0247ag655', 'id', 1, 'https://ror.org/0247ag655 Universitas Islam Indragiri'),
(24865, 'https://ror.org/00q15p987', 'en', 1, 'https://ror.org/00q15p987 Dadabhoy Institute of Higher Education داداڀوئي انسٽيٽيوٽ آف هائير ايجوڪيشن'),
(24866, 'https://ror.org/01avkfv81', 'en', 1, 'https://ror.org/01avkfv81 Baqir Al-Olum University دانشگاه باقرالعلوم'),
(24867, 'https://ror.org/02azr0g93', 'en', 1, 'https://ror.org/02azr0g93 Khairun University Universitas Khairun'),
(24868, 'https://ror.org/05f92a127', 'en', 1, 'https://ror.org/05f92a127 Myitkyina University မြစ်ကြီးနား တက္ကသိုလ်'),
(24869, 'https://ror.org/011c0vt04', 'en', 1, 'https://ror.org/011c0vt04 Ho Chi Minh City University of Transport Trường Đại học Giao thông vận tải Thành phố Hồ Chí Minh'),
(24870, 'https://ror.org/02tyvzz27', 'en', 1, 'https://ror.org/02tyvzz27 Ho Chi Minh City University of Architecture Trường Đại học Kiến trúc Thành phố Hồ Chí Minh'),
(24871, 'https://ror.org/044tdw637', 'en', 1, 'https://ror.org/044tdw637 Mofid University دانشگاه مفید'),
(24872, 'https://ror.org/033dq6x61', 'en', 1, 'https://ror.org/033dq6x61 Ho Chi Minh City University of Law Trường Đại học Luật Thành phố Hồ Chí Minh Université de droit d''hô-chi-minh-ville'),
(24873, 'https://ror.org/05cwygk15', 'en', 1, 'https://ror.org/05cwygk15 Ho Chi Minh City University of Fine Arts Trường Đại học Mỹ thuật Thành phố Hồ Chí Minh Université des beaux-arts d’hô-chi-minh-ville'),
(24874, 'https://ror.org/03030f487', 'en', 1, 'https://ror.org/03030f487 Nong Lam University Ho Chi Minh City Trường Đại học Nông Lâm Thành phố Hồ Chí Minh'),
(24875, 'https://ror.org/02a1v1364', 'id', 1, 'https://ror.org/02a1v1364 Universitas Lakidende'),
(24876, 'https://ror.org/03fbdat12', 'en', 1, 'https://ror.org/03fbdat12 Greenwich University'),
(24877, 'https://ror.org/00hqpmg61', 'en', 1, 'https://ror.org/00hqpmg61 Indus University انڊس يونيورسٽي'),
(24878, 'https://ror.org/02m04pz98', 'en', 1, 'https://ror.org/02m04pz98 Tashkent State Higher School of National Dance and Choreography'),
(24879, 'https://ror.org/0191rk783', 'id', 1, 'https://ror.org/0191rk783 Universitas Sains Al-Qur''an'),
(24880, 'https://ror.org/0179yft03', 'en', 1, 'https://ror.org/0179yft03 Indus Valley School of Art and Architecture انڊس ويلي اسڪول آف آرٽ اينڊ آرڪيٽيڪچر'),
(24881, 'https://ror.org/04a8t1e98', 'no_lang_code', 1, 'https://ror.org/04a8t1e98 Osaka Gakuin University 大阪学院大学'),
(24882, 'https://ror.org/056xnk046', 'en', 1, 'https://ror.org/056xnk046 Vali Asr University of Rafsanjan'),
(24883, 'https://ror.org/0029zp883', 'en', 1, 'https://ror.org/0029zp883 Trường Đại học Sân khấu – Điện ảnh Thành phố Hồ Chí Minh University of Theatre and Cinema Ho Chi Minh City'),
(24884, 'https://ror.org/022rp9q74', 'en', 1, 'https://ror.org/022rp9q74 Senri Kinran University 千里金蘭大学'),
(24885, 'https://ror.org/028vh3r56', 'en', 1, 'https://ror.org/028vh3r56 Suzuka University 鈴鹿国際大学'),
(24886, 'https://ror.org/056gdnv76', 'en', 1, 'https://ror.org/056gdnv76 Kunitachi College of Music 国立音楽大学'),
(24887, 'https://ror.org/014jyaw47', 'en', 1, 'https://ror.org/014jyaw47 Fukuoka Prefectural University 福岡県立大学'),
(24888, 'https://ror.org/03egfpm06', 'en', 1, 'https://ror.org/03egfpm06 Institute of Business Administration Karachi انسٹيٹيوٹ آف بزنس ايڈمنسٹريشن'),
(24889, 'https://ror.org/004684q56', 'en', 1, 'https://ror.org/004684q56 Takamatsu University 高松大学'),
(24890, 'https://ror.org/023crty50', 'en', 1, 'https://ror.org/023crty50 Shahroud University of Medical Sciences'),
(24891, 'https://ror.org/04bxa3v83', 'en', 1, 'https://ror.org/04bxa3v83 Shiraz University of Technology دانشگاه صنعتی شیراز'),
(24892, 'https://ror.org/016grcy95', 'en', 1, 'https://ror.org/016grcy95 Takaoka University of Law 高岡法科大学'),
(24893, 'https://ror.org/03j9sfh72', 'en', 1, 'https://ror.org/03j9sfh72 Takarazuka University of Arts & Crafts 宝塚造形芸術大学'),
(24894, 'https://ror.org/02sdmkj94', 'en', 1, 'https://ror.org/02sdmkj94 Karachi Institute of Economics and Technology'),
(24895, 'https://ror.org/018mf9d35', 'en', 1, 'https://ror.org/018mf9d35 Tashkent Financial Institute Toshkent Moliya Instituti Ташкентский Финансовый институт'),
(24896, 'https://ror.org/04jte2n37', 'en', 1, 'https://ror.org/04jte2n37 Khadim Ali Shah Bukhari Institute of Technology خادم علي شاه بخاري انسٽيٽيوٽ آف تيڪنالاجي'),
(24897, 'https://ror.org/04h4y6q56', 'en', 1, 'https://ror.org/04h4y6q56 Quy Nhon University Trường Đại Học Quy Nhơn'),
(24898, 'https://ror.org/05m6adj80', 'en', 1, 'https://ror.org/05m6adj80 Takasaki City University of Economics 高崎経済大学'),
(24899, 'https://ror.org/045z05062', 'en', 1, 'https://ror.org/045z05062 St. Agnes University 平安女学院大学'),
(24900, 'https://ror.org/03shzqb14', 'en', 1, 'https://ror.org/03shzqb14 Newports Institute of Communications and Economics نيو پورٽس انسٽيٽيوٽ آف ڪميونيڪيشنس اين ايڪانامڪس'),
(24901, 'https://ror.org/01kt71615', 'en', 1, 'https://ror.org/01kt71615 TOSHKENT TO''QIMACHILIK VA YENGIL SANOAT INSTITUTI Tashkent Institute of Textile and Light Industry ТАШКЕНТСКИЙ ИНСТИТУТ ТЕКСТИЛЬНОЙ И ЛЕГКОЙ ПРОМЫШЛЕННОСТИ'),
(24902, 'https://ror.org/02we77t30', 'en', 1, 'https://ror.org/02we77t30 Preston Institute of Management Science and Technology'),
(24903, 'https://ror.org/05dp8mg49', 'en', 1, 'https://ror.org/05dp8mg49 Hồng Đức University Trường Đại Học Hồng Đức 洪德大学'),
(24904, 'https://ror.org/05yfc2w21', 'en', 1, 'https://ror.org/05yfc2w21 Shaheed Zulfiqar Ali Bhutto Institute of Science and Technology شہید ذوالفقار علی بھٹو انسٹیٹیوٹ آف سائنس اینڈ ٹیکنالوجی'),
(24905, 'https://ror.org/04rkxwr48', 'en', 1, 'https://ror.org/04rkxwr48 Jin-ai University 仁愛大学'),
(24906, 'https://ror.org/02n4kqn31', 'en', 1, 'https://ror.org/02n4kqn31 Sir Syed University of Engineering and Technology انجنيئرڱ ۽ ٽيڪنيڀياس جي جامعہ سر سيد'),
(24907, 'https://ror.org/02cc4gc68', 'en', 1, 'https://ror.org/02cc4gc68 Allameh Tabataba''i University دانشگاه علامه طباطبایی'),
(24908, 'https://ror.org/04ft9rp47', 'en', 1, 'https://ror.org/04ft9rp47 Textile Institute of Pakistan پاکستان کی ٹیکسٹائل انسٹی ٹیوٹ'),
(24909, 'https://ror.org/02s232b27', 'en', 1, 'https://ror.org/02s232b27 Shah Abdul Latif University جامعہ شاہ عبداللطیف شاه عبداللطيف يونيورسٽي'),
(24910, 'https://ror.org/053wftt74', 'en', 1, 'https://ror.org/053wftt74 Arak University of Technology دانشگاه صنعتی اراک'),
(24911, 'https://ror.org/02gdq8g56', 'en', 1, 'https://ror.org/02gdq8g56 Tama University 多摩大学'),
(24912, 'https://ror.org/041qsth84', 'en', 1, 'https://ror.org/041qsth84 Balochistan University of Engineering and Technology بلوچستان یونیورسٹی آف انجینئرنگ اینڈ ٹیکنالوجی خضدار'),
(24913, 'https://ror.org/05p7xfk26', 'en', 1, 'https://ror.org/05p7xfk26 Preston University پریسٹن یونیورسٹی'),
(24914, 'https://ror.org/04bad2882', 'en', 1, 'https://ror.org/04bad2882 Civil Aviation Technology College دانشکده فناوری هواپیمایی هواپیمایی'),
(24915, 'https://ror.org/03e6rv013', 'en', 1, 'https://ror.org/03e6rv013 Beaconhouse National University بیکن ہاؤس نیشنل یونیورسٹی'),
(24916, 'https://ror.org/048e0p659', 'en', 1, 'https://ror.org/048e0p659 University of Science and Culture دانشگاه علم و فرهنگ'),
(24917, 'https://ror.org/014cke235', 'en', 1, 'https://ror.org/014cke235 Dalat University Trường Đại học Đà Lạt Université de Dalat 大叻大学'),
(24918, 'https://ror.org/05fkpm735', 'en', 1, 'https://ror.org/05fkpm735 Hodeidah University جامعة الحديدة'),
(24919, 'https://ror.org/01d6nwa88', 'no_lang_code', 1, 'https://ror.org/01d6nwa88 Hajvery University جامعہ ہجویری'),
(24920, 'https://ror.org/00fhcxc56', 'en', 1, 'https://ror.org/00fhcxc56 Ibb University جامعة إب'),
(24921, 'https://ror.org/04r58gt57', 'en', 1, 'https://ror.org/04r58gt57 University of Applied Science and Technology دانشگاه جامع علمی-کاربردی جهاد دانشگاهی ارومیه'),
(24922, 'https://ror.org/02ggnbj54', 'en', 1, 'https://ror.org/02ggnbj54 Tehran University of Art دانشگاه هنر'),
(24923, 'https://ror.org/04ajy5s58', 'en', 1, 'https://ror.org/04ajy5s58 Iman University جامعة الإيمان'),
(24924, 'https://ror.org/051kvhx87', 'en', 1, 'https://ror.org/051kvhx87 Saba University جامعة سبأ'),
(24925, 'https://ror.org/01rnr2315', 'en', 1, 'https://ror.org/01rnr2315 Institute of Management Sciences Lahore'),
(24926, 'https://ror.org/022jg8f66', 'en', 1, 'https://ror.org/022jg8f66 Yemenia University الجامعة اليمنية'),
(24927, 'https://ror.org/05jhvw838', 'en', 1, 'https://ror.org/05jhvw838 Imperial College of Business Studies بزنس سٹڈیز کے امپیریل کالج'),
(24928, 'https://ror.org/0175kt397', 'en', 1, 'https://ror.org/0175kt397 Lahore School of Economics'),
(24929, 'https://ror.org/00grh1m39', 'en', 1, 'https://ror.org/00grh1m39 National College of Arts نیشنل کالج آف آرٹس'),
(24930, 'https://ror.org/012jv0m98', 'en', 1, 'https://ror.org/012jv0m98 Hanoi University of Business and Technology Trường Đại học Kinh doanh và Công nghệ Hà Nội'),
(24931, 'https://ror.org/02v319z25', 'en', 1, 'https://ror.org/02v319z25 Urmia University of Technology دانشگاه صنعتی ارومیه'),
(24932, 'https://ror.org/03c19jm06', 'en', 1, 'https://ror.org/03c19jm06 Universiteti i Elbasanit University of Elbasan'),
(24933, 'https://ror.org/0095xcq10', 'en', 1, 'https://ror.org/0095xcq10 University of Management and Technology یونیورسٹی آف مینجمنٹ اینڈ ٹیکنالوجی'),
(24934, 'https://ror.org/01sfz7q36', 'en', 1, 'https://ror.org/01sfz7q36 University of South Asia جامعہ جنوبی ایشیا'),
(24935, 'https://ror.org/030rcn265', 'en', 1, 'https://ror.org/030rcn265 University of Arts'),
(24936, 'https://ror.org/03psjxz30', 'en', 1, 'https://ror.org/03psjxz30 Hanoi University of Pharmacy Trường Đại học Dược Hà Nội'),
(24937, 'https://ror.org/03c8sfz84', 'en', 1, 'https://ror.org/03c8sfz84 Hanoi Architectural University Trường Đại học Kiến trúc Hà Nội'),
(24938, 'https://ror.org/021zagz69', 'en', 1, 'https://ror.org/021zagz69 Slavic Business Institute'),
(24939, 'https://ror.org/01t0d1m90', 'en', 1, 'https://ror.org/01t0d1m90 Iran Banking Institute مؤسسه عالی بانکداری ایران'),
(24940, 'https://ror.org/00vfdqg37', 'en', 1, 'https://ror.org/00vfdqg37 Modern University for the Humanities Современная гуманитарная академия'),
(24941, 'https://ror.org/00pnmpx53', 'en', 1, 'https://ror.org/00pnmpx53 Trường Đại học Mỹ thuật Việt Nam Vietnam University of Fine Arts École des beaux-arts du viêt nam'),
(24942, 'https://ror.org/0563xp259', 'en', 1, 'https://ror.org/0563xp259 Sports University of Tirana Universiteti i Sporteve të Tiranës'),
(24943, 'https://ror.org/02mkkqv65', 'en', 1, 'https://ror.org/02mkkqv65 Imam Sadiq University دانشگاه امام صادق'),
(24944, 'https://ror.org/01z1bn264', 'en', 1, 'https://ror.org/01z1bn264 Trường Đại học Ngoại ngữ, Đại học Quốc gia Hà Nội University of Languages and International Studies'),
(24945, 'https://ror.org/03a8q7p75', 'en', 1, 'https://ror.org/03a8q7p75 Foreign Trade University Đại học Ngoại Thương'),
(24946, 'https://ror.org/00r0xhf81', 'en', 1, 'https://ror.org/00r0xhf81 Petroleum University of Technology دانشگاه صنعت نفت'),
(24947, 'https://ror.org/05rjmhp95', 'en', 1, 'https://ror.org/05rjmhp95 Academy of Film & Multimedia “MARUBI” Akademia e Filmit dhe Multimedias Marubi'),
(24948, 'https://ror.org/01abaah21', 'en', 1, 'https://ror.org/01abaah21 Học viện Nông nghiệp Việt Nam Université d''agriculture de hanoï Vietnam National University of Agriculture'),
(24949, 'https://ror.org/00hvbx079', 'en', 1, 'https://ror.org/00hvbx079 School of International Relations دانشکده روابط بینالملل وزارت امور خارجه'),
(24950, 'https://ror.org/02pk0yz95', 'en', 1, 'https://ror.org/02pk0yz95 Al Mansour University College كلية المنصور الجامعة'),
(24951, 'https://ror.org/05qwfk367', 'en', 1, 'https://ror.org/05qwfk367 Luarasi University Universiteti Luarasi'),
(24952, 'https://ror.org/01wfhkb67', 'en', 1, 'https://ror.org/01wfhkb67 Iraqi University الجامعة العراقية'),
(24953, 'https://ror.org/00s18am05', 'en', 1, 'https://ror.org/00s18am05 Everglades University'),
(24954, 'https://ror.org/01d3tej48', 'en', 1, 'https://ror.org/01d3tej48 University of New York Tirana'),
(24955, 'https://ror.org/02d2yjc53', 'en', 1, 'https://ror.org/02d2yjc53 University of the Russian Academy of Education Университет Российской Академии Образования'),
(24956, 'https://ror.org/021s7kp67', 'en', 1, 'https://ror.org/021s7kp67 Gorsky State Agrarian University Горский государственный аграрный университет'),
(24957, 'https://ror.org/03dd8b657', 'en', 1, 'https://ror.org/03dd8b657 Mohi-ud-Din Islamic University محی الدین اسلامی یونیورسٹی۔'),
(24958, 'https://ror.org/01qgdf403', 'en', 1, 'https://ror.org/01qgdf403 Catholic University Our Lady of Good Counsel Kompleksi Spitalor Universitar "Zoja e Këshillit të Mirë"'),
(24959, 'https://ror.org/03xtc7g80', 'en', 1, 'https://ror.org/03xtc7g80 Industrial Management Institute سازمان مديريت صنعتي'),
(24960, 'https://ror.org/02at53m79', 'en', 1, 'https://ror.org/02at53m79 Northern University ناردرن پوهنتون نوښار ناردرن یونیورسٹی نوشہرہ'),
(24961, 'https://ror.org/00vk7w211', 'en', 1, 'https://ror.org/00vk7w211 North Ossetian State University Северо-Осетинский государственный университет имени К. Л. Хетагурова'),
(24962, 'https://ror.org/05ws11813', 'no_lang_code', 1, 'https://ror.org/05ws11813 Abasyn University اباسین یونیورسٹی'),
(24963, 'https://ror.org/01xyxtp53', 'en', 1, 'https://ror.org/01xyxtp53 CECOS University'),
(24964, 'https://ror.org/013cp5728', 'en', 1, 'https://ror.org/013cp5728 Vladikavkaz Institute of Management Владикавказский Институт Управления'),
(24965, 'https://ror.org/02jsdya97', 'en', 1, 'https://ror.org/02jsdya97 City University of Science and Information Technology سٹی یونیورسٹی آف سائنس اینڈ انفارمیشن ٹیکنالوجی'),
(24966, 'https://ror.org/00kp9ef37', 'en', 1, 'https://ror.org/00kp9ef37 Shahid Sattari University of Aeronautical Engineering دانشگاه علوم و فنون هوایی شهید ستاری'),
(24967, 'https://ror.org/05qyt4p67', 'en', 1, 'https://ror.org/05qyt4p67 Sardar Bahadur Khan Women''s University سردار بہادر خان خواتین یونیورسٹی'),
(24968, 'https://ror.org/04jscf286', 'en', 1, 'https://ror.org/04jscf286 Ottawa University'),
(24969, 'https://ror.org/05m2gft34', 'en', 1, 'https://ror.org/05m2gft34 Vladimir Institute of Business Владимирский институт бизнеса'),
(24970, 'https://ror.org/04x60fh82', 'en', 1, 'https://ror.org/04x60fh82 Akademia Muzyczna im. Feliksa Nowowiejskiego w Bydgoszczy Feliks Nowowiejski Academy of Music in Bydgoszcz'),
(24971, 'https://ror.org/043nk9b40', 'en', 1, 'https://ror.org/043nk9b40 Vladimir Law Institute ВЛАДИМИРСКИЙ ЮРИДИЧЕСКИЙ ИНСТИТУТ ФСИН РОССИИ'),
(24972, 'https://ror.org/023t8mt09', 'en', 1, 'https://ror.org/023t8mt09 Hong Kong Shue Yan University 香港樹仁大學'),
(24973, 'https://ror.org/050fbe140', 'en', 1, 'https://ror.org/050fbe140 Hong Kong Academy for Performing Arts 香港演藝學院'),
(24974, 'https://ror.org/01mt0cc57', 'en', 1, 'https://ror.org/01mt0cc57 Kiang Wu Nursing College of Macau 澳门江湖护理学院'),
(24975, 'https://ror.org/03aj6fx58', 'en', 1, 'https://ror.org/03aj6fx58 Far Eastern State Technical Fisheries University'),
(24976, 'https://ror.org/01m6ap410', 'en', 1, 'https://ror.org/01m6ap410 Universidade de São José University of Saint Joseph 聖若瑟大學'),
(24977, 'https://ror.org/0505vt318', 'en', 1, 'https://ror.org/0505vt318 Siberian Academy of Law, Economics and Management Сибирская академия права, экономики и управления'),
(24978, 'https://ror.org/03c6e8r26', 'en', 1, 'https://ror.org/03c6e8r26 Dayeh University 大葉大學'),
(24979, 'https://ror.org/01nrk6j30', 'en', 1, 'https://ror.org/01nrk6j30 MingDao University 明道大學'),
(24980, 'https://ror.org/04hjmn382', 'en', 1, 'https://ror.org/04hjmn382 University of Economy in Bydgoszcz Wyższa Szkoła Gospodarki w Bydgoszczy'),
(24981, 'https://ror.org/04za16w58', 'en', 1, 'https://ror.org/04za16w58 Open Institute of Law Открытый юридический институт'),
(24982, 'https://ror.org/01tfbz441', 'no_lang_code', 1, 'https://ror.org/01tfbz441 Nanhua University 南華大學'),
(24983, 'https://ror.org/03qvnw793', 'pl', 1, 'https://ror.org/03qvnw793 Wyższa Szkoła Ekonomii i Administracji w Bytomiu'),
(24984, 'https://ror.org/05d293n36', 'en', 1, 'https://ror.org/05d293n36 WuFeng University 吳鳳科技大學'),
(24985, 'https://ror.org/05smtc341', 'en', 1, 'https://ror.org/05smtc341 Irkutsk State Transport University Иркутский государственный университет путей сообщения'),
(24986, 'https://ror.org/03a0cvz60', 'en', 1, 'https://ror.org/03a0cvz60 Hsuan Chuang University 玄奘大學'),
(24987, 'https://ror.org/046wjy580', 'en', 1, 'https://ror.org/046wjy580 Fo Guang University 佛光大學'),
(24988, 'https://ror.org/00602gv86', 'en', 1, 'https://ror.org/00602gv86 Akademia Polonijna Polonia University'),
(24989, 'https://ror.org/05fbv4544', 'en', 1, 'https://ror.org/05fbv4544 Chien Hsin University of Science and Technology 健行科技大學'),
(24990, 'https://ror.org/0047xfd47', 'en', 1, 'https://ror.org/0047xfd47 National Kaohsiung University of Hospitality and Tourism 國立高雄餐旅大學'),
(24991, 'https://ror.org/004wnty12', 'en', 1, 'https://ror.org/004wnty12 Open University of Kaohsiung 高雄市立空中大學'),
(24992, 'https://ror.org/02ypf3368', 'no_lang_code', 1, 'https://ror.org/02ypf3368 Tsaritsyn Orthodox University of St. Sergius of Radonezh Царицынский православный университет преподобного Сергия Радонежского'),
(24993, 'https://ror.org/03pcb1m79', 'en', 1, 'https://ror.org/03pcb1m79 Shu-Te University 樹德科技大學'),
(24994, 'https://ror.org/04xak9f33', 'en', 1, 'https://ror.org/04xak9f33 University College of Social Sciences Wyższa Szkoła Lingwistyczna'),
(24995, 'https://ror.org/003aj1676', 'en', 1, 'https://ror.org/003aj1676 Volgograd Academy of the Russian Internal Affairs Ministry Волгоградская академия Министерства внутренних дел Российской Федерации'),
(24996, 'https://ror.org/00hmh4f17', 'en', 1, 'https://ror.org/00hmh4f17 Volgograd State Academy of Physical Culture Волгоградская государственная академия физической культуры'),
(24997, 'https://ror.org/01d81q939', 'en', 1, 'https://ror.org/01d81q939 National Open University 國立空中大學'),
(24998, 'https://ror.org/00zk06669', 'en', 1, 'https://ror.org/00zk06669 Songho University 송호대학교'),
(24999, 'https://ror.org/03z698x91', 'en', 1, 'https://ror.org/03z698x91 National Pingtung University 國立屏東大學'),
(25000, 'https://ror.org/041szz343', 'en', 1, 'https://ror.org/041szz343 Volgograd State Technical University Федеральное государственное бюджетное образовательное учреждение высшего образования Волгоградский государственный технический университет'),
(25001, 'https://ror.org/006tnfe02', 'en', 1, 'https://ror.org/006tnfe02 National Taichung University of Education 國立臺中教育大學'),
(25002, 'https://ror.org/040q3y035', 'en', 1, 'https://ror.org/040q3y035 Volgograd Institute of Economics, Sociology and Law Волгоградский институт экономики, социологии и права'),
(25003, 'https://ror.org/010s58a40', 'en', 1, 'https://ror.org/010s58a40 Volgograd Municipal Institute of Arts Волгоградская консерватория имени П. А. Серебрякова [править | править вики-текст]'),
(25004, 'https://ror.org/00gq3pb70', 'en', 1, 'https://ror.org/00gq3pb70 Vologda State Milk Academy named after NV Vereshchagina'),
(25005, 'https://ror.org/03ms7mr17', 'en', 1, 'https://ror.org/03ms7mr17 Far East University 遠東科技大學'),
(25006, 'https://ror.org/04rf83d41', 'en', 1, 'https://ror.org/04rf83d41 East-Siberian Institute of the Ministry of Internal Affairs of the Russian Federation восточно-сибирский институт министерства внутренних дел российской федерации'),
(25007, 'https://ror.org/04dmnxh66', 'en', 1, 'https://ror.org/04dmnxh66 CTBC Business School 中信金融管理學院'),
(25008, 'https://ror.org/02vgg4e89', 'en', 1, 'https://ror.org/02vgg4e89 Tainan National University of the Arts 國立臺南藝術大學'),
(25009, 'https://ror.org/03967fe87', 'en', 1, 'https://ror.org/03967fe87 Tainan University of Technology 台南應用科技大學'),
(25010, 'https://ror.org/00ke8ye77', 'en', 1, 'https://ror.org/00ke8ye77 Aletheia University 真理大學'),
(25011, 'https://ror.org/02x5hb316', 'en', 1, 'https://ror.org/02x5hb316 Huafan University 華梵大學'),
(25012, 'https://ror.org/02bzpph30', 'en', 1, 'https://ror.org/02bzpph30 National Taipei University of Education 國立臺北教育大學'),
(25013, 'https://ror.org/00wy14q17', 'en', 1, 'https://ror.org/00wy14q17 National Taiwan University of Arts 國立臺灣藝術大學'),
(25014, 'https://ror.org/028qksx08', 'en', 1, 'https://ror.org/028qksx08 Institute of Economics and Law Воронежский экономико-правовой институт'),
(25015, 'https://ror.org/036gxc260', 'en', 1, 'https://ror.org/036gxc260 Institute of Management, Marketing and Finance Институт менеджмента, маркетинга и финансов'),
(25016, 'https://ror.org/03ynprv96', 'en', 1, 'https://ror.org/03ynprv96 Shih Hsin University 世新大學'),
(25017, 'https://ror.org/02kdbxe33', 'en', 1, 'https://ror.org/02kdbxe33 International Institute of Computer Technologies Международный институт компьютерных технологий'),
(25018, 'https://ror.org/05kvm7n82', 'en', 1, 'https://ror.org/05kvm7n82 Soochow University 東吳大學'),
(25019, 'https://ror.org/01kdeza40', 'en', 1, 'https://ror.org/01kdeza40 Taipei National University of the Arts 國立臺北藝術大學'),
(25020, 'https://ror.org/04f9eby28', 'en', 1, 'https://ror.org/04f9eby28 Voronezh Institute of High Technologies Воронежский институт высоких технологий'),
(25021, 'https://ror.org/00jn77c36', 'en', 1, 'https://ror.org/00jn77c36 Voronezh State Academy of Arts Воронежская государственная академия искусств'),
(25022, 'https://ror.org/01mebf576', 'en', 1, 'https://ror.org/01mebf576 Voronezh State University of Engineering Technologies Воронежский государственный университет инженерных технологий'),
(25023, 'https://ror.org/05b7g7730', 'en', 1, 'https://ror.org/05b7g7730 Tungnan University 東南科技大學'),
(25024, 'https://ror.org/018p1hd91', 'en', 1, 'https://ror.org/018p1hd91 Kainan University 開南大學'),
(25025, 'https://ror.org/05kce7016', 'en', 1, 'https://ror.org/05kce7016 Voronezh State Medical Academy named after N.N. Burdenko Воронежский государственный медицинский университет имени Н.Н. Бурденко'),
(25026, 'https://ror.org/001y2wd07', 'en', 1, 'https://ror.org/001y2wd07 Lunghwa University of Science and Technology 龍華科技大學');
INSERT INTO `rors` VALUES
(25027, 'https://ror.org/02gf32v67', 'en', 1, 'https://ror.org/02gf32v67 Voronezh State Agrarian University named after Emperor Peter the Great Воро́нежский госуда́рственный агра́рный университе́т и́мени импера́тора Петра́ I'),
(25028, 'https://ror.org/04r3dny05', 'no_lang_code', 1, 'https://ror.org/04r3dny05 Vanung University 萬能科技大學'),
(25029, 'https://ror.org/01m20f643', 'en', 1, 'https://ror.org/01m20f643 Voronezh State Technical University ВОРОНЕЖСКИЙ ГОСУДАРСТВЕННЫЙ ТЕХНИЧЕСКИЙ УНИВЕРСИТЕТ'),
(25030, 'https://ror.org/02d19m529', 'en', 1, 'https://ror.org/02d19m529 Tianjin Open University 天津开放大学'),
(25031, 'https://ror.org/00q798164', 'en', 1, 'https://ror.org/00q798164 Voronezh Institute of Economics and Social Management Воронежский институт экономики и социального управления'),
(25032, 'https://ror.org/002xvag29', 'en', 1, 'https://ror.org/002xvag29 Moscow Regional Institute of Management and Law Московский областной институт управления и права'),
(25033, 'https://ror.org/002xc5p11', 'en', 1, 'https://ror.org/002xc5p11 Dr. Babasaheb Ambedkar Open University ડો. બાબાસાહેબ આંબેડકર ઓપન યુનિવર્સિટી'),
(25034, 'https://ror.org/05w387x59', 'en', 1, 'https://ror.org/05w387x59 Voronezh Institute of Ministry of Internal Affairs Воронежский институт МВД'),
(25035, 'https://ror.org/03sna8255', 'en', 1, 'https://ror.org/03sna8255 Izhevsk State Medical Academy Ижевская государственная медицинская академия'),
(25036, 'https://ror.org/02j3w7f30', 'en', 1, 'https://ror.org/02j3w7f30 Madhya Pradesh Bhoj Open University मध्य प्रदेश भोज मुक्त विश्वविद्यालय'),
(25037, 'https://ror.org/002qkam19', 'en', 1, 'https://ror.org/002qkam19 Izhevsk State Agricultural Academy Ижевская государственная сельскохозяйственная академия'),
(25038, 'https://ror.org/04hdbtc84', 'en', 1, 'https://ror.org/04hdbtc84 Netaji Subhas Open University নেতাজি সুভাষ মুক্ত বিশ্ববিদ্যালয়'),
(25039, 'https://ror.org/04w00w616', 'en', 1, 'https://ror.org/04w00w616 Vardhaman Mahaveer Open University वर्धमान महावीर खुला विश्वविद्यालय'),
(25040, 'https://ror.org/01kxpxf76', 'en', 1, 'https://ror.org/01kxpxf76 Yashwantrao Chavan Maharashtra Open University यशवंतराव चव्हाण महाराष्ट्र मुक्त विद्यापीठ'),
(25041, 'https://ror.org/02mfr8m15', 'en', 1, 'https://ror.org/02mfr8m15 Kamsky Institute of Humanitarian and Engineering Technologies Камский институт гуманитарных и инженерных технологий'),
(25042, 'https://ror.org/039hcn695', 'en', 1, 'https://ror.org/039hcn695 Nalanda Open University नालन्दा खुला विश्वविद्यालय'),
(25043, 'https://ror.org/03efg7b93', 'no_lang_code', 1, 'https://ror.org/03efg7b93 The Egyptian General Company for Tourism and Hotels (Egypt) ايجوث - الشركة المصرية العامة للسياحة والفنادق'),
(25044, 'https://ror.org/00gjkwr85', 'en', 1, 'https://ror.org/00gjkwr85 Hanoi Open University Trường Đại học Mở Hà Nội'),
(25045, 'https://ror.org/02b2qz884', 'no_lang_code', 1, 'https://ror.org/02b2qz884 Sinar Mas (Indonesia)'),
(25046, 'https://ror.org/00tean533', 'en', 1, 'https://ror.org/00tean533 Ho Chi Minh City Open University Trường Đại học Mở Thành phố Hồ Chí Minh'),
(25047, 'https://ror.org/031t0qj16', 'pl', 1, 'https://ror.org/031t0qj16 Wyższa Szkoła Zarządzania w Częstochowie'),
(25048, 'https://ror.org/02y7be508', 'en', 1, 'https://ror.org/02y7be508 Gomel Engineering Institute Гомельский инженерный институт МЧС Республики Беларусь'),
(25049, 'https://ror.org/04y99m182', 'en', 1, 'https://ror.org/04y99m182 Belarusian State Agricultural Academy Беларуская дзяржаўная сельскагаспадарчая акадэмія'),
(25050, 'https://ror.org/051f6n260', 'en', 1, 'https://ror.org/051f6n260 Yaroslavl State Agricultural Academy Ярославская государственная сельскохозяйственная академия'),
(25051, 'https://ror.org/02n3d5p55', 'en', 1, 'https://ror.org/02n3d5p55 Yaroslavl State Pedagogical University федеральное государственное бюджетное образовательное учреждение высшего профессионального образования Ярославский государственный педагогический университет им. К.Д. Ушинского'),
(25052, 'https://ror.org/00andm809', 'pl', 1, 'https://ror.org/00andm809 Akademia Sztuk Pięknych w Gdańsku'),
(25053, 'https://ror.org/033ddqa09', 'en', 1, 'https://ror.org/033ddqa09 Yaroslavl State Theatre Institute Ярославский государственный театральный институт'),
(25054, 'https://ror.org/03pv9jn63', 'en', 1, 'https://ror.org/03pv9jn63 Grodno State Agrarian University Гродзенскі дзяржаўны аграрны ўніверсітэт'),
(25055, 'https://ror.org/01zmze177', 'pl', 1, 'https://ror.org/01zmze177 Gdańska Wyższa Szkoła Humanistyczna'),
(25056, 'https://ror.org/01pn1ra92', 'en', 1, 'https://ror.org/01pn1ra92 International Institute of Management LINK Международный институт менеджмента ЛИНК'),
(25057, 'https://ror.org/02c8cxz64', 'en', 1, 'https://ror.org/02c8cxz64 University of the Republic of San Marino Università degli Studi della Repubblica di San Marino'),
(25058, 'https://ror.org/02ffca462', 'en', 1, 'https://ror.org/02ffca462 Megatrend University Мегатренд универзитет'),
(25059, 'https://ror.org/03scay082', 'en', 1, 'https://ror.org/03scay082 University of Arts in Belgrade Univerzitet umetnosti u Beogradu Универзитет уметности у Београду'),
(25060, 'https://ror.org/00jnbe692', 'en', 1, 'https://ror.org/00jnbe692 University of Business and Administration in Gdynia Wyższa Szkoła Administracji i Biznesu im. Eugeniusza Kwiatkowskiego w Gdyni'),
(25061, 'https://ror.org/02aq91h52', 'en', 1, 'https://ror.org/02aq91h52 Academy of Public Administration under the aegis of the President of the Republic of Belarus Акаде́мия управле́ния при Президе́нте Респу́блики Белару́сь Акадэ́мiя кiрава́ння пры Прэзiдэ́нце Рэспу́блiкi Белару́сь'),
(25062, 'https://ror.org/03ys49e51', 'en', 1, 'https://ror.org/03ys49e51 Volga State University of Technology Поволжский государственный технологический университет'),
(25063, 'https://ror.org/01dv2a529', 'no_lang_code', 1, 'https://ror.org/01dv2a529 University of Novi Pazar Univerzitet u Novom Pazaru'),
(25064, 'https://ror.org/017v7rz39', 'no_lang_code', 1, 'https://ror.org/017v7rz39 Singidunum University Универзитет Сингидунум'),
(25065, 'https://ror.org/00s4gpc71', 'no_lang_code', 1, 'https://ror.org/00s4gpc71 HELP International Corporation (Malaysia)'),
(25066, 'https://ror.org/01yjw8d43', 'en', 1, 'https://ror.org/01yjw8d43 Mari State University Марийский государственный университет'),
(25067, 'https://ror.org/024ckfb15', 'en', 1, 'https://ror.org/024ckfb15 Academy of the Police Force in Bratislava Akadémia Policajného zboru v Bratislave'),
(25068, 'https://ror.org/04pejce58', 'en', 1, 'https://ror.org/04pejce58 Academy of the Interior Ministry of the Republic of Belarus Акадэмія Міністэрства ўнутраных спраў Рэспублікі Беларусь'),
(25069, 'https://ror.org/01m631n05', 'en', 1, 'https://ror.org/01m631n05 Southern Sakhalin Institute of Economics, Law and Computer Science'),
(25070, 'https://ror.org/01w1er029', 'en', 1, 'https://ror.org/01w1er029 International University College Of Technology Kolej Universiti Teknologi Antarabangsa Twintech'),
(25071, 'https://ror.org/03ttsq905', 'en', 1, 'https://ror.org/03ttsq905 Baltic State Academy of the Fishing Fleet Балтийская государственная академия рыбопромыслового флота'),
(25072, 'https://ror.org/022qy6h97', 'en', 1, 'https://ror.org/022qy6h97 Alcide De Gasperi University of Euroregional Economy in Józefów Alcide De Gasperi University of Euroregional Economy w Józefowie'),
(25073, 'https://ror.org/0108chx74', 'en', 1, 'https://ror.org/0108chx74 Akademia Muzyczna im. Karola Szymanowskiego w Katowicach Karol Szymanowski Academy of Music'),
(25074, 'https://ror.org/050901n67', 'en', 1, 'https://ror.org/050901n67 Belarusian State Academy of Music Беларуская дзяржаўная акадэмія музыкі Белорусская государственная академия музыки'),
(25075, 'https://ror.org/028ptjw77', 'en', 1, 'https://ror.org/028ptjw77 Baltic Institute of Economics and Finance Балтийский институт экономики и финансов'),
(25076, 'https://ror.org/05hna7313', 'en', 1, 'https://ror.org/05hna7313 Academy of Performing Arts in Bratislava Vysoká škola múzických umení v Bratislave'),
(25077, 'https://ror.org/0443y6a81', 'en', 1, 'https://ror.org/0443y6a81 Academy of Fine Arts and Design in Bratislava Vysoká škola výtvarných umení v Bratislave'),
(25078, 'https://ror.org/05dr87s20', 'no_lang_code', 1, 'https://ror.org/05dr87s20 Dupres Group (Slovakia)'),
(25079, 'https://ror.org/003sxhp42', 'en', 1, 'https://ror.org/003sxhp42 Higher Institute of Management Высший институт управления'),
(25080, 'https://ror.org/000zprs97', 'en', 1, 'https://ror.org/000zprs97 Kaliningrad Law Institute Ministry of Internal Affairs of the Russian Federation Калининградский Филиал Санкт - Петербургского Университета МВД России'),
(25081, 'https://ror.org/01pytr632', 'en', 1, 'https://ror.org/01pytr632 Murmansk Arctic State University Мурманский арктический государственный университет'),
(25082, 'https://ror.org/02vwdd886', 'en', 1, 'https://ror.org/02vwdd886 Belarusian State University of Physical Culture Беларускі дзяржаўны ўніверсітэт фізічнай культуры Белорусский государственный университет физической культуры'),
(25083, 'https://ror.org/0514m3k39', 'en', 1, 'https://ror.org/0514m3k39 Stredoeurópska vysoká škola v Skalici University of Central Europe in Skalica'),
(25084, 'https://ror.org/01p6xxb83', 'en', 1, 'https://ror.org/01p6xxb83 Belarusian State University of Culture and Arts Беларускі дзяржаўны ўніверсітэт культуры і мастацтваў Белорусский государственный университет культуры и искусств'),
(25085, 'https://ror.org/046y60k23', 'pl', 1, 'https://ror.org/046y60k23 Wyższa Szkoła Bankowości i Finansów w Katowicach'),
(25086, 'https://ror.org/03cg3mb71', 'en', 1, 'https://ror.org/03cg3mb71 Moscow Humanitarian Institute of E. Dashkova Московский Гуманитарный Институт им. Е.Р. Дашковой'),
(25087, 'https://ror.org/026katm53', 'pl', 1, 'https://ror.org/026katm53 Wyższa Szkoła Zarządzania Marketingowego i Języków Obcych'),
(25088, 'https://ror.org/05yq59a96', 'en', 1, 'https://ror.org/05yq59a96 International Institute of Economics and Law Международный институт экономики и права'),
(25089, 'https://ror.org/02qnwnc62', 'en', 1, 'https://ror.org/02qnwnc62 IEDC-Bled School of Management'),
(25090, 'https://ror.org/04pfrr552', 'en', 1, 'https://ror.org/04pfrr552 International Institute of Business Education Международный институт бизнес-образования'),
(25091, 'https://ror.org/044b9hy83', 'en', 1, 'https://ror.org/044b9hy83 Faculty of Commercial and Business Sciences Fakultete za Komercialne in Poslovne Vede'),
(25092, 'https://ror.org/054n82381', 'en', 1, 'https://ror.org/054n82381 Russian University of Cooperation Российский университет кооперации'),
(25093, 'https://ror.org/01nwz9n42', 'en', 1, 'https://ror.org/01nwz9n42 International School for Social and Business Studies Mednarodna Fakulteta za Družbene in Poslovne Študije'),
(25094, 'https://ror.org/046wccx89', 'en', 1, 'https://ror.org/046wccx89 Angela Boškin Faculty of Health Care Fakulteta za zdravstvo Angele Boškin'),
(25095, 'https://ror.org/004cg6a95', 'pl', 1, 'https://ror.org/004cg6a95 Wyższa Szkoła Ekonomii, Prawa i Nauk Medycznych im. prof. Edwarda Lipińskiego'),
(25096, 'https://ror.org/04jj9d877', 'en', 1, 'https://ror.org/04jj9d877 Graduate School of Government and European Studies'),
(25097, 'https://ror.org/00s8r8p14', 'en', 1, 'https://ror.org/00s8r8p14 Faculty of Media Fakulteta za medije'),
(25098, 'https://ror.org/01xr78s65', 'pl', 1, 'https://ror.org/01xr78s65 Wyższa Szkoła Kultury Prawa i Sztuki Marketingu'),
(25099, 'https://ror.org/028a67802', 'no_lang_code', 1, 'https://ror.org/028a67802 Alma Mater Europaea'),
(25100, 'https://ror.org/040skpd26', 'pl', 1, 'https://ror.org/040skpd26 Wyższa Szkoła Umiejętności im. Stanisława Staszica w Kielcach'),
(25101, 'https://ror.org/04mgy5815', 'en', 1, 'https://ror.org/04mgy5815 Kamsky Institute'),
(25102, 'https://ror.org/01p4pqq97', 'sl', 1, 'https://ror.org/01p4pqq97 Šola za Risanje in Slikanje'),
(25103, 'https://ror.org/04vympt94', 'en', 1, 'https://ror.org/04vympt94 Allama Iqbal Open University علامہ اقبال اوپن یونیورسٹی'),
(25104, 'https://ror.org/03mpxe722', 'en', 1, 'https://ror.org/03mpxe722 Academy of Social Education'),
(25105, 'https://ror.org/0065qv150', 'en', 1, 'https://ror.org/0065qv150 Ludwik Solski Academy for the Dramatic Arts Państwowa Wyższa Szkoła Teatralna im. Ludwika Solskiego w Krakowie'),
(25106, 'https://ror.org/01bz4gq06', 'en', 1, 'https://ror.org/01bz4gq06 University of Management TISBI Университет Управления "ТИСБИ"'),
(25107, 'https://ror.org/033g82k60', 'en', 1, 'https://ror.org/033g82k60 Institute of Parliamentarism and Entrepreneurship Институт парламентаризма и предпринимательства'),
(25108, 'https://ror.org/00yf8nr88', 'en', 1, 'https://ror.org/00yf8nr88 Institute of Technology and Business'),
(25109, 'https://ror.org/0165s9m45', 'en', 1, 'https://ror.org/0165s9m45 Kabardino-Balkar State Agrarian University Кабардино-Балкарский государственный аграрный университет имени В. М. Кокова'),
(25110, 'https://ror.org/05swzm262', 'en', 1, 'https://ror.org/05swzm262 Institute of Social and Humanities Институт социальных и гуманитарных наук'),
(25111, 'https://ror.org/02n78dn25', 'en', 1, 'https://ror.org/02n78dn25 Higher School of Applied Sciences Visoka šola za storitve'),
(25112, 'https://ror.org/03fxpr782', 'en', 1, 'https://ror.org/03fxpr782 North-Caucasian State Institute of Arts Северо-Кавказский государственный институт искусств'),
(25113, 'https://ror.org/03q4jaz23', 'en', 1, 'https://ror.org/03q4jaz23 Higher School of National Economy in Kutno Wyższa Szkoła Gospodarki Krajowej w Kutnie'),
(25114, 'https://ror.org/02wtp9k17', 'en', 1, 'https://ror.org/02wtp9k17 Legnica University of Management Wyższa Szkoła Menedżerska w Legnicy'),
(25115, 'https://ror.org/01sy57r11', 'en', 1, 'https://ror.org/01sy57r11 Kazan State Conservatoire named after N. Zhiganov Казанская государственная консерватории им. Н.Г.Жиганова'),
(25116, 'https://ror.org/045m60334', 'en', 1, 'https://ror.org/045m60334 Kazan State University of Culture and Arts'),
(25117, 'https://ror.org/04nxym641', 'en', 1, 'https://ror.org/04nxym641 Kazan State Agrarian University Казанский Государственный Аграрный Университет'),
(25118, 'https://ror.org/04b25wb90', 'no_lang_code', 1, 'https://ror.org/04b25wb90 Anhanguera (Brazil)'),
(25119, 'https://ror.org/00df8wr13', 'no_lang_code', 1, 'https://ror.org/00df8wr13 Education Management Corporation (United States)'),
(25120, 'https://ror.org/032sgfc78', 'en', 1, 'https://ror.org/032sgfc78 Ivanovo State Medical Academy Ивановская государственная медицинская академия'),
(25121, 'https://ror.org/04bmtez11', 'en', 1, 'https://ror.org/04bmtez11 DOBA Business School DOBA Fakulteta'),
(25122, 'https://ror.org/01sby4e06', 'en', 1, 'https://ror.org/01sby4e06 Nizhny Novgorod State Conservatory named after M.I. Glinka Нижегородская государственная консерватория имени М. И. Глинки [править | править вики-текст]'),
(25123, 'https://ror.org/00ak23720', 'en', 1, 'https://ror.org/00ak23720 Higher Education Centre Novo Mesto Visokošolsko Središče Novo Mesto'),
(25124, 'https://ror.org/03m2qyw61', 'en', 1, 'https://ror.org/03m2qyw61 School of Business and Management Novo Mesto Visoka sola za upravljanje in poslovanje Novo mesto'),
(25125, 'https://ror.org/05a3fka94', 'en', 1, 'https://ror.org/05a3fka94 University College of Enterprise and Administration in Lublin Wyższa Szkoła Przedsiębiorczości i Administracji'),
(25126, 'https://ror.org/05mfk1s45', 'en', 1, 'https://ror.org/05mfk1s45 Nizhny Novgorod State Agricultural Academy'),
(25127, 'https://ror.org/05198a862', 'en', 1, 'https://ror.org/05198a862 International Sakharov Environmental Institute Міжнародны Дзяржаўны Інстытут імя А.Д. Сахарава БДУ'),
(25128, 'https://ror.org/03avqt992', 'en', 1, 'https://ror.org/03avqt992 Nizhny Novgorod State University of Architecture and Civil Engineering НИЖЕГОРОДСКИЙ ГОСУДАРСТВЕННЫЙ АРХИТЕКТУРНО-СТРОИТЕЛЬНЫЙ УНИВЕРСИТЕТ'),
(25129, 'https://ror.org/01r2j4a39', 'en', 1, 'https://ror.org/01r2j4a39 GEA College'),
(25130, 'https://ror.org/03xmtk846', 'en', 1, 'https://ror.org/03xmtk846 Vincent Pol University Wyższa Szkoła Społeczno-Przyrodnicza im. Wincentego Pola w Lublinie'),
(25131, 'https://ror.org/013gnjn86', 'en', 1, 'https://ror.org/013gnjn86 Linguistics University of Nizhny Novgorod Нижегородский государственный лингвистический университет имени Н. А. Добролюбова'),
(25132, 'https://ror.org/03761pf32', 'en', 1, 'https://ror.org/03761pf32 Euro Mediterranean University Evro-sredozemska univerza'),
(25133, 'https://ror.org/05djcr692', 'pl', 1, 'https://ror.org/05djcr692 Górnośląska Wyższa Szkoła Pedagogiczna im. Kardynała Augusta Hlonda w Mysłowicach Górnośląska Wyższa Szkoła Pedagogiczna imienia Kardynała Augusta Hlonda w Mysłowicach'),
(25134, 'https://ror.org/0198m6535', 'en', 1, 'https://ror.org/0198m6535 Faculty of Polymer Technology Fakulteta za Tehnologijo Polimerov'),
(25135, 'https://ror.org/04nz95741', 'en', 1, 'https://ror.org/04nz95741 Tatar State University of Humanities and Education Татар дәүләт гуманитар-педагогика университеты Татарский государственный гуманитарно-педагогический университет'),
(25136, 'https://ror.org/018qe6n41', 'en', 1, 'https://ror.org/018qe6n41 International Humanitarian and Economic Institute Международный гуманитарно-экономический институт'),
(25137, 'https://ror.org/030q11033', 'en', 1, 'https://ror.org/030q11033 Nizhny Novgorod Institute of Management and Business Нижегородский институт менеджмента и бизнеса'),
(25138, 'https://ror.org/02yac4e68', 'pl', 1, 'https://ror.org/02yac4e68 Masurian University in Olecko Wszechnica Mazurska w Olecku'),
(25139, 'https://ror.org/00gxe6p18', 'en', 1, 'https://ror.org/00gxe6p18 Nizhny Novgorod Commercial Institute Нижегородский коммерческий институт'),
(25140, 'https://ror.org/04t2ykm02', 'en', 1, 'https://ror.org/04t2ykm02 Minsk State Linguistic University Минский государственный лингвистический университет Мінскі дзяржаўны лінгвістычны ўніверсітэт'),
(25141, 'https://ror.org/02kqed404', 'en', 1, 'https://ror.org/02kqed404 College of Environmental Protection Visoka šola za varstvo okolja'),
(25142, 'https://ror.org/05qrjdq75', 'en', 1, 'https://ror.org/05qrjdq75 Volga State University of Water Transport Волжский государственный университет водного транспорта'),
(25143, 'https://ror.org/03yzt0f97', 'pl', 1, 'https://ror.org/03yzt0f97 Olsztyńska Szkoła Wyższa im. Józefa Rusieckiego'),
(25144, 'https://ror.org/02cxy7q30', 'en', 1, 'https://ror.org/02cxy7q30 Belarusian State Aviation Academy Белорусская государственная академия авиации'),
(25145, 'https://ror.org/04nxx3p41', 'en', 1, 'https://ror.org/04nxx3p41 Minsk Radioengineering College Минский Радиотехнический колледж Мі́нскі Радыётэхні́чны Кале́дж'),
(25146, 'https://ror.org/047dxs002', 'en', 1, 'https://ror.org/047dxs002 Minsk Institute of Management Минский институт управления Мінскі інстытут кіравання'),
(25147, 'https://ror.org/00ghshv09', 'en', 1, 'https://ror.org/00ghshv09 Kotarbinski University of Information Technology and Management in Olsztyn'),
(25148, 'https://ror.org/0551qsw90', 'en', 1, 'https://ror.org/0551qsw90 Belarusian Russian University Белорусско-Российский университет'),
(25149, 'https://ror.org/0365deq57', 'en', 1, 'https://ror.org/0365deq57 University of Computer Sciences and Economics in Olsztyn WYŻSZA SZKOŁA INFORMATYKI I EKONOMII TWP W OLSZTYNIE'),
(25150, 'https://ror.org/03j3t7793', 'en', 1, 'https://ror.org/03j3t7793 Institute of Economics, Management and Law Институт экономики, управления и права'),
(25151, 'https://ror.org/02bqzgt47', 'en', 1, 'https://ror.org/02bqzgt47 Dans- och Cirkushögskolan University of Dance and Circus'),
(25152, 'https://ror.org/01cyvd251', 'pl', 1, 'https://ror.org/01cyvd251 Wyższa Szkoła Zarządzania i Administracji w Opolu'),
(25153, 'https://ror.org/034172q61', 'pl', 1, 'https://ror.org/034172q61 Akademia Muzyczna im. Ignacego Jana Paderewskiego w Poznaniu'),
(25154, 'https://ror.org/04r5nt755', 'en', 1, 'https://ror.org/04r5nt755 Stockholm Academy of Dramatic Arts Stockholms dramatiska högskola'),
(25155, 'https://ror.org/05wwvg270', 'en', 1, 'https://ror.org/05wwvg270 Kazan Law Institute Казанский юридический институт МВД России'),
(25156, 'https://ror.org/04jtrvy64', 'en', 1, 'https://ror.org/04jtrvy64 Mozyr State Pedagogical University named after I.P.Shamyakin Мазырскі дзяржаўны педагагічны ўніверсытэт імя І.П.Шамякіна'),
(25157, 'https://ror.org/02746y325', 'en', 1, 'https://ror.org/02746y325 Operahögskolan i Stockholm Tukholman oopperakorkeakoulu University College of Opera in Stockholm'),
(25158, 'https://ror.org/01zdsw203', 'en', 1, 'https://ror.org/01zdsw203 Tatar American Regional Institute Татарско-американский региональный институт'),
(25159, 'https://ror.org/02ttmd632', 'en', 1, 'https://ror.org/02ttmd632 Polessky State University Палескі дзяржаўны універсітэт Полесский государственный университет'),
(25160, 'https://ror.org/02d8ecr17', 'en', 1, 'https://ror.org/02d8ecr17 Vitebsk State Medical University Віцебскі дзяржаўны медыцынскі ўнівэрсітэт'),
(25161, 'https://ror.org/02ephqy68', 'en', 1, 'https://ror.org/02ephqy68 Don State Agrarian University Донской государственный аграрный университет'),
(25162, 'https://ror.org/04bn3r984', 'en', 1, 'https://ror.org/04bn3r984 Kemerovo State University of Culture and the Arts Кемеровский государственный институт культуры'),
(25163, 'https://ror.org/00q96wx12', 'en', 1, 'https://ror.org/00q96wx12 Vitebsk State Technological University Витебский государственный технологический университет Віцебскі дзяржаўны тэхналагічны ўніверсітэт'),
(25164, 'https://ror.org/0531m2867', 'en', 1, 'https://ror.org/0531m2867 Kemerovo State Agricultural Institute Кемеровский государственный сельскохозяйственный институт'),
(25165, 'https://ror.org/01erfz980', 'en', 1, 'https://ror.org/01erfz980 Donbas State Technical University Донбасский государственный технический университет Донбаський державний технічний університет'),
(25166, 'https://ror.org/05d9x2e07', 'en', 1, 'https://ror.org/05d9x2e07 Academy of Hotel Management and Catering Industry L’école supérieure d’hōtellerie et de gastronomie'),
(25167, 'https://ror.org/04p1p1388', 'en', 1, 'https://ror.org/04p1p1388 Civil Defense Academy Академия гражданской защиты МЧС России'),
(25168, 'https://ror.org/04wjmn281', 'en', 1, 'https://ror.org/04wjmn281 Kemerovo Institute of Food Science and Technology Кемеровский технологический институт пищевой промышленности'),
(25169, 'https://ror.org/01md6nx87', 'en', 1, 'https://ror.org/01md6nx87 Samuel Bogumił Linde College of Modern Languages Wyższa Szkoła Języków Obcych im. Samuela Bogumiła Lindego'),
(25170, 'https://ror.org/02hfhf494', 'en', 1, 'https://ror.org/02hfhf494 Kuzbass State Technical University Кузбасский государственный технический университет'),
(25171, 'https://ror.org/00hb0gy21', 'en', 1, 'https://ror.org/00hb0gy21 Kuzbass Institute of Economics and Law Кузбасский институт экономики и права'),
(25172, 'https://ror.org/01d763831', 'en', 1, 'https://ror.org/01d763831 Siberian State Industrial University Сибирский государственный индустриальный университет'),
(25173, 'https://ror.org/032pkq250', 'en', 1, 'https://ror.org/032pkq250 Admiral Ushakov State Maritime University'),
(25174, 'https://ror.org/034mgds22', 'en', 1, 'https://ror.org/034mgds22 Siberian State University of Water Transport Сибирский государственный университет водного транспорта'),
(25175, 'https://ror.org/041bgnt86', 'no_lang_code', 1, 'https://ror.org/041bgnt86 Bila Tserkva National Agrarian University Білоцерківський національний аграрний університет'),
(25176, 'https://ror.org/02ke44656', 'en', 1, 'https://ror.org/02ke44656 Collegium Da Vinci'),
(25177, 'https://ror.org/04ck9y280', 'en', 1, 'https://ror.org/04ck9y280 Poznan University of Social Sciences Wyższa Szkoła Umiejętności Społecznych'),
(25178, 'https://ror.org/01zvpbb37', 'pl', 1, 'https://ror.org/01zvpbb37 Wyższa Szkoła Zarządzania i Bankowości w Poznaniu'),
(25179, 'https://ror.org/039wqxn34', 'en', 1, 'https://ror.org/039wqxn34 Cherkasy Institute of Fire Safety named after Chornobyl Heroes of National University of Civil Defence of Ukraine'),
(25180, 'https://ror.org/00d167n54', 'en', 1, 'https://ror.org/00d167n54 Novosibirsk State Medical University Новосибирский государственный медицинский университет'),
(25181, 'https://ror.org/01m54ds80', 'en', 1, 'https://ror.org/01m54ds80 Cherkasy State Technological University Черкаський державний технологічний університет'),
(25182, 'https://ror.org/01hgeey64', 'en', 1, 'https://ror.org/01hgeey64 Novosibirsk State Agricultural University Новосибирский государственный аграрный университет'),
(25183, 'https://ror.org/05wsqqr12', 'en', 1, 'https://ror.org/05wsqqr12 Novosibirsk State University of Architecture and Civil Engineering Новосибирский государственный архитектурно-строительный университет'),
(25184, 'https://ror.org/00k0bzz46', 'en', 1, 'https://ror.org/00k0bzz46 Far-Eastern Academy of Public Service Дальневосточная академия государственной службы'),
(25185, 'https://ror.org/000nj1063', 'en', 1, 'https://ror.org/000nj1063 Akademia Humanistyczna im. Aleksandra Gieysztora w Pułtusku Pułtusk Academy of Humanities'),
(25186, 'https://ror.org/05m7h6793', 'en', 1, 'https://ror.org/05m7h6793 Academy of Music, Dance and Fine Arts Академия за музикални танци и изобразителни изкуства'),
(25187, 'https://ror.org/03x2fyc79', 'no_lang_code', 1, 'https://ror.org/03x2fyc79 Novosibirsk State Pedagogical University Новосибирский государственный педагогический университет'),
(25188, 'https://ror.org/00nnwpb90', 'no_lang_code', 1, 'https://ror.org/00nnwpb90 Novosibirsk Humanitarian Institute Новосибирский гуманитарный институт'),
(25189, 'https://ror.org/03v63wq09', 'en', 1, 'https://ror.org/03v63wq09 Novosibirsk Institute of Economy, Psychology and Law Новосибирский Институт Экономики Психологии и Права'),
(25190, 'https://ror.org/02tt49y26', 'en', 1, 'https://ror.org/02tt49y26 Far Eastern State Transport University'),
(25191, 'https://ror.org/052qf7p09', 'en', 1, 'https://ror.org/052qf7p09 Far Eastern Law Institute of Ministry of Internal Affairs of Russia ДАЛЬНЕВОСТОЧНЫЙ ЮРИДИЧЕСКИЙ ИНСТИТУТ МИНИСТЕРСТВА ВНУТРЕННИХ ДЕЛ РОССИЙСКОЙ ФЕДЕРАЦИИ'),
(25192, 'https://ror.org/034jwk961', 'pl', 1, 'https://ror.org/034jwk961 Wyższa Szkoła Wychowania Fizycznego i Turystyki w Białymstoku'),
(25193, 'https://ror.org/0562ytb14', 'en', 1, 'https://ror.org/0562ytb14 Bukovinian State Medical University Буковинский государственный медицинский университет Буковинський державний медичний університет'),
(25194, 'https://ror.org/0091wgk69', 'en', 1, 'https://ror.org/0091wgk69 Khabarovsk State Institute of Arts and Culture Хабаровский государственный институт искусств и культуры'),
(25195, 'https://ror.org/02khw0n64', 'en', 1, 'https://ror.org/02khw0n64 Dniprovsk State Technical University Дніпровський державний технічний університет'),
(25196, 'https://ror.org/05fj5jw51', 'en', 1, 'https://ror.org/05fj5jw51 Vyatka State Agricultural Academy Вятская государственная сельскохозяйственная академия'),
(25197, 'https://ror.org/02g6px103', 'en', 1, 'https://ror.org/02g6px103 Vologda Institute of Law and Economics Вологодский институт права и экономики'),
(25198, 'https://ror.org/01anxqg21', 'en', 1, 'https://ror.org/01anxqg21 Vyatka State University Вятский государственный университет'),
(25199, 'https://ror.org/02v157r64', 'en', 1, 'https://ror.org/02v157r64 Siberian Transport University Сибирский государственный университет путей сообщения'),
(25200, 'https://ror.org/00gz03w45', 'pl', 1, 'https://ror.org/00gz03w45 West Pomeranian Business School in Szczecin Zachodniopomorska Szkoła Biznesu w Szczecinie'),
(25201, 'https://ror.org/02kx91r96', 'pl', 1, 'https://ror.org/02kx91r96 Małopolska Wyższa Szkoła Ekonomiczna'),
(25202, 'https://ror.org/05ykq3c56', 'no_lang_code', 1, 'https://ror.org/05ykq3c56 Alfred Nobel University Университет имени Альфреда Нобеля Університет імені Альфреда Нобеля'),
(25203, 'https://ror.org/03tb4ym49', 'no_lang_code', 1, 'https://ror.org/03tb4ym49 Vjatka Social Economics Institute Вятский социально-экономический институт'),
(25204, 'https://ror.org/04czac457', 'en', 1, 'https://ror.org/04czac457 Siberian Academy of Finance and Banking Сибирская академия финансов и банковского дела'),
(25205, 'https://ror.org/03g1eje15', 'en', 1, 'https://ror.org/03g1eje15 Siberian Independent Institute Сибирский независимый институт'),
(25206, 'https://ror.org/037gcmv13', 'en', 1, 'https://ror.org/037gcmv13 Siberian University of Consumer Cooperatives Сибирский университет потребительской кооперации'),
(25207, 'https://ror.org/04wfkgd43', 'en', 1, 'https://ror.org/04wfkgd43 College of Social and Media Culture Wyższa Szkoła Kultury Społecznej i Medialnej w Toruniu'),
(25208, 'https://ror.org/045wqtv91', 'en', 1, 'https://ror.org/045wqtv91 Kislovodsk Humanitarian and Technical Institute Кисловодский Гуманитарно-Технический Институт'),
(25209, 'https://ror.org/04nnm2t84', 'en', 1, 'https://ror.org/04nnm2t84 Institute of Information Technologies, Economy and Management ИНСТИТУТ ИНФОРМАЦИОННЫХ ТЕХНОЛОГИЙ, ЭКОНОМИКИ И МЕНЕДЖМЕНТА'),
(25210, 'https://ror.org/05fvbwq75', 'en', 1, 'https://ror.org/05fvbwq75 Academy of Fine Arts In Łódź Władysław Strzemiński'),
(25211, 'https://ror.org/035h3f182', 'en', 1, 'https://ror.org/035h3f182 Moscow State Regional Socio-Humanitarian Institute'),
(25212, 'https://ror.org/04z3dv266', 'en', 1, 'https://ror.org/04z3dv266 Kostroma State Agricultural Academy Костромская государственная сельскохозяйственная академия'),
(25213, 'https://ror.org/02rntm597', 'en', 1, 'https://ror.org/02rntm597 Omsk Academy of the Russian Interior Ministry Омская Академия МВД России'),
(25214, 'https://ror.org/041maek06', 'pl', 1, 'https://ror.org/041maek06 Wyższa Szkoła Edukacji Zdrowotnej i Nauk Społecznych w Łodzi'),
(25215, 'https://ror.org/027n8z047', 'en', 1, 'https://ror.org/027n8z047 St. Cyril and St. Methodius University of Veliko Tarnovo Великотърновски университет'),
(25216, 'https://ror.org/006ks2460', 'en', 1, 'https://ror.org/006ks2460 Juraj Dobrila University of Pula Sveučilište Jurja Dobrile u Puli Универзитет Јураја Добриле у Пули'),
(25217, 'https://ror.org/05kfm7k22', 'en', 1, 'https://ror.org/05kfm7k22 Omsk State Agrarian University Омский государственный аграрный университет имени П. А. Столыпина'),
(25218, 'https://ror.org/050bktx08', 'en', 1, 'https://ror.org/050bktx08 Kovrov State Technological Academy named after V A Degtyarev Ковровская государственная технологическая академия'),
(25219, 'https://ror.org/00zqbkp20', 'en', 1, 'https://ror.org/00zqbkp20 Omsk State Institute of Service Омский государственный институт сервиса'),
(25220, 'https://ror.org/010bdvy81', 'en', 1, 'https://ror.org/010bdvy81 Omsk State Pedagogical University Омский государственный педагогический университет'),
(25221, 'https://ror.org/02bnkm316', 'en', 1, 'https://ror.org/02bnkm316 University of Computer Sciences and Skills Wyższa Szkoła Informatyki w Łodzi'),
(25222, 'https://ror.org/02mfskv37', 'en', 1, 'https://ror.org/02mfskv37 Omsk State Transport University Омский государственный университет путей сообщения'),
(25223, 'https://ror.org/01r8s1c93', 'en', 1, 'https://ror.org/01r8s1c93 Siberian State University of Physical Education and Sport Сибирский государственный университет физической культуры и спорта'),
(25224, 'https://ror.org/05swf4h71', 'en', 1, 'https://ror.org/05swf4h71 Siberian Institute of Business and Information Technologies Сибирский институт бизнеса и информационных технологий'),
(25225, 'https://ror.org/033hwa625', 'pl', 1, 'https://ror.org/033hwa625 Wyższa Szkoła Pedagogiczna w Łodzi'),
(25226, 'https://ror.org/038xsq518', 'en', 1, 'https://ror.org/038xsq518 Lviv National Agrarian University Львівський Національний Аграрний Університет'),
(25227, 'https://ror.org/04kv23141', 'en', 1, 'https://ror.org/04kv23141 Institute of Marketing and Social Information Technology Академия маркетинга и социально-информационных технологий'),
(25228, 'https://ror.org/00pajwz74', 'en', 1, 'https://ror.org/00pajwz74 Lodz International Studies Academy Wyższa Szkoła Studiów Międzynarodowych w Łodzi'),
(25229, 'https://ror.org/0465cdj45', 'en', 1, 'https://ror.org/0465cdj45 The Higher School of Art and Design Wyższa Szkoła Sztuki i Projektowania w Łodzi'),
(25230, 'https://ror.org/01jyn4427', 'en', 1, 'https://ror.org/01jyn4427 Cyprus College of Art'),
(25231, 'https://ror.org/04mb01w79', 'en', 1, 'https://ror.org/04mb01w79 Moscow State Regional Institute of Humanities'),
(25232, 'https://ror.org/037r7e845', 'en', 1, 'https://ror.org/037r7e845 Institute of International Law, Economy, Humanitarian Sciences and Management named after K.V. Rossinskogo ИНСТИТУТ МЕЖДУНАРОДНОГО ПРАВА, ЭКОНОМИКИ, ГУМАНИТАРНЫХ НАУК И УПРАВЛЕНИЯ ИМЕНИ К.В. РОССИНСКОГО'),
(25233, 'https://ror.org/044sqta95', 'en', 1, 'https://ror.org/044sqta95 Uczelnia Vistula Vistula University'),
(25234, 'https://ror.org/014hxxb31', 'en', 1, 'https://ror.org/014hxxb31 Oryol State University of Economics and Trade Орловский государственный университет экономики и торговли'),
(25235, 'https://ror.org/017tesn46', 'en', 1, 'https://ror.org/017tesn46 Orel State Agrarian University Орловский сельскохозяйственный институт'),
(25236, 'https://ror.org/01f1ses45', 'en', 1, 'https://ror.org/01f1ses45 Ivano-Frankivsk National Technical University of Oil and Gas Івано-Франківський національний технічний університет нафти і газу'),
(25237, 'https://ror.org/03t7x0f36', 'en', 1, 'https://ror.org/03t7x0f36 Orel State Institute of Arts and Culture Орловский государственный институт культуры'),
(25238, 'https://ror.org/05bp24h68', 'en', 1, 'https://ror.org/05bp24h68 Mediterranean Institute of Management Μεσογειακό Ινστιτούτο Διεύθυνσης'),
(25239, 'https://ror.org/02gnwrw46', 'en', 1, 'https://ror.org/02gnwrw46 Cyprus Institute of Marketing'),
(25240, 'https://ror.org/02w6v9q55', 'en', 1, 'https://ror.org/02w6v9q55 Akademia Pedagogiki Specjalnej im. Marii Grzegorzewskiej Maria Grzegorzewska Academy of Special Education'),
(25241, 'https://ror.org/00cyrce09', 'en', 1, 'https://ror.org/00cyrce09 Akademie Sting Sting Academy'),
(25242, 'https://ror.org/01przwh33', 'en', 1, 'https://ror.org/01przwh33 Akademia Teatralna im. Aleksandra Zelwerowicza w Warszawie Aleksander Zelwerowicz National Academy of Dramatic Art in Warsaw'),
(25243, 'https://ror.org/004s6ct47', 'en', 1, 'https://ror.org/004s6ct47 Orenburg State Agrarian University Оренбургский государственный аграрный университет'),
(25244, 'https://ror.org/05xw54w34', 'cs', 1, 'https://ror.org/05xw54w34 Academia Rerum Civilium - Vysoká Skola Politických a Společenských Věd'),
(25245, 'https://ror.org/05e3sxn28', 'en', 1, 'https://ror.org/05e3sxn28 Orenburg Institute of Economics and Culture Оренбургский институт экономики и культуры'),
(25246, 'https://ror.org/02zry2p95', 'en', 1, 'https://ror.org/02zry2p95 Almamer University'),
(25247, 'https://ror.org/00s1rmw18', 'en', 1, 'https://ror.org/00s1rmw18 Christian Theological Academy in Warsaw Warsaw Chrześcijańska Akademia Teologiczna w Warszawie'),
(25248, 'https://ror.org/010m6ab92', 'en', 1, 'https://ror.org/010m6ab92 Kuzbass State Pedagogical Academy Novokuzneckij Gosudarstvennyj Pedagogičeskij Institut'),
(25249, 'https://ror.org/018kzpw73', 'en', 1, 'https://ror.org/018kzpw73 Krasnodar University of Ministry of Internal Affairs of Russia Краснодарский университет МВД России'),
(25250, 'https://ror.org/05ha0y974', 'pl', 1, 'https://ror.org/05ha0y974 Europejska Akademia Sztuk w Warszawie'),
(25251, 'https://ror.org/02r9h1127', 'en', 1, 'https://ror.org/02r9h1127 Kharkiv State Academy of Culture'),
(25252, 'https://ror.org/03kht9y85', 'en', 1, 'https://ror.org/03kht9y85 Krasnodar Municipal Medical Institute of Higher Nursing Education Краснодарский муниципальный медицинский институт высшего сестринского образования'),
(25253, 'https://ror.org/058jafb94', 'en', 1, 'https://ror.org/058jafb94 Kuban State Agrarian University Кубанский государственный аграрный университет'),
(25254, 'https://ror.org/05e0g3c64', 'en', 1, 'https://ror.org/05e0g3c64 Kuban Institute of International Business and Management'),
(25255, 'https://ror.org/04fh2kz81', 'pl', 1, 'https://ror.org/04fh2kz81 Papieski Wydział Teologiczny w Warszawie Pontifical Faculty of Theology in Warsaw'),
(25256, 'https://ror.org/002jtmt62', 'en', 1, 'https://ror.org/002jtmt62 Business School Ostrava'),
(25257, 'https://ror.org/04ybx1t57', 'en', 1, 'https://ror.org/04ybx1t57 Krasnoyarsk State Academy of Music and Theatre Красноярская государственная академия музыки и театра'),
(25258, 'https://ror.org/05vjhj012', 'pl', 1, 'https://ror.org/05vjhj012 Private Higher School of Social Sciences, Computer Science and Medical Prywatna Wyższa Szkoła Nauk Społecznych, Komputerowych i Medycznych'),
(25259, 'https://ror.org/05p3gfq61', 'en', 1, 'https://ror.org/05p3gfq61 Krasnoyarsk State Agrarian University Красноярский государственный аграрный университет'),
(25260, 'https://ror.org/01q5jse34', 'en', 1, 'https://ror.org/01q5jse34 Krasnoyarsk State Institute of Art Красноярский государственный институт искусств'),
(25261, 'https://ror.org/00nszah81', 'en', 1, 'https://ror.org/00nszah81 Krasnoyarsk State Pedagogical University Красноярский государственный педагогический университет'),
(25262, 'https://ror.org/03djm2720', 'en', 1, 'https://ror.org/03djm2720 Siberian State Technological University Сибирский государственный технологический университет'),
(25263, 'https://ror.org/02wbhea49', 'en', 1, 'https://ror.org/02wbhea49 Academy of Federal Security Guard Service of Russian Federation Академия Федеральной службы охраны Российской Федерации'),
(25264, 'https://ror.org/04ekepb72', 'pl', 1, 'https://ror.org/04ekepb72 Szkoła Wyższa im. Bogdana Jańskiego'),
(25265, 'https://ror.org/02xjmhc17', 'cs', 1, 'https://ror.org/02xjmhc17 Vysoká Skola Logistiky'),
(25266, 'https://ror.org/02375ts60', 'en', 1, 'https://ror.org/02375ts60 New Siberian Institute Новый сибирский институт'),
(25267, 'https://ror.org/02n4s8f32', 'pl', 1, 'https://ror.org/02n4s8f32 Uczelnia Warszawska im. Marii Skłodowskiej-Curie'),
(25268, 'https://ror.org/03pjs2912', 'en', 1, 'https://ror.org/03pjs2912 Warsaw University of Technology Business School'),
(25269, 'https://ror.org/05r50mj29', 'en', 1, 'https://ror.org/05r50mj29 Siberian State Aerospace University Сибирский государственный аэрокосмический университет имени академика М. Ф. Решетнёва'),
(25270, 'https://ror.org/03h67v482', 'en', 1, 'https://ror.org/03h67v482 Orsk Humanitarian Technology Institute Орский гуманитарно-технологический институт'),
(25271, 'https://ror.org/015jqsk41', 'en', 1, 'https://ror.org/015jqsk41 Penza State Agricultural Academy Пензенский государственный аграрный университет'),
(25272, 'https://ror.org/00v8szc63', 'pl', 1, 'https://ror.org/00v8szc63 Warszawska Szkoła Zarządzania - Szkoła Wyższa'),
(25273, 'https://ror.org/01z23y265', 'en', 1, 'https://ror.org/01z23y265 Kharkiv National Agrarian University named after V.V.Dokuchajev Харківський національний аграрний університет ім. В.В. Докучаєва'),
(25274, 'https://ror.org/01473qm81', 'en', 1, 'https://ror.org/01473qm81 Siberian Institute of Business Management and Psychology Сибирский институт бизнеса, управления и психологии'),
(25275, 'https://ror.org/04eck9c32', 'en', 1, 'https://ror.org/04eck9c32 International Art Campus Prague'),
(25276, 'https://ror.org/03dw9f533', 'pl', 1, 'https://ror.org/03dw9f533 Warszawska Wyższa Szkoła Humanistyczna im. Bolesława Prusa'),
(25277, 'https://ror.org/00ecy3w15', 'en', 1, 'https://ror.org/00ecy3w15 Jan Amos Komensky University Univerzita Jana Amose Komenského Praha'),
(25278, 'https://ror.org/042r33k66', 'en', 1, 'https://ror.org/042r33k66 University of Pereslavl Университет города Переславля имени А. К. Айламазяна'),
(25279, 'https://ror.org/02vbq0s06', 'en', 1, 'https://ror.org/02vbq0s06 Siberian Law Institute of Russian Federal Drug Control Service Сибирский юридический институт ФСКН России'),
(25280, 'https://ror.org/03enayd48', 'en', 1, 'https://ror.org/03enayd48 Perm State Agricultural Academy Пермский государственный аграрно-технологический университет'),
(25281, 'https://ror.org/02te2cv05', 'en', 1, 'https://ror.org/02te2cv05 Perm State Pharmaceutical Academy Пермская государственная фармацевтическая академия'),
(25282, 'https://ror.org/04srpf911', 'en', 1, 'https://ror.org/04srpf911 Kharkiv Petro Vasylenko National Technical University of Agriculture Харківський національний технічний університет сільського господарства ім. Петра Василенка Харьковский национальный технический университет сельского хозяйства имени Петра Василенко'),
(25283, 'https://ror.org/057db3962', 'pl', 1, 'https://ror.org/057db3962 Wyższa Szkoła Gospodarowania Nieruchomościami'),
(25284, 'https://ror.org/03ckcj843', 'en', 1, 'https://ror.org/03ckcj843 Perm State Institute of Arts and Culture Пермский Государственный Институт Искусства и Культуры'),
(25285, 'https://ror.org/01kbx8t50', 'pl', 1, 'https://ror.org/01kbx8t50 Wyższa Szkoła Handlu i Finansów Międzynarodowych im. Fryderyka Skarbka'),
(25286, 'https://ror.org/00e42hf98', 'en', 1, 'https://ror.org/00e42hf98 Kurgan State Agricultural Academy by T S Maltsev Курганская государственная сельскохозяйственная академия имени Т.С'),
(25287, 'https://ror.org/0097mbe50', 'en', 1, 'https://ror.org/0097mbe50 Kharkiv National University of Construction and Architecture Харківський національний університет будівництва й архітектури'),
(25288, 'https://ror.org/010hy3w58', 'en', 1, 'https://ror.org/010hy3w58 Kharkiv State University of Food Technology and Trade Харківський державний університет харчування та торгівлі Харьковский государственный университет питания и торговли'),
(25289, 'https://ror.org/0375f2x73', 'pl', 1, 'https://ror.org/0375f2x73 Uczelnia Łazarskiego'),
(25290, 'https://ror.org/010x2s304', 'en', 1, 'https://ror.org/010x2s304 Krasnodar State University of Culture and Arts Краснодарский государственный институт культуры'),
(25291, 'https://ror.org/04zbzhb67', 'en', 1, 'https://ror.org/04zbzhb67 Danish National Academy of Music'),
(25292, 'https://ror.org/00a6ywr91', 'en', 1, 'https://ror.org/00a6ywr91 Szkoła Główna Turystyki i Hotelarstwa Vistula Vistula School of Hospitality'),
(25293, 'https://ror.org/00zxz8845', 'en', 1, 'https://ror.org/00zxz8845 National University of Pharmacy Національний фармацевтичний університет');
INSERT INTO `rors` VALUES
(25294, 'https://ror.org/01yyzg640', 'en', 1, 'https://ror.org/01yyzg640 West Ural Institute of Economics and Law Западно-Уральский институт экономики и права'),
(25295, 'https://ror.org/01xhsfb21', 'en', 1, 'https://ror.org/01xhsfb21 Kursk State Agricultural Academy named after Professor II Ivanova Курская государственная сельскохозяйственная академия имени профессора Иванова II'),
(25296, 'https://ror.org/01k5wet88', 'en', 1, 'https://ror.org/01k5wet88 Institute of Theology of Estonian Evangelical Lutheran Church'),
(25297, 'https://ror.org/02wbgfm85', 'en', 1, 'https://ror.org/02wbgfm85 Warsaw School of Information Technology Wyższa Szkoła Informatyki Stosowanej i Zarządzania'),
(25298, 'https://ror.org/05yjqdn82', 'en', 1, 'https://ror.org/05yjqdn82 Kursk State University Курский государственный университет'),
(25299, 'https://ror.org/05bamwv87', 'en', 1, 'https://ror.org/05bamwv87 Ukrainian Engineering Pedagogics Academy Украинская инженерно-педагогическая академия Українська інженерно-педагогічна академія'),
(25300, 'https://ror.org/04mzk2m46', 'en', 1, 'https://ror.org/04mzk2m46 Kamskij State Institute of Physical Culture Камский государственный институт физической культуры'),
(25301, 'https://ror.org/05grw1m33', 'en', 1, 'https://ror.org/05grw1m33 Yaroslav Mudryi National Law University Національний юридичний університет імені Ярослава Мудрого'),
(25302, 'https://ror.org/01ewram45', 'en', 1, 'https://ror.org/01ewram45 International University of Business and Law Міжнародний університет бізнесу і права'),
(25303, 'https://ror.org/05h831e18', 'en', 1, 'https://ror.org/05h831e18 Kursk Institute of Management, Economics and Busines Курский институт менеджмента, экономики и бизнеса'),
(25304, 'https://ror.org/02p0nzs51', 'pl', 1, 'https://ror.org/02p0nzs51 Wyższa Szkoła Komunikowania i Mediów Społecznych im. Jerzego Giedroycia'),
(25305, 'https://ror.org/05e8bfc57', 'en', 1, 'https://ror.org/05e8bfc57 Regional Open Social Institute Региональный открытый социальный институт'),
(25306, 'https://ror.org/038vzfq40', 'en', 1, 'https://ror.org/038vzfq40 Tuvan State University Тувинский государственный университет'),
(25307, 'https://ror.org/02hb34304', 'en', 1, 'https://ror.org/02hb34304 EuroAcademy Euroakadeemia'),
(25308, 'https://ror.org/00gdqcd57', 'en', 1, 'https://ror.org/00gdqcd57 Lipeck Ecology-Humanitarian Institute Липецкий эколого-гуманитарный институт'),
(25309, 'https://ror.org/02d12kw26', 'en', 1, 'https://ror.org/02d12kw26 Eesti Ettevõtluskõrgkool Mainor Estonian Entrepreneurship University of Applied Sciences'),
(25310, 'https://ror.org/03sx66s94', 'en', 1, 'https://ror.org/03sx66s94 Kõrgem Kunstikool Pallas Tartu Art College'),
(25311, 'https://ror.org/03t43c845', 'pl', 1, 'https://ror.org/03t43c845 Wyższa Szkoła Pedagogiczna Związku Nauczycielstwa Polskiego'),
(25312, 'https://ror.org/05cqf4668', 'en', 1, 'https://ror.org/05cqf4668 Haaga-Helia University of Applied Sciences Haaga-Helia ammattikorkeakoulu'),
(25313, 'https://ror.org/0506j4s84', 'pl', 1, 'https://ror.org/0506j4s84 Wyższa Szkoła Promocji w Warszawie'),
(25314, 'https://ror.org/01sm6nn11', 'en', 1, 'https://ror.org/01sm6nn11 Central Ukrainian National Technical University Центральноукраїнський національний технічний університет'),
(25315, 'https://ror.org/02k14cb26', 'en', 1, 'https://ror.org/02k14cb26 Donbass State Engineering Academy Донбаська державна машинобудівна академія'),
(25316, 'https://ror.org/000rak666', 'en', 1, 'https://ror.org/000rak666 Humak University of Applied Sciences Humanistinen ammattikorkeakoulu'),
(25317, 'https://ror.org/05jv80548', 'en', 1, 'https://ror.org/05jv80548 Kremenchuk Mykhailo Ostrohradskyi National University Кременчугский национальный университет Кременчуцький національний університет імені Михайла Остроградського'),
(25318, 'https://ror.org/005059r08', 'no_lang_code', 1, 'https://ror.org/005059r08 Naberezhnye Chelny State Pedagogical Institute Набережночелнинский государственный педагогический университет'),
(25319, 'https://ror.org/051bwkh16', 'pl', 1, 'https://ror.org/051bwkh16 Wyższa Szkoła Stosunków Międzynarodowych i Amerykanistyki'),
(25320, 'https://ror.org/02pns7e61', 'en', 1, 'https://ror.org/02pns7e61 Magnitogorsk State Conservatory named after M I Glinka Магнитогорская государственная консерватория имени М. И. Глинки'),
(25321, 'https://ror.org/02md2kv66', 'en', 1, 'https://ror.org/02md2kv66 Kryvyi Rih National University Криворізький національний університет'),
(25322, 'https://ror.org/044gnjv68', 'en', 1, 'https://ror.org/044gnjv68 Pyatigorsk State University Пятигорский государственный университет'),
(25323, 'https://ror.org/04dbkth95', 'en', 1, 'https://ror.org/04dbkth95 Academy of Municipal Management Академія муніципального управління'),
(25324, 'https://ror.org/01ky50t09', 'pl', 1, 'https://ror.org/01ky50t09 Uczelnia Techniczno-Handlowa im. Heleny Chodkowskiej'),
(25325, 'https://ror.org/01a4bey28', 'en', 1, 'https://ror.org/01a4bey28 Polish Open University Wyższa Szkoła Zarządzania'),
(25326, 'https://ror.org/05veqwc59', 'en', 1, 'https://ror.org/05veqwc59 Academy of Labour Social Relations and Tourism Академія праці, соціальних відносин і туризму'),
(25327, 'https://ror.org/05xezqk59', 'en', 1, 'https://ror.org/05xezqk59 Andrássy Gyula Budapesti Német Nyelvű Egyetem Andrássy University Budapest'),
(25328, 'https://ror.org/042jp8q52', 'en', 1, 'https://ror.org/042jp8q52 Pskov State Pedagogical Institute Псковский государственный педагогический институт'),
(25329, 'https://ror.org/00r4zhc79', 'no_lang_code', 1, 'https://ror.org/00r4zhc79 Pskov Volny Institute Псковский Вольный институт'),
(25330, 'https://ror.org/04c3c7847', 'en', 1, 'https://ror.org/04c3c7847 Akademia Muzyczna im. Karola Lipińskiego we Wrocławiu Karol Lipiński Academy of Music in Wrocław'),
(25331, 'https://ror.org/01ntwgd63', 'en', 1, 'https://ror.org/01ntwgd63 Nosov Magnitogorsk State Technical University Магнитогорский государственный технический университет'),
(25332, 'https://ror.org/00z6fwj27', 'en', 1, 'https://ror.org/00z6fwj27 Magnitogorsk State University Магнитогорский государственный университет'),
(25333, 'https://ror.org/021hqjd76', 'en', 1, 'https://ror.org/021hqjd76 Dagestan State Medical Academy Дагестанский государственный медицинский университет'),
(25334, 'https://ror.org/005qr1k22', 'no_lang_code', 1, 'https://ror.org/005qr1k22 Bhaktivedanta College Bhaktivedanta Hittudományi Főiskola'),
(25335, 'https://ror.org/02vncvd63', 'en', 1, 'https://ror.org/02vncvd63 Philological School of Higher Education Wyższa Szkoła Filologiczna'),
(25336, 'https://ror.org/00ebesp71', 'en', 1, 'https://ror.org/00ebesp71 Dagestan State Agricultural Academy'),
(25337, 'https://ror.org/00frg6v09', 'en', 1, 'https://ror.org/00frg6v09 Budapest Contemporary Dance Academy Budapest Kortárstánc Főiskola'),
(25338, 'https://ror.org/04wf8g409', 'en', 1, 'https://ror.org/04wf8g409 Pushkin Leningrad State University Ленинградский государственный университет имени А. С. Пушкина'),
(25339, 'https://ror.org/04314q855', 'en', 1, 'https://ror.org/04314q855 Academy of Physiotheray in Wrocław Wyższa Szkoła Fizjoterapii'),
(25340, 'https://ror.org/04k15jp43', 'en', 1, 'https://ror.org/04k15jp43 Russian State University of Tourism and Service Российский государственный университет туризма и сервиса'),
(25341, 'https://ror.org/04qxzae03', 'en', 1, 'https://ror.org/04qxzae03 University of Business in Wrocław Wyższa Szkoła Handlowa we Wrocławiu'),
(25342, 'https://ror.org/02j5fab28', 'en', 1, 'https://ror.org/02j5fab28 Institute of Economics and Management Институт экономики и управления (г. Пятигорск)'),
(25343, 'https://ror.org/00fcxqx79', 'en', 1, 'https://ror.org/00fcxqx79 Budapesti Metropolitan Egyetem University of Applied Science Budapest'),
(25344, 'https://ror.org/03grptj54', 'en', 1, 'https://ror.org/03grptj54 Federal Penitentiary Service Федеральная служба исполнения наказаний'),
(25345, 'https://ror.org/01492me75', 'en', 1, 'https://ror.org/01492me75 University of Management and Administration in Zamosc Wyższa Szkoła Zarządzania i Administracji'),
(25346, 'https://ror.org/03tgn8d86', 'en', 1, 'https://ror.org/03tgn8d86 Dennis Gabor College GABOR DENES FOISKOLA'),
(25347, 'https://ror.org/05q4zgq93', 'en', 1, 'https://ror.org/05q4zgq93 Ryazan State Agrotechnological University Рязанский государственный агротехнологический университет имени П.А.Костычева'),
(25348, 'https://ror.org/00x5je630', 'en', 1, 'https://ror.org/00x5je630 Don State Technical University учреждение высшего образования Донской государственный технический университет'),
(25349, 'https://ror.org/04ew6mz46', 'en', 1, 'https://ror.org/04ew6mz46 Reklamy Institute Кафедра веб дизайна, Институт рекламы'),
(25350, 'https://ror.org/03v3y9g34', 'en', 1, 'https://ror.org/03v3y9g34 International Solomon University Міжнародний Соломонів університет'),
(25351, 'https://ror.org/04yh8vz11', 'ro', 1, 'https://ror.org/04yh8vz11 Universitatea George Bacovia Bacau'),
(25352, 'https://ror.org/0562zzt06', 'en', 1, 'https://ror.org/0562zzt06 Ryazan State University Рязанский государственный университет имени С.А. Есенина'),
(25353, 'https://ror.org/03x3axr33', 'en', 1, 'https://ror.org/03x3axr33 Universitatea "Vasile Alecsandri" din Bacău University of Bacău'),
(25354, 'https://ror.org/028bztp57', 'en', 1, 'https://ror.org/028bztp57 Institute of Modern Technologies and Economy институт современных технологий и экономики'),
(25355, 'https://ror.org/053z1kb20', 'en', 1, 'https://ror.org/053z1kb20 Komsomolsk-on-Amur State Technical University Комсомольский-на-Амуре государственный университет'),
(25356, 'https://ror.org/02376g836', 'en', 1, 'https://ror.org/02376g836 Franz Liszt Academy of Music'),
(25357, 'https://ror.org/03y3an855', 'en', 1, 'https://ror.org/03y3an855 Academia Națională de Informații National Intelligence Academy'),
(25358, 'https://ror.org/03vganq87', 'en', 1, 'https://ror.org/03vganq87 National Academy of Internal Affairs'),
(25359, 'https://ror.org/02zzdhn44', 'en', 1, 'https://ror.org/02zzdhn44 Kyiv Institute of Traditional Medicine'),
(25360, 'https://ror.org/042vq5636', 'en', 1, 'https://ror.org/042vq5636 Krasnoyarsk State Trade and Economic Institute Красноярский государственный торгово-экономический институт'),
(25361, 'https://ror.org/0572trk36', 'ro', 1, 'https://ror.org/0572trk36 Institutul Teologic Baptist din București'),
(25362, 'https://ror.org/019cy2194', 'en', 1, 'https://ror.org/019cy2194 Kyiv International University Київський міжнародний університет'),
(25363, 'https://ror.org/020hbs629', 'en', 1, 'https://ror.org/020hbs629 Kyiv National Linguistic University Киевский национальный лингвистический университет Київський національний лінгвістичний університет'),
(25364, 'https://ror.org/051mkpe32', 'en', 1, 'https://ror.org/051mkpe32 Bioterra University Bucharest Universitatea Bioterra din București'),
(25365, 'https://ror.org/03wxwxe24', 'en', 1, 'https://ror.org/03wxwxe24 Budapest University of Jewish Studies Országos Rabbiképző – Zsidó Egyetem'),
(25366, 'https://ror.org/02k11zt98', 'en', 1, 'https://ror.org/02k11zt98 Daghestan State Pedagogical University Дагестанский государственный педагогический университет'),
(25367, 'https://ror.org/04v071k95', 'en', 1, 'https://ror.org/04v071k95 Dagestan State Technical University Дагестанский государственный технический университет'),
(25368, 'https://ror.org/05d9d4d82', 'en', 1, 'https://ror.org/05d9d4d82 Kyiv University of Law Київський університет права'),
(25369, 'https://ror.org/01pddqk16', 'en', 1, 'https://ror.org/01pddqk16 National University of Theatre and Film I.L. Caragiale Universitatea Naţională de Artă Teatrală şi Cinematografică I.L.Caragiale'),
(25370, 'https://ror.org/019z71x08', 'en', 1, 'https://ror.org/019z71x08 Kijowski Narodowy Uniwersytet Ekonomiczny im. Wadyma Hetmana Kyiv National Economic University named after Vadym Hetman Киевский национальный экономический университет Київський національний економічний університет імені Вадима Гетьмана'),
(25371, 'https://ror.org/03an7d434', 'en', 1, 'https://ror.org/03an7d434 Hyperion University Universitatea Hyperion din Bucureşti'),
(25372, 'https://ror.org/01wr29484', 'en', 1, 'https://ror.org/01wr29484 Rostov State Rakhmaninov Conservatory Ростовская государственная консерватория им. С.В. Рахманинова'),
(25373, 'https://ror.org/02qp15436', 'en', 1, 'https://ror.org/02qp15436 Kijowski Narodowy Uniwersytet Budownictwa i Architektury Kyiv National University of Construction and Architecture Киевский национальный университет строительства и архитектуры Київський національний університет будівництва і архітектури'),
(25374, 'https://ror.org/047183794', 'en', 1, 'https://ror.org/047183794 Moscow State Academy of Physical Education Московская государственная академия физической культуры'),
(25375, 'https://ror.org/046a1ah60', 'en', 1, 'https://ror.org/046a1ah60 Rostov State Medical University Ростовский государственный медицинский университет'),
(25376, 'https://ror.org/04gb4k866', 'en', 1, 'https://ror.org/04gb4k866 Rostov State University of Civil Engineering Ростовский Государственный Строительный Университет'),
(25377, 'https://ror.org/002xnzp34', 'en', 1, 'https://ror.org/002xnzp34 Rostov State Transport University Ростовский государственный университет путей сообщения'),
(25378, 'https://ror.org/052j3fv27', 'en', 1, 'https://ror.org/052j3fv27 Rostov Institute of Law of the Ministry of Internal Affairs of the Russian Federation Ростовский юридический институт Министерства внутренних дел Российской Федерации'),
(25379, 'https://ror.org/05gp0dh20', 'hu', 1, 'https://ror.org/05gp0dh20 Sola Scriptura Teológiai Főiskola'),
(25380, 'https://ror.org/02gv7s365', 'en', 1, 'https://ror.org/02gv7s365 Romanian University of Sciences and Arts "Gheorghe Cristea" Universitatea Româna de Știinte și Arte „Gheorghe Cristea”'),
(25381, 'https://ror.org/01qkq8c66', 'en', 1, 'https://ror.org/01qkq8c66 Spiru Haret University Universitatea Spiru Haret'),
(25382, 'https://ror.org/047wxqh80', 'en', 1, 'https://ror.org/047wxqh80 International Christian University Міжнародний Християнський університет-Київ'),
(25383, 'https://ror.org/020p0cm86', 'en', 1, 'https://ror.org/020p0cm86 Ryazan Institute of Management and Law Рязанский институт управления и права'),
(25384, 'https://ror.org/00m1jj386', 'en', 1, 'https://ror.org/00m1jj386 Rybinsk State Aviation Technological Academy'),
(25385, 'https://ror.org/00va6jd32', 'en', 1, 'https://ror.org/00va6jd32 Academician Yuriy Bugay International Scientific and Technical University Міжнародний науково-технічний університет імені академіка Юрія Бугая'),
(25386, 'https://ror.org/00hn38v76', 'hu', 1, 'https://ror.org/00hn38v76 John Wesley Theological College Wesley János Lelkészképző Főiskola'),
(25387, 'https://ror.org/01ezcv773', 'en', 1, 'https://ror.org/01ezcv773 Interregional Academy of Personnel Management Międzyregionalna Akademia Zarządzania Personelem w Kijowie Межрегиональная академия управления персоналом Міжрегіональна академія управління персоналом'),
(25388, 'https://ror.org/0367qb939', 'en', 1, 'https://ror.org/0367qb939 Titu Maiorescu University Universitatea Titu Maiorescu'),
(25389, 'https://ror.org/03cpgdf16', 'en', 1, 'https://ror.org/03cpgdf16 National Academy of Management Национальная академия управления Національна академія управління'),
(25390, 'https://ror.org/05mzn8a55', 'en', 1, 'https://ror.org/05mzn8a55 King Sigismund Business School'),
(25391, 'https://ror.org/04gbk4749', 'en', 1, 'https://ror.org/04gbk4749 Art and Design University of Cluj-Napoca Művészeti és Design Egyetem Universitatea de Artă și Design'),
(25392, 'https://ror.org/01jm65960', 'en', 1, 'https://ror.org/01jm65960 Academia de Muzică Gheorghe Dima Gheorghe Dima Music Academy'),
(25393, 'https://ror.org/0475cfj29', 'en', 1, 'https://ror.org/0475cfj29 Michurinsk State Agrarian University Мичуринский государственный аграрный университет'),
(25394, 'https://ror.org/02152vc29', 'en', 1, 'https://ror.org/02152vc29 Bogdan Voda University Universitatea „Bogdan Vodă”'),
(25395, 'https://ror.org/02xhk8637', 'en', 1, 'https://ror.org/02xhk8637 International Market Institute Международный институт рынка'),
(25396, 'https://ror.org/00pzf4g66', 'en', 1, 'https://ror.org/00pzf4g66 Academia Navală Mircea cel Bătrân Mircea cel Batran Naval Academy'),
(25397, 'https://ror.org/02d6sp246', 'en', 1, 'https://ror.org/02d6sp246 Karoly Robert Foiskola Károly Róbert University College'),
(25398, 'https://ror.org/04t09e441', 'en', 1, 'https://ror.org/04t09e441 Volga Business Institute'),
(25399, 'https://ror.org/02nh5kj96', 'en', 1, 'https://ror.org/02nh5kj96 National Academy of Fine Art and Architecture Націона́льна акаде́мія образотво́рчого мисте́цтва і архітекту́ри'),
(25400, 'https://ror.org/031p96b92', 'ro', 1, 'https://ror.org/031p96b92 Universitatea Andrei Şaguna'),
(25401, 'https://ror.org/034f9zy16', 'en', 1, 'https://ror.org/034f9zy16 Samara State Institute of Culture Самарский государственный институт культуры'),
(25402, 'https://ror.org/05m9bzv71', 'en', 1, 'https://ror.org/05m9bzv71 Samara State Transport University Самарский государственный университет путей сообщения'),
(25403, 'https://ror.org/0593bd590', 'hu', 1, 'https://ror.org/0593bd590 Szent Atanáz Görögkatolikus Hittudományi Főiskola'),
(25404, 'https://ror.org/02qfzwh20', 'en', 1, 'https://ror.org/02qfzwh20 Samara Humanitarian Academy Самарская гуманитарная академия'),
(25405, 'https://ror.org/01tz4vf62', 'en', 1, 'https://ror.org/01tz4vf62 Kyiv National I. K. Karpenko-Kary Theatre, Cinema and Television University Ки́ївський націона́льний університе́т теа́тру, кіно́ і телеба́чення і́мені Іва́на Ка́рповича Карпе́нка-Ка́рого Киевский национальный университет театра, кино и телевидения имени И. К. Карпенко-Карого'),
(25406, 'https://ror.org/02wf2mv31', 'en', 1, 'https://ror.org/02wf2mv31 Mihail Kogălniceanu University Universitatea Mihail Kogălniceanu'),
(25407, 'https://ror.org/00rb8n537', 'en', 1, 'https://ror.org/00rb8n537 University of Structural Engineering and Architecture Lyuben Karavelov Висше строително училище "Любен Каравелов"'),
(25408, 'https://ror.org/05txf9q94', 'en', 1, 'https://ror.org/05txf9q94 Academy of Economic Security Академия экономической безопасности'),
(25409, 'https://ror.org/02wsba348', 'en', 1, 'https://ror.org/02wsba348 Samara State University of Economics Самарский государственный экономический университет'),
(25410, 'https://ror.org/02z5czc07', 'en', 1, 'https://ror.org/02z5czc07 Samara State Medical University Самарский Государственный Медицинский Университет'),
(25411, 'https://ror.org/03w9qt084', 'en', 1, 'https://ror.org/03w9qt084 Ukrainian-American Concordia University Вісконсинський міжнародний Університет (США) в Україні'),
(25412, 'https://ror.org/024nn8203', 'hu', 1, 'https://ror.org/024nn8203 Adventista Teológiai Fõiskola Hungarian Adventist Theological College'),
(25413, 'https://ror.org/02aayd667', 'en', 1, 'https://ror.org/02aayd667 Emanuel University Universitatea Emanuel'),
(25414, 'https://ror.org/03jnxyq69', 'en', 1, 'https://ror.org/03jnxyq69 Banking University Університет банківської справи'),
(25415, 'https://ror.org/05g7nkm73', 'en', 1, 'https://ror.org/05g7nkm73 Constantin Brâncoveanu University Universitatea Constantin Brâncoveanu'),
(25416, 'https://ror.org/04rdq3258', 'en', 1, 'https://ror.org/04rdq3258 University "Eftimie Murgu" of Reşiţa'),
(25417, 'https://ror.org/044h3my24', 'en', 1, 'https://ror.org/044h3my24 Shadrinsk State Pedagogical Institute Шадринский государственный педагогический университет'),
(25418, 'https://ror.org/00g1zds18', 'en', 1, 'https://ror.org/00g1zds18 Samara State University of Social Sciences and Education Самарский государственный социально-педагогический университет'),
(25419, 'https://ror.org/05t58bx13', 'en', 1, 'https://ror.org/05t58bx13 Samara State Technical University Самарский государственный технический университет'),
(25420, 'https://ror.org/00takby20', 'hu', 1, 'https://ror.org/00takby20 Gál Ferenc Főiskola'),
(25421, 'https://ror.org/01gw7yt49', 'en', 1, 'https://ror.org/01gw7yt49 Samara Institute of Management Самарский институт управления'),
(25422, 'https://ror.org/00tm62b95', 'no_lang_code', 1, 'https://ror.org/00tm62b95 Samara Medical Institute Reaviz Самарский медицинский институт Reavis'),
(25423, 'https://ror.org/00shnh382', 'en', 1, 'https://ror.org/00shnh382 Lugansk National Agrarian University Луганський національний аграрний університет'),
(25424, 'https://ror.org/03js41c71', 'hu', 1, 'https://ror.org/03js41c71 Veszprémi Érseki Hittudományi Fõiskola'),
(25425, 'https://ror.org/01xz43q57', 'en', 1, 'https://ror.org/01xz43q57 Academy of Choral Arts named after V Popov Академия хорового искусства'),
(25426, 'https://ror.org/021b48m83', 'en', 1, 'https://ror.org/021b48m83 Luhansk State University of Internal Affairs named after E.O.Didorenko Луганский государственный университет внутренних дел имени Э. А. Дидоренко Луганський державний університет внутрішніх справ імені Едуарда Дідоренка'),
(25427, 'https://ror.org/04aw3qn55', 'en', 1, 'https://ror.org/04aw3qn55 Latvian Christian Academy Latvijas Kristīgā akadēmija'),
(25428, 'https://ror.org/01gzemj61', 'en', 1, 'https://ror.org/01gzemj61 Liepājas Universitāte University of Liepāja'),
(25429, 'https://ror.org/0461hph98', 'en', 1, 'https://ror.org/0461hph98 Academy of Social and Economic Development Академия управления и производства'),
(25430, 'https://ror.org/05nrxes70', 'en', 1, 'https://ror.org/05nrxes70 Academy of Innovation Management Академия менеджмента инноваций'),
(25431, 'https://ror.org/05kt2wq49', 'en', 1, 'https://ror.org/05kt2wq49 Academy of the Federal Security Service of the Russian Federation Академия федеральной службы безопасности Российской Федерации'),
(25432, 'https://ror.org/0058xhs49', 'en', 1, 'https://ror.org/0058xhs49 Constantin Brâncuși University of Targu Jiu'),
(25433, 'https://ror.org/04jesgk52', 'en', 1, 'https://ror.org/04jesgk52 Baltic Institute of Ecology, Politics and Law Балтийский институт экологии, политики и права'),
(25434, 'https://ror.org/0502vx353', 'en', 1, 'https://ror.org/0502vx353 Lviv National Academy of Arts Lwowska Narodowa Akademia Sztuki Львовская национальная академия искусств Львівська національна академія мистецтв'),
(25435, 'https://ror.org/03r9b8045', 'en', 1, 'https://ror.org/03r9b8045 Academy of the State Fire Service EMERCOM of Russia Академия государственной противопожарной службы МЧС России'),
(25436, 'https://ror.org/05yh8pq36', 'en', 1, 'https://ror.org/05yh8pq36 Baltic Institute of Foreign Languages and International Intercultural Cooperation Балтийский институт иностранных языков и межкультурного сотрудничества'),
(25437, 'https://ror.org/05ykvq143', 'en', 1, 'https://ror.org/05ykvq143 Dimitrie Cantemir University Universitatea Dimitrie Cantemir'),
(25438, 'https://ror.org/00t30sg60', 'en', 1, 'https://ror.org/00t30sg60 Baltic International Institute of Tourism Балтийский международный институт туризма'),
(25439, 'https://ror.org/020ywsx42', 'en', 1, 'https://ror.org/020ywsx42 Moscow Academy of Education Natalia Nesterova Московская академия образования Натальи Нестеровой'),
(25440, 'https://ror.org/044k1rn02', 'en', 1, 'https://ror.org/044k1rn02 Institute of Business and Law Институт бизнеса и права'),
(25441, 'https://ror.org/01mjqan41', 'en', 1, 'https://ror.org/01mjqan41 Moscow Institute of State Management and Law Московский институт государственного управления и права'),
(25442, 'https://ror.org/01hhj0x41', 'en', 1, 'https://ror.org/01hhj0x41 Biznesa augstskola Turība Turība University'),
(25443, 'https://ror.org/034nbgh40', 'en', 1, 'https://ror.org/034nbgh40 Academy of Labour and Social Relations Академия труда и социальных отношений'),
(25444, 'https://ror.org/00dyv5995', 'en', 1, 'https://ror.org/00dyv5995 Institute of Foreign Languages Институт иностранных языков'),
(25445, 'https://ror.org/04cfhgb79', 'en', 1, 'https://ror.org/04cfhgb79 Diplomatic Academy of the Russian Foreign Ministry Дипломатическая академия МИД России'),
(25446, 'https://ror.org/05qr5xz39', 'en', 1, 'https://ror.org/05qr5xz39 Institute of Law and Business Институт бизнеса и права'),
(25447, 'https://ror.org/05tyb9s14', 'en', 1, 'https://ror.org/05tyb9s14 EKA University of Applied Sciences Ekonomikas un kultûras augstskola'),
(25448, 'https://ror.org/019v5rt51', 'en', 1, 'https://ror.org/019v5rt51 Wallenberg Institute of Special Education and Psychology Институт специальной педагогики и психологии'),
(25449, 'https://ror.org/05sfaa624', 'en', 1, 'https://ror.org/05sfaa624 Tibiscus University of Timișoara Universitatea Tibiscus din Timișoara'),
(25450, 'https://ror.org/03mhzg809', 'en', 1, 'https://ror.org/03mhzg809 ISMA University Informācijas Sistēmu Menedžmenta Augstskola Высшая школа менеджмента и информационных систем'),
(25451, 'https://ror.org/01491yv14', 'en', 1, 'https://ror.org/01491yv14 Ukrainian Academy of Printing Украинская академия печати Українська академія друкарства'),
(25452, 'https://ror.org/014zenb08', 'en', 1, 'https://ror.org/014zenb08 Jāzepa Vītola Latvijas Mūzikas akadēmija Jāzeps Vītols Latvian Academy of Music Latvijos Jazepo Vytuolio muzikos akademija Латвийская музыкальная академия имени Язепа Витола'),
(25453, 'https://ror.org/05tt5nr09', 'en', 1, 'https://ror.org/05tt5nr09 Ukrainian Catholic University Ukraiński Uniwersytet Katolicki Украинский католический университет Український католицький університет'),
(25454, 'https://ror.org/02we34e32', 'en', 1, 'https://ror.org/02we34e32 Khakass Institute of Business Хакасский институт бизнеса'),
(25455, 'https://ror.org/05neg3k91', 'en', 1, 'https://ror.org/05neg3k91 State Musical Pedagogical Institute named M.M.Ippolitova-Ivanov Государственный музыкально-педагогический институт имени М. М. Ипполитова-Иванова'),
(25456, 'https://ror.org/00rwcdf75', 'en', 1, 'https://ror.org/00rwcdf75 Narodowy Uniwersytet Leśnictwa Ukrainy Ukrainian National Forestry University Национальный лесотехнический университет Украины Національний лісотехнічний університет України'),
(25457, 'https://ror.org/00g1je163', 'en', 1, 'https://ror.org/00g1je163 Almetyevsk State Oil Institute Альметьевский государственный нефтяной институт'),
(25458, 'https://ror.org/03cc55r59', 'en', 1, 'https://ror.org/03cc55r59 Sveučilišni Centar za Protestantsku Teologiju Matija Vlačić Ilirik University Center for Protestant Theology Matthias Flacius Illyricus'),
(25459, 'https://ror.org/00xxekd18', 'en', 1, 'https://ror.org/00xxekd18 Latvian Maritime Academy Latvijas Jūras Akadēmija'),
(25460, 'https://ror.org/00zabvw84', 'en', 1, 'https://ror.org/00zabvw84 Russian State Specialized Academy of Arts Российская государственная специализированная академия искусств'),
(25461, 'https://ror.org/03f18y477', 'en', 1, 'https://ror.org/03f18y477 Latvian Academy of Culture Latvijas Kulturas akademija'),
(25462, 'https://ror.org/015j3ky41', 'en', 1, 'https://ror.org/015j3ky41 Art Academy of Latvia Latvijas Mākslas akadēmija Latvijos dailės akademija Латвийская Академия художеств'),
(25463, 'https://ror.org/01qxgsr72', 'en', 1, 'https://ror.org/01qxgsr72 Latvijas Nacionālā Aizsardzības Akadēmija National Defence Academy of Latvia'),
(25464, 'https://ror.org/04rep4w03', 'en', 1, 'https://ror.org/04rep4w03 Izmail State University of Humanities Ізмаїльський державний гуманітарний університет'),
(25465, 'https://ror.org/02h9hn661', 'en', 1, 'https://ror.org/02h9hn661 Latvian Academy of Sport Education Latvijas Sporta Pedagoģijas Akadēmija'),
(25466, 'https://ror.org/010btwb70', 'en', 1, 'https://ror.org/010btwb70 Donbas National Academy of Civil Engineering and Architecture Донбаська національна академія будівництва і архітектури'),
(25467, 'https://ror.org/01c3xmp59', 'en', 1, 'https://ror.org/01c3xmp59 State University of Land Use Planning Государственный университет по землеустройству'),
(25468, 'https://ror.org/04fpqn730', 'en', 1, 'https://ror.org/04fpqn730 International Banking Institute Международный банковский институ'),
(25469, 'https://ror.org/04hsm1w74', 'en', 1, 'https://ror.org/04hsm1w74 Moscow Humanitarian Economic Institute Московский гуманитарно-экономический институт'),
(25470, 'https://ror.org/03zjsm671', 'en', 1, 'https://ror.org/03zjsm671 Riga Aeronautical Institute Rīgas Aeronavigācijas institūts'),
(25471, 'https://ror.org/049nmp689', 'en', 1, 'https://ror.org/049nmp689 Nevsky Institute of Management and Design Невский институт управления и дизайна'),
(25472, 'https://ror.org/00vk44673', 'en', 1, 'https://ror.org/00vk44673 Petro Mohyla Black Sea National University Черноморский государственный университет имени Петра Могилы Чорноморський національний університет імені Петра Могили'),
(25473, 'https://ror.org/03zjvmt75', 'en', 1, 'https://ror.org/03zjvmt75 Mykolayiv National Agrarian University Миколаївський національний аграрний університет Николаевский государственный аграрный университет'),
(25474, 'https://ror.org/00qqptx17', 'en', 1, 'https://ror.org/00qqptx17 St. Petersburg Institute of Jewish Studies Петербургский Институт Иудаики'),
(25475, 'https://ror.org/01z75n202', 'en', 1, 'https://ror.org/01z75n202 Institute of Contemporary Education "YurInfoR-MGU"'),
(25476, 'https://ror.org/05jbbr095', 'en', 1, 'https://ror.org/05jbbr095 Higher School of Social Technologies SOCIĀLO TEHNOLOĢIJU AUGSTSKOLA'),
(25477, 'https://ror.org/00skfd876', 'en', 1, 'https://ror.org/00skfd876 International Higher School of Practical Psychology Starptautiskā Praktiskās Psiholoģijas Augstskola'),
(25478, 'https://ror.org/04fbh8j71', 'en', 1, 'https://ror.org/04fbh8j71 Arkhangelsk State Technical University Архангельский государственный технический университет'),
(25479, 'https://ror.org/015va4q78', 'en', 1, 'https://ror.org/015va4q78 Humanitarian Institute of Television and Broadcasting M.A. Litovèina Гуманитарный институт телевидения и радиовещания'),
(25480, 'https://ror.org/005da4z68', 'en', 1, 'https://ror.org/005da4z68 Mykolaiv V.O. Sukhomlynskyi National University Миколаївський національний університет імені В.О. Сухомлинського'),
(25481, 'https://ror.org/05ta60489', 'en', 1, 'https://ror.org/05ta60489 International Institute of Management Arkhangelsk Институт управления'),
(25482, 'https://ror.org/01628w679', 'en', 1, 'https://ror.org/01628w679 Transport and Telecommunication Institute Transporta un Sakaru Institūts Институт Транспорта и Связи'),
(25483, 'https://ror.org/04zjz7s05', 'en', 1, 'https://ror.org/04zjz7s05 Nizhyn Gogol State University Нежинский государственный университет имени Николая Гоголя Ніжинський державний університет імені Миколи Гоголя'),
(25484, 'https://ror.org/021m3j510', 'en', 1, 'https://ror.org/021m3j510 International Academy of Philosophy Internationale Akademie für Philosophie'),
(25485, 'https://ror.org/01m0m3p30', 'en', 1, 'https://ror.org/01m0m3p30 Saint Petersburg State Theatre Arts Academy Санкт-Петербургская государственная академия театрального искусства'),
(25486, 'https://ror.org/01nrsdg41', 'en', 1, 'https://ror.org/01nrsdg41 Saint - Petersburg State Chemical Pharmaceutical Academy Санкт-Петербургская государственная химико-фармацевтическая академия'),
(25487, 'https://ror.org/02pg2aq98', 'en', 1, 'https://ror.org/02pg2aq98 Private University in the Principality of Liechtenstein Private Universität im Fürstentum Liechtenstein'),
(25488, 'https://ror.org/0282prk66', 'en', 1, 'https://ror.org/0282prk66 National University Odesa Law Academy Национальный Университет Одесская юридическая академия Національний університет Одеська юридична академія'),
(25489, 'https://ror.org/047ypym59', 'en', 1, 'https://ror.org/047ypym59 Saint Petersburg Stieglitz State Academy of Art and Design Санкт-Петербургская государственная художественно-промышленная академия имени А.Л. Штиглица'),
(25490, 'https://ror.org/033rfce62', 'en', 1, 'https://ror.org/033rfce62 Uniwersytet Szawelski Šiauliai University Šiaulių universitetas'),
(25491, 'https://ror.org/04kfg7139', 'en', 1, 'https://ror.org/04kfg7139 Saint Petersburg State Conservatory named after N.A. Rimsky-Korsakov Санкт-Петербургская государственная консерватория имени Н. А. Римского-Корсакова'),
(25492, 'https://ror.org/034882z59', 'en', 1, 'https://ror.org/034882z59 Saint Petersburg State Forest Technical University Санкт-Петербургский государственный лесотехнический университет'),
(25493, 'https://ror.org/000tee703', 'en', 1, 'https://ror.org/000tee703 Northeastern State University Северный государственный медицинский университет'),
(25494, 'https://ror.org/01vk4fh57', 'en', 1, 'https://ror.org/01vk4fh57 Armavir State Pedagogical Academy Армавирский государственный педагогический университет'),
(25495, 'https://ror.org/05p8tp630', 'en', 1, 'https://ror.org/05p8tp630 International Business School at Vilnius University Vilniaus universiteto Tarptautinio verslo mokykla'),
(25496, 'https://ror.org/01pjy1768', 'en', 1, 'https://ror.org/01pjy1768 Armavir Linguistic Social Institution Армавирский лингвистический социальный институт'),
(25497, 'https://ror.org/02tj4bx84', 'en', 1, 'https://ror.org/02tj4bx84 Armavir Orthodox-Social Institute Армавирский Православно-Социальный Институт'),
(25498, 'https://ror.org/056ad8q42', 'en', 1, 'https://ror.org/056ad8q42 Kazimieras Simonavičius University Vilniaus Verslo Teisės Akademija'),
(25499, 'https://ror.org/043rtjx90', 'en', 1, 'https://ror.org/043rtjx90 Odessa National A. V. Nezhdanova Academy of Music Одеська національна музична академія імені А. В. Нежданової'),
(25500, 'https://ror.org/048d53c31', 'en', 1, 'https://ror.org/048d53c31 Dagestan State Institute of National Economy Дагестанский государственный институт народного хозяйства'),
(25501, 'https://ror.org/04gpw1v92', 'en', 1, 'https://ror.org/04gpw1v92 European University Европски универзитет'),
(25502, 'https://ror.org/042160f93', 'en', 1, 'https://ror.org/042160f93 Astrakhan State Conservatory Астраханская Государственная Консерватория'),
(25503, 'https://ror.org/01yvmh709', 'en', 1, 'https://ror.org/01yvmh709 Astrakhan State Medical University Астраханский Государственный Медицинский Университет'),
(25504, 'https://ror.org/00ghx1590', 'en', 1, 'https://ror.org/00ghx1590 International Balkan University'),
(25505, 'https://ror.org/05a23ek12', 'en', 1, 'https://ror.org/05a23ek12 Saint Petersburg State Academic Institute of Painting Sculpture and Architecture named after I.E. Repin Санкт-Петербургский государственный академический институт живописи скульптуры и архитектуры имени И.Е. Репин'),
(25506, 'https://ror.org/03xzjyz35', 'en', 1, 'https://ror.org/03xzjyz35 Odessa National Economics University Одесский национальный экономический университет Одеський національний економічний університет'),
(25507, 'https://ror.org/041fmvm66', 'en', 1, 'https://ror.org/041fmvm66 Astrakhan Institute of Civil Engineering Астраханский инженерно-строительный институт'),
(25508, 'https://ror.org/01favr389', 'en', 1, 'https://ror.org/01favr389 Saint Petersburg State University of Architecture and Civil Engineering Санкт-Петербургский государственный архитектурно-строительный университет'),
(25509, 'https://ror.org/022a4es02', 'en', 1, 'https://ror.org/022a4es02 Institute of Economics and Culture Институт экономики и культуры'),
(25510, 'https://ror.org/04e529t38', 'en', 1, 'https://ror.org/04e529t38 Altai State Pedagogical University Алтайская государственная педагогическая академия'),
(25511, 'https://ror.org/016ahab87', 'en', 1, 'https://ror.org/016ahab87 Alecu Russo State University of Bălți Universitatea de Stat Alecu Russo din Bălți Бельцкий государственный университет'),
(25512, 'https://ror.org/0578kb180', 'en', 1, 'https://ror.org/0578kb180 Altai State Medical University Алтайский государственный медицинский университет'),
(25513, 'https://ror.org/02rsxaa93', 'en', 1, 'https://ror.org/02rsxaa93 Saint Petersburg State University of Aerospace and Instrumentation Санкт-Петербургский государственный университет аэрокосмического приборостроения'),
(25514, 'https://ror.org/000p7dd29', 'en', 1, 'https://ror.org/000p7dd29 Trade Co-operative University of Moldova Universitatea Cooperatist-Comerciala din Moldova'),
(25515, 'https://ror.org/007vwze84', 'en', 1, 'https://ror.org/007vwze84 Saint Petersburg State University of Cinema and Television Санкт-Петербургский государственный институт кино и телевидения'),
(25516, 'https://ror.org/02ktptg11', 'en', 1, 'https://ror.org/02ktptg11 Saint Petersburg State University of Culture and Arts ственный университет культуры и искусств'),
(25517, 'https://ror.org/04wd4rg36', 'ro', 1, 'https://ror.org/04wd4rg36 Universitatea de Stat din Tiraspol'),
(25518, 'https://ror.org/02rrx7g18', 'en', 1, 'https://ror.org/02rrx7g18 Barnaul Law Institute of the Russian Interior Ministry Барнаульский юридический институт Министерства внутренних дел Российской Федерации'),
(25519, 'https://ror.org/00nf68x61', 'en', 1, 'https://ror.org/00nf68x61 Belgorod State Agricultural University Белгородский государственный аграрный университет'),
(25520, 'https://ror.org/01pcwfm43', 'en', 1, 'https://ror.org/01pcwfm43 Saint-Petersburg Institute of Economy and Management Санкт-Петербургский институт экономики и управления'),
(25521, 'https://ror.org/05shy2j49', 'en', 1, 'https://ror.org/05shy2j49 Saint-Petersburg Institute of Hospitality Санкт-Петербургский институт гостеприимства'),
(25522, 'https://ror.org/02v40vz65', 'en', 1, 'https://ror.org/02v40vz65 Belgorod State Technological University Белгородский государственный технологический университет им. В. Г. Шухова'),
(25523, 'https://ror.org/02stszq80', 'no_lang_code', 1, 'https://ror.org/02stszq80 Poltava V.G. Korolenko National Pedagogical University Полтавський національний педагогічний університет імені В.Г.Короленка'),
(25524, 'https://ror.org/054jx1t36', 'en', 1, 'https://ror.org/054jx1t36 Free International University of Moldova Universitatea Liberă Internaţională din Moldova'),
(25525, 'https://ror.org/044cm3z84', 'en', 1, 'https://ror.org/044cm3z84 Belgorod National Research University Белгородский государственный университет'),
(25526, 'https://ror.org/02bn3q971', 'en', 1, 'https://ror.org/02bn3q971 Rivne State University of Humanities Рівненський державний гуманітарний університет'),
(25527, 'https://ror.org/032eyg648', 'en', 1, 'https://ror.org/032eyg648 Belgorod Law Institute of the Russian Interior Ministry Белгородский юридический институт Министерства внутренних дел Российской Федерации'),
(25528, 'https://ror.org/05cwvy572', 'en', 1, 'https://ror.org/05cwvy572 Belgorod University of Cooperation, Economics and Law Белгородский университет кооперации, экономики и права'),
(25529, 'https://ror.org/057y1pm64', 'en', 1, 'https://ror.org/057y1pm64 Institute of Art Restoration Институт искусств реставрации'),
(25530, 'https://ror.org/02nfx9606', 'en', 1, 'https://ror.org/02nfx9606 Altai State Humanities Pedagogical University Алтайский государственный гуманитарно-педагогический университет имени В. М. Шукшина'),
(25531, 'https://ror.org/02836fb11', 'en', 1, 'https://ror.org/02836fb11 Univers Moldova'),
(25532, 'https://ror.org/024zspx22', 'en', 1, 'https://ror.org/024zspx22 Comrat State University Komrat Devlet Üniversitesi Universitatea de Stat din Comrat Комратский государственный университет'),
(25533, 'https://ror.org/04zttnq06', 'en', 1, 'https://ror.org/04zttnq06 Nakhimov Naval Academy ЧВВМУ им П.С. Нахимова'),
(25534, 'https://ror.org/041b0hx46', 'en', 1, 'https://ror.org/041b0hx46 Institute of State Administration Институт Государственного Администрирования'),
(25535, 'https://ror.org/01rd41j61', 'en', 1, 'https://ror.org/01rd41j61 Sevastopol National University of Nuclear Energy and Industry Севастопольский национальный университет ядерной энергии и промышленности Севастопольський національний університет ядерної енергії та промисловості'),
(25536, 'https://ror.org/04e1g5k93', 'en', 1, 'https://ror.org/04e1g5k93 Saint Petersburg Institute of Law named after Prince P. Oldenburg Институт права имени Принца П.Г.Ольденбургского'),
(25537, 'https://ror.org/05jcsvh64', 'en', 1, 'https://ror.org/05jcsvh64 Institute Unic Отделение дистанционного обучения'),
(25538, 'https://ror.org/026qjzt27', 'en', 1, 'https://ror.org/026qjzt27 Saint - Petersburg Institute of Management and Law Санкт-Петербургский Институт Управления и Права'),
(25539, 'https://ror.org/029hynv20', 'en', 1, 'https://ror.org/029hynv20 Saint Petersburg Medical Technical Institute Санкт-Петербургский технический институт медицинских'),
(25540, 'https://ror.org/01jy7a082', 'en', 1, 'https://ror.org/01jy7a082 Institute for Languages and Cultures Leo Tolstoy Институт языков и культур имени Льва Толстого'),
(25541, 'https://ror.org/03yyde753', 'en', 1, 'https://ror.org/03yyde753 International Management Institute Saint Petersburg Петербургский международный институт менеджмента'),
(25542, 'https://ror.org/05j7wmw44', 'en', 1, 'https://ror.org/05j7wmw44 Saint Petersburg Social and Economic Institute Санкт-Петербургский социально-экономический институт'),
(25543, 'https://ror.org/01rbdtr54', 'en', 1, 'https://ror.org/01rbdtr54 Faculty for State and European Studies Faculty of Administrative and European Studies Fakultet za državne i evropske studije'),
(25544, 'https://ror.org/01vap5e49', 'en', 1, 'https://ror.org/01vap5e49 Saint Petersburg Institute of International Economic Relations, Economics and Law Институ́т внешнеэкономи́ческих свя́зей, эконо́мики и пра́ва, ИВЭСЭ́П'),
(25545, 'https://ror.org/05p5fjx25', 'en', 1, 'https://ror.org/05p5fjx25 Crimean Agrotechnological University Кримський агротехнологічний університет'),
(25546, 'https://ror.org/01x8ank07', 'en', 1, 'https://ror.org/01x8ank07 Kyiv Slavonic University Київсього славістичного університету');
INSERT INTO `rors` VALUES
(25547, 'https://ror.org/04qfewz28', 'en', 1, 'https://ror.org/04qfewz28 Crimea State Medical University named after S. I. Georgievsky Кримський державний медичний університет ім. С. І. Георгієвського Кры́мский Госуда́рственный Медици́нский Университе́т и́мени С. И. Гео́ргиевского'),
(25548, 'https://ror.org/00pz8ca62', 'en', 1, 'https://ror.org/00pz8ca62 University of Donja Gorica Univerzitet Donja Gorica Универзитет Доња Горица'),
(25549, 'https://ror.org/05x21mt76', 'en', 1, 'https://ror.org/05x21mt76 Amur State Medical Academy Амурская Государственная Медицинская Академия'),
(25550, 'https://ror.org/051czz811', 'en', 1, 'https://ror.org/051czz811 National Academy of Environmental and Resort Construction Національна академія природоохоронного і курортного будівництва'),
(25551, 'https://ror.org/03fws8b96', 'en', 1, 'https://ror.org/03fws8b96 Amur State University Амурский государственный университет'),
(25552, 'https://ror.org/01w60n236', 'en', 1, 'https://ror.org/01w60n236 Sumy State University Сумский государственный университет Сумський державний університет'),
(25553, 'https://ror.org/00tfv9y59', 'en', 1, 'https://ror.org/00tfv9y59 Ukrainian Academy of Banking of the National Bank of Ukraine країнська академія банківської справи НБУ'),
(25554, 'https://ror.org/041990296', 'en', 1, 'https://ror.org/041990296 Bratsk State University Братский государственный университет'),
(25555, 'https://ror.org/045hmbf04', 'en', 1, 'https://ror.org/045hmbf04 Ternopil Ivan Pului National Technical University Тернопільський національний технічний університет імені Івана Пулюя'),
(25556, 'https://ror.org/02j98rq95', 'en', 1, 'https://ror.org/02j98rq95 Ternopil Volodymyr Hnatiuk National Pedagogical University Тернопольский национальный педагогический университет имени Владимира Гнатюка Тернопільський національний педагогічний університет імені Володимира Гнатюка'),
(25557, 'https://ror.org/04z4g6e62', 'en', 1, 'https://ror.org/04z4g6e62 Pavlo Tychyna Uman State Pedagogical University Уманский государственный педагогический университет имени Павла Тычины Уманський державний педагогічний університет імені Павла Тичини'),
(25558, 'https://ror.org/022ktzz27', 'en', 1, 'https://ror.org/022ktzz27 Uman National University of Horticulture Уманський національний університет садівництва'),
(25559, 'https://ror.org/05vs2an33', 'en', 1, 'https://ror.org/05vs2an33 Bryansk State Engineering and Technological Academy Брянская государственная инженерно-технологическая академия'),
(25560, 'https://ror.org/05kknm922', 'en', 1, 'https://ror.org/05kknm922 Bryansk State Technical University Брянский государственный технический университет'),
(25561, 'https://ror.org/0115qty58', 'en', 1, 'https://ror.org/0115qty58 St. Petersburg University of the Ministry of Internal Affairs of Russia Санкт-Петербургский университет МВД России'),
(25562, 'https://ror.org/0266qh788', 'en', 1, 'https://ror.org/0266qh788 North-West Institute of Management Северо-Западный институт управления'),
(25563, 'https://ror.org/00xf20k05', 'en', 1, 'https://ror.org/00xf20k05 Institute of Natural Sciences and Ecology Институт естественных наук и экологии'),
(25564, 'https://ror.org/00nagev26', 'en', 1, 'https://ror.org/00nagev26 Vinnytsia National Technical University Winnicki Narodowy Uniwersytet Techniczny Вінницький національний технічний університет'),
(25565, 'https://ror.org/006sv2266', 'en', 1, 'https://ror.org/006sv2266 Classic Private University Класичний приватний університет'),
(25566, 'https://ror.org/0438jm029', 'en', 1, 'https://ror.org/0438jm029 Northwest Open Technical University Северо-Западный открытый технический университет'),
(25567, 'https://ror.org/0525x3k72', 'en', 1, 'https://ror.org/0525x3k72 Zaporizhzhya State Engineering Academy Інженерний інститут Запорізького національного університету'),
(25568, 'https://ror.org/05tkmsd51', 'en', 1, 'https://ror.org/05tkmsd51 East European Institute of Psychoanalysis Восточно-Европейский Институт Психоанализа'),
(25569, 'https://ror.org/05bemmp19', 'en', 1, 'https://ror.org/05bemmp19 Institute of International Business Education Институт международного бизнес-образования'),
(25570, 'https://ror.org/05vqqhk28', 'en', 1, 'https://ror.org/05vqqhk28 Institute of International Law and Economics named after AS Griboedova Институт международного права и экономики имени А.С. Грибоедова'),
(25571, 'https://ror.org/05rn18y04', 'en', 1, 'https://ror.org/05rn18y04 Institute of Business, Psychology and Management Институт бизнеса, психологии и управления'),
(25572, 'https://ror.org/048rfph76', 'en', 1, 'https://ror.org/048rfph76 Institute of International Trade and Law Институт международной торговли и права'),
(25573, 'https://ror.org/00pbj0581', 'en', 1, 'https://ror.org/00pbj0581 Institute of Management and Business Институт менеджмента и бизнеса'),
(25574, 'https://ror.org/0310pe913', 'en', 1, 'https://ror.org/0310pe913 Institute of World Civilizations'),
(25575, 'https://ror.org/024jjwz66', 'en', 1, 'https://ror.org/024jjwz66 Regional Communal Higher Educational Institution Institute of Entrepreneurship Strategy Київський інститут традиційної медицини'),
(25576, 'https://ror.org/01z1xpx75', 'en', 1, 'https://ror.org/01z1xpx75 Mordovia State Pedagogical Institute named after ME Evseveva Федеральное государственное бюджетное образовательное учреждение высшего профессионального образования "Мордовский государственный педагогический институт имени М. Е. Евсевьева"'),
(25577, 'https://ror.org/04r5xzk86', 'en', 1, 'https://ror.org/04r5xzk86 Zhytomyr Polytechnic State University Житомирський державний технологічний університет'),
(25578, 'https://ror.org/04h8sfe51', 'en', 1, 'https://ror.org/04h8sfe51 Institute of World Economy and Information Институт Мировой экономики и информатизации'),
(25579, 'https://ror.org/044ghaj56', 'no_lang_code', 1, 'https://ror.org/044ghaj56 Zhytomyr Ivan Franko State University Житомирський державний університет імені Івана Франка'),
(25580, 'https://ror.org/017vp5k51', 'en', 1, 'https://ror.org/017vp5k51 Saratov State Academy of Law Саратовская государственная юридическая академия'),
(25581, 'https://ror.org/03r9jhj30', 'en', 1, 'https://ror.org/03r9jhj30 Saratov State Conservatory named after L. V. Sobinov Саратовская государственная консерватория имени Л. В. Собинова'),
(25582, 'https://ror.org/020z26690', 'en', 1, 'https://ror.org/020z26690 Moscow State Linguistic University Московский государственный лингвистический университет'),
(25583, 'https://ror.org/01qafy255', 'en', 1, 'https://ror.org/01qafy255 MF Norwegian School of Theology, Religion and Society'),
(25584, 'https://ror.org/018h19434', 'en', 1, 'https://ror.org/018h19434 Institute of Practical Oriental Studies Институт практического востоковедения'),
(25585, 'https://ror.org/057vdbk84', 'en', 1, 'https://ror.org/057vdbk84 Saratov State Socio-Economic University Саратовский социально-экономический институт РЭУ им. Г. В. Плеханова'),
(25586, 'https://ror.org/04bgrkn57', 'en', 1, 'https://ror.org/04bgrkn57 Moscow State University of Medicine and Dentistry Московский государственный медико-стоматологический университет'),
(25587, 'https://ror.org/05nj64045', 'en', 1, 'https://ror.org/05nj64045 Institute of Practical Psychology and Psychoanalysis Институт практической психологии и психоанализа'),
(25588, 'https://ror.org/00d55g310', 'en', 1, 'https://ror.org/00d55g310 Transbaikal State University Забайкальский государственный университет'),
(25589, 'https://ror.org/00zv9ny53', 'en', 1, 'https://ror.org/00zv9ny53 Moscow Region State University Московский государственный областной университет'),
(25590, 'https://ror.org/05jcsqx24', 'en', 1, 'https://ror.org/05jcsqx24 Saratov State University Саратовский государственный университет имени Н. Г. Чернышевского'),
(25591, 'https://ror.org/049e2jc83', 'en', 1, 'https://ror.org/049e2jc83 Institute of Legal Economics Институт правовой экономики'),
(25592, 'https://ror.org/02qd5e669', 'en', 1, 'https://ror.org/02qd5e669 Moscow State Open University'),
(25593, 'https://ror.org/034f9gk34', 'en', 1, 'https://ror.org/034f9gk34 Institute of Professional Innovations ИНСТИТУТ ПРОФЕССИОНАЛЬНЫХ ИННОВАЦИЙ'),
(25594, 'https://ror.org/020extk17', 'en', 1, 'https://ror.org/020extk17 Institute of Professional Evaluation Институт профессиональной оценки'),
(25595, 'https://ror.org/02rsbkz45', 'en', 1, 'https://ror.org/02rsbkz45 Institute of Psychology and Pedagogy Институт психологии и педагогики'),
(25596, 'https://ror.org/05pvab842', 'en', 1, 'https://ror.org/05pvab842 Institute of Market Economy, Social Policy and Law Институт рыночной экономики, социальной политики и права'),
(25597, 'https://ror.org/052dy9793', 'en', 1, 'https://ror.org/052dy9793 Norges musikkhøgskole Norjan valtiollinen musiikkikorkeakoulu Norwegian Academy of Music'),
(25598, 'https://ror.org/02erjps28', 'en', 1, 'https://ror.org/02erjps28 Moscow Institute of Modern Business Московский институт современного бизнеса'),
(25599, 'https://ror.org/05ksgvj69', 'en', 1, 'https://ror.org/05ksgvj69 Institute of Contemporary Art Институт Современного Искусства'),
(25600, 'https://ror.org/03paz2a60', 'en', 1, 'https://ror.org/03paz2a60 Moscow Polytechnic University Московский государственный машиностроительный университет'),
(25601, 'https://ror.org/04xhj8132', 'en', 1, 'https://ror.org/04xhj8132 Moscow State Technical University of Civil Aviation Московский государственный технический университет гражданской авиации'),
(25602, 'https://ror.org/048yz1t88', 'no_lang_code', 1, 'https://ror.org/048yz1t88 Sergiyev Posad Humanitarian Institute Сергиево-Посадский гуманитарный институт'),
(25603, 'https://ror.org/020frqf17', 'en', 1, 'https://ror.org/020frqf17 Gorky Institute of World Literature Институт мировой литературы имени А. М. Горького РАН'),
(25604, 'https://ror.org/050k36w08', 'en', 1, 'https://ror.org/050k36w08 Tchaikovsky State Institute of Physical Culture Чайковский государственный институт физической культуры'),
(25605, 'https://ror.org/054xjq184', 'en', 1, 'https://ror.org/054xjq184 A. N. Kosygin Moscow State Textile University Московский государственный текстильный университет имени А. Н. Косыгина'),
(25606, 'https://ror.org/03ewvg219', 'en', 1, 'https://ror.org/03ewvg219 International Institute of Hotel Management and Tourism Международный институт гостиничного менеджмента и туризма'),
(25607, 'https://ror.org/00jrqwc52', 'en', 1, 'https://ror.org/00jrqwc52 Shuya State Pedagogical University Шуйский Государственный Педагогический Университет'),
(25608, 'https://ror.org/05q6eez19', 'en', 1, 'https://ror.org/05q6eez19 International Academy of Marketing and Management Международная академия маркетинга и менеджмента'),
(25609, 'https://ror.org/042xdvf13', 'en', 1, 'https://ror.org/042xdvf13 Chuvash State Agricultural Academy Чувашская государственная сельскохозяйственная академия'),
(25610, 'https://ror.org/04gf7nc77', 'en', 1, 'https://ror.org/04gf7nc77 International Law Institute Международный юридический институт'),
(25611, 'https://ror.org/02weq6r62', 'en', 1, 'https://ror.org/02weq6r62 Smolensk State Academy of Physical Culture, Sport and Tourism Смоленская государственная академия физической культуры, спорта и туризма'),
(25612, 'https://ror.org/02e16wz39', 'en', 1, 'https://ror.org/02e16wz39 Moscow State University of Printing Arts Московский государственный университет печати'),
(25613, 'https://ror.org/00x9nm172', 'en', 1, 'https://ror.org/00x9nm172 Chuvash State Pedagogical University Чувашский государственный педагогический университет имени И. Я. Яковлева'),
(25614, 'https://ror.org/02wwnew71', 'en', 1, 'https://ror.org/02wwnew71 Smolensk State Medical University смоленский государственный медицинский университет'),
(25615, 'https://ror.org/034jfs648', 'en', 1, 'https://ror.org/034jfs648 MNEPU Academy Международный Независимый Эколого-Политологический Университет'),
(25616, 'https://ror.org/042mxm271', 'en', 1, 'https://ror.org/042mxm271 Moscow State University of Food Production Московский государственный университет пищевых производств'),
(25617, 'https://ror.org/05b4sem27', 'en', 1, 'https://ror.org/05b4sem27 International Slavic Institute Международный Славянский Институт'),
(25618, 'https://ror.org/02rzsmv54', 'en', 1, 'https://ror.org/02rzsmv54 Smolensk State Institute of Fine Arts Смоленский государственный институт искусств'),
(25619, 'https://ror.org/04v9hhn38', 'en', 1, 'https://ror.org/04v9hhn38 International Academy of Business and Management Международная Академия Бизнеса и Управления'),
(25620, 'https://ror.org/01bkha031', 'en', 1, 'https://ror.org/01bkha031 International University in Moscow Международный университет в Москве'),
(25621, 'https://ror.org/02k6mtm19', 'en', 1, 'https://ror.org/02k6mtm19 Moscow Academy of Economics and Law Московская академия экономики и права'),
(25622, 'https://ror.org/035z20t37', 'en', 1, 'https://ror.org/035z20t37 Chelyabinsk State Institute of Culture Челябинский государственный институт культуры'),
(25623, 'https://ror.org/00v9n6a67', 'en', 1, 'https://ror.org/00v9n6a67 Moscow University of Finance and Law Московский финансово-юридический университет'),
(25624, 'https://ror.org/007a2j788', 'en', 1, 'https://ror.org/007a2j788 Smolensk State Agricultural Academy Смоленская государственная сельскохозяйственная академия'),
(25625, 'https://ror.org/02dn6hy62', 'en', 1, 'https://ror.org/02dn6hy62 Moscow State University of Environmental Engineering Московский государственный университет инженерной экологии'),
(25626, 'https://ror.org/04ez6kn43', 'en', 1, 'https://ror.org/04ez6kn43 Moscow State Academy of Choreography Московская государственная академия хореографии'),
(25627, 'https://ror.org/0095v1k44', 'en', 1, 'https://ror.org/0095v1k44 Chelyabinsk State Agroengineering Academy Южно-Ура́льский госуда́рственный агра́рный университе́т'),
(25628, 'https://ror.org/05n436p02', 'en', 1, 'https://ror.org/05n436p02 South Ural State Humanitarian Pedagogical University Челябинский государственный педагогический университет'),
(25629, 'https://ror.org/014yxjm16', 'en', 1, 'https://ror.org/014yxjm16 Moscow State Academy of Water Transport Московская государственная академия водного транспорта'),
(25630, 'https://ror.org/0211wgq19', 'en', 1, 'https://ror.org/0211wgq19 Tver State Agricultural Academy Тверской государственный медицинский университет'),
(25631, 'https://ror.org/02gqmg750', 'en', 1, 'https://ror.org/02gqmg750 State Classical Academy named after Maimonides Государственная классическая академия имени Маймонида'),
(25632, 'https://ror.org/04vk90r05', 'en', 1, 'https://ror.org/04vk90r05 Sochi Institute of Economics and Information Technology Сочинский Институт Экономики И Информационных Технологий'),
(25633, 'https://ror.org/02dbzr904', 'no_lang_code', 1, 'https://ror.org/02dbzr904 Solikamsk State Pedagogical Institute'),
(25634, 'https://ror.org/05vkeks90', 'en', 1, 'https://ror.org/05vkeks90 Moscow Conservatory Московская государственная консерватория им. П. И. Чайковского'),
(25635, 'https://ror.org/05q6gjh32', 'en', 1, 'https://ror.org/05q6gjh32 North Caucasian Social Institute Северо-Кавказский социальный институт'),
(25636, 'https://ror.org/05v4ecv43', 'en', 1, 'https://ror.org/05v4ecv43 Tver Institute of Ecology and Law Тверской институт экологии и права'),
(25637, 'https://ror.org/009bn4527', 'en', 1, 'https://ror.org/009bn4527 Moscow International Higher Business School Московская международная высшая школа бизнеса'),
(25638, 'https://ror.org/01y6vee45', 'en', 1, 'https://ror.org/01y6vee45 Chelyabinsk Institute of Economics and Law named after M.V.Ladoshin Челябинский институт экономики и права имени M.V.Ladoshin'),
(25639, 'https://ror.org/05pabrc30', 'en', 1, 'https://ror.org/05pabrc30 Stavropol Finance and Economics Institute'),
(25640, 'https://ror.org/02ne6gz21', 'en', 1, 'https://ror.org/02ne6gz21 Stavropol State Agrarian University Ставропольский государственный аграрный университет'),
(25641, 'https://ror.org/0485fyg31', 'en', 1, 'https://ror.org/0485fyg31 Russian State Agrarian University - Moscow Timiryazev Agricultural Academy Российский государственный аграрный университет — МСХА имени К.А. Тимирязева'),
(25642, 'https://ror.org/00nncg672', 'en', 1, 'https://ror.org/00nncg672 Moscow Financial Legal Institution Московский финансово-правовой институт'),
(25643, 'https://ror.org/0424c1c69', 'en', 1, 'https://ror.org/0424c1c69 Stavropol State University'),
(25644, 'https://ror.org/03k883a47', 'en', 1, 'https://ror.org/03k883a47 Moscow Architectural Institute Московский Архитектурный Институт'),
(25645, 'https://ror.org/03jtxwz22', 'en', 1, 'https://ror.org/03jtxwz22 Stavropol Institute of VD Chursina Ставропольский институт имени В.Д. Чурсина'),
(25646, 'https://ror.org/02whebm50', 'en', 1, 'https://ror.org/02whebm50 Moscow Institute of Economics Politics and Law Московский институт экономики, политики и права'),
(25647, 'https://ror.org/024mdxt30', 'en', 1, 'https://ror.org/024mdxt30 Moscow Institute of Foreign Languages Московский институт иностранных языков'),
(25648, 'https://ror.org/04zn7jb34', 'en', 1, 'https://ror.org/04zn7jb34 Moscow State Institute of International Relations Московский государственный институт международных отношений'),
(25649, 'https://ror.org/03jbv9f50', 'en', 1, 'https://ror.org/03jbv9f50 Institute of Friendship of the People of Caucasus Институт Дружбы народов Кавказа'),
(25650, 'https://ror.org/02hpvf222', 'en', 1, 'https://ror.org/02hpvf222 Moscow Institute of Medical and Social Rehabilitologists Московский институт медико-социальной реабилитологии'),
(25651, 'https://ror.org/04ye9fj05', 'en', 1, 'https://ror.org/04ye9fj05 Surgut State Pedagogical University Сургутский Государственный Педагогический Университет'),
(25652, 'https://ror.org/05bbh2585', 'en', 1, 'https://ror.org/05bbh2585 Ministry of Internal Affairs of the Russian Federation МИНИСТЕРСТВО ВНУТРЕННИХ ДЕЛ РОССИЙСКОЙ ФЕДЕРАЦИИ'),
(25653, 'https://ror.org/05re0wz96', 'en', 1, 'https://ror.org/05re0wz96 Surgut ''Planet'' Institute of World Economics and Business Сургутский институт мировой экономики и бизнеса'),
(25654, 'https://ror.org/01dbbhw70', 'en', 1, 'https://ror.org/01dbbhw70 Bashkir Academy of Public Administration and Management under the Head of the Republic of Bashkortostan Башкирская академия государственной службы и управления при Главе Республики Башкортостан'),
(25655, 'https://ror.org/020m36v47', 'en', 1, 'https://ror.org/020m36v47 South Ural State Institute of Arts named after P.I. Tchaikovsky Южно-Уральский государственный институт искусств им. П.И. Чайковского'),
(25656, 'https://ror.org/00g6nvj03', 'en', 1, 'https://ror.org/00g6nvj03 Institute of State and Law Институт государства и права Российской академии наук'),
(25657, 'https://ror.org/016tn3814', 'en', 1, 'https://ror.org/016tn3814 Komi State Pedagogical Institute Коми государственный педагогический институт'),
(25658, 'https://ror.org/0119xjz67', 'en', 1, 'https://ror.org/0119xjz67 Moscow Banking Institute Московский банковский институт'),
(25659, 'https://ror.org/03bxk9355', 'no_lang_code', 1, 'https://ror.org/03bxk9355 Syktyvkar State University Сыктывкарский государственный университет'),
(25660, 'https://ror.org/02y6ewg31', 'en', 1, 'https://ror.org/02y6ewg31 Bashkir State Agrarian University Башкирский государственный аграрный университет'),
(25661, 'https://ror.org/01q2ngy08', 'en', 1, 'https://ror.org/01q2ngy08 Moscow Institute of Entrepreneurship and Law Московский институт предпринимательства и права'),
(25662, 'https://ror.org/05rdty581', 'en', 1, 'https://ror.org/05rdty581 Taganrog State Pedagogical Institute Таганрогский государственный педагогический институт имени А.П. Чехова'),
(25663, 'https://ror.org/0378r5x41', 'en', 1, 'https://ror.org/0378r5x41 Tambov State Music and Pedagogical Institute named after S.V. Rachmaninov ТАМБОВСКИЙ ГОСУДАРСТВЕННЫЙ МУЗЫКАЛЬНО-ПЕДАГОГИЧЕСКИЙ ИНСТИТУТ ИМ. С.В. РАХМАНИНОВА'),
(25664, 'https://ror.org/03kzg4d82', 'en', 1, 'https://ror.org/03kzg4d82 Chelyabinsk Law institute of Ministry of Internal Affairs of Russia Челябинский Юридический институт МВД России'),
(25665, 'https://ror.org/057qzst49', 'en', 1, 'https://ror.org/057qzst49 Moscow Humanitarian-Technical Academy Московская Гуманитарно-Техническая Академия'),
(25666, 'https://ror.org/02mewhb28', 'en', 1, 'https://ror.org/02mewhb28 Economic and Law Institute in Moscow МОСКОВСКИЙ ЭКОНОМИКО-ПРАВОВОЙ ИНСТИТУТ'),
(25667, 'https://ror.org/05qcjpk30', 'en', 1, 'https://ror.org/05qcjpk30 M. Akmullah Bashkir State Pedagogical University Башкирский государственный педагогический университет имени М. Акмуллы'),
(25668, 'https://ror.org/05qbwsp96', 'en', 1, 'https://ror.org/05qbwsp96 Tyumen State Medical University Тюменский государственный медицинский университет'),
(25669, 'https://ror.org/024xmp423', 'en', 1, 'https://ror.org/024xmp423 Ural State University of Physical Culture'),
(25670, 'https://ror.org/01bhqx716', 'en', 1, 'https://ror.org/01bhqx716 Moscow New Law Institute Московский Новый Юридический Институт'),
(25671, 'https://ror.org/05cc9dz89', 'en', 1, 'https://ror.org/05cc9dz89 Moscow Financial and Economic Institute Московский финансово-экономический институт'),
(25672, 'https://ror.org/03s5p4g14', 'en', 1, 'https://ror.org/03s5p4g14 Agrarian State University of Northern Zauralye Государственный аграрный университет Северного Зауралья'),
(25673, 'https://ror.org/05cy1av38', 'en', 1, 'https://ror.org/05cy1av38 Moscow City University Московский городской университет'),
(25674, 'https://ror.org/01eqf3s47', 'en', 1, 'https://ror.org/01eqf3s47 Tyumen State Academy of World Economics, Management and Law Тюменская государственная академия мировой экономики, управления и права'),
(25675, 'https://ror.org/02zqv0c70', 'en', 1, 'https://ror.org/02zqv0c70 Ufa State Institute of Arts Уфимский государственный институт искусств имени Загира Исмагилова'),
(25676, 'https://ror.org/05vehv290', 'en', 1, 'https://ror.org/05vehv290 University of Tyumen федеральное государственное бюджетное образовательное учреждение высшего образования Тюменский государственный университет'),
(25677, 'https://ror.org/02b4gv182', 'en', 1, 'https://ror.org/02b4gv182 Moscow State Agroengineering University named after V.P. Goryachkin Московский государственный агроинженерный университет имени В. П. Горячкина'),
(25678, 'https://ror.org/04hfxwy37', 'en', 1, 'https://ror.org/04hfxwy37 Tyumen Law Institute of the Russian Interior Ministry Тюменский юридический институт МВД России'),
(25679, 'https://ror.org/015zw2f19', 'en', 1, 'https://ror.org/015zw2f19 Moscow Technical University of Communication and Informatics Московский технический университет связи и информатики'),
(25680, 'https://ror.org/05960ca78', 'en', 1, 'https://ror.org/05960ca78 Russian Academy of Arts Росси́йская акаде́мия худо́жеств'),
(25681, 'https://ror.org/02pppmh23', 'en', 1, 'https://ror.org/02pppmh23 Moscow University Touro Московский Институт ТУРО'),
(25682, 'https://ror.org/058svg759', 'en', 1, 'https://ror.org/058svg759 National Institute of Business НАЦИОНАЛЬНЫЙ ИНСТИТУТ БИЗНЕСА'),
(25683, 'https://ror.org/01x4bmq04', 'en', 1, 'https://ror.org/01x4bmq04 Ekaterinburg State Theatre Institute Екатеринбургский государственный театральный институт'),
(25684, 'https://ror.org/00yctqd52', 'en', 1, 'https://ror.org/00yctqd52 Eastern Economics and Law Humanities Восточная экономико-юридическая гуманитарная академия'),
(25685, 'https://ror.org/014napr78', 'en', 1, 'https://ror.org/014napr78 Moscow State Mining University Московский государственный горный университет'),
(25686, 'https://ror.org/0443ap166', 'en', 1, 'https://ror.org/0443ap166 First Moscow Law Institute Первый московский юридический институт'),
(25687, 'https://ror.org/05mjn5p90', 'en', 1, 'https://ror.org/05mjn5p90 Tobolsk Pedagogical Institute named after D. I. Mendeleev Тобольский педагогический институт им. Д.И. Менделеева'),
(25688, 'https://ror.org/0437a7n31', 'en', 1, 'https://ror.org/0437a7n31 Liberal Arts University Гуманитарный университет'),
(25689, 'https://ror.org/03sew6f18', 'en', 1, 'https://ror.org/03sew6f18 Institute of International Relations Институт международных связей'),
(25690, 'https://ror.org/00e7n9517', 'en', 1, 'https://ror.org/00e7n9517 Pryazovskyi State Technical University Przyazowski Państwowy Uniwersytet Techniczny Приазовский государственный технический университет Приазовський державний технічний університет'),
(25691, 'https://ror.org/01c2d8v48', 'en', 1, 'https://ror.org/01c2d8v48 International Association for Continuing Engineering Education ИНСТИТУТ МЕНЕДЖМЕНТА И РЫНКА'),
(25692, 'https://ror.org/01a233t53', 'en', 1, 'https://ror.org/01a233t53 Moscow State Art and Industry Academy named after SG Stroganov Московская государственная художественно-промышленная академия имени С. Г. Строганова'),
(25693, 'https://ror.org/01ewxsd47', 'en', 1, 'https://ror.org/01ewxsd47 Russian State Vocational Pedagogical University Российский государственный профессионально-педагогический университет'),
(25694, 'https://ror.org/047zrsx48', 'en', 1, 'https://ror.org/047zrsx48 Moscow State Industrial University Московский государственный индустриальный университет'),
(25695, 'https://ror.org/05hq64n33', 'en', 1, 'https://ror.org/05hq64n33 Odessa State University of Internal Affairs Одеський державний університет внутрішніх справ'),
(25696, 'https://ror.org/016p6a998', 'en', 1, 'https://ror.org/016p6a998 Ukhta State Technical University'),
(25697, 'https://ror.org/05dhkbw86', 'en', 1, 'https://ror.org/05dhkbw86 Moscow State Institute of Electronics and Mathematics Московский институт электроники и математики'),
(25698, 'https://ror.org/009e66y24', 'en', 1, 'https://ror.org/009e66y24 Urals Institute of Management Уральский институт управления'),
(25699, 'https://ror.org/05henrr38', 'en', 1, 'https://ror.org/05henrr38 Togliatti Academy of Management'),
(25700, 'https://ror.org/03e2ja558', 'en', 1, 'https://ror.org/03e2ja558 Togliatti State University Тольяттинский государственный университет'),
(25701, 'https://ror.org/057p7pc42', 'en', 1, 'https://ror.org/057p7pc42 Ural State Mining University Уральский государственный горный университет'),
(25702, 'https://ror.org/04wdw1j96', 'en', 1, 'https://ror.org/04wdw1j96 Volzhsky University after V.N. Tatischev Волжский Университет им. В.Н. Татищева'),
(25703, 'https://ror.org/04wewdt41', 'en', 1, 'https://ror.org/04wewdt41 Russian Academy of Advocacy and Notaries Российская академия адвокатуры и нотариата'),
(25704, 'https://ror.org/05g0wzd49', 'en', 1, 'https://ror.org/05g0wzd49 Ural State Law University Уральская государственная юридическая академия'),
(25705, 'https://ror.org/00jzdyg03', 'en', 1, 'https://ror.org/00jzdyg03 Buryat State Academy of Agriculture Бурятский Государственный Университет'),
(25706, 'https://ror.org/04gvm8679', 'en', 1, 'https://ror.org/04gvm8679 Tomsk Institute of Economics and Law Томский экономико-юридический институт'),
(25707, 'https://ror.org/04rfsd440', 'en', 1, 'https://ror.org/04rfsd440 Buryat State University Бурятский государственный университет'),
(25708, 'https://ror.org/025kkqh74', 'en', 1, 'https://ror.org/025kkqh74 Ural State Conservatory named after M.P. Mussorgsky Уральская государственная консерватория имени М. П. Мусоргского'),
(25709, 'https://ror.org/03y0kgv22', 'en', 1, 'https://ror.org/03y0kgv22 Ural State Academy of Veterinary Medicine'),
(25710, 'https://ror.org/001w4ps18', 'en', 1, 'https://ror.org/001w4ps18 Tula State Pedagogical University named after L.N. Tolstoy Тульский государственный педагогический университет имени Л. Н. Толстого'),
(25711, 'https://ror.org/02xddbh84', 'en', 1, 'https://ror.org/02xddbh84 Russian Academy of Entrepreneurship Российская Академия Предпринимательства'),
(25712, 'https://ror.org/02sknrf76', 'en', 1, 'https://ror.org/02sknrf76 East Siberian Academy of Culture and Arts Восточно- Сибирский Государственный Институт Культуры'),
(25713, 'https://ror.org/00cnm9016', 'no_lang_code', 1, 'https://ror.org/00cnm9016 Upper Volga Institute'),
(25714, 'https://ror.org/00jpcnb73', 'en', 1, 'https://ror.org/00jpcnb73 Russian Institute of Theatre Arts Российский институт театрального искусства'),
(25715, 'https://ror.org/01kn8x502', 'en', 1, 'https://ror.org/01kn8x502 Ural State Agrarian University Федеральное государственное бюджетное образовательное учреждение высшего образования Уральский государственный аграрный университет'),
(25716, 'https://ror.org/05ssws785', 'en', 1, 'https://ror.org/05ssws785 Ulyanovsk State Agricultural Academy named after PA Stolypin Ульяновская государственная сельскохозяйственная академия'),
(25717, 'https://ror.org/02rzsax38', 'en', 1, 'https://ror.org/02rzsax38 Ural Institute of Finance and Law УРАЛЬСКИЙ ФИНАНСОВО-ЮРИДИЧЕСКИЙ ИНСТИТУТ'),
(25718, 'https://ror.org/00j0x9b96', 'en', 1, 'https://ror.org/00j0x9b96 Ulyanovsk State Pedagogical University Named After I. Ulyanov Ульяновский государственный педагогический университет имени И. Н. Ульянова'),
(25719, 'https://ror.org/041r0kq89', 'en', 1, 'https://ror.org/041r0kq89 Russian School of Private Law Российская школа частного права'),
(25720, 'https://ror.org/00ksn4909', 'en', 1, 'https://ror.org/00ksn4909 Ulyanovsk State Technical University Ульяновский государственный технический университет'),
(25721, 'https://ror.org/0473ch268', 'en', 1, 'https://ror.org/0473ch268 Russian State University for the Humanities Российский государственный гуманитарный университет'),
(25722, 'https://ror.org/014qdh252', 'en', 1, 'https://ror.org/014qdh252 Ural State Forestry Engineering University Уральский государственный лесотехнический университет'),
(25723, 'https://ror.org/01akgs808', 'en', 1, 'https://ror.org/01akgs808 National Transport University Національний транспортний університет'),
(25724, 'https://ror.org/039r94y94', 'en', 1, 'https://ror.org/039r94y94 Ulyanovsk Higher Civil Aviation School Ульяновское высшее авиационное училище гражданской авиации'),
(25725, 'https://ror.org/02sdhsy65', 'en', 1, 'https://ror.org/02sdhsy65 National Academy for Public Administration under the President of Ukraine Національна академія державного управління'),
(25726, 'https://ror.org/0461yj464', 'en', 1, 'https://ror.org/0461yj464 Ural State University of Railway Transport Уральский государственный университет путей сообщения'),
(25727, 'https://ror.org/04gj47650', 'en', 1, 'https://ror.org/04gj47650 Primorskaya State Academy of Agriculture Приморская Государственная Сельскохозяйственная Академия'),
(25728, 'https://ror.org/057j5m475', 'en', 1, 'https://ror.org/057j5m475 Ural Institute for the Humanities Уральский гуманитарный институт'),
(25729, 'https://ror.org/04hzqbs28', 'en', 1, 'https://ror.org/04hzqbs28 Ural Institute of Business Уральский институт бизнеса'),
(25730, 'https://ror.org/002zjz985', 'en', 1, 'https://ror.org/002zjz985 Ural Institute of Economics, Management and Law Уральский институт экономики, управления и права'),
(25731, 'https://ror.org/05ph49593', 'en', 1, 'https://ror.org/05ph49593 Ural Institute of the Stock Market Уральский Институт Фондового Рынка'),
(25732, 'https://ror.org/02gyp0j55', 'en', 1, 'https://ror.org/02gyp0j55 Ural Institute of Commerce and Law Уральский институт коммерции и права'),
(25733, 'https://ror.org/00fkjwd61', 'en', 1, 'https://ror.org/00fkjwd61 Ural Law Institute Russian Ministry of Internal Affairs Уральский юридический институт'),
(25734, 'https://ror.org/01gktk238', 'en', 1, 'https://ror.org/01gktk238 Velikie Luki State Academy of Physical Culture and Sports Великолукская государственная академия физической культуры и спорта'),
(25735, 'https://ror.org/02kw8bv11', 'en', 1, 'https://ror.org/02kw8bv11 Moscow Regional Socio-Economic Institute Московский региональный социально-экономический институт'),
(25736, 'https://ror.org/05jfsf459', 'en', 1, 'https://ror.org/05jfsf459 Kalmyk State University Калмыцкий государственный университет'),
(25737, 'https://ror.org/02t3bgg27', 'no_lang_code', 1, 'https://ror.org/02t3bgg27 Russian Orthodox Institute Sacred Ioann Bogolslov Российский православный университет святого Иоанна Богослова'),
(25738, 'https://ror.org/05cphcd65', 'en', 1, 'https://ror.org/05cphcd65 Essentuki Institute of Management Business and Law Ессентукский институт управления, бизнеса и права'),
(25739, 'https://ror.org/02cne5608', 'en', 1, 'https://ror.org/02cne5608 Glazov State Pedagogical Institute Named after VG Korolenko ГЛАЗОВСКИЙ ГОСУДАРСТВЕННЫЙ ПЕДАГОГИЧЕСКИЙ ИНСТИТУТ ИМЕНИ В.Г. КОРОЛЕНКО'),
(25740, 'https://ror.org/03evcb553', 'en', 1, 'https://ror.org/03evcb553 Chechen State Pedagogical Institute Чеченский государственный педагогический институт'),
(25741, 'https://ror.org/01b8htz39', 'en', 1, 'https://ror.org/01b8htz39 Poltava University of Economics and Trade Полтавский университет экономики и торговли Полтавський університет економіки і торгівлі'),
(25742, 'https://ror.org/05xqgz809', 'en', 1, 'https://ror.org/05xqgz809 Moscow State Institute of Culture Московский государственный институт культуры [править | править вики-текст]'),
(25743, 'https://ror.org/00y47bm46', 'en', 1, 'https://ror.org/00y47bm46 Crimean State Engineering Pedagogical University Кримський інженерно-педагогічний університет Крымский инженерно-педагогический университет'),
(25744, 'https://ror.org/05qwrn075', 'en', 1, 'https://ror.org/05qwrn075 Irkutsk State Medical University Иркутский государственный медицинский университет'),
(25745, 'https://ror.org/01t4e0y16', 'en', 1, 'https://ror.org/01t4e0y16 North Enterprise Institute Северный институт предпринимательства'),
(25746, 'https://ror.org/03pyzpf78', 'en', 1, 'https://ror.org/03pyzpf78 Ural State Pedagogical University Уральский государственный педагогический университет'),
(25747, 'https://ror.org/02z9b5492', 'en', 1, 'https://ror.org/02z9b5492 Institute of Commerce and Law Институт коммерции и праваWebsiteDirections'),
(25748, 'https://ror.org/0163jwc47', 'en', 1, 'https://ror.org/0163jwc47 Kutafin Moscow State Law University Московский государственный юридический университет имени О. Е. Кутафина'),
(25749, 'https://ror.org/05xp8d869', 'en', 1, 'https://ror.org/05xp8d869 Bibliographical Society of America'),
(25750, 'https://ror.org/01cj4g713', 'no_lang_code', 1, 'https://ror.org/01cj4g713 Ashiwi Awan Museum and Heritage Center'),
(25751, 'https://ror.org/02fney094', 'en', 1, 'https://ror.org/02fney094 Billerica Public Library'),
(25752, 'https://ror.org/01mz8f913', 'en', 1, 'https://ror.org/01mz8f913 Abbe Museum'),
(25753, 'https://ror.org/05mp05a58', 'en', 1, 'https://ror.org/05mp05a58 Billings Farm & Museum'),
(25754, 'https://ror.org/00fqce595', 'en', 1, 'https://ror.org/00fqce595 Birmingham Civil Rights Institute'),
(25755, 'https://ror.org/030y6zg68', 'en', 1, 'https://ror.org/030y6zg68 Birmingham Museum of Art'),
(25756, 'https://ror.org/05czff141', 'en', 1, 'https://ror.org/05czff141 Birmingham Public Library'),
(25757, 'https://ror.org/027rk0w58', 'en', 1, 'https://ror.org/027rk0w58 Heritage Center of the Union League of Philadelphia'),
(25758, 'https://ror.org/053em4g68', 'en', 1, 'https://ror.org/053em4g68 Anderson Public Library'),
(25759, 'https://ror.org/034m42x03', 'en', 1, 'https://ror.org/034m42x03 Abraham Lincoln Presidential Library Foundation'),
(25760, 'https://ror.org/020y85m88', 'en', 1, 'https://ror.org/020y85m88 Andover Historical Society'),
(25761, 'https://ror.org/01j33wn03', 'en', 1, 'https://ror.org/01j33wn03 Andrew County Museum'),
(25762, 'https://ror.org/05xvq6g12', 'en', 1, 'https://ror.org/05xvq6g12 Ackley Heritage Center'),
(25763, 'https://ror.org/02v7gew56', 'en', 1, 'https://ror.org/02v7gew56 Adair County Historical Society'),
(25764, 'https://ror.org/00fkkrz35', 'en', 1, 'https://ror.org/00fkkrz35 Adirondack Museum'),
(25765, 'https://ror.org/03hgqv564', 'en', 1, 'https://ror.org/03hgqv564 Association of African American Museums'),
(25766, 'https://ror.org/02zm6mf23', 'en', 1, 'https://ror.org/02zm6mf23 Bisbee Mining & Historical Museums'),
(25767, 'https://ror.org/02pxamv84', 'en', 1, 'https://ror.org/02pxamv84 Black Mountain College Museum and Arts Center'),
(25768, 'https://ror.org/04v86ht05', 'en', 1, 'https://ror.org/04v86ht05 The Animas Museum'),
(25769, 'https://ror.org/0440wca55', 'en', 1, 'https://ror.org/0440wca55 Bloomington Public Library'),
(25770, 'https://ror.org/031j5va63', 'en', 1, 'https://ror.org/031j5va63 Blount County Government'),
(25771, 'https://ror.org/02gxh9k41', 'en', 1, 'https://ror.org/02gxh9k41 Bullock Museum'),
(25772, 'https://ror.org/033ajm422', 'en', 1, 'https://ror.org/033ajm422 Boot Hill Museum'),
(25773, 'https://ror.org/02xfdng11', 'en', 1, 'https://ror.org/02xfdng11 Boricua College'),
(25774, 'https://ror.org/00dgmek64', 'en', 1, 'https://ror.org/00dgmek64 Anthology Film Archives'),
(25775, 'https://ror.org/00172cb16', 'en', 1, 'https://ror.org/00172cb16 Boston Athenaeum'),
(25776, 'https://ror.org/01khmmn16', 'en', 1, 'https://ror.org/01khmmn16 Boston Latin Academy'),
(25777, 'https://ror.org/00n5y3d41', 'en', 1, 'https://ror.org/00n5y3d41 Boston Public Library'),
(25778, 'https://ror.org/00r6f6s13', 'en', 1, 'https://ror.org/00r6f6s13 Bostonian Society'),
(25779, 'https://ror.org/00mmgjm27', 'en', 1, 'https://ror.org/00mmgjm27 Museum of Boulder'),
(25780, 'https://ror.org/0571tcv43', 'en', 1, 'https://ror.org/0571tcv43 Alabama Department of Archives and History'),
(25781, 'https://ror.org/017wcen79', 'en', 1, 'https://ror.org/017wcen79 Alabama Public Library Service'),
(25782, 'https://ror.org/02vd4ns12', 'en', 1, 'https://ror.org/02vd4ns12 Warren County Public Library'),
(25783, 'https://ror.org/01c2m5m96', 'en', 1, 'https://ror.org/01c2m5m96 Alaska State Library'),
(25784, 'https://ror.org/02wajwy78', 'en', 1, 'https://ror.org/02wajwy78 Brazos Valley Museum of Natural History'),
(25785, 'https://ror.org/001wq6b70', 'en', 1, 'https://ror.org/001wq6b70 Appalachian Mountain Club'),
(25786, 'https://ror.org/02e6yym45', 'en', 1, 'https://ror.org/02e6yym45 Apprend Foundation'),
(25787, 'https://ror.org/03ew6av42', 'en', 1, 'https://ror.org/03ew6av42 Arab Community Center for Economic and Social Services'),
(25788, 'https://ror.org/03k4a4h69', 'en', 1, 'https://ror.org/03k4a4h69 Brigham City Library'),
(25789, 'https://ror.org/045cem663', 'en', 1, 'https://ror.org/045cem663 Albany Institute of History & Art'),
(25790, 'https://ror.org/03ss0k162', 'en', 1, 'https://ror.org/03ss0k162 Aldrich Public Library'),
(25791, 'https://ror.org/031mwx454', 'en', 1, 'https://ror.org/031mwx454 Brigham City Museum-Gallery'),
(25792, 'https://ror.org/04rwm8k47', 'en', 1, 'https://ror.org/04rwm8k47 Bronx County Historical Society'),
(25793, 'https://ror.org/00rpbm450', 'en', 1, 'https://ror.org/00rpbm450 Bronx Museum of the Arts'),
(25794, 'https://ror.org/01j8m3g31', 'en', 1, 'https://ror.org/01j8m3g31 Brookings Public Library'),
(25795, 'https://ror.org/03rhsqw80', 'en', 1, 'https://ror.org/03rhsqw80 Alexandria Museum of Art'),
(25796, 'https://ror.org/0596j8n35', 'en', 1, 'https://ror.org/0596j8n35 Brookline Public Schools'),
(25797, 'https://ror.org/05fpqxw78', 'en', 1, 'https://ror.org/05fpqxw78 Brooklyn Museum'),
(25798, 'https://ror.org/00xngee30', 'en', 1, 'https://ror.org/00xngee30 Alice Lloyd College'),
(25799, 'https://ror.org/023ra7e85', 'en', 1, 'https://ror.org/023ra7e85 Allen Public Library'),
(25800, 'https://ror.org/05tha3a95', 'en', 1, 'https://ror.org/05tha3a95 Allentown Art Museum'),
(25801, 'https://ror.org/0513d6k55', 'en', 1, 'https://ror.org/0513d6k55 Allentown Public Library'),
(25802, 'https://ror.org/04yvwfh57', 'en', 1, 'https://ror.org/04yvwfh57 Alpena Community College'),
(25803, 'https://ror.org/00sftz254', 'en', 1, 'https://ror.org/00sftz254 Archaeological Conservancy'),
(25804, 'https://ror.org/04vfzt688', 'en', 1, 'https://ror.org/04vfzt688 Archaeological Institute of America'),
(25805, 'https://ror.org/01aa0f770', 'en', 1, 'https://ror.org/01aa0f770 Archaeology Society of Staten Island'),
(25806, 'https://ror.org/02vjjqw44', 'en', 1, 'https://ror.org/02vjjqw44 Broward County Library'),
(25807, 'https://ror.org/02vdy9f86', 'en', 1, 'https://ror.org/02vdy9f86 Broward Public Library Foundation'),
(25808, 'https://ror.org/00gpcst68', 'en', 1, 'https://ror.org/00gpcst68 Brunswick-Glynn County Library'),
(25809, 'https://ror.org/030p1h383', 'en', 1, 'https://ror.org/030p1h383 Buckingham Browne & Nichols'),
(25810, 'https://ror.org/01nf6pr96', 'en', 1, 'https://ror.org/01nf6pr96 Buffalo History Museum'),
(25811, 'https://ror.org/04q5kpf78', 'no_lang_code', 1, 'https://ror.org/04q5kpf78 Archimedia Workshop (United States)'),
(25812, 'https://ror.org/01pf23a70', 'en', 1, 'https://ror.org/01pf23a70 YIVO Institute for Jewish Research'),
(25813, 'https://ror.org/02bkc9a40', 'en', 1, 'https://ror.org/02bkc9a40 American Academy of Religion'),
(25814, 'https://ror.org/0351dnm69', 'en', 1, 'https://ror.org/0351dnm69 American Antiquarian Society'),
(25815, 'https://ror.org/04239hb35', 'en', 1, 'https://ror.org/04239hb35 Arena Stage'),
(25816, 'https://ror.org/05fp00270', 'en', 1, 'https://ror.org/05fp00270 American Architectural Foundation'),
(25817, 'https://ror.org/01b5krq60', 'en', 1, 'https://ror.org/01b5krq60 Arhoolie Foundation'),
(25818, 'https://ror.org/02m5g6p84', 'en', 1, 'https://ror.org/02m5g6p84 Arizona Historical Society'),
(25819, 'https://ror.org/00g3q3z36', 'en', 1, 'https://ror.org/00g3q3z36 Arizona State Museum'),
(25820, 'https://ror.org/05eyk3846', 'en', 1, 'https://ror.org/05eyk3846 American Association for State and Local History');
INSERT INTO `rors` VALUES
(25821, 'https://ror.org/04mtaww72', 'en', 1, 'https://ror.org/04mtaww72 Kansas Oil Museum'),
(25822, 'https://ror.org/036d5d592', 'en', 1, 'https://ror.org/036d5d592 Butte-Silver Bow Public Archives'),
(25823, 'https://ror.org/01m5bd961', 'en', 1, 'https://ror.org/01m5bd961 Cabell County Public Library'),
(25824, 'https://ror.org/019jcfv68', 'en', 1, 'https://ror.org/019jcfv68 American Bar Association Fund for Justice and Education'),
(25825, 'https://ror.org/005qzg609', 'en', 1, 'https://ror.org/005qzg609 University of Arkansas Community College at Batesville'),
(25826, 'https://ror.org/000rmbn42', 'en', 1, 'https://ror.org/000rmbn42 American Conservatory Theater'),
(25827, 'https://ror.org/044g8hq51', 'en', 1, 'https://ror.org/044g8hq51 American Council on the Teaching of Foreign Languages'),
(25828, 'https://ror.org/042kvvy70', 'en', 1, 'https://ror.org/042kvvy70 American Councils for International Education'),
(25829, 'https://ror.org/05xq38r07', 'en', 1, 'https://ror.org/05xq38r07 Calcasieu Parish Public Library'),
(25830, 'https://ror.org/03f31yy77', 'en', 1, 'https://ror.org/03f31yy77 California African American Museum'),
(25831, 'https://ror.org/01mmcf932', 'en', 1, 'https://ror.org/01mmcf932 California College of the Arts'),
(25832, 'https://ror.org/00qgfa553', 'en', 1, 'https://ror.org/00qgfa553 California Historical Society'),
(25833, 'https://ror.org/01kqsbg21', 'en', 1, 'https://ror.org/01kqsbg21 American Federation of Arts'),
(25834, 'https://ror.org/024e4df17', 'en', 1, 'https://ror.org/024e4df17 California Institute of the Arts Instituto de Artes de California'),
(25835, 'https://ror.org/01drxfn09', 'en', 1, 'https://ror.org/01drxfn09 American Film Institute'),
(25836, 'https://ror.org/04xgmcn83', 'en', 1, 'https://ror.org/04xgmcn83 American Folklore Society'),
(25837, 'https://ror.org/0496rd968', 'en', 1, 'https://ror.org/0496rd968 California State Railroad Museum'),
(25838, 'https://ror.org/04hks3g45', 'en', 1, 'https://ror.org/04hks3g45 Arkansas Museum of Discovery'),
(25839, 'https://ror.org/01ayynt22', 'en', 1, 'https://ror.org/01ayynt22 Calvert Marine Museum'),
(25840, 'https://ror.org/0118mmr39', 'en', 1, 'https://ror.org/0118mmr39 Institute for American Indian Studies'),
(25841, 'https://ror.org/04n7td094', 'en', 1, 'https://ror.org/04n7td094 Calvin Coolidge Presidential Foundation'),
(25842, 'https://ror.org/022j0r779', 'en', 1, 'https://ror.org/022j0r779 American Institute for Conservation of Historic & Artistic Works'),
(25843, 'https://ror.org/016xtkd46', 'en', 1, 'https://ror.org/016xtkd46 Cambridge Arts Council'),
(25844, 'https://ror.org/03s513359', 'en', 1, 'https://ror.org/03s513359 American Institute for Maghrib Studies'),
(25845, 'https://ror.org/00vsh5s78', 'en', 1, 'https://ror.org/00vsh5s78 Arts and Science Center for Southeast Arkansas'),
(25846, 'https://ror.org/016w0gt88', 'en', 1, 'https://ror.org/016w0gt88 American Institute for Yemeni Studies'),
(25847, 'https://ror.org/00p61n467', 'en', 1, 'https://ror.org/00p61n467 Cambridge Public School'),
(25848, 'https://ror.org/00jenrw75', 'en', 1, 'https://ror.org/00jenrw75 American Jewish Archives'),
(25849, 'https://ror.org/00rgtms46', 'en', 1, 'https://ror.org/00rgtms46 American Jewish Committee'),
(25850, 'https://ror.org/01egc7v56', 'en', 1, 'https://ror.org/01egc7v56 Camden County Historical Society'),
(25851, 'https://ror.org/04829c483', 'en', 1, 'https://ror.org/04829c483 Asian American Asian Research Institute'),
(25852, 'https://ror.org/01qp4wa34', 'en', 1, 'https://ror.org/01qp4wa34 Asian Art Museum'),
(25853, 'https://ror.org/050058296', 'en', 1, 'https://ror.org/050058296 Wake County Government'),
(25854, 'https://ror.org/01feqhy89', 'en', 1, 'https://ror.org/01feqhy89 Campbell Center for Historic Preservation Studies'),
(25855, 'https://ror.org/0276taz87', 'en', 1, 'https://ror.org/0276taz87 Association for Computers and the Humanities'),
(25856, 'https://ror.org/00vd44543', 'en', 1, 'https://ror.org/00vd44543 American Jewish Historical Society'),
(25857, 'https://ror.org/04haawm62', 'en', 1, 'https://ror.org/04haawm62 Association for Core Texts and Courses'),
(25858, 'https://ror.org/05pv2w409', 'en', 1, 'https://ror.org/05pv2w409 American Numismatic Society'),
(25859, 'https://ror.org/00kd3pe49', 'en', 1, 'https://ror.org/00kd3pe49 Association for Documentary Editing'),
(25860, 'https://ror.org/008phw744', 'en', 1, 'https://ror.org/008phw744 Canal Corridor Association'),
(25861, 'https://ror.org/00f2nse09', 'en', 1, 'https://ror.org/00f2nse09 Cape Ann Museum'),
(25862, 'https://ror.org/03r5vbq81', 'en', 1, 'https://ror.org/03r5vbq81 Cape Cod Museum of Natural History'),
(25863, 'https://ror.org/03ya6rh87', 'en', 1, 'https://ror.org/03ya6rh87 American Repertory Theater'),
(25864, 'https://ror.org/05hs3x327', 'en', 1, 'https://ror.org/05hs3x327 American Research Institute in Turkey'),
(25865, 'https://ror.org/00qjr8462', 'en', 1, 'https://ror.org/00qjr8462 Association for Public Art'),
(25866, 'https://ror.org/018av9q43', 'en', 1, 'https://ror.org/018av9q43 Association for Recorded Sound Collections'),
(25867, 'https://ror.org/05mk2v788', 'en', 1, 'https://ror.org/05mk2v788 American Scandinavian Foundation'),
(25868, 'https://ror.org/007y61a09', 'en', 1, 'https://ror.org/007y61a09 Carbon County Museum'),
(25869, 'https://ror.org/0435nmp91', 'en', 1, 'https://ror.org/0435nmp91 Preservation Virginia'),
(25870, 'https://ror.org/04v0eyc78', 'en', 1, 'https://ror.org/04v0eyc78 Carlsbad City Library'),
(25871, 'https://ror.org/00zvja711', 'en', 1, 'https://ror.org/00zvja711 Carlyle House Historic Park'),
(25872, 'https://ror.org/05ftpbf89', 'en', 1, 'https://ror.org/05ftpbf89 Carmel Clay Public Library'),
(25873, 'https://ror.org/02jaw4a32', 'en', 1, 'https://ror.org/02jaw4a32 Carnegie Council for Ethics in International Affairs'),
(25874, 'https://ror.org/05mvafw22', 'en', 1, 'https://ror.org/05mvafw22 Association for the Study of African American Life and History'),
(25875, 'https://ror.org/029bnc353', 'en', 1, 'https://ror.org/029bnc353 American Shakespeare Center'),
(25876, 'https://ror.org/02a7s0q69', 'en', 1, 'https://ror.org/02a7s0q69 American Swedish Historical Museum'),
(25877, 'https://ror.org/0262acg06', 'en', 1, 'https://ror.org/0262acg06 American Textile History Museum'),
(25878, 'https://ror.org/05wx6v148', 'en', 1, 'https://ror.org/05wx6v148 Carnegie Hall'),
(25879, 'https://ror.org/05gechm64', 'en', 1, 'https://ror.org/05gechm64 Carnegie Library of Pittsburgh'),
(25880, 'https://ror.org/026wj5m95', 'en', 1, 'https://ror.org/026wj5m95 South Carolina Association of Public Library Administration'),
(25881, 'https://ror.org/037t55w20', 'en', 1, 'https://ror.org/037t55w20 American Writers Museum'),
(25882, 'https://ror.org/04rhkrb43', 'en', 1, 'https://ror.org/04rhkrb43 Caroline County Public Library'),
(25883, 'https://ror.org/017qmqm77', 'en', 1, 'https://ror.org/017qmqm77 Americas Society'),
(25884, 'https://ror.org/00nsejf36', 'no_lang_code', 1, 'https://ror.org/00nsejf36 Museum of Casa Grande'),
(25885, 'https://ror.org/0282stx37', 'en', 1, 'https://ror.org/0282stx37 Aston Magna Foundation'),
(25886, 'https://ror.org/03rcc6237', 'en', 1, 'https://ror.org/03rcc6237 Athenaeum of Philadelphia'),
(25887, 'https://ror.org/011bzep68', 'en', 1, 'https://ror.org/011bzep68 Catticus Corporation'),
(25888, 'https://ror.org/00nzbtt45', 'en', 1, 'https://ror.org/00nzbtt45 Cazenovia College'),
(25889, 'https://ror.org/03zkv1382', 'en', 1, 'https://ror.org/03zkv1382 Amherst Pelham Regional School District'),
(25890, 'https://ror.org/05k3n5g92', 'en', 1, 'https://ror.org/05k3n5g92 Amistad Research Center'),
(25891, 'https://ror.org/00ap81005', 'en', 1, 'https://ror.org/00ap81005 Amon Carter Museum of American Art'),
(25892, 'https://ror.org/04xg2vm10', 'en', 1, 'https://ror.org/04xg2vm10 Atlanta History Center'),
(25893, 'https://ror.org/044wjg020', 'en', 1, 'https://ror.org/044wjg020 Atlanta-Fulton County Library System'),
(25894, 'https://ror.org/015f81693', 'en', 1, 'https://ror.org/015f81693 Atlantic Council'),
(25895, 'https://ror.org/00afkg479', 'en', 1, 'https://ror.org/00afkg479 Anchorage Museum'),
(25896, 'https://ror.org/034ghyw40', 'en', 1, 'https://ror.org/034ghyw40 Ancient Biblical Manuscript Center'),
(25897, 'https://ror.org/04x7zja85', 'en', 1, 'https://ror.org/04x7zja85 Cedar Rapids Museum of Art'),
(25898, 'https://ror.org/01f3q9353', 'en', 1, 'https://ror.org/01f3q9353 Cedar Rapids Public Library'),
(25899, 'https://ror.org/000cpw023', 'en', 1, 'https://ror.org/000cpw023 Philadelphia History Museum'),
(25900, 'https://ror.org/03w0tq079', 'en', 1, 'https://ror.org/03w0tq079 Colonial Williamsburg Foundation'),
(25901, 'https://ror.org/009ryyp22', 'en', 1, 'https://ror.org/009ryyp22 Auburn City Schools'),
(25902, 'https://ror.org/04swndt45', 'en', 1, 'https://ror.org/04swndt45 History Colorado Center'),
(25903, 'https://ror.org/01c2b7840', 'en', 1, 'https://ror.org/01c2b7840 Center for Anti-Slavery Studies'),
(25904, 'https://ror.org/01f42q428', 'en', 1, 'https://ror.org/01f42q428 Center for Asian American Media'),
(25905, 'https://ror.org/05654m147', 'en', 1, 'https://ror.org/05654m147 Center for Civic Education'),
(25906, 'https://ror.org/016mg6236', 'en', 1, 'https://ror.org/016mg6236 Columbia County Historical Society'),
(25907, 'https://ror.org/04m8vnf64', 'en', 1, 'https://ror.org/04m8vnf64 Historical Society of Washington'),
(25908, 'https://ror.org/01sczx256', 'en', 1, 'https://ror.org/01sczx256 Athens Regional Library System'),
(25909, 'https://ror.org/024w08x16', 'en', 1, 'https://ror.org/024w08x16 Columbia River Maritime Museum'),
(25910, 'https://ror.org/00qkjg138', 'en', 1, 'https://ror.org/00qkjg138 Center for Independent Documentary'),
(25911, 'https://ror.org/04e45e551', 'en', 1, 'https://ror.org/04e45e551 Columbia State Community College'),
(25912, 'https://ror.org/05e2tqm03', 'en', 1, 'https://ror.org/05e2tqm03 Center for Puppetry Arts'),
(25913, 'https://ror.org/00cqxck67', 'en', 1, 'https://ror.org/00cqxck67 Center for Southern Folklore'),
(25914, 'https://ror.org/04cns1483', 'en', 1, 'https://ror.org/04cns1483 Center for the Study of Community Colleges'),
(25915, 'https://ror.org/02srtfa27', 'en', 1, 'https://ror.org/02srtfa27 B&O Railroad Museum'),
(25916, 'https://ror.org/01p48z987', 'en', 1, 'https://ror.org/01p48z987 Columbus Museum of Art'),
(25917, 'https://ror.org/057jstn88', 'en', 1, 'https://ror.org/057jstn88 Center for the Study of the Presidency and Congress'),
(25918, 'https://ror.org/02dhkpg18', 'no_lang_code', 1, 'https://ror.org/02dhkpg18 Center for Visual Communication (United States)'),
(25919, 'https://ror.org/02hgdn135', 'en', 1, 'https://ror.org/02hgdn135 Center for Wooden Boats'),
(25920, 'https://ror.org/045a0wr43', 'en', 1, 'https://ror.org/045a0wr43 Comanche Nation College'),
(25921, 'https://ror.org/045c2a463', 'en', 1, 'https://ror.org/045c2a463 Comanche National Museum and Cultural Center'),
(25922, 'https://ror.org/05vqg2q68', 'en', 1, 'https://ror.org/05vqg2q68 Balboa Art Conservation Center'),
(25923, 'https://ror.org/01qvty264', 'en', 1, 'https://ror.org/01qvty264 Central Agency for Jewish Education'),
(25924, 'https://ror.org/01zmykx63', 'en', 1, 'https://ror.org/01zmykx63 Central Arkansas Library System'),
(25925, 'https://ror.org/01w4nn703', 'en', 1, 'https://ror.org/01w4nn703 Central Community College'),
(25926, 'https://ror.org/01pewms44', 'en', 1, 'https://ror.org/01pewms44 Balch Institute for Ethnic Studies'),
(25927, 'https://ror.org/04n6g3874', 'en', 1, 'https://ror.org/04n6g3874 Central Rappahannock Regional Library'),
(25928, 'https://ror.org/0220wbr36', 'en', 1, 'https://ror.org/0220wbr36 Community College Humanities Association'),
(25929, 'https://ror.org/0113dxj57', 'en', 1, 'https://ror.org/0113dxj57 Baltimore City Life Museums'),
(25930, 'https://ror.org/00d18mr25', 'en', 1, 'https://ror.org/00d18mr25 Chabot College'),
(25931, 'https://ror.org/04cyzbs29', 'en', 1, 'https://ror.org/04cyzbs29 Chaffey College'),
(25932, 'https://ror.org/00qacgj85', 'en', 1, 'https://ror.org/00qacgj85 Chappaqua Central School District'),
(25933, 'https://ror.org/03rb61q14', 'en', 1, 'https://ror.org/03rb61q14 Baltimore Museum of Art'),
(25934, 'https://ror.org/00rfz2d73', 'en', 1, 'https://ror.org/00rfz2d73 Baltimore Museum of Industry'),
(25935, 'https://ror.org/00sx18m30', 'en', 1, 'https://ror.org/00sx18m30 Charles River Museum of Industry & Innovation'),
(25936, 'https://ror.org/0116q3567', 'en', 1, 'https://ror.org/0116q3567 Community Renewal Society'),
(25937, 'https://ror.org/01w9gwk84', 'en', 1, 'https://ror.org/01w9gwk84 Charleston County Public Library'),
(25938, 'https://ror.org/018gqjy33', 'en', 1, 'https://ror.org/018gqjy33 Charleston Museum'),
(25939, 'https://ror.org/011p6p421', 'en', 1, 'https://ror.org/011p6p421 Barrington Area Historical Society'),
(25940, 'https://ror.org/04ncvza93', 'en', 1, 'https://ror.org/04ncvza93 Charlotte-Mecklenburg Historic Landmarks Commission'),
(25941, 'https://ror.org/00t4hq413', 'en', 1, 'https://ror.org/00t4hq413 Barrington Public Library'),
(25942, 'https://ror.org/00k9d9279', 'en', 1, 'https://ror.org/00k9d9279 Bass Museum'),
(25943, 'https://ror.org/01ysajg40', 'en', 1, 'https://ror.org/01ysajg40 Conception Seminary College'),
(25944, 'https://ror.org/04bj64g74', 'en', 1, 'https://ror.org/04bj64g74 Cherokee Heritage Center'),
(25945, 'https://ror.org/013164r34', 'en', 1, 'https://ror.org/013164r34 Chesapeake Bay Maritime Museum'),
(25946, 'https://ror.org/01131jt26', 'en', 1, 'https://ror.org/01131jt26 Chester County Historical Society'),
(25947, 'https://ror.org/05c1a5t19', 'en', 1, 'https://ror.org/05c1a5t19 Chesterfield County Public Library'),
(25948, 'https://ror.org/00wswag56', 'en', 1, 'https://ror.org/00wswag56 Concord Museum'),
(25949, 'https://ror.org/05e1s8h08', 'en', 1, 'https://ror.org/05e1s8h08 Chicago Architecture Foundation'),
(25950, 'https://ror.org/035m5dp49', 'en', 1, 'https://ror.org/035m5dp49 Concord Free Public Library'),
(25951, 'https://ror.org/03qpq3659', 'en', 1, 'https://ror.org/03qpq3659 Peninsula Library System'),
(25952, 'https://ror.org/055tbsg25', 'en', 1, 'https://ror.org/055tbsg25 Bay Area Radio Drama'),
(25953, 'https://ror.org/04y7f2054', 'en', 1, 'https://ror.org/04y7f2054 Concord Public Schools and Concord-Carlisle Regional School District'),
(25954, 'https://ror.org/01jk54m37', 'en', 1, 'https://ror.org/01jk54m37 WTTW'),
(25955, 'https://ror.org/01h2mws14', 'en', 1, 'https://ror.org/01h2mws14 Chicago Film Archives'),
(25956, 'https://ror.org/05d4cjq55', 'en', 1, 'https://ror.org/05d4cjq55 Congress for the New Urbanism'),
(25957, 'https://ror.org/02cm0sv45', 'en', 1, 'https://ror.org/02cm0sv45 Chicago Filmmakers'),
(25958, 'https://ror.org/00jxh3a14', 'en', 1, 'https://ror.org/00jxh3a14 Chicago Humanities Festival'),
(25959, 'https://ror.org/04d1kkx94', 'en', 1, 'https://ror.org/04d1kkx94 Connecticut Historical Society'),
(25960, 'https://ror.org/05tkaf051', 'en', 1, 'https://ror.org/05tkaf051 Beatrice Public Library'),
(25961, 'https://ror.org/00qcawn35', 'en', 1, 'https://ror.org/00qcawn35 Chicago Metro History Education Center'),
(25962, 'https://ror.org/00w19nh03', 'en', 1, 'https://ror.org/00w19nh03 Biblioteca Pública de Chicago Chicago Public Library'),
(25963, 'https://ror.org/04h5pm325', 'en', 1, 'https://ror.org/04h5pm325 Children''s Museum of Manhattan'),
(25964, 'https://ror.org/028bh4q69', 'en', 1, 'https://ror.org/028bh4q69 Bell County Museum'),
(25965, 'https://ror.org/05gya9x53', 'en', 1, 'https://ror.org/05gya9x53 Belleville Public Library'),
(25966, 'https://ror.org/04mfba740', 'en', 1, 'https://ror.org/04mfba740 Connecticut State Library'),
(25967, 'https://ror.org/04zvxqj76', 'en', 1, 'https://ror.org/04zvxqj76 Benicia Public Library'),
(25968, 'https://ror.org/0297ekn51', 'en', 1, 'https://ror.org/0297ekn51 Bergenfield Public Library'),
(25969, 'https://ror.org/003e2cn37', 'en', 1, 'https://ror.org/003e2cn37 Chinese Historical Society of America'),
(25970, 'https://ror.org/05bg8js23', 'en', 1, 'https://ror.org/05bg8js23 Conservation Center for Art and Historic Artifacts'),
(25971, 'https://ror.org/01bndk311', 'en', 1, 'https://ror.org/01bndk311 Berkeley Public Library'),
(25972, 'https://ror.org/00c0mqp91', 'en', 1, 'https://ror.org/00c0mqp91 Christian Business Faculty Association'),
(25973, 'https://ror.org/01aqm4b31', 'en', 1, 'https://ror.org/01aqm4b31 Chrysler Museum of Art'),
(25974, 'https://ror.org/0300ggk05', 'en', 1, 'https://ror.org/0300ggk05 Berkshire Community College'),
(25975, 'https://ror.org/00s8wpn62', 'en', 1, 'https://ror.org/00s8wpn62 Consortium of Universities of the Washington Metropolitan Area'),
(25976, 'https://ror.org/00mzm0g64', 'en', 1, 'https://ror.org/00mzm0g64 Berkshire Museum'),
(25977, 'https://ror.org/04nyq6w82', 'en', 1, 'https://ror.org/04nyq6w82 Constitutional Rights Foundation Chicago'),
(25978, 'https://ror.org/01j11yw06', 'en', 1, 'https://ror.org/01j11yw06 ConVida - Popular Arts of the Americas'),
(25979, 'https://ror.org/052q00364', 'en', 1, 'https://ror.org/052q00364 Berkshire Theatre Group'),
(25980, 'https://ror.org/003ajks37', 'en', 1, 'https://ror.org/003ajks37 Bessemer Historical Society'),
(25981, 'https://ror.org/0415bcp90', 'en', 1, 'https://ror.org/0415bcp90 Churchill Centre'),
(25982, 'https://ror.org/048c5qr58', 'en', 1, 'https://ror.org/048c5qr58 Ciesla Foundation'),
(25983, 'https://ror.org/00gpmpm48', 'en', 1, 'https://ror.org/00gpmpm48 Morton Museum'),
(25984, 'https://ror.org/008hty861', 'en', 1, 'https://ror.org/008hty861 Cincinnati Art Museum'),
(25985, 'https://ror.org/01g5vrq32', 'en', 1, 'https://ror.org/01g5vrq32 Cincinnati Fire Museum'),
(25986, 'https://ror.org/05wnc7373', 'en', 1, 'https://ror.org/05wnc7373 Bethel University'),
(25987, 'https://ror.org/05qxr6b81', 'en', 1, 'https://ror.org/05qxr6b81 Bethlehem Area School District'),
(25988, 'https://ror.org/0431sew76', 'en', 1, 'https://ror.org/0431sew76 Copper Queen Library'),
(25989, 'https://ror.org/05mk17154', 'en', 1, 'https://ror.org/05mk17154 Bettendorf Public Library and Information Center'),
(25990, 'https://ror.org/03f82ns94', 'en', 1, 'https://ror.org/03f82ns94 Tippecanoe County Historical Association'),
(25991, 'https://ror.org/00r8vrd74', 'en', 1, 'https://ror.org/00r8vrd74 Poplar Forest'),
(25992, 'https://ror.org/02ga6x098', 'en', 1, 'https://ror.org/02ga6x098 Fine Arts Museums of San Francisco Museo de Bellas Artes de San Francisco Musée des beaux-arts de san francisco'),
(25993, 'https://ror.org/0015fn754', 'en', 1, 'https://ror.org/0015fn754 Corpus Christi Public Libraries'),
(25994, 'https://ror.org/04nwnby06', 'en', 1, 'https://ror.org/04nwnby06 Bayshore Center at Bivalve'),
(25995, 'https://ror.org/00f7p4623', 'en', 1, 'https://ror.org/00f7p4623 City Lore the New York Center for Urban Culture'),
(25996, 'https://ror.org/02drbka58', 'en', 1, 'https://ror.org/02drbka58 Council of the Southern Mountains'),
(25997, 'https://ror.org/03pa4ph68', 'en', 1, 'https://ror.org/03pa4ph68 City of Greeley Museums'),
(25998, 'https://ror.org/04y1dd550', 'en', 1, 'https://ror.org/04y1dd550 Philadelphia Department of Records'),
(25999, 'https://ror.org/05sqep420', 'en', 1, 'https://ror.org/05sqep420 Claremont Institute'),
(26000, 'https://ror.org/0361pb971', 'en', 1, 'https://ror.org/0361pb971 CuriOdyssey'),
(26001, 'https://ror.org/035tsca78', 'en', 1, 'https://ror.org/035tsca78 Craft Contemporary'),
(26002, 'https://ror.org/047pn4f69', 'en', 1, 'https://ror.org/047pn4f69 San José Public Library'),
(26003, 'https://ror.org/03p1p7q28', 'en', 1, 'https://ror.org/03p1p7q28 Dance Perspectives Foundation'),
(26004, 'https://ror.org/038mrg284', 'en', 1, 'https://ror.org/038mrg284 Dane County Library Service'),
(26005, 'https://ror.org/01t027h44', 'en', 1, 'https://ror.org/01t027h44 Clark County Museum'),
(26006, 'https://ror.org/020jhxv22', 'en', 1, 'https://ror.org/020jhxv22 Clarksburg-Harrison Public Library'),
(26007, 'https://ror.org/00mxaqt17', 'en', 1, 'https://ror.org/00mxaqt17 Cleveland Community College'),
(26008, 'https://ror.org/05r4ftt49', 'en', 1, 'https://ror.org/05r4ftt49 The Dane G. Hansen Museum'),
(26009, 'https://ror.org/05jbnbs36', 'en', 1, 'https://ror.org/05jbnbs36 Danforth at Framingham State University'),
(26010, 'https://ror.org/030ew6d86', 'en', 1, 'https://ror.org/030ew6d86 Museum of Danish America'),
(26011, 'https://ror.org/05k887869', 'en', 1, 'https://ror.org/05k887869 Cleveland Police Museum'),
(26012, 'https://ror.org/05e1j4h71', 'en', 1, 'https://ror.org/05e1j4h71 Dauphin County Library System'),
(26013, 'https://ror.org/01wx9h016', 'en', 1, 'https://ror.org/01wx9h016 Clinton-Macomb Public Library'),
(26014, 'https://ror.org/04pj3k910', 'no_lang_code', 1, 'https://ror.org/04pj3k910 CultureWorks (United States)'),
(26015, 'https://ror.org/01a1mkv71', 'en', 1, 'https://ror.org/01a1mkv71 Dayton Art Institute'),
(26016, 'https://ror.org/03ffqk344', 'en', 1, 'https://ror.org/03ffqk344 Coastal Georgia Historical Society'),
(26017, 'https://ror.org/002gjns90', 'en', 1, 'https://ror.org/002gjns90 Collaborative for Educational Services'),
(26018, 'https://ror.org/01qa01910', 'en', 1, 'https://ror.org/01qa01910 Currier Museum of Art'),
(26019, 'https://ror.org/02sxwqc72', 'en', 1, 'https://ror.org/02sxwqc72 Decorah Public Library'),
(26020, 'https://ror.org/051v0c125', 'en', 1, 'https://ror.org/051v0c125 DeCordova Sculpture Park and Museum'),
(26021, 'https://ror.org/031yzhe66', 'en', 1, 'https://ror.org/031yzhe66 Cyprus American Archaeological Research Institute'),
(26022, 'https://ror.org/00gh5bn60', 'en', 1, 'https://ror.org/00gh5bn60 Deep Springs College'),
(26023, 'https://ror.org/00fxdpg38', 'en', 1, 'https://ror.org/00fxdpg38 Defiant Requiem Foundation'),
(26024, 'https://ror.org/02f5k4n77', 'en', 1, 'https://ror.org/02f5k4n77 DeKalb County Public Library'),
(26025, 'https://ror.org/03chx4004', 'en', 1, 'https://ror.org/03chx4004 DeKalb Library Foundation'),
(26026, 'https://ror.org/04nxx3204', 'en', 1, 'https://ror.org/04nxx3204 Delaware Agricultural Museum'),
(26027, 'https://ror.org/009jymh91', 'en', 1, 'https://ror.org/009jymh91 Dallas Heritage Village'),
(26028, 'https://ror.org/04x72rc30', 'en', 1, 'https://ror.org/04x72rc30 Delaware Art Museum'),
(26029, 'https://ror.org/047a39447', 'en', 1, 'https://ror.org/047a39447 Fayetteville Public Library'),
(26030, 'https://ror.org/006qbbs65', 'en', 1, 'https://ror.org/006qbbs65 Dallas Historical Society'),
(26031, 'https://ror.org/01far4758', 'en', 1, 'https://ror.org/01far4758 Delaware County Historical Association'),
(26032, 'https://ror.org/026r2c210', 'en', 1, 'https://ror.org/026r2c210 Dallas Institute of Humanities and Culture'),
(26033, 'https://ror.org/021tdez87', 'en', 1, 'https://ror.org/021tdez87 Dallas Museum of Art'),
(26034, 'https://ror.org/04arxdw58', 'en', 1, 'https://ror.org/04arxdw58 Delaware Division of Historical and Cultural Affairs'),
(26035, 'https://ror.org/00h4y9r32', 'en', 1, 'https://ror.org/00h4y9r32 Dallas Public Library'),
(26036, 'https://ror.org/01z5b9q11', 'en', 1, 'https://ror.org/01z5b9q11 Dance Notation Bureau'),
(26037, 'https://ror.org/02kgkbv06', 'en', 1, 'https://ror.org/02kgkbv06 Delaware Library Association'),
(26038, 'https://ror.org/01gpjtj97', 'en', 1, 'https://ror.org/01gpjtj97 Delhi Historical Society'),
(26039, 'https://ror.org/02hs3et22', 'en', 1, 'https://ror.org/02hs3et22 Grand View University'),
(26040, 'https://ror.org/011tkrr13', 'en', 1, 'https://ror.org/011tkrr13 Federation of State Humanities Councils'),
(26041, 'https://ror.org/04pjsje19', 'en', 1, 'https://ror.org/04pjsje19 Great Books Foundation'),
(26042, 'https://ror.org/01vwk0k32', 'en', 1, 'https://ror.org/01vwk0k32 John L. Miller Great Neck North High School'),
(26043, 'https://ror.org/026nzdq35', 'no_lang_code', 1, 'https://ror.org/026nzdq35 Feminist Press'),
(26044, 'https://ror.org/03ys01s76', 'en', 1, 'https://ror.org/03ys01s76 Public Media Connect'),
(26045, 'https://ror.org/05tk3y812', 'en', 1, 'https://ror.org/05tk3y812 Denver Art Museum'),
(26046, 'https://ror.org/03tnbmz91', 'en', 1, 'https://ror.org/03tnbmz91 Greater New Orleans Educational Television Foundation'),
(26047, 'https://ror.org/05b2fjs73', 'en', 1, 'https://ror.org/05b2fjs73 Ferguson Library'),
(26048, 'https://ror.org/03rsg0091', 'en', 1, 'https://ror.org/03rsg0091 Greater Southwest Historical Museum'),
(26049, 'https://ror.org/03ah0ss28', 'en', 1, 'https://ror.org/03ah0ss28 Denver Public Library'),
(26050, 'https://ror.org/02gb3y251', 'en', 1, 'https://ror.org/02gb3y251 Denver Seminary'),
(26051, 'https://ror.org/05fscpd23', 'en', 1, 'https://ror.org/05fscpd23 Greenville County Library System'),
(26052, 'https://ror.org/03wevch29', 'en', 1, 'https://ror.org/03wevch29 Grinnell Newburg Community School District'),
(26053, 'https://ror.org/01gq8b646', 'en', 1, 'https://ror.org/01gq8b646 Griot Museum of Black History & Culture'),
(26054, 'https://ror.org/035v8gz14', 'en', 1, 'https://ror.org/035v8gz14 Fifth Maine Regiment Museum'),
(26055, 'https://ror.org/04mdwrg75', 'en', 1, 'https://ror.org/04mdwrg75 Des Moines Art Center'),
(26056, 'https://ror.org/00hzk4n75', 'en', 1, 'https://ror.org/00hzk4n75 WTVS Detroit Public Television'),
(26057, 'https://ror.org/01agfg023', 'en', 1, 'https://ror.org/01agfg023 Detroit Historical Society'),
(26058, 'https://ror.org/05pfgty20', 'en', 1, 'https://ror.org/05pfgty20 Guilderland Public Library'),
(26059, 'https://ror.org/03zfb6x57', 'en', 1, 'https://ror.org/03zfb6x57 Detroit Institute of Arts'),
(26060, 'https://ror.org/05sh1ye34', 'en', 1, 'https://ror.org/05sh1ye34 History Center in Tompkins County'),
(26061, 'https://ror.org/04r8v5797', 'en', 1, 'https://ror.org/04r8v5797 Hagley Museum and Library'),
(26062, 'https://ror.org/018zgez30', 'en', 1, 'https://ror.org/018zgez30 Hammond Castle Museum'),
(26063, 'https://ror.org/059edgr15', 'en', 1, 'https://ror.org/059edgr15 Donnelly College'),
(26064, 'https://ror.org/02kht3n03', 'en', 1, 'https://ror.org/02kht3n03 Fitchburg Art Museum'),
(26065, 'https://ror.org/03w78wk23', 'en', 1, 'https://ror.org/03w78wk23 Duluth Public Library'),
(26066, 'https://ror.org/0239rpj17', 'en', 1, 'https://ror.org/0239rpj17 ImagineIF Libraries'),
(26067, 'https://ror.org/03ag2jv25', 'en', 1, 'https://ror.org/03ag2jv25 Flint Public Library'),
(26068, 'https://ror.org/04a2eet46', 'en', 1, 'https://ror.org/04a2eet46 Duxbury Free Library'),
(26069, 'https://ror.org/0221rj138', 'en', 1, 'https://ror.org/0221rj138 Hanford Mills Museum'),
(26070, 'https://ror.org/02vbwxp10', 'en', 1, 'https://ror.org/02vbwxp10 Dyer Library / Saco Museum'),
(26071, 'https://ror.org/0016yxd93', 'en', 1, 'https://ror.org/0016yxd93 Early Manuscripts Electronic Library'),
(26072, 'https://ror.org/03q14nt21', 'en', 1, 'https://ror.org/03q14nt21 Harriet Beecher Stowe Center'),
(26073, 'https://ror.org/01xnx1y03', 'en', 1, 'https://ror.org/01xnx1y03 Hartford Seminary'),
(26074, 'https://ror.org/013mrxa54', 'en', 1, 'https://ror.org/013mrxa54 East Baton Rouge Parish Library'),
(26075, 'https://ror.org/015t2rt70', 'en', 1, 'https://ror.org/015t2rt70 East Hampton Historical Society'),
(26076, 'https://ror.org/012752q54', 'en', 1, 'https://ror.org/012752q54 East Meadow Public Library'),
(26077, 'https://ror.org/006v7bf86', 'en', 1, 'https://ror.org/006v7bf86 Harvard University Press'),
(26078, 'https://ror.org/04qpsed22', 'en', 1, 'https://ror.org/04qpsed22 East Tennessee Historical Society'),
(26079, 'https://ror.org/058zc6h57', 'en', 1, 'https://ror.org/058zc6h57 Northwest Museum of Arts and Culture'),
(26080, 'https://ror.org/004tqq928', 'en', 1, 'https://ror.org/004tqq928 Haverford Township Free Library'),
(26081, 'https://ror.org/037wq3107', 'en', 1, 'https://ror.org/037wq3107 Henry Ford Museum'),
(26082, 'https://ror.org/023jtzw61', 'en', 1, 'https://ror.org/023jtzw61 Flowerdew Hundred Foundation'),
(26083, 'https://ror.org/04mz77s40', 'en', 1, 'https://ror.org/04mz77s40 El Paso Museum of History'),
(26084, 'https://ror.org/054b9aj21', 'en', 1, 'https://ror.org/054b9aj21 El Paso Public Library'),
(26085, 'https://ror.org/01gevtd65', 'en', 1, 'https://ror.org/01gevtd65 Electronic Literature Organization'),
(26086, 'https://ror.org/039qk4d23', 'en', 1, 'https://ror.org/039qk4d23 Ella Sharp Museum'),
(26087, 'https://ror.org/03vw0pp31', 'en', 1, 'https://ror.org/03vw0pp31 Forbes Library'),
(26088, 'https://ror.org/04bk45c77', 'en', 1, 'https://ror.org/04bk45c77 Ford''s Theatre'),
(26089, 'https://ror.org/00et8e744', 'en', 1, 'https://ror.org/00et8e744 English Speaking Union'),
(26090, 'https://ror.org/01704t520', 'en', 1, 'https://ror.org/01704t520 Foreign Policy Association'),
(26091, 'https://ror.org/01a9q0j25', 'en', 1, 'https://ror.org/01a9q0j25 Enoch Pratt Free Library'),
(26092, 'https://ror.org/01wfs6j95', 'en', 1, 'https://ror.org/01wfs6j95 U.S. Association of Former Members of Congress'),
(26093, 'https://ror.org/04qreff64', 'en', 1, 'https://ror.org/04qreff64 Episcopal Academy'),
(26094, 'https://ror.org/013ye6h36', 'en', 1, 'https://ror.org/013ye6h36 Fort Bend Museum'),
(26095, 'https://ror.org/0374ybm50', 'en', 1, 'https://ror.org/0374ybm50 Erie Canal Museum'),
(26096, 'https://ror.org/0451e0x59', 'en', 1, 'https://ror.org/0451e0x59 Episcopal Diocese of Pennsylvania'),
(26097, 'https://ror.org/035b5r707', 'en', 1, 'https://ror.org/035b5r707 Essex County College'),
(26098, 'https://ror.org/04mtx7258', 'en', 1, 'https://ror.org/04mtx7258 Peabody Essex Museum'),
(26099, 'https://ror.org/02z7csx58', 'en', 1, 'https://ror.org/02z7csx58 Hawaiian Historical Society'),
(26100, 'https://ror.org/02pky3s76', 'en', 1, 'https://ror.org/02pky3s76 Heard Museum'),
(26101, 'https://ror.org/00bn59524', 'en', 1, 'https://ror.org/00bn59524 Ethics and Public Policy Center'),
(26102, 'https://ror.org/05y3p3k12', 'en', 1, 'https://ror.org/05y3p3k12 Hebrew College'),
(26103, 'https://ror.org/04rgv1h10', 'en', 1, 'https://ror.org/04rgv1h10 Hebrew Immigrant Aid Society'),
(26104, 'https://ror.org/05dap7r06', 'en', 1, 'https://ror.org/05dap7r06 Fort Collins Museum of Discovery'),
(26105, 'https://ror.org/00wnxn610', 'en', 1, 'https://ror.org/00wnxn610 ETV Endowment of South Carolina'),
(26106, 'https://ror.org/034cgwt87', 'en', 1, 'https://ror.org/034cgwt87 Eugene O''Neill Theater Center'),
(26107, 'https://ror.org/00w8pm168', 'en', 1, 'https://ror.org/00w8pm168 Everson Museum of Art'),
(26108, 'https://ror.org/016ty7524', 'en', 1, 'https://ror.org/016ty7524 Fort Mason Center'),
(26109, 'https://ror.org/02jwrhw59', 'en', 1, 'https://ror.org/02jwrhw59 Excelsior Springs Museum & Archives'),
(26110, 'https://ror.org/00fpr8c10', 'en', 1, 'https://ror.org/00fpr8c10 Fort Ross Conservancy'),
(26111, 'https://ror.org/044mjsc46', 'en', 1, 'https://ror.org/044mjsc46 Facing History and Ourselves'),
(26112, 'https://ror.org/03evnn851', 'en', 1, 'https://ror.org/03evnn851 Fairbanks Museum and Planetarium'),
(26113, 'https://ror.org/00vhkhz92', 'en', 1, 'https://ror.org/00vhkhz92 Fairbanks North Star Borough Library'),
(26114, 'https://ror.org/02bx4hs93', 'en', 1, 'https://ror.org/02bx4hs93 Buffalo and Erie County Public Library'),
(26115, 'https://ror.org/014mbfe79', 'en', 1, 'https://ror.org/014mbfe79 Fairfax County Park Authority'),
(26116, 'https://ror.org/02wyv1n88', 'en', 1, 'https://ror.org/02wyv1n88 Fairfax County Public Library'),
(26117, 'https://ror.org/022v6g479', 'en', 1, 'https://ror.org/022v6g479 Henderson County Public Library'),
(26118, 'https://ror.org/04nrt0320', 'en', 1, 'https://ror.org/04nrt0320 Fairfax County Public Schools'),
(26119, 'https://ror.org/04rnnme19', 'en', 1, 'https://ror.org/04rnnme19 Fairfield County District Library'),
(26120, 'https://ror.org/02x0s3f55', 'en', 1, 'https://ror.org/02x0s3f55 Fauquier County Public Library'),
(26121, 'https://ror.org/00d54pv09', 'en', 1, 'https://ror.org/00d54pv09 Henry Morrison Flagler Museum'),
(26122, 'https://ror.org/03a2jdj94', 'en', 1, 'https://ror.org/03a2jdj94 Heritage Museums and Gardens'),
(26123, 'https://ror.org/04byvwj54', 'en', 1, 'https://ror.org/04byvwj54 Heritage Preservation'),
(26124, 'https://ror.org/02peanc96', 'en', 1, 'https://ror.org/02peanc96 Four County Library System'),
(26125, 'https://ror.org/00wez3666', 'en', 1, 'https://ror.org/00wez3666 Joslyn Art Museum'),
(26126, 'https://ror.org/05nwf9e60', 'en', 1, 'https://ror.org/05nwf9e60 Journey Through Hallowed Ground Partnership'),
(26127, 'https://ror.org/04arqjy59', 'en', 1, 'https://ror.org/04arqjy59 Hermann Grima House'),
(26128, 'https://ror.org/028t56857', 'en', 1, 'https://ror.org/028t56857 Magnes Collection of Jewish Art and Life'),
(26129, 'https://ror.org/00fx6sd20', 'en', 1, 'https://ror.org/00fx6sd20 Frank Lloyd Wright Trust'),
(26130, 'https://ror.org/05tmh5a95', 'en', 1, 'https://ror.org/05tmh5a95 Hermitage Museum'),
(26131, 'https://ror.org/03mf58h04', 'en', 1, 'https://ror.org/03mf58h04 Roosevelt Institute'),
(26132, 'https://ror.org/02ydm7k86', 'en', 1, 'https://ror.org/02ydm7k86 Hawaii State Judiciary'),
(26133, 'https://ror.org/00pj6qg65', 'en', 1, 'https://ror.org/00pj6qg65 Franklin County Historical and Museum Society'),
(26134, 'https://ror.org/04g449w06', 'en', 1, 'https://ror.org/04g449w06 Escuela Juilliard Juilliard School'),
(26135, 'https://ror.org/02ym28w56', 'en', 1, 'https://ror.org/02ym28w56 Fraunces Tavern Museum'),
(26136, 'https://ror.org/05vp0jk15', 'en', 1, 'https://ror.org/05vp0jk15 Juneau Public Libraries'),
(26137, 'https://ror.org/004rj5351', 'en', 1, 'https://ror.org/004rj5351 Herndon Home Museum'),
(26138, 'https://ror.org/02dndas03', 'en', 1, 'https://ror.org/02dndas03 Kandiyohi County Historical Society'),
(26139, 'https://ror.org/01gdhra86', 'en', 1, 'https://ror.org/01gdhra86 Hewlett Woodmere Public Library'),
(26140, 'https://ror.org/010zm1770', 'en', 1, 'https://ror.org/010zm1770 Kansas City Museum'),
(26141, 'https://ror.org/01cn1fp33', 'en', 1, 'https://ror.org/01cn1fp33 Hibbing Public Library'),
(26142, 'https://ror.org/05kka2g19', 'en', 1, 'https://ror.org/05kka2g19 John W. Higgins Armory'),
(26143, 'https://ror.org/025ze7j58', 'en', 1, 'https://ror.org/025ze7j58 Kansas City, Kansas Public Library'),
(26144, 'https://ror.org/05c0t8x83', 'en', 1, 'https://ror.org/05c0t8x83 Frederick Community College'),
(26145, 'https://ror.org/05rqmax46', 'en', 1, 'https://ror.org/05rqmax46 High Desert Museum'),
(26146, 'https://ror.org/00h6mz496', 'en', 1, 'https://ror.org/00h6mz496 High Museum of Art'),
(26147, 'https://ror.org/02wsqx654', 'en', 1, 'https://ror.org/02wsqx654 Highland Park Public Library'),
(26148, 'https://ror.org/0515swv60', 'en', 1, 'https://ror.org/0515swv60 Kartemquin Films'),
(26149, 'https://ror.org/054t85f27', 'en', 1, 'https://ror.org/054t85f27 Hingham Public Library'),
(26150, 'https://ror.org/03cyyx472', 'no_lang_code', 1, 'https://ror.org/03cyyx472 Katahdin Productions'),
(26151, 'https://ror.org/01h37vy24', 'en', 1, 'https://ror.org/01h37vy24 Wake County Public Libraries'),
(26152, 'https://ror.org/009fpea76', 'en', 1, 'https://ror.org/009fpea76 Katonah Museum of Art'),
(26153, 'https://ror.org/02ts93992', 'en', 1, 'https://ror.org/02ts93992 Kaw Nation'),
(26154, 'https://ror.org/04d5c0f12', 'en', 1, 'https://ror.org/04d5c0f12 Hispanic Society of America'),
(26155, 'https://ror.org/00pcrgz71', 'en', 1, 'https://ror.org/00pcrgz71 Historians of Netherlandish Art'),
(26156, 'https://ror.org/00n3kap46', 'en', 1, 'https://ror.org/00n3kap46 KCRW Foundation'),
(26157, 'https://ror.org/048tnx725', 'en', 1, 'https://ror.org/048tnx725 Biblioteca Pública de Filadelfia Free Library of Philadelphia'),
(26158, 'https://ror.org/048yye826', 'en', 1, 'https://ror.org/048yye826 Keene Public Library'),
(26159, 'https://ror.org/016ezn892', 'en', 1, 'https://ror.org/016ezn892 Freedom Trail Foundation'),
(26160, 'https://ror.org/042sm6918', 'en', 1, 'https://ror.org/042sm6918 Historic Annapolis Foundation'),
(26161, 'https://ror.org/0033tjv05', 'en', 1, 'https://ror.org/0033tjv05 Freeport Art Museum'),
(26162, 'https://ror.org/058h4f948', 'no_lang_code', 1, 'https://ror.org/058h4f948 Keeneland Association'),
(26163, 'https://ror.org/00q709v87', 'en', 1, 'https://ror.org/00q709v87 Kellogg Community College'),
(26164, 'https://ror.org/036s8jv96', 'en', 1, 'https://ror.org/036s8jv96 Historic Charleston Foundation'),
(26165, 'https://ror.org/0326y8887', 'en', 1, 'https://ror.org/0326y8887 Kent Memorial Library'),
(26166, 'https://ror.org/0233vx723', 'en', 1, 'https://ror.org/0233vx723 Freeport Historical Society'),
(26167, 'https://ror.org/03a5bb278', 'en', 1, 'https://ror.org/03a5bb278 Kent State University, East Liverpool'),
(26168, 'https://ror.org/01wcf4732', 'en', 1, 'https://ror.org/01wcf4732 Kenton County Public Library'),
(26169, 'https://ror.org/03hc6qf46', 'en', 1, 'https://ror.org/03hc6qf46 Historic Cherry Hill'),
(26170, 'https://ror.org/04c3gsq51', 'en', 1, 'https://ror.org/04c3gsq51 Frelinghuysen Morris House And Studio'),
(26171, 'https://ror.org/02em0x482', 'en', 1, 'https://ror.org/02em0x482 Kentucky Department for Libraries and Archives'),
(26172, 'https://ror.org/05q2ap552', 'en', 1, 'https://ror.org/05q2ap552 Historic Hawaii Foundation'),
(26173, 'https://ror.org/0038d9d86', 'en', 1, 'https://ror.org/0038d9d86 Kentucky Historical Society'),
(26174, 'https://ror.org/00s817895', 'en', 1, 'https://ror.org/00s817895 French-American Foundation'),
(26175, 'https://ror.org/05hcd4f69', 'en', 1, 'https://ror.org/05hcd4f69 Historic Lexington Foundation'),
(26176, 'https://ror.org/00hcj4147', 'en', 1, 'https://ror.org/00hcj4147 Kidscommons Columbus Community Children''s Museum'),
(26177, 'https://ror.org/01w6bk780', 'en', 1, 'https://ror.org/01w6bk780 Historic New England'),
(26178, 'https://ror.org/01txxd494', 'en', 1, 'https://ror.org/01txxd494 French Cultural Center'),
(26179, 'https://ror.org/05e3v4r58', 'en', 1, 'https://ror.org/05e3v4r58 Kirkwood Public Library'),
(26180, 'https://ror.org/05f321t07', 'en', 1, 'https://ror.org/05f321t07 Kitchen Sisters Productions'),
(26181, 'https://ror.org/01dnm0v11', 'en', 1, 'https://ror.org/01dnm0v11 Historic Northampton'),
(26182, 'https://ror.org/04dr3nj83', 'en', 1, 'https://ror.org/04dr3nj83 Fresno County Public Library'),
(26183, 'https://ror.org/00avk7342', 'en', 1, 'https://ror.org/00avk7342 Friends of Fellows Riverside Gardens'),
(26184, 'https://ror.org/00whryr74', 'en', 1, 'https://ror.org/00whryr74 Knox County Public Library'),
(26185, 'https://ror.org/047hk4n08', 'en', 1, 'https://ror.org/047hk4n08 Koahnic Broadcast Corporation'),
(26186, 'https://ror.org/0287pc187', 'en', 1, 'https://ror.org/0287pc187 Mount Auburn Cemetery'),
(26187, 'https://ror.org/04n3hjx90', 'en', 1, 'https://ror.org/04n3hjx90 Association for Slavic East European and Eurasian Studies'),
(26188, 'https://ror.org/04k5ae675', 'en', 1, 'https://ror.org/04k5ae675 Friends of Peralta Hacienda Historical Park'),
(26189, 'https://ror.org/01f4b0a81', 'en', 1, 'https://ror.org/01f4b0a81 Friends of the Saint Paul Public Library'),
(26190, 'https://ror.org/00h8svb48', 'en', 1, 'https://ror.org/00h8svb48 Fruitlands Museum'),
(26191, 'https://ror.org/0393qmm36', 'en', 1, 'https://ror.org/0393qmm36 Fuller Craft Museum'),
(26192, 'https://ror.org/02vme4x02', 'no_lang_code', 1, 'https://ror.org/02vme4x02 HistoryMiami'),
(26193, 'https://ror.org/00sx9nz72', 'en', 1, 'https://ror.org/00sx9nz72 American Council for Southern Asian Art'),
(26194, 'https://ror.org/022ef1r75', 'en', 1, 'https://ror.org/022ef1r75 Delaware Historical Society'),
(26195, 'https://ror.org/05j23np60', 'en', 1, 'https://ror.org/05j23np60 Galesburg Public Library'),
(26196, 'https://ror.org/05n41yg77', 'en', 1, 'https://ror.org/05n41yg77 Historical Society of Frankford'),
(26197, 'https://ror.org/05at4t633', 'en', 1, 'https://ror.org/05at4t633 Historical Society of Pennsylvania'),
(26198, 'https://ror.org/0491jx134', 'en', 1, 'https://ror.org/0491jx134 Garfield County Libraries'),
(26199, 'https://ror.org/00pkb2403', 'en', 1, 'https://ror.org/00pkb2403 Historical Society of Rockland County'),
(26200, 'https://ror.org/02a9gfy77', 'en', 1, 'https://ror.org/02a9gfy77 Gaston County Public Library'),
(26201, 'https://ror.org/05n0nb142', 'en', 1, 'https://ror.org/05n0nb142 FamilySearch'),
(26202, 'https://ror.org/0058h2h62', 'en', 1, 'https://ror.org/0058h2h62 Museum of History & Industry'),
(26203, 'https://ror.org/03271bg65', 'en', 1, 'https://ror.org/03271bg65 General John A Logan Museum'),
(26204, 'https://ror.org/04a1ctn52', 'en', 1, 'https://ror.org/04a1ctn52 General Lew Wallace Study and Museum'),
(26205, 'https://ror.org/05tnbbj36', 'en', 1, 'https://ror.org/05tnbbj36 Geneva Historical Society'),
(26206, 'https://ror.org/0444rfc43', 'en', 1, 'https://ror.org/0444rfc43 George C Marshall Foundation'),
(26207, 'https://ror.org/00x481437', 'en', 1, 'https://ror.org/00x481437 George Eastman House'),
(26208, 'https://ror.org/04fr5jq93', 'en', 1, 'https://ror.org/04fr5jq93 Georgetown County Library'),
(26209, 'https://ror.org/0425ee430', 'en', 1, 'https://ror.org/0425ee430 Kona Historical Society'),
(26210, 'https://ror.org/005kyzk28', 'en', 1, 'https://ror.org/005kyzk28 Kurt Weill Foundation for Music'),
(26211, 'https://ror.org/018nbkm47', 'en', 1, 'https://ror.org/018nbkm47 L. C. Bates Museum'),
(26212, 'https://ror.org/05hm3gb11', 'en', 1, 'https://ror.org/05hm3gb11 Talbot Historical Society'),
(26213, 'https://ror.org/01xmbc541', 'en', 1, 'https://ror.org/01xmbc541 Lafayette Science Museum'),
(26214, 'https://ror.org/0148bwv84', 'en', 1, 'https://ror.org/0148bwv84 Lafayette Public Library'),
(26215, 'https://ror.org/046zty610', 'en', 1, 'https://ror.org/046zty610 Lake County Public Library'),
(26216, 'https://ror.org/05grcng38', 'en', 1, 'https://ror.org/05grcng38 Lake Region State College'),
(26217, 'https://ror.org/04tj7ta70', 'en', 1, 'https://ror.org/04tj7ta70 Historical Society of Western Pennsylvania'),
(26218, 'https://ror.org/01awa7g66', 'en', 1, 'https://ror.org/01awa7g66 Lakeland College'),
(26219, 'https://ror.org/05wh3vf38', 'en', 1, 'https://ror.org/05wh3vf38 HistoryMakers'),
(26220, 'https://ror.org/01mp0jc41', 'en', 1, 'https://ror.org/01mp0jc41 Language Conservancy'),
(26221, 'https://ror.org/04q6vjy48', 'en', 1, 'https://ror.org/04q6vjy48 Holyoke Public Library'),
(26222, 'https://ror.org/05vkc0567', 'en', 1, 'https://ror.org/05vkc0567 Language of Dance Centre'),
(26223, 'https://ror.org/00wzhrk33', 'en', 1, 'https://ror.org/00wzhrk33 Pratt Museum'),
(26224, 'https://ror.org/04ce9mt19', 'en', 1, 'https://ror.org/04ce9mt19 Hoover Institution'),
(26225, 'https://ror.org/04y821h28', 'en', 1, 'https://ror.org/04y821h28 Georgia Historical Society'),
(26226, 'https://ror.org/0540ez438', 'en', 1, 'https://ror.org/0540ez438 Laramie County Library'),
(26227, 'https://ror.org/0451vzh57', 'en', 1, 'https://ror.org/0451vzh57 Laramie Plains Museum'),
(26228, 'https://ror.org/05jneht64', 'en', 1, 'https://ror.org/05jneht64 Hot Springs County Museum and Cultural Center'),
(26229, 'https://ror.org/0406kzg67', 'en', 1, 'https://ror.org/0406kzg67 Georgia OKeeffe Museum'),
(26230, 'https://ror.org/03dgxrg98', 'en', 1, 'https://ror.org/03dgxrg98 Germanna Virginia Community College'),
(26231, 'https://ror.org/002h08g67', 'en', 1, 'https://ror.org/002h08g67 Las Vegas Convention and Visitors Authority'),
(26232, 'https://ror.org/007fy8586', 'en', 1, 'https://ror.org/007fy8586 Houghton Lake Public Library'),
(26233, 'https://ror.org/01kr68e52', 'en', 1, 'https://ror.org/01kr68e52 Germantown Historical Society'),
(26234, 'https://ror.org/04ma34w27', 'en', 1, 'https://ror.org/04ma34w27 Latah County Historical Society'),
(26235, 'https://ror.org/00qb4ds53', 'en', 1, 'https://ror.org/00qb4ds53 Getty Research Institute'),
(26236, 'https://ror.org/05dd5tz10', 'en', 1, 'https://ror.org/05dd5tz10 Gibbes Museum of Art'),
(26237, 'https://ror.org/04q1vc929', 'en', 1, 'https://ror.org/04q1vc929 Latin American Youth Center'),
(26238, 'https://ror.org/05nh9h876', 'en', 1, 'https://ror.org/05nh9h876 House of the Seven Gables'),
(26239, 'https://ror.org/053k06e94', 'en', 1, 'https://ror.org/053k06e94 Lauren Rogers Museum of Art'),
(26240, 'https://ror.org/02se7pe38', 'en', 1, 'https://ror.org/02se7pe38 League of Women Voters'),
(26241, 'https://ror.org/05j1kzp43', 'en', 1, 'https://ror.org/05j1kzp43 Gilder Lehrman Institute of American History'),
(26242, 'https://ror.org/01yq8nk56', 'en', 1, 'https://ror.org/01yq8nk56 Learning Through an Expanded Arts Program'),
(26243, 'https://ror.org/03gshtw15', 'no_lang_code', 1, 'https://ror.org/03gshtw15 Global Village Media'),
(26244, 'https://ror.org/04qj7fy53', 'en', 1, 'https://ror.org/04qj7fy53 Leavenworth Public Library'),
(26245, 'https://ror.org/043gwkh50', 'en', 1, 'https://ror.org/043gwkh50 Biblioteca Pública de Houston Houston Public Library'),
(26246, 'https://ror.org/010qmx075', 'en', 1, 'https://ror.org/010qmx075 Howard County Library System'),
(26247, 'https://ror.org/04mvvs945', 'en', 1, 'https://ror.org/04mvvs945 Leeds Jane Culbreth Library'),
(26248, 'https://ror.org/05g1rz111', 'en', 1, 'https://ror.org/05g1rz111 Lees McRae College'),
(26249, 'https://ror.org/04dheyn57', 'en', 1, 'https://ror.org/04dheyn57 Hull Lifesaving Museum'),
(26250, 'https://ror.org/0400qtr36', 'en', 1, 'https://ror.org/0400qtr36 Lehigh County Historical Society'),
(26251, 'https://ror.org/0481fx056', 'en', 1, 'https://ror.org/0481fx056 Gold Nugget Museum'),
(26252, 'https://ror.org/04xpe4755', 'en', 1, 'https://ror.org/04xpe4755 Lehman College Art Gallery'),
(26253, 'https://ror.org/02x0vsr17', 'en', 1, 'https://ror.org/02x0vsr17 Grass Roots Art and Community Effort'),
(26254, 'https://ror.org/041kq1b88', 'en', 1, 'https://ror.org/041kq1b88 Lenox Library Association'),
(26255, 'https://ror.org/01k7msp60', 'en', 1, 'https://ror.org/01k7msp60 Leominster Public Library'),
(26256, 'https://ror.org/03znmxh49', 'en', 1, 'https://ror.org/03znmxh49 Grail Movement'),
(26257, 'https://ror.org/03hc2rf16', 'en', 1, 'https://ror.org/03hc2rf16 Metropolitan Indianapolis Public Broadcasting'),
(26258, 'https://ror.org/05xases12', 'en', 1, 'https://ror.org/05xases12 Lepanto Foundation'),
(26259, 'https://ror.org/01qzzz835', 'en', 1, 'https://ror.org/01qzzz835 Levine Museum of the New South'),
(26260, 'https://ror.org/02x8vxm77', 'en', 1, 'https://ror.org/02x8vxm77 Mexic-Arte Museum'),
(26261, 'https://ror.org/02cknsb32', 'en', 1, 'https://ror.org/02cknsb32 WQED'),
(26262, 'https://ror.org/01992n513', 'en', 1, 'https://ror.org/01992n513 Lexington Historical Society'),
(26263, 'https://ror.org/02qq9kc45', 'en', 1, 'https://ror.org/02qq9kc45 Lexington Public Library'),
(26264, 'https://ror.org/01dfsmx55', 'en', 1, 'https://ror.org/01dfsmx55 De Anza College'),
(26265, 'https://ror.org/03bj7cd20', 'en', 1, 'https://ror.org/03bj7cd20 Liberty Memorial'),
(26266, 'https://ror.org/02w982447', 'en', 1, 'https://ror.org/02w982447 Library Company of Philadelphia'),
(26267, 'https://ror.org/05k7kyd84', 'en', 1, 'https://ror.org/05k7kyd84 Library of America'),
(26268, 'https://ror.org/04dsq1c96', 'en', 1, 'https://ror.org/04dsq1c96 Library of Hattiesburg, Petal and Forrest County'),
(26269, 'https://ror.org/04sysb357', 'en', 1, 'https://ror.org/04sysb357 Library of Virginia'),
(26270, 'https://ror.org/05a30nk74', 'en', 1, 'https://ror.org/05a30nk74 Foundation for Lincoln City Libraries'),
(26271, 'https://ror.org/00cz1vp94', 'en', 1, 'https://ror.org/00cz1vp94 Linebaugh Public Library'),
(26272, 'https://ror.org/01h4b7m22', 'en', 1, 'https://ror.org/01h4b7m22 Litchfield Historical Society'),
(26273, 'https://ror.org/050a69869', 'en', 1, 'https://ror.org/050a69869 Little Compton Historical Society'),
(26274, 'https://ror.org/021hrr735', 'en', 1, 'https://ror.org/021hrr735 Huntington Museum of Art'),
(26275, 'https://ror.org/00zc2km17', 'en', 1, 'https://ror.org/00zc2km17 Living History Farms'),
(26276, 'https://ror.org/05ptzyt43', 'en', 1, 'https://ror.org/05ptzyt43 Mexican American Catholic College'),
(26277, 'https://ror.org/043hwa340', 'en', 1, 'https://ror.org/043hwa340 Huntington Theatre Company'),
(26278, 'https://ror.org/022nh8g63', 'en', 1, 'https://ror.org/022nh8g63 Huntsville Museum of Art'),
(26279, 'https://ror.org/04zykg256', 'en', 1, 'https://ror.org/04zykg256 Miami-Dade Public Library System'),
(26280, 'https://ror.org/01jsqmy50', 'en', 1, 'https://ror.org/01jsqmy50 Longmont Museum'),
(26281, 'https://ror.org/025dv5233', 'en', 1, 'https://ror.org/025dv5233 Iberia Parish Library'),
(26282, 'https://ror.org/05x852w19', 'en', 1, 'https://ror.org/05x852w19 Longue Vue House and Gardens'),
(26283, 'https://ror.org/0064m4x84', 'en', 1, 'https://ror.org/0064m4x84 Colorado Heights University'),
(26284, 'https://ror.org/01p68kb80', 'en', 1, 'https://ror.org/01p68kb80 Idaho Department of Parks and Recreation'),
(26285, 'https://ror.org/052xmwh44', 'en', 1, 'https://ror.org/052xmwh44 Idaho Falls Public Library'),
(26286, 'https://ror.org/000wr2p83', 'en', 1, 'https://ror.org/000wr2p83 Biblioteca Pública de Los Ángeles Bibliothèque publique de los angeles Los Angeles Public Library'),
(26287, 'https://ror.org/03xcvt065', 'en', 1, 'https://ror.org/03xcvt065 Los Medanos College'),
(26288, 'https://ror.org/01za4nr66', 'en', 1, 'https://ror.org/01za4nr66 Loudoun County Public Library'),
(26289, 'https://ror.org/006hvb134', 'en', 1, 'https://ror.org/006hvb134 Idaho State Historical Society'),
(26290, 'https://ror.org/020b0tc15', 'en', 1, 'https://ror.org/020b0tc15 Louisiana Library Association'),
(26291, 'https://ror.org/0483p3z75', 'en', 1, 'https://ror.org/0483p3z75 Louisiana Museum Foundation'),
(26292, 'https://ror.org/0223jhh02', 'en', 1, 'https://ror.org/0223jhh02 Louisiana State Museum'),
(26293, 'https://ror.org/02d0jmr12', 'en', 1, 'https://ror.org/02d0jmr12 Louisville Free Public Library'),
(26294, 'https://ror.org/041dv9q58', 'en', 1, 'https://ror.org/041dv9q58 Lourdes University'),
(26295, 'https://ror.org/02s9exq69', 'en', 1, 'https://ror.org/02s9exq69 Midwest Art Conservation Center'),
(26296, 'https://ror.org/001ksx577', 'en', 1, 'https://ror.org/001ksx577 Milligan College'),
(26297, 'https://ror.org/05f7ph084', 'en', 1, 'https://ror.org/05f7ph084 Illinois Historic Preservation Agency'),
(26298, 'https://ror.org/02t6ppt32', 'en', 1, 'https://ror.org/02t6ppt32 Milwaukee Art Museum'),
(26299, 'https://ror.org/019xw1562', 'en', 1, 'https://ror.org/019xw1562 Instituto de Arte de Mineápolis Minneapolis Institute of Arts'),
(26300, 'https://ror.org/02ht85z18', 'en', 1, 'https://ror.org/02ht85z18 Illinois State Historical Society'),
(26301, 'https://ror.org/0246ges37', 'en', 1, 'https://ror.org/0246ges37 Independence Seaport Museum'),
(26302, 'https://ror.org/00avnw427', 'en', 1, 'https://ror.org/00avnw427 Minnesota Historical Society');
INSERT INTO `rors` VALUES
(26303, 'https://ror.org/010299218', 'en', 1, 'https://ror.org/010299218 Minnesota Public Radio'),
(26304, 'https://ror.org/01afz1h27', 'en', 1, 'https://ror.org/01afz1h27 Minnesota State Community and Technical College'),
(26305, 'https://ror.org/040vydp62', 'en', 1, 'https://ror.org/040vydp62 Mint Museum'),
(26306, 'https://ror.org/00rn8t694', 'en', 1, 'https://ror.org/00rn8t694 Lushootseed Research'),
(26307, 'https://ror.org/00cfc2e66', 'en', 1, 'https://ror.org/00cfc2e66 Mission Inn Foundation'),
(26308, 'https://ror.org/054b7a787', 'en', 1, 'https://ror.org/054b7a787 Mississippi Public Broadcasting'),
(26309, 'https://ror.org/03rc8sv47', 'en', 1, 'https://ror.org/03rc8sv47 Lutheran Archives Center at Philadelphia'),
(26310, 'https://ror.org/0060bz664', 'en', 1, 'https://ror.org/0060bz664 Mississippi Department of Archives and History'),
(26311, 'https://ror.org/0210srm80', 'en', 1, 'https://ror.org/0210srm80 Lutheran School of Theology at Chicago'),
(26312, 'https://ror.org/056zvg634', 'en', 1, 'https://ror.org/056zvg634 Independent Production Fund'),
(26313, 'https://ror.org/02ymwej51', 'en', 1, 'https://ror.org/02ymwej51 Lyman Museum'),
(26314, 'https://ror.org/04w97d535', 'en', 1, 'https://ror.org/04w97d535 Independent Filmmaker Project'),
(26315, 'https://ror.org/03vvasf30', 'en', 1, 'https://ror.org/03vvasf30 Lyndon Baines Johnson Foundation'),
(26316, 'https://ror.org/02bkjet92', 'en', 1, 'https://ror.org/02bkjet92 Mississippi Library Commission'),
(26317, 'https://ror.org/04heq0532', 'en', 1, 'https://ror.org/04heq0532 Missoula Public Library'),
(26318, 'https://ror.org/059fpzy63', 'en', 1, 'https://ror.org/059fpzy63 Muriel L. MacGregor Charitable Trust'),
(26319, 'https://ror.org/056q8mg35', 'en', 1, 'https://ror.org/056q8mg35 Missouri Historical Society'),
(26320, 'https://ror.org/03yr0v123', 'en', 1, 'https://ror.org/03yr0v123 Mackinac State Historic Parks'),
(26321, 'https://ror.org/04d4xzq24', 'en', 1, 'https://ror.org/04d4xzq24 Indiana Library Federation'),
(26322, 'https://ror.org/0008aac48', 'en', 1, 'https://ror.org/0008aac48 Confederated Tribes of Warm Springs'),
(26323, 'https://ror.org/02jpbb755', 'en', 1, 'https://ror.org/02jpbb755 Mobile Public Library'),
(26324, 'https://ror.org/00ag8ns14', 'en', 1, 'https://ror.org/00ag8ns14 Modern Language Association'),
(26325, 'https://ror.org/03rmb5927', 'en', 1, 'https://ror.org/03rmb5927 Poetry Foundation'),
(26326, 'https://ror.org/02bk4fc75', 'en', 1, 'https://ror.org/02bk4fc75 International Conference for the Study of Political Thought'),
(26327, 'https://ror.org/01k073v05', 'en', 1, 'https://ror.org/01k073v05 Macon County History Museum'),
(26328, 'https://ror.org/04x0kmc95', 'en', 1, 'https://ror.org/04x0kmc95 Indianapolis Museum of Art'),
(26329, 'https://ror.org/00h9f3r10', 'en', 1, 'https://ror.org/00h9f3r10 Historic Macon Foundation'),
(26330, 'https://ror.org/030c9z695', 'en', 1, 'https://ror.org/030c9z695 Madison Museum of Contemporary Art'),
(26331, 'https://ror.org/0308w0t08', 'en', 1, 'https://ror.org/0308w0t08 Institute for Architecture and Urban Studies'),
(26332, 'https://ror.org/02sxhaw47', 'en', 1, 'https://ror.org/02sxhaw47 YWCA Madison'),
(26333, 'https://ror.org/00m9qmh56', 'en', 1, 'https://ror.org/00m9qmh56 Moffatt-Ladd House and Garden'),
(26334, 'https://ror.org/05yayh717', 'en', 1, 'https://ror.org/05yayh717 Maiden Voyage Productions'),
(26335, 'https://ror.org/05p70qs58', 'en', 1, 'https://ror.org/05p70qs58 Maine Classical Association'),
(26336, 'https://ror.org/05xdt2n12', 'en', 1, 'https://ror.org/05xdt2n12 Walter Elwood Museum'),
(26337, 'https://ror.org/0369c2s29', 'en', 1, 'https://ror.org/0369c2s29 Maine Historical Society'),
(26338, 'https://ror.org/000hf9438', 'en', 1, 'https://ror.org/000hf9438 Monmouth Museum'),
(26339, 'https://ror.org/03t3xs666', 'en', 1, 'https://ror.org/03t3xs666 Institute for Historical Study'),
(26340, 'https://ror.org/03vfdas15', 'en', 1, 'https://ror.org/03vfdas15 Maine Library Association'),
(26341, 'https://ror.org/03vp0e929', 'en', 1, 'https://ror.org/03vp0e929 Monroe County History Center'),
(26342, 'https://ror.org/0277k6k46', 'en', 1, 'https://ror.org/0277k6k46 Maine Maritime Museum'),
(26343, 'https://ror.org/02jf4jr88', 'en', 1, 'https://ror.org/02jf4jr88 Montana Historical Society'),
(26344, 'https://ror.org/03zy1r264', 'en', 1, 'https://ror.org/03zy1r264 Montclair Art Museum'),
(26345, 'https://ror.org/02qxynb76', 'en', 1, 'https://ror.org/02qxynb76 Montgomery County Historical Society'),
(26346, 'https://ror.org/053zwkn78', 'en', 1, 'https://ror.org/053zwkn78 Montgomery County-Norristown Public Library'),
(26347, 'https://ror.org/00tnt9w66', 'en', 1, 'https://ror.org/00tnt9w66 Montpelier Foundation'),
(26348, 'https://ror.org/0464k6747', 'en', 1, 'https://ror.org/0464k6747 Maine State Archives'),
(26349, 'https://ror.org/00vetxt84', 'en', 1, 'https://ror.org/00vetxt84 Maine State Museum'),
(26350, 'https://ror.org/01yapab09', 'en', 1, 'https://ror.org/01yapab09 Moravian Music Foundation'),
(26351, 'https://ror.org/05d3sbc55', 'en', 1, 'https://ror.org/05d3sbc55 Morris College'),
(26352, 'https://ror.org/01phypy63', 'en', 1, 'https://ror.org/01phypy63 Motlow State Community College'),
(26353, 'https://ror.org/04yz5fm13', 'en', 1, 'https://ror.org/04yz5fm13 Mount Ida College'),
(26354, 'https://ror.org/03t0van71', 'en', 1, 'https://ror.org/03t0van71 Makah Cultural and Research Center'),
(26355, 'https://ror.org/00mjyx438', 'en', 1, 'https://ror.org/00mjyx438 Mount Vernon Hotel Museum & Garden'),
(26356, 'https://ror.org/01jaj0217', 'en', 1, 'https://ror.org/01jaj0217 Manchester Historic Association'),
(26357, 'https://ror.org/04fdxfa12', 'en', 1, 'https://ror.org/04fdxfa12 Mangalam Research Center for Buddhist Languages'),
(26358, 'https://ror.org/05r7e6j86', 'en', 1, 'https://ror.org/05r7e6j86 Multnomah County Library'),
(26359, 'https://ror.org/03tmvjq86', 'en', 1, 'https://ror.org/03tmvjq86 Manhattan High School'),
(26360, 'https://ror.org/0390yrq93', 'en', 1, 'https://ror.org/0390yrq93 Mariners'' Museum'),
(26361, 'https://ror.org/03apehb04', 'en', 1, 'https://ror.org/03apehb04 Muncie Public Library'),
(26362, 'https://ror.org/00v8gq385', 'en', 1, 'https://ror.org/00v8gq385 Marist School'),
(26363, 'https://ror.org/01bawjd60', 'en', 1, 'https://ror.org/01bawjd60 Municipal Art Society of New York'),
(26364, 'https://ror.org/01xn8m022', 'en', 1, 'https://ror.org/01xn8m022 Mark Twain House and Museum'),
(26365, 'https://ror.org/028bz2q30', 'en', 1, 'https://ror.org/028bz2q30 Marlboro College'),
(26366, 'https://ror.org/03f059y22', 'en', 1, 'https://ror.org/03f059y22 Institute of Andean Studies'),
(26367, 'https://ror.org/01setje54', 'en', 1, 'https://ror.org/01setje54 Institute of Contemporary Art'),
(26368, 'https://ror.org/0003nwf42', 'en', 1, 'https://ror.org/0003nwf42 Martha''s Vineyard Museum'),
(26369, 'https://ror.org/05e30xz71', 'en', 1, 'https://ror.org/05e30xz71 LeRoy Collins Leon County Public Library'),
(26370, 'https://ror.org/00ymx4t37', 'en', 1, 'https://ror.org/00ymx4t37 MUSE Film and Television'),
(26371, 'https://ror.org/05fz3qx12', 'en', 1, 'https://ror.org/05fz3qx12 Institute of Nautical Archaeology'),
(26372, 'https://ror.org/00he2gv62', 'en', 1, 'https://ror.org/00he2gv62 Africa Center'),
(26373, 'https://ror.org/01dw2jw22', 'en', 1, 'https://ror.org/01dw2jw22 National Museum of African Art'),
(26374, 'https://ror.org/01vgnaz04', 'en', 1, 'https://ror.org/01vgnaz04 Carnegie Museum of Art'),
(26375, 'https://ror.org/043spm784', 'en', 1, 'https://ror.org/043spm784 Institute of the Black World'),
(26376, 'https://ror.org/01wj9kt25', 'en', 1, 'https://ror.org/01wj9kt25 Museum of Contemporary Art, Los Angeles'),
(26377, 'https://ror.org/04je1d793', 'en', 1, 'https://ror.org/04je1d793 Institute of the Rockies'),
(26378, 'https://ror.org/04gsm6763', 'en', 1, 'https://ror.org/04gsm6763 Museum of Contemporary Art San Diego'),
(26379, 'https://ror.org/00nsa3x45', 'en', 1, 'https://ror.org/00nsa3x45 Museum of Fine Arts, Boston'),
(26380, 'https://ror.org/00n9dj543', 'en', 1, 'https://ror.org/00n9dj543 Museo de Bellas Artes de Houston Museum of Fine Arts, Houston Musée des beaux-arts de houston'),
(26381, 'https://ror.org/05d75ah03', 'en', 1, 'https://ror.org/05d75ah03 International Center of Medieval Art'),
(26382, 'https://ror.org/015es7f77', 'en', 1, 'https://ror.org/015es7f77 Centre international de la photographie Centro internacional de Fotografía International Center of Photography'),
(26383, 'https://ror.org/00ceabv15', 'en', 1, 'https://ror.org/00ceabv15 International Coalition of Sites of Conscience'),
(26384, 'https://ror.org/02p3kxs50', 'en', 1, 'https://ror.org/02p3kxs50 Museum of International Folk Art'),
(26385, 'https://ror.org/00nvmb859', 'en', 1, 'https://ror.org/00nvmb859 International Research & Exchanges Board'),
(26386, 'https://ror.org/019j0kq88', 'en', 1, 'https://ror.org/019j0kq88 International Tennis Hall of Fame'),
(26387, 'https://ror.org/03697kk98', 'en', 1, 'https://ror.org/03697kk98 Intrepid Sea Air & Space Museum'),
(26388, 'https://ror.org/0129z1286', 'en', 1, 'https://ror.org/0129z1286 Ipswich Historical Society'),
(26389, 'https://ror.org/02bf1c960', 'en', 1, 'https://ror.org/02bf1c960 Isabella Stewart Gardner Museum'),
(26390, 'https://ror.org/015mnqg92', 'en', 1, 'https://ror.org/015mnqg92 Italian Cultural Society of Washington D.C.'),
(26391, 'https://ror.org/05cbbv691', 'en', 1, 'https://ror.org/05cbbv691 Martinsburg - Berkeley County Public Libraries'),
(26392, 'https://ror.org/03qef3650', 'en', 1, 'https://ror.org/03qef3650 Michele & Donald D’Amour Museum of Fine Arts'),
(26393, 'https://ror.org/013812419', 'en', 1, 'https://ror.org/013812419 Jack Straw Cultural Center'),
(26394, 'https://ror.org/05ban2t96', 'en', 1, 'https://ror.org/05ban2t96 Jackson County Historical Society'),
(26395, 'https://ror.org/05gzb7v46', 'en', 1, 'https://ror.org/05gzb7v46 Museum of New Mexico Foundation'),
(26396, 'https://ror.org/03c0rtn49', 'en', 1, 'https://ror.org/03c0rtn49 Maryland Historical Society'),
(26397, 'https://ror.org/038h9k518', 'en', 1, 'https://ror.org/038h9k518 Museum of History and Art'),
(26398, 'https://ror.org/04j1sf085', 'en', 1, 'https://ror.org/04j1sf085 Maryland State Archives'),
(26399, 'https://ror.org/04a5aqx80', 'en', 1, 'https://ror.org/04a5aqx80 Museum of Indian Arts and Culture'),
(26400, 'https://ror.org/029w8yh46', 'en', 1, 'https://ror.org/029w8yh46 Jacksonville Public Library'),
(26401, 'https://ror.org/050b5gf77', 'en', 1, 'https://ror.org/050b5gf77 Museum of Photographic Arts'),
(26402, 'https://ror.org/0033vjp52', 'en', 1, 'https://ror.org/0033vjp52 Museum of the Cherokee Indian'),
(26403, 'https://ror.org/054m2gy59', 'en', 1, 'https://ror.org/054m2gy59 Jacques Marchais Center of Tibetan Art'),
(26404, 'https://ror.org/00mct1g07', 'en', 1, 'https://ror.org/00mct1g07 Museum of the City of New York'),
(26405, 'https://ror.org/01rx5pn96', 'en', 1, 'https://ror.org/01rx5pn96 Mashantucket Pequot Museum and Research Center'),
(26406, 'https://ror.org/01f5z6908', 'en', 1, 'https://ror.org/01f5z6908 Massachusetts Archives'),
(26407, 'https://ror.org/01k21s024', 'en', 1, 'https://ror.org/01k21s024 Caldwell West Caldwell Public Schools'),
(26408, 'https://ror.org/0316yxf08', 'en', 1, 'https://ror.org/0316yxf08 Museum of the Gulf Coast'),
(26409, 'https://ror.org/0173s1z72', 'en', 1, 'https://ror.org/0173s1z72 Museum of the Moving Image'),
(26410, 'https://ror.org/0423bpd98', 'en', 1, 'https://ror.org/0423bpd98 James Sprunt Community College'),
(26411, 'https://ror.org/00vx77439', 'en', 1, 'https://ror.org/00vx77439 National Association for Equal Opportunity in Higher Education'),
(26412, 'https://ror.org/01eq17163', 'en', 1, 'https://ror.org/01eq17163 James V Brown Library'),
(26413, 'https://ror.org/03sk68310', 'en', 1, 'https://ror.org/03sk68310 Larz Anderson Auto Museum'),
(26414, 'https://ror.org/01ka28180', 'en', 1, 'https://ror.org/01ka28180 Massachusetts College of Liberal Arts'),
(26415, 'https://ror.org/05knchj06', 'en', 1, 'https://ror.org/05knchj06 National Afro-American Museum and Cultural Center'),
(26416, 'https://ror.org/02rc7w578', 'en', 1, 'https://ror.org/02rc7w578 National Alliance of Black School Educators'),
(26417, 'https://ror.org/02nct1437', 'en', 1, 'https://ror.org/02nct1437 Japanese American National Museum'),
(26418, 'https://ror.org/031rbbf63', 'en', 1, 'https://ror.org/031rbbf63 Japanese American Service Committee'),
(26419, 'https://ror.org/040nnqy18', 'en', 1, 'https://ror.org/040nnqy18 National Baseball Hall of Fame and Museum'),
(26420, 'https://ror.org/017mhpd33', 'en', 1, 'https://ror.org/017mhpd33 Massachusetts Library Association'),
(26421, 'https://ror.org/040pya631', 'en', 1, 'https://ror.org/040pya631 State Library of Massachusetts'),
(26422, 'https://ror.org/018cj0796', 'en', 1, 'https://ror.org/018cj0796 Japanese American Citizens League'),
(26423, 'https://ror.org/03yp2sd38', 'en', 1, 'https://ror.org/03yp2sd38 Massanutten Regional Library'),
(26424, 'https://ror.org/04c16pd38', 'en', 1, 'https://ror.org/04c16pd38 Jeffco Public Schools'),
(26425, 'https://ror.org/02kmhbb12', 'en', 1, 'https://ror.org/02kmhbb12 Mattatuck Museum'),
(26426, 'https://ror.org/037mm8r94', 'en', 1, 'https://ror.org/037mm8r94 National Building Museum'),
(26427, 'https://ror.org/00znvr495', 'en', 1, 'https://ror.org/00znvr495 Mattress Factory'),
(26428, 'https://ror.org/02q22s572', 'en', 1, 'https://ror.org/02q22s572 National Catholic Educational Association'),
(26429, 'https://ror.org/05qk89p66', 'en', 1, 'https://ror.org/05qk89p66 Jefferson Patterson Park and Museum'),
(26430, 'https://ror.org/008vs4b49', 'en', 1, 'https://ror.org/008vs4b49 Maymont Foundation'),
(26431, 'https://ror.org/00j2vzg50', 'en', 1, 'https://ror.org/00j2vzg50 McArthur Public Library'),
(26432, 'https://ror.org/00a2bsk55', 'en', 1, 'https://ror.org/00a2bsk55 Jewish Historical Society of Greater Washington'),
(26433, 'https://ror.org/0456fjb45', 'en', 1, 'https://ror.org/0456fjb45 Jewish Museum'),
(26434, 'https://ror.org/01hvh9s85', 'en', 1, 'https://ror.org/01hvh9s85 Jewish Museum of Maryland'),
(26435, 'https://ror.org/02m3g8h90', 'en', 1, 'https://ror.org/02m3g8h90 National Children''s Museum'),
(26436, 'https://ror.org/02z51gq92', 'en', 1, 'https://ror.org/02z51gq92 National Civil Rights Museum'),
(26437, 'https://ror.org/015zf4p69', 'en', 1, 'https://ror.org/015zf4p69 Jewish Publication Society'),
(26438, 'https://ror.org/01aj86x04', 'en', 1, 'https://ror.org/01aj86x04 National Constitution Center'),
(26439, 'https://ror.org/05fybaw10', 'en', 1, 'https://ror.org/05fybaw10 National Council for History Education'),
(26440, 'https://ror.org/00z6fc259', 'en', 1, 'https://ror.org/00z6fc259 Jewish Theological Seminary'),
(26441, 'https://ror.org/04kn82687', 'en', 1, 'https://ror.org/04kn82687 McLean County Museum of History'),
(26442, 'https://ror.org/02vpqss43', 'en', 1, 'https://ror.org/02vpqss43 Meadville Public Library'),
(26443, 'https://ror.org/0274ane14', 'en', 1, 'https://ror.org/0274ane14 John Carter Brown Library'),
(26444, 'https://ror.org/00jycx546', 'en', 1, 'https://ror.org/00jycx546 John Jermain Memorial Library'),
(26445, 'https://ror.org/04p11wc95', 'en', 1, 'https://ror.org/04p11wc95 National Council for the Traditional Arts'),
(26446, 'https://ror.org/02fyfj503', 'en', 1, 'https://ror.org/02fyfj503 Media Working Group'),
(26447, 'https://ror.org/01rbtc528', 'en', 1, 'https://ror.org/01rbtc528 National Council of La Raza'),
(26448, 'https://ror.org/04zax5940', 'en', 1, 'https://ror.org/04zax5940 National Council on Public History'),
(26449, 'https://ror.org/01mqdq746', 'en', 1, 'https://ror.org/01mqdq746 Johnstown Area Heritage Association'),
(26450, 'https://ror.org/01yarzs52', 'en', 1, 'https://ror.org/01yarzs52 Medici Archive Project'),
(26451, 'https://ror.org/02c1wsz97', 'en', 1, 'https://ror.org/02c1wsz97 National Foundation for Jewish Culture'),
(26452, 'https://ror.org/04a5pdm93', 'no_lang_code', 1, 'https://ror.org/04a5pdm93 GuideStar'),
(26453, 'https://ror.org/04g3e3p90', 'en', 1, 'https://ror.org/04g3e3p90 Medieval Academy of America'),
(26454, 'https://ror.org/01pebx748', 'en', 1, 'https://ror.org/01pebx748 National Farmers Union'),
(26455, 'https://ror.org/05jg3qp42', 'en', 1, 'https://ror.org/05jg3qp42 New York Studio School of Drawing Painting and Sculpture'),
(26456, 'https://ror.org/03bg9er42', 'en', 1, 'https://ror.org/03bg9er42 New York Transit Museum'),
(26457, 'https://ror.org/01rz15025', 'en', 1, 'https://ror.org/01rz15025 New York University Press'),
(26458, 'https://ror.org/01ntn7t82', 'en', 1, 'https://ror.org/01ntn7t82 Newark Public Library'),
(26459, 'https://ror.org/0564x5q33', 'en', 1, 'https://ror.org/0564x5q33 Menaul Historical Library of the Southwest'),
(26460, 'https://ror.org/057q3ez97', 'en', 1, 'https://ror.org/057q3ez97 Newport Art Museum'),
(26461, 'https://ror.org/05wknye49', 'en', 1, 'https://ror.org/05wknye49 Center for Fiction'),
(26462, 'https://ror.org/04jxdd920', 'en', 1, 'https://ror.org/04jxdd920 Newport Beach Public Library'),
(26463, 'https://ror.org/05xyqje95', 'en', 1, 'https://ror.org/05xyqje95 Newport Historical Society'),
(26464, 'https://ror.org/03zcb0w86', 'en', 1, 'https://ror.org/03zcb0w86 Mercer Museum and Fonthill Castle'),
(26465, 'https://ror.org/00rswnr18', 'en', 1, 'https://ror.org/00rswnr18 Newport Public Library'),
(26466, 'https://ror.org/02kr5r375', 'en', 1, 'https://ror.org/02kr5r375 Meridian International Center'),
(26467, 'https://ror.org/01dk2f490', 'en', 1, 'https://ror.org/01dk2f490 Newton Public Schools'),
(26468, 'https://ror.org/03sey0f76', 'en', 1, 'https://ror.org/03sey0f76 National Nordic Museum'),
(26469, 'https://ror.org/03fmejp65', 'en', 1, 'https://ror.org/03fmejp65 Norfolk Academy'),
(26470, 'https://ror.org/05rfp8442', 'en', 1, 'https://ror.org/05rfp8442 Norman Rockwell Museum'),
(26471, 'https://ror.org/00xgkd576', 'en', 1, 'https://ror.org/00xgkd576 Mescalero Apache Tribe'),
(26472, 'https://ror.org/05rvftf63', 'en', 1, 'https://ror.org/05rvftf63 National History Center'),
(26473, 'https://ror.org/00mhtk149', 'en', 1, 'https://ror.org/00mhtk149 National History Day'),
(26474, 'https://ror.org/03syp9w72', 'en', 1, 'https://ror.org/03syp9w72 North Carolina Department of Natural and Cultural Resources'),
(26475, 'https://ror.org/02dq9yd39', 'en', 1, 'https://ror.org/02dq9yd39 North Carolina Museum of History'),
(26476, 'https://ror.org/00r9zdb57', 'en', 1, 'https://ror.org/00r9zdb57 Pueblo of Pojoaque'),
(26477, 'https://ror.org/05sk22f46', 'en', 1, 'https://ror.org/05sk22f46 Mahayana Sutra & Tantra Center'),
(26478, 'https://ror.org/050xprb61', 'en', 1, 'https://ror.org/050xprb61 Pueblo of Zuni'),
(26479, 'https://ror.org/03fgpgg24', 'en', 1, 'https://ror.org/03fgpgg24 Putnam Museum'),
(26480, 'https://ror.org/01cayw543', 'en', 1, 'https://ror.org/01cayw543 North Dakota Superintendent of Public Instruction'),
(26481, 'https://ror.org/02ct4rh41', 'en', 1, 'https://ror.org/02ct4rh41 Biblioteca Pública de Queens Queens Public Library'),
(26482, 'https://ror.org/03zcd8242', 'en', 1, 'https://ror.org/03zcd8242 Queens Museum'),
(26483, 'https://ror.org/035tbm153', 'en', 1, 'https://ror.org/035tbm153 North Star Museum of Boy Scouting and Girl Scouting'),
(26484, 'https://ror.org/03yezd949', 'en', 1, 'https://ror.org/03yezd949 Quinebaug Valley Community College'),
(26485, 'https://ror.org/01q4jy609', 'en', 1, 'https://ror.org/01q4jy609 Radio America'),
(26486, 'https://ror.org/03emyn761', 'en', 1, 'https://ror.org/03emyn761 Radio Diaries'),
(26487, 'https://ror.org/02mq5h296', 'en', 1, 'https://ror.org/02mq5h296 Communal Societies Association'),
(26488, 'https://ror.org/02vwn4357', 'en', 1, 'https://ror.org/02vwn4357 National Humanities Center'),
(26489, 'https://ror.org/01ct2zf81', 'en', 1, 'https://ror.org/01ct2zf81 North Dakota State Railroad Museum'),
(26490, 'https://ror.org/00kza6883', 'en', 1, 'https://ror.org/00kza6883 National Italian American Foundation'),
(26491, 'https://ror.org/00cwqzv43', 'en', 1, 'https://ror.org/00cwqzv43 Northeast Historic Film'),
(26492, 'https://ror.org/0558rq776', 'en', 1, 'https://ror.org/0558rq776 Ramsey County Historical Society'),
(26493, 'https://ror.org/053bxpc30', 'en', 1, 'https://ror.org/053bxpc30 National Japanese American Historical Society'),
(26494, 'https://ror.org/042v18a02', 'en', 1, 'https://ror.org/042v18a02 Northern Seminary'),
(26495, 'https://ror.org/00dj68t85', 'en', 1, 'https://ror.org/00dj68t85 Bishop John T. Walker National Learning Center'),
(26496, 'https://ror.org/04zxxm138', 'en', 1, 'https://ror.org/04zxxm138 Reading Area Community College'),
(26497, 'https://ror.org/0210z5p53', 'en', 1, 'https://ror.org/0210z5p53 Northern Virginia Regional Park Authority'),
(26498, 'https://ror.org/00jy45w85', 'en', 1, 'https://ror.org/00jy45w85 Northland Community and Technical College'),
(26499, 'https://ror.org/021myjd74', 'en', 1, 'https://ror.org/021myjd74 National Museum of Mexican Art'),
(26500, 'https://ror.org/04981wd25', 'en', 1, 'https://ror.org/04981wd25 Reconstructionist Rabbinical College'),
(26501, 'https://ror.org/02r3m1966', 'en', 1, 'https://ror.org/02r3m1966 National Museum of Wildlife Art'),
(26502, 'https://ror.org/02j123a71', 'en', 1, 'https://ror.org/02j123a71 National Park Foundation'),
(26503, 'https://ror.org/02x8vnm69', 'en', 1, 'https://ror.org/02x8vnm69 Noyes Museum'),
(26504, 'https://ror.org/05bmd4n09', 'en', 1, 'https://ror.org/05bmd4n09 Redwood Library and Athenaeum'),
(26505, 'https://ror.org/04rmm3734', 'en', 1, 'https://ror.org/04rmm3734 National Radio Theater'),
(26506, 'https://ror.org/00656df32', 'en', 1, 'https://ror.org/00656df32 National Society of The Colonial Dames of America'),
(26507, 'https://ror.org/00j11hr96', 'en', 1, 'https://ror.org/00j11hr96 National Symphony Orchestra'),
(26508, 'https://ror.org/055pc7h14', 'en', 1, 'https://ror.org/055pc7h14 New York City Department of Records and Information Services'),
(26509, 'https://ror.org/01qnswy10', 'en', 1, 'https://ror.org/01qnswy10 University Press of Kansas'),
(26510, 'https://ror.org/03bch0x53', 'en', 1, 'https://ror.org/03bch0x53 Oakland Museum of California'),
(26511, 'https://ror.org/021djka98', 'en', 1, 'https://ror.org/021djka98 National Underground Railroad Freedom Center'),
(26512, 'https://ror.org/04b5fcb71', 'en', 1, 'https://ror.org/04b5fcb71 Oakland Public Library'),
(26513, 'https://ror.org/01t085091', 'en', 1, 'https://ror.org/01t085091 Native American Center for the Living Arts'),
(26514, 'https://ror.org/031pz1630', 'no_lang_code', 1, 'https://ror.org/031pz1630 Crawford & Stearns (United States)'),
(26515, 'https://ror.org/0191vmf59', 'en', 1, 'https://ror.org/0191vmf59 Ocean County Library'),
(26516, 'https://ror.org/03x858v16', 'en', 1, 'https://ror.org/03x858v16 Oceanside Public Library'),
(26517, 'https://ror.org/05wx7ah15', 'en', 1, 'https://ror.org/05wx7ah15 Renaissance Society of America'),
(26518, 'https://ror.org/05ak6yg81', 'en', 1, 'https://ror.org/05ak6yg81 Reno County Museum'),
(26519, 'https://ror.org/01ysyyn95', 'en', 1, 'https://ror.org/01ysyyn95 Rensselaer County Historical Society'),
(26520, 'https://ror.org/041gg4s51', 'en', 1, 'https://ror.org/041gg4s51 Natrona County Public Library'),
(26521, 'https://ror.org/00qa31321', 'en', 1, 'https://ror.org/00qa31321 The Ohio State University at Lima'),
(26522, 'https://ror.org/0020vtt98', 'en', 1, 'https://ror.org/0020vtt98 Ohr-O''Keefe Museum Of Art'),
(26523, 'https://ror.org/03chcr159', 'en', 1, 'https://ror.org/03chcr159 Vision Maker Media'),
(26524, 'https://ror.org/02vbtbv10', 'en', 1, 'https://ror.org/02vbtbv10 Oklahoma Christian University'),
(26525, 'https://ror.org/00ca5f112', 'en', 1, 'https://ror.org/00ca5f112 Oklahoma Historical Society'),
(26526, 'https://ror.org/021fekh57', 'en', 1, 'https://ror.org/021fekh57 Rhode Island Black Heritage Society'),
(26527, 'https://ror.org/02g50bf58', 'en', 1, 'https://ror.org/02g50bf58 Natural History Museum of Utah'),
(26528, 'https://ror.org/054q67042', 'en', 1, 'https://ror.org/054q67042 Nebraska State Historical Society'),
(26529, 'https://ror.org/04bzgnv13', 'en', 1, 'https://ror.org/04bzgnv13 Oklahoma Library Association'),
(26530, 'https://ror.org/03texeh34', 'en', 1, 'https://ror.org/03texeh34 State of Rhode Island Office of Library and Information Services'),
(26531, 'https://ror.org/0431j8w40', 'en', 1, 'https://ror.org/0431j8w40 Rhode Island Historical Society'),
(26532, 'https://ror.org/05y9wk989', 'en', 1, 'https://ror.org/05y9wk989 Old Dartmouth Historical Society'),
(26533, 'https://ror.org/033ga7d50', 'en', 1, 'https://ror.org/033ga7d50 Old Independence Regional Museum'),
(26534, 'https://ror.org/01edg5683', 'en', 1, 'https://ror.org/01edg5683 Nevada Department of Tourism and Cultural Affairs'),
(26535, 'https://ror.org/03jj8rb41', 'en', 1, 'https://ror.org/03jj8rb41 Nevada State Library, Archives, and Public Records'),
(26536, 'https://ror.org/00ntmy339', 'en', 1, 'https://ror.org/00ntmy339 New Bedford Whaling Museum'),
(26537, 'https://ror.org/01v4enb76', 'en', 1, 'https://ror.org/01v4enb76 Richard Bland College'),
(26538, 'https://ror.org/02wz4qt92', 'en', 1, 'https://ror.org/02wz4qt92 New Brunswick Free Public Library'),
(26539, 'https://ror.org/04er67t26', 'en', 1, 'https://ror.org/04er67t26 Old Red Museum of Dallas County History and Culture'),
(26540, 'https://ror.org/04zwvmd78', 'en', 1, 'https://ror.org/04zwvmd78 New Castle Historical Society'),
(26541, 'https://ror.org/04v5m9m10', 'en', 1, 'https://ror.org/04v5m9m10 New England Conservatory of Music'),
(26542, 'https://ror.org/03q05qn16', 'en', 1, 'https://ror.org/03q05qn16 Richard I. Bong Veterans Historical Center'),
(26543, 'https://ror.org/05bdemk73', 'en', 1, 'https://ror.org/05bdemk73 Old South Association'),
(26544, 'https://ror.org/051bbhe61', 'en', 1, 'https://ror.org/051bbhe61 Old Stone House'),
(26545, 'https://ror.org/0232btn91', 'en', 1, 'https://ror.org/0232btn91 New England Historic Genealogical Society'),
(26546, 'https://ror.org/04bxdha50', 'en', 1, 'https://ror.org/04bxdha50 New England Quilt Museum'),
(26547, 'https://ror.org/017b2mp08', 'en', 1, 'https://ror.org/017b2mp08 Old Sturbridge Village'),
(26548, 'https://ror.org/02ggacn82', 'en', 1, 'https://ror.org/02ggacn82 New Hampshire Historical Society'),
(26549, 'https://ror.org/05vgwdg09', 'en', 1, 'https://ror.org/05vgwdg09 Richards Free Library'),
(26550, 'https://ror.org/014bfp158', 'en', 1, 'https://ror.org/014bfp158 OASIS Institute'),
(26551, 'https://ror.org/00wzykr41', 'en', 1, 'https://ror.org/00wzykr41 New Hampshire State Library'),
(26552, 'https://ror.org/02fprm943', 'en', 1, 'https://ror.org/02fprm943 Oberlin Heritage Center'),
(26553, 'https://ror.org/05y7mt438', 'en', 1, 'https://ror.org/05y7mt438 Richmond Public Library'),
(26554, 'https://ror.org/04jta8a45', 'en', 1, 'https://ror.org/04jta8a45 Ohio History Connection'),
(26555, 'https://ror.org/014tq2r65', 'en', 1, 'https://ror.org/014tq2r65 Imaginarium of South Texas'),
(26556, 'https://ror.org/04pvpk743', 'en', 1, 'https://ror.org/04pvpk743 University of New Hampshire at Manchester'),
(26557, 'https://ror.org/03e7c0529', 'en', 1, 'https://ror.org/03e7c0529 Ridgewood Public Schools'),
(26558, 'https://ror.org/01e9k5563', 'en', 1, 'https://ror.org/01e9k5563 New Hanover County Public Library'),
(26559, 'https://ror.org/05s1mjj45', 'en', 1, 'https://ror.org/05s1mjj45 Retrospective Index to Music Periodicals'),
(26560, 'https://ror.org/00x7x0z13', 'en', 1, 'https://ror.org/00x7x0z13 New Jersey Community College Consortium For Workforce & Economic Development'),
(26561, 'https://ror.org/00fnehe27', 'en', 1, 'https://ror.org/00fnehe27 Riverside Metropolitan Museum'),
(26562, 'https://ror.org/00sxgks21', 'en', 1, 'https://ror.org/00sxgks21 New Jersey Historical Society'),
(26563, 'https://ror.org/02xbkp909', 'en', 1, 'https://ror.org/02xbkp909 Riverside County Parks'),
(26564, 'https://ror.org/025yf4572', 'en', 1, 'https://ror.org/025yf4572 New Jersey State Library'),
(26565, 'https://ror.org/04bx7h761', 'en', 1, 'https://ror.org/04bx7h761 Museums of Old York'),
(26566, 'https://ror.org/027ngh677', 'en', 1, 'https://ror.org/027ngh677 Roberson Museum and Science Center'),
(26567, 'https://ror.org/055q7hq94', 'en', 1, 'https://ror.org/055q7hq94 New Mexico Commission of Public Records'),
(26568, 'https://ror.org/03w99kr42', 'en', 1, 'https://ror.org/03w99kr42 New Orleans Jazz & Heritage Festival and Foundation'),
(26569, 'https://ror.org/010j1fa26', 'en', 1, 'https://ror.org/010j1fa26 History Center of Olmsted County'),
(26570, 'https://ror.org/030z21q40', 'en', 1, 'https://ror.org/030z21q40 Orleans Parish Civil Clerk of Court'),
(26571, 'https://ror.org/01v6rb042', 'en', 1, 'https://ror.org/01v6rb042 New Orleans Public Library'),
(26572, 'https://ror.org/05y3w6z74', 'en', 1, 'https://ror.org/05y3w6z74 Omaha Public Library'),
(26573, 'https://ror.org/03gqgr248', 'en', 1, 'https://ror.org/03gqgr248 New Rochelle Public Library'),
(26574, 'https://ror.org/0457r1112', 'en', 1, 'https://ror.org/0457r1112 New York City Municipal Archives'),
(26575, 'https://ror.org/00n357243', 'en', 1, 'https://ror.org/00n357243 New York Folklore Society'),
(26576, 'https://ror.org/03xnq6b79', 'en', 1, 'https://ror.org/03xnq6b79 New York State Historical Association'),
(26577, 'https://ror.org/04fmzje57', 'en', 1, 'https://ror.org/04fmzje57 Rare Book School'),
(26578, 'https://ror.org/02afr7y67', 'en', 1, 'https://ror.org/02afr7y67 Onondaga County Public Library'),
(26579, 'https://ror.org/008p8p838', 'en', 1, 'https://ror.org/008p8p838 Ontario County Historical Society'),
(26580, 'https://ror.org/002yd0837', 'en', 1, 'https://ror.org/002yd0837 New York State Office of Parks, Recreation and Historic Preservation'),
(26581, 'https://ror.org/030jhgm36', 'en', 1, 'https://ror.org/030jhgm36 Rappahannock Community College'),
(26582, 'https://ror.org/04xbyac61', 'en', 1, 'https://ror.org/04xbyac61 Danville Community College'),
(26583, 'https://ror.org/041dvv921', 'en', 1, 'https://ror.org/041dvv921 Orange County Library System'),
(26584, 'https://ror.org/037gzsw41', 'en', 1, 'https://ror.org/037gzsw41 Robert S. Peabody Museum of Archaeology'),
(26585, 'https://ror.org/01y9hq132', 'en', 1, 'https://ror.org/01y9hq132 Oregon Historical Society'),
(26586, 'https://ror.org/05fz45v32', 'en', 1, 'https://ror.org/05fz45v32 Boundless Readers'),
(26587, 'https://ror.org/04v55rk33', 'en', 1, 'https://ror.org/04v55rk33 St. Louis Public Schools'),
(26588, 'https://ror.org/01bnbne13', 'en', 1, 'https://ror.org/01bnbne13 Rochester Hills Public Library'),
(26589, 'https://ror.org/00869mm41', 'en', 1, 'https://ror.org/00869mm41 Rochester Historical Society'),
(26590, 'https://ror.org/054j84f79', 'en', 1, 'https://ror.org/054j84f79 St. Louis University High School'),
(26591, 'https://ror.org/05vk02k31', 'en', 1, 'https://ror.org/05vk02k31 St. Lucie County Regional History Center'),
(26592, 'https://ror.org/01rvscc63', 'en', 1, 'https://ror.org/01rvscc63 Ossabaw Island Foundation'),
(26593, 'https://ror.org/03qba2h82', 'en', 1, 'https://ror.org/03qba2h82 Ouachita Parish Public Library'),
(26594, 'https://ror.org/05xdrya09', 'en', 1, 'https://ror.org/05xdrya09 Rock Point Community School'),
(26595, 'https://ror.org/05gb7hz97', 'en', 1, 'https://ror.org/05gb7hz97 Oxnard Public Library'),
(26596, 'https://ror.org/0324psq83', 'en', 1, 'https://ror.org/0324psq83 National Center for Jewish Film'),
(26597, 'https://ror.org/04j14gs18', 'en', 1, 'https://ror.org/04j14gs18 Rockland Memorial Library'),
(26598, 'https://ror.org/01aacw488', 'en', 1, 'https://ror.org/01aacw488 Historic St. Mary’s City Commission'),
(26599, 'https://ror.org/03dwyrh96', 'en', 1, 'https://ror.org/03dwyrh96 Rocky Mount Museum'),
(26600, 'https://ror.org/04q7z3j57', 'en', 1, 'https://ror.org/04q7z3j57 Saint Paul Public Library'),
(26601, 'https://ror.org/04w11h594', 'en', 1, 'https://ror.org/04w11h594 Pacific Science Center'),
(26602, 'https://ror.org/02exm7r59', 'en', 1, 'https://ror.org/02exm7r59 Rokeby Museum'),
(26603, 'https://ror.org/03q5knn53', 'en', 1, 'https://ror.org/03q5knn53 Pacifica Foundation'),
(26604, 'https://ror.org/0500dec37', 'en', 1, 'https://ror.org/0500dec37 Packwood House Museum'),
(26605, 'https://ror.org/02y0s5375', 'en', 1, 'https://ror.org/02y0s5375 Roland Park Country School'),
(26606, 'https://ror.org/009yykm50', 'en', 1, 'https://ror.org/009yykm50 Palm Springs Art Museum'),
(26607, 'https://ror.org/046k2tb30', 'en', 1, 'https://ror.org/046k2tb30 Washington State Board for Community and Technical Colleges'),
(26608, 'https://ror.org/00qqt8p51', 'en', 1, 'https://ror.org/00qqt8p51 Rolling Hills Library'),
(26609, 'https://ror.org/027thw408', 'en', 1, 'https://ror.org/027thw408 Palo Alto Unified School District'),
(26610, 'https://ror.org/03s0h5h67', 'en', 1, 'https://ror.org/03s0h5h67 Panhandle Plains Historical Museum'),
(26611, 'https://ror.org/02gkave86', 'en', 1, 'https://ror.org/02gkave86 Rosenbach Museum and Library'),
(26612, 'https://ror.org/000zjjz42', 'en', 1, 'https://ror.org/000zjjz42 Russell Library'),
(26613, 'https://ror.org/025ycfy09', 'en', 1, 'https://ror.org/025ycfy09 Iowa Department of Cultural Affairs'),
(26614, 'https://ror.org/003pkj597', 'en', 1, 'https://ror.org/003pkj597 State Historical Society of North Dakota'),
(26615, 'https://ror.org/01xq9f254', 'en', 1, 'https://ror.org/01xq9f254 State Legislative Leaders Foundation'),
(26616, 'https://ror.org/00axxxt35', 'en', 1, 'https://ror.org/00axxxt35 Parkway School District'),
(26617, 'https://ror.org/05fzsym71', 'en', 1, 'https://ror.org/05fzsym71 Billings Public Library'),
(26618, 'https://ror.org/03f4hkk83', 'en', 1, 'https://ror.org/03f4hkk83 Rutherford B. Hayes Presidential Center'),
(26619, 'https://ror.org/05f3by596', 'en', 1, 'https://ror.org/05f3by596 Parrish Art Museum'),
(26620, 'https://ror.org/043519573', 'en', 1, 'https://ror.org/043519573 Rutland Free Library'),
(26621, 'https://ror.org/0519z5y48', 'en', 1, 'https://ror.org/0519z5y48 Staten Island Children''s Museum'),
(26622, 'https://ror.org/02cmz8k74', 'en', 1, 'https://ror.org/02cmz8k74 Parsons School of Design'),
(26623, 'https://ror.org/025p05r74', 'en', 1, 'https://ror.org/025p05r74 Sachem Public Library'),
(26624, 'https://ror.org/01pr3g631', 'en', 1, 'https://ror.org/01pr3g631 Staten Island Historical Society'),
(26625, 'https://ror.org/050ky8958', 'en', 1, 'https://ror.org/050ky8958 Stearns History Museum'),
(26626, 'https://ror.org/018cbs791', 'en', 1, 'https://ror.org/018cbs791 Salt Lake City Public Library'),
(26627, 'https://ror.org/059fxrr07', 'en', 1, 'https://ror.org/059fxrr07 Partners for Livable Places'),
(26628, 'https://ror.org/03v2fas56', 'en', 1, 'https://ror.org/03v2fas56 Paul Quinn College'),
(26629, 'https://ror.org/01d1mtx18', 'en', 1, 'https://ror.org/01d1mtx18 Stillwater Public Library'),
(26630, 'https://ror.org/004h6zh49', 'en', 1, 'https://ror.org/004h6zh49 Samuel S. Fleisher Art Memorial'),
(26631, 'https://ror.org/023y0xv72', 'en', 1, 'https://ror.org/023y0xv72 Paul Revere Memorial Association'),
(26632, 'https://ror.org/03jhw8y69', 'en', 1, 'https://ror.org/03jhw8y69 Stockbridge Library Association'),
(26633, 'https://ror.org/02vz8g891', 'en', 1, 'https://ror.org/02vz8g891 San Antonio Museum of Art'),
(26634, 'https://ror.org/00syfh407', 'en', 1, 'https://ror.org/00syfh407 Strawbery Banke Museum'),
(26635, 'https://ror.org/01atxym92', 'en', 1, 'https://ror.org/01atxym92 Peabody Institute Library'),
(26636, 'https://ror.org/0244fjs95', 'en', 1, 'https://ror.org/0244fjs95 San Antonio Public Library'),
(26637, 'https://ror.org/0204dk470', 'en', 1, 'https://ror.org/0204dk470 Stuhr Museum'),
(26638, 'https://ror.org/00zs3p911', 'en', 1, 'https://ror.org/00zs3p911 San Antonio Public Library Foundation'),
(26639, 'https://ror.org/01224kh78', 'en', 1, 'https://ror.org/01224kh78 Sunflower County Library'),
(26640, 'https://ror.org/04j59hx92', 'en', 1, 'https://ror.org/04j59hx92 William Peace University'),
(26641, 'https://ror.org/05hpa0166', 'en', 1, 'https://ror.org/05hpa0166 Pejepscot Historical Society'),
(26642, 'https://ror.org/003nhtz06', 'en', 1, 'https://ror.org/003nhtz06 Pekin Public Library'),
(26643, 'https://ror.org/04phxhf89', 'en', 1, 'https://ror.org/04phxhf89 San Francisco Museum of Modern Art'),
(26644, 'https://ror.org/01qkgph35', 'en', 1, 'https://ror.org/01qkgph35 Pennsbury Manor'),
(26645, 'https://ror.org/013v4ng57', 'en', 1, 'https://ror.org/013v4ng57 Biblioteca Pública de San Francisco Bibliothèque publique de san francisco San Francisco Public Library'),
(26646, 'https://ror.org/005qaye06', 'en', 1, 'https://ror.org/005qaye06 Beaux-arts de pennsylvanie Pennsylvania Academy of the Fine Arts'),
(26647, 'https://ror.org/054ff8869', 'en', 1, 'https://ror.org/054ff8869 San Francisco Symphony'),
(26648, 'https://ror.org/03txa8766', 'en', 1, 'https://ror.org/03txa8766 Supreme Court Historical Society'),
(26649, 'https://ror.org/01jwftv68', 'en', 1, 'https://ror.org/01jwftv68 San Joaquin County Historical Society & Museum'),
(26650, 'https://ror.org/02fcwvm90', 'en', 1, 'https://ror.org/02fcwvm90 Suquamish Museum'),
(26651, 'https://ror.org/00402nc75', 'en', 1, 'https://ror.org/00402nc75 Pennsylvania Historical and Museum Commission'),
(26652, 'https://ror.org/01zzs2082', 'en', 1, 'https://ror.org/01zzs2082 Swedish American Historical Society'),
(26653, 'https://ror.org/02btq3988', 'en', 1, 'https://ror.org/02btq3988 Sweetwater County Historical Museum'),
(26654, 'https://ror.org/02j1b8103', 'en', 1, 'https://ror.org/02j1b8103 San Mateo County History Museum'),
(26655, 'https://ror.org/03a367103', 'en', 1, 'https://ror.org/03a367103 Sandusky Library'),
(26656, 'https://ror.org/01n85yk97', 'en', 1, 'https://ror.org/01n85yk97 Stephen Phillips Memorial Trust House in Salem'),
(26657, 'https://ror.org/02wy0t670', 'en', 1, 'https://ror.org/02wy0t670 Talladega Public Library'),
(26658, 'https://ror.org/00711xr15', 'en', 1, 'https://ror.org/00711xr15 Tallahassee Museum'),
(26659, 'https://ror.org/01y82bt90', 'no_lang_code', 1, 'https://ror.org/01y82bt90 Tamástslikt Cultural Institute'),
(26660, 'https://ror.org/01563cr83', 'en', 1, 'https://ror.org/01563cr83 Santa Barbara Museum of Art'),
(26661, 'https://ror.org/001jzfx32', 'en', 1, 'https://ror.org/001jzfx32 Santa Barbara Trust for Historic Preservation'),
(26662, 'https://ror.org/01scq9q08', 'no_lang_code', 1, 'https://ror.org/01scq9q08 Tanadgusix (United States)'),
(26663, 'https://ror.org/031eg3302', 'en', 1, 'https://ror.org/031eg3302 Teaneck Public Library'),
(26664, 'https://ror.org/01sg1cf32', 'en', 1, 'https://ror.org/01sg1cf32 Santa Monica Public Library'),
(26665, 'https://ror.org/00aahf144', 'en', 1, 'https://ror.org/00aahf144 Telfair Museum of Art'),
(26666, 'https://ror.org/01jyq0293', 'en', 1, 'https://ror.org/01jyq0293 Tennessee Historical Society'),
(26667, 'https://ror.org/009jm4h46', 'en', 1, 'https://ror.org/009jm4h46 Sara Hightower Regional Library System'),
(26668, 'https://ror.org/00bt5t811', 'en', 1, 'https://ror.org/00bt5t811 Tennessee State Museum'),
(26669, 'https://ror.org/01295by53', 'en', 1, 'https://ror.org/01295by53 Terrebonne Parish Library'),
(26670, 'https://ror.org/04h2cjt54', 'no_lang_code', 1, 'https://ror.org/04h2cjt54 Brookside Museum'),
(26671, 'https://ror.org/0192kva73', 'en', 1, 'https://ror.org/0192kva73 Teton County Library'),
(26672, 'https://ror.org/026g5rw93', 'en', 1, 'https://ror.org/026g5rw93 Pensacola Historical Society'),
(26673, 'https://ror.org/04gbh9h57', 'en', 1, 'https://ror.org/04gbh9h57 Perkins School for Blind'),
(26674, 'https://ror.org/030hvht91', 'en', 1, 'https://ror.org/030hvht91 Texas Folklife Resources'),
(26675, 'https://ror.org/018g81q42', 'en', 1, 'https://ror.org/018g81q42 Comisión Histórica de Texas Texas Historical Commission'),
(26676, 'https://ror.org/02ra15158', 'en', 1, 'https://ror.org/02ra15158 Persian Heritage Foundation'),
(26677, 'https://ror.org/00msaq364', 'en', 1, 'https://ror.org/00msaq364 Sault Ste. Marie Area Public Schools'),
(26678, 'https://ror.org/030wf7z82', 'en', 1, 'https://ror.org/030wf7z82 Texas State Historical Association'),
(26679, 'https://ror.org/04yhjzf92', 'en', 1, 'https://ror.org/04yhjzf92 Savannah College of Art and Design'),
(26680, 'https://ror.org/01s1qps03', 'en', 1, 'https://ror.org/01s1qps03 American Academic Research Institute in Iraq'),
(26681, 'https://ror.org/05077g455', 'en', 1, 'https://ror.org/05077g455 Save Ellis Island'),
(26682, 'https://ror.org/01t588655', 'no_lang_code', 1, 'https://ror.org/01t588655 Theatre for a New Audience'),
(26683, 'https://ror.org/03whgpr22', 'en', 1, 'https://ror.org/03whgpr22 Scarsdale Historical Society'),
(26684, 'https://ror.org/03mnd3q76', 'en', 1, 'https://ror.org/03mnd3q76 Thomas Aquinas College'),
(26685, 'https://ror.org/050041j09', 'en', 1, 'https://ror.org/050041j09 Philadelphia Museum of Art'),
(26686, 'https://ror.org/040yze711', 'en', 1, 'https://ror.org/040yze711 Schenectady County Historical Society'),
(26687, 'https://ror.org/004yhfd32', 'en', 1, 'https://ror.org/004yhfd32 Museum of Innovation and Science'),
(26688, 'https://ror.org/01eqdrh28', 'en', 1, 'https://ror.org/01eqdrh28 Thousand Islands Museum'),
(26689, 'https://ror.org/015ndca91', 'en', 1, 'https://ror.org/015ndca91 Three Village Historical Society'),
(26690, 'https://ror.org/050yj3e54', 'en', 1, 'https://ror.org/050yj3e54 Tohono O''odham Nation'),
(26691, 'https://ror.org/006r53q22', 'en', 1, 'https://ror.org/006r53q22 Tom Lea Institute'),
(26692, 'https://ror.org/05jqxc143', 'en', 1, 'https://ror.org/05jqxc143 School District of Lee County'),
(26693, 'https://ror.org/03xywcv04', 'en', 1, 'https://ror.org/03xywcv04 Phoenix Art Museum'),
(26694, 'https://ror.org/03b3s2n43', 'en', 1, 'https://ror.org/03b3s2n43 Piedmont Community College'),
(26695, 'https://ror.org/02egpvc59', 'en', 1, 'https://ror.org/02egpvc59 Pierce County Library System'),
(26696, 'https://ror.org/03ekmr487', 'en', 1, 'https://ror.org/03ekmr487 Morgan Library and Museum'),
(26697, 'https://ror.org/02fs2ee62', 'en', 1, 'https://ror.org/02fs2ee62 University of Pikeville Université de pikeville'),
(26698, 'https://ror.org/000wbnn77', 'en', 1, 'https://ror.org/000wbnn77 Texarkana Regional Arts and Humanities Council'),
(26699, 'https://ror.org/05ddme474', 'en', 1, 'https://ror.org/05ddme474 Tucson Museum of Art'),
(26700, 'https://ror.org/02aq38w28', 'en', 1, 'https://ror.org/02aq38w28 Lackawanna County Library System'),
(26701, 'https://ror.org/016ck0282', 'en', 1, 'https://ror.org/016ck0282 Pima County Public Library'),
(26702, 'https://ror.org/03zyppr86', 'en', 1, 'https://ror.org/03zyppr86 Tulsa City-County Library'),
(26703, 'https://ror.org/04swmc963', 'en', 1, 'https://ror.org/04swmc963 Pilgrim Hall Museum'),
(26704, 'https://ror.org/03ct11z80', 'en', 1, 'https://ror.org/03ct11z80 Scurry County Museum'),
(26705, 'https://ror.org/005mtxn43', 'en', 1, 'https://ror.org/005mtxn43 Tunica Museum'),
(26706, 'https://ror.org/01x7y0t66', 'en', 1, 'https://ror.org/01x7y0t66 Tuscaloosa Public Library'),
(26707, 'https://ror.org/01qg39d38', 'en', 1, 'https://ror.org/01qg39d38 Old Swedes Foundation'),
(26708, 'https://ror.org/01fzwn388', 'no_lang_code', 1, 'https://ror.org/01fzwn388 Józef Piłsudski Institute of America'),
(26709, 'https://ror.org/021wtff78', 'en', 1, 'https://ror.org/021wtff78 Seattle Art Museum'),
(26710, 'https://ror.org/05marek63', 'en', 1, 'https://ror.org/05marek63 Colorado Springs Pioneers Museum'),
(26711, 'https://ror.org/03t7yan60', 'en', 1, 'https://ror.org/03t7yan60 Seattle Public Library'),
(26712, 'https://ror.org/0236zx722', 'no_lang_code', 1, 'https://ror.org/0236zx722 Gundalow (United States)'),
(26713, 'https://ror.org/01x5f7a18', 'en', 1, 'https://ror.org/01x5f7a18 Byzantine Studies Association of North America'),
(26714, 'https://ror.org/02x04jw38', 'en', 1, 'https://ror.org/02x04jw38 Children''s Museum of Pittsburgh'),
(26715, 'https://ror.org/03j5g0n26', 'en', 1, 'https://ror.org/03j5g0n26 USS Constitution Museum'),
(26716, 'https://ror.org/008642w33', 'en', 1, 'https://ror.org/008642w33 Plains Art Museum'),
(26717, 'https://ror.org/02p4ap272', 'en', 1, 'https://ror.org/02p4ap272 Seneca Falls Historical Society'),
(26718, 'https://ror.org/0174xeh18', 'en', 1, 'https://ror.org/0174xeh18 Plains Indians & Pioneers Museum'),
(26719, 'https://ror.org/024t55b22', 'en', 1, 'https://ror.org/024t55b22 Ulysses S. Grant Association'),
(26720, 'https://ror.org/05jesdm52', 'en', 1, 'https://ror.org/05jesdm52 Union Theological Seminary'),
(26721, 'https://ror.org/0365emg19', 'en', 1, 'https://ror.org/0365emg19 Captain Avery Museum'),
(26722, 'https://ror.org/00v8tm605', 'en', 1, 'https://ror.org/00v8tm605 United South End Settlements'),
(26723, 'https://ror.org/01asxey89', 'en', 1, 'https://ror.org/01asxey89 Please Touch Museum'),
(26724, 'https://ror.org/03vwtwp93', 'en', 1, 'https://ror.org/03vwtwp93 Pocumtuck Valley Memorial Association'),
(26725, 'https://ror.org/03r1fjj85', 'en', 1, 'https://ror.org/03r1fjj85 Shaker Museum Mount Lebanon'),
(26726, 'https://ror.org/01kcmgv15', 'en', 1, 'https://ror.org/01kcmgv15 Shakespeare and Company'),
(26727, 'https://ror.org/00ghnnz67', 'en', 1, 'https://ror.org/00ghnnz67 Unity Productions Foundation'),
(26728, 'https://ror.org/033z56h08', 'en', 1, 'https://ror.org/033z56h08 Polish American Historical Association'),
(26729, 'https://ror.org/00g8avn41', 'en', 1, 'https://ror.org/00g8avn41 Portland Art Museum'),
(26730, 'https://ror.org/03dj8sp02', 'en', 1, 'https://ror.org/03dj8sp02 Providence Montana Health Foundation'),
(26731, 'https://ror.org/00ft99q05', 'en', 1, 'https://ror.org/00ft99q05 Portland Museum'),
(26732, 'https://ror.org/05jk8qm79', 'en', 1, 'https://ror.org/05jk8qm79 Portland Public Library'),
(26733, 'https://ror.org/0367q9f19', 'no_lang_code', 1, 'https://ror.org/0367q9f19 Shakespeare Theatre Company'),
(26734, 'https://ror.org/00xmaxz39', 'no_lang_code', 1, 'https://ror.org/00xmaxz39 Portland Stage (United States)'),
(26735, 'https://ror.org/0324chf70', 'en', 1, 'https://ror.org/0324chf70 Sheffield Historical Society'),
(26736, 'https://ror.org/01dtz7721', 'en', 1, 'https://ror.org/01dtz7721 Shelburne Museum'),
(26737, 'https://ror.org/001vaag74', 'en', 1, 'https://ror.org/001vaag74 Poughkeepsie Public Library District'),
(26738, 'https://ror.org/00xe94w55', 'en', 1, 'https://ror.org/00xe94w55 Pre Columbian Art Research Institute'),
(26739, 'https://ror.org/05t7j2034', 'en', 1, 'https://ror.org/05t7j2034 Preble County Historical Society'),
(26740, 'https://ror.org/038j0hg40', 'en', 1, 'https://ror.org/038j0hg40 Shelton History Center'),
(26741, 'https://ror.org/013yz2z49', 'en', 1, 'https://ror.org/013yz2z49 Presbyterian Historical Society'),
(26742, 'https://ror.org/015vt5466', 'en', 1, 'https://ror.org/015vt5466 Preservation Society of Newport County'),
(26743, 'https://ror.org/01x3s6v81', 'en', 1, 'https://ror.org/01x3s6v81 Primary Source'),
(26744, 'https://ror.org/02hpqxd69', 'en', 1, 'https://ror.org/02hpqxd69 Slater Mill'),
(26745, 'https://ror.org/003gx4r22', 'en', 1, 'https://ror.org/003gx4r22 University of Georgia Press'),
(26746, 'https://ror.org/01d4s2403', 'en', 1, 'https://ror.org/01d4s2403 Prince William County Public Schools'),
(26747, 'https://ror.org/004j0wk96', 'en', 1, 'https://ror.org/004j0wk96 Princeton Theological Seminary'),
(26748, 'https://ror.org/05xwxh996', 'en', 1, 'https://ror.org/05xwxh996 Snug Harbor Cultural Center & Botanical Garden'),
(26749, 'https://ror.org/02dzk6f82', 'en', 1, 'https://ror.org/02dzk6f82 Providence Athenaeum'),
(26750, 'https://ror.org/00fc27062', 'en', 1, 'https://ror.org/00fc27062 Providence Public Library'),
(26751, 'https://ror.org/02450sh88', 'en', 1, 'https://ror.org/02450sh88 Society for American Music'),
(26752, 'https://ror.org/017fw5s62', 'en', 1, 'https://ror.org/017fw5s62 Des Moines Public Library'),
(26753, 'https://ror.org/00k82dv87', 'en', 1, 'https://ror.org/00k82dv87 Society for Classical Studies'),
(26754, 'https://ror.org/01y5jsp78', 'en', 1, 'https://ror.org/01y5jsp78 Public Radio International'),
(26755, 'https://ror.org/0019bf448', 'en', 1, 'https://ror.org/0019bf448 University of Pittsburgh at Bradford'),
(26756, 'https://ror.org/04kj21e96', 'en', 1, 'https://ror.org/04kj21e96 Society for Historians of the Early American Republic'),
(26757, 'https://ror.org/02b394754', 'en', 1, 'https://ror.org/02b394754 University of Pittsburgh at Greensburg'),
(26758, 'https://ror.org/04nk82x68', 'en', 1, 'https://ror.org/04nk82x68 University of South Carolina Sumter'),
(26759, 'https://ror.org/01ng7yw81', 'en', 1, 'https://ror.org/01ng7yw81 Society for Values in Higher Education'),
(26760, 'https://ror.org/036y50s64', 'en', 1, 'https://ror.org/036y50s64 University Press of Kentucky'),
(26761, 'https://ror.org/0062skg93', 'en', 1, 'https://ror.org/0062skg93 University of South Florida Sarasota–Manatee'),
(26762, 'https://ror.org/016gp6x28', 'en', 1, 'https://ror.org/016gp6x28 University of South Florida St. Petersburg'),
(26763, 'https://ror.org/02czn2d69', 'en', 1, 'https://ror.org/02czn2d69 Society of Architectural Historians'),
(26764, 'https://ror.org/02ntrvv07', 'en', 1, 'https://ror.org/02ntrvv07 University Press of New England'),
(26765, 'https://ror.org/05v0vxa20', 'en', 1, 'https://ror.org/05v0vxa20 Los Angeles Education Partnership'),
(26766, 'https://ror.org/0029qfe93', 'en', 1, 'https://ror.org/0029qfe93 Society of Biblical Literature'),
(26767, 'https://ror.org/03qmqe950', 'en', 1, 'https://ror.org/03qmqe950 Utah Library Association'),
(26768, 'https://ror.org/057m8sk45', 'en', 1, 'https://ror.org/057m8sk45 Society of Early Americanists'),
(26769, 'https://ror.org/02pxj5t37', 'en', 1, 'https://ror.org/02pxj5t37 Utah State Historical Society'),
(26770, 'https://ror.org/01d606394', 'en', 1, 'https://ror.org/01d606394 Shoshone Episcopal Mission'),
(26771, 'https://ror.org/02wq67465', 'en', 1, 'https://ror.org/02wq67465 Solomon R. Guggenheim Museum'),
(26772, 'https://ror.org/052d5p297', 'en', 1, 'https://ror.org/052d5p297 Somerville Museum'),
(26773, 'https://ror.org/02wsybq15', 'en', 1, 'https://ror.org/02wsybq15 Museum of Ventura County'),
(26774, 'https://ror.org/00e5rqn68', 'en', 1, 'https://ror.org/00e5rqn68 Sonoma County Library'),
(26775, 'https://ror.org/01hw7a574', 'en', 1, 'https://ror.org/01hw7a574 Vermilion Parish Library'),
(26776, 'https://ror.org/03wpvxm81', 'en', 1, 'https://ror.org/03wpvxm81 Windward Community College'),
(26777, 'https://ror.org/00y64xg88', 'en', 1, 'https://ror.org/00y64xg88 Vermont Folklife Center'),
(26778, 'https://ror.org/020t5em76', 'en', 1, 'https://ror.org/020t5em76 Museum of Sonoma County'),
(26779, 'https://ror.org/01zdg1s07', 'en', 1, 'https://ror.org/01zdg1s07 Vermont Historical Society');
INSERT INTO `rors` VALUES
(26780, 'https://ror.org/0024s9602', 'en', 1, 'https://ror.org/0024s9602 Vermont Public Radio'),
(26781, 'https://ror.org/04345w666', 'en', 1, 'https://ror.org/04345w666 Vermont Ski and Snowboard Museum'),
(26782, 'https://ror.org/04q3ga974', 'en', 1, 'https://ror.org/04q3ga974 Leeward Community College'),
(26783, 'https://ror.org/02m7y2120', 'en', 1, 'https://ror.org/02m7y2120 Kapiolani Community College'),
(26784, 'https://ror.org/046k1gm58', 'en', 1, 'https://ror.org/046k1gm58 Verona Public Library'),
(26785, 'https://ror.org/03keyse18', 'en', 1, 'https://ror.org/03keyse18 Vesterheim Norwegian American Museum'),
(26786, 'https://ror.org/01gffqk05', 'en', 1, 'https://ror.org/01gffqk05 Victorian Society in America'),
(26787, 'https://ror.org/02nz5n326', 'en', 1, 'https://ror.org/02nz5n326 South Carolina Historical Society'),
(26788, 'https://ror.org/01nfka669', 'en', 1, 'https://ror.org/01nfka669 South Carolina State Museum'),
(26789, 'https://ror.org/02cbm8069', 'en', 1, 'https://ror.org/02cbm8069 South Coast Railroad Museum'),
(26790, 'https://ror.org/050nj1e51', 'en', 1, 'https://ror.org/050nj1e51 Virginia Department of Historic Resources'),
(26791, 'https://ror.org/001t9zn91', 'en', 1, 'https://ror.org/001t9zn91 South Dakota Department of Tourism'),
(26792, 'https://ror.org/02rvdqw36', 'en', 1, 'https://ror.org/02rvdqw36 Virginia Sesquicentennial of the American Civil War Commission'),
(26793, 'https://ror.org/02b3jvc59', 'en', 1, 'https://ror.org/02b3jvc59 South Dakota State Historical Society'),
(26794, 'https://ror.org/00a7q4w79', 'en', 1, 'https://ror.org/00a7q4w79 Caribbean Cultural Center African Diaspora Institute'),
(26795, 'https://ror.org/0123ya521', 'en', 1, 'https://ror.org/0123ya521 South Dakota Library Association'),
(26796, 'https://ror.org/050cz4220', 'en', 1, 'https://ror.org/050cz4220 Vizcaya Museum & Gardens'),
(26797, 'https://ror.org/023rme066', 'en', 1, 'https://ror.org/023rme066 South Puget Sound Community College'),
(26798, 'https://ror.org/024psbf52', 'en', 1, 'https://ror.org/024psbf52 W. F. Albright Institute of Archaeological Research'),
(26799, 'https://ror.org/00648rz05', 'en', 1, 'https://ror.org/00648rz05 W. H. Over Museum'),
(26800, 'https://ror.org/01h7dw523', 'en', 1, 'https://ror.org/01h7dw523 South Street Seaport Museum'),
(26801, 'https://ror.org/03pdpfa44', 'en', 1, 'https://ror.org/03pdpfa44 Wadsworth Atheneum Museum of Art'),
(26802, 'https://ror.org/00bfxmt28', 'en', 1, 'https://ror.org/00bfxmt28 Washington National Opera'),
(26803, 'https://ror.org/01e3ztx72', 'en', 1, 'https://ror.org/01e3ztx72 Oregon Zoo'),
(26804, 'https://ror.org/00chesn46', 'en', 1, 'https://ror.org/00chesn46 Olney Carnegie Library'),
(26805, 'https://ror.org/00k9qqk71', 'en', 1, 'https://ror.org/00k9qqk71 Washington Performing Arts'),
(26806, 'https://ror.org/00ndyyr79', 'en', 1, 'https://ror.org/00ndyyr79 Walker Art Center'),
(26807, 'https://ror.org/03h79eg54', 'en', 1, 'https://ror.org/03h79eg54 Wallingford Public Library'),
(26808, 'https://ror.org/05h99gf82', 'en', 1, 'https://ror.org/05h99gf82 Walters Art Museum'),
(26809, 'https://ror.org/00f99ht56', 'en', 1, 'https://ror.org/00f99ht56 Washington State Historical Society'),
(26810, 'https://ror.org/00wx9pc76', 'en', 1, 'https://ror.org/00wx9pc76 Washakie Museum & Cultural Center'),
(26811, 'https://ror.org/00dbgmf72', 'en', 1, 'https://ror.org/00dbgmf72 Washburn Norlands Living History Center'),
(26812, 'https://ror.org/03gpmrn65', 'en', 1, 'https://ror.org/03gpmrn65 Waterloo Public Library'),
(26813, 'https://ror.org/023gw3p07', 'no_lang_code', 1, 'https://ror.org/023gw3p07 Washington Ballet (United States)'),
(26814, 'https://ror.org/01ak8sk10', 'en', 1, 'https://ror.org/01ak8sk10 Wayne County Community College District'),
(26815, 'https://ror.org/02syb3g35', 'en', 1, 'https://ror.org/02syb3g35 Washington County Museum'),
(26816, 'https://ror.org/030nhjt85', 'en', 1, 'https://ror.org/030nhjt85 Webb School of Knoxville'),
(26817, 'https://ror.org/05jq6y977', 'en', 1, 'https://ror.org/05jq6y977 Webster Museum and Historical Society'),
(26818, 'https://ror.org/04htfrz79', 'en', 1, 'https://ror.org/04htfrz79 Wenham Museum'),
(26819, 'https://ror.org/01pxd1c06', 'en', 1, 'https://ror.org/01pxd1c06 Southern Maryland Regional Library Association'),
(26820, 'https://ror.org/04drdpz74', 'en', 1, 'https://ror.org/04drdpz74 Wisconsin Educational Communications Board'),
(26821, 'https://ror.org/0140mkx22', 'en', 1, 'https://ror.org/0140mkx22 West Baton Rouge Museum'),
(26822, 'https://ror.org/023cthp32', 'en', 1, 'https://ror.org/023cthp32 Witherspoon Institute'),
(26823, 'https://ror.org/00xqebk56', 'en', 1, 'https://ror.org/00xqebk56 West Los Angeles College'),
(26824, 'https://ror.org/0045h2h15', 'en', 1, 'https://ror.org/0045h2h15 Southern Ute Museum'),
(26825, 'https://ror.org/0456pvf72', 'en', 1, 'https://ror.org/0456pvf72 WMHT Educational Telecommunications'),
(26826, 'https://ror.org/008q9az43', 'en', 1, 'https://ror.org/008q9az43 Western Heritage Center'),
(26827, 'https://ror.org/00kr4pg87', 'en', 1, 'https://ror.org/00kr4pg87 Durham Museum'),
(26828, 'https://ror.org/00angtv54', 'en', 1, 'https://ror.org/00angtv54 Western Museum of Mining & Industry'),
(26829, 'https://ror.org/004j2ry26', 'en', 1, 'https://ror.org/004j2ry26 Women''s Studio Workshop'),
(26830, 'https://ror.org/04aamwz87', 'en', 1, 'https://ror.org/04aamwz87 Woodlawn Museum Gardens & Park'),
(26831, 'https://ror.org/003y2vw22', 'en', 1, 'https://ror.org/003y2vw22 Worcester Art Museum'),
(26832, 'https://ror.org/02g9ex009', 'en', 1, 'https://ror.org/02g9ex009 Worcester Historical Museum'),
(26833, 'https://ror.org/01jfxry94', 'en', 1, 'https://ror.org/01jfxry94 Worcester Public Library'),
(26834, 'https://ror.org/0302dpf35', 'en', 1, 'https://ror.org/0302dpf35 Western New York Public Broadcasting Association'),
(26835, 'https://ror.org/0423p3470', 'en', 1, 'https://ror.org/0423p3470 Western Pocono Community Library'),
(26836, 'https://ror.org/04rjm0720', 'en', 1, 'https://ror.org/04rjm0720 Spartanburg County Public Libraries'),
(26837, 'https://ror.org/05rtb3z04', 'en', 1, 'https://ror.org/05rtb3z04 Western Reserve Historical Society'),
(26838, 'https://ror.org/0072em063', 'en', 1, 'https://ror.org/0072em063 World Music Productions'),
(26839, 'https://ror.org/01c07rv55', 'en', 1, 'https://ror.org/01c07rv55 Spring Lake District Library'),
(26840, 'https://ror.org/00vgj0470', 'en', 1, 'https://ror.org/00vgj0470 American World University'),
(26841, 'https://ror.org/000ta0r04', 'en', 1, 'https://ror.org/000ta0r04 Springdale Public Library'),
(26842, 'https://ror.org/05n04ff42', 'en', 1, 'https://ror.org/05n04ff42 Operation Opportunity Foundation'),
(26843, 'https://ror.org/03p8px109', 'en', 1, 'https://ror.org/03p8px109 Worthington City School District'),
(26844, 'https://ror.org/035t6en21', 'en', 1, 'https://ror.org/035t6en21 Westfield Center for Historical Keyboard Studies'),
(26845, 'https://ror.org/04s45sk16', 'en', 1, 'https://ror.org/04s45sk16 Rhode Island PBS Foundation'),
(26846, 'https://ror.org/00p092380', 'en', 1, 'https://ror.org/00p092380 Wyoming State Archives'),
(26847, 'https://ror.org/02ar8my54', 'en', 1, 'https://ror.org/02ar8my54 Yakima Valley Museum'),
(26848, 'https://ror.org/02rt36v36', 'en', 1, 'https://ror.org/02rt36v36 Organization of American Historians'),
(26849, 'https://ror.org/02y676g76', 'en', 1, 'https://ror.org/02y676g76 Springfield Museums'),
(26850, 'https://ror.org/05tndeq88', 'en', 1, 'https://ror.org/05tndeq88 Yakima Valley Libraries'),
(26851, 'https://ror.org/05hgcp219', 'en', 1, 'https://ror.org/05hgcp219 B.S. Ricks Memorial Library'),
(26852, 'https://ror.org/003rjf961', 'en', 1, 'https://ror.org/003rjf961 WGBH Educational Foundation'),
(26853, 'https://ror.org/03rs7bk48', 'en', 1, 'https://ror.org/03rs7bk48 Yeshiva University Museum'),
(26854, 'https://ror.org/0372dx737', 'en', 1, 'https://ror.org/0372dx737 Wheelwright Museum of the American Indian'),
(26855, 'https://ror.org/01e438y82', 'en', 1, 'https://ror.org/01e438y82 White House Historical Association'),
(26856, 'https://ror.org/01g1t6g78', 'en', 1, 'https://ror.org/01g1t6g78 Whitney Museum of American Art'),
(26857, 'https://ror.org/05ttt8934', 'en', 1, 'https://ror.org/05ttt8934 Wichita Public Library'),
(26858, 'https://ror.org/00571jt67', 'en', 1, 'https://ror.org/00571jt67 St. Francis College'),
(26859, 'https://ror.org/01chwg263', 'en', 1, 'https://ror.org/01chwg263 St. George''s School'),
(26860, 'https://ror.org/047p4k652', 'en', 1, 'https://ror.org/047p4k652 Willa Cather Foundation'),
(26861, 'https://ror.org/00qp7zm97', 'en', 1, 'https://ror.org/00qp7zm97 Ypsilanti District Library'),
(26862, 'https://ror.org/04bwfnh43', 'en', 1, 'https://ror.org/04bwfnh43 Willamette Heritage Center'),
(26863, 'https://ror.org/004140w27', 'en', 1, 'https://ror.org/004140w27 Park City Museum'),
(26864, 'https://ror.org/05hw4nf80', 'en', 1, 'https://ror.org/05hw4nf80 William K. Sanford Town Library'),
(26865, 'https://ror.org/054qmd302', 'en', 1, 'https://ror.org/054qmd302 Williamsburg Regional Library'),
(26866, 'https://ror.org/020bck234', 'en', 1, 'https://ror.org/020bck234 Philadelphia Zoo'),
(26867, 'https://ror.org/04gqfff71', 'en', 1, 'https://ror.org/04gqfff71 William F. Laman Public Library System'),
(26868, 'https://ror.org/00nm35319', 'en', 1, 'https://ror.org/00nm35319 St. Johnsbury Athenaeum'),
(26869, 'https://ror.org/03gveh102', 'en', 1, 'https://ror.org/03gveh102 University of Wisconsin–Fond du Lac'),
(26870, 'https://ror.org/05682nv68', 'en', 1, 'https://ror.org/05682nv68 Pennsylvania Heritage Society'),
(26871, 'https://ror.org/04qw45d53', 'en', 1, 'https://ror.org/04qw45d53 Saint Louis Art Museum'),
(26872, 'https://ror.org/01x3sga45', 'en', 1, 'https://ror.org/01x3sga45 St. Louis County Missouri'),
(26873, 'https://ror.org/00v2ecp17', 'en', 1, 'https://ror.org/00v2ecp17 St. Louis County Department of Parks and Recreation'),
(26874, 'https://ror.org/00rqx7a67', 'en', 1, 'https://ror.org/00rqx7a67 St. Louis County Historical Society'),
(26875, 'https://ror.org/03ta5f363', 'en', 1, 'https://ror.org/03ta5f363 Sons of Union Veterans of the Civil War'),
(26876, 'https://ror.org/0538qav07', 'en', 1, 'https://ror.org/0538qav07 Pacific Symphony'),
(26877, 'https://ror.org/00rjhzp80', 'en', 1, 'https://ror.org/00rjhzp80 Peter Yegen Jr. Yellowstone County Museum'),
(26878, 'https://ror.org/058sshm54', 'en', 1, 'https://ror.org/058sshm54 Institute of Oceanology Институт по океанология'),
(26879, 'https://ror.org/05c3m0811', 'en', 1, 'https://ror.org/05c3m0811 Central Laboratory of Solar Energy and New Energy Sources Централна лаборатория по слънчева енергия и нови енергийни източници'),
(26880, 'https://ror.org/01y3mxb71', 'no_lang_code', 1, 'https://ror.org/01y3mxb71 Central European Data Agency (Czechia)'),
(26881, 'https://ror.org/04999ka44', 'no_lang_code', 1, 'https://ror.org/04999ka44 Medipo ZT (Czechia)'),
(26882, 'https://ror.org/00v1asp42', 'no_lang_code', 1, 'https://ror.org/00v1asp42 Eldis Pardubice (Czechia)'),
(26883, 'https://ror.org/030sr3j49', 'no_lang_code', 1, 'https://ror.org/030sr3j49 Medistyl (Czechia)'),
(26884, 'https://ror.org/01tycan35', 'no_lang_code', 1, 'https://ror.org/01tycan35 Elis Plzen (Czechia)'),
(26885, 'https://ror.org/04j3yrr96', 'no_lang_code', 1, 'https://ror.org/04j3yrr96 Imos Brno (Czechia)'),
(26886, 'https://ror.org/059kfxy53', 'no_lang_code', 1, 'https://ror.org/059kfxy53 Elitex Machinery (Czechia)'),
(26887, 'https://ror.org/00kjtwf88', 'no_lang_code', 1, 'https://ror.org/00kjtwf88 Medtec VOP (Czechia)'),
(26888, 'https://ror.org/036cktz33', 'no_lang_code', 1, 'https://ror.org/036cktz33 Inco Engineering (Czechia)'),
(26889, 'https://ror.org/01e5xrj50', 'no_lang_code', 1, 'https://ror.org/01e5xrj50 Elko Ep (Czechia)'),
(26890, 'https://ror.org/0500bxx34', 'no_lang_code', 1, 'https://ror.org/0500bxx34 Elmarco (Czechia)'),
(26891, 'https://ror.org/01jvfs579', 'no_lang_code', 1, 'https://ror.org/01jvfs579 MEgA Measuring Energy Apparatus (Czechia)'),
(26892, 'https://ror.org/02gmebg52', 'no_lang_code', 1, 'https://ror.org/02gmebg52 Mega (Czechia)'),
(26893, 'https://ror.org/03ve83257', 'no_lang_code', 1, 'https://ror.org/03ve83257 Centre for Organic Chemistry (Czechia) Centrum Organické Chemie'),
(26894, 'https://ror.org/042p6cb87', 'no_lang_code', 1, 'https://ror.org/042p6cb87 Infram (Czechia)'),
(26895, 'https://ror.org/05ad1hb84', 'no_lang_code', 1, 'https://ror.org/05ad1hb84 Meopta Optika (Czechia)'),
(26896, 'https://ror.org/05kypfq19', 'cs', 1, 'https://ror.org/05kypfq19 Centrum Pro Komunitní Práci'),
(26897, 'https://ror.org/04p9d0t65', 'no_lang_code', 1, 'https://ror.org/04p9d0t65 Mesing (Czechia)'),
(26898, 'https://ror.org/04m1rgc79', 'no_lang_code', 1, 'https://ror.org/04m1rgc79 Hagemann (Czechia)'),
(26899, 'https://ror.org/01bf2c792', 'no_lang_code', 1, 'https://ror.org/01bf2c792 ING Corporation (Czechia)'),
(26900, 'https://ror.org/03cg4ry50', 'no_lang_code', 1, 'https://ror.org/03cg4ry50 Eltodo (Czechia)'),
(26901, 'https://ror.org/04cj4w646', 'no_lang_code', 1, 'https://ror.org/04cj4w646 Magneton (Czechia)'),
(26902, 'https://ror.org/009wgvk87', 'en', 1, 'https://ror.org/009wgvk87 Centre for Higher Education Studies'),
(26903, 'https://ror.org/021f6t344', 'no_lang_code', 1, 'https://ror.org/021f6t344 Elvac Ekotechnika (Czechia)'),
(26904, 'https://ror.org/05hc66959', 'no_lang_code', 1, 'https://ror.org/05hc66959 Centre of Civil Engineering (Czechia) Centrum Stavebního Inženýrství'),
(26905, 'https://ror.org/05735s737', 'no_lang_code', 1, 'https://ror.org/05735s737 Embitron (Czechia)'),
(26906, 'https://ror.org/02vf5zz47', 'no_lang_code', 1, 'https://ror.org/02vf5zz47 Ford Motor Company (Czechia)'),
(26907, 'https://ror.org/02r0jqm23', 'no_lang_code', 1, 'https://ror.org/02r0jqm23 Microrisc (Czechia)'),
(26908, 'https://ror.org/01dgmap57', 'en', 1, 'https://ror.org/01dgmap57 Saskatchewan Registered Nurses Association'),
(26909, 'https://ror.org/050trak22', 'no_lang_code', 1, 'https://ror.org/050trak22 Cervenka Consulting (Czechia)'),
(26910, 'https://ror.org/02djb3912', 'no_lang_code', 1, 'https://ror.org/02djb3912 Enacon (Czechia)'),
(26911, 'https://ror.org/0505t6e30', 'no_lang_code', 1, 'https://ror.org/0505t6e30 MikroChem LKT (Czechia)'),
(26912, 'https://ror.org/03em3tg48', 'en', 1, 'https://ror.org/03em3tg48 Czech Concrete Society'),
(26913, 'https://ror.org/05raa0j17', 'no_lang_code', 1, 'https://ror.org/05raa0j17 Mikropur (Czechia)'),
(26914, 'https://ror.org/00ww0x553', 'no_lang_code', 1, 'https://ror.org/00ww0x553 Energie - Stavební a Báňská (Czechia)'),
(26915, 'https://ror.org/02t8zwv43', 'no_lang_code', 1, 'https://ror.org/02t8zwv43 Milcom (Czechia)'),
(26916, 'https://ror.org/016rpxr13', 'no_lang_code', 1, 'https://ror.org/016rpxr13 Ing. Ivo Herman (Czechia)'),
(26917, 'https://ror.org/03wmttm35', 'no_lang_code', 1, 'https://ror.org/03wmttm35 2N Telecommunications (Czechia) 2N Telekomunikace'),
(26918, 'https://ror.org/00x4r3w91', 'no_lang_code', 1, 'https://ror.org/00x4r3w91 Vakar (Czechia)'),
(26919, 'https://ror.org/0106zg078', 'no_lang_code', 1, 'https://ror.org/0106zg078 ENKI (Czechia)'),
(26920, 'https://ror.org/056mtf007', 'en', 1, 'https://ror.org/056mtf007 Czech Space Office'),
(26921, 'https://ror.org/00zjez215', 'en', 1, 'https://ror.org/00zjez215 Czech Medical Association of J.E. Purkyne Česká lékařská společnost Jana Evangelisty Purkyně'),
(26922, 'https://ror.org/02hqgw034', 'no_lang_code', 1, 'https://ror.org/02hqgw034 Envinet (Czechia)'),
(26923, 'https://ror.org/04v4fdz58', 'no_lang_code', 1, 'https://ror.org/04v4fdz58 Advanced Technology Group (Czechia)'),
(26924, 'https://ror.org/05cyzhb83', 'no_lang_code', 1, 'https://ror.org/05cyzhb83 Envisan GEM (Czechia)'),
(26925, 'https://ror.org/01kk80q05', 'no_lang_code', 1, 'https://ror.org/01kk80q05 Envites (Czechia)'),
(26926, 'https://ror.org/03s7g5q07', 'no_lang_code', 1, 'https://ror.org/03s7g5q07 Modelárna Liaz (Czechia)'),
(26927, 'https://ror.org/05mg79n26', 'no_lang_code', 1, 'https://ror.org/05mg79n26 ABB (Czechia)'),
(26928, 'https://ror.org/01kghnd85', 'en', 1, 'https://ror.org/01kghnd85 Czech Society for Oriental Studies'),
(26929, 'https://ror.org/02bxk9349', 'no_lang_code', 1, 'https://ror.org/02bxk9349 Miracle (Czechia)'),
(26930, 'https://ror.org/04r5ttx52', 'no_lang_code', 1, 'https://ror.org/04r5ttx52 Eprona (Czechia)'),
(26931, 'https://ror.org/055nq3844', 'no_lang_code', 1, 'https://ror.org/055nq3844 Electronic Product Services (Czechia)'),
(26932, 'https://ror.org/01r1xp191', 'no_lang_code', 1, 'https://ror.org/01r1xp191 AEC (Czechia)'),
(26933, 'https://ror.org/007s0q763', 'no_lang_code', 1, 'https://ror.org/007s0q763 ERA (Czechia)'),
(26934, 'https://ror.org/03p5y6k26', 'cs', 1, 'https://ror.org/03p5y6k26 Česká Společnost Antropologická'),
(26935, 'https://ror.org/04fc8m485', 'no_lang_code', 1, 'https://ror.org/04fc8m485 Monet (Czechia)'),
(26936, 'https://ror.org/04v42p132', 'no_lang_code', 1, 'https://ror.org/04v42p132 ETC Consulting'),
(26937, 'https://ror.org/04096bn69', 'no_lang_code', 1, 'https://ror.org/04096bn69 Dürr Systems (Czechia)'),
(26938, 'https://ror.org/040cb6934', 'cs', 1, 'https://ror.org/040cb6934 Česká Společnost Chemická'),
(26939, 'https://ror.org/04taat540', 'no_lang_code', 1, 'https://ror.org/04taat540 Česká Bioklimatologická Společnost (Czechia)'),
(26940, 'https://ror.org/04anxb269', 'en', 1, 'https://ror.org/04anxb269 Czech Society for New Materials and Technologies'),
(26941, 'https://ror.org/02dbhfj05', 'no_lang_code', 1, 'https://ror.org/02dbhfj05 Euro Support (Czechia)'),
(26942, 'https://ror.org/04hfx2z08', 'cs', 1, 'https://ror.org/04hfx2z08 Česká Společnost pro Politické Vědy'),
(26943, 'https://ror.org/02k884a42', 'no_lang_code', 1, 'https://ror.org/02k884a42 Montstav (Czechia)'),
(26944, 'https://ror.org/03x8jsf97', 'no_lang_code', 1, 'https://ror.org/03x8jsf97 Elitex slévárna (Czechia)'),
(26945, 'https://ror.org/0556q6716', 'no_lang_code', 1, 'https://ror.org/0556q6716 AGRO-EKO (Czechia)'),
(26946, 'https://ror.org/03x19vt79', 'cs', 1, 'https://ror.org/03x19vt79 Institut Pro Studium Literatury'),
(26947, 'https://ror.org/01tkgk805', 'en', 1, 'https://ror.org/01tkgk805 Moravian Gallery in Brno'),
(26948, 'https://ror.org/05md7gj74', 'en', 1, 'https://ror.org/05md7gj74 Czech Zoological Society'),
(26949, 'https://ror.org/024jn1h80', 'en', 1, 'https://ror.org/024jn1h80 Arts and Theatre Institute'),
(26950, 'https://ror.org/03y1f1208', 'no_lang_code', 1, 'https://ror.org/03y1f1208 Railway Research Institute (Czechia) Výzkumný Ústav Železniční'),
(26951, 'https://ror.org/02dfcd792', 'no_lang_code', 1, 'https://ror.org/02dfcd792 Intens (Czechia)'),
(26952, 'https://ror.org/056hsts40', 'no_lang_code', 1, 'https://ror.org/056hsts40 Evolving Systems Consulting Aerospace (Czechia)'),
(26953, 'https://ror.org/0053ash76', 'no_lang_code', 1, 'https://ror.org/0053ash76 Aero (Czechia)'),
(26954, 'https://ror.org/00fshqt18', 'no_lang_code', 1, 'https://ror.org/00fshqt18 Exbio (Czechia)'),
(26955, 'https://ror.org/05v056h48', 'no_lang_code', 1, 'https://ror.org/05v056h48 Explosia (Czechia)'),
(26956, 'https://ror.org/031grv787', 'no_lang_code', 1, 'https://ror.org/031grv787 AHT Energetics (Czechia) AHT Energetika'),
(26957, 'https://ror.org/01wy81410', 'no_lang_code', 1, 'https://ror.org/01wy81410 Fite (Czechia)'),
(26958, 'https://ror.org/017yg8081', 'no_lang_code', 1, 'https://ror.org/017yg8081 PPM Factum Research'),
(26959, 'https://ror.org/033mv0745', 'no_lang_code', 1, 'https://ror.org/033mv0745 Mott MacDonald (Czechia)'),
(26960, 'https://ror.org/044es9645', 'no_lang_code', 1, 'https://ror.org/044es9645 Českomoravská Kolben Daněk (Czechia)'),
(26961, 'https://ror.org/049m9e566', 'en', 1, 'https://ror.org/049m9e566 Czech Railways'),
(26962, 'https://ror.org/05agbef66', 'no_lang_code', 1, 'https://ror.org/05agbef66 MSR Engines (Czechia)'),
(26963, 'https://ror.org/04p4fx257', 'no_lang_code', 1, 'https://ror.org/04p4fx257 MSV Elektronika (Czechia)'),
(26964, 'https://ror.org/050ngd429', 'no_lang_code', 1, 'https://ror.org/050ngd429 Akademie (Czechia)'),
(26965, 'https://ror.org/036swtt68', 'cs', 1, 'https://ror.org/036swtt68 České Ekologické Manažerské Centrum'),
(26966, 'https://ror.org/014e5wn40', 'no_lang_code', 1, 'https://ror.org/014e5wn40 MSV Systems (Czechia)'),
(26967, 'https://ror.org/04df59d52', 'no_lang_code', 1, 'https://ror.org/04df59d52 Ceske Lupkove Zavody (Czechia)'),
(26968, 'https://ror.org/0133zej97', 'cs', 1, 'https://ror.org/0133zej97 Muzejní a Vlastivědná Společnost v Brně'),
(26969, 'https://ror.org/00h4vp021', 'no_lang_code', 1, 'https://ror.org/00h4vp021 Hexagon (Czechia)'),
(26970, 'https://ror.org/02d04zk75', 'no_lang_code', 1, 'https://ror.org/02d04zk75 Fans (Czechia)'),
(26971, 'https://ror.org/04teq3d43', 'no_lang_code', 1, 'https://ror.org/04teq3d43 Akustika Praha (Czechia)'),
(26972, 'https://ror.org/00gzbxs44', 'no_lang_code', 1, 'https://ror.org/00gzbxs44 Invos (Czechia)'),
(26973, 'https://ror.org/002dnpc64', 'cs', 1, 'https://ror.org/002dnpc64 Muzeum a Galerie Orlických Hor'),
(26974, 'https://ror.org/01fqmwr23', 'en', 1, 'https://ror.org/01fqmwr23 Czech Moravian Psychological Society Czech-Moravian Psychological Society'),
(26975, 'https://ror.org/004z40955', 'no_lang_code', 1, 'https://ror.org/004z40955 Alfa Union (Czechia)'),
(26976, 'https://ror.org/010pg3352', 'cs', 1, 'https://ror.org/010pg3352 Comenius Museum in Přerov Muzeum Komenského v Přerově'),
(26977, 'https://ror.org/02ym98p07', 'no_lang_code', 1, 'https://ror.org/02ym98p07 AMF Reece (Czechia)'),
(26978, 'https://ror.org/04dea3c58', 'en', 1, 'https://ror.org/04dea3c58 Engineering Academy of the Czech Republic'),
(26979, 'https://ror.org/04g5en476', 'no_lang_code', 1, 'https://ror.org/04g5en476 Ammann (Czechia)'),
(26980, 'https://ror.org/00my96x13', 'no_lang_code', 1, 'https://ror.org/00my96x13 Farmet (Czechia)'),
(26981, 'https://ror.org/024h65n23', 'no_lang_code', 1, 'https://ror.org/024h65n23 Favea (Czechia)'),
(26982, 'https://ror.org/001tgea40', 'cs', 1, 'https://ror.org/001tgea40 Muzeum Vysočiny Jihlava'),
(26983, 'https://ror.org/029vq3n45', 'no_lang_code', 1, 'https://ror.org/029vq3n45 Thermo Fisher Scientific (Czechia)'),
(26984, 'https://ror.org/03rte5t08', 'cs', 1, 'https://ror.org/03rte5t08 Československá Biologická Společnost'),
(26985, 'https://ror.org/05238qm85', 'no_lang_code', 1, 'https://ror.org/05238qm85 Amaranth (Czechia)'),
(26986, 'https://ror.org/03fvtf211', 'en', 1, 'https://ror.org/03fvtf211 Institute for Structural Policy'),
(26987, 'https://ror.org/05dh0m347', 'cs', 1, 'https://ror.org/05dh0m347 Nadace pro Dějiny kultury ve Střední Evropě'),
(26988, 'https://ror.org/05mhcm605', 'en', 1, 'https://ror.org/05mhcm605 Czech Union for Nature Conservation'),
(26989, 'https://ror.org/02jazz476', 'en', 1, 'https://ror.org/02jazz476 National Centre of Social Studies'),
(26990, 'https://ror.org/00rnbsz17', 'no_lang_code', 1, 'https://ror.org/00rnbsz17 ISATech (Czechia)'),
(26991, 'https://ror.org/020rm6403', 'no_lang_code', 1, 'https://ror.org/020rm6403 National Cell and Tissue Centre (Czechia)'),
(26992, 'https://ror.org/02cxtyv10', 'cs', 1, 'https://ror.org/02cxtyv10 Český Svaz Stavebních Inženýrů'),
(26993, 'https://ror.org/02ahzqq48', 'no_lang_code', 1, 'https://ror.org/02ahzqq48 Fer Kladno (Czechia)'),
(26994, 'https://ror.org/0266ryr82', 'no_lang_code', 1, 'https://ror.org/0266ryr82 ApS Brno (Czechia)'),
(26995, 'https://ror.org/012mcha64', 'en', 1, 'https://ror.org/012mcha64 Czech Association of Scientific and Technical Societies'),
(26996, 'https://ror.org/00xjfn370', 'no_lang_code', 1, 'https://ror.org/00xjfn370 JAP Industries (Czechia)'),
(26997, 'https://ror.org/02ykdqq93', 'no_lang_code', 1, 'https://ror.org/02ykdqq93 APS (Czechia)'),
(26998, 'https://ror.org/01a2dv184', 'no_lang_code', 1, 'https://ror.org/01a2dv184 Fine (Czechia)'),
(26999, 'https://ror.org/000jexb59', 'no_lang_code', 1, 'https://ror.org/000jexb59 Chemcomex (Czechia)'),
(27000, 'https://ror.org/035xy4n68', 'no_lang_code', 1, 'https://ror.org/035xy4n68 Jawa (Czechia)'),
(27001, 'https://ror.org/02vrjqh13', 'en', 1, 'https://ror.org/02vrjqh13 Union of Czech Mathematicians and Physicists Verein fur freie Vortrage aus der Mathematik und Physik'),
(27002, 'https://ror.org/04304vh75', 'no_lang_code', 1, 'https://ror.org/04304vh75 ArcelorMittal (Czechia)'),
(27003, 'https://ror.org/02j1sgb41', 'no_lang_code', 1, 'https://ror.org/02j1sgb41 Jerid (Czechia)'),
(27004, 'https://ror.org/01pzyyx54', 'en', 1, 'https://ror.org/01pzyyx54 National Information and Consulting Centre for Culture'),
(27005, 'https://ror.org/00ccd8760', 'no_lang_code', 1, 'https://ror.org/00ccd8760 Formdesign (Czechia)'),
(27006, 'https://ror.org/03pkef045', 'no_lang_code', 1, 'https://ror.org/03pkef045 Skyleader (Czechia)'),
(27007, 'https://ror.org/01062jn59', 'no_lang_code', 1, 'https://ror.org/01062jn59 Archaia Brno (Czechia)'),
(27008, 'https://ror.org/00sz2vy62', 'no_lang_code', 1, 'https://ror.org/00sz2vy62 Foton (Czechia)'),
(27009, 'https://ror.org/02g4rm341', 'no_lang_code', 1, 'https://ror.org/02g4rm341 G Impuls Praha (Czechia)'),
(27010, 'https://ror.org/04hk5r056', 'no_lang_code', 1, 'https://ror.org/04hk5r056 Jihlavan (Czechia)'),
(27011, 'https://ror.org/00hj5kv86', 'no_lang_code', 1, 'https://ror.org/00hj5kv86 CKD Blansko Engineering (Czechia)'),
(27012, 'https://ror.org/02rts6b12', 'cs', 1, 'https://ror.org/02rts6b12 Národní Klimatický Program'),
(27013, 'https://ror.org/03dmxq167', 'no_lang_code', 1, 'https://ror.org/03dmxq167 GaREP (Czechia)'),
(27014, 'https://ror.org/006eggh59', 'cs', 1, 'https://ror.org/006eggh59 Jihomoravské muzeum ve Znojmě South Moravian Museum in Znojmo'),
(27015, 'https://ror.org/004fm2e78', 'no_lang_code', 1, 'https://ror.org/004fm2e78 Gascontrol (Czechia)'),
(27016, 'https://ror.org/01y3cgz33', 'no_lang_code', 1, 'https://ror.org/01y3cgz33 Jihostroj (Czechia)'),
(27017, 'https://ror.org/007528s45', 'no_lang_code', 1, 'https://ror.org/007528s45 CKD Elektrotechnika (Czechia)'),
(27018, 'https://ror.org/02dmq8z55', 'no_lang_code', 1, 'https://ror.org/02dmq8z55 General Electric (Czechia)'),
(27019, 'https://ror.org/018wdpk10', 'no_lang_code', 1, 'https://ror.org/018wdpk10 GeneProof (Czechia)'),
(27020, 'https://ror.org/00c3r5g90', 'no_lang_code', 1, 'https://ror.org/00c3r5g90 Generi Biotech (Czechia)'),
(27021, 'https://ror.org/05nt5pw88', 'no_lang_code', 1, 'https://ror.org/05nt5pw88 GeneTiCA (Czechia)'),
(27022, 'https://ror.org/01ra0jf88', 'no_lang_code', 1, 'https://ror.org/01ra0jf88 Aseko (Czechia)'),
(27023, 'https://ror.org/03b5fdt21', 'no_lang_code', 1, 'https://ror.org/03b5fdt21 Juta (Czechia)'),
(27024, 'https://ror.org/018vp6382', 'no_lang_code', 1, 'https://ror.org/018vp6382 ASICentrum (Czechia)'),
(27025, 'https://ror.org/02dgqz246', 'no_lang_code', 1, 'https://ror.org/02dgqz246 Cominfo (Czechia)'),
(27026, 'https://ror.org/005adyv40', 'no_lang_code', 1, 'https://ror.org/005adyv40 Coming Plus (Czechia)'),
(27027, 'https://ror.org/002e3gt76', 'no_lang_code', 1, 'https://ror.org/002e3gt76 Compureg Plzen (Czechia)'),
(27028, 'https://ror.org/05kjde412', 'no_lang_code', 1, 'https://ror.org/05kjde412 Asociace inovačního podnikání České republiky z.s. Association of Innovative Entrepreneurship (Czechia)'),
(27029, 'https://ror.org/02vmeq302', 'no_lang_code', 1, 'https://ror.org/02vmeq302 JULI Motorenwerk (Czechia)'),
(27030, 'https://ror.org/038ahjw20', 'en', 1, 'https://ror.org/038ahjw20 Association for International Affairs'),
(27031, 'https://ror.org/04r2bzn21', 'no_lang_code', 1, 'https://ror.org/04r2bzn21 Geomedia (Czechia)'),
(27032, 'https://ror.org/01pahsa11', 'no_lang_code', 1, 'https://ror.org/01pahsa11 KM Trade (Czechia)'),
(27033, 'https://ror.org/02dnt2x11', 'en', 1, 'https://ror.org/02dnt2x11 National Training Fund'),
(27034, 'https://ror.org/04a98ab79', 'en', 1, 'https://ror.org/04a98ab79 National Museum of Agriculture Národní zemědělské muzeum'),
(27035, 'https://ror.org/0520cy215', 'no_lang_code', 1, 'https://ror.org/0520cy215 GEOtest (Czechia)'),
(27036, 'https://ror.org/007mjrc64', 'cs', 1, 'https://ror.org/007mjrc64 Gerontologické Centrum'),
(27037, 'https://ror.org/03156th50', 'no_lang_code', 1, 'https://ror.org/03156th50 Koexpro Ostrava (Czechia)'),
(27038, 'https://ror.org/049345g13', 'no_lang_code', 1, 'https://ror.org/049345g13 NDCon (Czechia)'),
(27039, 'https://ror.org/049wy2009', 'no_lang_code', 1, 'https://ror.org/049wy2009 GF Machinery (Czechia)'),
(27040, 'https://ror.org/0498bq185', 'no_lang_code', 1, 'https://ror.org/0498bq185 GIS-Geoindustry (Czechia)'),
(27041, 'https://ror.org/0354d9t07', 'cs', 1, 'https://ror.org/0354d9t07 Nemocnice Podlesí'),
(27042, 'https://ror.org/03hbktk11', 'no_lang_code', 1, 'https://ror.org/03hbktk11 GiTy (Czechia)'),
(27043, 'https://ror.org/00d059615', 'no_lang_code', 1, 'https://ror.org/00d059615 Komfi (Czechia)'),
(27044, 'https://ror.org/02wcxpr65', 'no_lang_code', 1, 'https://ror.org/02wcxpr65 ATAS (Czechia) ATAS elektromotory Náchod'),
(27045, 'https://ror.org/020rxmm63', 'no_lang_code', 1, 'https://ror.org/020rxmm63 Kovárna VIVA (Czechia)'),
(27046, 'https://ror.org/04e6rv019', 'no_lang_code', 1, 'https://ror.org/04e6rv019 Ateko (Czechia)'),
(27047, 'https://ror.org/05p2jqf06', 'no_lang_code', 1, 'https://ror.org/05p2jqf06 Continental (Czechia)'),
(27048, 'https://ror.org/01v53ec59', 'no_lang_code', 1, 'https://ror.org/01v53ec59 OCHI Inženýring (Czechia)'),
(27049, 'https://ror.org/0420yxq36', 'no_lang_code', 1, 'https://ror.org/0420yxq36 Demonta Trade (Czechia)'),
(27050, 'https://ror.org/013rj3567', 'en', 1, 'https://ror.org/013rj3567 Studio of Ecological Models'),
(27051, 'https://ror.org/01jcts315', 'no_lang_code', 1, 'https://ror.org/01jcts315 Green Gas (Czechia)'),
(27052, 'https://ror.org/02cfjr625', 'no_lang_code', 1, 'https://ror.org/02cfjr625 Kovohutě Příbram Nástupnická (Czechia)'),
(27053, 'https://ror.org/03z4aa977', 'no_lang_code', 1, 'https://ror.org/03z4aa977 Atmos (Czechia)'),
(27054, 'https://ror.org/04hz6bt63', 'no_lang_code', 1, 'https://ror.org/04hz6bt63 Kovohutě Rokycany (Czechia)'),
(27055, 'https://ror.org/03h7hxc46', 'no_lang_code', 1, 'https://ror.org/03h7hxc46 OEZ (Czechia)'),
(27056, 'https://ror.org/01vtcxa47', 'no_lang_code', 1, 'https://ror.org/01vtcxa47 CoorsTek (Czechia)'),
(27057, 'https://ror.org/03sdmkg09', 'no_lang_code', 1, 'https://ror.org/03sdmkg09 ATOMA Tepelná Technika (Czechia)'),
(27058, 'https://ror.org/009w67677', 'no_lang_code', 1, 'https://ror.org/009w67677 Cross Zlín (Czechia)'),
(27059, 'https://ror.org/01pdmef49', 'no_lang_code', 1, 'https://ror.org/01pdmef49 KKCG (Czechia)'),
(27060, 'https://ror.org/0456z6869', 'no_lang_code', 1, 'https://ror.org/0456z6869 Crytur (Czechia)'),
(27061, 'https://ror.org/041a5qb18', 'no_lang_code', 1, 'https://ror.org/041a5qb18 KPM Consult (Czechia)'),
(27062, 'https://ror.org/02yse4t33', 'no_lang_code', 1, 'https://ror.org/02yse4t33 Ham-Final (Czechia)'),
(27063, 'https://ror.org/0495bs219', 'no_lang_code', 1, 'https://ror.org/0495bs219 OKsystem (Czechia)'),
(27064, 'https://ror.org/02jywrv14', 'no_lang_code', 1, 'https://ror.org/02jywrv14 ON Semiconductor (Czechia)'),
(27065, 'https://ror.org/03q6c2121', 'no_lang_code', 1, 'https://ror.org/03q6c2121 CZ Loko (Czechia)'),
(27066, 'https://ror.org/05vqb6078', 'no_lang_code', 1, 'https://ror.org/05vqb6078 Oprox (Czechia)'),
(27067, 'https://ror.org/04bnhs754', 'no_lang_code', 1, 'https://ror.org/04bnhs754 Attl (Czechia)'),
(27068, 'https://ror.org/03ssg8h30', 'no_lang_code', 1, 'https://ror.org/03ssg8h30 Optaglio (Czechia)'),
(27069, 'https://ror.org/03e8pcr67', 'cs', 1, 'https://ror.org/03e8pcr67 Krajská Hygienická Stanice Plzeňského Kraje se Sídlem v Plzni'),
(27070, 'https://ror.org/00fchwr06', 'no_lang_code', 1, 'https://ror.org/00fchwr06 Optokon (Czechia)'),
(27071, 'https://ror.org/05bqtq669', 'no_lang_code', 1, 'https://ror.org/05bqtq669 Royal HaskoningDHV (Czechia)'),
(27072, 'https://ror.org/04nxva438', 'no_lang_code', 1, 'https://ror.org/04nxva438 Czech Consult (Czechia)'),
(27073, 'https://ror.org/029ykak92', 'cs', 1, 'https://ror.org/029ykak92 Krajská Hygienická Stanice Středočeského Kraje se Sídlem v Praze'),
(27074, 'https://ror.org/029cdgh07', 'no_lang_code', 1, 'https://ror.org/029cdgh07 HBH Projekt (Czechia)'),
(27075, 'https://ror.org/03hmxxh50', 'en', 1, 'https://ror.org/03hmxxh50 Czech RE Agency'),
(27076, 'https://ror.org/04jhq1580', 'no_lang_code', 1, 'https://ror.org/04jhq1580 Azin (Czechia)'),
(27077, 'https://ror.org/059a0tw60', 'en', 1, 'https://ror.org/059a0tw60 DAPHNE Institute of Applied Ecology'),
(27078, 'https://ror.org/03hdcss70', 'cs', 1, 'https://ror.org/03hdcss70 Krajská Zdravotní'),
(27079, 'https://ror.org/05pnt1244', 'no_lang_code', 1, 'https://ror.org/05pnt1244 dataPartner (Czechia)'),
(27080, 'https://ror.org/03cd9qk80', 'no_lang_code', 1, 'https://ror.org/03cd9qk80 Heluz (Czechia)'),
(27081, 'https://ror.org/045101r15', 'no_lang_code', 1, 'https://ror.org/045101r15 B & M InterNets (Czechia)'),
(27082, 'https://ror.org/02hbg0y44', 'no_lang_code', 1, 'https://ror.org/02hbg0y44 Hofmeister (Czechia)'),
(27083, 'https://ror.org/03592wg71', 'no_lang_code', 1, 'https://ror.org/03592wg71 Decomkov Praha (Czechia)'),
(27084, 'https://ror.org/05pr0sx93', 'no_lang_code', 1, 'https://ror.org/05pr0sx93 Orgrez (Czechia)'),
(27085, 'https://ror.org/05ahk0y26', 'no_lang_code', 1, 'https://ror.org/05ahk0y26 Krátký Film Praha (Czechia)'),
(27086, 'https://ror.org/016mnyy39', 'no_lang_code', 1, 'https://ror.org/016mnyy39 Dekra (Czechia)'),
(27087, 'https://ror.org/00a7f9203', 'no_lang_code', 1, 'https://ror.org/00a7f9203 KRD (Czechia)'),
(27088, 'https://ror.org/03n38sb51', 'no_lang_code', 1, 'https://ror.org/03n38sb51 Hornické muzeum Příbram Mining Museum Pribram'),
(27089, 'https://ror.org/01wgqyk09', 'no_lang_code', 1, 'https://ror.org/01wgqyk09 B&C Dopravní Systémy (Czechia)'),
(27090, 'https://ror.org/027a68c09', 'no_lang_code', 1, 'https://ror.org/027a68c09 Oritest Group (Czechia)'),
(27091, 'https://ror.org/02nas7g61', 'en', 1, 'https://ror.org/02nas7g61 Czech and Slovak Crystallographic Association'),
(27092, 'https://ror.org/01aebfd38', 'no_lang_code', 1, 'https://ror.org/01aebfd38 Ortep (Czechia)'),
(27093, 'https://ror.org/02abkvw08', 'no_lang_code', 1, 'https://ror.org/02abkvw08 Linet (Czechia)'),
(27094, 'https://ror.org/03tekv166', 'no_lang_code', 1, 'https://ror.org/03tekv166 HOST vydavatelství (Czechia)'),
(27095, 'https://ror.org/00yc4pf20', 'no_lang_code', 1, 'https://ror.org/00yc4pf20 BD Sensors (Czechia)'),
(27096, 'https://ror.org/05fv5ah77', 'no_lang_code', 1, 'https://ror.org/05fv5ah77 LA Composite (Czechia)'),
(27097, 'https://ror.org/04srwt726', 'no_lang_code', 1, 'https://ror.org/04srwt726 HPH (Czechia)'),
(27098, 'https://ror.org/03a586v96', 'no_lang_code', 1, 'https://ror.org/03a586v96 Best - Business (Czechia)'),
(27099, 'https://ror.org/0058n8150', 'no_lang_code', 1, 'https://ror.org/0058n8150 Lasak (Czechia)'),
(27100, 'https://ror.org/033rd6g83', 'no_lang_code', 1, 'https://ror.org/033rd6g83 Beta Control (Czechia)'),
(27101, 'https://ror.org/022jkh022', 'no_lang_code', 1, 'https://ror.org/022jkh022 Hradecký Písek (Czechia)'),
(27102, 'https://ror.org/03yv6sb54', 'no_lang_code', 1, 'https://ror.org/03yv6sb54 OT Energy Services (Czechia)'),
(27103, 'https://ror.org/0379e1d13', 'no_lang_code', 1, 'https://ror.org/0379e1d13 Oseva Pro (Czechia)'),
(27104, 'https://ror.org/02x3whk24', 'no_lang_code', 1, 'https://ror.org/02x3whk24 Betosan (Czechia)'),
(27105, 'https://ror.org/002jehj87', 'no_lang_code', 1, 'https://ror.org/002jehj87 Hussite Museum Tabor'),
(27106, 'https://ror.org/02tb9dy59', 'no_lang_code', 1, 'https://ror.org/02tb9dy59 P-D Refractories (Czechia)'),
(27107, 'https://ror.org/01yjjdm95', 'no_lang_code', 1, 'https://ror.org/01yjjdm95 Lenam (Czechia)'),
(27108, 'https://ror.org/04ag50w09', 'no_lang_code', 1, 'https://ror.org/04ag50w09 Beznoska (Czechia)'),
(27109, 'https://ror.org/02bwv2c23', 'no_lang_code', 1, 'https://ror.org/02bwv2c23 Letecke Pristroje Praha (Czechia)'),
(27110, 'https://ror.org/01t2k5x76', 'no_lang_code', 1, 'https://ror.org/01t2k5x76 Deona Medi (Czechia)'),
(27111, 'https://ror.org/04mtv9h48', 'no_lang_code', 1, 'https://ror.org/04mtv9h48 Level (Czechia)'),
(27112, 'https://ror.org/00smk4k22', 'cs', 1, 'https://ror.org/00smk4k22 Observatory and planetarium České Budějovice and Klet'' Observatory'),
(27113, 'https://ror.org/01km3r089', 'no_lang_code', 1, 'https://ror.org/01km3r089 Lias Vintířov (Czechia)'),
(27114, 'https://ror.org/05th78b98', 'cs', 1, 'https://ror.org/05th78b98 Hvězdárna v Úpici Observatory Úpice'),
(27115, 'https://ror.org/00hbg5c91', 'no_lang_code', 1, 'https://ror.org/00hbg5c91 Business Innovation Centre (Czechia) Podnikatelské Inovační Centrum'),
(27116, 'https://ror.org/01bq0zt34', 'no_lang_code', 1, 'https://ror.org/01bq0zt34 HVM Plasma (Czechia)'),
(27117, 'https://ror.org/05teadr95', 'cs', 1, 'https://ror.org/05teadr95 Památník Národního Písemnictví'),
(27118, 'https://ror.org/02k3bdy11', 'no_lang_code', 1, 'https://ror.org/02k3bdy11 Litmas (Czechia)'),
(27119, 'https://ror.org/050t9a084', 'no_lang_code', 1, 'https://ror.org/050t9a084 BIOPHARM (Czechia)'),
(27120, 'https://ror.org/02y561s55', 'no_lang_code', 1, 'https://ror.org/02y561s55 LOM Praha (Czechia)'),
(27121, 'https://ror.org/01r35da74', 'no_lang_code', 1, 'https://ror.org/01r35da74 Löw & Spol (Czechia)'),
(27122, 'https://ror.org/05cahxq83', 'no_lang_code', 1, 'https://ror.org/05cahxq83 Patron Bohemia (Czechia)'),
(27123, 'https://ror.org/025b8gs35', 'no_lang_code', 1, 'https://ror.org/025b8gs35 Bioveta (Czechia)'),
(27124, 'https://ror.org/00k5dse37', 'no_lang_code', 1, 'https://ror.org/00k5dse37 Lučební Závody Draslovka (Czechia)'),
(27125, 'https://ror.org/03sfj2c48', 'no_lang_code', 1, 'https://ror.org/03sfj2c48 Pegas Nonwovens (Czechia)'),
(27126, 'https://ror.org/035047r89', 'no_lang_code', 1, 'https://ror.org/035047r89 Hydrosystem Project (Czechia)'),
(27127, 'https://ror.org/03b4bdb78', 'no_lang_code', 1, 'https://ror.org/03b4bdb78 BLOCK (Czechia)'),
(27128, 'https://ror.org/038840v63', 'cs', 1, 'https://ror.org/038840v63 Hygienická stanice hlavního města Prahy'),
(27129, 'https://ror.org/03qrxs205', 'no_lang_code', 1, 'https://ror.org/03qrxs205 Blumenbecker (Czechia)'),
(27130, 'https://ror.org/05tcz5141', 'no_lang_code', 1, 'https://ror.org/05tcz5141 BMT Medical Technology (Czechia)'),
(27131, 'https://ror.org/00k5yxn79', 'no_lang_code', 1, 'https://ror.org/00k5yxn79 Applus+ IDIADA (Czechia)'),
(27132, 'https://ror.org/02gxppt96', 'no_lang_code', 1, 'https://ror.org/02gxppt96 Materiálový A Metalurgický Výzkum (Czechia)'),
(27133, 'https://ror.org/020rnar76', 'no_lang_code', 1, 'https://ror.org/020rnar76 Bochemie (Czechia)'),
(27134, 'https://ror.org/05a4gt120', 'no_lang_code', 1, 'https://ror.org/05a4gt120 SQS Fiber Optics (Czechia) SQS Vláknová optika'),
(27135, 'https://ror.org/05r250n95', 'no_lang_code', 1, 'https://ror.org/05r250n95 Precheza (Czechia)'),
(27136, 'https://ror.org/01k93bx74', 'no_lang_code', 1, 'https://ror.org/01k93bx74 Borcad (Czechia)'),
(27137, 'https://ror.org/023b1vx40', 'no_lang_code', 1, 'https://ror.org/023b1vx40 MathAn Praha (Czechia)'),
(27138, 'https://ror.org/03sj6v857', 'cs', 1, 'https://ror.org/03sj6v857 Diagnostický Ústav pro Mládež'),
(27139, 'https://ror.org/05bqmct97', 'no_lang_code', 1, 'https://ror.org/05bqmct97 BorsodChem (Czechia)'),
(27140, 'https://ror.org/03jtq9874', 'no_lang_code', 1, 'https://ror.org/03jtq9874 STAPPA mix (Czechia)'),
(27141, 'https://ror.org/04q98sg39', 'en', 1, 'https://ror.org/04q98sg39 Prague Botanical Garden'),
(27142, 'https://ror.org/05mnfh623', 'no_lang_code', 1, 'https://ror.org/05mnfh623 STARMANS electronics (Czechia)'),
(27143, 'https://ror.org/01nsk9g93', 'cs', 1, 'https://ror.org/01nsk9g93 Matice Moravská'),
(27144, 'https://ror.org/02216ze18', 'no_lang_code', 1, 'https://ror.org/02216ze18 Pilsen Tools (Czechia)'),
(27145, 'https://ror.org/00fky1y76', 'no_lang_code', 1, 'https://ror.org/00fky1y76 MBT Metal (Czechia)'),
(27146, 'https://ror.org/000z6yg06', 'no_lang_code', 1, 'https://ror.org/000z6yg06 Brano Group (Czechia)'),
(27147, 'https://ror.org/00eqtt103', 'no_lang_code', 1, 'https://ror.org/00eqtt103 Pneukom (Czechia)'),
(27148, 'https://ror.org/01aq4v448', 'no_lang_code', 1, 'https://ror.org/01aq4v448 Dias Turnov (Czechia)'),
(27149, 'https://ror.org/00ay49j69', 'no_lang_code', 1, 'https://ror.org/00ay49j69 Hlasové centrum Praha Medical Healthcom (Czechia)'),
(27150, 'https://ror.org/05rgwjj62', 'no_lang_code', 1, 'https://ror.org/05rgwjj62 Medical Technologies (Czechia)'),
(27151, 'https://ror.org/002f6by15', 'no_lang_code', 1, 'https://ror.org/002f6by15 Dicom (Czechia)'),
(27152, 'https://ror.org/00kzy6m08', 'no_lang_code', 1, 'https://ror.org/00kzy6m08 Poličské Strojírny (Czechia)'),
(27153, 'https://ror.org/058qbcf90', 'no_lang_code', 1, 'https://ror.org/058qbcf90 PolyComp (Czechia)'),
(27154, 'https://ror.org/00wftzf58', 'no_lang_code', 1, 'https://ror.org/00wftzf58 Chepos (Czechia)'),
(27155, 'https://ror.org/04myyf417', 'en', 1, 'https://ror.org/04myyf417 State Institute for Drug Control Státní Ústav pro Kontrolu Léčiv'),
(27156, 'https://ror.org/057makt82', 'en', 1, 'https://ror.org/057makt82 Institute of Applied Mechanics Instituts für angewandte Mechanik'),
(27157, 'https://ror.org/0475wjv32', 'no_lang_code', 1, 'https://ror.org/0475wjv32 Polygra (Czechia)'),
(27158, 'https://ror.org/03qcbea07', 'no_lang_code', 1, 'https://ror.org/03qcbea07 BTL Zdravotnická Technika (Czechia)'),
(27159, 'https://ror.org/009ty3557', 'no_lang_code', 1, 'https://ror.org/009ty3557 Stavexis (Czechia)'),
(27160, 'https://ror.org/01fjc2t47', 'no_lang_code', 1, 'https://ror.org/01fjc2t47 Stavus (Czechia)'),
(27161, 'https://ror.org/03ryzhm22', 'en', 1, 'https://ror.org/03ryzhm22 Czech Association of Geophysicists'),
(27162, 'https://ror.org/01mkmmc36', 'no_lang_code', 1, 'https://ror.org/01mkmmc36 Hop Research Institute (Czechia)'),
(27163, 'https://ror.org/02byvvk38', 'no_lang_code', 1, 'https://ror.org/02byvvk38 Disk (Czechia)'),
(27164, 'https://ror.org/00qte7767', 'no_lang_code', 1, 'https://ror.org/00qte7767 Camea (Czechia)'),
(27165, 'https://ror.org/05de33361', 'no_lang_code', 1, 'https://ror.org/05de33361 STEM (Czechia)'),
(27166, 'https://ror.org/05mx3tz05', 'no_lang_code', 1, 'https://ror.org/05mx3tz05 Polymer Institute Brno (Czechia)'),
(27167, 'https://ror.org/03zg21k42', 'en', 1, 'https://ror.org/03zg21k42 Sports Research Institute Of Czech Armed Forces'),
(27168, 'https://ror.org/002rp1x36', 'no_lang_code', 1, 'https://ror.org/002rp1x36 Siemens (Czechia)'),
(27169, 'https://ror.org/01yzd1685', 'no_lang_code', 1, 'https://ror.org/01yzd1685 Stomix (Czechia)'),
(27170, 'https://ror.org/0303m8c17', 'no_lang_code', 1, 'https://ror.org/0303m8c17 Pontex (Czechia)'),
(27171, 'https://ror.org/05t178043', 'no_lang_code', 1, 'https://ror.org/05t178043 Vyrtych (Czechia)'),
(27172, 'https://ror.org/00p08ff25', 'no_lang_code', 1, 'https://ror.org/00p08ff25 Portál (Czechia)'),
(27173, 'https://ror.org/01abd7j14', 'cs', 1, 'https://ror.org/01abd7j14 Ústav Archeologické Památkové Péče Severozápadních Čech'),
(27174, 'https://ror.org/00grg8947', 'cs', 1, 'https://ror.org/00grg8947 Ústav Archeologické Památkové Péče Středních Čech'),
(27175, 'https://ror.org/00v6e9296', 'no_lang_code', 1, 'https://ror.org/00v6e9296 Dormer Pramet Tools (Czechia)'),
(27176, 'https://ror.org/04qhg3f29', 'cs', 1, 'https://ror.org/04qhg3f29 Střední uměleckoprůmyslová škola sklářská Valašské Meziříčí'),
(27177, 'https://ror.org/02dp3m016', 'no_lang_code', 1, 'https://ror.org/02dp3m016 Prefa Brno (Czechia)'),
(27178, 'https://ror.org/03cmqyv16', 'cs', 1, 'https://ror.org/03cmqyv16 Středočeské Muzeum v Roztokách u Prahy'),
(27179, 'https://ror.org/03kmzs707', 'no_lang_code', 1, 'https://ror.org/03kmzs707 Strix Chomutov (Czechia)'),
(27180, 'https://ror.org/05ek5cn41', 'no_lang_code', 1, 'https://ror.org/05ek5cn41 Cogebi (Czechia)'),
(27181, 'https://ror.org/02mh2b743', 'no_lang_code', 1, 'https://ror.org/02mh2b743 Princip (Czechia)'),
(27182, 'https://ror.org/01cczbd45', 'no_lang_code', 1, 'https://ror.org/01cczbd45 PrimeCell Therapeutics (Czechia)'),
(27183, 'https://ror.org/02221cp63', 'no_lang_code', 1, 'https://ror.org/02221cp63 PROCES - Centre for Municipal and Regional Development (Czechia)'),
(27184, 'https://ror.org/045c1s446', 'en', 1, 'https://ror.org/045c1s446 Research and Breeding Institute of Pomology Holovousy'),
(27185, 'https://ror.org/05fwqpw07', 'no_lang_code', 1, 'https://ror.org/05fwqpw07 ProjectSoft (Czechia)'),
(27186, 'https://ror.org/01gq85p89', 'no_lang_code', 1, 'https://ror.org/01gq85p89 RPC Promens (Czechia)'),
(27187, 'https://ror.org/0351h0721', 'no_lang_code', 1, 'https://ror.org/0351h0721 ProSpon (Czechia)'),
(27188, 'https://ror.org/0587qta27', 'no_lang_code', 1, 'https://ror.org/0587qta27 Prototypa (Czechia)'),
(27189, 'https://ror.org/0165g4976', 'no_lang_code', 1, 'https://ror.org/0165g4976 Selton (Czechia) Výzkumné Centrum Selton'),
(27190, 'https://ror.org/04a3e3p04', 'no_lang_code', 1, 'https://ror.org/04a3e3p04 Doosan (Czechia)'),
(27191, 'https://ror.org/01a0xg480', 'no_lang_code', 1, 'https://ror.org/01a0xg480 STV Group (Czechia)'),
(27192, 'https://ror.org/036cz4488', 'no_lang_code', 1, 'https://ror.org/036cz4488 Sudop Praha (Czechia)'),
(27193, 'https://ror.org/01apvpc22', 'no_lang_code', 1, 'https://ror.org/01apvpc22 Summa (Czechia)'),
(27194, 'https://ror.org/02ad4my11', 'no_lang_code', 1, 'https://ror.org/02ad4my11 Dopravní Rozvojové Středisko (Czechia)'),
(27195, 'https://ror.org/03yqhqq55', 'no_lang_code', 1, 'https://ror.org/03yqhqq55 SurfaceTreat (Czechia)'),
(27196, 'https://ror.org/0377t7h89', 'no_lang_code', 1, 'https://ror.org/0377t7h89 První Železářská Společnost Kladno (Czechia)'),
(27197, 'https://ror.org/00ez0sd51', 'en', 1, 'https://ror.org/00ez0sd51 Institute for Environmental Policy'),
(27198, 'https://ror.org/03h43ff92', 'cs', 1, 'https://ror.org/03h43ff92 Association of Chemical Industry of the Czech Republic Svaz chemického průmyslu České republiky'),
(27199, 'https://ror.org/02fy2kw04', 'no_lang_code', 1, 'https://ror.org/02fy2kw04 Dufonev (Czechia)'),
(27200, 'https://ror.org/05t4srr46', 'en', 1, 'https://ror.org/05t4srr46 Centre for International Cooperation in Education'),
(27201, 'https://ror.org/048f9ne85', 'en', 1, 'https://ror.org/048f9ne85 Research Institute of Inorganic Chemistry Výzkumný ústav anorganické chemie, a.s.'),
(27202, 'https://ror.org/00ps2tb42', 'en', 1, 'https://ror.org/00ps2tb42 Confederation of Industry of the Czech Republic'),
(27203, 'https://ror.org/01tze4598', 'no_lang_code', 1, 'https://ror.org/01tze4598 SVCS Process Innovation (Czechia)'),
(27204, 'https://ror.org/04fgffc11', 'en', 1, 'https://ror.org/04fgffc11 Research Institute of Geodesy, Topography and Cartography'),
(27205, 'https://ror.org/05w61xa76', 'no_lang_code', 1, 'https://ror.org/05w61xa76 Delinfo (Czechia)'),
(27206, 'https://ror.org/028r0g017', 'no_lang_code', 1, 'https://ror.org/028r0g017 EMP (Czechia)'),
(27207, 'https://ror.org/04kc1rn33', 'no_lang_code', 1, 'https://ror.org/04kc1rn33 Rcd Radiokomunikace (Czechia)'),
(27208, 'https://ror.org/03nb5h994', 'no_lang_code', 1, 'https://ror.org/03nb5h994 EBIS (Czechia)'),
(27209, 'https://ror.org/04hfvq252', 'no_lang_code', 1, 'https://ror.org/04hfvq252 Research Institute of Binding Materials Prague (Czechia) Výzkumný ústav maltovin Praha'),
(27210, 'https://ror.org/0229a7v30', 'no_lang_code', 1, 'https://ror.org/0229a7v30 SVM Microwaves (Czechia)'),
(27211, 'https://ror.org/03tmd6r11', 'no_lang_code', 1, 'https://ror.org/03tmd6r11 ECO Trend (Czechia)'),
(27212, 'https://ror.org/050evx807', 'no_lang_code', 1, 'https://ror.org/050evx807 SVOS (Czechia)'),
(27213, 'https://ror.org/03w6h1q24', 'no_lang_code', 1, 'https://ror.org/03w6h1q24 UVB Technik (Czechia)'),
(27214, 'https://ror.org/039xc0449', 'no_lang_code', 1, 'https://ror.org/039xc0449 Ecofluid Group (Czechia)'),
(27215, 'https://ror.org/02vvanv81', 'no_lang_code', 1, 'https://ror.org/02vvanv81 Ecosond (Czechia)'),
(27216, 'https://ror.org/04e035w81', 'no_lang_code', 1, 'https://ror.org/04e035w81 Reflex (Czechia)'),
(27217, 'https://ror.org/04xxbqf41', 'no_lang_code', 1, 'https://ror.org/04xxbqf41 Symbiom (Czechia)'),
(27218, 'https://ror.org/02hp1db34', 'no_lang_code', 1, 'https://ror.org/02hp1db34 Research Institute of Organic Syntheses (Czechia) Výzkumný Ústav Organických Syntéz'),
(27219, 'https://ror.org/00m6vcy72', 'no_lang_code', 1, 'https://ror.org/00m6vcy72 Edip (Czechia)'),
(27220, 'https://ror.org/04x2nbf55', 'no_lang_code', 1, 'https://ror.org/04x2nbf55 Synthesia (Czechia)'),
(27221, 'https://ror.org/04mez0d16', 'en', 1, 'https://ror.org/04mez0d16 Regional Museum in Teplice Regionální muzeum v Teplicích'),
(27222, 'https://ror.org/012w6mj89', 'cs', 1, 'https://ror.org/012w6mj89 Regionální muzeum ve Vysokém Mýtě Vysoké Mýto Regional Museum'),
(27223, 'https://ror.org/023gma697', 'no_lang_code', 1, 'https://ror.org/023gma697 Synthos Group (Czechia)'),
(27224, 'https://ror.org/04chene87', 'no_lang_code', 1, 'https://ror.org/04chene87 Eeip (Czechia)'),
(27225, 'https://ror.org/02tr3dx87', 'no_lang_code', 1, 'https://ror.org/02tr3dx87 Vakos XT (Czechia)'),
(27226, 'https://ror.org/01mhwy230', 'no_lang_code', 1, 'https://ror.org/01mhwy230 Řepařský Institut Semčice (Czechia)'),
(27227, 'https://ror.org/02a67c878', 'no_lang_code', 1, 'https://ror.org/02a67c878 Vakuum Praha (Czechia)'),
(27228, 'https://ror.org/049aaxv89', 'no_lang_code', 1, 'https://ror.org/049aaxv89 Sysnet (Czechia)'),
(27229, 'https://ror.org/0450r7s53', 'no_lang_code', 1, 'https://ror.org/0450r7s53 T-CZ (Czechia)'),
(27230, 'https://ror.org/05nv0ff14', 'no_lang_code', 1, 'https://ror.org/05nv0ff14 Retia (Czechia)'),
(27231, 'https://ror.org/02bwrhb42', 'no_lang_code', 1, 'https://ror.org/02bwrhb42 EnerGoConsult (Czechia)'),
(27232, 'https://ror.org/02k8qat92', 'cs', 1, 'https://ror.org/02k8qat92 Valašské Muzeum v Přírodě'),
(27233, 'https://ror.org/01e15b368', 'no_lang_code', 1, 'https://ror.org/01e15b368 ÚVP Běchovice (Czechia)'),
(27234, 'https://ror.org/012pr3y94', 'no_lang_code', 1, 'https://ror.org/012pr3y94 Variel (Czechia)'),
(27235, 'https://ror.org/04p5w4d81', 'no_lang_code', 1, 'https://ror.org/04p5w4d81 Vinci (Czechia)');
INSERT INTO `rors` VALUES
(27236, 'https://ror.org/05p6wtx18', 'no_lang_code', 1, 'https://ror.org/05p6wtx18 Research Institute for Brown Coal (Czechia) Výzkumný ústav pro hnědé uhlí a.s.'),
(27237, 'https://ror.org/006rbkq36', 'no_lang_code', 1, 'https://ror.org/006rbkq36 T-MAPY (Czechia)'),
(27238, 'https://ror.org/03p94a441', 'no_lang_code', 1, 'https://ror.org/03p94a441 Rieter (Czechia)'),
(27239, 'https://ror.org/00w2phz39', 'no_lang_code', 1, 'https://ror.org/00w2phz39 Rigaku Innovative Technologies Europe (Czechia)'),
(27240, 'https://ror.org/02j6rby23', 'no_lang_code', 1, 'https://ror.org/02j6rby23 Ekola (Czechia)'),
(27241, 'https://ror.org/051gphn80', 'no_lang_code', 1, 'https://ror.org/051gphn80 Pneuven (Czechia)'),
(27242, 'https://ror.org/04xbzq724', 'no_lang_code', 1, 'https://ror.org/04xbzq724 VF (Czechia)'),
(27243, 'https://ror.org/02dh37d82', 'no_lang_code', 1, 'https://ror.org/02dh37d82 Vidia (Czechia)'),
(27244, 'https://ror.org/013gnym04', 'no_lang_code', 1, 'https://ror.org/013gnym04 Tanger computersystems'),
(27245, 'https://ror.org/05vayj190', 'en', 1, 'https://ror.org/05vayj190 Bee Research Institute Institut für Bienenforschung'),
(27246, 'https://ror.org/05jyzsv32', 'no_lang_code', 1, 'https://ror.org/05jyzsv32 Ekotoxa (Czechia)'),
(27247, 'https://ror.org/00rb9a558', 'en', 1, 'https://ror.org/00rb9a558 Technical museum in Brno Technické muzeum v Brně'),
(27248, 'https://ror.org/00p70j486', 'no_lang_code', 1, 'https://ror.org/00p70j486 Romotop (Czechia)'),
(27249, 'https://ror.org/025gjwv49', 'no_lang_code', 1, 'https://ror.org/025gjwv49 Ekowatt (Czechia)'),
(27250, 'https://ror.org/043arvz49', 'no_lang_code', 1, 'https://ror.org/043arvz49 Technical services for air protection Prague (Czechia) Technické služby ochrany ovzduší Praha'),
(27251, 'https://ror.org/025s3sg85', 'no_lang_code', 1, 'https://ror.org/025s3sg85 Elceram (Czechia)'),
(27252, 'https://ror.org/029nrcq47', 'no_lang_code', 1, 'https://ror.org/029nrcq47 RS Dynamics (Czechia)'),
(27253, 'https://ror.org/04szbnb37', 'no_lang_code', 1, 'https://ror.org/04szbnb37 Vision Consulting Automotive (Czechia)'),
(27254, 'https://ror.org/02m4xf424', 'no_lang_code', 1, 'https://ror.org/02m4xf424 WAK System (Czechia)'),
(27255, 'https://ror.org/014q5e672', 'no_lang_code', 1, 'https://ror.org/014q5e672 Tedom (Czechia)'),
(27256, 'https://ror.org/016jek077', 'no_lang_code', 1, 'https://ror.org/016jek077 Vítkovice Machinery Group (Czechia)'),
(27257, 'https://ror.org/00x705929', 'no_lang_code', 1, 'https://ror.org/00x705929 Vítkovické Slévárny (Czechia)'),
(27258, 'https://ror.org/05vng4613', 'no_lang_code', 1, 'https://ror.org/05vng4613 Wastech (Czechia)'),
(27259, 'https://ror.org/04v6fdx75', 'no_lang_code', 1, 'https://ror.org/04v6fdx75 Sako Brno (Czechia)'),
(27260, 'https://ror.org/05h9b8280', 'cs', 1, 'https://ror.org/05h9b8280 Vlastivědné Muzeum Dr. Hostaše v Klatovech'),
(27261, 'https://ror.org/047ref397', 'no_lang_code', 1, 'https://ror.org/047ref397 Telematix Group (Czechia)'),
(27262, 'https://ror.org/00beege11', 'no_lang_code', 1, 'https://ror.org/00beege11 Webnode (Czechia)'),
(27263, 'https://ror.org/014qh1461', 'cs', 1, 'https://ror.org/014qh1461 Regional Museum in Olomouc Vlastivědné Muzeum v Olomouci'),
(27264, 'https://ror.org/00kswsq18', 'no_lang_code', 1, 'https://ror.org/00kswsq18 Sand Team (Czechia)'),
(27265, 'https://ror.org/002ec3041', 'no_lang_code', 1, 'https://ror.org/002ec3041 Vodni Zdroje (Czechia)'),
(27266, 'https://ror.org/05yjmg052', 'no_lang_code', 1, 'https://ror.org/05yjmg052 Temex (Czechia)'),
(27267, 'https://ror.org/000qred46', 'no_lang_code', 1, 'https://ror.org/000qred46 Zero Liquid Discharge (Czechia)'),
(27268, 'https://ror.org/032xpkz45', 'no_lang_code', 1, 'https://ror.org/032xpkz45 Tenza (Czechia)'),
(27269, 'https://ror.org/00jwjhn70', 'no_lang_code', 1, 'https://ror.org/00jwjhn70 Satturn Holešov (Czechia)'),
(27270, 'https://ror.org/05c951c38', 'no_lang_code', 1, 'https://ror.org/05c951c38 Termizo (Czechia)'),
(27271, 'https://ror.org/01d5d9q11', 'no_lang_code', 1, 'https://ror.org/01d5d9q11 Vodohospodářský Rozvoj a Výstavba'),
(27272, 'https://ror.org/017ybv328', 'no_lang_code', 1, 'https://ror.org/017ybv328 TES VsetÍn (Czechia)'),
(27273, 'https://ror.org/00kvxyg87', 'no_lang_code', 1, 'https://ror.org/00kvxyg87 Tesla Blatna (Czechia)'),
(27274, 'https://ror.org/01jwyc227', 'no_lang_code', 1, 'https://ror.org/01jwyc227 VOP (Czechia)'),
(27275, 'https://ror.org/020czch62', 'no_lang_code', 1, 'https://ror.org/020czch62 TESLA (Czechia)'),
(27276, 'https://ror.org/03ef2km18', 'no_lang_code', 1, 'https://ror.org/03ef2km18 SBP Consult'),
(27277, 'https://ror.org/01e0a6275', 'no_lang_code', 1, 'https://ror.org/01e0a6275 Military Research Institute Vojenský Výzkumný Ústav'),
(27278, 'https://ror.org/01ba09j13', 'no_lang_code', 1, 'https://ror.org/01ba09j13 Edinburgh Instruments (United Kingdom)'),
(27279, 'https://ror.org/03zz2hh98', 'no_lang_code', 1, 'https://ror.org/03zz2hh98 VR Group (Czechia)'),
(27280, 'https://ror.org/02esqkz27', 'no_lang_code', 1, 'https://ror.org/02esqkz27 Závod Automatizační Techniky (Czechia)'),
(27281, 'https://ror.org/04qvy9k41', 'no_lang_code', 1, 'https://ror.org/04qvy9k41 Evotec (United Kingdom)'),
(27282, 'https://ror.org/056rqtp72', 'no_lang_code', 1, 'https://ror.org/056rqtp72 VRL Praha (Czechia)'),
(27283, 'https://ror.org/019nq5750', 'no_lang_code', 1, 'https://ror.org/019nq5750 Tieto (Czechia)'),
(27284, 'https://ror.org/004mb3588', 'no_lang_code', 1, 'https://ror.org/004mb3588 TL Ultralight (Czechia)'),
(27285, 'https://ror.org/02hhqwv47', 'no_lang_code', 1, 'https://ror.org/02hhqwv47 Tonak (Czechia)'),
(27286, 'https://ror.org/052bawr89', 'no_lang_code', 1, 'https://ror.org/052bawr89 TOS Kuřim (Czechia)'),
(27287, 'https://ror.org/03ymnzh47', 'no_lang_code', 1, 'https://ror.org/03ymnzh47 TOS Varnsdorf (Czechia)'),
(27288, 'https://ror.org/02ggx8458', 'no_lang_code', 1, 'https://ror.org/02ggx8458 Vuab Pharma (Czechia)'),
(27289, 'https://ror.org/02xzh7w80', 'no_lang_code', 1, 'https://ror.org/02xzh7w80 SE-MI Technology (Czechia)'),
(27290, 'https://ror.org/05apvj660', 'no_lang_code', 1, 'https://ror.org/05apvj660 Toshulin (Czechia)'),
(27291, 'https://ror.org/04bcyx979', 'cs', 1, 'https://ror.org/04bcyx979 Všeobecná Uverová Banka'),
(27292, 'https://ror.org/014pw6s10', 'en', 1, 'https://ror.org/014pw6s10 Public Health Institute Ostrava Zdravotní ústav se sídlem v Ostravě'),
(27293, 'https://ror.org/05t7wa168', 'no_lang_code', 1, 'https://ror.org/05t7wa168 Trakce (Czechia)'),
(27294, 'https://ror.org/05ybw7k58', 'no_lang_code', 1, 'https://ror.org/05ybw7k58 VUC Praha (Czechia)'),
(27295, 'https://ror.org/00b52zb38', 'no_lang_code', 1, 'https://ror.org/00b52zb38 Tramaz (Czechia)'),
(27296, 'https://ror.org/05g59rq62', 'no_lang_code', 1, 'https://ror.org/05g59rq62 VUES Brno (Czechia)'),
(27297, 'https://ror.org/056wdsj76', 'no_lang_code', 1, 'https://ror.org/056wdsj76 Research Institute for Pharmacy and Biochemistry (Czechia) Výzkumný Ustav pro Farmacii a Biochemii'),
(27298, 'https://ror.org/01ntg7h46', 'no_lang_code', 1, 'https://ror.org/01ntg7h46 VÚHŽ (Czechia)'),
(27299, 'https://ror.org/01bw8k626', 'no_lang_code', 1, 'https://ror.org/01bw8k626 SHM (Czechia)'),
(27300, 'https://ror.org/04515fs89', 'no_lang_code', 1, 'https://ror.org/04515fs89 Vuje (Czechia)'),
(27301, 'https://ror.org/04nvvrb20', 'no_lang_code', 1, 'https://ror.org/04nvvrb20 Dakel (Czechia)'),
(27302, 'https://ror.org/00wwdre49', 'no_lang_code', 1, 'https://ror.org/00wwdre49 Trexima (Czechia)'),
(27303, 'https://ror.org/04ahqr359', 'en', 1, 'https://ror.org/04ahqr359 Jewish Museum in Prague Židovské muzeum v Praze'),
(27304, 'https://ror.org/02e8gsm88', 'no_lang_code', 1, 'https://ror.org/02e8gsm88 ZKL (Czechia)'),
(27305, 'https://ror.org/04dq6em15', 'no_lang_code', 1, 'https://ror.org/04dq6em15 Tribotec (Czechia)'),
(27306, 'https://ror.org/04wv1t552', 'no_lang_code', 1, 'https://ror.org/04wv1t552 T-Soft (Czechia)'),
(27307, 'https://ror.org/05qdadx80', 'no_lang_code', 1, 'https://ror.org/05qdadx80 Prague Research Institute of Railway Rolling Stock VUKV (Czechia)'),
(27308, 'https://ror.org/05rbemn16', 'no_lang_code', 1, 'https://ror.org/05rbemn16 Tajmac-zps (Czechia)'),
(27309, 'https://ror.org/00p29dt33', 'no_lang_code', 1, 'https://ror.org/00p29dt33 SIGMA Výzkumný a Vývojový Ústav (Czechia)'),
(27310, 'https://ror.org/0231s0n71', 'no_lang_code', 1, 'https://ror.org/0231s0n71 Watrad (Czechia)'),
(27311, 'https://ror.org/041c53527', 'no_lang_code', 1, 'https://ror.org/041c53527 Třinec Iron and Steel Works Třinecké Železárny (Czechia)'),
(27312, 'https://ror.org/01aa9v197', 'no_lang_code', 1, 'https://ror.org/01aa9v197 Zbrojovka Vsetín (Czechia)'),
(27313, 'https://ror.org/02bkptf71', 'no_lang_code', 1, 'https://ror.org/02bkptf71 Silniční Vývoj (Czechia)'),
(27314, 'https://ror.org/03455qw25', 'no_lang_code', 1, 'https://ror.org/03455qw25 Trumf International (Czechia)'),
(27315, 'https://ror.org/032dg3327', 'no_lang_code', 1, 'https://ror.org/032dg3327 Trystom (Czechia)'),
(27316, 'https://ror.org/010xtt879', 'no_lang_code', 1, 'https://ror.org/010xtt879 VUP Medical (Czechia) Výzkumný Ústav Pletařský'),
(27317, 'https://ror.org/052nqyp83', 'no_lang_code', 1, 'https://ror.org/052nqyp83 Research Institute for Building Materials (Czechia) Výzkumný ústav stavebních hmot,a.s.'),
(27318, 'https://ror.org/02c875652', 'no_lang_code', 1, 'https://ror.org/02c875652 Research Institute of Textile Machinery VUTS (Czechia)'),
(27319, 'https://ror.org/03rzxvn19', 'no_lang_code', 1, 'https://ror.org/03rzxvn19 Crystalite Bohemia (Czechia)'),
(27320, 'https://ror.org/03kjjdy81', 'no_lang_code', 1, 'https://ror.org/03kjjdy81 ŽĎAS (Czechia)'),
(27321, 'https://ror.org/01mr2n737', 'no_lang_code', 1, 'https://ror.org/01mr2n737 Škoda (Czechia)'),
(27322, 'https://ror.org/01mtmt650', 'no_lang_code', 1, 'https://ror.org/01mtmt650 TTC Telekomunikace (Czechia)'),
(27323, 'https://ror.org/01yk0dg70', 'no_lang_code', 1, 'https://ror.org/01yk0dg70 VVUU (Czechia)'),
(27324, 'https://ror.org/04mfnn392', 'no_lang_code', 1, 'https://ror.org/04mfnn392 VVV Most (Czechia)'),
(27325, 'https://ror.org/00vnfjq11', 'no_lang_code', 1, 'https://ror.org/00vnfjq11 CereProc (United Kingdom)'),
(27326, 'https://ror.org/01hzjbc83', 'no_lang_code', 1, 'https://ror.org/01hzjbc83 TÜV SÜD (Czechia)'),
(27327, 'https://ror.org/00dh8qa61', 'en', 1, 'https://ror.org/00dh8qa61 East Bohemian Museum in Pardubice Východočeské muzeum v Pardubicích'),
(27328, 'https://ror.org/01n0ygw36', 'en', 1, 'https://ror.org/01n0ygw36 Slamka Consulting'),
(27329, 'https://ror.org/01xc8qy31', 'no_lang_code', 1, 'https://ror.org/01xc8qy31 Ujp Praha (Czechia)'),
(27330, 'https://ror.org/01083gz70', 'no_lang_code', 1, 'https://ror.org/01083gz70 Daiichi Sankyo (United Kingdom)'),
(27331, 'https://ror.org/01nsvrs46', 'no_lang_code', 1, 'https://ror.org/01nsvrs46 UniControls (Czechia)'),
(27332, 'https://ror.org/03d94a118', 'no_lang_code', 1, 'https://ror.org/03d94a118 SatisGeo (Czechia)'),
(27333, 'https://ror.org/00fmwma48', 'en', 1, 'https://ror.org/00fmwma48 Alaska Fisheries Development Foundation'),
(27334, 'https://ror.org/006sy0h18', 'no_lang_code', 1, 'https://ror.org/006sy0h18 Unit Plus (Czechia)'),
(27335, 'https://ror.org/008wejk32', 'en', 1, 'https://ror.org/008wejk32 Trauma Hospital of Brno Úrazová nemocnice'),
(27336, 'https://ror.org/05j159d85', 'no_lang_code', 1, 'https://ror.org/05j159d85 Šmeral Brno (Czechia)'),
(27337, 'https://ror.org/03k3r1802', 'no_lang_code', 1, 'https://ror.org/03k3r1802 URC Systems (Czechia)'),
(27338, 'https://ror.org/033kqn293', 'no_lang_code', 1, 'https://ror.org/033kqn293 SMS (Czechia)'),
(27339, 'https://ror.org/016wtjs52', 'no_lang_code', 1, 'https://ror.org/016wtjs52 Sobriety (Czechia) Střízlivost'),
(27340, 'https://ror.org/03gz4ds16', 'no_lang_code', 1, 'https://ror.org/03gz4ds16 ÚRS Praha (Czechia)'),
(27341, 'https://ror.org/05avebb86', 'en', 1, 'https://ror.org/05avebb86 Alaska Native Harbor Seal Commission'),
(27342, 'https://ror.org/02jb0mk52', 'no_lang_code', 1, 'https://ror.org/02jb0mk52 International Data Group (United States)'),
(27343, 'https://ror.org/03decxd42', 'no_lang_code', 1, 'https://ror.org/03decxd42 Software602 (Czechia)'),
(27344, 'https://ror.org/05mjgmf63', 'en', 1, 'https://ror.org/05mjgmf63 Aleut Marine Mammal Commission'),
(27345, 'https://ror.org/007jmf435', 'en', 1, 'https://ror.org/007jmf435 Ecology Action'),
(27346, 'https://ror.org/014jej306', 'en', 1, 'https://ror.org/014jej306 Alice Ferguson Foundation'),
(27347, 'https://ror.org/05ex3a966', 'en', 1, 'https://ror.org/05ex3a966 Ecotrust'),
(27348, 'https://ror.org/034teep98', 'no_lang_code', 1, 'https://ror.org/034teep98 SOMA Engineering (Czechia)'),
(27349, 'https://ror.org/00d8vfy18', 'no_lang_code', 1, 'https://ror.org/00d8vfy18 Seawater Greenhouse (United Kingdom)'),
(27350, 'https://ror.org/00swfpj56', 'no_lang_code', 1, 'https://ror.org/00swfpj56 Alu Like'),
(27351, 'https://ror.org/032zdh829', 'no_lang_code', 1, 'https://ror.org/032zdh829 Soning (Czechia)'),
(27352, 'https://ror.org/01a26qd14', 'en', 1, 'https://ror.org/01a26qd14 American Littoral Society'),
(27353, 'https://ror.org/01jseqj92', 'en', 1, 'https://ror.org/01jseqj92 Elkhorn Slough Foundation'),
(27354, 'https://ror.org/04n0gan09', 'no_lang_code', 1, 'https://ror.org/04n0gan09 Hakel (Czechia)'),
(27355, 'https://ror.org/01w0a0q45', 'no_lang_code', 1, 'https://ror.org/01w0a0q45 Speel Praha (Czechia)'),
(27356, 'https://ror.org/03ntmq932', 'en', 1, 'https://ror.org/03ntmq932 American Rivers'),
(27357, 'https://ror.org/0236n1k26', 'en', 1, 'https://ror.org/0236n1k26 Association of the Innovation Center of Electronics'),
(27358, 'https://ror.org/0183bt791', 'en', 1, 'https://ror.org/0183bt791 Rhode Island Department of Environmental Management'),
(27359, 'https://ror.org/0242zbf37', 'en', 1, 'https://ror.org/0242zbf37 Alaska Seafood Marketing Institute'),
(27360, 'https://ror.org/04zs74560', 'no_lang_code', 1, 'https://ror.org/04zs74560 Společnost pro Obnovu Vesnice a Malého Města'),
(27361, 'https://ror.org/0234wz714', 'no_lang_code', 1, 'https://ror.org/0234wz714 Environmental Technologies (United States)'),
(27362, 'https://ror.org/03dbkxb13', 'en', 1, 'https://ror.org/03dbkxb13 Erie MetroParks'),
(27363, 'https://ror.org/046d7bv94', 'no_lang_code', 1, 'https://ror.org/046d7bv94 Lodestar Research Corporation (United States)'),
(27364, 'https://ror.org/00s4n9v76', 'no_lang_code', 1, 'https://ror.org/00s4n9v76 Sasol (United Kingdom)'),
(27365, 'https://ror.org/0459j6s55', 'no_lang_code', 1, 'https://ror.org/0459j6s55 Intertek (United Kingdom)'),
(27366, 'https://ror.org/02cmw6227', 'cs', 1, 'https://ror.org/02cmw6227 Krkonoše Mountains National Park Správa Krkonošského Národního Parku'),
(27367, 'https://ror.org/03nw44p55', 'cs', 1, 'https://ror.org/03nw44p55 Šumava National Park'),
(27368, 'https://ror.org/02s9hd024', 'no_lang_code', 1, 'https://ror.org/02s9hd024 Spur (Czechia)'),
(27369, 'https://ror.org/05rbe6d26', 'en', 1, 'https://ror.org/05rbe6d26 Anacostia Watershed Society'),
(27370, 'https://ror.org/058afab11', 'en', 1, 'https://ror.org/058afab11 Exploring New Horizons'),
(27371, 'https://ror.org/025qjtp52', 'en', 1, 'https://ror.org/025qjtp52 Annapolis Maritime Museum'),
(27372, 'https://ror.org/02sqe5a64', 'en', 1, 'https://ror.org/02sqe5a64 Puget Sound Restoration Fund'),
(27373, 'https://ror.org/03dxr8478', 'en', 1, 'https://ror.org/03dxr8478 Farallones Marine Sanctuary Association'),
(27374, 'https://ror.org/024v1qn33', 'en', 1, 'https://ror.org/024v1qn33 Arizona State Land Department'),
(27375, 'https://ror.org/020stct92', 'en', 1, 'https://ror.org/020stct92 Department of Conservation and Recreation'),
(27376, 'https://ror.org/05f2ywb48', 'no_lang_code', 1, 'https://ror.org/05f2ywb48 Regenstrief Institute'),
(27377, 'https://ror.org/001rxva70', 'en', 1, 'https://ror.org/001rxva70 Recreation and Conservation Office'),
(27378, 'https://ror.org/04c9fd109', 'en', 1, 'https://ror.org/04c9fd109 Reef Environmental Education Foundation'),
(27379, 'https://ror.org/04dmdc523', 'en', 1, 'https://ror.org/04dmdc523 Association of Environmental and Resource Economists'),
(27380, 'https://ror.org/04rry3397', 'en', 1, 'https://ror.org/04rry3397 Massachusetts Energy and Environmental Affairs'),
(27381, 'https://ror.org/0057j2q22', 'en', 1, 'https://ror.org/0057j2q22 Pennsylvania Fish and Boat Commission'),
(27382, 'https://ror.org/05v8e1c02', 'en', 1, 'https://ror.org/05v8e1c02 Massachusetts Department of Fish & Game'),
(27383, 'https://ror.org/01xcp0546', 'no_lang_code', 1, 'https://ror.org/01xcp0546 Fishmaster (United States)'),
(27384, 'https://ror.org/02ngpcc15', 'no_lang_code', 1, 'https://ror.org/02ngpcc15 CompX (United States)'),
(27385, 'https://ror.org/003042j23', 'en', 1, 'https://ror.org/003042j23 Gulf of Maine Association'),
(27386, 'https://ror.org/04n9bkr44', 'no_lang_code', 1, 'https://ror.org/04n9bkr44 Micronesia Conservation Trust'),
(27387, 'https://ror.org/05btp4k45', 'en', 1, 'https://ror.org/05btp4k45 FishAmerica Foundation'),
(27388, 'https://ror.org/044w7r064', 'en', 1, 'https://ror.org/044w7r064 Restore America''s Estuaries'),
(27389, 'https://ror.org/02yx5w936', 'en', 1, 'https://ror.org/02yx5w936 Bering Sea Fishermen’s Association'),
(27390, 'https://ror.org/00dpn5080', 'en', 1, 'https://ror.org/00dpn5080 Coastal Resources Management Council'),
(27391, 'https://ror.org/03q6r4119', 'en', 1, 'https://ror.org/03q6r4119 Transportation Corridor Agencies'),
(27392, 'https://ror.org/037fds271', 'en', 1, 'https://ror.org/037fds271 Boxerwood Nature Center and Woodland Garden'),
(27393, 'https://ror.org/042cy6c15', 'en', 1, 'https://ror.org/042cy6c15 Salish Sea Expeditions'),
(27394, 'https://ror.org/02bk71j42', 'en', 1, 'https://ror.org/02bk71j42 Alaska Department of Military and Veterans Affairs'),
(27395, 'https://ror.org/00qf4ya40', 'en', 1, 'https://ror.org/00qf4ya40 EarthCorps'),
(27396, 'https://ror.org/04wn0mt15', 'en', 1, 'https://ror.org/04wn0mt15 Washington Military Department'),
(27397, 'https://ror.org/02bhpc673', 'en', 1, 'https://ror.org/02bhpc673 Bristol Bay Native Association'),
(27398, 'https://ror.org/025vabz67', 'en', 1, 'https://ror.org/025vabz67 California Coastal Commission'),
(27399, 'https://ror.org/005fbjb88', 'en', 1, 'https://ror.org/005fbjb88 San Diego Unified Port District'),
(27400, 'https://ror.org/007dt0y58', 'en', 1, 'https://ror.org/007dt0y58 Pacific Marine Mammal Center'),
(27401, 'https://ror.org/02ddvb580', 'en', 1, 'https://ror.org/02ddvb580 Oregon Department of Geology and Mineral Industries'),
(27402, 'https://ror.org/02ywx2b39', 'en', 1, 'https://ror.org/02ywx2b39 Resource Conservation District of Santa Cruz County'),
(27403, 'https://ror.org/056vcnr65', 'en', 1, 'https://ror.org/056vcnr65 Minnesota Department of Natural Resources'),
(27404, 'https://ror.org/001tjgg88', 'en', 1, 'https://ror.org/001tjgg88 Save the Bay'),
(27405, 'https://ror.org/0563jgr23', 'en', 1, 'https://ror.org/0563jgr23 Save the Whales'),
(27406, 'https://ror.org/04vzsq290', 'en', 1, 'https://ror.org/04vzsq290 Mississippi Alabama Sea Grant Consortium'),
(27407, 'https://ror.org/0097e1k27', 'en', 1, 'https://ror.org/0097e1k27 Wright-Patterson Air Force Base'),
(27408, 'https://ror.org/01z91qx97', 'en', 1, 'https://ror.org/01z91qx97 Sea Research Foundation'),
(27409, 'https://ror.org/015tjr078', 'en', 1, 'https://ror.org/015tjr078 California Marine Sanctuary Foundation'),
(27410, 'https://ror.org/05n4v6b27', 'en', 1, 'https://ror.org/05n4v6b27 Maritime Gloucester'),
(27411, 'https://ror.org/02aps7m22', 'en', 1, 'https://ror.org/02aps7m22 Golden Gate National Parks Conservancy'),
(27412, 'https://ror.org/05yay2120', 'en', 1, 'https://ror.org/05yay2120 Monk Seal Foundation'),
(27413, 'https://ror.org/02sz0ks17', 'en', 1, 'https://ror.org/02sz0ks17 Canaan Valley Institute'),
(27414, 'https://ror.org/05dpjef75', 'en', 1, 'https://ror.org/05dpjef75 Seacoast Science Center'),
(27415, 'https://ror.org/05fqwcn05', 'en', 1, 'https://ror.org/05fqwcn05 SeaWeb'),
(27416, 'https://ror.org/01txr9233', 'en', 1, 'https://ror.org/01txr9233 Great Lakes Commission'),
(27417, 'https://ror.org/04zwjnc85', 'en', 1, 'https://ror.org/04zwjnc85 Carmel Unified School District'),
(27418, 'https://ror.org/04z1ced74', 'en', 1, 'https://ror.org/04z1ced74 Cascadia Research Collective'),
(27419, 'https://ror.org/04qbhz780', 'no_lang_code', 1, 'https://ror.org/04qbhz780 Mrag Americas (United States)'),
(27420, 'https://ror.org/0299k9v97', 'en', 1, 'https://ror.org/0299k9v97 Hudson River Valley Greenway'),
(27421, 'https://ror.org/03tsq7092', 'en', 1, 'https://ror.org/03tsq7092 Shedd Aquarium'),
(27422, 'https://ror.org/03wzf8z32', 'en', 1, 'https://ror.org/03wzf8z32 Center for Alaskan Coastal Studies'),
(27423, 'https://ror.org/039sshh33', 'no_lang_code', 1, 'https://ror.org/039sshh33 Children of the Sea Na Kama Kai'),
(27424, 'https://ror.org/00eqjev45', 'en', 1, 'https://ror.org/00eqjev45 Society for the Protection of New Hampshire Forests'),
(27425, 'https://ror.org/04h8p1q11', 'en', 1, 'https://ror.org/04h8p1q11 South Atlantic Fishery Management Council'),
(27426, 'https://ror.org/05jhzfe38', 'en', 1, 'https://ror.org/05jhzfe38 Southwest Wetlands Interpretive Association'),
(27427, 'https://ror.org/04km2jv85', 'en', 1, 'https://ror.org/04km2jv85 National Estuarine Research Reserve Association Sistema Nacional de Reservas de Investigación Estuarina'),
(27428, 'https://ror.org/045fn2c25', 'en', 1, 'https://ror.org/045fn2c25 St.Tammany Parish Government'),
(27429, 'https://ror.org/01250xt95', 'en', 1, 'https://ror.org/01250xt95 National Fish and Wildlife Foundation'),
(27430, 'https://ror.org/05ew8ve77', 'en', 1, 'https://ror.org/05ew8ve77 Gulf & South Atlantic Fisheries Foundation'),
(27431, 'https://ror.org/02d4sgc96', 'en', 1, 'https://ror.org/02d4sgc96 Oyster Recovery Partnership'),
(27432, 'https://ror.org/03tvrky57', 'en', 1, 'https://ror.org/03tvrky57 Chesapeake Bay Foundation'),
(27433, 'https://ror.org/04c89v556', 'en', 1, 'https://ror.org/04c89v556 National Fisheries Institute'),
(27434, 'https://ror.org/04sfqar89', 'en', 1, 'https://ror.org/04sfqar89 National Marine Life Center'),
(27435, 'https://ror.org/03yj9h174', 'en', 1, 'https://ror.org/03yj9h174 Gulf and Caribbean Fisheries Institute'),
(27436, 'https://ror.org/03c7trt86', 'en', 1, 'https://ror.org/03c7trt86 Center for Social and Environmental Stewardship'),
(27437, 'https://ror.org/00gxhrz08', 'en', 1, 'https://ror.org/00gxhrz08 Gulf of Alaska Coastal Communities Coalition'),
(27438, 'https://ror.org/037wnwd29', 'no_lang_code', 1, 'https://ror.org/037wnwd29 Safina (Czechia)'),
(27439, 'https://ror.org/03jm2w382', 'en', 1, 'https://ror.org/03jm2w382 Gulf of Alaska Keeper'),
(27440, 'https://ror.org/01k0nxd36', 'en', 1, 'https://ror.org/01k0nxd36 Gulf of Maine Lobster Foundation'),
(27441, 'https://ror.org/0247jm624', 'en', 1, 'https://ror.org/0247jm624 Gulf of Mexico Foundation'),
(27442, 'https://ror.org/036b8hr27', 'en', 1, 'https://ror.org/036b8hr27 Michigan State Police'),
(27443, 'https://ror.org/015bdn754', 'no_lang_code', 1, 'https://ror.org/015bdn754 Hanalei Watershed Hui'),
(27444, 'https://ror.org/009tdqt52', 'en', 1, 'https://ror.org/009tdqt52 National Maritime Museum of the Gulf of Mexico'),
(27445, 'https://ror.org/02232tv51', 'en', 1, 'https://ror.org/02232tv51 Buzzards Bay Coalition'),
(27446, 'https://ror.org/00jpcea69', 'en', 1, 'https://ror.org/00jpcea69 Hawaii Nature Center'),
(27447, 'https://ror.org/00zvtrm48', 'en', 1, 'https://ror.org/00zvtrm48 Delaware Department of Natural Resources and Environmental Control'),
(27448, 'https://ror.org/0359yqb07', 'en', 1, 'https://ror.org/0359yqb07 Hawaii Seafood Council'),
(27449, 'https://ror.org/0067y8s97', 'en', 1, 'https://ror.org/0067y8s97 Texas Marine Mammal Stranding Network'),
(27450, 'https://ror.org/02b5k3s39', 'en', 1, 'https://ror.org/02b5k3s39 Texas Parks and Wildlife Department'),
(27451, 'https://ror.org/02a4ky105', 'en', 1, 'https://ror.org/02a4ky105 Hawai''i Wildlife Fund'),
(27452, 'https://ror.org/047g2hq96', 'en', 1, 'https://ror.org/047g2hq96 Illinois Department of Natural Resources'),
(27453, 'https://ror.org/0467jmw31', 'no_lang_code', 1, 'https://ror.org/0467jmw31 ET International (United States)'),
(27454, 'https://ror.org/02bgarq81', 'en', 1, 'https://ror.org/02bgarq81 Bay Institute'),
(27455, 'https://ror.org/03n7hja66', 'en', 1, 'https://ror.org/03n7hja66 Louisiana Department of Natural Resources'),
(27456, 'https://ror.org/009z6a066', 'en', 1, 'https://ror.org/009z6a066 California State Coastal Conservancy'),
(27457, 'https://ror.org/05ackpy69', 'no_lang_code', 1, 'https://ror.org/05ackpy69 Northeastern Regional Association of Coastal and Ocean Observing Systems (United States)'),
(27458, 'https://ror.org/04a07c178', 'en', 1, 'https://ror.org/04a07c178 Louisiana Coastal Protection and Restoration Authority'),
(27459, 'https://ror.org/01kbgns38', 'en', 1, 'https://ror.org/01kbgns38 Coastal Society'),
(27460, 'https://ror.org/044fdxc08', 'en', 1, 'https://ror.org/044fdxc08 Coastal States Organization'),
(27461, 'https://ror.org/0265z5881', 'en', 1, 'https://ror.org/0265z5881 Elizabeth River Project'),
(27462, 'https://ror.org/02w1psy08', 'en', 1, 'https://ror.org/02w1psy08 New England Fishery Management Council'),
(27463, 'https://ror.org/04ryb0b77', 'en', 1, 'https://ror.org/04ryb0b77 Coastal States Stewardship Foundation'),
(27464, 'https://ror.org/0328gjw85', 'en', 1, 'https://ror.org/0328gjw85 Florida Aquarium'),
(27465, 'https://ror.org/056xmjm50', 'en', 1, 'https://ror.org/056xmjm50 New Hampshire Lakes Association'),
(27466, 'https://ror.org/050mny455', 'no_lang_code', 1, 'https://ror.org/050mny455 Polymath Research (United States)'),
(27467, 'https://ror.org/04w8r2k84', 'no_lang_code', 1, 'https://ror.org/04w8r2k84 Nova Photonics (United States)'),
(27468, 'https://ror.org/04haaft31', 'en', 1, 'https://ror.org/04haaft31 New Jersey Sea Grant Consortium'),
(27469, 'https://ror.org/03p7fww37', 'en', 1, 'https://ror.org/03p7fww37 New York State Department of Environmental Conservation'),
(27470, 'https://ror.org/039byrc41', 'en', 1, 'https://ror.org/039byrc41 Herring Gut Learning Center'),
(27471, 'https://ror.org/01wbbse44', 'en', 1, 'https://ror.org/01wbbse44 Marine Mammal Center'),
(27472, 'https://ror.org/002t87n17', 'en', 1, 'https://ror.org/002t87n17 Hawaiian Islands Land Trust'),
(27473, 'https://ror.org/04004q467', 'en', 1, 'https://ror.org/04004q467 Ocean Conservancy'),
(27474, 'https://ror.org/006a84f66', 'en', 1, 'https://ror.org/006a84f66 Humane Society of the United States'),
(27475, 'https://ror.org/05tt1bq68', 'en', 1, 'https://ror.org/05tt1bq68 Commercial Fisheries Research Foundation'),
(27476, 'https://ror.org/05k8s5247', 'en', 1, 'https://ror.org/05k8s5247 North Carolina Coastal Federation'),
(27477, 'https://ror.org/00fjsz467', 'en', 1, 'https://ror.org/00fjsz467 North Carolina Wildlife Resources Commission'),
(27478, 'https://ror.org/02y7yba16', 'en', 1, 'https://ror.org/02y7yba16 North Pacific Fishery Management Council'),
(27479, 'https://ror.org/02j60s620', 'en', 1, 'https://ror.org/02j60s620 North Pacific Marine Science Foundation'),
(27480, 'https://ror.org/051m28f53', 'no_lang_code', 1, 'https://ror.org/051m28f53 Jensen Management Service (United States)'),
(27481, 'https://ror.org/01wy5em73', 'en', 1, 'https://ror.org/01wy5em73 North Slope Borough'),
(27482, 'https://ror.org/042rwda30', 'en', 1, 'https://ror.org/042rwda30 North Coast Marine Mammal Center'),
(27483, 'https://ror.org/00jfh4f20', 'en', 1, 'https://ror.org/00jfh4f20 Northwest Indian Fisheries Commission'),
(27484, 'https://ror.org/01wk6nt82', 'en', 1, 'https://ror.org/01wk6nt82 Northwest Maritime Center'),
(27485, 'https://ror.org/05drg8934', 'en', 1, 'https://ror.org/05drg8934 Riverhead Foundation for Marine Research and Preservation'),
(27486, 'https://ror.org/047tfmf12', 'en', 1, 'https://ror.org/047tfmf12 Indigenous People''s Council for Marine Mammals'),
(27487, 'https://ror.org/01cxrck43', 'en', 1, 'https://ror.org/01cxrck43 Connecticut River Joint Commissions'),
(27488, 'https://ror.org/057rq6p34', 'en', 1, 'https://ror.org/057rq6p34 National Maritime Center'),
(27489, 'https://ror.org/00bdm1273', 'en', 1, 'https://ror.org/00bdm1273 Institute for Marine Mammal Studies'),
(27490, 'https://ror.org/0304weq09', 'en', 1, 'https://ror.org/0304weq09 California Conservation Corps'),
(27491, 'https://ror.org/01mt0f775', 'en', 1, 'https://ror.org/01mt0f775 Northwest Straits Foundation'),
(27492, 'https://ror.org/02e2kkf63', 'en', 1, 'https://ror.org/02e2kkf63 Ocean Trust'),
(27493, 'https://ror.org/049yjjv56', 'en', 1, 'https://ror.org/049yjjv56 Institute for Social and Environmental Transition-International'),
(27494, 'https://ror.org/0476g9w78', 'en', 1, 'https://ror.org/0476g9w78 International Marinelife Alliance'),
(27495, 'https://ror.org/00mwkta11', 'en', 1, 'https://ror.org/00mwkta11 Coonamessett Farm Foundation'),
(27496, 'https://ror.org/04edbcc27', 'en', 1, 'https://ror.org/04edbcc27 James River Association'),
(27497, 'https://ror.org/04kep9f40', 'en', 1, 'https://ror.org/04kep9f40 Whale Museum'),
(27498, 'https://ror.org/036ppfa42', 'en', 1, 'https://ror.org/036ppfa42 Kenai Peninsula Borough'),
(27499, 'https://ror.org/01ncpsy43', 'en', 1, 'https://ror.org/01ncpsy43 Wisconsin Department of Administration'),
(27500, 'https://ror.org/02nnvm683', 'en', 1, 'https://ror.org/02nnvm683 Trout Unlimited'),
(27501, 'https://ror.org/00t7tpg38', 'no_lang_code', 1, 'https://ror.org/00t7tpg38 Zetor (Czechia)'),
(27502, 'https://ror.org/02c2rwt41', 'en', 1, 'https://ror.org/02c2rwt41 Coral Reef Alliance'),
(27503, 'https://ror.org/05vxw9r04', 'en', 1, 'https://ror.org/05vxw9r04 Klamath River Inter-Tribal Fish and Water Commission'),
(27504, 'https://ror.org/03cvm1z63', 'en', 1, 'https://ror.org/03cvm1z63 Office of the Mississippi Secretary of State'),
(27505, 'https://ror.org/02t903v50', 'en', 1, 'https://ror.org/02t903v50 Copper River Watershed Project'),
(27506, 'https://ror.org/02xg13584', 'en', 1, 'https://ror.org/02xg13584 Alabama Department of Revenue'),
(27507, 'https://ror.org/0581e0971', 'en', 1, 'https://ror.org/0581e0971 Cornell Cooperative Extension of Suffolk County'),
(27508, 'https://ror.org/04cwkhw19', 'en', 1, 'https://ror.org/04cwkhw19 Council for Native Hawaiian Advancement'),
(27509, 'https://ror.org/02qjzgf79', 'en', 1, 'https://ror.org/02qjzgf79 Lake Champlain Maritime Museum'),
(27510, 'https://ror.org/02w7eph15', 'en', 1, 'https://ror.org/02w7eph15 New Hampshire Fish and Game Department'),
(27511, 'https://ror.org/02grx1n44', 'en', 1, 'https://ror.org/02grx1n44 New Haven Unified School District'),
(27512, 'https://ror.org/03a752p22', 'en', 1, 'https://ror.org/03a752p22 Department of Land and Natural Resources'),
(27513, 'https://ror.org/04dh87p33', 'en', 1, 'https://ror.org/04dh87p33 New York State Department of State'),
(27514, 'https://ror.org/03gqzqb15', 'en', 1, 'https://ror.org/03gqzqb15 Louisiana Department of Wildlife and Fisheries'),
(27515, 'https://ror.org/05vkm7r79', 'en', 1, 'https://ror.org/05vkm7r79 Lower Columbia Estuary Partnership'),
(27516, 'https://ror.org/0195p5j91', 'en', 1, 'https://ror.org/0195p5j91 Hawaii Department of Defense'),
(27517, 'https://ror.org/05d5hbz44', 'en', 1, 'https://ror.org/05d5hbz44 Department of Energy and Environment'),
(27518, 'https://ror.org/05s86mf83', 'en', 1, 'https://ror.org/05s86mf83 Vermont Fish & Wildlife Department'),
(27519, 'https://ror.org/01xe4n390', 'en', 1, 'https://ror.org/01xe4n390 Downeast Institute'),
(27520, 'https://ror.org/009565791', 'en', 1, 'https://ror.org/009565791 Orca Network'),
(27521, 'https://ror.org/01vkmy441', 'en', 1, 'https://ror.org/01vkmy441 Earth Force'),
(27522, 'https://ror.org/005y2a635', 'en', 1, 'https://ror.org/005y2a635 Earth Island Institute'),
(27523, 'https://ror.org/03qw80h61', 'en', 1, 'https://ror.org/03qw80h61 Eastern Kentucky Pride'),
(27524, 'https://ror.org/00w64gh11', 'en', 1, 'https://ror.org/00w64gh11 Oregon Department of Fish and Wildlife'),
(27525, 'https://ror.org/00s71kj23', 'en', 1, 'https://ror.org/00s71kj23 Oregon Department of Land Conservation and Development'),
(27526, 'https://ror.org/01etj5m31', 'en', 1, 'https://ror.org/01etj5m31 Oregon Department of State Lands'),
(27527, 'https://ror.org/00cjtj637', 'en', 1, 'https://ror.org/00cjtj637 Abraham Lincoln University'),
(27528, 'https://ror.org/03jyrpv84', 'en', 1, 'https://ror.org/03jyrpv84 Oregon Parks and Recreation Department'),
(27529, 'https://ror.org/00amtww28', 'en', 1, 'https://ror.org/00amtww28 Lummi Indian Business Council'),
(27530, 'https://ror.org/02ndmzk78', 'en', 1, 'https://ror.org/02ndmzk78 Virginia Department of Environmental Quality'),
(27531, 'https://ror.org/00mm4ys28', 'en', 1, 'https://ror.org/00mm4ys28 Bitlis Eren University Bitlis Eren Üniversitesi'),
(27532, 'https://ror.org/00xpev657', 'en', 1, 'https://ror.org/00xpev657 Pacific American Foundation'),
(27533, 'https://ror.org/030t96b35', 'en', 1, 'https://ror.org/030t96b35 Lebanese French University الجامعة اللبنانية الفرنسية للأعمال و الإدارة في اربيل'),
(27534, 'https://ror.org/03k882j22', 'en', 1, 'https://ror.org/03k882j22 Pacific Education Institute'),
(27535, 'https://ror.org/01se2zd78', 'no_lang_code', 1, 'https://ror.org/01se2zd78 Adikavi Nannaya University ఆదికవి నన్నయ విశ్వవిద్యాలయము'),
(27536, 'https://ror.org/00hnkz789', 'en', 1, 'https://ror.org/00hnkz789 Bohol Island State University'),
(27537, 'https://ror.org/04yk1tp18', 'en', 1, 'https://ror.org/04yk1tp18 Bost University دانشگاه بست'),
(27538, 'https://ror.org/03gghxt23', 'en', 1, 'https://ror.org/03gghxt23 Pacific Islands Fisheries Group'),
(27539, 'https://ror.org/02866re76', 'en', 1, 'https://ror.org/02866re76 Boston University Academy'),
(27540, 'https://ror.org/04t98w133', 'en', 1, 'https://ror.org/04t98w133 Pacific Salmon Commission'),
(27541, 'https://ror.org/00tf0yk25', 'en', 1, 'https://ror.org/00tf0yk25 Adyghe State University Адыгейский Государственный Университет'),
(27542, 'https://ror.org/008a62c70', 'en', 1, 'https://ror.org/008a62c70 Pacific Shellfish Institute'),
(27543, 'https://ror.org/02vpfbn76', 'en', 1, 'https://ror.org/02vpfbn76 Boston University Brussels'),
(27544, 'https://ror.org/013922990', 'en', 1, 'https://ror.org/013922990 Brandman University'),
(27545, 'https://ror.org/045v19n13', 'en', 1, 'https://ror.org/045v19n13 Breyer State Theology University'),
(27546, 'https://ror.org/01d0v9064', 'en', 1, 'https://ror.org/01d0v9064 Virginia Department of Conservation and Recreation'),
(27547, 'https://ror.org/00ys4cv94', 'en', 1, 'https://ror.org/00ys4cv94 Agora University Universitatea Agora'),
(27548, 'https://ror.org/05b0v1a86', 'en', 1, 'https://ror.org/05b0v1a86 Makah Tribal Council'),
(27549, 'https://ror.org/04bqj0966', 'en', 1, 'https://ror.org/04bqj0966 Broadview University'),
(27550, 'https://ror.org/00exza086', 'en', 1, 'https://ror.org/00exza086 Malama Kai Foundation'),
(27551, 'https://ror.org/04fswdh23', 'en', 1, 'https://ror.org/04fswdh23 Malama Learning Center'),
(27552, 'https://ror.org/03jd7ez57', 'no_lang_code', 1, 'https://ror.org/03jd7ez57 Malama na Honu'),
(27553, 'https://ror.org/03w9szr81', 'en', 1, 'https://ror.org/03w9szr81 Bucheon University 부천대학교'),
(27554, 'https://ror.org/04knmnr48', 'en', 1, 'https://ror.org/04knmnr48 Bukidnon State University'),
(27555, 'https://ror.org/05erxm859', 'no_lang_code', 1, 'https://ror.org/05erxm859 Skanska (Czechia)'),
(27556, 'https://ror.org/005e2k071', 'en', 1, 'https://ror.org/005e2k071 Burao University Jaamacada Burco'),
(27557, 'https://ror.org/030kbv745', 'en', 1, 'https://ror.org/030kbv745 Watsonville Wetlands Watch'),
(27558, 'https://ror.org/00wd70b02', 'en', 1, 'https://ror.org/00wd70b02 Pennsylvania Department of Environmental Protection'),
(27559, 'https://ror.org/04zvnyb42', 'en', 1, 'https://ror.org/04zvnyb42 Bursa Orhangazi University Bursa Orhangazi Üniversitesi'),
(27560, 'https://ror.org/042asde39', 'en', 1, 'https://ror.org/042asde39 Pennsylvania Emergency Management Agency'),
(27561, 'https://ror.org/01szxxe12', 'en', 1, 'https://ror.org/01szxxe12 Busan Presbyterian University 부산장신대학교'),
(27562, 'https://ror.org/01tmv6x44', 'en', 1, 'https://ror.org/01tmv6x44 Marine Animal Rescue Society'),
(27563, 'https://ror.org/03bhnt079', 'en', 1, 'https://ror.org/03bhnt079 Penobscot River Restoration Trust'),
(27564, 'https://ror.org/04mj88k68', 'en', 1, 'https://ror.org/04mj88k68 Perry Institute for Marine Science'),
(27565, 'https://ror.org/01qhq4s12', 'en', 1, 'https://ror.org/01qhq4s12 Wells National Estuarine Research Reserve'),
(27566, 'https://ror.org/04hfdwy10', 'en', 1, 'https://ror.org/04hfdwy10 Pfleger Institute of Environmental Research'),
(27567, 'https://ror.org/043223922', 'en', 1, 'https://ror.org/043223922 Aino University 藍野大学'),
(27568, 'https://ror.org/04x1rx451', 'en', 1, 'https://ror.org/04x1rx451 Calicut University Employees Union കാലിക്കറ്റ് യൂണിവേഴ്സിറ്റി എംപ്ലോയീസ് യൂണിയൻ'),
(27569, 'https://ror.org/01m28kg79', 'en', 1, 'https://ror.org/01m28kg79 Ajloun National University جامعة عجلون الوطنية'),
(27570, 'https://ror.org/03414dm82', 'en', 1, 'https://ror.org/03414dm82 Western Pacific Regional Fishery Management Council'),
(27571, 'https://ror.org/01ffhnr70', 'en', 1, 'https://ror.org/01ffhnr70 Cambridge University Health Partners'),
(27572, 'https://ror.org/03m96yn13', 'en', 1, 'https://ror.org/03m96yn13 Marine Mammal Care Center'),
(27573, 'https://ror.org/02q9yhv11', 'en', 1, 'https://ror.org/02q9yhv11 Chesapeake Bay Environmental Center'),
(27574, 'https://ror.org/0568p5n31', 'en', 1, 'https://ror.org/0568p5n31 Akita University of Art 秋田公立美術大学'),
(27575, 'https://ror.org/03b2rjh82', 'en', 1, 'https://ror.org/03b2rjh82 Marine Conservation Alliance'),
(27576, 'https://ror.org/044c3e517', 'en', 1, 'https://ror.org/044c3e517 Wildlife Research Team'),
(27577, 'https://ror.org/030a9rt17', 'en', 1, 'https://ror.org/030a9rt17 Marine Conservation Institute'),
(27578, 'https://ror.org/02543bv68', 'en', 1, 'https://ror.org/02543bv68 Akita University of Nursing and Welfare 秋田看護福祉大学'),
(27579, 'https://ror.org/029zgsn59', 'en', 1, 'https://ror.org/029zgsn59 Canadian University of Dubai الجامعة الكندية دبي'),
(27580, 'https://ror.org/01ede0v48', 'en', 1, 'https://ror.org/01ede0v48 Potomac River Fisheries Commission'),
(27581, 'https://ror.org/00gkfj461', 'en', 1, 'https://ror.org/00gkfj461 Marine Mammal Stranding Center'),
(27582, 'https://ror.org/03pgsk336', 'en', 1, 'https://ror.org/03pgsk336 Marine Resources Council'),
(27583, 'https://ror.org/054yvqw54', 'en', 1, 'https://ror.org/054yvqw54 Maryland Association for Environmental and Outdoor Education'),
(27584, 'https://ror.org/029e8g588', 'en', 1, 'https://ror.org/029e8g588 Akobo Heritage and Memorial University'),
(27585, 'https://ror.org/04ccfjy89', 'en', 1, 'https://ror.org/04ccfjy89 Center for Coastal Studies'),
(27586, 'https://ror.org/03k3yk915', 'en', 1, 'https://ror.org/03k3yk915 Duluth Business University'),
(27587, 'https://ror.org/04ff49a90', 'en', 1, 'https://ror.org/04ff49a90 Amicable Knowledge Solution University ए के एस विश्वविद्यालय'),
(27588, 'https://ror.org/044dnwe52', 'en', 1, 'https://ror.org/044dnwe52 Minnesota Department of Public Safety'),
(27589, 'https://ror.org/022j25y55', 'en', 1, 'https://ror.org/022j25y55 East Delta University ইস্ট ডেল্টা বিশ্ববিদ্যালয়'),
(27590, 'https://ror.org/058c2zn82', 'en', 1, 'https://ror.org/058c2zn82 East Africa University جامعة شرق أفريقيا'),
(27591, 'https://ror.org/02h7f3665', 'en', 1, 'https://ror.org/02h7f3665 Departamento de Transporte de Wisconsin Département des transports du wisconsin Wisconsin Department of Transportation'),
(27592, 'https://ror.org/01gneb536', 'en', 1, 'https://ror.org/01gneb536 Wolf Hollow Wildlife Rehabilitation Center'),
(27593, 'https://ror.org/01a4wvs18', 'en', 1, 'https://ror.org/01a4wvs18 Eastern Liaoning University 辽东学院'),
(27594, 'https://ror.org/04rf2gx08', 'en', 1, 'https://ror.org/04rf2gx08 Alabama Law Enforcement Agency'),
(27595, 'https://ror.org/01a4tb013', 'en', 1, 'https://ror.org/01a4tb013 World Turtle Trust'),
(27596, 'https://ror.org/05mh02w22', 'no_lang_code', 1, 'https://ror.org/05mh02w22 Eckernforde Tanga University'),
(27597, 'https://ror.org/052zrr036', 'en', 1, 'https://ror.org/052zrr036 Canik Başarı University Canik Başarı Üniversitesi'),
(27598, 'https://ror.org/011y7xt38', 'en', 1, 'https://ror.org/011y7xt38 Çankırı Karatekin University Çankırı Karatekin Üniversitesi'),
(27599, 'https://ror.org/00rcpgp95', 'en', 1, 'https://ror.org/00rcpgp95 Capitol University Medical Center'),
(27600, 'https://ror.org/00erb5q72', 'en', 1, 'https://ror.org/00erb5q72 Caraga State University'),
(27601, 'https://ror.org/040rjhz75', 'en', 1, 'https://ror.org/040rjhz75 Yukon River Drainage Fisheries Association'),
(27602, 'https://ror.org/03gqevz94', 'en', 1, 'https://ror.org/03gqevz94 Herguan University'),
(27603, 'https://ror.org/00ds41r10', 'en', 1, 'https://ror.org/00ds41r10 Carnegie Mellon University Australia'),
(27604, 'https://ror.org/0025x8m44', 'en', 1, 'https://ror.org/0025x8m44 SeaWorld Entertainment'),
(27605, 'https://ror.org/02tp47674', 'en', 1, 'https://ror.org/02tp47674 Karaite Jewish University'),
(27606, 'https://ror.org/032fhk095', 'en', 1, 'https://ror.org/032fhk095 Karaj Payam Noor University دانشگاه پیام نور کرج'),
(27607, 'https://ror.org/00dfrzy25', 'en', 1, 'https://ror.org/00dfrzy25 Carnegie Trust for the Universities of Scotland'),
(27608, 'https://ror.org/02c7fax93', 'en', 1, 'https://ror.org/02c7fax93 Al Furat University جامعة الفرات'),
(27609, 'https://ror.org/03qfy7r49', 'en', 1, 'https://ror.org/03qfy7r49 Carol I National Defence University Universitatea Națională de Apărare „Carol I”'),
(27610, 'https://ror.org/042967d53', 'en', 1, 'https://ror.org/042967d53 El Asher University جامعة العاشر من رمضان'),
(27611, 'https://ror.org/05bhsrq51', 'en', 1, 'https://ror.org/05bhsrq51 Carson Newman University'),
(27612, 'https://ror.org/04gr21t50', 'en', 1, 'https://ror.org/04gr21t50 Al Madinah International University Universiti Antarabangsa Al-Madinah'),
(27613, 'https://ror.org/048633e68', 'en', 1, 'https://ror.org/048633e68 Higashi Nippon International University 東日本国際大学'),
(27614, 'https://ror.org/00db2vc28', 'en', 1, 'https://ror.org/00db2vc28 Karelia University of Applied Sciences Karelia-ammattikorkeakoulu'),
(27615, 'https://ror.org/05m0ggf57', 'en', 1, 'https://ror.org/05m0ggf57 Catholic University of Applied Sciences Katholische Hochschule Mainz'),
(27616, 'https://ror.org/01p4b7n26', 'en', 1, 'https://ror.org/01p4b7n26 Electric Power University Trường Đại học Điện lực'),
(27617, 'https://ror.org/00156qz84', 'no_lang_code', 1, 'https://ror.org/00156qz84 Al-Shahbaa University جامعة الشهباء'),
(27618, 'https://ror.org/01sw9sf76', 'en', 1, 'https://ror.org/01sw9sf76 Ellis University'),
(27619, 'https://ror.org/036b03a90', 'en', 1, 'https://ror.org/036b03a90 Al Yamamah University جامعة اليمامة'),
(27620, 'https://ror.org/04z37sn09', 'en', 1, 'https://ror.org/04z37sn09 Eurasia International University Եվրասիա Միջազգային Համալսարան'),
(27621, 'https://ror.org/021m4bd11', 'en', 1, 'https://ror.org/021m4bd11 European Peace University'),
(27622, 'https://ror.org/03fqmz304', 'en', 1, 'https://ror.org/03fqmz304 European University of Bangladesh ইউরোপিয়ান বিশ্ববিদ্যালয়'),
(27623, 'https://ror.org/0019h0z47', 'en', 1, 'https://ror.org/0019h0z47 AlAlamein International University جامعة العلمين'),
(27624, 'https://ror.org/04y6y6h45', 'en', 1, 'https://ror.org/04y6y6h45 Karnataka State Law University ಕರ್ನಾಟಕ ರಾಜ್ಯ ಕಾನೂನು ವಿಶ್ವವಿದ್ಯಾಲಯ'),
(27625, 'https://ror.org/013d87239', 'en', 1, 'https://ror.org/013d87239 HITEC University'),
(27626, 'https://ror.org/00ybfzj27', 'en', 1, 'https://ror.org/00ybfzj27 Karnataka State Dr.Gangubai Hanagal Music and Performing Arts University ಕರ್ನಾಟಕ ರಾಜ್ಯ ಡಾ. ಗಂಗೂಬಾಯಿ ಹಾನಗಲ್ ಸಂಗೀತ ಮತ್ತು ಪ್ರದರ್ಶಕ ಕಲೆಗಳ ವಿಶ್ವವಿದ್ಯಾಲಯ'),
(27627, 'https://ror.org/05kr6gy36', 'en', 1, 'https://ror.org/05kr6gy36 Karnataka State Women''s University ಕರ್ನಾಟಕ ರಾಜ್ಯ ಮಹಿಳಾ ವಿಶ್ವವಿದ್ಯಾಲಯ'),
(27628, 'https://ror.org/039akp542', 'en', 1, 'https://ror.org/039akp542 Oleksandr Dovzhenko Hlukhiv National Pedagogical University Глуховский национальный педагогический университет имени Александра Довженко Глухівський національний педагогічний університет імені Олександра Довженка'),
(27629, 'https://ror.org/0552kp582', 'en', 1, 'https://ror.org/0552kp582 Catholic University of South Sudan'),
(27630, 'https://ror.org/01epw0x06', 'en', 1, 'https://ror.org/01epw0x06 Fahd bin Sultan University جامعة الأمير فهد بن سلطان'),
(27631, 'https://ror.org/00vadgf54', 'no_lang_code', 1, 'https://ror.org/00vadgf54 Kaziranga University'),
(27632, 'https://ror.org/01w0fb867', 'en', 1, 'https://ror.org/01w0fb867 Alanus Hochschule für Kunst und Gesellschaft Alanus University of Arts and Social Sciences'),
(27633, 'https://ror.org/047khpn70', 'en', 1, 'https://ror.org/047khpn70 Keio University Shonan Fujisawa 慶應義塾大学湘南藤沢キャンパス'),
(27634, 'https://ror.org/05az7em54', 'en', 1, 'https://ror.org/05az7em54 Kent State University at Ashtabula'),
(27635, 'https://ror.org/03mj71j26', 'en', 1, 'https://ror.org/03mj71j26 Industrial University of Ho Chi Minh City Trường Đại học Công nghiệp Thành phố Hồ Chí Minh'),
(27636, 'https://ror.org/05pq46g90', 'en', 1, 'https://ror.org/05pq46g90 Hoa Sen University Trường Đại học Hoa Sen 莲花大学'),
(27637, 'https://ror.org/00s8h5d08', 'en', 1, 'https://ror.org/00s8h5d08 Hodges University'),
(27638, 'https://ror.org/0058jyq07', 'en', 1, 'https://ror.org/0058jyq07 Holy Trinity University'),
(27639, 'https://ror.org/02a6jmr02', 'en', 1, 'https://ror.org/02a6jmr02 Cebu Institute of Technology University'),
(27640, 'https://ror.org/016e0xz09', 'en', 1, 'https://ror.org/016e0xz09 Kent State University at Salem'),
(27641, 'https://ror.org/00gxmhc57', 'en', 1, 'https://ror.org/00gxmhc57 Kent State University at Stark'),
(27642, 'https://ror.org/01652va36', 'en', 1, 'https://ror.org/01652va36 Kenya Highlands University'),
(27643, 'https://ror.org/00fkbtp02', 'en', 1, 'https://ror.org/00fkbtp02 Alhosn University جامعة الحصن'),
(27644, 'https://ror.org/01zpp3d44', 'en', 1, 'https://ror.org/01zpp3d44 Homerton University Hospital NHS Foundation Trust'),
(27645, 'https://ror.org/04x649j07', 'en', 1, 'https://ror.org/04x649j07 Cebu Technological University'),
(27646, 'https://ror.org/023mp3m37', 'en', 1, 'https://ror.org/023mp3m37 Hong Kong Virtual University 香港虛擬大學'),
(27647, 'https://ror.org/02vg1a239', 'en', 1, 'https://ror.org/02vg1a239 Alkauthar Islamic University جامعۃ الکوثر'),
(27648, 'https://ror.org/017hfdc92', 'en', 1, 'https://ror.org/017hfdc92 Kharkiv University of Humanities People’s Ukrainian Academy Харківський гуманітарний університет «Народна українська академія» Харьковский гуманитарный университет «Народная украинская академия»'),
(27649, 'https://ror.org/02r6cx512', 'en', 1, 'https://ror.org/02r6cx512 Khujand State University Донишгоҳи давлатии Хуҷанд ба номи академик Б. Ғафуров Худжандский государственный университет'),
(27650, 'https://ror.org/05kvcy688', 'en', 1, 'https://ror.org/05kvcy688 Hope University'),
(27651, 'https://ror.org/01jdxxe39', 'en', 1, 'https://ror.org/01jdxxe39 Central Bicol State University of Agriculture'),
(27652, 'https://ror.org/05bja5p94', 'en', 1, 'https://ror.org/05bja5p94 All Saints University Lango'),
(27653, 'https://ror.org/04vew1z32', 'en', 1, 'https://ror.org/04vew1z32 Kim Chaek University of Technology 김책공업종합대학'),
(27654, 'https://ror.org/01z1zmc91', 'en', 1, 'https://ror.org/01z1zmc91 Moscow State Forest University Московский государственный университет леса'),
(27655, 'https://ror.org/00eqgy272', 'en', 1, 'https://ror.org/00eqgy272 Allameh Mohaddes Nouri University دانشگاه علامه محدث نوری'),
(27656, 'https://ror.org/0292j7348', 'en', 1, 'https://ror.org/0292j7348 Kingswood University'),
(27657, 'https://ror.org/0367ee363', 'fr', 1, 'https://ror.org/0367ee363 Centre Hospitalier Universitaire Notre Dame des Secours مستشفى سيدة المعونات الجامعي'),
(27658, 'https://ror.org/02zy6f603', 'tl', 1, 'https://ror.org/02zy6f603 Centro Escolar University Makati'),
(27659, 'https://ror.org/00ybawk55', 'en', 1, 'https://ror.org/00ybawk55 Florida International University Alumni Association'),
(27660, 'https://ror.org/03b657f73', 'en', 1, 'https://ror.org/03b657f73 Kio University 畿央大学'),
(27661, 'https://ror.org/004n8kf32', 'en', 1, 'https://ror.org/004n8kf32 Idaho Governors Office of Species Conservation'),
(27662, 'https://ror.org/029aq5550', 'no_lang_code', 1, 'https://ror.org/029aq5550 Jaamacada Kismaayo Kismayo University'),
(27663, 'https://ror.org/03q6jrh90', 'pt', 1, 'https://ror.org/03q6jrh90 Centro Universitário das Faculdades Metropolitanas Unidas'),
(27664, 'https://ror.org/01aepry57', 'en', 1, 'https://ror.org/01aepry57 AlMughtaribeen University جامعة المغتربين'),
(27665, 'https://ror.org/05vv4xn30', 'en', 1, 'https://ror.org/05vv4xn30 Kobe Tokiwa University 神戸常盤大学');
INSERT INTO `rors` VALUES
(27666, 'https://ror.org/00txwbc30', 'en', 1, 'https://ror.org/00txwbc30 Chanakya National Law University चाणक्य राष्ट्रीय विधि विश्वविद्यालय'),
(27667, 'https://ror.org/05w92f868', 'fr', 1, 'https://ror.org/05w92f868 Fondation Université Française en Arménie Հայաստանում ֆրանսիական համալսարան'),
(27668, 'https://ror.org/02z79er63', 'en', 1, 'https://ror.org/02z79er63 Al Assad University Hospital مستشفى الأسد الجامعي'),
(27669, 'https://ror.org/011d8sm39', 'en', 1, 'https://ror.org/011d8sm39 Changsha University 长沙学院'),
(27670, 'https://ror.org/0483r5v56', 'en', 1, 'https://ror.org/0483r5v56 Changshin University 창신대학교'),
(27671, 'https://ror.org/03y1hrs26', 'en', 1, 'https://ror.org/03y1hrs26 Kolhan University'),
(27672, 'https://ror.org/05p2kf948', 'en', 1, 'https://ror.org/05p2kf948 Ausländeruniversität Siena University for Foreigners of Siena Università per stranieri di Siena Université pour étrangers de sienne'),
(27673, 'https://ror.org/00h15ta02', 'en', 1, 'https://ror.org/00h15ta02 AMA International University جامعة أما الدولية البحرين'),
(27674, 'https://ror.org/05t1bc854', 'en', 1, 'https://ror.org/05t1bc854 Korea National Defense University 국방대학교'),
(27675, 'https://ror.org/01jc4j574', 'en', 1, 'https://ror.org/01jc4j574 Chaudhary Devi Lal University चौधरी देवी लाल युनिवर्सिटी'),
(27676, 'https://ror.org/0168zcn11', 'en', 1, 'https://ror.org/0168zcn11 Korea National University of Arts 한국예술종합학교'),
(27677, 'https://ror.org/04szp2m52', 'en', 1, 'https://ror.org/04szp2m52 Hsiuping University of Science and Technology 修平科技大學'),
(27678, 'https://ror.org/03c0qqf32', 'en', 1, 'https://ror.org/03c0qqf32 Frankfurt University of Music and Performing Arts Hochschule für Musik und Darstellende Kunst Frankfurt am Main'),
(27679, 'https://ror.org/0217vcy92', 'en', 1, 'https://ror.org/0217vcy92 Franklin University Switzerland'),
(27680, 'https://ror.org/043q5er54', 'en', 1, 'https://ror.org/043q5er54 Frederick Taylor University'),
(27681, 'https://ror.org/02r11sv96', 'en', 1, 'https://ror.org/02r11sv96 Free University of Ireland Saor-Ollscoil na hÉireann'),
(27682, 'https://ror.org/038rep477', 'en', 1, 'https://ror.org/038rep477 Friedensau Adventist University Theologische Hochschule Friedensau'),
(27683, 'https://ror.org/033v1q508', 'en', 1, 'https://ror.org/033v1q508 Frontier Nursing University'),
(27684, 'https://ror.org/039jmdw40', 'en', 1, 'https://ror.org/039jmdw40 America Bangladesh University আমেরিকা বাংলাদেশ ইউনিভার্সিটি'),
(27685, 'https://ror.org/006wqrx41', 'en', 1, 'https://ror.org/006wqrx41 Korea National University of Cultural Heritage 한국전통문화대학교'),
(27686, 'https://ror.org/025sb3367', 'en', 1, 'https://ror.org/025sb3367 Gavar State University Գավառի պետական համալսարան'),
(27687, 'https://ror.org/05m1gnk07', 'en', 1, 'https://ror.org/05m1gnk07 Korea University 朝鮮大学校'),
(27688, 'https://ror.org/02keg3263', 'no_lang_code', 1, 'https://ror.org/02keg3263 Cheju Halla University 제주한라대학교'),
(27689, 'https://ror.org/058tx1a56', 'en', 1, 'https://ror.org/058tx1a56 Heriot-Watt University Dubai جامعة هيريوت-وات دبي'),
(27690, 'https://ror.org/04jx76k82', 'en', 1, 'https://ror.org/04jx76k82 Korean Council for University Education 한국대학교육협의회'),
(27691, 'https://ror.org/00byxyj96', 'en', 1, 'https://ror.org/00byxyj96 Gemological Centers'),
(27692, 'https://ror.org/02s89kd69', 'en', 1, 'https://ror.org/02s89kd69 Korean National Police University 경찰대학'),
(27693, 'https://ror.org/01bjw7k75', 'en', 1, 'https://ror.org/01bjw7k75 Gelato University'),
(27694, 'https://ror.org/026b9sf88', 'no_lang_code', 1, 'https://ror.org/026b9sf88 KR Mangalam University के.आर. मंगलम विश्वविद्यालय'),
(27695, 'https://ror.org/02wdfg707', 'en', 1, 'https://ror.org/02wdfg707 Chhattisgarh Swami Vivekanand Technical University छत्तीसगढ़ स्वामी विवेकानंद तकनीकी विश्वविद्यालय ছত্তীসগঢ় স্বামী বিবেকানন্দ প্রযুক্তি বিশ্ববিদ্যালয়'),
(27696, 'https://ror.org/006cjk069', 'en', 1, 'https://ror.org/006cjk069 Krishna Kanta Handiqui State Open University কৃষ্ণকান্ত সন্দিকৈ রাজ্যিক মুক্ত বিশ্ববিদ্যালয়'),
(27697, 'https://ror.org/04rc9cg08', 'en', 1, 'https://ror.org/04rc9cg08 American International University West Africa'),
(27698, 'https://ror.org/020756q03', 'en', 1, 'https://ror.org/020756q03 Chiba Prefectural University of Health Sciences 千葉県立保健医療大学'),
(27699, 'https://ror.org/002c8b395', 'en', 1, 'https://ror.org/002c8b395 Christian Bilingual University of Congo Université Chrétienne Bilingue du Congo'),
(27700, 'https://ror.org/02890tv09', 'en', 1, 'https://ror.org/02890tv09 American Public University System'),
(27701, 'https://ror.org/05cqafq62', 'en', 1, 'https://ror.org/05cqafq62 Chuka University'),
(27702, 'https://ror.org/00rz4p908', 'en', 1, 'https://ror.org/00rz4p908 American Sports University'),
(27703, 'https://ror.org/04sdbjc29', 'en', 1, 'https://ror.org/04sdbjc29 Kristal University Universiteti Kristal'),
(27704, 'https://ror.org/00z9cn431', 'en', 1, 'https://ror.org/00z9cn431 Kühne Logistics University'),
(27705, 'https://ror.org/00erv7q04', 'en', 1, 'https://ror.org/00erv7q04 Kumar Bhaskar Varma Sanskrit and Ancient Studies University कुमार भास्कर वर्मा संस्कृत एवं पुरातन अध्ययन विश्वविद्यालय কুমাৰ ভাস্কৰ বৰ্মা সংস্কৃত আৰু পুৰাতন অধ্যয়ন বিশ্ববিদ্যালয়'),
(27706, 'https://ror.org/03kytj789', 'en', 1, 'https://ror.org/03kytj789 Chung Chou University of Science and Technology 中州科技大學'),
(27707, 'https://ror.org/03n3y7285', 'en', 1, 'https://ror.org/03n3y7285 American University in Bosnia and Herzegovina Američki univerzitet u Bosni i Hercegovini'),
(27708, 'https://ror.org/05kvq4b11', 'en', 1, 'https://ror.org/05kvq4b11 Kumi University'),
(27709, 'https://ror.org/03r6cc113', 'en', 1, 'https://ror.org/03r6cc113 Kundong University 건동대학교'),
(27710, 'https://ror.org/03v7b1458', 'en', 1, 'https://ror.org/03v7b1458 Chunnam Techno University 전남과학대학교'),
(27711, 'https://ror.org/03ms79854', 'en', 1, 'https://ror.org/03ms79854 George Washington University Virginia Campus'),
(27712, 'https://ror.org/02c385802', 'en', 1, 'https://ror.org/02c385802 George Wythe University'),
(27713, 'https://ror.org/00xtqnh37', 'en', 1, 'https://ror.org/00xtqnh37 Rochester Institute of Technology Kosovo'),
(27714, 'https://ror.org/02mfjgm25', 'en', 1, 'https://ror.org/02mfjgm25 Hwa Hsia University of Technology 華夏科技大學'),
(27715, 'https://ror.org/0075h8406', 'no_lang_code', 1, 'https://ror.org/0075h8406 Ghazni University دانشگاه غزنی'),
(27716, 'https://ror.org/056c6h780', 'en', 1, 'https://ror.org/056c6h780 American University in the Emirates الجامعة الأمريكية في الإمارات'),
(27717, 'https://ror.org/03k7qz240', 'en', 1, 'https://ror.org/03k7qz240 Maharaja Ranjit Singh Punjab Technical University'),
(27718, 'https://ror.org/04fe8b875', 'en', 1, 'https://ror.org/04fe8b875 American University of Afghanistan دانشگاه آمریکایی افغانستان'),
(27719, 'https://ror.org/02y1pga23', 'no_lang_code', 1, 'https://ror.org/02y1pga23 Kushabhau Thakre Patrakarita Avam Jansanchar University कुशाभाऊ ठाकरे पत्रकारिता एवं संचार विश्वविद्यालय'),
(27720, 'https://ror.org/02fg4j559', 'en', 1, 'https://ror.org/02fg4j559 Gimcheon University 김천대학교'),
(27721, 'https://ror.org/026b8w395', 'en', 1, 'https://ror.org/026b8w395 Girne American University Girne Amerikan Üniversitesi'),
(27722, 'https://ror.org/03se13x79', 'en', 1, 'https://ror.org/03se13x79 Claremont Lincoln University'),
(27723, 'https://ror.org/02twyz205', 'en', 1, 'https://ror.org/02twyz205 CMJ University सीएमजे विश्वविद्यालय'),
(27724, 'https://ror.org/02wra6g16', 'en', 1, 'https://ror.org/02wra6g16 Glendale University College of Law'),
(27725, 'https://ror.org/04ah8rj19', 'en', 1, 'https://ror.org/04ah8rj19 Kyoto International University 京都インターナショナルユニバーシティー'),
(27726, 'https://ror.org/04frhb927', 'en', 1, 'https://ror.org/04frhb927 Global University الجامعة العالمية'),
(27727, 'https://ror.org/03sy3gw53', 'en', 1, 'https://ror.org/03sy3gw53 Coalition of Urban and Metropolitan Universities'),
(27728, 'https://ror.org/035gqys29', 'en', 1, 'https://ror.org/035gqys29 Coastland University'),
(27729, 'https://ror.org/04japw488', 'en', 1, 'https://ror.org/04japw488 Godfrey Okoye University'),
(27730, 'https://ror.org/037ykcx09', 'en', 1, 'https://ror.org/037ykcx09 Gollis University جامعة جولس'),
(27731, 'https://ror.org/04tgeej53', 'en', 1, 'https://ror.org/04tgeej53 American University of Madaba الجامعة الأمريكية في مادبا'),
(27732, 'https://ror.org/01e8b7f16', 'en', 1, 'https://ror.org/01e8b7f16 La Salle University Pamantasang La Salle ng Ozamis'),
(27733, 'https://ror.org/01wwdyj49', 'en', 1, 'https://ror.org/01wwdyj49 ICFAI University, Mizoram'),
(27734, 'https://ror.org/023czz272', 'en', 1, 'https://ror.org/023czz272 American University of Rome Amerikanische Universität Rom Université américaine de Rome'),
(27735, 'https://ror.org/02mgerj62', 'en', 1, 'https://ror.org/02mgerj62 Great Lakes University of Kisumu'),
(27736, 'https://ror.org/03kzpe032', 'en', 1, 'https://ror.org/03kzpe032 IEC University'),
(27737, 'https://ror.org/056c31v05', 'en', 1, 'https://ror.org/056c31v05 Gregory University Uturu'),
(27738, 'https://ror.org/00rm3g179', 'en', 1, 'https://ror.org/00rm3g179 Ifugao State University Pamantasang Estado ng Ifugao'),
(27739, 'https://ror.org/01ccvyq03', 'en', 1, 'https://ror.org/01ccvyq03 Gretsa University'),
(27740, 'https://ror.org/00q6pka22', 'en', 1, 'https://ror.org/00q6pka22 Gujarat National Law University'),
(27741, 'https://ror.org/00a08ze66', 'en', 1, 'https://ror.org/00a08ze66 Laurel University'),
(27742, 'https://ror.org/05910xk89', 'no_lang_code', 1, 'https://ror.org/05910xk89 Gukje Cyber University 국제사이버대학교'),
(27743, 'https://ror.org/03x9g7m54', 'en', 1, 'https://ror.org/03x9g7m54 Lebanese German University الجامعة اللبنانية الألمانية'),
(27744, 'https://ror.org/04d9rzd67', 'en', 1, 'https://ror.org/04d9rzd67 Gulf University for Science & Technology جامعة الخليج للعلوم والتكنولوجيا'),
(27745, 'https://ror.org/027anng05', 'en', 1, 'https://ror.org/027anng05 Lebanese International University الجامعة الدولية اللبنانية'),
(27746, 'https://ror.org/034a2ss16', 'en', 1, 'https://ror.org/034a2ss16 Amoud University Jaamacadda Camuud جامعة عمود'),
(27747, 'https://ror.org/04gndk045', 'en', 1, 'https://ror.org/04gndk045 IMADEC University'),
(27748, 'https://ror.org/015ve7h33', 'en', 1, 'https://ror.org/015ve7h33 Iloilo Science and Technology University Universitas Technologiae et Scientiarum Iloilensis'),
(27749, 'https://ror.org/00eaycp31', 'en', 1, 'https://ror.org/00eaycp31 IMC Fachhochschule Krems IMC University of Applied Sciences Krems'),
(27750, 'https://ror.org/053nvxd25', 'en', 1, 'https://ror.org/053nvxd25 Guru Kashi University ਗੁਰੂ ਕਾਸ਼ੀ ਯੂਨੀਵਰਸਿਟੀ'),
(27751, 'https://ror.org/04m7rat64', 'en', 1, 'https://ror.org/04m7rat64 Guru Ravidas Ayurved University ਗੁਰੂ ਰਵੀਦਾਸ ਆਯੂਰਵੇਦ ਯੂਨੀਵਰਸਿਟੀ'),
(27752, 'https://ror.org/05b2prn24', 'en', 1, 'https://ror.org/05b2prn24 Leman University'),
(27753, 'https://ror.org/04c8h8q45', 'en', 1, 'https://ror.org/04c8h8q45 Leonardo Da Vinci University Universidad Privada Leonardo da Vinci'),
(27754, 'https://ror.org/048q3sh29', 'en', 1, 'https://ror.org/048q3sh29 Gyan Vihar University'),
(27755, 'https://ror.org/03gskda23', 'en', 1, 'https://ror.org/03gskda23 LUM Jean Monnet University Libera Università Mediterranea'),
(27756, 'https://ror.org/04ftkte05', 'en', 1, 'https://ror.org/04ftkte05 Libyan International Medical University الجامعة الليبية الدولية للعلوم الطبية'),
(27757, 'https://ror.org/04tp2w352', 'en', 1, 'https://ror.org/04tp2w352 Hagoromo International University 羽衣国際大学'),
(27758, 'https://ror.org/0033b8372', 'en', 1, 'https://ror.org/0033b8372 Hallmark University'),
(27759, 'https://ror.org/01qxhf360', 'en', 1, 'https://ror.org/01qxhf360 Concordia University'),
(27760, 'https://ror.org/052w7db62', 'en', 1, 'https://ror.org/052w7db62 Hamhŭng University of Chemical Industry 함흥화학공업대학'),
(27761, 'https://ror.org/014y22g21', 'en', 1, 'https://ror.org/014y22g21 Conseil des universités de l''Ontario Council of Ontario Universities'),
(27762, 'https://ror.org/057p3dx48', 'en', 1, 'https://ror.org/057p3dx48 Hanil University 한일장신대학교'),
(27763, 'https://ror.org/01rcq3q20', 'en', 1, 'https://ror.org/01rcq3q20 Hankou University 汉口学院'),
(27764, 'https://ror.org/013kf9t32', 'en', 1, 'https://ror.org/013kf9t32 Hanseatic University Rostock Private Hanseuniversität'),
(27765, 'https://ror.org/056fjw561', 'no_lang_code', 1, 'https://ror.org/056fjw561 Induk University 인덕대학교'),
(27766, 'https://ror.org/00qyadr13', 'en', 1, 'https://ror.org/00qyadr13 Hanyang Women''s University 한양여자대학교'),
(27767, 'https://ror.org/02syyrn67', 'en', 1, 'https://ror.org/02syyrn67 PLA Army Service Academy 中国人民解放军后勤工程学院'),
(27768, 'https://ror.org/04zzths72', 'en', 1, 'https://ror.org/04zzths72 Ansan University 안산대학교'),
(27769, 'https://ror.org/038sdcw17', 'en', 1, 'https://ror.org/038sdcw17 Cyber University サイバー大学'),
(27770, 'https://ror.org/02311bm93', 'en', 1, 'https://ror.org/02311bm93 Inner Mongolia University of Finance and Economics 内蒙古财经大学'),
(27771, 'https://ror.org/01egvzq87', 'en', 1, 'https://ror.org/01egvzq87 Louisiana Baptist University'),
(27772, 'https://ror.org/0586y4s33', 'no_lang_code', 1, 'https://ror.org/0586y4s33 Inoorero University'),
(27773, 'https://ror.org/0167rnj42', 'en', 1, 'https://ror.org/0167rnj42 Ansbach University of Applied Sciences Hochschule Ansbach'),
(27774, 'https://ror.org/01nevky14', 'en', 1, 'https://ror.org/01nevky14 Hayfield University'),
(27775, 'https://ror.org/04a9xrr47', 'en', 1, 'https://ror.org/04a9xrr47 Hebei Finance University 河北金融学院'),
(27776, 'https://ror.org/027yf1g97', 'en', 1, 'https://ror.org/027yf1g97 Daegu Cyber University 대구사이버대학교'),
(27777, 'https://ror.org/00frehm74', 'en', 1, 'https://ror.org/00frehm74 Daegu Technical University 대구공업대학교'),
(27778, 'https://ror.org/01smbry50', 'en', 1, 'https://ror.org/01smbry50 Daehan Theological University 대한신학대학원대학교'),
(27779, 'https://ror.org/02tme6r37', 'en', 1, 'https://ror.org/02tme6r37 Heliopolis University جامعة هليوبوليس'),
(27780, 'https://ror.org/04qwasw26', 'en', 1, 'https://ror.org/04qwasw26 Daekyeung University 대경대학교'),
(27781, 'https://ror.org/0423r3m86', 'en', 1, 'https://ror.org/0423r3m86 Hellenic American University'),
(27782, 'https://ror.org/03xvjtz09', 'en', 1, 'https://ror.org/03xvjtz09 Hengshui University 衡水学院'),
(27783, 'https://ror.org/026mhap18', 'en', 1, 'https://ror.org/026mhap18 Apollonia University Universitatea Apollonia'),
(27784, 'https://ror.org/05xjspa12', 'en', 1, 'https://ror.org/05xjspa12 Darul Huda Islamic University Université islamique darul huda جامعة دار الهدى الإسلامية ദാറുൽഹുദാ ഇസ്ലാമിക് യൂണിവേഴ്സിറ്റി'),
(27785, 'https://ror.org/05qp5sg69', 'en', 1, 'https://ror.org/05qp5sg69 Luther Rice College and Seminary'),
(27786, 'https://ror.org/03eczrc37', 'en', 1, 'https://ror.org/03eczrc37 Dawat University د دعوت پوهنتون'),
(27787, 'https://ror.org/030xw6n96', 'en', 1, 'https://ror.org/030xw6n96 Dawood University of Engineering and Technology داؤد یونیورسٹی آف انجینئرنگ اینڈ ٹیکنالوجی'),
(27788, 'https://ror.org/04f8x5b20', 'en', 1, 'https://ror.org/04f8x5b20 Hochschule Merseburg Merseburg University of Applied Sciences'),
(27789, 'https://ror.org/03yhyb689', 'no_lang_code', 1, 'https://ror.org/03yhyb689 Maakhir University جامعة ماخر'),
(27790, 'https://ror.org/002dktj83', 'en', 1, 'https://ror.org/002dktj83 Meru University of Science and Technology'),
(27791, 'https://ror.org/029pyt764', 'en', 1, 'https://ror.org/029pyt764 Inter-University Center for Japanese Language Studies アメリカ・カナダ大学連合日本研究センター'),
(27792, 'https://ror.org/04h1w2j35', 'en', 1, 'https://ror.org/04h1w2j35 Madan Mohan Malaviya University of Technology मदन मोहन मालवीय इंजीनियरी महाविद्यालय, गोरखपुर'),
(27793, 'https://ror.org/040cm8d21', 'en', 1, 'https://ror.org/040cm8d21 International Burch University Međunarodni univerzitet Burch'),
(27794, 'https://ror.org/059zrbe49', 'en', 1, 'https://ror.org/059zrbe49 Applied Science University جامعة العلوم التطبيقية'),
(27795, 'https://ror.org/050m5b118', 'en', 1, 'https://ror.org/050m5b118 Mahamakut Buddhist University มหาวิทยาลัยมหามกุฏราชวิทยาลัย'),
(27796, 'https://ror.org/01mcrnj60', 'en', 1, 'https://ror.org/01mcrnj60 Majmaah University جامعة المجمعة'),
(27797, 'https://ror.org/012tb7473', 'en', 1, 'https://ror.org/012tb7473 Malawi Adventist University'),
(27798, 'https://ror.org/00dbrh564', 'en', 1, 'https://ror.org/00dbrh564 Maldives National University ދިވެހިރާއްޖޭގެ ޤައުމީ ޔުނިވަރސިޓީ'),
(27799, 'https://ror.org/01r097937', 'en', 1, 'https://ror.org/01r097937 Defense Acquisition University'),
(27800, 'https://ror.org/02htv7m79', 'en', 1, 'https://ror.org/02htv7m79 Araullo University'),
(27801, 'https://ror.org/042dtza69', 'en', 1, 'https://ror.org/042dtza69 International Information Technologies University Международный университет информационных технологий Халықаралық ақпараттық технологиялар университеті'),
(27802, 'https://ror.org/02x3m5z11', 'en', 1, 'https://ror.org/02x3m5z11 Delta International University'),
(27803, 'https://ror.org/04ty8dh37', 'en', 1, 'https://ror.org/04ty8dh37 Delta State University'),
(27804, 'https://ror.org/01fyxr563', 'no_lang_code', 1, 'https://ror.org/01fyxr563 DHA Suffa University ڊي ايڇ اي سفا يونيورسٽي'),
(27805, 'https://ror.org/045rmvd16', 'en', 1, 'https://ror.org/045rmvd16 Dhammakaya Open University'),
(27806, 'https://ror.org/0563h0629', 'no_lang_code', 1, 'https://ror.org/0563h0629 Mangalayatan University मंगलायतन युनिवर्सिटी'),
(27807, 'https://ror.org/04xt0wn96', 'en', 1, 'https://ror.org/04xt0wn96 Diamond Harbour Women''s University ডায়মন্ড হারবার মহিলা বিশ্ববিদ্যালয়'),
(27808, 'https://ror.org/00a686c80', 'en', 1, 'https://ror.org/00a686c80 Maranatha Baptist University'),
(27809, 'https://ror.org/01wfzer83', 'en', 1, 'https://ror.org/01wfzer83 Dire Dawa University'),
(27810, 'https://ror.org/05dg8sq97', 'en', 1, 'https://ror.org/05dg8sq97 International University in Geneva'),
(27811, 'https://ror.org/05cr38245', 'en', 1, 'https://ror.org/05cr38245 Dixon University Center'),
(27812, 'https://ror.org/03d88a580', 'en', 1, 'https://ror.org/03d88a580 Marin Barleti University Universiteti Marin Barleti'),
(27813, 'https://ror.org/042jrxd70', 'en', 1, 'https://ror.org/042jrxd70 International University of Chabahar دانشگاه بینالمللی چابهار'),
(27814, 'https://ror.org/02kj9vk28', 'en', 1, 'https://ror.org/02kj9vk28 International University of East Africa'),
(27815, 'https://ror.org/05xvhyj32', 'en', 1, 'https://ror.org/05xvhyj32 Armenian National Agrarian University Հայաստանի ազգային ագրարային համալսարան'),
(27816, 'https://ror.org/01qh9t631', 'en', 1, 'https://ror.org/01qh9t631 International University of Logistics and Transport in Wrocław Międzynarodowa Wyższa Szkoła Logistyki i Transportu we Wrocławiu'),
(27817, 'https://ror.org/03zhqv657', 'en', 1, 'https://ror.org/03zhqv657 Marshall B. Ketchum University'),
(27818, 'https://ror.org/009c3s802', 'en', 1, 'https://ror.org/009c3s802 Martin Luther Christian University'),
(27819, 'https://ror.org/01rk9d029', 'en', 1, 'https://ror.org/01rk9d029 Albanian:Universiteti Ndërkombetar i Strugës International University of Struga Меѓународен Универзитет Струга'),
(27820, 'https://ror.org/00ytmwg30', 'en', 1, 'https://ror.org/00ytmwg30 Donga College of Health 동아보건대학교'),
(27821, 'https://ror.org/02rv57d03', 'en', 1, 'https://ror.org/02rv57d03 International University of the Caribbean'),
(27822, 'https://ror.org/01nvm2856', 'en', 1, 'https://ror.org/01nvm2856 Maryland University of Integrative Health'),
(27823, 'https://ror.org/00j78xh95', 'no_lang_code', 1, 'https://ror.org/00j78xh95 Dongyang Mirae University 동양미래대학교'),
(27824, 'https://ror.org/046ha1n26', 'en', 1, 'https://ror.org/046ha1n26 International Vedic Hindu University'),
(27825, 'https://ror.org/04hv8rm39', 'en', 1, 'https://ror.org/04hv8rm39 Maulana Mazharul Haque Arabic and Persian University मौलाना मजहरूल हक अरबी व फारसी विश्वविद्यालय'),
(27826, 'https://ror.org/01e6gz331', 'en', 1, 'https://ror.org/01e6gz331 Armenian State University of Economics Հայաստանի պետական տնտեսագիտական համալսարան'),
(27827, 'https://ror.org/016yc1h10', 'en', 1, 'https://ror.org/016yc1h10 Doon University दून विश्वविद्यालय'),
(27828, 'https://ror.org/018sv0913', 'en', 1, 'https://ror.org/018sv0913 McGill-Queen''s University Press'),
(27829, 'https://ror.org/03dv91853', 'en', 1, 'https://ror.org/03dv91853 Dortmund University of Applied Sciences and Arts Fachhochschule Dortmund'),
(27830, 'https://ror.org/03zcb2d36', 'en', 1, 'https://ror.org/03zcb2d36 McPherson University'),
(27831, 'https://ror.org/04zxaa490', 'en', 1, 'https://ror.org/04zxaa490 Invertis University'),
(27832, 'https://ror.org/05rt7ve48', 'en', 1, 'https://ror.org/05rt7ve48 Mindanao University of Science and Technology'),
(27833, 'https://ror.org/01f51gm92', 'en', 1, 'https://ror.org/01f51gm92 Mindanao State University Naawan'),
(27834, 'https://ror.org/02ma9y414', 'en', 1, 'https://ror.org/02ma9y414 Medical University of the Americas'),
(27835, 'https://ror.org/02barjc38', 'en', 1, 'https://ror.org/02barjc38 Arni University अर्नी विश्वविद्यालय'),
(27836, 'https://ror.org/04bcsz239', 'en', 1, 'https://ror.org/04bcsz239 Dr. Ram Manohar Lohia National Law University डॉ राम मनोहर लोहिया राष्ट्रीय विधि विश्वविद्यालय'),
(27837, 'https://ror.org/03bs4te22', 'no_lang_code', 1, 'https://ror.org/03bs4te22 Mizan Tepi University'),
(27838, 'https://ror.org/053yxat32', 'en', 1, 'https://ror.org/053yxat32 Dr. Sarvepalli Radhakrishnan Rajasthan Ayurved University डॉ सर्वपल्ली राधाकृष्णन राजस्थान आयुर्वेद विश्वविद्यालय'),
(27839, 'https://ror.org/04jq39t97', 'en', 1, 'https://ror.org/04jq39t97 Mohammad Ali Jauhar University मोहम्मद अली जौहर युनिवर्सिटी'),
(27840, 'https://ror.org/04kxzy525', 'en', 1, 'https://ror.org/04kxzy525 Dr. Shakuntala Misra National Rehabilitation University डॉ शकुंतला मिश्रा राष्ट्रीय पुनर्वास विश्वविद्यालय'),
(27841, 'https://ror.org/0056fa628', 'en', 1, 'https://ror.org/0056fa628 Monad University'),
(27842, 'https://ror.org/00tngcb91', 'en', 1, 'https://ror.org/00tngcb91 Oregon State University Cascades'),
(27843, 'https://ror.org/00qcnss81', 'en', 1, 'https://ror.org/00qcnss81 Mongolian National University Монгол Үндэсний Их Сургууль'),
(27844, 'https://ror.org/00bzckd95', 'en', 1, 'https://ror.org/00bzckd95 Arts, Sciences and Technology University in Lebanon'),
(27845, 'https://ror.org/04gqmrb58', 'en', 1, 'https://ror.org/04gqmrb58 Centre Hospitalier Universitaire Dr-Georges-L.-Dumont Dr. Georges-L.-Dumont University Hospital Centre'),
(27846, 'https://ror.org/05prjmm12', 'en', 1, 'https://ror.org/05prjmm12 Moscow University for the Humanities Московский гуманитарный университет'),
(27847, 'https://ror.org/04bn56254', 'en', 1, 'https://ror.org/04bn56254 Osaka Kawasaki Rehabilitation University 大阪河崎リハビリテーション大学'),
(27848, 'https://ror.org/01q2ncb61', 'en', 1, 'https://ror.org/01q2ncb61 Osaka University of Comprehensive Children Education 大阪総合保育大学'),
(27849, 'https://ror.org/03pzk6650', 'en', 1, 'https://ror.org/03pzk6650 César Ritz Colleges'),
(27850, 'https://ror.org/009mf3820', 'en', 1, 'https://ror.org/009mf3820 Artsakh State University Арцахский государственный университет Արցախի պետական համալսարանի գիտական տեղեկագիր'),
(27851, 'https://ror.org/00xfxvy87', 'en', 1, 'https://ror.org/00xfxvy87 Irbid National University جامعة إربد الأهلية'),
(27852, 'https://ror.org/03p4md298', 'en', 1, 'https://ror.org/03p4md298 Shibuya University Network シブヤ大学'),
(27853, 'https://ror.org/03h8sa373', 'en', 1, 'https://ror.org/03h8sa373 Osmaniye Korkut Ata University Osmaniye Korkut Ata Üniversitesi'),
(27854, 'https://ror.org/00m5dhe11', 'en', 1, 'https://ror.org/00m5dhe11 Arunai Engineering College அருணை பொறியியல் கல்லூரி'),
(27855, 'https://ror.org/01qadzk38', 'en', 1, 'https://ror.org/01qadzk38 Pacific Coast University'),
(27856, 'https://ror.org/028kehd60', 'en', 1, 'https://ror.org/028kehd60 Ashesi University'),
(27857, 'https://ror.org/03g873n36', 'en', 1, 'https://ror.org/03g873n36 Pacific University Oregon'),
(27858, 'https://ror.org/02j1xr113', 'en', 1, 'https://ror.org/02j1xr113 Ashoka University अशोका युनिवर्सिटी'),
(27859, 'https://ror.org/02re2pw48', 'en', 1, 'https://ror.org/02re2pw48 Paktia University دانشگاه پکتیا'),
(27860, 'https://ror.org/00z50sv45', 'en', 1, 'https://ror.org/00z50sv45 Shin Ansan University 신안산대학교'),
(27861, 'https://ror.org/001x6y413', 'no_lang_code', 1, 'https://ror.org/001x6y413 Palamuru University పాలమూరు విశ్వవిద్యాలయము'),
(27862, 'https://ror.org/00y611a79', 'en', 1, 'https://ror.org/00y611a79 Shiraz University of Arts دانشگاه هنر شیراز'),
(27863, 'https://ror.org/023wavd33', 'en', 1, 'https://ror.org/023wavd33 Pampanga State Agricultural University'),
(27864, 'https://ror.org/04kf25f32', 'en', 1, 'https://ror.org/04kf25f32 Shree Guru Gobind Singh Tricentenary University'),
(27865, 'https://ror.org/05bxxrz27', 'en', 1, 'https://ror.org/05bxxrz27 Asia Life University 복음신학대학원대학교'),
(27866, 'https://ror.org/01wp52t96', 'en', 1, 'https://ror.org/01wp52t96 Asian University for Women এশিয়ান ইউনিভার্সিটি ফর উইমেন'),
(27867, 'https://ror.org/00g49fd96', 'en', 1, 'https://ror.org/00g49fd96 Pandit Deendayal Upadhyaya Shekhawati University पंडित दीनदयाल उपाध्याय शेखावाटी विश्वविद्यालय'),
(27868, 'https://ror.org/0204f9621', 'en', 1, 'https://ror.org/0204f9621 Muhammad University of Islam'),
(27869, 'https://ror.org/028r4zr88', 'en', 1, 'https://ror.org/028r4zr88 Multimedia University of Kenya'),
(27870, 'https://ror.org/00xh8va68', 'no_lang_code', 1, 'https://ror.org/00xh8va68 Shri Venkateshwara University श्री वेंकटेश्वर विश्वविद्यालय'),
(27871, 'https://ror.org/048j6n969', 'en', 1, 'https://ror.org/048j6n969 Shubun University 修文大学'),
(27872, 'https://ror.org/01qzkbq71', 'en', 1, 'https://ror.org/01qzkbq71 Multnomah University'),
(27873, 'https://ror.org/05dxvt507', 'en', 1, 'https://ror.org/05dxvt507 Pandit Sundarlal Sharma Open University पण्डित सुन्दरलाल शर्मा (मुक्त) विश्वविद्यालय'),
(27874, 'https://ror.org/04sw18p91', 'en', 1, 'https://ror.org/04sw18p91 Murmansk State Technical University Мурманский государственный технический университет'),
(27875, 'https://ror.org/03hamks61', 'en', 1, 'https://ror.org/03hamks61 American University of the Caribbean'),
(27876, 'https://ror.org/02a86ry03', 'en', 1, 'https://ror.org/02a86ry03 Chuo Kikuu cha Waislamu Morogoro Muslim University of Morogoro'),
(27877, 'https://ror.org/01hnnne31', 'en', 1, 'https://ror.org/01hnnne31 Siddhartha University'),
(27878, 'https://ror.org/000etct68', 'en', 1, 'https://ror.org/000etct68 Muteesa I Royal University'),
(27879, 'https://ror.org/03gdf8x58', 'en', 1, 'https://ror.org/03gdf8x58 Şifa University Şifa Üniversitesi'),
(27880, 'https://ror.org/03bnp9h65', 'en', 1, 'https://ror.org/03bnp9h65 Islamic Azad University, Bandar Anzali Branch دانشگاه آزاد اسلامي واحد انزلی'),
(27881, 'https://ror.org/00rmfj856', 'en', 1, 'https://ror.org/00rmfj856 Assam Don Bosco University অসম ডনব’স্ক’ বিশ্ববিদ্যালয়'),
(27882, 'https://ror.org/052xves36', 'en', 1, 'https://ror.org/052xves36 Myanmar Aerospace Engineering University မြန်မာနိုင်ငံ လေကြောင်းနှင့်အာကာသပညာ တက္ကသိုလ်'),
(27883, 'https://ror.org/05fbv2v73', 'en', 1, 'https://ror.org/05fbv2v73 Islamic Azad University of Arsanjan دانشگاه آزاد اسلامی واحد ارسنجان'),
(27884, 'https://ror.org/012g45386', 'en', 1, 'https://ror.org/012g45386 Papua New Guinea University of Technology'),
(27885, 'https://ror.org/023bes347', 'en', 1, 'https://ror.org/023bes347 Sikkim Manipal University'),
(27886, 'https://ror.org/02p42am41', 'en', 1, 'https://ror.org/02p42am41 Islamic Azad University of Birjand دانشگاه آزاد اسلامی بیرجند'),
(27887, 'https://ror.org/039p5s648', 'en', 1, 'https://ror.org/039p5s648 Assam Down Town University'),
(27888, 'https://ror.org/00z249n13', 'no_lang_code', 1, 'https://ror.org/00z249n13 Nagoya Bunri University 名古屋文理大学'),
(27889, 'https://ror.org/03e1ymy32', 'en', 1, 'https://ror.org/03e1ymy32 Sorbonne University Abu Dhabi جامعة السوربون أبوظبي'),
(27890, 'https://ror.org/02jkgrk30', 'en', 1, 'https://ror.org/02jkgrk30 Parwan University دانشگاه پروان'),
(27891, 'https://ror.org/00thekh91', 'en', 1, 'https://ror.org/00thekh91 Nagoya University of Commerce and Business 名古屋商科大学'),
(27892, 'https://ror.org/001nzxd62', 'en', 1, 'https://ror.org/001nzxd62 Nagoya Women''s University 名古屋女子大学'),
(27893, 'https://ror.org/0516eyx49', 'en', 1, 'https://ror.org/0516eyx49 Islamic Azad University of Damavand دانشگاه آزاد اسلامی واحد دماوند'),
(27894, 'https://ror.org/03kd43413', 'en', 1, 'https://ror.org/03kd43413 Nagoya Zokei University 名古屋造形大学'),
(27895, 'https://ror.org/02n0ams94', 'en', 1, 'https://ror.org/02n0ams94 Patriot Bible University'),
(27896, 'https://ror.org/03j999y97', 'en', 1, 'https://ror.org/03j999y97 Nakhon Phanom University มหาวิทยาลัยนครพนม'),
(27897, 'https://ror.org/025p0rk11', 'en', 1, 'https://ror.org/025p0rk11 Islamic Azad University of Garmsar دانشگاه آزاد اسلامی واحد گرمسار'),
(27898, 'https://ror.org/02865ms07', 'en', 1, 'https://ror.org/02865ms07 Islamic Azad University of Gorgan دانشگاه آزاد اسلامی واحد گرگان'),
(27899, 'https://ror.org/0403tv949', 'en', 1, 'https://ror.org/0403tv949 Nalanda University नालंदा आंतरराष्ट्रीय विद्यापीठ नालन्दा विश्वविद्यालय ਨਾਲੰਦਾ ਯੂਨੀਵਰਸਿਟੀ நாலந்தா பல்கலைக்கழகம் నలందా విశ్వవిద్యాలయము'),
(27900, 'https://ror.org/02m77cm13', 'en', 1, 'https://ror.org/02m77cm13 Nan Jeon University of Science and Technology 南榮科技大學'),
(27901, 'https://ror.org/05q8wsh46', 'en', 1, 'https://ror.org/05q8wsh46 PEF Private University of Management Vienna PEF Privatuniversität für Management'),
(27902, 'https://ror.org/05v3pg621', 'en', 1, 'https://ror.org/05v3pg621 Nan Kai University of Technology 南開科技大學'),
(27903, 'https://ror.org/01hdcfr51', 'en', 1, 'https://ror.org/01hdcfr51 Islamic Azad University, Komijan Branch دانشگاه آزاد اسلامی کمیجان'),
(27904, 'https://ror.org/028ecsj10', 'en', 1, 'https://ror.org/028ecsj10 Periyar Maniammai Institute of Science & Technology பெரியார் மணியம்மை பல்கலைக்கழகம்'),
(27905, 'https://ror.org/026qypj38', 'en', 1, 'https://ror.org/026qypj38 Petre Andrei University of Iași Universitatea "Petre Andrei" din Iasi'),
(27906, 'https://ror.org/043zh9f19', 'en', 1, 'https://ror.org/043zh9f19 Islamic Azad University of Sabzevar دانشگاه آزاد اسلامی واحد سبزوار'),
(27907, 'https://ror.org/023tdry64', 'en', 1, 'https://ror.org/023tdry64 Sirjan University of Technology دانشگاه صنعتی سیرجان'),
(27908, 'https://ror.org/00zxty319', 'no_lang_code', 1, 'https://ror.org/00zxty319 Naragakuen University 奈良産業大学'),
(27909, 'https://ror.org/05qdq6h40', 'en', 1, 'https://ror.org/05qdq6h40 Naresuan University Hospital โรงพยาบาลมหาวิทยาลัยนเรศวร'),
(27910, 'https://ror.org/00zh3gn22', 'en', 1, 'https://ror.org/00zh3gn22 Auro University'),
(27911, 'https://ror.org/04t50yw64', 'en', 1, 'https://ror.org/04t50yw64 Islamic Azad University, Shahinshahr Branch شاهين شهر،شایین شهر'),
(27912, 'https://ror.org/04yrwqa21', 'en', 1, 'https://ror.org/04yrwqa21 Islamic Azad University Shahr-e-Rey دانشگاه آزاد اسلامی واحد شهرری'),
(27913, 'https://ror.org/02ytxkh27', 'en', 1, 'https://ror.org/02ytxkh27 Sirte University جامعة سرت'),
(27914, 'https://ror.org/03xbchh53', 'en', 1, 'https://ror.org/03xbchh53 Islamic Azad University of Shiraz دانشگاه آزاد اسلامی واحد شیراز'),
(27915, 'https://ror.org/02bcg1976', 'en', 1, 'https://ror.org/02bcg1976 Islamic Azad University of Tafresh دانشگاه آزاد اسلامی واحد تفرش'),
(27916, 'https://ror.org/02gne5439', 'en', 1, 'https://ror.org/02gne5439 National Agrarian University Universidad Nacional Agraria'),
(27917, 'https://ror.org/03d5rbb25', 'en', 1, 'https://ror.org/03d5rbb25 Pamantasang Normal ng Pilipinas Philippine Normal University'),
(27918, 'https://ror.org/05h20p340', 'en', 1, 'https://ror.org/05h20p340 Piedmont International University'),
(27919, 'https://ror.org/05x1g5662', 'en', 1, 'https://ror.org/05x1g5662 Piedmont University'),
(27920, 'https://ror.org/03vh2mm87', 'en', 1, 'https://ror.org/03vh2mm87 Pinchot University'),
(27921, 'https://ror.org/00fp2m518', 'en', 1, 'https://ror.org/00fp2m518 Baba Ghulam Shah Badshah University بابا غُلام شاہ بادشاہ یونیورسٹی बाबा ग़ुलाम शाह बादशाह यूनिवर्सिटी'),
(27922, 'https://ror.org/01m00b434', 'en', 1, 'https://ror.org/01m00b434 Islamic University of Niger Université islamique de say'),
(27923, 'https://ror.org/047r2sc84', 'no_lang_code', 1, 'https://ror.org/047r2sc84 Slobomir P University Slobomir P Univerzitet Слобомир П Универзитет'),
(27924, 'https://ror.org/03prw2k14', 'en', 1, 'https://ror.org/03prw2k14 Baba Mastnath University बाबा मस्तनाथ विश्वविद्यालय'),
(27925, 'https://ror.org/01e249g49', 'en', 1, 'https://ror.org/01e249g49 Point University'),
(27926, 'https://ror.org/001ekgz09', 'no_lang_code', 1, 'https://ror.org/001ekgz09 Babu Banarasi Das University బాబు బనారసీ దాస్ విశ్వవిద్యాలయం'),
(27927, 'https://ror.org/00k5tp492', 'en', 1, 'https://ror.org/00k5tp492 Bac Ha International University Trường Đại học Quốc tế Bắc Hà'),
(27928, 'https://ror.org/01etvnv23', 'en', 1, 'https://ror.org/01etvnv23 Polish University Abroad'),
(27929, 'https://ror.org/01js4x705', 'en', 1, 'https://ror.org/01js4x705 Försvarshögskolan Maanpuolustuskorkeakoulu National Defence University'),
(27930, 'https://ror.org/0089fq749', 'en', 1, 'https://ror.org/0089fq749 Baddi University of Emerging Sciences and Technologies बद्दी युनिवर्सिटी ऑफ़ एमेर्गिंग साइंसेस और टेक्नोलॉजी'),
(27931, 'https://ror.org/039t4sn90', 'en', 1, 'https://ror.org/039t4sn90 Soegijapranata Catholic University Universitas Katolik Soegijapranata'),
(27932, 'https://ror.org/045vxh980', 'en', 1, 'https://ror.org/045vxh980 National Defence University نیشنل ڈیفنس یونیورسٹی'),
(27933, 'https://ror.org/00zgr4s34', 'en', 1, 'https://ror.org/00zgr4s34 Sokoto State University'),
(27934, 'https://ror.org/05sd29c29', 'en', 1, 'https://ror.org/05sd29c29 Pontifical Lateran University Pontificia Università Lateranense Päpstliche Lateranuniversität Universitat Pontifícia Lateranense Université pontificale du latran'),
(27935, 'https://ror.org/05ey1ky02', 'en', 1, 'https://ror.org/05ey1ky02 Apollos University'),
(27936, 'https://ror.org/00y184b33', 'en', 1, 'https://ror.org/00y184b33 Jaamacadda Teknoolajiyadda Somaliland Somaliland University of Technology'),
(27937, 'https://ror.org/006gp7f65', 'no_lang_code', 1, 'https://ror.org/006gp7f65 Baekseok Arts University 백석예술대학교'),
(27938, 'https://ror.org/00jpxtg25', 'en', 1, 'https://ror.org/00jpxtg25 Baekseok Culture University 백석문화대학교'),
(27939, 'https://ror.org/03wbwwy70', 'en', 1, 'https://ror.org/03wbwwy70 Pontifical University of Saint Thomas Aquinas Pontificia Università San Tommaso d''Aquino Päpstliche Universität Heiliger Thomas von Aquin Universitat Pontifícia de Sant Tomás d''Aquino Université pontificale saint-thomas-d''aquin'),
(27940, 'https://ror.org/02sd77t30', 'en', 1, 'https://ror.org/02sd77t30 Baewha Women''s University 배화여자대학교'),
(27941, 'https://ror.org/01w860d88', 'en', 1, 'https://ror.org/01w860d88 National Experimental University of the Armed Forces Universidad Nacional Experimental Politécnica de la Fuerza Armada Bolivariana'),
(27942, 'https://ror.org/049sfwc36', 'en', 1, 'https://ror.org/049sfwc36 National Intelligence University'),
(27943, 'https://ror.org/04b4rre17', 'en', 1, 'https://ror.org/04b4rre17 National Law University and Judicial Academy'),
(27944, 'https://ror.org/024s2tr48', 'en', 1, 'https://ror.org/024s2tr48 Bakke Graduate University'),
(27945, 'https://ror.org/01fazjm63', 'en', 1, 'https://ror.org/01fazjm63 Faculté pontificale de théologie saint-bonaventure Pontifical University of St. Bonaventure Pontificia Facoltà Teologica San Bonaventura'),
(27946, 'https://ror.org/01hd68v37', 'en', 1, 'https://ror.org/01hd68v37 Ittihad University'),
(27947, 'https://ror.org/02g30pd64', 'en', 1, 'https://ror.org/02g30pd64 Pontifical University of the Holy Cross Pontificia Università della Santa Croce Päpstliche Universität vom Heiligen Kreuz Universitat Pontifícia de la Santa Creu Université pontificale de la sainte-croix'),
(27948, 'https://ror.org/026gk3798', 'en', 1, 'https://ror.org/026gk3798 Baku Slavic University Bakı Slavyan Universiteti Бакинский славянский университет'),
(27949, 'https://ror.org/01yjpt684', 'en', 1, 'https://ror.org/01yjpt684 Pontifical Urban University Pontificia Università Urbaniana Päpstliche Universität Urbaniana Université pontificale urbaniana'),
(27950, 'https://ror.org/01p3ehe02', 'no_lang_code', 1, 'https://ror.org/01p3ehe02 Souphanouvong University ມະຫາວິທະຍາໄລສຸພານຸວົງ'),
(27951, 'https://ror.org/00ege8681', 'en', 1, 'https://ror.org/00ege8681 Bamyan University دبامیان پوهنتون پوهنتون بامیان'),
(27952, 'https://ror.org/01x7yyx87', 'en', 1, 'https://ror.org/01x7yyx87 National Ribat University جامعة الرباط الوطني'),
(27953, 'https://ror.org/029hrv109', 'en', 1, 'https://ror.org/029hrv109 National Taipei University of Business 國立臺北商業大學'),
(27954, 'https://ror.org/01pqsf698', 'en', 1, 'https://ror.org/01pqsf698 Bangladesh Islami University বাংলাদেশ ইসলামী বিশ্ববিদ্যালয়'),
(27955, 'https://ror.org/03kgy0531', 'en', 1, 'https://ror.org/03kgy0531 Presbyterian University of East Africa'),
(27956, 'https://ror.org/02w403504', 'en', 1, 'https://ror.org/02w403504 South Eastern Kenya University'),
(27957, 'https://ror.org/00x4epv84', 'en', 1, 'https://ror.org/00x4epv84 Southern Luzon State University'),
(27958, 'https://ror.org/013h3xr51', 'en', 1, 'https://ror.org/013h3xr51 Izmir University İzmir Üniversitesi'),
(27959, 'https://ror.org/05kptcy79', 'en', 1, 'https://ror.org/05kptcy79 National Universities Commission'),
(27960, 'https://ror.org/02q9fse63', 'en', 1, 'https://ror.org/02q9fse63 Southern University Law Center'),
(27961, 'https://ror.org/016848p13', 'en', 1, 'https://ror.org/016848p13 Baptist University of the Américas'),
(27962, 'https://ror.org/008mz8m34', 'en', 1, 'https://ror.org/008mz8m34 Jagadguru Rambhadracharya Handicapped University जगद्गुरु रामभद्राचार्य विकलांग विश्वविद्यालय જગદ્ગુરુ રામભદ્રાચાર્ય વિકલાંગ વિશ્વવિદ્યાલય'),
(27963, 'https://ror.org/019kr0669', 'en', 1, 'https://ror.org/019kr0669 Southwest University of Visual Arts'),
(27964, 'https://ror.org/01cnqpt53', 'en', 1, 'https://ror.org/01cnqpt53 Jain University'),
(27965, 'https://ror.org/03yahhs20', 'en', 1, 'https://ror.org/03yahhs20 Bastar University बस्तर विश्वविद्यालय'),
(27966, 'https://ror.org/01g0ns998', 'en', 1, 'https://ror.org/01g0ns998 Private University of Trujillo Universidad Privada de Trujillo'),
(27967, 'https://ror.org/01jswq303', 'en', 1, 'https://ror.org/01jswq303 Spartan Health Sciences University'),
(27968, 'https://ror.org/01rb75107', 'en', 1, 'https://ror.org/01rb75107 National University of Advanced Legal Studies'),
(27969, 'https://ror.org/018gzjd49', 'en', 1, 'https://ror.org/018gzjd49 Bataan Peninsula State University'),
(27970, 'https://ror.org/0530t2h81', 'en', 1, 'https://ror.org/0530t2h81 Spicer Adventist University'),
(27971, 'https://ror.org/05brr5h08', 'en', 1, 'https://ror.org/05brr5h08 Jaamacada Jamhuriya Jamhuriya University of Science and Technology جامعة جمهورية للعلوم والتكنولوجيا'),
(27972, 'https://ror.org/02c2her03', 'en', 1, 'https://ror.org/02c2her03 Sri Guru Granth Sahib World University ਸ੍ਰੀ ਗੁਰੂ ਗ੍ਰੰਥ ਸਾਹਿਬ ਵਰਲਡ ਯੂਨੀਵਰਸਿਟੀ'),
(27973, 'https://ror.org/04hsp7g83', 'en', 1, 'https://ror.org/04hsp7g83 Jaamacadda Puntland Puntland State University'),
(27974, 'https://ror.org/02952pd71', 'en', 1, 'https://ror.org/02952pd71 Pwani University'),
(27975, 'https://ror.org/04hj33b78', 'en', 1, 'https://ror.org/04hj33b78 National University of Music Bucharest Universitatea Națională de Muzică București'),
(27976, 'https://ror.org/01mkm2y61', 'en', 1, 'https://ror.org/01mkm2y61 Sri Sai University'),
(27977, 'https://ror.org/05pkzsx39', 'no_lang_code', 1, 'https://ror.org/05pkzsx39 Janus University'),
(27978, 'https://ror.org/05wkq5518', 'en', 1, 'https://ror.org/05wkq5518 Pyongyang Medical University 평양의학대학'),
(27979, 'https://ror.org/0090r4223', 'en', 1, 'https://ror.org/0090r4223 St. John International University'),
(27980, 'https://ror.org/039k5fe46', 'en', 1, 'https://ror.org/039k5fe46 Japan University of Economics 日本経済大学'),
(27981, 'https://ror.org/03gsd6w61', 'en', 1, 'https://ror.org/03gsd6w61 National University of Saint Anthony the Abbot in Cuzco Universidad Nacional de San Antonio Abad del Cusco'),
(27982, 'https://ror.org/006pnw132', 'en', 1, 'https://ror.org/006pnw132 Le Iunivesite Aoao o Samoa National University of Samoa'),
(27983, 'https://ror.org/03ffvb852', 'en', 1, 'https://ror.org/03ffvb852 Jaramogi Oginga Odinga University of Science and Technology'),
(27984, 'https://ror.org/000vgrb22', 'en', 1, 'https://ror.org/000vgrb22 Pyongyang University of Science and Technology 평양과학기술대학'),
(27985, 'https://ror.org/0538gj066', 'en', 1, 'https://ror.org/0538gj066 National University of the Chaco Austral Universidad Nacional del Chaco Austral'),
(27986, 'https://ror.org/03hakcq28', 'en', 1, 'https://ror.org/03hakcq28 Qarshi University قرشی یونیورسٹی'),
(27987, 'https://ror.org/02h7g1s38', 'en', 1, 'https://ror.org/02h7g1s38 Jawaharlal Nehru Architecture and Fine Arts University जवाहरलाल नेहरू वास्तुकला तथा ललितकला विश्वविद्यालय'),
(27988, 'https://ror.org/00wyq5s37', 'en', 1, 'https://ror.org/00wyq5s37 St. John''s University 聖約翰科技大學'),
(27989, 'https://ror.org/04mvbr723', 'en', 1, 'https://ror.org/04mvbr723 Chuo Kikuu cha Mtakatifu Joseph Tanzania St. Joseph University In Tanzania'),
(27990, 'https://ror.org/01y5fjx51', 'en', 1, 'https://ror.org/01y5fjx51 Hainan Tropical Ocean University 海南热带海洋学院'),
(27991, 'https://ror.org/029d56x50', 'en', 1, 'https://ror.org/029d56x50 St. Lawrence University'),
(27992, 'https://ror.org/01n7ngw29', 'en', 1, 'https://ror.org/01n7ngw29 NationsUniversity'),
(27993, 'https://ror.org/0382vme49', 'en', 1, 'https://ror.org/0382vme49 Quality Leadership University Panama'),
(27994, 'https://ror.org/04hjsag95', 'en', 1, 'https://ror.org/04hjsag95 JECRC University'),
(27995, 'https://ror.org/045jvzr81', 'en', 1, 'https://ror.org/045jvzr81 Quảng Bình University Trường Đại học Quảng Bình'),
(27996, 'https://ror.org/04ft1xc20', 'en', 1, 'https://ror.org/04ft1xc20 St. Martinus University'),
(27997, 'https://ror.org/00n34gb90', 'en', 1, 'https://ror.org/00n34gb90 St. Mary''s Seminary and University'),
(27998, 'https://ror.org/03jxhcr96', 'en', 1, 'https://ror.org/03jxhcr96 Peking University International Hospital 北大国际医院'),
(27999, 'https://ror.org/049te8947', 'en', 1, 'https://ror.org/049te8947 Nayanova University Самарская государственная областная академия'),
(28000, 'https://ror.org/03k5j0a08', 'en', 1, 'https://ror.org/03k5j0a08 Nayoro City University 名寄市立大学'),
(28001, 'https://ror.org/01bt5mj78', 'en', 1, 'https://ror.org/01bt5mj78 Quchan University of Advanced Technology دانشگاه مهندسی فناوریهای نوین قوچان'),
(28002, 'https://ror.org/04qdhg582', 'en', 1, 'https://ror.org/04qdhg582 Jharkhand Rai University'),
(28003, 'https://ror.org/02nfjwv95', 'en', 1, 'https://ror.org/02nfjwv95 St. Paul University Dumaguete'),
(28004, 'https://ror.org/040p5b123', 'en', 1, 'https://ror.org/040p5b123 Neisse University'),
(28005, 'https://ror.org/033v2cg93', 'no_lang_code', 1, 'https://ror.org/033v2cg93 Jig Jiga Jigjiga University'),
(28006, 'https://ror.org/013tad429', 'en', 1, 'https://ror.org/013tad429 Benadir University Jaamacada Banaadir جامعـــة بنـــادر'),
(28007, 'https://ror.org/03dr26375', 'en', 1, 'https://ror.org/03dr26375 Jinwen University of Science and Technology 景文科技大學'),
(28008, 'https://ror.org/056bber35', 'en', 1, 'https://ror.org/056bber35 Rajasthan Technical University राजस्थान तकनीकी विश्वविधालय'),
(28009, 'https://ror.org/04sxw1w14', 'en', 1, 'https://ror.org/04sxw1w14 St. Theresa''s Medical University of Yerevan'),
(28010, 'https://ror.org/02bmams93', 'en', 1, 'https://ror.org/02bmams93 St. Thomas University'),
(28011, 'https://ror.org/03rm49h74', 'en', 1, 'https://ror.org/03rm49h74 Jodhpur National University जोधपुर राष्ट्रीय विश्वविद्यालय'),
(28012, 'https://ror.org/05e8t3y83', 'en', 1, 'https://ror.org/05e8t3y83 Rajin University of Marine Transport 나진해운대학 만들기'),
(28013, 'https://ror.org/01fjdq469', 'en', 1, 'https://ror.org/01fjdq469 John Cabot University'),
(28014, 'https://ror.org/05pc6nk51', 'en', 1, 'https://ror.org/05pc6nk51 New Era University'),
(28015, 'https://ror.org/02qrax274', 'en', 1, 'https://ror.org/02qrax274 Ras al-Khaimah Medical and Health Sciences University'),
(28016, 'https://ror.org/01kbvt179', 'en', 1, 'https://ror.org/01kbvt179 New Mexico State University Carlsbad'),
(28017, 'https://ror.org/03p5fh293', 'en', 1, 'https://ror.org/03p5fh293 Bethany Global University');
INSERT INTO `rors` VALUES
(28018, 'https://ror.org/014cnmj57', 'en', 1, 'https://ror.org/014cnmj57 Duale Hochschule Baden-Württemberg Ravensburg Ravensburg University of Cooperative Education'),
(28019, 'https://ror.org/02y1frf83', 'en', 1, 'https://ror.org/02y1frf83 John Garang Memorial University of Science and Technology'),
(28020, 'https://ror.org/00nphdr35', 'en', 1, 'https://ror.org/00nphdr35 Rayalaseema University రాయలసీమ విశ్వవిద్యాలయం'),
(28021, 'https://ror.org/00wtwp073', 'en', 1, 'https://ror.org/00wtwp073 St. Matthew''s University'),
(28022, 'https://ror.org/00jkprj19', 'en', 1, 'https://ror.org/00jkprj19 John Paul the Great Catholic University'),
(28023, 'https://ror.org/03dcvf827', 'en', 1, 'https://ror.org/03dcvf827 Beykent University Beykent Üniversitesi'),
(28024, 'https://ror.org/030c1ef86', 'en', 1, 'https://ror.org/030c1ef86 Bhagwant University भगवंत युनिवर्सिटी'),
(28025, 'https://ror.org/04dpnfr42', 'en', 1, 'https://ror.org/04dpnfr42 Johnson University'),
(28026, 'https://ror.org/0430hbm78', 'en', 1, 'https://ror.org/0430hbm78 Nigerian University Games Association'),
(28027, 'https://ror.org/020kbv448', 'en', 1, 'https://ror.org/020kbv448 Johnson University Florida'),
(28028, 'https://ror.org/0378gm372', 'en', 1, 'https://ror.org/0378gm372 Hochschule RheinMain RheinMain University of Applied Sciences'),
(28029, 'https://ror.org/01m67jf71', 'en', 1, 'https://ror.org/01m67jf71 NIILM University नीलम युनिवर्सिटी'),
(28030, 'https://ror.org/037zqsm37', 'en', 1, 'https://ror.org/037zqsm37 Nilai University Universiti Nilai'),
(28031, 'https://ror.org/04wdt0z89', 'en', 1, 'https://ror.org/04wdt0z89 Hochschule Rhein-Waal Rhine-Waal University of Applied Sciences'),
(28032, 'https://ror.org/02pzqs694', 'en', 1, 'https://ror.org/02pzqs694 Riara University'),
(28033, 'https://ror.org/02s3pgd18', 'en', 1, 'https://ror.org/02s3pgd18 Rivier University Université rivier'),
(28034, 'https://ror.org/057ap5t09', 'en', 1, 'https://ror.org/057ap5t09 RK University'),
(28035, 'https://ror.org/04se5tt51', 'en', 1, 'https://ror.org/04se5tt51 Bikaner Technical University बीकानेर तकनीकी विश्विद्यालय'),
(28036, 'https://ror.org/03ewyw715', 'en', 1, 'https://ror.org/03ewyw715 Jose Rizal Memorial State University'),
(28037, 'https://ror.org/014e7p840', 'en', 1, 'https://ror.org/014e7p840 Robert Morris University Illinois'),
(28038, 'https://ror.org/04dn9wj23', 'en', 1, 'https://ror.org/04dn9wj23 Romblon State University'),
(28039, 'https://ror.org/04mgf6n79', 'en', 1, 'https://ror.org/04mgf6n79 Junagadh Agricultural University કૃષિ યુનિવર્સિટી, જૂનાગઢ'),
(28040, 'https://ror.org/031yv7164', 'en', 1, 'https://ror.org/031yv7164 Hochschule für Musik und Theater Rostock Rostock University of Music and Theatre'),
(28041, 'https://ror.org/02pnhcc10', 'en', 1, 'https://ror.org/02pnhcc10 Hochschule für Forstwirtschaft Rottenburg Rottenburg University of Applied Forest Sciences'),
(28042, 'https://ror.org/05q9we431', 'en', 1, 'https://ror.org/05q9we431 Noakhali Science and Technology University নোয়াখালী বিজ্ঞান ও প্রযুক্তি বিশ্ববিদ্যালয়'),
(28043, 'https://ror.org/01w33af17', 'en', 1, 'https://ror.org/01w33af17 Royal University of Fine Arts Université royale des beaux-arts សាកលវិទ្យាល័យភូមិន្ទវិចិត្រសិល្បៈ'),
(28044, 'https://ror.org/04yjdkj62', 'en', 1, 'https://ror.org/04yjdkj62 Sultan Kudarat State University'),
(28045, 'https://ror.org/02g97km06', 'en', 1, 'https://ror.org/02g97km06 Russian Islamic University Российский исламский институт'),
(28046, 'https://ror.org/014cjmc76', 'en', 1, 'https://ror.org/014cjmc76 Swinburne University of Technology Sarawak Campus'),
(28047, 'https://ror.org/007w4fd36', 'en', 1, 'https://ror.org/007w4fd36 Japan Center for Michigan Universities ミシガン州立大学連合日本センター'),
(28048, 'https://ror.org/02p5gkq58', 'en', 1, 'https://ror.org/02p5gkq58 King’s University'),
(28049, 'https://ror.org/02tsdk069', 'en', 1, 'https://ror.org/02tsdk069 North Greenville University'),
(28050, 'https://ror.org/05k3sdc46', 'en', 1, 'https://ror.org/05k3sdc46 North Sichuan Medical University 川北医学院'),
(28051, 'https://ror.org/04abjgr86', 'en', 1, 'https://ror.org/04abjgr86 Sacred Heart University'),
(28052, 'https://ror.org/044r99091', 'en', 1, 'https://ror.org/044r99091 Saigon Technology University Đại học Công nghệ Sài Gòn'),
(28053, 'https://ror.org/01f1fsr30', 'en', 1, 'https://ror.org/01f1fsr30 Saigon University Trường Đại học Sài Gòn Université de saigon 西贡大学'),
(28054, 'https://ror.org/049c2kr37', 'en', 1, 'https://ror.org/049c2kr37 Kalaidos Fachhochschule Kalaidos University of Applied Sciences'),
(28055, 'https://ror.org/040acyg58', 'en', 1, 'https://ror.org/040acyg58 Saint Patrick''s Seminary and University'),
(28056, 'https://ror.org/03x8feb02', 'en', 1, 'https://ror.org/03x8feb02 Saigon International University Trường Đại học Quốc tế Sài Gòn'),
(28057, 'https://ror.org/0398ex766', 'en', 1, 'https://ror.org/0398ex766 Saint Petersburg State University of Economics Санкт-Петербургский государственный университет сервиса и экономики'),
(28058, 'https://ror.org/01sbmsw53', 'no_lang_code', 1, 'https://ror.org/01sbmsw53 Saku University 佐久大学'),
(28059, 'https://ror.org/048a4ax84', 'en', 1, 'https://ror.org/048a4ax84 Northland International University'),
(28060, 'https://ror.org/05b4xwc96', 'en', 1, 'https://ror.org/05b4xwc96 Kamianets-Podіlskyi Ivan Ohiienko National University Ukraiński Uniwersytet Państwowy w Kamieńcu Podolskim Кам''янець-Подільський національний університет імені Івана Огієнка Каменец-Подольский национальный университет'),
(28061, 'https://ror.org/0008taf66', 'en', 1, 'https://ror.org/0008taf66 Bushnell University'),
(28062, 'https://ror.org/01g0sat63', 'en', 1, 'https://ror.org/01g0sat63 Salam University سلام پوهنتون پوهنتون سلام)'),
(28063, 'https://ror.org/00qpbmv96', 'en', 1, 'https://ror.org/00qpbmv96 Päpstliche Universität der Salesianer Salesian Pontifical University Università Pontificia Salesiana Université pontificale salésienne'),
(28064, 'https://ror.org/009f6yv14', 'en', 1, 'https://ror.org/009f6yv14 Kansai University of Nursing and Health Sciences 関西看護医療大学'),
(28065, 'https://ror.org/009yjbg58', 'en', 1, 'https://ror.org/009yjbg58 Notre Dame of Dadiangas University'),
(28066, 'https://ror.org/016epqy31', 'en', 1, 'https://ror.org/016epqy31 Kansai University of Welfare Sciences 関西福祉科学大学'),
(28067, 'https://ror.org/0539t2e91', 'en', 1, 'https://ror.org/0539t2e91 Thorneloe University'),
(28068, 'https://ror.org/056vtz595', 'en', 1, 'https://ror.org/056vtz595 Nueva Ecija University of Science and Technology Pamantasan ng Nueva Ecija sa Agham at Teknolohiya'),
(28069, 'https://ror.org/03wm74n81', 'en', 1, 'https://ror.org/03wm74n81 Jaamacadda Nugaal Nugaal University'),
(28070, 'https://ror.org/018528593', 'en', 1, 'https://ror.org/018528593 Nyenrode Business Universiteit Nyenrode Business University'),
(28071, 'https://ror.org/030kg2v23', 'en', 1, 'https://ror.org/030kg2v23 Oaksterdam University'),
(28072, 'https://ror.org/02d9d7j52', 'en', 1, 'https://ror.org/02d9d7j52 Thunchath Ezhuthachan Malayalam University துஞ்சத்து எழுத்தச்சன் மலையாள பல்கலைக்கழகம் തുഞ്ചത്ത് എഴുത്തച്ഛൻ മലയാളം സർവ്വകലാശാല'),
(28073, 'https://ror.org/01h8c9041', 'en', 1, 'https://ror.org/01h8c9041 Syrian Private University الجامعة السورية الخاصة'),
(28074, 'https://ror.org/04fa2qd52', 'en', 1, 'https://ror.org/04fa2qd52 Sanya University 三亚学院'),
(28075, 'https://ror.org/04ppdmy96', 'en', 1, 'https://ror.org/04ppdmy96 Tabarestan University مؤسسه آموزش عالی طبرستان'),
(28076, 'https://ror.org/023jw8186', 'no_lang_code', 1, 'https://ror.org/023jw8186 Sapporo Ōtani University 札幌大谷大学'),
(28077, 'https://ror.org/044f1sg93', 'en', 1, 'https://ror.org/044f1sg93 Oduduwa University'),
(28078, 'https://ror.org/05y8j9f75', 'en', 1, 'https://ror.org/05y8j9f75 Sarguja University सरगुजा विश्वविद्यालय'),
(28079, 'https://ror.org/00f3w5j61', 'no_lang_code', 1, 'https://ror.org/00f3w5j61 Oikos University'),
(28080, 'https://ror.org/05696d323', 'en', 1, 'https://ror.org/05696d323 Tokyo Christian University 東京基督教大学'),
(28081, 'https://ror.org/00kj4zk54', 'en', 1, 'https://ror.org/00kj4zk54 Tabriz Islamic Arts University دانشگاه هنر اسلامی تبریز'),
(28082, 'https://ror.org/027n9q071', 'fr', 1, 'https://ror.org/027n9q071 Université des Montagnes'),
(28083, 'https://ror.org/02rcadd38', 'en', 1, 'https://ror.org/02rcadd38 Nagaoka University 長岡大学'),
(28084, 'https://ror.org/01etn5q21', 'en', 1, 'https://ror.org/01etn5q21 Tokyo Fuji University 東京富士大学'),
(28085, 'https://ror.org/04eqy7d03', 'en', 1, 'https://ror.org/04eqy7d03 Oklahoma State University Institute of Technology'),
(28086, 'https://ror.org/04jd89h35', 'en', 1, 'https://ror.org/04jd89h35 Olivet University'),
(28087, 'https://ror.org/05wvke928', 'en', 1, 'https://ror.org/05wvke928 Tokyo Health Care University 東京医療保健大学'),
(28088, 'https://ror.org/04jzmk773', 'en', 1, 'https://ror.org/04jzmk773 Tafila Technical University جامعة الطفيلة التقنية'),
(28089, 'https://ror.org/048cnkq84', 'en', 1, 'https://ror.org/048cnkq84 Ontario Confederation of University Faculty Associations'),
(28090, 'https://ror.org/053g6f175', 'en', 1, 'https://ror.org/053g6f175 Centre de demande d’admission aux universités de l’Ontario Ontario Universities’ Application Centre'),
(28091, 'https://ror.org/05dzbpx12', 'fr', 1, 'https://ror.org/05dzbpx12 European University of Scents and Flavors Université Européenne des Senteurs & Saveur'),
(28092, 'https://ror.org/02ee19461', 'en', 1, 'https://ror.org/02ee19461 Open Universities Australia'),
(28093, 'https://ror.org/040f6ar92', 'en', 1, 'https://ror.org/040f6ar92 Tafresh University دانشگاه تفرش'),
(28094, 'https://ror.org/037yy5v69', 'en', 1, 'https://ror.org/037yy5v69 Open University Malaysia Universiti Terbuka Malaysia 马来西亚开放大学'),
(28095, 'https://ror.org/05rgcq967', 'en', 1, 'https://ror.org/05rgcq967 Torch Trinity Graduate University 횃불트리니티신학대학원대학교'),
(28096, 'https://ror.org/00nvwb533', 'fr', 1, 'https://ror.org/00nvwb533 Université Internationale de Casablanca'),
(28097, 'https://ror.org/04p3ez076', 'en', 1, 'https://ror.org/04p3ez076 Taipei City University of Science and Technology 臺北城市科技大學'),
(28098, 'https://ror.org/01sr63h27', 'en', 1, 'https://ror.org/01sr63h27 Chuo Kikuu cha Kumbukumbu cha Sebastian Kolowa Sebastian Kolowa Memorial University'),
(28099, 'https://ror.org/0406t3m57', 'fr', 1, 'https://ror.org/0406t3m57 Université Nantes Angers Le Mans'),
(28100, 'https://ror.org/02tjjy347', 'en', 1, 'https://ror.org/02tjjy347 Taiwan Comprehensive University System 台灣綜合大學系統'),
(28101, 'https://ror.org/0351xae06', 'en', 1, 'https://ror.org/0351xae06 Torrens University Australia'),
(28102, 'https://ror.org/05crr5s63', 'en', 1, 'https://ror.org/05crr5s63 SEGi University Universiti SEGi'),
(28103, 'https://ror.org/02zfq4z39', 'en', 1, 'https://ror.org/02zfq4z39 Taiwan Hospitality and Tourism University 臺灣觀光學院'),
(28104, 'https://ror.org/04w7k2121', 'no_lang_code', 1, 'https://ror.org/04w7k2121 University of Fukuchiyama 福知山公立大学'),
(28105, 'https://ror.org/055zdhj54', 'zh', 1, 'https://ror.org/055zdhj54 Taiwan Shoufu University 台灣首府大學'),
(28106, 'https://ror.org/05dg6kp30', 'en', 1, 'https://ror.org/05dg6kp30 Universiteti Pavarësia Vlorë University Pavaresia Vlore'),
(28107, 'https://ror.org/00m4aws33', 'en', 1, 'https://ror.org/00m4aws33 Seoul Theological University 서울신학대학교'),
(28108, 'https://ror.org/03nw0tx25', 'en', 1, 'https://ror.org/03nw0tx25 Shaheed Mohtarma Benazir Bhutto Medical University شهيد محترمه بينظير ڀٽو ميڊيڪل يونيورسٽي شہید محترمہ بے نظیر بھٹو میڈیکل یونیورسٹی'),
(28109, 'https://ror.org/02gvn8796', 'en', 1, 'https://ror.org/02gvn8796 Sultan Sharif Ali Islamic University Universiti Islam Sultan Sharif Ali'),
(28110, 'https://ror.org/03fx09x73', 'en', 1, 'https://ror.org/03fx09x73 Shaoyang University'),
(28111, 'https://ror.org/05hawb687', 'no_lang_code', 1, 'https://ror.org/05hawb687 Shaqra University جامعة شقراء'),
(28112, 'https://ror.org/00y792711', 'en', 1, 'https://ror.org/00y792711 Technological University of Tajikistan Донишгоҳи техникии Тоҷикистон ба номи М.Осимӣ Таджикский технический университет имени М. Осими'),
(28113, 'https://ror.org/0486ta465', 'en', 1, 'https://ror.org/0486ta465 Shenzhen Radio and TV University 深圳广播电视大学'),
(28114, 'https://ror.org/01xmbf059', 'en', 1, 'https://ror.org/01xmbf059 Universities at Medway'),
(28115, 'https://ror.org/02kpzs615', 'en', 1, 'https://ror.org/02kpzs615 University Academy Holbeach'),
(28116, 'https://ror.org/049d63v97', 'en', 1, 'https://ror.org/049d63v97 Takasaki University of Commerce 高崎商科大学'),
(28117, 'https://ror.org/002xar614', 'en', 1, 'https://ror.org/002xar614 Takming University of Science and Technology 德明財經科技大學'),
(28118, 'https://ror.org/0314ahf24', 'en', 1, 'https://ror.org/0314ahf24 TransWorld University 環球科技大學'),
(28119, 'https://ror.org/02cbb2q94', 'en', 1, 'https://ror.org/02cbb2q94 Trinity Southwest University'),
(28120, 'https://ror.org/05nnaxh18', 'en', 1, 'https://ror.org/05nnaxh18 University of East Yangon ရန်ကုန် အရှေ့ပိုင်း တက္ကသိုလ်'),
(28121, 'https://ror.org/00zyp8708', 'en', 1, 'https://ror.org/00zyp8708 Shevchenko Transnistria State University Universitatea de Stat din Transnistria Приднестровский государственный университет имени Тараса Шевченко'),
(28122, 'https://ror.org/012a85e51', 'en', 1, 'https://ror.org/012a85e51 University of Economics and Innovation Wyższa Szkoła Ekonomii i Innowacjii w Lublinie'),
(28123, 'https://ror.org/007qxz427', 'en', 1, 'https://ror.org/007qxz427 Tamil Nadu Teachers Education University தமிழ்நாடு ஆசிரியர் கல்வியியல் பல்கலைக்கழகம்'),
(28124, 'https://ror.org/00bwtjf83', 'en', 1, 'https://ror.org/00bwtjf83 Tampere University of Applied Sciences Tampereen Ammattikorkeakoulu'),
(28125, 'https://ror.org/05r9rzb75', 'en', 1, 'https://ror.org/05r9rzb75 University of Energy and Natural Resources'),
(28126, 'https://ror.org/00v23bh67', 'en', 1, 'https://ror.org/00v23bh67 University of Fairfax'),
(28127, 'https://ror.org/03q6f0894', 'en', 1, 'https://ror.org/03q6f0894 Trường Đại học Tân Tạo Tân Tạo University'),
(28128, 'https://ror.org/002x5gq86', 'en', 1, 'https://ror.org/002x5gq86 Turkmen Agricultural University Named after S.A. Niyazov Туркменский сельскохозяйственный университет имени С. А. Ниязова'),
(28129, 'https://ror.org/01m9cz451', 'en', 1, 'https://ror.org/01m9cz451 Tanzania Commission for Universities'),
(28130, 'https://ror.org/01a7snz60', 'en', 1, 'https://ror.org/01a7snz60 Hochschule für Fernsehen und Film München University of Television and Film Munich'),
(28131, 'https://ror.org/00p04vc15', 'en', 1, 'https://ror.org/00p04vc15 U15 Group of Canadian Research Universities'),
(28132, 'https://ror.org/00xhtpg39', 'en', 1, 'https://ror.org/00xhtpg39 Taungoo University တောင်ငူတက္ကသိုလ်'),
(28133, 'https://ror.org/03vejgn42', 'no_lang_code', 1, 'https://ror.org/03vejgn42 Uekusa Gakuen University 植草学園大学'),
(28134, 'https://ror.org/02vw63h19', 'en', 1, 'https://ror.org/02vw63h19 Uganda Pentecostal University'),
(28135, 'https://ror.org/01rxjzf54', 'en', 1, 'https://ror.org/01rxjzf54 University of the East Ramon Magsaysay Memorial Medical Center'),
(28136, 'https://ror.org/01fxfpm96', 'en', 1, 'https://ror.org/01fxfpm96 Techno Global University टेक्नो ग्लोबल युनिवर्सिटी, सिरोंज'),
(28137, 'https://ror.org/00r664k32', 'en', 1, 'https://ror.org/00r664k32 University Hospital'),
(28138, 'https://ror.org/02ywmkj38', 'en', 1, 'https://ror.org/02ywmkj38 Ukrainian Free University Ukrainische Freie Universität München'),
(28139, 'https://ror.org/04v84zt52', 'en', 1, 'https://ror.org/04v84zt52 Children''s Hospital of Western Ontario'),
(28140, 'https://ror.org/01b8wwr26', 'no_lang_code', 1, 'https://ror.org/01b8wwr26 University Hospital Center Dr Dragiša Mišović Клиничко-болнички центар Др Драгиша Мишовић-Дедиње'),
(28141, 'https://ror.org/023d4z626', 'en', 1, 'https://ror.org/023d4z626 University Hospital of Oran مستشفى وهران الجامعي'),
(28142, 'https://ror.org/03a6cpb51', 'en', 1, 'https://ror.org/03a6cpb51 University of Goma Université de goma'),
(28143, 'https://ror.org/044qb6z05', 'no_lang_code', 1, 'https://ror.org/044qb6z05 University of Goroka'),
(28144, 'https://ror.org/03srgbm67', 'en', 1, 'https://ror.org/03srgbm67 University of Guelph-Humber'),
(28145, 'https://ror.org/023tegq12', 'en', 1, 'https://ror.org/023tegq12 Jaamacadda Hargeysa University of Hargeisa جامعة هرجيسا'),
(28146, 'https://ror.org/001889b65', 'en', 1, 'https://ror.org/001889b65 University of the Holy Quran and Islamic Sciences جامعة القرآن الكريم والعلوم الإسلامية'),
(28147, 'https://ror.org/03fgk0a27', 'en', 1, 'https://ror.org/03fgk0a27 United Methodist University'),
(28148, 'https://ror.org/00k27aj44', 'en', 1, 'https://ror.org/00k27aj44 University of the Philippines Open University'),
(28149, 'https://ror.org/05r8r3608', 'en', 1, 'https://ror.org/05r8r3608 United States University'),
(28150, 'https://ror.org/047qsc013', 'no_lang_code', 1, 'https://ror.org/047qsc013 Telangana University తెలంగాణ విశ్వవిద్యాలయము'),
(28151, 'https://ror.org/024ytaq06', 'en', 1, 'https://ror.org/024ytaq06 Field Studies Council'),
(28152, 'https://ror.org/00ynatg20', 'no_lang_code', 1, 'https://ror.org/00ynatg20 Universal Research Group (Pakistan)'),
(28153, 'https://ror.org/036pt7h44', 'en', 1, 'https://ror.org/036pt7h44 University Medical Center'),
(28154, 'https://ror.org/01zr7q119', 'es', 1, 'https://ror.org/01zr7q119 Universidad Autónoma de Santa Ana'),
(28155, 'https://ror.org/01wdhap14', 'en', 1, 'https://ror.org/01wdhap14 University of Health Sciences Antigua'),
(28156, 'https://ror.org/05yjy4360', 'en', 1, 'https://ror.org/05yjy4360 University of Applied Arts Vienna Universität für angewandte Kunst Wien'),
(28157, 'https://ror.org/03v7fdr41', 'en', 1, 'https://ror.org/03v7fdr41 Tenri Health Care University 天理医療大学'),
(28158, 'https://ror.org/02ahyfq08', 'en', 1, 'https://ror.org/02ahyfq08 University of the Potomac'),
(28159, 'https://ror.org/01846yk50', 'no_lang_code', 1, 'https://ror.org/01846yk50 Chuo Kikuu cha Teofilo Kisanji Teofilo Kisanji University'),
(28160, 'https://ror.org/02nctxr05', 'en', 1, 'https://ror.org/02nctxr05 University of Horticultural Sciences Bagalkote ತೋಟಗಾರಿಕೆ ವಿಜ್ಞಾನಗಳ ವಿಶ್ವವಿದ್ಯಾಲಯ, ಬಾಗಲಕೋಟೆ'),
(28161, 'https://ror.org/04q5vv384', 'en', 1, 'https://ror.org/04q5vv384 Hochschule für Angewandte Wissenschaften Hof Hof University of Applied Sciences'),
(28162, 'https://ror.org/056z5bx32', 'en', 1, 'https://ror.org/056z5bx32 Hochschule für angewandte Wissenschaften Landshut University of Applied Sciences Landshut'),
(28163, 'https://ror.org/03zka7717', 'en', 1, 'https://ror.org/03zka7717 University of Tifariti جامعة تيفاريتي'),
(28164, 'https://ror.org/02m0m4f58', 'en', 1, 'https://ror.org/02m0m4f58 Novi Sad Open University Новосадски отворени универзитет'),
(28165, 'https://ror.org/0274gjx61', 'en', 1, 'https://ror.org/0274gjx61 University of Traditional Medicine, Mandalay တိုင်းရင်းဆေးသိပ္ပံကျောင်း'),
(28166, 'https://ror.org/02azpgf48', 'en', 1, 'https://ror.org/02azpgf48 American University of Iraq Sulaimani الجامعة الأمريكية في السليمانية'),
(28167, 'https://ror.org/00vab0213', 'en', 1, 'https://ror.org/00vab0213 University of Tripoli Lebanon جامعة طرابلس لبنان'),
(28168, 'https://ror.org/05nnnck56', 'en', 1, 'https://ror.org/05nnnck56 The American University of Vietnam Đại học Mỹ tại Việt Nam'),
(28169, 'https://ror.org/00cbm0437', 'en', 1, 'https://ror.org/00cbm0437 Bridge University'),
(28170, 'https://ror.org/03zkjvs45', 'es', 1, 'https://ror.org/03zkjvs45 Universidad del Tepeyac'),
(28171, 'https://ror.org/04f9r2a11', 'en', 1, 'https://ror.org/04f9r2a11 East African University'),
(28172, 'https://ror.org/0092t1z08', 'en', 1, 'https://ror.org/0092t1z08 The Future University جامعة المستقبل'),
(28173, 'https://ror.org/04sfnmc71', 'en', 1, 'https://ror.org/04sfnmc71 Glocal University ग्लोकल युनिवर्सिटी'),
(28174, 'https://ror.org/03cb6na95', 'en', 1, 'https://ror.org/03cb6na95 University of International Golden Indonesia'),
(28175, 'https://ror.org/035rzdj42', 'en', 1, 'https://ror.org/035rzdj42 University of Asmara'),
(28176, 'https://ror.org/0051sgx15', 'en', 1, 'https://ror.org/0051sgx15 University of Bagamoyo'),
(28177, 'https://ror.org/031ahrf94', 'en', 1, 'https://ror.org/031ahrf94 University of Bamenda Université de Bamenda'),
(28178, 'https://ror.org/03y601s20', 'en', 1, 'https://ror.org/03y601s20 University of Bihać Univerzitet u Bihaću Универзитет у Бихаћу'),
(28179, 'https://ror.org/03rk9qf06', 'en', 1, 'https://ror.org/03rk9qf06 University of Kabianga'),
(28180, 'https://ror.org/02xr3yb07', 'en', 1, 'https://ror.org/02xr3yb07 University of Bijeljina Univerzitet Bijeljina Универзитет Бијељина'),
(28181, 'https://ror.org/03ws6sq43', 'en', 1, 'https://ror.org/03ws6sq43 University of Kalemie Université de kalemie'),
(28182, 'https://ror.org/01q0sjp54', 'en', 1, 'https://ror.org/01q0sjp54 University of Buraimi جامعة البريمي'),
(28183, 'https://ror.org/01ff1ev27', 'en', 1, 'https://ror.org/01ff1ev27 University of Kamina Université de Kamina'),
(28184, 'https://ror.org/05cv4zg26', 'en', 1, 'https://ror.org/05cv4zg26 Wirral University Teaching Hospital NHS Foundation Trust'),
(28185, 'https://ror.org/02ee2t316', 'en', 1, 'https://ror.org/02ee2t316 University of Wasit جامعة واسط'),
(28186, 'https://ror.org/020z55s31', 'en', 1, 'https://ror.org/020z55s31 Hogeschool Wittenborg Wittenborg University'),
(28187, 'https://ror.org/045zwes19', 'en', 1, 'https://ror.org/045zwes19 University of West Los Angeles'),
(28188, 'https://ror.org/005b14v72', 'es', 1, 'https://ror.org/005b14v72 Universidad Interglobal'),
(28189, 'https://ror.org/01x5kh380', 'en', 1, 'https://ror.org/01x5kh380 University of West Yangon ရန်ကုန် အနောက်ပိုင်း တက္ကသိုလ်'),
(28190, 'https://ror.org/025e3rc84', 'en', 1, 'https://ror.org/025e3rc84 University of Cambodia សាកលវិទ្យាល័យកម្ពុជា'),
(28191, 'https://ror.org/03k1g6m92', 'en', 1, 'https://ror.org/03k1g6m92 University of Kindu Université de kindu'),
(28192, 'https://ror.org/04r5d0y92', 'en', 1, 'https://ror.org/04r5d0y92 University of Kota कोटा विश्वविद्यालय'),
(28193, 'https://ror.org/0457fn135', 'en', 1, 'https://ror.org/0457fn135 University of Community Health Magway ကျန်းမာရေးတက္ကသိုလ်'),
(28194, 'https://ror.org/01aadv713', 'en', 1, 'https://ror.org/01aadv713 Herzegovina University Sveučilište Hercegovina'),
(28195, 'https://ror.org/032se3k78', 'en', 1, 'https://ror.org/032se3k78 Yanbian University of Science and Technology 延边科技大学'),
(28196, 'https://ror.org/05v8v7d33', 'en', 1, 'https://ror.org/05v8v7d33 Yangtze Normal University 长江师范学院'),
(28197, 'https://ror.org/02ykntn67', 'en', 1, 'https://ror.org/02ykntn67 University Press of Mississippi'),
(28198, 'https://ror.org/045svrn73', 'en', 1, 'https://ror.org/045svrn73 Institut de l''Université de Londres à Paris University of London Institute in Paris'),
(28199, 'https://ror.org/03s49rs22', 'en', 1, 'https://ror.org/03s49rs22 University of Public Health Yangon ပြည်သူ့ကျန်းမာရေးတက္ကသိုလ်(ရန်ကုန်)'),
(28200, 'https://ror.org/0561zqn56', 'en', 1, 'https://ror.org/0561zqn56 University System of Ohio'),
(28201, 'https://ror.org/04z33a802', 'en', 1, 'https://ror.org/04z33a802 Istanbul Yeni Yüzyıl University Yeni Yüzyıl Üniversitesi'),
(28202, 'https://ror.org/00ztyd753', 'en', 1, 'https://ror.org/00ztyd753 University of Puthisastra សាកលវិទ្យាល័យ ពុទ្ធិសាស្ត្រ'),
(28203, 'https://ror.org/00sxtta05', 'en', 1, 'https://ror.org/00sxtta05 University of Ragusa Università di Ragusa'),
(28204, 'https://ror.org/03mc8zn46', 'en', 1, 'https://ror.org/03mc8zn46 Yeonsung University 연성대학교'),
(28205, 'https://ror.org/042acmv76', 'en', 1, 'https://ror.org/042acmv76 Centre Hospitalier et Universitaire de Yaoundé University Teaching Hospital of Yaounde'),
(28206, 'https://ror.org/008836v19', 'pt', 1, 'https://ror.org/008836v19 Universidade Sénior Contemporânea'),
(28207, 'https://ror.org/05h4th693', 'en', 1, 'https://ror.org/05h4th693 Yichun University 宜春学院'),
(28208, 'https://ror.org/017fqwn34', 'en', 1, 'https://ror.org/017fqwn34 Upper Nile University'),
(28209, 'https://ror.org/00fs9wb06', 'en', 1, 'https://ror.org/00fs9wb06 University of Raparin جامعة رابرين'),
(28210, 'https://ror.org/051sa4h84', 'en', 1, 'https://ror.org/051sa4h84 University of Maroua Université de Maroua'),
(28211, 'https://ror.org/014jqnm52', 'en', 1, 'https://ror.org/014jqnm52 J.C. Bose University of Science & Technology, YMCA'),
(28212, 'https://ror.org/00jyqx898', 'en', 1, 'https://ror.org/00jyqx898 University of Maryland Baltimore Washington Medical Center'),
(28213, 'https://ror.org/05p2q6194', 'en', 1, 'https://ror.org/05p2q6194 University of Sadat City جامعة مدينة السادات'),
(28214, 'https://ror.org/02exegz49', 'en', 1, 'https://ror.org/02exegz49 Yokkaichi Nursing and Medical Care University 四日市看護医療大学'),
(28215, 'https://ror.org/03626nk78', 'en', 1, 'https://ror.org/03626nk78 Pamantasang Lungsod ng Urdaneta Urdaneta City University'),
(28216, 'https://ror.org/03k0fhh26', 'en', 1, 'https://ror.org/03k0fhh26 University of Maryland Medical Center Midtown Campus'),
(28217, 'https://ror.org/004qjck53', 'en', 1, 'https://ror.org/004qjck53 University of Science and Technology Omdurman جامعة العلوم والتقانة السودانية'),
(28218, 'https://ror.org/0593kfr97', 'en', 1, 'https://ror.org/0593kfr97 Urganch davlat universiteti Urgench State University'),
(28219, 'https://ror.org/02gm2ae61', 'en', 1, 'https://ror.org/02gm2ae61 University of Science and Technology of Ivory Coast Université des Sciences et Technologies de Côte d''Ivoire'),
(28220, 'https://ror.org/03bej0y93', 'en', 1, 'https://ror.org/03bej0y93 Yu Da University 育達科技大學'),
(28221, 'https://ror.org/01041e172', 'en', 1, 'https://ror.org/01041e172 University of Maryland Rehabilitation & Orthopaedic Institute'),
(28222, 'https://ror.org/020jv3j52', 'en', 1, 'https://ror.org/020jv3j52 Zaoksky Adventist University Заокский адвентистский университет'),
(28223, 'https://ror.org/0454rb348', 'en', 1, 'https://ror.org/0454rb348 University of Science and Technology of Togo Université des Sciences et Technologies du Togo'),
(28224, 'https://ror.org/058v42s42', 'en', 1, 'https://ror.org/058v42s42 Utah State University Eastern'),
(28225, 'https://ror.org/0461r7q95', 'en', 1, 'https://ror.org/0461r7q95 University of Seychelles'),
(28226, 'https://ror.org/04t7gxr16', 'en', 1, 'https://ror.org/04t7gxr16 Communication University of Zhejiang 浙江传媒学院'),
(28227, 'https://ror.org/05qgc6h44', 'en', 1, 'https://ror.org/05qgc6h44 Utkal University of Culture'),
(28228, 'https://ror.org/01rec3330', 'no_lang_code', 1, 'https://ror.org/01rec3330 University of Mbandaka Université de mbandaka'),
(28229, 'https://ror.org/04wvk1327', 'en', 1, 'https://ror.org/04wvk1327 Uttarakhand Open University उत्तराखण्ड मुक्त विश्वविद्यालय'),
(28230, 'https://ror.org/000b7ms85', 'en', 1, 'https://ror.org/000b7ms85 Zhongkai University of Agriculture and Engineering 仲恺农业工程学院'),
(28231, 'https://ror.org/02m2dej40', 'en', 1, 'https://ror.org/02m2dej40 University of South Asia ইউনিভার্সিটি অফ সাউথ এশিয়া'),
(28232, 'https://ror.org/03ms8m606', 'en', 1, 'https://ror.org/03ms8m606 Uttarakhand Technical University उत्तराखंड तकनीकी विश्वविद्यालय'),
(28233, 'https://ror.org/0289me815', 'en', 1, 'https://ror.org/0289me815 University of South Carolina Lancaster'),
(28234, 'https://ror.org/03nx1r778', 'en', 1, 'https://ror.org/03nx1r778 Zirve University Zirve Üniversitesi'),
(28235, 'https://ror.org/03bha2k34', 'en', 1, 'https://ror.org/03bha2k34 University of Medical Technology Mandalay'),
(28236, 'https://ror.org/03qd80k21', 'en', 1, 'https://ror.org/03qd80k21 Jaamacadda Koonfurta Soomaaliya University of Southern Somalia'),
(28237, 'https://ror.org/013dqcj88', 'en', 1, 'https://ror.org/013dqcj88 University of Medical Technology Yangon'),
(28238, 'https://ror.org/01gz5zx42', 'it', 1, 'https://ror.org/01gz5zx42 Università per Stranieri Dante Alighieri Université pour Étrangers de Reggio de Calabre'),
(28239, 'https://ror.org/04daenq52', 'en', 1, 'https://ror.org/04daenq52 Valley View University'),
(28240, 'https://ror.org/040knvs26', 'en', 1, 'https://ror.org/040knvs26 Akdeniz Karpaz Üniversitesi University of Mediterranean Karpasia'),
(28241, 'https://ror.org/04w6xt508', 'en', 1, 'https://ror.org/04w6xt508 University of Minnesota Crookston'),
(28242, 'https://ror.org/05b5sds65', 'en', 1, 'https://ror.org/05b5sds65 University of Misan جامعة ميسان'),
(28243, 'https://ror.org/02jwe8b72', 'fr', 1, 'https://ror.org/02jwe8b72 Université Alassane Ouattara'),
(28244, 'https://ror.org/026rmnx29', 'en', 1, 'https://ror.org/026rmnx29 Via Vinci Academy'),
(28245, 'https://ror.org/03yvdgx21', 'en', 1, 'https://ror.org/03yvdgx21 Victoria School of Management'),
(28246, 'https://ror.org/01jxtqc31', 'en', 1, 'https://ror.org/01jxtqc31 Trường Đại học Việt - Đức Vietnamese-German University'),
(28247, 'https://ror.org/03phees55', 'en', 1, 'https://ror.org/03phees55 Vikrama Simhapuri University విక్రమ సింహపురి విశ్వవిద్యాలయం'),
(28248, 'https://ror.org/05bd7aq21', 'en', 1, 'https://ror.org/05bd7aq21 Trường Đại học Y khoa Vinh Vinh Medical University'),
(28249, 'https://ror.org/05pgz6x52', 'en', 1, 'https://ror.org/05pgz6x52 Virginia International University'),
(28250, 'https://ror.org/03x2r5572', 'en', 1, 'https://ror.org/03x2r5572 Virginia University of Lynchburg'),
(28251, 'https://ror.org/058p2fn24', 'no_lang_code', 1, 'https://ror.org/058p2fn24 Vitrina University'),
(28252, 'https://ror.org/00edm2h72', 'en', 1, 'https://ror.org/00edm2h72 Wadi International University جامعة الوادي الدولية الخاصة'),
(28253, 'https://ror.org/025acyt23', 'en', 1, 'https://ror.org/025acyt23 Warner University'),
(28254, 'https://ror.org/02weg9v26', 'en', 1, 'https://ror.org/02weg9v26 Universiti Terbuka Wawasan Wawasan Open University 宏愿开放大学'),
(28255, 'https://ror.org/0533m8c72', 'en', 1, 'https://ror.org/0533m8c72 Webster University Geneva'),
(28256, 'https://ror.org/05jtyp735', 'en', 1, 'https://ror.org/05jtyp735 Webster University Ghana'),
(28257, 'https://ror.org/014k07p29', 'en', 1, 'https://ror.org/014k07p29 Wenzao Ursuline University of Languages 文藻外語大學'),
(28258, 'https://ror.org/014ngq634', 'en', 1, 'https://ror.org/014ngq634 Australian Federation of Graduate Women New South Wales'),
(28259, 'https://ror.org/01bfcjz55', 'en', 1, 'https://ror.org/01bfcjz55 West Yangon Technological University ရန်ကုန်အနောက်ပိုင်းနည်းပညာတက္ကသိုလ်'),
(28260, 'https://ror.org/02vfebb84', 'en', 1, 'https://ror.org/02vfebb84 Westbrook University'),
(28261, 'https://ror.org/01rcvq140', 'en', 1, 'https://ror.org/01rcvq140 Chongqing University of Arts and Sciences 重庆文理学院'),
(28262, 'https://ror.org/00cafxy65', 'en', 1, 'https://ror.org/00cafxy65 University of Missouri Women''s and Children''s Hospital'),
(28263, 'https://ror.org/00c1q0x03', 'en', 1, 'https://ror.org/00c1q0x03 Teikyo University of Japan in Durham'),
(28264, 'https://ror.org/05x0qkj16', 'en', 1, 'https://ror.org/05x0qkj16 Technological University Hpa-An'),
(28265, 'https://ror.org/04mr67481', 'en', 1, 'https://ror.org/04mr67481 Technological University Kyaukse ကျောက်ဆည် နည်းပညာတက္ကသိုလ်'),
(28266, 'https://ror.org/04e5g4k17', 'en', 1, 'https://ror.org/04e5g4k17 Technological University Myitkyina နည်းပညာတက္ကသိုလ် (မြစ်ကြီးနား)'),
(28267, 'https://ror.org/010h1b677', 'en', 1, 'https://ror.org/010h1b677 Technological University Pakokku'),
(28268, 'https://ror.org/0569jas47', 'en', 1, 'https://ror.org/0569jas47 Laguna Department of Education'),
(28269, 'https://ror.org/004tze884', 'en', 1, 'https://ror.org/004tze884 Institute of Natural Science 리과대학'),
(28270, 'https://ror.org/01syrqz32', 'en', 1, 'https://ror.org/01syrqz32 University of North Korean Studies 북한대학원대학교'),
(28271, 'https://ror.org/05gdz9864', 'en', 1, 'https://ror.org/05gdz9864 University of Nursing Mandalay သူနာပြုတက္ကသိုလ်(မန္တလေး)'),
(28272, 'https://ror.org/02hdk9s78', 'en', 1, 'https://ror.org/02hdk9s78 University of Nursing Yangon သူနာပြုတက္ကသိုလ်(ရန်ကုန်)'),
(28273, 'https://ror.org/04yhapk09', 'en', 1, 'https://ror.org/04yhapk09 University of Palestine جامعة فلسطين'),
(28274, 'https://ror.org/00ndnda10', 'en', 1, 'https://ror.org/00ndnda10 University of Pharmacy Mandalay ဆေးဝါးတက္ကသိုလ်(မန္တလေး)'),
(28275, 'https://ror.org/02f36qr48', 'en', 1, 'https://ror.org/02f36qr48 University of Pharmacy Yangon ဆေးဝါး တက္ကသိုလ် ရန်ကုန်'),
(28276, 'https://ror.org/0242vta36', 'en', 1, 'https://ror.org/0242vta36 University of Pittsburgh at Titusville'),
(28277, 'https://ror.org/03xbccz06', 'en', 1, 'https://ror.org/03xbccz06 Wellcome Centre for Cell Biology'),
(28278, 'https://ror.org/0094tm228', 'en', 1, 'https://ror.org/0094tm228 Wellcome Centre for Cell-Matrix Research'),
(28279, 'https://ror.org/00m7w8s72', 'en', 1, 'https://ror.org/00m7w8s72 Wellcome Centre for Molecular Parasitology'),
(28280, 'https://ror.org/02704qw51', 'en', 1, 'https://ror.org/02704qw51 Wellcome Centre for Human Neuroimaging'),
(28281, 'https://ror.org/01jgp6d54', 'it', 1, 'https://ror.org/01jgp6d54 Istituto di Astrofisica Spaziale e Fisica Cosmica di Milano'),
(28282, 'https://ror.org/03qafph14', 'it', 1, 'https://ror.org/03qafph14 Istituto di Astrofisica Spaziale e Fisica cosmica di Palermo'),
(28283, 'https://ror.org/054y9c036', 'it', 1, 'https://ror.org/054y9c036 Telescopio Nazionale Galileo'),
(28284, 'https://ror.org/02my7ff12', 'it', 1, 'https://ror.org/02my7ff12 Catania Astrophysical Observatory Osservatorio Astrofisico di Catania'),
(28285, 'https://ror.org/00e5h6e42', 'no_lang_code', 1, 'https://ror.org/00e5h6e42 1366 Technologies (United States)'),
(28286, 'https://ror.org/01m0js248', 'no_lang_code', 1, 'https://ror.org/01m0js248 24M (United States)'),
(28287, 'https://ror.org/01p369f26', 'nl', 1, 'https://ror.org/01p369f26 AA Brediusstichting'),
(28288, 'https://ror.org/03ef4eh86', 'no_lang_code', 1, 'https://ror.org/03ef4eh86 KPC Group (Netherlands)'),
(28289, 'https://ror.org/0287gd772', 'no_lang_code', 1, 'https://ror.org/0287gd772 New Potato Technologies (United States)'),
(28290, 'https://ror.org/00efjh764', 'no_lang_code', 1, 'https://ror.org/00efjh764 Kyma Technologies (United States)'),
(28291, 'https://ror.org/01p232496', 'la', 1, 'https://ror.org/01p232496 Fons Vitae Lyceum'),
(28292, 'https://ror.org/03ftv5p16', 'no_lang_code', 1, 'https://ror.org/03ftv5p16 Newton Energy Group (United States)'),
(28293, 'https://ror.org/02j7y6936', 'en', 1, 'https://ror.org/02j7y6936 Centre for BioSystems Genomics'),
(28294, 'https://ror.org/04pk3vt21', 'no_lang_code', 1, 'https://ror.org/04pk3vt21 Nexant (United States)'),
(28295, 'https://ror.org/00c19d043', 'no_lang_code', 1, 'https://ror.org/00c19d043 Foro Energy (United States)'),
(28296, 'https://ror.org/05he87q93', 'en', 1, 'https://ror.org/05he87q93 NIOD Institute for War, Holocaust and Genocide Studies NIOD Instituut voor Oorlogs-, Holocaust- en Genocidestudies'),
(28297, 'https://ror.org/05p8yat86', 'en', 1, 'https://ror.org/05p8yat86 Acent Laboratories'),
(28298, 'https://ror.org/05dbptw67', 'en', 1, 'https://ror.org/05dbptw67 Landelijke Onderzoekschool Taalwetenschap Netherlands Graduate School of Linguistics'),
(28299, 'https://ror.org/00pavee11', 'en', 1, 'https://ror.org/00pavee11 CSG Centre for Society and the Life Sciences'),
(28300, 'https://ror.org/0027t6e72', 'no_lang_code', 1, 'https://ror.org/0027t6e72 G&S Titanium (United States)'),
(28301, 'https://ror.org/020b8ew17', 'no_lang_code', 1, 'https://ror.org/020b8ew17 Gannon Motor and Controls (United States)'),
(28302, 'https://ror.org/00t46nv75', 'fr', 1, 'https://ror.org/00t46nv75 Actions pour l’Environnement et le Développement Durable'),
(28303, 'https://ror.org/03ekv5207', 'no_lang_code', 1, 'https://ror.org/03ekv5207 Acumentrics (United States)'),
(28304, 'https://ror.org/016ykaq31', 'no_lang_code', 1, 'https://ror.org/016ykaq31 Nissan (United States)'),
(28305, 'https://ror.org/007s7bj48', 'no_lang_code', 1, 'https://ror.org/007s7bj48 ADA-ES (United States)'),
(28306, 'https://ror.org/02yk12g97', 'no_lang_code', 1, 'https://ror.org/02yk12g97 Hexagon Lincoln (United States)'),
(28307, 'https://ror.org/00g5z0e60', 'en', 1, 'https://ror.org/00g5z0e60 Center for Research on Inter-group Relations and Conflict Resolution'),
(28308, 'https://ror.org/020z47w89', 'no_lang_code', 1, 'https://ror.org/020z47w89 Novici Biotech (United States)'),
(28309, 'https://ror.org/009va1d27', 'no_lang_code', 1, 'https://ror.org/009va1d27 ADMA Products (United States)'),
(28310, 'https://ror.org/04y9pdp40', 'no_lang_code', 1, 'https://ror.org/04y9pdp40 General Compression (United States)'),
(28311, 'https://ror.org/02gd5t807', 'nl', 1, 'https://ror.org/02gd5t807 Christelijk Gymnasium Utrecht'),
(28312, 'https://ror.org/037t16559', 'no_lang_code', 1, 'https://ror.org/037t16559 Nuvotronics (United States)'),
(28313, 'https://ror.org/024w82g14', 'no_lang_code', 1, 'https://ror.org/024w82g14 GeneSiC Semiconductor (United States)'),
(28314, 'https://ror.org/028vf7c32', 'en', 1, 'https://ror.org/028vf7c32 Africa Innovations Institute'),
(28315, 'https://ror.org/03snnmr62', 'no_lang_code', 1, 'https://ror.org/03snnmr62 Glint Photonics (United States)'),
(28316, 'https://ror.org/02rdwwh89', 'nl', 1, 'https://ror.org/02rdwwh89 Christelijke Scholengemeenschap Walcheren'),
(28317, 'https://ror.org/00ma2r948', 'en', 1, 'https://ror.org/00ma2r948 African Studies Centre Afrika Studiecentrum'),
(28318, 'https://ror.org/03nz4ge59', 'no_lang_code', 1, 'https://ror.org/03nz4ge59 Global Seawater Extraction Technologies (United States)'),
(28319, 'https://ror.org/042kkhb55', 'no_lang_code', 1, 'https://ror.org/042kkhb55 Malibu IQ (United States)'),
(28320, 'https://ror.org/0549cht89', 'en', 1, 'https://ror.org/0549cht89 Algaeventure Systems'),
(28321, 'https://ror.org/041mwxn09', 'no_lang_code', 1, 'https://ror.org/041mwxn09 Onboard Dynamics (United States)'),
(28322, 'https://ror.org/00dztkz65', 'en', 1, 'https://ror.org/00dztkz65 Graduate School Experimental Plant Sciences'),
(28323, 'https://ror.org/035jt5x02', 'nl', 1, 'https://ror.org/035jt5x02 CINOP'),
(28324, 'https://ror.org/004wfw106', 'no_lang_code', 1, 'https://ror.org/004wfw106 AllCell (United States)'),
(28325, 'https://ror.org/05wx5rz20', 'nl', 1, 'https://ror.org/05wx5rz20 Onderzoekschool Ethiek'),
(28326, 'https://ror.org/04bdm2a74', 'en', 1, 'https://ror.org/04bdm2a74 CUNY Energy Institute'),
(28327, 'https://ror.org/03pdfag88', 'nl', 1, 'https://ror.org/03pdfag88 Marecollege'),
(28328, 'https://ror.org/03czazr10', 'en', 1, 'https://ror.org/03czazr10 Grid Protection Alliance'),
(28329, 'https://ror.org/04rjn7856', 'no_lang_code', 1, 'https://ror.org/04rjn7856 Clipper Windpower (United States)'),
(28330, 'https://ror.org/02jp14137', 'no_lang_code', 1, 'https://ror.org/02jp14137 Halotechnics (United States)'),
(28331, 'https://ror.org/05rd5v488', 'no_lang_code', 1, 'https://ror.org/05rd5v488 CMTech (Australia)'),
(28332, 'https://ror.org/01h1amn32', 'no_lang_code', 1, 'https://ror.org/01h1amn32 Hazenberg Archeologie (Netherlands)'),
(28333, 'https://ror.org/0288xhz86', 'no_lang_code', 1, 'https://ror.org/0288xhz86 Evolva Holding (United States)'),
(28334, 'https://ror.org/00sfcfc45', 'no_lang_code', 1, 'https://ror.org/00sfcfc45 Heliotrope Technologies (United States)'),
(28335, 'https://ror.org/00my5vx03', 'id', 1, 'https://ror.org/00my5vx03 Yayasan Masyarakat Dan Perikanan Indonesia'),
(28336, 'https://ror.org/01w0rme55', 'no_lang_code', 1, 'https://ror.org/01w0rme55 AmberWave (United States)'),
(28337, 'https://ror.org/02zg7gg26', 'no_lang_code', 1, 'https://ror.org/02zg7gg26 MC10 (United States)'),
(28338, 'https://ror.org/02ptcjs87', 'no_lang_code', 1, 'https://ror.org/02ptcjs87 Air Liquide (United States)'),
(28339, 'https://ror.org/03e5r3h78', 'no_lang_code', 1, 'https://ror.org/03e5r3h78 Cogenra Solar (United States)'),
(28340, 'https://ror.org/01f00bj82', 'no_lang_code', 1, 'https://ror.org/01f00bj82 American Lithium Energy (United States)'),
(28341, 'https://ror.org/05kaxyq51', 'en', 1, 'https://ror.org/05kaxyq51 Meertens Institute Meertens Instituut'),
(28342, 'https://ror.org/03zf72497', 'no_lang_code', 1, 'https://ror.org/03zf72497 Consol Energy (United States)'),
(28343, 'https://ror.org/03bkq6a07', 'en', 1, 'https://ror.org/03bkq6a07 Research School for Medieval Studies'),
(28344, 'https://ror.org/03ftf4376', 'no_lang_code', 1, 'https://ror.org/03ftf4376 Ammono (Poland)'),
(28345, 'https://ror.org/03qekm213', 'no_lang_code', 1, 'https://ror.org/03qekm213 Cosine (Netherlands)'),
(28346, 'https://ror.org/034wc9785', 'no_lang_code', 1, 'https://ror.org/034wc9785 Coskata (United States)'),
(28347, 'https://ror.org/053gdty29', 'en', 1, 'https://ror.org/053gdty29 Creative Thermal Solutions'),
(28348, 'https://ror.org/00gnbgz55', 'no_lang_code', 1, 'https://ror.org/00gnbgz55 AMN (Netherlands)'),
(28349, 'https://ror.org/03wyamy27', 'nl', 1, 'https://ror.org/03wyamy27 Huizinga Instituut'),
(28350, 'https://ror.org/05mfxbk05', 'no_lang_code', 1, 'https://ror.org/05mfxbk05 MIB Engineers (United States)'),
(28351, 'https://ror.org/0276qgf45', 'no_lang_code', 1, 'https://ror.org/0276qgf45 iBeam Materials (United States)'),
(28352, 'https://ror.org/01c2zcv46', 'no_lang_code', 1, 'https://ror.org/01c2zcv46 OPX Biotechnologies (United States)'),
(28353, 'https://ror.org/039ryse59', 'en', 1, 'https://ror.org/039ryse59 Ichthus College'),
(28354, 'https://ror.org/03xw8f892', 'no_lang_code', 1, 'https://ror.org/03xw8f892 Q Free (Netherlands)'),
(28355, 'https://ror.org/041n69t03', 'no_lang_code', 1, 'https://ror.org/041n69t03 Dacom (Netherlands)'),
(28356, 'https://ror.org/05re5hn81', 'no_lang_code', 1, 'https://ror.org/05re5hn81 Ideal Power (United States)'),
(28357, 'https://ror.org/05cj5gd51', 'nl', 1, 'https://ror.org/05cj5gd51 Amsterdam Museum'),
(28358, 'https://ror.org/03pv43p79', 'en', 1, 'https://ror.org/03pv43p79 Ministry of Forests and Soil Conservation'),
(28359, 'https://ror.org/01t931b89', 'no_lang_code', 1, 'https://ror.org/01t931b89 Dais Analytic Corporation (United States)'),
(28360, 'https://ror.org/05ppvf150', 'no_lang_code', 1, 'https://ror.org/05ppvf150 Impact Technology Development (United States)'),
(28361, 'https://ror.org/008za0b72', 'nl', 1, 'https://ror.org/008za0b72 Openbare Scholengemeenschap De Hogeberg'),
(28362, 'https://ror.org/05ekh0s13', 'no_lang_code', 1, 'https://ror.org/05ekh0s13 MOgene (United States)'),
(28363, 'https://ror.org/01nv5t982', 'no_lang_code', 1, 'https://ror.org/01nv5t982 IncSys (United States)'),
(28364, 'https://ror.org/00sjx7d61', 'no_lang_code', 1, 'https://ror.org/00sjx7d61 Vencore (United States)'),
(28365, 'https://ror.org/05awrjz19', 'no_lang_code', 1, 'https://ror.org/05awrjz19 Monolith Semiconductor (United States)'),
(28366, 'https://ror.org/011qdcn44', 'no_lang_code', 1, 'https://ror.org/011qdcn44 Infinia Technology Corporation (United States)'),
(28367, 'https://ror.org/0538jkx44', 'no_lang_code', 1, 'https://ror.org/0538jkx44 Diversified Energy (United States)'),
(28368, 'https://ror.org/02esv1036', 'no_lang_code', 1, 'https://ror.org/02esv1036 Ingenieursburo Balvers (Netherlands)'),
(28369, 'https://ror.org/00rxhq344', 'de', 1, 'https://ror.org/00rxhq344 Innoventor'),
(28370, 'https://ror.org/058nd7377', 'nl', 1, 'https://ror.org/058nd7377 Museum Boerhaave'),
(28371, 'https://ror.org/01xjjmp17', 'nl', 1, 'https://ror.org/01xjjmp17 Museum Catharijneconvent'),
(28372, 'https://ror.org/018tnrf75', 'no_lang_code', 1, 'https://ror.org/018tnrf75 Inorganic Specialists (United States)'),
(28373, 'https://ror.org/01sr6x298', 'en', 1, 'https://ror.org/01sr6x298 Pastoral and Environmental Network in the Horn of Africa'),
(28374, 'https://ror.org/00ts92g58', 'nl', 1, 'https://ror.org/00ts92g58 Dunea'),
(28375, 'https://ror.org/030ms0k96', 'en', 1, 'https://ror.org/030ms0k96 Alfa College'),
(28376, 'https://ror.org/04jrdcy74', 'en', 1, 'https://ror.org/04jrdcy74 Dutch Network of Systems and Control'),
(28377, 'https://ror.org/05x74wc07', 'en', 1, 'https://ror.org/05x74wc07 Dutch Inspectorate of Education Inspectie van het Onderwijs'),
(28378, 'https://ror.org/01kqc7c98', 'no_lang_code', 1, 'https://ror.org/01kqc7c98 Pellion Technologies (United States)'),
(28379, 'https://ror.org/01a961x31', 'no_lang_code', 1, 'https://ror.org/01a961x31 Nano Terra (United States)'),
(28380, 'https://ror.org/055d8gs64', 'en', 1, 'https://ror.org/055d8gs64 Dutch Techcentre for Life Sciences'),
(28381, 'https://ror.org/045x7cm28', 'nl', 1, 'https://ror.org/045x7cm28 Archeologisch Diensten Centrum (Netherlands)'),
(28382, 'https://ror.org/00ryd3444', 'no_lang_code', 1, 'https://ror.org/00ryd3444 Dynalloy (United States)'),
(28383, 'https://ror.org/039je3989', 'no_lang_code', 1, 'https://ror.org/039je3989 Dynapower (United States)'),
(28384, 'https://ror.org/02qn7c872', 'no_lang_code', 1, 'https://ror.org/02qn7c872 Phononic Devices (United States)'),
(28385, 'https://ror.org/03hxrmn64', 'en', 1, 'https://ror.org/03hxrmn64 Institute for the Study of Education and Human Development'),
(28386, 'https://ror.org/04hqrkw15', 'no_lang_code', 1, 'https://ror.org/04hqrkw15 Architectural Applications (United States)'),
(28387, 'https://ror.org/015xhag49', 'no_lang_code', 1, 'https://ror.org/015xhag49 Archol (Netherlands)'),
(28388, 'https://ror.org/01261x550', 'no_lang_code', 1, 'https://ror.org/01261x550 Planar Energy (United States)'),
(28389, 'https://ror.org/02c53vf48', 'no_lang_code', 1, 'https://ror.org/02c53vf48 Plant Sensory Systems (United States)'),
(28390, 'https://ror.org/0223gf763', 'no_lang_code', 1, 'https://ror.org/0223gf763 Easel Biotechnologies (United States)'),
(28391, 'https://ror.org/01jp7k726', 'en', 1, 'https://ror.org/01jp7k726 Asian Development Research Institute'),
(28392, 'https://ror.org/01vb92e72', 'no_lang_code', 1, 'https://ror.org/01vb92e72 Polaris Systems Optimization (United States)'),
(28393, 'https://ror.org/03ve2m955', 'en', 1, 'https://ror.org/03ve2m955 Association for the Integrated Development-Comilla'),
(28394, 'https://ror.org/04md3b668', 'no_lang_code', 1, 'https://ror.org/04md3b668 Astronautics Corporation of America'),
(28395, 'https://ror.org/00kw7bx58', 'no_lang_code', 1, 'https://ror.org/00kw7bx58 ATC New Technologies (United States)'),
(28396, 'https://ror.org/03jgkwp62', 'no_lang_code', 1, 'https://ror.org/03jgkwp62 Electrical Distribution Design (United States)'),
(28397, 'https://ror.org/000z6n336', 'no_lang_code', 1, 'https://ror.org/000z6n336 Polartec (United States)'),
(28398, 'https://ror.org/02y114t67', 'no_lang_code', 1, 'https://ror.org/02y114t67 Autogrid Systems (United States)'),
(28399, 'https://ror.org/014xar778', 'no_lang_code', 1, 'https://ror.org/014xar778 PolyPlus Battery Company (United States)'),
(28400, 'https://ror.org/02gtdm304', 'no_lang_code', 1, 'https://ror.org/02gtdm304 Avogy (United States)'),
(28401, 'https://ror.org/04tz9fd40', 'en', 1, 'https://ror.org/04tz9fd40 International Institute for Asian Studies'),
(28402, 'https://ror.org/001mpn042', 'no_lang_code', 1, 'https://ror.org/001mpn042 Baldor Electric (United States)'),
(28403, 'https://ror.org/0206mzz42', 'en', 1, 'https://ror.org/0206mzz42 International Center for Human Sciences'),
(28404, 'https://ror.org/04q61p086', 'no_lang_code', 1, 'https://ror.org/04q61p086 Emcore (United States)');
INSERT INTO `rors` VALUES
(28405, 'https://ror.org/05p5fe205', 'nl', 1, 'https://ror.org/05p5fe205 Internationale Vereniging voor Neerlandistiek'),
(28406, 'https://ror.org/05c6fpb26', 'no_lang_code', 1, 'https://ror.org/05c6fpb26 EnerDel (United States)'),
(28407, 'https://ror.org/0567f1w19', 'en', 1, 'https://ror.org/0567f1w19 Nederlands Instituut voor Onderzoek in de Katalyse Netherlands Institute for Catalysis Research'),
(28408, 'https://ror.org/02v63pq94', 'no_lang_code', 1, 'https://ror.org/02v63pq94 Power Standards Lab (United States)'),
(28409, 'https://ror.org/04hcen254', 'no_lang_code', 1, 'https://ror.org/04hcen254 Energy Research Company (United States)'),
(28410, 'https://ror.org/00k54xy93', 'no_lang_code', 1, 'https://ror.org/00k54xy93 PowerData (United States)'),
(28411, 'https://ror.org/01rq0mb28', 'no_lang_code', 1, 'https://ror.org/01rq0mb28 Energy Storage Systems (United States)'),
(28412, 'https://ror.org/00c0exh17', 'no_lang_code', 1, 'https://ror.org/00c0exh17 Enova (United States)'),
(28413, 'https://ror.org/05rxmpb48', 'nl', 1, 'https://ror.org/05rxmpb48 BC Broekhin Roermond'),
(28414, 'https://ror.org/020yran20', 'no_lang_code', 1, 'https://ror.org/020yran20 Primus Power (United States)'),
(28415, 'https://ror.org/020hsr785', 'nl', 1, 'https://ror.org/020hsr785 Nederlands Instituut voor Wetenschappelijke Informatiediensten'),
(28416, 'https://ror.org/05nb4dd58', 'no_lang_code', 1, 'https://ror.org/05nb4dd58 Envia Systems (United States)'),
(28417, 'https://ror.org/02chwny87', 'no_lang_code', 1, 'https://ror.org/02chwny87 Rockland Capital (United States)'),
(28418, 'https://ror.org/05t0mvy43', 'no_lang_code', 1, 'https://ror.org/05t0mvy43 Princeton Optronics (United States)'),
(28419, 'https://ror.org/05przbs16', 'no_lang_code', 1, 'https://ror.org/05przbs16 Beckett Energy Systems'),
(28420, 'https://ror.org/051affp12', 'no_lang_code', 1, 'https://ror.org/051affp12 K2 Energy Solutions (United States)'),
(28421, 'https://ror.org/030p6wg21', 'no_lang_code', 1, 'https://ror.org/030p6wg21 EnZinc (United States)'),
(28422, 'https://ror.org/002g6sj22', 'en', 1, 'https://ror.org/002g6sj22 Bertrand Russell College'),
(28423, 'https://ror.org/055pf8065', 'en', 1, 'https://ror.org/055pf8065 ERA-NET Plant Genomics'),
(28424, 'https://ror.org/03829z108', 'no', 1, 'https://ror.org/03829z108 Norlandia'),
(28425, 'https://ror.org/048z8ts16', 'no_lang_code', 1, 'https://ror.org/048z8ts16 Kiverdi (United States)'),
(28426, 'https://ror.org/03symbb61', 'no_lang_code', 1, 'https://ror.org/03symbb61 Quanta Technology (United States)'),
(28427, 'https://ror.org/05m93m079', 'en', 1, 'https://ror.org/05m93m079 Oakwood Academy'),
(28428, 'https://ror.org/013456141', 'no_lang_code', 1, 'https://ror.org/013456141 Spang (United States)'),
(28429, 'https://ror.org/01bdv4312', 'en', 1, 'https://ror.org/01bdv4312 Koninklijk Instituut voor Taal-, Land- en Volkenkunde Royal Netherlands Institute of Southeast Asian and Caribbean Studies'),
(28430, 'https://ror.org/00f1hrs84', 'no_lang_code', 1, 'https://ror.org/00f1hrs84 Ergenics (United States)'),
(28431, 'https://ror.org/02h83nc26', 'nl', 1, 'https://ror.org/02h83nc26 Koninklijke Landmacht'),
(28432, 'https://ror.org/027hreq63', 'nl', 1, 'https://ror.org/027hreq63 Koninklijke Scholengemeenschap'),
(28433, 'https://ror.org/01pp7nc38', 'no_lang_code', 1, 'https://ror.org/01pp7nc38 Redox Power Systems (United States)'),
(28434, 'https://ror.org/03gx28593', 'en', 1, 'https://ror.org/03gx28593 Dutch Language Union Nederlandse Taalunie'),
(28435, 'https://ror.org/045wyyr37', 'no_lang_code', 1, 'https://ror.org/045wyyr37 Evans Capacitor (United States)'),
(28436, 'https://ror.org/01r0k6965', 'en', 1, 'https://ror.org/01r0k6965 Netherlands Bioinformatics Centre'),
(28437, 'https://ror.org/04p1set31', 'no_lang_code', 1, 'https://ror.org/04p1set31 Platinum Equity (United States)'),
(28438, 'https://ror.org/051wxy155', 'no_lang_code', 1, 'https://ror.org/051wxy155 SAFCell (United States)'),
(28439, 'https://ror.org/04z3wz653', 'en', 1, 'https://ror.org/04z3wz653 Netherlands Institute for Advanced Study in the Humanities and Social Sciences'),
(28440, 'https://ror.org/020dsfj21', 'no_lang_code', 1, 'https://ror.org/020dsfj21 FastCAP Systems (United States)'),
(28441, 'https://ror.org/00kj8tn74', 'no_lang_code', 1, 'https://ror.org/00kj8tn74 EcoCatalytic Technologies (United States)'),
(28442, 'https://ror.org/05f5h9j45', 'no_lang_code', 1, 'https://ror.org/05f5h9j45 Sentech Corporation (United States)'),
(28443, 'https://ror.org/02z0ywx65', 'nl', 1, 'https://ror.org/02z0ywx65 Regionale scholengemeenschap Goeree-Overflakkee'),
(28444, 'https://ror.org/00q8efx07', 'no_lang_code', 1, 'https://ror.org/00q8efx07 FloDesign (United States)'),
(28445, 'https://ror.org/02h8kp866', 'no_lang_code', 1, 'https://ror.org/02h8kp866 Polpharma Biologics (Netherlands)'),
(28446, 'https://ror.org/0241w9k67', 'ro', 1, 'https://ror.org/0241w9k67 Institutul de Cercetare-Dezvoltare pentru Protecţia Plantelor'),
(28447, 'https://ror.org/00dyskt91', 'no_lang_code', 1, 'https://ror.org/00dyskt91 Sheetak (United States)'),
(28448, 'https://ror.org/03cyq8t52', 'no_lang_code', 1, 'https://ror.org/03cyq8t52 Fluidic Energy (United States)'),
(28449, 'https://ror.org/029jacn25', 'no_lang_code', 1, 'https://ror.org/029jacn25 SiEnergy Systems (United States)'),
(28450, 'https://ror.org/00w77y420', 'no_lang_code', 1, 'https://ror.org/00w77y420 BlackPak (United States)'),
(28451, 'https://ror.org/03nk3sc73', 'nl', 1, 'https://ror.org/03nk3sc73 Bonaventuracollege'),
(28452, 'https://ror.org/03a4a4y95', 'nl', 1, 'https://ror.org/03a4a4y95 Stichting Cultureel Erfgoed Zeeland'),
(28453, 'https://ror.org/01ygzxb58', 'en', 1, 'https://ror.org/01ygzxb58 Rijksakademie van beeldende kunsten Royal Academy of Visual Arts'),
(28454, 'https://ror.org/00r7zrn27', 'nl', 1, 'https://ror.org/00r7zrn27 Museum of the Tropics Tropenmuseum'),
(28455, 'https://ror.org/03mb73f47', 'no_lang_code', 1, 'https://ror.org/03mb73f47 TVN Systems (United States)'),
(28456, 'https://ror.org/005brkn65', 'no_lang_code', 1, 'https://ror.org/005brkn65 Silicon Power Corporation (United States)'),
(28457, 'https://ror.org/049p9kt19', 'en', 1, 'https://ror.org/049p9kt19 Netherlands Institute for Art History'),
(28458, 'https://ror.org/02kx1hs47', 'en', 1, 'https://ror.org/02kx1hs47 Brera Astronomical Observatory Observatoire astronomique de brera osservatorio astronomico di Brera'),
(28459, 'https://ror.org/01079a392', 'en', 1, 'https://ror.org/01079a392 National Museum of Antiquities Rijksmuseum van Oudheden'),
(28460, 'https://ror.org/045h1za13', 'nl', 1, 'https://ror.org/045h1za13 Stichting voor Christelijke Filosofie'),
(28461, 'https://ror.org/01xt0a511', 'en', 1, 'https://ror.org/01xt0a511 National Museum of Ethnology Rijksmuseum Volkenkunde'),
(28462, 'https://ror.org/05skev209', 'no_lang_code', 1, 'https://ror.org/05skev209 SixPoint Materials (United States)'),
(28463, 'https://ror.org/02dv36z82', 'no_lang_code', 1, 'https://ror.org/02dv36z82 NatriSoft (Netherlands)'),
(28464, 'https://ror.org/037wdp291', 'no_lang_code', 1, 'https://ror.org/037wdp291 Stone Mountain Technologies (United States)'),
(28465, 'https://ror.org/04ryr8437', 'en', 1, 'https://ror.org/04ryr8437 Udens College'),
(28466, 'https://ror.org/04tf4mr55', 'nl', 1, 'https://ror.org/04tf4mr55 SNS Reaal'),
(28467, 'https://ror.org/00ypx8t52', 'en', 1, 'https://ror.org/00ypx8t52 Sociaal Historisch Centrum voor Limburg Social Historic Centre for Limburg'),
(28468, 'https://ror.org/002fzqp75', 'en', 1, 'https://ror.org/002fzqp75 University for Peace'),
(28469, 'https://ror.org/027xe4b29', 'no_lang_code', 1, 'https://ror.org/027xe4b29 Renco Group (United States)'),
(28470, 'https://ror.org/00rf4tg97', 'no_lang_code', 1, 'https://ror.org/00rf4tg97 Suniva (United States)'),
(28471, 'https://ror.org/020dp5a36', 'en', 1, 'https://ror.org/020dp5a36 C.T. de Wit Graduate School for Production Ecology and Resource Conservation'),
(28472, 'https://ror.org/05a2v3w63', 'no_lang_code', 1, 'https://ror.org/05a2v3w63 Under Armour (United States)'),
(28473, 'https://ror.org/01v4jww63', 'en', 1, 'https://ror.org/01v4jww63 Value Addition Institute'),
(28474, 'https://ror.org/0178rhq59', 'no_lang_code', 1, 'https://ror.org/0178rhq59 Varentec (United States)'),
(28475, 'https://ror.org/000896j91', 'no_lang_code', 1, 'https://ror.org/000896j91 Tai Yang Research Company (United States)'),
(28476, 'https://ror.org/04jt8tp60', 'no_lang_code', 1, 'https://ror.org/04jt8tp60 Southeast Nonwovens (United States)'),
(28477, 'https://ror.org/033958n71', 'en', 1, 'https://ror.org/033958n71 Nederlandse School voor Openbaar Bestuur Netherlands School of Public Administration'),
(28478, 'https://ror.org/03q0f4n26', 'no_lang_code', 1, 'https://ror.org/03q0f4n26 Edison International (United States)'),
(28479, 'https://ror.org/01pcq0j68', 'no_lang_code', 1, 'https://ror.org/01pcq0j68 Cargill (United States)'),
(28480, 'https://ror.org/016e1rp63', 'no_lang_code', 1, 'https://ror.org/016e1rp63 Tango Systems (United States)'),
(28481, 'https://ror.org/050vtbc65', 'no_lang_code', 1, 'https://ror.org/050vtbc65 Vestigia'),
(28482, 'https://ror.org/03sry2h30', 'en', 1, 'https://ror.org/03sry2h30 Max Planck Institute for Gravitational Physics Max-Planck-Institut für Gravitationsphysik'),
(28483, 'https://ror.org/00teqnm16', 'no_lang_code', 1, 'https://ror.org/00teqnm16 SPX Transformer Solutions (United States)'),
(28484, 'https://ror.org/040657n65', 'nl', 1, 'https://ror.org/040657n65 Ons Middelbaar Onderwijs'),
(28485, 'https://ror.org/04wrx4c64', 'no_lang_code', 1, 'https://ror.org/04wrx4c64 Wildcat Discovery Technologies (United States)'),
(28486, 'https://ror.org/02be22443', 'de', 1, 'https://ror.org/02be22443 Ferdinand-Braun-Institut Leibniz-Institut für Höchstfrequenztechnik'),
(28487, 'https://ror.org/0363anr51', 'en', 1, 'https://ror.org/0363anr51 Hague Institute for Global Justice'),
(28488, 'https://ror.org/0481e1q24', 'en', 1, 'https://ror.org/0481e1q24 Hogeschool Rotterdam Rotterdam University of Applied Sciences'),
(28489, 'https://ror.org/03nawc604', 'en', 1, 'https://ror.org/03nawc604 TNO Management Consultants'),
(28490, 'https://ror.org/03n0yn137', 'no_lang_code', 1, 'https://ror.org/03n0yn137 X-Fab (United States)'),
(28491, 'https://ror.org/039shy520', 'en', 1, 'https://ror.org/039shy520 Institut für Hochenergiephysik Institute of High Energy Physics'),
(28492, 'https://ror.org/03x8rhq63', 'en', 1, 'https://ror.org/03x8rhq63 Institute of Modern Physics 中国科学院近代物理研究所'),
(28493, 'https://ror.org/023pdrd93', 'no_lang_code', 1, 'https://ror.org/023pdrd93 ZOA (Uganda)'),
(28494, 'https://ror.org/01eznm763', 'no_lang_code', 1, 'https://ror.org/01eznm763 TreadStone Technologies (United States)'),
(28495, 'https://ror.org/01r376258', 'en', 1, 'https://ror.org/01r376258 Netherlands Architecture Institute'),
(28496, 'https://ror.org/043qkx395', 'en', 1, 'https://ror.org/043qkx395 Centre for Ultrahigh Bandwidth Devices for Optical Systems'),
(28497, 'https://ror.org/00e4bwe12', 'en', 1, 'https://ror.org/00e4bwe12 Max Planck Institute for Extraterrestrial Physics Max-Planck-Institut für Extraterrestrische Physik'),
(28498, 'https://ror.org/02rzw6h69', 'en', 1, 'https://ror.org/02rzw6h69 Helmholtz Institute Jena Helmholtz-Institut Jena'),
(28499, 'https://ror.org/05esem239', 'en', 1, 'https://ror.org/05esem239 Max Planck Institute for Meteorology Max-Planck-Institut für Meteorologie'),
(28500, 'https://ror.org/00qyat195', 'en', 1, 'https://ror.org/00qyat195 National Centre for Nuclear Energy, Science and Technology'),
(28501, 'https://ror.org/0095xwr23', 'en', 1, 'https://ror.org/0095xwr23 Max Planck Institute of Microstructure Physics Max-Planck-Institut für Mikrostrukturphysik'),
(28502, 'https://ror.org/02qs0dv08', 'en', 1, 'https://ror.org/02qs0dv08 Hungarian Astronomical Association'),
(28503, 'https://ror.org/02w6gr951', 'en', 1, 'https://ror.org/02w6gr951 Shanghai Institute of Applied Physics 中国科学院上海应用物理研究所'),
(28504, 'https://ror.org/02jktn113', 'en', 1, 'https://ror.org/02jktn113 International Center for Relativistic Astrophysics'),
(28505, 'https://ror.org/00ypx0z29', 'en', 1, 'https://ror.org/00ypx0z29 Institute of Physics and Technology'),
(28506, 'https://ror.org/0046r4y62', 'no_lang_code', 1, 'https://ror.org/0046r4y62 Complete Genomics (United States)'),
(28507, 'https://ror.org/034gcgw60', 'en', 1, 'https://ror.org/034gcgw60 Institute of Space and Astronautical Science 宇宙科学研究所'),
(28508, 'https://ror.org/02ty5cy83', 'no_lang_code', 1, 'https://ror.org/02ty5cy83 Infinera (United States)'),
(28509, 'https://ror.org/00he98j14', 'en', 1, 'https://ror.org/00he98j14 Institute for Laser Technology 公益財団法人 レーザー技術総合研究所'),
(28510, 'https://ror.org/03sc5te70', 'en', 1, 'https://ror.org/03sc5te70 Sunvapor'),
(28511, 'https://ror.org/01snw6n75', 'en', 1, 'https://ror.org/01snw6n75 International Genomics Consortium'),
(28512, 'https://ror.org/0363pts49', 'en', 1, 'https://ror.org/0363pts49 Institute for Nuclear Science and Technology VIỆN KHOA HỌC VÀ KỸ THUẬT HẠT NHÂN'),
(28513, 'https://ror.org/003aea848', 'en', 1, 'https://ror.org/003aea848 Columbia Region Healthcare Engineers Association'),
(28514, 'https://ror.org/058pyyv44', 'en', 1, 'https://ror.org/058pyyv44 National Astronomical Observatories 中国科学院国家天文台'),
(28515, 'https://ror.org/02av38n71', 'de', 1, 'https://ror.org/02av38n71 HELIOS St. Elisabeth Klinik Oberhausen'),
(28516, 'https://ror.org/050qmck25', 'no_lang_code', 1, 'https://ror.org/050qmck25 TE SubCom (United States)'),
(28517, 'https://ror.org/0165d9303', 'en', 1, 'https://ror.org/0165d9303 Harish-Chandra Research Institute हरीशचंद्र अनुसंधान संस्थान'),
(28518, 'https://ror.org/03c0wvm84', 'no_lang_code', 1, 'https://ror.org/03c0wvm84 OFS (United States)'),
(28519, 'https://ror.org/03napcw37', 'en', 1, 'https://ror.org/03napcw37 Institute of Semiconductor Physics Федеральное государственное бюджетное учреждение науки Институт физики полупроводников им. А.В. Ржанова Сибирского отделения Российской академии наук'),
(28520, 'https://ror.org/01fqmah26', 'en', 1, 'https://ror.org/01fqmah26 Photonics Electronics Technology Research Association フォトニクスエレクトロニクス技術研究組合'),
(28521, 'https://ror.org/04b12nt82', 'no_lang_code', 1, 'https://ror.org/04b12nt82 PNSensor (Germany)'),
(28522, 'https://ror.org/04b9sdb26', 'no_lang_code', 1, 'https://ror.org/04b9sdb26 Tri Alpha Energy (United States)'),
(28523, 'https://ror.org/003n8re58', 'en', 1, 'https://ror.org/003n8re58 Shanghai Astronomical Observatory 中国科学院上海天文台'),
(28524, 'https://ror.org/055pgv213', 'de', 1, 'https://ror.org/055pgv213 Halbleiterlabor der Max-Planck-Gesellschaft Halbleiterlabor of the Max-Planck-Society'),
(28525, 'https://ror.org/04rpteb42', 'no_lang_code', 1, 'https://ror.org/04rpteb42 Pranalytica (United States)'),
(28526, 'https://ror.org/052kdcb58', 'en', 1, 'https://ror.org/052kdcb58 Institute for Nuclear Research Інститут ядерних досліджень'),
(28527, 'https://ror.org/04v3xs363', 'en', 1, 'https://ror.org/04v3xs363 Alberta Chicken Producers (Canada)'),
(28528, 'https://ror.org/00wh57194', 'en', 1, 'https://ror.org/00wh57194 Alberta Energy'),
(28529, 'https://ror.org/03j4sms74', 'en', 1, 'https://ror.org/03j4sms74 Alberta Farm Animal Care Association'),
(28530, 'https://ror.org/05b9w0m88', 'pt', 1, 'https://ror.org/05b9w0m88 Laboratório Interinstitucional de e-Astronomia'),
(28531, 'https://ror.org/023rnh198', 'en', 1, 'https://ror.org/023rnh198 Alberta Livestock and Meat Agency'),
(28532, 'https://ror.org/02jj42f67', 'en', 1, 'https://ror.org/02jj42f67 Alberta Oil Sands Technology and Research Authority'),
(28533, 'https://ror.org/05a45xc26', 'no_lang_code', 1, 'https://ror.org/05a45xc26 Alberta Pork (Canada)'),
(28534, 'https://ror.org/03kyjez48', 'no_lang_code', 1, 'https://ror.org/03kyjez48 Adelan (United Kingdom)'),
(28535, 'https://ror.org/011av7236', 'no_lang_code', 1, 'https://ror.org/011av7236 Advanced BioRefinery (Canada)'),
(28536, 'https://ror.org/04749me90', 'no_lang_code', 1, 'https://ror.org/04749me90 AmeriPrint (United States)'),
(28537, 'https://ror.org/024tm3y55', 'no_lang_code', 1, 'https://ror.org/024tm3y55 Glonatech (Greece)'),
(28538, 'https://ror.org/05j8j0w49', 'no_lang_code', 1, 'https://ror.org/05j8j0w49 Advanced Glazings (Canada)'),
(28539, 'https://ror.org/01tgakh12', 'no_lang_code', 1, 'https://ror.org/01tgakh12 Alcoa (Canada)'),
(28540, 'https://ror.org/00mnqcr93', 'no_lang_code', 1, 'https://ror.org/00mnqcr93 Alcohol Countermeasure Systems (Canada)'),
(28541, 'https://ror.org/03fffdr10', 'no_lang_code', 1, 'https://ror.org/03fffdr10 3D Technology Laboratories (United States)'),
(28542, 'https://ror.org/02ae4zw82', 'en', 1, 'https://ror.org/02ae4zw82 American Precision Museum'),
(28543, 'https://ror.org/05j3a2m34', 'en', 1, 'https://ror.org/05j3a2m34 Analytical Center MNiOP'),
(28544, 'https://ror.org/056xwsc46', 'no_lang_code', 1, 'https://ror.org/056xwsc46 American Water (Canada)'),
(28545, 'https://ror.org/03g8hqd12', 'no_lang_code', 1, 'https://ror.org/03g8hqd12 Amica Science Eeig (United Kingdom)'),
(28546, 'https://ror.org/01e7j1q59', 'no_lang_code', 1, 'https://ror.org/01e7j1q59 Advanced Practical Diagnostics (Belgium)'),
(28547, 'https://ror.org/01gjmdw96', 'no_lang_code', 1, 'https://ror.org/01gjmdw96 Alfa Products and Technologies (Belgium)'),
(28548, 'https://ror.org/0043qk943', 'en', 1, 'https://ror.org/0043qk943 A-R Editions'),
(28549, 'https://ror.org/03vdweg30', 'no_lang_code', 1, 'https://ror.org/03vdweg30 Essar Steel Algoma (Canada)'),
(28550, 'https://ror.org/02ske4z75', 'no_lang_code', 1, 'https://ror.org/02ske4z75 Aquatic Systems (United States)'),
(28551, 'https://ror.org/035684d86', 'en', 1, 'https://ror.org/035684d86 Voeikov Main Geophysical Observatory федеральное государственное бюджетное учреждение Главная геофизическая обсерватория им. А.И.Воейкова'),
(28552, 'https://ror.org/00emrap86', 'no_lang_code', 1, 'https://ror.org/00emrap86 Entrust (Canada)'),
(28553, 'https://ror.org/05xsw6b79', 'no_lang_code', 1, 'https://ror.org/05xsw6b79 Aralia Systems (United Kingdom)'),
(28554, 'https://ror.org/04a7ab069', 'no_lang_code', 1, 'https://ror.org/04a7ab069 AEF Global (Canada)'),
(28555, 'https://ror.org/02s06cq86', 'no_lang_code', 1, 'https://ror.org/02s06cq86 Arbec Forest Products (Canada)'),
(28556, 'https://ror.org/04acx6166', 'no_lang_code', 1, 'https://ror.org/04acx6166 Lassonde Industries (Canada)'),
(28557, 'https://ror.org/00k5wwd38', 'no_lang_code', 1, 'https://ror.org/00k5wwd38 Aeroconseil (France)'),
(28558, 'https://ror.org/04nkjmp39', 'no_lang_code', 1, 'https://ror.org/04nkjmp39 AeroDNA (United Kingdom)'),
(28559, 'https://ror.org/0038bns95', 'no_lang_code', 1, 'https://ror.org/0038bns95 Amsen Technologies (United States)'),
(28560, 'https://ror.org/02by97j27', 'no_lang_code', 1, 'https://ror.org/02by97j27 Arca Progetti (Italy)'),
(28561, 'https://ror.org/052h4sm36', 'no_lang_code', 1, 'https://ror.org/052h4sm36 Abel Manufacturing Company (United States)'),
(28562, 'https://ror.org/00z58wj40', 'no_lang_code', 1, 'https://ror.org/00z58wj40 Allstate (United States)'),
(28563, 'https://ror.org/04ttpa220', 'no_lang_code', 1, 'https://ror.org/04ttpa220 Abreos Biosciences (United States)'),
(28564, 'https://ror.org/00hprwh76', 'no_lang_code', 1, 'https://ror.org/00hprwh76 Absiskey (France)'),
(28565, 'https://ror.org/01044pa52', 'no_lang_code', 1, 'https://ror.org/01044pa52 Lonza (Canada)'),
(28566, 'https://ror.org/05021m385', 'no_lang_code', 1, 'https://ror.org/05021m385 Arclay (Canada) Arclay Technologies Naturelles'),
(28567, 'https://ror.org/00rmxs729', 'no_lang_code', 1, 'https://ror.org/00rmxs729 Acadian Peat Moss (Canada)'),
(28568, 'https://ror.org/05cs9vc86', 'no_lang_code', 1, 'https://ror.org/05cs9vc86 Tesoro (United States)'),
(28569, 'https://ror.org/04wd0my56', 'no_lang_code', 1, 'https://ror.org/04wd0my56 Ardoran (Estonia)'),
(28570, 'https://ror.org/03tbhyj83', 'en', 1, 'https://ror.org/03tbhyj83 Area ''A'' Crab Association'),
(28571, 'https://ror.org/05c4phg25', 'no_lang_code', 1, 'https://ror.org/05c4phg25 AS Composite (Canada)'),
(28572, 'https://ror.org/00zsvs615', 'en', 1, 'https://ror.org/00zsvs615 AccessMatters'),
(28573, 'https://ror.org/01jtfaj68', 'no_lang_code', 1, 'https://ror.org/01jtfaj68 Andec Manufacturing (Canada)'),
(28574, 'https://ror.org/01wnead86', 'no_lang_code', 1, 'https://ror.org/01wnead86 Arius3D (Canada)'),
(28575, 'https://ror.org/02svyk642', 'no_lang_code', 1, 'https://ror.org/02svyk642 Arkema (Canada)'),
(28576, 'https://ror.org/059xraf34', 'no_lang_code', 1, 'https://ror.org/059xraf34 Alstom (Canada)'),
(28577, 'https://ror.org/010t10c49', 'no_lang_code', 1, 'https://ror.org/010t10c49 Alta Precision (Canada)'),
(28578, 'https://ror.org/01d4xtf25', 'no_lang_code', 1, 'https://ror.org/01d4xtf25 Agribrands Purina (Canada)'),
(28579, 'https://ror.org/03jp5g380', 'en', 1, 'https://ror.org/03jp5g380 Agence de promotion économique du Canada atlantique Atlantic Canada Opportunities Agency'),
(28580, 'https://ror.org/04ea6k136', 'no_lang_code', 1, 'https://ror.org/04ea6k136 Assocalzaturifici (Italy)'),
(28581, 'https://ror.org/00bhae667', 'no_lang_code', 1, 'https://ror.org/00bhae667 Aluminerie Alouette (Canada)'),
(28582, 'https://ror.org/04hx9nd03', 'no_lang_code', 1, 'https://ror.org/04hx9nd03 Atlantic Hydrogen (Canada)'),
(28583, 'https://ror.org/05vfxqe03', 'no_lang_code', 1, 'https://ror.org/05vfxqe03 Devon Energy (Canada)'),
(28584, 'https://ror.org/00cpm4162', 'no_lang_code', 1, 'https://ror.org/00cpm4162 Ascent Technology (United States)'),
(28585, 'https://ror.org/023q7ek24', 'no_lang_code', 1, 'https://ror.org/023q7ek24 Stornoway Diamond (Canada)'),
(28586, 'https://ror.org/0593qvg67', 'no_lang_code', 1, 'https://ror.org/0593qvg67 Anger Machining (Austria)'),
(28587, 'https://ror.org/05dpb2x88', 'no_lang_code', 1, 'https://ror.org/05dpb2x88 Tolmar (United States)'),
(28588, 'https://ror.org/04rc5xe97', 'no_lang_code', 1, 'https://ror.org/04rc5xe97 Agpyme (Spain)'),
(28589, 'https://ror.org/04eanvj85', 'no_lang_code', 1, 'https://ror.org/04eanvj85 Audio Analytic (United Kingdom)'),
(28590, 'https://ror.org/000p6bx44', 'no_lang_code', 1, 'https://ror.org/000p6bx44 Anglo American (Canada)'),
(28591, 'https://ror.org/04nmx3106', 'no_lang_code', 1, 'https://ror.org/04nmx3106 AngloGold Ashanti (South Africa)'),
(28592, 'https://ror.org/023xmtf12', 'en', 1, 'https://ror.org/023xmtf12 Assemblea delle Donne per lo Sviluppo e la Lotta all''Esclusione Sociale Assembly of Women for Development and the Struggle against Social Exclusion'),
(28593, 'https://ror.org/02q84p957', 'no_lang_code', 1, 'https://ror.org/02q84p957 Parmalat (Canada)'),
(28594, 'https://ror.org/0206q6m49', 'no_lang_code', 1, 'https://ror.org/0206q6m49 Angstrom Engineering (Canada)'),
(28595, 'https://ror.org/04tebqy16', 'no_lang_code', 1, 'https://ror.org/04tebqy16 Air Fuel Synthesis (United Kingdom)'),
(28596, 'https://ror.org/02p47zr16', 'en', 1, 'https://ror.org/02p47zr16 BC Greenhouse Growers Association'),
(28597, 'https://ror.org/014yfah54', 'no_lang_code', 1, 'https://ror.org/014yfah54 Aurel Systems (Canada)'),
(28598, 'https://ror.org/01x6ma944', 'no_lang_code', 1, 'https://ror.org/01x6ma944 BC Hydro (Canada)'),
(28599, 'https://ror.org/01zc1hx59', 'en', 1, 'https://ror.org/01zc1hx59 Animal Nutrition Association of Canada'),
(28600, 'https://ror.org/02h7kh904', 'en', 1, 'https://ror.org/02h7kh904 Associação Portuguesa das Indústrias de Cerâmica e de Cristalaria Portuguese Association of the Ceramics Industry'),
(28601, 'https://ror.org/05n22dr57', 'en', 1, 'https://ror.org/05n22dr57 BC Innovation Council'),
(28602, 'https://ror.org/031a6e068', 'it', 1, 'https://ror.org/031a6e068 Associazione Nazionale per l’Isolamento Termico e Acustico'),
(28603, 'https://ror.org/03v6fak96', 'no_lang_code', 1, 'https://ror.org/03v6fak96 AIR Worldwide (United Kingdom)'),
(28604, 'https://ror.org/04g507h60', 'no_lang_code', 1, 'https://ror.org/04g507h60 AirScience Technologies (Canada)'),
(28605, 'https://ror.org/022w59k49', 'en', 1, 'https://ror.org/022w59k49 Alaska State Museum'),
(28606, 'https://ror.org/04pgzvj03', 'en', 1, 'https://ror.org/04pgzvj03 Association des constructeurs de routes et grands travaux du Québec Québec Road Builders and Heavy Construction Association'),
(28607, 'https://ror.org/05d3gq009', 'no_lang_code', 1, 'https://ror.org/05d3gq009 Alberco Construction (Canada)'),
(28608, 'https://ror.org/000w5kn77', 'en', 1, 'https://ror.org/000w5kn77 Ministry of Environment'),
(28609, 'https://ror.org/02sr74r45', 'en', 1, 'https://ror.org/02sr74r45 Biopterre'),
(28610, 'https://ror.org/04c66ah90', 'no_lang_code', 1, 'https://ror.org/04c66ah90 Antex Western (Canada)'),
(28611, 'https://ror.org/03kqbjd86', 'en', 1, 'https://ror.org/03kqbjd86 Plastics Recyclers Europe'),
(28612, 'https://ror.org/05txqkd02', 'en', 1, 'https://ror.org/05txqkd02 Association for Asian Studies'),
(28613, 'https://ror.org/01rkdw075', 'no_lang_code', 1, 'https://ror.org/01rkdw075 AnyBody Technology (Denmark)'),
(28614, 'https://ror.org/01b3dk794', 'no_lang_code', 1, 'https://ror.org/01b3dk794 Autodesk (Canada)'),
(28615, 'https://ror.org/02tyyce58', 'no_lang_code', 1, 'https://ror.org/02tyyce58 Bcn Cambra Logica De Projectes'),
(28616, 'https://ror.org/00sdxex41', 'en', 1, 'https://ror.org/00sdxex41 Autograph ABP'),
(28617, 'https://ror.org/00p6c4n60', 'no_lang_code', 1, 'https://ror.org/00p6c4n60 Autoline Insurance (United Kingdom)'),
(28618, 'https://ror.org/044s7x198', 'en', 1, 'https://ror.org/044s7x198 Association of Professional Engineers and Geoscientists of Manitoba'),
(28619, 'https://ror.org/05kmh8z64', 'en', 1, 'https://ror.org/05kmh8z64 Apicha Community Health Center'),
(28620, 'https://ror.org/03f9gsg45', 'en', 1, 'https://ror.org/03f9gsg45 Beef Cattle Research Council'),
(28621, 'https://ror.org/01b556x61', 'no_lang_code', 1, 'https://ror.org/01b556x61 Apollo Microwaves (Canada)'),
(28622, 'https://ror.org/05vj6nt70', 'en', 1, 'https://ror.org/05vj6nt70 Appalshop'),
(28623, 'https://ror.org/004whvh21', 'no_lang_code', 1, 'https://ror.org/004whvh21 Applied Bio-nomics (Canada)'),
(28624, 'https://ror.org/01845n260', 'no_lang_code', 1, 'https://ror.org/01845n260 BIOX (Canada)'),
(28625, 'https://ror.org/02gsyjh62', 'fr', 1, 'https://ror.org/02gsyjh62 UP-Tex'),
(28626, 'https://ror.org/05sydm958', 'no_lang_code', 1, 'https://ror.org/05sydm958 ATS Automation Tooling Systems (Canada)'),
(28627, 'https://ror.org/01tj74z64', 'it', 1, 'https://ror.org/01tj74z64 Associazione Italiana per l''Agricoltura Biologica'),
(28628, 'https://ror.org/00cjeg736', 'en', 1, 'https://ror.org/00cjeg736 Birmingham and Solihull Mental Health NHS Foundation Trust'),
(28629, 'https://ror.org/00hjjbv09', 'no_lang_code', 1, 'https://ror.org/00hjjbv09 Applied Nanotools (Canada)'),
(28630, 'https://ror.org/01t6xjs55', 'no_lang_code', 1, 'https://ror.org/01t6xjs55 Exmar (Belgium)'),
(28631, 'https://ror.org/01y5xsj54', 'en', 1, 'https://ror.org/01y5xsj54 Black Hills Center for American Indian Health'),
(28632, 'https://ror.org/058pbt095', 'no_lang_code', 1, 'https://ror.org/058pbt095 Avalon Rare Metals (Canada)'),
(28633, 'https://ror.org/00mn56c32', 'en', 1, 'https://ror.org/00mn56c32 British Red Cross'),
(28634, 'https://ror.org/05wdmgk52', 'no_lang_code', 1, 'https://ror.org/05wdmgk52 Avatar Medical (United States)'),
(28635, 'https://ror.org/058agte50', 'no_lang_code', 1, 'https://ror.org/058agte50 Blücher (Germany)'),
(28636, 'https://ror.org/05rwjrt81', 'no_lang_code', 1, 'https://ror.org/05rwjrt81 Berger (Canada)'),
(28637, 'https://ror.org/02q6ekp33', 'no_lang_code', 1, 'https://ror.org/02q6ekp33 Blue Bear (United Kingdom)'),
(28638, 'https://ror.org/03055qx94', 'en', 1, 'https://ror.org/03055qx94 Canada Economic Development for Quebec Regions'),
(28639, 'https://ror.org/01wc7km43', 'no_lang_code', 1, 'https://ror.org/01wc7km43 Canada Malting (Canada)'),
(28640, 'https://ror.org/01ztrqp26', 'no_lang_code', 1, 'https://ror.org/01ztrqp26 Blue Pencil Group (United States)'),
(28641, 'https://ror.org/01ebst690', 'no_lang_code', 1, 'https://ror.org/01ebst690 Axela (Canada)'),
(28642, 'https://ror.org/04zt3wx35', 'en', 1, 'https://ror.org/04zt3wx35 Canada Mortgage and Housing Corporation Societe canadienne d''hypotheque et du logement'),
(28643, 'https://ror.org/01znwdd95', 'no_lang_code', 1, 'https://ror.org/01znwdd95 AxioMx (United States)'),
(28644, 'https://ror.org/01vn8wp97', 'en', 1, 'https://ror.org/01vn8wp97 Brown County Historical Society'),
(28645, 'https://ror.org/02eqsb844', 'en', 1, 'https://ror.org/02eqsb844 Canada West Ski Areas Association'),
(28646, 'https://ror.org/049xqkn84', 'en', 1, 'https://ror.org/049xqkn84 Administration canadienne de la sûreté du transport aérien Canadian Air Transport Security Authority'),
(28647, 'https://ror.org/01y6tnr87', 'no_lang_code', 1, 'https://ror.org/01y6tnr87 Blue-O Technology (Canada)'),
(28648, 'https://ror.org/0237x2s28', 'no_lang_code', 1, 'https://ror.org/0237x2s28 Axis Photonique (Canada)'),
(28649, 'https://ror.org/04f6m0p71', 'no_lang_code', 1, 'https://ror.org/04f6m0p71 AOSOL (Portugal)'),
(28650, 'https://ror.org/03bmxpp39', 'no_lang_code', 1, 'https://ror.org/03bmxpp39 Boeing (Canada)'),
(28651, 'https://ror.org/04e10gs59', 'no_lang_code', 1, 'https://ror.org/04e10gs59 Boisaco (Canada)'),
(28652, 'https://ror.org/04p61m296', 'no_lang_code', 1, 'https://ror.org/04p61m296 Minacs (Canada)'),
(28653, 'https://ror.org/05130dm31', 'en', 1, 'https://ror.org/05130dm31 Bonnie Walker and Associates'),
(28654, 'https://ror.org/03wy95943', 'no_lang_code', 1, 'https://ror.org/03wy95943 B-Con Engineering (Canada)'),
(28655, 'https://ror.org/045hsta97', 'no_lang_code', 1, 'https://ror.org/045hsta97 Progressive Waste Solutions (Canada)'),
(28656, 'https://ror.org/05p4j2138', 'no_lang_code', 1, 'https://ror.org/05p4j2138 Bunge (Canada)'),
(28657, 'https://ror.org/01kc9n234', 'no_lang_code', 1, 'https://ror.org/01kc9n234 BGC Engineering (Canada)'),
(28658, 'https://ror.org/04ztfpt34', 'no_lang_code', 1, 'https://ror.org/04ztfpt34 Boreal Laser (Canada)'),
(28659, 'https://ror.org/05rt6q248', 'no_lang_code', 1, 'https://ror.org/05rt6q248 Toyota Motor Corporation (Canada)'),
(28660, 'https://ror.org/03hxk2a16', 'no_lang_code', 1, 'https://ror.org/03hxk2a16 BHP (Canada)'),
(28661, 'https://ror.org/057e7ah68', 'no_lang_code', 1, 'https://ror.org/057e7ah68 Badrilla (United Kingdom)'),
(28662, 'https://ror.org/00ny54t68', 'no_lang_code', 1, 'https://ror.org/00ny54t68 BI Pure Water (Canada)'),
(28663, 'https://ror.org/0532ef257', 'no_lang_code', 1, 'https://ror.org/0532ef257 Cargill (Canada)'),
(28664, 'https://ror.org/00b60bj84', 'no_lang_code', 1, 'https://ror.org/00b60bj84 Borregaard (Norway)'),
(28665, 'https://ror.org/05b8hvw73', 'no_lang_code', 1, 'https://ror.org/05b8hvw73 Borregaard (United Kingdom)'),
(28666, 'https://ror.org/024p99359', 'no_lang_code', 1, 'https://ror.org/024p99359 BainUltra (Canada)'),
(28667, 'https://ror.org/03rb2qm14', 'en', 1, 'https://ror.org/03rb2qm14 Canadian Avalanche Association'),
(28668, 'https://ror.org/04ne7ew72', 'no_lang_code', 1, 'https://ror.org/04ne7ew72 Canadian Bio-Systems (Canada)'),
(28669, 'https://ror.org/05vpf1q78', 'no_lang_code', 1, 'https://ror.org/05vpf1q78 Baker Hughes (Canada)'),
(28670, 'https://ror.org/03krz3n62', 'en', 1, 'https://ror.org/03krz3n62 Canadian Cattlemen''s Association'),
(28671, 'https://ror.org/05pcb3x66', 'no_lang_code', 1, 'https://ror.org/05pcb3x66 C-Therm Technologies (Canada)'),
(28672, 'https://ror.org/03rcg4460', 'en', 1, 'https://ror.org/03rcg4460 American Guild of Organists'),
(28673, 'https://ror.org/02h1stz09', 'en', 1, 'https://ror.org/02h1stz09 Boston Symphony Orchestra'),
(28674, 'https://ror.org/00wcmt229', 'no_lang_code', 1, 'https://ror.org/00wcmt229 C. van ''t Riet Dairy Technology (Netherlands)'),
(28675, 'https://ror.org/017wp8650', 'no_lang_code', 1, 'https://ror.org/017wp8650 BioTillion (United States)'),
(28676, 'https://ror.org/03h71cc02', 'fr', 1, 'https://ror.org/03h71cc02 Bouthillette Parizeau'),
(28677, 'https://ror.org/051177492', 'no_lang_code', 1, 'https://ror.org/051177492 BP (Canada)'),
(28678, 'https://ror.org/03rwxcx12', 'en', 1, 'https://ror.org/03rwxcx12 Bath and North East Somerset Council'),
(28679, 'https://ror.org/03pt6pg29', 'en', 1, 'https://ror.org/03pt6pg29 Canadian Chlorine Chemistry Council'),
(28680, 'https://ror.org/000x43d10', 'no_lang_code', 1, 'https://ror.org/000x43d10 Cadcamation (Switzerland)'),
(28681, 'https://ror.org/054h84g22', 'en', 1, 'https://ror.org/054h84g22 Canadian Council of Professional Fish Harvesters'),
(28682, 'https://ror.org/03cahhx41', 'no_lang_code', 1, 'https://ror.org/03cahhx41 CadScan (United Kingdom)'),
(28683, 'https://ror.org/05vjvk624', 'en', 1, 'https://ror.org/05vjvk624 Architects Council of Europe Conseil des Architectes d''Europe'),
(28684, 'https://ror.org/02facr303', 'en', 1, 'https://ror.org/02facr303 Canadian Federation of Humane Societies'),
(28685, 'https://ror.org/01w3dn975', 'no_lang_code', 1, 'https://ror.org/01w3dn975 Canadian General-Tower (Canada)'),
(28686, 'https://ror.org/03p3fax91', 'no_lang_code', 1, 'https://ror.org/03p3fax91 Caerus Molecular Diagnostics (United States)'),
(28687, 'https://ror.org/05396f476', 'no_lang_code', 1, 'https://ror.org/05396f476 BioDetection Systems (Netherlands)'),
(28688, 'https://ror.org/04x5rgv88', 'en', 1, 'https://ror.org/04x5rgv88 Canadian Honey Council'),
(28689, 'https://ror.org/05h887517', 'en', 1, 'https://ror.org/05h887517 Canadian Horticultural Council'),
(28690, 'https://ror.org/010zr5r54', 'en', 1, 'https://ror.org/010zr5r54 Calgary Construction Association'),
(28691, 'https://ror.org/03jbxjn08', 'en', 1, 'https://ror.org/03jbxjn08 Biodôme de Montréal Montreal Biodome'),
(28692, 'https://ror.org/015z1mm31', 'no_lang_code', 1, 'https://ror.org/015z1mm31 Kuraray (Canada)'),
(28693, 'https://ror.org/02q8pz475', 'en', 1, 'https://ror.org/02q8pz475 Photons Canada'),
(28694, 'https://ror.org/04zkm8r02', 'en', 1, 'https://ror.org/04zkm8r02 Brewing and Malting Barley Research Institute'),
(28695, 'https://ror.org/02hc2ra25', 'en', 1, 'https://ror.org/02hc2ra25 Canadian International Grains Institute'),
(28696, 'https://ror.org/051s8tq24', 'en', 1, 'https://ror.org/051s8tq24 Canadian Mining Industry Research Organization'),
(28697, 'https://ror.org/01frgsc79', 'en', 1, 'https://ror.org/01frgsc79 Association canadienne des carburants Canadian Fuels Association'),
(28698, 'https://ror.org/00a83t181', 'no_lang_code', 1, 'https://ror.org/00a83t181 BioForest Technologies (Canada)'),
(28699, 'https://ror.org/02878nd97', 'no_lang_code', 1, 'https://ror.org/02878nd97 Canadian Pacific Railway (Canada)'),
(28700, 'https://ror.org/00hm4yk03', 'en', 1, 'https://ror.org/00hm4yk03 92nd Street Young Men''s and Young Women''s Hebrew Association'),
(28701, 'https://ror.org/0302x4x02', 'no_lang_code', 1, 'https://ror.org/0302x4x02 Biogas Barth (Germany)'),
(28702, 'https://ror.org/0286gjk84', 'en', 1, 'https://ror.org/0286gjk84 Canadian Seed Growers Association'),
(28703, 'https://ror.org/0365vfb57', 'en', 1, 'https://ror.org/0365vfb57 Canadian Sheet Steel Building Institute'),
(28704, 'https://ror.org/05vab6055', 'no_lang_code', 1, 'https://ror.org/05vab6055 Air Liquide (Canada)'),
(28705, 'https://ror.org/013x6aj18', 'no_lang_code', 1, 'https://ror.org/013x6aj18 Alpine Helicopters (Canada)'),
(28706, 'https://ror.org/00nyhq937', 'en', 1, 'https://ror.org/00nyhq937 Association Canadienne des Producteurs d''Acier Canadian Steel Producers Association'),
(28707, 'https://ror.org/020r9kq92', 'no_lang_code', 1, 'https://ror.org/020r9kq92 CelluForce (Canada)'),
(28708, 'https://ror.org/02k55qr52', 'no_lang_code', 1, 'https://ror.org/02k55qr52 Cambridge Cognition (United Kingdom)'),
(28709, 'https://ror.org/050yj7e58', 'en', 1, 'https://ror.org/050yj7e58 Cement Association of Canada'),
(28710, 'https://ror.org/013x6g466', 'en', 1, 'https://ror.org/013x6g466 Canadian Turfgrass Research Foundation'),
(28711, 'https://ror.org/04mjpn004', 'no_lang_code', 1, 'https://ror.org/04mjpn004 Athena Environmental Sciences (United States)'),
(28712, 'https://ror.org/00j81st88', 'no_lang_code', 1, 'https://ror.org/00j81st88 Cenovus Energy (Canada)'),
(28713, 'https://ror.org/01th8rf13', 'no_lang_code', 1, 'https://ror.org/01th8rf13 Cambridge Life Sciences (United Kingdom)'),
(28714, 'https://ror.org/029k5s383', 'en', 1, 'https://ror.org/029k5s383 Association canadienne des télécommunications sans fil Canadian Wireless Telecommunications Association'),
(28715, 'https://ror.org/02na09p21', 'en', 1, 'https://ror.org/02na09p21 Bristol Clinical Commissioning Group'),
(28716, 'https://ror.org/00tn07286', 'en', 1, 'https://ror.org/00tn07286 Canadian Wood Council Conseil canadien du bois'),
(28717, 'https://ror.org/0289akc76', 'no_lang_code', 1, 'https://ror.org/0289akc76 Canatec (Canada)'),
(28718, 'https://ror.org/01r00g076', 'no_lang_code', 1, 'https://ror.org/01r00g076 Bristol-Myers Squibb (Canada)'),
(28719, 'https://ror.org/0142xw417', 'no_lang_code', 1, 'https://ror.org/0142xw417 CanBiocin (Canada)'),
(28720, 'https://ror.org/021g7ye04', 'no_lang_code', 1, 'https://ror.org/021g7ye04 Kaer Biotherapeutics (United States)'),
(28721, 'https://ror.org/040ch0e11', 'en', 1, 'https://ror.org/040ch0e11 Cambridgeshire and Peterborough NHS Foundation Trust'),
(28722, 'https://ror.org/03ekq2173', 'en', 1, 'https://ror.org/03ekq2173 Camden and Islington NHS Foundation Trust'),
(28723, 'https://ror.org/00m35h465', 'en', 1, 'https://ror.org/00m35h465 Center for New American Media'),
(28724, 'https://ror.org/05ppvc341', 'en', 1, 'https://ror.org/05ppvc341 Third World Newsreel'),
(28725, 'https://ror.org/031fs4257', 'en', 1, 'https://ror.org/031fs4257 British Columbia Blueberry Council'),
(28726, 'https://ror.org/023zamm70', 'en', 1, 'https://ror.org/023zamm70 CANDU Owners Group'),
(28727, 'https://ror.org/0497dq098', 'en', 1, 'https://ror.org/0497dq098 British Columbia Broiler Hatching Egg Commission'),
(28728, 'https://ror.org/00qys8f30', 'no_lang_code', 1, 'https://ror.org/00qys8f30 Penn West Exploration (Canada)'),
(28729, 'https://ror.org/02951hv89', 'no_lang_code', 1, 'https://ror.org/02951hv89 Campbell Scientific (Canada)'),
(28730, 'https://ror.org/009fhna20', 'en', 1, 'https://ror.org/009fhna20 British Columbia Dairy Association'),
(28731, 'https://ror.org/041emnb33', 'en', 1, 'https://ror.org/041emnb33 Biomedical Research Foundation of Northwest Louisiana'),
(28732, 'https://ror.org/01szvzc53', 'no_lang_code', 1, 'https://ror.org/01szvzc53 Biomer Technology (United Kingdom)'),
(28733, 'https://ror.org/00s9t5z05', 'no_lang_code', 1, 'https://ror.org/00s9t5z05 Canetique (Canada)'),
(28734, 'https://ror.org/05c20s821', 'en', 1, 'https://ror.org/05c20s821 Canadian Concrete Masonry Producers Association'),
(28735, 'https://ror.org/05drfg619', 'en', 1, 'https://ror.org/05drfg619 Central and North West London NHS Foundation Trust'),
(28736, 'https://ror.org/05hpdky94', 'en', 1, 'https://ror.org/05hpdky94 British Columbia Salmon Farmers Association'),
(28737, 'https://ror.org/0156qw326', 'no_lang_code', 1, 'https://ror.org/0156qw326 Vétoquinol (Canada)'),
(28738, 'https://ror.org/02vzczv80', 'en', 1, 'https://ror.org/02vzczv80 College of Veterinarians of British Columbia'),
(28739, 'https://ror.org/02gsap059', 'no_lang_code', 1, 'https://ror.org/02gsap059 Carré Technologies (Canada)'),
(28740, 'https://ror.org/023a30207', 'no_lang_code', 1, 'https://ror.org/023a30207 Telesta Therapeutics (Canada)'),
(28741, 'https://ror.org/0143z3t44', 'en', 1, 'https://ror.org/0143z3t44 Canterbury Shaker Village'),
(28742, 'https://ror.org/04wgdyk95', 'no_lang_code', 1, 'https://ror.org/04wgdyk95 Biopeak Corporation (Canada)'),
(28743, 'https://ror.org/02j43hc79', 'no_lang_code', 1, 'https://ror.org/02j43hc79 Biophotonic Solutions (United States)'),
(28744, 'https://ror.org/0192jzd36', 'no_lang_code', 1, 'https://ror.org/0192jzd36 Cartiere Modesto Cardella (Italy)'),
(28745, 'https://ror.org/05848kk30', 'no_lang_code', 1, 'https://ror.org/05848kk30 Cascades (Canada)'),
(28746, 'https://ror.org/0326cx138', 'no_lang_code', 1, 'https://ror.org/0326cx138 Philips (Canada)'),
(28747, 'https://ror.org/055aaqn82', 'fr', 1, 'https://ror.org/055aaqn82 Centre d''expertise et de recherche en infrastructures urbaines'),
(28748, 'https://ror.org/00f2vm529', 'en', 1, 'https://ror.org/00f2vm529 Artificial Insemination Center of Quebec Centre d''Insémination artificielle du Québec'),
(28749, 'https://ror.org/021pv6792', 'en', 1, 'https://ror.org/021pv6792 CATAAlliance'),
(28750, 'https://ror.org/04kmn0d38', 'no_lang_code', 1, 'https://ror.org/04kmn0d38 Catalyst Paper (Canada)'),
(28751, 'https://ror.org/057cz4c58', 'fr', 1, 'https://ror.org/057cz4c58 Centre de Développement du Porc du Québec'),
(28752, 'https://ror.org/045a2mc38', 'en', 1, 'https://ror.org/045a2mc38 Cape Breton Development Corporation'),
(28753, 'https://ror.org/016fy5v41', 'fr', 1, 'https://ror.org/016fy5v41 Association Québécoise des Fournisseurs et Utilisateurs de Bitume Bitume Québec'),
(28754, 'https://ror.org/056q60969', 'en', 1, 'https://ror.org/056q60969 Cattle Industry Development Council'),
(28755, 'https://ror.org/02vbx3q13', 'no_lang_code', 1, 'https://ror.org/02vbx3q13 CH Four Biogas (Canada)'),
(28756, 'https://ror.org/04dv8zc45', 'no_lang_code', 1, 'https://ror.org/04dv8zc45 Capital Power (Canada)'),
(28757, 'https://ror.org/00z8w4e54', 'no_lang_code', 1, 'https://ror.org/00z8w4e54 CBC (Canada) Société Radio-Canada'),
(28758, 'https://ror.org/04tbxet45', 'no_lang_code', 1, 'https://ror.org/04tbxet45 Jacobs (Canada)'),
(28759, 'https://ror.org/048r2d478', 'en', 1, 'https://ror.org/048r2d478 Computer Based Training for Cognitive Behavioral Therapy'),
(28760, 'https://ror.org/02g0mbf40', 'no_lang_code', 1, 'https://ror.org/02g0mbf40 Chai-Na-Ta (Canada)'),
(28761, 'https://ror.org/01b4acr91', 'fr', 1, 'https://ror.org/01b4acr91 Centre de Recherche en Sciences Animales de Deschambault'),
(28762, 'https://ror.org/02eq82485', 'no_lang_code', 1, 'https://ror.org/02eq82485 Combined Computer Services (Netherlands)'),
(28763, 'https://ror.org/03dfstc27', 'no_lang_code', 1, 'https://ror.org/03dfstc27 Commonwealth Plywood (Canada)'),
(28764, 'https://ror.org/01ssww473', 'en', 1, 'https://ror.org/01ssww473 Clarity Films'),
(28765, 'https://ror.org/02qy4hb70', 'no_lang_code', 1, 'https://ror.org/02qy4hb70 Clayburn Refractories (Canada)'),
(28766, 'https://ror.org/012e7ew08', 'en', 1, 'https://ror.org/012e7ew08 Centre de la Sécurité des Télécommunications Communications Security Establishment'),
(28767, 'https://ror.org/03n6w3476', 'no_lang_code', 1, 'https://ror.org/03n6w3476 CLC (Italy)'),
(28768, 'https://ror.org/05ryv2g97', 'no_lang_code', 1, 'https://ror.org/05ryv2g97 Compagnie Industrielle de la Matière Végétale (France)'),
(28769, 'https://ror.org/000ycm570', 'no_lang_code', 1, 'https://ror.org/000ycm570 Credo Interactive (Canada)'),
(28770, 'https://ror.org/04ad94n97', 'no_lang_code', 1, 'https://ror.org/04ad94n97 Comptoir Agricole Sabrevois (Canada)'),
(28771, 'https://ror.org/020r9sg22', 'no_lang_code', 1, 'https://ror.org/020r9sg22 Chevron (Canada)'),
(28772, 'https://ror.org/00cqb7125', 'no_lang_code', 1, 'https://ror.org/00cqb7125 CM Labs Simulations (Canada)'),
(28773, 'https://ror.org/02jfa8730', 'no_lang_code', 1, 'https://ror.org/02jfa8730 Chevron (United States)'),
(28774, 'https://ror.org/04hjgjc21', 'en', 1, 'https://ror.org/04hjgjc21 Canadian Hydrogen and Fuel Cell Association'),
(28775, 'https://ror.org/01t2e5682', 'no_lang_code', 1, 'https://ror.org/01t2e5682 CNH Industrial (Canada)'),
(28776, 'https://ror.org/04z6hjp93', 'en', 1, 'https://ror.org/04z6hjp93 Chinese Culture Center of San Francisco'),
(28777, 'https://ror.org/027epca68', 'en', 1, 'https://ror.org/027epca68 China Institute in America'),
(28778, 'https://ror.org/04dft6z85', 'en', 1, 'https://ror.org/04dft6z85 Conner Prairie'),
(28779, 'https://ror.org/04hvmsy06', 'no_lang_code', 1, 'https://ror.org/04hvmsy06 Cochlear (Australia)'),
(28780, 'https://ror.org/03z192g48', 'no_lang_code', 1, 'https://ror.org/03z192g48 CrossWing (Canada)'),
(28781, 'https://ror.org/03n5g6138', 'en', 1, 'https://ror.org/03n5g6138 Digital Catapult'),
(28782, 'https://ror.org/03nqxn280', 'en', 1, 'https://ror.org/03nqxn280 Christian Aid'),
(28783, 'https://ror.org/00k5eg781', 'en', 1, 'https://ror.org/00k5eg781 Canadian Heritage Patrimoine Canadien'),
(28784, 'https://ror.org/02pvd7916', 'en', 1, 'https://ror.org/02pvd7916 CODAC Behavioral Health Services'),
(28785, 'https://ror.org/01aa99w95', 'no_lang_code', 1, 'https://ror.org/01aa99w95 Austro Control (Austria) Österreichische Gesellschaft für Zivilluftfahrt'),
(28786, 'https://ror.org/02fym2550', 'no_lang_code', 1, 'https://ror.org/02fym2550 Codagenix (United States)'),
(28787, 'https://ror.org/0320gnw44', 'it', 1, 'https://ror.org/0320gnw44 Consorzio Futuro in Ricerca'),
(28788, 'https://ror.org/002z5ed28', 'en', 1, 'https://ror.org/002z5ed28 Cumulative Environmental Management Association'),
(28789, 'https://ror.org/05ed9kb76', 'no_lang_code', 1, 'https://ror.org/05ed9kb76 Curadel (United States)'),
(28790, 'https://ror.org/04kshqx58', 'no_lang_code', 1, 'https://ror.org/04kshqx58 Mtekvision (Canada)'),
(28791, 'https://ror.org/05agqdk49', 'no_lang_code', 1, 'https://ror.org/05agqdk49 Ciena (Canada)'),
(28792, 'https://ror.org/00qd48t56', 'no_lang_code', 1, 'https://ror.org/00qd48t56 Cognizant (United Kingdom)'),
(28793, 'https://ror.org/007b0pc67', 'no_lang_code', 1, 'https://ror.org/007b0pc67 Gooch & Housego (Greece)'),
(28794, 'https://ror.org/00n4kpm21', 'en', 1, 'https://ror.org/00n4kpm21 Construction Owners Association of Alberta'),
(28795, 'https://ror.org/02ajj7j73', 'no_lang_code', 1, 'https://ror.org/02ajj7j73 BIO (Canada)'),
(28796, 'https://ror.org/05k37cq18', 'no_lang_code', 1, 'https://ror.org/05k37cq18 Custom Security Industries (Canada)'),
(28797, 'https://ror.org/01t0hys38', 'no_lang_code', 1, 'https://ror.org/01t0hys38 Ciment Québec (Canada)'),
(28798, 'https://ror.org/01yktd853', 'en', 1, 'https://ror.org/01yktd853 Consumer Commission on the Accreditation of Health Services'),
(28799, 'https://ror.org/01bt34y59', 'en', 1, 'https://ror.org/01bt34y59 College Art Association'),
(28800, 'https://ror.org/04rx5dj17', 'es', 1, 'https://ror.org/04rx5dj17 Contactica'),
(28801, 'https://ror.org/03ktab054', 'fr', 1, 'https://ror.org/03ktab054 Conférence Régionale des EluEs du Bas-Saint-Laurent'),
(28802, 'https://ror.org/03daevf76', 'no_lang_code', 1, 'https://ror.org/03daevf76 Contango Strategies (Canada)'),
(28803, 'https://ror.org/01xtd5c13', 'en', 1, 'https://ror.org/01xtd5c13 CIS Scientific'),
(28804, 'https://ror.org/00j935m10', 'no_lang_code', 1, 'https://ror.org/00j935m10 Cismet (Germany)'),
(28805, 'https://ror.org/02y5ra618', 'no_lang_code', 1, 'https://ror.org/02y5ra618 Bacher Energie (Switzerland)'),
(28806, 'https://ror.org/01y8hgg23', 'no_lang_code', 1, 'https://ror.org/01y8hgg23 Cistel Technology (Canada)'),
(28807, 'https://ror.org/01mj08x55', 'en', 1, 'https://ror.org/01mj08x55 College of Policing'),
(28808, 'https://ror.org/01kkxsr20', 'no_lang_code', 1, 'https://ror.org/01kkxsr20 Staal Technisch Centrum (Netherlands)'),
(28809, 'https://ror.org/045mtcs38', 'no_lang_code', 1, 'https://ror.org/045mtcs38 CorActive (Canada)'),
(28810, 'https://ror.org/00dtxmk25', 'en', 1, 'https://ror.org/00dtxmk25 Colorado Springs Fine Arts Center'),
(28811, 'https://ror.org/0537cvg39', 'no_lang_code', 1, 'https://ror.org/0537cvg39 Magna International (Canada)'),
(28812, 'https://ror.org/02s21g398', 'en', 1, 'https://ror.org/02s21g398 Coral Reef Research Foundation'),
(28813, 'https://ror.org/00xz1k913', 'no_lang_code', 1, 'https://ror.org/00xz1k913 Cerpotech (Norway)'),
(28814, 'https://ror.org/03vrnre28', 'en', 1, 'https://ror.org/03vrnre28 Innov & Export PME'),
(28815, 'https://ror.org/05s7mx240', 'no_lang_code', 1, 'https://ror.org/05s7mx240 Cyrium Technologies (Canada)'),
(28816, 'https://ror.org/04mr81w67', 'no_lang_code', 1, 'https://ror.org/04mr81w67 Ceska Astronomicka Spolecnost'),
(28817, 'https://ror.org/01ekca690', 'no_lang_code', 1, 'https://ror.org/01ekca690 Solvay (Canada)'),
(28818, 'https://ror.org/02y47bf73', 'no_lang_code', 1, 'https://ror.org/02y47bf73 Evonik (Canada)'),
(28819, 'https://ror.org/02fd77q25', 'en', 1, 'https://ror.org/02fd77q25 Council of Forest Industries'),
(28820, 'https://ror.org/001tp4w71', 'en', 1, 'https://ror.org/001tp4w71 Crafts Council'),
(28821, 'https://ror.org/00j65sp23', 'no_lang_code', 1, 'https://ror.org/00j65sp23 CanKids KidsCan'),
(28822, 'https://ror.org/05eb69c53', 'no_lang_code', 1, 'https://ror.org/05eb69c53 Dynamotive Energy Systems (Canada)'),
(28823, 'https://ror.org/01cgkw709', 'no_lang_code', 1, 'https://ror.org/01cgkw709 Delastek (Canada)'),
(28824, 'https://ror.org/01bat1a85', 'no_lang_code', 1, 'https://ror.org/01bat1a85 Cytodiagnostics (Canada)'),
(28825, 'https://ror.org/014hhab16', 'en', 1, 'https://ror.org/014hhab16 Chadacre Agricultural Trust'),
(28826, 'https://ror.org/02zydys88', 'no_lang_code', 1, 'https://ror.org/02zydys88 Delta-Q Technologies (Canada)'),
(28827, 'https://ror.org/005gfkp44', 'no_lang_code', 1, 'https://ror.org/005gfkp44 Denison Mines (Canada)'),
(28828, 'https://ror.org/02ytn5d60', 'no_lang_code', 1, 'https://ror.org/02ytn5d60 Ferring Pharmaceuticals (United States)'),
(28829, 'https://ror.org/038twcm90', 'no_lang_code', 1, 'https://ror.org/038twcm90 Center For Innovative Food Technology (United States)'),
(28830, 'https://ror.org/03rj7b697', 'no_lang_code', 1, 'https://ror.org/03rj7b697 Enerworks (Canada)'),
(28831, 'https://ror.org/02n77yt92', 'no_lang_code', 1, 'https://ror.org/02n77yt92 Enmax (Canada)'),
(28832, 'https://ror.org/00h8ny829', 'no_lang_code', 1, 'https://ror.org/00h8ny829 Ingredion (Canada)'),
(28833, 'https://ror.org/025cy1d38', 'en', 1, 'https://ror.org/025cy1d38 Department of Health Social Services and Public Safety'),
(28834, 'https://ror.org/04skcvp73', 'en', 1, 'https://ror.org/04skcvp73 European Research Institute of Catalysis');
INSERT INTO `rors` VALUES
(28835, 'https://ror.org/04t871j63', 'no_lang_code', 1, 'https://ror.org/04t871j63 Eacom Timber Corporation (Canada)'),
(28836, 'https://ror.org/04v0pva46', 'no_lang_code', 1, 'https://ror.org/04v0pva46 Dalton Pharma Services (Canada)'),
(28837, 'https://ror.org/002g2cw45', 'no_lang_code', 1, 'https://ror.org/002g2cw45 D2L (Canada)'),
(28838, 'https://ror.org/04ppfc921', 'no_lang_code', 1, 'https://ror.org/04ppfc921 Earthmaster Environmental Strategies (Canada)'),
(28839, 'https://ror.org/01q0vs094', 'en', 1, 'https://ror.org/01q0vs094 East London NHS Foundation Trust'),
(28840, 'https://ror.org/002kffq59', 'no_lang_code', 1, 'https://ror.org/002kffq59 Evolva (Denmark)'),
(28841, 'https://ror.org/01qr4jt84', 'no_lang_code', 1, 'https://ror.org/01qr4jt84 EnWave Corporation (Canada)'),
(28842, 'https://ror.org/05n7hc005', 'no_lang_code', 1, 'https://ror.org/05n7hc005 EVRAZ (United States)'),
(28843, 'https://ror.org/05qty9v66', 'no_lang_code', 1, 'https://ror.org/05qty9v66 Dessau-Soprin (Canada)'),
(28844, 'https://ror.org/05xf0vz59', 'no_lang_code', 1, 'https://ror.org/05xf0vz59 Easy Global Market (France)'),
(28845, 'https://ror.org/03cnssq44', 'en', 1, 'https://ror.org/03cnssq44 Danish Science Factory'),
(28846, 'https://ror.org/05pzwgc51', 'no_lang_code', 1, 'https://ror.org/05pzwgc51 Devices for Dignity'),
(28847, 'https://ror.org/03htdje54', 'no_lang_code', 1, 'https://ror.org/03htdje54 Oerlikon (United Kingdom)'),
(28848, 'https://ror.org/01hyee328', 'da', 1, 'https://ror.org/01hyee328 Dansk Røde Kors'),
(28849, 'https://ror.org/016mr6c68', 'no_lang_code', 1, 'https://ror.org/016mr6c68 Akka Technologies (Italy)'),
(28850, 'https://ror.org/02e998f13', 'en', 1, 'https://ror.org/02e998f13 Equal Arts'),
(28851, 'https://ror.org/00nn4h902', 'en', 1, 'https://ror.org/00nn4h902 Ecancer'),
(28852, 'https://ror.org/01knxge52', 'no_lang_code', 1, 'https://ror.org/01knxge52 Ericsson (United Kingdom)'),
(28853, 'https://ror.org/05qbc4793', 'no_lang_code', 1, 'https://ror.org/05qbc4793 Diacarbon Energy (Canada)'),
(28854, 'https://ror.org/04dhm2b57', 'no_lang_code', 1, 'https://ror.org/04dhm2b57 Ericsson (Denmark)'),
(28855, 'https://ror.org/05dmw9n70', 'no_lang_code', 1, 'https://ror.org/05dmw9n70 Gold Peak Industries (China)'),
(28856, 'https://ror.org/03n17tr67', 'no_lang_code', 1, 'https://ror.org/03n17tr67 F. Ménard (Canada)'),
(28857, 'https://ror.org/02btef130', 'no_lang_code', 1, 'https://ror.org/02btef130 F6S Network (United Kingdom)'),
(28858, 'https://ror.org/038e15474', 'no_lang_code', 1, 'https://ror.org/038e15474 Fabris (Canada)'),
(28859, 'https://ror.org/01jbchh45', 'no_lang_code', 1, 'https://ror.org/01jbchh45 Essilor (Canada)'),
(28860, 'https://ror.org/024dc0f12', 'no_lang_code', 1, 'https://ror.org/024dc0f12 HeidelbergCement (Canada)'),
(28861, 'https://ror.org/04315yv37', 'en', 1, 'https://ror.org/04315yv37 Edinburgh International Science Festival'),
(28862, 'https://ror.org/05rrq0b46', 'no_lang_code', 1, 'https://ror.org/05rrq0b46 Fafard et Frères (Canada)'),
(28863, 'https://ror.org/02hrn9a05', 'no_lang_code', 1, 'https://ror.org/02hrn9a05 IHS Markit (United States)'),
(28864, 'https://ror.org/02scsee13', 'no_lang_code', 1, 'https://ror.org/02scsee13 Etalon (Germany)'),
(28865, 'https://ror.org/02we8bf02', 'no_lang_code', 1, 'https://ror.org/02we8bf02 NewMarket Corporation (United States)'),
(28866, 'https://ror.org/01w4p7624', 'no_lang_code', 1, 'https://ror.org/01w4p7624 Eticas Research & Consulting (Spain)'),
(28867, 'https://ror.org/01kvhrk82', 'no_lang_code', 1, 'https://ror.org/01kvhrk82 PTC (Canada)'),
(28868, 'https://ror.org/01rswrs24', 'no_lang_code', 1, 'https://ror.org/01rswrs24 Études-Recherches-Matériaux (France)'),
(28869, 'https://ror.org/01b4ex890', 'no_lang_code', 1, 'https://ror.org/01b4ex890 Digital Scientific (United Kingdom)'),
(28870, 'https://ror.org/01tmp4163', 'no_lang_code', 1, 'https://ror.org/01tmp4163 Datec Coating (Canada)'),
(28871, 'https://ror.org/03334wr17', 'en', 1, 'https://ror.org/03334wr17 Museum at Eldridge Street'),
(28872, 'https://ror.org/01pcpwp52', 'no_lang_code', 1, 'https://ror.org/01pcpwp52 RPM International (Canada)'),
(28873, 'https://ror.org/02ckxxf86', 'no_lang_code', 1, 'https://ror.org/02ckxxf86 Digital Specialty Chemicals (Canada)'),
(28874, 'https://ror.org/02kbyb945', 'no_lang_code', 1, 'https://ror.org/02kbyb945 Electrik Box (Canada)'),
(28875, 'https://ror.org/01x6hat91', 'en', 1, 'https://ror.org/01x6hat91 Coating Consultancy'),
(28876, 'https://ror.org/055arfx13', 'no_lang_code', 1, 'https://ror.org/055arfx13 Electronic Arts (Canada)'),
(28877, 'https://ror.org/02zqqn969', 'no_lang_code', 1, 'https://ror.org/02zqqn969 Dillon Consulting'),
(28878, 'https://ror.org/01trb8031', 'en', 1, 'https://ror.org/01trb8031 European Global Ocean Observing System'),
(28879, 'https://ror.org/046t0ph31', 'no_lang_code', 1, 'https://ror.org/046t0ph31 Elevance Renewable Sciences (United States)'),
(28880, 'https://ror.org/01wq1xf82', 'en', 1, 'https://ror.org/01wq1xf82 European Academy of Technology and Innovation Assessment'),
(28881, 'https://ror.org/02a5smf05', 'en', 1, 'https://ror.org/02a5smf05 Cockcroft Institute'),
(28882, 'https://ror.org/030trv569', 'no_lang_code', 1, 'https://ror.org/030trv569 Aecom (Canada)'),
(28883, 'https://ror.org/02tc9fx21', 'it', 1, 'https://ror.org/02tc9fx21 Dipartimento per le pari opportunità'),
(28884, 'https://ror.org/024e9aw38', 'en', 1, 'https://ror.org/024e9aw38 European CanCer Organisation'),
(28885, 'https://ror.org/02s9z8855', 'no_lang_code', 1, 'https://ror.org/02s9z8855 Firalis (France)'),
(28886, 'https://ror.org/01bstzn19', 'en', 1, 'https://ror.org/01bstzn19 European Cooperation in Science and Technology'),
(28887, 'https://ror.org/055j5f215', 'en', 1, 'https://ror.org/055j5f215 Earthgen'),
(28888, 'https://ror.org/00w5q8f78', 'en', 1, 'https://ror.org/00w5q8f78 Canadian Standards Association'),
(28889, 'https://ror.org/048p52p98', 'en', 1, 'https://ror.org/048p52p98 Canada Auto Workers'),
(28890, 'https://ror.org/04rr8j290', 'no_lang_code', 1, 'https://ror.org/04rr8j290 Construction DJL (Canada)'),
(28891, 'https://ror.org/021wdam30', 'no_lang_code', 1, 'https://ror.org/021wdam30 DK-SPEC (Canada)'),
(28892, 'https://ror.org/03x725c05', 'no_lang_code', 1, 'https://ror.org/03x725c05 Federated Co-operatives (Canada)'),
(28893, 'https://ror.org/055mrxn09', 'no_lang_code', 1, 'https://ror.org/055mrxn09 Early Warning (United States)'),
(28894, 'https://ror.org/034pgmb82', 'no_lang_code', 1, 'https://ror.org/034pgmb82 Dolphin Computer Access (United Kingdom)'),
(28895, 'https://ror.org/018xr7s92', 'no_lang_code', 1, 'https://ror.org/018xr7s92 EllisDon (Canada)'),
(28896, 'https://ror.org/04yxh1b11', 'en', 1, 'https://ror.org/04yxh1b11 Fundy Tidal'),
(28897, 'https://ror.org/05k9vtj41', 'no_lang_code', 1, 'https://ror.org/05k9vtj41 Fuseforward (Canada)'),
(28898, 'https://ror.org/059n53q30', 'no_lang_code', 1, 'https://ror.org/059n53q30 Doric Lenses (Canada)'),
(28899, 'https://ror.org/007jev255', 'no_lang_code', 1, 'https://ror.org/007jev255 Future-Shape (Germany)'),
(28900, 'https://ror.org/04cvg8m78', 'no_lang_code', 1, 'https://ror.org/04cvg8m78 Future Vehicle Technologies (Canada)'),
(28901, 'https://ror.org/023zmfm94', 'fr', 1, 'https://ror.org/023zmfm94 Société Géologique de France'),
(28902, 'https://ror.org/03qsax043', 'no_lang_code', 1, 'https://ror.org/03qsax043 FISO Technologies (Canada)'),
(28903, 'https://ror.org/03c864431', 'en', 1, 'https://ror.org/03c864431 Federation of European Aquaculture Producers'),
(28904, 'https://ror.org/05cp7zh43', 'no_lang_code', 1, 'https://ror.org/05cp7zh43 Gamma Dynamics (United States)'),
(28905, 'https://ror.org/012x04f41', 'no_lang_code', 1, 'https://ror.org/012x04f41 DELL (Ireland)'),
(28906, 'https://ror.org/00yxhwc11', 'en', 1, 'https://ror.org/00yxhwc11 Dundee City Council'),
(28907, 'https://ror.org/05xsj9862', 'no_lang_code', 1, 'https://ror.org/05xsj9862 Emerging Concepts (United States)'),
(28908, 'https://ror.org/003vejz32', 'en', 1, 'https://ror.org/003vejz32 Flowers Canada Growers'),
(28909, 'https://ror.org/05dtjn343', 'no_lang_code', 1, 'https://ror.org/05dtjn343 Feldan (Canada)'),
(28910, 'https://ror.org/04vj0np78', 'no_lang_code', 1, 'https://ror.org/04vj0np78 GlobVision (Canada)'),
(28911, 'https://ror.org/04a95cm55', 'no_lang_code', 1, 'https://ror.org/04a95cm55 FMB Feinwerk- und Messtechnik (Germany)'),
(28912, 'https://ror.org/00sebb670', 'no_lang_code', 1, 'https://ror.org/00sebb670 Clinique d''Optométrie l’Émerillon (Canada)'),
(28913, 'https://ror.org/00bhnj053', 'en', 1, 'https://ror.org/00bhnj053 Felix Thornley Cobbold Agricultural Trust'),
(28914, 'https://ror.org/01qpq3w78', 'no_lang_code', 1, 'https://ror.org/01qpq3w78 Golder Associates (United States)'),
(28915, 'https://ror.org/00ampbq92', 'en', 1, 'https://ror.org/00ampbq92 Guysborough County Inshore Fishermen''s Association'),
(28916, 'https://ror.org/05gte4h93', 'en', 1, 'https://ror.org/05gte4h93 Walsh Associates'),
(28917, 'https://ror.org/00wqzbn30', 'no_lang_code', 1, 'https://ror.org/00wqzbn30 KGHM Polska Miedź (Poland)'),
(28918, 'https://ror.org/02gtcat87', 'no_lang_code', 1, 'https://ror.org/02gtcat87 Focus Microwaves (Canada)'),
(28919, 'https://ror.org/04hezhj72', 'no_lang_code', 1, 'https://ror.org/04hezhj72 Fibercryst (France)'),
(28920, 'https://ror.org/0113m2308', 'no_lang_code', 1, 'https://ror.org/0113m2308 General Dynamics (Canada)'),
(28921, 'https://ror.org/00jqraq76', 'fr', 1, 'https://ror.org/00jqraq76 Fondation de la Faune du Québec'),
(28922, 'https://ror.org/04ap8m727', 'no_lang_code', 1, 'https://ror.org/04ap8m727 FiberSensing (Portugal)'),
(28923, 'https://ror.org/04ybhpd24', 'no_lang_code', 1, 'https://ror.org/04ybhpd24 Enbio (United States)'),
(28924, 'https://ror.org/03es0vc41', 'no_lang_code', 1, 'https://ror.org/03es0vc41 FiberTech Optica (Canada)'),
(28925, 'https://ror.org/00gqn7179', 'no_lang_code', 1, 'https://ror.org/00gqn7179 Gorman Bros Lumber (Canada)'),
(28926, 'https://ror.org/05dxk7523', 'no_lang_code', 1, 'https://ror.org/05dxk7523 Fibics (Canada)'),
(28927, 'https://ror.org/017w8ej57', 'no_lang_code', 1, 'https://ror.org/017w8ej57 Genetec (United States)'),
(28928, 'https://ror.org/03h1r4p85', 'no_lang_code', 1, 'https://ror.org/03h1r4p85 Film Odyssey (United States)'),
(28929, 'https://ror.org/05addyx39', 'no_lang_code', 1, 'https://ror.org/05addyx39 GeneFirst (United Kingdom)'),
(28930, 'https://ror.org/0374ebf38', 'en', 1, 'https://ror.org/0374ebf38 FilmOntario'),
(28931, 'https://ror.org/05yekth54', 'no_lang_code', 1, 'https://ror.org/05yekth54 Finning (Canada)'),
(28932, 'https://ror.org/00xr6ce64', 'no_lang_code', 1, 'https://ror.org/00xr6ce64 Food Dudes (United Kingdom)'),
(28933, 'https://ror.org/0101kca69', 'no_lang_code', 1, 'https://ror.org/0101kca69 Grace (Canada)'),
(28934, 'https://ror.org/05p20a626', 'en', 1, 'https://ror.org/05p20a626 Food Standards Agency'),
(28935, 'https://ror.org/03td1t893', 'no_lang_code', 1, 'https://ror.org/03td1t893 Hitachi (Canada)'),
(28936, 'https://ror.org/04h38r646', 'en', 1, 'https://ror.org/04h38r646 FoodDrinkEurope'),
(28937, 'https://ror.org/04pmctd13', 'en', 1, 'https://ror.org/04pmctd13 Haliburton Forest & Wild Life Reserve'),
(28938, 'https://ror.org/02ygftm07', 'no_lang_code', 1, 'https://ror.org/02ygftm07 Pharmachem Laboratories (United States)'),
(28939, 'https://ror.org/017b5z472', 'en', 1, 'https://ror.org/017b5z472 Halifax Regional Water Commission'),
(28940, 'https://ror.org/00v84va72', 'no_lang_code', 1, 'https://ror.org/00v84va72 Ford Motor Company (Canada) Ford du Canada Limitée'),
(28941, 'https://ror.org/03v918835', 'no_lang_code', 1, 'https://ror.org/03v918835 Grainseed (United Kingdom)'),
(28942, 'https://ror.org/02vzzw378', 'en', 1, 'https://ror.org/02vzzw378 Hancock Shaker Village'),
(28943, 'https://ror.org/004735h66', 'en', 1, 'https://ror.org/004735h66 Hydrogen Link Denmark Association'),
(28944, 'https://ror.org/023ckfc30', 'en', 1, 'https://ror.org/023ckfc30 Grand River Conservation Authority'),
(28945, 'https://ror.org/049b7hm56', 'en', 1, 'https://ror.org/049b7hm56 Horse Council BC'),
(28946, 'https://ror.org/01qa3q834', 'no_lang_code', 1, 'https://ror.org/01qa3q834 Hardy Pictures (United Kingdom)'),
(28947, 'https://ror.org/01ye2hc74', 'en', 1, 'https://ror.org/01ye2hc74 Grape Growers of Ontario'),
(28948, 'https://ror.org/03rj6e862', 'no_lang_code', 1, 'https://ror.org/03rj6e862 Graphenea (Spain)'),
(28949, 'https://ror.org/05sfwv538', 'en', 1, 'https://ror.org/05sfwv538 Great Lakes Fishery Commission'),
(28950, 'https://ror.org/00r4d5d70', 'no_lang_code', 1, 'https://ror.org/00r4d5d70 Hazelett (United States)'),
(28951, 'https://ror.org/05d8hvk64', 'en', 1, 'https://ror.org/05d8hvk64 Global Medical Excellence Cluster'),
(28952, 'https://ror.org/02wx5p869', 'no_lang_code', 1, 'https://ror.org/02wx5p869 Howden (United Kingdom)'),
(28953, 'https://ror.org/04asd3g14', 'en', 1, 'https://ror.org/04asd3g14 Greater Portland Landmarks'),
(28954, 'https://ror.org/01v82v626', 'no_lang_code', 1, 'https://ror.org/01v82v626 FoundCare'),
(28955, 'https://ror.org/026venb53', 'no_lang_code', 1, 'https://ror.org/026venb53 Huawei Technologies (Canada)'),
(28956, 'https://ror.org/04gacff49', 'no_lang_code', 1, 'https://ror.org/04gacff49 GreenValue (Switzerland)'),
(28957, 'https://ror.org/02vx8p498', 'no_lang_code', 1, 'https://ror.org/02vx8p498 Hudbay Minerals (Canada)'),
(28958, 'https://ror.org/02hsr5c48', 'no_lang_code', 1, 'https://ror.org/02hsr5c48 ImmerVision (Canada)'),
(28959, 'https://ror.org/03e48bt75', 'no_lang_code', 1, 'https://ror.org/03e48bt75 Heat Trace (United Kingdom)'),
(28960, 'https://ror.org/025q90g47', 'no_lang_code', 1, 'https://ror.org/025q90g47 Grieg Seafood (Canada)'),
(28961, 'https://ror.org/04b0s8g05', 'no_lang_code', 1, 'https://ror.org/04b0s8g05 Husky Energy (Canada)'),
(28962, 'https://ror.org/014xzez86', 'no_lang_code', 1, 'https://ror.org/014xzez86 Immunocore (United Kingdom)'),
(28963, 'https://ror.org/04mypf355', 'en', 1, 'https://ror.org/04mypf355 HeliCat Canada'),
(28964, 'https://ror.org/00kdyte44', 'no_lang_code', 1, 'https://ror.org/00kdyte44 Huys Industries (Canada)'),
(28965, 'https://ror.org/01rr16k76', 'en', 1, 'https://ror.org/01rr16k76 Friends School of Baltimore'),
(28966, 'https://ror.org/02j8w6q81', 'no_lang_code', 1, 'https://ror.org/02j8w6q81 Gruppo Formula (Italy)'),
(28967, 'https://ror.org/05vagkn68', 'cs', 1, 'https://ror.org/05vagkn68 Planetárium Praha'),
(28968, 'https://ror.org/02tm9s162', 'en', 1, 'https://ror.org/02tm9s162 Imperial War Museum'),
(28969, 'https://ror.org/00p77cm62', 'no_lang_code', 1, 'https://ror.org/00p77cm62 Fugro (United Kingdom)'),
(28970, 'https://ror.org/00h7q8720', 'no_lang_code', 1, 'https://ror.org/00h7q8720 Guelph Utility Pole (Canada)'),
(28971, 'https://ror.org/02y720j55', 'no_lang_code', 1, 'https://ror.org/02y720j55 Guild Hall'),
(28972, 'https://ror.org/002jd6n35', 'en', 1, 'https://ror.org/002jd6n35 Gulf of Mexico University Research Collaborative'),
(28973, 'https://ror.org/00neqwx86', 'no_lang_code', 1, 'https://ror.org/00neqwx86 Hydromantis Environmental Software Solutions (Canada)'),
(28974, 'https://ror.org/045xnm641', 'no_lang_code', 1, 'https://ror.org/045xnm641 GlycoScientific (United States)'),
(28975, 'https://ror.org/04f5ngh80', 'en', 1, 'https://ror.org/04f5ngh80 Independent Broadcasting Associates'),
(28976, 'https://ror.org/05gggm169', 'en', 1, 'https://ror.org/05gggm169 HelpAge India'),
(28977, 'https://ror.org/04hkp7874', 'no_lang_code', 1, 'https://ror.org/04hkp7874 Eurorad (France)'),
(28978, 'https://ror.org/022d46z41', 'no_lang_code', 1, 'https://ror.org/022d46z41 Kraft Heinz (Canada)'),
(28979, 'https://ror.org/05c4twb82', 'no_lang_code', 1, 'https://ror.org/05c4twb82 AMS (Finland)'),
(28980, 'https://ror.org/02syy6g64', 'no_lang_code', 1, 'https://ror.org/02syy6g64 Armacell (Canada)'),
(28981, 'https://ror.org/051fk5x88', 'no_lang_code', 1, 'https://ror.org/051fk5x88 Heptares Therapeutics (United Kingdom)'),
(28982, 'https://ror.org/0173t5b71', 'no_lang_code', 1, 'https://ror.org/0173t5b71 Hyteon (Canada)'),
(28983, 'https://ror.org/03snehy11', 'fr', 1, 'https://ror.org/03snehy11 Institut de Recherche et de Développement en Agroenvironnement Institute for Research and Development in Agri-Environment'),
(28984, 'https://ror.org/059z1vb17', 'no_lang_code', 1, 'https://ror.org/059z1vb17 Hackett Publishing (United States)'),
(28985, 'https://ror.org/02tm5n709', 'no_lang_code', 1, 'https://ror.org/02tm5n709 Heraeus (Canada)'),
(28986, 'https://ror.org/025pqzv51', 'en', 1, 'https://ror.org/025pqzv51 QMedic'),
(28987, 'https://ror.org/04f919z92', 'no_lang_code', 1, 'https://ror.org/04f919z92 Perrigo (Belgium)'),
(28988, 'https://ror.org/057b2ek35', 'en', 1, 'https://ror.org/057b2ek35 Intensive Care National Audit & Research Centre'),
(28989, 'https://ror.org/0128dmh12', 'en', 1, 'https://ror.org/0128dmh12 Hertfordshire Partnership University NHS Foundation Trust'),
(28990, 'https://ror.org/04cxwzs93', 'en', 1, 'https://ror.org/04cxwzs93 IT Foundation for the Visually Impaired'),
(28991, 'https://ror.org/0333dtq15', 'no_lang_code', 1, 'https://ror.org/0333dtq15 Hewlett-Packard (Canada)'),
(28992, 'https://ror.org/02q0s1x22', 'no_lang_code', 1, 'https://ror.org/02q0s1x22 Hitachi Global Storage Technologies (United States)'),
(28993, 'https://ror.org/03jes3672', 'hu', 1, 'https://ror.org/03jes3672 Informatikai, Távközlési és Elektronikai Vállalkozások Szövetsége'),
(28994, 'https://ror.org/0267nkd62', 'en', 1, 'https://ror.org/0267nkd62 Higher Education Academy'),
(28995, 'https://ror.org/00qjb4236', 'en', 1, 'https://ror.org/00qjb4236 Association Canadienne de la Technologie de l''Information Information Technology Association of Canada'),
(28996, 'https://ror.org/05mn41x71', 'no_lang_code', 1, 'https://ror.org/05mn41x71 Highview Power Storage (United Kingdom)'),
(28997, 'https://ror.org/0235ynz50', 'no_lang_code', 1, 'https://ror.org/0235ynz50 Informer (Greece)'),
(28998, 'https://ror.org/00p3k1n22', 'no_lang_code', 1, 'https://ror.org/00p3k1n22 AkzoNobel (Canada)'),
(28999, 'https://ror.org/01a8wwc80', 'no_lang_code', 1, 'https://ror.org/01a8wwc80 Rutter (Canada)'),
(29000, 'https://ror.org/02168q889', 'no_lang_code', 1, 'https://ror.org/02168q889 InteraXon (Canada)'),
(29001, 'https://ror.org/01xx86r77', 'no_lang_code', 1, 'https://ror.org/01xx86r77 Biolin Scientific (United Kingdom)'),
(29002, 'https://ror.org/030vh3375', 'no_lang_code', 1, 'https://ror.org/030vh3375 IDELIX Software (Canada)'),
(29003, 'https://ror.org/03f6tf726', 'en', 1, 'https://ror.org/03f6tf726 Initiative for Automotive Manufacturing Innovation'),
(29004, 'https://ror.org/0321tjn48', 'es', 1, 'https://ror.org/0321tjn48 Instituto de Formación y Estudios Sociales'),
(29005, 'https://ror.org/00691gs61', 'en', 1, 'https://ror.org/00691gs61 Institute for Research and Development'),
(29006, 'https://ror.org/04bac2365', 'en', 1, 'https://ror.org/04bac2365 Interface Symposia'),
(29007, 'https://ror.org/04n95h407', 'it', 1, 'https://ror.org/04n95h407 Istituto Italiano per l''Africa e l''Oriente'),
(29008, 'https://ror.org/01ew1f053', 'no_lang_code', 1, 'https://ror.org/01ew1f053 Genias Software (Germany)'),
(29009, 'https://ror.org/0375ygm12', 'no_lang_code', 1, 'https://ror.org/0375ygm12 Constellation Brands (Canada)'),
(29010, 'https://ror.org/040cjbv15', 'en', 1, 'https://ror.org/040cjbv15 Interior Lumber Manufacturers Association'),
(29011, 'https://ror.org/00p8x9d62', 'no_lang_code', 1, 'https://ror.org/00p8x9d62 Kemira (Canada)'),
(29012, 'https://ror.org/024efz335', 'no_lang_code', 1, 'https://ror.org/024efz335 Innovative Energy Solution (United States)'),
(29013, 'https://ror.org/00mrdc589', 'en', 1, 'https://ror.org/00mrdc589 Institute of Clinical Research'),
(29014, 'https://ror.org/02s9h8g68', 'ro', 1, 'https://ror.org/02s9h8g68 Poliția de Frontieră Română'),
(29015, 'https://ror.org/04qamdm65', 'en', 1, 'https://ror.org/04qamdm65 International Cinematographers Guild'),
(29016, 'https://ror.org/01h7phx34', 'no_lang_code', 1, 'https://ror.org/01h7phx34 ITS Electronics (Canada)'),
(29017, 'https://ror.org/0302b4677', 'en', 1, 'https://ror.org/0302b4677 British Academy'),
(29018, 'https://ror.org/0558bzs02', 'no_lang_code', 1, 'https://ror.org/0558bzs02 Iron Ore Company (Canada)'),
(29019, 'https://ror.org/02x2xf445', 'en', 1, 'https://ror.org/02x2xf445 Institute of Nature Conservation Instytut Ochrony Przyrody'),
(29020, 'https://ror.org/00gvcmw36', 'en', 1, 'https://ror.org/00gvcmw36 Kent County Council'),
(29021, 'https://ror.org/0298xnj14', 'en', 1, 'https://ror.org/0298xnj14 Kentucky Educational Television'),
(29022, 'https://ror.org/037na0x96', 'no_lang_code', 1, 'https://ror.org/037na0x96 Kerr Wood Leidal Associates (Canada)'),
(29023, 'https://ror.org/02hkywq03', 'no_lang_code', 1, 'https://ror.org/02hkywq03 Kinectrics (Canada)'),
(29024, 'https://ror.org/01g2jxv60', 'no_lang_code', 1, 'https://ror.org/01g2jxv60 KPM Industries (Canada)'),
(29025, 'https://ror.org/00gg9m594', 'en', 1, 'https://ror.org/00gg9m594 Landscape Institute'),
(29026, 'https://ror.org/02bax5p58', 'no_lang_code', 1, 'https://ror.org/02bax5p58 Ionic Systems (United States)'),
(29027, 'https://ror.org/00tmnnm82', 'no_lang_code', 1, 'https://ror.org/00tmnnm82 Kingston Software Factory (Canada)'),
(29028, 'https://ror.org/012bjmg46', 'no_lang_code', 1, 'https://ror.org/012bjmg46 Kinova (Canada)'),
(29029, 'https://ror.org/01rvfwh35', 'no_lang_code', 1, 'https://ror.org/01rvfwh35 Laricina Energy (Canada)'),
(29030, 'https://ror.org/054tbbe35', 'en', 1, 'https://ror.org/054tbbe35 International Council on Mining and Metals'),
(29031, 'https://ror.org/044gr8720', 'en', 1, 'https://ror.org/044gr8720 Heythrop College, University of London'),
(29032, 'https://ror.org/001htc678', 'en', 1, 'https://ror.org/001htc678 Ravensbourne University London'),
(29033, 'https://ror.org/032p34689', 'no_lang_code', 1, 'https://ror.org/032p34689 KnowCharge (Canada)'),
(29034, 'https://ror.org/00zjtrn44', 'no_lang_code', 1, 'https://ror.org/00zjtrn44 Jackson Laboratories (India)'),
(29035, 'https://ror.org/00fdawj48', 'en', 1, 'https://ror.org/00fdawj48 Leo Baeck Institute'),
(29036, 'https://ror.org/050tq6t62', 'en', 1, 'https://ror.org/050tq6t62 International Solar Energy Research Center Konstanz'),
(29037, 'https://ror.org/042ssda85', 'no_lang_code', 1, 'https://ror.org/042ssda85 Chantiers Chibougamau (Canada)'),
(29038, 'https://ror.org/02zbnnb30', 'no_lang_code', 1, 'https://ror.org/02zbnnb30 Knowledge Broadband Services (Greece)'),
(29039, 'https://ror.org/00rceb094', 'no_lang_code', 1, 'https://ror.org/00rceb094 International Submarine Engineering (Canada)'),
(29040, 'https://ror.org/02jtc9v47', 'no_lang_code', 1, 'https://ror.org/02jtc9v47 Norleaf Networks (Canada)'),
(29041, 'https://ror.org/03586p284', 'no_lang_code', 1, 'https://ror.org/03586p284 J. D. Irving (Canada)'),
(29042, 'https://ror.org/046v2xt32', 'no_lang_code', 1, 'https://ror.org/046v2xt32 Lexicon Technologies (United States)'),
(29043, 'https://ror.org/0144hyz50', 'no_lang_code', 1, 'https://ror.org/0144hyz50 Island Timberlands (Canada)'),
(29044, 'https://ror.org/00scm8y78', 'en', 1, 'https://ror.org/00scm8y78 Life Science Governance Institute'),
(29045, 'https://ror.org/01q8wz079', 'no_lang_code', 1, 'https://ror.org/01q8wz079 Komet Group (Austria)'),
(29046, 'https://ror.org/05191c058', 'en', 1, 'https://ror.org/05191c058 Japan Society'),
(29047, 'https://ror.org/046ep5e79', 'no_lang_code', 1, 'https://ror.org/046ep5e79 KGS Group (Canada)'),
(29048, 'https://ror.org/01rbmhr75', 'en', 1, 'https://ror.org/01rbmhr75 Istanbul Metropolitan Municipality'),
(29049, 'https://ror.org/05f1qm765', 'en', 1, 'https://ror.org/05f1qm765 Kopint-Tárki Institute for Economic Research'),
(29050, 'https://ror.org/00hm8vh37', 'no_lang_code', 1, 'https://ror.org/00hm8vh37 Tolko (Canada)'),
(29051, 'https://ror.org/022sa0k38', 'no_lang_code', 1, 'https://ror.org/022sa0k38 Kronos (Canada)'),
(29052, 'https://ror.org/02wpr4m51', 'no_lang_code', 1, 'https://ror.org/02wpr4m51 Kumetrix (United States)'),
(29053, 'https://ror.org/00wkyd235', 'no_lang_code', 1, 'https://ror.org/00wkyd235 Louisiana-Pacific (Canada)'),
(29054, 'https://ror.org/04jrey505', 'no_lang_code', 1, 'https://ror.org/04jrey505 Kurt J. Lesker (United Kingdom)'),
(29055, 'https://ror.org/01yjd3664', 'no_lang_code', 1, 'https://ror.org/01yjd3664 Link Microtek (United Kingdom)'),
(29056, 'https://ror.org/00n1x4x37', 'no_lang_code', 1, 'https://ror.org/00n1x4x37 Linnaeus Plant Sciences (Canada)'),
(29057, 'https://ror.org/033g7w111', 'no_lang_code', 1, 'https://ror.org/033g7w111 Accel Brands (United States)'),
(29058, 'https://ror.org/03qqngv96', 'en', 1, 'https://ror.org/03qqngv96 Living Streets'),
(29059, 'https://ror.org/035gbh774', 'no_lang_code', 1, 'https://ror.org/035gbh774 Lumerical Solutions (Canada)'),
(29060, 'https://ror.org/02ea4nx72', 'en', 1, 'https://ror.org/02ea4nx72 East Asian Observatory'),
(29061, 'https://ror.org/04yr2wm37', 'no_lang_code', 1, 'https://ror.org/04yr2wm37 Logrotex (Spain)'),
(29062, 'https://ror.org/04ptp8872', 'en', 1, 'https://ror.org/04ptp8872 London Centre for Nanotechnology'),
(29063, 'https://ror.org/028pagn69', 'en', 1, 'https://ror.org/028pagn69 London Metropolitan Archives'),
(29064, 'https://ror.org/04chpf767', 'fr', 1, 'https://ror.org/04chpf767 Société de Développement de I''industrie Maricole'),
(29065, 'https://ror.org/00fh0k280', 'en', 1, 'https://ror.org/00fh0k280 Morning Sun'),
(29066, 'https://ror.org/04h2r8894', 'no_lang_code', 1, 'https://ror.org/04h2r8894 LuminUltra Technologies (Canada)'),
(29067, 'https://ror.org/05t4zqc79', 'no_lang_code', 1, 'https://ror.org/05t4zqc79 GeoInformation (United Kingdom)'),
(29068, 'https://ror.org/03mj2b997', 'no_lang_code', 1, 'https://ror.org/03mj2b997 Hutchinson (Canada)'),
(29069, 'https://ror.org/00jz0gc70', 'no_lang_code', 1, 'https://ror.org/00jz0gc70 JV Driver Projects (Canada)'),
(29070, 'https://ror.org/048m3cq30', 'no_lang_code', 1, 'https://ror.org/048m3cq30 Paladin Labs (Canada)'),
(29071, 'https://ror.org/015yp6v32', 'en', 1, 'https://ror.org/015yp6v32 Maritime Fishermen''s Union'),
(29072, 'https://ror.org/033rwdt55', 'no_lang_code', 1, 'https://ror.org/033rwdt55 McAsphalt Industries (Canada)'),
(29073, 'https://ror.org/03hgpat49', 'no_lang_code', 1, 'https://ror.org/03hgpat49 Kalesnikoff Lumber (Canada)'),
(29074, 'https://ror.org/0587xtk95', 'no_lang_code', 1, 'https://ror.org/0587xtk95 Kalite Sistem Group (Turkey)'),
(29075, 'https://ror.org/0371kdw96', 'en', 1, 'https://ror.org/0371kdw96 The Liverpool Institute for Performing Arts'),
(29076, 'https://ror.org/00ejeex29', 'en', 1, 'https://ror.org/00ejeex29 Institute of Physical-Chemical and Biological Problems in Soil Science Федеральное государственное бюджетное учреждение науки Институт физико-химических и биологических проблем почвоведения Российской академии наук'),
(29077, 'https://ror.org/04cn82p68', 'no_lang_code', 1, 'https://ror.org/04cn82p68 Manning Diversified Forest Products (Canada)'),
(29078, 'https://ror.org/053jbrv80', 'en', 1, 'https://ror.org/053jbrv80 Manitoba Forage Seed Association'),
(29079, 'https://ror.org/011pv9p44', 'en', 1, 'https://ror.org/011pv9p44 Kootenay Association for Science & Technology'),
(29080, 'https://ror.org/03hq8dt79', 'no_lang_code', 1, 'https://ror.org/03hq8dt79 Materium Innovations (Canada)'),
(29081, 'https://ror.org/05gzybf15', 'en', 1, 'https://ror.org/05gzybf15 Lake Huron & Elgin Area Primary Water Supply Systems'),
(29082, 'https://ror.org/05w5dvb13', 'no_lang_code', 1, 'https://ror.org/05w5dvb13 General Society of Surveillance SGS (Canada)'),
(29083, 'https://ror.org/0236x7636', 'no_lang_code', 1, 'https://ror.org/0236x7636 KBL Group International (United States)'),
(29084, 'https://ror.org/031yy4354', 'no_lang_code', 1, 'https://ror.org/031yy4354 MediWiSe (United Kingdom)'),
(29085, 'https://ror.org/023egja51', 'no_lang_code', 1, 'https://ror.org/023egja51 Lyndon Fish Hatcheries'),
(29086, 'https://ror.org/04za2jd50', 'no_lang_code', 1, 'https://ror.org/04za2jd50 Mabarex (Canada)'),
(29087, 'https://ror.org/00texw081', 'no_lang_code', 1, 'https://ror.org/00texw081 Magellium (United Kingdom)'),
(29088, 'https://ror.org/04w25gn33', 'no_lang_code', 1, 'https://ror.org/04w25gn33 Lambert Peat Moss (Canada)'),
(29089, 'https://ror.org/03f4rhz75', 'no_lang_code', 1, 'https://ror.org/03f4rhz75 Metamaterial Technologies (Canada)'),
(29090, 'https://ror.org/04sbdgk59', 'no_lang_code', 1, 'https://ror.org/04sbdgk59 Medicyte (Germany)'),
(29091, 'https://ror.org/0092sq867', 'no_lang_code', 1, 'https://ror.org/0092sq867 MAHLE Filter Systems (Canada)'),
(29092, 'https://ror.org/03338g593', 'no_lang_code', 1, 'https://ror.org/03338g593 Lamda Technology (Greece)'),
(29093, 'https://ror.org/02pscrx27', 'no_lang_code', 1, 'https://ror.org/02pscrx27 Karolinska Development (Sweden)'),
(29094, 'https://ror.org/01jjrt576', 'no_lang_code', 1, 'https://ror.org/01jjrt576 Sun Gro Horticulture (Canada)'),
(29095, 'https://ror.org/04wxx2b44', 'no_lang_code', 1, 'https://ror.org/04wxx2b44 Maibec (Canada)'),
(29096, 'https://ror.org/059b4v909', 'en', 1, 'https://ror.org/059b4v909 Michigan Manufacturing Technology Center'),
(29097, 'https://ror.org/00cxa0895', 'no_lang_code', 1, 'https://ror.org/00cxa0895 InterDigital (Canada)'),
(29098, 'https://ror.org/00hw5ad77', 'no_lang_code', 1, 'https://ror.org/00hw5ad77 Cermaq (Canada)'),
(29099, 'https://ror.org/02y751y19', 'no_lang_code', 1, 'https://ror.org/02y751y19 Kellogg''s (Canada)'),
(29100, 'https://ror.org/043r2f182', 'no_lang_code', 1, 'https://ror.org/043r2f182 IDEAconsult'),
(29101, 'https://ror.org/01bzmx018', 'no_lang_code', 1, 'https://ror.org/01bzmx018 Morgan Solar (Canada)'),
(29102, 'https://ror.org/01mwnwc77', 'en', 1, 'https://ror.org/01mwnwc77 Manchester Art Gallery'),
(29103, 'https://ror.org/05391qc94', 'en', 1, 'https://ror.org/05391qc94 National Coal Mining Museum for England'),
(29104, 'https://ror.org/01gdspj25', 'en', 1, 'https://ror.org/01gdspj25 Manitoba Canola Growers Association'),
(29105, 'https://ror.org/04k09rt14', 'en', 1, 'https://ror.org/04k09rt14 National Council on Aging'),
(29106, 'https://ror.org/036g4a137', 'en', 1, 'https://ror.org/036g4a137 Manitoba Aerospace Association'),
(29107, 'https://ror.org/05b0j5x36', 'en', 1, 'https://ror.org/05b0j5x36 Mother and Infant Research Activities'),
(29108, 'https://ror.org/008yned87', 'en', 1, 'https://ror.org/008yned87 National Farmers Union'),
(29109, 'https://ror.org/01c7dcx25', 'no_lang_code', 1, 'https://ror.org/01c7dcx25 Motion Metrics International (Canada)'),
(29110, 'https://ror.org/041y97z83', 'no_lang_code', 1, 'https://ror.org/041y97z83 Mike Wiegele Helicopter Skiing (Canada)'),
(29111, 'https://ror.org/05ev63k17', 'no_lang_code', 1, 'https://ror.org/05ev63k17 Mikro-Tek (Canada)'),
(29112, 'https://ror.org/02byc7177', 'no_lang_code', 1, 'https://ror.org/02byc7177 Motor Design (United Kingdom)'),
(29113, 'https://ror.org/038qb7y28', 'no_lang_code', 1, 'https://ror.org/038qb7y28 Millar Western (Canada)'),
(29114, 'https://ror.org/047zhzq42', 'no_lang_code', 1, 'https://ror.org/047zhzq42 Motorola (Canada)'),
(29115, 'https://ror.org/02fp2rz53', 'en', 1, 'https://ror.org/02fp2rz53 New Hampshire Farm Museum'),
(29116, 'https://ror.org/0540t6b85', 'no_lang_code', 1, 'https://ror.org/0540t6b85 Metaara Medical Technologies (Canada)'),
(29117, 'https://ror.org/02bck4b72', 'no_lang_code', 1, 'https://ror.org/02bck4b72 AMT Die Casting (Canada) Moulage sous pression AMT'),
(29118, 'https://ror.org/026p72y65', 'no_lang_code', 1, 'https://ror.org/026p72y65 Material (Belgium)'),
(29119, 'https://ror.org/002fy4y97', 'no_lang_code', 1, 'https://ror.org/002fy4y97 Metso (Canada)'),
(29120, 'https://ror.org/02zqq5p14', 'no_lang_code', 1, 'https://ror.org/02zqq5p14 Michelin (Canada)'),
(29121, 'https://ror.org/05b85tk06', 'no_lang_code', 1, 'https://ror.org/05b85tk06 Microcide (United States)'),
(29122, 'https://ror.org/050d4yq46', 'fr', 1, 'https://ror.org/050d4yq46 Desjardins Mouvement des caisses Desjardins'),
(29123, 'https://ror.org/05ftq9h16', 'no_lang_code', 1, 'https://ror.org/05ftq9h16 Micromolding Solutions (Canada)'),
(29124, 'https://ror.org/01rm6ad42', 'no_lang_code', 1, 'https://ror.org/01rm6ad42 Nalcor Energy (Canada)'),
(29125, 'https://ror.org/0553q3w79', 'en', 1, 'https://ror.org/0553q3w79 National Society for the Prevention of Cruelty to Children'),
(29126, 'https://ror.org/01mqvzc02', 'en', 1, 'https://ror.org/01mqvzc02 Newfoundland Aquaculture Industry Association'),
(29127, 'https://ror.org/023s10w93', 'en', 1, 'https://ror.org/023s10w93 Ministry of Sustainable Development, Environment and the Fight against Climate Change'),
(29128, 'https://ror.org/04ww0w091', 'no_lang_code', 1, 'https://ror.org/04ww0w091 Microsoft (India)'),
(29129, 'https://ror.org/04j4a6x59', 'en', 1, 'https://ror.org/04j4a6x59 MRC Lifecourse Epidemiology Unit'),
(29130, 'https://ror.org/03mp67a46', 'en', 1, 'https://ror.org/03mp67a46 Centre des Technologies du Gaz Naturel Natural Gas Technologies Centre'),
(29131, 'https://ror.org/01zg1tt02', 'en', 1, 'https://ror.org/01zg1tt02 MRC Protein Phosphorylation and Ubiquitylation Unit'),
(29132, 'https://ror.org/0021ws843', 'en', 1, 'https://ror.org/0021ws843 Ministry of Community Safety and Correctional Services Ministère de la Sécurité communautaire et des Services correctionnels'),
(29133, 'https://ror.org/057qbe640', 'en', 1, 'https://ror.org/057qbe640 Southern Regional Assembly'),
(29134, 'https://ror.org/05fp2zb41', 'en', 1, 'https://ror.org/05fp2zb41 Midwest Biomedical Research Foundation'),
(29135, 'https://ror.org/0168eqd84', 'no_lang_code', 1, 'https://ror.org/0168eqd84 North American Construction Group (Canada)'),
(29136, 'https://ror.org/03v6x9115', 'en', 1, 'https://ror.org/03v6x9115 Ministry of Health and Public Hygiene'),
(29137, 'https://ror.org/05503d050', 'en', 1, 'https://ror.org/05503d050 Ministry of the Interior of the Republic of Latvia'),
(29138, 'https://ror.org/05rbrm011', 'no_lang_code', 1, 'https://ror.org/05rbrm011 Multimatic (Canada)'),
(29139, 'https://ror.org/00x3xyg66', 'en', 1, 'https://ror.org/00x3xyg66 North Staffordshire Clinical Commissioning Group'),
(29140, 'https://ror.org/01tmp3s87', 'no_lang_code', 1, 'https://ror.org/01tmp3s87 ModuleWorks (Romania)'),
(29141, 'https://ror.org/003b9xn19', 'no_lang_code', 1, 'https://ror.org/003b9xn19 Neptec Design Group (Canada)'),
(29142, 'https://ror.org/000nz1091', 'no_lang_code', 1, 'https://ror.org/000nz1091 Modine Manufacturing (United States)'),
(29143, 'https://ror.org/0199b8691', 'no_lang_code', 1, 'https://ror.org/0199b8691 Nestlé (Canada)'),
(29144, 'https://ror.org/01gpy1v41', 'no_lang_code', 1, 'https://ror.org/01gpy1v41 ExxonMobil (Canada)'),
(29145, 'https://ror.org/00dz87637', 'no_lang_code', 1, 'https://ror.org/00dz87637 Nexterra (Canada)'),
(29146, 'https://ror.org/01gfeyd95', 'en', 1, 'https://ror.org/01gfeyd95 Northumbria Healthcare NHS Foundation Trust'),
(29147, 'https://ror.org/04ez3hr33', 'en', 1, 'https://ror.org/04ez3hr33 Athens City'),
(29148, 'https://ror.org/03kq24308', 'en', 1, 'https://ror.org/03kq24308 NHS Ayrshire and Arran'),
(29149, 'https://ror.org/00j4a0m56', 'no_lang_code', 1, 'https://ror.org/00j4a0m56 Mistik Management (Canada)'),
(29150, 'https://ror.org/0031n1577', 'en', 1, 'https://ror.org/0031n1577 Leeds Arts University'),
(29151, 'https://ror.org/001vezc41', 'en', 1, 'https://ror.org/001vezc41 Administration régionale Kativik Kativik Regional Government'),
(29152, 'https://ror.org/023h32w18', 'no_lang_code', 1, 'https://ror.org/023h32w18 McLaren Honda (United Kingdom)'),
(29153, 'https://ror.org/00bw19968', 'en', 1, 'https://ror.org/00bw19968 Molly Brown House Museum'),
(29154, 'https://ror.org/03n8at419', 'no_lang_code', 1, 'https://ror.org/03n8at419 Monitor Coatings (United Kingdom)'),
(29155, 'https://ror.org/011ye7p58', 'en', 1, 'https://ror.org/011ye7p58 NHS Education for Scotland'),
(29156, 'https://ror.org/02q2m1930', 'no_lang_code', 1, 'https://ror.org/02q2m1930 Monsanto (Canada)'),
(29157, 'https://ror.org/049prb569', 'en', 1, 'https://ror.org/049prb569 NHS Lanarkshire'),
(29158, 'https://ror.org/01r49ds17', 'en', 1, 'https://ror.org/01r49ds17 Nova Scotia Department of Agriculture'),
(29159, 'https://ror.org/02f9pmn17', 'no_lang_code', 1, 'https://ror.org/02f9pmn17 Gibson Energy (Canada)'),
(29160, 'https://ror.org/02r8axs93', 'no_lang_code', 1, 'https://ror.org/02r8axs93 NeuroRx Research (Canada)'),
(29161, 'https://ror.org/05at2ry89', 'en', 1, 'https://ror.org/05at2ry89 Nichols House Museum'),
(29162, 'https://ror.org/009yzbm74', 'en', 1, 'https://ror.org/009yzbm74 Office of Gas and Electricity Markets'),
(29163, 'https://ror.org/01hkbh902', 'en', 1, 'https://ror.org/01hkbh902 Scottish Rite Masonic Museum and Library'),
(29164, 'https://ror.org/016y8yf14', 'no_lang_code', 1, 'https://ror.org/016y8yf14 OLA Display (Canada)'),
(29165, 'https://ror.org/055w1jz52', 'no_lang_code', 1, 'https://ror.org/055w1jz52 Sosei Group Corporation (United Kingdom)'),
(29166, 'https://ror.org/02jsxtf08', 'no_lang_code', 1, 'https://ror.org/02jsxtf08 Pacific Street Films (United States)'),
(29167, 'https://ror.org/00shj4079', 'no_lang_code', 1, 'https://ror.org/00shj4079 Noveltis (France)'),
(29168, 'https://ror.org/05y5f7345', 'en', 1, 'https://ror.org/05y5f7345 Oxfordshire Clinical Commissioning Group'),
(29169, 'https://ror.org/04rvgdt43', 'no_lang_code', 1, 'https://ror.org/04rvgdt43 NquiringMinds (United Kingdom)'),
(29170, 'https://ror.org/00bgn4761', 'no_lang_code', 1, 'https://ror.org/00bgn4761 MW Canada (Canada)'),
(29171, 'https://ror.org/03snw9541', 'no_lang_code', 1, 'https://ror.org/03snw9541 Pageau Morel and Associates (Canada)'),
(29172, 'https://ror.org/00wjr1b41', 'no_lang_code', 1, 'https://ror.org/00wjr1b41 Nu-Tech Precision Metals (Canada)'),
(29173, 'https://ror.org/04xf33703', 'no_lang_code', 1, 'https://ror.org/04xf33703 Nalco (Canada)'),
(29174, 'https://ror.org/02m14pj94', 'no_lang_code', 1, 'https://ror.org/02m14pj94 Palcan Energy Corporation (Canada)'),
(29175, 'https://ror.org/04gswc637', 'no_lang_code', 1, 'https://ror.org/04gswc637 STR Europe (France)'),
(29176, 'https://ror.org/04830x266', 'en', 1, 'https://ror.org/04830x266 Paracel Laboratories'),
(29177, 'https://ror.org/051eek848', 'no_lang_code', 1, 'https://ror.org/051eek848 Paradigm Productions (United States)'),
(29178, 'https://ror.org/033zd2x30', 'no_lang_code', 1, 'https://ror.org/033zd2x30 O/E Land (Canada)'),
(29179, 'https://ror.org/05t2esn81', 'no_lang_code', 1, 'https://ror.org/05t2esn81 ParetoLogic (Canada)'),
(29180, 'https://ror.org/0530w0388', 'no_lang_code', 1, 'https://ror.org/0530w0388 Object Research Systems (Canada)'),
(29181, 'https://ror.org/008s0t457', 'no_lang_code', 1, 'https://ror.org/008s0t457 Nokia (Canada)'),
(29182, 'https://ror.org/00zzaq393', 'no_lang_code', 1, 'https://ror.org/00zzaq393 Ocean Power Technologies (United Kingdom)'),
(29183, 'https://ror.org/04ssneh08', 'no_lang_code', 1, 'https://ror.org/04ssneh08 Parrheim Foods (Canada)'),
(29184, 'https://ror.org/05d1yjv69', 'no_lang_code', 1, 'https://ror.org/05d1yjv69 InnoVactiv (Canada)'),
(29185, 'https://ror.org/01kv42962', 'en', 1, 'https://ror.org/01kv42962 Asparagus Farmers of Ontario'),
(29186, 'https://ror.org/05ttfpv30', 'en', 1, 'https://ror.org/05ttfpv30 Ontario Bean Growers'),
(29187, 'https://ror.org/02ga6ke46', 'en', 1, 'https://ror.org/02ga6ke46 Parteq Innovations (Canada)'),
(29188, 'https://ror.org/01e5ksw89', 'en', 1, 'https://ror.org/01e5ksw89 Ontario Clean Water Agency'),
(29189, 'https://ror.org/03400ft78', 'en', 1, 'https://ror.org/03400ft78 Norfolk and Suffolk NHS Foundation Trust'),
(29190, 'https://ror.org/02t0nms65', 'no_lang_code', 1, 'https://ror.org/02t0nms65 Novozymes (Canada)'),
(29191, 'https://ror.org/01yqb3s19', 'en', 1, 'https://ror.org/01yqb3s19 Ontario Commercial Fisheries'' Association'),
(29192, 'https://ror.org/02031zf96', 'en', 1, 'https://ror.org/02031zf96 Particle Data Group'),
(29193, 'https://ror.org/050pyja33', 'no_lang_code', 1, 'https://ror.org/050pyja33 Phoenix Canada Oil Company (Canada)'),
(29194, 'https://ror.org/05krx3x83', 'en', 1, 'https://ror.org/05krx3x83 Ontario Dairy Council'),
(29195, 'https://ror.org/033z7g133', 'en', 1, 'https://ror.org/033z7g133 Ministry of Energy, Northern Development and Mines Ministère de l''Énergie, du Développement du Nord et des Mines'),
(29196, 'https://ror.org/04yrdyp94', 'no_lang_code', 1, 'https://ror.org/04yrdyp94 Quantic EMC (Canada)'),
(29197, 'https://ror.org/03e7ywm06', 'no_lang_code', 1, 'https://ror.org/03e7ywm06 Magnus Chemicals (Canada) Produits Chimiques Magnus'),
(29198, 'https://ror.org/04gqzc140', 'no_lang_code', 1, 'https://ror.org/04gqzc140 Paton (Canada)'),
(29199, 'https://ror.org/002n46c33', 'no_lang_code', 1, 'https://ror.org/002n46c33 Olin (Canada)'),
(29200, 'https://ror.org/00c4zhw53', 'en', 1, 'https://ror.org/00c4zhw53 Open Group'),
(29201, 'https://ror.org/00hjkzk85', 'no_lang_code', 1, 'https://ror.org/00hjkzk85 Open Text (Canada)'),
(29202, 'https://ror.org/04vpw9y87', 'no_lang_code', 1, 'https://ror.org/04vpw9y87 PCL Construction (Canada)'),
(29203, 'https://ror.org/0003gmg65', 'no_lang_code', 1, 'https://ror.org/0003gmg65 Osaka Gas (United States)'),
(29204, 'https://ror.org/03w6wcs90', 'no_lang_code', 1, 'https://ror.org/03w6wcs90 Quattriuum (Canada)'),
(29205, 'https://ror.org/03gsrqx39', 'no_lang_code', 1, 'https://ror.org/03gsrqx39 Premium Brands Holdings (Canada)'),
(29206, 'https://ror.org/053pbaz76', 'no_lang_code', 1, 'https://ror.org/053pbaz76 RPC Bebo (United Kingdom)'),
(29207, 'https://ror.org/05ae2mx22', 'no_lang_code', 1, 'https://ror.org/05ae2mx22 Opsun Technologies (Canada)'),
(29208, 'https://ror.org/0046st885', 'no_lang_code', 1, 'https://ror.org/0046st885 Ortelio (United Kingdom)'),
(29209, 'https://ror.org/01szhjj90', 'no_lang_code', 1, 'https://ror.org/01szhjj90 Xebec (Canada)'),
(29210, 'https://ror.org/04anrg987', 'en', 1, 'https://ror.org/04anrg987 Plimoth Plantation'),
(29211, 'https://ror.org/04yxhmf18', 'en', 1, 'https://ror.org/04yxhmf18 Poets House'),
(29212, 'https://ror.org/01fda9e47', 'no_lang_code', 1, 'https://ror.org/01fda9e47 Prolysis (United Kingdom)'),
(29213, 'https://ror.org/03kqv8w58', 'no_lang_code', 1, 'https://ror.org/03kqv8w58 Peregrine Diamonds (Canada)'),
(29214, 'https://ror.org/047j0y804', 'no_lang_code', 1, 'https://ror.org/047j0y804 Radiant Genomics (United States)'),
(29215, 'https://ror.org/0219rxc78', 'no_lang_code', 1, 'https://ror.org/0219rxc78 Polisilk (Spain)'),
(29216, 'https://ror.org/00jx5ax65', 'no_lang_code', 1, 'https://ror.org/00jx5ax65 Osemi (Canada)'),
(29217, 'https://ror.org/00x3ywr72', 'no_lang_code', 1, 'https://ror.org/00x3ywr72 Ostara Nutrient Recovery Technologies (Canada)'),
(29218, 'https://ror.org/02p0fq023', 'no_lang_code', 1, 'https://ror.org/02p0fq023 Prompt (Canada)'),
(29219, 'https://ror.org/016znkc94', 'no_lang_code', 1, 'https://ror.org/016znkc94 Rainford Precision (United Kingdom)'),
(29220, 'https://ror.org/00p82qb91', 'no_lang_code', 1, 'https://ror.org/00p82qb91 Polymer Research Technologies (Canada)'),
(29221, 'https://ror.org/02z95aw27', 'no_lang_code', 1, 'https://ror.org/02z95aw27 Peterborough Utilities Service (Canada)'),
(29222, 'https://ror.org/03yc06y43', 'no_lang_code', 1, 'https://ror.org/03yc06y43 Petrel Robertson Consulting (Canada)'),
(29223, 'https://ror.org/0565gth98', 'fr', 1, 'https://ror.org/0565gth98 Ouranos'),
(29224, 'https://ror.org/020bmkg54', 'no_lang_code', 1, 'https://ror.org/020bmkg54 Outotec (Canada)'),
(29225, 'https://ror.org/01c1aet04', 'no_lang_code', 1, 'https://ror.org/01c1aet04 OSI Systems (United Kingdom)'),
(29226, 'https://ror.org/056nspe91', 'en', 1, 'https://ror.org/056nspe91 Federation of the Food and Drink Industries of the Czech Republic'),
(29227, 'https://ror.org/0322ccw15', 'no_lang_code', 1, 'https://ror.org/0322ccw15 Prototek (United States)'),
(29228, 'https://ror.org/001yh3598', 'no_lang_code', 1, 'https://ror.org/001yh3598 Linde (Canada)'),
(29229, 'https://ror.org/02tn54y74', 'no_lang_code', 1, 'https://ror.org/02tn54y74 Read Jones Christoffersen (Canada)'),
(29230, 'https://ror.org/0007mw271', 'no_lang_code', 1, 'https://ror.org/0007mw271 Pacific Safety Products (Canada)'),
(29231, 'https://ror.org/00thz8j39', 'no_lang_code', 1, 'https://ror.org/00thz8j39 Gleason (Italy)'),
(29232, 'https://ror.org/02x3pxw11', 'no_lang_code', 1, 'https://ror.org/02x3pxw11 Precision Varionic International (United Kingdom)'),
(29233, 'https://ror.org/05m2de985', 'no_lang_code', 1, 'https://ror.org/05m2de985 Exchange Income (Canada)'),
(29234, 'https://ror.org/01jvd8304', 'en', 1, 'https://ror.org/01jvd8304 Provincial Health Services Authority'),
(29235, 'https://ror.org/0245w0f92', 'no_lang_code', 1, 'https://ror.org/0245w0f92 Phantom Design (United States)'),
(29236, 'https://ror.org/01v67s579', 'no_lang_code', 1, 'https://ror.org/01v67s579 Natrix Separations (Canada)'),
(29237, 'https://ror.org/01qynr066', 'en', 1, 'https://ror.org/01qynr066 Red Cliff Band of Lake Superior Chippewa'),
(29238, 'https://ror.org/0099f7q64', 'no_lang_code', 1, 'https://ror.org/0099f7q64 Phillips 66 (United States)'),
(29239, 'https://ror.org/00rvf1k93', 'no_lang_code', 1, 'https://ror.org/00rvf1k93 Upsher-Smith Laboratories (United States)'),
(29240, 'https://ror.org/03jkv2r60', 'no_lang_code', 1, 'https://ror.org/03jkv2r60 Pressure BioSciences (United States)'),
(29241, 'https://ror.org/046ejs207', 'no_lang_code', 1, 'https://ror.org/046ejs207 Red Ninja (United Kingdom)'),
(29242, 'https://ror.org/007jk3r28', 'no_lang_code', 1, 'https://ror.org/007jk3r28 Presteve Foods (Canada)'),
(29243, 'https://ror.org/050w3c487', 'no_lang_code', 1, 'https://ror.org/050w3c487 RedBite (United Kingdom)'),
(29244, 'https://ror.org/03vcepm09', 'no_lang_code', 1, 'https://ror.org/03vcepm09 Rosstech Signals (Canada)'),
(29245, 'https://ror.org/039kp3w51', 'no_lang_code', 1, 'https://ror.org/039kp3w51 Rotite Technologies (United Kingdom)'),
(29246, 'https://ror.org/04qjz4x37', 'en', 1, 'https://ror.org/04qjz4x37 Redcar and Cleveland Borough Council'),
(29247, 'https://ror.org/007hq6h29', 'en', 1, 'https://ror.org/007hq6h29 Quebec Intensive Silviculture Network Réseau Ligniculture Québec'),
(29248, 'https://ror.org/02dfarm97', 'it', 1, 'https://ror.org/02dfarm97 Procoat'),
(29249, 'https://ror.org/00rs1n196', 'no_lang_code', 1, 'https://ror.org/00rs1n196 Restek (United States)'),
(29250, 'https://ror.org/02hj7hh93', 'no_lang_code', 1, 'https://ror.org/02hj7hh93 Schneider Electric (Canada)'),
(29251, 'https://ror.org/036c4jb90', 'en', 1, 'https://ror.org/036c4jb90 Royal Air Force Museum'),
(29252, 'https://ror.org/048r9g705', 'en', 1, 'https://ror.org/048r9g705 Royal Albert Memorial Museum'),
(29253, 'https://ror.org/04dvghk72', 'no_lang_code', 1, 'https://ror.org/04dvghk72 Wireless 2000 RF & UWB Technologies (Canada)'),
(29254, 'https://ror.org/01q8h4282', 'en', 1, 'https://ror.org/01q8h4282 Regional Council in Kalmar County'),
(29255, 'https://ror.org/02dr9de73', 'no_lang_code', 1, 'https://ror.org/02dr9de73 Brantford Energy (Canada)'),
(29256, 'https://ror.org/04gg6xa16', 'no_lang_code', 1, 'https://ror.org/04gg6xa16 Monnaie royale canadienne Royal Canadian Mint (Canada)'),
(29257, 'https://ror.org/03bnsxq66', 'en', 1, 'https://ror.org/03bnsxq66 Public Works and Government Services Canada Travaux publics et Services gouvernementaux Canada'),
(29258, 'https://ror.org/04vgqqp29', 'en', 1, 'https://ror.org/04vgqqp29 Gendarmerie royale du Canada Royal Canadian Mounted Police'),
(29259, 'https://ror.org/02q5vez72', 'no_lang_code', 1, 'https://ror.org/02q5vez72 Schwarzwaldmilch Freiburg (Germany)'),
(29260, 'https://ror.org/01gdbf303', 'en', 1, 'https://ror.org/01gdbf303 Royal College of General Practitioners'),
(29261, 'https://ror.org/03wn6yq26', 'no_lang_code', 1, 'https://ror.org/03wn6yq26 Relay Software (United Kingdom)'),
(29262, 'https://ror.org/00sjtsn56', 'no_lang_code', 1, 'https://ror.org/00sjtsn56 Pulse Energy (New Zealand)'),
(29263, 'https://ror.org/030wt4r64', 'no_lang_code', 1, 'https://ror.org/030wt4r64 Sci-Tec (United States)'),
(29264, 'https://ror.org/03kx2pj14', 'en', 1, 'https://ror.org/03kx2pj14 Royal Society of Edinburgh'),
(29265, 'https://ror.org/011400c72', 'no_lang_code', 1, 'https://ror.org/011400c72 Purelink (Canada)'),
(29266, 'https://ror.org/02dcjej90', 'no_lang_code', 1, 'https://ror.org/02dcjej90 RTDS Technologies (Canada)'),
(29267, 'https://ror.org/04rtm4g41', 'no_lang_code', 1, 'https://ror.org/04rtm4g41 PV3 Technologies (United Kingdom)'),
(29268, 'https://ror.org/048116458', 'en', 1, 'https://ror.org/048116458 Department of Transportation, Infrastructure and Energy'),
(29269, 'https://ror.org/00seqvw16', 'no_lang_code', 1, 'https://ror.org/00seqvw16 Replify (United Kingdom)'),
(29270, 'https://ror.org/04qk3p464', 'no_lang_code', 1, 'https://ror.org/04qk3p464 PVOH Polymers (United Kingdom)'),
(29271, 'https://ror.org/04h2sqw81', 'no_lang_code', 1, 'https://ror.org/04h2sqw81 Aguettant (France)'),
(29272, 'https://ror.org/04rc4nw15', 'no_lang_code', 1, 'https://ror.org/04rc4nw15 Enseco Energy Services (Canada)'),
(29273, 'https://ror.org/03t61s708', 'en', 1, 'https://ror.org/03t61s708 Parliament of United Kingdom Tŷ''r Arglwyddi'),
(29274, 'https://ror.org/05cn4v910', 'en', 1, 'https://ror.org/05cn4v910 Sheffield Health and Social Care NHS Foundation Trust'),
(29275, 'https://ror.org/05tvcyg29', 'en', 1, 'https://ror.org/05tvcyg29 Government of Manitoba'),
(29276, 'https://ror.org/05k969473', 'en', 1, 'https://ror.org/05k969473 Sheldon Museum and Cultural Center'),
(29277, 'https://ror.org/02wk8wx53', 'en', 1, 'https://ror.org/02wk8wx53 Gouvernement du Nouveau-Brunswick Government of New Brunswick'),
(29278, 'https://ror.org/018723a84', 'no_lang_code', 1, 'https://ror.org/018723a84 Qpoint Composite (Germany)'),
(29279, 'https://ror.org/05bp6d935', 'no_lang_code', 1, 'https://ror.org/05bp6d935 Sealite (United States)'),
(29280, 'https://ror.org/02mp0vf47', 'en', 1, 'https://ror.org/02mp0vf47 National Cancer Research Institute'),
(29281, 'https://ror.org/03pty3341', 'no_lang_code', 1, 'https://ror.org/03pty3341 QPS Photronics (Canada)'),
(29282, 'https://ror.org/03811dk14', 'no_lang_code', 1, 'https://ror.org/03811dk14 Sherritt (Canada)'),
(29283, 'https://ror.org/01pn5vj05', 'no_lang_code', 1, 'https://ror.org/01pn5vj05 Search-Lab (Hungary)');
INSERT INTO `rors` VALUES
(29284, 'https://ror.org/00q534t73', 'no_lang_code', 1, 'https://ror.org/00q534t73 SeCan (Canada)'),
(29285, 'https://ror.org/02bssr922', 'no_lang_code', 1, 'https://ror.org/02bssr922 Shoestring Press (United States)'),
(29286, 'https://ror.org/01fn80642', 'no_lang_code', 1, 'https://ror.org/01fn80642 PepsiCo (Canada)'),
(29287, 'https://ror.org/05anqp385', 'en', 1, 'https://ror.org/05anqp385 Seeper'),
(29288, 'https://ror.org/04ch2gv47', 'en', 1, 'https://ror.org/04ch2gv47 Government of Saskatchewan'),
(29289, 'https://ror.org/04c2kcw65', 'no_lang_code', 1, 'https://ror.org/04c2kcw65 Seibersdorf Laboratories (Austria)'),
(29290, 'https://ror.org/02ae31880', 'no_lang_code', 1, 'https://ror.org/02ae31880 Qualcomm (Canada)'),
(29291, 'https://ror.org/01ent8r08', 'no_lang_code', 1, 'https://ror.org/01ent8r08 Castolin Eutectic (United Kingdom)'),
(29292, 'https://ror.org/025jhd967', 'no_lang_code', 1, 'https://ror.org/025jhd967 Systems, Applications & Products in Data Processing (Canada)'),
(29293, 'https://ror.org/012daz151', 'en', 1, 'https://ror.org/012daz151 Government of The Gambia'),
(29294, 'https://ror.org/01nh4s312', 'en', 1, 'https://ror.org/01nh4s312 Government of Slovakia'),
(29295, 'https://ror.org/01g9ye888', 'no_lang_code', 1, 'https://ror.org/01g9ye888 Toray International Europe (Germany)'),
(29296, 'https://ror.org/05qcvcp08', 'no_lang_code', 1, 'https://ror.org/05qcvcp08 Sika (Canada)'),
(29297, 'https://ror.org/03at87b18', 'en', 1, 'https://ror.org/03at87b18 Saskatchewan Pork Development Board'),
(29298, 'https://ror.org/04vyqcg16', 'no_lang_code', 1, 'https://ror.org/04vyqcg16 Somfy (Canada)'),
(29299, 'https://ror.org/00dqs9848', 'no_lang_code', 1, 'https://ror.org/00dqs9848 Sensor Development (United States)'),
(29300, 'https://ror.org/00f1fk963', 'no_lang_code', 1, 'https://ror.org/00f1fk963 Servier (Canada)'),
(29301, 'https://ror.org/05mffvf70', 'no_lang_code', 1, 'https://ror.org/05mffvf70 SiliconPro (Canada)'),
(29302, 'https://ror.org/05npdkv31', 'no_lang_code', 1, 'https://ror.org/05npdkv31 Sonaca (Canada)'),
(29303, 'https://ror.org/01aktk249', 'en', 1, 'https://ror.org/01aktk249 Seven'),
(29304, 'https://ror.org/01wg5gq86', 'no_lang_code', 1, 'https://ror.org/01wg5gq86 Simplot (United States)'),
(29305, 'https://ror.org/04jvq2733', 'no_lang_code', 1, 'https://ror.org/04jvq2733 Soquem (Canada)'),
(29306, 'https://ror.org/02qm4q539', 'no_lang_code', 1, 'https://ror.org/02qm4q539 Rockwell Automation (Canada)'),
(29307, 'https://ror.org/0567fxj77', 'no_lang_code', 1, 'https://ror.org/0567fxj77 Hog Administrative Marketing Services (Canada)'),
(29308, 'https://ror.org/032bte841', 'no_lang_code', 1, 'https://ror.org/032bte841 Rogers Communications (Canada)'),
(29309, 'https://ror.org/02jc9yx83', 'no_lang_code', 1, 'https://ror.org/02jc9yx83 Hendrix Genetics (Canada)'),
(29310, 'https://ror.org/0548bd853', 'no_lang_code', 1, 'https://ror.org/0548bd853 Roli (United Kingdom)'),
(29311, 'https://ror.org/025v1gy78', 'no_lang_code', 1, 'https://ror.org/025v1gy78 Crown Investments Corporation (Canada)'),
(29312, 'https://ror.org/02y2gng66', 'en', 1, 'https://ror.org/02y2gng66 Save the Children'),
(29313, 'https://ror.org/04c767n32', 'en', 1, 'https://ror.org/04c767n32 Southern Regional Council'),
(29314, 'https://ror.org/01jn0jb26', 'no_lang_code', 1, 'https://ror.org/01jn0jb26 Colas (Canada)'),
(29315, 'https://ror.org/001b82544', 'no_lang_code', 1, 'https://ror.org/001b82544 Sovar (Canada)'),
(29316, 'https://ror.org/03ks2qn81', 'no_lang_code', 1, 'https://ror.org/03ks2qn81 Sioen Industries (Belgium)'),
(29317, 'https://ror.org/0572j2882', 'no_lang_code', 1, 'https://ror.org/0572j2882 Schlumberger (Canada)'),
(29318, 'https://ror.org/04gtbbw62', 'no_lang_code', 1, 'https://ror.org/04gtbbw62 Equinor (Canada)'),
(29319, 'https://ror.org/02akadd86', 'no_lang_code', 1, 'https://ror.org/02akadd86 Stedfast (Canada)'),
(29320, 'https://ror.org/047406z28', 'no_lang_code', 1, 'https://ror.org/047406z28 RHI Magnesita (Canada)'),
(29321, 'https://ror.org/04kevy945', 'no_lang_code', 1, 'https://ror.org/04kevy945 Tecnologie Avanzate (Italy)'),
(29322, 'https://ror.org/04q8pt676', 'no_lang_code', 1, 'https://ror.org/04q8pt676 Tecrea (United Kingdom)'),
(29323, 'https://ror.org/03zefh326', 'no_lang_code', 1, 'https://ror.org/03zefh326 Siva (Italy)'),
(29324, 'https://ror.org/04xya2p21', 'no_lang_code', 1, 'https://ror.org/04xya2p21 ATS Automation Tooling Systems (United States)'),
(29325, 'https://ror.org/00gnm3617', 'en', 1, 'https://ror.org/00gnm3617 Skeena Fisheries Commission'),
(29326, 'https://ror.org/040vbkv27', 'no_lang_code', 1, 'https://ror.org/040vbkv27 Telus (Canada)'),
(29327, 'https://ror.org/03w8zjq15', 'en', 1, 'https://ror.org/03w8zjq15 The Audio Recording Academy'),
(29328, 'https://ror.org/00wmrqg59', 'no_lang_code', 1, 'https://ror.org/00wmrqg59 West Fraser (Canada)'),
(29329, 'https://ror.org/044awgt66', 'en', 1, 'https://ror.org/044awgt66 Joint Implementation Network'),
(29330, 'https://ror.org/03ajebt28', 'no_lang_code', 1, 'https://ror.org/03ajebt28 Smart Skin (Canada)'),
(29331, 'https://ror.org/02nd7ks20', 'no_lang_code', 1, 'https://ror.org/02nd7ks20 Schrader International (United Kingdom)'),
(29332, 'https://ror.org/0056wjq13', 'en', 1, 'https://ror.org/0056wjq13 Stone Lantern Films'),
(29333, 'https://ror.org/013qcs149', 'no_lang_code', 1, 'https://ror.org/013qcs149 Snook (United Kingdom)'),
(29334, 'https://ror.org/056z8k029', 'no_lang_code', 1, 'https://ror.org/056z8k029 SST Wireless (Canada)'),
(29335, 'https://ror.org/006bvpc76', 'no_lang_code', 1, 'https://ror.org/006bvpc76 Terahertz Technology Solutions (Canada)'),
(29336, 'https://ror.org/016qa9g64', 'en', 1, 'https://ror.org/016qa9g64 Straight Ahead Pictures'),
(29337, 'https://ror.org/00h4tvg43', 'no_lang_code', 1, 'https://ror.org/00h4tvg43 Systems Engineering and Assessment (United Kingdom)'),
(29338, 'https://ror.org/00dbz8197', 'no_lang_code', 1, 'https://ror.org/00dbz8197 Teratech Components (United Kingdom)'),
(29339, 'https://ror.org/050cwt049', 'no_lang_code', 1, 'https://ror.org/050cwt049 TeraXion (Canada)'),
(29340, 'https://ror.org/0240caq72', 'no_lang_code', 1, 'https://ror.org/0240caq72 Contship Italia (Italy)'),
(29341, 'https://ror.org/02q2gmw58', 'no_lang_code', 1, 'https://ror.org/02q2gmw58 Teshmont (Canada)'),
(29342, 'https://ror.org/031z84p26', 'no_lang_code', 1, 'https://ror.org/031z84p26 Agbar (Spain) Sociedad General de Aguas de Barcelona'),
(29343, 'https://ror.org/016s9js25', 'no_lang_code', 1, 'https://ror.org/016s9js25 Tecnologia e Ricerca Italiana (Italy)'),
(29344, 'https://ror.org/03vn7pd98', 'en', 1, 'https://ror.org/03vn7pd98 Nanotechnology Industries Association'),
(29345, 'https://ror.org/03smbm342', 'no_lang_code', 1, 'https://ror.org/03smbm342 Surgical Specialties (United States)'),
(29346, 'https://ror.org/01qdy0382', 'no_lang_code', 1, 'https://ror.org/01qdy0382 Tafisa (Canada)'),
(29347, 'https://ror.org/02j25ht90', 'fr', 1, 'https://ror.org/02j25ht90 Society of outdoor recreation establishments of Quebec Société des établissements de plein air du Québec Sépaq'),
(29348, 'https://ror.org/001jdxs64', 'no_lang_code', 1, 'https://ror.org/001jdxs64 Stuart Olson (Canada)'),
(29349, 'https://ror.org/05c0v3585', 'no_lang_code', 1, 'https://ror.org/05c0v3585 Takeda (United Kingdom)'),
(29350, 'https://ror.org/04c31tk69', 'no_lang_code', 1, 'https://ror.org/04c31tk69 Texel (Canada)'),
(29351, 'https://ror.org/003x4qs37', 'en', 1, 'https://ror.org/003x4qs37 St. Lawrence Seaway Management'),
(29352, 'https://ror.org/00jz36n32', 'no_lang_code', 1, 'https://ror.org/00jz36n32 Miller Group (Canada)'),
(29353, 'https://ror.org/00nnd3206', 'no_lang_code', 1, 'https://ror.org/00nnd3206 Thales (Canada)'),
(29354, 'https://ror.org/03zvsh960', 'no_lang_code', 1, 'https://ror.org/03zvsh960 Oracle (Canada)'),
(29355, 'https://ror.org/03xvqgb25', 'fr', 1, 'https://ror.org/03xvqgb25 Montreal Transit Corporation Société de Transport de Montréal'),
(29356, 'https://ror.org/035m9f342', 'en', 1, 'https://ror.org/035m9f342 Beth Johnson Foundation'),
(29357, 'https://ror.org/03ww55028', 'en', 1, 'https://ror.org/03ww55028 Joint BioEnergy Institute'),
(29358, 'https://ror.org/057eesj13', 'no_lang_code', 1, 'https://ror.org/057eesj13 Shermag (Canada)'),
(29359, 'https://ror.org/05p0ja512', 'en', 1, 'https://ror.org/05p0ja512 Chemistry Industry Association of Canada'),
(29360, 'https://ror.org/02s7bp606', 'en', 1, 'https://ror.org/02s7bp606 Chartered Institute of Plumbing and Heating Engineering'),
(29361, 'https://ror.org/002famp79', 'no_lang_code', 1, 'https://ror.org/002famp79 Türk Telekom (Turkey)'),
(29362, 'https://ror.org/00yc8qw13', 'no_lang_code', 1, 'https://ror.org/00yc8qw13 Coca Cola (United States)'),
(29363, 'https://ror.org/03ym3x587', 'no_lang_code', 1, 'https://ror.org/03ym3x587 Tydock Pharma (Italy)'),
(29364, 'https://ror.org/03pdzzh36', 'no_lang_code', 1, 'https://ror.org/03pdzzh36 TYK America (United States)'),
(29365, 'https://ror.org/03336v443', 'no_lang_code', 1, 'https://ror.org/03336v443 Solana Networks (Canada)'),
(29366, 'https://ror.org/02d54v010', 'en', 1, 'https://ror.org/02d54v010 Black Sea Commission'),
(29367, 'https://ror.org/01hmp5p66', 'no_lang_code', 1, 'https://ror.org/01hmp5p66 Ubisoft (Canada)'),
(29368, 'https://ror.org/04tnbqb63', 'en', 1, 'https://ror.org/04tnbqb63 The Francis Crick Institute'),
(29369, 'https://ror.org/00xrqbp98', 'no_lang_code', 1, 'https://ror.org/00xrqbp98 Solink (Canada)'),
(29370, 'https://ror.org/034rss031', 'en', 1, 'https://ror.org/034rss031 Holstein Association of Canada'),
(29371, 'https://ror.org/02bvjeb84', 'en', 1, 'https://ror.org/02bvjeb84 Techmania Science Center'),
(29372, 'https://ror.org/01nacxm37', 'en', 1, 'https://ror.org/01nacxm37 Somerset County Council'),
(29373, 'https://ror.org/0158ck073', 'en', 1, 'https://ror.org/0158ck073 King''s Fund'),
(29374, 'https://ror.org/03659b965', 'no_lang_code', 1, 'https://ror.org/03659b965 Solinst (Canada)'),
(29375, 'https://ror.org/01q28w082', 'no_lang_code', 1, 'https://ror.org/01q28w082 Team Aquatic (Canada)'),
(29376, 'https://ror.org/02r7s3859', 'no_lang_code', 1, 'https://ror.org/02r7s3859 Vernon Seed Orchard Company (Canada)'),
(29377, 'https://ror.org/015j3sb07', 'en', 1, 'https://ror.org/015j3sb07 Sustainable Energy Authority of Ireland'),
(29378, 'https://ror.org/00tjfzj89', 'no_lang_code', 1, 'https://ror.org/00tjfzj89 Sustainable Home Survey (United Kingdom)'),
(29379, 'https://ror.org/04mwmd860', 'en', 1, 'https://ror.org/04mwmd860 SaskWater'),
(29380, 'https://ror.org/03b0bkp29', 'no_lang_code', 1, 'https://ror.org/03b0bkp29 Vicon (United States)'),
(29381, 'https://ror.org/04mwe1m14', 'en', 1, 'https://ror.org/04mwe1m14 Victim Support'),
(29382, 'https://ror.org/05fytb963', 'no_lang_code', 1, 'https://ror.org/05fytb963 Windsor Utilities Commission (Canada)'),
(29383, 'https://ror.org/04xem0k66', 'no_lang_code', 1, 'https://ror.org/04xem0k66 Vignet (United States)'),
(29384, 'https://ror.org/03pmb4h38', 'pt', 1, 'https://ror.org/03pmb4h38 Instituto Nacional de Tecnologias de Informação e Comunicação'),
(29385, 'https://ror.org/00p2jsg72', 'no_lang_code', 1, 'https://ror.org/00p2jsg72 Unilever (Canada)'),
(29386, 'https://ror.org/02b6qtv44', 'no_lang_code', 1, 'https://ror.org/02b6qtv44 Thermal Electronics (United States)'),
(29387, 'https://ror.org/04cs8dp04', 'en', 1, 'https://ror.org/04cs8dp04 West Coast Trollers Association'),
(29388, 'https://ror.org/01g0b8d40', 'no_lang_code', 1, 'https://ror.org/01g0b8d40 Trend Micro (Canada)'),
(29389, 'https://ror.org/02dxgtw53', 'no_lang_code', 1, 'https://ror.org/02dxgtw53 Unitechnologies (Switzerland)'),
(29390, 'https://ror.org/02vkwpj59', 'no_lang_code', 1, 'https://ror.org/02vkwpj59 West of England Local Enterprise Partnership (United Kingdom)'),
(29391, 'https://ror.org/038g1k790', 'en', 1, 'https://ror.org/038g1k790 Thomas Cole Historic House'),
(29392, 'https://ror.org/0233s9736', 'en', 1, 'https://ror.org/0233s9736 United Community Center'),
(29393, 'https://ror.org/046k8b628', 'en', 1, 'https://ror.org/046k8b628 United Indian Health Services'),
(29394, 'https://ror.org/028s8e034', 'no_lang_code', 1, 'https://ror.org/028s8e034 Utilities Kingston (Canada)'),
(29395, 'https://ror.org/026xacc21', 'no_lang_code', 1, 'https://ror.org/026xacc21 Thoth Technology (Canada)'),
(29396, 'https://ror.org/0327ade70', 'no_lang_code', 1, 'https://ror.org/0327ade70 Spectra Energy (Canada)'),
(29397, 'https://ror.org/01gbbz114', 'en', 1, 'https://ror.org/01gbbz114 Westcountry Rivers Trust'),
(29398, 'https://ror.org/01zbqc597', 'no_lang_code', 1, 'https://ror.org/01zbqc597 ThyssenKrupp (Italy) ThyssenKrupp Italia'),
(29399, 'https://ror.org/02x9spt42', 'no_lang_code', 1, 'https://ror.org/02x9spt42 WestGen (Canada)'),
(29400, 'https://ror.org/05ngf5n66', 'en', 1, 'https://ror.org/05ngf5n66 UNStudio'),
(29401, 'https://ror.org/03s6fxf66', 'no_lang_code', 1, 'https://ror.org/03s6fxf66 Timber Specialties (Canada)'),
(29402, 'https://ror.org/01xnpjk23', 'no_lang_code', 1, 'https://ror.org/01xnpjk23 Vanderwell Contractors (Canada)'),
(29403, 'https://ror.org/05hzpah25', 'no_lang_code', 1, 'https://ror.org/05hzpah25 TimberWest Forest (Canada)'),
(29404, 'https://ror.org/00ffka868', 'no_lang_code', 1, 'https://ror.org/00ffka868 Western Power Distribution (United Kingdom)'),
(29405, 'https://ror.org/04j48qz06', 'en', 1, 'https://ror.org/04j48qz06 VISTA Science & Technology'),
(29406, 'https://ror.org/0153e3n79', 'no_lang_code', 1, 'https://ror.org/0153e3n79 Varian Medical Systems (Canada)'),
(29407, 'https://ror.org/01fj3w057', 'no_lang_code', 1, 'https://ror.org/01fj3w057 ViTRAK Systems (Canada)'),
(29408, 'https://ror.org/01w98nb39', 'no_lang_code', 1, 'https://ror.org/01w98nb39 TM4 (Canada)'),
(29409, 'https://ror.org/01jeg6k27', 'no_lang_code', 1, 'https://ror.org/01jeg6k27 Varta Micro Innovation (Austria)'),
(29410, 'https://ror.org/0440s3562', 'no_lang_code', 1, 'https://ror.org/0440s3562 Viventia Bio (Canada)'),
(29411, 'https://ror.org/03vtm2512', 'no_lang_code', 1, 'https://ror.org/03vtm2512 TECO-Westinghouse (Canada)'),
(29412, 'https://ror.org/00xw46r83', 'no_lang_code', 1, 'https://ror.org/00xw46r83 Top Notch Building Maintenance (Canada)'),
(29413, 'https://ror.org/01j8arr96', 'no_lang_code', 1, 'https://ror.org/01j8arr96 Union Gas (Canada)'),
(29414, 'https://ror.org/04gm72267', 'no_lang_code', 1, 'https://ror.org/04gm72267 VoiceAge (Canada)'),
(29415, 'https://ror.org/033we5h36', 'no_lang_code', 1, 'https://ror.org/033we5h36 Vaxine (Australia)'),
(29416, 'https://ror.org/03pngmk68', 'no_lang_code', 1, 'https://ror.org/03pngmk68 Total (Canada)'),
(29417, 'https://ror.org/012cgww08', 'fr', 1, 'https://ror.org/012cgww08 Univalor'),
(29418, 'https://ror.org/0156t7498', 'en', 1, 'https://ror.org/0156t7498 Wildlife Habitat Canada (Canada)'),
(29419, 'https://ror.org/05j577q42', 'no_lang_code', 1, 'https://ror.org/05j577q42 Vectos (United Kingdom)'),
(29420, 'https://ror.org/04jnjav79', 'no_lang_code', 1, 'https://ror.org/04jnjav79 Vónin (Canada)'),
(29421, 'https://ror.org/05k037b50', 'en', 1, 'https://ror.org/05k037b50 Women Make Movies'),
(29422, 'https://ror.org/003sjbp72', 'no_lang_code', 1, 'https://ror.org/003sjbp72 Waiward Steel (Canada)'),
(29423, 'https://ror.org/007fycn42', 'en', 1, 'https://ror.org/007fycn42 Walkerton Clean Water Centre'),
(29424, 'https://ror.org/03wrrj239', 'no_lang_code', 1, 'https://ror.org/03wrrj239 Wallbridge Mining (Canada)'),
(29425, 'https://ror.org/02z02cv32', 'en', 1, 'https://ror.org/02z02cv32 Institut de l’Énergie Éolienne du Canada Wind Energy Institute of Canada'),
(29426, 'https://ror.org/040nbcv84', 'en', 1, 'https://ror.org/040nbcv84 Trace Crossings Elementary School'),
(29427, 'https://ror.org/00rp11x24', 'no_lang_code', 1, 'https://ror.org/00rp11x24 Walsh Medical Devices (Canada)'),
(29428, 'https://ror.org/025jq2275', 'no_lang_code', 1, 'https://ror.org/025jq2275 TransAlta (Canada)'),
(29429, 'https://ror.org/0174sz637', 'nl', 1, 'https://ror.org/0174sz637 NuGO'),
(29430, 'https://ror.org/01q437m46', 'de', 1, 'https://ror.org/01q437m46 Wasser Cluster Lunz'),
(29431, 'https://ror.org/034wh4067', 'en', 1, 'https://ror.org/034wh4067 Wine Council of Ontario'),
(29432, 'https://ror.org/05v981p28', 'no_lang_code', 1, 'https://ror.org/05v981p28 Water and Earth Science Associates (Canada)'),
(29433, 'https://ror.org/003tbr369', 'no_lang_code', 1, 'https://ror.org/003tbr369 Alten (Sweden)'),
(29434, 'https://ror.org/04wx1rb43', 'en', 1, 'https://ror.org/04wx1rb43 Winona County Historical Society'),
(29435, 'https://ror.org/04mqxq306', 'no_lang_code', 1, 'https://ror.org/04mqxq306 TransMIT (Germany)'),
(29436, 'https://ror.org/018qgs575', 'no_lang_code', 1, 'https://ror.org/018qgs575 Wireless Edge (Canada)'),
(29437, 'https://ror.org/025whmn93', 'en', 1, 'https://ror.org/025whmn93 Transport for Greater Manchester'),
(29438, 'https://ror.org/05wn9at08', 'no_lang_code', 1, 'https://ror.org/05wn9at08 Yellow Island Aquaculture (Canada)'),
(29439, 'https://ror.org/00xtnmz27', 'no_lang_code', 1, 'https://ror.org/00xtnmz27 Hain Celestial (Canada)'),
(29440, 'https://ror.org/040fdbg50', 'no_lang_code', 1, 'https://ror.org/040fdbg50 Wave Control Systems (Canada)'),
(29441, 'https://ror.org/01gjtys23', 'no', 1, 'https://ror.org/01gjtys23 Trondheim Kommune'),
(29442, 'https://ror.org/02qjep944', 'en', 1, 'https://ror.org/02qjep944 Waverly Consort'),
(29443, 'https://ror.org/04tw2wg46', 'en', 1, 'https://ror.org/04tw2wg46 Wood Industry Cluster'),
(29444, 'https://ror.org/03z8rmr27', 'en', 1, 'https://ror.org/03z8rmr27 Tudor Place'),
(29445, 'https://ror.org/00c10fm85', 'no_lang_code', 1, 'https://ror.org/00c10fm85 Wedgestone Press (United States)'),
(29446, 'https://ror.org/03pvq9f35', 'en', 1, 'https://ror.org/03pvq9f35 Regional Municipality of Ottawa'),
(29447, 'https://ror.org/001c1ff51', 'no_lang_code', 1, 'https://ror.org/001c1ff51 Weetabix (Canada)'),
(29448, 'https://ror.org/02q87d656', 'no_lang_code', 1, 'https://ror.org/02q87d656 Trademco (Greece)'),
(29449, 'https://ror.org/05eapnn11', 'no_lang_code', 1, 'https://ror.org/05eapnn11 Zetec (United States)'),
(29450, 'https://ror.org/01rj6x283', 'en', 1, 'https://ror.org/01rj6x283 Regional Municipality of Durham'),
(29451, 'https://ror.org/05r04zn83', 'en', 1, 'https://ror.org/05r04zn83 Regional Municipality of Niagara'),
(29452, 'https://ror.org/01c4g5a09', 'no_lang_code', 1, 'https://ror.org/01c4g5a09 HERION Systemtechnik (Germany)'),
(29453, 'https://ror.org/05wf4cy96', 'no_lang_code', 1, 'https://ror.org/05wf4cy96 YTL (United Kingdom)'),
(29454, 'https://ror.org/02dyrpb22', 'en', 1, 'https://ror.org/02dyrpb22 Office de protection de la nature de Toronto et de la région Toronto and Region Conservation Authority'),
(29455, 'https://ror.org/02zmcw850', 'no_lang_code', 1, 'https://ror.org/02zmcw850 Treviso Tecnologia (Italy)'),
(29456, 'https://ror.org/05mzf7c50', 'no_lang_code', 1, 'https://ror.org/05mzf7c50 Tri-Con Concrete Finishing (Canada)'),
(29457, 'https://ror.org/053qcv951', 'en', 1, 'https://ror.org/053qcv951 European Association of Distance Teaching Universities'),
(29458, 'https://ror.org/00aw7vf84', 'it', 1, 'https://ror.org/00aw7vf84 Fondazione Crui'),
(29459, 'https://ror.org/00xn7zn29', 'en', 1, 'https://ror.org/00xn7zn29 Kazakh-American University'),
(29460, 'https://ror.org/032srmw97', 'bs', 1, 'https://ror.org/032srmw97 Svjetski Univerzitetski Bosne i Hercegovine'),
(29461, 'https://ror.org/02q6wz850', 'no_lang_code', 1, 'https://ror.org/02q6wz850 Proteus (United Kingdom)'),
(29462, 'https://ror.org/00fmts116', 'es', 1, 'https://ror.org/00fmts116 Fundación José Ortega y Gasset-Gregorio Marañón'),
(29463, 'https://ror.org/04nf1vj74', 'no_lang_code', 1, 'https://ror.org/04nf1vj74 Zenterio (Sweden)'),
(29464, 'https://ror.org/02tenpc86', 'en', 1, 'https://ror.org/02tenpc86 Scottish Universities Life Sciences Alliance'),
(29465, 'https://ror.org/042gbet74', 'no_lang_code', 1, 'https://ror.org/042gbet74 AB Realisator (Sweden)'),
(29466, 'https://ror.org/04q7mb252', 'no_lang_code', 1, 'https://ror.org/04q7mb252 Samarkand2015 (Sweden)'),
(29467, 'https://ror.org/00r178r74', 'no_lang_code', 1, 'https://ror.org/00r178r74 Två Punkt Ett (Sweden)'),
(29468, 'https://ror.org/036yap806', 'no_lang_code', 1, 'https://ror.org/036yap806 Abera Bioscience (Sweden)'),
(29469, 'https://ror.org/01xcf8q67', 'no_lang_code', 1, 'https://ror.org/01xcf8q67 BlockMaster (Sweden)'),
(29470, 'https://ror.org/01cmstr73', 'no_lang_code', 1, 'https://ror.org/01cmstr73 Combain Mobile (Sweden)'),
(29471, 'https://ror.org/02dhhsj48', 'no_lang_code', 1, 'https://ror.org/02dhhsj48 Blue Institute (Sweden)'),
(29472, 'https://ror.org/0037zd360', 'no_lang_code', 1, 'https://ror.org/0037zd360 CombiQ (Sweden)'),
(29473, 'https://ror.org/01ypjv288', 'no_lang_code', 1, 'https://ror.org/01ypjv288 Absolicon Solar Collector (Sweden)'),
(29474, 'https://ror.org/015z2kc86', 'no_lang_code', 1, 'https://ror.org/015z2kc86 Acconeer (Sweden)'),
(29475, 'https://ror.org/02c944e82', 'en', 1, 'https://ror.org/02c944e82 St. Elizabeth Youngstown Hospital'),
(29476, 'https://ror.org/02eha7521', 'no_lang_code', 1, 'https://ror.org/02eha7521 Blue Mobile Systems (Sweden)'),
(29477, 'https://ror.org/04ykewa84', 'no_lang_code', 1, 'https://ror.org/04ykewa84 Acosense (Sweden)'),
(29478, 'https://ror.org/04w6n1v49', 'en', 1, 'https://ror.org/04w6n1v49 National Urban League'),
(29479, 'https://ror.org/027qmp433', 'no_lang_code', 1, 'https://ror.org/027qmp433 Conlogic (Sweden)'),
(29480, 'https://ror.org/04e9fmf35', 'no_lang_code', 1, 'https://ror.org/04e9fmf35 EQUA Simulation (Sweden)'),
(29481, 'https://ror.org/015m1y186', 'no_lang_code', 1, 'https://ror.org/015m1y186 Bonnier (Sweden)'),
(29482, 'https://ror.org/03z0yfj91', 'no_lang_code', 1, 'https://ror.org/03z0yfj91 AcousticAgree (Sweden)'),
(29483, 'https://ror.org/01jw22w13', 'no_lang_code', 1, 'https://ror.org/01jw22w13 ContextVision (Sweden)'),
(29484, 'https://ror.org/043hpt843', 'no_lang_code', 1, 'https://ror.org/043hpt843 BorgWarner (Sweden)'),
(29485, 'https://ror.org/054njw727', 'no_lang_code', 1, 'https://ror.org/054njw727 Ergolab (Sweden)'),
(29486, 'https://ror.org/01v6nvw72', 'de', 1, 'https://ror.org/01v6nvw72 StifterHaus'),
(29487, 'https://ror.org/037ba3b98', 'no_lang_code', 1, 'https://ror.org/037ba3b98 Corline Systems (Sweden)'),
(29488, 'https://ror.org/059s50x31', 'no_lang_code', 1, 'https://ror.org/059s50x31 Brainglass (Sweden)'),
(29489, 'https://ror.org/01fjfh042', 'no_lang_code', 1, 'https://ror.org/01fjfh042 ÅF (Sweden)'),
(29490, 'https://ror.org/02syf5698', 'no_lang_code', 1, 'https://ror.org/02syf5698 Business Region Göteborg (Sweden)'),
(29491, 'https://ror.org/05w9s5139', 'no_lang_code', 1, 'https://ror.org/05w9s5139 Affibody (Sweden)'),
(29492, 'https://ror.org/03jbr4b58', 'no_lang_code', 1, 'https://ror.org/03jbr4b58 Munktell Science Park (Sweden)'),
(29493, 'https://ror.org/02fcst635', 'no_lang_code', 1, 'https://ror.org/02fcst635 AFreeze (Austria)'),
(29494, 'https://ror.org/05rxftm59', 'no_lang_code', 1, 'https://ror.org/05rxftm59 Colloidal Resource (Sweden)'),
(29495, 'https://ror.org/04nqft813', 'no_lang_code', 1, 'https://ror.org/04nqft813 Ahrens (Sweden)'),
(29496, 'https://ror.org/04j12y625', 'en', 1, 'https://ror.org/04j12y625 European Centre of Tort and Insurance Law Europäische Zentrum für Schadenersatz- und Versicherungsrecht'),
(29497, 'https://ror.org/03hxbcz95', 'no_lang_code', 1, 'https://ror.org/03hxbcz95 Airec (Sweden)'),
(29498, 'https://ror.org/04chtc989', 'no_lang_code', 1, 'https://ror.org/04chtc989 Crearum (Sweden)'),
(29499, 'https://ror.org/01xv22m76', 'de', 1, 'https://ror.org/01xv22m76 Bundesmobilienverwaltung'),
(29500, 'https://ror.org/047btv285', 'no_lang_code', 1, 'https://ror.org/047btv285 Sydney Steel (Canada)'),
(29501, 'https://ror.org/00fzkzp38', 'no_lang_code', 1, 'https://ror.org/00fzkzp38 CNS Systems (Sweden)'),
(29502, 'https://ror.org/00djgx116', 'no_lang_code', 1, 'https://ror.org/00djgx116 Eurostep (Sweden)'),
(29503, 'https://ror.org/03eg9e545', 'no_lang_code', 1, 'https://ror.org/03eg9e545 Airwatergreen (Sweden)'),
(29504, 'https://ror.org/01z63c948', 'no_lang_code', 1, 'https://ror.org/01z63c948 Actuant (Sweden)'),
(29505, 'https://ror.org/04xe6vy97', 'no_lang_code', 1, 'https://ror.org/04xe6vy97 Evidente (Sweden)'),
(29506, 'https://ror.org/05a4edg92', 'no_lang_code', 1, 'https://ror.org/05a4edg92 CathPrint (Sweden)'),
(29507, 'https://ror.org/01w1ayy11', 'no_lang_code', 1, 'https://ror.org/01w1ayy11 Glucox Biotech (Sweden)'),
(29508, 'https://ror.org/018pb7a22', 'no_lang_code', 1, 'https://ror.org/018pb7a22 Excillum (Sweden)'),
(29509, 'https://ror.org/010s3fx23', 'no_lang_code', 1, 'https://ror.org/010s3fx23 Crunchfish (Sweden)'),
(29510, 'https://ror.org/03tdxa512', 'no_lang_code', 1, 'https://ror.org/03tdxa512 Exencotech (Sweden)'),
(29511, 'https://ror.org/04x6taa57', 'no_lang_code', 1, 'https://ror.org/04x6taa57 CBL (Germany)'),
(29512, 'https://ror.org/03n7hz788', 'no_lang_code', 1, 'https://ror.org/03n7hz788 GoalArt (Sweden)'),
(29513, 'https://ror.org/01e507517', 'no_lang_code', 1, 'https://ror.org/01e507517 CBot (Sweden)'),
(29514, 'https://ror.org/00y6d1y15', 'en', 1, 'https://ror.org/00y6d1y15 Åkroken Science Park'),
(29515, 'https://ror.org/0383eqy30', 'no_lang_code', 1, 'https://ror.org/0383eqy30 Exibea (Sweden)'),
(29516, 'https://ror.org/03e673w40', 'no_lang_code', 1, 'https://ror.org/03e673w40 CybAero (Sweden)'),
(29517, 'https://ror.org/03zejnj81', 'no_lang_code', 1, 'https://ror.org/03zejnj81 Cyclicor (Sweden)'),
(29518, 'https://ror.org/03xpb8754', 'no_lang_code', 1, 'https://ror.org/03xpb8754 CCT Intermodal (Sweden)'),
(29519, 'https://ror.org/01avpmh18', 'no_lang_code', 1, 'https://ror.org/01avpmh18 Cdup (Sweden)'),
(29520, 'https://ror.org/005p6bw54', 'en', 1, 'https://ror.org/005p6bw54 Albertina'),
(29521, 'https://ror.org/02py10784', 'no_lang_code', 1, 'https://ror.org/02py10784 Albireo (Sweden)'),
(29522, 'https://ror.org/00dwh5a52', 'no_lang_code', 1, 'https://ror.org/00dwh5a52 CellaVision (Sweden)'),
(29523, 'https://ror.org/03k4ert93', 'no_lang_code', 1, 'https://ror.org/03k4ert93 Googol (Sweden)'),
(29524, 'https://ror.org/04h174r26', 'no_lang_code', 1, 'https://ror.org/04h174r26 Dafo Fomtec (Sweden)'),
(29525, 'https://ror.org/02vt8b034', 'no_lang_code', 1, 'https://ror.org/02vt8b034 Algoryx Simulation (Sweden)'),
(29526, 'https://ror.org/0349d5t97', 'no_lang_code', 1, 'https://ror.org/0349d5t97 Alkit Communications (Sweden)'),
(29527, 'https://ror.org/04tvsxd59', 'sv', 1, 'https://ror.org/04tvsxd59 Almega'),
(29528, 'https://ror.org/03cfat183', 'en', 1, 'https://ror.org/03cfat183 Fiber Optic Valley'),
(29529, 'https://ror.org/03nh07n18', 'en', 1, 'https://ror.org/03nh07n18 Center for the Study of Issues in Public Mental Health'),
(29530, 'https://ror.org/04pm25196', 'no_lang_code', 1, 'https://ror.org/04pm25196 Datachassi (Sweden)'),
(29531, 'https://ror.org/01m90ba17', 'de', 1, 'https://ror.org/01m90ba17 Filmarchiv Austria'),
(29532, 'https://ror.org/002dzmc91', 'no_lang_code', 1, 'https://ror.org/002dzmc91 Almi (Sweden)'),
(29533, 'https://ror.org/020rmhj69', 'no_lang_code', 1, 'https://ror.org/020rmhj69 Findout Technologies (Sweden)'),
(29534, 'https://ror.org/01chx4j35', 'no_lang_code', 1, 'https://ror.org/01chx4j35 DEKRA Industrial (Sweden)'),
(29535, 'https://ror.org/014zxe029', 'es', 1, 'https://ror.org/014zxe029 Center for Research and Teaching in Economics Centro de Investigación y Docencia Económicas'),
(29536, 'https://ror.org/05e7gcx12', 'no_lang_code', 1, 'https://ror.org/05e7gcx12 Dellcron (Sweden)'),
(29537, 'https://ror.org/03x3v9r72', 'no_lang_code', 1, 'https://ror.org/03x3v9r72 Denator (Sweden)'),
(29538, 'https://ror.org/010xz5h94', 'no_lang_code', 1, 'https://ror.org/010xz5h94 Mivac Development (Sweden)'),
(29539, 'https://ror.org/005t93q82', 'no_lang_code', 1, 'https://ror.org/005t93q82 Findwise (Sweden)'),
(29540, 'https://ror.org/01gqc4379', 'no_lang_code', 1, 'https://ror.org/01gqc4379 Detectify (Sweden)'),
(29541, 'https://ror.org/0442ywx89', 'no_lang_code', 1, 'https://ror.org/0442ywx89 Göteborg & Co Träffpunkt (Sweden)'),
(29542, 'https://ror.org/056r4cj44', 'en', 1, 'https://ror.org/056r4cj44 Charity Storm'),
(29543, 'https://ror.org/00yt9y116', 'no_lang_code', 1, 'https://ror.org/00yt9y116 Findus (Sweden)'),
(29544, 'https://ror.org/00804ej42', 'no_lang_code', 1, 'https://ror.org/00804ej42 Chockie Group International (United States)'),
(29545, 'https://ror.org/018hw2e85', 'no_lang_code', 1, 'https://ror.org/018hw2e85 Fingerprint Cards (Sweden)'),
(29546, 'https://ror.org/02p5wcj62', 'no_lang_code', 1, 'https://ror.org/02p5wcj62 Diamorph (Sweden)'),
(29547, 'https://ror.org/051d8c692', 'no_lang_code', 1, 'https://ror.org/051d8c692 Single Technologies (Sweden)'),
(29548, 'https://ror.org/02xy94a15', 'no_lang_code', 1, 'https://ror.org/02xy94a15 ChromoGenics (Sweden)'),
(29549, 'https://ror.org/046y2e354', 'no_lang_code', 1, 'https://ror.org/046y2e354 Cinside (Sweden)'),
(29550, 'https://ror.org/04he8ec30', 'no_lang_code', 1, 'https://ror.org/04he8ec30 Finja (Sweden)'),
(29551, 'https://ror.org/0203am321', 'en', 1, 'https://ror.org/0203am321 Göteborg Region Association of Local Authorities'),
(29552, 'https://ror.org/03t810x25', 'no_lang_code', 1, 'https://ror.org/03t810x25 Disruptive Materials (Sweden)'),
(29553, 'https://ror.org/01tasjp55', 'no_lang_code', 1, 'https://ror.org/01tasjp55 Cipherstone Technologies (Sweden)'),
(29554, 'https://ror.org/0353v0664', 'no_lang_code', 1, 'https://ror.org/0353v0664 Clinical Laserthermia Systems (Sweden)'),
(29555, 'https://ror.org/05005pp50', 'no_lang_code', 1, 'https://ror.org/05005pp50 Division By Zero (Sweden)'),
(29556, 'https://ror.org/0587gk311', 'no_lang_code', 1, 'https://ror.org/0587gk311 Flexenclosure (Sweden)'),
(29557, 'https://ror.org/00fmqk596', 'no_lang_code', 1, 'https://ror.org/00fmqk596 Cobolt (Sweden)'),
(29558, 'https://ror.org/006h41552', 'no_lang_code', 1, 'https://ror.org/006h41552 Appear Networks (Sweden)'),
(29559, 'https://ror.org/0321f3g84', 'no_lang_code', 1, 'https://ror.org/0321f3g84 Doberman (Sweden)'),
(29560, 'https://ror.org/0290taq42', 'no_lang_code', 1, 'https://ror.org/0290taq42 Applied Nano Surfaces (Sweden)'),
(29561, 'https://ror.org/021ccwy92', 'no_lang_code', 1, 'https://ror.org/021ccwy92 APR Technologies (Sweden)'),
(29562, 'https://ror.org/01e98vj82', 'no_lang_code', 1, 'https://ror.org/01e98vj82 Flexiwaggon (Sweden)'),
(29563, 'https://ror.org/05xxpak83', 'no_lang_code', 1, 'https://ror.org/05xxpak83 Cognimatics (Sweden)'),
(29564, 'https://ror.org/04jrge359', 'no_lang_code', 1, 'https://ror.org/04jrge359 FlexProp (Sweden)'),
(29565, 'https://ror.org/002xt7430', 'no_lang_code', 1, 'https://ror.org/002xt7430 Cold Cut Systems (Sweden)'),
(29566, 'https://ror.org/04hx50087', 'no_lang_code', 1, 'https://ror.org/04hx50087 ScoreCloud (Sweden)'),
(29567, 'https://ror.org/04y0mk629', 'no_lang_code', 1, 'https://ror.org/04y0mk629 Blackwing (Sweden)'),
(29568, 'https://ror.org/03j7gdq44', 'no_lang_code', 1, 'https://ror.org/03j7gdq44 Aqua-Q (Sweden)'),
(29569, 'https://ror.org/04be58j18', 'no_lang_code', 1, 'https://ror.org/04be58j18 Folke Rydén Production (Sweden)'),
(29570, 'https://ror.org/01yncvq70', 'no_lang_code', 1, 'https://ror.org/01yncvq70 Aventia (Spain)'),
(29571, 'https://ror.org/01g8r3j92', 'no_lang_code', 1, 'https://ror.org/01g8r3j92 Follicum (Sweden)'),
(29572, 'https://ror.org/01j7tpx52', 'no_lang_code', 1, 'https://ror.org/01j7tpx52 DSM (Austria)'),
(29573, 'https://ror.org/03gyay052', 'sv', 1, 'https://ror.org/03gyay052 Förbundet Unga Forskare'),
(29574, 'https://ror.org/04yvxfz47', 'no_lang_code', 1, 'https://ror.org/04yvxfz47 American Axle & Manufacturing (Sweden)'),
(29575, 'https://ror.org/05nq2wt36', 'no_lang_code', 1, 'https://ror.org/05nq2wt36 EasyMining (Sweden)'),
(29576, 'https://ror.org/00vyw7j44', 'en', 1, 'https://ror.org/00vyw7j44 Swedish Institute for Studies in Education and Research'),
(29577, 'https://ror.org/00pftnv23', 'sv', 1, 'https://ror.org/00pftnv23 Association of Heavy Vehicles Tunga Fordon'),
(29578, 'https://ror.org/05drtms27', 'no_lang_code', 1, 'https://ror.org/05drtms27 Aqwary (Sweden)'),
(29579, 'https://ror.org/02rf1sg12', 'no_lang_code', 1, 'https://ror.org/02rf1sg12 Ecoloop (Sweden)'),
(29580, 'https://ror.org/03rn5p709', 'de', 1, 'https://ror.org/03rn5p709 Architekturzentrum Wien'),
(29581, 'https://ror.org/059tmdq14', 'de', 1, 'https://ror.org/059tmdq14 Institut für den Donauraum und Mitteleuropa'),
(29582, 'https://ror.org/00tktp346', 'no_lang_code', 1, 'https://ror.org/00tktp346 Effectus But Different (Sweden)'),
(29583, 'https://ror.org/03k5mtb95', 'de', 1, 'https://ror.org/03k5mtb95 Archiv der Erzdiözese Salzburg'),
(29584, 'https://ror.org/05bzq4y23', 'no_lang_code', 1, 'https://ror.org/05bzq4y23 Efficax Energy (Sweden)'),
(29585, 'https://ror.org/031kbs337', 'en', 1, 'https://ror.org/031kbs337 Institut für jüdische Geschichte Österreichs Institute for Jewish History in Austria'),
(29586, 'https://ror.org/02wr53m35', 'no_lang_code', 1, 'https://ror.org/02wr53m35 Arboritec (Sweden)'),
(29587, 'https://ror.org/051g4aa15', 'no_lang_code', 1, 'https://ror.org/051g4aa15 Arcticus Systems (Sweden)'),
(29588, 'https://ror.org/05vbajd50', 'no_lang_code', 1, 'https://ror.org/05vbajd50 EkoBalans Fenix (Sweden)'),
(29589, 'https://ror.org/03fjcpp91', 'no_lang_code', 1, 'https://ror.org/03fjcpp91 Ariterm (Sweden)'),
(29590, 'https://ror.org/01tqp0709', 'en', 1, 'https://ror.org/01tqp0709 Austrian Institute of Historical Research Institut für Österreichische Geschichtsforschung'),
(29591, 'https://ror.org/05qphs016', 'no_lang_code', 1, 'https://ror.org/05qphs016 Fotonic (Sweden)'),
(29592, 'https://ror.org/04hgyes27', 'no_lang_code', 1, 'https://ror.org/04hgyes27 Ideus (Sweden)'),
(29593, 'https://ror.org/05vdzgj37', 'sv', 1, 'https://ror.org/05vdzgj37 Drivhuset'),
(29594, 'https://ror.org/05225qa62', 'no_lang_code', 1, 'https://ror.org/05225qa62 Ascatron (Sweden)'),
(29595, 'https://ror.org/035af0m16', 'no_lang_code', 1, 'https://ror.org/035af0m16 Icellate (Sweden)'),
(29596, 'https://ror.org/01gtwn585', 'no_lang_code', 1, 'https://ror.org/01gtwn585 Athera (Sweden)'),
(29597, 'https://ror.org/00bscyw28', 'en', 1, 'https://ror.org/00bscyw28 International Bureau of Fiscal Documentation'),
(29598, 'https://ror.org/052xa3526', 'sv', 1, 'https://ror.org/052xa3526 FoU Södertörn'),
(29599, 'https://ror.org/01cwt3h50', 'no_lang_code', 1, 'https://ror.org/01cwt3h50 Gothia Innovation (Sweden)'),
(29600, 'https://ror.org/05f7x7e62', 'no_lang_code', 1, 'https://ror.org/05f7x7e62 Gotmic (Sweden)'),
(29601, 'https://ror.org/02kq93n74', 'no_lang_code', 1, 'https://ror.org/02kq93n74 Gradientech (Sweden)'),
(29602, 'https://ror.org/04vfnc742', 'no_lang_code', 1, 'https://ror.org/04vfnc742 Founders Alliance (Sweden)'),
(29603, 'https://ror.org/05cjzsz62', 'de', 1, 'https://ror.org/05cjzsz62 Institut für Volkskultur und Kulturentwicklung'),
(29604, 'https://ror.org/025z7wk46', 'no_lang_code', 1, 'https://ror.org/025z7wk46 Gu Holding (Sweden)'),
(29605, 'https://ror.org/024wcbg54', 'no_lang_code', 1, 'https://ror.org/024wcbg54 Free2move (Sweden)'),
(29606, 'https://ror.org/030hmhj85', 'de', 1, 'https://ror.org/030hmhj85 Institut für Wissenschaft und Kunst'),
(29607, 'https://ror.org/011j46d86', 'no_lang_code', 1, 'https://ror.org/011j46d86 FriGeo (Sweden)'),
(29608, 'https://ror.org/03w6bzp59', 'no_lang_code', 1, 'https://ror.org/03w6bzp59 Fujitsu (Sweden)'),
(29609, 'https://ror.org/04587tq63', 'sv', 1, 'https://ror.org/04587tq63 Eksjö Municipality'),
(29610, 'https://ror.org/026tvjz61', 'sv', 1, 'https://ror.org/026tvjz61 ATK Arbetstagarkonsultation'),
(29611, 'https://ror.org/056rhtj86', 'sv', 1, 'https://ror.org/056rhtj86 Hälsans Nya Verktyg'),
(29612, 'https://ror.org/045w2qd40', 'no_lang_code', 1, 'https://ror.org/045w2qd40 ElectroHeat (Sweden)'),
(29613, 'https://ror.org/03advjx75', 'en', 1, 'https://ror.org/03advjx75 Future Position X'),
(29614, 'https://ror.org/05q9hkp18', 'en', 1, 'https://ror.org/05q9hkp18 Austrian Institute for International Affairs Österreichische Institut für Internationale Politik'),
(29615, 'https://ror.org/03k09ka51', 'en', 1, 'https://ror.org/03k09ka51 Institute for Financial Research'),
(29616, 'https://ror.org/05d8zhh23', 'no_lang_code', 1, 'https://ror.org/05d8zhh23 Elfarm (Sweden)'),
(29617, 'https://ror.org/02t5vgv32', 'no_lang_code', 1, 'https://ror.org/02t5vgv32 GasPorOx (Sweden)'),
(29618, 'https://ror.org/021zf9412', 'no_lang_code', 1, 'https://ror.org/021zf9412 Gavagai (Sweden)'),
(29619, 'https://ror.org/02d9kar35', 'no_lang_code', 1, 'https://ror.org/02d9kar35 Ellen (Sweden)'),
(29620, 'https://ror.org/02bjb1a43', 'no_lang_code', 1, 'https://ror.org/02bjb1a43 GearWheel (Sweden)'),
(29621, 'https://ror.org/05vf4zc90', 'en', 1, 'https://ror.org/05vf4zc90 Austrian Political Science Association Österreichische Gesellschaft für Politikwissenschaft'),
(29622, 'https://ror.org/02gs17047', 'no_lang_code', 1, 'https://ror.org/02gs17047 HelioCaminus (Sweden)'),
(29623, 'https://ror.org/04e77ta80', 'no_lang_code', 1, 'https://ror.org/04e77ta80 Genovis (Sweden)'),
(29624, 'https://ror.org/02jd1mn89', 'no_lang_code', 1, 'https://ror.org/02jd1mn89 Emstone (Sweden)'),
(29625, 'https://ror.org/01qa8hz22', 'no_lang_code', 1, 'https://ror.org/01qa8hz22 Aventure (Sweden)'),
(29626, 'https://ror.org/01ss1ax86', 'no_lang_code', 1, 'https://ror.org/01ss1ax86 Geosigma (Sweden)'),
(29627, 'https://ror.org/04fphdf97', 'no_lang_code', 1, 'https://ror.org/04fphdf97 Avtech (Sweden)'),
(29628, 'https://ror.org/056154p75', 'no_lang_code', 1, 'https://ror.org/056154p75 Gestamp (Sweden)'),
(29629, 'https://ror.org/04jnypc35', 'no_lang_code', 1, 'https://ror.org/04jnypc35 Integrum (Sweden)'),
(29630, 'https://ror.org/04c326720', 'no_lang_code', 1, 'https://ror.org/04c326720 Axcentua (Sweden)'),
(29631, 'https://ror.org/017ry0003', 'no_lang_code', 1, 'https://ror.org/017ry0003 Hermes Medical Solutions (Sweden)'),
(29632, 'https://ror.org/00ywaqr80', 'sv', 1, 'https://ror.org/00ywaqr80 Chalmersinvest'),
(29633, 'https://ror.org/05nzk9q32', 'no_lang_code', 1, 'https://ror.org/05nzk9q32 Intelligent Machines (Sweden)'),
(29634, 'https://ror.org/032sd8787', 'no_lang_code', 1, 'https://ror.org/032sd8787 Axiomatics (Sweden)'),
(29635, 'https://ror.org/02j5aza86', 'en', 1, 'https://ror.org/02j5aza86 Swedish History Museum'),
(29636, 'https://ror.org/03bxfwk92', 'no_lang_code', 1, 'https://ror.org/03bxfwk92 Enmesh (Sweden)'),
(29637, 'https://ror.org/024gx1m25', 'no_lang_code', 1, 'https://ror.org/024gx1m25 IntelliWork (Sweden)'),
(29638, 'https://ror.org/009tdmt49', 'no_lang_code', 1, 'https://ror.org/009tdmt49 Hoa''s Tool Shop (Sweden)'),
(29639, 'https://ror.org/02gsfxh78', 'no_lang_code', 1, 'https://ror.org/02gsfxh78 Envic Sense (Sweden)'),
(29640, 'https://ror.org/04hk68s94', 'no_lang_code', 1, 'https://ror.org/04hk68s94 Gipeco (Sweden)'),
(29641, 'https://ror.org/03y3tpz14', 'no_lang_code', 1, 'https://ror.org/03y3tpz14 Inteno (Sweden)'),
(29642, 'https://ror.org/02g70zk77', 'no_lang_code', 1, 'https://ror.org/02g70zk77 BioEnergy International (Austria)'),
(29643, 'https://ror.org/03aqvdh64', 'no_lang_code', 1, 'https://ror.org/03aqvdh64 Mecdon (Sweden)'),
(29644, 'https://ror.org/015dbac72', 'no_lang_code', 1, 'https://ror.org/015dbac72 Hot Disk (Sweden)'),
(29645, 'https://ror.org/033y13v84', 'no_lang_code', 1, 'https://ror.org/033y13v84 Hotswaps (Sweden)'),
(29646, 'https://ror.org/021t57y21', 'no_lang_code', 1, 'https://ror.org/021t57y21 HUI Research (Sweden)'),
(29647, 'https://ror.org/012494h40', 'no_lang_code', 1, 'https://ror.org/012494h40 Mercene Labs (Sweden)'),
(29648, 'https://ror.org/010z1he39', 'no_lang_code', 1, 'https://ror.org/010z1he39 Hulteberg (Sweden)'),
(29649, 'https://ror.org/007kcsb16', 'no_lang_code', 1, 'https://ror.org/007kcsb16 Hultsteins (Sweden)'),
(29650, 'https://ror.org/04f5qb772', 'no_lang_code', 1, 'https://ror.org/04f5qb772 Inventech Europe (Sweden)'),
(29651, 'https://ror.org/02ayh6y70', 'no_lang_code', 1, 'https://ror.org/02ayh6y70 Husqvarna (Sweden)'),
(29652, 'https://ror.org/05atbz571', 'no_lang_code', 1, 'https://ror.org/05atbz571 Mentor Communication (Sweden)'),
(29653, 'https://ror.org/03q854t26', 'en', 1, 'https://ror.org/03q854t26 Höhere Bundeslehr- und Forschungsanstalt für Landwirtschaft, Landtechnik und Lebensmitteltechnologie Josephinum Research'),
(29654, 'https://ror.org/036cxc626', 'no_lang_code', 1, 'https://ror.org/036cxc626 Inwido (Sweden)'),
(29655, 'https://ror.org/03cns3576', 'no_lang_code', 1, 'https://ror.org/03cns3576 BehavioSec (Sweden)'),
(29656, 'https://ror.org/02zh9ta75', 'no_lang_code', 1, 'https://ror.org/02zh9ta75 BeeMobile (Sweden)'),
(29657, 'https://ror.org/01ary0143', 'no_lang_code', 1, 'https://ror.org/01ary0143 Kairos Future (Sweden)'),
(29658, 'https://ror.org/00835s883', 'no_lang_code', 1, 'https://ror.org/00835s883 Ionautics (Sweden)'),
(29659, 'https://ror.org/00cpqht96', 'no_lang_code', 1, 'https://ror.org/00cpqht96 Bencar (Sweden)'),
(29660, 'https://ror.org/03sxag889', 'no_lang_code', 1, 'https://ror.org/03sxag889 MetaSolutions (Sweden)'),
(29661, 'https://ror.org/00361m323', 'no_lang_code', 1, 'https://ror.org/00361m323 Micro Delta T (Sweden)'),
(29662, 'https://ror.org/01x87db24', 'en', 1, 'https://ror.org/01x87db24 Sunder Lal Jain Hospital'),
(29663, 'https://ror.org/040046r87', 'no_lang_code', 1, 'https://ror.org/040046r87 Källbergs Industri (Sweden)'),
(29664, 'https://ror.org/02vhq0d75', 'en', 1, 'https://ror.org/02vhq0d75 Mid Sweden Science Park'),
(29665, 'https://ror.org/054kjk513', 'no_lang_code', 1, 'https://ror.org/054kjk513 IRnova (Sweden)'),
(29666, 'https://ror.org/02n74s845', 'sv', 1, 'https://ror.org/02n74s845 Kalmar Art Museum Kalmar Konstmuseum'),
(29667, 'https://ror.org/05vgnmj77', 'no_lang_code', 1, 'https://ror.org/05vgnmj77 Innovation Management Consulting Group (Sweden)'),
(29668, 'https://ror.org/04v4hfj66', 'no_lang_code', 1, 'https://ror.org/04v4hfj66 Image Intelligence (Sweden)'),
(29669, 'https://ror.org/04882a678', 'no_lang_code', 1, 'https://ror.org/04882a678 MidDec Scandinavia (Sweden)'),
(29670, 'https://ror.org/05cbz1141', 'no_lang_code', 1, 'https://ror.org/05cbz1141 Irras (Sweden)'),
(29671, 'https://ror.org/01dbg2h54', 'no_lang_code', 1, 'https://ror.org/01dbg2h54 Immunsystem (Sweden)'),
(29672, 'https://ror.org/05xpbrb70', 'en', 1, 'https://ror.org/05xpbrb70 Karl-Adam Bonnier Foundation'),
(29673, 'https://ror.org/0559w8070', 'no_lang_code', 1, 'https://ror.org/0559w8070 Immune Therapy Holdings (Sweden)'),
(29674, 'https://ror.org/05deh3d91', 'no_lang_code', 1, 'https://ror.org/05deh3d91 HeidelbergCement (Sweden)'),
(29675, 'https://ror.org/01mttx554', 'no_lang_code', 1, 'https://ror.org/01mttx554 Immunicum (Sweden)'),
(29676, 'https://ror.org/01ja2b492', 'no_lang_code', 1, 'https://ror.org/01ja2b492 Besab (Sweden)'),
(29677, 'https://ror.org/00mepd532', 'en', 1, 'https://ror.org/00mepd532 Catholic Theological Private University Linz Katholische Privat-Universität Linz'),
(29678, 'https://ror.org/05198nw13', 'no_lang_code', 1, 'https://ror.org/05198nw13 Immunovia (Sweden)'),
(29679, 'https://ror.org/00xyx0e45', 'no_lang_code', 1, 'https://ror.org/00xyx0e45 ITS (Sweden)'),
(29680, 'https://ror.org/02qv4je94', 'no_lang_code', 1, 'https://ror.org/02qv4je94 Impact Coatings (Sweden)'),
(29681, 'https://ror.org/03shhge35', 'no_lang_code', 1, 'https://ror.org/03shhge35 BioArctic Neuroscience (Sweden)'),
(29682, 'https://ror.org/03c2x7w83', 'no_lang_code', 1, 'https://ror.org/03c2x7w83 BioLamina (Sweden)'),
(29683, 'https://ror.org/02w5xx833', 'no_lang_code', 1, 'https://ror.org/02w5xx833 Biomotif (Sweden)'),
(29684, 'https://ror.org/00ekapt69', 'no_lang_code', 1, 'https://ror.org/00ekapt69 Möbelriket (Sweden)'),
(29685, 'https://ror.org/02wvrmv25', 'no_lang_code', 1, 'https://ror.org/02wvrmv25 Industrial Development Center (Sweden)'),
(29686, 'https://ror.org/025yjyh61', 'no_lang_code', 1, 'https://ror.org/025yjyh61 Bioprocess Control (Sweden)'),
(29687, 'https://ror.org/05k2cam34', 'no_lang_code', 1, 'https://ror.org/05k2cam34 Impact Hub (Sweden)'),
(29688, 'https://ror.org/00kchf187', 'no_lang_code', 1, 'https://ror.org/00kchf187 Moberg Pharma (Sweden)'),
(29689, 'https://ror.org/04rwrjk88', 'no_lang_code', 1, 'https://ror.org/04rwrjk88 Bioptech (Sweden)'),
(29690, 'https://ror.org/05bthpx67', 'no_lang_code', 1, 'https://ror.org/05bthpx67 Indusec (Sweden)'),
(29691, 'https://ror.org/00vnh7v52', 'en', 1, 'https://ror.org/00vnh7v52 Johanneberg Science Park'),
(29692, 'https://ror.org/03ngd3730', 'no_lang_code', 1, 'https://ror.org/03ngd3730 Mobergs (Sweden)'),
(29693, 'https://ror.org/0481zh362', 'no_lang_code', 1, 'https://ror.org/0481zh362 Preeye Solutions (Sweden)'),
(29694, 'https://ror.org/03zqd9158', 'no_lang_code', 1, 'https://ror.org/03zqd9158 BioResonator (Sweden)'),
(29695, 'https://ror.org/014yc4v19', 'no_lang_code', 1, 'https://ror.org/014yc4v19 Inera (Sweden)'),
(29696, 'https://ror.org/02wyf5v78', 'no_lang_code', 1, 'https://ror.org/02wyf5v78 JonDeTech (Sweden)'),
(29697, 'https://ror.org/03v7cee73', 'no_lang_code', 1, 'https://ror.org/03v7cee73 Bioservo Technologies (Sweden)'),
(29698, 'https://ror.org/016cc6840', 'no_lang_code', 1, 'https://ror.org/016cc6840 Mobile Heights (Sweden)'),
(29699, 'https://ror.org/057xcq908', 'no_lang_code', 1, 'https://ror.org/057xcq908 Inerventions (Sweden)'),
(29700, 'https://ror.org/00xtdda21', 'no_lang_code', 1, 'https://ror.org/00xtdda21 Monocl (Sweden)'),
(29701, 'https://ror.org/01kxxsk90', 'no_lang_code', 1, 'https://ror.org/01kxxsk90 Klimator (Sweden)'),
(29702, 'https://ror.org/039qv4027', 'no_lang_code', 1, 'https://ror.org/039qv4027 Biovica (Sweden)'),
(29703, 'https://ror.org/02r6tx669', 'no_lang_code', 1, 'https://ror.org/02r6tx669 Biteam (Sweden)'),
(29704, 'https://ror.org/03c1ky010', 'no_lang_code', 1, 'https://ror.org/03c1ky010 MRT System (Sweden)'),
(29705, 'https://ror.org/01nk5jw70', 'no_lang_code', 1, 'https://ror.org/01nk5jw70 Bjarga (Sweden)'),
(29706, 'https://ror.org/04jnb5p59', 'no_lang_code', 1, 'https://ror.org/04jnb5p59 OpiFlex (Sweden)'),
(29707, 'https://ror.org/03bz02915', 'no_lang_code', 1, 'https://ror.org/03bz02915 Infobric (Sweden)'),
(29708, 'https://ror.org/04dxp6p61', 'no_lang_code', 1, 'https://ror.org/04dxp6p61 Koenigsegg Automotive (Sweden)'),
(29709, 'https://ror.org/03kcnwv71', 'no_lang_code', 1, 'https://ror.org/03kcnwv71 Björkemar Construction & Consulting (Sweden)'),
(29710, 'https://ror.org/022t09m69', 'no_lang_code', 1, 'https://ror.org/022t09m69 Optea (Sweden)'),
(29711, 'https://ror.org/049c6rx58', 'en', 1, 'https://ror.org/049c6rx58 MTO Safety'),
(29712, 'https://ror.org/03nscdm67', 'no_lang_code', 1, 'https://ror.org/03nscdm67 OptiCall Software (Sweden)'),
(29713, 'https://ror.org/03qe79b76', 'no_lang_code', 1, 'https://ror.org/03qe79b76 Optiplan (Sweden)'),
(29714, 'https://ror.org/03g37tj89', 'no_lang_code', 1, 'https://ror.org/03g37tj89 Premune (Sweden)'),
(29715, 'https://ror.org/017gd8s27', 'de', 1, 'https://ror.org/017gd8s27 Initiative Minderheiten Tirol'),
(29716, 'https://ror.org/013ybys37', 'en', 1, 'https://ror.org/013ybys37 Museum für angewandte Kunst Museum of Applied Arts'),
(29717, 'https://ror.org/038y74z78', 'no_lang_code', 1, 'https://ror.org/038y74z78 Inkubatorn i Borås (Sweden)'),
(29718, 'https://ror.org/05t7fez51', 'no_lang_code', 1, 'https://ror.org/05t7fez51 Danaher (Sweden)'),
(29719, 'https://ror.org/017xy1565', 'no_lang_code', 1, 'https://ror.org/017xy1565 Optistring (Sweden)'),
(29720, 'https://ror.org/0567jp802', 'no_lang_code', 1, 'https://ror.org/0567jp802 Mutewatch (Sweden)'),
(29721, 'https://ror.org/0424rzx44', 'no_lang_code', 1, 'https://ror.org/0424rzx44 Innospire Systems (United States)'),
(29722, 'https://ror.org/00h6yfh70', 'no_lang_code', 1, 'https://ror.org/00h6yfh70 Innovation Impact (Sweden)'),
(29723, 'https://ror.org/00ab43a31', 'no_lang_code', 1, 'https://ror.org/00ab43a31 Optronic (Sweden)'),
(29724, 'https://ror.org/052f1qm24', 'no_lang_code', 1, 'https://ror.org/052f1qm24 Mw-innovation (Sweden)'),
(29725, 'https://ror.org/057s7cs58', 'no_lang_code', 1, 'https://ror.org/057s7cs58 Primateria (Sweden)'),
(29726, 'https://ror.org/03s99w274', 'no_lang_code', 1, 'https://ror.org/03s99w274 Innovation Pioneers (Sweden)'),
(29727, 'https://ror.org/028jkr794', 'no_lang_code', 1, 'https://ror.org/028jkr794 PrimeKey Solutions (Sweden)'),
(29728, 'https://ror.org/05pj1wk28', 'no_lang_code', 1, 'https://ror.org/05pj1wk28 Orbital Systems (Sweden)'),
(29729, 'https://ror.org/00wtk6m97', 'en', 1, 'https://ror.org/00wtk6m97 Growth Analysis'),
(29730, 'https://ror.org/01x3s6t84', 'no_lang_code', 1, 'https://ror.org/01x3s6t84 Innovatum (Sweden)'),
(29731, 'https://ror.org/0025qh018', 'no_lang_code', 1, 'https://ror.org/0025qh018 Procera Networks (Sweden)'),
(29732, 'https://ror.org/012njsm94', 'no_lang_code', 1, 'https://ror.org/012njsm94 PositiveID (United States)'),
(29733, 'https://ror.org/00anzjr50', 'en', 1, 'https://ror.org/00anzjr50 Örebro Municipality'),
(29734, 'https://ror.org/03pt05741', 'en', 1, 'https://ror.org/03pt05741 Business Sweden'),
(29735, 'https://ror.org/02dcwa654', 'en', 1, 'https://ror.org/02dcwa654 Nacka Municipality'),
(29736, 'https://ror.org/0060v6x94', 'no_lang_code', 1, 'https://ror.org/0060v6x94 Nanexa (Sweden)'),
(29737, 'https://ror.org/010p72t82', 'no_lang_code', 1, 'https://ror.org/010p72t82 Processkontroll (Sweden)'),
(29738, 'https://ror.org/01cf25767', 'no_lang_code', 1, 'https://ror.org/01cf25767 Orexo (Sweden)'),
(29739, 'https://ror.org/019nmk183', 'no_lang_code', 1, 'https://ror.org/019nmk183 Promimic (Sweden)'),
(29740, 'https://ror.org/02w7ppq59', 'no_lang_code', 1, 'https://ror.org/02w7ppq59 Narrative (Sweden)'),
(29741, 'https://ror.org/00n7wkq71', 'no_lang_code', 1, 'https://ror.org/00n7wkq71 Orexplore (Sweden)'),
(29742, 'https://ror.org/024hwtz39', 'no_lang_code', 1, 'https://ror.org/024hwtz39 SenseAir (Sweden)'),
(29743, 'https://ror.org/02rrbkd45', 'no_lang_code', 1, 'https://ror.org/02rrbkd45 OrganoClick (Sweden)'),
(29744, 'https://ror.org/00a3trs85', 'no_lang_code', 1, 'https://ror.org/00a3trs85 Kunskapsbolaget (Sweden)'),
(29745, 'https://ror.org/0165bgf07', 'no_lang_code', 1, 'https://ror.org/0165bgf07 Provexa (Sweden)'),
(29746, 'https://ror.org/03860nf78', 'no_lang_code', 1, 'https://ror.org/03860nf78 SenseGraphics (Sweden)'),
(29747, 'https://ror.org/01qrenj43', 'en', 1, 'https://ror.org/01qrenj43 Örnsköldsvik Municipality'),
(29748, 'https://ror.org/01abtbz07', 'no_lang_code', 1, 'https://ror.org/01abtbz07 Sensible Solutions (Sweden)');
INSERT INTO `rors` VALUES
(29749, 'https://ror.org/057kca452', 'no_lang_code', 1, 'https://ror.org/057kca452 SenSic (Sweden)'),
(29750, 'https://ror.org/03m099247', 'no_lang_code', 1, 'https://ror.org/03m099247 Proximion (Sweden)'),
(29751, 'https://ror.org/04mtxrz85', 'no_lang_code', 1, 'https://ror.org/04mtxrz85 Ortoma (Sweden)'),
(29752, 'https://ror.org/010zsv180', 'en', 1, 'https://ror.org/010zsv180 Network for Transport Measures'),
(29753, 'https://ror.org/040d40q10', 'de', 1, 'https://ror.org/040d40q10 Kunstakademie Düsseldorf'),
(29754, 'https://ror.org/01p7q7732', 'no_lang_code', 1, 'https://ror.org/01p7q7732 Senzime (Sweden)'),
(29755, 'https://ror.org/049tk1906', 'no_lang_code', 1, 'https://ror.org/049tk1906 Flex (Sweden)'),
(29756, 'https://ror.org/00twq6n75', 'no_lang_code', 1, 'https://ror.org/00twq6n75 OssDsign (Sweden)'),
(29757, 'https://ror.org/00bn9mm21', 'no_lang_code', 1, 'https://ror.org/00bn9mm21 Publit (Sweden)'),
(29758, 'https://ror.org/0095xxn33', 'no_lang_code', 1, 'https://ror.org/0095xxn33 SEPS Technologies (Sweden)'),
(29759, 'https://ror.org/00gtgme55', 'no_lang_code', 1, 'https://ror.org/00gtgme55 Qlucore (Sweden)'),
(29760, 'https://ror.org/01qcn4432', 'no_lang_code', 1, 'https://ror.org/01qcn4432 Serendipity Innovations (Sweden)'),
(29761, 'https://ror.org/02n2kz479', 'no_lang_code', 1, 'https://ror.org/02n2kz479 Kvarnstrands (Sweden)'),
(29762, 'https://ror.org/00269y122', 'no_lang_code', 1, 'https://ror.org/00269y122 Serstech (Sweden)'),
(29763, 'https://ror.org/05ptj5165', 'no_lang_code', 1, 'https://ror.org/05ptj5165 Needs Drive (Sweden)'),
(29764, 'https://ror.org/02h15pd98', 'no_lang_code', 1, 'https://ror.org/02h15pd98 Osstell (Sweden)'),
(29765, 'https://ror.org/001abtb92', 'no_lang_code', 1, 'https://ror.org/001abtb92 NeoDynamics (Sweden)'),
(29766, 'https://ror.org/05x91m338', 'en', 1, 'https://ror.org/05x91m338 Norwegian Labour Movement Archives and Library'),
(29767, 'https://ror.org/04rxwag77', 'no_lang_code', 1, 'https://ror.org/04rxwag77 Setek Elektronik (Sweden)'),
(29768, 'https://ror.org/04wazj198', 'en', 1, 'https://ror.org/04wazj198 Steel Structures Education Foundation'),
(29769, 'https://ror.org/00twmc436', 'no_lang_code', 1, 'https://ror.org/00twmc436 Setrab (Sweden)'),
(29770, 'https://ror.org/02aeyw607', 'no_lang_code', 1, 'https://ror.org/02aeyw607 Qrodo (Sweden)'),
(29771, 'https://ror.org/047p1nv89', 'no_lang_code', 1, 'https://ror.org/047p1nv89 Neonode (Sweden)'),
(29772, 'https://ror.org/0000m8h16', 'no_lang_code', 1, 'https://ror.org/0000m8h16 QRtech (Sweden)'),
(29773, 'https://ror.org/00gprmt59', 'en', 1, 'https://ror.org/00gprmt59 NetPort Science Park'),
(29774, 'https://ror.org/01fs6c127', 'no_lang_code', 1, 'https://ror.org/01fs6c127 Signal Processing Devices (Sweden)'),
(29775, 'https://ror.org/05d5rz672', 'no_lang_code', 1, 'https://ror.org/05d5rz672 Quantum Technologies (Sweden)'),
(29776, 'https://ror.org/02gtbcv54', 'no_lang_code', 1, 'https://ror.org/02gtbcv54 Nexam Chemical (Sweden)'),
(29777, 'https://ror.org/03jcmr522', 'no_lang_code', 1, 'https://ror.org/03jcmr522 re8 Bioplastics (Sweden)'),
(29778, 'https://ror.org/02zhy2e32', 'no_lang_code', 1, 'https://ror.org/02zhy2e32 Sigolis (Sweden)'),
(29779, 'https://ror.org/04cj0jk63', 'de', 1, 'https://ror.org/04cj0jk63 Landesmuseum Kärnten'),
(29780, 'https://ror.org/03516qg53', 'no_lang_code', 1, 'https://ror.org/03516qg53 Ngenic (Sweden)'),
(29781, 'https://ror.org/01ks4mk39', 'no_lang_code', 1, 'https://ror.org/01ks4mk39 Realtime Embedded (Sweden)'),
(29782, 'https://ror.org/058hg4545', 'no_lang_code', 1, 'https://ror.org/058hg4545 Simris Alg (Sweden)'),
(29783, 'https://ror.org/03fb0b548', 'en', 1, 'https://ror.org/03fb0b548 Austrian State Archives Österreichisches Staatsarchiv'),
(29784, 'https://ror.org/00hcek131', 'no_lang_code', 1, 'https://ror.org/00hcek131 SimWay (Sweden)'),
(29785, 'https://ror.org/02wkxng78', 'no_lang_code', 1, 'https://ror.org/02wkxng78 RecondOil (Sweden)'),
(29786, 'https://ror.org/05g5zwf18', 'no_lang_code', 1, 'https://ror.org/05g5zwf18 Sioxmachines (Sweden)'),
(29787, 'https://ror.org/02fmdkd55', 'no_lang_code', 1, 'https://ror.org/02fmdkd55 Nibie Ab (Sweden)'),
(29788, 'https://ror.org/037v60n25', 'no_lang_code', 1, 'https://ror.org/037v60n25 Recorded Future (Sweden)'),
(29789, 'https://ror.org/01b242r72', 'no_lang_code', 1, 'https://ror.org/01b242r72 Sirona Health Solutions (Sweden)'),
(29790, 'https://ror.org/0463x0716', 'no_lang_code', 1, 'https://ror.org/0463x0716 Red Glead Discovery (Sweden)'),
(29791, 'https://ror.org/01ajjyg96', 'en', 1, 'https://ror.org/01ajjyg96 Swedish Standards Institute'),
(29792, 'https://ror.org/035tsx707', 'en', 1, 'https://ror.org/035tsx707 Swedish Incubators & Science Parks'),
(29793, 'https://ror.org/00snhrb56', 'sv', 1, 'https://ror.org/00snhrb56 Skåne Food Innovation Network Skånes Livsmedelsakademi'),
(29794, 'https://ror.org/02vmvtc06', 'no_lang_code', 1, 'https://ror.org/02vmvtc06 Redoxis (Sweden)'),
(29795, 'https://ror.org/03v5h9q93', 'no_lang_code', 1, 'https://ror.org/03v5h9q93 Redsense Medical (Sweden)'),
(29796, 'https://ror.org/02pse1737', 'no_lang_code', 1, 'https://ror.org/02pse1737 Redwood Pharma (Sweden)'),
(29797, 'https://ror.org/00zsnqw46', 'en', 1, 'https://ror.org/00zsnqw46 Austrian Museum of Folk Life and Folk Art Österreichisches Museum für Volkskunde'),
(29798, 'https://ror.org/05e4gqg94', 'en', 1, 'https://ror.org/05e4gqg94 County Administrative Board of Stockholm'),
(29799, 'https://ror.org/01a2jte10', 'en', 1, 'https://ror.org/01a2jte10 Skövde Municipality'),
(29800, 'https://ror.org/01r8d0v51', 'no_lang_code', 1, 'https://ror.org/01r8d0v51 Nobel Museum'),
(29801, 'https://ror.org/038h81468', 'no_lang_code', 1, 'https://ror.org/038h81468 ReformTech (Sweden)'),
(29802, 'https://ror.org/01k8fjb77', 'no_lang_code', 1, 'https://ror.org/01k8fjb77 OverHorizon (Sweden)'),
(29803, 'https://ror.org/01zcfag54', 'no_lang_code', 1, 'https://ror.org/01zcfag54 Smart Eye (Sweden)'),
(29804, 'https://ror.org/034csv258', 'sv', 1, 'https://ror.org/034csv258 Övertorneå Municipality'),
(29805, 'https://ror.org/04a0z4y72', 'no_lang_code', 1, 'https://ror.org/04a0z4y72 Nordic Aircraft (Sweden)'),
(29806, 'https://ror.org/01f5v9z11', 'en', 1, 'https://ror.org/01f5v9z11 Swedish Network for Innovation & Technology Transfer Support'),
(29807, 'https://ror.org/045yq4549', 'no_lang_code', 1, 'https://ror.org/045yq4549 LC-Tec Displays (Sweden)'),
(29808, 'https://ror.org/026yx1y36', 'no_lang_code', 1, 'https://ror.org/026yx1y36 Ozma (Sweden)'),
(29809, 'https://ror.org/042zqj962', 'no_lang_code', 1, 'https://ror.org/042zqj962 Nordic Medcom (Sweden)'),
(29810, 'https://ror.org/011hf9620', 'no_lang_code', 1, 'https://ror.org/011hf9620 Nordic Paper (Sweden)'),
(29811, 'https://ror.org/028g62054', 'no_lang_code', 1, 'https://ror.org/028g62054 Replisaurus Technologies (Sweden)'),
(29812, 'https://ror.org/053met561', 'no_lang_code', 1, 'https://ror.org/053met561 RetCorr (Sweden)'),
(29813, 'https://ror.org/01e5nrv58', 'no_lang_code', 1, 'https://ror.org/01e5nrv58 Parans (Sweden)'),
(29814, 'https://ror.org/0193tbt93', 'no_lang_code', 1, 'https://ror.org/0193tbt93 Nordiq (Sweden)'),
(29815, 'https://ror.org/03ejgvq45', 'no_lang_code', 1, 'https://ror.org/03ejgvq45 ReTreck (Sweden)'),
(29816, 'https://ror.org/019gpcj13', 'en', 1, 'https://ror.org/019gpcj13 Patent- och registreringsverket Ruotsin patentti- ja rekisterivirasto Swedish Patent and Registration Office'),
(29817, 'https://ror.org/0467qa071', 'en', 1, 'https://ror.org/0467qa071 Nordic Museum'),
(29818, 'https://ror.org/05b09zv71', 'no_lang_code', 1, 'https://ror.org/05b09zv71 Lembke Elektromekaniska Verkstad (Sweden)'),
(29819, 'https://ror.org/02a9kj848', 'en', 1, 'https://ror.org/02a9kj848 Södertälje Municipality'),
(29820, 'https://ror.org/031422186', 'sv', 1, 'https://ror.org/031422186 Norrköping Science Park'),
(29821, 'https://ror.org/051mn7g75', 'en', 1, 'https://ror.org/051mn7g75 Peepoople'),
(29822, 'https://ror.org/04xh4sy96', 'no_lang_code', 1, 'https://ror.org/04xh4sy96 Södra Skogsägarna (Sweden)'),
(29823, 'https://ror.org/04d9sry41', 'no_lang_code', 1, 'https://ror.org/04d9sry41 Novosense (Sweden)'),
(29824, 'https://ror.org/03xrrsn68', 'no_lang_code', 1, 'https://ror.org/03xrrsn68 Riksteatern (Sweden)'),
(29825, 'https://ror.org/00td2g412', 'no_lang_code', 1, 'https://ror.org/00td2g412 Softronic (Sweden)'),
(29826, 'https://ror.org/02b2hzg62', 'sv', 1, 'https://ror.org/02b2hzg62 Rinkebyakademien'),
(29827, 'https://ror.org/01gffq935', 'no_lang_code', 1, 'https://ror.org/01gffq935 Nyfors (Sweden)'),
(29828, 'https://ror.org/02vs70k74', 'en', 1, 'https://ror.org/02vs70k74 Malmö Municipality'),
(29829, 'https://ror.org/02p3nxd53', 'no_lang_code', 1, 'https://ror.org/02p3nxd53 Penny (Sweden)'),
(29830, 'https://ror.org/00gtk7t05', 'no_lang_code', 1, 'https://ror.org/00gtk7t05 RLS Global (Sweden)'),
(29831, 'https://ror.org/00be47m52', 'no_lang_code', 1, 'https://ror.org/00be47m52 Perimed (Sweden)'),
(29832, 'https://ror.org/03tz2a620', 'en', 1, 'https://ror.org/03tz2a620 Lund Municipality'),
(29833, 'https://ror.org/01dhnm219', 'no_lang_code', 1, 'https://ror.org/01dhnm219 Solvatten (Sweden)'),
(29834, 'https://ror.org/03d7pcc67', 'no_lang_code', 1, 'https://ror.org/03d7pcc67 Oatly (Sweden)'),
(29835, 'https://ror.org/02f7dt951', 'no_lang_code', 1, 'https://ror.org/02f7dt951 RTI (Sweden)'),
(29836, 'https://ror.org/03fkfs504', 'en', 1, 'https://ror.org/03fkfs504 Luleå Municipality'),
(29837, 'https://ror.org/02q3ges18', 'no_lang_code', 1, 'https://ror.org/02q3ges18 Öhlins (Sweden)'),
(29838, 'https://ror.org/058bh7p93', 'de', 1, 'https://ror.org/058bh7p93 Pflanzensoziologische Institut'),
(29839, 'https://ror.org/054ym8s18', 'no_lang_code', 1, 'https://ror.org/054ym8s18 SågCenter (Sweden)'),
(29840, 'https://ror.org/04wcab306', 'no_lang_code', 1, 'https://ror.org/04wcab306 Photidify (Sweden)'),
(29841, 'https://ror.org/019naky64', 'no_lang_code', 1, 'https://ror.org/019naky64 PricewaterhouseCoopers (Sweden)'),
(29842, 'https://ror.org/01ddf6k31', 'no_lang_code', 1, 'https://ror.org/01ddf6k31 Omnisys Instruments (Sweden)'),
(29843, 'https://ror.org/05em4qg89', 'no_lang_code', 1, 'https://ror.org/05em4qg89 Piab (Sweden)'),
(29844, 'https://ror.org/05h6bgs51', 'no_lang_code', 1, 'https://ror.org/05h6bgs51 Samtrafiken (Sweden)'),
(29845, 'https://ror.org/03vcrdp23', 'no_lang_code', 1, 'https://ror.org/03vcrdp23 Oneday Wall (Sweden)'),
(29846, 'https://ror.org/019r2ty74', 'no_lang_code', 1, 'https://ror.org/019r2ty74 OpenEye (Sweden)'),
(29847, 'https://ror.org/01sbpwv26', 'no_lang_code', 1, 'https://ror.org/01sbpwv26 Plasmatrix (Sweden)'),
(29848, 'https://ror.org/03jvnsg56', 'no_lang_code', 1, 'https://ror.org/03jvnsg56 Saplo (Sweden)'),
(29849, 'https://ror.org/00md1r011', 'no_lang_code', 1, 'https://ror.org/00md1r011 SARomics Biostructures (Sweden)'),
(29850, 'https://ror.org/04y3y3z32', 'no_lang_code', 1, 'https://ror.org/04y3y3z32 ScandiDos (Sweden)'),
(29851, 'https://ror.org/00mh3mf48', 'no_lang_code', 1, 'https://ror.org/00mh3mf48 Centriair (Sweden)'),
(29852, 'https://ror.org/05mc52190', 'no_lang_code', 1, 'https://ror.org/05mc52190 Polymer Factory (Sweden)'),
(29853, 'https://ror.org/03vftr423', 'en', 1, 'https://ror.org/03vftr423 Entrepreneurship and Small Business Research Institute'),
(29854, 'https://ror.org/015dgkc47', 'en', 1, 'https://ror.org/015dgkc47 Mathleaks'),
(29855, 'https://ror.org/002av1788', 'no_lang_code', 1, 'https://ror.org/002av1788 Scanscot Technology (Sweden)'),
(29856, 'https://ror.org/02tr21n67', 'en', 1, 'https://ror.org/02tr21n67 Internet Foundation In Sweden'),
(29857, 'https://ror.org/019a9pq44', 'no_lang_code', 1, 'https://ror.org/019a9pq44 Schemagi (Sweden)'),
(29858, 'https://ror.org/0226hy875', 'no_lang_code', 1, 'https://ror.org/0226hy875 Minesto (Sweden)'),
(29859, 'https://ror.org/022t45q87', 'no_lang_code', 1, 'https://ror.org/022t45q87 Marstrom Composite (Sweden)'),
(29860, 'https://ror.org/04kqrq649', 'no_lang_code', 1, 'https://ror.org/04kqrq649 PP Polymer (Sweden)'),
(29861, 'https://ror.org/03ye3kp90', 'no_lang_code', 1, 'https://ror.org/03ye3kp90 Sciss (Sweden)'),
(29862, 'https://ror.org/008dxar67', 'no_lang_code', 1, 'https://ror.org/008dxar67 Scint-X (Sweden)'),
(29863, 'https://ror.org/05na5dm15', 'no_lang_code', 1, 'https://ror.org/05na5dm15 Precise Biometrics (Sweden) 精準生物識別公'),
(29864, 'https://ror.org/025nk1308', 'no_lang_code', 1, 'https://ror.org/025nk1308 Sectra (Sweden)'),
(29865, 'https://ror.org/05x6xky11', 'no_lang_code', 1, 'https://ror.org/05x6xky11 Predect (Sweden)'),
(29866, 'https://ror.org/04jeg4294', 'en', 1, 'https://ror.org/04jeg4294 Ideon Agro Food'),
(29867, 'https://ror.org/05e1qed59', 'en', 1, 'https://ror.org/05e1qed59 Leading Health Care'),
(29868, 'https://ror.org/01rckyv04', 'en', 1, 'https://ror.org/01rckyv04 Austrian Society for Cybernetic Studies Österreichische Studiengesellschaft für Kybernetik'),
(29869, 'https://ror.org/038fabn80', 'sv', 1, 'https://ror.org/038fabn80 Stiftelsen Marknadstekniskt Centrum'),
(29870, 'https://ror.org/0327kb204', 'no_lang_code', 1, 'https://ror.org/0327kb204 Limes Audio (Sweden)'),
(29871, 'https://ror.org/04r3dvv20', 'no_lang_code', 1, 'https://ror.org/04r3dvv20 Selden Mast (Sweden)'),
(29872, 'https://ror.org/021jhha43', 'no_lang_code', 1, 'https://ror.org/021jhha43 Senionlab (Sweden)'),
(29873, 'https://ror.org/010ees266', 'no_lang_code', 1, 'https://ror.org/010ees266 Sweco (Sweden)'),
(29874, 'https://ror.org/03rkwjs94', 'no_lang_code', 1, 'https://ror.org/03rkwjs94 SensAbues (Sweden)'),
(29875, 'https://ror.org/00np88202', 'en', 1, 'https://ror.org/00np88202 Swedish Industrial Design Foundation'),
(29876, 'https://ror.org/01aefzx37', 'en', 1, 'https://ror.org/01aefzx37 Sweden-Japan Foundation'),
(29877, 'https://ror.org/03ksgnr33', 'en', 1, 'https://ror.org/03ksgnr33 SwedenBIO'),
(29878, 'https://ror.org/05w9z6s63', 'sv', 1, 'https://ror.org/05w9z6s63 Swecare'),
(29879, 'https://ror.org/05100e415', 'en', 1, 'https://ror.org/05100e415 Venture Cup'),
(29880, 'https://ror.org/0235jt055', 'no_lang_code', 1, 'https://ror.org/0235jt055 Swedish Electroforming Technology (Sweden)'),
(29881, 'https://ror.org/04g0qyf70', 'no_lang_code', 1, 'https://ror.org/04g0qyf70 TopVisible (Sweden)'),
(29882, 'https://ror.org/04dz3dj65', 'no_lang_code', 1, 'https://ror.org/04dz3dj65 Totech (Sweden)'),
(29883, 'https://ror.org/0313w9h47', 'en', 1, 'https://ror.org/0313w9h47 Swedish House of Finance'),
(29884, 'https://ror.org/04rcsw002', 'no_lang_code', 1, 'https://ror.org/04rcsw002 Lumina (Sweden)'),
(29885, 'https://ror.org/04az2a138', 'en', 1, 'https://ror.org/04az2a138 Stockholm Science City Foundation'),
(29886, 'https://ror.org/03fcp6428', 'no_lang_code', 1, 'https://ror.org/03fcp6428 Low Vision International (Sweden)'),
(29887, 'https://ror.org/00p3jpt93', 'no_lang_code', 1, 'https://ror.org/00p3jpt93 Touchtech (Sweden)'),
(29888, 'https://ror.org/01a1mp446', 'en', 1, 'https://ror.org/01a1mp446 Stockholm Innovation & Growth'),
(29889, 'https://ror.org/04b621m59', 'en', 1, 'https://ror.org/04b621m59 Stockholm School of Entrepreneurship'),
(29890, 'https://ror.org/02aj8hb75', 'no_lang_code', 1, 'https://ror.org/02aj8hb75 Trade Extensions (Sweden)'),
(29891, 'https://ror.org/02zh48v40', 'no_lang_code', 1, 'https://ror.org/02zh48v40 Magle (Sweden)'),
(29892, 'https://ror.org/04q6d4d25', 'en', 1, 'https://ror.org/04q6d4d25 Istituto Svedese di studi classici a Roma Swedish Institute in Rome'),
(29893, 'https://ror.org/050dxn033', 'no_lang_code', 1, 'https://ror.org/050dxn033 Street Smart Equipment (Sweden)'),
(29894, 'https://ror.org/005rnxx75', 'en', 1, 'https://ror.org/005rnxx75 Swedish Medtech'),
(29895, 'https://ror.org/05emypz02', 'no_lang_code', 1, 'https://ror.org/05emypz02 Transformator Design (Sweden)'),
(29896, 'https://ror.org/03fqmv203', 'no_lang_code', 1, 'https://ror.org/03fqmv203 Starmonde Publishing Group'),
(29897, 'https://ror.org/04zgyz643', 'no_lang_code', 1, 'https://ror.org/04zgyz643 Uppdragshuset (Sweden)'),
(29898, 'https://ror.org/01a0wa442', 'en', 1, 'https://ror.org/01a0wa442 Student Competitions'),
(29899, 'https://ror.org/03snrcf80', 'no_lang_code', 1, 'https://ror.org/03snrcf80 Staccato Technologies (Sweden)'),
(29900, 'https://ror.org/021yrfz74', 'no_lang_code', 1, 'https://ror.org/021yrfz74 SemLab (Netherlands)'),
(29901, 'https://ror.org/033khx691', 'no_lang_code', 1, 'https://ror.org/033khx691 Uson Marine (Sweden)'),
(29902, 'https://ror.org/05ea73r86', 'no_lang_code', 1, 'https://ror.org/05ea73r86 Spotscale (Sweden)'),
(29903, 'https://ror.org/04ms6qb33', 'no_lang_code', 1, 'https://ror.org/04ms6qb33 STUNS'),
(29904, 'https://ror.org/03t00e535', 'en', 1, 'https://ror.org/03t00e535 Sport Support Center'),
(29905, 'https://ror.org/01vyraz80', 'no_lang_code', 1, 'https://ror.org/01vyraz80 DSM (Sweden)'),
(29906, 'https://ror.org/01jwwmn11', 'no_lang_code', 1, 'https://ror.org/01jwwmn11 SwedNanoTech (Sweden)'),
(29907, 'https://ror.org/04904kp41', 'no_lang_code', 1, 'https://ror.org/04904kp41 Spiber Technologies (Sweden)'),
(29908, 'https://ror.org/04ngjd421', 'no_lang_code', 1, 'https://ror.org/04ngjd421 Uminova Innovation (Sweden)'),
(29909, 'https://ror.org/03x41sw74', 'no_lang_code', 1, 'https://ror.org/03x41sw74 Surgical Science (Sweden)'),
(29910, 'https://ror.org/00pyb4029', 'no_lang_code', 1, 'https://ror.org/00pyb4029 Sustainable Business Hub (Sweden)'),
(29911, 'https://ror.org/00awy7q97', 'en', 1, 'https://ror.org/00awy7q97 Swedish Institute of International Affairs'),
(29912, 'https://ror.org/013g40c36', 'no_lang_code', 1, 'https://ror.org/013g40c36 Sysav South Scania Waste (Sweden)'),
(29913, 'https://ror.org/00ng3qf76', 'no_lang_code', 1, 'https://ror.org/00ng3qf76 Uv Tech (Sweden)'),
(29914, 'https://ror.org/02e9qns56', 'no_lang_code', 1, 'https://ror.org/02e9qns56 Sustainable Innovation (Sweden)'),
(29915, 'https://ror.org/03a96q734', 'no_lang_code', 1, 'https://ror.org/03a96q734 Syntronic (Sweden)'),
(29916, 'https://ror.org/01zgavk21', 'no_lang_code', 1, 'https://ror.org/01zgavk21 Tacton Systems (Sweden)'),
(29917, 'https://ror.org/043v5mq85', 'en', 1, 'https://ror.org/043v5mq85 Sustainable Sweden Southeast'),
(29918, 'https://ror.org/04yz0ht31', 'no_lang_code', 1, 'https://ror.org/04yz0ht31 SpaceTime Communication (Sweden)'),
(29919, 'https://ror.org/0135d5q90', 'no_lang_code', 1, 'https://ror.org/0135d5q90 Valueguard (Sweden)'),
(29920, 'https://ror.org/04t2cp653', 'no_lang_code', 1, 'https://ror.org/04t2cp653 Spacescape (Sweden)'),
(29921, 'https://ror.org/01tgdj837', 'no_lang_code', 1, 'https://ror.org/01tgdj837 Taiga (Sweden)'),
(29922, 'https://ror.org/01m05qy31', 'sv', 1, 'https://ror.org/01m05qy31 Svensk Fågel Service'),
(29923, 'https://ror.org/04f4r6066', 'no_lang_code', 1, 'https://ror.org/04f4r6066 Talentum (Sweden)'),
(29924, 'https://ror.org/01ngvra90', 'no_lang_code', 1, 'https://ror.org/01ngvra90 Sony Digital Audio Disc Corporation (Austria)'),
(29925, 'https://ror.org/001c1n781', 'no_lang_code', 1, 'https://ror.org/001c1n781 Tärnsjö Garveri (Sweden)'),
(29926, 'https://ror.org/02fm3s653', 'sv', 1, 'https://ror.org/02fm3s653 Svensk Form'),
(29927, 'https://ror.org/03yw8ff53', 'no_lang_code', 1, 'https://ror.org/03yw8ff53 TechMarket (Sweden)'),
(29928, 'https://ror.org/00gfsxd52', 'sv', 1, 'https://ror.org/00gfsxd52 Svensk Kollektivtrafik'),
(29929, 'https://ror.org/025t5fr72', 'no_lang_code', 1, 'https://ror.org/025t5fr72 Viscogel (Sweden)'),
(29930, 'https://ror.org/015wjxy04', 'no_lang_code', 1, 'https://ror.org/015wjxy04 Teknikföretagen (Sweden)'),
(29931, 'https://ror.org/014vgfm17', 'no_lang_code', 1, 'https://ror.org/014vgfm17 Unomaly (Sweden)'),
(29932, 'https://ror.org/0566crb40', 'en', 1, 'https://ror.org/0566crb40 French-Swedish Research Association'),
(29933, 'https://ror.org/00wz44k82', 'no_lang_code', 1, 'https://ror.org/00wz44k82 VBN Components (Sweden)'),
(29934, 'https://ror.org/0519hrc61', 'sv', 1, 'https://ror.org/0519hrc61 Tekniska Högskolans Studentkår'),
(29935, 'https://ror.org/058b4nw61', 'sv', 1, 'https://ror.org/058b4nw61 Teknopol'),
(29936, 'https://ror.org/0353xr267', 'no_lang_code', 1, 'https://ror.org/0353xr267 Visita Service (Sweden)'),
(29937, 'https://ror.org/05gc32295', 'no_lang_code', 1, 'https://ror.org/05gc32295 Telcred (Sweden)'),
(29938, 'https://ror.org/04mgr5526', 'no_lang_code', 1, 'https://ror.org/04mgr5526 Svenska Aerogel (Sweden)'),
(29939, 'https://ror.org/01f55nv10', 'no_lang_code', 1, 'https://ror.org/01f55nv10 Vitrolife (Sweden)'),
(29940, 'https://ror.org/02rf9jr43', 'en', 1, 'https://ror.org/02rf9jr43 Austrian Association of Women Artists Vereinigung bildender Künstlerinnen Österreichs'),
(29941, 'https://ror.org/00mag5698', 'no_lang_code', 1, 'https://ror.org/00mag5698 Vivoline Medical (Sweden)'),
(29942, 'https://ror.org/0586v7c76', 'no_lang_code', 1, 'https://ror.org/0586v7c76 Thermal Systems Technology (Sweden)'),
(29943, 'https://ror.org/047hn5n73', 'no_lang_code', 1, 'https://ror.org/047hn5n73 Elforsk (Sweden)'),
(29944, 'https://ror.org/03x50jr04', 'no_lang_code', 1, 'https://ror.org/03x50jr04 Terrigio (Sweden)'),
(29945, 'https://ror.org/00ks8df69', 'no_lang_code', 1, 'https://ror.org/00ks8df69 Verendus System (Sweden)'),
(29946, 'https://ror.org/01pwte708', 'no_lang_code', 1, 'https://ror.org/01pwte708 Verlag Holzhausen (Austria)'),
(29947, 'https://ror.org/02gw53818', 'no_lang_code', 1, 'https://ror.org/02gw53818 Veryday (Sweden)'),
(29948, 'https://ror.org/02mkhvn23', 'no_lang_code', 1, 'https://ror.org/02mkhvn23 Voxway (Sweden)'),
(29949, 'https://ror.org/015jn0h55', 'en', 1, 'https://ror.org/015jn0h55 Public and Science'),
(29950, 'https://ror.org/030417565', 'no_lang_code', 1, 'https://ror.org/030417565 VSL Systems (Sweden)'),
(29951, 'https://ror.org/050enm509', 'no_lang_code', 1, 'https://ror.org/050enm509 Watersprint (Sweden)'),
(29952, 'https://ror.org/02ry1ef38', 'no_lang_code', 1, 'https://ror.org/02ry1ef38 Vigor Wave Energy (Sweden)'),
(29953, 'https://ror.org/00qc9cw63', 'no_lang_code', 1, 'https://ror.org/00qc9cw63 Vironova (Sweden)'),
(29954, 'https://ror.org/00m3nhd65', 'en', 1, 'https://ror.org/00m3nhd65 The Natural Step'),
(29955, 'https://ror.org/036wp9g51', 'en', 1, 'https://ror.org/036wp9g51 Vienna Wiesenthal Institute for Holocaust Studies'),
(29956, 'https://ror.org/028hvvb93', 'sv', 1, 'https://ror.org/028hvvb93 Svenska Uppfinnareföreningen'),
(29957, 'https://ror.org/02r1k0x59', 'en', 1, 'https://ror.org/02r1k0x59 Packaging Arena'),
(29958, 'https://ror.org/05d54dv30', 'no_lang_code', 1, 'https://ror.org/05d54dv30 Viscando Traffic Systems (Sweden)'),
(29959, 'https://ror.org/034gqf495', 'no_lang_code', 1, 'https://ror.org/034gqf495 Wattguard (Sweden)'),
(29960, 'https://ror.org/0364wnh23', 'en', 1, 'https://ror.org/0364wnh23 Swedish Maritime Technology Forum'),
(29961, 'https://ror.org/05kz03q36', 'no_lang_code', 1, 'https://ror.org/05kz03q36 WindVector'),
(29962, 'https://ror.org/00ktc0z93', 'no_lang_code', 1, 'https://ror.org/00ktc0z93 Timars (Sweden)'),
(29963, 'https://ror.org/04nderh91', 'no_lang_code', 1, 'https://ror.org/04nderh91 Time Critical Networks (Sweden)'),
(29964, 'https://ror.org/04wgeqw93', 'no_lang_code', 1, 'https://ror.org/04wgeqw93 Winterkvist.com (Sweden)'),
(29965, 'https://ror.org/016n3e076', 'no_lang_code', 1, 'https://ror.org/016n3e076 Wiotech (Sweden)'),
(29966, 'https://ror.org/048qkq105', 'en', 1, 'https://ror.org/048qkq105 Wolfgang Pauli Institute'),
(29967, 'https://ror.org/00y9e9y23', 'no_lang_code', 1, 'https://ror.org/00y9e9y23 4C Strategies (Sweden)'),
(29968, 'https://ror.org/01zyxxc50', 'no_lang_code', 1, 'https://ror.org/01zyxxc50 Wolfram MathCore (Sweden)'),
(29969, 'https://ror.org/03r0pj309', 'en', 1, 'https://ror.org/03r0pj309 Wolf Science Center'),
(29970, 'https://ror.org/004znts92', 'no_lang_code', 1, 'https://ror.org/004znts92 Tomologic (Sweden)'),
(29971, 'https://ror.org/01v01a242', 'no_lang_code', 1, 'https://ror.org/01v01a242 Xbrane Biopharma (Sweden)'),
(29972, 'https://ror.org/03e8kpv69', 'no_lang_code', 1, 'https://ror.org/03e8kpv69 XCounter (Sweden)'),
(29973, 'https://ror.org/02asacd21', 'no_lang_code', 1, 'https://ror.org/02asacd21 QPS (Netherlands)'),
(29974, 'https://ror.org/05qxk3m85', 'no_lang_code', 1, 'https://ror.org/05qxk3m85 Xylophane (Sweden)'),
(29975, 'https://ror.org/049g9p164', 'en', 1, 'https://ror.org/049g9p164 Austrian Research Agency for Post-War Justice'),
(29976, 'https://ror.org/0389wyq54', 'no_lang_code', 1, 'https://ror.org/0389wyq54 Aerocrine (Sweden)'),
(29977, 'https://ror.org/036e45z28', 'sv', 1, 'https://ror.org/036e45z28 Affärsutveckling för Besöksnäringen'),
(29978, 'https://ror.org/0391xj275', 'no_lang_code', 1, 'https://ror.org/0391xj275 CoreCode International (Sweden)'),
(29979, 'https://ror.org/05k1j9p68', 'en', 1, 'https://ror.org/05k1j9p68 Scandinavian Automotive Supplier Association'),
(29980, 'https://ror.org/05snkc171', 'no_lang_code', 1, 'https://ror.org/05snkc171 IMPETUS Afea (Sweden)'),
(29981, 'https://ror.org/01687ga56', 'en', 1, 'https://ror.org/01687ga56 Museum of Work'),
(29982, 'https://ror.org/04nk9a874', 'no_lang_code', 1, 'https://ror.org/04nk9a874 Scandinavian Leadership (Sweden)'),
(29983, 'https://ror.org/03vt5je06', 'no_lang_code', 1, 'https://ror.org/03vt5je06 Scienta Scientific (Sweden)'),
(29984, 'https://ror.org/00c9zyz36', 'no_lang_code', 1, 'https://ror.org/00c9zyz36 Hive Streaming (Sweden)'),
(29985, 'https://ror.org/02jwtre75', 'sv', 1, 'https://ror.org/02jwtre75 Stiftelsen SKAPA'),
(29986, 'https://ror.org/02fa0f492', 'en', 1, 'https://ror.org/02fa0f492 United Nations University Institute on Comparative Regional Integration Studies'),
(29987, 'https://ror.org/02qy4xp49', 'no_lang_code', 1, 'https://ror.org/02qy4xp49 Stena Recycling (Sweden)'),
(29988, 'https://ror.org/02h67vt10', 'en', 1, 'https://ror.org/02h67vt10 Aintree University Hospitals NHS Foundation Trust'),
(29989, 'https://ror.org/040mzvg39', 'en', 1, 'https://ror.org/040mzvg39 PHI University Psychiatric Clinic - Skopje'),
(29990, 'https://ror.org/04bjdr366', 'en', 1, 'https://ror.org/04bjdr366 Institut Fur Friedensforschung Und Sicherheitspolitik Institute for Peace Research and Security Policy'),
(29991, 'https://ror.org/058a12170', 'en', 1, 'https://ror.org/058a12170 Royal Swedish Academy of Engineering Sciences'),
(29992, 'https://ror.org/044d35368', 'hu', 1, 'https://ror.org/044d35368 Damjanich János Múzeum'),
(29993, 'https://ror.org/00qtxnd58', 'en', 1, 'https://ror.org/00qtxnd58 Hungarian National Blood Transfusion Service'),
(29994, 'https://ror.org/03bvys615', 'hu', 1, 'https://ror.org/03bvys615 Ráday Gyűjtemény'),
(29995, 'https://ror.org/0119mwr04', 'en', 1, 'https://ror.org/0119mwr04 Hungarian Open air Museum'),
(29996, 'https://ror.org/00bdga736', 'no_lang_code', 1, 'https://ror.org/00bdga736 ImmunoGenes (Hungary)'),
(29997, 'https://ror.org/0317zr716', 'no_lang_code', 1, 'https://ror.org/0317zr716 Ethnographic Museum'),
(29998, 'https://ror.org/00sdyry80', 'en', 1, 'https://ror.org/00sdyry80 Museum of Hungarian Agriculture'),
(29999, 'https://ror.org/00x8a1s60', 'no_lang_code', 1, 'https://ror.org/00x8a1s60 Andritz (Canada)'),
(30000, 'https://ror.org/00epkt019', 'no_lang_code', 1, 'https://ror.org/00epkt019 Akadémiai Kiadó (Hungary)'),
(30001, 'https://ror.org/024vtv124', 'hu', 1, 'https://ror.org/024vtv124 Enciklopédia Kiadó'),
(30002, 'https://ror.org/03edyst18', 'en', 1, 'https://ror.org/03edyst18 Museum of Applied Arts'),
(30003, 'https://ror.org/00rd9q776', 'en', 1, 'https://ror.org/00rd9q776 Museum of Literature'),
(30004, 'https://ror.org/04yxrg865', 'no_lang_code', 1, 'https://ror.org/04yxrg865 Nap Kiadó (Hungary) Sun Publishing'),
(30005, 'https://ror.org/00snt7e27', 'no_lang_code', 1, 'https://ror.org/00snt7e27 FIKRA'),
(30006, 'https://ror.org/04mpce960', 'no_lang_code', 1, 'https://ror.org/04mpce960 Napvilág (Hungary)'),
(30007, 'https://ror.org/03fytgw96', 'no_lang_code', 1, 'https://ror.org/03fytgw96 Cegteszt (Hungary)'),
(30008, 'https://ror.org/04edzrx46', 'hu', 1, 'https://ror.org/04edzrx46 Forster Központ'),
(30009, 'https://ror.org/05g8eqe22', 'en', 1, 'https://ror.org/05g8eqe22 Federation of Technical and Scientific Societies'),
(30010, 'https://ror.org/010pdkv94', 'hu', 1, 'https://ror.org/010pdkv94 Nógrád Megyei Múzeumi Szervezet'),
(30011, 'https://ror.org/05d3xzj88', 'hu', 1, 'https://ror.org/05d3xzj88 Jósa András Múzeum'),
(30012, 'https://ror.org/00a4h2c62', 'en', 1, 'https://ror.org/00a4h2c62 Rippl-Rónai Museum'),
(30013, 'https://ror.org/013r6rv26', 'en', 1, 'https://ror.org/013r6rv26 Foundation for Market Economy'),
(30014, 'https://ror.org/05hvam844', 'en', 1, 'https://ror.org/05hvam844 Anti-Doping Laboratory'),
(30015, 'https://ror.org/02aadsr63', 'en', 1, 'https://ror.org/02aadsr63 Independent Ecological Centre'),
(30016, 'https://ror.org/02tvhnn50', 'hu', 1, 'https://ror.org/02tvhnn50 Károlyi Sándor Kórház'),
(30017, 'https://ror.org/00e2yw845', 'no_lang_code', 1, 'https://ror.org/00e2yw845 Archaeolingua Foundation'),
(30018, 'https://ror.org/047an3241', 'en', 1, 'https://ror.org/047an3241 Supreme Council Of Health'),
(30019, 'https://ror.org/01yykey67', 'no_lang_code', 1, 'https://ror.org/01yykey67 General Electric (Qatar)'),
(30020, 'https://ror.org/01q5qh616', 'hu', 1, 'https://ror.org/01q5qh616 Kecskeméti Katona József Múzeum'),
(30021, 'https://ror.org/0267rbx05', 'hu', 1, 'https://ror.org/0267rbx05 Baár-Madas Református Gimnázium'),
(30022, 'https://ror.org/029e47x73', 'en', 1, 'https://ror.org/029e47x73 Georgetown University in Qatar جامعة جورجتاون'),
(30023, 'https://ror.org/040kxva36', 'hu', 1, 'https://ror.org/040kxva36 Atlantisz Alapítvány'),
(30024, 'https://ror.org/054586n40', 'en', 1, 'https://ror.org/054586n40 Göcseji Museum'),
(30025, 'https://ror.org/043ydgy90', 'no_lang_code', 1, 'https://ror.org/043ydgy90 Gondolat Publishing (Hungary)'),
(30026, 'https://ror.org/01d183086', 'en', 1, 'https://ror.org/01d183086 National Public Health and Medical Officer Service Állami Népegészségügyi és Tisztiorvosi Szolgálat'),
(30027, 'https://ror.org/042a7gm30', 'hu', 1, 'https://ror.org/042a7gm30 Korall Társadalomtörténeti Folyóirat'),
(30028, 'https://ror.org/00jdqa737', 'en', 1, 'https://ror.org/00jdqa737 Research and Development for Silicates and Ceramics'),
(30029, 'https://ror.org/0337t4k55', 'hu', 1, 'https://ror.org/0337t4k55 Országos Lelkipásztori Intézet'),
(30030, 'https://ror.org/04dzt3j15', 'no_lang_code', 1, 'https://ror.org/04dzt3j15 Osiris (Hungary)'),
(30031, 'https://ror.org/032he5k36', 'no_lang_code', 1, 'https://ror.org/032he5k36 Kortárs Könyvkiadói (Hungary)'),
(30032, 'https://ror.org/05evyfq09', 'en', 1, 'https://ror.org/05evyfq09 Balassi Institute'),
(30033, 'https://ror.org/006kyfp82', 'hu', 1, 'https://ror.org/006kyfp82 Deri Muzeum'),
(30034, 'https://ror.org/00jf79q69', 'no_lang_code', 1, 'https://ror.org/00jf79q69 Financial Research (Hungary)'),
(30035, 'https://ror.org/04sa7fj09', 'hu', 1, 'https://ror.org/04sa7fj09 Teleki László Alapítvány'),
(30036, 'https://ror.org/03k5d2j20', 'no_lang_code', 1, 'https://ror.org/03k5d2j20 Balassi Kiadó (Hungary)'),
(30037, 'https://ror.org/041h2kk78', 'hu', 1, 'https://ror.org/041h2kk78 Pest Megyei Múzeumok Igazgatósága'),
(30038, 'https://ror.org/04qrrwn88', 'hu', 1, 'https://ror.org/04qrrwn88 Piarista Rend Magyar Tartománya'),
(30039, 'https://ror.org/01f8jdn16', 'en', 1, 'https://ror.org/01f8jdn16 Historical Archives'),
(30040, 'https://ror.org/02z4rpq04', 'en', 1, 'https://ror.org/02z4rpq04 Ottó Herman Museum'),
(30041, 'https://ror.org/0256rxv90', 'en', 1, 'https://ror.org/0256rxv90 Economic Review Foundation'),
(30042, 'https://ror.org/048jjce41', 'hu', 1, 'https://ror.org/048jjce41 Hadtörténeti Intézet és Múzeum'),
(30043, 'https://ror.org/01t8r8650', 'no_lang_code', 1, 'https://ror.org/01t8r8650 Tinta (Hungary)'),
(30044, 'https://ror.org/002e77370', 'no_lang_code', 1, 'https://ror.org/002e77370 Brainvest (Hungary)'),
(30045, 'https://ror.org/05px8wc91', 'hu', 1, 'https://ror.org/05px8wc91 Tokaji Borvidék Szőlészeti és Borászati Kutatóintézet'),
(30046, 'https://ror.org/05tw77m82', 'hu', 1, 'https://ror.org/05tw77m82 Hortobágy National Park Directorate'),
(30047, 'https://ror.org/049835d66', 'no_lang_code', 1, 'https://ror.org/049835d66 Institute of Political History (Hungary)'),
(30048, 'https://ror.org/04kk7gt95', 'no_lang_code', 1, 'https://ror.org/04kk7gt95 Libri Kiadó (Hungary)'),
(30049, 'https://ror.org/05k78d918', 'no_lang_code', 1, 'https://ror.org/05k78d918 Typotex (Hungary)'),
(30050, 'https://ror.org/050hvq478', 'en', 1, 'https://ror.org/050hvq478 Budapest Institute'),
(30051, 'https://ror.org/05srg5036', 'en', 1, 'https://ror.org/05srg5036 Hungarian Institute for Educational Research and Development'),
(30052, 'https://ror.org/02ztj8667', 'en', 1, 'https://ror.org/02ztj8667 Royal Irgalmasrendi Hospital'),
(30053, 'https://ror.org/019ejtj82', 'en', 1, 'https://ror.org/019ejtj82 Budapest History Museum'),
(30054, 'https://ror.org/00sfss216', 'hu', 1, 'https://ror.org/00sfss216 Magyar Közgazdasági Társaság'),
(30055, 'https://ror.org/00az5dt38', 'en', 1, 'https://ror.org/00az5dt38 Carnegie Mellon University Qatar'),
(30056, 'https://ror.org/02vbgbc26', 'en', 1, 'https://ror.org/02vbgbc26 Hungarian National Gallery'),
(30057, 'https://ror.org/038vyt185', 'en', 1, 'https://ror.org/038vyt185 Qatar Cardiovascular Research Center'),
(30058, 'https://ror.org/0050hxg48', 'en', 1, 'https://ror.org/0050hxg48 Hungarian Sociological Association'),
(30059, 'https://ror.org/03axpa761', 'hu', 1, 'https://ror.org/03axpa761 Budapest City Archives'),
(30060, 'https://ror.org/04ehqrw09', 'en', 1, 'https://ror.org/04ehqrw09 Institute for Foreign Affairs and Trade'),
(30061, 'https://ror.org/01k999n94', 'en', 1, 'https://ror.org/01k999n94 University of Calgary in Qatar'),
(30062, 'https://ror.org/058k59m52', 'en', 1, 'https://ror.org/058k59m52 Queen Medical'),
(30063, 'https://ror.org/036mae937', 'no_lang_code', 1, 'https://ror.org/036mae937 Cereal Research (Hungary)'),
(30064, 'https://ror.org/02xqtsp69', 'hu', 1, 'https://ror.org/02xqtsp69 Móra Ferenc Múzeum'),
(30065, 'https://ror.org/0052cdv44', 'no_lang_code', 1, 'https://ror.org/0052cdv44 Ráció Kiadói (Hungary)'),
(30066, 'https://ror.org/027npbp21', 'hu', 1, 'https://ror.org/027npbp21 Vas Megyei Kormányhivatalt'),
(30067, 'https://ror.org/02nmsd267', 'en', 1, 'https://ror.org/02nmsd267 Coastal Oceans Research and Development in the Indian Ocean'),
(30068, 'https://ror.org/05pqqge35', 'en', 1, 'https://ror.org/05pqqge35 Anhui Mental Health Center 安徽省精神卫生防治中心'),
(30069, 'https://ror.org/03g39em38', 'hu', 1, 'https://ror.org/03g39em38 Vermes Miklós Országos Fizikus Tehetségápoló és Kutató Alapítvány'),
(30070, 'https://ror.org/020hpsx21', 'hu', 1, 'https://ror.org/020hpsx21 Civil Rádió'),
(30071, 'https://ror.org/00k6x1e94', 'no_lang_code', 1, 'https://ror.org/00k6x1e94 VCUQatar'),
(30072, 'https://ror.org/01np3hz61', 'no_lang_code', 1, 'https://ror.org/01np3hz61 Silatech'),
(30073, 'https://ror.org/03wnqyy64', 'en', 1, 'https://ror.org/03wnqyy64 Netherlands Consortium for Healthy Ageing'),
(30074, 'https://ror.org/049fnxe71', 'en', 1, 'https://ror.org/049fnxe71 Bioprocessing Technology Institute'),
(30075, 'https://ror.org/042qrnq11', 'hu', 1, 'https://ror.org/042qrnq11 Society for the Dissemination of Scientific Knowledge Tudományos Ismeretterjesztő Társulat'),
(30076, 'https://ror.org/01j6fq995', 'en', 1, 'https://ror.org/01j6fq995 Wosinsky Mór County Museum'),
(30077, 'https://ror.org/00dpszj83', 'hu', 1, 'https://ror.org/00dpszj83 Magyar Nyelvtudományi Társaságot Society of Hungarian Linguistics'),
(30078, 'https://ror.org/01hgpf702', 'en', 1, 'https://ror.org/01hgpf702 Pan African Tsetse and Trypanosomiasis Eradication Campaign'),
(30079, 'https://ror.org/04kc9j928', 'no_lang_code', 1, 'https://ror.org/04kc9j928 Zöldségtermesztési Kutató Intézet (Hungary)'),
(30080, 'https://ror.org/03m3hse57', 'en', 1, 'https://ror.org/03m3hse57 Department of Environment, Land, Water and Planning'),
(30081, 'https://ror.org/048q23a93', 'en', 1, 'https://ror.org/048q23a93 Xuzhou Central Hospital'),
(30082, 'https://ror.org/004eknx63', 'en', 1, 'https://ror.org/004eknx63 Third Hospital of Hebei Medical University'),
(30083, 'https://ror.org/0132wmv23', 'en', 1, 'https://ror.org/0132wmv23 Changsha Central Hospital'),
(30084, 'https://ror.org/053staa05', 'en', 1, 'https://ror.org/053staa05 Anti Filariasis Campaign'),
(30085, 'https://ror.org/05eagc649', 'en', 1, 'https://ror.org/05eagc649 Central Institute for Experimental Animals 実験動物中央研究所'),
(30086, 'https://ror.org/01wtjj434', 'en', 1, 'https://ror.org/01wtjj434 SKA Telescope, South Africa'),
(30087, 'https://ror.org/04ze64w44', 'en', 1, 'https://ror.org/04ze64w44 Changzhou Third People''s Hospital'),
(30088, 'https://ror.org/05b2t8s27', 'en', 1, 'https://ror.org/05b2t8s27 Bavarian Forest National Park Nationalpark Bayerischer Wald'),
(30089, 'https://ror.org/04gp12571', 'no_lang_code', 1, 'https://ror.org/04gp12571 ChemoCentryx (United States)'),
(30090, 'https://ror.org/00344m990', 'no_lang_code', 1, 'https://ror.org/00344m990 Chenomx (Canada)'),
(30091, 'https://ror.org/03npats33', 'en', 1, 'https://ror.org/03npats33 Blue Ventures'),
(30092, 'https://ror.org/01zmzpt10', 'en', 1, 'https://ror.org/01zmzpt10 Bangladesh Rice Research Institute বাংলাদেশ ধান গবেষণা ইনস্টিটিউট'),
(30093, 'https://ror.org/014zxhb96', 'en', 1, 'https://ror.org/014zxhb96 Accordia Global Health Foundation'),
(30094, 'https://ror.org/01448m136', 'en', 1, 'https://ror.org/01448m136 Bombay Veterinary College'),
(30095, 'https://ror.org/03s4kpx37', 'en', 1, 'https://ror.org/03s4kpx37 Chest Hospital, Ministry of Health and Welfare'),
(30096, 'https://ror.org/02krbn758', 'en', 1, 'https://ror.org/02krbn758 Botanical Society of Britain and Ireland'),
(30097, 'https://ror.org/031drvr68', 'en', 1, 'https://ror.org/031drvr68 Bali Psychiatric Center'),
(30098, 'https://ror.org/00m9ba392', 'no_lang_code', 1, 'https://ror.org/00m9ba392 Bahawal Victoria Hospital بہاول وکٹوریہ سپتال,'),
(30099, 'https://ror.org/0315yxm36', 'no_lang_code', 1, 'https://ror.org/0315yxm36 BroadReach Healthcare (South Africa)'),
(30100, 'https://ror.org/05qyxnj95', 'fr', 1, 'https://ror.org/05qyxnj95 Centre d’Infectiologie Christophe Mérieux of Laos'),
(30101, 'https://ror.org/04fszpp16', 'en', 1, 'https://ror.org/04fszpp16 Dongyang People''s Hospital'),
(30102, 'https://ror.org/03gddmx06', 'en', 1, 'https://ror.org/03gddmx06 Calmette Hospital Hôpital calmette'),
(30103, 'https://ror.org/038djf877', 'en', 1, 'https://ror.org/038djf877 Department of Health Services'),
(30104, 'https://ror.org/00gn3nj37', 'en', 1, 'https://ror.org/00gn3nj37 Binzhou Medical College Hospital'),
(30105, 'https://ror.org/04650gr34', 'en', 1, 'https://ror.org/04650gr34 Centre for Research in Astrophysics of Québec'),
(30106, 'https://ror.org/03r24h131', 'en', 1, 'https://ror.org/03r24h131 Kaifeng City Children''s Hospital'),
(30107, 'https://ror.org/02kstas42', 'en', 1, 'https://ror.org/02kstas42 Affiliated Hospital of Guizhou Medical University'),
(30108, 'https://ror.org/028pgd321', 'en', 1, 'https://ror.org/028pgd321 Affiliated Hospital of Jiangsu University'),
(30109, 'https://ror.org/00bchtj94', 'en', 1, 'https://ror.org/00bchtj94 B. J. Medical College & Sassoon Hospital'),
(30110, 'https://ror.org/01884b046', 'it', 1, 'https://ror.org/01884b046 Azienda Ospedaliera di Cosenza'),
(30111, 'https://ror.org/00zgdb249', 'en', 1, 'https://ror.org/00zgdb249 Science and Engineering Research Council'),
(30112, 'https://ror.org/04b3ehq94', 'en', 1, 'https://ror.org/04b3ehq94 Australian Wildlife Conservancy'),
(30113, 'https://ror.org/05e8kbn88', 'en', 1, 'https://ror.org/05e8kbn88 Affiliated Hospital of Jining Medical University'),
(30114, 'https://ror.org/05a9skj35', 'en', 1, 'https://ror.org/05a9skj35 Children''s Hospital of Suzhou University'),
(30115, 'https://ror.org/05vf01n02', 'en', 1, 'https://ror.org/05vf01n02 Fourth People''s Hospital of Changzhou'),
(30116, 'https://ror.org/00gwv7d20', 'en', 1, 'https://ror.org/00gwv7d20 China Animal Disease Control Center 中国动物疫病预防控制中心'),
(30117, 'https://ror.org/005z7vs15', 'en', 1, 'https://ror.org/005z7vs15 First Affiliated Hospital of Sichuan Medical University'),
(30118, 'https://ror.org/01wd8pa65', 'en', 1, 'https://ror.org/01wd8pa65 China Medical University Beigang Hospital'),
(30119, 'https://ror.org/03w7j1z86', 'fr', 1, 'https://ror.org/03w7j1z86 Centre de Recherche et de Veille sur les Maladies Emergentes dans l’Océan Indien'),
(30120, 'https://ror.org/00qb1n040', 'fr', 1, 'https://ror.org/00qb1n040 Centre de Recherche Médicale et Sanitaire'),
(30121, 'https://ror.org/030d08e08', 'en', 1, 'https://ror.org/030d08e08 China Tobacco 国家烟草专卖局'),
(30122, 'https://ror.org/05gf3n961', 'en', 1, 'https://ror.org/05gf3n961 Tomsk Cancer Research Institute Томский научно-исследовательский институт онкологии'),
(30123, 'https://ror.org/030qdbw52', 'en', 1, 'https://ror.org/030qdbw52 Association Vahatra'),
(30124, 'https://ror.org/015p9va32', 'en', 1, 'https://ror.org/015p9va32 Singapore Institute for Clinical Sciences'),
(30125, 'https://ror.org/01x5t2m44', 'it', 1, 'https://ror.org/01x5t2m44 Fondazione Edo ed Elvo Tempia'),
(30126, 'https://ror.org/00hg9t388', 'en', 1, 'https://ror.org/00hg9t388 Campus Science Support Facilities'),
(30127, 'https://ror.org/044hmkx85', 'en', 1, 'https://ror.org/044hmkx85 Singapore Stem Cell Consortium'),
(30128, 'https://ror.org/036v5qv16', 'no_lang_code', 1, 'https://ror.org/036v5qv16 General Hospital Asklepieio Voulas'),
(30129, 'https://ror.org/016m2r485', 'no_lang_code', 1, 'https://ror.org/016m2r485 Cangzhou Central Hospital'),
(30130, 'https://ror.org/00pbgsg09', 'de', 1, 'https://ror.org/00pbgsg09 Asklepios Klinik Altona'),
(30131, 'https://ror.org/02rfzns68', 'en', 1, 'https://ror.org/02rfzns68 A*STAR-NUS Clinical Imaging Research Centre'),
(30132, 'https://ror.org/01kzsq416', 'en', 1, 'https://ror.org/01kzsq416 First People''s Hospital of Kunshan 昆山市第一人民医院'),
(30133, 'https://ror.org/03k5xes38', 'en', 1, 'https://ror.org/03k5xes38 Data Storage Institute'),
(30134, 'https://ror.org/01cbwn720', 'en', 1, 'https://ror.org/01cbwn720 Institute of Chemical and Engineering Sciences'),
(30135, 'https://ror.org/009rw8n36', 'en', 1, 'https://ror.org/009rw8n36 Institute of Microelectronics'),
(30136, 'https://ror.org/00f44np30', 'en', 1, 'https://ror.org/00f44np30 Singapore Institute of Manufacturing Technology'),
(30137, 'https://ror.org/035gbps25', 'en', 1, 'https://ror.org/035gbps25 National Metrology Centre'),
(30138, 'https://ror.org/059yjzn93', 'en', 1, 'https://ror.org/059yjzn93 A*STAR Graduate Academy'),
(30139, 'https://ror.org/04rekk491', 'en', 1, 'https://ror.org/04rekk491 Bavarian State Collection of Zoology Zoologische Staatssammlung München'),
(30140, 'https://ror.org/042kgb568', 'en', 1, 'https://ror.org/042kgb568 AgriBio'),
(30141, 'https://ror.org/04wpn1218', 'de', 1, 'https://ror.org/04wpn1218 Kantonsspital Graubünden'),
(30142, 'https://ror.org/02zxyre23', 'en', 1, 'https://ror.org/02zxyre23 Beijing Aerospace General Hospital'),
(30143, 'https://ror.org/021ky1s64', 'en', 1, 'https://ror.org/021ky1s64 Beijing Anding Hospital 北京安定医院'),
(30144, 'https://ror.org/01k3hq685', 'en', 1, 'https://ror.org/01k3hq685 Zhongda Hospital Southeast University'),
(30145, 'https://ror.org/00fs71k85', 'no_lang_code', 1, 'https://ror.org/00fs71k85 Cape Eleuthera Institute'),
(30146, 'https://ror.org/02damtp46', 'no_lang_code', 1, 'https://ror.org/02damtp46 AFFiRiS (Austria)'),
(30147, 'https://ror.org/01jcqzd89', 'en', 1, 'https://ror.org/01jcqzd89 Chongqing City Mental Health Center'),
(30148, 'https://ror.org/00vb2a765', 'de', 1, 'https://ror.org/00vb2a765 ISAAC Gesellschaft für Unterstützte Kommunikation'),
(30149, 'https://ror.org/02ewzby52', 'en', 1, 'https://ror.org/02ewzby52 Berlin Brandenburg Institute of Advanced Biodiversity Research Berlin-Brandenburgisches Institut für Biodiversitätsforschung'),
(30150, 'https://ror.org/05y1kkq06', 'en', 1, 'https://ror.org/05y1kkq06 Centre for Health Equity Studies'),
(30151, 'https://ror.org/00n8pjn35', 'en', 1, 'https://ror.org/00n8pjn35 National Bernstein Network Computational Neuroscience Nationale Bernstein Netzwerk Computational Neuroscience'),
(30152, 'https://ror.org/017ky5708', 'en', 1, 'https://ror.org/017ky5708 Centre for Healthy Start Initiative'),
(30153, 'https://ror.org/038tfqe91', 'no_lang_code', 1, 'https://ror.org/038tfqe91 FumoPrep (Hungary)'),
(30154, 'https://ror.org/02fjj1z35', 'en', 1, 'https://ror.org/02fjj1z35 Caribbean Research and Management of Biodiversity Foundation'),
(30155, 'https://ror.org/03qp5ww24', 'en', 1, 'https://ror.org/03qp5ww24 Centre for Immunity, Infection and Evolution'),
(30156, 'https://ror.org/02zez7725', 'en', 1, 'https://ror.org/02zez7725 Bimini Biological Field Station Foundation'),
(30157, 'https://ror.org/03t857d14', 'en', 1, 'https://ror.org/03t857d14 AIDS Foundation East-West'),
(30158, 'https://ror.org/000f8rg73', 'hu', 1, 'https://ror.org/000f8rg73 Orosháza Városi Önkormányzat Kórháza'),
(30159, 'https://ror.org/0066jxm83', 'en', 1, 'https://ror.org/0066jxm83 Albion Centre'),
(30160, 'https://ror.org/03fq30e75', 'no_lang_code', 1, 'https://ror.org/03fq30e75 Aldevron (United States)'),
(30161, 'https://ror.org/05m38qe70', 'en', 1, 'https://ror.org/05m38qe70 Ministry of Defence'),
(30162, 'https://ror.org/054bzew20', 'no_lang_code', 1, 'https://ror.org/054bzew20 Cellular Dynamics International (United States)'),
(30163, 'https://ror.org/00q2mch05', 'no_lang_code', 1, 'https://ror.org/00q2mch05 Charles River Laboratories (United Kingdom)'),
(30164, 'https://ror.org/01tasya06', 'no_lang_code', 1, 'https://ror.org/01tasya06 Charles River Laboratories (Netherlands)'),
(30165, 'https://ror.org/026zxn394', 'en', 1, 'https://ror.org/026zxn394 Centre for Integrated Research in the Rural Environment'),
(30166, 'https://ror.org/03fvqqb90', 'no_lang_code', 1, 'https://ror.org/03fvqqb90 AltheaDx (United States)'),
(30167, 'https://ror.org/01x33g729', 'no_lang_code', 1, 'https://ror.org/01x33g729 Bioglobe (Germany)'),
(30168, 'https://ror.org/01skhd946', 'en', 1, 'https://ror.org/01skhd946 Center for Disease Dynamics, Economics & Policy'),
(30169, 'https://ror.org/00t7fmg72', 'en', 1, 'https://ror.org/00t7fmg72 Centre for Research on Brain Language and Music'),
(30170, 'https://ror.org/04b102659', 'de', 1, 'https://ror.org/04b102659 Klinik Barmelweid'),
(30171, 'https://ror.org/02y3cnq68', 'en', 1, 'https://ror.org/02y3cnq68 Biomedical Informatics Research Center Antwerp'),
(30172, 'https://ror.org/026mgjd21', 'no_lang_code', 1, 'https://ror.org/026mgjd21 bioMérieux (India)'),
(30173, 'https://ror.org/00wk05f95', 'en', 1, 'https://ror.org/00wk05f95 CeNTech'),
(30174, 'https://ror.org/04r8fwm85', 'en', 1, 'https://ror.org/04r8fwm85 Evangelical Lutheran Church'),
(30175, 'https://ror.org/03x1jt541', 'en', 1, 'https://ror.org/03x1jt541 Le Centre Hospitalier Princesse Grace Princess Grace Hospital Centre'),
(30176, 'https://ror.org/00kwjx418', 'en', 1, 'https://ror.org/00kwjx418 Cataract Foundation of the Philippines'),
(30177, 'https://ror.org/01n6v0a11', 'no_lang_code', 1, 'https://ror.org/01n6v0a11 Dalian Municipal Central Hospital 大连市中心医院'),
(30178, 'https://ror.org/03734kr33', 'en', 1, 'https://ror.org/03734kr33 Taiwan Livestock Research Institute 畜產試驗所'),
(30179, 'https://ror.org/03mynna02', 'es', 1, 'https://ror.org/03mynna02 Centre Nacional d''Anàlisi Genòmica Centro Nacional de Análisis Genómico'),
(30180, 'https://ror.org/01dzyb381', 'en', 1, 'https://ror.org/01dzyb381 Sabah Wildlife Department'),
(30181, 'https://ror.org/05t3ccn58', 'en', 1, 'https://ror.org/05t3ccn58 Qatar Faculty of Islamic Studies'),
(30182, 'https://ror.org/013mr5k03', 'en', 1, 'https://ror.org/013mr5k03 Clinton Health Access Initiative'),
(30183, 'https://ror.org/039rgny44', 'en', 1, 'https://ror.org/039rgny44 Clinton Foundation'),
(30184, 'https://ror.org/045205d09', 'en', 1, 'https://ror.org/045205d09 Clinton Foundation'),
(30185, 'https://ror.org/00vrd0936', 'en', 1, 'https://ror.org/00vrd0936 307th Hospital of Chinese People’s Liberation Army 307医院'),
(30186, 'https://ror.org/00ttqn045', 'en', 1, 'https://ror.org/00ttqn045 Danish Ramazzini Center'),
(30187, 'https://ror.org/01ey7we33', 'en', 1, 'https://ror.org/01ey7we33 Daqing Oilfield General Hospital'),
(30188, 'https://ror.org/00mzj5z57', 'en', 1, 'https://ror.org/00mzj5z57 Centre Tecnològic de Nutrició i Salut Technological Center of Nutrition and Health'),
(30189, 'https://ror.org/05tppc012', 'en', 1, 'https://ror.org/05tppc012 Dasman Diabetes Institute'),
(30190, 'https://ror.org/036vnbc76', 'ro', 1, 'https://ror.org/036vnbc76 Spitalul Clinic Judetean de Urgentã Craiova'),
(30191, 'https://ror.org/03f1en951', 'en', 1, 'https://ror.org/03f1en951 Delfos Hospital'),
(30192, 'https://ror.org/049vf5c24', 'en', 1, 'https://ror.org/049vf5c24 Endangered Wildlife Trust'),
(30193, 'https://ror.org/02rv73z09', 'no_lang_code', 1, 'https://ror.org/02rv73z09 Enoshima Aquarium'),
(30194, 'https://ror.org/0287jnj14', 'en', 1, 'https://ror.org/0287jnj14 Centro de Investigação em Saúde de Manhiça Manhiça Health Research Centre'),
(30195, 'https://ror.org/00z4nbg03', 'en', 1, 'https://ror.org/00z4nbg03 National Environment Agency'),
(30196, 'https://ror.org/02q5qpb12', 'en', 1, 'https://ror.org/02q5qpb12 Conservation and Ecosystem Health Alliance'),
(30197, 'https://ror.org/01dmrgp19', 'en', 1, 'https://ror.org/01dmrgp19 Departamento de DST, Aids e Hepatites Virais Departamento de Infecciones de Transmisión Sexual, Sida y Hepatitis Virales Department of STD, AIDS and Viral Hepatitis'),
(30198, 'https://ror.org/0506t0t42', 'fr', 1, 'https://ror.org/0506t0t42 Doctors Without Borders Médecins Sans Frontières'),
(30199, 'https://ror.org/03sxnxp24', 'en', 1, 'https://ror.org/03sxnxp24 Hangzhou Wanxiang Polytechnic'),
(30200, 'https://ror.org/0455ha759', 'da', 1, 'https://ror.org/0455ha759 Filadelfia'),
(30201, 'https://ror.org/04b1cqt16', 'no_lang_code', 1, 'https://ror.org/04b1cqt16 DNA Chip Research (Japan) 株式会社DNAチップ研究所'),
(30202, 'https://ror.org/059xf0t91', 'no_lang_code', 1, 'https://ror.org/059xf0t91 Dominion Diagnostics (United States)');
INSERT INTO `rors` VALUES
(30203, 'https://ror.org/023kmdf41', 'es', 1, 'https://ror.org/023kmdf41 Centro Dermatológico Federico Lleras Acosta'),
(30204, 'https://ror.org/04fb6qy86', 'no_lang_code', 1, 'https://ror.org/04fb6qy86 Dongfeng General Hospital'),
(30205, 'https://ror.org/02rxjkx06', 'es', 1, 'https://ror.org/02rxjkx06 Centro Nacional de Enfermedades Tropicales'),
(30206, 'https://ror.org/01vmfza15', 'tr', 1, 'https://ror.org/01vmfza15 Erciyes Üniversitesi Tıp Fakültesi Hastaneleri'),
(30207, 'https://ror.org/0080e5892', 'en', 1, 'https://ror.org/0080e5892 Centro Oncologico Veterinario Veterinary Oncological Center'),
(30208, 'https://ror.org/05mrev375', 'en', 1, 'https://ror.org/05mrev375 Etosha Ecological Institute'),
(30209, 'https://ror.org/00rbdec72', 'en', 1, 'https://ror.org/00rbdec72 Dyer Island Conservation Trust'),
(30210, 'https://ror.org/0186h8060', 'en', 1, 'https://ror.org/0186h8060 DWI – Leibniz Institute for Interactive Materials DWI – Leibniz-Institut für Interaktive Materialien'),
(30211, 'https://ror.org/02v6jgb22', 'no_lang_code', 1, 'https://ror.org/02v6jgb22 Creativ-Ceutical (France)'),
(30212, 'https://ror.org/041qyrj45', 'fr', 1, 'https://ror.org/041qyrj45 Doctors Without Borders Médecins Sans Frontières'),
(30213, 'https://ror.org/027qy6d19', 'es', 1, 'https://ror.org/027qy6d19 Centro Regional de Selección y Reproducción Animal'),
(30214, 'https://ror.org/05gw5ee29', 'en', 1, 'https://ror.org/05gw5ee29 Edogawa Hospital 江戸川病院'),
(30215, 'https://ror.org/00yx8y731', 'no_lang_code', 1, 'https://ror.org/00yx8y731 Excet (United States)'),
(30216, 'https://ror.org/03wj61f53', 'en', 1, 'https://ror.org/03wj61f53 Colegio Nacional National College'),
(30217, 'https://ror.org/00t6b3b82', 'no_lang_code', 1, 'https://ror.org/00t6b3b82 EXcorLab (Germany)'),
(30218, 'https://ror.org/00my25942', 'en', 1, 'https://ror.org/00my25942 Fudan University Shanghai Cancer Center'),
(30219, 'https://ror.org/01d7y2240', 'en', 1, 'https://ror.org/01d7y2240 Ministry of Home Affairs'),
(30220, 'https://ror.org/003392690', 'en', 1, 'https://ror.org/003392690 Dr. Hasan Sadikin General Hospital'),
(30221, 'https://ror.org/04c4bwh63', 'en', 1, 'https://ror.org/04c4bwh63 Cologne Excellence Cluster on Cellular Stress Responses in Aging Associated Diseases Exzellenzcluster Cellular Stress Responses in Aging-Associated Diseases'),
(30222, 'https://ror.org/01sfsq511', 'no_lang_code', 1, 'https://ror.org/01sfsq511 Infinity Pharmaceuticals (United States)'),
(30223, 'https://ror.org/00m9dbm09', 'en', 1, 'https://ror.org/00m9dbm09 Public Health Department'),
(30224, 'https://ror.org/017d7xm97', 'en', 1, 'https://ror.org/017d7xm97 Fanjingshan National Nature Reserve'),
(30225, 'https://ror.org/02phhfw40', 'en', 1, 'https://ror.org/02phhfw40 Innovative Vector Control Consortium'),
(30226, 'https://ror.org/03qepc107', 'en', 1, 'https://ror.org/03qepc107 Federal Almazov North-West Medical Research Centre федеральное государственное бюджетное учреждение Северо-Западный федеральный медицинский исследовательский центр имени В.А. Алмазова Министерства здравоохранения Российской Федерации'),
(30227, 'https://ror.org/03xw80974', 'es', 1, 'https://ror.org/03xw80974 EcoCiencia'),
(30228, 'https://ror.org/04nne1357', 'en', 1, 'https://ror.org/04nne1357 Henan Provincial Health Bureau'),
(30229, 'https://ror.org/03wnrsb51', 'en', 1, 'https://ror.org/03wnrsb51 Shandong Provincial QianFoShan Hospital 山东省千佛山医院'),
(30230, 'https://ror.org/02yv7gj50', 'no_lang_code', 1, 'https://ror.org/02yv7gj50 SNP Genetics (South Korea)'),
(30231, 'https://ror.org/058c5yh92', 'no_lang_code', 1, 'https://ror.org/058c5yh92 Shanghai Fenghe Information Technology (China)'),
(30232, 'https://ror.org/045yjpn53', 'en', 1, 'https://ror.org/045yjpn53 Hebei Mental Health Center'),
(30233, 'https://ror.org/00mh7ne83', 'en', 1, 'https://ror.org/00mh7ne83 Fergusson College'),
(30234, 'https://ror.org/02prx6004', 'no_lang_code', 1, 'https://ror.org/02prx6004 Generic Assays (Germany)'),
(30235, 'https://ror.org/00ckb9008', 'en', 1, 'https://ror.org/00ckb9008 Heze Medical College'),
(30236, 'https://ror.org/003wq4h14', 'en', 1, 'https://ror.org/003wq4h14 Gansu Province Computing Center'),
(30237, 'https://ror.org/045thge14', 'en', 1, 'https://ror.org/045thge14 Finnish Red Cross'),
(30238, 'https://ror.org/055w74b96', 'en', 1, 'https://ror.org/055w74b96 First Affiliated Hospital of Dalian Medical University 大连医科大学附属第一医院'),
(30239, 'https://ror.org/040gnq226', 'en', 1, 'https://ror.org/040gnq226 First Affiliated Hospital of Gannan Medical University'),
(30240, 'https://ror.org/02tbvhh96', 'en', 1, 'https://ror.org/02tbvhh96 First Affiliated Hospital of Xi''an Jiaotong University'),
(30241, 'https://ror.org/040aks519', 'en', 1, 'https://ror.org/040aks519 Bethune International Peace Hospital 中国人民解放军白求恩国际和平医院'),
(30242, 'https://ror.org/022vy2r94', 'no_lang_code', 1, 'https://ror.org/022vy2r94 Decipher Biosciences (Canada)'),
(30243, 'https://ror.org/050azj708', 'no_lang_code', 1, 'https://ror.org/050azj708 GenUs BioSystems (United States)'),
(30244, 'https://ror.org/058nry849', 'en', 1, 'https://ror.org/058nry849 Geological Survey of Israel'),
(30245, 'https://ror.org/05skxzn48', 'en', 1, 'https://ror.org/05skxzn48 Georgian National Museum აქართველოს ეროვნული მუზე'),
(30246, 'https://ror.org/051c4bd82', 'en', 1, 'https://ror.org/051c4bd82 First Bethune Hospital of Jilin University 吉林大学第一医院科研教学楼'),
(30247, 'https://ror.org/017a18y80', 'es', 1, 'https://ror.org/017a18y80 Hospital de Poniente'),
(30248, 'https://ror.org/05xd8w204', 'en', 1, 'https://ror.org/05xd8w204 Fuzhou Neuro Psychiatric Hospital'),
(30249, 'https://ror.org/04z3aby64', 'en', 1, 'https://ror.org/04z3aby64 First Affiliated Hospital of Hebei Medical University'),
(30250, 'https://ror.org/04n404y68', 'fr', 1, 'https://ror.org/04n404y68 Institut de Recherche en Réadaptation-Réinsertion'),
(30251, 'https://ror.org/02vzqaq35', 'en', 1, 'https://ror.org/02vzqaq35 First Hospital of Shanxi Medical University'),
(30252, 'https://ror.org/02s9hwc03', 'es', 1, 'https://ror.org/02s9hwc03 Hospital Infantil Manuel de Jesús Rivera'),
(30253, 'https://ror.org/056r88m65', 'pt', 1, 'https://ror.org/056r88m65 Fundação Hospitalar do Estado de Minas Gerais'),
(30254, 'https://ror.org/035wmq455', 'en', 1, 'https://ror.org/035wmq455 Deutsche Leberstiftung German Liver Foundation'),
(30255, 'https://ror.org/02vtcvw94', 'no_lang_code', 1, 'https://ror.org/02vtcvw94 Gilasio Coding (Israel)'),
(30256, 'https://ror.org/0068xq694', 'en', 1, 'https://ror.org/0068xq694 Hospital of Southern Norway'),
(30257, 'https://ror.org/03ejqwd09', 'en', 1, 'https://ror.org/03ejqwd09 Diabetes Foundation'),
(30258, 'https://ror.org/00jqwr190', 'en', 1, 'https://ror.org/00jqwr190 Dignitas International'),
(30259, 'https://ror.org/00ny76115', 'en', 1, 'https://ror.org/00ny76115 Forage Genetics International'),
(30260, 'https://ror.org/00t7jb983', 'es', 1, 'https://ror.org/00t7jb983 Consorcio Hospitalario Provincial de Castellón'),
(30261, 'https://ror.org/030rdap26', 'ms', 1, 'https://ror.org/030rdap26 Hospital Sungai Buloh'),
(30262, 'https://ror.org/03sfqvm15', 'en', 1, 'https://ror.org/03sfqvm15 Sabah Forestry Department'),
(30263, 'https://ror.org/05xkzd182', 'en', 1, 'https://ror.org/05xkzd182 Directorate General of Health Services'),
(30264, 'https://ror.org/03nfexg07', 'fr', 1, 'https://ror.org/03nfexg07 Institut National de Santé Publique'),
(30265, 'https://ror.org/01q3by234', 'no_lang_code', 1, 'https://ror.org/01q3by234 Ekjut'),
(30266, 'https://ror.org/03jcj5d12', 'no_lang_code', 1, 'https://ror.org/03jcj5d12 Fortis Flt. Lt. Rajan Dhall Hospital'),
(30267, 'https://ror.org/02gysew38', 'en', 1, 'https://ror.org/02gysew38 Global Fund to Fight AIDS, Tuberculosis and Malaria'),
(30268, 'https://ror.org/01kjq0112', 'en', 1, 'https://ror.org/01kjq0112 Foundation for Advancement of International Science 公益財団法人国際科学振興財団'),
(30269, 'https://ror.org/04whx4k53', 'en', 1, 'https://ror.org/04whx4k53 Global Initiative on Psychiatry'),
(30270, 'https://ror.org/05y0vh566', 'en', 1, 'https://ror.org/05y0vh566 Global Solutions for Infectious Diseases'),
(30271, 'https://ror.org/01j4h9t83', 'fr', 1, 'https://ror.org/01j4h9t83 Institut de Recherche pour le Développement Institute of Research for the Development'),
(30272, 'https://ror.org/00s8p6c75', 'pt', 1, 'https://ror.org/00s8p6c75 Agência Paulista de Tecnologia dos Agronegócios São Paulo’s Agency for Agribusiness Technology'),
(30273, 'https://ror.org/02g4e1v18', 'no_lang_code', 1, 'https://ror.org/02g4e1v18 Metabiota (Cameroon)'),
(30274, 'https://ror.org/030sbze61', 'en', 1, 'https://ror.org/030sbze61 Institute for Molecular Medicine Finland'),
(30275, 'https://ror.org/04yw8y022', 'no_lang_code', 1, 'https://ror.org/04yw8y022 Hunan New Wellful (China)'),
(30276, 'https://ror.org/04b9y0b76', 'en', 1, 'https://ror.org/04b9y0b76 Government Hospital of Thoracic Medicine'),
(30277, 'https://ror.org/03n3qwf37', 'en', 1, 'https://ror.org/03n3qwf37 Third People''s Hospital of Huzhou'),
(30278, 'https://ror.org/01mpknn43', 'no_lang_code', 1, 'https://ror.org/01mpknn43 iAnalysis (Japan)'),
(30279, 'https://ror.org/02egtfm54', 'pt', 1, 'https://ror.org/02egtfm54 Instituto de Biologia do Exército'),
(30280, 'https://ror.org/05mqewt50', 'en', 1, 'https://ror.org/05mqewt50 Jiangjin Central Hospital'),
(30281, 'https://ror.org/03zts9g74', 'no_lang_code', 1, 'https://ror.org/03zts9g74 Idera Pharmaceuticals (United States)'),
(30282, 'https://ror.org/05pf1p208', 'fr', 1, 'https://ror.org/05pf1p208 Institut Français du Cheval et de l''Équitation'),
(30283, 'https://ror.org/04pge2a40', 'en', 1, 'https://ror.org/04pge2a40 Second Affiliated Hospital of Nanjing Medical University'),
(30284, 'https://ror.org/02aj9jk84', 'en', 1, 'https://ror.org/02aj9jk84 Jiangsu Provincial Authorities Hospital 江苏省省级机关医院'),
(30285, 'https://ror.org/002qb2q37', 'en', 1, 'https://ror.org/002qb2q37 Hainan Tranquility Hospital'),
(30286, 'https://ror.org/034npc439', 'en', 1, 'https://ror.org/034npc439 Sixth Hospital of Changchun City'),
(30287, 'https://ror.org/01xrzxy63', 'es', 1, 'https://ror.org/01xrzxy63 Museo de San Isidro'),
(30288, 'https://ror.org/01w5pm594', 'no_lang_code', 1, 'https://ror.org/01w5pm594 Jiangsu Nhwa Pharmaceutical (China)'),
(30289, 'https://ror.org/03qxwkk89', 'no_lang_code', 1, 'https://ror.org/03qxwkk89 Lipidomix (Germany)'),
(30290, 'https://ror.org/05sm6p196', 'en', 1, 'https://ror.org/05sm6p196 Jiangsu Provincial Hospital of Traditional Chinese Medicine 江苏省中医药研究院'),
(30291, 'https://ror.org/05n3asa33', 'es', 1, 'https://ror.org/05n3asa33 Instituto de Investigación Biomédica de Málaga'),
(30292, 'https://ror.org/05ry90052', 'fr', 1, 'https://ror.org/05ry90052 Alphabio'),
(30293, 'https://ror.org/05808qp03', 'en', 1, 'https://ror.org/05808qp03 Jiangxi Academy of Forestry 江西省林业科学院'),
(30294, 'https://ror.org/04e209f39', 'en', 1, 'https://ror.org/04e209f39 Loewe Center for Synthetic Microbiology Loewe-Zentrum für Synthetische Mikrobiologie'),
(30295, 'https://ror.org/00v8g0168', 'en', 1, 'https://ror.org/00v8g0168 Jiangxi Provincial Cancer Hospital 江西省肿瘤医院'),
(30296, 'https://ror.org/0300cef81', 'no_lang_code', 1, 'https://ror.org/0300cef81 Lola ya Bonobo'),
(30297, 'https://ror.org/03y46gc61', 'no_lang_code', 1, 'https://ror.org/03y46gc61 Megmilk Snow Brand (Japan) 雪印乳業株式会社'),
(30298, 'https://ror.org/00j5y7k81', 'no_lang_code', 1, 'https://ror.org/00j5y7k81 Longgang Central Hospital'),
(30299, 'https://ror.org/0109nma88', 'en', 1, 'https://ror.org/0109nma88 Min-Hwei College of Health Care Management'),
(30300, 'https://ror.org/0152xm391', 'en', 1, 'https://ror.org/0152xm391 Minerva Foundation'),
(30301, 'https://ror.org/04x1arp29', 'en', 1, 'https://ror.org/04x1arp29 Brain Hospital of Jilin'),
(30302, 'https://ror.org/033xtdz52', 'pt', 1, 'https://ror.org/033xtdz52 Instituto de Pesquisas Jardim Botânico do Rio de Janeiro'),
(30303, 'https://ror.org/00p0n9a62', 'en', 1, 'https://ror.org/00p0n9a62 Minhang District Central Hospital'),
(30304, 'https://ror.org/01gbk3827', 'es', 1, 'https://ror.org/01gbk3827 Instituto del Mar del Peru'),
(30305, 'https://ror.org/02dbz7n48', 'en', 1, 'https://ror.org/02dbz7n48 Ministry of Public Health Ministère de la Santé Publique'),
(30306, 'https://ror.org/05chjan92', 'en', 1, 'https://ror.org/05chjan92 Jinan Military General Hospital 中国人民解放军济南军区总医院'),
(30307, 'https://ror.org/03hz8wd80', 'en', 1, 'https://ror.org/03hz8wd80 Lundbeck Foundation'),
(30308, 'https://ror.org/03j2mew82', 'en', 1, 'https://ror.org/03j2mew82 Jinan Stomatological Hospital 济南市口腔医院'),
(30309, 'https://ror.org/024h8p458', 'es', 1, 'https://ror.org/024h8p458 Ministerio de Salud'),
(30310, 'https://ror.org/057s3rs39', 'no_lang_code', 1, 'https://ror.org/057s3rs39 Mabtech (Sweden)'),
(30311, 'https://ror.org/03jhz9k05', 'en', 1, 'https://ror.org/03jhz9k05 Mission to Save the Helpless'),
(30312, 'https://ror.org/04z13ha89', 'no_lang_code', 1, 'https://ror.org/04z13ha89 Jinhua Central Hospital 金华市中心医院'),
(30313, 'https://ror.org/02s4dhq46', 'en', 1, 'https://ror.org/02s4dhq46 Instituto Nacional de Biodiversidad National Biodiversity Institute'),
(30314, 'https://ror.org/044x68458', 'en', 1, 'https://ror.org/044x68458 Instituto Nacional de Ciência e Tecnologia em Biologia Estrutural e Bioimagens National Institute of Science and Technology for Structural Biology and Bioimaging'),
(30315, 'https://ror.org/01a2d7067', 'es', 1, 'https://ror.org/01a2d7067 Instituto Nacional de Salud del Niño'),
(30316, 'https://ror.org/03h4e4c54', 'en', 1, 'https://ror.org/03h4e4c54 Model Animal Research Center'),
(30317, 'https://ror.org/01wjew854', 'en', 1, 'https://ror.org/01wjew854 Joint Space Science Institute'),
(30318, 'https://ror.org/05v6b0t46', 'es', 1, 'https://ror.org/05v6b0t46 Magdalena Villegas de Martínez el Hospital'),
(30319, 'https://ror.org/0138q7t80', 'en', 1, 'https://ror.org/0138q7t80 Malaysia Genome Institute'),
(30320, 'https://ror.org/00wj1b221', 'no_lang_code', 1, 'https://ror.org/00wj1b221 Integrated Statistics (United States)'),
(30321, 'https://ror.org/04jg69j33', 'en', 1, 'https://ror.org/04jg69j33 Hainan Medical College Hospital'),
(30322, 'https://ror.org/02r5m5t30', 'fr', 1, 'https://ror.org/02r5m5t30 Doctors Without Borders Médecins Sans Frontières'),
(30323, 'https://ror.org/00w1v8g84', 'pt', 1, 'https://ror.org/00w1v8g84 Laboratório Nacional de Ciência e Tecnologia do Bioetanol'),
(30324, 'https://ror.org/01k0xxh86', 'no_lang_code', 1, 'https://ror.org/01k0xxh86 Green Cross (South Korea)'),
(30325, 'https://ror.org/0069sam62', 'en', 1, 'https://ror.org/0069sam62 Kalahari Meerkat Project'),
(30326, 'https://ror.org/05y957z51', 'en', 1, 'https://ror.org/05y957z51 Marwell Zoo'),
(30327, 'https://ror.org/0576dtf44', 'no_lang_code', 1, 'https://ror.org/0576dtf44 Molecular Discovery (United Kingdom)'),
(30328, 'https://ror.org/000cs1t14', 'en', 1, 'https://ror.org/000cs1t14 Harvard NeuroDiscovery Center'),
(30329, 'https://ror.org/01mdjbm03', 'en', 1, 'https://ror.org/01mdjbm03 Fourth Hospital of Hebei Medical University 河北医科大学第四医院'),
(30330, 'https://ror.org/05dxas544', 'no_lang_code', 1, 'https://ror.org/05dxas544 Moon Express (United States)'),
(30331, 'https://ror.org/05kxcj202', 'en', 1, 'https://ror.org/05kxcj202 French Institute of Pondicherry Institut Français de Pondichéry பாண்டிச்சேரி பிரெஞ்சு நிறுவனம்'),
(30332, 'https://ror.org/0113ps589', 'es', 1, 'https://ror.org/0113ps589 Karumbé'),
(30333, 'https://ror.org/04abk6t05', 'en', 1, 'https://ror.org/04abk6t05 Department of Biodiversity, Conservation and Attractions'),
(30334, 'https://ror.org/0399xk126', 'en', 1, 'https://ror.org/0399xk126 International Trachoma Initiative'),
(30335, 'https://ror.org/045jt2189', 'en', 1, 'https://ror.org/045jt2189 International Trachoma Initiative'),
(30336, 'https://ror.org/03rfn9b75', 'fr', 1, 'https://ror.org/03rfn9b75 Artsen Zonder Grenzen Doctors Without Borders Médecins Sans Frontières'),
(30337, 'https://ror.org/02ktfc112', 'no_lang_code', 1, 'https://ror.org/02ktfc112 Digital Science (United Kingdom)'),
(30338, 'https://ror.org/01v4vcm68', 'fr', 1, 'https://ror.org/01v4vcm68 Labex Corail'),
(30339, 'https://ror.org/039cbfe54', 'no_lang_code', 1, 'https://ror.org/039cbfe54 Invicro (United States)'),
(30340, 'https://ror.org/00v6g9845', 'no_lang_code', 1, 'https://ror.org/00v6g9845 Siemens (China)'),
(30341, 'https://ror.org/058a2pj71', 'it', 1, 'https://ror.org/058a2pj71 Fondazione Toscana Gabriele Monasterio'),
(30342, 'https://ror.org/05w5nnw18', 'en', 1, 'https://ror.org/05w5nnw18 International Institute for Advanced Scientific Studies "Eduardo R. Caianiello" Istituto Internazionale per gli Alti Studi Scientifici'),
(30343, 'https://ror.org/020h4b682', 'no_lang_code', 1, 'https://ror.org/020h4b682 Digital Science (United States)'),
(30344, 'https://ror.org/00p9jf779', 'en', 1, 'https://ror.org/00p9jf779 Medicines for Malaria Venture'),
(30345, 'https://ror.org/02675s371', 'en', 1, 'https://ror.org/02675s371 Japan BCG Laboratory 日本ビーシージー製造株式会社'),
(30346, 'https://ror.org/04d8ywj90', 'en', 1, 'https://ror.org/04d8ywj90 Multiple Sclerosis Society of Canada Société canadienne de la sclérose en plaques'),
(30347, 'https://ror.org/0052kfx70', 'no_lang_code', 1, 'https://ror.org/0052kfx70 KMT Hepatech (Canada)'),
(30348, 'https://ror.org/047yqrk88', 'no_lang_code', 1, 'https://ror.org/047yqrk88 Metabiota (United States)'),
(30349, 'https://ror.org/05bem9j20', 'no_lang_code', 1, 'https://ror.org/05bem9j20 Crabion (Italy)'),
(30350, 'https://ror.org/00kztq733', 'en', 1, 'https://ror.org/00kztq733 Isaac Newton Institute'),
(30351, 'https://ror.org/030f5x630', 'no_lang_code', 1, 'https://ror.org/030f5x630 Labormedizinische Zentrum Dr Risch (Switzerland)'),
(30352, 'https://ror.org/01bcxbz42', 'en', 1, 'https://ror.org/01bcxbz42 Shantou University Mental Health Center'),
(30353, 'https://ror.org/006arvw77', 'en', 1, 'https://ror.org/006arvw77 Landseed Hospital'),
(30354, 'https://ror.org/05dtvab05', 'no_lang_code', 1, 'https://ror.org/05dtvab05 Konica Minolta (Japan) コニカミノルタホールディングス'),
(30355, 'https://ror.org/0392tq432', 'en', 1, 'https://ror.org/0392tq432 National Consortium for Zoonosis Research'),
(30356, 'https://ror.org/01v7qfc32', 'en', 1, 'https://ror.org/01v7qfc32 National Department of Health'),
(30357, 'https://ror.org/006w9n065', 'en', 1, 'https://ror.org/006w9n065 Mercer County Mosquito Control'),
(30358, 'https://ror.org/03j5jkz79', 'en', 1, 'https://ror.org/03j5jkz79 Jiangxi Mental Health Center'),
(30359, 'https://ror.org/02r14vp15', 'no_lang_code', 1, 'https://ror.org/02r14vp15 National Influenza Center'),
(30360, 'https://ror.org/01hht6e57', 'en', 1, 'https://ror.org/01hht6e57 Bethune Second Hospital'),
(30361, 'https://ror.org/02fsqa093', 'en', 1, 'https://ror.org/02fsqa093 Korea Institute of Drug Safety and Risk Management'),
(30362, 'https://ror.org/03qyfje32', 'en', 1, 'https://ror.org/03qyfje32 Institut national de recherche biomédicale National Institute of Biomedical Research'),
(30363, 'https://ror.org/01p92gv96', 'en', 1, 'https://ror.org/01p92gv96 Fourth People''s Hospital of Liaocheng'),
(30364, 'https://ror.org/02mgm5r23', 'en', 1, 'https://ror.org/02mgm5r23 Makerere University Walter Reed Project'),
(30365, 'https://ror.org/01m5zqn93', 'no_lang_code', 1, 'https://ror.org/01m5zqn93 Ipso Facto (France)'),
(30366, 'https://ror.org/05n50qc07', 'en', 1, 'https://ror.org/05n50qc07 Nanchong Central Hospital 南充市中心医院'),
(30367, 'https://ror.org/035zntx80', 'en', 1, 'https://ror.org/035zntx80 Queensland Museum'),
(30368, 'https://ror.org/01wcx2305', 'en', 1, 'https://ror.org/01wcx2305 Nanjing Brain Hospital'),
(30369, 'https://ror.org/02x81h069', 'en', 1, 'https://ror.org/02x81h069 Organization for Tropical Studies'),
(30370, 'https://ror.org/04q9kfc05', 'en', 1, 'https://ror.org/04q9kfc05 Nanjing Chest Hospital'),
(30371, 'https://ror.org/02ad7ap24', 'en', 1, 'https://ror.org/02ad7ap24 Qujing Normal University 曲靖师范学院'),
(30372, 'https://ror.org/01cv9mb69', 'en', 1, 'https://ror.org/01cv9mb69 Ruxmaniben Deepchand Gardi Medical College'),
(30373, 'https://ror.org/000xvke80', 'en', 1, 'https://ror.org/000xvke80 Nanjing Children''s Hospital 南京市儿童医院'),
(30374, 'https://ror.org/02ap4eq27', 'no_lang_code', 1, 'https://ror.org/02ap4eq27 Origin Energy (Australia)'),
(30375, 'https://ror.org/00v7z6m55', 'en', 1, 'https://ror.org/00v7z6m55 Limassol General Hospital'),
(30376, 'https://ror.org/052q3cn21', 'en', 1, 'https://ror.org/052q3cn21 National Institute of Malariology, Parasitology and Entomology'),
(30377, 'https://ror.org/0026h4837', 'en', 1, 'https://ror.org/0026h4837 Nanjing Institute of Vegetable Science'),
(30378, 'https://ror.org/004qfqh71', 'en', 1, 'https://ror.org/004qfqh71 National Museum'),
(30379, 'https://ror.org/05m1p5x56', 'en', 1, 'https://ror.org/05m1p5x56 First Affiliated Hospital Zhejiang University'),
(30380, 'https://ror.org/0105p2j56', 'en', 1, 'https://ror.org/0105p2j56 National Museum of Natural Science 國立自然科學博物館'),
(30381, 'https://ror.org/026djmp70', 'no_lang_code', 1, 'https://ror.org/026djmp70 RayBiotech (China)'),
(30382, 'https://ror.org/04j0ce487', 'en', 1, 'https://ror.org/04j0ce487 Nasarawa State Ministry of Health'),
(30383, 'https://ror.org/04pw0tr28', 'nl', 1, 'https://ror.org/04pw0tr28 Refaja Ziekenhuis'),
(30384, 'https://ror.org/05p4yqc22', 'en', 1, 'https://ror.org/05p4yqc22 PanAmerican Bioinformatics Institute'),
(30385, 'https://ror.org/03aq7kf18', 'en', 1, 'https://ror.org/03aq7kf18 Second Affiliated Hospital of Xi''an Jiaotong University'),
(30386, 'https://ror.org/04rhtf097', 'en', 1, 'https://ror.org/04rhtf097 Nanjing Second Hospital'),
(30387, 'https://ror.org/00h7j7m14', 'fr', 1, 'https://ror.org/00h7j7m14 Comité National de Lutte contre le SIDA'),
(30388, 'https://ror.org/04p0nk708', 'en', 1, 'https://ror.org/04p0nk708 Regional Hospital West Jutland'),
(30389, 'https://ror.org/02q7ym472', 'de', 1, 'https://ror.org/02q7ym472 Helios Park-Klinikum Leipzig'),
(30390, 'https://ror.org/00k2gdw14', 'en', 1, 'https://ror.org/00k2gdw14 National Institute for Research in Tribal Health'),
(30391, 'https://ror.org/057w9fs93', 'it', 1, 'https://ror.org/057w9fs93 Istituto di Genomica Applicata'),
(30392, 'https://ror.org/03d3r6333', 'no_lang_code', 1, 'https://ror.org/03d3r6333 NeoChemir (Japan) ネオケミア'),
(30393, 'https://ror.org/02swwnp83', 'en', 1, 'https://ror.org/02swwnp83 Nepal Health Research Council'),
(30394, 'https://ror.org/040rwep31', 'en', 1, 'https://ror.org/040rwep31 Peking University Shougang Hospital 北京大学首鋼医院'),
(30395, 'https://ror.org/010eef547', 'en', 1, 'https://ror.org/010eef547 Pathologist Bio-Medical Laboratories'),
(30396, 'https://ror.org/04spw8212', 'en', 1, 'https://ror.org/04spw8212 New Delhi Tuberculosis Center'),
(30397, 'https://ror.org/02vbdk750', 'no_lang_code', 1, 'https://ror.org/02vbdk750 Patrys (Germany)'),
(30398, 'https://ror.org/05cnf4c39', 'en', 1, 'https://ror.org/05cnf4c39 Changzhi Medical College Peace Hospital'),
(30399, 'https://ror.org/01fd86n56', 'en', 1, 'https://ror.org/01fd86n56 Second Hospital of Shandong University'),
(30400, 'https://ror.org/02q36eh13', 'en', 1, 'https://ror.org/02q36eh13 National Center for HIV/AIDS, Dermatology and STD'),
(30401, 'https://ror.org/03p65m515', 'en', 1, 'https://ror.org/03p65m515 New York Consortium in Evolutionary Primatology'),
(30402, 'https://ror.org/03bznzd25', 'en', 1, 'https://ror.org/03bznzd25 Cambodia National Malaria Center'),
(30403, 'https://ror.org/053v2gh09', 'en', 1, 'https://ror.org/053v2gh09 Second Xiangya Hospital of Central South University'),
(30404, 'https://ror.org/05mt9p027', 'en', 1, 'https://ror.org/05mt9p027 Research Foundation ITSUU Laboratory 乙卯研究所'),
(30405, 'https://ror.org/00hkdgr14', 'en', 1, 'https://ror.org/00hkdgr14 Seiwa Hospital 青和病院'),
(30406, 'https://ror.org/025gg5e98', 'en', 1, 'https://ror.org/025gg5e98 Healis Sekhsaria Institute For Public Health'),
(30407, 'https://ror.org/00vkb8q56', 'en', 1, 'https://ror.org/00vkb8q56 Ningbo City College of Vocational Technology'),
(30408, 'https://ror.org/02fkt1r75', 'no_lang_code', 1, 'https://ror.org/02fkt1r75 Pharmatest (Finland)'),
(30409, 'https://ror.org/021nfay74', 'en', 1, 'https://ror.org/021nfay74 Ningbo Kangning Hospital'),
(30410, 'https://ror.org/02cybaz37', 'en', 1, 'https://ror.org/02cybaz37 PHG Foundation'),
(30411, 'https://ror.org/038kpzv03', 'en', 1, 'https://ror.org/038kpzv03 Retina Vitreous Associates Medical Group'),
(30412, 'https://ror.org/002m0p291', 'en', 1, 'https://ror.org/002m0p291 Beihai People''s Hospital'),
(30413, 'https://ror.org/039f5ga37', 'no_lang_code', 1, 'https://ror.org/039f5ga37 Pingtung Hospital'),
(30414, 'https://ror.org/02xxx6w64', 'en', 1, 'https://ror.org/02xxx6w64 81th Hospital of PLA 中国人民解放军第八一医院'),
(30415, 'https://ror.org/02nc46417', 'en', 1, 'https://ror.org/02nc46417 Sony Computer Science Laboratories ソニーコンピュータサイエンス研究所'),
(30416, 'https://ror.org/04r9x9n80', 'no_lang_code', 1, 'https://ror.org/04r9x9n80 Shanxi Zhendong Pharmaceutical (China) 山西振东制药股份有限公司'),
(30417, 'https://ror.org/03xcvwx77', 'no_lang_code', 1, 'https://ror.org/03xcvwx77 Pojen General Hospital'),
(30418, 'https://ror.org/02wh8xm70', 'en', 1, 'https://ror.org/02wh8xm70 Shanxi Eye Hospital'),
(30419, 'https://ror.org/04zhd1705', 'it', 1, 'https://ror.org/04zhd1705 Policlinico Casilino'),
(30420, 'https://ror.org/01w1vg437', 'fr', 1, 'https://ror.org/01w1vg437 Doctors Without Borders Médecins Sans Frontières'),
(30421, 'https://ror.org/005r3tp02', 'en', 1, 'https://ror.org/005r3tp02 South African National Biodiversity Institute'),
(30422, 'https://ror.org/0376mq589', 'en', 1, 'https://ror.org/0376mq589 Royal Tyrrell Museum'),
(30423, 'https://ror.org/010j7cb18', 'no_lang_code', 1, 'https://ror.org/010j7cb18 Sardegna Ricerche (Italy)'),
(30424, 'https://ror.org/03yhn1973', 'en', 1, 'https://ror.org/03yhn1973 Praxis Institute for Participatory Practices'),
(30425, 'https://ror.org/05jmh8x88', 'en', 1, 'https://ror.org/05jmh8x88 Shanghai Zhabei District Shibei Hospital'),
(30426, 'https://ror.org/02ryfff02', 'en', 1, 'https://ror.org/02ryfff02 Songjiang District Central Hospital'),
(30427, 'https://ror.org/04gz17b59', 'en', 1, 'https://ror.org/04gz17b59 Northern Jiangsu People''s Hospital 江苏省苏北人民医院'),
(30428, 'https://ror.org/020qxnz74', 'en', 1, 'https://ror.org/020qxnz74 Dhaka Community Hospital Trust'),
(30429, 'https://ror.org/045vwy185', 'en', 1, 'https://ror.org/045vwy185 Seventh People''s Hospital of Shanghai'),
(30430, 'https://ror.org/03p31hk68', 'en', 1, 'https://ror.org/03p31hk68 Shanghai Traditional Chinese Medicine Hospital'),
(30431, 'https://ror.org/03731ze76', 'fr', 1, 'https://ror.org/03731ze76 Nouvelles Cliniques Nantaises'),
(30432, 'https://ror.org/01485rp97', 'no_lang_code', 1, 'https://ror.org/01485rp97 Shanghai Hi-Tech joint biotechnology R & D (China)'),
(30433, 'https://ror.org/0048a4976', 'en', 1, 'https://ror.org/0048a4976 Shanghai Eye Disease Prevention & Treatment Center'),
(30434, 'https://ror.org/038xmzj21', 'en', 1, 'https://ror.org/038xmzj21 Shanghai East Hospital'),
(30435, 'https://ror.org/024x8v141', 'en', 1, 'https://ror.org/024x8v141 Shandong Mental Health Center'),
(30436, 'https://ror.org/03dr0ny42', 'no_lang_code', 1, 'https://ror.org/03dr0ny42 NovaCell Technology (South Korea) 노바셀테크놀로지'),
(30437, 'https://ror.org/01fbgjv04', 'en', 1, 'https://ror.org/01fbgjv04 Shandong Academy of Agricultural Sciences 山东省花生研究所'),
(30438, 'https://ror.org/03dgngj22', 'en', 1, 'https://ror.org/03dgngj22 Andover College'),
(30439, 'https://ror.org/01qdbbk19', 'en', 1, 'https://ror.org/01qdbbk19 Special Astrophysical Observatory Федеральное государственное бюджетное учреждение науки Специальная астрофизическая обсерватория Российской академии наук'),
(30440, 'https://ror.org/01kmmtp84', 'en', 1, 'https://ror.org/01kmmtp84 Programs for Assessment of Technology in Health Research Institute'),
(30441, 'https://ror.org/011y67d23', 'no_lang_code', 1, 'https://ror.org/011y67d23 Novo Nordisk (United States)'),
(30442, 'https://ror.org/03nb8cd76', 'en', 1, 'https://ror.org/03nb8cd76 Shanghai Chenshan Plant Science Research Center 上海辰山植物科学研究中心'),
(30443, 'https://ror.org/015qzwq73', 'en', 1, 'https://ror.org/015qzwq73 Henan Psychiatric Hospital'),
(30444, 'https://ror.org/01eb9tc45', 'it', 1, 'https://ror.org/01eb9tc45 Ospedale Sant Antonio'),
(30445, 'https://ror.org/03kvh2f84', 'en', 1, 'https://ror.org/03kvh2f84 National Office of Mines'),
(30446, 'https://ror.org/02gxnzq82', 'en', 1, 'https://ror.org/02gxnzq82 Egyesített Szent István és Szent László Kórház-Rendelőintézet Unified Szent István and Szent László Hospital'),
(30447, 'https://ror.org/04re59v49', 'no_lang_code', 1, 'https://ror.org/04re59v49 St. Martin de Porres Hospital'),
(30448, 'https://ror.org/05dqm7k77', 'en', 1, 'https://ror.org/05dqm7k77 Onderstepoort Veterinary Institute'),
(30449, 'https://ror.org/0524pqp96', 'en', 1, 'https://ror.org/0524pqp96 Sexual Health Clinic'),
(30450, 'https://ror.org/04pnhdn93', 'fr', 1, 'https://ror.org/04pnhdn93 ONG Karkara'),
(30451, 'https://ror.org/01qr5zh59', 'en', 1, 'https://ror.org/01qr5zh59 Public Health Laboratory Ivo de Carneri'),
(30452, 'https://ror.org/01v99n607', 'en', 1, 'https://ror.org/01v99n607 Shark Spotters'),
(30453, 'https://ror.org/04237en35', 'fr', 1, 'https://ror.org/04237en35 Artsen zonder Grenzen Doctors Without Borders Médecins Sans Frontières'),
(30454, 'https://ror.org/03sm03s92', 'no_lang_code', 1, 'https://ror.org/03sm03s92 OpGen (United States)'),
(30455, 'https://ror.org/01z8tr155', 'en', 1, 'https://ror.org/01z8tr155 China Aerospace Science and Technology Corporation 中国航天科技集团'),
(30456, 'https://ror.org/01wm7qx64', 'en', 1, 'https://ror.org/01wm7qx64 Shenyang Environmental Protection Bureau'),
(30457, 'https://ror.org/03557jp84', 'en', 1, 'https://ror.org/03557jp84 Orangutan Information Centre'),
(30458, 'https://ror.org/03teef091', 'en', 1, 'https://ror.org/03teef091 Samueli Institute'),
(30459, 'https://ror.org/0409k5a27', 'en', 1, 'https://ror.org/0409k5a27 Shenzhen Children''s Hospital 深圳市儿童医院'),
(30460, 'https://ror.org/00mj90n62', 'en', 1, 'https://ror.org/00mj90n62 Qingdao Mental Health Center'),
(30461, 'https://ror.org/01mynms41', 'en', 1, 'https://ror.org/01mynms41 Temeke Municipal Council'),
(30462, 'https://ror.org/01wfv3m53', 'no_lang_code', 1, 'https://ror.org/01wfv3m53 Teva Pharmaceuticals (Israel) טבע תעשיות פרמצבטיות בע"מ صناعات تيفا الصيدلية'),
(30463, 'https://ror.org/03gkadw36', 'no_lang_code', 1, 'https://ror.org/03gkadw36 Sappasithiprasong Hospital'),
(30464, 'https://ror.org/05x9zm716', 'en', 1, 'https://ror.org/05x9zm716 Fourth Affiliated Hospital of Anhui Medical University 安徽医科大学第四附属医院'),
(30465, 'https://ror.org/039c4fg18', 'en', 1, 'https://ror.org/039c4fg18 Gibraltar Museum'),
(30466, 'https://ror.org/05qp6pd10', 'no_lang_code', 1, 'https://ror.org/05qp6pd10 Wuxi Taihu Hospital'),
(30467, 'https://ror.org/041yj5753', 'en', 1, 'https://ror.org/041yj5753 Stomatology Hospital'),
(30468, 'https://ror.org/00dpgqt54', 'en', 1, 'https://ror.org/00dpgqt54 Mianyang Third People''s Hospital'),
(30469, 'https://ror.org/02ddfy797', 'en', 1, 'https://ror.org/02ddfy797 82th Hospital of Pla'),
(30470, 'https://ror.org/02g8tfh80', 'ms', 1, 'https://ror.org/02g8tfh80 Hospital Sarikei'),
(30471, 'https://ror.org/03cmqpr17', 'en', 1, 'https://ror.org/03cmqpr17 Affiliated Hospital of Guilin Medical College'),
(30472, 'https://ror.org/03bxtpd68', 'no_lang_code', 1, 'https://ror.org/03bxtpd68 Sigma Tau (Italy)'),
(30473, 'https://ror.org/03fx0xk26', 'en', 1, 'https://ror.org/03fx0xk26 The Jane Goodall Institute'),
(30474, 'https://ror.org/03aceaw85', 'en', 1, 'https://ror.org/03aceaw85 Sihanouk Hospital Center of HOPE'),
(30475, 'https://ror.org/01nsg6818', 'no_lang_code', 1, 'https://ror.org/01nsg6818 Simpson Biotech Company (Taiwan)'),
(30476, 'https://ror.org/01wn7w598', 'en', 1, 'https://ror.org/01wn7w598 Affiliated Hospital of Taishan Medical University'),
(30477, 'https://ror.org/05c27bs83', 'en', 1, 'https://ror.org/05c27bs83 Singapore Clinical Research Institute'),
(30478, 'https://ror.org/01n3v7c44', 'en', 1, 'https://ror.org/01n3v7c44 Liaoning Provincial People''s Hospital 辽宁省人民医院'),
(30479, 'https://ror.org/01khmxb55', 'en', 1, 'https://ror.org/01khmxb55 Jiangyin People''s Hospital'),
(30480, 'https://ror.org/0454gfp30', 'nl', 1, 'https://ror.org/0454gfp30 Sint Maartenskliniek'),
(30481, 'https://ror.org/05wga2g83', 'ms', 1, 'https://ror.org/05wga2g83 Hospital Sultanah Bahiyah'),
(30482, 'https://ror.org/01pwgd096', 'en', 1, 'https://ror.org/01pwgd096 SKA Observatory'),
(30483, 'https://ror.org/02qkhx131', 'en', 1, 'https://ror.org/02qkhx131 Jiangxi Pingxiang People''s Hospital'),
(30484, 'https://ror.org/01erc2q10', 'en', 1, 'https://ror.org/01erc2q10 Suzhou Guangji Hospital'),
(30485, 'https://ror.org/05ctyj936', 'en', 1, 'https://ror.org/05ctyj936 Yan''an Hospital Affiliated To Kunming Medical University 昆明市延安医院'),
(30486, 'https://ror.org/012f2cn18', 'en', 1, 'https://ror.org/012f2cn18 Second Affiliated Hospital of Dalian Medical University'),
(30487, 'https://ror.org/00e0w3260', 'en', 1, 'https://ror.org/00e0w3260 Arcus Foundation'),
(30488, 'https://ror.org/02wwt0d68', 'no_lang_code', 1, 'https://ror.org/02wwt0d68 Shinsera Technologies (Japan)'),
(30489, 'https://ror.org/04e6jcd64', 'en', 1, 'https://ror.org/04e6jcd64 Thrombosis Research Institute'),
(30490, 'https://ror.org/035rs9v13', 'en', 1, 'https://ror.org/035rs9v13 Second Affiliated Hospital of Shantou University Medical College'),
(30491, 'https://ror.org/03ky42c33', 'en', 1, 'https://ror.org/03ky42c33 Taichung Hospital'),
(30492, 'https://ror.org/0569vjj73', 'en', 1, 'https://ror.org/0569vjj73 Australian Wine Research Institute'),
(30493, 'https://ror.org/00hpwje09', 'de', 1, 'https://ror.org/00hpwje09 Tierärztliche Praxis für Neurologie'),
(30494, 'https://ror.org/04mm8xb27', 'no_lang_code', 1, 'https://ror.org/04mm8xb27 SciGenom Labs (India)'),
(30495, 'https://ror.org/026bqfq17', 'en', 1, 'https://ror.org/026bqfq17 Second Affiliated Hospital of Zhengzhou University'),
(30496, 'https://ror.org/03dx9c487', 'en', 1, 'https://ror.org/03dx9c487 Supreme Commission for Tourism and Antiquities'),
(30497, 'https://ror.org/00ryamr02', 'en', 1, 'https://ror.org/00ryamr02 Sea to Shore Alliance'),
(30498, 'https://ror.org/03tn5kh37', 'en', 1, 'https://ror.org/03tn5kh37 Second Hospital of Shanxi Medical University 山西医科大学第二医院'),
(30499, 'https://ror.org/02ftdsn70', 'no_lang_code', 1, 'https://ror.org/02ftdsn70 Taihe Hospital'),
(30500, 'https://ror.org/02b4me685', 'no_lang_code', 1, 'https://ror.org/02b4me685 Tokatsu Hospital'),
(30501, 'https://ror.org/04fc5qm41', 'no_lang_code', 1, 'https://ror.org/04fc5qm41 Toyota Kosei Hospital 豊田厚生病院'),
(30502, 'https://ror.org/032hk6448', 'en', 1, 'https://ror.org/032hk6448 Changshu No.1 People''s Hospital'),
(30503, 'https://ror.org/00qy2eq52', 'en', 1, 'https://ror.org/00qy2eq52 Universities Federation for Animal Welfare'),
(30504, 'https://ror.org/02ykcmr55', 'en', 1, 'https://ror.org/02ykcmr55 Shandong Province Animal Husbandry and Veterinary Bureau'),
(30505, 'https://ror.org/023te5r95', 'en', 1, 'https://ror.org/023te5r95 Fifth Affiliated Hospital of Sun Yat-sen University'),
(30506, 'https://ror.org/0421ba211', 'en', 1, 'https://ror.org/0421ba211 Turku Centre for Biotechnology'),
(30507, 'https://ror.org/04bxn2127', 'en', 1, 'https://ror.org/04bxn2127 Japan Food Research Laboratories 日本食品研究所'),
(30508, 'https://ror.org/01djnt473', 'en', 1, 'https://ror.org/01djnt473 First Affiliated Hospital of Jiamusi University'),
(30509, 'https://ror.org/00yx0s761', 'en', 1, 'https://ror.org/00yx0s761 First Affiliated Hospital of Liaoning Medical University'),
(30510, 'https://ror.org/03zeqmc64', 'en', 1, 'https://ror.org/03zeqmc64 High Energy Materials Research Laboratory उच्च उर्जा पदार्थ अनुसंधान प्रयोगशाला'),
(30511, 'https://ror.org/04sv7km52', 'en', 1, 'https://ror.org/04sv7km52 Tanzania Wildlife Research Institute'),
(30512, 'https://ror.org/00x75mt56', 'en', 1, 'https://ror.org/00x75mt56 Tzu Hui Institute of Technology'),
(30513, 'https://ror.org/04bzg5466', 'en', 1, 'https://ror.org/04bzg5466 University of Chicago Research Bangladesh'),
(30514, 'https://ror.org/02qmhct90', 'en', 1, 'https://ror.org/02qmhct90 The Second Nanning People''s Hospital 南宁市第二人民医院'),
(30515, 'https://ror.org/05pmkqv04', 'en', 1, 'https://ror.org/05pmkqv04 First Hospital of Qinhuangdao'),
(30516, 'https://ror.org/01cqwmh55', 'en', 1, 'https://ror.org/01cqwmh55 First People''s Hospital of Foshan'),
(30517, 'https://ror.org/057wkj006', 'en', 1, 'https://ror.org/057wkj006 Center for Excellence in Basic Sciences मौलिक विज्ञान प्रकर्ष केंद्र'),
(30518, 'https://ror.org/0421p8j22', 'en', 1, 'https://ror.org/0421p8j22 Wuxi Third People''s Hospital'),
(30519, 'https://ror.org/02f8z2f57', 'en', 1, 'https://ror.org/02f8z2f57 First People’s Hospital of Zunyi'),
(30520, 'https://ror.org/011b9vp56', 'en', 1, 'https://ror.org/011b9vp56 Ruian People''s Hospital 瑞安市人民医院'),
(30521, 'https://ror.org/01h439d80', 'en', 1, 'https://ror.org/01h439d80 Third Hospital of Nanchang'),
(30522, 'https://ror.org/0462xwv27', 'fr', 1, 'https://ror.org/0462xwv27 Université Nangui Abrogoua'),
(30523, 'https://ror.org/04kx2vh28', 'en', 1, 'https://ror.org/04kx2vh28 Programa Mundial de Alimentos Programma Alimentare Mondiale Programme Alimentaire Mondial World Food Programme'),
(30524, 'https://ror.org/00h4nzs54', 'en', 1, 'https://ror.org/00h4nzs54 Zhumadian Central Hospital'),
(30525, 'https://ror.org/02skpkw64', 'en', 1, 'https://ror.org/02skpkw64 Shenzhen KangNing Hospital'),
(30526, 'https://ror.org/058qtt435', 'en', 1, 'https://ror.org/058qtt435 United Nations Population Fund'),
(30527, 'https://ror.org/01c9rqr26', 'en', 1, 'https://ror.org/01c9rqr26 VA Tennessee Valley Healthcare System'),
(30528, 'https://ror.org/04595zj73', 'en', 1, 'https://ror.org/04595zj73 Xi’an Children’s Hospital'),
(30529, 'https://ror.org/01y96v851', 'no_lang_code', 1, 'https://ror.org/01y96v851 Viron Therapeutics (Canada)'),
(30530, 'https://ror.org/0056qvz32', 'no_lang_code', 1, 'https://ror.org/0056qvz32 Vision Engineering (Italy)'),
(30531, 'https://ror.org/020299x40', 'en', 1, 'https://ror.org/020299x40 Xian Mental Health Center'),
(30532, 'https://ror.org/02dx2xm20', 'en', 1, 'https://ror.org/02dx2xm20 Xiangyang Central Hospital'),
(30533, 'https://ror.org/017t6fa07', 'en', 1, 'https://ror.org/017t6fa07 Xinyang College of Agriculture and Forestry 信阳农林学院'),
(30534, 'https://ror.org/01kt8dn14', 'en', 1, 'https://ror.org/01kt8dn14 Weihai City Mental Health Center'),
(30535, 'https://ror.org/01a3yyc70', 'en', 1, 'https://ror.org/01a3yyc70 Western Australian Museum'),
(30536, 'https://ror.org/02wdwnk04', 'en', 1, 'https://ror.org/02wdwnk04 British Heart Foundation'),
(30537, 'https://ror.org/03xg85719', 'en', 1, 'https://ror.org/03xg85719 Institute for Advanced Study Wissenschaftskolleg zu Berlin'),
(30538, 'https://ror.org/00gws9676', 'en', 1, 'https://ror.org/00gws9676 Yaoundé General Hospital'),
(30539, 'https://ror.org/05wbpaf14', 'en', 1, 'https://ror.org/05wbpaf14 First Affiliated Hospital of Wannan Medical College'),
(30540, 'https://ror.org/01k1x3b35', 'en', 1, 'https://ror.org/01k1x3b35 Zhuhai People''s Hospital 珠海市人民医院'),
(30541, 'https://ror.org/0514w0t77', 'en', 1, 'https://ror.org/0514w0t77 Yixing Tumor Hospital'),
(30542, 'https://ror.org/055gka453', 'en', 1, 'https://ror.org/055gka453 State Administration of Foreign Experts Affairs'),
(30543, 'https://ror.org/04q6fz931', 'en', 1, 'https://ror.org/04q6fz931 Zoological Park Organization'),
(30544, 'https://ror.org/00znyv691', 'en', 1, 'https://ror.org/00znyv691 Danish National Research Foundation'),
(30545, 'https://ror.org/01gb56c55', 'it', 1, 'https://ror.org/01gb56c55 Cariplo Foundation Fondazione Cariplo'),
(30546, 'https://ror.org/03bt48876', 'no_lang_code', 1, 'https://ror.org/03bt48876 Yantaishan Hospital 烟台山医院'),
(30547, 'https://ror.org/04aqat463', 'en', 1, 'https://ror.org/04aqat463 Zhejiang Provincial Natural Science Foundation 浙江省自然科学基金委员会'),
(30548, 'https://ror.org/00afrj253', 'en', 1, 'https://ror.org/00afrj253 International Telecommunication Union'),
(30549, 'https://ror.org/0005jpy03', 'en', 1, 'https://ror.org/0005jpy03 Israel National Institute for Health Policy Research'),
(30550, 'https://ror.org/04wtq2305', 'en', 1, 'https://ror.org/04wtq2305 China Geological Survey 中国地质调查局水文地质环境地质调查中心'),
(30551, 'https://ror.org/01kcva023', 'en', 1, 'https://ror.org/01kcva023 Ministry of Education 新加坡教育部'),
(30552, 'https://ror.org/01822d048', 'en', 1, 'https://ror.org/01822d048 Norwegian Nurses Organisation'),
(30553, 'https://ror.org/05jc9p859', 'en', 1, 'https://ror.org/05jc9p859 NeuroSurgical Research Foundation'),
(30554, 'https://ror.org/027gw7s27', 'no_lang_code', 1, 'https://ror.org/027gw7s27 Taizhou Municipal Hospital'),
(30555, 'https://ror.org/012mzw131', 'en', 1, 'https://ror.org/012mzw131 Leverhulme Trust'),
(30556, 'https://ror.org/03z9cwa38', 'en', 1, 'https://ror.org/03z9cwa38 Korea Evaluation Institute of Industrial Technology'),
(30557, 'https://ror.org/03bsmfz84', 'en', 1, 'https://ror.org/03bsmfz84 Volkswagen Foundation VolkswagenStiftung'),
(30558, 'https://ror.org/00nc55f03', 'pt', 1, 'https://ror.org/00nc55f03 Fundação de Amparo à Pesquisa do Estado de Minas Gerais'),
(30559, 'https://ror.org/044vr6g03', 'en', 1, 'https://ror.org/044vr6g03 Science and Technology Development Fund'),
(30560, 'https://ror.org/00wqx6897', 'en', 1, 'https://ror.org/00wqx6897 Agence Européenne Chargée de la Sécurité des Réseaux et de l''Information European Union Agency for Network and Information Security Οργανισμός της Ευρωπαϊκής Ένωσης για την Ασφάλεια Δικτύων και Πληροφοριών'),
(30561, 'https://ror.org/04x3cxs03', 'en', 1, 'https://ror.org/04x3cxs03 National Medical Research Council'),
(30562, 'https://ror.org/01pqy3846', 'en', 1, 'https://ror.org/01pqy3846 Larry Ellison Foundation'),
(30563, 'https://ror.org/051m8tg66', 'en', 1, 'https://ror.org/051m8tg66 Centre de Traduction des Organes de l''Union Européenne Translation Centre for the Bodies of the European Union Übersetzungszentrum für die Einrichtungen der Europäischen Union'),
(30564, 'https://ror.org/00tntzp09', 'en', 1, 'https://ror.org/00tntzp09 German-Israeli Foundation for Scientific Research and Development'),
(30565, 'https://ror.org/03f2xnj73', 'es', 1, 'https://ror.org/03f2xnj73 Consejo de Ciencia y Tecnología del Estado de Tabasco'),
(30566, 'https://ror.org/037nx0e70', 'en', 1, 'https://ror.org/037nx0e70 Slovak Research and Development Agency'),
(30567, 'https://ror.org/0003xa228', 'en', 1, 'https://ror.org/0003xa228 Cancer Prevention and Research Institute of Texas'),
(30568, 'https://ror.org/00jp8d455', 'en', 1, 'https://ror.org/00jp8d455 Research Corporation for Science Advancement'),
(30569, 'https://ror.org/03jc1ps31', 'no_lang_code', 1, 'https://ror.org/03jc1ps31 Exide Technologies (United States)'),
(30570, 'https://ror.org/04w6kn183', 'fr', 1, 'https://ror.org/04w6kn183 Fondation pour la Recherche Médicale'),
(30571, 'https://ror.org/00j8z2m73', 'en', 1, 'https://ror.org/00j8z2m73 United States-Israel Binational Science Foundation'),
(30572, 'https://ror.org/012kf4317', 'en', 1, 'https://ror.org/012kf4317 Alexander von Humboldt Foundation Alexander von Humboldt-Stiftung'),
(30573, 'https://ror.org/01c3dm486', 'no_lang_code', 1, 'https://ror.org/01c3dm486 MetLife (United States)'),
(30574, 'https://ror.org/05eg49r29', 'en', 1, 'https://ror.org/05eg49r29 Bulgarian Science Fund'),
(30575, 'https://ror.org/00kxash64', 'en', 1, 'https://ror.org/00kxash64 Belarusian Republican Foundation for Fundamental Research'),
(30576, 'https://ror.org/00zbf3d93', 'en', 1, 'https://ror.org/00zbf3d93 Health Research Council of New Zealand'),
(30577, 'https://ror.org/026v53e29', 'en', 1, 'https://ror.org/026v53e29 National IT industry Promotion Agency 정보통신산업진흥원'),
(30578, 'https://ror.org/039d9wr27', 'en', 1, 'https://ror.org/039d9wr27 National Heart Foundation of Australia'),
(30579, 'https://ror.org/04wyg6495', 'en', 1, 'https://ror.org/04wyg6495 Australian Centre for International Agricultural Research'),
(30580, 'https://ror.org/01gd7b947', 'en', 1, 'https://ror.org/01gd7b947 Damon Runyon Cancer Research Foundation'),
(30581, 'https://ror.org/019p8h045', 'en', 1, 'https://ror.org/019p8h045 Camille and Henry Dreyfus Foundation'),
(30582, 'https://ror.org/012y9zp98', 'en', 1, 'https://ror.org/012y9zp98 Commission for Technology and Innovation Kommission für Technologie und Innovation'),
(30583, 'https://ror.org/012s3r374', 'en', 1, 'https://ror.org/012s3r374 Ministry of Science, Technology and Innovation'),
(30584, 'https://ror.org/04drjs621', 'en', 1, 'https://ror.org/04drjs621 Research to Prevent Blindness'),
(30585, 'https://ror.org/00y6khe77', 'en', 1, 'https://ror.org/00y6khe77 Ministerstvo zdravotnictví České republiky Ministry of Health'),
(30586, 'https://ror.org/04bpasa69', 'en', 1, 'https://ror.org/04bpasa69 Appalachian Regional Commission'),
(30587, 'https://ror.org/00ra24d41', 'en', 1, 'https://ror.org/00ra24d41 National Science and Technology Entrepreneurship Development Board'),
(30588, 'https://ror.org/02wv5fj21', 'en', 1, 'https://ror.org/02wv5fj21 Children''s Cancer Research Fund'),
(30589, 'https://ror.org/02xey9a22', 'en', 1, 'https://ror.org/02xey9a22 Fogarty International Center'),
(30590, 'https://ror.org/05exfab56', 'en', 1, 'https://ror.org/05exfab56 Neurosciences Research Foundation'),
(30591, 'https://ror.org/04n65rp89', 'en', 1, 'https://ror.org/04n65rp89 Doris Duke Charitable Foundation'),
(30592, 'https://ror.org/017aem598', 'en', 1, 'https://ror.org/017aem598 Centre Franco-Indien pour la Promotion de la Recherche Avancée Indo-French Centre for the Promotion of Advanced Research'),
(30593, 'https://ror.org/0368jnd28', 'en', 1, 'https://ror.org/0368jnd28 Dutch Cancer Society KWF Kankerbestrijding'),
(30594, 'https://ror.org/05w7kkt66', 'en', 1, 'https://ror.org/05w7kkt66 American Roentgen Ray Society'),
(30595, 'https://ror.org/03z2py885', 'en', 1, 'https://ror.org/03z2py885 National Eye Research Centre'),
(30596, 'https://ror.org/0028hgc48', 'en', 1, 'https://ror.org/0028hgc48 Utah Space Grant Consortium'),
(30597, 'https://ror.org/05pg13f04', 'en', 1, 'https://ror.org/05pg13f04 Morris Animal Foundation'),
(30598, 'https://ror.org/04d8cf622', 'en', 1, 'https://ror.org/04d8cf622 International Partnership for the Hydrogen and Fuel Cell in the Economy'),
(30599, 'https://ror.org/050rgn017', 'en', 1, 'https://ror.org/050rgn017 Diabetes UK'),
(30600, 'https://ror.org/01kpjmx04', 'en', 1, 'https://ror.org/01kpjmx04 Carlsberg Foundation'),
(30601, 'https://ror.org/052261q33', 'en', 1, 'https://ror.org/052261q33 Swedish Heart-Lung Foundation'),
(30602, 'https://ror.org/00xcd7y72', 'en', 1, 'https://ror.org/00xcd7y72 All India Council for Technical Education'),
(30603, 'https://ror.org/02vt3b359', 'en', 1, 'https://ror.org/02vt3b359 Government of Jilin Province'),
(30604, 'https://ror.org/038j4hz26', 'en', 1, 'https://ror.org/038j4hz26 Partnership for Advanced Computing in Europe'),
(30605, 'https://ror.org/035rrps97', 'en', 1, 'https://ror.org/035rrps97 National Research Council'),
(30606, 'https://ror.org/04rn1rm44', 'en', 1, 'https://ror.org/04rn1rm44 Education Department of Heilongjiang Province'),
(30607, 'https://ror.org/027xav248', 'en', 1, 'https://ror.org/027xav248 Finnish Cultural Foundation'),
(30608, 'https://ror.org/014pyq554', 'en', 1, 'https://ror.org/014pyq554 Australian Historical Association'),
(30609, 'https://ror.org/01cvsyf94', 'no_lang_code', 1, 'https://ror.org/01cvsyf94 Labex (Sweden)'),
(30610, 'https://ror.org/00dxczh48', 'en', 1, 'https://ror.org/00dxczh48 John D. and Catherine T. MacArthur Foundation'),
(30611, 'https://ror.org/02jpa9x52', 'en', 1, 'https://ror.org/02jpa9x52 China Medical Board'),
(30612, 'https://ror.org/054a0at43', 'en', 1, 'https://ror.org/054a0at43 Michigan Department of Licensing and Regulatory Affairs'),
(30613, 'https://ror.org/0120ky124', 'en', 1, 'https://ror.org/0120ky124 National Breast Cancer Foundation'),
(30614, 'https://ror.org/00dzbg839', 'en', 1, 'https://ror.org/00dzbg839 Royal Astronomical Society'),
(30615, 'https://ror.org/0561xc723', 'en', 1, 'https://ror.org/0561xc723 Swedish Foundation for International Cooperation in Research and Higher Education'),
(30616, 'https://ror.org/020k6v967', 'nl', 1, 'https://ror.org/020k6v967 Nierstichting'),
(30617, 'https://ror.org/0429te836', 'en', 1, 'https://ror.org/0429te836 Ministry of Education'),
(30618, 'https://ror.org/0526snb40', 'en', 1, 'https://ror.org/0526snb40 Royal Academy of Engineering'),
(30619, 'https://ror.org/00v3jqn19', 'en', 1, 'https://ror.org/00v3jqn19 Agence mondiale antidopage World Anti-Doping Agency'),
(30620, 'https://ror.org/0210rze73', 'en', 1, 'https://ror.org/0210rze73 Stavros Niarchos Foundation'),
(30621, 'https://ror.org/01njdr168', 'en', 1, 'https://ror.org/01njdr168 Finnish Academy of Science and Letters');
INSERT INTO `rors` VALUES
(30622, 'https://ror.org/00rdpwj76', 'en', 1, 'https://ror.org/00rdpwj76 Spencer Foundation'),
(30623, 'https://ror.org/03epg4e71', 'en', 1, 'https://ror.org/03epg4e71 Esperantic Studies Foundation'),
(30624, 'https://ror.org/00zc1hf95', 'en', 1, 'https://ror.org/00zc1hf95 National Sleep Foundation'),
(30625, 'https://ror.org/02kna3n95', 'en', 1, 'https://ror.org/02kna3n95 Prostate Cancer Foundation of Australia'),
(30626, 'https://ror.org/03zcxha54', 'de', 1, 'https://ror.org/03zcxha54 Else Kröner-Fresenius-Stiftung'),
(30627, 'https://ror.org/02swwpp84', 'en', 1, 'https://ror.org/02swwpp84 Juvenile Diabetes Research Foundation'),
(30628, 'https://ror.org/01fn7me06', 'en', 1, 'https://ror.org/01fn7me06 Ruotsin kansainvälisen kehitysyhteistyön keskusvirasto Swedish International Development Cooperation Agency'),
(30629, 'https://ror.org/00emnts94', 'en', 1, 'https://ror.org/00emnts94 Bavarian Research Foundation Bayerische Forschungsstiftung'),
(30630, 'https://ror.org/04e98j339', 'en', 1, 'https://ror.org/04e98j339 United States-Israel Binational Agricultural Research and Development Fund'),
(30631, 'https://ror.org/008qp6e21', 'en', 1, 'https://ror.org/008qp6e21 Rehabilitation Research and Development Service'),
(30632, 'https://ror.org/01vb6q136', 'en', 1, 'https://ror.org/01vb6q136 Netherlands Space Office'),
(30633, 'https://ror.org/00f3sc705', 'en', 1, 'https://ror.org/00f3sc705 Fritz Thyssen Foundation Fritz Thyssen Stiftung'),
(30634, 'https://ror.org/04a3gjw65', 'en', 1, 'https://ror.org/04a3gjw65 Ministry of Education শিক্ষা মন্ত্রণালয়'),
(30635, 'https://ror.org/02417p338', 'en', 1, 'https://ror.org/02417p338 Parkinson''s UK'),
(30636, 'https://ror.org/01npwtv09', 'en', 1, 'https://ror.org/01npwtv09 Prostate Cancer Foundation'),
(30637, 'https://ror.org/03xr9q522', 'en', 1, 'https://ror.org/03xr9q522 Kuwait Foundation for the Advancement of Sciences'),
(30638, 'https://ror.org/05pmq5w14', 'de', 1, 'https://ror.org/05pmq5w14 Deutsche Bundesstiftung Umwelt'),
(30639, 'https://ror.org/04hd1y677', 'en', 1, 'https://ror.org/04hd1y677 Hewlett Foundation'),
(30640, 'https://ror.org/03cvfxv40', 'en', 1, 'https://ror.org/03cvfxv40 BrightFocus Foundation'),
(30641, 'https://ror.org/04v83ky93', 'en', 1, 'https://ror.org/04v83ky93 National Foundation for Cancer Research'),
(30642, 'https://ror.org/03z7xev21', 'en', 1, 'https://ror.org/03z7xev21 Asthma UK'),
(30643, 'https://ror.org/00agy5a68', 'it', 1, 'https://ror.org/00agy5a68 Fondazione Cassa Risparmio Perugia'),
(30644, 'https://ror.org/05fb9ak14', 'en', 1, 'https://ror.org/05fb9ak14 Robert Schalkenbach Foundation'),
(30645, 'https://ror.org/019c00g57', 'en', 1, 'https://ror.org/019c00g57 Academy of Television Arts and Sciences'),
(30646, 'https://ror.org/02nqj0b62', 'en', 1, 'https://ror.org/02nqj0b62 Economic Development Board'),
(30647, 'https://ror.org/0302v9k70', 'en', 1, 'https://ror.org/0302v9k70 Connecticut State Emergency Response Commission'),
(30648, 'https://ror.org/0045x2741', 'en', 1, 'https://ror.org/0045x2741 Agency for Toxic Substances and Disease Registry'),
(30649, 'https://ror.org/02e1fjy29', 'no_lang_code', 1, 'https://ror.org/02e1fjy29 AFA Insurance (Sweden)'),
(30650, 'https://ror.org/051n9kx09', 'en', 1, 'https://ror.org/051n9kx09 National Emergency Management Agency'),
(30651, 'https://ror.org/037nbwt68', 'en', 1, 'https://ror.org/037nbwt68 Fulbright Commission'),
(30652, 'https://ror.org/01hj26z68', 'en', 1, 'https://ror.org/01hj26z68 Richmond County Savings Foundation'),
(30653, 'https://ror.org/01r1e1h27', 'en', 1, 'https://ror.org/01r1e1h27 London Mathematical Society'),
(30654, 'https://ror.org/00r6akf90', 'en', 1, 'https://ror.org/00r6akf90 Agencia Española de Cooperación Internacional para el Desarrollo Spanish Agency for International Development Cooperation'),
(30655, 'https://ror.org/002sgqx17', 'en', 1, 'https://ror.org/002sgqx17 Western Economic Diversification Canada'),
(30656, 'https://ror.org/01gycsq30', 'en', 1, 'https://ror.org/01gycsq30 Epilepsy Research UK'),
(30657, 'https://ror.org/05dbx6743', 'en', 1, 'https://ror.org/05dbx6743 Department of Veterans Affairs'),
(30658, 'https://ror.org/01wcqa315', 'en', 1, 'https://ror.org/01wcqa315 Action Medical Research'),
(30659, 'https://ror.org/018kdpd27', 'en', 1, 'https://ror.org/018kdpd27 Leakey Foundation'),
(30660, 'https://ror.org/01zcf4n33', 'en', 1, 'https://ror.org/01zcf4n33 American Foundation for Suicide Prevention'),
(30661, 'https://ror.org/0290hax27', 'en', 1, 'https://ror.org/0290hax27 Gatsby Charitable Foundation'),
(30662, 'https://ror.org/04j68sw28', 'en', 1, 'https://ror.org/04j68sw28 Heart Research UK'),
(30663, 'https://ror.org/02h43gk75', 'en', 1, 'https://ror.org/02h43gk75 Israel Cancer Research Fund'),
(30664, 'https://ror.org/022t7q367', 'en', 1, 'https://ror.org/022t7q367 Indiana Clinical and Translational Sciences Institute'),
(30665, 'https://ror.org/03wrep505', 'it', 1, 'https://ror.org/03wrep505 Ente Cassa di Risparmio di Firenze'),
(30666, 'https://ror.org/00d1b1c41', 'it', 1, 'https://ror.org/00d1b1c41 Compagnia di San Paolo'),
(30667, 'https://ror.org/02a4k9d45', 'en', 1, 'https://ror.org/02a4k9d45 Blooms Syndrome Foundation'),
(30668, 'https://ror.org/02zxqxw53', 'en', 1, 'https://ror.org/02zxqxw53 AXA Research Fund'),
(30669, 'https://ror.org/00ybhm522', 'en', 1, 'https://ror.org/00ybhm522 Flight Attendant Medical Research Institute'),
(30670, 'https://ror.org/03a6gjz18', 'en', 1, 'https://ror.org/03a6gjz18 Society of Hospital Pharmacists of Australia'),
(30671, 'https://ror.org/01y4ah893', 'en', 1, 'https://ror.org/01y4ah893 Michigan Economic Development Corporation'),
(30672, 'https://ror.org/02g1cyr24', 'no_lang_code', 1, 'https://ror.org/02g1cyr24 Moody''s Corporation (United States)'),
(30673, 'https://ror.org/03zkdcr67', 'en', 1, 'https://ror.org/03zkdcr67 Academy of American Poets'),
(30674, 'https://ror.org/05qvpbw57', 'en', 1, 'https://ror.org/05qvpbw57 Danida Fellowship Centre'),
(30675, 'https://ror.org/046eh8t80', 'en', 1, 'https://ror.org/046eh8t80 CHDI Foundation'),
(30676, 'https://ror.org/02zkxjz73', 'fr', 1, 'https://ror.org/02zkxjz73 Fondation de France'),
(30677, 'https://ror.org/0562vg232', 'en', 1, 'https://ror.org/0562vg232 Ernest C. Manning Awards Foundation La Fondation des Prix Ernest C. Manning'),
(30678, 'https://ror.org/047egay20', 'en', 1, 'https://ror.org/047egay20 Maj and Tor Nessling Foundation'),
(30679, 'https://ror.org/037dz3r63', 'en', 1, 'https://ror.org/037dz3r63 UK-India Education and Research Initiative'),
(30680, 'https://ror.org/049j2m240', 'en', 1, 'https://ror.org/049j2m240 Department of Health of Guangdong Province'),
(30681, 'https://ror.org/03yqfnv74', 'en', 1, 'https://ror.org/03yqfnv74 Cure Cancer Australia'),
(30682, 'https://ror.org/02r7nkw81', 'pt', 1, 'https://ror.org/02r7nkw81 Araucaria Foundation Fundação Araucária'),
(30683, 'https://ror.org/031wq1t38', 'en', 1, 'https://ror.org/031wq1t38 Ministry of Transport'),
(30684, 'https://ror.org/05qk3ge34', 'en', 1, 'https://ror.org/05qk3ge34 Nuclear Safety And Security Commission'),
(30685, 'https://ror.org/05avmtm72', 'en', 1, 'https://ror.org/05avmtm72 Arnold and Mabel Beckman Foundation'),
(30686, 'https://ror.org/023wx0t90', 'en', 1, 'https://ror.org/023wx0t90 Ministry of Environment, Forests and Climate Change'),
(30687, 'https://ror.org/0489qz649', 'fr', 1, 'https://ror.org/0489qz649 Fondation ARC pour la Recherche sur le Cancer'),
(30688, 'https://ror.org/01ma57r88', 'en', 1, 'https://ror.org/01ma57r88 Smith Richardson Foundation'),
(30689, 'https://ror.org/05257z229', 'en', 1, 'https://ror.org/05257z229 Human Growth Foundation'),
(30690, 'https://ror.org/05mcyt529', 'en', 1, 'https://ror.org/05mcyt529 Korea Federation of Science and Technology Societies 한국과학기술단체총연합회'),
(30691, 'https://ror.org/00w8cq239', 'pt', 1, 'https://ror.org/00w8cq239 Foundation for Research Support of Goiás State Fundação de Apoio a Pesquisa do Estado de Goiás'),
(30692, 'https://ror.org/02gc7qc02', 'en', 1, 'https://ror.org/02gc7qc02 World Cancer Research Fund UK'),
(30693, 'https://ror.org/043bpky34', 'en', 1, 'https://ror.org/043bpky34 Nanjing University of Posts and Telecommunications 南京邮电大学'),
(30694, 'https://ror.org/02hcxaq60', 'en', 1, 'https://ror.org/02hcxaq60 Ministry of Education and Science'),
(30695, 'https://ror.org/04pkb2v55', 'en', 1, 'https://ror.org/04pkb2v55 Esmée Fairbairn Foundation'),
(30696, 'https://ror.org/00n20jq68', 'en', 1, 'https://ror.org/00n20jq68 British Ecological Society'),
(30697, 'https://ror.org/00zwq0r67', 'en', 1, 'https://ror.org/00zwq0r67 Texas Commission on Environmental Quality'),
(30698, 'https://ror.org/0001ew531', 'en', 1, 'https://ror.org/0001ew531 Adelson Foundation'),
(30699, 'https://ror.org/05n4wp011', 'en', 1, 'https://ror.org/05n4wp011 Society of Abdominal Radiology'),
(30700, 'https://ror.org/02f3xk561', 'en', 1, 'https://ror.org/02f3xk561 Cancer Research Institute'),
(30701, 'https://ror.org/04jpp6j90', 'en', 1, 'https://ror.org/04jpp6j90 Rothamsted International'),
(30702, 'https://ror.org/02mv9sr91', 'en', 1, 'https://ror.org/02mv9sr91 Academy of Motion Picture Arts and Sciences'),
(30703, 'https://ror.org/01etdvs72', 'en', 1, 'https://ror.org/01etdvs72 Wellbeing of Women'),
(30704, 'https://ror.org/03atssj74', 'en', 1, 'https://ror.org/03atssj74 Eli and Edythe Broad Foundation'),
(30705, 'https://ror.org/02ff5rr83', 'en', 1, 'https://ror.org/02ff5rr83 National Society for Histotechnology'),
(30706, 'https://ror.org/011x6n313', 'en', 1, 'https://ror.org/011x6n313 Leona M. and Harry B. Helmsley Charitable Trust'),
(30707, 'https://ror.org/02kx7se86', 'en', 1, 'https://ror.org/02kx7se86 Kidney Research UK'),
(30708, 'https://ror.org/02p7svq74', 'en', 1, 'https://ror.org/02p7svq74 Guy''s and St Thomas'' Charity'),
(30709, 'https://ror.org/0015x1k58', 'en', 1, 'https://ror.org/0015x1k58 National Center for Injury Prevention and Control'),
(30710, 'https://ror.org/04b7xxn32', 'en', 1, 'https://ror.org/04b7xxn32 United States Social Security Administration'),
(30711, 'https://ror.org/04cmszv87', 'en', 1, 'https://ror.org/04cmszv87 Wallace H. Coulter Foundation'),
(30712, 'https://ror.org/03p641z80', 'en', 1, 'https://ror.org/03p641z80 Prostate Cancer Canada'),
(30713, 'https://ror.org/04e3zg361', 'en', 1, 'https://ror.org/04e3zg361 Rosetrees Trust'),
(30714, 'https://ror.org/00xr9yb90', 'en', 1, 'https://ror.org/00xr9yb90 Great Lakes Fishery Trust'),
(30715, 'https://ror.org/05rbdsb19', 'en', 1, 'https://ror.org/05rbdsb19 Water Research Foundation'),
(30716, 'https://ror.org/03benss35', 'en', 1, 'https://ror.org/03benss35 Alzheimer Society of Canada Société Alzheimer du Canada'),
(30717, 'https://ror.org/03gne5057', 'en', 1, 'https://ror.org/03gne5057 Genome British Columbia'),
(30718, 'https://ror.org/03v7a9n80', 'en', 1, 'https://ror.org/03v7a9n80 CS Fund'),
(30719, 'https://ror.org/02h291k47', 'en', 1, 'https://ror.org/02h291k47 Horticulture Innovation Australia'),
(30720, 'https://ror.org/02t1yaf39', 'en', 1, 'https://ror.org/02t1yaf39 Fetzer Institute'),
(30721, 'https://ror.org/05e4d7a97', 'en', 1, 'https://ror.org/05e4d7a97 Queensland Emergency Medicine Research Foundation'),
(30722, 'https://ror.org/058bgdt55', 'no_lang_code', 1, 'https://ror.org/058bgdt55 Cotton (United States)'),
(30723, 'https://ror.org/043fwdk81', 'en', 1, 'https://ror.org/043fwdk81 Multiple Sclerosis Society'),
(30724, 'https://ror.org/04enz2k98', 'en', 1, 'https://ror.org/04enz2k98 Chengdu Normal University'),
(30725, 'https://ror.org/02z2a9w02', 'en', 1, 'https://ror.org/02z2a9w02 Horserace Betting Levy Board'),
(30726, 'https://ror.org/0115hrs73', 'en', 1, 'https://ror.org/0115hrs73 Gulf of Mexico Research Initiative'),
(30727, 'https://ror.org/015x8jm48', 'en', 1, 'https://ror.org/015x8jm48 Ministry of Housing and Urban-Rural Development 中华人民共和国住房和城乡建设部'),
(30728, 'https://ror.org/05pgnn319', 'en', 1, 'https://ror.org/05pgnn319 Cambridge Healthtech Institute'),
(30729, 'https://ror.org/03nt1ca89', 'en', 1, 'https://ror.org/03nt1ca89 Maritime and Port Authority of Singapore'),
(30730, 'https://ror.org/03844ds60', 'en', 1, 'https://ror.org/03844ds60 Irish Cancer Society'),
(30731, 'https://ror.org/00dkye506', 'de', 1, 'https://ror.org/00dkye506 Boehringer Ingelheim Fonds Stiftung für Medizinische Grundlagenforschung'),
(30732, 'https://ror.org/05bqzfg94', 'no', 1, 'https://ror.org/05bqzfg94 NordForsk'),
(30733, 'https://ror.org/041nhp446', 'en', 1, 'https://ror.org/041nhp446 Women''s Fund for Health Education and Research'),
(30734, 'https://ror.org/01fncf688', 'es', 1, 'https://ror.org/01fncf688 Institute of Science and Technology of the Federal District Instituto de Ciencia y Tecnologia del Distrito Federal'),
(30735, 'https://ror.org/03tcppy59', 'en', 1, 'https://ror.org/03tcppy59 The Research Council'),
(30736, 'https://ror.org/04ecck436', 'en', 1, 'https://ror.org/04ecck436 Public Utilities Board'),
(30737, 'https://ror.org/05ev3vr27', 'en', 1, 'https://ror.org/05ev3vr27 Quanzhou Institute of Equipment Manufacturing Haixi Institute 中国科学院海西研究院泉州装备制造研究所'),
(30738, 'https://ror.org/026d6ma13', 'pt', 1, 'https://ror.org/026d6ma13 Fundação de Amparo à Pesquisa do Estado do Amazonas'),
(30739, 'https://ror.org/00ssgrj25', 'en', 1, 'https://ror.org/00ssgrj25 Amazon Research Foundation Fundação Amazônia Paraense de Amparo à Pesquisa'),
(30740, 'https://ror.org/02gp85x20', 'en', 1, 'https://ror.org/02gp85x20 Carnegie Corporation of New York'),
(30741, 'https://ror.org/00gxct719', 'es', 1, 'https://ror.org/00gxct719 Asociación Española Contra el Cáncer Spanish Association Against Cancer'),
(30742, 'https://ror.org/02jesmk44', 'en', 1, 'https://ror.org/02jesmk44 American Foundation for AIDS Research'),
(30743, 'https://ror.org/03q4zw938', 'en', 1, 'https://ror.org/03q4zw938 Institute of Current World Affairs'),
(30744, 'https://ror.org/006ss0h52', 'en', 1, 'https://ror.org/006ss0h52 Oak Foundation'),
(30745, 'https://ror.org/04cwxh229', 'en', 1, 'https://ror.org/04cwxh229 Nova Scotia Department of Energy'),
(30746, 'https://ror.org/001yrmh12', 'en', 1, 'https://ror.org/001yrmh12 Defense Logistics Agency'),
(30747, 'https://ror.org/04q5n7269', 'en', 1, 'https://ror.org/04q5n7269 Carolina Institute for NanoMedicine'),
(30748, 'https://ror.org/00kbbk236', 'en', 1, 'https://ror.org/00kbbk236 V Foundation for Cancer Research'),
(30749, 'https://ror.org/034ezwg26', 'en', 1, 'https://ror.org/034ezwg26 National Chung Shan Institute of Science and Technology'),
(30750, 'https://ror.org/0172fj584', 'es', 1, 'https://ror.org/0172fj584 Canary Islands Government Gobierno de Canarias'),
(30751, 'https://ror.org/02e2erp81', 'en', 1, 'https://ror.org/02e2erp81 Grayson-Jockey Club Research Foundation'),
(30752, 'https://ror.org/01xpmbc27', 'en', 1, 'https://ror.org/01xpmbc27 Thomson Reuters Foundation'),
(30753, 'https://ror.org/02axhzy41', 'en', 1, 'https://ror.org/02axhzy41 American Society for Laser Medicine and Surgery'),
(30754, 'https://ror.org/02htdjb57', 'no_lang_code', 1, 'https://ror.org/02htdjb57 Bial (Portugal)'),
(30755, 'https://ror.org/005rhrm66', 'en', 1, 'https://ror.org/005rhrm66 Australian Renewable Energy Agency'),
(30756, 'https://ror.org/03yhprz62', 'en', 1, 'https://ror.org/03yhprz62 John S. Dunn Foundation'),
(30757, 'https://ror.org/01pj5nn22', 'en', 1, 'https://ror.org/01pj5nn22 Stanley Medical Research Institute'),
(30758, 'https://ror.org/010mtd283', 'en', 1, 'https://ror.org/010mtd283 Elizabeth R. Griffin Research Foundation'),
(30759, 'https://ror.org/03ak9vt35', 'en', 1, 'https://ror.org/03ak9vt35 Gemeinnützige Hertie-Stiftung Hertie Foundation'),
(30760, 'https://ror.org/03yvcwz92', 'no_lang_code', 1, 'https://ror.org/03yvcwz92 Suzuken (Japan)'),
(30761, 'https://ror.org/00rgzpv08', 'en', 1, 'https://ror.org/00rgzpv08 Fujian Provincial Department of Science and Technology'),
(30762, 'https://ror.org/02cmxdd33', 'en', 1, 'https://ror.org/02cmxdd33 Kate''s Foundation'),
(30763, 'https://ror.org/05nzwyq50', 'en', 1, 'https://ror.org/05nzwyq50 JPB Foundation'),
(30764, 'https://ror.org/007pgtp80', 'pt', 1, 'https://ror.org/007pgtp80 Fundação Cearense de Apoio ao Desenvolvimento Científico e Tecnológico'),
(30765, 'https://ror.org/01wxdd722', 'en', 1, 'https://ror.org/01wxdd722 Deutsche Krebshilfe German Cancer Aid'),
(30766, 'https://ror.org/04p0je704', 'en', 1, 'https://ror.org/04p0je704 Korean Cancer Association'),
(30767, 'https://ror.org/004qxz190', 'en', 1, 'https://ror.org/004qxz190 Fondation ontarienne de neurotraumatologie Ontario Neurotrauma Foundation'),
(30768, 'https://ror.org/03xpj4h50', 'no_lang_code', 1, 'https://ror.org/03xpj4h50 Bioland (South Korea)'),
(30769, 'https://ror.org/00dpq7q77', 'en', 1, 'https://ror.org/00dpq7q77 Alcohol Research UK'),
(30770, 'https://ror.org/00cjrc276', 'fr', 1, 'https://ror.org/00cjrc276 Mitacs'),
(30771, 'https://ror.org/017cs1c33', 'en', 1, 'https://ror.org/017cs1c33 Chiang Ching-kuo Foundation'),
(30772, 'https://ror.org/04t48sm91', 'en', 1, 'https://ror.org/04t48sm91 Bundesamt für Umwelt Federal Office for the Environment'),
(30773, 'https://ror.org/03xqpdg50', 'da', 1, 'https://ror.org/03xqpdg50 Danish Rheumatism Association Gigtforeningen'),
(30774, 'https://ror.org/01qmxzb47', 'en', 1, 'https://ror.org/01qmxzb47 Top Institute Pharma'),
(30775, 'https://ror.org/02h7g2017', 'en', 1, 'https://ror.org/02h7g2017 British Skin Foundation'),
(30776, 'https://ror.org/00byz6s18', 'fr', 1, 'https://ror.org/00byz6s18 Geneva League Against Cancer Ligue Genevoise Contre le Cancer'),
(30777, 'https://ror.org/03xsjat94', 'en', 1, 'https://ror.org/03xsjat94 Natural Resources Data Management System'),
(30778, 'https://ror.org/027754r66', 'en', 1, 'https://ror.org/027754r66 Novo Nordisk UK Research Foundation'),
(30779, 'https://ror.org/05qnwyb92', 'en', 1, 'https://ror.org/05qnwyb92 British Lung Foundation'),
(30780, 'https://ror.org/048xjjh50', 'en', 1, 'https://ror.org/048xjjh50 Ministre du développement des ressources humaines Ministry of Human Resource Development मानव संसाधन विकास मंत्रालय மனிதவள மேம்பாட்டு அமைச்சகம்'),
(30781, 'https://ror.org/03133qe46', 'en', 1, 'https://ror.org/03133qe46 Fight for Sight'),
(30782, 'https://ror.org/02snbhr24', 'en', 1, 'https://ror.org/02snbhr24 Grand Challenges Canada'),
(30783, 'https://ror.org/02caat392', 'en', 1, 'https://ror.org/02caat392 Multiple Sclerosis Research Australia'),
(30784, 'https://ror.org/031756c24', 'es', 1, 'https://ror.org/031756c24 Consejo Estatal de Ciencia, Tecnología e Innovación de Chihuahua'),
(30785, 'https://ror.org/04jsh2530', 'en', 1, 'https://ror.org/04jsh2530 Andrew W. Mellon Foundation'),
(30786, 'https://ror.org/00qnfvz68', 'en', 1, 'https://ror.org/00qnfvz68 Open Society Foundations'),
(30787, 'https://ror.org/03yxd7304', 'en', 1, 'https://ror.org/03yxd7304 Israel Cancer Association'),
(30788, 'https://ror.org/02seeba69', 'en', 1, 'https://ror.org/02seeba69 Walther Cancer Foundation'),
(30789, 'https://ror.org/01dtadb22', 'en', 1, 'https://ror.org/01dtadb22 Christensen Fund'),
(30790, 'https://ror.org/05k0v5t92', 'de', 1, 'https://ror.org/05k0v5t92 Forschungskuratorium Textil'),
(30791, 'https://ror.org/056pabz88', 'en', 1, 'https://ror.org/056pabz88 Nathan Cummings Foundation'),
(30792, 'https://ror.org/0592vaq06', 'en', 1, 'https://ror.org/0592vaq06 Channel 7 Children''s Research Foundation'),
(30793, 'https://ror.org/048nn3q69', 'fr', 1, 'https://ror.org/048nn3q69 France AgriMer Établissement National des Produits de l''Agriculture et de la Mer'),
(30794, 'https://ror.org/03x0rzg54', 'no_lang_code', 1, 'https://ror.org/03x0rzg54 Shenhua Group (China)'),
(30795, 'https://ror.org/011rzkg17', 'en', 1, 'https://ror.org/011rzkg17 Endocrine Society of Australia'),
(30796, 'https://ror.org/00mkdan60', 'no_lang_code', 1, 'https://ror.org/00mkdan60 Volvo (United States)'),
(30797, 'https://ror.org/05mwvz623', 'en', 1, 'https://ror.org/05mwvz623 Beyondblue'),
(30798, 'https://ror.org/0202czp82', 'no_lang_code', 1, 'https://ror.org/0202czp82 Connecticut Innovations (United States)'),
(30799, 'https://ror.org/03cgjk195', 'en', 1, 'https://ror.org/03cgjk195 Roche Organ Transplantation Research Foundation'),
(30800, 'https://ror.org/01pd7my79', 'en', 1, 'https://ror.org/01pd7my79 Krebsliga Schweiz Ligue Suisse Contre le Cancer Swiss Cancer League'),
(30801, 'https://ror.org/05j70cm37', 'en', 1, 'https://ror.org/05j70cm37 Jewish Community Foundation of Greater MetroWest NJ'),
(30802, 'https://ror.org/02d540t02', 'en', 1, 'https://ror.org/02d540t02 Poliomyelitis Research Foundation'),
(30803, 'https://ror.org/02b1qyv69', 'en', 1, 'https://ror.org/02b1qyv69 Devlet Planlama Teşkilatı State Planning Organization'),
(30804, 'https://ror.org/048gf2b30', 'de', 1, 'https://ror.org/048gf2b30 AllerGen'),
(30805, 'https://ror.org/029xgej46', 'en', 1, 'https://ror.org/029xgej46 Orthopaedic Research and Education Foundation'),
(30806, 'https://ror.org/05g0xkn45', 'en', 1, 'https://ror.org/05g0xkn45 Polycystic Kidney Disease Foundation'),
(30807, 'https://ror.org/032nbqb04', 'en', 1, 'https://ror.org/032nbqb04 Illinois Department of Commerce and Economic Opportunity'),
(30808, 'https://ror.org/05ewr7t48', 'en', 1, 'https://ror.org/05ewr7t48 Cure Alzheimer’s Fund'),
(30809, 'https://ror.org/04xy3z086', 'en', 1, 'https://ror.org/04xy3z086 Dermatology Foundation'),
(30810, 'https://ror.org/02ebg5q27', 'en', 1, 'https://ror.org/02ebg5q27 Glenn Foundation for Medical Research'),
(30811, 'https://ror.org/04g20q935', 'en', 1, 'https://ror.org/04g20q935 Scleroderma Foundation'),
(30812, 'https://ror.org/03kcmdr33', 'en', 1, 'https://ror.org/03kcmdr33 Susan G. Komen Wyoming'),
(30813, 'https://ror.org/02rvm6b03', 'en', 1, 'https://ror.org/02rvm6b03 Defence Science and Technology Agency'),
(30814, 'https://ror.org/021asz590', 'en', 1, 'https://ror.org/021asz590 National Center on Birth Defects and Developmental Disabilities'),
(30815, 'https://ror.org/01722g748', 'en', 1, 'https://ror.org/01722g748 Aircast Foundation'),
(30816, 'https://ror.org/01g6g9h28', 'en', 1, 'https://ror.org/01g6g9h28 Li Ka Shing Foundation'),
(30817, 'https://ror.org/00trnds81', 'en', 1, 'https://ror.org/00trnds81 Saskatchewan Health Research Foundation'),
(30818, 'https://ror.org/02jecj653', 'it', 1, 'https://ror.org/02jecj653 Fondazione Cassa di Risparmio di Padova e Rovigo'),
(30819, 'https://ror.org/00saj4962', 'en', 1, 'https://ror.org/00saj4962 Medical Research Scotland'),
(30820, 'https://ror.org/03gzf0d03', 'en', 1, 'https://ror.org/03gzf0d03 Alabama Commission on Higher Education'),
(30821, 'https://ror.org/04fskt963', 'en', 1, 'https://ror.org/04fskt963 Bupa UK Foundation'),
(30822, 'https://ror.org/057t8sx48', 'en', 1, 'https://ror.org/057t8sx48 Pacific Northwest Foundation'),
(30823, 'https://ror.org/01ppg1t70', 'en', 1, 'https://ror.org/01ppg1t70 British Association for Psychopharmacology'),
(30824, 'https://ror.org/021aawt29', 'en', 1, 'https://ror.org/021aawt29 Great Britain Sasakawa Foundation'),
(30825, 'https://ror.org/04q644746', 'en', 1, 'https://ror.org/04q644746 Giovanni Armenise-Harvard Foundation'),
(30826, 'https://ror.org/040v79746', 'en', 1, 'https://ror.org/040v79746 Research Capacity Building Collaboration Wales'),
(30827, 'https://ror.org/04pke7819', 'en', 1, 'https://ror.org/04pke7819 National Centre for Vocational Education Research'),
(30828, 'https://ror.org/054dq0621', 'no_lang_code', 1, 'https://ror.org/054dq0621 China National Offshore Oil Corporation (China) 中海石油研究中心'),
(30829, 'https://ror.org/02yyzvz79', 'en', 1, 'https://ror.org/02yyzvz79 Texas Emerging Technology Fund'),
(30830, 'https://ror.org/04dyhjr58', 'no_lang_code', 1, 'https://ror.org/04dyhjr58 Medtronic (Ireland)'),
(30831, 'https://ror.org/020w7x032', 'en', 1, 'https://ror.org/020w7x032 Sir Halley Stewart Trust'),
(30832, 'https://ror.org/03jsnw290', 'en', 1, 'https://ror.org/03jsnw290 Australian College of Nursing'),
(30833, 'https://ror.org/03c6c9520', 'en', 1, 'https://ror.org/03c6c9520 Israel Academy of Sciences and Humanities האקדמיה הלאומית הישראלית למדעים'),
(30834, 'https://ror.org/044g35w58', 'es', 1, 'https://ror.org/044g35w58 Ibercaja Banco'),
(30835, 'https://ror.org/00xtpbs68', 'en', 1, 'https://ror.org/00xtpbs68 Claude Leon Foundation'),
(30836, 'https://ror.org/023wsvq95', 'en', 1, 'https://ror.org/023wsvq95 Department of Foreign Affairs and Trade'),
(30837, 'https://ror.org/04bxzgg25', 'fr', 1, 'https://ror.org/04bxzgg25 Cemsuisse'),
(30838, 'https://ror.org/04600bt44', 'en', 1, 'https://ror.org/04600bt44 Ministry for Culture and Heritage'),
(30839, 'https://ror.org/05hdz2063', 'pt', 1, 'https://ror.org/05hdz2063 Foundation for Research Support of Mato Grosso State Fundação de Amparo à Pesquisa do Estado de Mato Grosso'),
(30840, 'https://ror.org/05sfep667', 'en', 1, 'https://ror.org/05sfep667 Ministerio de Agricultura y Desarrollo Rural Ministry of Agriculture and Rural Development'),
(30841, 'https://ror.org/03rybxa06', 'en', 1, 'https://ror.org/03rybxa06 Ministry of the Environment 環境省'),
(30842, 'https://ror.org/02g9c9v38', 'en', 1, 'https://ror.org/02g9c9v38 Aetna Foundation'),
(30843, 'https://ror.org/0584kkb18', 'en', 1, 'https://ror.org/0584kkb18 Gerda Henkel Foundation Gerda Henkel Stiftung'),
(30844, 'https://ror.org/0279n3m18', 'sr', 1, 'https://ror.org/0279n3m18 Pokrajinski Sekretarijat za Nauku i Tehnološki Razvoj Provincial Secretariat for Science and Technological Development'),
(30845, 'https://ror.org/01thcx676', 'de', 1, 'https://ror.org/01thcx676 Stiftung Rheinland-Pfalz für Innovation'),
(30846, 'https://ror.org/00vt3ry76', 'en', 1, 'https://ror.org/00vt3ry76 Nutricia Research Foundation'),
(30847, 'https://ror.org/01wtjyf13', 'en', 1, 'https://ror.org/01wtjyf13 Office of Dietary Supplements'),
(30848, 'https://ror.org/009axkg17', 'en', 1, 'https://ror.org/009axkg17 Indian Council of Social Science Research'),
(30849, 'https://ror.org/01n28jn45', 'en', 1, 'https://ror.org/01n28jn45 Swedish National Bank'),
(30850, 'https://ror.org/04t269f15', 'en', 1, 'https://ror.org/04t269f15 National Endowment for the Arts'),
(30851, 'https://ror.org/01xmtfq82', 'en', 1, 'https://ror.org/01xmtfq82 Northwest Health Foundation'),
(30852, 'https://ror.org/020ddnn22', 'en', 1, 'https://ror.org/020ddnn22 Bundesamt für Energie Swiss Federal Office of Energy'),
(30853, 'https://ror.org/03w2v9593', 'en', 1, 'https://ror.org/03w2v9593 Israeli Centers for Research Excellence'),
(30854, 'https://ror.org/03p9d3z47', 'en', 1, 'https://ror.org/03p9d3z47 American Breast Cancer Foundation'),
(30855, 'https://ror.org/001ader08', 'en', 1, 'https://ror.org/001ader08 Silicon Valley Community Foundation'),
(30856, 'https://ror.org/03k1e3764', 'en', 1, 'https://ror.org/03k1e3764 American Physical Therapy Association'),
(30857, 'https://ror.org/03qh32912', 'en', 1, 'https://ror.org/03qh32912 Food and Health Bureau 食物及衞生局'),
(30858, 'https://ror.org/01g3ss027', 'en', 1, 'https://ror.org/01g3ss027 Kerr Foundation'),
(30859, 'https://ror.org/029acmk59', 'en', 1, 'https://ror.org/029acmk59 Baptist Community Ministries'),
(30860, 'https://ror.org/02vz62k77', 'en', 1, 'https://ror.org/02vz62k77 Republic of Burundi République du Burundi'),
(30861, 'https://ror.org/02d58c802', 'en', 1, 'https://ror.org/02d58c802 Kidney & Urology Foundation of America'),
(30862, 'https://ror.org/01wt3vs82', 'en', 1, 'https://ror.org/01wt3vs82 Dana Foundation'),
(30863, 'https://ror.org/047wvvg23', 'en', 1, 'https://ror.org/047wvvg23 Center for Translational Molecular Medicine'),
(30864, 'https://ror.org/00rbj3548', 'en', 1, 'https://ror.org/00rbj3548 Diabetes Research Institute Foundation'),
(30865, 'https://ror.org/05357zt36', 'en', 1, 'https://ror.org/05357zt36 Ministry of Justice'),
(30866, 'https://ror.org/05bmt7297', 'no_lang_code', 1, 'https://ror.org/05bmt7297 Consolidated Edison (United States)'),
(30867, 'https://ror.org/02dtjfs50', 'en', 1, 'https://ror.org/02dtjfs50 Merck Institute for Science Education'),
(30868, 'https://ror.org/05ygyjd33', 'en', 1, 'https://ror.org/05ygyjd33 Virginia Environmental Endowment'),
(30869, 'https://ror.org/00p7ds424', 'en', 1, 'https://ror.org/00p7ds424 Discovery Eye Foundation'),
(30870, 'https://ror.org/0592h9m82', 'en', 1, 'https://ror.org/0592h9m82 Department of Emergency Services and Public Protection'),
(30871, 'https://ror.org/01mcwn339', 'en', 1, 'https://ror.org/01mcwn339 Hope for Depression Research Foundation'),
(30872, 'https://ror.org/04zq3xb25', 'en', 1, 'https://ror.org/04zq3xb25 Illinois Environmental Protection Agency'),
(30873, 'https://ror.org/03krqra54', 'en', 1, 'https://ror.org/03krqra54 Wisconsin Department of Workforce Development'),
(30874, 'https://ror.org/02j0q7e02', 'en', 1, 'https://ror.org/02j0q7e02 Departamento de Transporte de Pensilvania Pennsylvania Department of Transportation'),
(30875, 'https://ror.org/05qmfyw56', 'en', 1, 'https://ror.org/05qmfyw56 International Myeloma Foundation'),
(30876, 'https://ror.org/0125jx070', 'en', 1, 'https://ror.org/0125jx070 Henry Luce Foundation'),
(30877, 'https://ror.org/01kae7563', 'en', 1, 'https://ror.org/01kae7563 Département des transports du michigan Michigan Department of Transportation'),
(30878, 'https://ror.org/05wvxzm41', 'en', 1, 'https://ror.org/05wvxzm41 Society for Imaging Informatics in Medicine'),
(30879, 'https://ror.org/01fz2rj87', 'nl', 1, 'https://ror.org/01fz2rj87 Nederlandse Brandwonden Stichting'),
(30880, 'https://ror.org/01cn04b23', 'en', 1, 'https://ror.org/01cn04b23 Minnesota Pollution Control Agency'),
(30881, 'https://ror.org/008vgd385', 'en', 1, 'https://ror.org/008vgd385 International Association for Dental Research'),
(30882, 'https://ror.org/014rsed66', 'en', 1, 'https://ror.org/014rsed66 Belgian American Educational Foundation'),
(30883, 'https://ror.org/0173k6h24', 'en', 1, 'https://ror.org/0173k6h24 Bugher Foundation'),
(30884, 'https://ror.org/02r0g0093', 'no_lang_code', 1, 'https://ror.org/02r0g0093 Southern Company (United States)'),
(30885, 'https://ror.org/01hwjc346', 'en', 1, 'https://ror.org/01hwjc346 Concern Foundation'),
(30886, 'https://ror.org/04etphg07', 'en', 1, 'https://ror.org/04etphg07 Conservation Leadership Programme'),
(30887, 'https://ror.org/04vrv9h08', 'en', 1, 'https://ror.org/04vrv9h08 Diabetes Action Research and Education Foundation'),
(30888, 'https://ror.org/029a84r94', 'no_lang_code', 1, 'https://ror.org/029a84r94 Psi Chi'),
(30889, 'https://ror.org/04hadnb81', 'no_lang_code', 1, 'https://ror.org/04hadnb81 ConocoPhillips (United States)'),
(30890, 'https://ror.org/045k5vt03', 'en', 1, 'https://ror.org/045k5vt03 International Society for Optics and Photonics'),
(30891, 'https://ror.org/00821cz13', 'en', 1, 'https://ror.org/00821cz13 Batten Disease Support and Research Association'),
(30892, 'https://ror.org/02ssn9g91', 'en', 1, 'https://ror.org/02ssn9g91 U.S. Poultry and Egg Association'),
(30893, 'https://ror.org/041t5x242', 'en', 1, 'https://ror.org/041t5x242 Tenovus Cancer Care'),
(30894, 'https://ror.org/006dn3r34', 'en', 1, 'https://ror.org/006dn3r34 American Foundation for Pharmaceutical Education'),
(30895, 'https://ror.org/02bzj4420', 'en', 1, 'https://ror.org/02bzj4420 Health Foundation'),
(30896, 'https://ror.org/013grne12', 'en', 1, 'https://ror.org/013grne12 Intensive Care Society'),
(30897, 'https://ror.org/014kx8q82', 'en', 1, 'https://ror.org/014kx8q82 Blue Cross and Blue Shield of North Carolina Foundation'),
(30898, 'https://ror.org/045jyg234', 'de', 1, 'https://ror.org/045jyg234 Verein für Krebsforschung'),
(30899, 'https://ror.org/01b7fm202', 'en', 1, 'https://ror.org/01b7fm202 Bowel Disease Research Foundation'),
(30900, 'https://ror.org/02rj0as03', 'en', 1, 'https://ror.org/02rj0as03 Josiah Macy Jr Foundation'),
(30901, 'https://ror.org/02vf3h353', 'en', 1, 'https://ror.org/02vf3h353 Le Conseil médical du Canada Medical Council of Canada'),
(30902, 'https://ror.org/04gmhya03', 'en', 1, 'https://ror.org/04gmhya03 Pelican Cancer Foundation'),
(30903, 'https://ror.org/03sdr0263', 'en', 1, 'https://ror.org/03sdr0263 Rheumatology Research Foundation'),
(30904, 'https://ror.org/00t6svq33', 'en', 1, 'https://ror.org/00t6svq33 Canadian Anesthesiologists'' Society'),
(30905, 'https://ror.org/011fjkk76', 'en', 1, 'https://ror.org/011fjkk76 Indian Association for Cancer Research'),
(30906, 'https://ror.org/0459phn12', 'en', 1, 'https://ror.org/0459phn12 Australian Cancer Research Foundation'),
(30907, 'https://ror.org/00kz6zq32', 'no_lang_code', 1, 'https://ror.org/00kz6zq32 Higher Education Press (China)'),
(30908, 'https://ror.org/0131mn086', 'en', 1, 'https://ror.org/0131mn086 Manitoba Arts Council'),
(30909, 'https://ror.org/05tqbd879', 'en', 1, 'https://ror.org/05tqbd879 Energy Market Authority'),
(30910, 'https://ror.org/0537h0h72', 'en', 1, 'https://ror.org/0537h0h72 Housing and Development Board 组屋'),
(30911, 'https://ror.org/01yeyxy55', 'no_lang_code', 1, 'https://ror.org/01yeyxy55 Intercontinental Exchange (United States)'),
(30912, 'https://ror.org/05sn2fr43', 'en', 1, 'https://ror.org/05sn2fr43 Marine Mammal Commission'),
(30913, 'https://ror.org/03ntprd85', 'en', 1, 'https://ror.org/03ntprd85 Sir Jules Thorn Charitable Trust'),
(30914, 'https://ror.org/03xeae684', 'en', 1, 'https://ror.org/03xeae684 Cystic Fibrosis Trust'),
(30915, 'https://ror.org/024ctqw02', 'en', 1, 'https://ror.org/024ctqw02 Korea Military Academy 대한민국 육군사관학교'),
(30916, 'https://ror.org/01bk8ee93', 'en', 1, 'https://ror.org/01bk8ee93 Cancer Society of New Zealand'),
(30917, 'https://ror.org/02xwkbq98', 'en', 1, 'https://ror.org/02xwkbq98 National Heart Foundation of New Zealand'),
(30918, 'https://ror.org/04n2jeh03', 'en', 1, 'https://ror.org/04n2jeh03 Oticon Foundation in New Zealand'),
(30919, 'https://ror.org/016p59286', 'en', 1, 'https://ror.org/016p59286 Jinan City Science and Technology Bureau'),
(30920, 'https://ror.org/05vd00053', 'en', 1, 'https://ror.org/05vd00053 Terry Fox Foundation'),
(30921, 'https://ror.org/019s18q02', 'en', 1, 'https://ror.org/019s18q02 Inspire Foundation'),
(30922, 'https://ror.org/05q5yzt24', 'en', 1, 'https://ror.org/05q5yzt24 Wellington Medical Research Foundation'),
(30923, 'https://ror.org/052cqpt62', 'en', 1, 'https://ror.org/052cqpt62 Australian Society for Parasitology'),
(30924, 'https://ror.org/03qk82695', 'no_lang_code', 1, 'https://ror.org/03qk82695 Newport Coachworks (United States)'),
(30925, 'https://ror.org/03ev2fp74', 'no_lang_code', 1, 'https://ror.org/03ev2fp74 Dairy Innovation Australia (Australia)'),
(30926, 'https://ror.org/02gq0fg61', 'en', 1, 'https://ror.org/02gq0fg61 Motor Neurone Disease Association'),
(30927, 'https://ror.org/03z1vf588', 'en', 1, 'https://ror.org/03z1vf588 South-South Exchange Programme for Research on the History of Development'),
(30928, 'https://ror.org/02xvp8z16', 'en', 1, 'https://ror.org/02xvp8z16 Ministry of Higher Education Ministère de l''Enseignement Supérieur'),
(30929, 'https://ror.org/03356n642', 'en', 1, 'https://ror.org/03356n642 Lister Institute of Preventive Medicine'),
(30930, 'https://ror.org/05r2ts661', 'en', 1, 'https://ror.org/05r2ts661 Fulbright Foundation'),
(30931, 'https://ror.org/01t1a2303', 'en', 1, 'https://ror.org/01t1a2303 Canadian Optometric Education Trust Fund Fonds de Fiducie des Optométristes Canadiens pour l''Education'),
(30932, 'https://ror.org/00ejq3005', 'en', 1, 'https://ror.org/00ejq3005 Foyle Foundation'),
(30933, 'https://ror.org/01es9dw61', 'en', 1, 'https://ror.org/01es9dw61 Ministry of Micro, Small and Medium Enterprises सूक्ष्म , लघु और मध्यम उद्यम मंत्रालय'),
(30934, 'https://ror.org/02dj61c35', 'en', 1, 'https://ror.org/02dj61c35 British Society for Rheumatology'),
(30935, 'https://ror.org/0248qb926', 'es', 1, 'https://ror.org/0248qb926 Fundación Mapfre'),
(30936, 'https://ror.org/03jfjvh87', 'en', 1, 'https://ror.org/03jfjvh87 Health Promotion Agency'),
(30937, 'https://ror.org/037tx1q23', 'en', 1, 'https://ror.org/037tx1q23 Pathological Society'),
(30938, 'https://ror.org/00y81cg83', 'en', 1, 'https://ror.org/00y81cg83 Home Office Y Swyddfa Gartref'),
(30939, 'https://ror.org/018vkvj59', 'fr', 1, 'https://ror.org/018vkvj59 Conseil Régional de Champagne-Ardenne'),
(30940, 'https://ror.org/05az3m671', 'de', 1, 'https://ror.org/05az3m671 Evangelisches Studienwerk Villigst Protestant Academic Foundation'),
(30941, 'https://ror.org/0503xdx77', 'pt', 1, 'https://ror.org/0503xdx77 Fundação de Amparo à Pesquisa e Inovação do Estado de Santa Catarina'),
(30942, 'https://ror.org/0585vsm16', 'en', 1, 'https://ror.org/0585vsm16 Earthwatch Institute'),
(30943, 'https://ror.org/00m3wrz48', 'en', 1, 'https://ror.org/00m3wrz48 Institut des États-unis pour la paix United States Institute of Peace'),
(30944, 'https://ror.org/04gvkax77', 'en', 1, 'https://ror.org/04gvkax77 Hangzhou Science and Technology Commission'),
(30945, 'https://ror.org/02a3z0p48', 'en', 1, 'https://ror.org/02a3z0p48 Federal Council'),
(30946, 'https://ror.org/05bakh610', 'en', 1, 'https://ror.org/05bakh610 Healthway'),
(30947, 'https://ror.org/04mh2zc60', 'en', 1, 'https://ror.org/04mh2zc60 John E. Fetzer Memorial Trust'),
(30948, 'https://ror.org/02ayg6516', 'en', 1, 'https://ror.org/02ayg6516 Guangxi University of Finance and Economics 广西财经学院'),
(30949, 'https://ror.org/058qtek75', 'en', 1, 'https://ror.org/058qtek75 Flinn Foundation'),
(30950, 'https://ror.org/028e6y556', 'en', 1, 'https://ror.org/028e6y556 Tumour Institute of Tuscany'),
(30951, 'https://ror.org/03qadc961', 'da', 1, 'https://ror.org/03qadc961 Nordea-fonden'),
(30952, 'https://ror.org/04ssevy49', 'en', 1, 'https://ror.org/04ssevy49 Addenbrooke''s Charitable Trust'),
(30953, 'https://ror.org/01kjwqy11', 'en', 1, 'https://ror.org/01kjwqy11 Ministry of Human Resources and Social Security 中华人民共和国人力资源和社会保障部'),
(30954, 'https://ror.org/02hq6wv21', 'de', 1, 'https://ror.org/02hq6wv21 Deutsche Herzstiftung'),
(30955, 'https://ror.org/02fkk6k65', 'en', 1, 'https://ror.org/02fkk6k65 Ministry of Culture, Sports and Tourism 대한민국 문화체육관광부'),
(30956, 'https://ror.org/026zht694', 'pt', 1, 'https://ror.org/026zht694 Fundação de Amparo à Pesquisa do Estado do Piauí'),
(30957, 'https://ror.org/01ka9rn66', 'en', 1, 'https://ror.org/01ka9rn66 Ministry of Gender Equality and Family 대한민국 여성가족부'),
(30958, 'https://ror.org/02xa5f497', 'en', 1, 'https://ror.org/02xa5f497 Healthcare Georgia Foundation'),
(30959, 'https://ror.org/04bk4t231', 'en', 1, 'https://ror.org/04bk4t231 National Tax Service'),
(30960, 'https://ror.org/04kg99k11', 'en', 1, 'https://ror.org/04kg99k11 John Innes Foundation'),
(30961, 'https://ror.org/04j0y0e37', 'en', 1, 'https://ror.org/04j0y0e37 Brown Foundation'),
(30962, 'https://ror.org/01js9sf40', 'en', 1, 'https://ror.org/01js9sf40 Maine Health Access Foundation'),
(30963, 'https://ror.org/03qevzg44', 'en', 1, 'https://ror.org/03qevzg44 Richard King Mellon Foundation'),
(30964, 'https://ror.org/01qwawt17', 'en', 1, 'https://ror.org/01qwawt17 William Penn Foundation'),
(30965, 'https://ror.org/04f097438', 'en', 1, 'https://ror.org/04f097438 National Evidenc- based healthcare Collaborating Agency'),
(30966, 'https://ror.org/04gk5xv95', 'en', 1, 'https://ror.org/04gk5xv95 National Organization for Rare Disorders'),
(30967, 'https://ror.org/03s96de24', 'en', 1, 'https://ror.org/03s96de24 Hearst Foundations'),
(30968, 'https://ror.org/01shbv660', 'en', 1, 'https://ror.org/01shbv660 Agricultural Research Development Agency สำนักงานพัฒนาการวิจัยการเกษตร'),
(30969, 'https://ror.org/02z681y43', 'en', 1, 'https://ror.org/02z681y43 National Rifle Association of America'),
(30970, 'https://ror.org/025qv0671', 'en', 1, 'https://ror.org/025qv0671 North West Cancer Research'),
(30971, 'https://ror.org/05apbp152', 'sv', 1, 'https://ror.org/05apbp152 Signhild Engkvists Stiftelse'),
(30972, 'https://ror.org/05snapr15', 'en', 1, 'https://ror.org/05snapr15 Mary Kay Foundation'),
(30973, 'https://ror.org/05bq4ms81', 'en', 1, 'https://ror.org/05bq4ms81 Britton Fund'),
(30974, 'https://ror.org/004p56m59', 'en', 1, 'https://ror.org/004p56m59 Center for Health Care Strategies'),
(30975, 'https://ror.org/02c9tf451', 'en', 1, 'https://ror.org/02c9tf451 Charles H. Revson Foundation'),
(30976, 'https://ror.org/02se70931', 'en', 1, 'https://ror.org/02se70931 California HealthCare Foundation'),
(30977, 'https://ror.org/02cwr7s69', 'nl', 1, 'https://ror.org/02cwr7s69 Stichting Astma Bestrijding'),
(30978, 'https://ror.org/02p745c92', 'en', 1, 'https://ror.org/02p745c92 Swedish Farmers’ Foundation for Agricultural Research'),
(30979, 'https://ror.org/018w7fz66', 'en', 1, 'https://ror.org/018w7fz66 Royal Free Charity'),
(30980, 'https://ror.org/02pqmy074', 'en', 1, 'https://ror.org/02pqmy074 Winthrop Rockefeller Foundation'),
(30981, 'https://ror.org/008bs5r20', 'en', 1, 'https://ror.org/008bs5r20 Fisher Center for Alzheimer''s Research Foundation'),
(30982, 'https://ror.org/03s9xxw55', 'en', 1, 'https://ror.org/03s9xxw55 National Ataxia Foundation'),
(30983, 'https://ror.org/02kstzn75', 'en', 1, 'https://ror.org/02kstzn75 Institute for Medical Biology Instytut Biologii Medycznej Polskiej Akademii Nauk'),
(30984, 'https://ror.org/03fcvqn57', 'en', 1, 'https://ror.org/03fcvqn57 Graham Foundation'),
(30985, 'https://ror.org/02qva2y28', 'en', 1, 'https://ror.org/02qva2y28 Samuel Waxman Cancer Research Foundation'),
(30986, 'https://ror.org/02bffdv67', 'en', 1, 'https://ror.org/02bffdv67 Ministry of Education of the Republic of Belarus'),
(30987, 'https://ror.org/02sba6v14', 'no_lang_code', 1, 'https://ror.org/02sba6v14 West Pharmaceutical Services (United States)'),
(30988, 'https://ror.org/02a3w7r50', 'en', 1, 'https://ror.org/02a3w7r50 Hereditary Disease Foundation'),
(30989, 'https://ror.org/04t838f48', 'en', 1, 'https://ror.org/04t838f48 Central Norway Regional Health Authority'),
(30990, 'https://ror.org/000b2tt25', 'en', 1, 'https://ror.org/000b2tt25 Wilburforce Foundation'),
(30991, 'https://ror.org/00hwxbz16', 'en', 1, 'https://ror.org/00hwxbz16 Wisconsin Alumni Research Foundation'),
(30992, 'https://ror.org/03g38ta48', 'en', 1, 'https://ror.org/03g38ta48 Council for Learning Disabilities'),
(30993, 'https://ror.org/02dfyb978', 'en', 1, 'https://ror.org/02dfyb978 American Liver Foundation'),
(30994, 'https://ror.org/03wpppw84', 'no_lang_code', 1, 'https://ror.org/03wpppw84 Bridgestone (United States)'),
(30995, 'https://ror.org/04wehyc39', 'en', 1, 'https://ror.org/04wehyc39 International Council of Shopping Centers'),
(30996, 'https://ror.org/02fsqj683', 'en', 1, 'https://ror.org/02fsqj683 Accelerate Brain Cancer Cure'),
(30997, 'https://ror.org/05rbbc072', 'en', 1, 'https://ror.org/05rbbc072 Kosciuszko Foundation'),
(30998, 'https://ror.org/01z81gq54', 'en', 1, 'https://ror.org/01z81gq54 American Association of Endodontists'),
(30999, 'https://ror.org/00kwhq089', 'en', 1, 'https://ror.org/00kwhq089 American Institute of Indian Studies'),
(31000, 'https://ror.org/02v5pea97', 'en', 1, 'https://ror.org/02v5pea97 American Porphyria Foundation'),
(31001, 'https://ror.org/00z74sn08', 'en', 1, 'https://ror.org/00z74sn08 Departamento de Transporte de Nueva Jersey New Jersey Department of Transportation'),
(31002, 'https://ror.org/01g7c0g45', 'en', 1, 'https://ror.org/01g7c0g45 Parapsychology Foundation'),
(31003, 'https://ror.org/00q2zjc87', 'en', 1, 'https://ror.org/00q2zjc87 Blue Cross Blue Shield of Michigan Foundation'),
(31004, 'https://ror.org/056hf9h18', 'en', 1, 'https://ror.org/056hf9h18 New York State Department of Agriculture and Markets'),
(31005, 'https://ror.org/03k8x7365', 'en', 1, 'https://ror.org/03k8x7365 American Skin Association'),
(31006, 'https://ror.org/037qe5327', 'en', 1, 'https://ror.org/037qe5327 Carroll Shelby Foundation'),
(31007, 'https://ror.org/05xd9aq52', 'en', 1, 'https://ror.org/05xd9aq52 Ohio Environmental Protection Agency'),
(31008, 'https://ror.org/02na1q715', 'en', 1, 'https://ror.org/02na1q715 Friendly Sons of St. Patrick'),
(31009, 'https://ror.org/015wjhp16', 'en', 1, 'https://ror.org/015wjhp16 New York State Department of Labor'),
(31010, 'https://ror.org/0058p7h33', 'no_lang_code', 1, 'https://ror.org/0058p7h33 MassMutual Financial Group (United States)'),
(31011, 'https://ror.org/05m4rmw09', 'en', 1, 'https://ror.org/05m4rmw09 Fondo Monetario Internacional Fonds monétaire international International Monetary Fund'),
(31012, 'https://ror.org/04b4rxp95', 'en', 1, 'https://ror.org/04b4rxp95 Nuts, Bolts and Thingamajigs'),
(31013, 'https://ror.org/03pbzwf28', 'no_lang_code', 1, 'https://ror.org/03pbzwf28 Tellabs (United States)'),
(31014, 'https://ror.org/04f9t1x17', 'en', 1, 'https://ror.org/04f9t1x17 Novartis Foundation'),
(31015, 'https://ror.org/0434af134', 'en', 1, 'https://ror.org/0434af134 Michigan Public Service Commission'),
(31016, 'https://ror.org/01er75989', 'en', 1, 'https://ror.org/01er75989 Fraternal Order of Eagles'),
(31017, 'https://ror.org/05qcea723', 'no_lang_code', 1, 'https://ror.org/05qcea723 Nike (United States)'),
(31018, 'https://ror.org/012w91b90', 'en', 1, 'https://ror.org/012w91b90 Foundation for the Advancement of Mesoamerican Studies'),
(31019, 'https://ror.org/03dwefb78', 'en', 1, 'https://ror.org/03dwefb78 Minnesota Department of Employment and Economic Development'),
(31020, 'https://ror.org/031p7wh32', 'en', 1, 'https://ror.org/031p7wh32 European Association for Cancer Research'),
(31021, 'https://ror.org/040pmcr47', 'en', 1, 'https://ror.org/040pmcr47 Maryland Higher Education Commission'),
(31022, 'https://ror.org/05fckk939', 'en', 1, 'https://ror.org/05fckk939 Institute of Turkish Studies'),
(31023, 'https://ror.org/05xnsh975', 'en', 1, 'https://ror.org/05xnsh975 Maddie''s Fund'),
(31024, 'https://ror.org/0285fde08', 'en', 1, 'https://ror.org/0285fde08 Jain Foundation'),
(31025, 'https://ror.org/02agp0d04', 'en', 1, 'https://ror.org/02agp0d04 Link Foundation'),
(31026, 'https://ror.org/02kesxz96', 'en', 1, 'https://ror.org/02kesxz96 Longer Life Foundation'),
(31027, 'https://ror.org/048tdcg16', 'en', 1, 'https://ror.org/048tdcg16 Ohio Lake Erie Commission'),
(31028, 'https://ror.org/048b0ns33', 'en', 1, 'https://ror.org/048b0ns33 Aga Khan Foundation'),
(31029, 'https://ror.org/02qh9e431', 'no_lang_code', 1, 'https://ror.org/02qh9e431 JF Kapnek Trust'),
(31030, 'https://ror.org/05jnjmr07', 'en', 1, 'https://ror.org/05jnjmr07 Virginia Department of Education'),
(31031, 'https://ror.org/005gjjf63', 'en', 1, 'https://ror.org/005gjjf63 National Psoriasis Foundation'),
(31032, 'https://ror.org/05f7khr13', 'en', 1, 'https://ror.org/05f7khr13 Women''s Health Initiative'),
(31033, 'https://ror.org/03sjs8573', 'en', 1, 'https://ror.org/03sjs8573 Canon Foundation in Europe'),
(31034, 'https://ror.org/004r22g79', 'en', 1, 'https://ror.org/004r22g79 Orangutan Conservancy'),
(31035, 'https://ror.org/02r8tn769', 'en', 1, 'https://ror.org/02r8tn769 Asia-Pacific Network for Global Change Research'),
(31036, 'https://ror.org/05dg7rt55', 'no_lang_code', 1, 'https://ror.org/05dg7rt55 Mazda (United States)'),
(31037, 'https://ror.org/015vnk029', 'no_lang_code', 1, 'https://ror.org/015vnk029 Hillrom (United States)'),
(31038, 'https://ror.org/05te4e461', 'en', 1, 'https://ror.org/05te4e461 American College of Veterinary Internal Medicine Foundation'),
(31039, 'https://ror.org/01mrzcs29', 'no_lang_code', 1, 'https://ror.org/01mrzcs29 UniCredit (United States)'),
(31040, 'https://ror.org/00rkkzx80', 'no_lang_code', 1, 'https://ror.org/00rkkzx80 Houghton Mifflin Harcourt (United States)'),
(31041, 'https://ror.org/04v9v0986', 'en', 1, 'https://ror.org/04v9v0986 CFA Institute'),
(31042, 'https://ror.org/05xj3t215', 'en', 1, 'https://ror.org/05xj3t215 American Neurotology Society'),
(31043, 'https://ror.org/00sne9z79', 'en', 1, 'https://ror.org/00sne9z79 ResMed Foundation'),
(31044, 'https://ror.org/04gffem11', 'en', 1, 'https://ror.org/04gffem11 American Orthopaedic Association'),
(31045, 'https://ror.org/03f455d91', 'en', 1, 'https://ror.org/03f455d91 School Nutrition Association'),
(31046, 'https://ror.org/0379w2016', 'en', 1, 'https://ror.org/0379w2016 Healthwise'),
(31047, 'https://ror.org/00zf1g010', 'en', 1, 'https://ror.org/00zf1g010 Waitt Foundation'),
(31048, 'https://ror.org/01gejm974', 'en', 1, 'https://ror.org/01gejm974 American Academy of Audiology Foundation'),
(31049, 'https://ror.org/00rt0xj75', 'fr', 1, 'https://ror.org/00rt0xj75 Agence Thématique de Recherche en Science de la Santé'),
(31050, 'https://ror.org/03hp51383', 'en', 1, 'https://ror.org/03hp51383 Center for Ecoliteracy'),
(31051, 'https://ror.org/059gy7s73', 'en', 1, 'https://ror.org/059gy7s73 American Society of Echocardiography'),
(31052, 'https://ror.org/01sv5w039', 'en', 1, 'https://ror.org/01sv5w039 Tinker Foundation'),
(31053, 'https://ror.org/05q1b6223', 'en', 1, 'https://ror.org/05q1b6223 Wallace Foundation'),
(31054, 'https://ror.org/03eecgp81', 'en', 1, 'https://ror.org/03eecgp81 Office of Under Secretary of Energy for Science'),
(31055, 'https://ror.org/04r5s4b52', 'en', 1, 'https://ror.org/04r5s4b52 Center for Scientific Review'),
(31056, 'https://ror.org/01pkpj777', 'en', 1, 'https://ror.org/01pkpj777 Sontag Foundation'),
(31057, 'https://ror.org/04jp6nz39', 'en', 1, 'https://ror.org/04jp6nz39 Bat Conservation International'),
(31058, 'https://ror.org/03d9g2g58', 'en', 1, 'https://ror.org/03d9g2g58 American Association of Orthodontists'),
(31059, 'https://ror.org/00cxc2y95', 'en', 1, 'https://ror.org/00cxc2y95 Klingenstein Third Generation Foundation'),
(31060, 'https://ror.org/04ddd7237', 'en', 1, 'https://ror.org/04ddd7237 Congress of Neurological Surgeons'),
(31061, 'https://ror.org/04rk0sp93', 'en', 1, 'https://ror.org/04rk0sp93 Institute of Management Accountants'),
(31062, 'https://ror.org/02zdz9d52', 'en', 1, 'https://ror.org/02zdz9d52 Association for Behavior Analysis International'),
(31063, 'https://ror.org/009xj7f03', 'en', 1, 'https://ror.org/009xj7f03 Oneida Indian Nation'),
(31064, 'https://ror.org/00y65x556', 'en', 1, 'https://ror.org/00y65x556 American Gastroenterological Association'),
(31065, 'https://ror.org/03s9h8898', 'en', 1, 'https://ror.org/03s9h8898 Garden Club of America'),
(31066, 'https://ror.org/046zezr58', 'en', 1, 'https://ror.org/046zezr58 Office of Disease Prevention');
INSERT INTO `rors` VALUES
(31067, 'https://ror.org/02yz1n812', 'en', 1, 'https://ror.org/02yz1n812 AIDS Clinical Trials Group'),
(31068, 'https://ror.org/00pngyt39', 'en', 1, 'https://ror.org/00pngyt39 Hemostasis and Thrombosis Research Society'),
(31069, 'https://ror.org/04x0tcn90', 'en', 1, 'https://ror.org/04x0tcn90 Hudson River Foundation'),
(31070, 'https://ror.org/023xrdj21', 'en', 1, 'https://ror.org/023xrdj21 International Mental Health Research Organization'),
(31071, 'https://ror.org/014ys2k69', 'en', 1, 'https://ror.org/014ys2k69 American Society for Clinical Laboratory Science'),
(31072, 'https://ror.org/01kjwc090', 'en', 1, 'https://ror.org/01kjwc090 Musicians Emergency Fund'),
(31073, 'https://ror.org/040d52e71', 'en', 1, 'https://ror.org/040d52e71 IEEE Foundation'),
(31074, 'https://ror.org/03va2bz55', 'en', 1, 'https://ror.org/03va2bz55 International Society for Heart and Lung Transplantation'),
(31075, 'https://ror.org/00mn6be63', 'en', 1, 'https://ror.org/00mn6be63 John S. and James L. Knight Foundation'),
(31076, 'https://ror.org/0370d4798', 'en', 1, 'https://ror.org/0370d4798 Legacy Heritage Fund'),
(31077, 'https://ror.org/05ybkj905', 'en', 1, 'https://ror.org/05ybkj905 Cetacean Society International'),
(31078, 'https://ror.org/01xvbqz61', 'en', 1, 'https://ror.org/01xvbqz61 National Council on Disability'),
(31079, 'https://ror.org/00x9kww32', 'en', 1, 'https://ror.org/00x9kww32 Jackson College'),
(31080, 'https://ror.org/04hg0kz24', 'en', 1, 'https://ror.org/04hg0kz24 Van Ameringen Foundation'),
(31081, 'https://ror.org/01s5k1048', 'no_lang_code', 1, 'https://ror.org/01s5k1048 Norfolk Southern (United States)'),
(31082, 'https://ror.org/00v7akn72', 'en', 1, 'https://ror.org/00v7akn72 Women Helping Others Foundation'),
(31083, 'https://ror.org/01xsmpb09', 'en', 1, 'https://ror.org/01xsmpb09 Autism Research Institute'),
(31084, 'https://ror.org/01evwk382', 'en', 1, 'https://ror.org/01evwk382 American Bureau of Shipping'),
(31085, 'https://ror.org/02vxk8v76', 'en', 1, 'https://ror.org/02vxk8v76 Ladies Leukemia League'),
(31086, 'https://ror.org/056a3nr23', 'en', 1, 'https://ror.org/056a3nr23 Advertising Educational Foundation'),
(31087, 'https://ror.org/038cgyc59', 'en', 1, 'https://ror.org/038cgyc59 Hartwell Foundation'),
(31088, 'https://ror.org/04mnkdm02', 'en', 1, 'https://ror.org/04mnkdm02 Aeronautics Research and Development Board'),
(31089, 'https://ror.org/006qwnw28', 'en', 1, 'https://ror.org/006qwnw28 Hawaii Invasive Species Council'),
(31090, 'https://ror.org/03f9wqe45', 'en', 1, 'https://ror.org/03f9wqe45 Vasculitis Foundation'),
(31091, 'https://ror.org/01dbyqv08', 'en', 1, 'https://ror.org/01dbyqv08 Alabama Farmers Federation'),
(31092, 'https://ror.org/00h5ca650', 'fr', 1, 'https://ror.org/00h5ca650 Fondation Lefoulon-Delalande'),
(31093, 'https://ror.org/0316wrd42', 'en', 1, 'https://ror.org/0316wrd42 Victorian Cancer Agency'),
(31094, 'https://ror.org/037ej5648', 'en', 1, 'https://ror.org/037ej5648 Departamento de Transporte de Virginia Occidental Département des transports de la virginie-occidentale West Virginia Department of Transportation'),
(31095, 'https://ror.org/01eb22z31', 'en', 1, 'https://ror.org/01eb22z31 German-Russian Interdisciplinary Science Center'),
(31096, 'https://ror.org/00fahmw72', 'en', 1, 'https://ror.org/00fahmw72 Canadian Occupational Therapy Foundation'),
(31097, 'https://ror.org/00skv9577', 'es', 1, 'https://ror.org/00skv9577 Fundación Mutua Madrileña'),
(31098, 'https://ror.org/030689123', 'en', 1, 'https://ror.org/030689123 Georgia Research Alliance'),
(31099, 'https://ror.org/03ye0w166', 'en', 1, 'https://ror.org/03ye0w166 Canadian Wildlife Federation Fédération Canadienne de la Faune'),
(31100, 'https://ror.org/0031hzx04', 'en', 1, 'https://ror.org/0031hzx04 Florida Agency for Health Care Administration'),
(31101, 'https://ror.org/02qxv7b63', 'en', 1, 'https://ror.org/02qxv7b63 Cryptobranchid Interest Group'),
(31102, 'https://ror.org/01ch4jq10', 'en', 1, 'https://ror.org/01ch4jq10 Chemical Institute of Canada Institut de Chimie du Canada'),
(31103, 'https://ror.org/03tzb7t51', 'en', 1, 'https://ror.org/03tzb7t51 Meningitis Research Foundation'),
(31104, 'https://ror.org/04gyrp304', 'fr', 1, 'https://ror.org/04gyrp304 Fondation d''Aide pour la Recherche sur la Sclerose en Plaques'),
(31105, 'https://ror.org/05b6dcx13', 'en', 1, 'https://ror.org/05b6dcx13 Cystic Fibrosis Canada Fibrose kystique Canada'),
(31106, 'https://ror.org/03cen5169', 'it', 1, 'https://ror.org/03cen5169 Fondazione Cassa di Risparmio di Modena'),
(31107, 'https://ror.org/047jywd74', 'en', 1, 'https://ror.org/047jywd74 Kids Kidney Research'),
(31108, 'https://ror.org/01984jp66', 'en', 1, 'https://ror.org/01984jp66 British Interplanetary Society'),
(31109, 'https://ror.org/0375vv569', 'da', 1, 'https://ror.org/0375vv569 Hjerteforeningen'),
(31110, 'https://ror.org/0216whp02', 'en', 1, 'https://ror.org/0216whp02 Canadian Hemophilia Society Société Canadienne de l''Hémophilie'),
(31111, 'https://ror.org/057rnbw54', 'en', 1, 'https://ror.org/057rnbw54 Ivy Foundation'),
(31112, 'https://ror.org/01je3h843', 'en', 1, 'https://ror.org/01je3h843 Institute for New Economic Thinking'),
(31113, 'https://ror.org/04fr9je54', 'en', 1, 'https://ror.org/04fr9je54 Chartered Institute of Logistics and Transport'),
(31114, 'https://ror.org/04ptmx344', 'en', 1, 'https://ror.org/04ptmx344 Arkansas Biosciences Institute'),
(31115, 'https://ror.org/019a0gk53', 'en', 1, 'https://ror.org/019a0gk53 Kidney Foundation of Canada La Fondation Canadienne du Rein'),
(31116, 'https://ror.org/046secg30', 'en', 1, 'https://ror.org/046secg30 Lee Foundation'),
(31117, 'https://ror.org/02bmd7x67', 'en', 1, 'https://ror.org/02bmd7x67 British Pharmacological Society'),
(31118, 'https://ror.org/03htnqd27', 'sv', 1, 'https://ror.org/03htnqd27 Åke Wibergs Stiftelse'),
(31119, 'https://ror.org/050kwa993', 'en', 1, 'https://ror.org/050kwa993 British Society of Animal Science'),
(31120, 'https://ror.org/04wrhjz25', 'en', 1, 'https://ror.org/04wrhjz25 Society for Reproduction and Fertility'),
(31121, 'https://ror.org/01adk7m17', 'en', 1, 'https://ror.org/01adk7m17 Associated Medical Services'),
(31122, 'https://ror.org/04bjytq67', 'sv', 1, 'https://ror.org/04bjytq67 Jan Wallanders och Tom Hedelius stiftelse'),
(31123, 'https://ror.org/05bz3w661', 'en', 1, 'https://ror.org/05bz3w661 Canadian Liver Foundation Fondation Canadienne du Foie'),
(31124, 'https://ror.org/00ev6sa36', 'en', 1, 'https://ror.org/00ev6sa36 Daiwa Anglo-Japanese Foundation'),
(31125, 'https://ror.org/00yepf257', 'en', 1, 'https://ror.org/00yepf257 Ovarian Cancer Action'),
(31126, 'https://ror.org/00env1778', 'en', 1, 'https://ror.org/00env1778 Canadian Dermatology Foundation'),
(31127, 'https://ror.org/056y81r79', 'en', 1, 'https://ror.org/056y81r79 Higher Education Funding Council for Wales'),
(31128, 'https://ror.org/03573qv54', 'en', 1, 'https://ror.org/03573qv54 Orthopaedic Research'),
(31129, 'https://ror.org/02m24xz19', 'en', 1, 'https://ror.org/02m24xz19 Multiple Sclerosis Trust'),
(31130, 'https://ror.org/05nzkcm44', 'en', 1, 'https://ror.org/05nzkcm44 Australian Seafood Cooperative Research Center'),
(31131, 'https://ror.org/04390vz03', 'en', 1, 'https://ror.org/04390vz03 National Arts Council of South Africa'),
(31132, 'https://ror.org/02k4b9v70', 'en', 1, 'https://ror.org/02k4b9v70 Det Europæiske Miljøagentur European Environment Agency Europäische Umweltagentur'),
(31133, 'https://ror.org/0577j0g35', 'en', 1, 'https://ror.org/0577j0g35 Human Resource Development Group'),
(31134, 'https://ror.org/036ve4657', 'en', 1, 'https://ror.org/036ve4657 Building and Construction Authority'),
(31135, 'https://ror.org/0434keq61', 'en', 1, 'https://ror.org/0434keq61 Ministry of Social and Family Development 新加坡社会及家庭发展部'),
(31136, 'https://ror.org/03b4y8811', 'en', 1, 'https://ror.org/03b4y8811 Cancer Council Tasmania'),
(31137, 'https://ror.org/04gvcex51', 'en', 1, 'https://ror.org/04gvcex51 Ministry of National Development'),
(31138, 'https://ror.org/0018peh15', 'en', 1, 'https://ror.org/0018peh15 Tote Board'),
(31139, 'https://ror.org/00bwwrk44', 'en', 1, 'https://ror.org/00bwwrk44 Royal Pharmaceutical Society'),
(31140, 'https://ror.org/05dsr2a44', 'en', 1, 'https://ror.org/05dsr2a44 High Blood Pressure Research Council of Australia'),
(31141, 'https://ror.org/04n80xp42', 'en', 1, 'https://ror.org/04n80xp42 Gastroenterological Society of Australia'),
(31142, 'https://ror.org/01q5v7e13', 'en', 1, 'https://ror.org/01q5v7e13 Lowe Syndrome Trust'),
(31143, 'https://ror.org/0108bjm70', 'no_lang_code', 1, 'https://ror.org/0108bjm70 GlaxoSmithKline (Australia)'),
(31144, 'https://ror.org/05k1jx057', 'en', 1, 'https://ror.org/05k1jx057 Texas Space Grant Consortium'),
(31145, 'https://ror.org/035hx7715', 'en', 1, 'https://ror.org/035hx7715 Wisconsin Sea Grant'),
(31146, 'https://ror.org/022nyme12', 'en', 1, 'https://ror.org/022nyme12 Alaska Space Grant Program'),
(31147, 'https://ror.org/00j8gx359', 'en', 1, 'https://ror.org/00j8gx359 Group of Eight'),
(31148, 'https://ror.org/0014w1417', 'en', 1, 'https://ror.org/0014w1417 Georgia Sea Grant'),
(31149, 'https://ror.org/03hjnwv43', 'en', 1, 'https://ror.org/03hjnwv43 Arkansas Space Grant Consortium'),
(31150, 'https://ror.org/04j23ff69', 'en', 1, 'https://ror.org/04j23ff69 Alaska Sea Grant'),
(31151, 'https://ror.org/01m5ew684', 'en', 1, 'https://ror.org/01m5ew684 Education New Zealand'),
(31152, 'https://ror.org/01th7sf79', 'en', 1, 'https://ror.org/01th7sf79 Connecticut Space Grant Consortium'),
(31153, 'https://ror.org/01bfczx74', 'en', 1, 'https://ror.org/01bfczx74 Washington Space Grant Consortium'),
(31154, 'https://ror.org/047fr0y29', 'en', 1, 'https://ror.org/047fr0y29 Washington Sea Grant'),
(31155, 'https://ror.org/02jy9d058', 'en', 1, 'https://ror.org/02jy9d058 Florida Space Grant Consortium'),
(31156, 'https://ror.org/01n6agm35', 'en', 1, 'https://ror.org/01n6agm35 Minnesota Sea Grant'),
(31157, 'https://ror.org/01cewrs34', 'en', 1, 'https://ror.org/01cewrs34 Menzies Foundation'),
(31158, 'https://ror.org/00xfvky15', 'en', 1, 'https://ror.org/00xfvky15 Ohio Sea Grant College Program'),
(31159, 'https://ror.org/012d8w472', 'en', 1, 'https://ror.org/012d8w472 Australia and New Zealand Banking Group'),
(31160, 'https://ror.org/01ds51411', 'en', 1, 'https://ror.org/01ds51411 Texas Sea Grant College Program'),
(31161, 'https://ror.org/046107075', 'en', 1, 'https://ror.org/046107075 Oregon Sea Grant'),
(31162, 'https://ror.org/02kzdnj79', 'en', 1, 'https://ror.org/02kzdnj79 South African Thoracic Society'),
(31163, 'https://ror.org/0218hya98', 'en', 1, 'https://ror.org/0218hya98 Department of Higher Education'),
(31164, 'https://ror.org/03ek62e72', 'en', 1, 'https://ror.org/03ek62e72 Public Health Agency'),
(31165, 'https://ror.org/04evq8811', 'en', 1, 'https://ror.org/04evq8811 State Library of New South Wales'),
(31166, 'https://ror.org/05vje5x10', 'en', 1, 'https://ror.org/05vje5x10 Vision Australia'),
(31167, 'https://ror.org/022d1jx60', 'en', 1, 'https://ror.org/022d1jx60 Lung Foundation Australia'),
(31168, 'https://ror.org/01q6vb404', 'en', 1, 'https://ror.org/01q6vb404 Department of Chemicals and Petrochemicals'),
(31169, 'https://ror.org/03fafnr39', 'en', 1, 'https://ror.org/03fafnr39 Transport Accident Commission'),
(31170, 'https://ror.org/020kdtk66', 'en', 1, 'https://ror.org/020kdtk66 Recruitment and Assesment Centre'),
(31171, 'https://ror.org/03zwkr441', 'en', 1, 'https://ror.org/03zwkr441 Association canadienne des optométristes Canadian Association Of Optometrists'),
(31172, 'https://ror.org/033r93f52', 'no_lang_code', 1, 'https://ror.org/033r93f52 Clothworkers Company (United Kingdom)'),
(31173, 'https://ror.org/0333xzh65', 'en', 1, 'https://ror.org/0333xzh65 Wolfson Foundation'),
(31174, 'https://ror.org/026m4hd24', 'en', 1, 'https://ror.org/026m4hd24 Kidney Health Australia'),
(31175, 'https://ror.org/03antpb48', 'en', 1, 'https://ror.org/03antpb48 Stem Cells Australia'),
(31176, 'https://ror.org/044446k52', 'en', 1, 'https://ror.org/044446k52 Beijing Academy of Food Sciences 北京食品科学研究院'),
(31177, 'https://ror.org/00yaw3b91', 'en', 1, 'https://ror.org/00yaw3b91 Arts and Culture Trust'),
(31178, 'https://ror.org/05fe24682', 'en', 1, 'https://ror.org/05fe24682 Northern Territory Environment Protection Authority'),
(31179, 'https://ror.org/02xbjfn31', 'en', 1, 'https://ror.org/02xbjfn31 Middle East Fertility Society'),
(31180, 'https://ror.org/01swjvn57', 'no_lang_code', 1, 'https://ror.org/01swjvn57 Qatari Diar (Qatar)'),
(31181, 'https://ror.org/04f786589', 'no_lang_code', 1, 'https://ror.org/04f786589 Chunghwa Telecom (Taiwan)'),
(31182, 'https://ror.org/058smmw67', 'en', 1, 'https://ror.org/058smmw67 Ian Potter Foundation'),
(31183, 'https://ror.org/045dnqy78', 'fr', 1, 'https://ror.org/045dnqy78 Conseil Régional du Languedoc-Roussillon'),
(31184, 'https://ror.org/044panr52', 'en', 1, 'https://ror.org/044panr52 Egyptian Petroleum Research Institute'),
(31185, 'https://ror.org/04m1j1t24', 'en', 1, 'https://ror.org/04m1j1t24 Australian Institute of Criminology'),
(31186, 'https://ror.org/03562m240', 'en', 1, 'https://ror.org/03562m240 Housing and Building National Research Center'),
(31187, 'https://ror.org/040gfwf91', 'no_lang_code', 1, 'https://ror.org/040gfwf91 EWE (Germany)'),
(31188, 'https://ror.org/03kgcsq08', 'no_lang_code', 1, 'https://ror.org/03kgcsq08 China State Construction Engineering (China) 中国建筑西南设计研究院有限公司'),
(31189, 'https://ror.org/0106d7657', 'en', 1, 'https://ror.org/0106d7657 Korea International Cooperation Agency 한국국제협력단'),
(31190, 'https://ror.org/05sprqy15', 'en', 1, 'https://ror.org/05sprqy15 Cambridge Commonwealth European and International Trust'),
(31191, 'https://ror.org/015rq8k57', 'no_lang_code', 1, 'https://ror.org/015rq8k57 Doosan Heavy Industries & Construction (South Korea)'),
(31192, 'https://ror.org/00chnhh80', 'en', 1, 'https://ror.org/00chnhh80 Carbon Management Canada'),
(31193, 'https://ror.org/04380ve97', 'en', 1, 'https://ror.org/04380ve97 Korea Communications Commission'),
(31194, 'https://ror.org/0444fnd49', 'en', 1, 'https://ror.org/0444fnd49 University of Southern California Sea Grant'),
(31195, 'https://ror.org/05vq9wd94', 'en', 1, 'https://ror.org/05vq9wd94 Gongju National Hospital 국립공주병원'),
(31196, 'https://ror.org/01zwr3j29', 'en', 1, 'https://ror.org/01zwr3j29 Nordic Joint Committee for Agricultural and Food Research'),
(31197, 'https://ror.org/03w805n83', 'fr', 1, 'https://ror.org/03w805n83 Conseil régional de Haute-Normandie'),
(31198, 'https://ror.org/04nr5bm84', 'en', 1, 'https://ror.org/04nr5bm84 Social Security Information Service'),
(31199, 'https://ror.org/01gpyzq83', 'fi', 1, 'https://ror.org/01gpyzq83 Jenny and Antti Wihuri Foundation Jenny ja Antti Wihurin Rahasto'),
(31200, 'https://ror.org/02ms27492', 'en', 1, 'https://ror.org/02ms27492 California Rice Research Board'),
(31201, 'https://ror.org/01kgxxx41', 'en', 1, 'https://ror.org/01kgxxx41 North Carolina Sea Grant'),
(31202, 'https://ror.org/01ksx6c70', 'en', 1, 'https://ror.org/01ksx6c70 Connecticut Sea Grant'),
(31203, 'https://ror.org/05efm5n07', 'en', 1, 'https://ror.org/05efm5n07 National Health Insurance Service'),
(31204, 'https://ror.org/029dygd35', 'en', 1, 'https://ror.org/029dygd35 National Institutes of Biotechnology Malaysia'),
(31205, 'https://ror.org/05370mv03', 'en', 1, 'https://ror.org/05370mv03 Woods Hole Sea Grant'),
(31206, 'https://ror.org/00hth4774', 'no_lang_code', 1, 'https://ror.org/00hth4774 HeyStaks Technologies (Ireland)'),
(31207, 'https://ror.org/0296ss903', 'en', 1, 'https://ror.org/0296ss903 Alberta Children’s Hospital Foundation'),
(31208, 'https://ror.org/0198c2b48', 'no_lang_code', 1, 'https://ror.org/0198c2b48 Japan Medi- Mental Institute'),
(31209, 'https://ror.org/01h8vbd96', 'en', 1, 'https://ror.org/01h8vbd96 Korea Drug Development Fund'),
(31210, 'https://ror.org/02vk7w417', 'en', 1, 'https://ror.org/02vk7w417 Welsh National College'),
(31211, 'https://ror.org/01n54ck79', 'en', 1, 'https://ror.org/01n54ck79 Dutch Dairy Association Nederlandse Zuivel Organisatie'),
(31212, 'https://ror.org/01tyn7n29', 'en', 1, 'https://ror.org/01tyn7n29 Prime Minister''s Office'),
(31213, 'https://ror.org/00f08y308', 'sv', 1, 'https://ror.org/00f08y308 Wilhelm & Martina Lundgrens Stiftelser'),
(31214, 'https://ror.org/05aycsg86', 'en', 1, 'https://ror.org/05aycsg86 Ministry of Aliyah and Immigrant Absorption Ministère de l''Alya et de l''Intégration'),
(31215, 'https://ror.org/03bgwd624', 'en', 1, 'https://ror.org/03bgwd624 Ministry of Foreign Affairs 대한민국 외교부'),
(31216, 'https://ror.org/02wx79d08', 'no_lang_code', 1, 'https://ror.org/02wx79d08 Taiwan Semiconductor Manufacturing Company (Taiwan) 台灣積體電路製造公司'),
(31217, 'https://ror.org/01axmbr32', 'de', 1, 'https://ror.org/01axmbr32 Thüringer Aufbaubank'),
(31218, 'https://ror.org/00azj3a07', 'en', 1, 'https://ror.org/00azj3a07 Ministry of Security and Public Administration'),
(31219, 'https://ror.org/02z0nsb22', 'en', 1, 'https://ror.org/02z0nsb22 Institute of Mountain Hazards and Environment 中国科学院水利部成都山地灾害与环境研究所'),
(31220, 'https://ror.org/00rmvjy83', 'en', 1, 'https://ror.org/00rmvjy83 Ministry of Civil Affairs 中华人民共和国民政部'),
(31221, 'https://ror.org/036p7gy85', 'en', 1, 'https://ror.org/036p7gy85 Secretariat of Environment and Natural Resources Secretaría del Medio Ambiente y Recursos Naturales'),
(31222, 'https://ror.org/0435dvj48', 'en', 1, 'https://ror.org/0435dvj48 Cultural Heritage Administration 문화재청'),
(31223, 'https://ror.org/04gmrm344', 'it', 1, 'https://ror.org/04gmrm344 Fondazione Monte di Bologna and Ravenna'),
(31224, 'https://ror.org/05j0gfp71', 'no_lang_code', 1, 'https://ror.org/05j0gfp71 Daewoong Pharmaceutical (South Korea) 대웅제약'),
(31225, 'https://ror.org/05xwwfy96', 'en', 1, 'https://ror.org/05xwwfy96 German National Academic Foundation Studienstiftung des deutschen Volkes'),
(31226, 'https://ror.org/005rt3g54', 'fi', 1, 'https://ror.org/005rt3g54 Emil Aaltosen Säätiö'),
(31227, 'https://ror.org/05mx11h55', 'en', 1, 'https://ror.org/05mx11h55 Ministry of Agriculture and Agro Based Industry'),
(31228, 'https://ror.org/02p89gk05', 'en', 1, 'https://ror.org/02p89gk05 Swedish Municipal Workers'' Union'),
(31229, 'https://ror.org/01xsqqn76', 'en', 1, 'https://ror.org/01xsqqn76 Ministry of Education and Science of Perm Region'),
(31230, 'https://ror.org/04xbqmj23', 'en', 1, 'https://ror.org/04xbqmj23 Indian National Centre for Ocean Information Services'),
(31231, 'https://ror.org/031zfq432', 'no_lang_code', 1, 'https://ror.org/031zfq432 Ferring Pharmaceuticals (Switzerland)'),
(31232, 'https://ror.org/03b7vrw33', 'fr', 1, 'https://ror.org/03b7vrw33 Conseil Régional d''Auvergne'),
(31233, 'https://ror.org/00yp7b787', 'en', 1, 'https://ror.org/00yp7b787 Applied Scientific Research Fund'),
(31234, 'https://ror.org/019xtsv53', 'en', 1, 'https://ror.org/019xtsv53 Assar Gabrielsson Foundation Stiftelsen Assar Gabrielssons Fond'),
(31235, 'https://ror.org/0211vdk93', 'en', 1, 'https://ror.org/0211vdk93 Belgian Development Agency'),
(31236, 'https://ror.org/03hkh9419', 'no_lang_code', 1, 'https://ror.org/03hkh9419 China Southern Power Grid (China)'),
(31237, 'https://ror.org/054kvr030', 'en', 1, 'https://ror.org/054kvr030 University System of Taiwan'),
(31238, 'https://ror.org/02qx2s478', 'en', 1, 'https://ror.org/02qx2s478 Southern and Eastern Norway Regional Health Authority'),
(31239, 'https://ror.org/04djvx395', 'en', 1, 'https://ror.org/04djvx395 Foundation for Research Support of the Federal District'),
(31240, 'https://ror.org/04ene8p36', 'en', 1, 'https://ror.org/04ene8p36 Commission for Scientific Investigations in Greenland Kommissionen for Videnskabelige Undersøgelser i Grønland'),
(31241, 'https://ror.org/04g6qfd94', 'en', 1, 'https://ror.org/04g6qfd94 European Foundation for Alcohol Research'),
(31242, 'https://ror.org/02d9dkk61', 'en', 1, 'https://ror.org/02d9dkk61 Gout Research Foundation'),
(31243, 'https://ror.org/01mre6t58', 'en', 1, 'https://ror.org/01mre6t58 Pan African Urological Surgeons Association'),
(31244, 'https://ror.org/020dg9f27', 'en', 1, 'https://ror.org/020dg9f27 Keelung Chang Gung Memorial Hospital'),
(31245, 'https://ror.org/00fk9d670', 'en', 1, 'https://ror.org/00fk9d670 Taoyuan Chang Gung Memorial Hospital'),
(31246, 'https://ror.org/047gav625', 'no_lang_code', 1, 'https://ror.org/047gav625 Skyonic (United States)'),
(31247, 'https://ror.org/0268acg39', 'no_lang_code', 1, 'https://ror.org/0268acg39 SCS Energy (United States)'),
(31248, 'https://ror.org/050fxb616', 'no_lang_code', 1, 'https://ror.org/050fxb616 Solidia Technologies (United States)'),
(31249, 'https://ror.org/01a2pr469', 'en', 1, 'https://ror.org/01a2pr469 Naval Research Board नौसेना अनुसंधान बोर्ड'),
(31250, 'https://ror.org/03vtpmc73', 'en', 1, 'https://ror.org/03vtpmc73 Institute of Archaeology'),
(31251, 'https://ror.org/046nkt812', 'no_lang_code', 1, 'https://ror.org/046nkt812 8 Rivers Capital (United States)'),
(31252, 'https://ror.org/0153ngy95', 'en', 1, 'https://ror.org/0153ngy95 Southern Research Institute'),
(31253, 'https://ror.org/047kyy460', 'no_lang_code', 1, 'https://ror.org/047kyy460 Advanced Resources International (United States)'),
(31254, 'https://ror.org/00tqhym28', 'en', 1, 'https://ror.org/00tqhym28 Institute of Croatian Language and Linguistics'),
(31255, 'https://ror.org/00wmm1d15', 'en', 1, 'https://ror.org/00wmm1d15 Institute of Art History'),
(31256, 'https://ror.org/039872b94', 'no_lang_code', 1, 'https://ror.org/039872b94 Summit Power Group (United States)'),
(31257, 'https://ror.org/01ydrx675', 'no_lang_code', 1, 'https://ror.org/01ydrx675 Air Products (United States)'),
(31258, 'https://ror.org/04kzdy639', 'en', 1, 'https://ror.org/04kzdy639 Institute for Development and International Relations'),
(31259, 'https://ror.org/02ajxzc79', 'no_lang_code', 1, 'https://ror.org/02ajxzc79 Thar Energy (United States)'),
(31260, 'https://ror.org/02pvr8q36', 'de', 1, 'https://ror.org/02pvr8q36 Berufbildungsschule Winterthur'),
(31261, 'https://ror.org/01140r423', 'en', 1, 'https://ror.org/01140r423 Israel Institute for Advanced Studies'),
(31262, 'https://ror.org/03ycz8v76', 'en', 1, 'https://ror.org/03ycz8v76 Bosque School'),
(31263, 'https://ror.org/00tf8zn82', 'no_lang_code', 1, 'https://ror.org/00tf8zn82 Altex Technologies Corporation (United States)'),
(31264, 'https://ror.org/04g99jx54', 'en', 1, 'https://ror.org/04g99jx54 Fachhochschule Stralsund University of Applied Sciences Stralsund'),
(31265, 'https://ror.org/0499r1e09', 'no_lang_code', 1, 'https://ror.org/0499r1e09 Archer Daniels Midland (United States)'),
(31266, 'https://ror.org/041jx2z70', 'en', 1, 'https://ror.org/041jx2z70 Triangle Research and Development Center'),
(31267, 'https://ror.org/01gehdq90', 'no_lang_code', 1, 'https://ror.org/01gehdq90 Yad Ben Zvi'),
(31268, 'https://ror.org/00wgjgc44', 'no_lang_code', 1, 'https://ror.org/00wgjgc44 Cellworks Research (India)'),
(31269, 'https://ror.org/028kxkn33', 'no_lang_code', 1, 'https://ror.org/028kxkn33 Brayton Energy (United States)'),
(31270, 'https://ror.org/02qmw3e81', 'en', 1, 'https://ror.org/02qmw3e81 Centre of Plasma Physics - Institute for Plasma Research प्लाज्मा अनुसंधान संस्थान பிளாசுமா ஆராய்ச்சி நிறுவனம்'),
(31271, 'https://ror.org/008q5qf73', 'en', 1, 'https://ror.org/008q5qf73 Edison Welding Institute'),
(31272, 'https://ror.org/014nyvw32', 'pt', 1, 'https://ror.org/014nyvw32 Centro de Educação Profissional em Tecnologia da Informação de Petrópolis'),
(31273, 'https://ror.org/01t75ff47', 'en', 1, 'https://ror.org/01t75ff47 Fernfachhochschule Schweiz Swiss Distance University of Applied Sciences'),
(31274, 'https://ror.org/05rwjyj14', 'en', 1, 'https://ror.org/05rwjyj14 Fusion Academy'),
(31275, 'https://ror.org/00nggaz43', 'en', 1, 'https://ror.org/00nggaz43 Georg Simon Ohm University of Applied Sciences Nuremberg Technische Hochschule Nürnberg Georg Simon Ohm'),
(31276, 'https://ror.org/031zdk170', 'no_lang_code', 1, 'https://ror.org/031zdk170 Florida Turbine Technologies (United States)'),
(31277, 'https://ror.org/01j78w442', 'en', 1, 'https://ror.org/01j78w442 Germantown Academy'),
(31278, 'https://ror.org/00kj8fh75', 'no_lang_code', 1, 'https://ror.org/00kj8fh75 Multi-Phase Technologies (United States)'),
(31279, 'https://ror.org/02gp2h315', 'no_lang_code', 1, 'https://ror.org/02gp2h315 FuelCell Energy (United States)'),
(31280, 'https://ror.org/03htsh285', 'no_lang_code', 1, 'https://ror.org/03htsh285 Sigma³ (United States)'),
(31281, 'https://ror.org/00s8ey170', 'no_lang_code', 1, 'https://ror.org/00s8ey170 Paulsson (United States)'),
(31282, 'https://ror.org/040nxjw81', 'fr', 1, 'https://ror.org/040nxjw81 Haute École de Bruxelles'),
(31283, 'https://ror.org/05j7hv850', 'no_lang_code', 1, 'https://ror.org/05j7hv850 GeoMechanics Technologies (United States)'),
(31284, 'https://ror.org/01jg6rj30', 'en', 1, 'https://ror.org/01jg6rj30 College of the Albemarle'),
(31285, 'https://ror.org/01cx8sm26', 'pt', 1, 'https://ror.org/01cx8sm26 Universidade Sociedade Educacional de Santa Catarina'),
(31286, 'https://ror.org/007vkx321', 'en', 1, 'https://ror.org/007vkx321 Energy Industries of Ohio'),
(31287, 'https://ror.org/00py6j950', 'no_lang_code', 1, 'https://ror.org/00py6j950 QuesTek (United States)'),
(31288, 'https://ror.org/032tyv240', 'en', 1, 'https://ror.org/032tyv240 Institute of Molecular Science and Technologies Istituto di Scienze e Tecnologie Molecolari'),
(31289, 'https://ror.org/04b4jcw62', 'no_lang_code', 1, 'https://ror.org/04b4jcw62 Geostock (United States)'),
(31290, 'https://ror.org/01nz9v648', 'no_lang_code', 1, 'https://ror.org/01nz9v648 HiFunda (United States)'),
(31291, 'https://ror.org/05cxkpp05', 'en', 1, 'https://ror.org/05cxkpp05 DigiPen Institute of Technology'),
(31292, 'https://ror.org/0436y2h42', 'de', 1, 'https://ror.org/0436y2h42 Hermann Staudinger Gymnasium'),
(31293, 'https://ror.org/057mh7566', 'en', 1, 'https://ror.org/057mh7566 MiraCosta College'),
(31294, 'https://ror.org/00hvk3c79', 'en', 1, 'https://ror.org/00hvk3c79 Maharaj Vijayaram Gajapathi Raj College of Engineering'),
(31295, 'https://ror.org/019axjh19', 'fr', 1, 'https://ror.org/019axjh19 ECAM Institut Supérieur Industriel'),
(31296, 'https://ror.org/009fatj68', 'en', 1, 'https://ror.org/009fatj68 Riga High Tech University'),
(31297, 'https://ror.org/040bs6h16', 'en', 1, 'https://ror.org/040bs6h16 National Chin-Yi University of Technology'),
(31298, 'https://ror.org/04gwzr713', 'fr', 1, 'https://ror.org/04gwzr713 Ingésup'),
(31299, 'https://ror.org/021t0p839', 'en', 1, 'https://ror.org/021t0p839 Santa Rosa Junior College'),
(31300, 'https://ror.org/033904843', 'en', 1, 'https://ror.org/033904843 New Economic School Российская экономическая школа'),
(31301, 'https://ror.org/017ef8252', 'en', 1, 'https://ror.org/017ef8252 Institute for System Programming Институт системного программирования'),
(31302, 'https://ror.org/02nkxrq89', 'en', 1, 'https://ror.org/02nkxrq89 Hochschule Ruhr West Ruhr West University of Applied Sciences'),
(31303, 'https://ror.org/03f9nc143', 'en', 1, 'https://ror.org/03f9nc143 Skolkovo Institute of Science and Technology Сколковский институт науки и технологий'),
(31304, 'https://ror.org/05mh8bc44', 'en', 1, 'https://ror.org/05mh8bc44 Manchester Grammar School'),
(31305, 'https://ror.org/025n1fp68', 'pt', 1, 'https://ror.org/025n1fp68 Institute of Aeronautics and Space Instituto de Aeronáutica e Espaço'),
(31306, 'https://ror.org/03yfnx990', 'no_lang_code', 1, 'https://ror.org/03yfnx990 Advanced Emissions Solutions (United States)'),
(31307, 'https://ror.org/05jf1ma54', 'de', 1, 'https://ror.org/05jf1ma54 Bern University of Teacher Education Pädagogische Hochschule Bern'),
(31308, 'https://ror.org/04nnrzq56', 'en', 1, 'https://ror.org/04nnrzq56 Sextures Institute'),
(31309, 'https://ror.org/05xzvxw52', 'es', 1, 'https://ror.org/05xzvxw52 Universidad Aeronáutica en Querétaro'),
(31310, 'https://ror.org/02vzf2422', 'en', 1, 'https://ror.org/02vzf2422 Academia de la Marina Mercante de los Estados Unidos Académie de la marine marchande des États-unis United States Merchant Marine Academy'),
(31311, 'https://ror.org/03w6rv149', 'pt', 1, 'https://ror.org/03w6rv149 Instituto Federal de Educação Ciência e Tecnologia do Norte de Minas Gerais'),
(31312, 'https://ror.org/00c6qf472', 'pt', 1, 'https://ror.org/00c6qf472 Instituto Infnet'),
(31313, 'https://ror.org/02g36m681', 'es', 1, 'https://ror.org/02g36m681 Instituto Tecnológico de Soledad Atlántico'),
(31314, 'https://ror.org/04r8wdj07', 'en', 1, 'https://ror.org/04r8wdj07 Kansas Public Schools'),
(31315, 'https://ror.org/057m37z25', 'en', 1, 'https://ror.org/057m37z25 Maine School of Science and Mathematics'),
(31316, 'https://ror.org/0023ydp64', 'en', 1, 'https://ror.org/0023ydp64 Malden Public Schools'),
(31317, 'https://ror.org/02np5p423', 'no_lang_code', 1, 'https://ror.org/02np5p423 Uganda Clays (Uganda)'),
(31318, 'https://ror.org/04s4s0979', 'en', 1, 'https://ror.org/04s4s0979 NIHR Leicester Respiratory Biomedical Research Unit'),
(31319, 'https://ror.org/05kt92j68', 'en', 1, 'https://ror.org/05kt92j68 Access Technologies'),
(31320, 'https://ror.org/02jx81v73', 'no_lang_code', 1, 'https://ror.org/02jx81v73 Academic Software (United States)'),
(31321, 'https://ror.org/059hh8s03', 'en', 1, 'https://ror.org/059hh8s03 Arc of the United States'),
(31322, 'https://ror.org/05tmhhz44', 'en', 1, 'https://ror.org/05tmhhz44 Access Technologies Group'),
(31323, 'https://ror.org/04mhnz122', 'en', 1, 'https://ror.org/04mhnz122 Assistive Technology Resource Centers of Hawaii'),
(31324, 'https://ror.org/007xevs95', 'no_lang_code', 1, 'https://ror.org/007xevs95 Metalite Industries (United States)'),
(31325, 'https://ror.org/031zhyz22', 'en', 1, 'https://ror.org/031zhyz22 Institute for Human Centered Design'),
(31326, 'https://ror.org/04q2v3586', 'en', 1, 'https://ror.org/04q2v3586 Devereux'),
(31327, 'https://ror.org/04rnkb958', 'en', 1, 'https://ror.org/04rnkb958 Hillside Rehabilitation Hospital'),
(31328, 'https://ror.org/03th3y983', 'en', 1, 'https://ror.org/03th3y983 Chicago House and Social Service Agency'),
(31329, 'https://ror.org/059nraq63', 'no_lang_code', 1, 'https://ror.org/059nraq63 Automatic Sync Technologies (United States)'),
(31330, 'https://ror.org/01y0rg445', 'no_lang_code', 1, 'https://ror.org/01y0rg445 AventuSoft (United States)'),
(31331, 'https://ror.org/0018p0n86', 'en', 1, 'https://ror.org/0018p0n86 Alabama Department of Rehabilitation Services'),
(31332, 'https://ror.org/02m0sxt16', 'en', 1, 'https://ror.org/02m0sxt16 Illinois Assistive Technology Program'),
(31333, 'https://ror.org/05f6k3t36', 'en', 1, 'https://ror.org/05f6k3t36 Henry Viscardi School'),
(31334, 'https://ror.org/02zz5ef94', 'en', 1, 'https://ror.org/02zz5ef94 Clarke Schools for Hearing and Speech'),
(31335, 'https://ror.org/05pc4pd06', 'en', 1, 'https://ror.org/05pc4pd06 Alaska Department of Labor and Workforce Development'),
(31336, 'https://ror.org/00c9pzm73', 'en', 1, 'https://ror.org/00c9pzm73 Easterseals'),
(31337, 'https://ror.org/02nkwwe88', 'en', 1, 'https://ror.org/02nkwwe88 Minerva Brooks Memorial Library'),
(31338, 'https://ror.org/04nk31t13', 'no_lang_code', 1, 'https://ror.org/04nk31t13 Community Options (United States)'),
(31339, 'https://ror.org/02nz03g03', 'en', 1, 'https://ror.org/02nz03g03 American Foundation for the Blind'),
(31340, 'https://ror.org/01scb6a48', 'no_lang_code', 1, 'https://ror.org/01scb6a48 EM Photonics (United States)'),
(31341, 'https://ror.org/035w40502', 'en', 1, 'https://ror.org/035w40502 Institute for Learning and Development'),
(31342, 'https://ror.org/03n9v8v45', 'en', 1, 'https://ror.org/03n9v8v45 Community Services for Autistic Adults and Children'),
(31343, 'https://ror.org/021g6m489', 'en', 1, 'https://ror.org/021g6m489 American Printing House for the Blind'),
(31344, 'https://ror.org/00ad2fh66', 'no_lang_code', 1, 'https://ror.org/00ad2fh66 Dental Rat (United States)'),
(31345, 'https://ror.org/05cp34c97', 'en', 1, 'https://ror.org/05cp34c97 ENDependence Center of Northern Virginia'),
(31346, 'https://ror.org/05jfe3192', 'en', 1, 'https://ror.org/05jfe3192 Connecticut Department of Social Services'),
(31347, 'https://ror.org/04vnmgz72', 'no_lang_code', 1, 'https://ror.org/04vnmgz72 Anholt Technologies (United States)'),
(31348, 'https://ror.org/00ryqe969', 'no_lang_code', 1, 'https://ror.org/00ryqe969 Engineering Associates (United States)'),
(31349, 'https://ror.org/02qkmsm66', 'no_lang_code', 1, 'https://ror.org/02qkmsm66 Control Systems Research (United States)'),
(31350, 'https://ror.org/02vvx3p07', 'no_lang_code', 1, 'https://ror.org/02vvx3p07 TeachTown (United States)'),
(31351, 'https://ror.org/0052sz171', 'no_lang_code', 1, 'https://ror.org/0052sz171 Enhanced Vision (United States)'),
(31352, 'https://ror.org/00dqyqs74', 'en', 1, 'https://ror.org/00dqyqs74 California Foundation for Independent Living Centers'),
(31353, 'https://ror.org/051w9pj35', 'en', 1, 'https://ror.org/051w9pj35 Integrated Behavioral Technologies'),
(31354, 'https://ror.org/0268nwh16', 'en', 1, 'https://ror.org/0268nwh16 Carroll Center for the Blind'),
(31355, 'https://ror.org/05014nn74', 'no_lang_code', 1, 'https://ror.org/05014nn74 CreateAbility Concepts (United States)'),
(31356, 'https://ror.org/03p0jv517', 'en', 1, 'https://ror.org/03p0jv517 Eugene Research Institute'),
(31357, 'https://ror.org/02fd57127', 'no_lang_code', 1, 'https://ror.org/02fd57127 Criterion Health (United States)'),
(31358, 'https://ror.org/04f1s4r56', 'en', 1, 'https://ror.org/04f1s4r56 Psychiatric Rehabilitation Association'),
(31359, 'https://ror.org/00rqzt374', 'no_lang_code', 1, 'https://ror.org/00rqzt374 Dane Technologies (United States)'),
(31360, 'https://ror.org/00gq9jc61', 'no_lang_code', 1, 'https://ror.org/00gq9jc61 Custom Technology (United States)'),
(31361, 'https://ror.org/02r5jp158', 'en', 1, 'https://ror.org/02r5jp158 Center for International Rehabilitation'),
(31362, 'https://ror.org/05qwshn40', 'no_lang_code', 1, 'https://ror.org/05qwshn40 CYBER Learning Corporation (United States)'),
(31363, 'https://ror.org/00f012347', 'no_lang_code', 1, 'https://ror.org/00f012347 InternetSpeech (United States)'),
(31364, 'https://ror.org/005570a84', 'no_lang_code', 1, 'https://ror.org/005570a84 DakotaLink (United States)'),
(31365, 'https://ror.org/02pr6am85', 'en', 1, 'https://ror.org/02pr6am85 Arkansas Department of Career Education'),
(31366, 'https://ror.org/055n66f64', 'no_lang_code', 1, 'https://ror.org/055n66f64 Dancing Dots (United States)'),
(31367, 'https://ror.org/00w8gjz75', 'en', 1, 'https://ror.org/00w8gjz75 Iowa Department for the Blind'),
(31368, 'https://ror.org/01rg81308', 'no_lang_code', 1, 'https://ror.org/01rg81308 Flint Rehabilitation Devices (United States)'),
(31369, 'https://ror.org/031m8pd59', 'en', 1, 'https://ror.org/031m8pd59 South Carolina Vocational Rehabilitation Department'),
(31370, 'https://ror.org/00g5vpp27', 'en', 1, 'https://ror.org/00g5vpp27 Iowa Finance Authority'),
(31371, 'https://ror.org/02knm8c59', 'en', 1, 'https://ror.org/02knm8c59 Departamento de Educación de la Florida Florida Department of Education'),
(31372, 'https://ror.org/00vc5fc11', 'no_lang_code', 1, 'https://ror.org/00vc5fc11 Data Harbor (United States)'),
(31373, 'https://ror.org/055e0bc90', 'en', 1, 'https://ror.org/055e0bc90 JEVS Human Services'),
(31374, 'https://ror.org/00j9qx055', 'en', 1, 'https://ror.org/00j9qx055 Maryland Department of Disabilities'),
(31375, 'https://ror.org/03tcfa010', 'en', 1, 'https://ror.org/03tcfa010 Nevada Department of Employment Training and Rehabilitation'),
(31376, 'https://ror.org/05c7nfs29', 'en', 1, 'https://ror.org/05c7nfs29 Commission on Rehabilitation Counselor Certification'),
(31377, 'https://ror.org/01ehxp168', 'en', 1, 'https://ror.org/01ehxp168 Kentucky Assistive Technology Services Network'),
(31378, 'https://ror.org/03pwapz26', 'en', 1, 'https://ror.org/03pwapz26 American Foundation for Children with AIDS'),
(31379, 'https://ror.org/02np0kc30', 'en', 1, 'https://ror.org/02np0kc30 CESSI'),
(31380, 'https://ror.org/05m0n6v74', 'en', 1, 'https://ror.org/05m0n6v74 Kentucky Office of Vocational Rehabilitation'),
(31381, 'https://ror.org/012dbxn21', 'no_lang_code', 1, 'https://ror.org/012dbxn21 Marucco Stoddard Ferenbach and Walsh (United States)'),
(31382, 'https://ror.org/05q5vb956', 'no_lang_code', 1, 'https://ror.org/05q5vb956 Learnimation (United States)'),
(31383, 'https://ror.org/0220qmg06', 'no_lang_code', 1, 'https://ror.org/0220qmg06 Charmtech Labs (United States)'),
(31384, 'https://ror.org/05jjpbn70', 'en', 1, 'https://ror.org/05jjpbn70 Alliance for Technology Access'),
(31385, 'https://ror.org/03fa61n31', 'no_lang_code', 1, 'https://ror.org/03fa61n31 PR & Company (United States)'),
(31386, 'https://ror.org/00yj47665', 'en', 1, 'https://ror.org/00yj47665 Lee County Board of Commissioners'),
(31387, 'https://ror.org/04erqh270', 'no_lang_code', 1, 'https://ror.org/04erqh270 Liberating Technologies (United States)'),
(31388, 'https://ror.org/01tdhf121', 'en', 1, 'https://ror.org/01tdhf121 Parent Information Center'),
(31389, 'https://ror.org/00kzn0453', 'en', 1, 'https://ror.org/00kzn0453 Viscardi Center'),
(31390, 'https://ror.org/02xx4aw44', 'en', 1, 'https://ror.org/02xx4aw44 Peak Parent Center'),
(31391, 'https://ror.org/051xfvw62', 'no_lang_code', 1, 'https://ror.org/051xfvw62 Futures in Rehabilitation Management (United States)'),
(31392, 'https://ror.org/04qysqs39', 'en', 1, 'https://ror.org/04qysqs39 Georgia Department of Labor'),
(31393, 'https://ror.org/016qjmh37', 'no_lang_code', 1, 'https://ror.org/016qjmh37 LINC Design (United States)'),
(31394, 'https://ror.org/038h9a412', 'en', 1, 'https://ror.org/038h9a412 National League of Cities'),
(31395, 'https://ror.org/012gvd160', 'no_lang_code', 1, 'https://ror.org/012gvd160 Good Nutrition Ideas (United States)'),
(31396, 'https://ror.org/00zwndh37', 'no_lang_code', 1, 'https://ror.org/00zwndh37 Amtrak (United States)'),
(31397, 'https://ror.org/05249qj80', 'en', 1, 'https://ror.org/05249qj80 Positive Behavioral Solutions'),
(31398, 'https://ror.org/03fn5kb59', 'no_lang_code', 1, 'https://ror.org/03fn5kb59 PresenceLearning (United States)'),
(31399, 'https://ror.org/059bes354', 'en', 1, 'https://ror.org/059bes354 Minnesota Department of Administration'),
(31400, 'https://ror.org/038mg2014', 'en', 1, 'https://ror.org/038mg2014 Maine CITE Coordinating Center'),
(31401, 'https://ror.org/04ysbng93', 'en', 1, 'https://ror.org/04ysbng93 RAF Models & Displays'),
(31402, 'https://ror.org/041n00p08', 'no_lang_code', 1, 'https://ror.org/041n00p08 Ready Set Sign (United States)'),
(31403, 'https://ror.org/01scetz04', 'en', 1, 'https://ror.org/01scetz04 National Disability Institute'),
(31404, 'https://ror.org/043bbp842', 'no_lang_code', 1, 'https://ror.org/043bbp842 EyeTalk Systems (United States)'),
(31405, 'https://ror.org/03pfyd630', 'en', 1, 'https://ror.org/03pfyd630 Lourie Center for Children''s Social & Emotional Wellness'),
(31406, 'https://ror.org/023844j81', 'en', 1, 'https://ror.org/023844j81 Massachusetts Rehabilitation Commission'),
(31407, 'https://ror.org/043egek32', 'en', 1, 'https://ror.org/043egek32 Neighborhood Legal Services'),
(31408, 'https://ror.org/059xj7p12', 'en', 1, 'https://ror.org/059xj7p12 Matheny Hospital'),
(31409, 'https://ror.org/03xc04149', 'no_lang_code', 1, 'https://ror.org/03xc04149 Numotion (United States)'),
(31410, 'https://ror.org/04vc8w180', 'no_lang_code', 1, 'https://ror.org/04vc8w180 New Editions Consulting (United States)'),
(31411, 'https://ror.org/05ar16409', 'no_lang_code', 1, 'https://ror.org/05ar16409 Med Graph (United States)'),
(31412, 'https://ror.org/02gx43549', 'en', 1, 'https://ror.org/02gx43549 Departamento de Educación Pública de Nuevo México New Mexico Public Education Department'),
(31413, 'https://ror.org/01an3s209', 'no_lang_code', 1, 'https://ror.org/01an3s209 Technical Resource Group (United States)'),
(31414, 'https://ror.org/047t8cy26', 'no_lang_code', 1, 'https://ror.org/047t8cy26 Research Solutions International (United States)'),
(31415, 'https://ror.org/04y9h8038', 'no_lang_code', 1, 'https://ror.org/04y9h8038 Seamless Solutions (United States)'),
(31416, 'https://ror.org/05bwra959', 'no_lang_code', 1, 'https://ror.org/05bwra959 Nian-Crae (United States)'),
(31417, 'https://ror.org/02n9m6n25', 'no_lang_code', 1, 'https://ror.org/02n9m6n25 Meeting the Challenge (United States)'),
(31418, 'https://ror.org/01ceg2d52', 'en', 1, 'https://ror.org/01ceg2d52 Rhode Island Department of Human Services'),
(31419, 'https://ror.org/04ebjet06', 'en', 1, 'https://ror.org/04ebjet06 Michigan Disability Rights Coalition'),
(31420, 'https://ror.org/05qnvg564', 'no_lang_code', 1, 'https://ror.org/05qnvg564 Rehab Ideas (United States)'),
(31421, 'https://ror.org/029ke3y74', 'en', 1, 'https://ror.org/029ke3y74 SEE Center'),
(31422, 'https://ror.org/00yv7ry10', 'en', 1, 'https://ror.org/00yv7ry10 Mississippi Department of Rehabilitation Services'),
(31423, 'https://ror.org/02syt4h28', 'no_lang_code', 1, 'https://ror.org/02syt4h28 Sendero Group (United States)'),
(31424, 'https://ror.org/03pdrba07', 'no_lang_code', 1, 'https://ror.org/03pdrba07 Sandbox Learning (United States)'),
(31425, 'https://ror.org/03f89nr30', 'en', 1, 'https://ror.org/03f89nr30 Sensory Access Foundation'),
(31426, 'https://ror.org/02djzdr35', 'no_lang_code', 1, 'https://ror.org/02djzdr35 Synfonica (United States)'),
(31427, 'https://ror.org/033zf9867', 'en', 1, 'https://ror.org/033zf9867 Missouri Department of Labor and Industrial Relations'),
(31428, 'https://ror.org/0339vy375', 'en', 1, 'https://ror.org/0339vy375 TransCen'),
(31429, 'https://ror.org/03s8rh204', 'en', 1, 'https://ror.org/03s8rh204 University Legal Services'),
(31430, 'https://ror.org/033cz6738', 'en', 1, 'https://ror.org/033cz6738 Oklahoma Department of Rehabilitation Services'),
(31431, 'https://ror.org/04xwjyh18', 'en', 1, 'https://ror.org/04xwjyh18 SKIP of New York'),
(31432, 'https://ror.org/039zy9n12', 'no_lang_code', 1, 'https://ror.org/039zy9n12 OmegaWare (United States)'),
(31433, 'https://ror.org/04xt42358', 'en', 1, 'https://ror.org/04xt42358 Tennessee Department of Human Services'),
(31434, 'https://ror.org/021kp0270', 'no_lang_code', 1, 'https://ror.org/021kp0270 SoarTech (United States)'),
(31435, 'https://ror.org/02vz36p73', 'no_lang_code', 1, 'https://ror.org/02vz36p73 Prevention Group'),
(31436, 'https://ror.org/008g2yb06', 'no_lang_code', 1, 'https://ror.org/008g2yb06 Opus Technologies (United States)'),
(31437, 'https://ror.org/0143g4710', 'en', 1, 'https://ror.org/0143g4710 Lexington School for the Deaf'),
(31438, 'https://ror.org/04pyyzw22', 'en', 1, 'https://ror.org/04pyyzw22 Western Pennsylvania School for Blind Children'),
(31439, 'https://ror.org/03f0wr475', 'no_lang_code', 1, 'https://ror.org/03f0wr475 Veritune (United States)'),
(31440, 'https://ror.org/001rv3303', 'en', 1, 'https://ror.org/001rv3303 Vermont Center for Independent Living'),
(31441, 'https://ror.org/04089t965', 'en', 1, 'https://ror.org/04089t965 Abraham Baldwin Agricultural College'),
(31442, 'https://ror.org/04zmvq270', 'no_lang_code', 1, 'https://ror.org/04zmvq270 Wizdom Systems (United States)'),
(31443, 'https://ror.org/0046kpv26', 'en', 1, 'https://ror.org/0046kpv26 World Institute on Disability'),
(31444, 'https://ror.org/04bbq7097', 'no_lang_code', 1, 'https://ror.org/04bbq7097 Spirit Lake Consulting (United States)'),
(31445, 'https://ror.org/027g2v939', 'en', 1, 'https://ror.org/027g2v939 Vermont Department of Disabilities Aging and Independent Living'),
(31446, 'https://ror.org/02thhxe24', 'en', 1, 'https://ror.org/02thhxe24 Alaska Bible College'),
(31447, 'https://ror.org/03kmh7v63', 'en', 1, 'https://ror.org/03kmh7v63 Virginia Department for Aging and Rehabilitative Services'),
(31448, 'https://ror.org/035skgh09', 'en', 1, 'https://ror.org/035skgh09 Comisión para la Igualdad de Oportunidades en el Empleo de los Estados Unidos United States Equal Employment Opportunity Commission'),
(31449, 'https://ror.org/00vapxw25', 'en', 1, 'https://ror.org/00vapxw25 American Academy of Art'),
(31450, 'https://ror.org/04hgt1t77', 'en', 1, 'https://ror.org/04hgt1t77 Centenary College of New Jersey'),
(31451, 'https://ror.org/02kt0tf86', 'en', 1, 'https://ror.org/02kt0tf86 Davis College - New York'),
(31452, 'https://ror.org/043mcwe63', 'en', 1, 'https://ror.org/043mcwe63 Lake Forest Graduate School of Management'),
(31453, 'https://ror.org/00b44sj21', 'en', 1, 'https://ror.org/00b44sj21 Dean College'),
(31454, 'https://ror.org/05w4c2r57', 'en', 1, 'https://ror.org/05w4c2r57 Digital Media Arts College'),
(31455, 'https://ror.org/04cey8951', 'en', 1, 'https://ror.org/04cey8951 Lancaster Bible College'),
(31456, 'https://ror.org/04n4x0209', 'en', 1, 'https://ror.org/04n4x0209 College for Creative Studies'),
(31457, 'https://ror.org/04fexsb73', 'en', 1, 'https://ror.org/04fexsb73 Emmaus Bible College'),
(31458, 'https://ror.org/033jxn043', 'en', 1, 'https://ror.org/033jxn043 Washington State Department of Commerce'),
(31459, 'https://ror.org/04dnqhj72', 'en', 1, 'https://ror.org/04dnqhj72 Central Christian College of Kansas'),
(31460, 'https://ror.org/01gsckf69', 'en', 1, 'https://ror.org/01gsckf69 Central Christian College of the Bible'),
(31461, 'https://ror.org/05jthwf86', 'no_lang_code', 1, 'https://ror.org/05jthwf86 KWI Group (United States)'),
(31462, 'https://ror.org/04jhpx964', 'en', 1, 'https://ror.org/04jhpx964 Washington Employment Security Department'),
(31463, 'https://ror.org/01r494568', 'en', 1, 'https://ror.org/01r494568 Life Pacific College'),
(31464, 'https://ror.org/04kczqa55', 'en', 1, 'https://ror.org/04kczqa55 Central Penn College'),
(31465, 'https://ror.org/05npsjk50', 'en', 1, 'https://ror.org/05npsjk50 Limestone College'),
(31466, 'https://ror.org/04x12sm71', 'en', 1, 'https://ror.org/04x12sm71 Century University'),
(31467, 'https://ror.org/010bgev76', 'en', 1, 'https://ror.org/010bgev76 Florida College'),
(31468, 'https://ror.org/026hjc247', 'en', 1, 'https://ror.org/026hjc247 Florida Southern College Universidad de Florida del Sur'),
(31469, 'https://ror.org/04j8pdt93', 'en', 1, 'https://ror.org/04j8pdt93 Chadwick University'),
(31470, 'https://ror.org/04fves619', 'en', 1, 'https://ror.org/04fves619 Forest Institute'),
(31471, 'https://ror.org/03xj38z92', 'en', 1, 'https://ror.org/03xj38z92 Welch College'),
(31472, 'https://ror.org/01g790094', 'en', 1, 'https://ror.org/01g790094 American University for Humanities'),
(31473, 'https://ror.org/007hqhx04', 'en', 1, 'https://ror.org/007hqhx04 New Saint Andrews College'),
(31474, 'https://ror.org/02jy5yr69', 'en', 1, 'https://ror.org/02jy5yr69 Golden State Baptist College'),
(31475, 'https://ror.org/0226byw17', 'en', 1, 'https://ror.org/0226byw17 Charter Oak State College'),
(31476, 'https://ror.org/04hhyx074', 'en', 1, 'https://ror.org/04hhyx074 Goldey–Beacom College'),
(31477, 'https://ror.org/00z7yba83', 'en', 1, 'https://ror.org/00z7yba83 New York Academy of Art'),
(31478, 'https://ror.org/00bd4cb30', 'en', 1, 'https://ror.org/00bd4cb30 Appalachian School of Law'),
(31479, 'https://ror.org/03d3pnq21', 'en', 1, 'https://ror.org/03d3pnq21 Christendom College'),
(31480, 'https://ror.org/01pckwj65', 'en', 1, 'https://ror.org/01pckwj65 Escuela de Cine de Nueva York New York Film Academy'),
(31481, 'https://ror.org/007735r88', 'en', 1, 'https://ror.org/007735r88 Arlington Baptist College'),
(31482, 'https://ror.org/02qxp9a05', 'en', 1, 'https://ror.org/02qxp9a05 Granite State College'),
(31483, 'https://ror.org/00dds9q45', 'en', 1, 'https://ror.org/00dds9q45 Maine College of Art'),
(31484, 'https://ror.org/021jv3185', 'en', 1, 'https://ror.org/021jv3185 Globe Institute of Technology'),
(31485, 'https://ror.org/003rdc798', 'en', 1, 'https://ror.org/003rdc798 Baker College'),
(31486, 'https://ror.org/041db3c58', 'en', 1, 'https://ror.org/041db3c58 Greenleaf University'),
(31487, 'https://ror.org/02p4b3a61', 'en', 1, 'https://ror.org/02p4b3a61 Christian Bible College and Seminary'),
(31488, 'https://ror.org/01vfsab41', 'en', 1, 'https://ror.org/01vfsab41 Faculté d''arts de l''université d''État de caroline du nord University of North Carolina School of the Arts'),
(31489, 'https://ror.org/02nxjps75', 'en', 1, 'https://ror.org/02nxjps75 Summit University'),
(31490, 'https://ror.org/0498yg883', 'en', 1, 'https://ror.org/0498yg883 Gutenberg College'),
(31491, 'https://ror.org/040wesb37', 'en', 1, 'https://ror.org/040wesb37 Barclay College'),
(31492, 'https://ror.org/008a9hf75', 'en', 1, 'https://ror.org/008a9hf75 City University of Seattle'),
(31493, 'https://ror.org/00k71kh37', 'en', 1, 'https://ror.org/00k71kh37 Clark College'),
(31494, 'https://ror.org/029yy5f63', 'en', 1, 'https://ror.org/029yy5f63 Northwest College of Art & Design'),
(31495, 'https://ror.org/04e2ah412', 'en', 1, 'https://ror.org/04e2ah412 University of Atlanta'),
(31496, 'https://ror.org/00d27f502', 'en', 1, 'https://ror.org/00d27f502 McPherson College'),
(31497, 'https://ror.org/04gbjf340', 'en', 1, 'https://ror.org/04gbjf340 Nyack College'),
(31498, 'https://ror.org/01m7awg34', 'en', 1, 'https://ror.org/01m7awg34 Clayton College of Natural Health'),
(31499, 'https://ror.org/021j0xm63', 'en', 1, 'https://ror.org/021j0xm63 Medaille College'),
(31500, 'https://ror.org/0002yq607', 'en', 1, 'https://ror.org/0002yq607 Henry Cogswell College'),
(31501, 'https://ror.org/04h1em726', 'en', 1, 'https://ror.org/04h1em726 Mount Washington College'),
(31502, 'https://ror.org/05d23rn59', 'en', 1, 'https://ror.org/05d23rn59 Clear Creek Baptist Bible College'),
(31503, 'https://ror.org/03dhrm424', 'en', 1, 'https://ror.org/03dhrm424 Mercy College of Health Sciences'),
(31504, 'https://ror.org/04sdnwd65', 'en', 1, 'https://ror.org/04sdnwd65 Hesston College'),
(31505, 'https://ror.org/0499es143', 'en', 1, 'https://ror.org/0499es143 Olivet College'),
(31506, 'https://ror.org/00cmjga69', 'en', 1, 'https://ror.org/00cmjga69 Clearwater Christian College'),
(31507, 'https://ror.org/054t0wk73', 'en', 1, 'https://ror.org/054t0wk73 Hilbert College'),
(31508, 'https://ror.org/012saek46', 'en', 1, 'https://ror.org/012saek46 Metropolitan College of New York');
INSERT INTO `rors` VALUES
(31509, 'https://ror.org/03z2kds18', 'en', 1, 'https://ror.org/03z2kds18 Bethany Lutheran College'),
(31510, 'https://ror.org/05p275942', 'en', 1, 'https://ror.org/05p275942 Pacific College of Oriental Medicine'),
(31511, 'https://ror.org/03ct0rb34', 'en', 1, 'https://ror.org/03ct0rb34 Michigan Jewish Institute'),
(31512, 'https://ror.org/02zwjvm55', 'en', 1, 'https://ror.org/02zwjvm55 Blue Mountain College'),
(31513, 'https://ror.org/05grkcd68', 'en', 1, 'https://ror.org/05grkcd68 Cleveland Institute of Art'),
(31514, 'https://ror.org/04sr9vb86', 'en', 1, 'https://ror.org/04sr9vb86 Pacific Northwest College of Art'),
(31515, 'https://ror.org/03zkhjb46', 'en', 1, 'https://ror.org/03zkhjb46 Midwestern Baptist College'),
(31516, 'https://ror.org/01zf2fw60', 'en', 1, 'https://ror.org/01zf2fw60 Bluefield College'),
(31517, 'https://ror.org/02pj6m510', 'en', 1, 'https://ror.org/02pj6m510 Pacific Oaks College'),
(31518, 'https://ror.org/01my2ss20', 'en', 1, 'https://ror.org/01my2ss20 Hult International Business School'),
(31519, 'https://ror.org/053cbsa02', 'en', 1, 'https://ror.org/053cbsa02 Cleveland Institute of Music'),
(31520, 'https://ror.org/03f1xkz75', 'en', 1, 'https://ror.org/03f1xkz75 Bluefield State College'),
(31521, 'https://ror.org/01b72rt03', 'en', 1, 'https://ror.org/01b72rt03 Patrick Henry College'),
(31522, 'https://ror.org/0274e5q02', 'en', 1, 'https://ror.org/0274e5q02 Boston Conservatory Conservatoire de boston'),
(31523, 'https://ror.org/036yv4y78', 'en', 1, 'https://ror.org/036yv4y78 Cogswell Polytechnical College'),
(31524, 'https://ror.org/020ct4t61', 'en', 1, 'https://ror.org/020ct4t61 Pensacola Christian College'),
(31525, 'https://ror.org/01qqfah13', 'en', 1, 'https://ror.org/01qqfah13 Brewton-Parker College'),
(31526, 'https://ror.org/05xkm9j63', 'en', 1, 'https://ror.org/05xkm9j63 Institute for Christian Works'),
(31527, 'https://ror.org/007736j10', 'en', 1, 'https://ror.org/007736j10 Mitchell College'),
(31528, 'https://ror.org/01t04bt85', 'en', 1, 'https://ror.org/01t04bt85 Brooks Institute'),
(31529, 'https://ror.org/02sz42a76', 'en', 1, 'https://ror.org/02sz42a76 Monroe College'),
(31530, 'https://ror.org/031v6xt50', 'en', 1, 'https://ror.org/031v6xt50 Pine Manor College'),
(31531, 'https://ror.org/022xj6v07', 'en', 1, 'https://ror.org/022xj6v07 Monterey College of Law'),
(31532, 'https://ror.org/03gappd85', 'en', 1, 'https://ror.org/03gappd85 Mount Aloysius College'),
(31533, 'https://ror.org/0251djz27', 'en', 1, 'https://ror.org/0251djz27 Cabarrus College of Health Sciences'),
(31534, 'https://ror.org/03f516154', 'en', 1, 'https://ror.org/03f516154 Rasmussen College'),
(31535, 'https://ror.org/02t171j61', 'en', 1, 'https://ror.org/02t171j61 California Institute for Human Science'),
(31536, 'https://ror.org/00mpfdw74', 'en', 1, 'https://ror.org/00mpfdw74 Remington College'),
(31537, 'https://ror.org/02ngn2w22', 'en', 1, 'https://ror.org/02ngn2w22 Mt. Sierra College'),
(31538, 'https://ror.org/036qj5r13', 'en', 1, 'https://ror.org/036qj5r13 Cambridge College'),
(31539, 'https://ror.org/05q8ckj10', 'en', 1, 'https://ror.org/05q8ckj10 Nazarene Bible College'),
(31540, 'https://ror.org/010wj6161', 'en', 1, 'https://ror.org/010wj6161 Saint Anthony College of Nursing'),
(31541, 'https://ror.org/03af2bn79', 'en', 1, 'https://ror.org/03af2bn79 New Brunswick Theological Seminary'),
(31542, 'https://ror.org/05pmf3t53', 'en', 1, 'https://ror.org/05pmf3t53 New England Institute of Technology'),
(31543, 'https://ror.org/019mrv168', 'en', 1, 'https://ror.org/019mrv168 New England Law'),
(31544, 'https://ror.org/04ysmca02', 'en', 1, 'https://ror.org/04ysmca02 Irvine University'),
(31545, 'https://ror.org/01n673471', 'en', 1, 'https://ror.org/01n673471 Corcoran College of Art and Design'),
(31546, 'https://ror.org/0169by476', 'en', 1, 'https://ror.org/0169by476 St. Louis Christian College'),
(31547, 'https://ror.org/00zvm9z02', 'en', 1, 'https://ror.org/00zvm9z02 Tabor College'),
(31548, 'https://ror.org/01ja11s84', 'en', 1, 'https://ror.org/01ja11s84 School of the Museum of Fine Arts'),
(31549, 'https://ror.org/020t0kf33', 'en', 1, 'https://ror.org/020t0kf33 Cornish College of the Arts'),
(31550, 'https://ror.org/0437v2m88', 'en', 1, 'https://ror.org/0437v2m88 School of Visual Arts'),
(31551, 'https://ror.org/02vtff553', 'en', 1, 'https://ror.org/02vtff553 Texas Chiropractic College'),
(31552, 'https://ror.org/05txzf778', 'en', 1, 'https://ror.org/05txzf778 Jones College'),
(31553, 'https://ror.org/05tbkx115', 'en', 1, 'https://ror.org/05tbkx115 Kansas City Art Institute'),
(31554, 'https://ror.org/04725j767', 'en', 1, 'https://ror.org/04725j767 Shasta Bible College and Graduate School'),
(31555, 'https://ror.org/059617j81', 'en', 1, 'https://ror.org/059617j81 Crown College'),
(31556, 'https://ror.org/03b1dn215', 'en', 1, 'https://ror.org/03b1dn215 New York Institute of Art and Design'),
(31557, 'https://ror.org/011a33g95', 'en', 1, 'https://ror.org/011a33g95 Baptist College of Florida'),
(31558, 'https://ror.org/036qcm975', 'en', 1, 'https://ror.org/036qcm975 San Francisco Art Institute'),
(31559, 'https://ror.org/036adea75', 'en', 1, 'https://ror.org/036adea75 Sherman College of Chiropractic'),
(31560, 'https://ror.org/039fwv620', 'en', 1, 'https://ror.org/039fwv620 Sierra Nevada College'),
(31561, 'https://ror.org/01w466f66', 'en', 1, 'https://ror.org/01w466f66 Trinity College of Florida'),
(31562, 'https://ror.org/01qa8aw24', 'en', 1, 'https://ror.org/01qa8aw24 Smith Chapel Bible University'),
(31563, 'https://ror.org/01p7x7924', 'en', 1, 'https://ror.org/01p7x7924 San Joaquin College of Law'),
(31564, 'https://ror.org/04vnww336', 'en', 1, 'https://ror.org/04vnww336 College of Metaphysical Studies'),
(31565, 'https://ror.org/01y922f71', 'en', 1, 'https://ror.org/01y922f71 Academia de la Guardia Costera de Estados Unidos United States Coast Guard Academy'),
(31566, 'https://ror.org/04wgp8f82', 'en', 1, 'https://ror.org/04wgp8f82 South Texas College of Law'),
(31567, 'https://ror.org/03qn8x345', 'en', 1, 'https://ror.org/03qn8x345 SIT Graduate Institute'),
(31568, 'https://ror.org/001r6dj72', 'en', 1, 'https://ror.org/001r6dj72 Southeastern Bible College'),
(31569, 'https://ror.org/02dphc844', 'en', 1, 'https://ror.org/02dphc844 United States Sports Academy'),
(31570, 'https://ror.org/04fn4g645', 'en', 1, 'https://ror.org/04fn4g645 Master''s College'),
(31571, 'https://ror.org/03mdeq638', 'en', 1, 'https://ror.org/03mdeq638 University of Natural Medicine'),
(31572, 'https://ror.org/056544713', 'en', 1, 'https://ror.org/056544713 National Graduate School of Quality Management'),
(31573, 'https://ror.org/026fd2357', 'en', 1, 'https://ror.org/026fd2357 Southwest Bible College and Seminary'),
(31574, 'https://ror.org/0071xq104', 'no_lang_code', 1, 'https://ror.org/0071xq104 Advanced Biomass R&D Center (South Korea)'),
(31575, 'https://ror.org/01xmtac13', 'en', 1, 'https://ror.org/01xmtac13 Stefan University'),
(31576, 'https://ror.org/016bks835', 'en', 1, 'https://ror.org/016bks835 Spartanburg Methodist College'),
(31577, 'https://ror.org/05jbwz743', 'en', 1, 'https://ror.org/05jbwz743 Sarasota University'),
(31578, 'https://ror.org/02de0za51', 'en', 1, 'https://ror.org/02de0za51 Vanguard University'),
(31579, 'https://ror.org/01qpf3c64', 'en', 1, 'https://ror.org/01qpf3c64 Waldorf College'),
(31580, 'https://ror.org/03sjenh86', 'en', 1, 'https://ror.org/03sjenh86 Warner Pacific College'),
(31581, 'https://ror.org/00msnw430', 'en', 1, 'https://ror.org/00msnw430 Watkins College of Art Design and Film'),
(31582, 'https://ror.org/00z6yks89', 'en', 1, 'https://ror.org/00z6yks89 Thomas College'),
(31583, 'https://ror.org/00ed7qw32', 'en', 1, 'https://ror.org/00ed7qw32 Western Michigan University Cooley Law School'),
(31584, 'https://ror.org/032j0xp45', 'en', 1, 'https://ror.org/032j0xp45 Toccoa Falls College'),
(31585, 'https://ror.org/01yasd238', 'en', 1, 'https://ror.org/01yasd238 Trinity Baptist College'),
(31586, 'https://ror.org/02gv7j358', 'en', 1, 'https://ror.org/02gv7j358 Westminster Seminary California'),
(31587, 'https://ror.org/044ym4p17', 'en', 1, 'https://ror.org/044ym4p17 Climate and Energy Fund Klima und Energiefonds'),
(31588, 'https://ror.org/01qpebh25', 'en', 1, 'https://ror.org/01qpebh25 Central Armed Police Forces'),
(31589, 'https://ror.org/01ptpr676', 'en', 1, 'https://ror.org/01ptpr676 State Committee of Science Գիտության պետական կոմիտե'),
(31590, 'https://ror.org/04b6jkz71', 'en', 1, 'https://ror.org/04b6jkz71 China Ocean Mineral Resource R&D Association'),
(31591, 'https://ror.org/05te6r535', 'en', 1, 'https://ror.org/05te6r535 New World School of the Arts'),
(31592, 'https://ror.org/05s1c4z27', 'en', 1, 'https://ror.org/05s1c4z27 Sichuan Provincial Department of Education'),
(31593, 'https://ror.org/02bnr9368', 'en', 1, 'https://ror.org/02bnr9368 Southern Technical College'),
(31594, 'https://ror.org/031nm5713', 'en', 1, 'https://ror.org/031nm5713 Chongqing Municipality Education Commission'),
(31595, 'https://ror.org/01arsa478', 'en', 1, 'https://ror.org/01arsa478 Stevens–Henager College'),
(31596, 'https://ror.org/01p30rj34', 'en', 1, 'https://ror.org/01p30rj34 Calcutta State Transport Corporation'),
(31597, 'https://ror.org/006j36p28', 'es', 1, 'https://ror.org/006j36p28 Comisión Interministerial de Ciencia y Tecnología'),
(31598, 'https://ror.org/05qedhe85', 'no_lang_code', 1, 'https://ror.org/05qedhe85 ITER China'),
(31599, 'https://ror.org/03bh94f16', 'en', 1, 'https://ror.org/03bh94f16 Centre of the Region Haná for Biotechnical and Agricultural Research'),
(31600, 'https://ror.org/05gfwht30', 'en', 1, 'https://ror.org/05gfwht30 Civil Aviation Administration of China 中国民用航空局'),
(31601, 'https://ror.org/03myqtf56', 'es', 1, 'https://ror.org/03myqtf56 Programa Iberoamericano de Ciencia y Tecnología para el Desarrollo'),
(31602, 'https://ror.org/04s346m05', 'en', 1, 'https://ror.org/04s346m05 Commission on Higher Education'),
(31603, 'https://ror.org/02te5rf52', 'pt', 1, 'https://ror.org/02te5rf52 Fundação de Amparo à Ciência e Tecnologia de Pernambuco'),
(31604, 'https://ror.org/050jqn596', 'en', 1, 'https://ror.org/050jqn596 South Bohemia research center of aquaculture and biodiversity of hydrocenoses'),
(31605, 'https://ror.org/0473khm44', 'pt', 1, 'https://ror.org/0473khm44 Fundação de Amparo à Pesquisa do Estado da Bahia'),
(31606, 'https://ror.org/01wzzs254', 'en', 1, 'https://ror.org/01wzzs254 Foreign Investment Review Board'),
(31607, 'https://ror.org/05jtrt935', 'pt', 1, 'https://ror.org/05jtrt935 Fundação de Apoio ao Desenvolvimento do Ensino, Ciência e Tecnologia do Estado de Mato Grosso do Sul'),
(31608, 'https://ror.org/016en1t86', 'en', 1, 'https://ror.org/016en1t86 Foundational Questions Institute'),
(31609, 'https://ror.org/0225asj53', 'en', 1, 'https://ror.org/0225asj53 Department of Health'),
(31610, 'https://ror.org/03y315f21', 'en', 1, 'https://ror.org/03y315f21 Government of Malaysia Kerajaan Persekutuan Malaysia'),
(31611, 'https://ror.org/030w99567', 'pt', 1, 'https://ror.org/030w99567 Financiadora de Estudos e Projetos Funding Authority for Studies and Projects'),
(31612, 'https://ror.org/02hchde94', 'en', 1, 'https://ror.org/02hchde94 Government of Russia Правительство Российской Федерации'),
(31613, 'https://ror.org/00mq1v554', 'en', 1, 'https://ror.org/00mq1v554 Environment Research and Technology Development Fund'),
(31614, 'https://ror.org/050yqvv05', 'es', 1, 'https://ror.org/050yqvv05 Fondo Nacional de Ciencia Tecnología e Innovación'),
(31615, 'https://ror.org/051qp9k68', 'no_lang_code', 1, 'https://ror.org/051qp9k68 Texila American University'),
(31616, 'https://ror.org/05fm0gf36', 'en', 1, 'https://ror.org/05fm0gf36 Danish Working Environment Authority'),
(31617, 'https://ror.org/004bdz679', 'en', 1, 'https://ror.org/004bdz679 Ministry of Health'),
(31618, 'https://ror.org/036ymgf08', 'en', 1, 'https://ror.org/036ymgf08 Fuel Cells and Hydrogen'),
(31619, 'https://ror.org/00bame609', 'en', 1, 'https://ror.org/00bame609 Integrative Neuroscience Initiative on Alcoholism'),
(31620, 'https://ror.org/046n57345', 'en', 1, 'https://ror.org/046n57345 Hefei Institutes of Physical Science 合肥物质科学研究院'),
(31621, 'https://ror.org/0462e7n29', 'en', 1, 'https://ror.org/0462e7n29 Heilongjiang Postdoctoral Fund'),
(31622, 'https://ror.org/03aeyg892', 'en', 1, 'https://ror.org/03aeyg892 Japan Science Society'),
(31623, 'https://ror.org/02zq38y32', 'en', 1, 'https://ror.org/02zq38y32 Korea Institute of Energy Technology Evaluation and Planning'),
(31624, 'https://ror.org/02wdjff78', 'en', 1, 'https://ror.org/02wdjff78 State Studies Foundation'),
(31625, 'https://ror.org/04xrr3c79', 'en', 1, 'https://ror.org/04xrr3c79 Environmental Protection Department of Jiangsu Province'),
(31626, 'https://ror.org/04gq2fa58', 'en', 1, 'https://ror.org/04gq2fa58 Zhejiang Institute of Science and Technology Information'),
(31627, 'https://ror.org/035vmht26', 'en', 1, 'https://ror.org/035vmht26 China Association for Science and Technology'),
(31628, 'https://ror.org/0121dpf30', 'en', 1, 'https://ror.org/0121dpf30 Health Resources and Services Administration'),
(31629, 'https://ror.org/006ndaj41', 'en', 1, 'https://ror.org/006ndaj41 Planetary Data System'),
(31630, 'https://ror.org/00safct20', 'en', 1, 'https://ror.org/00safct20 National Pork Board'),
(31631, 'https://ror.org/04731xt44', 'en', 1, 'https://ror.org/04731xt44 National Space Biomedical Research Institute'),
(31632, 'https://ror.org/03cpyc314', 'en', 1, 'https://ror.org/03cpyc314 National Research Foundation'),
(31633, 'https://ror.org/00825gt63', 'pt', 1, 'https://ror.org/00825gt63 Quadro de Referência Estratégico Nacional'),
(31634, 'https://ror.org/027c2h907', 'es', 1, 'https://ror.org/027c2h907 Red de Investigación Cardiovascular'),
(31635, 'https://ror.org/016mfjj65', 'es', 1, 'https://ror.org/016mfjj65 Red Temática de Investigación Cooperativa en Cáncer'),
(31636, 'https://ror.org/00e6nys21', 'en', 1, 'https://ror.org/00e6nys21 Government of Romania'),
(31637, 'https://ror.org/02q578v20', 'en', 1, 'https://ror.org/02q578v20 Oklahoma Center for the Advancement of Science and Technology'),
(31638, 'https://ror.org/03y2gwe85', 'en', 1, 'https://ror.org/03y2gwe85 Russian Science Foundation'),
(31639, 'https://ror.org/03ypap427', 'no_lang_code', 1, 'https://ror.org/03ypap427 Saudi Aramco (Saudi Arabia)'),
(31640, 'https://ror.org/050dp5763', 'en', 1, 'https://ror.org/050dp5763 Professional Staff Congress'),
(31641, 'https://ror.org/003cpqh10', 'en', 1, 'https://ror.org/003cpqh10 State Administration of Traditional Chinese Medicine of the People''s Republic of China 国家中医药管理局'),
(31642, 'https://ror.org/01j0cm669', 'en', 1, 'https://ror.org/01j0cm669 China Space Foundation'),
(31643, 'https://ror.org/03ckpzr37', 'en', 1, 'https://ror.org/03ckpzr37 State Key Joint Laboratory of Environment Simulation and Pollution Control'),
(31644, 'https://ror.org/05072yv34', 'sv', 1, 'https://ror.org/05072yv34 Barncancerfonden Swedish Childhood Cancer Foundation'),
(31645, 'https://ror.org/001rfde81', 'no_lang_code', 1, 'https://ror.org/001rfde81 Henan Tianguan Group (China)'),
(31646, 'https://ror.org/02nwht553', 'es', 1, 'https://ror.org/02nwht553 Red Espanola de Investigacion en Patologia Infecciosa'),
(31647, 'https://ror.org/02gmy7y33', 'en', 1, 'https://ror.org/02gmy7y33 Temasek Defence Systems Institute'),
(31648, 'https://ror.org/02q83sc19', 'de', 1, 'https://ror.org/02q83sc19 Wilhelm Sander Stiftung'),
(31649, 'https://ror.org/02edr8z79', 'en', 1, 'https://ror.org/02edr8z79 Thailand Graduate Institute of Science and Technology โครงการทุนสถาบันบัณฑิตวิทยาศาสตร์และเทคโนโลยีไทย'),
(31650, 'https://ror.org/016s74507', 'en', 1, 'https://ror.org/016s74507 Wuhan Science and Technology Bureau'),
(31651, 'https://ror.org/04jpeqm39', 'no_lang_code', 1, 'https://ror.org/04jpeqm39 EsFem'),
(31652, 'https://ror.org/04jpp2r68', 'sk', 1, 'https://ror.org/04jpp2r68 Szenczi Molnár Albert Alapiskola'),
(31653, 'https://ror.org/02ymk8b69', 'en', 1, 'https://ror.org/02ymk8b69 Xi''an University of Science and Education Foundation'),
(31654, 'https://ror.org/036nq5137', 'en', 1, 'https://ror.org/036nq5137 Ministry of Education'),
(31655, 'https://ror.org/006cta510', 'no_lang_code', 1, 'https://ror.org/006cta510 CELIM'),
(31656, 'https://ror.org/02wbbzx11', 'en', 1, 'https://ror.org/02wbbzx11 New School for Jewish Studies'),
(31657, 'https://ror.org/02et2g954', 'sk', 1, 'https://ror.org/02et2g954 Centrum Voľného Casu'),
(31658, 'https://ror.org/05b5j3m40', 'en', 1, 'https://ror.org/05b5j3m40 Academic Ranking and Rating Agency'),
(31659, 'https://ror.org/04gkgzp76', 'sk', 1, 'https://ror.org/04gkgzp76 Centire'),
(31660, 'https://ror.org/048mg0d76', 'sk', 1, 'https://ror.org/048mg0d76 Ústredná Vojenská Nemocnica Ružomberok'),
(31661, 'https://ror.org/04bbzfz74', 'sk', 1, 'https://ror.org/04bbzfz74 Stredoslovenské múzeum'),
(31662, 'https://ror.org/00kh19327', 'no_lang_code', 1, 'https://ror.org/00kh19327 AEH (Slovakia)'),
(31663, 'https://ror.org/01g9kt839', 'en', 1, 'https://ror.org/01g9kt839 Estonian National Museum'),
(31664, 'https://ror.org/014zq2g68', 'no_lang_code', 1, 'https://ror.org/014zq2g68 Cestné stavby Žilina (Slovakia)'),
(31665, 'https://ror.org/02q79aa51', 'no_lang_code', 1, 'https://ror.org/02q79aa51 Chemosvit Fibrochem (Slovakia)'),
(31666, 'https://ror.org/01qqbx440', 'sk', 1, 'https://ror.org/01qqbx440 Roľnícke družstvo Moravany'),
(31667, 'https://ror.org/03r0qv641', 'en', 1, 'https://ror.org/03r0qv641 Slovak Public Health Association'),
(31668, 'https://ror.org/00fcfxd73', 'no_lang_code', 1, 'https://ror.org/00fcfxd73 Eurea'),
(31669, 'https://ror.org/01pey0n03', 'et', 1, 'https://ror.org/01pey0n03 Vähiuuringute Tehnoloogia Arenduskeskus'),
(31670, 'https://ror.org/00y8dmj81', 'no_lang_code', 1, 'https://ror.org/00y8dmj81 Ústav Radiačnej Ochrany (Slovakia)'),
(31671, 'https://ror.org/05fs2rz39', 'en', 1, 'https://ror.org/05fs2rz39 Zilina International Airport'),
(31672, 'https://ror.org/041dzw371', 'en', 1, 'https://ror.org/041dzw371 Eesti Keele Instituut Institute of the Estonian Language'),
(31673, 'https://ror.org/02bhsam28', 'no_lang_code', 1, 'https://ror.org/02bhsam28 Computer Control Technology (Slovakia)'),
(31674, 'https://ror.org/041q4rp74', 'no_lang_code', 1, 'https://ror.org/041q4rp74 Eurofins (Slovakia)'),
(31675, 'https://ror.org/031md1b10', 'en', 1, 'https://ror.org/031md1b10 Cord Blood Center'),
(31676, 'https://ror.org/04yznky14', 'no_lang_code', 1, 'https://ror.org/04yznky14 Intech (Slovakia)'),
(31677, 'https://ror.org/0111qwn65', 'sk', 1, 'https://ror.org/0111qwn65 European Legal Center Európske Právne Centrum Občianske Združenie'),
(31678, 'https://ror.org/03wjh4t84', 'en', 1, 'https://ror.org/03wjh4t84 National Agricultural and Food Centre'),
(31679, 'https://ror.org/03hkwwc75', 'no_lang_code', 1, 'https://ror.org/03hkwwc75 IPM Engineering (Slovakia)'),
(31680, 'https://ror.org/02vrn1720', 'sk', 1, 'https://ror.org/02vrn1720 Výskumný Ústav Mliekarenský'),
(31681, 'https://ror.org/01hb8gc46', 'no_lang_code', 1, 'https://ror.org/01hb8gc46 Danubia NanoTech (Slovakia)'),
(31682, 'https://ror.org/04a579b24', 'no_lang_code', 1, 'https://ror.org/04a579b24 Alpha Medical (Slovakia)'),
(31683, 'https://ror.org/05943ep32', 'no_lang_code', 1, 'https://ror.org/05943ep32 Anasoft (Slovakia)'),
(31684, 'https://ror.org/033f0gp46', 'no_lang_code', 1, 'https://ror.org/033f0gp46 Datalan (Slovakia)'),
(31685, 'https://ror.org/04vxrmy57', 'no_lang_code', 1, 'https://ror.org/04vxrmy57 Kushing (Slovakia)'),
(31686, 'https://ror.org/03q5bhc14', 'sk', 1, 'https://ror.org/03q5bhc14 Gymnázium Andreja Sládkoviča'),
(31687, 'https://ror.org/03xhps368', 'no_lang_code', 1, 'https://ror.org/03xhps368 DB Biotech (Slovakia)'),
(31688, 'https://ror.org/027yna928', 'no_lang_code', 1, 'https://ror.org/027yna928 Natures (Slovakia)'),
(31689, 'https://ror.org/01bshdg19', 'no_lang_code', 1, 'https://ror.org/01bshdg19 Vinci (Slovakia)'),
(31690, 'https://ror.org/01eqzew76', 'no_lang_code', 1, 'https://ror.org/01eqzew76 Antik Telecom (Slovakia)'),
(31691, 'https://ror.org/01z2za656', 'no_lang_code', 1, 'https://ror.org/01z2za656 Dekonta (Slovakia)'),
(31692, 'https://ror.org/04tqkwm17', 'no_lang_code', 1, 'https://ror.org/04tqkwm17 APIS (Slovakia)'),
(31693, 'https://ror.org/0329q1430', 'en', 1, 'https://ror.org/0329q1430 Estonian Association for Applied Linguistics'),
(31694, 'https://ror.org/01kw00110', 'no_lang_code', 1, 'https://ror.org/01kw00110 Applied Precision (Slovakia)'),
(31695, 'https://ror.org/04fzzvb87', 'sk', 1, 'https://ror.org/04fzzvb87 Aqua Vita - Živá voda'),
(31696, 'https://ror.org/012fc2585', 'no_lang_code', 1, 'https://ror.org/012fc2585 Development Services Security Innovations (Slovakia)'),
(31697, 'https://ror.org/010hd8e46', 'no_lang_code', 1, 'https://ror.org/010hd8e46 Areta (Slovakia)'),
(31698, 'https://ror.org/02d794w74', 'no_lang_code', 1, 'https://ror.org/02d794w74 Duslo (Slovakia)'),
(31699, 'https://ror.org/00bx7wr94', 'sk', 1, 'https://ror.org/00bx7wr94 Základná umelecká škola Jozefa Rosinského'),
(31700, 'https://ror.org/04b6d3182', 'no_lang_code', 1, 'https://ror.org/04b6d3182 Western Slovakian Energy Corporation Západoslovenská Energetika (Slovakia)'),
(31701, 'https://ror.org/00r95sc10', 'no_lang_code', 1, 'https://ror.org/00r95sc10 Fires (Slovakia)'),
(31702, 'https://ror.org/019ys4329', 'en', 1, 'https://ror.org/019ys4329 Observatory and Planetarium of Maximilian Hell'),
(31703, 'https://ror.org/01x91c597', 'en', 1, 'https://ror.org/01x91c597 Association for Youth, Science and Technology'),
(31704, 'https://ror.org/00wpg5z42', 'en', 1, 'https://ror.org/00wpg5z42 East Tallinn Central Hospital'),
(31705, 'https://ror.org/02vzkf466', 'en', 1, 'https://ror.org/02vzkf466 Judicial Academy of the Slovak Republic'),
(31706, 'https://ror.org/045aka220', 'no_lang_code', 1, 'https://ror.org/045aka220 Ecoland (Slovakia)'),
(31707, 'https://ror.org/04btpac66', 'no_lang_code', 1, 'https://ror.org/04btpac66 KWD (Slovakia)'),
(31708, 'https://ror.org/02h0mx958', 'no_lang_code', 1, 'https://ror.org/02h0mx958 Education Training & Consulting Company (Slovakia)'),
(31709, 'https://ror.org/04szzqs55', 'sk', 1, 'https://ror.org/04szzqs55 Fakultná nemocnica s poliklinikou Žilina'),
(31710, 'https://ror.org/010gk9n67', 'no_lang_code', 1, 'https://ror.org/010gk9n67 Avantek (Slovakia)'),
(31711, 'https://ror.org/0511ejf03', 'no_lang_code', 1, 'https://ror.org/0511ejf03 OMS Lighting (Slovakia)'),
(31712, 'https://ror.org/01nf1vh59', 'en', 1, 'https://ror.org/01nf1vh59 EDUCON'),
(31713, 'https://ror.org/04x0cn975', 'no_lang_code', 1, 'https://ror.org/04x0cn975 Axxence (Slovakia)'),
(31714, 'https://ror.org/03e2zdg56', 'no_lang_code', 1, 'https://ror.org/03e2zdg56 Elcom (Slovakia)'),
(31715, 'https://ror.org/04ps3wn70', 'no_lang_code', 1, 'https://ror.org/04ps3wn70 Op -Tim (Slovakia)'),
(31716, 'https://ror.org/00w3ghh40', 'en', 1, 'https://ror.org/00w3ghh40 Central European House of Photography'),
(31717, 'https://ror.org/03br03g05', 'no_lang_code', 1, 'https://ror.org/03br03g05 Bakomi'),
(31718, 'https://ror.org/01fpe8896', 'no_lang_code', 1, 'https://ror.org/01fpe8896 P-mat'),
(31719, 'https://ror.org/04wqpp325', 'no_lang_code', 1, 'https://ror.org/04wqpp325 Betamont (Slovakia)'),
(31720, 'https://ror.org/04r2pjg84', 'sk', 1, 'https://ror.org/04r2pjg84 Forests of the Slovak Republic Lesy Slovenskej Republiky'),
(31721, 'https://ror.org/02mv2m613', 'no_lang_code', 1, 'https://ror.org/02mv2m613 Elektrokarbon (Slovakia)'),
(31722, 'https://ror.org/02z4q1r45', 'en', 1, 'https://ror.org/02z4q1r45 Pärnu Museum'),
(31723, 'https://ror.org/02yg6th19', 'no_lang_code', 1, 'https://ror.org/02yg6th19 Elteco (Slovakia)'),
(31724, 'https://ror.org/049e28v28', 'da', 1, 'https://ror.org/049e28v28 National Science Ethics Committee Nationale Videnskabsetiske Komité'),
(31725, 'https://ror.org/04vba8s95', 'no_lang_code', 1, 'https://ror.org/04vba8s95 International BEZ Group (Slovakia)'),
(31726, 'https://ror.org/03vasz419', 'no_lang_code', 1, 'https://ror.org/03vasz419 KM System (Slovakia)'),
(31727, 'https://ror.org/02xdb6745', 'et', 1, 'https://ror.org/02xdb6745 Emakeele Selts'),
(31728, 'https://ror.org/041g2v089', 'no_lang_code', 1, 'https://ror.org/041g2v089 Ekospol (Slovakia)'),
(31729, 'https://ror.org/02evahm41', 'en', 1, 'https://ror.org/02evahm41 Biomasa Association'),
(31730, 'https://ror.org/02s7h1n35', 'no_lang_code', 1, 'https://ror.org/02s7h1n35 Emel (Slovakia)'),
(31731, 'https://ror.org/015vz5m81', 'no_lang_code', 1, 'https://ror.org/015vz5m81 Konstrukta - Industry (Slovakia)'),
(31732, 'https://ror.org/00q9zmg67', 'no_lang_code', 1, 'https://ror.org/00q9zmg67 Envirocare (Slovakia)'),
(31733, 'https://ror.org/03zwpmf03', 'no_lang_code', 1, 'https://ror.org/03zwpmf03 Biont (Slovakia)'),
(31734, 'https://ror.org/035z4sk50', 'no_lang_code', 1, 'https://ror.org/035z4sk50 Perfekt (Slovakia)'),
(31735, 'https://ror.org/04ezkb708', 'no_lang_code', 1, 'https://ror.org/04ezkb708 Biorealis (Slovakia)'),
(31736, 'https://ror.org/02tggj648', 'no_lang_code', 1, 'https://ror.org/02tggj648 KraussMaffei (Slovakia)'),
(31737, 'https://ror.org/05xv7s149', 'no_lang_code', 1, 'https://ror.org/05xv7s149 Bioscience (Slovakia)'),
(31738, 'https://ror.org/03xjasx48', 'no_lang_code', 1, 'https://ror.org/03xjasx48 Semikron (Slovakia)'),
(31739, 'https://ror.org/051sz9w49', 'no_lang_code', 1, 'https://ror.org/051sz9w49 G-trend (Slovakia)'),
(31740, 'https://ror.org/05yj6x102', 'no_lang_code', 1, 'https://ror.org/05yj6x102 Biotika (Slovakia)'),
(31741, 'https://ror.org/05h7a4r64', 'no_lang_code', 1, 'https://ror.org/05h7a4r64 Phostec (Slovakia)'),
(31742, 'https://ror.org/0085gp855', 'no_lang_code', 1, 'https://ror.org/0085gp855 SEZ Krompachy (Slovakia)'),
(31743, 'https://ror.org/030sqdt03', 'no_lang_code', 1, 'https://ror.org/030sqdt03 BPM Consulting (Slovakia)'),
(31744, 'https://ror.org/010bx4f33', 'no_lang_code', 1, 'https://ror.org/010bx4f33 KRD Molecular Technologies (Slovakia)'),
(31745, 'https://ror.org/04bxtw313', 'no_lang_code', 1, 'https://ror.org/04bxtw313 Sféra (Slovakia)'),
(31746, 'https://ror.org/02ch6zk08', 'en', 1, 'https://ror.org/02ch6zk08 Plant Production Research Institute'),
(31747, 'https://ror.org/00px7ap78', 'en', 1, 'https://ror.org/00px7ap78 Building Testing and Research Institute'),
(31748, 'https://ror.org/03x0p3p41', 'no_lang_code', 1, 'https://ror.org/03x0p3p41 GA Drilling (Slovakia)'),
(31749, 'https://ror.org/02gfyfp86', 'no_lang_code', 1, 'https://ror.org/02gfyfp86 Calendula (Slovakia)'),
(31750, 'https://ror.org/00etg9b89', 'sk', 1, 'https://ror.org/00etg9b89 Slovenská Legálna Metrológia'),
(31751, 'https://ror.org/05ry92539', 'no_lang_code', 1, 'https://ror.org/05ry92539 Powertec (Slovakia)'),
(31752, 'https://ror.org/00jkz6g04', 'sk', 1, 'https://ror.org/00jkz6g04 Gymnázium Ľudovíta Štúra'),
(31753, 'https://ror.org/03v559f24', 'no_lang_code', 1, 'https://ror.org/03v559f24 PPS Group (Slovakia)'),
(31754, 'https://ror.org/051nezy81', 'no_lang_code', 1, 'https://ror.org/051nezy81 Geneton (Slovakia)'),
(31755, 'https://ror.org/037xt7q95', 'no_lang_code', 1, 'https://ror.org/037xt7q95 CEIT Consulting (Slovakia)'),
(31756, 'https://ror.org/02qx2bv92', 'no_lang_code', 1, 'https://ror.org/02qx2bv92 Geoexperts (Slovakia)'),
(31757, 'https://ror.org/04r7x1v43', 'no_lang_code', 1, 'https://ror.org/04r7x1v43 MAT-Obaly (Slovakia)'),
(31758, 'https://ror.org/04rad3358', 'no_lang_code', 1, 'https://ror.org/04rad3358 Prefa Alfa (Slovakia)'),
(31759, 'https://ror.org/03acd6h82', 'no_lang_code', 1, 'https://ror.org/03acd6h82 GeoModel Solar (Slovakia)'),
(31760, 'https://ror.org/03fhmzh26', 'no_lang_code', 1, 'https://ror.org/03fhmzh26 Mate (Slovakia)'),
(31761, 'https://ror.org/03f4vz666', 'no_lang_code', 1, 'https://ror.org/03f4vz666 Vusapl (Slovakia)'),
(31762, 'https://ror.org/01cvt5v65', 'no_lang_code', 1, 'https://ror.org/01cvt5v65 MBM Group (Slovakia)'),
(31763, 'https://ror.org/04v9rq331', 'no_lang_code', 1, 'https://ror.org/04v9rq331 Procesná Automatizácia (Slovakia)'),
(31764, 'https://ror.org/0158pg778', 'no_lang_code', 1, 'https://ror.org/0158pg778 SPINEA (Slovakia)'),
(31765, 'https://ror.org/0041dx816', 'no_lang_code', 1, 'https://ror.org/0041dx816 Vutch-Chemitex (Slovakia)'),
(31766, 'https://ror.org/05vmgsb62', 'no_lang_code', 1, 'https://ror.org/05vmgsb62 Procont (Slovakia)'),
(31767, 'https://ror.org/04h893p85', 'no_lang_code', 1, 'https://ror.org/04h893p85 Protobios (Estonia)'),
(31768, 'https://ror.org/029zfr186', 'no_lang_code', 1, 'https://ror.org/029zfr186 Synkola (Slovakia)'),
(31769, 'https://ror.org/039fe9y64', 'no_lang_code', 1, 'https://ror.org/039fe9y64 Qintec (Slovakia)'),
(31770, 'https://ror.org/05tk49h93', 'no_lang_code', 1, 'https://ror.org/05tk49h93 Girochem (Slovakia)'),
(31771, 'https://ror.org/05rezmm46', 'en', 1, 'https://ror.org/05rezmm46 Software Technology and Applications Competence Center'),
(31772, 'https://ror.org/02techz27', 'no_lang_code', 1, 'https://ror.org/02techz27 T-Industry (Slovakia)'),
(31773, 'https://ror.org/02rkyk519', 'no_lang_code', 1, 'https://ror.org/02rkyk519 ME-Inspection SK (Slovakia)'),
(31774, 'https://ror.org/01pw8kd98', 'no_lang_code', 1, 'https://ror.org/01pw8kd98 Vyvoj Martin (Slovakia)'),
(31775, 'https://ror.org/04w7knf95', 'no_lang_code', 1, 'https://ror.org/04w7knf95 Mechanical Design (Slovakia)'),
(31776, 'https://ror.org/047kbmp67', 'no_lang_code', 1, 'https://ror.org/047kbmp67 Global Services (Slovakia)'),
(31777, 'https://ror.org/015a8e339', 'no_lang_code', 1, 'https://ror.org/015a8e339 GoldenSUN (Slovakia)'),
(31778, 'https://ror.org/00zffwe40', 'no_lang_code', 1, 'https://ror.org/00zffwe40 Xcell (Slovakia)'),
(31779, 'https://ror.org/04r7gz902', 'no_lang_code', 1, 'https://ror.org/04r7gz902 Metrodat (Slovakia)'),
(31780, 'https://ror.org/00gwb6z35', 'no_lang_code', 1, 'https://ror.org/00gwb6z35 Railway Repair and Engineering Works (Slovakia)'),
(31781, 'https://ror.org/05jgd9317', 'no_lang_code', 1, 'https://ror.org/05jgd9317 Gratex International (Slovakia)'),
(31782, 'https://ror.org/01crvvh84', 'no_lang_code', 1, 'https://ror.org/01crvvh84 MicroStep (Slovakia)'),
(31783, 'https://ror.org/03e0d1j33', 'en', 1, 'https://ror.org/03e0d1j33 Raptor Protection of Slovakia'),
(31784, 'https://ror.org/04y300229', 'no_lang_code', 1, 'https://ror.org/04y300229 MicroStep-MIS (Slovakia)'),
(31785, 'https://ror.org/01h6vn910', 'no_lang_code', 1, 'https://ror.org/01h6vn910 GTVT (Slovakia)'),
(31786, 'https://ror.org/03vek6g79', 'en', 1, 'https://ror.org/03vek6g79 Tartu Emajoe School'),
(31787, 'https://ror.org/03m6exj18', 'no_lang_code', 1, 'https://ror.org/03m6exj18 Msm Group (Slovakia)'),
(31788, 'https://ror.org/00348tk97', 'no_lang_code', 1, 'https://ror.org/00348tk97 Relko (Slovakia)'),
(31789, 'https://ror.org/02p6p6z73', 'no_lang_code', 1, 'https://ror.org/02p6p6z73 Mikon (Slovakia)'),
(31790, 'https://ror.org/02erd4b86', 'no_lang_code', 1, 'https://ror.org/02erd4b86 Engineering and Software System Solutions (United States)'),
(31791, 'https://ror.org/01bj7zb33', 'no_lang_code', 1, 'https://ror.org/01bj7zb33 Monogram Technologies (Slovakia)'),
(31792, 'https://ror.org/05qzy6511', 'no_lang_code', 1, 'https://ror.org/05qzy6511 Research Institute for Man Made Fibres (Slovakia)'),
(31793, 'https://ror.org/01c6mdq20', 'no_lang_code', 1, 'https://ror.org/01c6mdq20 21CSi (United States)'),
(31794, 'https://ror.org/01ew97b74', 'no_lang_code', 1, 'https://ror.org/01ew97b74 Optifin Invest (Slovakia)'),
(31795, 'https://ror.org/043pya965', 'en', 1, 'https://ror.org/043pya965 Research Institute of Agricultural and Food Economics'),
(31796, 'https://ror.org/05v6k5v13', 'no_lang_code', 1, 'https://ror.org/05v6k5v13 Hanil E-Hwa (Slovakia)'),
(31797, 'https://ror.org/03ydemh16', 'no_lang_code', 1, 'https://ror.org/03ydemh16 Tau - Chem (Slovakia)'),
(31798, 'https://ror.org/024s1p860', 'no_lang_code', 1, 'https://ror.org/024s1p860 NanoDesign (Slovakia)'),
(31799, 'https://ror.org/00fe3kx30', 'no_lang_code', 1, 'https://ror.org/00fe3kx30 Rmc (Slovakia)'),
(31800, 'https://ror.org/00g0v7f54', 'no_lang_code', 1, 'https://ror.org/00g0v7f54 Tekmar (Slovakia)'),
(31801, 'https://ror.org/04e5kcp15', 'no_lang_code', 1, 'https://ror.org/04e5kcp15 RONA (Slovakia)'),
(31802, 'https://ror.org/0388c8g69', 'no_lang_code', 1, 'https://ror.org/0388c8g69 Thalion (Slovakia)'),
(31803, 'https://ror.org/00yhave05', 'en', 1, 'https://ror.org/00yhave05 Estonian History Museum'),
(31804, 'https://ror.org/03wpn6023', 'no_lang_code', 1, 'https://ror.org/03wpn6023 SAE - Automation (Slovakia)'),
(31805, 'https://ror.org/00ckp1t80', 'no_lang_code', 1, 'https://ror.org/00ckp1t80 F. A. Hayek Foundation'),
(31806, 'https://ror.org/00mq90977', 'no_lang_code', 1, 'https://ror.org/00mq90977 Hordeum (Slovakia)'),
(31807, 'https://ror.org/010eh3243', 'no_lang_code', 1, 'https://ror.org/010eh3243 Acentech (United States)'),
(31808, 'https://ror.org/03wnkex20', 'no_lang_code', 1, 'https://ror.org/03wnkex20 Safetronics (Slovakia)'),
(31809, 'https://ror.org/04j808v60', 'en', 1, 'https://ror.org/04j808v60 Research Institute of Posts and Telecommunications'),
(31810, 'https://ror.org/0038pvp74', 'no_lang_code', 1, 'https://ror.org/0038pvp74 Acoustic Ideas (United States)'),
(31811, 'https://ror.org/022cgsm35', 'no_lang_code', 1, 'https://ror.org/022cgsm35 Imuna Pharm (Slovakia)'),
(31812, 'https://ror.org/004ktdh03', 'no_lang_code', 1, 'https://ror.org/004ktdh03 Acree Technologies (United States)'),
(31813, 'https://ror.org/017n5tt56', 'no_lang_code', 1, 'https://ror.org/017n5tt56 Tilde (Estonia)'),
(31814, 'https://ror.org/01xbk7a82', 'no_lang_code', 1, 'https://ror.org/01xbk7a82 ACTA (United States)'),
(31815, 'https://ror.org/01h06db67', 'en', 1, 'https://ror.org/01h06db67 Institute of Informatics and Statistics Inštitút informatiky a štatistiky'),
(31816, 'https://ror.org/02r1sb446', 'no_lang_code', 1, 'https://ror.org/02r1sb446 Scientica (Slovakia)'),
(31817, 'https://ror.org/02c9zcr51', 'no_lang_code', 1, 'https://ror.org/02c9zcr51 Advanced Cerametrics (United States)'),
(31818, 'https://ror.org/01zf6g661', 'no_lang_code', 1, 'https://ror.org/01zf6g661 Advanced Coherent Technologies (United States)'),
(31819, 'https://ror.org/010p50m34', 'en', 1, 'https://ror.org/010p50m34 Bernstein Center for Computational Neuroscience Freiburg'),
(31820, 'https://ror.org/01qq34m02', 'en', 1, 'https://ror.org/01qq34m02 Bernstein Center for Computational Neuroscience Heidelberg-Mannheim'),
(31821, 'https://ror.org/04bz45c46', 'en', 1, 'https://ror.org/04bz45c46 Bernstein Center for Computational Neuroscience Munich'),
(31822, 'https://ror.org/03kfnwp54', 'en', 1, 'https://ror.org/03kfnwp54 Bernstein Center for Computational Neuroscience Tübingen'),
(31823, 'https://ror.org/04jp8cn27', 'no_lang_code', 1, 'https://ror.org/04jp8cn27 Advanced Rotorcraft Technology (United States)'),
(31824, 'https://ror.org/0325zgw13', 'no_lang_code', 1, 'https://ror.org/0325zgw13 Transmisie Engineering (Slovakia)'),
(31825, 'https://ror.org/02r0y3932', 'sk', 1, 'https://ror.org/02r0y3932 Vyskumny Ústav Dopravny'),
(31826, 'https://ror.org/01k7rsf15', 'no_lang_code', 1, 'https://ror.org/01k7rsf15 Adsantec (United States)'),
(31827, 'https://ror.org/00gtpjy03', 'no_lang_code', 1, 'https://ror.org/00gtpjy03 ASML (United States)'),
(31828, 'https://ror.org/05506vc27', 'no_lang_code', 1, 'https://ror.org/05506vc27 Ultrazvuk (Slovakia)'),
(31829, 'https://ror.org/05jxbth48', 'no_lang_code', 1, 'https://ror.org/05jxbth48 General Kinetics (United States)'),
(31830, 'https://ror.org/04nsrjg86', 'et', 1, 'https://ror.org/04nsrjg86 Under and Tuglas Literature Centre Underi ja Tuglase Kirjanduskeskus'),
(31831, 'https://ror.org/00t9kp067', 'no_lang_code', 1, 'https://ror.org/00t9kp067 Acuity Technologies (United States)'),
(31832, 'https://ror.org/05ydj2y02', 'no_lang_code', 1, 'https://ror.org/05ydj2y02 Advanced Systems & Technologies (United States)'),
(31833, 'https://ror.org/025qfq989', 'no_lang_code', 1, 'https://ror.org/025qfq989 Villa Pro (Slovakia)'),
(31834, 'https://ror.org/04y4tfw76', 'no_lang_code', 1, 'https://ror.org/04y4tfw76 Advanced Communication Systems (United States)'),
(31835, 'https://ror.org/058tbj885', 'no_lang_code', 1, 'https://ror.org/058tbj885 Vipo (Slovakia)'),
(31836, 'https://ror.org/0359sgh16', 'no_lang_code', 1, 'https://ror.org/0359sgh16 Advanced Technologies Group (United States)'),
(31837, 'https://ror.org/00a65gg79', 'no_lang_code', 1, 'https://ror.org/00a65gg79 Advanced Conductor Technologies (United States)'),
(31838, 'https://ror.org/00e3mqz93', 'en', 1, 'https://ror.org/00e3mqz93 Võro Institute'),
(31839, 'https://ror.org/017pbda46', 'en', 1, 'https://ror.org/017pbda46 Slovak Youth Institute'),
(31840, 'https://ror.org/05sqz7r04', 'no_lang_code', 1, 'https://ror.org/05sqz7r04 Vucht (Slovakia)'),
(31841, 'https://ror.org/01q7y9w80', 'no_lang_code', 1, 'https://ror.org/01q7y9w80 Vúez (Slovakia)'),
(31842, 'https://ror.org/0154hk987', 'no_lang_code', 1, 'https://ror.org/0154hk987 Entegris (United States)'),
(31843, 'https://ror.org/0075y4q70', 'en', 1, 'https://ror.org/0075y4q70 361 Interactive'),
(31844, 'https://ror.org/04ra7gd43', 'no_lang_code', 1, 'https://ror.org/04ra7gd43 3TEX (United States)'),
(31845, 'https://ror.org/007kwc354', 'no_lang_code', 1, 'https://ror.org/007kwc354 VUIS - CESTY (Slovakia)'),
(31846, 'https://ror.org/03897n412', 'no_lang_code', 1, 'https://ror.org/03897n412 5-D Systems (United States)'),
(31847, 'https://ror.org/00v996f56', 'no_lang_code', 1, 'https://ror.org/00v996f56 Vuki (Slovakia)'),
(31848, 'https://ror.org/03z0m1393', 'no_lang_code', 1, 'https://ror.org/03z0m1393 Advanced Device Technology (United States)'),
(31849, 'https://ror.org/016svkp29', 'no_lang_code', 1, 'https://ror.org/016svkp29 Norsk Hydro (Slovakia)'),
(31850, 'https://ror.org/05bmnx256', 'no_lang_code', 1, 'https://ror.org/05bmnx256 VUP (Slovakia)'),
(31851, 'https://ror.org/05ds25z56', 'no_lang_code', 1, 'https://ror.org/05ds25z56 Presagis (United States)'),
(31852, 'https://ror.org/013h40e84', 'no_lang_code', 1, 'https://ror.org/013h40e84 Myers Power Products (United States)'),
(31853, 'https://ror.org/04yehrw46', 'no_lang_code', 1, 'https://ror.org/04yehrw46 Adaptive Dynamics (United States)'),
(31854, 'https://ror.org/00v7tvz77', 'no_lang_code', 1, 'https://ror.org/00v7tvz77 VÚRUP (Slovakia)'),
(31855, 'https://ror.org/01cswdc74', 'no_lang_code', 1, 'https://ror.org/01cswdc74 AEgis Technologies (United States)'),
(31856, 'https://ror.org/02543xy77', 'no_lang_code', 1, 'https://ror.org/02543xy77 Abaris Training (United States)'),
(31857, 'https://ror.org/04ys2fq69', 'no_lang_code', 1, 'https://ror.org/04ys2fq69 Aegis Technology (United States)'),
(31858, 'https://ror.org/00xfzhw50', 'no_lang_code', 1, 'https://ror.org/00xfzhw50 Abeam Technologies (United States)'),
(31859, 'https://ror.org/04w0bwe53', 'no_lang_code', 1, 'https://ror.org/04w0bwe53 AIL Research (United States)'),
(31860, 'https://ror.org/03kh18j96', 'no_lang_code', 1, 'https://ror.org/03kh18j96 Advanced Dynamics (United States)'),
(31861, 'https://ror.org/03mw3xk75', 'no_lang_code', 1, 'https://ror.org/03mw3xk75 Adaptive Methods (United States)'),
(31862, 'https://ror.org/05sndhx91', 'no_lang_code', 1, 'https://ror.org/05sndhx91 Air Turbine Technology (United States)'),
(31863, 'https://ror.org/04r5mx435', 'no_lang_code', 1, 'https://ror.org/04r5mx435 Airex (United States)'),
(31864, 'https://ror.org/05wr1pv20', 'no_lang_code', 1, 'https://ror.org/05wr1pv20 Advanced Energy Systems (United States)'),
(31865, 'https://ror.org/004tts638', 'no_lang_code', 1, 'https://ror.org/004tts638 Aegisound (United States)'),
(31866, 'https://ror.org/00j64zh12', 'no_lang_code', 1, 'https://ror.org/00j64zh12 Advanced Engines Development (United States)'),
(31867, 'https://ror.org/03e970380', 'no_lang_code', 1, 'https://ror.org/03e970380 Akela (United States)'),
(31868, 'https://ror.org/040qg6n73', 'no_lang_code', 1, 'https://ror.org/040qg6n73 Acadia Cyber Solutions (United States)'),
(31869, 'https://ror.org/021p1en02', 'no_lang_code', 1, 'https://ror.org/021p1en02 Automated Dynamics (United States)'),
(31870, 'https://ror.org/00c7wdg54', 'en', 1, 'https://ror.org/00c7wdg54 International Centre for Applied Research and Sustainable Technology'),
(31871, 'https://ror.org/0392s7a63', 'no_lang_code', 1, 'https://ror.org/0392s7a63 Accelogic (United States)'),
(31872, 'https://ror.org/00eb4p978', 'no_lang_code', 1, 'https://ror.org/00eb4p978 Adiabatics (United States)'),
(31873, 'https://ror.org/02wzw7340', 'no_lang_code', 1, 'https://ror.org/02wzw7340 Advanced Infoneering (United States)'),
(31874, 'https://ror.org/02gjczz49', 'no_lang_code', 1, 'https://ror.org/02gjczz49 Adlyfe (United States)'),
(31875, 'https://ror.org/01pw4qf65', 'no_lang_code', 1, 'https://ror.org/01pw4qf65 Accipiter Systems (United States)'),
(31876, 'https://ror.org/02ny7hp72', 'no_lang_code', 1, 'https://ror.org/02ny7hp72 Adsys Controls (United States)'),
(31877, 'https://ror.org/04v77td31', 'no_lang_code', 1, 'https://ror.org/04v77td31 AdTech Systems Research (United States)'),
(31878, 'https://ror.org/00dmrtz93', 'no_lang_code', 1, 'https://ror.org/00dmrtz93 AdValue Photonics (United States)'),
(31879, 'https://ror.org/00j5x7m46', 'no_lang_code', 1, 'https://ror.org/00j5x7m46 Maga (Slovakia)'),
(31880, 'https://ror.org/00f3bt271', 'no_lang_code', 1, 'https://ror.org/00f3bt271 Alameda Applied Sciences Corporation (United States)'),
(31881, 'https://ror.org/01nt9tz90', 'no_lang_code', 1, 'https://ror.org/01nt9tz90 Accurate Automation (United States)'),
(31882, 'https://ror.org/02rwvh228', 'no_lang_code', 1, 'https://ror.org/02rwvh228 Advanced Optical Systems (United States)'),
(31883, 'https://ror.org/025qyhe63', 'no_lang_code', 1, 'https://ror.org/025qyhe63 Advanced Powder Solutions (United States)'),
(31884, 'https://ror.org/009kb1442', 'no_lang_code', 1, 'https://ror.org/009kb1442 Radyne (United States)'),
(31885, 'https://ror.org/051pks088', 'no_lang_code', 1, 'https://ror.org/051pks088 Alelo (United States)'),
(31886, 'https://ror.org/050yq5k07', 'no_lang_code', 1, 'https://ror.org/050yq5k07 Aerobotix (United States)'),
(31887, 'https://ror.org/0114dtv81', 'no_lang_code', 1, 'https://ror.org/0114dtv81 Advanced Projects Research Incorporated (United States)'),
(31888, 'https://ror.org/05s37rv07', 'no_lang_code', 1, 'https://ror.org/05s37rv07 Acellent Technologies (United States)'),
(31889, 'https://ror.org/00snkpt73', 'no_lang_code', 1, 'https://ror.org/00snkpt73 Advanced Anti-Terror Technologies (United States)'),
(31890, 'https://ror.org/027jcmq30', 'no_lang_code', 1, 'https://ror.org/027jcmq30 Aeronix (United States)'),
(31891, 'https://ror.org/0479dbk76', 'no_lang_code', 1, 'https://ror.org/0479dbk76 Allcomp (United States)'),
(31892, 'https://ror.org/02hg6xf68', 'no_lang_code', 1, 'https://ror.org/02hg6xf68 Applied Quantum Technologies (United States)'),
(31893, 'https://ror.org/02m359g33', 'no_lang_code', 1, 'https://ror.org/02m359g33 ANDRO (United States)'),
(31894, 'https://ror.org/03hv2xm40', 'no_lang_code', 1, 'https://ror.org/03hv2xm40 Argtec (United States)'),
(31895, 'https://ror.org/03yktc864', 'no_lang_code', 1, 'https://ror.org/03yktc864 Aneeve Nanotechnologies (United States)'),
(31896, 'https://ror.org/018c3mn79', 'no_lang_code', 1, 'https://ror.org/018c3mn79 L-3 Aeromet (United States)'),
(31897, 'https://ror.org/02tgjtw54', 'no_lang_code', 1, 'https://ror.org/02tgjtw54 Applied Radar (United States)'),
(31898, 'https://ror.org/040mndz48', 'no_lang_code', 1, 'https://ror.org/040mndz48 ArmorWorks (United States)'),
(31899, 'https://ror.org/0576bcx21', 'no_lang_code', 1, 'https://ror.org/0576bcx21 ANP Technologies (United States)'),
(31900, 'https://ror.org/01f2gxt17', 'no_lang_code', 1, 'https://ror.org/01f2gxt17 Alpha Omega Electromagnetics (United States)'),
(31901, 'https://ror.org/00ay9je56', 'no_lang_code', 1, 'https://ror.org/00ay9je56 Aeroprobe (United States)'),
(31902, 'https://ror.org/04xk7h867', 'no_lang_code', 1, 'https://ror.org/04xk7h867 AeroSoft (United States)'),
(31903, 'https://ror.org/05cwfaq02', 'no_lang_code', 1, 'https://ror.org/05cwfaq02 Anyar (United States)'),
(31904, 'https://ror.org/01xhkgx67', 'no_lang_code', 1, 'https://ror.org/01xhkgx67 Aoptix Technologies (United States)'),
(31905, 'https://ror.org/00hneab90', 'no_lang_code', 1, 'https://ror.org/00hneab90 Aero-Tech Engineering (United States)'),
(31906, 'https://ror.org/00f6jds84', 'no_lang_code', 1, 'https://ror.org/00f6jds84 Applied Science Innovations (United States)'),
(31907, 'https://ror.org/007e0tk18', 'no_lang_code', 1, 'https://ror.org/007e0tk18 AOSense (United States)'),
(31908, 'https://ror.org/05qg6df59', 'no_lang_code', 1, 'https://ror.org/05qg6df59 Art Anderson Associates (United States)'),
(31909, 'https://ror.org/05hakgg65', 'no_lang_code', 1, 'https://ror.org/05hakgg65 Advanced Power Electronics (United States)'),
(31910, 'https://ror.org/03gby7r56', 'no_lang_code', 1, 'https://ror.org/03gby7r56 Artium Technologies (United States)'),
(31911, 'https://ror.org/049bwjd71', 'no_lang_code', 1, 'https://ror.org/049bwjd71 Alpha Star (United States)'),
(31912, 'https://ror.org/03vdsrw05', 'no_lang_code', 1, 'https://ror.org/03vdsrw05 Arxan (United States)'),
(31913, 'https://ror.org/05kz9t998', 'no_lang_code', 1, 'https://ror.org/05kz9t998 Tondi Elektroonika (Estonia)'),
(31914, 'https://ror.org/02cnc7158', 'no_lang_code', 1, 'https://ror.org/02cnc7158 Aerovel Corporation (United States)'),
(31915, 'https://ror.org/02kazyy76', 'no_lang_code', 1, 'https://ror.org/02kazyy76 Ascendant Engineering Solutions (United States)'),
(31916, 'https://ror.org/05x8n1r57', 'no_lang_code', 1, 'https://ror.org/05x8n1r57 Analytical Processes Engineered Solutions (United States)'),
(31917, 'https://ror.org/00fg8jj39', 'no_lang_code', 1, 'https://ror.org/00fg8jj39 Applied Signals Intelligence (United States)'),
(31918, 'https://ror.org/02a87jr47', 'no_lang_code', 1, 'https://ror.org/02a87jr47 ASR (United States)'),
(31919, 'https://ror.org/055kw3s45', 'no_lang_code', 1, 'https://ror.org/055kw3s45 APIC (United States)'),
(31920, 'https://ror.org/00b2em573', 'no_lang_code', 1, 'https://ror.org/00b2em573 Assett (United States)'),
(31921, 'https://ror.org/029qxj390', 'no_lang_code', 1, 'https://ror.org/029qxj390 AET (United States)'),
(31922, 'https://ror.org/03ekxyc66', 'no_lang_code', 1, 'https://ror.org/03ekxyc66 Apollo Enterprise Solutions (United States)'),
(31923, 'https://ror.org/0343ms580', 'no_lang_code', 1, 'https://ror.org/0343ms580 Applied Spectra (United States)'),
(31924, 'https://ror.org/00w5xhg82', 'no_lang_code', 1, 'https://ror.org/00w5xhg82 Assured Information Security (United States)'),
(31925, 'https://ror.org/04pmnt922', 'no_lang_code', 1, 'https://ror.org/04pmnt922 Apollo Instruments (United States)'),
(31926, 'https://ror.org/034exbn27', 'no_lang_code', 1, 'https://ror.org/034exbn27 Veloxiti (United States)'),
(31927, 'https://ror.org/038rwdb10', 'no_lang_code', 1, 'https://ror.org/038rwdb10 Niowave (United States)'),
(31928, 'https://ror.org/02efksf92', 'no_lang_code', 1, 'https://ror.org/02efksf92 Aetion (United States)'),
(31929, 'https://ror.org/03fwraz06', 'no_lang_code', 1, 'https://ror.org/03fwraz06 Applied Technologies (United States)'),
(31930, 'https://ror.org/00wpqwm31', 'no_lang_code', 1, 'https://ror.org/00wpqwm31 Astron Wireless Technologies (United States)'),
(31931, 'https://ror.org/048kv9325', 'no_lang_code', 1, 'https://ror.org/048kv9325 Applications Research (United States)'),
(31932, 'https://ror.org/048f9kd86', 'no_lang_code', 1, 'https://ror.org/048f9kd86 Applied Defense Solutions (United States)'),
(31933, 'https://ror.org/04jgfn484', 'no_lang_code', 1, 'https://ror.org/04jgfn484 Applied Technology Associates (United States)'),
(31934, 'https://ror.org/00w00g774', 'no_lang_code', 1, 'https://ror.org/00w00g774 Applied Diamond (United States)'),
(31935, 'https://ror.org/0144g8j35', 'no_lang_code', 1, 'https://ror.org/0144g8j35 Applied Thermal Sciences (United States)'),
(31936, 'https://ror.org/0533a4v91', 'no_lang_code', 1, 'https://ror.org/0533a4v91 Ambalux (United States)'),
(31937, 'https://ror.org/04ntqmb28', 'no_lang_code', 1, 'https://ror.org/04ntqmb28 Applied Visions (United States)'),
(31938, 'https://ror.org/038z36w15', 'no_lang_code', 1, 'https://ror.org/038z36w15 Applied EM (United States)'),
(31939, 'https://ror.org/010mkx366', 'no_lang_code', 1, 'https://ror.org/010mkx366 APS Materials (United States)'),
(31940, 'https://ror.org/030nbqh22', 'no_lang_code', 1, 'https://ror.org/030nbqh22 MRV Communications (United States)'),
(31941, 'https://ror.org/01gp78072', 'no_lang_code', 1, 'https://ror.org/01gp78072 ATA Engineering (United States)'),
(31942, 'https://ror.org/04h1q4c89', 'no_lang_code', 1, 'https://ror.org/04h1q4c89 Applied Materials (United States)'),
(31943, 'https://ror.org/035ryz567', 'no_lang_code', 1, 'https://ror.org/035ryz567 Atac (United States)'),
(31944, 'https://ror.org/031ghkc34', 'no_lang_code', 1, 'https://ror.org/031ghkc34 Agile Systems (United States)'),
(31945, 'https://ror.org/02xgmf234', 'no_lang_code', 1, 'https://ror.org/02xgmf234 Amelex (United States)'),
(31946, 'https://ror.org/03seew607', 'no_lang_code', 1, 'https://ror.org/03seew607 Applied Mathematics (United States)'),
(31947, 'https://ror.org/03j35d806', 'no_lang_code', 1, 'https://ror.org/03j35d806 Advanced Oxygen Technologies (United States)'),
(31948, 'https://ror.org/02r089428', 'no_lang_code', 1, 'https://ror.org/02r089428 AgilOptics (United States)'),
(31949, 'https://ror.org/03szmqd24', 'no_lang_code', 1, 'https://ror.org/03szmqd24 Applied Minds (United States)'),
(31950, 'https://ror.org/03hrc3v54', 'no_lang_code', 1, 'https://ror.org/03hrc3v54 Agnik (United States)'),
(31951, 'https://ror.org/0128rca86', 'no_lang_code', 1, 'https://ror.org/0128rca86 Applied NanoFemto Technologies (United States)'),
(31952, 'https://ror.org/02taxhk03', 'no_lang_code', 1, 'https://ror.org/02taxhk03 Aqwest (United States)'),
(31953, 'https://ror.org/04xrsmr92', 'en', 1, 'https://ror.org/04xrsmr92 Applied Natural Sciences'),
(31954, 'https://ror.org/05w34fa93', 'no_lang_code', 1, 'https://ror.org/05w34fa93 ARC Technology (United States)'),
(31955, 'https://ror.org/04jc8gz43', 'no_lang_code', 1, 'https://ror.org/04jc8gz43 Archangel Systems (United States)'),
(31956, 'https://ror.org/004b0n253', 'no_lang_code', 1, 'https://ror.org/004b0n253 Applied Optimization (United States)');
INSERT INTO `rors` VALUES
(31957, 'https://ror.org/01pg4hf90', 'no_lang_code', 1, 'https://ror.org/01pg4hf90 Beck Engineering (United States)'),
(31958, 'https://ror.org/05vxv5b07', 'no_lang_code', 1, 'https://ror.org/05vxv5b07 Applied Optoelectronics (United States)'),
(31959, 'https://ror.org/0151men77', 'no_lang_code', 1, 'https://ror.org/0151men77 American Energy Technologies Co (United States)'),
(31960, 'https://ror.org/010qvsb68', 'no_lang_code', 1, 'https://ror.org/010qvsb68 American GNC (United States)'),
(31961, 'https://ror.org/012c68819', 'no_lang_code', 1, 'https://ror.org/012c68819 Bedford Signals (United States)'),
(31962, 'https://ror.org/00pyrxj28', 'no_lang_code', 1, 'https://ror.org/00pyrxj28 American Research Corporation of Virginia (United States)'),
(31963, 'https://ror.org/028btas66', 'no_lang_code', 1, 'https://ror.org/028btas66 Applied Physical Electronics (United States)'),
(31964, 'https://ror.org/04a8v6p14', 'no_lang_code', 1, 'https://ror.org/04a8v6p14 Hisense (United States)'),
(31965, 'https://ror.org/04ap8h142', 'en', 1, 'https://ror.org/04ap8h142 Arid Forest Research Institute'),
(31966, 'https://ror.org/02s5wxe37', 'no_lang_code', 1, 'https://ror.org/02s5wxe37 Applied Poleramic (United States)'),
(31967, 'https://ror.org/03m27ps35', 'no_lang_code', 1, 'https://ror.org/03m27ps35 Applied Pulsed Power (United States)'),
(31968, 'https://ror.org/04yzv9k35', 'no_lang_code', 1, 'https://ror.org/04yzv9k35 Archinoetics (United States)'),
(31969, 'https://ror.org/01xa12s81', 'no_lang_code', 1, 'https://ror.org/01xa12s81 Beltran (United States)'),
(31970, 'https://ror.org/04g3dhy48', 'no_lang_code', 1, 'https://ror.org/04g3dhy48 American Semiconductor (United States)'),
(31971, 'https://ror.org/05v32ez80', 'no_lang_code', 1, 'https://ror.org/05v32ez80 Broadata Communications (United States)'),
(31972, 'https://ror.org/02mba1x93', 'no_lang_code', 1, 'https://ror.org/02mba1x93 BrockTek (United States)'),
(31973, 'https://ror.org/05jdbvf64', 'no_lang_code', 1, 'https://ror.org/05jdbvf64 Arcon (United States)'),
(31974, 'https://ror.org/02dh89n26', 'no_lang_code', 1, 'https://ror.org/02dh89n26 BerrieHill Research (United States)'),
(31975, 'https://ror.org/01bes9d74', 'no_lang_code', 1, 'https://ror.org/01bes9d74 CeraNova (United States)'),
(31976, 'https://ror.org/03tcp5e90', 'no_lang_code', 1, 'https://ror.org/03tcp5e90 Brookhaven Technology Group (United States)'),
(31977, 'https://ror.org/01cf7yd40', 'no_lang_code', 1, 'https://ror.org/01cf7yd40 Arzon Solar (United States)'),
(31978, 'https://ror.org/01xdzbt45', 'no_lang_code', 1, 'https://ror.org/01xdzbt45 Verisk Analytics (United States)'),
(31979, 'https://ror.org/0035qd675', 'no_lang_code', 1, 'https://ror.org/0035qd675 BTech Acoustics (United States)'),
(31980, 'https://ror.org/02hbnw031', 'no_lang_code', 1, 'https://ror.org/02hbnw031 Cermet (United States)'),
(31981, 'https://ror.org/00z84b305', 'no_lang_code', 1, 'https://ror.org/00z84b305 Microscan Systems (United States)'),
(31982, 'https://ror.org/02gt7fw23', 'no_lang_code', 1, 'https://ror.org/02gt7fw23 Burge Environmental (United States)'),
(31983, 'https://ror.org/015d68237', 'no_lang_code', 1, 'https://ror.org/015d68237 Amtec (United States)'),
(31984, 'https://ror.org/01y9dfy03', 'no_lang_code', 1, 'https://ror.org/01y9dfy03 Bihrle Applied Research (United States)'),
(31985, 'https://ror.org/03gc99a64', 'no_lang_code', 1, 'https://ror.org/03gc99a64 CF Technologies (United States)'),
(31986, 'https://ror.org/04ytsjz62', 'no_lang_code', 1, 'https://ror.org/04ytsjz62 C & P Technologies (United States)'),
(31987, 'https://ror.org/01d2mj830', 'no_lang_code', 1, 'https://ror.org/01d2mj830 Quantum3D (United States)'),
(31988, 'https://ror.org/03djma825', 'no_lang_code', 1, 'https://ror.org/03djma825 Analatom (United States)'),
(31989, 'https://ror.org/056s1k160', 'no_lang_code', 1, 'https://ror.org/056s1k160 Analysis and Measurement Services (United States)'),
(31990, 'https://ror.org/026txtp63', 'no_lang_code', 1, 'https://ror.org/026txtp63 Ineos (United States)'),
(31991, 'https://ror.org/02dzzer59', 'no_lang_code', 1, 'https://ror.org/02dzzer59 Cha Corporation (United States)'),
(31992, 'https://ror.org/03earrv48', 'no_lang_code', 1, 'https://ror.org/03earrv48 C3I (United States)'),
(31993, 'https://ror.org/05y86p525', 'no_lang_code', 1, 'https://ror.org/05y86p525 Analysis Design & Diagnostics (United States)'),
(31994, 'https://ror.org/03w767q23', 'no_lang_code', 1, 'https://ror.org/03w767q23 Chang Industry (United States)'),
(31995, 'https://ror.org/038k3d331', 'no_lang_code', 1, 'https://ror.org/038k3d331 CAE Solutions (United States)'),
(31996, 'https://ror.org/045na2h79', 'no_lang_code', 1, 'https://ror.org/045na2h79 MFC Industrial (United States)'),
(31997, 'https://ror.org/0113rr846', 'no_lang_code', 1, 'https://ror.org/0113rr846 Analytical Engineering (United States)'),
(31998, 'https://ror.org/04cr2kz28', 'no_lang_code', 1, 'https://ror.org/04cr2kz28 Genesis Industries (United States)'),
(31999, 'https://ror.org/03z47zw42', 'no_lang_code', 1, 'https://ror.org/03z47zw42 Charles River Analytics (United States)'),
(32000, 'https://ror.org/04j62df57', 'no_lang_code', 1, 'https://ror.org/04j62df57 Atmospheric Observing Systems (United States)'),
(32001, 'https://ror.org/00heb0a94', 'no_lang_code', 1, 'https://ror.org/00heb0a94 Stark Aerospace (United States)'),
(32002, 'https://ror.org/05qb22n20', 'no_lang_code', 1, 'https://ror.org/05qb22n20 ChemImage (United States)'),
(32003, 'https://ror.org/02fnwes63', 'no_lang_code', 1, 'https://ror.org/02fnwes63 ASRC Federal Analytical Service (United States)'),
(32004, 'https://ror.org/03h6x6x11', 'no_lang_code', 1, 'https://ror.org/03h6x6x11 Curtiss-Wright (United States)'),
(32005, 'https://ror.org/00y3nx324', 'no_lang_code', 1, 'https://ror.org/00y3nx324 Auriga Microwave (United States)'),
(32006, 'https://ror.org/03ck8xc11', 'no_lang_code', 1, 'https://ror.org/03ck8xc11 CDM Smith (United States)'),
(32007, 'https://ror.org/021a9kk09', 'no_lang_code', 1, 'https://ror.org/021a9kk09 Aurrion (United States)'),
(32008, 'https://ror.org/05ppfhw72', 'no_lang_code', 1, 'https://ror.org/05ppfhw72 Analytical Spectral Devices (United States)'),
(32009, 'https://ror.org/04xx2fj27', 'no_lang_code', 1, 'https://ror.org/04xx2fj27 Chip Design Systems (United States)'),
(32010, 'https://ror.org/00w901m21', 'no_lang_code', 1, 'https://ror.org/00w901m21 Candent Technologies (United States)'),
(32011, 'https://ror.org/00w4c2196', 'no_lang_code', 1, 'https://ror.org/00w4c2196 Capco (United States)'),
(32012, 'https://ror.org/015zgtx05', 'no_lang_code', 1, 'https://ror.org/015zgtx05 Autonomous Solutions (United States)'),
(32013, 'https://ror.org/01s0mmt42', 'no_lang_code', 1, 'https://ror.org/01s0mmt42 Black Forest Engineering (United States)'),
(32014, 'https://ror.org/02585xs81', 'no_lang_code', 1, 'https://ror.org/02585xs81 Black Laboratories (United States)'),
(32015, 'https://ror.org/01pkxvt59', 'no_lang_code', 1, 'https://ror.org/01pkxvt59 Anamet (United States)'),
(32016, 'https://ror.org/024nxr378', 'no_lang_code', 1, 'https://ror.org/024nxr378 Avineon (United States)'),
(32017, 'https://ror.org/027990s04', 'no_lang_code', 1, 'https://ror.org/027990s04 Black River Systems (United States)'),
(32018, 'https://ror.org/02ma9nk57', 'no_lang_code', 1, 'https://ror.org/02ma9nk57 Capraro Technologies (United States)'),
(32019, 'https://ror.org/055909c12', 'no_lang_code', 1, 'https://ror.org/055909c12 Avirtek (United States)'),
(32020, 'https://ror.org/04rxtvg30', 'no_lang_code', 1, 'https://ror.org/04rxtvg30 Carbon Solutions (United States)'),
(32021, 'https://ror.org/01bgg3897', 'no_lang_code', 1, 'https://ror.org/01bgg3897 Anasphere (United States)'),
(32022, 'https://ror.org/05f6mfg13', 'no_lang_code', 1, 'https://ror.org/05f6mfg13 Avisys (United States)'),
(32023, 'https://ror.org/01peehd17', 'no_lang_code', 1, 'https://ror.org/01peehd17 Cimarron Software (United States)'),
(32024, 'https://ror.org/02v93c994', 'no_lang_code', 1, 'https://ror.org/02v93c994 Blade Diagnostics (United States)'),
(32025, 'https://ror.org/05v8xqq83', 'no_lang_code', 1, 'https://ror.org/05v8xqq83 Advanced Processing Technology (United States)'),
(32026, 'https://ror.org/059y2we84', 'no_lang_code', 1, 'https://ror.org/059y2we84 BlazeTech (United States)'),
(32027, 'https://ror.org/00ewcgt31', 'no_lang_code', 1, 'https://ror.org/00ewcgt31 Clear Science Corporation (United States)'),
(32028, 'https://ror.org/055kcmv29', 'no_lang_code', 1, 'https://ror.org/055kcmv29 Anautics (United States)'),
(32029, 'https://ror.org/00r69j102', 'no_lang_code', 1, 'https://ror.org/00r69j102 Blue Canyon Technologies (United States)'),
(32030, 'https://ror.org/01ztv7k18', 'no_lang_code', 1, 'https://ror.org/01ztv7k18 Carnegie Robotics (United States)'),
(32031, 'https://ror.org/02jgx6t51', 'no_lang_code', 1, 'https://ror.org/02jgx6t51 Kratos Defense & Security Solutions (United States)'),
(32032, 'https://ror.org/04yncke10', 'no_lang_code', 1, 'https://ror.org/04yncke10 Gooch & Housego (United States)'),
(32033, 'https://ror.org/00x4j8f40', 'no_lang_code', 1, 'https://ror.org/00x4j8f40 Carolina Unmanned Vehicles (United States)'),
(32034, 'https://ror.org/01n5yhf55', 'no_lang_code', 1, 'https://ror.org/01n5yhf55 Apogee Technology (United States)'),
(32035, 'https://ror.org/03w007e62', 'no_lang_code', 1, 'https://ror.org/03w007e62 Aware (United States)'),
(32036, 'https://ror.org/03v7zn827', 'en', 1, 'https://ror.org/03v7zn827 Clifton Labs'),
(32037, 'https://ror.org/010smqa50', 'no_lang_code', 1, 'https://ror.org/010smqa50 Spaceflight Industries (United States)'),
(32038, 'https://ror.org/05y6gdf04', 'no_lang_code', 1, 'https://ror.org/05y6gdf04 AZ Technology (United States)'),
(32039, 'https://ror.org/05a9qm317', 'no_lang_code', 1, 'https://ror.org/05a9qm317 Cascade Designs (United States)'),
(32040, 'https://ror.org/01cq4cc70', 'no_lang_code', 1, 'https://ror.org/01cq4cc70 Blue Sky Electronics (United States)'),
(32041, 'https://ror.org/0401b3q74', 'no_lang_code', 1, 'https://ror.org/0401b3q74 Cascade Microtech (United States)'),
(32042, 'https://ror.org/04fa4r544', 'en', 1, 'https://ror.org/04fa4r544 ORCID'),
(32043, 'https://ror.org/027z7k446', 'no_lang_code', 1, 'https://ror.org/027z7k446 B.E. Meyers & Co (United States)'),
(32044, 'https://ror.org/01evs2j21', 'no_lang_code', 1, 'https://ror.org/01evs2j21 BMA Engineering (United States)'),
(32045, 'https://ror.org/04b1eqn95', 'no_lang_code', 1, 'https://ror.org/04b1eqn95 Bodkin Design & Engineering (United States)'),
(32046, 'https://ror.org/03b20q825', 'no_lang_code', 1, 'https://ror.org/03b20q825 Baker Engineering (United States)'),
(32047, 'https://ror.org/00b6h1f45', 'no_lang_code', 1, 'https://ror.org/00b6h1f45 Commonwealth Computer Research (United States)'),
(32048, 'https://ror.org/02q8a6a36', 'no_lang_code', 1, 'https://ror.org/02q8a6a36 CMSoft (United States)'),
(32049, 'https://ror.org/007j0dg36', 'no_lang_code', 1, 'https://ror.org/007j0dg36 Baker Engineering and Risk Consultants (United States)'),
(32050, 'https://ror.org/049zmb830', 'no_lang_code', 1, 'https://ror.org/049zmb830 Afognak Native Corporation (United States)'),
(32051, 'https://ror.org/028gxg804', 'no_lang_code', 1, 'https://ror.org/028gxg804 Catalytic Materials (United States)'),
(32052, 'https://ror.org/02cxh9170', 'no_lang_code', 1, 'https://ror.org/02cxh9170 Boston Engineering (United States)'),
(32053, 'https://ror.org/009rps409', 'no_lang_code', 1, 'https://ror.org/009rps409 CBRITE (United States)'),
(32054, 'https://ror.org/05a45xy69', 'no_lang_code', 1, 'https://ror.org/05a45xy69 Compass Technology Group (United States)'),
(32055, 'https://ror.org/04z5km850', 'no_lang_code', 1, 'https://ror.org/04z5km850 Bascom Hunter (United States)'),
(32056, 'https://ror.org/03m41f504', 'no_lang_code', 1, 'https://ror.org/03m41f504 Basic Commerce and Industries (United States)'),
(32057, 'https://ror.org/00t3ptr62', 'no_lang_code', 1, 'https://ror.org/00t3ptr62 Boston Micromachines (United States)'),
(32058, 'https://ror.org/02etpnx57', 'no_lang_code', 1, 'https://ror.org/02etpnx57 Battlespace Simulations (United States)'),
(32059, 'https://ror.org/04s1tmp27', 'no_lang_code', 1, 'https://ror.org/04s1tmp27 CogniTech (United States)'),
(32060, 'https://ror.org/04pdgtw09', 'no_lang_code', 1, 'https://ror.org/04pdgtw09 Celadon Laboratories (United States)'),
(32061, 'https://ror.org/04k00np26', 'no_lang_code', 1, 'https://ror.org/04k00np26 BrainAid (United States)'),
(32062, 'https://ror.org/02d79dn07', 'no_lang_code', 1, 'https://ror.org/02d79dn07 Valore (United States)'),
(32063, 'https://ror.org/03f1mqp12', 'no_lang_code', 1, 'https://ror.org/03f1mqp12 VCORE Solutions (United States)'),
(32064, 'https://ror.org/039bq6320', 'no_lang_code', 1, 'https://ror.org/039bq6320 Cellular Materials International (United States)'),
(32065, 'https://ror.org/00td0ce11', 'no_lang_code', 1, 'https://ror.org/00td0ce11 AFCO Systems (United States)'),
(32066, 'https://ror.org/03xqmhf90', 'no_lang_code', 1, 'https://ror.org/03xqmhf90 Breault Research Organization (United States)'),
(32067, 'https://ror.org/028erp057', 'no_lang_code', 1, 'https://ror.org/028erp057 Coherent Technical Services (United States)'),
(32068, 'https://ror.org/05rfchc95', 'no_lang_code', 1, 'https://ror.org/05rfchc95 Beacon Interactive Systems (United States)'),
(32069, 'https://ror.org/04qsy0p12', 'no_lang_code', 1, 'https://ror.org/04qsy0p12 Centeye (United States)'),
(32070, 'https://ror.org/01b448t83', 'no_lang_code', 1, 'https://ror.org/01b448t83 Brimrose (United States)'),
(32071, 'https://ror.org/054271w14', 'no_lang_code', 1, 'https://ror.org/054271w14 Computational Sensors (United States)'),
(32072, 'https://ror.org/03890hq18', 'no_lang_code', 1, 'https://ror.org/03890hq18 Triton Systems (United States)'),
(32073, 'https://ror.org/02t9jkq72', 'no_lang_code', 1, 'https://ror.org/02t9jkq72 Beam Engineering for Advanced Measurements (United States)'),
(32074, 'https://ror.org/01sv72659', 'en', 1, 'https://ror.org/01sv72659 Computer Measurement Laboratory'),
(32075, 'https://ror.org/03e2b0r58', 'no_lang_code', 1, 'https://ror.org/03e2b0r58 Critical Technologies (United States)'),
(32076, 'https://ror.org/02ympmq44', 'no_lang_code', 1, 'https://ror.org/02ympmq44 Crossfield Technology (United States)'),
(32077, 'https://ror.org/03snc9f81', 'no_lang_code', 1, 'https://ror.org/03snc9f81 HyperSizer (United States)'),
(32078, 'https://ror.org/05vd41376', 'no_lang_code', 1, 'https://ror.org/05vd41376 CreoNex Systems (United States)'),
(32079, 'https://ror.org/05s7mav43', 'no_lang_code', 1, 'https://ror.org/05s7mav43 Clear Align (United States)'),
(32080, 'https://ror.org/04sdthy66', 'no_lang_code', 1, 'https://ror.org/04sdthy66 Cascade Engineering (United States)'),
(32081, 'https://ror.org/01274hc70', 'no_lang_code', 1, 'https://ror.org/01274hc70 Colorado Engineering (United States)'),
(32082, 'https://ror.org/04rx5jd37', 'no_lang_code', 1, 'https://ror.org/04rx5jd37 Dignitas Technologies (United States)'),
(32083, 'https://ror.org/01p2rmv38', 'no_lang_code', 1, 'https://ror.org/01p2rmv38 DataSoft (United States)'),
(32084, 'https://ror.org/042wp4851', 'no_lang_code', 1, 'https://ror.org/042wp4851 CompuTherm (United States)'),
(32085, 'https://ror.org/016ywfq33', 'no_lang_code', 1, 'https://ror.org/016ywfq33 Directed Energy Solutions (United States)'),
(32086, 'https://ror.org/03r907b47', 'no_lang_code', 1, 'https://ror.org/03r907b47 Crye Precision (United States)'),
(32087, 'https://ror.org/02t942m04', 'no_lang_code', 1, 'https://ror.org/02t942m04 Edaptive Computing (United States)'),
(32088, 'https://ror.org/05g28da90', 'no_lang_code', 1, 'https://ror.org/05g28da90 Strategic Analysis (United States)'),
(32089, 'https://ror.org/020ezhp63', 'no_lang_code', 1, 'https://ror.org/020ezhp63 Conceptual Mindworks (United States)'),
(32090, 'https://ror.org/04kpceh54', 'no_lang_code', 1, 'https://ror.org/04kpceh54 Directed Vapor Technologies (United States)'),
(32091, 'https://ror.org/00hqnb941', 'no_lang_code', 1, 'https://ror.org/00hqnb941 Asahi Kasei (United States)'),
(32092, 'https://ror.org/033n46m09', 'no_lang_code', 1, 'https://ror.org/033n46m09 DB&A (United States)'),
(32093, 'https://ror.org/01nedp435', 'no_lang_code', 1, 'https://ror.org/01nedp435 Discovery Machine (United States)'),
(32094, 'https://ror.org/00agf0486', 'no_lang_code', 1, 'https://ror.org/00agf0486 Concorde Battery (United States)'),
(32095, 'https://ror.org/0020g7t18', 'no_lang_code', 1, 'https://ror.org/0020g7t18 Davidson Technologies (United States)'),
(32096, 'https://ror.org/03wwg5r17', 'no_lang_code', 1, 'https://ror.org/03wwg5r17 Discovery Semiconductors (United States)'),
(32097, 'https://ror.org/02vfyyh15', 'no_lang_code', 1, 'https://ror.org/02vfyyh15 CU Aerospace (United States)'),
(32098, 'https://ror.org/0306syb73', 'no_lang_code', 1, 'https://ror.org/0306syb73 Eigent Technologies (United States)'),
(32099, 'https://ror.org/03rq52312', 'no_lang_code', 1, 'https://ror.org/03rq52312 Conductive Composites (United States)'),
(32100, 'https://ror.org/001c7xr36', 'no_lang_code', 1, 'https://ror.org/001c7xr36 Custom MMIC (United States)'),
(32101, 'https://ror.org/015r6y659', 'no_lang_code', 1, 'https://ror.org/015r6y659 CTS Corporation (United States)'),
(32102, 'https://ror.org/0575ww420', 'no_lang_code', 1, 'https://ror.org/0575ww420 Cyan Systems (United States)'),
(32103, 'https://ror.org/0018wtq07', 'no_lang_code', 1, 'https://ror.org/0018wtq07 Diversified Technical Systems (United States)'),
(32104, 'https://ror.org/016hg3c35', 'no_lang_code', 1, 'https://ror.org/016hg3c35 Cyber Defense Agency (United States)'),
(32105, 'https://ror.org/04kjswq56', 'no_lang_code', 1, 'https://ror.org/04kjswq56 Electro Magnetic Applications (United States)'),
(32106, 'https://ror.org/04f3bkd55', 'no_lang_code', 1, 'https://ror.org/04f3bkd55 Cascade (United States)'),
(32107, 'https://ror.org/043c9gs72', 'no_lang_code', 1, 'https://ror.org/043c9gs72 Diversified Technologies (United States)'),
(32108, 'https://ror.org/02h7h5x62', 'no_lang_code', 1, 'https://ror.org/02h7h5x62 Electro Standards Laboratories (United States)'),
(32109, 'https://ror.org/00farq383', 'no_lang_code', 1, 'https://ror.org/00farq383 DeciBel Research (United States)'),
(32110, 'https://ror.org/03xnrcj96', 'no_lang_code', 1, 'https://ror.org/03xnrcj96 Continental Computers (United States)'),
(32111, 'https://ror.org/01yp11k49', 'no_lang_code', 1, 'https://ror.org/01yp11k49 Diversitech (United States)'),
(32112, 'https://ror.org/01t4yq738', 'no_lang_code', 1, 'https://ror.org/01t4yq738 Cube Technology (United States)'),
(32113, 'https://ror.org/005qng483', 'no_lang_code', 1, 'https://ror.org/005qng483 Decision Dynamics (United States)'),
(32114, 'https://ror.org/03abrt645', 'no_lang_code', 1, 'https://ror.org/03abrt645 DNA Solutions (United States)'),
(32115, 'https://ror.org/01axmz803', 'no_lang_code', 1, 'https://ror.org/01axmz803 Control Vision (United States)'),
(32116, 'https://ror.org/03gcvf773', 'no_lang_code', 1, 'https://ror.org/03gcvf773 Decision Sciences (United States)'),
(32117, 'https://ror.org/051b2q112', 'no_lang_code', 1, 'https://ror.org/051b2q112 ITT (United States)'),
(32118, 'https://ror.org/013a8zf56', 'no_lang_code', 1, 'https://ror.org/013a8zf56 SynTech Bioenergy (United States)'),
(32119, 'https://ror.org/0056xt122', 'no_lang_code', 1, 'https://ror.org/0056xt122 Decision Sciences International Corporation (United States)'),
(32120, 'https://ror.org/010ggtr76', 'no_lang_code', 1, 'https://ror.org/010ggtr76 Cybosoft (United States)'),
(32121, 'https://ror.org/044f8a932', 'no_lang_code', 1, 'https://ror.org/044f8a932 Data Power Decisions (United States)'),
(32122, 'https://ror.org/05y99bn19', 'no_lang_code', 1, 'https://ror.org/05y99bn19 Cycorp (United States)'),
(32123, 'https://ror.org/020rxjn58', 'no_lang_code', 1, 'https://ror.org/020rxjn58 Cornerstone Research Group (United States)'),
(32124, 'https://ror.org/04fdrwm29', 'no_lang_code', 1, 'https://ror.org/04fdrwm29 Odyssey Investment Partners (United States)'),
(32125, 'https://ror.org/04rz3gb85', 'no_lang_code', 1, 'https://ror.org/04rz3gb85 Dragonfly Pictures (United States)'),
(32126, 'https://ror.org/05kmmnb39', 'no_lang_code', 1, 'https://ror.org/05kmmnb39 TNS (United States)'),
(32127, 'https://ror.org/0011c8r66', 'no_lang_code', 1, 'https://ror.org/0011c8r66 CornerTurn (United States)'),
(32128, 'https://ror.org/03gpwsk37', 'no_lang_code', 1, 'https://ror.org/03gpwsk37 DSPlogic (United States)'),
(32129, 'https://ror.org/00vzq1e41', 'no_lang_code', 1, 'https://ror.org/00vzq1e41 Decisive Analytics Corporation (United States)'),
(32130, 'https://ror.org/03v5g8n66', 'no_lang_code', 1, 'https://ror.org/03v5g8n66 ElectroDynamic Applications (United States)'),
(32131, 'https://ror.org/04fc1p069', 'no_lang_code', 1, 'https://ror.org/04fc1p069 Smiths Detection (United States)'),
(32132, 'https://ror.org/00c5zkt18', 'no_lang_code', 1, 'https://ror.org/00c5zkt18 D&P (United States)'),
(32133, 'https://ror.org/01acb5n90', 'no_lang_code', 1, 'https://ror.org/01acb5n90 Deep Web Technologies (United States)'),
(32134, 'https://ror.org/01h6a1346', 'no_lang_code', 1, 'https://ror.org/01h6a1346 D&S Consultants (United States)'),
(32135, 'https://ror.org/00mmb7886', 'no_lang_code', 1, 'https://ror.org/00mmb7886 Electrodynamics Associates (United States)'),
(32136, 'https://ror.org/026d26k38', 'no_lang_code', 1, 'https://ror.org/026d26k38 D-Star Engineering (United States)'),
(32137, 'https://ror.org/05nnc2r34', 'no_lang_code', 1, 'https://ror.org/05nnc2r34 DWA Technologies (United States)'),
(32138, 'https://ror.org/03m4h9428', 'no_lang_code', 1, 'https://ror.org/03m4h9428 Defense Research Associates (United States)'),
(32139, 'https://ror.org/05c11kf69', 'no_lang_code', 1, 'https://ror.org/05c11kf69 Veolia (United States)'),
(32140, 'https://ror.org/046ftar42', 'no_lang_code', 1, 'https://ror.org/046ftar42 Cortana (United States)'),
(32141, 'https://ror.org/00ghy7y53', 'no_lang_code', 1, 'https://ror.org/00ghy7y53 Electronic Concepts and Engineering (United States)'),
(32142, 'https://ror.org/03t0h6z08', 'no_lang_code', 1, 'https://ror.org/03t0h6z08 DANTE Solutions (United States)'),
(32143, 'https://ror.org/027s74w23', 'no_lang_code', 1, 'https://ror.org/027s74w23 Damaskos (United States)'),
(32144, 'https://ror.org/04xjzws62', 'no_lang_code', 1, 'https://ror.org/04xjzws62 Electronics Development Corporation (United States)'),
(32145, 'https://ror.org/042abnq57', 'no_lang_code', 1, 'https://ror.org/042abnq57 Elintrix (United States)'),
(32146, 'https://ror.org/05q0w0a95', 'no_lang_code', 1, 'https://ror.org/05q0w0a95 Dynamic Structures and Materials (United States)'),
(32147, 'https://ror.org/01xew3x83', 'no_lang_code', 1, 'https://ror.org/01xew3x83 EMAG Technologies (United States)'),
(32148, 'https://ror.org/04yzz6k63', 'no_lang_code', 1, 'https://ror.org/04yzz6k63 Damilic (United States)'),
(32149, 'https://ror.org/05w2sen95', 'no_lang_code', 1, 'https://ror.org/05w2sen95 Della Enterprises (United States)'),
(32150, 'https://ror.org/021y1yq56', 'no_lang_code', 1, 'https://ror.org/021y1yq56 Emergent Space Technologies (United States)'),
(32151, 'https://ror.org/035njr402', 'no_lang_code', 1, 'https://ror.org/035njr402 Dynamic Systems & Research (United States)'),
(32152, 'https://ror.org/003h3w310', 'no_lang_code', 1, 'https://ror.org/003h3w310 TSG Solutions (United States)'),
(32153, 'https://ror.org/05rwxjp51', 'no_lang_code', 1, 'https://ror.org/05rwxjp51 Emitech (United States)'),
(32154, 'https://ror.org/009yq5939', 'no_lang_code', 1, 'https://ror.org/009yq5939 Energent (United States)'),
(32155, 'https://ror.org/01xyfgx59', 'no_lang_code', 1, 'https://ror.org/01xyfgx59 Dynetics (United States)'),
(32156, 'https://ror.org/03k1vma03', 'no_lang_code', 1, 'https://ror.org/03k1vma03 Energetic Materials and Products Incorporation (United States)'),
(32157, 'https://ror.org/01yf5bk03', 'no_lang_code', 1, 'https://ror.org/01yf5bk03 Engineering & Scientific Innovations (United States)'),
(32158, 'https://ror.org/01zxfhv73', 'no_lang_code', 1, 'https://ror.org/01zxfhv73 Energetics (United States)'),
(32159, 'https://ror.org/051rke185', 'no_lang_code', 1, 'https://ror.org/051rke185 Eagle Harbor Technologies (United States)'),
(32160, 'https://ror.org/02amd8949', 'no_lang_code', 1, 'https://ror.org/02amd8949 Demeton Technologies (United States)'),
(32161, 'https://ror.org/03mc42j92', 'no_lang_code', 1, 'https://ror.org/03mc42j92 Deployable Space Systems (United States)'),
(32162, 'https://ror.org/05knz5v90', 'no_lang_code', 1, 'https://ror.org/05knz5v90 DESE Research (United States)'),
(32163, 'https://ror.org/0331gec24', 'no_lang_code', 1, 'https://ror.org/0331gec24 Enigmatics (United States)'),
(32164, 'https://ror.org/03q13kq93', 'no_lang_code', 1, 'https://ror.org/03q13kq93 Public Service Electric and Gas (United States)'),
(32165, 'https://ror.org/007nh3f56', 'no_lang_code', 1, 'https://ror.org/007nh3f56 East West Enterprises (United States)'),
(32166, 'https://ror.org/01k7j5430', 'no_lang_code', 1, 'https://ror.org/01k7j5430 Design Interactive (United States)'),
(32167, 'https://ror.org/00a4ryj05', 'no_lang_code', 1, 'https://ror.org/00a4ryj05 UIL Holdings (United States)'),
(32168, 'https://ror.org/01w6p0240', 'no_lang_code', 1, 'https://ror.org/01w6p0240 Energy Research Consultants (United States)'),
(32169, 'https://ror.org/02bz1zk40', 'no_lang_code', 1, 'https://ror.org/02bz1zk40 Design Net Engineering (United States)'),
(32170, 'https://ror.org/05snmdb74', 'no_lang_code', 1, 'https://ror.org/05snmdb74 Enser (United States)'),
(32171, 'https://ror.org/01gehgc29', 'no_lang_code', 1, 'https://ror.org/01gehgc29 Ebert Composites (United States)'),
(32172, 'https://ror.org/02vp4yp31', 'no_lang_code', 1, 'https://ror.org/02vp4yp31 Exothermics (United States)'),
(32173, 'https://ror.org/01hj33v12', 'no_lang_code', 1, 'https://ror.org/01hj33v12 Echo Ridge (United States)'),
(32174, 'https://ror.org/05v43a449', 'no_lang_code', 1, 'https://ror.org/05v43a449 Expand (United States)'),
(32175, 'https://ror.org/01brvan73', 'no_lang_code', 1, 'https://ror.org/01brvan73 Environetix Technologies (United States)'),
(32176, 'https://ror.org/00mwgpv54', 'no_lang_code', 1, 'https://ror.org/00mwgpv54 Eclipse Energy Systems (United States)'),
(32177, 'https://ror.org/05kyb6m55', 'no_lang_code', 1, 'https://ror.org/05kyb6m55 Diamond Antenna and Microwave (United States)'),
(32178, 'https://ror.org/01mf7pb88', 'no_lang_code', 1, 'https://ror.org/01mf7pb88 Expert Microsystems (United States)'),
(32179, 'https://ror.org/031n58j85', 'no_lang_code', 1, 'https://ror.org/031n58j85 Eos Photonics (United States)'),
(32180, 'https://ror.org/015frpz66', 'no_lang_code', 1, 'https://ror.org/015frpz66 Diamond Visionics (United States)'),
(32181, 'https://ror.org/0182wtt39', 'no_lang_code', 1, 'https://ror.org/0182wtt39 Fracture Analysis Consultants (United States)'),
(32182, 'https://ror.org/01y5j7h75', 'no_lang_code', 1, 'https://ror.org/01y5j7h75 Ecrossculture (United States)'),
(32183, 'https://ror.org/00ne5nn12', 'no_lang_code', 1, 'https://ror.org/00ne5nn12 EOSPACE (United States)'),
(32184, 'https://ror.org/04mvxcw39', 'no_lang_code', 1, 'https://ror.org/04mvxcw39 O’Gara Group (United States)'),
(32185, 'https://ror.org/03bd0by56', 'no_lang_code', 1, 'https://ror.org/03bd0by56 Kennametal (United States)'),
(32186, 'https://ror.org/005cgd502', 'no_lang_code', 1, 'https://ror.org/005cgd502 Digital Authentication Technologies (United States)'),
(32187, 'https://ror.org/00jycx837', 'no_lang_code', 1, 'https://ror.org/00jycx837 Eotron (United States)'),
(32188, 'https://ror.org/01354x477', 'no_lang_code', 1, 'https://ror.org/01354x477 Fantastic Data (United States)'),
(32189, 'https://ror.org/054srn740', 'no_lang_code', 1, 'https://ror.org/054srn740 EPIR Technologies (United States)'),
(32190, 'https://ror.org/03jn2ja08', 'no_lang_code', 1, 'https://ror.org/03jn2ja08 Xperi (United States)'),
(32191, 'https://ror.org/01wtzjm14', 'no_lang_code', 1, 'https://ror.org/01wtzjm14 Global Aerospace (United States)'),
(32192, 'https://ror.org/00sz7mx24', 'no_lang_code', 1, 'https://ror.org/00sz7mx24 Friction Stir Link (United States)'),
(32193, 'https://ror.org/01skcjx25', 'no_lang_code', 1, 'https://ror.org/01skcjx25 Far Tech (United States)'),
(32194, 'https://ror.org/00xactn75', 'no_lang_code', 1, 'https://ror.org/00xactn75 Epitaxial Technologies (United States)'),
(32195, 'https://ror.org/049f48g82', 'no_lang_code', 1, 'https://ror.org/049f48g82 F&S Building Innovations (United States)'),
(32196, 'https://ror.org/05f8s1h70', 'no_lang_code', 1, 'https://ror.org/05f8s1h70 Kforce (United States)'),
(32197, 'https://ror.org/03s8maf24', 'no_lang_code', 1, 'https://ror.org/03s8maf24 Frontier Performance Polymers (United States)'),
(32198, 'https://ror.org/027wsdy85', 'no_lang_code', 1, 'https://ror.org/027wsdy85 Digital Optics Technologies (United States)'),
(32199, 'https://ror.org/02xrt8f30', 'no_lang_code', 1, 'https://ror.org/02xrt8f30 FarCo Technologies (United States)'),
(32200, 'https://ror.org/05nf7ha92', 'no_lang_code', 1, 'https://ror.org/05nf7ha92 Global Embedded Technologies (United States)'),
(32201, 'https://ror.org/04gzn8442', 'no_lang_code', 1, 'https://ror.org/04gzn8442 Frontier Technology Incorporation (United States)'),
(32202, 'https://ror.org/028876725', 'no_lang_code', 1, 'https://ror.org/028876725 EpiWorks (United States)'),
(32203, 'https://ror.org/02r3f8m74', 'no_lang_code', 1, 'https://ror.org/02r3f8m74 Farr Fields (United States)'),
(32204, 'https://ror.org/05sb4tp69', 'no_lang_code', 1, 'https://ror.org/05sb4tp69 Global Engineering and Materials (United States)'),
(32205, 'https://ror.org/01ckgz972', 'no_lang_code', 1, 'https://ror.org/01ckgz972 Epsilon Lambda Electronics (United States)'),
(32206, 'https://ror.org/04hxkjw81', 'no_lang_code', 1, 'https://ror.org/04hxkjw81 Global Engineering Research and Technologies (United States)'),
(32207, 'https://ror.org/012ap0z55', 'no_lang_code', 1, 'https://ror.org/012ap0z55 Equinox (United States)'),
(32208, 'https://ror.org/051e8wd44', 'no_lang_code', 1, 'https://ror.org/051e8wd44 Digital Solid State Propulsion (United States)'),
(32209, 'https://ror.org/028jdjq42', 'no_lang_code', 1, 'https://ror.org/028jdjq42 Dominca (United States)'),
(32210, 'https://ror.org/04ehcx813', 'no_lang_code', 1, 'https://ror.org/04ehcx813 FTL Systems (United States)'),
(32211, 'https://ror.org/04wk8me05', 'no_lang_code', 1, 'https://ror.org/04wk8me05 Global InfoTek (United States)'),
(32212, 'https://ror.org/052syjz96', 'no_lang_code', 1, 'https://ror.org/052syjz96 Environmental Remediation Consultants (United States)'),
(32213, 'https://ror.org/00nq2vw96', 'no_lang_code', 1, 'https://ror.org/00nq2vw96 Fastvdo (United States)'),
(32214, 'https://ror.org/03jst3522', 'no_lang_code', 1, 'https://ror.org/03jst3522 Fulcrum Corporation (United States)'),
(32215, 'https://ror.org/02e10dg71', 'no_lang_code', 1, 'https://ror.org/02e10dg71 Fatigue Technology (United States)'),
(32216, 'https://ror.org/03e21eb82', 'no_lang_code', 1, 'https://ror.org/03e21eb82 Eriez (United States)'),
(32217, 'https://ror.org/01545pm61', 'no_lang_code', 1, 'https://ror.org/01545pm61 Analog Devices (United States)'),
(32218, 'https://ror.org/01br46v91', 'no_lang_code', 1, 'https://ror.org/01br46v91 Global Strategic Solutions (United States)'),
(32219, 'https://ror.org/01bch2f85', 'no_lang_code', 1, 'https://ror.org/01bch2f85 Erigo Technologies (United States)'),
(32220, 'https://ror.org/02t6ken40', 'no_lang_code', 1, 'https://ror.org/02t6ken40 Full Circle Research (United States)'),
(32221, 'https://ror.org/048d8vj36', 'no_lang_code', 1, 'https://ror.org/048d8vj36 Global Technology Connection (United States)'),
(32222, 'https://ror.org/0061brs54', 'no_lang_code', 1, 'https://ror.org/0061brs54 Escape Communications (United States)'),
(32223, 'https://ror.org/0288ss544', 'no_lang_code', 1, 'https://ror.org/0288ss544 Glomics (United States)'),
(32224, 'https://ror.org/02p1scb62', 'no_lang_code', 1, 'https://ror.org/02p1scb62 Greatbatch (United States)'),
(32225, 'https://ror.org/0375gyz30', 'no_lang_code', 1, 'https://ror.org/0375gyz30 Full Spectrum Technologies (United States)'),
(32226, 'https://ror.org/016e27a17', 'no_lang_code', 1, 'https://ror.org/016e27a17 Gloyer-Taylor Laboratories (United States)'),
(32227, 'https://ror.org/00450rp60', 'no_lang_code', 1, 'https://ror.org/00450rp60 Federal Fabrics Fibers (United States)'),
(32228, 'https://ror.org/00q29hr25', 'no_lang_code', 1, 'https://ror.org/00q29hr25 De Francisci Machine Company (United States)'),
(32229, 'https://ror.org/05vg9e808', 'no_lang_code', 1, 'https://ror.org/05vg9e808 Ferro Solutions (United States)'),
(32230, 'https://ror.org/00mmq8h56', 'no_lang_code', 1, 'https://ror.org/00mmq8h56 GoHypersonic (United States)'),
(32231, 'https://ror.org/03d8pfr88', 'no_lang_code', 1, 'https://ror.org/03d8pfr88 Optical Sciences Company (United States)'),
(32232, 'https://ror.org/038j31m11', 'no_lang_code', 1, 'https://ror.org/038j31m11 Essential Research (United States)'),
(32233, 'https://ror.org/04jn6q565', 'no_lang_code', 1, 'https://ror.org/04jn6q565 Goleta Star (United States)'),
(32234, 'https://ror.org/05rz01y20', 'no_lang_code', 1, 'https://ror.org/05rz01y20 Fieldmetrics (United States)'),
(32235, 'https://ror.org/0354agh42', 'no_lang_code', 1, 'https://ror.org/0354agh42 Fair Isaac Corporation (United States)'),
(32236, 'https://ror.org/01j1d9a35', 'no_lang_code', 1, 'https://ror.org/01j1d9a35 Filtration Solutions (United States)'),
(32237, 'https://ror.org/005t59805', 'no_lang_code', 1, 'https://ror.org/005t59805 First RF (United States)'),
(32238, 'https://ror.org/012dygg49', 'no_lang_code', 1, 'https://ror.org/012dygg49 FishEye Software (United States)'),
(32239, 'https://ror.org/01rybb297', 'no_lang_code', 1, 'https://ror.org/01rybb297 Edge Technologies (United States)'),
(32240, 'https://ror.org/05j2v5m42', 'no_lang_code', 1, 'https://ror.org/05j2v5m42 Five Stones Research Corporation (United States)'),
(32241, 'https://ror.org/01g07dr78', 'no_lang_code', 1, 'https://ror.org/01g07dr78 Green Mountain Radio Research (United States)'),
(32242, 'https://ror.org/02yyd0927', 'no_lang_code', 1, 'https://ror.org/02yyd0927 Holochip (United States)'),
(32243, 'https://ror.org/037rzqn07', 'no_lang_code', 1, 'https://ror.org/037rzqn07 FlexEl (United States)'),
(32244, 'https://ror.org/03n8zwa93', 'no_lang_code', 1, 'https://ror.org/03n8zwa93 Galorath (United States)'),
(32245, 'https://ror.org/005ehq652', 'no_lang_code', 1, 'https://ror.org/005ehq652 GBL Systems Corporation (United States)'),
(32246, 'https://ror.org/05m43a381', 'no_lang_code', 1, 'https://ror.org/05m43a381 Euclid Techlabs (United States)'),
(32247, 'https://ror.org/0526rb807', 'no_lang_code', 1, 'https://ror.org/0526rb807 Government Cost Accounting System (United States)'),
(32248, 'https://ror.org/0005rqp26', 'no_lang_code', 1, 'https://ror.org/0005rqp26 Netzsch (United States)'),
(32249, 'https://ror.org/007anfg84', 'no_lang_code', 1, 'https://ror.org/007anfg84 GS Engineering (United States)'),
(32250, 'https://ror.org/00y49kv97', 'no_lang_code', 1, 'https://ror.org/00y49kv97 Microwave Vision Group (United States)'),
(32251, 'https://ror.org/05fjnvm14', 'no_lang_code', 1, 'https://ror.org/05fjnvm14 Flow Analysis (United States)'),
(32252, 'https://ror.org/04r345w95', 'no_lang_code', 1, 'https://ror.org/04r345w95 GelTech Solutions (United States)'),
(32253, 'https://ror.org/01yhhvk26', 'no_lang_code', 1, 'https://ror.org/01yhhvk26 Honeybee Robotics (United States)'),
(32254, 'https://ror.org/02zcf8e64', 'no_lang_code', 1, 'https://ror.org/02zcf8e64 Gener8 (United States)'),
(32255, 'https://ror.org/05jjs7f83', 'no_lang_code', 1, 'https://ror.org/05jjs7f83 General Lasertronics Corporation (United States)'),
(32256, 'https://ror.org/023xh4g85', 'no_lang_code', 1, 'https://ror.org/023xh4g85 Eutecus (United States)'),
(32257, 'https://ror.org/037ck9w07', 'no_lang_code', 1, 'https://ror.org/037ck9w07 Flow Control Industries (United States)'),
(32258, 'https://ror.org/017frem55', 'no_lang_code', 1, 'https://ror.org/017frem55 General Nano (United States)'),
(32259, 'https://ror.org/02cr5sn51', 'no_lang_code', 1, 'https://ror.org/02cr5sn51 Guided Systems Technologies (United States)'),
(32260, 'https://ror.org/02g55p177', 'no_lang_code', 1, 'https://ror.org/02g55p177 Flow International Corporation (United States)'),
(32261, 'https://ror.org/02hbm8b43', 'no_lang_code', 1, 'https://ror.org/02hbm8b43 Evaporated Coatings (United States)'),
(32262, 'https://ror.org/05qj34p41', 'no_lang_code', 1, 'https://ror.org/05qj34p41 Hood Technology (United States)'),
(32263, 'https://ror.org/02ksqdr49', 'no_lang_code', 1, 'https://ror.org/02ksqdr49 General Sciences (United States)'),
(32264, 'https://ror.org/04tdm7z37', 'no_lang_code', 1, 'https://ror.org/04tdm7z37 Fluorochem (United States)'),
(32265, 'https://ror.org/01nk8bv65', 'no_lang_code', 1, 'https://ror.org/01nk8bv65 HPS Simulations (United States)'),
(32266, 'https://ror.org/03rqmey35', 'no_lang_code', 1, 'https://ror.org/03rqmey35 EverNu Technology (United States)'),
(32267, 'https://ror.org/031g86d21', 'no_lang_code', 1, 'https://ror.org/031g86d21 Hstar Technologies (United States)'),
(32268, 'https://ror.org/021tyky57', 'no_lang_code', 1, 'https://ror.org/021tyky57 Evidence Based Research (United States)'),
(32269, 'https://ror.org/006tfee03', 'no_lang_code', 1, 'https://ror.org/006tfee03 Evisive (United States)'),
(32270, 'https://ror.org/01642ad53', 'no_lang_code', 1, 'https://ror.org/01642ad53 Electronic Warfare Associates (United States)'),
(32271, 'https://ror.org/04t2ktq36', 'no_lang_code', 1, 'https://ror.org/04t2ktq36 Genvac Aerospace (United States)'),
(32272, 'https://ror.org/008952r45', 'no_lang_code', 1, 'https://ror.org/008952r45 Excellatron (United States)'),
(32273, 'https://ror.org/04ahd1307', 'no_lang_code', 1, 'https://ror.org/04ahd1307 Foam Matrix (United States)'),
(32274, 'https://ror.org/014kebm02', 'no_lang_code', 1, 'https://ror.org/014kebm02 Exfluor Research (United States)'),
(32275, 'https://ror.org/02fg2n207', 'no_lang_code', 1, 'https://ror.org/02fg2n207 Blue Wolf Capital Partners (United States)'),
(32276, 'https://ror.org/00f5xa066', 'no_lang_code', 1, 'https://ror.org/00f5xa066 ExoAnalytic Solutions (United States)'),
(32277, 'https://ror.org/00ze7b628', 'no_lang_code', 1, 'https://ror.org/00ze7b628 Geophex (United States)'),
(32278, 'https://ror.org/002sk1760', 'no_lang_code', 1, 'https://ror.org/002sk1760 Hy-Tek Manufacturing Company (United States)'),
(32279, 'https://ror.org/02kj36x76', 'no_lang_code', 1, 'https://ror.org/02kj36x76 Geotech Instruments (United States)'),
(32280, 'https://ror.org/04r8f0505', 'no_lang_code', 1, 'https://ror.org/04r8f0505 Oculus Innovative Sciences (United States)'),
(32281, 'https://ror.org/055pabd63', 'no_lang_code', 1, 'https://ror.org/055pabd63 IERUS Technologies (United States)'),
(32282, 'https://ror.org/00fh23037', 'no_lang_code', 1, 'https://ror.org/00fh23037 Michelman (United States)'),
(32283, 'https://ror.org/05am3rr09', 'no_lang_code', 1, 'https://ror.org/05am3rr09 H&R Technology (United States)'),
(32284, 'https://ror.org/0287k2v97', 'no_lang_code', 1, 'https://ror.org/0287k2v97 Hal Technology (United States)'),
(32285, 'https://ror.org/013g16z83', 'no_lang_code', 1, 'https://ror.org/013g16z83 Accenture (United States)'),
(32286, 'https://ror.org/01hr92802', 'no_lang_code', 1, 'https://ror.org/01hr92802 Hontek (United States)'),
(32287, 'https://ror.org/0131rtf77', 'no_lang_code', 1, 'https://ror.org/0131rtf77 II-VI (United States)'),
(32288, 'https://ror.org/0521thx35', 'no_lang_code', 1, 'https://ror.org/0521thx35 HLS Research (United States)'),
(32289, 'https://ror.org/02y8zvn85', 'no_lang_code', 1, 'https://ror.org/02y8zvn85 GP Technologies (United States)'),
(32290, 'https://ror.org/02knntf03', 'no_lang_code', 1, 'https://ror.org/02knntf03 IJ Research (United States)'),
(32291, 'https://ror.org/01q880378', 'no_lang_code', 1, 'https://ror.org/01q880378 Innovative Technology Applications (United States)'),
(32292, 'https://ror.org/04eddkf89', 'no_lang_code', 1, 'https://ror.org/04eddkf89 Illinois Rocstar (United States)'),
(32293, 'https://ror.org/01jzqw278', 'no_lang_code', 1, 'https://ror.org/01jzqw278 Helios Remote Sensing Systems (United States)'),
(32294, 'https://ror.org/03gwgww50', 'no_lang_code', 1, 'https://ror.org/03gwgww50 Rolls-Royce (United States)'),
(32295, 'https://ror.org/029xftc44', 'no_lang_code', 1, 'https://ror.org/029xftc44 Innovative Wireless Technologies (United States)'),
(32296, 'https://ror.org/05xc28811', 'no_lang_code', 1, 'https://ror.org/05xc28811 Image Acoustics (United States)'),
(32297, 'https://ror.org/024fgbf65', 'no_lang_code', 1, 'https://ror.org/024fgbf65 HEM Technologies (United States)'),
(32298, 'https://ror.org/01gk7a979', 'no_lang_code', 1, 'https://ror.org/01gk7a979 HyPerComp (United States)'),
(32299, 'https://ror.org/0395cym93', 'no_lang_code', 1, 'https://ror.org/0395cym93 Inovati (United States)'),
(32300, 'https://ror.org/03vgy2486', 'no_lang_code', 1, 'https://ror.org/03vgy2486 MacAulay-Brown (United States)'),
(32301, 'https://ror.org/043ejs261', 'no_lang_code', 1, 'https://ror.org/043ejs261 Hysitron (United States)'),
(32302, 'https://ror.org/05q86z175', 'no_lang_code', 1, 'https://ror.org/05q86z175 International Mezzo Technologies (United States)'),
(32303, 'https://ror.org/00kj3ag10', 'no_lang_code', 1, 'https://ror.org/00kj3ag10 Hentzen (United States)'),
(32304, 'https://ror.org/05kgcpg38', 'no_lang_code', 1, 'https://ror.org/05kgcpg38 Imagination Engines (United States)'),
(32305, 'https://ror.org/045whza52', 'no_lang_code', 1, 'https://ror.org/045whza52 Instrumental Sciences (United States)'),
(32306, 'https://ror.org/05e9f4749', 'no_lang_code', 1, 'https://ror.org/05e9f4749 Heron Systems (United States)'),
(32307, 'https://ror.org/004cdt922', 'no_lang_code', 1, 'https://ror.org/004cdt922 Illinois Tool Works (United States)'),
(32308, 'https://ror.org/020by8p54', 'no_lang_code', 1, 'https://ror.org/020by8p54 HexaTech (United States)'),
(32309, 'https://ror.org/02sg0rn97', 'no_lang_code', 1, 'https://ror.org/02sg0rn97 Integrated Adaptive Applications (United States)'),
(32310, 'https://ror.org/018k5nw16', 'no_lang_code', 1, 'https://ror.org/018k5nw16 IAP Research (United States)'),
(32311, 'https://ror.org/01a3xvy78', 'no_lang_code', 1, 'https://ror.org/01a3xvy78 Hi-Test Laboratories (United States)'),
(32312, 'https://ror.org/05m4pkm65', 'no_lang_code', 1, 'https://ror.org/05m4pkm65 IBC Coatings Technologies (United States)'),
(32313, 'https://ror.org/02tmzwm33', 'en', 1, 'https://ror.org/02tmzwm33 Guerci Consulting Services'),
(32314, 'https://ror.org/05e2hap84', 'no_lang_code', 1, 'https://ror.org/05e2hap84 Imperium (United States)'),
(32315, 'https://ror.org/01e89hk47', 'no_lang_code', 1, 'https://ror.org/01e89hk47 Energy Focus (United States)'),
(32316, 'https://ror.org/05j4ab836', 'no_lang_code', 1, 'https://ror.org/05j4ab836 IMSAR (United States)'),
(32317, 'https://ror.org/055r3qb62', 'no_lang_code', 1, 'https://ror.org/055r3qb62 IN Space (United States)'),
(32318, 'https://ror.org/04jp1vs97', 'no_lang_code', 1, 'https://ror.org/04jp1vs97 Hill Engineering (United States)'),
(32319, 'https://ror.org/05dp7m259', 'no_lang_code', 1, 'https://ror.org/05dp7m259 Integrated Software (United States)'),
(32320, 'https://ror.org/01tbz5p94', 'no_lang_code', 1, 'https://ror.org/01tbz5p94 Integrated Solutions for Systems (United States)'),
(32321, 'https://ror.org/01gbnn715', 'no_lang_code', 1, 'https://ror.org/01gbnn715 Indiana Microelectronics (United States)'),
(32322, 'https://ror.org/00az0wf23', 'no_lang_code', 1, 'https://ror.org/00az0wf23 Integrity Applications Incorporated (United States)'),
(32323, 'https://ror.org/00ysvtr77', 'no_lang_code', 1, 'https://ror.org/00ysvtr77 Thales (United States)'),
(32324, 'https://ror.org/00k1fnr45', 'no_lang_code', 1, 'https://ror.org/00k1fnr45 Integument Technologies (United States)'),
(32325, 'https://ror.org/01x4f0278', 'no_lang_code', 1, 'https://ror.org/01x4f0278 Thermacore (United States)'),
(32326, 'https://ror.org/03tk7a811', 'no_lang_code', 1, 'https://ror.org/03tk7a811 Industrial Filter & Pump Manufacturing (United States)'),
(32327, 'https://ror.org/044bcwg38', 'no_lang_code', 1, 'https://ror.org/044bcwg38 Intevac (United States)'),
(32328, 'https://ror.org/05jf45g20', 'no_lang_code', 1, 'https://ror.org/05jf45g20 KVH Industries (United States)'),
(32329, 'https://ror.org/0523w5y95', 'no_lang_code', 1, 'https://ror.org/0523w5y95 Industrial Measurement Systems (United States)'),
(32330, 'https://ror.org/00b4mz884', 'no_lang_code', 1, 'https://ror.org/00b4mz884 Sensors (United States)'),
(32331, 'https://ror.org/0422rme67', 'no_lang_code', 1, 'https://ror.org/0422rme67 Integrated Systems Solutions (United States)'),
(32332, 'https://ror.org/00v61f080', 'no_lang_code', 1, 'https://ror.org/00v61f080 Industrial Planning Technology (United States)'),
(32333, 'https://ror.org/00zegpe12', 'no_lang_code', 1, 'https://ror.org/00zegpe12 Morphix Technologies (United States)'),
(32334, 'https://ror.org/058ewaq25', 'no_lang_code', 1, 'https://ror.org/058ewaq25 IntraMicron (United States)'),
(32335, 'https://ror.org/04p7acy55', 'no_lang_code', 1, 'https://ror.org/04p7acy55 LNK (United States)'),
(32336, 'https://ror.org/01fz30h98', 'no_lang_code', 1, 'https://ror.org/01fz30h98 IntelliEPI (United States)'),
(32337, 'https://ror.org/05jekg408', 'no_lang_code', 1, 'https://ror.org/05jekg408 InferLink (United States)'),
(32338, 'https://ror.org/00x43jw16', 'no_lang_code', 1, 'https://ror.org/00x43jw16 Intrinsix (United States)'),
(32339, 'https://ror.org/048zxak11', 'no_lang_code', 1, 'https://ror.org/048zxak11 TEAM'),
(32340, 'https://ror.org/0064b6s04', 'no_lang_code', 1, 'https://ror.org/0064b6s04 Qnergy (United States)'),
(32341, 'https://ror.org/05depyc87', 'no_lang_code', 1, 'https://ror.org/05depyc87 L.Garde (United States)'),
(32342, 'https://ror.org/0465y5v04', 'no_lang_code', 1, 'https://ror.org/0465y5v04 Epsilon Systems (United States)'),
(32343, 'https://ror.org/04epbgw81', 'no_lang_code', 1, 'https://ror.org/04epbgw81 Lakota Technical Solutions (United States)'),
(32344, 'https://ror.org/05te6yt75', 'no_lang_code', 1, 'https://ror.org/05te6yt75 Intelligent Models (United States)'),
(32345, 'https://ror.org/00m8bhr79', 'no_lang_code', 1, 'https://ror.org/00m8bhr79 Kalos Technologies (United States)'),
(32346, 'https://ror.org/00jykkj27', 'no_lang_code', 1, 'https://ror.org/00jykkj27 Intuitive Research and Technology Corporation (United States)'),
(32347, 'https://ror.org/02d8hxb72', 'no_lang_code', 1, 'https://ror.org/02d8hxb72 Invariant Corporation (United States)'),
(32348, 'https://ror.org/0543jq429', 'no_lang_code', 1, 'https://ror.org/0543jq429 Kalscott Engineering (United States)'),
(32349, 'https://ror.org/00thhxf09', 'no_lang_code', 1, 'https://ror.org/00thhxf09 Lambda Instruments (United States)'),
(32350, 'https://ror.org/00w5b2218', 'no_lang_code', 1, 'https://ror.org/00w5b2218 Orbotech (United States)'),
(32351, 'https://ror.org/0129yjg29', 'no_lang_code', 1, 'https://ror.org/0129yjg29 Altamira Technologies'),
(32352, 'https://ror.org/04kfqps12', 'no_lang_code', 1, 'https://ror.org/04kfqps12 Information Extraction & Transport (United States)'),
(32353, 'https://ror.org/03y73tk19', 'no_lang_code', 1, 'https://ror.org/03y73tk19 InView Technology Corporation (United States)'),
(32354, 'https://ror.org/04wae4s50', 'no_lang_code', 1, 'https://ror.org/04wae4s50 Lambda Science (United States)'),
(32355, 'https://ror.org/05tqbw409', 'no_lang_code', 1, 'https://ror.org/05tqbw409 Information International Associates (United States)'),
(32356, 'https://ror.org/05r2bq179', 'no_lang_code', 1, 'https://ror.org/05r2bq179 Invocon (United States)'),
(32357, 'https://ror.org/05awxd849', 'no_lang_code', 1, 'https://ror.org/05awxd849 Viaspace (United States)'),
(32358, 'https://ror.org/02tajka68', 'no_lang_code', 1, 'https://ror.org/02tajka68 Kalsi Engineering (United States)'),
(32359, 'https://ror.org/0380ffk22', 'no_lang_code', 1, 'https://ror.org/0380ffk22 Karagozian & Case (United States)'),
(32360, 'https://ror.org/01reevc91', 'no_lang_code', 1, 'https://ror.org/01reevc91 Intelligent Systems Research (United States)'),
(32361, 'https://ror.org/05sdn2w97', 'no_lang_code', 1, 'https://ror.org/05sdn2w97 Integrated Photonics Technology (United States)'),
(32362, 'https://ror.org/049k0qb06', 'no_lang_code', 1, 'https://ror.org/049k0qb06 Information Systems Laboratories (United States)'),
(32363, 'https://ror.org/02g0pbt71', 'no_lang_code', 1, 'https://ror.org/02g0pbt71 Intelligent Systems Technology (United States)'),
(32364, 'https://ror.org/017k1wy04', 'no_lang_code', 1, 'https://ror.org/017k1wy04 Lasen (United States)'),
(32365, 'https://ror.org/02zryj468', 'no_lang_code', 1, 'https://ror.org/02zryj468 Irflex (United States)'),
(32366, 'https://ror.org/0309hgk38', 'no_lang_code', 1, 'https://ror.org/0309hgk38 Plasan (United States)'),
(32367, 'https://ror.org/022kdc073', 'no_lang_code', 1, 'https://ror.org/022kdc073 Iris Technology (United States)'),
(32368, 'https://ror.org/03qr5a489', 'no_lang_code', 1, 'https://ror.org/03qr5a489 Information System Technologies (United States)'),
(32369, 'https://ror.org/02ex4jy25', 'no_lang_code', 1, 'https://ror.org/02ex4jy25 iRobot (United States)'),
(32370, 'https://ror.org/03cb41332', 'no_lang_code', 1, 'https://ror.org/03cb41332 KCF Technologies (United States)'),
(32371, 'https://ror.org/040e70m72', 'no_lang_code', 1, 'https://ror.org/040e70m72 ISSAC (United States)'),
(32372, 'https://ror.org/04j9acc95', 'no_lang_code', 1, 'https://ror.org/04j9acc95 Infrared Laboratories (United States)'),
(32373, 'https://ror.org/0288pey56', 'no_lang_code', 1, 'https://ror.org/0288pey56 KLSS (United States)'),
(32374, 'https://ror.org/00q1jh816', 'no_lang_code', 1, 'https://ror.org/00q1jh816 Innoflight (United States)'),
(32375, 'https://ror.org/006z2nm40', 'no_lang_code', 1, 'https://ror.org/006z2nm40 Newport (United States)'),
(32376, 'https://ror.org/03ez0dn33', 'no_lang_code', 1, 'https://ror.org/03ez0dn33 Maryland Aerospace (United States)'),
(32377, 'https://ror.org/00q0w7q33', 'no_lang_code', 1, 'https://ror.org/00q0w7q33 J.B. Anderson & Son (United States)'),
(32378, 'https://ror.org/0153e7534', 'no_lang_code', 1, 'https://ror.org/0153e7534 Interdisciplinary Consulting Corporation (United States)');
INSERT INTO `rors` VALUES
(32379, 'https://ror.org/01mqf7t37', 'no_lang_code', 1, 'https://ror.org/01mqf7t37 DragoonITCN (United States)'),
(32380, 'https://ror.org/044txnm15', 'no_lang_code', 1, 'https://ror.org/044txnm15 1Spatial (United States)'),
(32381, 'https://ror.org/04a0z8p03', 'no_lang_code', 1, 'https://ror.org/04a0z8p03 J.A. Woollam Company (United States)'),
(32382, 'https://ror.org/04hzq0286', 'no_lang_code', 1, 'https://ror.org/04hzq0286 Keystone Synergistic Enterprises (United States)'),
(32383, 'https://ror.org/02r9x2x37', 'no_lang_code', 1, 'https://ror.org/02r9x2x37 InnovaTek (United States)'),
(32384, 'https://ror.org/030tskq39', 'no_lang_code', 1, 'https://ror.org/030tskq39 Kigre (United States)'),
(32385, 'https://ror.org/057tmpb95', 'no_lang_code', 1, 'https://ror.org/057tmpb95 International Association of Virtual Organizations (United States)'),
(32386, 'https://ror.org/05qdsyx92', 'no_lang_code', 1, 'https://ror.org/05qdsyx92 International Electronic Machines (United States)'),
(32387, 'https://ror.org/02mab7v83', 'no_lang_code', 1, 'https://ror.org/02mab7v83 Potawatomi Business Development (United States)'),
(32388, 'https://ror.org/022t22x02', 'no_lang_code', 1, 'https://ror.org/022t22x02 Kinetic BEI (United States)'),
(32389, 'https://ror.org/00kkt6q96', 'no_lang_code', 1, 'https://ror.org/00kkt6q96 Dynacast (United States)'),
(32390, 'https://ror.org/04697zk19', 'no_lang_code', 1, 'https://ror.org/04697zk19 Innovative Configuration (United States)'),
(32391, 'https://ror.org/0271r8814', 'no_lang_code', 1, 'https://ror.org/0271r8814 Kion Defense Technologies (United States)'),
(32392, 'https://ror.org/00fed8j81', 'no_lang_code', 1, 'https://ror.org/00fed8j81 Laser Operations (United States)'),
(32393, 'https://ror.org/04y7nvm17', 'no_lang_code', 1, 'https://ror.org/04y7nvm17 Innovative Defense Technologies (United States)'),
(32394, 'https://ror.org/05hp6hk95', 'no_lang_code', 1, 'https://ror.org/05hp6hk95 APi Group (United States)'),
(32395, 'https://ror.org/052cd4384', 'no_lang_code', 1, 'https://ror.org/052cd4384 JDLL (United States)'),
(32396, 'https://ror.org/025a5nc26', 'no_lang_code', 1, 'https://ror.org/025a5nc26 JEM Engineering (United States)'),
(32397, 'https://ror.org/043m01p16', 'no_lang_code', 1, 'https://ror.org/043m01p16 Innovative Dynamics (United States)'),
(32398, 'https://ror.org/04566sr16', 'no_lang_code', 1, 'https://ror.org/04566sr16 Jentek Sensors (United States)'),
(32399, 'https://ror.org/03jbyh296', 'no_lang_code', 1, 'https://ror.org/03jbyh296 Left Hand Design (United States)'),
(32400, 'https://ror.org/01wm1ge07', 'no_lang_code', 1, 'https://ror.org/01wm1ge07 Littoral Research Group (United States)'),
(32401, 'https://ror.org/01zxe4w25', 'no_lang_code', 1, 'https://ror.org/01zxe4w25 Innovative Research (United States)'),
(32402, 'https://ror.org/04b019n96', 'no_lang_code', 1, 'https://ror.org/04b019n96 LiveData (United States)'),
(32403, 'https://ror.org/00nd3ps77', 'no_lang_code', 1, 'https://ror.org/00nd3ps77 Level Set Systems (United States)'),
(32404, 'https://ror.org/04vnw0c78', 'no_lang_code', 1, 'https://ror.org/04vnw0c78 Lewis Innovative Technologies (United States)'),
(32405, 'https://ror.org/045pt6r46', 'no_lang_code', 1, 'https://ror.org/045pt6r46 Makel Engineering (United States)'),
(32406, 'https://ror.org/00x187281', 'no_lang_code', 1, 'https://ror.org/00x187281 Knobley Technical Associates (United States)'),
(32407, 'https://ror.org/01cxmjx85', 'no_lang_code', 1, 'https://ror.org/01cxmjx85 LoadPath (United States)'),
(32408, 'https://ror.org/025qzmf95', 'no_lang_code', 1, 'https://ror.org/025qzmf95 Logikos (United States)'),
(32409, 'https://ror.org/00wqezk94', 'no_lang_code', 1, 'https://ror.org/00wqezk94 Intelligent Light (United States)'),
(32410, 'https://ror.org/008c12b21', 'no_lang_code', 1, 'https://ror.org/008c12b21 Communications & Power Industries (United States)'),
(32411, 'https://ror.org/0423wr780', 'no_lang_code', 1, 'https://ror.org/0423wr780 Job Performance Systems (United States)'),
(32412, 'https://ror.org/03bqa6225', 'no_lang_code', 1, 'https://ror.org/03bqa6225 UAV Turbines (United States)'),
(32413, 'https://ror.org/010hpfk35', 'no_lang_code', 1, 'https://ror.org/010hpfk35 Li Creative Technologies (United States)'),
(32414, 'https://ror.org/0221y4w38', 'no_lang_code', 1, 'https://ror.org/0221y4w38 Johnson Research & Development (United States)'),
(32415, 'https://ror.org/05shz5j84', 'no_lang_code', 1, 'https://ror.org/05shz5j84 Management Sciences (United States)'),
(32416, 'https://ror.org/012pww143', 'no_lang_code', 1, 'https://ror.org/012pww143 Logos Technologies (United States)'),
(32417, 'https://ror.org/01949vb52', 'no_lang_code', 1, 'https://ror.org/01949vb52 OptiGrate (United States)'),
(32418, 'https://ror.org/010t23411', 'no_lang_code', 1, 'https://ror.org/010t23411 MTS3 (United States)'),
(32419, 'https://ror.org/00wjbbg08', 'no_lang_code', 1, 'https://ror.org/00wjbbg08 Loki (United States)'),
(32420, 'https://ror.org/011cttk80', 'no_lang_code', 1, 'https://ror.org/011cttk80 Manning Applied Technology (United States)'),
(32421, 'https://ror.org/03vyh9251', 'no_lang_code', 1, 'https://ror.org/03vyh9251 LightSpin Technologies (United States)'),
(32422, 'https://ror.org/05kdrns38', 'no_lang_code', 1, 'https://ror.org/05kdrns38 Sierra Engineering (United States)'),
(32423, 'https://ror.org/01v392555', 'no_lang_code', 1, 'https://ror.org/01v392555 Koo & Associates International (United States)'),
(32424, 'https://ror.org/04ymvv874', 'no_lang_code', 1, 'https://ror.org/04ymvv874 Maritime Applied Physics Corporation (United States)'),
(32425, 'https://ror.org/02t9nbh81', 'no_lang_code', 1, 'https://ror.org/02t9nbh81 Lowell Digisonde International (United States)'),
(32426, 'https://ror.org/00yk56168', 'no_lang_code', 1, 'https://ror.org/00yk56168 MARK Resources (United States)'),
(32427, 'https://ror.org/02rd7bb97', 'no_lang_code', 1, 'https://ror.org/02rd7bb97 Mercury Systems (United States)'),
(32428, 'https://ror.org/05wntbe07', 'no_lang_code', 1, 'https://ror.org/05wntbe07 LPA Software Solutions (United States)'),
(32429, 'https://ror.org/05d7pyf88', 'no_lang_code', 1, 'https://ror.org/05d7pyf88 Kord Technologies (United States)'),
(32430, 'https://ror.org/04kx6mx16', 'no_lang_code', 1, 'https://ror.org/04kx6mx16 JRM Technologies (United States)'),
(32431, 'https://ror.org/04ssj3y56', 'no_lang_code', 1, 'https://ror.org/04ssj3y56 LSP Technologies (United States)'),
(32432, 'https://ror.org/00kp81a07', 'no_lang_code', 1, 'https://ror.org/00kp81a07 JX Crystals (United States)'),
(32433, 'https://ror.org/047dhbt11', 'no_lang_code', 1, 'https://ror.org/047dhbt11 Marotta Controls (United States)'),
(32434, 'https://ror.org/03kes6q06', 'no_lang_code', 1, 'https://ror.org/03kes6q06 Ludlum Measurements (United States)'),
(32435, 'https://ror.org/02tqbra66', 'no_lang_code', 1, 'https://ror.org/02tqbra66 MaxPower (United States)'),
(32436, 'https://ror.org/01mcvy510', 'en', 1, 'https://ror.org/01mcvy510 Harvard College Observatory'),
(32437, 'https://ror.org/03st6mq49', 'no_lang_code', 1, 'https://ror.org/03st6mq49 LightWorks (United States)'),
(32438, 'https://ror.org/01k6cv303', 'no_lang_code', 1, 'https://ror.org/01k6cv303 API Technologies (United States)'),
(32439, 'https://ror.org/02968zb41', 'no_lang_code', 1, 'https://ror.org/02968zb41 Assa Abloy (United States)'),
(32440, 'https://ror.org/0546qf840', 'no_lang_code', 1, 'https://ror.org/0546qf840 MAYA Design (United States)'),
(32441, 'https://ror.org/00ngrw992', 'no_lang_code', 1, 'https://ror.org/00ngrw992 Linden Photonics (United States)'),
(32442, 'https://ror.org/02zxar492', 'no_lang_code', 1, 'https://ror.org/02zxar492 Kulite (United States)'),
(32443, 'https://ror.org/00q5f5t70', 'no_lang_code', 1, 'https://ror.org/00q5f5t70 Luminit (United States)'),
(32444, 'https://ror.org/02pvba079', 'no_lang_code', 1, 'https://ror.org/02pvba079 Mayachitra (United States)'),
(32445, 'https://ror.org/03tnwmt68', 'no_lang_code', 1, 'https://ror.org/03tnwmt68 Massa Products (United States)'),
(32446, 'https://ror.org/04b46da24', 'no_lang_code', 1, 'https://ror.org/04b46da24 Mayflower Communications (United States)'),
(32447, 'https://ror.org/01m290237', 'no_lang_code', 1, 'https://ror.org/01m290237 Lindsay Associates Architects (United States)'),
(32448, 'https://ror.org/00kyrfw38', 'no_lang_code', 1, 'https://ror.org/00kyrfw38 McGaw Technology (United States)'),
(32449, 'https://ror.org/04n91v483', 'no_lang_code', 1, 'https://ror.org/04n91v483 Metron (United States)'),
(32450, 'https://ror.org/00cz5rb58', 'no_lang_code', 1, 'https://ror.org/00cz5rb58 Salutron (United States)'),
(32451, 'https://ror.org/01aq0x225', 'no_lang_code', 1, 'https://ror.org/01aq0x225 Luxel (United States)'),
(32452, 'https://ror.org/02qjpax34', 'no_lang_code', 1, 'https://ror.org/02qjpax34 Material Concepts (United States)'),
(32453, 'https://ror.org/00yd8v543', 'no_lang_code', 1, 'https://ror.org/00yd8v543 McQ (United States)'),
(32454, 'https://ror.org/05ejn6z75', 'no_lang_code', 1, 'https://ror.org/05ejn6z75 Metronome (United States)'),
(32455, 'https://ror.org/01148ya73', 'no_lang_code', 1, 'https://ror.org/01148ya73 Material Innovations (United States)'),
(32456, 'https://ror.org/0337qzr68', 'no_lang_code', 1, 'https://ror.org/0337qzr68 Linearizer Technology (United States)'),
(32457, 'https://ror.org/05jnt4x38', 'no_lang_code', 1, 'https://ror.org/05jnt4x38 METSS (United States)'),
(32458, 'https://ror.org/01ydcrt14', 'no_lang_code', 1, 'https://ror.org/01ydcrt14 Lumir Research Institute (United States)'),
(32459, 'https://ror.org/028hejq20', 'no_lang_code', 1, 'https://ror.org/028hejq20 LinkNet (United States)'),
(32460, 'https://ror.org/05j00pb84', 'no_lang_code', 1, 'https://ror.org/05j00pb84 Materials Processing (United States)'),
(32461, 'https://ror.org/04sk2fc62', 'no_lang_code', 1, 'https://ror.org/04sk2fc62 Materials Research & Design (United States)'),
(32462, 'https://ror.org/01nr1y793', 'no_lang_code', 1, 'https://ror.org/01nr1y793 LinQuest (United States)'),
(32463, 'https://ror.org/04x4c2m45', 'no_lang_code', 1, 'https://ror.org/04x4c2m45 Springmatter (United States)'),
(32464, 'https://ror.org/035kh8h98', 'no_lang_code', 1, 'https://ror.org/035kh8h98 Measurement Technology Northwest (United States)'),
(32465, 'https://ror.org/019s9g820', 'no_lang_code', 1, 'https://ror.org/019s9g820 Mechanical Solutions (United States)'),
(32466, 'https://ror.org/04md8p839', 'no_lang_code', 1, 'https://ror.org/04md8p839 Materials Research Institute (United States)'),
(32467, 'https://ror.org/05wmge648', 'no_lang_code', 1, 'https://ror.org/05wmge648 Lite Machines (United States)'),
(32468, 'https://ror.org/026tmj997', 'no_lang_code', 1, 'https://ror.org/026tmj997 Materials Sciences (United States)'),
(32469, 'https://ror.org/04r4qwn25', 'no_lang_code', 1, 'https://ror.org/04r4qwn25 Proxim (United States)'),
(32470, 'https://ror.org/05bhj5e29', 'no_lang_code', 1, 'https://ror.org/05bhj5e29 Azmark Aero System (United States)'),
(32471, 'https://ror.org/027smmx64', 'no_lang_code', 1, 'https://ror.org/027smmx64 Materials Systems (United States)'),
(32472, 'https://ror.org/01fpkk097', 'no_lang_code', 1, 'https://ror.org/01fpkk097 MegaWave (United States)'),
(32473, 'https://ror.org/05rcmw333', 'no_lang_code', 1, 'https://ror.org/05rcmw333 Materials Technologies (United States)'),
(32474, 'https://ror.org/056c5ze41', 'no_lang_code', 1, 'https://ror.org/056c5ze41 M. Alexander Nugent Consulting (United States)'),
(32475, 'https://ror.org/00ntx3406', 'no_lang_code', 1, 'https://ror.org/00ntx3406 Micro Cooling Concepts (United States)'),
(32476, 'https://ror.org/00apfvn95', 'no_lang_code', 1, 'https://ror.org/00apfvn95 Mathematical Systems & Solutions (United States)'),
(32477, 'https://ror.org/04h08bc47', 'no_lang_code', 1, 'https://ror.org/04h08bc47 M4 Engineering (United States)'),
(32478, 'https://ror.org/058vwmj73', 'no_lang_code', 1, 'https://ror.org/058vwmj73 MicroAssembly Technologies (United States)'),
(32479, 'https://ror.org/03btg3r19', 'no_lang_code', 1, 'https://ror.org/03btg3r19 MWT Materials (United States)'),
(32480, 'https://ror.org/03ce7te88', 'no_lang_code', 1, 'https://ror.org/03ce7te88 Mach I (United States)'),
(32481, 'https://ror.org/050hn9p12', 'no_lang_code', 1, 'https://ror.org/050hn9p12 Menon International (United States)'),
(32482, 'https://ror.org/03qqbvj08', 'no_lang_code', 1, 'https://ror.org/03qqbvj08 PTC (United States)'),
(32483, 'https://ror.org/01rwvcf75', 'no_lang_code', 1, 'https://ror.org/01rwvcf75 Mentis Sciences (United States)'),
(32484, 'https://ror.org/052q16111', 'no_lang_code', 1, 'https://ror.org/052q16111 Mathtech (United States)'),
(32485, 'https://ror.org/05vewsj04', 'en', 1, 'https://ror.org/05vewsj04 Mentor Technologies'),
(32486, 'https://ror.org/04mw0p229', 'no_lang_code', 1, 'https://ror.org/04mw0p229 Matrix Research (United States)'),
(32487, 'https://ror.org/02wev3m05', 'no_lang_code', 1, 'https://ror.org/02wev3m05 Matsys (United States)'),
(32488, 'https://ror.org/05p76h610', 'no_lang_code', 1, 'https://ror.org/05p76h610 MagiQ Technologies (United States)'),
(32489, 'https://ror.org/05npcf755', 'no_lang_code', 1, 'https://ror.org/05npcf755 Microcom (United States)'),
(32490, 'https://ror.org/01vx3k426', 'no_lang_code', 1, 'https://ror.org/01vx3k426 Maverick (United States)'),
(32491, 'https://ror.org/0203dma96', 'no_lang_code', 1, 'https://ror.org/0203dma96 MESH (United States)'),
(32492, 'https://ror.org/00nag1e52', 'no_lang_code', 1, 'https://ror.org/00nag1e52 Magnolia Optical Technologies (United States)'),
(32493, 'https://ror.org/02ddbvr12', 'no_lang_code', 1, 'https://ror.org/02ddbvr12 MicroContinuum (United States)'),
(32494, 'https://ror.org/045cazh10', 'no_lang_code', 1, 'https://ror.org/045cazh10 Smiths Interconnect (United States)'),
(32495, 'https://ror.org/0442rep98', 'no_lang_code', 1, 'https://ror.org/0442rep98 Abakan (United States)'),
(32496, 'https://ror.org/038d4gk82', 'no_lang_code', 1, 'https://ror.org/038d4gk82 MaXentric Technologies (United States)'),
(32497, 'https://ror.org/044ac0f56', 'no_lang_code', 1, 'https://ror.org/044ac0f56 Magnolia Solar (United States)'),
(32498, 'https://ror.org/02a3gym89', 'no_lang_code', 1, 'https://ror.org/02a3gym89 MTECH Laboratories (United States)'),
(32499, 'https://ror.org/0338vpb86', 'no_lang_code', 1, 'https://ror.org/0338vpb86 Microelectronics Research Development (United States)'),
(32500, 'https://ror.org/0593wzx95', 'no_lang_code', 1, 'https://ror.org/0593wzx95 Ballard Power Systems (United States)'),
(32501, 'https://ror.org/00ghhyx51', 'no_lang_code', 1, 'https://ror.org/00ghhyx51 CACI International (United States)'),
(32502, 'https://ror.org/05vpcsf30', 'no_lang_code', 1, 'https://ror.org/05vpcsf30 VT Systems (United States)'),
(32503, 'https://ror.org/049p7zw58', 'no_lang_code', 1, 'https://ror.org/049p7zw58 MesoScribe Technologies (United States)'),
(32504, 'https://ror.org/05qm89p23', 'no_lang_code', 1, 'https://ror.org/05qm89p23 Makai Ocean Engineering (United States)'),
(32505, 'https://ror.org/01c2xde22', 'no_lang_code', 1, 'https://ror.org/01c2xde22 Ducommun (United States)'),
(32506, 'https://ror.org/0240wfg28', 'no_lang_code', 1, 'https://ror.org/0240wfg28 MTS Technologies (United States)'),
(32507, 'https://ror.org/05cxavv95', 'no_lang_code', 1, 'https://ror.org/05cxavv95 Metacomp Technologies (United States)'),
(32508, 'https://ror.org/00f58bn11', 'no_lang_code', 1, 'https://ror.org/00f58bn11 Mudawar Thermal Systems (United States)'),
(32509, 'https://ror.org/04f5gee24', 'no_lang_code', 1, 'https://ror.org/04f5gee24 Nelson Engineering (United States)'),
(32510, 'https://ror.org/03aavtt27', 'no_lang_code', 1, 'https://ror.org/03aavtt27 Minerva Systems & Technologies (United States)'),
(32511, 'https://ror.org/03htcwb41', 'no_lang_code', 1, 'https://ror.org/03htcwb41 Metal Oxide Technologies (United States)'),
(32512, 'https://ror.org/040s9tj83', 'no_lang_code', 1, 'https://ror.org/040s9tj83 Zebra Technologies (United States)'),
(32513, 'https://ror.org/052hy8d96', 'no_lang_code', 1, 'https://ror.org/052hy8d96 Microphase Coatings (United States)'),
(32514, 'https://ror.org/01zwnkm40', 'no_lang_code', 1, 'https://ror.org/01zwnkm40 Minnesota Wire (United States)'),
(32515, 'https://ror.org/05vcq0t75', 'no_lang_code', 1, 'https://ror.org/05vcq0t75 Metis Design Corporation (United States)'),
(32516, 'https://ror.org/05x181c75', 'no_lang_code', 1, 'https://ror.org/05x181c75 Optonicus (United States)'),
(32517, 'https://ror.org/027r7x563', 'no_lang_code', 1, 'https://ror.org/027r7x563 Net Squared (United States)'),
(32518, 'https://ror.org/01d4rpj46', 'no_lang_code', 1, 'https://ror.org/01d4rpj46 MicroVision (United States)'),
(32519, 'https://ror.org/01d59wc32', 'no_lang_code', 1, 'https://ror.org/01d59wc32 Metna (United States)'),
(32520, 'https://ror.org/03encks65', 'no_lang_code', 1, 'https://ror.org/03encks65 Microwave Bonding Instruments (United States)'),
(32521, 'https://ror.org/017me6m94', 'no_lang_code', 1, 'https://ror.org/017me6m94 Microwave Monolithics (United States)'),
(32522, 'https://ror.org/024zyky79', 'no_lang_code', 1, 'https://ror.org/024zyky79 Network Sensing Technologies (United States)'),
(32523, 'https://ror.org/05twhx581', 'no_lang_code', 1, 'https://ror.org/05twhx581 Metric Systems Corporation (United States)'),
(32524, 'https://ror.org/02990z368', 'no_lang_code', 1, 'https://ror.org/02990z368 MicroXact (United States)'),
(32525, 'https://ror.org/0381kee24', 'no_lang_code', 1, 'https://ror.org/0381kee24 MYMIC (United States)'),
(32526, 'https://ror.org/016k8tv59', 'no_lang_code', 1, 'https://ror.org/016k8tv59 Solvay (United States)'),
(32527, 'https://ror.org/00r1rs707', 'no_lang_code', 1, 'https://ror.org/00r1rs707 Mirion Technologies (United States)'),
(32528, 'https://ror.org/01vatmj83', 'no_lang_code', 1, 'https://ror.org/01vatmj83 MZA Associates (United States)'),
(32529, 'https://ror.org/00xfzzb18', 'no_lang_code', 1, 'https://ror.org/00xfzzb18 Neva Ridge Technologies (United States)'),
(32530, 'https://ror.org/02bh3n268', 'no_lang_code', 1, 'https://ror.org/02bh3n268 Midé Technology (United States)'),
(32531, 'https://ror.org/05sdssj84', 'no_lang_code', 1, 'https://ror.org/05sdssj84 New England Research (United States)'),
(32532, 'https://ror.org/01q1xmp44', 'no_lang_code', 1, 'https://ror.org/01q1xmp44 MKP Structural Design Associates (United States)'),
(32533, 'https://ror.org/00png4t13', 'no_lang_code', 1, 'https://ror.org/00png4t13 mZeal Communications (United States)'),
(32534, 'https://ror.org/05qkx3604', 'no_lang_code', 1, 'https://ror.org/05qkx3604 Migma (United States)'),
(32535, 'https://ror.org/02werpm25', 'no_lang_code', 1, 'https://ror.org/02werpm25 MMA Design (United States)'),
(32536, 'https://ror.org/03g0ec482', 'no_lang_code', 1, 'https://ror.org/03g0ec482 NAL Research (United States)'),
(32537, 'https://ror.org/04n4d5575', 'no_lang_code', 1, 'https://ror.org/04n4d5575 Nu-Trek (United States)'),
(32538, 'https://ror.org/01tb3h052', 'no_lang_code', 1, 'https://ror.org/01tb3h052 Next Century Corporation (United States)'),
(32539, 'https://ror.org/05y76jh28', 'no_lang_code', 1, 'https://ror.org/05y76jh28 Morcom International (United States)'),
(32540, 'https://ror.org/01b1yxa46', 'no_lang_code', 1, 'https://ror.org/01b1yxa46 MMICMAN (United States)'),
(32541, 'https://ror.org/05snhb688', 'no_lang_code', 1, 'https://ror.org/05snhb688 NextGen Aeronautics (United States)'),
(32542, 'https://ror.org/01d7ehm71', 'no_lang_code', 1, 'https://ror.org/01d7ehm71 Mobile Intelligence (United States)'),
(32543, 'https://ror.org/03f2xpf83', 'no_lang_code', 1, 'https://ror.org/03f2xpf83 Vesta Sciences (United States)'),
(32544, 'https://ror.org/02k50y650', 'no_lang_code', 1, 'https://ror.org/02k50y650 Mikros Systems (United States)'),
(32545, 'https://ror.org/0171fce94', 'no_lang_code', 1, 'https://ror.org/0171fce94 Neya Systems (United States)'),
(32546, 'https://ror.org/035yp8515', 'no_lang_code', 1, 'https://ror.org/035yp8515 Modern Technology Solutions (United States)'),
(32547, 'https://ror.org/04c9me270', 'no_lang_code', 1, 'https://ror.org/04c9me270 Milcord (United States)'),
(32548, 'https://ror.org/039463c38', 'no_lang_code', 1, 'https://ror.org/039463c38 Nalas Engineering Services (United States)'),
(32549, 'https://ror.org/04b4pz972', 'no_lang_code', 1, 'https://ror.org/04b4pz972 Modus Operandi (United States)'),
(32550, 'https://ror.org/020am1515', 'no_lang_code', 1, 'https://ror.org/020am1515 Nico Technologies (United States)'),
(32551, 'https://ror.org/05cjg8w59', 'no_lang_code', 1, 'https://ror.org/05cjg8w59 NanoLab (United States)'),
(32552, 'https://ror.org/04w1bc909', 'no_lang_code', 1, 'https://ror.org/04w1bc909 MOHR Test and Measurement (United States)'),
(32553, 'https://ror.org/05pwx6044', 'no_lang_code', 1, 'https://ror.org/05pwx6044 NuCrypt (United States)'),
(32554, 'https://ror.org/04j9nyn50', 'no_lang_code', 1, 'https://ror.org/04j9nyn50 Nielsen Engineering & Research (United States)'),
(32555, 'https://ror.org/03e26cs04', 'no_lang_code', 1, 'https://ror.org/03e26cs04 NumerEx (United States)'),
(32556, 'https://ror.org/04zz3cg37', 'no_lang_code', 1, 'https://ror.org/04zz3cg37 Monterey Technologies (United States)'),
(32557, 'https://ror.org/05pvrkb04', 'no_lang_code', 1, 'https://ror.org/05pvrkb04 Innosys (United States)'),
(32558, 'https://ror.org/01j5et233', 'no_lang_code', 1, 'https://ror.org/01j5et233 Numerica Corporation (United States)'),
(32559, 'https://ror.org/01cxj0y97', 'no_lang_code', 1, 'https://ror.org/01cxj0y97 Nanophase Technologies (United States)'),
(32560, 'https://ror.org/05qmdfk04', 'no_lang_code', 1, 'https://ror.org/05qmdfk04 Millennium Engineering and Integration (United States)'),
(32561, 'https://ror.org/01x0ypd40', 'no_lang_code', 1, 'https://ror.org/01x0ypd40 Morton Photonics (United States)'),
(32562, 'https://ror.org/04wf6rg14', 'no_lang_code', 1, 'https://ror.org/04wf6rg14 MACOM (United States)'),
(32563, 'https://ror.org/0583kge49', 'no_lang_code', 1, 'https://ror.org/0583kge49 Mosaic ATM (United States)'),
(32564, 'https://ror.org/043s2sj95', 'no_lang_code', 1, 'https://ror.org/043s2sj95 Nanotrons (United States)'),
(32565, 'https://ror.org/04d832p61', 'no_lang_code', 1, 'https://ror.org/04d832p61 Nutronics (United States)'),
(32566, 'https://ror.org/05g702x36', 'no_lang_code', 1, 'https://ror.org/05g702x36 Phillips Service Industries (United States)'),
(32567, 'https://ror.org/050whk651', 'no_lang_code', 1, 'https://ror.org/050whk651 Nlogic (United States)'),
(32568, 'https://ror.org/04gf4dd67', 'no_lang_code', 1, 'https://ror.org/04gf4dd67 Systems & Processes Engineering Corporation (United States)'),
(32569, 'https://ror.org/02k4ca766', 'no_lang_code', 1, 'https://ror.org/02k4ca766 NuWaves Engineering (United States)'),
(32570, 'https://ror.org/04mseyk78', 'no_lang_code', 1, 'https://ror.org/04mseyk78 NDI Engineering Company (United States)'),
(32571, 'https://ror.org/01ybxby37', 'no_lang_code', 1, 'https://ror.org/01ybxby37 Noisecom (United States)'),
(32572, 'https://ror.org/05x9ajk82', 'no_lang_code', 1, 'https://ror.org/05x9ajk82 Nokomis (United States)'),
(32573, 'https://ror.org/040ep7n71', 'no_lang_code', 1, 'https://ror.org/040ep7n71 Near Earth Autonomy (United States)'),
(32574, 'https://ror.org/02v8p6669', 'no_lang_code', 1, 'https://ror.org/02v8p6669 Omnitek Partners (United States)'),
(32575, 'https://ror.org/01mcgws81', 'no_lang_code', 1, 'https://ror.org/01mcgws81 ObjectVideo (United States)'),
(32576, 'https://ror.org/059vrj561', 'no_lang_code', 1, 'https://ror.org/059vrj561 Orbit Logic (United States)'),
(32577, 'https://ror.org/05wjg2334', 'no_lang_code', 1, 'https://ror.org/05wjg2334 STARR Life Sciences (United States)'),
(32578, 'https://ror.org/00cnb1p42', 'no_lang_code', 1, 'https://ror.org/00cnb1p42 Ocean Acoustical Services and Instrumentation Systems (United States)'),
(32579, 'https://ror.org/00tgd3g89', 'no_lang_code', 1, 'https://ror.org/00tgd3g89 Ontar (United States)'),
(32580, 'https://ror.org/05amww303', 'no_lang_code', 1, 'https://ror.org/05amww303 InterSyn Technologies (United States)'),
(32581, 'https://ror.org/0000xgr97', 'no_lang_code', 1, 'https://ror.org/0000xgr97 Onyx Optics (United States)'),
(32582, 'https://ror.org/01mqp0v57', 'en', 1, 'https://ror.org/01mqp0v57 Montana Economic Revitalization and Development Institute'),
(32583, 'https://ror.org/02my4g447', 'no_lang_code', 1, 'https://ror.org/02my4g447 Ocean Power Technologies (United States)'),
(32584, 'https://ror.org/03rnj7j86', 'no_lang_code', 1, 'https://ror.org/03rnj7j86 Ordela (United States)'),
(32585, 'https://ror.org/02g8zn394', 'no_lang_code', 1, 'https://ror.org/02g8zn394 Nova Management (United States)'),
(32586, 'https://ror.org/026k6c650', 'no_lang_code', 1, 'https://ror.org/026k6c650 Orielle (United States)'),
(32587, 'https://ror.org/02qzya303', 'no_lang_code', 1, 'https://ror.org/02qzya303 NovaSpectra (United States)'),
(32588, 'https://ror.org/000wq3b85', 'no_lang_code', 1, 'https://ror.org/000wq3b85 Iteris (United States)'),
(32589, 'https://ror.org/01c9a4v35', 'no_lang_code', 1, 'https://ror.org/01c9a4v35 Novatio Engineering (United States)'),
(32590, 'https://ror.org/03hkx5x33', 'no_lang_code', 1, 'https://ror.org/03hkx5x33 Ormond (United States)'),
(32591, 'https://ror.org/01n29bn70', 'no_lang_code', 1, 'https://ror.org/01n29bn70 Peregrine Falcon (United States)'),
(32592, 'https://ror.org/012j0vk40', 'no_lang_code', 1, 'https://ror.org/012j0vk40 POET Technologies (United States)'),
(32593, 'https://ror.org/04s705w68', 'no_lang_code', 1, 'https://ror.org/04s705w68 Nscrypt (United States)'),
(32594, 'https://ror.org/05h95z887', 'no_lang_code', 1, 'https://ror.org/05h95z887 Orono Spectral Solutions (United States)'),
(32595, 'https://ror.org/04jhtcf60', 'no_lang_code', 1, 'https://ror.org/04jhtcf60 Orora Design Technologies (United States)'),
(32596, 'https://ror.org/01rz5qz78', 'no_lang_code', 1, 'https://ror.org/01rz5qz78 Murata (United States)'),
(32597, 'https://ror.org/05jetay51', 'no_lang_code', 1, 'https://ror.org/05jetay51 Riverbed (United States)'),
(32598, 'https://ror.org/02njhwg64', 'no_lang_code', 1, 'https://ror.org/02njhwg64 Osborne & Associates (United States)'),
(32599, 'https://ror.org/029m27614', 'no_lang_code', 1, 'https://ror.org/029m27614 Out of the Fog Research (United States)'),
(32600, 'https://ror.org/00gzf3318', 'no_lang_code', 1, 'https://ror.org/00gzf3318 Proof Research (United States)'),
(32601, 'https://ror.org/04frprb97', 'no_lang_code', 1, 'https://ror.org/04frprb97 Odyssian Technology (United States)'),
(32602, 'https://ror.org/020tbqw59', 'no_lang_code', 1, 'https://ror.org/020tbqw59 OEwaves (United States)'),
(32603, 'https://ror.org/01emb2995', 'en', 1, 'https://ror.org/01emb2995 Ogden Engineering & Associates'),
(32604, 'https://ror.org/01n5m5w72', 'no_lang_code', 1, 'https://ror.org/01n5m5w72 Corporate Executive Board (United States)'),
(32605, 'https://ror.org/00hd6em58', 'no_lang_code', 1, 'https://ror.org/00hd6em58 Oxazogen (United States)'),
(32606, 'https://ror.org/039xdb007', 'no_lang_code', 1, 'https://ror.org/039xdb007 Optellios (United States)'),
(32607, 'https://ror.org/01x22f448', 'no_lang_code', 1, 'https://ror.org/01x22f448 PC Krause & Associates (United States)'),
(32608, 'https://ror.org/042dp4138', 'no_lang_code', 1, 'https://ror.org/042dp4138 Technology Service Corporation (United States)'),
(32609, 'https://ror.org/03q1hhd84', 'no_lang_code', 1, 'https://ror.org/03q1hhd84 Phase Sensitive Innovations (United States)'),
(32610, 'https://ror.org/00jch3e54', 'no_lang_code', 1, 'https://ror.org/00jch3e54 Omega Piezo Technologies (United States)'),
(32611, 'https://ror.org/0380pyj70', 'no_lang_code', 1, 'https://ror.org/0380pyj70 PAT Industries (United States)'),
(32612, 'https://ror.org/011gv1m09', 'no_lang_code', 1, 'https://ror.org/011gv1m09 PhaseSpace (United States)'),
(32613, 'https://ror.org/05xwxtv51', 'no_lang_code', 1, 'https://ror.org/05xwxtv51 PHDS (United States)'),
(32614, 'https://ror.org/00rv4tb81', 'no_lang_code', 1, 'https://ror.org/00rv4tb81 Optical Engines (United States)'),
(32615, 'https://ror.org/02ma2ny91', 'no_lang_code', 1, 'https://ror.org/02ma2ny91 Princeton Satellite Systems (United States)'),
(32616, 'https://ror.org/04cw9df25', 'no_lang_code', 1, 'https://ror.org/04cw9df25 Pacific Engineering (United States)'),
(32617, 'https://ror.org/00sp9ha44', 'no_lang_code', 1, 'https://ror.org/00sp9ha44 Optical Physics Company (United States)'),
(32618, 'https://ror.org/04wwvn851', 'no_lang_code', 1, 'https://ror.org/04wwvn851 Princeton Scientific (United States)'),
(32619, 'https://ror.org/03yywea39', 'no_lang_code', 1, 'https://ror.org/03yywea39 Plasma Processes (United States)'),
(32620, 'https://ror.org/02cj87r87', 'no_lang_code', 1, 'https://ror.org/02cj87r87 Pacific Rim Engineering (United States)'),
(32621, 'https://ror.org/03122yk49', 'no_lang_code', 1, 'https://ror.org/03122yk49 Optical Sciences (United States)'),
(32622, 'https://ror.org/0036fzf58', 'no_lang_code', 1, 'https://ror.org/0036fzf58 Richardson Electronics (United States)'),
(32623, 'https://ror.org/032pjd111', 'no_lang_code', 1, 'https://ror.org/032pjd111 Plasma Technology (United States)'),
(32624, 'https://ror.org/01szhx446', 'no_lang_code', 1, 'https://ror.org/01szhx446 Torch Hill Investment Partners (United States)'),
(32625, 'https://ror.org/04yqw4y82', 'no_lang_code', 1, 'https://ror.org/04yqw4y82 MS Technology (United States)'),
(32626, 'https://ror.org/012yx8878', 'no_lang_code', 1, 'https://ror.org/012yx8878 Pioneer Astronautics (United States)'),
(32627, 'https://ror.org/0265bng15', 'no_lang_code', 1, 'https://ror.org/0265bng15 Pioneering Decisive Solutions (United States)'),
(32628, 'https://ror.org/039d46111', 'no_lang_code', 1, 'https://ror.org/039d46111 Safran (United States)'),
(32629, 'https://ror.org/02f76s144', 'no_lang_code', 1, 'https://ror.org/02f76s144 PlainSight Group (United States)'),
(32630, 'https://ror.org/024eb7n23', 'no_lang_code', 1, 'https://ror.org/024eb7n23 Prism Computational Sciences (United States)'),
(32631, 'https://ror.org/0056bph73', 'no_lang_code', 1, 'https://ror.org/0056bph73 Professional Analysis (United States)'),
(32632, 'https://ror.org/01p8v8m79', 'no_lang_code', 1, 'https://ror.org/01p8v8m79 Plasmonics (United States)'),
(32633, 'https://ror.org/0091y3468', 'no_lang_code', 1, 'https://ror.org/0091y3468 Photon-X (United States)'),
(32634, 'https://ror.org/04xp41626', 'no_lang_code', 1, 'https://ror.org/04xp41626 PrivaTran (United States)'),
(32635, 'https://ror.org/03s3npz41', 'no_lang_code', 1, 'https://ror.org/03s3npz41 Rolta (United States)'),
(32636, 'https://ror.org/02kcne908', 'no_lang_code', 1, 'https://ror.org/02kcne908 Pro-Tech Design & Manufacturing (United States)'),
(32637, 'https://ror.org/03a3x6z66', 'no_lang_code', 1, 'https://ror.org/03a3x6z66 Optimal Synthesis (United States)'),
(32638, 'https://ror.org/03nxmmd82', 'no_lang_code', 1, 'https://ror.org/03nxmmd82 Paragon Space Development Corporation (United States)'),
(32639, 'https://ror.org/006ejj273', 'no_lang_code', 1, 'https://ror.org/006ejj273 Parallax Research (United States)'),
(32640, 'https://ror.org/04knyj922', 'no_lang_code', 1, 'https://ror.org/04knyj922 Optimax (United States)'),
(32641, 'https://ror.org/030vkvb42', 'no_lang_code', 1, 'https://ror.org/030vkvb42 Process Instruments (United States)'),
(32642, 'https://ror.org/01qr4dp91', 'no_lang_code', 1, 'https://ror.org/01qr4dp91 Defense Holdings (United States)'),
(32643, 'https://ror.org/01kcex014', 'no_lang_code', 1, 'https://ror.org/01kcex014 Optimization Technology (United States)'),
(32644, 'https://ror.org/046fp0073', 'no_lang_code', 1, 'https://ror.org/046fp0073 ParaTools (United States)'),
(32645, 'https://ror.org/0268pvz05', 'no_lang_code', 1, 'https://ror.org/0268pvz05 PnP Innovations (United States)'),
(32646, 'https://ror.org/003qgxx91', 'no_lang_code', 1, 'https://ror.org/003qgxx91 Production Products (United States)'),
(32647, 'https://ror.org/01pn7y126', 'no_lang_code', 1, 'https://ror.org/01pn7y126 POC Tech Group (United States)'),
(32648, 'https://ror.org/03s918289', 'no_lang_code', 1, 'https://ror.org/03s918289 Halliburton (United States)'),
(32649, 'https://ror.org/00yjc4530', 'no_lang_code', 1, 'https://ror.org/00yjc4530 Polaris Sensor Technologies (United States)'),
(32650, 'https://ror.org/025nrv979', 'no_lang_code', 1, 'https://ror.org/025nrv979 Phygen (United States)'),
(32651, 'https://ror.org/01fha7a79', 'no_lang_code', 1, 'https://ror.org/01fha7a79 OptiPro Systems (United States)'),
(32652, 'https://ror.org/03q0mq753', 'no_lang_code', 1, 'https://ror.org/03q0mq753 PartTec (United States)'),
(32653, 'https://ror.org/02hpaa158', 'no_lang_code', 1, 'https://ror.org/02hpaa158 Polatin Corporation (United States)'),
(32654, 'https://ror.org/00k68p940', 'no_lang_code', 1, 'https://ror.org/00k68p940 Pathfinder Systems (United States)'),
(32655, 'https://ror.org/002hd9629', 'no_lang_code', 1, 'https://ror.org/002hd9629 Opto-Knowledge Systems (United States)'),
(32656, 'https://ror.org/026rg9t92', 'no_lang_code', 1, 'https://ror.org/026rg9t92 PolyK Technologies (United States)'),
(32657, 'https://ror.org/04ndsf485', 'no_lang_code', 1, 'https://ror.org/04ndsf485 Polymer Aging Concepts (United States)'),
(32658, 'https://ror.org/02s3mqv16', 'no_lang_code', 1, 'https://ror.org/02s3mqv16 Polymeright (United States)'),
(32659, 'https://ror.org/0297rgf95', 'no_lang_code', 1, 'https://ror.org/0297rgf95 OR Concepts Applied (United States)'),
(32660, 'https://ror.org/01wqdsj65', 'no_lang_code', 1, 'https://ror.org/01wqdsj65 Professional Services Group (United States)'),
(32661, 'https://ror.org/004868y83', 'no_lang_code', 1, 'https://ror.org/004868y83 PolymerPlus (United States)'),
(32662, 'https://ror.org/02jeg3v06', 'no_lang_code', 1, 'https://ror.org/02jeg3v06 Mechmath (United States)'),
(32663, 'https://ror.org/02hb9s226', 'no_lang_code', 1, 'https://ror.org/02hb9s226 ORB Analytics (United States)'),
(32664, 'https://ror.org/01f3h2833', 'no_lang_code', 1, 'https://ror.org/01f3h2833 Memtronics (United States)'),
(32665, 'https://ror.org/0566y6534', 'no_lang_code', 1, 'https://ror.org/0566y6534 Sotera Defense Solutions (United States)'),
(32666, 'https://ror.org/03j7vt284', 'no_lang_code', 1, 'https://ror.org/03j7vt284 Physics, Materials and Applied Mathematics Research (United States)'),
(32667, 'https://ror.org/007737841', 'no_lang_code', 1, 'https://ror.org/007737841 PDF Solutions (United States)'),
(32668, 'https://ror.org/03e835n43', 'no_lang_code', 1, 'https://ror.org/03e835n43 Avigilon (United States)'),
(32669, 'https://ror.org/04vbqh983', 'no_lang_code', 1, 'https://ror.org/04vbqh983 Physitron (United States)'),
(32670, 'https://ror.org/03r95z943', 'no_lang_code', 1, 'https://ror.org/03r95z943 Prometheus (United States)'),
(32671, 'https://ror.org/02hpzfx69', 'no_lang_code', 1, 'https://ror.org/02hpzfx69 Propagation Research Associates (United States)'),
(32672, 'https://ror.org/01nz1gv09', 'no_lang_code', 1, 'https://ror.org/01nz1gv09 Peerless Technologies (United States)'),
(32673, 'https://ror.org/00q1xza85', 'no_lang_code', 1, 'https://ror.org/00q1xza85 PEL Associates (United States)'),
(32674, 'https://ror.org/03krk4x43', 'no_lang_code', 1, 'https://ror.org/03krk4x43 Propulsion Science and Technology (United States)'),
(32675, 'https://ror.org/013td7j77', 'no_lang_code', 1, 'https://ror.org/013td7j77 Pragati Synergetic Research (United States)'),
(32676, 'https://ror.org/031zv7121', 'no_lang_code', 1, 'https://ror.org/031zv7121 IQE (United States)'),
(32677, 'https://ror.org/05b497x63', 'no_lang_code', 1, 'https://ror.org/05b497x63 PROTO Manufacturing (United States)'),
(32678, 'https://ror.org/00dkdd931', 'no_lang_code', 1, 'https://ror.org/00dkdd931 Quantum Group (United States)'),
(32679, 'https://ror.org/05ybejm06', 'no_lang_code', 1, 'https://ror.org/05ybejm06 RE2 (United States)'),
(32680, 'https://ror.org/015wxat58', 'no_lang_code', 1, 'https://ror.org/015wxat58 Quantum Intelligence (United States)'),
(32681, 'https://ror.org/02pkfd360', 'no_lang_code', 1, 'https://ror.org/02pkfd360 Reaction Systems (United States)'),
(32682, 'https://ror.org/03w7dtv60', 'no_lang_code', 1, 'https://ror.org/03w7dtv60 Quantum Leap Innovations (United States)'),
(32683, 'https://ror.org/053y5js51', 'no_lang_code', 1, 'https://ror.org/053y5js51 Real-Time Innovations (United States)'),
(32684, 'https://ror.org/04193qa97', 'no_lang_code', 1, 'https://ror.org/04193qa97 LGL Group (United States)'),
(32685, 'https://ror.org/01abzsb47', 'no_lang_code', 1, 'https://ror.org/01abzsb47 Prediction Systems (United States)'),
(32686, 'https://ror.org/05gs2as25', 'no_lang_code', 1, 'https://ror.org/05gs2as25 Quantum Signal (United States)'),
(32687, 'https://ror.org/04rekpn43', 'no_lang_code', 1, 'https://ror.org/04rekpn43 Q-Peak (United States)'),
(32688, 'https://ror.org/0481xe004', 'no_lang_code', 1, 'https://ror.org/0481xe004 Arotech (United States)'),
(32689, 'https://ror.org/03q9jvk55', 'no_lang_code', 1, 'https://ror.org/03q9jvk55 Premier Coatings (United States)'),
(32690, 'https://ror.org/01fzcdg14', 'no_lang_code', 1, 'https://ror.org/01fzcdg14 Quasonix (United States)'),
(32691, 'https://ror.org/05rb1bm79', 'no_lang_code', 1, 'https://ror.org/05rb1bm79 RBC Technologies (United States)'),
(32692, 'https://ror.org/037y28f85', 'no_lang_code', 1, 'https://ror.org/037y28f85 PreTalen (United States)'),
(32693, 'https://ror.org/02xrzsw71', 'no_lang_code', 1, 'https://ror.org/02xrzsw71 QmagiQ (United States)'),
(32694, 'https://ror.org/02geyw402', 'no_lang_code', 1, 'https://ror.org/02geyw402 QorTek (United States)'),
(32695, 'https://ror.org/00gxbxx21', 'no_lang_code', 1, 'https://ror.org/00gxbxx21 QRDc (United States)'),
(32696, 'https://ror.org/03j68qs29', 'no_lang_code', 1, 'https://ror.org/03j68qs29 Qualtech Systems Incorporation (United States)'),
(32697, 'https://ror.org/039f14703', 'no_lang_code', 1, 'https://ror.org/039f14703 QuantaSpec (United States)'),
(32698, 'https://ror.org/01tgbzq38', 'no_lang_code', 1, 'https://ror.org/01tgbzq38 QuickFlex (United States)'),
(32699, 'https://ror.org/020vg7c14', 'no_lang_code', 1, 'https://ror.org/020vg7c14 RedZone Robotics (United States)'),
(32700, 'https://ror.org/00mh27630', 'no_lang_code', 1, 'https://ror.org/00mh27630 RNET Technologies (United States)'),
(32701, 'https://ror.org/0019se992', 'no_lang_code', 1, 'https://ror.org/0019se992 Princeton Lightwave (United States)'),
(32702, 'https://ror.org/043bzv808', 'no_lang_code', 1, 'https://ror.org/043bzv808 Referentia Systems (United States)'),
(32703, 'https://ror.org/004vpqq08', 'no_lang_code', 1, 'https://ror.org/004vpqq08 Princeton Microwave Technology (United States)'),
(32704, 'https://ror.org/0289d9s26', 'no_lang_code', 1, 'https://ror.org/0289d9s26 Robert Heffley Engineering (United States)'),
(32705, 'https://ror.org/02m9t8y16', 'no_lang_code', 1, 'https://ror.org/02m9t8y16 QuinStar Technology (United States)'),
(32706, 'https://ror.org/035w78024', 'no_lang_code', 1, 'https://ror.org/035w78024 Robotic Research (United States)'),
(32707, 'https://ror.org/020w2fr77', 'no_lang_code', 1, 'https://ror.org/020w2fr77 Robotics Research (United States)'),
(32708, 'https://ror.org/01rp86637', 'no_lang_code', 1, 'https://ror.org/01rp86637 Robust Chip (United States)'),
(32709, 'https://ror.org/019s3af92', 'no_lang_code', 1, 'https://ror.org/019s3af92 Qunav (United States)'),
(32710, 'https://ror.org/01356ja15', 'no_lang_code', 1, 'https://ror.org/01356ja15 Rock West Solutions (United States)'),
(32711, 'https://ror.org/046zwst09', 'no_lang_code', 1, 'https://ror.org/046zwst09 Reliable System Services (United States)'),
(32712, 'https://ror.org/01mart011', 'no_lang_code', 1, 'https://ror.org/01mart011 ReliaCoat Technologies (United States)'),
(32713, 'https://ror.org/01ga56p68', 'no_lang_code', 1, 'https://ror.org/01ga56p68 Remcom (United States)'),
(32714, 'https://ror.org/006cpk585', 'no_lang_code', 1, 'https://ror.org/006cpk585 Jarden (United States)'),
(32715, 'https://ror.org/004kz1j51', 'no_lang_code', 1, 'https://ror.org/004kz1j51 Ross-Hime Designs (United States)'),
(32716, 'https://ror.org/0461jpd45', 'no_lang_code', 1, 'https://ror.org/0461jpd45 Science and Technology Applications (United States)'),
(32717, 'https://ror.org/03bcppp62', 'no_lang_code', 1, 'https://ror.org/03bcppp62 Quantum Dimension (United States)'),
(32718, 'https://ror.org/04mjjg550', 'no_lang_code', 1, 'https://ror.org/04mjjg550 Scientic (United States)'),
(32719, 'https://ror.org/05pcwq620', 'no_lang_code', 1, 'https://ror.org/05pcwq620 Scientific Applications & Research Associates (United States)'),
(32720, 'https://ror.org/01vxra992', 'no_lang_code', 1, 'https://ror.org/01vxra992 R&D Dynamics (United States)'),
(32721, 'https://ror.org/058jhz755', 'no_lang_code', 1, 'https://ror.org/058jhz755 Rotordynamics-Seal Research (United States)'),
(32722, 'https://ror.org/01hsj7470', 'no_lang_code', 1, 'https://ror.org/01hsj7470 Securboration (United States)'),
(32723, 'https://ror.org/010csj794', 'no_lang_code', 1, 'https://ror.org/010csj794 RemoteReality (United States)'),
(32724, 'https://ror.org/02fh4wa11', 'no_lang_code', 1, 'https://ror.org/02fh4wa11 RPA Electronic Solutions (United States)'),
(32725, 'https://ror.org/04ngy8121', 'no_lang_code', 1, 'https://ror.org/04ngy8121 Remtech (United States)'),
(32726, 'https://ror.org/04q745m62', 'no_lang_code', 1, 'https://ror.org/04q745m62 Radiance Technologies (United States)'),
(32727, 'https://ror.org/04fe2dt25', 'no_lang_code', 1, 'https://ror.org/04fe2dt25 Renaissance Sciences Corporation (United States)'),
(32728, 'https://ror.org/03fz1e596', 'no_lang_code', 1, 'https://ror.org/03fz1e596 Radiant Research (United States)'),
(32729, 'https://ror.org/0333shy78', 'no_lang_code', 1, 'https://ror.org/0333shy78 Renegade Materials Corporation (United States)'),
(32730, 'https://ror.org/01zh4s520', 'no_lang_code', 1, 'https://ror.org/01zh4s520 Scientific Data Systems (United States)'),
(32731, 'https://ror.org/0333c2q56', 'no_lang_code', 1, 'https://ror.org/0333c2q56 Rugate Technologies (United States)'),
(32732, 'https://ror.org/02mbhaf77', 'no_lang_code', 1, 'https://ror.org/02mbhaf77 Research Applications Corporation (United States)'),
(32733, 'https://ror.org/03bthmz47', 'no_lang_code', 1, 'https://ror.org/03bthmz47 Sedna Digital Solutions (United States)'),
(32734, 'https://ror.org/0160n9y05', 'no_lang_code', 1, 'https://ror.org/0160n9y05 Blatek (United States)'),
(32735, 'https://ror.org/002tqyd59', 'no_lang_code', 1, 'https://ror.org/002tqyd59 Seemann Composites (United States)'),
(32736, 'https://ror.org/05vb2nq58', 'no_lang_code', 1, 'https://ror.org/05vb2nq58 Select Engineering Services (United States)'),
(32737, 'https://ror.org/04ayzes68', 'en', 1, 'https://ror.org/04ayzes68 Research Associates of Syracuse'),
(32738, 'https://ror.org/01m05be67', 'no_lang_code', 1, 'https://ror.org/01m05be67 Scientific Forming Technologies Corporation (United States)'),
(32739, 'https://ror.org/04pp5y813', 'no_lang_code', 1, 'https://ror.org/04pp5y813 Selee Corporation (United States)'),
(32740, 'https://ror.org/025rxfw41', 'no_lang_code', 1, 'https://ror.org/025rxfw41 Semantic Designs (United States)'),
(32741, 'https://ror.org/05gz34e20', 'no_lang_code', 1, 'https://ror.org/05gz34e20 SA Photonics (United States)'),
(32742, 'https://ror.org/04tgjxk96', 'no_lang_code', 1, 'https://ror.org/04tgjxk96 Research Network (United States)'),
(32743, 'https://ror.org/03ceqdn81', 'no_lang_code', 1, 'https://ror.org/03ceqdn81 Semerane (United States)'),
(32744, 'https://ror.org/00zmtvv40', 'no_lang_code', 1, 'https://ror.org/00zmtvv40 Research Support Instruments (United States)'),
(32745, 'https://ror.org/00vm23y87', 'no_lang_code', 1, 'https://ror.org/00vm23y87 Safe (United States)'),
(32746, 'https://ror.org/0199mb206', 'no_lang_code', 1, 'https://ror.org/0199mb206 Sensera (United States)'),
(32747, 'https://ror.org/01a3m3f05', 'no_lang_code', 1, 'https://ror.org/01a3m3f05 Reservoir Labs (United States)'),
(32748, 'https://ror.org/04aedks88', 'no_lang_code', 1, 'https://ror.org/04aedks88 Rainbow Communications (United States)'),
(32749, 'https://ror.org/01yh3cc69', 'no_lang_code', 1, 'https://ror.org/01yh3cc69 Sensing Strategies Incorporation (United States)'),
(32750, 'https://ror.org/04vn3x119', 'no_lang_code', 1, 'https://ror.org/04vn3x119 RAM Laboratories (United States)'),
(32751, 'https://ror.org/04dmcck46', 'no_lang_code', 1, 'https://ror.org/04dmcck46 RAM Photonics (United States)'),
(32752, 'https://ror.org/01x48g070', 'no_lang_code', 1, 'https://ror.org/01x48g070 Sage Technologies (United States)'),
(32753, 'https://ror.org/028dx7d12', 'no_lang_code', 1, 'https://ror.org/028dx7d12 Rether Networks (United States)'),
(32754, 'https://ror.org/02c5gz222', 'no_lang_code', 1, 'https://ror.org/02c5gz222 Scientific Solutions Innovative Research and Engineering (United States)'),
(32755, 'https://ror.org/0533jxz69', 'no_lang_code', 1, 'https://ror.org/0533jxz69 Saab (United States)'),
(32756, 'https://ror.org/04fvc0724', 'no_lang_code', 1, 'https://ror.org/04fvc0724 Sage Technologies (United States)'),
(32757, 'https://ror.org/033xh9c11', 'no_lang_code', 1, 'https://ror.org/033xh9c11 Scientific Systems (United States)'),
(32758, 'https://ror.org/0314naf78', 'no_lang_code', 1, 'https://ror.org/0314naf78 San Diego Composites (United States)'),
(32759, 'https://ror.org/04r5y2a19', 'no_lang_code', 1, 'https://ror.org/04r5y2a19 Reynard Corporation (United States)'),
(32760, 'https://ror.org/00hhybr57', 'no_lang_code', 1, 'https://ror.org/00hhybr57 Sensor Concepts (United States)'),
(32761, 'https://ror.org/03wenc761', 'no_lang_code', 1, 'https://ror.org/03wenc761 Sanova (United States)'),
(32762, 'https://ror.org/04s1sff11', 'no_lang_code', 1, 'https://ror.org/04s1sff11 Scientific Simulations (United States)'),
(32763, 'https://ror.org/03n3q7643', 'no_lang_code', 1, 'https://ror.org/03n3q7643 SensorMetrix (United States)'),
(32764, 'https://ror.org/053j2sg20', 'no_lang_code', 1, 'https://ror.org/053j2sg20 Sentar (United States)'),
(32765, 'https://ror.org/03jb0m794', 'no_lang_code', 1, 'https://ror.org/03jb0m794 SciTec (United States)'),
(32766, 'https://ror.org/00ttz3768', 'no_lang_code', 1, 'https://ror.org/00ttz3768 Ultramed (United States)'),
(32767, 'https://ror.org/00gspzk92', 'no_lang_code', 1, 'https://ror.org/00gspzk92 Sapien Systems (United States)'),
(32768, 'https://ror.org/039nsp746', 'no_lang_code', 1, 'https://ror.org/039nsp746 RGS Associates (United States)'),
(32769, 'https://ror.org/01vmgtx82', 'no_lang_code', 1, 'https://ror.org/01vmgtx82 Sentient Science (United States)'),
(32770, 'https://ror.org/02y2j7w80', 'no_lang_code', 1, 'https://ror.org/02y2j7w80 RBS Technologies (United States)'),
(32771, 'https://ror.org/04zfzxr62', 'no_lang_code', 1, 'https://ror.org/04zfzxr62 RHAMM Technologies (United States)'),
(32772, 'https://ror.org/02pyp0e56', 'en', 1, 'https://ror.org/02pyp0e56 Saxet Surface Science'),
(32773, 'https://ror.org/001k0r742', 'no_lang_code', 1, 'https://ror.org/001k0r742 DigiLens (United States)'),
(32774, 'https://ror.org/00hn6mk14', 'no_lang_code', 1, 'https://ror.org/00hn6mk14 Ridgetop Group (United States)'),
(32775, 'https://ror.org/03g1ghk63', 'no_lang_code', 1, 'https://ror.org/03g1ghk63 RCT Systems (United States)'),
(32776, 'https://ror.org/05qkx9513', 'no_lang_code', 1, 'https://ror.org/05qkx9513 SCA Technica (United States)'),
(32777, 'https://ror.org/0220z0193', 'no_lang_code', 1, 'https://ror.org/0220z0193 Scope Group (United States)'),
(32778, 'https://ror.org/051pand48', 'no_lang_code', 1, 'https://ror.org/051pand48 RINI Technologies (United States)'),
(32779, 'https://ror.org/05xyq8x40', 'no_lang_code', 1, 'https://ror.org/05xyq8x40 SCS Engineers (United States)'),
(32780, 'https://ror.org/02dcndt64', 'no_lang_code', 1, 'https://ror.org/02dcndt64 Rite-Solutions (United States)'),
(32781, 'https://ror.org/02k5trd79', 'no_lang_code', 1, 'https://ror.org/02k5trd79 Shape Change Technologies (United States)'),
(32782, 'https://ror.org/02hs57b27', 'no_lang_code', 1, 'https://ror.org/02hs57b27 RDA (United States)'),
(32783, 'https://ror.org/00rhqh755', 'no_lang_code', 1, 'https://ror.org/00rhqh755 RDL (United States)'),
(32784, 'https://ror.org/004a9b380', 'no_lang_code', 1, 'https://ror.org/004a9b380 SdPhotonics (United States)'),
(32785, 'https://ror.org/03zxdhd63', 'no_lang_code', 1, 'https://ror.org/03zxdhd63 Shared Spectrum Company (United States)'),
(32786, 'https://ror.org/04aejqj79', 'no_lang_code', 1, 'https://ror.org/04aejqj79 RDRtec (United States)'),
(32787, 'https://ror.org/00w964w95', 'no_lang_code', 1, 'https://ror.org/00w964w95 SDS International (United States)'),
(32788, 'https://ror.org/03h5fme53', 'no_lang_code', 1, 'https://ror.org/03h5fme53 Nuvera Biosciences (United States)'),
(32789, 'https://ror.org/05sr58560', 'no_lang_code', 1, 'https://ror.org/05sr58560 Shear Form (United States)'),
(32790, 'https://ror.org/03bc0qh53', 'no_lang_code', 1, 'https://ror.org/03bc0qh53 Space Micro (United States)'),
(32791, 'https://ror.org/03ham7h73', 'no_lang_code', 1, 'https://ror.org/03ham7h73 Silicon Designs (United States)'),
(32792, 'https://ror.org/04rfd1d05', 'no_lang_code', 1, 'https://ror.org/04rfd1d05 Space Photonics (United States)'),
(32793, 'https://ror.org/05csz3511', 'no_lang_code', 1, 'https://ror.org/05csz3511 SI2 Technologies (United States)'),
(32794, 'https://ror.org/00171m316', 'no_lang_code', 1, 'https://ror.org/00171m316 Stellar Science (United States)'),
(32795, 'https://ror.org/02m94vn37', 'no_lang_code', 1, 'https://ror.org/02m94vn37 Vorago Technologies (United States)'),
(32796, 'https://ror.org/053hp2m86', 'no_lang_code', 1, 'https://ror.org/053hp2m86 SICOM Systems (United States)'),
(32797, 'https://ror.org/05gqsac13', 'no_lang_code', 1, 'https://ror.org/05gqsac13 SpaceTech (United States)'),
(32798, 'https://ror.org/013qwzt07', 'no_lang_code', 1, 'https://ror.org/013qwzt07 Silicon Technologies (United States)'),
(32799, 'https://ror.org/04j8bfv31', 'no_lang_code', 1, 'https://ror.org/04j8bfv31 Sienna Technologies (United States)'),
(32800, 'https://ror.org/00b510j51', 'no_lang_code', 1, 'https://ror.org/00b510j51 Sierra Lobo (United States)'),
(32801, 'https://ror.org/05w4yc230', 'no_lang_code', 1, 'https://ror.org/05w4yc230 Silvus Technologies (United States)'),
(32802, 'https://ror.org/05njdn771', 'no_lang_code', 1, 'https://ror.org/05njdn771 Stiefvater Consultants (United States)'),
(32803, 'https://ror.org/02p65v128', 'no_lang_code', 1, 'https://ror.org/02p65v128 Semtech (United States)');
INSERT INTO `rors` VALUES
(32804, 'https://ror.org/04g0byc83', 'no_lang_code', 1, 'https://ror.org/04g0byc83 Stilman Advanced Strategies (United States)'),
(32805, 'https://ror.org/00831g358', 'no_lang_code', 1, 'https://ror.org/00831g358 Stirling Dynamics (United States)'),
(32806, 'https://ror.org/030v6q043', 'no_lang_code', 1, 'https://ror.org/030v6q043 SeaLandAire Technologies (United States)'),
(32807, 'https://ror.org/05tmmj622', 'no_lang_code', 1, 'https://ror.org/05tmmj622 Safety Dynamics (United States)'),
(32808, 'https://ror.org/05wd8g307', 'no_lang_code', 1, 'https://ror.org/05wd8g307 Omega Micro Technologies (United States)'),
(32809, 'https://ror.org/0212emb53', 'no_lang_code', 1, 'https://ror.org/0212emb53 Symplectic Engineering Corporation (United States)'),
(32810, 'https://ror.org/03hzbee62', 'no_lang_code', 1, 'https://ror.org/03hzbee62 Symvionics (United States)'),
(32811, 'https://ror.org/02adffe18', 'no_lang_code', 1, 'https://ror.org/02adffe18 Sigma-K (United States)'),
(32812, 'https://ror.org/03nhk5x18', 'no_lang_code', 1, 'https://ror.org/03nhk5x18 StratEdge (United States)'),
(32813, 'https://ror.org/0303r7956', 'no_lang_code', 1, 'https://ror.org/0303r7956 Strategic Insight (United States)'),
(32814, 'https://ror.org/04zt7fp74', 'no_lang_code', 1, 'https://ror.org/04zt7fp74 Streamline Automation (United States)'),
(32815, 'https://ror.org/05mmkyr56', 'no_lang_code', 1, 'https://ror.org/05mmkyr56 Synectics (United States)'),
(32816, 'https://ror.org/05t5z9252', 'no_lang_code', 1, 'https://ror.org/05t5z9252 Synergia (United States)'),
(32817, 'https://ror.org/021gzyw51', 'no_lang_code', 1, 'https://ror.org/021gzyw51 Signal Processing (United States)'),
(32818, 'https://ror.org/04zvkqw17', 'no_lang_code', 1, 'https://ror.org/04zvkqw17 Signal Systems Corporation (United States)'),
(32819, 'https://ror.org/04djzj803', 'no_lang_code', 1, 'https://ror.org/04djzj803 Signature Research (United States)'),
(32820, 'https://ror.org/05n3gpp89', 'no_lang_code', 1, 'https://ror.org/05n3gpp89 Streamline Numerics (United States)'),
(32821, 'https://ror.org/02236vg19', 'no_lang_code', 1, 'https://ror.org/02236vg19 Structural Analytics (United States)'),
(32822, 'https://ror.org/015a91g19', 'no_lang_code', 1, 'https://ror.org/015a91g19 Syntonics (United States)'),
(32823, 'https://ror.org/020epnp70', 'no_lang_code', 1, 'https://ror.org/020epnp70 Technical Data Analysis (United States)'),
(32824, 'https://ror.org/03kv72t22', 'no_lang_code', 1, 'https://ror.org/03kv72t22 Simpson Weather Associates (United States)'),
(32825, 'https://ror.org/04ssfcp90', 'no_lang_code', 1, 'https://ror.org/04ssfcp90 Spectra Research (United States)'),
(32826, 'https://ror.org/02z4mtf98', 'no_lang_code', 1, 'https://ror.org/02z4mtf98 Sturman Industries (United States)'),
(32827, 'https://ror.org/006xt8f23', 'no_lang_code', 1, 'https://ror.org/006xt8f23 Technical Directions Incorporation (United States)'),
(32828, 'https://ror.org/014m7xt26', 'no_lang_code', 1, 'https://ror.org/014m7xt26 Sukra Helitek (United States)'),
(32829, 'https://ror.org/051z3gy60', 'no_lang_code', 1, 'https://ror.org/051z3gy60 SySense (United States)'),
(32830, 'https://ror.org/03tw0yk66', 'no_lang_code', 1, 'https://ror.org/03tw0yk66 Spectral Imaging Laboratory (United States)'),
(32831, 'https://ror.org/01f0gap96', 'no_lang_code', 1, 'https://ror.org/01f0gap96 Technical Products Incorporation (United States)'),
(32832, 'https://ror.org/04hh7yg67', 'no_lang_code', 1, 'https://ror.org/04hh7yg67 SunDanzer (United States)'),
(32833, 'https://ror.org/02ypd5h61', 'no_lang_code', 1, 'https://ror.org/02ypd5h61 Simulation Technologies (United States)'),
(32834, 'https://ror.org/00a3n8178', 'no_lang_code', 1, 'https://ror.org/00a3n8178 System Planning Corporation (United States)'),
(32835, 'https://ror.org/002a8dp29', 'no_lang_code', 1, 'https://ror.org/002a8dp29 Sunol Sciences Corporation (United States)'),
(32836, 'https://ror.org/052tkjg37', 'no_lang_code', 1, 'https://ror.org/052tkjg37 Systems & Materials Research Corporation (United States)'),
(32837, 'https://ror.org/04gggzb44', 'no_lang_code', 1, 'https://ror.org/04gggzb44 Spectranetix (United States)'),
(32838, 'https://ror.org/02zngav60', 'no_lang_code', 1, 'https://ror.org/02zngav60 SimVentions (United States)'),
(32839, 'https://ror.org/009bwq091', 'no_lang_code', 1, 'https://ror.org/009bwq091 Sunrez (United States)'),
(32840, 'https://ror.org/01z7k2z53', 'no_lang_code', 1, 'https://ror.org/01z7k2z53 Systems Dynamics (United States)'),
(32841, 'https://ror.org/01f45ap57', 'no_lang_code', 1, 'https://ror.org/01f45ap57 SimWright (United States)'),
(32842, 'https://ror.org/006xy9v19', 'no_lang_code', 1, 'https://ror.org/006xy9v19 SM&A (United States)'),
(32843, 'https://ror.org/02jmed939', 'no_lang_code', 1, 'https://ror.org/02jmed939 Sivananthan Laboratories (United States)'),
(32844, 'https://ror.org/00vet8y51', 'no_lang_code', 1, 'https://ror.org/00vet8y51 Spectrum Magnetics (United States)'),
(32845, 'https://ror.org/03dacnf06', 'no_lang_code', 1, 'https://ror.org/03dacnf06 Skinfrared (United States)'),
(32846, 'https://ror.org/01kvnds84', 'no_lang_code', 1, 'https://ror.org/01kvnds84 SCS Engineering (United States)'),
(32847, 'https://ror.org/04qvsw345', 'no_lang_code', 1, 'https://ror.org/04qvsw345 Spectrum Photonics (United States)'),
(32848, 'https://ror.org/0502j4525', 'no_lang_code', 1, 'https://ror.org/0502j4525 SkuTek Instrumentation (United States)'),
(32849, 'https://ror.org/04tcsyg17', 'no_lang_code', 1, 'https://ror.org/04tcsyg17 Spencer Industries (United States)'),
(32850, 'https://ror.org/00579ee64', 'no_lang_code', 1, 'https://ror.org/00579ee64 SkySight Technologies (United States)'),
(32851, 'https://ror.org/00eqp4438', 'no_lang_code', 1, 'https://ror.org/00eqp4438 Systems Planning and Analysis (United States)'),
(32852, 'https://ror.org/00phyfh89', 'no_lang_code', 1, 'https://ror.org/00phyfh89 Sperient (United States)'),
(32853, 'https://ror.org/01age2z78', 'no_lang_code', 1, 'https://ror.org/01age2z78 Oxford Instruments (United States)'),
(32854, 'https://ror.org/05e05d728', 'no_lang_code', 1, 'https://ror.org/05e05d728 Support Systems Associates (United States)'),
(32855, 'https://ror.org/05ttq4j04', 'no_lang_code', 1, 'https://ror.org/05ttq4j04 SPI Surgical (United States)'),
(32856, 'https://ror.org/04q7s3d74', 'no_lang_code', 1, 'https://ror.org/04q7s3d74 Softronics (United States)'),
(32857, 'https://ror.org/038ggnx21', 'no_lang_code', 1, 'https://ror.org/038ggnx21 Sytronics (United States)'),
(32858, 'https://ror.org/038m4nz41', 'no_lang_code', 1, 'https://ror.org/038m4nz41 Spiritech Advanced Products (United States)'),
(32859, 'https://ror.org/02xzsdt57', 'no_lang_code', 1, 'https://ror.org/02xzsdt57 Surface Optics (United States)'),
(32860, 'https://ror.org/03qt0ma29', 'no_lang_code', 1, 'https://ror.org/03qt0ma29 Software and Engineering Associates (United States)'),
(32861, 'https://ror.org/05ay2ee52', 'no_lang_code', 1, 'https://ror.org/05ay2ee52 Sporian Microsystems (United States)'),
(32862, 'https://ror.org/04yswnp37', 'no_lang_code', 1, 'https://ror.org/04yswnp37 Systima Technologies (United States)'),
(32863, 'https://ror.org/03z777f25', 'no_lang_code', 1, 'https://ror.org/03z777f25 Surface Treatment Technologies (United States)'),
(32864, 'https://ror.org/03a6msw65', 'no_lang_code', 1, 'https://ror.org/03a6msw65 Technology for Energy Corporation (United States)'),
(32865, 'https://ror.org/0238w0s48', 'no_lang_code', 1, 'https://ror.org/0238w0s48 Spytek Aerospace (United States)'),
(32866, 'https://ror.org/033km7y93', 'no_lang_code', 1, 'https://ror.org/033km7y93 SoHaR (United States)'),
(32867, 'https://ror.org/02v09hm63', 'no_lang_code', 1, 'https://ror.org/02v09hm63 Surmet (United States)'),
(32868, 'https://ror.org/05mm98a47', 'no_lang_code', 1, 'https://ror.org/05mm98a47 Square One (United States)'),
(32869, 'https://ror.org/05438sd72', 'no_lang_code', 1, 'https://ror.org/05438sd72 Table Mountain Optics (United States)'),
(32870, 'https://ror.org/01g8xep57', 'no_lang_code', 1, 'https://ror.org/01g8xep57 STI Electronics (United States)'),
(32871, 'https://ror.org/01m293240', 'no_lang_code', 1, 'https://ror.org/01m293240 Survice Engineering (United States)'),
(32872, 'https://ror.org/0329mpy71', 'no_lang_code', 1, 'https://ror.org/0329mpy71 Techsburg (United States)'),
(32873, 'https://ror.org/024arnh55', 'no_lang_code', 1, 'https://ror.org/024arnh55 Solid State Scientific Corporation (United States)'),
(32874, 'https://ror.org/03spj8080', 'no_lang_code', 1, 'https://ror.org/03spj8080 Solute (United States)'),
(32875, 'https://ror.org/039d88t66', 'no_lang_code', 1, 'https://ror.org/039d88t66 Sigma Labs (United States)'),
(32876, 'https://ror.org/00gvkt544', 'no_lang_code', 1, 'https://ror.org/00gvkt544 Technology Management Company (United States)'),
(32877, 'https://ror.org/00n3ezc34', 'no_lang_code', 1, 'https://ror.org/00n3ezc34 Nammo (United States)'),
(32878, 'https://ror.org/05pfbbk72', 'no_lang_code', 1, 'https://ror.org/05pfbbk72 SoniPulse (United States)'),
(32879, 'https://ror.org/01n1w8781', 'no_lang_code', 1, 'https://ror.org/01n1w8781 Symetrix (United States)'),
(32880, 'https://ror.org/054fk6316', 'no_lang_code', 1, 'https://ror.org/054fk6316 Tau Technologies (United States)'),
(32881, 'https://ror.org/04jfp6348', 'no_lang_code', 1, 'https://ror.org/04jfp6348 Soraa (United States)'),
(32882, 'https://ror.org/02qg55h92', 'no_lang_code', 1, 'https://ror.org/02qg55h92 Star Cryoelectronics (United States)'),
(32883, 'https://ror.org/04mf3j007', 'no_lang_code', 1, 'https://ror.org/04mf3j007 TES International (United States)'),
(32884, 'https://ror.org/00axxrg60', 'no_lang_code', 1, 'https://ror.org/00axxrg60 Star Microwave (United States)'),
(32885, 'https://ror.org/007c5ag63', 'no_lang_code', 1, 'https://ror.org/007c5ag63 Star Technology and Research (United States)'),
(32886, 'https://ror.org/03c5nrv09', 'no_lang_code', 1, 'https://ror.org/03c5nrv09 STAR-H (United States)'),
(32887, 'https://ror.org/03wxvt516', 'no_lang_code', 1, 'https://ror.org/03wxvt516 Technology Solutions Experts (United States)'),
(32888, 'https://ror.org/037ncgg21', 'no_lang_code', 1, 'https://ror.org/037ncgg21 Test Devices (United States)'),
(32889, 'https://ror.org/05a4hd624', 'no_lang_code', 1, 'https://ror.org/05a4hd624 Varadero Capital (United States)'),
(32890, 'https://ror.org/01gdw4351', 'no_lang_code', 1, 'https://ror.org/01gdw4351 TechFlow (United States)'),
(32891, 'https://ror.org/05xcbaa04', 'no_lang_code', 1, 'https://ror.org/05xcbaa04 Lubricating Specialties Company (United States)'),
(32892, 'https://ror.org/042fse352', 'no_lang_code', 1, 'https://ror.org/042fse352 TiER1 (United States)'),
(32893, 'https://ror.org/034hhvm18', 'no_lang_code', 1, 'https://ror.org/034hhvm18 Trout Green Technologies (United States)'),
(32894, 'https://ror.org/049fv0n19', 'no_lang_code', 1, 'https://ror.org/049fv0n19 Time Domain (United States)'),
(32895, 'https://ror.org/045pznz06', 'no_lang_code', 1, 'https://ror.org/045pznz06 Valley Tech Systems (United States)'),
(32896, 'https://ror.org/0040z7z59', 'no_lang_code', 1, 'https://ror.org/0040z7z59 M Corp (United States)'),
(32897, 'https://ror.org/03ycgwr13', 'no_lang_code', 1, 'https://ror.org/03ycgwr13 TimeSys (United States)'),
(32898, 'https://ror.org/016xr3h51', 'no_lang_code', 1, 'https://ror.org/016xr3h51 Technosoft (United States)'),
(32899, 'https://ror.org/035ra0284', 'no_lang_code', 1, 'https://ror.org/035ra0284 TTC Technologies (United States)'),
(32900, 'https://ror.org/025ct3y55', 'no_lang_code', 1, 'https://ror.org/025ct3y55 TechSource (United States)'),
(32901, 'https://ror.org/03r5ah485', 'en', 1, 'https://ror.org/03r5ah485 Texas Research Institute'),
(32902, 'https://ror.org/05bt80j81', 'no_lang_code', 1, 'https://ror.org/05bt80j81 Tecolote Research (United States)'),
(32903, 'https://ror.org/04yrgb625', 'no_lang_code', 1, 'https://ror.org/04yrgb625 Vanguard Space Technologies (United States)'),
(32904, 'https://ror.org/00qzpz347', 'no_lang_code', 1, 'https://ror.org/00qzpz347 TelAztec (United States)'),
(32905, 'https://ror.org/05bhnjv02', 'no_lang_code', 1, 'https://ror.org/05bhnjv02 Twinleaf (United States)'),
(32906, 'https://ror.org/00fgmrc59', 'no_lang_code', 1, 'https://ror.org/00fgmrc59 CDI (United States)'),
(32907, 'https://ror.org/01tjn9x38', 'no_lang_code', 1, 'https://ror.org/01tjn9x38 UBC (United States)'),
(32908, 'https://ror.org/01zzzs782', 'no_lang_code', 1, 'https://ror.org/01zzzs782 Variation Reduction Solutions (United States)'),
(32909, 'https://ror.org/05hzgnr17', 'no_lang_code', 1, 'https://ror.org/05hzgnr17 Vatell (United States)'),
(32910, 'https://ror.org/0420sjb95', 'no_lang_code', 1, 'https://ror.org/0420sjb95 TextWise (United States)'),
(32911, 'https://ror.org/031r5nr48', 'no_lang_code', 1, 'https://ror.org/031r5nr48 Vecna Technologies (United States)'),
(32912, 'https://ror.org/02wedcm51', 'no_lang_code', 1, 'https://ror.org/02wedcm51 Tezzaron Semiconductor (United States)'),
(32913, 'https://ror.org/04gq4y167', 'no_lang_code', 1, 'https://ror.org/04gq4y167 UFA (United States)'),
(32914, 'https://ror.org/04txrym18', 'no_lang_code', 1, 'https://ror.org/04txrym18 Vector Test Systems (United States)'),
(32915, 'https://ror.org/05a0zp865', 'no_lang_code', 1, 'https://ror.org/05a0zp865 NanoTechRanch (United States)'),
(32916, 'https://ror.org/04e1s4y56', 'no_lang_code', 1, 'https://ror.org/04e1s4y56 The Design Knowledge Company (United States)'),
(32917, 'https://ror.org/00scjy223', 'no_lang_code', 1, 'https://ror.org/00scjy223 Core Laboratories (United States)'),
(32918, 'https://ror.org/02trd4c61', 'no_lang_code', 1, 'https://ror.org/02trd4c61 Ultimara (United States)'),
(32919, 'https://ror.org/01bn00n07', 'no_lang_code', 1, 'https://ror.org/01bn00n07 Telescent (United States)'),
(32920, 'https://ror.org/04049nt84', 'no_lang_code', 1, 'https://ror.org/04049nt84 Ultra Communications (United States)'),
(32921, 'https://ror.org/04wehfb27', 'no_lang_code', 1, 'https://ror.org/04wehfb27 Vectraxx (United States)'),
(32922, 'https://ror.org/03qm91g53', 'no_lang_code', 1, 'https://ror.org/03qm91g53 Telesecurity Sciences (United States)'),
(32923, 'https://ror.org/01mv87107', 'no_lang_code', 1, 'https://ror.org/01mv87107 Top-Vu Technology (United States)'),
(32924, 'https://ror.org/041b73r77', 'no_lang_code', 1, 'https://ror.org/041b73r77 Underground Systems (United States)'),
(32925, 'https://ror.org/01px5z495', 'no_lang_code', 1, 'https://ror.org/01px5z495 Tempest Technologies (United States)'),
(32926, 'https://ror.org/01xp8jx84', 'no_lang_code', 1, 'https://ror.org/01xp8jx84 Ormet Circuits (United States)'),
(32927, 'https://ror.org/04fe9w827', 'no_lang_code', 1, 'https://ror.org/04fe9w827 Vehicle Control Technologies (United States)'),
(32928, 'https://ror.org/03kz6k786', 'no_lang_code', 1, 'https://ror.org/03kz6k786 The Technology Partnership (United States)'),
(32929, 'https://ror.org/003g4n960', 'no_lang_code', 1, 'https://ror.org/003g4n960 Templeman Automation (United States)'),
(32930, 'https://ror.org/039tznx53', 'no_lang_code', 1, 'https://ror.org/039tznx53 Ventana Research Corporation (United States)'),
(32931, 'https://ror.org/004sfzf96', 'no_lang_code', 1, 'https://ror.org/004sfzf96 Solus (United States)'),
(32932, 'https://ror.org/00nrhr905', 'no_lang_code', 1, 'https://ror.org/00nrhr905 Torch Technologies (United States)'),
(32933, 'https://ror.org/003veqw46', 'no_lang_code', 1, 'https://ror.org/003veqw46 Oil States International (United States)'),
(32934, 'https://ror.org/002fqp272', 'en', 1, 'https://ror.org/002fqp272 Hostos Community College'),
(32935, 'https://ror.org/00f47ek31', 'no_lang_code', 1, 'https://ror.org/00f47ek31 Torrey Pines Logic (United States)'),
(32936, 'https://ror.org/04khywr62', 'no_lang_code', 1, 'https://ror.org/04khywr62 Veritay Technology (United States)'),
(32937, 'https://ror.org/03we2aj97', 'en', 1, 'https://ror.org/03we2aj97 Medgar Evers College'),
(32938, 'https://ror.org/043yd9j22', 'no_lang_code', 1, 'https://ror.org/043yd9j22 TeraDiode (United States)'),
(32939, 'https://ror.org/04w6mxh75', 'en', 1, 'https://ror.org/04w6mxh75 Bronx Community College'),
(32940, 'https://ror.org/05a3mwa69', 'en', 1, 'https://ror.org/05a3mwa69 LaGuardia Community College'),
(32941, 'https://ror.org/005h28707', 'no_lang_code', 1, 'https://ror.org/005h28707 Versar (United States)'),
(32942, 'https://ror.org/03a4k1f37', 'en', 1, 'https://ror.org/03a4k1f37 Kingsborough Community College'),
(32943, 'https://ror.org/01ny0n591', 'no_lang_code', 1, 'https://ror.org/01ny0n591 Thermavant (United States)'),
(32944, 'https://ror.org/035x8xc95', 'no_lang_code', 1, 'https://ror.org/035x8xc95 Bohemia Interactive Simulations (United States)'),
(32945, 'https://ror.org/04ftnqm48', 'no_lang_code', 1, 'https://ror.org/04ftnqm48 Versatilis (United States)'),
(32946, 'https://ror.org/052fns920', 'no_lang_code', 1, 'https://ror.org/052fns920 Victor Technologies (United States)'),
(32947, 'https://ror.org/00jtran50', 'en', 1, 'https://ror.org/00jtran50 CUNY School of Law'),
(32948, 'https://ror.org/0012hsk21', 'no_lang_code', 1, 'https://ror.org/0012hsk21 ViGYAN (United States)'),
(32949, 'https://ror.org/03p2em878', 'no_lang_code', 1, 'https://ror.org/03p2em878 UQM Technologies (United States)'),
(32950, 'https://ror.org/04yvpz902', 'no_lang_code', 1, 'https://ror.org/04yvpz902 Vertec Biosolvents (United States)'),
(32951, 'https://ror.org/017pe7554', 'no_lang_code', 1, 'https://ror.org/017pe7554 Cubic (United States)'),
(32952, 'https://ror.org/0351r3c39', 'no_lang_code', 1, 'https://ror.org/0351r3c39 VIP Sensors (United States)'),
(32953, 'https://ror.org/02gbk8644', 'no_lang_code', 1, 'https://ror.org/02gbk8644 LRM Industries International (United States)'),
(32954, 'https://ror.org/05658r667', 'no_lang_code', 1, 'https://ror.org/05658r667 Total Quality Systems (United States)'),
(32955, 'https://ror.org/0573tzb24', 'no_lang_code', 1, 'https://ror.org/0573tzb24 Hunter Defense Technologies (United States)'),
(32956, 'https://ror.org/048cnym07', 'no_lang_code', 1, 'https://ror.org/048cnym07 Vextec (United States)'),
(32957, 'https://ror.org/03ae5ch37', 'no_lang_code', 1, 'https://ror.org/03ae5ch37 Toyon (United States)'),
(32958, 'https://ror.org/05s7yfr86', 'no_lang_code', 1, 'https://ror.org/05s7yfr86 VI Manufacturing (United States)'),
(32959, 'https://ror.org/05hgx5v83', 'no_lang_code', 1, 'https://ror.org/05hgx5v83 Think A Move (United States)'),
(32960, 'https://ror.org/03sf2jx83', 'no_lang_code', 1, 'https://ror.org/03sf2jx83 Traclabs (United States)'),
(32961, 'https://ror.org/05f4xbp74', 'no_lang_code', 1, 'https://ror.org/05f4xbp74 ThinKom Solutions (United States)'),
(32962, 'https://ror.org/01ewwhz50', 'no_lang_code', 1, 'https://ror.org/01ewwhz50 Vibratess (United States)'),
(32963, 'https://ror.org/04m7z7z76', 'no_lang_code', 1, 'https://ror.org/04m7z7z76 Third Wave Systems (United States)'),
(32964, 'https://ror.org/03h8ck063', 'no_lang_code', 1, 'https://ror.org/03h8ck063 Virginia Diodes (United States)'),
(32965, 'https://ror.org/0429ctb76', 'no_lang_code', 1, 'https://ror.org/0429ctb76 Warwick Mills (United States)'),
(32966, 'https://ror.org/010e60082', 'no_lang_code', 1, 'https://ror.org/010e60082 Thorpe Seeop (United States)'),
(32967, 'https://ror.org/01eggyv13', 'no_lang_code', 1, 'https://ror.org/01eggyv13 Translume (United States)'),
(32968, 'https://ror.org/0357dmp95', 'no_lang_code', 1, 'https://ror.org/0357dmp95 Utility Development (United States)'),
(32969, 'https://ror.org/057w9g751', 'no_lang_code', 1, 'https://ror.org/057w9g751 Tialinx (United States)'),
(32970, 'https://ror.org/051d4q284', 'no_lang_code', 1, 'https://ror.org/051d4q284 UtopiaCompression (United States)'),
(32971, 'https://ror.org/05w2bg973', 'no_lang_code', 1, 'https://ror.org/05w2bg973 Wasatch Molecular (United States)'),
(32972, 'https://ror.org/010bn5e72', 'no_lang_code', 1, 'https://ror.org/010bn5e72 V Corp Technologies (United States)'),
(32973, 'https://ror.org/041my0n44', 'no_lang_code', 1, 'https://ror.org/041my0n44 Vadum (United States)'),
(32974, 'https://ror.org/003zm6h82', 'no_lang_code', 1, 'https://ror.org/003zm6h82 TransTech Systems (United States)'),
(32975, 'https://ror.org/01h7rcq14', 'no_lang_code', 1, 'https://ror.org/01h7rcq14 Wave Computation Technologies (United States)'),
(32976, 'https://ror.org/03a0t9098', 'no_lang_code', 1, 'https://ror.org/03a0t9098 Virtual EM (United States)'),
(32977, 'https://ror.org/05pj73f13', 'no_lang_code', 1, 'https://ror.org/05pj73f13 TIAX (United States)'),
(32978, 'https://ror.org/00hbekd38', 'no_lang_code', 1, 'https://ror.org/00hbekd38 Wavecon (United States)'),
(32979, 'https://ror.org/04ya3w052', 'no_lang_code', 1, 'https://ror.org/04ya3w052 TriTech Software Systems (United States)'),
(32980, 'https://ror.org/050cc9q33', 'no_lang_code', 1, 'https://ror.org/050cc9q33 Virtual Simulation and Training (United States)'),
(32981, 'https://ror.org/04jfj6996', 'no_lang_code', 1, 'https://ror.org/04jfj6996 Triangle Polymer Technologies (United States)'),
(32982, 'https://ror.org/05ax5pz51', 'no_lang_code', 1, 'https://ror.org/05ax5pz51 Wavefront Research (United States)'),
(32983, 'https://ror.org/059cy3h71', 'no_lang_code', 1, 'https://ror.org/059cy3h71 Meggitt (United States)'),
(32984, 'https://ror.org/04s1kwh20', 'no_lang_code', 1, 'https://ror.org/04s1kwh20 Xidex (United States)'),
(32985, 'https://ror.org/030a75q40', 'no_lang_code', 1, 'https://ror.org/030a75q40 Vision Systems Incorporation (United States)'),
(32986, 'https://ror.org/00bngcf58', 'no_lang_code', 1, 'https://ror.org/00bngcf58 Trident Research (United States)'),
(32987, 'https://ror.org/01a6nz466', 'no_lang_code', 1, 'https://ror.org/01a6nz466 Milliken & Company (United States)'),
(32988, 'https://ror.org/05tg9ea20', 'no_lang_code', 1, 'https://ror.org/05tg9ea20 XMCO (United States)'),
(32989, 'https://ror.org/015h23t48', 'no_lang_code', 1, 'https://ror.org/015h23t48 Trident Systems (United States)'),
(32990, 'https://ror.org/012zqg360', 'no_lang_code', 1, 'https://ror.org/012zqg360 Wedeven Associates (United States)'),
(32991, 'https://ror.org/000xe4a49', 'no_lang_code', 1, 'https://ror.org/000xe4a49 Visotek (United States)'),
(32992, 'https://ror.org/01v6wg951', 'no_lang_code', 1, 'https://ror.org/01v6wg951 Vista Clara (United States)'),
(32993, 'https://ror.org/0574nqa10', 'no_lang_code', 1, 'https://ror.org/0574nqa10 WINTEC (United States)'),
(32994, 'https://ror.org/029ncv135', 'no_lang_code', 1, 'https://ror.org/029ncv135 WeldQC (United States)'),
(32995, 'https://ror.org/03ht43x94', 'no_lang_code', 1, 'https://ror.org/03ht43x94 VIStology (United States)'),
(32996, 'https://ror.org/012e65633', 'no_lang_code', 1, 'https://ror.org/012e65633 Welkin Sciences (United States)'),
(32997, 'https://ror.org/02qx7jz53', 'no_lang_code', 1, 'https://ror.org/02qx7jz53 Wolf Technical Services (United States)'),
(32998, 'https://ror.org/017dk1028', 'no_lang_code', 1, 'https://ror.org/017dk1028 Zolo Technologies (United States)'),
(32999, 'https://ror.org/02tqmtb62', 'no_lang_code', 1, 'https://ror.org/02tqmtb62 Yankee Scientific (United States)'),
(33000, 'https://ror.org/02cg78r45', 'no_lang_code', 1, 'https://ror.org/02cg78r45 Visual Editor Consultants (United States)'),
(33001, 'https://ror.org/03k64vf14', 'no_lang_code', 1, 'https://ror.org/03k64vf14 WW Technology Group (United States)'),
(33002, 'https://ror.org/012q7s492', 'no_lang_code', 1, 'https://ror.org/012q7s492 Visual Sciences (United States)'),
(33003, 'https://ror.org/00t2vjb05', 'no_lang_code', 1, 'https://ror.org/00t2vjb05 White River Technologies (United States)'),
(33004, 'https://ror.org/01tcanc07', 'no_lang_code', 1, 'https://ror.org/01tcanc07 Yotta Navigation (United States)'),
(33005, 'https://ror.org/00fg16924', 'no_lang_code', 1, 'https://ror.org/00fg16924 Zomega Terahertz (United States)'),
(33006, 'https://ror.org/05t8h2f11', 'no_lang_code', 1, 'https://ror.org/05t8h2f11 ZONA Technology (United States)'),
(33007, 'https://ror.org/00an7dj71', 'no_lang_code', 1, 'https://ror.org/00an7dj71 Wickman Spacecraft & Propulsion Company (United States)'),
(33008, 'https://ror.org/04q9g9s58', 'no_lang_code', 1, 'https://ror.org/04q9g9s58 Voss Scientific (United States)'),
(33009, 'https://ror.org/03x9v0071', 'no_lang_code', 1, 'https://ror.org/03x9v0071 Wilson Composites (United States)'),
(33010, 'https://ror.org/01mvkzj41', 'no_lang_code', 1, 'https://ror.org/01mvkzj41 Microsemi (United States)'),
(33011, 'https://ror.org/00mp05931', 'no_lang_code', 1, 'https://ror.org/00mp05931 Vulcan Wireless (United States)'),
(33012, 'https://ror.org/015jsx554', 'no_lang_code', 1, 'https://ror.org/015jsx554 Zel Technologies (United States)'),
(33013, 'https://ror.org/04y244695', 'no_lang_code', 1, 'https://ror.org/04y244695 W5 Technlogies (United States)'),
(33014, 'https://ror.org/014yncy15', 'no_lang_code', 1, 'https://ror.org/014yncy15 XCOM Wireless (United States)'),
(33015, 'https://ror.org/02ayrn205', 'no_lang_code', 1, 'https://ror.org/02ayrn205 Waddan Systems (United States)'),
(33016, 'https://ror.org/04kggmg61', 'no_lang_code', 1, 'https://ror.org/04kggmg61 Zephyr Software (United States)'),
(33017, 'https://ror.org/04hzcb818', 'no_lang_code', 1, 'https://ror.org/04hzcb818 Wang Electro-Opto (United States)'),
(33018, 'https://ror.org/01hgvdq15', 'no_lang_code', 1, 'https://ror.org/01hgvdq15 Zimmerman Associates (United States)'),
(33019, 'https://ror.org/05n6cs483', 'no_lang_code', 1, 'https://ror.org/05n6cs483 XCOR Aerospace (United States)'),
(33020, 'https://ror.org/05scp2b29', 'no_lang_code', 1, 'https://ror.org/05scp2b29 Ziva (United States)'),
(33021, 'https://ror.org/05w1vwd46', 'no_lang_code', 1, 'https://ror.org/05w1vwd46 WarpIV Technologies (United States)'),
(33022, 'https://ror.org/03sz7ps56', 'no_lang_code', 1, 'https://ror.org/03sz7ps56 Zivko Aeronautics (United States)'),
(33023, 'https://ror.org/01zjrck77', 'en', 1, 'https://ror.org/01zjrck77 National University'),
(33024, 'https://ror.org/024bc8636', 'no_lang_code', 1, 'https://ror.org/024bc8636 Novitech (Slovakia)'),
(33025, 'https://ror.org/03hc5gb19', 'no_lang_code', 1, 'https://ror.org/03hc5gb19 American Industrial Partners (United States)'),
(33026, 'https://ror.org/04v7ke830', 'sk', 1, 'https://ror.org/04v7ke830 Stredna Priemyselna Skola Samuela Mikoviniho'),
(33027, 'https://ror.org/00nnsna93', 'no_lang_code', 1, 'https://ror.org/00nnsna93 Camgian Microsystems (United States)'),
(33028, 'https://ror.org/00zt5yw80', 'en', 1, 'https://ror.org/00zt5yw80 American Oriental Society'),
(33029, 'https://ror.org/04s2w8b69', 'en', 1, 'https://ror.org/04s2w8b69 Al Khawarizmi International College'),
(33030, 'https://ror.org/0482b6s78', 'no_lang_code', 1, 'https://ror.org/0482b6s78 Abili (Brazil)'),
(33031, 'https://ror.org/04m3mdp26', 'pt', 1, 'https://ror.org/04m3mdp26 Associação Brasileira de Alergia e Imunologia'),
(33032, 'https://ror.org/00fx97040', 'no_lang_code', 1, 'https://ror.org/00fx97040 Ablevision (Brazil)'),
(33033, 'https://ror.org/039t3gk55', 'no_lang_code', 1, 'https://ror.org/039t3gk55 Biopdi (Brazil)'),
(33034, 'https://ror.org/02gcgk516', 'pt', 1, 'https://ror.org/02gcgk516 Associação Brasileira de Análise Térmica e Calorimetria'),
(33035, 'https://ror.org/052fv6w39', 'pt', 1, 'https://ror.org/052fv6w39 Academia Brasileira de Audiologia Brazilian Academy of Audiology'),
(33036, 'https://ror.org/038ydmp22', 'no_lang_code', 1, 'https://ror.org/038ydmp22 Alpha Br Produtos Químicos (Brazil)'),
(33037, 'https://ror.org/03frnyk41', 'pt', 1, 'https://ror.org/03frnyk41 Associação Saúde da Família'),
(33038, 'https://ror.org/01r8seb12', 'pt', 1, 'https://ror.org/01r8seb12 Associação Brasileira de Antropologia'),
(33039, 'https://ror.org/04q385q62', 'no_lang_code', 1, 'https://ror.org/04q385q62 Biotech (Brazil)'),
(33040, 'https://ror.org/01zn6j405', 'pt', 1, 'https://ror.org/01zn6j405 Academia de Ciências do Estado de São Paulo'),
(33041, 'https://ror.org/01gkfjz83', 'no_lang_code', 1, 'https://ror.org/01gkfjz83 Altave (Brazil)'),
(33042, 'https://ror.org/05q6w4p96', 'pt', 1, 'https://ror.org/05q6w4p96 Associação Sul-Americana de Automação'),
(33043, 'https://ror.org/02nw88150', 'pt', 1, 'https://ror.org/02nw88150 Academia Nacional de Cuidados Paliativos'),
(33044, 'https://ror.org/040cbt857', 'no_lang_code', 1, 'https://ror.org/040cbt857 Bioware (Brazil)'),
(33045, 'https://ror.org/00yg0kc17', 'pt', 1, 'https://ror.org/00yg0kc17 Ação Educativa'),
(33046, 'https://ror.org/04293qd70', 'pt', 1, 'https://ror.org/04293qd70 Associação Brasileira da Batata'),
(33047, 'https://ror.org/02d66ss51', 'no_lang_code', 1, 'https://ror.org/02d66ss51 Accert (Brazil)'),
(33048, 'https://ror.org/045905m75', 'en', 1, 'https://ror.org/045905m75 Associação Brasileira de Buiatria Brazilian Buiatrics Association'),
(33049, 'https://ror.org/01s41hv32', 'no_lang_code', 1, 'https://ror.org/01s41hv32 Bonavision Auxilios Opticos (Brazil)'),
(33050, 'https://ror.org/045pn0g98', 'no_lang_code', 1, 'https://ror.org/045pn0g98 Atonus Engineering Systems (Brazil)'),
(33051, 'https://ror.org/00y2ehr59', 'no_lang_code', 1, 'https://ror.org/00y2ehr59 Ambra Solutions (Brazil)'),
(33052, 'https://ror.org/041fsgg33', 'no_lang_code', 1, 'https://ror.org/041fsgg33 AMS Kepler (Brazil)'),
(33053, 'https://ror.org/0498mas94', 'pt', 1, 'https://ror.org/0498mas94 Associação Brasileira de Ciência Política'),
(33054, 'https://ror.org/03edcef46', 'no_lang_code', 1, 'https://ror.org/03edcef46 Acquest (Brazil)'),
(33055, 'https://ror.org/00t5zf034', 'pt', 1, 'https://ror.org/00t5zf034 Associação Brasileira de Estatística'),
(33056, 'https://ror.org/022j85822', 'no_lang_code', 1, 'https://ror.org/022j85822 Eurofins (Brazil)'),
(33057, 'https://ror.org/05r9em747', 'no_lang_code', 1, 'https://ror.org/05r9em747 Adespec (Brazil)'),
(33058, 'https://ror.org/00zfwf776', 'pt', 1, 'https://ror.org/00zfwf776 Associação Brasileira de Estudos de Defesa'),
(33059, 'https://ror.org/054hb1p97', 'no_lang_code', 1, 'https://ror.org/054hb1p97 BR Express (Brazil)'),
(33060, 'https://ror.org/01r9w2e44', 'pt', 1, 'https://ror.org/01r9w2e44 Associação Brasileira de Estudos Populacionais'),
(33061, 'https://ror.org/01yb2dp72', 'no_lang_code', 1, 'https://ror.org/01yb2dp72 Br4Science (Brazil)'),
(33062, 'https://ror.org/021sest91', 'no_lang_code', 1, 'https://ror.org/021sest91 BCS Tecnologia (Brazil)'),
(33063, 'https://ror.org/040dcjh11', 'no_lang_code', 1, 'https://ror.org/040dcjh11 Adiel Comercial (Brazil)'),
(33064, 'https://ror.org/04e0ysh28', 'no_lang_code', 1, 'https://ror.org/04e0ysh28 Trouw Nutrition (Brazil)'),
(33065, 'https://ror.org/027ec3b27', 'no_lang_code', 1, 'https://ror.org/027ec3b27 Anod-Arc Comércio e Serviços Anod-arc (Brazil)'),
(33066, 'https://ror.org/05rs9jm31', 'en', 1, 'https://ror.org/05rs9jm31 Associação Brasileira de Filosofia e História da Biologia Brazilian Association of Philosophy and History of Biology'),
(33067, 'https://ror.org/03h66a821', 'no_lang_code', 1, 'https://ror.org/03h66a821 ADTS (Brazil)'),
(33068, 'https://ror.org/001bdqp77', 'no_lang_code', 1, 'https://ror.org/001bdqp77 Belver Brasil Instrumentos (Brazil)'),
(33069, 'https://ror.org/03cr88393', 'no_lang_code', 1, 'https://ror.org/03cr88393 Antares Eletrônica (Brazil)'),
(33070, 'https://ror.org/0508hmq85', 'no_lang_code', 1, 'https://ror.org/0508hmq85 Antoniosi Tecnologia Agroindustrial (Brazil)'),
(33071, 'https://ror.org/00xwpb736', 'no_lang_code', 1, 'https://ror.org/00xwpb736 Apis Flora (Brazil) Apis Flora Industrial e Comercial Ltda'),
(33072, 'https://ror.org/05ctcgz71', 'no_lang_code', 1, 'https://ror.org/05ctcgz71 Beta Telecom (Brazil)'),
(33073, 'https://ror.org/00kpjpr15', 'pt', 1, 'https://ror.org/00kpjpr15 Fundação de Ciência, Aplicações e Tecnologia Espaciais'),
(33074, 'https://ror.org/02nhdg694', 'no_lang_code', 1, 'https://ror.org/02nhdg694 Aeroalcool Tecnologia (Brazil)'),
(33075, 'https://ror.org/02y0fdf18', 'no_lang_code', 1, 'https://ror.org/02y0fdf18 Tetra Tech (Brazil)'),
(33076, 'https://ror.org/05f6p1h60', 'no_lang_code', 1, 'https://ror.org/05f6p1h60 Illinois Tool Works (Brazil)'),
(33077, 'https://ror.org/00fw3pm40', 'no_lang_code', 1, 'https://ror.org/00fw3pm40 Betta Tecnologia (Brazil)'),
(33078, 'https://ror.org/03fe6f421', 'no_lang_code', 1, 'https://ror.org/03fe6f421 Brascoelma (Brazil)'),
(33079, 'https://ror.org/000ft5096', 'no_lang_code', 1, 'https://ror.org/000ft5096 Agricef (Brazil)'),
(33080, 'https://ror.org/045js9z71', 'no_lang_code', 1, 'https://ror.org/045js9z71 Bevi Plastic (Brazil)'),
(33081, 'https://ror.org/042ghyj15', 'no_lang_code', 1, 'https://ror.org/042ghyj15 Bf Clay Especialidades (Brazil)'),
(33082, 'https://ror.org/047gb2729', 'no_lang_code', 1, 'https://ror.org/047gb2729 Agro Lab Plants (Brazil)'),
(33083, 'https://ror.org/024kjg104', 'pt', 1, 'https://ror.org/024kjg104 Associação Brasileira de Informática'),
(33084, 'https://ror.org/051z2qe83', 'no_lang_code', 1, 'https://ror.org/051z2qe83 BrasilOzônio (Brazil)'),
(33085, 'https://ror.org/0100xag24', 'pt', 1, 'https://ror.org/0100xag24 Associação Brasileira de Médicos Veterinários de Equídeos'),
(33086, 'https://ror.org/04pqbzj36', 'pt', 1, 'https://ror.org/04pqbzj36 Associação Brasileira de Oncologia Veterinária'),
(33087, 'https://ror.org/03sdvby86', 'no_lang_code', 1, 'https://ror.org/03sdvby86 Bio&Green (Brazil)'),
(33088, 'https://ror.org/00heqzt73', 'pt', 1, 'https://ror.org/00heqzt73 Arquivo Histórico Judaico Brasileiro'),
(33089, 'https://ror.org/0244wrw23', 'no_lang_code', 1, 'https://ror.org/0244wrw23 AGX Tecnologia (Brazil)'),
(33090, 'https://ror.org/04gyfva88', 'no_lang_code', 1, 'https://ror.org/04gyfva88 Bio Controle (Brazil)'),
(33091, 'https://ror.org/017422k09', 'no_lang_code', 1, 'https://ror.org/017422k09 Centro Técnico de Automação (Brazil)'),
(33092, 'https://ror.org/02js51327', 'no_lang_code', 1, 'https://ror.org/02js51327 Akaer (Brazil)'),
(33093, 'https://ror.org/04st31e64', 'pt', 1, 'https://ror.org/04st31e64 Associação Brasileira de Pesquisadores de Comunicação Organizacional e de Relações Públicas'),
(33094, 'https://ror.org/022egts32', 'no_lang_code', 1, 'https://ror.org/022egts32 Altech (Brazil)'),
(33095, 'https://ror.org/02ywapq94', 'pt', 1, 'https://ror.org/02ywapq94 Associação Brasileira de Pesquisadores em História Econômica'),
(33096, 'https://ror.org/04d8dwz89', 'no_lang_code', 1, 'https://ror.org/04d8dwz89 Bio Soja Group (Brazil) Grupo Bio Soja'),
(33097, 'https://ror.org/03tn1hf10', 'pt', 1, 'https://ror.org/03tn1hf10 Associação Brasileira de Polímeros'),
(33098, 'https://ror.org/024m1yq44', 'no_lang_code', 1, 'https://ror.org/024m1yq44 Camelback (Brazil)'),
(33099, 'https://ror.org/00rs1fw09', 'no_lang_code', 1, 'https://ror.org/00rs1fw09 Asel-Tech (Brazil) Asel-Tech Tecnologia e Automaçăo'),
(33100, 'https://ror.org/0014nwk66', 'no_lang_code', 1, 'https://ror.org/0014nwk66 Alchemy (Brazil)'),
(33101, 'https://ror.org/005pn5z34', 'en', 1, 'https://ror.org/005pn5z34 Federal Institute of São Paulo Instituto Federal de Educação, Ciência e Tecnologia de São Paulo'),
(33102, 'https://ror.org/032bps724', 'no_lang_code', 1, 'https://ror.org/032bps724 AsGa (Brazil)'),
(33103, 'https://ror.org/059egf570', 'no_lang_code', 1, 'https://ror.org/059egf570 Lucinski (Brazil)'),
(33104, 'https://ror.org/04csdp142', 'no_lang_code', 1, 'https://ror.org/04csdp142 Algae Biotecnologia (Brazil)'),
(33105, 'https://ror.org/00b9tfp03', 'pt', 1, 'https://ror.org/00b9tfp03 Assembleia Legislativa de São Paulo'),
(33106, 'https://ror.org/059x5ff13', 'no_lang_code', 1, 'https://ror.org/059x5ff13 Aliança Orgânica Soluções Ambientais (Brazil)'),
(33107, 'https://ror.org/04dq2e820', 'pt', 1, 'https://ror.org/04dq2e820 Associação Brasileira de Psicoterapia e Medicina Comportamental'),
(33108, 'https://ror.org/05kwrc623', 'no_lang_code', 1, 'https://ror.org/05kwrc623 CBPak (Brazil)'),
(33109, 'https://ror.org/03nn1bn76', 'en', 1, 'https://ror.org/03nn1bn76 Associação Nacional dos Programas de Pós-graduação em Comunicação Brazilian National Association of Graduate Programs in Communication'),
(33110, 'https://ror.org/05kbqck04', 'pt', 1, 'https://ror.org/05kbqck04 Associação Aeroespacial Brasileira'),
(33111, 'https://ror.org/03bavv282', 'pt', 1, 'https://ror.org/03bavv282 Associação Brasileira de Tratamentos de Superfície'),
(33112, 'https://ror.org/05pnhe163', 'no_lang_code', 1, 'https://ror.org/05pnhe163 Biocontrol (Brazil)'),
(33113, 'https://ror.org/033n39v56', 'pt', 1, 'https://ror.org/033n39v56 Associação Brasileira para a Proteção dos Alimentos'),
(33114, 'https://ror.org/04xngad53', 'pt', 1, 'https://ror.org/04xngad53 Fundação Escola de Comércio Álvares Penteado'),
(33115, 'https://ror.org/055hsdr48', 'no_lang_code', 1, 'https://ror.org/055hsdr48 Centro de Espectrometria de Massas Aplicada (Brazil)'),
(33116, 'https://ror.org/00d066w75', 'en', 1, 'https://ror.org/00d066w75 Brazilian Internet Steering Committee Comitê Gestor da Internet no Brasil'),
(33117, 'https://ror.org/041a34162', 'no_lang_code', 1, 'https://ror.org/041a34162 Cennabras (Brazil)'),
(33118, 'https://ror.org/05egmt145', 'no_lang_code', 1, 'https://ror.org/05egmt145 Comm Solutions (Brazil)'),
(33119, 'https://ror.org/001g9gn21', 'pt', 1, 'https://ror.org/001g9gn21 Faculdade Brasil'),
(33120, 'https://ror.org/04d6hs296', 'no_lang_code', 1, 'https://ror.org/04d6hs296 Centagro (Brazil)'),
(33121, 'https://ror.org/02z5j8t37', 'no_lang_code', 1, 'https://ror.org/02z5j8t37 Dínamo Automação Industrial (Brazil)'),
(33122, 'https://ror.org/00sc9ba80', 'no_lang_code', 1, 'https://ror.org/00sc9ba80 Compsis (Brazil)'),
(33123, 'https://ror.org/01cs6sy07', 'pt', 1, 'https://ror.org/01cs6sy07 Faculdade Unida de Suzano'),
(33124, 'https://ror.org/00bzyh805', 'no_lang_code', 1, 'https://ror.org/00bzyh805 Dinamo Networks (Brazil)'),
(33125, 'https://ror.org/05pcgcp62', 'pt', 1, 'https://ror.org/05pcgcp62 Associação de Pais e Amigos dos Excepcionais de São Paulo'),
(33126, 'https://ror.org/03q150v29', 'no_lang_code', 1, 'https://ror.org/03q150v29 DirectLight (Brazil)'),
(33127, 'https://ror.org/01xdw4k60', 'pt', 1, 'https://ror.org/01xdw4k60 Centro Brasileiro de Análise e Planejamento'),
(33128, 'https://ror.org/05dn2zg08', 'no_lang_code', 1, 'https://ror.org/05dn2zg08 DLG Automation (Brazil)'),
(33129, 'https://ror.org/00bckke66', 'pt', 1, 'https://ror.org/00bckke66 Associação dos Floricultores da Região da Via Dutra'),
(33130, 'https://ror.org/00262f659', 'pt', 1, 'https://ror.org/00262f659 Associação dos Geógrafos Brasileiros'),
(33131, 'https://ror.org/05dm9f210', 'no_lang_code', 1, 'https://ror.org/05dm9f210 DMC Equipmentos (Brazil)'),
(33132, 'https://ror.org/01zsd9g12', 'pt', 1, 'https://ror.org/01zsd9g12 Centro Cerâmico do Brasil'),
(33133, 'https://ror.org/010qfrm44', 'no_lang_code', 1, 'https://ror.org/010qfrm44 Compuminer Mineração de Dados & BI (Brazil)'),
(33134, 'https://ror.org/02kbptg74', 'no_lang_code', 1, 'https://ror.org/02kbptg74 DNA Consult Genética e Biotecnologia (Brazil)'),
(33135, 'https://ror.org/05sjm5616', 'no_lang_code', 1, 'https://ror.org/05sjm5616 Dnapta Biotecnologia (Brazil)'),
(33136, 'https://ror.org/03ks3nw90', 'pt', 1, 'https://ror.org/03ks3nw90 Escola da Cidade'),
(33137, 'https://ror.org/04snbqe72', 'no_lang_code', 1, 'https://ror.org/04snbqe72 Condor Instruments (Brazil)'),
(33138, 'https://ror.org/05dffn720', 'no_lang_code', 1, 'https://ror.org/05dffn720 Centro de Genomas (Brazil)'),
(33139, 'https://ror.org/02sbrrx86', 'no_lang_code', 1, 'https://ror.org/02sbrrx86 Dod Robôs Investidores (Brazil)'),
(33140, 'https://ror.org/01adnc146', 'no_lang_code', 1, 'https://ror.org/01adnc146 CFlex (Brazil)'),
(33141, 'https://ror.org/01qnbng82', 'pt', 1, 'https://ror.org/01qnbng82 Instituto Sedes Sapientiae'),
(33142, 'https://ror.org/0351dr811', 'no_lang_code', 1, 'https://ror.org/0351dr811 DPR Engenharia (Brazil)'),
(33143, 'https://ror.org/01brz0r85', 'pt', 1, 'https://ror.org/01brz0r85 Instituto Irmãs Santa Marcelina'),
(33144, 'https://ror.org/05y867510', 'pt', 1, 'https://ror.org/05y867510 Associação Nacional de História'),
(33145, 'https://ror.org/05p3gy533', 'no_lang_code', 1, 'https://ror.org/05p3gy533 Chem4u (Brazil)'),
(33146, 'https://ror.org/05ppea990', 'no_lang_code', 1, 'https://ror.org/05ppea990 DSPGeo (Brazil)'),
(33147, 'https://ror.org/05884yn26', 'en', 1, 'https://ror.org/05884yn26 Conselho de Pesquisas em Educação e Ciências Sciences and Education Research Council'),
(33148, 'https://ror.org/027pg7t61', 'no_lang_code', 1, 'https://ror.org/027pg7t61 Chemyunion (Brazil)'),
(33149, 'https://ror.org/02t62cz46', 'pt', 1, 'https://ror.org/02t62cz46 Associação Nacional de Pesquisa e Pós-Graduação em Turismo'),
(33150, 'https://ror.org/03axr8b14', 'pt', 1, 'https://ror.org/03axr8b14 Conselho de reitores das Universidades Estaduais de São Paulo'),
(33151, 'https://ror.org/03v4s6070', 'pt', 1, 'https://ror.org/03v4s6070 Coordenadoria Geral da Universidade'),
(33152, 'https://ror.org/05drng229', 'no_lang_code', 1, 'https://ror.org/05drng229 Dýnamis Industry e Commerce (Brazil)'),
(33153, 'https://ror.org/00wctst51', 'pt', 1, 'https://ror.org/00wctst51 Associação Nacional de Pós-Graduação e Pesquisa em Ciências Sociais'),
(33154, 'https://ror.org/03bxx2v05', 'no_lang_code', 1, 'https://ror.org/03bxx2v05 CHR Cerâmica Técnica (Brazil)'),
(33155, 'https://ror.org/0392qcg83', 'no_lang_code', 1, 'https://ror.org/0392qcg83 Corollarium (Brazil)'),
(33156, 'https://ror.org/036prk722', 'pt', 1, 'https://ror.org/036prk722 Faculdade de Agudos'),
(33157, 'https://ror.org/00nm2s695', 'pt', 1, 'https://ror.org/00nm2s695 Associação Nacional de Pós-Graduação e Pesquisa em Educação'),
(33158, 'https://ror.org/00g3szh73', 'no_lang_code', 1, 'https://ror.org/00g3szh73 Ecco Fibers (Brazil) Ecco Fibras Ópticas e Dispositivos'),
(33159, 'https://ror.org/014q50n13', 'no_lang_code', 1, 'https://ror.org/014q50n13 Advance Soluções em Informática (Brazil)'),
(33160, 'https://ror.org/04b0jeh75', 'pt', 1, 'https://ror.org/04b0jeh75 Associação Nacional de Transportes Públicos'),
(33161, 'https://ror.org/00zh9em21', 'pt', 1, 'https://ror.org/00zh9em21 Centro de Estudos da Voz'),
(33162, 'https://ror.org/01ct33c94', 'no_lang_code', 1, 'https://ror.org/01ct33c94 Eccos Indústria Metalúrgica (Brazil)'),
(33163, 'https://ror.org/035y1f917', 'pt', 1, 'https://ror.org/035y1f917 Centro de Estudos do Laboratório de Aptidão Física de São Caetano do Sul'),
(33164, 'https://ror.org/04yj32x80', 'no_lang_code', 1, 'https://ror.org/04yj32x80 Coss (Brazil)'),
(33165, 'https://ror.org/02qvzqk75', 'pt', 1, 'https://ror.org/02qvzqk75 Associação Paulista para o Desenvolvimento da Medicina'),
(33166, 'https://ror.org/010twav05', 'no_lang_code', 1, 'https://ror.org/010twav05 Cientistas (Brazil)'),
(33167, 'https://ror.org/02t8k3a73', 'pt', 1, 'https://ror.org/02t8k3a73 Centro de Estudos Educação e Sociedade'),
(33168, 'https://ror.org/034fa5k55', 'no_lang_code', 1, 'https://ror.org/034fa5k55 Ecology Glass (Brazil)'),
(33169, 'https://ror.org/02j6c6694', 'no_lang_code', 1, 'https://ror.org/02j6c6694 Cotec (Brazil)'),
(33170, 'https://ror.org/03n2mgz21', 'pt', 1, 'https://ror.org/03n2mgz21 Centro de Estudos em Psicologia da Saúde'),
(33171, 'https://ror.org/05ckrxx96', 'pt', 1, 'https://ror.org/05ckrxx96 Federacao Brasileira de Associacoes de Bibliotecarios'),
(33172, 'https://ror.org/05jyyjd35', 'no_lang_code', 1, 'https://ror.org/05jyyjd35 Correias Elo (Brazil)'),
(33173, 'https://ror.org/03vwx5r63', 'no_lang_code', 1, 'https://ror.org/03vwx5r63 Cromática (Brazil)'),
(33174, 'https://ror.org/00mtbts87', 'no_lang_code', 1, 'https://ror.org/00mtbts87 ClanSoft (Brazil)'),
(33175, 'https://ror.org/04g471954', 'no_lang_code', 1, 'https://ror.org/04g471954 Ecotec Equipment and Systems (Brazil)'),
(33176, 'https://ror.org/00ej99c12', 'no_lang_code', 1, 'https://ror.org/00ej99c12 Centre for Research and Development in Telecommunications (Brazil)'),
(33177, 'https://ror.org/0067rre51', 'no_lang_code', 1, 'https://ror.org/0067rre51 EcoZON (Brazil)'),
(33178, 'https://ror.org/03m1j9m44', 'pt', 1, 'https://ror.org/03m1j9m44 Faculdade São Leopoldo Mandic'),
(33179, 'https://ror.org/01jmv0y82', 'no_lang_code', 1, 'https://ror.org/01jmv0y82 EDG Equipamentos e Controles (Brazil)'),
(33180, 'https://ror.org/052nb9d93', 'no_lang_code', 1, 'https://ror.org/052nb9d93 Cuesta (Brazil)'),
(33181, 'https://ror.org/01gmpxf32', 'no_lang_code', 1, 'https://ror.org/01gmpxf32 Clave (Brazil)'),
(33182, 'https://ror.org/003xjza53', 'no_lang_code', 1, 'https://ror.org/003xjza53 Centro de Tecnologia Canavieira Sugarcane Research Center (Brazil)'),
(33183, 'https://ror.org/03b081a48', 'no_lang_code', 1, 'https://ror.org/03b081a48 CLB Engenharia Consultiva (Brazil)'),
(33184, 'https://ror.org/01zs0qn80', 'no_lang_code', 1, 'https://ror.org/01zs0qn80 Efix (Brazil)'),
(33185, 'https://ror.org/038p3sh66', 'no_lang_code', 1, 'https://ror.org/038p3sh66 Eikonal do Brasil (Brazil)'),
(33186, 'https://ror.org/01wrmdz98', 'no_lang_code', 1, 'https://ror.org/01wrmdz98 Cyrbe (Brazil)'),
(33187, 'https://ror.org/01qhzmf23', 'no_lang_code', 1, 'https://ror.org/01qhzmf23 Ekion Tecnologia de Veículos Elétricos (Brazil)'),
(33188, 'https://ror.org/05g65s446', 'pt', 1, 'https://ror.org/05g65s446 Centro de Inovação, Empreendedorismo e Tecnologia'),
(33189, 'https://ror.org/017qbxe07', 'pt', 1, 'https://ror.org/017qbxe07 Centro Infantil Boldrini'),
(33190, 'https://ror.org/01y3dkh13', 'no_lang_code', 1, 'https://ror.org/01y3dkh13 Enalta Inovações Tecnológicas (Brazil)'),
(33191, 'https://ror.org/05gdb1895', 'no_lang_code', 1, 'https://ror.org/05gdb1895 Elabora Consultoria (Brazil)'),
(33192, 'https://ror.org/00e507q54', 'no_lang_code', 1, 'https://ror.org/00e507q54 Electric Dreams (Brazil)'),
(33193, 'https://ror.org/0048mhp79', 'no_lang_code', 1, 'https://ror.org/0048mhp79 WorleyParsons (Brazil)'),
(33194, 'https://ror.org/02c2cgf66', 'no_lang_code', 1, 'https://ror.org/02c2cgf66 Engemap (Brazil)'),
(33195, 'https://ror.org/05n0n3328', 'no_lang_code', 1, 'https://ror.org/05n0n3328 Orbisat (Brazil)'),
(33196, 'https://ror.org/00tzehs45', 'no_lang_code', 1, 'https://ror.org/00tzehs45 Cobrasper (Brazil)'),
(33197, 'https://ror.org/05rfkzk21', 'pt', 1, 'https://ror.org/05rfkzk21 Colégio Brasileiro de Cirurgiões'),
(33198, 'https://ror.org/04j9me356', 'no_lang_code', 1, 'https://ror.org/04j9me356 Engene (Brazil)'),
(33199, 'https://ror.org/04kae4d54', 'no_lang_code', 1, 'https://ror.org/04kae4d54 Farmacore (Brazil)'),
(33200, 'https://ror.org/02mm6ps96', 'no_lang_code', 1, 'https://ror.org/02mm6ps96 DeltaCO2 (Brazil)'),
(33201, 'https://ror.org/051f5za14', 'no_lang_code', 1, 'https://ror.org/051f5za14 Engimplan (Brazil)'),
(33202, 'https://ror.org/01v7axg06', 'pt', 1, 'https://ror.org/01v7axg06 Federação Brasileira de Psicodrama'),
(33203, 'https://ror.org/04rftbm22', 'en', 1, 'https://ror.org/04rftbm22 Federation of Experimental Biology Societies Federação de Sociedades de Biologia Experimental'),
(33204, 'https://ror.org/04drf3w31', 'no_lang_code', 1, 'https://ror.org/04drf3w31 Dencril (Brazil)'),
(33205, 'https://ror.org/05ggz9e14', 'no_lang_code', 1, 'https://ror.org/05ggz9e14 EQE Tecnologia (Brazil)'),
(33206, 'https://ror.org/03dwaqx98', 'no_lang_code', 1, 'https://ror.org/03dwaqx98 Femto (Brazil)'),
(33207, 'https://ror.org/047nye843', 'no_lang_code', 1, 'https://ror.org/047nye843 Colly (Brazil)'),
(33208, 'https://ror.org/02zg8vj63', 'no_lang_code', 1, 'https://ror.org/02zg8vj63 Equacional (Brazil)'),
(33209, 'https://ror.org/01zwcb774', 'no_lang_code', 1, 'https://ror.org/01zwcb774 Deoxi Biotecnologia (Brazil)'),
(33210, 'https://ror.org/029amtg39', 'no_lang_code', 1, 'https://ror.org/029amtg39 Fermavi (Brazil)'),
(33211, 'https://ror.org/0187b5307', 'no_lang_code', 1, 'https://ror.org/0187b5307 Fermentec (Brazil)'),
(33212, 'https://ror.org/007g4ze80', 'pt', 1, 'https://ror.org/007g4ze80 Departamento Intersindical de Estatística e Estudos Socioeconômicos'),
(33213, 'https://ror.org/01q86p724', 'no_lang_code', 1, 'https://ror.org/01q86p724 Flexmedia (Brazil)'),
(33214, 'https://ror.org/052b84r98', 'no_lang_code', 1, 'https://ror.org/052b84r98 FiberWork (Brazil)'),
(33215, 'https://ror.org/04vmef791', 'no_lang_code', 1, 'https://ror.org/04vmef791 Mentor Interactive (Brazil)'),
(33216, 'https://ror.org/00ehthc25', 'no_lang_code', 1, 'https://ror.org/00ehthc25 Didai Tecnologia'),
(33217, 'https://ror.org/01y5z8p89', 'en', 1, 'https://ror.org/01y5z8p89 James Cook University Singapore'),
(33218, 'https://ror.org/021k9av74', 'no_lang_code', 1, 'https://ror.org/021k9av74 DEV Tecnologia (Brazil)'),
(33219, 'https://ror.org/00aycwa77', 'no_lang_code', 1, 'https://ror.org/00aycwa77 Fibraforte (Brazil)'),
(33220, 'https://ror.org/01yk80k13', 'no_lang_code', 1, 'https://ror.org/01yk80k13 Hytron (Brazil)'),
(33221, 'https://ror.org/00c6b0p07', 'pt', 1, 'https://ror.org/00c6b0p07 Instituto Internacional de Ciencias Sociais'),
(33222, 'https://ror.org/017365f98', 'no_lang_code', 1, 'https://ror.org/017365f98 Devworks Game Technology (Brazil)'),
(33223, 'https://ror.org/01hewj013', 'no_lang_code', 1, 'https://ror.org/01hewj013 Icra Produtos Para Cerâmica (Brazil)'),
(33224, 'https://ror.org/02mvjj250', 'pt', 1, 'https://ror.org/02mvjj250 Fundação Apinco de Ciência e Tecnologia Avícolas'),
(33225, 'https://ror.org/04arg4k48', 'no_lang_code', 1, 'https://ror.org/04arg4k48 Idea Electronic Systems (Brazil) Idea Sistemas Eletrônicos'),
(33226, 'https://ror.org/040g62b80', 'pt', 1, 'https://ror.org/040g62b80 Escola Superior de Propaganda e Marketing School of Higher Education in Advertising and Marketing'),
(33227, 'https://ror.org/04atwyt60', 'pt', 1, 'https://ror.org/04atwyt60 Fundação Armando Alvares Penteado Fundação Armando Álvares Penteado'),
(33228, 'https://ror.org/03smr8g19', 'no_lang_code', 1, 'https://ror.org/03smr8g19 Thomson Reuters (Brazil)'),
(33229, 'https://ror.org/04ymxv744', 'pt', 1, 'https://ror.org/04ymxv744 Fundação Bienal de São Paulo'),
(33230, 'https://ror.org/00khmgv85', 'no_lang_code', 1, 'https://ror.org/00khmgv85 Fisioatual (Brazil)'),
(33231, 'https://ror.org/02tj71548', 'no_lang_code', 1, 'https://ror.org/02tj71548 Eudora Energia (Brazil)'),
(33232, 'https://ror.org/05b9s4832', 'no_lang_code', 1, 'https://ror.org/05b9s4832 EXA-M Instrumentação Biomédica (Brazil)'),
(33233, 'https://ror.org/03z70cs67', 'no_lang_code', 1, 'https://ror.org/03z70cs67 Imag Indústria e Comércio de Componentes Eletrônicos (Brasil)');
INSERT INTO `rors` VALUES
(33234, 'https://ror.org/02zx99z61', 'no_lang_code', 1, 'https://ror.org/02zx99z61 Excelchip (Brazil)'),
(33235, 'https://ror.org/04pdhvs51', 'no_lang_code', 1, 'https://ror.org/04pdhvs51 Expansão Científica (Brazil)'),
(33236, 'https://ror.org/04vxfxp93', 'no_lang_code', 1, 'https://ror.org/04vxfxp93 Flavor Tec (Brazil)'),
(33237, 'https://ror.org/044nfga98', 'pt', 1, 'https://ror.org/044nfga98 Centro de Tecnologia da Informação Renato Archer'),
(33238, 'https://ror.org/05jk1ds24', 'no_lang_code', 1, 'https://ror.org/05jk1ds24 Finamac (Brazil)'),
(33239, 'https://ror.org/02kzasj84', 'no_lang_code', 1, 'https://ror.org/02kzasj84 Fleximedical (Brazil)'),
(33240, 'https://ror.org/05x1p4174', 'no_lang_code', 1, 'https://ror.org/05x1p4174 Expertise Engenharia (Brazil)'),
(33241, 'https://ror.org/00y78ex22', 'no_lang_code', 1, 'https://ror.org/00y78ex22 Genoa (Brazil)'),
(33242, 'https://ror.org/01cyhds50', 'no_lang_code', 1, 'https://ror.org/01cyhds50 Eyetec Equipamentos Oftalmicos (Brazil)'),
(33243, 'https://ror.org/05mkdrw83', 'no_lang_code', 1, 'https://ror.org/05mkdrw83 Flyever (Brazil)'),
(33244, 'https://ror.org/01s2r6v67', 'no_lang_code', 1, 'https://ror.org/01s2r6v67 Genotyping BPI (Brazil)'),
(33245, 'https://ror.org/002kxw589', 'no_lang_code', 1, 'https://ror.org/002kxw589 Gentros (Brazil)'),
(33246, 'https://ror.org/00dn9yd16', 'no_lang_code', 1, 'https://ror.org/00dn9yd16 Fmaiis (Brazil)'),
(33247, 'https://ror.org/00rs0x560', 'pt', 1, 'https://ror.org/00rs0x560 Fundação de Estudos Agrários Luiz de Queiroz'),
(33248, 'https://ror.org/042tpyj36', 'no_lang_code', 1, 'https://ror.org/042tpyj36 Formatto (Brazil)'),
(33249, 'https://ror.org/0207qan07', 'no_lang_code', 1, 'https://ror.org/0207qan07 Geoambiente (Brazil)'),
(33250, 'https://ror.org/0271rqt72', 'pt', 1, 'https://ror.org/0271rqt72 Fundação de Rotarianos de São Paulo'),
(33251, 'https://ror.org/00jvapg71', 'no_lang_code', 1, 'https://ror.org/00jvapg71 Incon Eletrônica (Brazil)'),
(33252, 'https://ror.org/0476s4736', 'no_lang_code', 1, 'https://ror.org/0476s4736 Fortelab (Brazil)'),
(33253, 'https://ror.org/00cw5w418', 'no_lang_code', 1, 'https://ror.org/00cw5w418 Eletro Máquinas Comércio e Representações (Brazil)'),
(33254, 'https://ror.org/02ezmc341', 'pt', 1, 'https://ror.org/02ezmc341 Forum Brasileiro de Segurança Pública'),
(33255, 'https://ror.org/03yg95m91', 'no_lang_code', 1, 'https://ror.org/03yg95m91 Royal Fish (Brazil)'),
(33256, 'https://ror.org/00z8qyj05', 'pt', 1, 'https://ror.org/00z8qyj05 Fundação Educacional de Ituverava'),
(33257, 'https://ror.org/04zcpm936', 'pt', 1, 'https://ror.org/04zcpm936 Faculdade de Mococa'),
(33258, 'https://ror.org/01mgp9933', 'no_lang_code', 1, 'https://ror.org/01mgp9933 Fotonica (Brazil)'),
(33259, 'https://ror.org/037zm3n13', 'no_lang_code', 1, 'https://ror.org/037zm3n13 Fosbrasil (Brazil)'),
(33260, 'https://ror.org/04vbcaz46', 'no_lang_code', 1, 'https://ror.org/04vbcaz46 Indústria Brasileira de Máquinas e Equipamentos (Brazil)'),
(33261, 'https://ror.org/04b90kd02', 'no_lang_code', 1, 'https://ror.org/04b90kd02 Fultec Inox (Brazil)'),
(33262, 'https://ror.org/03mhtag13', 'pt', 1, 'https://ror.org/03mhtag13 Fundação Faculdade de Medicina'),
(33263, 'https://ror.org/05tk8yc63', 'no_lang_code', 1, 'https://ror.org/05tk8yc63 Geodados (Brazil)'),
(33264, 'https://ror.org/05891dg79', 'pt', 1, 'https://ror.org/05891dg79 Fundação André Tosello'),
(33265, 'https://ror.org/05c6jzf22', 'pt', 1, 'https://ror.org/05c6jzf22 Faculdades Integradas de São Paulo'),
(33266, 'https://ror.org/00ngrh496', 'en', 1, 'https://ror.org/00ngrh496 Fundação Instituto de Pesquisas Econômicas Institute of Economic Research Foundation'),
(33267, 'https://ror.org/051wkpd79', 'pt', 1, 'https://ror.org/051wkpd79 Faculdades Integradas Teresa D''Ávila'),
(33268, 'https://ror.org/05g2wkx97', 'no_lang_code', 1, 'https://ror.org/05g2wkx97 JG Moriya (Brazil)'),
(33269, 'https://ror.org/010h1w694', 'no_lang_code', 1, 'https://ror.org/010h1w694 Innovatech (Brazil)'),
(33270, 'https://ror.org/025jcmr63', 'no_lang_code', 1, 'https://ror.org/025jcmr63 Clorovale Diamantes (Brazil)'),
(33271, 'https://ror.org/04vd6m647', 'no_lang_code', 1, 'https://ror.org/04vd6m647 Geotecno (Brazil)'),
(33272, 'https://ror.org/00936hn50', 'no_lang_code', 1, 'https://ror.org/00936hn50 Gepco (Brazil)'),
(33273, 'https://ror.org/02jzh4f23', 'no_lang_code', 1, 'https://ror.org/02jzh4f23 Innovatech Telecom (Brazil)'),
(33274, 'https://ror.org/05tyger85', 'en', 1, 'https://ror.org/05tyger85 Instituto de Estudos do Comércio e Negociações Internacionais lnstitute for lnternational Trade Negotiations'),
(33275, 'https://ror.org/01evj3822', 'no_lang_code', 1, 'https://ror.org/01evj3822 Jotaeme Fitafer (Brazil)'),
(33276, 'https://ror.org/04dqh1705', 'no_lang_code', 1, 'https://ror.org/04dqh1705 Kayros Ambiental e Agrícola (Brazil)'),
(33277, 'https://ror.org/00qbw4596', 'pt', 1, 'https://ror.org/00qbw4596 Instituto de Neurociências e Comportamento'),
(33278, 'https://ror.org/01zevds37', 'no_lang_code', 1, 'https://ror.org/01zevds37 Germinal (Brazil)'),
(33279, 'https://ror.org/00mb5m706', 'no_lang_code', 1, 'https://ror.org/00mb5m706 Inovamat (Brazil)'),
(33280, 'https://ror.org/044wyhr42', 'no_lang_code', 1, 'https://ror.org/044wyhr42 Kehl (Brazil)'),
(33281, 'https://ror.org/047rnn627', 'pt', 1, 'https://ror.org/047rnn627 Fundação Otorrinolaringologia'),
(33282, 'https://ror.org/02cnnsp10', 'en', 1, 'https://ror.org/02cnnsp10 Forest Science and Research Institute Instituto de Pesquisas e Estudos Florestais'),
(33283, 'https://ror.org/05g99rf11', 'no_lang_code', 1, 'https://ror.org/05g99rf11 Kidopi (Brazil)'),
(33284, 'https://ror.org/05jey0e23', 'pt', 1, 'https://ror.org/05jey0e23 Fundação Padre Albino'),
(33285, 'https://ror.org/044dz3b65', 'pt', 1, 'https://ror.org/044dz3b65 Instituto de Psicologia Comportamental de São Carlos'),
(33286, 'https://ror.org/040bhbn44', 'no_lang_code', 1, 'https://ror.org/040bhbn44 Klais Soluções Consultoria e Desenvolvimento (Brazil)'),
(33287, 'https://ror.org/051mhmc69', 'en', 1, 'https://ror.org/051mhmc69 Fernand Braudel Institute of World Economics Instituto Fernand Braudel de Economia Mundial'),
(33288, 'https://ror.org/05ppk5d39', 'no_lang_code', 1, 'https://ror.org/05ppk5d39 Gisplan (Brazil)'),
(33289, 'https://ror.org/01e7p2b30', 'pt', 1, 'https://ror.org/01e7p2b30 Instituto Histórico e Geográfico de São Paulo'),
(33290, 'https://ror.org/03k18wv31', 'no_lang_code', 1, 'https://ror.org/03k18wv31 Instituto Internacional de Ecologia (Brazil)'),
(33291, 'https://ror.org/01kr7ch79', 'no_lang_code', 1, 'https://ror.org/01kr7ch79 Knowledge Networks & Business Solutions (Brazil)'),
(33292, 'https://ror.org/04rf11p79', 'no_lang_code', 1, 'https://ror.org/04rf11p79 Global Pet (Brazil)'),
(33293, 'https://ror.org/002205j24', 'no_lang_code', 1, 'https://ror.org/002205j24 GlobalMag (Brazil)'),
(33294, 'https://ror.org/01vjmbb44', 'no_lang_code', 1, 'https://ror.org/01vjmbb44 Insolita Studios (Brazil)'),
(33295, 'https://ror.org/00w4knw64', 'pt', 1, 'https://ror.org/00w4knw64 Fundação Faculdade de Odontologia'),
(33296, 'https://ror.org/03cw78f47', 'en', 1, 'https://ror.org/03cw78f47 Instituto Latino Americano da Sepse Latin American Sepsis Institute'),
(33297, 'https://ror.org/023s53v33', 'no_lang_code', 1, 'https://ror.org/023s53v33 Invel (Brazil)'),
(33298, 'https://ror.org/0419dzy74', 'pt', 1, 'https://ror.org/0419dzy74 Instituto Lina Bo e P.M. Bardi'),
(33299, 'https://ror.org/000dj4022', 'pt', 1, 'https://ror.org/000dj4022 Fundação para o Desenvolvimento Médico e Hospitalar'),
(33300, 'https://ror.org/02pewm513', 'pt', 1, 'https://ror.org/02pewm513 Instituto Paulista de Ensino e Pesquisa'),
(33301, 'https://ror.org/056hxdb03', 'no_lang_code', 1, 'https://ror.org/056hxdb03 Griaule Biometrics (Brazil)'),
(33302, 'https://ror.org/033pzck63', 'no_lang_code', 1, 'https://ror.org/033pzck63 Koppert (Brazil)'),
(33303, 'https://ror.org/02t8t0f85', 'no_lang_code', 1, 'https://ror.org/02t8t0f85 DWG Arquitetura e Sistemas (Brazil)'),
(33304, 'https://ror.org/01ewyge67', 'pt', 1, 'https://ror.org/01ewyge67 Instituto Paulo Freire'),
(33305, 'https://ror.org/018w84g35', 'pt', 1, 'https://ror.org/018w84g35 Instituto Barretos de Tecnologia'),
(33306, 'https://ror.org/0119f6n25', 'pt', 1, 'https://ror.org/0119f6n25 Fundação Energia e Saneamento'),
(33307, 'https://ror.org/04vdftk11', 'no_lang_code', 1, 'https://ror.org/04vdftk11 Gtac Solutions (Brazil)'),
(33308, 'https://ror.org/046ntxd30', 'no_lang_code', 1, 'https://ror.org/046ntxd30 Korth Rfid (Brazil)'),
(33309, 'https://ror.org/00f4pfk27', 'pt', 1, 'https://ror.org/00f4pfk27 Instituto Penido Burnier'),
(33310, 'https://ror.org/045pt3n52', 'no_lang_code', 1, 'https://ror.org/045pt3n52 Guatifer Usinagem e Ferramentaria (Brazil)'),
(33311, 'https://ror.org/04skrd412', 'pt', 1, 'https://ror.org/04skrd412 Fundação Paulista de Tecnologia e Educação'),
(33312, 'https://ror.org/04a4nak07', 'pt', 1, 'https://ror.org/04a4nak07 Instituto Polis'),
(33313, 'https://ror.org/00vjwj043', 'no_lang_code', 1, 'https://ror.org/00vjwj043 Kroma Equipamentos Especiais (Brazil)'),
(33314, 'https://ror.org/02nbj1d88', 'pt', 1, 'https://ror.org/02nbj1d88 Fórum de Entidades Nacionais da Psicologia Brasileira'),
(33315, 'https://ror.org/052bnfg64', 'no_lang_code', 1, 'https://ror.org/052bnfg64 Kryptus (Brazil)'),
(33316, 'https://ror.org/04sapp259', 'no_lang_code', 1, 'https://ror.org/04sapp259 Labcom Sistemas (Brazil)'),
(33317, 'https://ror.org/058kgj085', 'no_lang_code', 1, 'https://ror.org/058kgj085 Hexalab (Brazil)'),
(33318, 'https://ror.org/02yj38452', 'no_lang_code', 1, 'https://ror.org/02yj38452 Intecmat (Brazil)'),
(33319, 'https://ror.org/00acxsg16', 'no_lang_code', 1, 'https://ror.org/00acxsg16 Herbicat (Brazil)'),
(33320, 'https://ror.org/05c6qc887', 'no_lang_code', 1, 'https://ror.org/05c6qc887 Gyrofly (Brazil)'),
(33321, 'https://ror.org/0104fhy48', 'no_lang_code', 1, 'https://ror.org/0104fhy48 Inter-Metro (Brazil)'),
(33322, 'https://ror.org/037nj1h98', 'en', 1, 'https://ror.org/037nj1h98 Labmass Laboratory'),
(33323, 'https://ror.org/02k5vwz61', 'pt', 1, 'https://ror.org/02k5vwz61 Abutua Tecnologia'),
(33324, 'https://ror.org/00km5bz41', 'no_lang_code', 1, 'https://ror.org/00km5bz41 Casablanca (Brazil)'),
(33325, 'https://ror.org/04dj9qm44', 'pt', 1, 'https://ror.org/04dj9qm44 Laboratório Biosintesis P&D'),
(33326, 'https://ror.org/03x053h94', 'en', 1, 'https://ror.org/03x053h94 Brazilian Institute of Neuropsychology and Behaviour Instituto Brasileiro de Neuropsicologia e Comportamento'),
(33327, 'https://ror.org/037c3sd41', 'pt', 1, 'https://ror.org/037c3sd41 Fondazione Università Vita Cristiana Fundação Universitária Vida Cristã'),
(33328, 'https://ror.org/052k3m749', 'no_lang_code', 1, 'https://ror.org/052k3m749 Invenire Internacional Informática (Brazil)'),
(33329, 'https://ror.org/003c2h870', 'pt', 1, 'https://ror.org/003c2h870 Fundação Zerbini'),
(33330, 'https://ror.org/03t6b8n75', 'no_lang_code', 1, 'https://ror.org/03t6b8n75 Institute of Integrated Clinical Research (Brazil) Instituto de Pesquisa Clínica Integrada Ltda'),
(33331, 'https://ror.org/00wp8rt14', 'en', 1, 'https://ror.org/00wp8rt14 Association of the Technological Integrated Systems Laboratory Laboratório de Sistemas Integráveis Tecnológico'),
(33332, 'https://ror.org/02x57pk47', 'no_lang_code', 1, 'https://ror.org/02x57pk47 Incontrol (Brazil)'),
(33333, 'https://ror.org/04dhpvj28', 'no_lang_code', 1, 'https://ror.org/04dhpvj28 Líbera Tecnologia e Inovação (Brazil)'),
(33334, 'https://ror.org/04pr9yn16', 'no_lang_code', 1, 'https://ror.org/04pr9yn16 Metrolab Calibrações (Brazil)'),
(33335, 'https://ror.org/02kepmn21', 'no_lang_code', 1, 'https://ror.org/02kepmn21 Quimlab (Brazil)'),
(33336, 'https://ror.org/0112jt408', 'no_lang_code', 1, 'https://ror.org/0112jt408 Ipel - Itibanyl Produtos Especiais (Brazil)'),
(33337, 'https://ror.org/05rmqc942', 'no_lang_code', 1, 'https://ror.org/05rmqc942 Ipsos (Brazil)'),
(33338, 'https://ror.org/027dbtv13', 'no_lang_code', 1, 'https://ror.org/027dbtv13 Mextra (Brazil)'),
(33339, 'https://ror.org/05hkbb047', 'no_lang_code', 1, 'https://ror.org/05hkbb047 Inselli Engenharia e Ciência Aplicada (Brazil)'),
(33340, 'https://ror.org/04w6cnp87', 'no_lang_code', 1, 'https://ror.org/04w6cnp87 LaserTools Tecnologia (Brazil)'),
(33341, 'https://ror.org/00afava75', 'no_lang_code', 1, 'https://ror.org/00afava75 IQX-Inove Qualyx (Brazil)'),
(33342, 'https://ror.org/00a0d6g98', 'no_lang_code', 1, 'https://ror.org/00a0d6g98 Mhnano (Brazil)'),
(33343, 'https://ror.org/045k8ds88', 'no_lang_code', 1, 'https://ror.org/045k8ds88 Multi Vegetal Fitocosméticos (Brazil)'),
(33344, 'https://ror.org/008nqpv19', 'pt', 1, 'https://ror.org/008nqpv19 Santa Casa da Misericórdia de Bragança Paulista'),
(33345, 'https://ror.org/007pk1x33', 'no_lang_code', 1, 'https://ror.org/007pk1x33 Lifemed (Brazil)'),
(33346, 'https://ror.org/018tgms75', 'no_lang_code', 1, 'https://ror.org/018tgms75 Microdesign Informatica Tecnologia Industria e Comerico (Brazil)'),
(33347, 'https://ror.org/022cem317', 'no_lang_code', 1, 'https://ror.org/022cem317 Multicorpos Engenharia (Brazil)'),
(33348, 'https://ror.org/03qw5kx45', 'pt', 1, 'https://ror.org/03qw5kx45 Santa Casa de Misericórdia de São Carlos'),
(33349, 'https://ror.org/0316khr05', 'no_lang_code', 1, 'https://ror.org/0316khr05 OmniTek (Brazil)'),
(33350, 'https://ror.org/004rmpj87', 'no_lang_code', 1, 'https://ror.org/004rmpj87 Light Tech (Brazil)'),
(33351, 'https://ror.org/055y2wa71', 'no_lang_code', 1, 'https://ror.org/055y2wa71 Limpgas Tecnologia (Brazil)'),
(33352, 'https://ror.org/04er4p734', 'no_lang_code', 1, 'https://ror.org/04er4p734 Itabras Mineração (Brazil)'),
(33353, 'https://ror.org/040dnmx71', 'en', 1, 'https://ror.org/040dnmx71 Museu de Arte de São Paulo São Paulo Museum of Art'),
(33354, 'https://ror.org/01435bw87', 'no_lang_code', 1, 'https://ror.org/01435bw87 Itatex (Brazil)'),
(33355, 'https://ror.org/00p1y4e96', 'no_lang_code', 1, 'https://ror.org/00p1y4e96 Itera - Inovação e Desenvolvimento Tecnológico (Brazil)'),
(33356, 'https://ror.org/0510w1f89', 'no_lang_code', 1, 'https://ror.org/0510w1f89 Eletrovento (Brazil)'),
(33357, 'https://ror.org/05q72ar94', 'no_lang_code', 1, 'https://ror.org/05q72ar94 Mwa Automação (Brazil)'),
(33358, 'https://ror.org/000d6be88', 'no_lang_code', 1, 'https://ror.org/000d6be88 Linax (Brazil)'),
(33359, 'https://ror.org/03f8dte96', 'no_lang_code', 1, 'https://ror.org/03f8dte96 Onion Tecnologia (Brazil)'),
(33360, 'https://ror.org/0198yxk45', 'no_lang_code', 1, 'https://ror.org/0198yxk45 LinkGen (Brazil)'),
(33361, 'https://ror.org/01x1p1c14', 'no_lang_code', 1, 'https://ror.org/01x1p1c14 Ophthalmos (Brazil)'),
(33362, 'https://ror.org/04196w034', 'en', 1, 'https://ror.org/04196w034 Ministry of Culture Ministério da Cultura'),
(33363, 'https://ror.org/03st26d34', 'no_lang_code', 1, 'https://ror.org/03st26d34 Opto Eletrônica (Brazil)'),
(33364, 'https://ror.org/03ypdxy52', 'no_lang_code', 1, 'https://ror.org/03ypdxy52 OptoLink (Brazil)'),
(33365, 'https://ror.org/05y89d612', 'no_lang_code', 1, 'https://ror.org/05y89d612 Logtrac (Brazil)'),
(33366, 'https://ror.org/04avbbr42', 'no_lang_code', 1, 'https://ror.org/04avbbr42 Nanobionics (Brazil)'),
(33367, 'https://ror.org/04yzwsd04', 'no_lang_code', 1, 'https://ror.org/04yzwsd04 Lucotec (Brazil)'),
(33368, 'https://ror.org/005x6cs54', 'no_lang_code', 1, 'https://ror.org/005x6cs54 Nanocore (Brazil)'),
(33369, 'https://ror.org/04gjng233', 'no_lang_code', 1, 'https://ror.org/04gjng233 Nanofitotec (Brazil)'),
(33370, 'https://ror.org/05vj1ve49', 'no_lang_code', 1, 'https://ror.org/05vj1ve49 Luxtec (Brazil)'),
(33371, 'https://ror.org/00cm1b035', 'no_lang_code', 1, 'https://ror.org/00cm1b035 Prombiom Tecnologia (Brazil)'),
(33372, 'https://ror.org/018jj2831', 'no_lang_code', 1, 'https://ror.org/018jj2831 Nanomed (Brazil)'),
(33373, 'https://ror.org/028xyhs09', 'pt', 1, 'https://ror.org/028xyhs09 Processos - Soluções de Engenharia (Brazil)'),
(33374, 'https://ror.org/03n3hc844', 'no_lang_code', 1, 'https://ror.org/03n3hc844 Safran (Brazil)'),
(33375, 'https://ror.org/021frtx57', 'no_lang_code', 1, 'https://ror.org/021frtx57 Lychnoflora (Brazil)'),
(33376, 'https://ror.org/05ynfxz71', 'no_lang_code', 1, 'https://ror.org/05ynfxz71 Nanophoton (Brazil)'),
(33377, 'https://ror.org/02yxa8882', 'no_lang_code', 1, 'https://ror.org/02yxa8882 Optron Micromecânica Óptica (Brazil)'),
(33378, 'https://ror.org/03cqb5x54', 'no_lang_code', 1, 'https://ror.org/03cqb5x54 Rotogine (Brazil)'),
(33379, 'https://ror.org/029s65f92', 'en', 1, 'https://ror.org/029s65f92 Ministry of Communications Ministério das Comunicações'),
(33380, 'https://ror.org/01w8a9z74', 'no_lang_code', 1, 'https://ror.org/01w8a9z74 Nanox (Brazil)'),
(33381, 'https://ror.org/04qnpyg73', 'pt', 1, 'https://ror.org/04qnpyg73 Ministry of Development, Industry and Foreign Trade Ministério do Desenvolvimento, Indústria e Comércio Exterior'),
(33382, 'https://ror.org/02w5cw191', 'no_lang_code', 1, 'https://ror.org/02w5cw191 KOM Lux Fibras Ópticas (Brazil)'),
(33383, 'https://ror.org/005jwm150', 'no_lang_code', 1, 'https://ror.org/005jwm150 Grupo Guaçu (Brazil)'),
(33384, 'https://ror.org/01v46ba07', 'no_lang_code', 1, 'https://ror.org/01v46ba07 Madeplas (Brazil)'),
(33385, 'https://ror.org/039s5aa86', 'no_lang_code', 1, 'https://ror.org/039s5aa86 Optsensys (Brazil)'),
(33386, 'https://ror.org/017hmpr31', 'no_lang_code', 1, 'https://ror.org/017hmpr31 Narcissus Pesquisa Clínica e Biotecnologia (Brazil)'),
(33387, 'https://ror.org/04s6c8c61', 'no_lang_code', 1, 'https://ror.org/04s6c8c61 Promip (Brazil)'),
(33388, 'https://ror.org/04s8a3621', 'no_lang_code', 1, 'https://ror.org/04s8a3621 Magnamed (Brazil)'),
(33389, 'https://ror.org/0001mcx38', 'no_lang_code', 1, 'https://ror.org/0001mcx38 Opusphere (Brazil)'),
(33390, 'https://ror.org/00bkc1729', 'en', 1, 'https://ror.org/00bkc1729 Ministry of Planning, Budget and Management Ministério do Planejamento, Orçamento, e Gestão'),
(33391, 'https://ror.org/0413f6k16', 'en', 1, 'https://ror.org/0413f6k16 Ministry of Labor and Employment Ministério do Trabalho e Emprego'),
(33392, 'https://ror.org/002w0zt72', 'no_lang_code', 1, 'https://ror.org/002w0zt72 Oralls (Brazil)'),
(33393, 'https://ror.org/050psgz02', 'no_lang_code', 1, 'https://ror.org/050psgz02 Misque (Brazil)'),
(33394, 'https://ror.org/04watzy58', 'no_lang_code', 1, 'https://ror.org/04watzy58 IT&D Informação Tecnologia e Desenvolvimento (Brazil)'),
(33395, 'https://ror.org/01dx1gy36', 'no_lang_code', 1, 'https://ror.org/01dx1gy36 MMOptics (Brazil)'),
(33396, 'https://ror.org/02rxkjh73', 'no_lang_code', 1, 'https://ror.org/02rxkjh73 Natural Products & Technologies (Brazil)'),
(33397, 'https://ror.org/026kbck74', 'no_lang_code', 1, 'https://ror.org/026kbck74 Proeletronic (Brazil)'),
(33398, 'https://ror.org/05sf2j279', 'no_lang_code', 1, 'https://ror.org/05sf2j279 Proteimax (Brazil)'),
(33399, 'https://ror.org/04x626p25', 'no_lang_code', 1, 'https://ror.org/04x626p25 Navita (Brazil)'),
(33400, 'https://ror.org/04zvzt585', 'no_lang_code', 1, 'https://ror.org/04zvzt585 Proteobrás (Brazil)'),
(33401, 'https://ror.org/048pv7j43', 'no_lang_code', 1, 'https://ror.org/048pv7j43 BMT Group (Brazil)'),
(33402, 'https://ror.org/04myjbb93', 'no_lang_code', 1, 'https://ror.org/04myjbb93 Organia (Brazil)'),
(33403, 'https://ror.org/05xnphh52', 'no_lang_code', 1, 'https://ror.org/05xnphh52 PV Prest Vácuo (Brazil)'),
(33404, 'https://ror.org/05b2zm953', 'no_lang_code', 1, 'https://ror.org/05b2zm953 Pullup (Brazil)'),
(33405, 'https://ror.org/03pephy40', 'pt', 1, 'https://ror.org/03pephy40 Mosteiro de São Bento São Bento Monastery'),
(33406, 'https://ror.org/02c52d726', 'no_lang_code', 1, 'https://ror.org/02c52d726 Netvmi (Brazil)'),
(33407, 'https://ror.org/01a66pc38', 'no_lang_code', 1, 'https://ror.org/01a66pc38 MRA Indústria de Equipamentos Eletrônicos (Brazil)'),
(33408, 'https://ror.org/03526fm87', 'no_lang_code', 1, 'https://ror.org/03526fm87 MRE Soluções (Brazil)'),
(33409, 'https://ror.org/03znsa629', 'no_lang_code', 1, 'https://ror.org/03znsa629 Neuron Eletrônica (Brazil)'),
(33410, 'https://ror.org/02jm9xx29', 'no_lang_code', 1, 'https://ror.org/02jm9xx29 Medecell (Brazil)'),
(33411, 'https://ror.org/010tvwd33', 'no_lang_code', 1, 'https://ror.org/010tvwd33 Rcasoft Informática (Brazil)'),
(33412, 'https://ror.org/00z78kg48', 'no_lang_code', 1, 'https://ror.org/00z78kg48 Partecurae Analysis (Brazil)'),
(33413, 'https://ror.org/01g1j0r83', 'no_lang_code', 1, 'https://ror.org/01g1j0r83 LojaFácil (Brazil)'),
(33414, 'https://ror.org/03qv32r22', 'no_lang_code', 1, 'https://ror.org/03qv32r22 RC Construções (Brazil)'),
(33415, 'https://ror.org/034nkgy63', 'no_lang_code', 1, 'https://ror.org/034nkgy63 Nexus (Brazil)'),
(33416, 'https://ror.org/00vd2t792', 'no_lang_code', 1, 'https://ror.org/00vd2t792 R4F Tecnologia (Brazil)'),
(33417, 'https://ror.org/0302jrc12', 'no_lang_code', 1, 'https://ror.org/0302jrc12 Meier & Giacaglia Medidores (Brazil)'),
(33418, 'https://ror.org/01rzns588', 'no_lang_code', 1, 'https://ror.org/01rzns588 Racetronix (Brazil)'),
(33419, 'https://ror.org/05ndg7m38', 'no_lang_code', 1, 'https://ror.org/05ndg7m38 Piacentini (Brazil)'),
(33420, 'https://ror.org/01adsn089', 'no_lang_code', 1, 'https://ror.org/01adsn089 Metaltech Sorocaba Equipamentos e Serviços (Brazil)'),
(33421, 'https://ror.org/04bxk0j07', 'no_lang_code', 1, 'https://ror.org/04bxk0j07 Núcleo de Pesquisas Aplicadas (Brazil)'),
(33422, 'https://ror.org/03mp7t709', 'no_lang_code', 1, 'https://ror.org/03mp7t709 Vitrogen (Brazil)'),
(33423, 'https://ror.org/04evkdk49', 'no_lang_code', 1, 'https://ror.org/04evkdk49 MEMS (Brazil)'),
(33424, 'https://ror.org/01cjxj157', 'no_lang_code', 1, 'https://ror.org/01cjxj157 Mestre Dos Mares (Brazil)'),
(33425, 'https://ror.org/00za2ev77', 'no_lang_code', 1, 'https://ror.org/00za2ev77 Reciclapac (Brazil)'),
(33426, 'https://ror.org/04fjgxw20', 'pt', 1, 'https://ror.org/04fjgxw20 Núcleo Paradigma'),
(33427, 'https://ror.org/04e25k642', 'no_lang_code', 1, 'https://ror.org/04e25k642 Metal Plasma (Brazil)'),
(33428, 'https://ror.org/00vk4de58', 'no_lang_code', 1, 'https://ror.org/00vk4de58 Red, Orange and Green Environmental Technologies (Brazil)'),
(33429, 'https://ror.org/01j5rbx63', 'no_lang_code', 1, 'https://ror.org/01j5rbx63 Metalex (Brazil)'),
(33430, 'https://ror.org/05cs9ej55', 'no_lang_code', 1, 'https://ror.org/05cs9ej55 Redealumni (Brazil)'),
(33431, 'https://ror.org/05dbrz220', 'no_lang_code', 1, 'https://ror.org/05dbrz220 Reade (Brazil)'),
(33432, 'https://ror.org/03sss6f31', 'no_lang_code', 1, 'https://ror.org/03sss6f31 Thales (Brazil)'),
(33433, 'https://ror.org/03td46k39', 'no_lang_code', 1, 'https://ror.org/03td46k39 Refazenda (Brazil)'),
(33434, 'https://ror.org/03fwdp923', 'no_lang_code', 1, 'https://ror.org/03fwdp923 ReaQuim (Brazil)'),
(33435, 'https://ror.org/03803zg51', 'no_lang_code', 1, 'https://ror.org/03803zg51 Biopcycle (Brazil)'),
(33436, 'https://ror.org/038wvk427', 'pt', 1, 'https://ror.org/038wvk427 Secretaria Municipal de Desenvolvimento Econômico e Negócios de Turismo'),
(33437, 'https://ror.org/042zefm29', 'no_lang_code', 1, 'https://ror.org/042zefm29 Pedra Agroindustrial (Brazil)'),
(33438, 'https://ror.org/01y0nwc34', 'no_lang_code', 1, 'https://ror.org/01y0nwc34 Odysci (Brazil)'),
(33439, 'https://ror.org/02rtvpy35', 'no_lang_code', 1, 'https://ror.org/02rtvpy35 Recaltech (Brazil)'),
(33440, 'https://ror.org/00jc39915', 'no_lang_code', 1, 'https://ror.org/00jc39915 Revolugenix (Brazil)'),
(33441, 'https://ror.org/02rwqk393', 'no_lang_code', 1, 'https://ror.org/02rwqk393 Siporex (Brazil)'),
(33442, 'https://ror.org/017aqqw29', 'en', 1, 'https://ror.org/017aqqw29 Brazilian Society for the Advancement of Science Sociedade Brasileira para o Progresso da Ciência'),
(33443, 'https://ror.org/0117bm254', 'no_lang_code', 1, 'https://ror.org/0117bm254 Rfideas (Brazil)'),
(33444, 'https://ror.org/05f24d398', 'no_lang_code', 1, 'https://ror.org/05f24d398 SF International (Brazil)'),
(33445, 'https://ror.org/05nrp6689', 'pt', 1, 'https://ror.org/05nrp6689 Secretaria de Desenvolvimento Econômico e Turístico'),
(33446, 'https://ror.org/0498n0s19', 'no_lang_code', 1, 'https://ror.org/0498n0s19 SMA Tecnologia (Brazil)'),
(33447, 'https://ror.org/02dm2w078', 'no_lang_code', 1, 'https://ror.org/02dm2w078 Brvant (Brazil)'),
(33448, 'https://ror.org/03dcjha26', 'no_lang_code', 1, 'https://ror.org/03dcjha26 Macrolog (Brazil)'),
(33449, 'https://ror.org/000q6bw04', 'no_lang_code', 1, 'https://ror.org/000q6bw04 SmartBio Tecnologia (Brazil)'),
(33450, 'https://ror.org/04jvq3152', 'pt', 1, 'https://ror.org/04jvq3152 Sociedade Brasileira de Medicina Nuclear e Imagem Molecular'),
(33451, 'https://ror.org/00xj09k15', 'pt', 1, 'https://ror.org/00xj09k15 Secretaria Municipal do Desenvolvimento Econômico e Turismo'),
(33452, 'https://ror.org/034qc6c88', 'no_lang_code', 1, 'https://ror.org/034qc6c88 RMF Consultoria (Brazil)'),
(33453, 'https://ror.org/04s85wv17', 'pt', 1, 'https://ror.org/04s85wv17 Sociedade de Usuários de Computadores e Equipamentos Subsidiários Sucesu Nacional'),
(33454, 'https://ror.org/01am5a204', 'en', 1, 'https://ror.org/01am5a204 Sobramfa – Medical Education and Humanism'),
(33455, 'https://ror.org/00fsyr319', 'pt', 1, 'https://ror.org/00fsyr319 Pia Sociedade de São Paulo'),
(33456, 'https://ror.org/001nyte24', 'no_lang_code', 1, 'https://ror.org/001nyte24 Gerenciamento Tecnologia e Sistemas (Brazil)'),
(33457, 'https://ror.org/05r24hk86', 'pt', 1, 'https://ror.org/05r24hk86 Sociedade Brasileira de Psicologia Hospitalar (Brazil)'),
(33458, 'https://ror.org/02jje0527', 'no_lang_code', 1, 'https://ror.org/02jje0527 Rotar (Brazil)'),
(33459, 'https://ror.org/05vpztv21', 'no_lang_code', 1, 'https://ror.org/05vpztv21 Plantech (Brazil)'),
(33460, 'https://ror.org/04a6scr36', 'pt', 1, 'https://ror.org/04a6scr36 Sociedade de Nefrologia do Estado de São Paulo'),
(33461, 'https://ror.org/056m9b429', 'pt', 1, 'https://ror.org/056m9b429 Sociedade Astronômica Brasileira'),
(33462, 'https://ror.org/03ymdwd91', 'no_lang_code', 1, 'https://ror.org/03ymdwd91 Sollis (Brazil)'),
(33463, 'https://ror.org/03v3vkp27', 'no_lang_code', 1, 'https://ror.org/03v3vkp27 Plasma liits (Brazil)'),
(33464, 'https://ror.org/03hw2sw66', 'en', 1, 'https://ror.org/03hw2sw66 Sociedade de Botânica de São Paulo São Paulo Botanical Society'),
(33465, 'https://ror.org/01mj88p41', 'no_lang_code', 1, 'https://ror.org/01mj88p41 Solstício Energia (Brazil)'),
(33466, 'https://ror.org/01ams7d26', 'pt', 1, 'https://ror.org/01ams7d26 Sociedade Brasileira de Alimentação e Nutrição'),
(33467, 'https://ror.org/01za4wm85', 'pt', 1, 'https://ror.org/01za4wm85 Solução Ambiental Assessoria e Consultoria'),
(33468, 'https://ror.org/036mc2b83', 'no_lang_code', 1, 'https://ror.org/036mc2b83 Mvisia (Brazil)'),
(33469, 'https://ror.org/024fetb28', 'no_lang_code', 1, 'https://ror.org/024fetb28 Salt Sea & Limno Technology'),
(33470, 'https://ror.org/00xdpd607', 'en', 1, 'https://ror.org/00xdpd607 Brazilian Society of Nuclear Biosciences Sociedade Brasileira de Biociências Nucleares'),
(33471, 'https://ror.org/03bsbwd57', 'pt', 1, 'https://ror.org/03bsbwd57 Sociedade Brasileira de Biologia Celular'),
(33472, 'https://ror.org/0236gc710', 'no_lang_code', 1, 'https://ror.org/0236gc710 SPPT Pesquisas Tecnológicas (Brazil)'),
(33473, 'https://ror.org/01gjrpr51', 'no_lang_code', 1, 'https://ror.org/01gjrpr51 Salus Group (Brazil)'),
(33474, 'https://ror.org/01pdwrw82', 'pt', 1, 'https://ror.org/01pdwrw82 Secretaria de Gestão Pública'),
(33475, 'https://ror.org/02smgwb83', 'no_lang_code', 1, 'https://ror.org/02smgwb83 Suma Indústria e Comércio (Brasil)'),
(33476, 'https://ror.org/03m6hxg23', 'pt', 1, 'https://ror.org/03m6hxg23 Sociedade Brasileira de Catálise'),
(33477, 'https://ror.org/0025ymj94', 'pt', 1, 'https://ror.org/0025ymj94 Sociedade Brasileira de Ciência e Tecnologia de Alimentos'),
(33478, 'https://ror.org/03bdanr16', 'no_lang_code', 1, 'https://ror.org/03bdanr16 SuperZinco (Brazil)'),
(33479, 'https://ror.org/02jr64v33', 'no_lang_code', 1, 'https://ror.org/02jr64v33 Surface (Brazil)'),
(33480, 'https://ror.org/02d5qsh80', 'no_lang_code', 1, 'https://ror.org/02d5qsh80 Scheme Lab (Brazil)'),
(33481, 'https://ror.org/02sz00v89', 'pt', 1, 'https://ror.org/02sz00v89 Sociedade Brasileira de Cirurgia Cardiovascular'),
(33482, 'https://ror.org/03ddg4c94', 'no_lang_code', 1, 'https://ror.org/03ddg4c94 SW2 Soluções em TI (Brazil)'),
(33483, 'https://ror.org/02m7cm823', 'pt', 1, 'https://ror.org/02m7cm823 Sociedade Brasileira de Econometria'),
(33484, 'https://ror.org/026xrdv37', 'no_lang_code', 1, 'https://ror.org/026xrdv37 Playax Internet (Brazil)'),
(33485, 'https://ror.org/02a9cbd93', 'no_lang_code', 1, 'https://ror.org/02a9cbd93 Novo Mel (Brazil)'),
(33486, 'https://ror.org/05ym51d14', 'no_lang_code', 1, 'https://ror.org/05ym51d14 Selaz (Brazil)'),
(33487, 'https://ror.org/03k83h416', 'no_lang_code', 1, 'https://ror.org/03k83h416 Compass (Brazil)'),
(33488, 'https://ror.org/01e6n7467', 'no_lang_code', 1, 'https://ror.org/01e6n7467 Synthon Especialidades Químicas (Brazil)'),
(33489, 'https://ror.org/023zwk705', 'no_lang_code', 1, 'https://ror.org/023zwk705 IPS (Brazil)'),
(33490, 'https://ror.org/030mp9g18', 'no_lang_code', 1, 'https://ror.org/030mp9g18 Sdc Engenharia (Brazil)'),
(33491, 'https://ror.org/01nmv4r50', 'no_lang_code', 1, 'https://ror.org/01nmv4r50 Selsan Tecnologia Industrial e Comercial (Brazil)'),
(33492, 'https://ror.org/02zs4aq98', 'no_lang_code', 1, 'https://ror.org/02zs4aq98 Sencer (Brazil)'),
(33493, 'https://ror.org/04v2q5679', 'no_lang_code', 1, 'https://ror.org/04v2q5679 PluriCell (Brazil)'),
(33494, 'https://ror.org/02m4ddy14', 'en', 1, 'https://ror.org/02m4ddy14 Entomological Society of Brazil Sociedade Brasileira de Entomologia'),
(33495, 'https://ror.org/049fsr430', 'no_lang_code', 1, 'https://ror.org/049fsr430 PMEC Sistemas (Brazil)'),
(33496, 'https://ror.org/03b9y3q37', 'pt', 1, 'https://ror.org/03b9y3q37 Sociedade Brasileira de Estudos de Cinema e Audiovisual'),
(33497, 'https://ror.org/02dv83r66', 'no_lang_code', 1, 'https://ror.org/02dv83r66 AgriOS (Brazil)'),
(33498, 'https://ror.org/04fh8sh30', 'pt', 1, 'https://ror.org/04fh8sh30 Sociedade Brasileira de Estudos Interdisciplinares da Comunicação'),
(33499, 'https://ror.org/05yg3bs96', 'pt', 1, 'https://ror.org/05yg3bs96 Secretaria da Casa Civil'),
(33500, 'https://ror.org/03re5nh85', 'pt', 1, 'https://ror.org/03re5nh85 Sociedade Brasileira de Física'),
(33501, 'https://ror.org/02p57rg87', 'en', 1, 'https://ror.org/02p57rg87 Brazilian Society of Speech Sociedade Brasileira de Fonoaudiologia'),
(33502, 'https://ror.org/04w8mv523', 'pt', 1, 'https://ror.org/04w8mv523 Secretaria Municipal de Cultura'),
(33503, 'https://ror.org/0239t8d82', 'no_lang_code', 1, 'https://ror.org/0239t8d82 Sensoft Automação (Brazil)'),
(33504, 'https://ror.org/03r6wjz53', 'pt', 1, 'https://ror.org/03r6wjz53 Secretaria da Educação'),
(33505, 'https://ror.org/0232rsc48', 'pt', 1, 'https://ror.org/0232rsc48 Secretaria da Justiça e da Defesa da Cidadania'),
(33506, 'https://ror.org/01tz02k91', 'no_lang_code', 1, 'https://ror.org/01tz02k91 Tec3GEO (Brazil)'),
(33507, 'https://ror.org/04r5v7152', 'pt', 1, 'https://ror.org/04r5v7152 Sociedade Brasileira de Fruticultura'),
(33508, 'https://ror.org/00s0xs310', 'no_lang_code', 1, 'https://ror.org/00s0xs310 Polaris (Brazil)'),
(33509, 'https://ror.org/02zs6px59', 'no_lang_code', 1, 'https://ror.org/02zs6px59 Tecam Laboratórios (Brazil)'),
(33510, 'https://ror.org/00rac3p42', 'no_lang_code', 1, 'https://ror.org/00rac3p42 Polikem (Brazil)'),
(33511, 'https://ror.org/024tya472', 'pt', 1, 'https://ror.org/024tya472 Sociedade Brasileira de Genética'),
(33512, 'https://ror.org/0591czb14', 'pt', 1, 'https://ror.org/0591czb14 Secretaria da Segurança Pública'),
(33513, 'https://ror.org/05q9vv606', 'no_lang_code', 1, 'https://ror.org/05q9vv606 Tech Chrom (Brazil)'),
(33514, 'https://ror.org/02bvyfx27', 'no_lang_code', 1, 'https://ror.org/02bvyfx27 Techfilter (Brazil)'),
(33515, 'https://ror.org/0098fsf52', 'pt', 1, 'https://ror.org/0098fsf52 Serviço Autônomo de Água e Esgoto de Jaboticabal'),
(33516, 'https://ror.org/042664e79', 'pt', 1, 'https://ror.org/042664e79 Secretaria de Agricultura e Abastecimento'),
(33517, 'https://ror.org/01eqw4y61', 'pt', 1, 'https://ror.org/01eqw4y61 Sociedade Brasileira de Geologia'),
(33518, 'https://ror.org/048k0ye22', 'no_lang_code', 1, 'https://ror.org/048k0ye22 Technes Agrícola (Brazil)'),
(33519, 'https://ror.org/01e00rm10', 'no_lang_code', 1, 'https://ror.org/01e00rm10 Tecnologia e Ciência Educacional (Brazil)'),
(33520, 'https://ror.org/0463xj055', 'no_lang_code', 1, 'https://ror.org/0463xj055 SimWorx (Brazil)'),
(33521, 'https://ror.org/05a8h2h02', 'pt', 1, 'https://ror.org/05a8h2h02 Sociedade Brasileira de História da Ciência'),
(33522, 'https://ror.org/00980wf60', 'no_lang_code', 1, 'https://ror.org/00980wf60 Tecnovip (Brazil)'),
(33523, 'https://ror.org/054b9va62', 'no_lang_code', 1, 'https://ror.org/054b9va62 Overplay (Brazil)'),
(33524, 'https://ror.org/01mfdy709', 'no_lang_code', 1, 'https://ror.org/01mfdy709 Signalcard (Brazil)'),
(33525, 'https://ror.org/01m4fm654', 'no_lang_code', 1, 'https://ror.org/01m4fm654 Tecnident (Brazil)'),
(33526, 'https://ror.org/05xeqkp81', 'no_lang_code', 1, 'https://ror.org/05xeqkp81 Tecnima (Brazil)'),
(33527, 'https://ror.org/05q5jv102', 'no_lang_code', 1, 'https://ror.org/05q5jv102 Tecnocard (Brazil)'),
(33528, 'https://ror.org/04nb3k259', 'no_lang_code', 1, 'https://ror.org/04nb3k259 SST it solutions (Brazil)'),
(33529, 'https://ror.org/05scy2r52', 'no_lang_code', 1, 'https://ror.org/05scy2r52 SHS Engenharia Sustentável'),
(33530, 'https://ror.org/04t213y95', 'pt', 1, 'https://ror.org/04t213y95 Sociedade Brasileira de Imunologia'),
(33531, 'https://ror.org/05m1rmx38', 'no_lang_code', 1, 'https://ror.org/05m1rmx38 Terra Azul - Tecnologia de Polímeros Naturais (Brazil)'),
(33532, 'https://ror.org/03n3tgc33', 'no_lang_code', 1, 'https://ror.org/03n3tgc33 Tecnozinco Tratamento Superficial (Brazil)'),
(33533, 'https://ror.org/01sv08344', 'no_lang_code', 1, 'https://ror.org/01sv08344 Vallitech (Brazil)'),
(33534, 'https://ror.org/03kcw4w74', 'en', 1, 'https://ror.org/03kcw4w74 Brazilian Society of Computational and Applied Mathematics Sociedade Brasileira de Matemática Aplicada e Computacional'),
(33535, 'https://ror.org/0146e2321', 'no_lang_code', 1, 'https://ror.org/0146e2321 Terra Viva Consultoria Ambiental (Brazil)'),
(33536, 'https://ror.org/02j52w730', 'pt', 1, 'https://ror.org/02j52w730 Sociedade Brasileira de Microbiologia'),
(33537, 'https://ror.org/04cjp6w49', 'no_lang_code', 1, 'https://ror.org/04cjp6w49 Tezca (Brazil)'),
(33538, 'https://ror.org/01kwzvc26', 'no_lang_code', 1, 'https://ror.org/01kwzvc26 Uranet (Brazil)'),
(33539, 'https://ror.org/010ehb542', 'no_lang_code', 1, 'https://ror.org/010ehb542 Urbem Tecnologia Ambiental (Brazil)'),
(33540, 'https://ror.org/02bdht408', 'no_lang_code', 1, 'https://ror.org/02bdht408 Thema (Brazil)'),
(33541, 'https://ror.org/05vcxrs03', 'pt', 1, 'https://ror.org/05vcxrs03 Sociedade Brasileira de Microeletrônica'),
(33542, 'https://ror.org/0229zva94', 'no_lang_code', 1, 'https://ror.org/0229zva94 Tecplas Indústria e Comércio (Brazil)'),
(33543, 'https://ror.org/01r72g906', 'no_lang_code', 1, 'https://ror.org/01r72g906 Verdartis (Brazil)'),
(33544, 'https://ror.org/021pm4a51', 'no_lang_code', 1, 'https://ror.org/021pm4a51 Utep (Brazil)'),
(33545, 'https://ror.org/034r02c45', 'no_lang_code', 1, 'https://ror.org/034r02c45 Themag (Brazil)'),
(33546, 'https://ror.org/04xys6a56', 'no_lang_code', 1, 'https://ror.org/04xys6a56 Verdaz (Brazil)'),
(33547, 'https://ror.org/033r6dh57', 'pt', 1, 'https://ror.org/033r6dh57 Secretaria de Desenvolvimento Econômico, Ciência, Tecnologia e Inovação'),
(33548, 'https://ror.org/00wpbh181', 'no_lang_code', 1, 'https://ror.org/00wpbh181 TecSUS Tecnologias para a Sustentabilidade (Brazil)'),
(33549, 'https://ror.org/05fv11t10', 'no_lang_code', 1, 'https://ror.org/05fv11t10 Thorus Scisoft (Brazil)'),
(33550, 'https://ror.org/012ey9m84', 'en', 1, 'https://ror.org/012ey9m84 Brazilian Society of Research and Assistance to Craniofacial Rehabilitation Hospital of Sobrapar'),
(33551, 'https://ror.org/00n17e497', 'no_lang_code', 1, 'https://ror.org/00n17e497 Tecnologia Aplicada Watanabe Watanabe Applied Technology (Brazil)'),
(33552, 'https://ror.org/00vfzzr15', 'no_lang_code', 1, 'https://ror.org/00vfzzr15 Ticon (Brazil)'),
(33553, 'https://ror.org/050aq1k87', 'pt', 1, 'https://ror.org/050aq1k87 Sociedade Brasileira de Pesquisa Odontológica'),
(33554, 'https://ror.org/049vhtm85', 'no_lang_code', 1, 'https://ror.org/049vhtm85 Timpel (Brazil)'),
(33555, 'https://ror.org/05ms76x97', 'en', 1, 'https://ror.org/05ms76x97 Brazilian Society of Protozoology Sociedade Brasileira de Protozoologia'),
(33556, 'https://ror.org/02hzjcs51', 'no_lang_code', 1, 'https://ror.org/02hzjcs51 Veritas Life Sciences (Brazil)'),
(33557, 'https://ror.org/05wkdrh69', 'no_lang_code', 1, 'https://ror.org/05wkdrh69 Top in Life Biotecnologia & Genética Animal (Brazil)'),
(33558, 'https://ror.org/04srvp011', 'no_lang_code', 1, 'https://ror.org/04srvp011 Versis Tecnologia (Brazil)'),
(33559, 'https://ror.org/01qdaxa32', 'no_lang_code', 1, 'https://ror.org/01qdaxa32 Supê Soluções (Brazil)'),
(33560, 'https://ror.org/0465m1925', 'pt', 1, 'https://ror.org/0465m1925 Sociedade Brasileira de Química'),
(33561, 'https://ror.org/056rxss60', 'no_lang_code', 1, 'https://ror.org/056rxss60 XMobots (Brazil)'),
(33562, 'https://ror.org/01ey80h28', 'pt', 1, 'https://ror.org/01ey80h28 Sociedade Brasileira de Toxicologia'),
(33563, 'https://ror.org/02fyaen82', 'pt', 1, 'https://ror.org/02fyaen82 Sociedade Brasileira de Vácuo'),
(33564, 'https://ror.org/01psywt28', 'pt', 1, 'https://ror.org/01psywt28 Secretaria do Governo Municipal'),
(33565, 'https://ror.org/01m44ga74', 'pt', 1, 'https://ror.org/01m44ga74 Secretaria de Planejamento e Gestão'),
(33566, 'https://ror.org/04034ej81', 'pt', 1, 'https://ror.org/04034ej81 Sociedade Brasileira Para o Desenvolvimento da Pesquisa em Cirurgia'),
(33567, 'https://ror.org/02zvwwf46', 'pt', 1, 'https://ror.org/02zvwwf46 Secretaria de Saneamento e Recursos Hìdricos'),
(33568, 'https://ror.org/01pbftg81', 'no_lang_code', 1, 'https://ror.org/01pbftg81 Toxikón (Brazil)'),
(33569, 'https://ror.org/017t8rw26', 'no_lang_code', 1, 'https://ror.org/017t8rw26 Tramppo (Brazil)'),
(33570, 'https://ror.org/03mh5ac32', 'no_lang_code', 1, 'https://ror.org/03mh5ac32 Precifica Preço Inteligente (Brazil)'),
(33571, 'https://ror.org/03a3xs663', 'pt', 1, 'https://ror.org/03a3xs663 Secretaria do Meio Ambiente'),
(33572, 'https://ror.org/05wdyx442', 'no_lang_code', 1, 'https://ror.org/05wdyx442 TransFrigor do Brasil (Brazil)'),
(33573, 'https://ror.org/00jhc4f65', 'no_lang_code', 1, 'https://ror.org/00jhc4f65 Pivotal (Canada)'),
(33574, 'https://ror.org/05789m354', 'no_lang_code', 1, 'https://ror.org/05789m354 Incubadora Tecnológica Univap Revap (Brazil)'),
(33575, 'https://ror.org/01hpww940', 'no_lang_code', 1, 'https://ror.org/01hpww940 Ultra Hi Plásticos Industriais (Brazil)'),
(33576, 'https://ror.org/00pjedz72', 'pt', 1, 'https://ror.org/00pjedz72 Secretaria Municipal de Educação de São Paulo'),
(33577, 'https://ror.org/05h6hwf91', 'pt', 1, 'https://ror.org/05h6hwf91 Secretaria Municipal do Verde e do Meio Ambiente'),
(33578, 'https://ror.org/02qkrgf06', 'no_lang_code', 1, 'https://ror.org/02qkrgf06 Oxford Instruments (Germany)'),
(33579, 'https://ror.org/0524wwz72', 'no_lang_code', 1, 'https://ror.org/0524wwz72 Unigen Tecnologia pelo DNA (Brazil)'),
(33580, 'https://ror.org/024f41j50', 'no_lang_code', 1, 'https://ror.org/024f41j50 Versor Inovação Tecnológica (Brazil)'),
(33581, 'https://ror.org/00rwtwt20', 'en', 1, 'https://ror.org/00rwtwt20 Northeast Catholic College'),
(33582, 'https://ror.org/05vwwq909', 'no_lang_code', 1, 'https://ror.org/05vwwq909 UniSoma (Brazil)'),
(33583, 'https://ror.org/04vbdge38', 'no_lang_code', 1, 'https://ror.org/04vbdge38 Victor Vision (Brazil)'),
(33584, 'https://ror.org/05dfvhh79', 'no_lang_code', 1, 'https://ror.org/05dfvhh79 BP (Spain)'),
(33585, 'https://ror.org/03njstw94', 'no_lang_code', 1, 'https://ror.org/03njstw94 VISIONBR Tecnologia e Informatica (Brazil)'),
(33586, 'https://ror.org/01qbvbs17', 'no_lang_code', 1, 'https://ror.org/01qbvbs17 Vita Care (Brazil)'),
(33587, 'https://ror.org/00cafag88', 'no_lang_code', 1, 'https://ror.org/00cafag88 Vitex (Brazil)'),
(33588, 'https://ror.org/00mytnc41', 'no_lang_code', 1, 'https://ror.org/00mytnc41 HEICO (France)'),
(33589, 'https://ror.org/05aq38y40', 'no_lang_code', 1, 'https://ror.org/05aq38y40 ProQuest (United Kingdom)'),
(33590, 'https://ror.org/022x9cm37', 'no_lang_code', 1, 'https://ror.org/022x9cm37 Vocalize (Brazil)'),
(33591, 'https://ror.org/049dr2b41', 'no_lang_code', 1, 'https://ror.org/049dr2b41 ZF Friedrichshafen (Belgium)'),
(33592, 'https://ror.org/05se4r489', 'no_lang_code', 1, 'https://ror.org/05se4r489 Transdata (Brazil)'),
(33593, 'https://ror.org/0467wcr64', 'no_lang_code', 1, 'https://ror.org/0467wcr64 Wavetek (Brazil)'),
(33594, 'https://ror.org/053mjnp36', 'no_lang_code', 1, 'https://ror.org/053mjnp36 LivaNova (Belgium)'),
(33595, 'https://ror.org/024xst005', 'no_lang_code', 1, 'https://ror.org/024xst005 Alten (Italy)'),
(33596, 'https://ror.org/01m343c98', 'en', 1, 'https://ror.org/01m343c98 Waseda Bioscience Research Institute in Singapore'),
(33597, 'https://ror.org/04ffwnd85', 'en', 1, 'https://ror.org/04ffwnd85 Epsom Hospital'),
(33598, 'https://ror.org/00an0xj57', 'no_lang_code', 1, 'https://ror.org/00an0xj57 Taro Pharmaceuticals (Canada)'),
(33599, 'https://ror.org/03m3pb051', 'no_lang_code', 1, 'https://ror.org/03m3pb051 Scenario (Brazil)'),
(33600, 'https://ror.org/04pzwdz82', 'no_lang_code', 1, 'https://ror.org/04pzwdz82 NutriVita Suplementos (Brazil)'),
(33601, 'https://ror.org/01m05cc74', 'no_lang_code', 1, 'https://ror.org/01m05cc74 Piaram (Brazil) Piaram Productos Nanotechnologicos'),
(33602, 'https://ror.org/04jwvvb34', 'no_lang_code', 1, 'https://ror.org/04jwvvb34 Welding Science (Brazil)'),
(33603, 'https://ror.org/04sbrn764', 'no_lang_code', 1, 'https://ror.org/04sbrn764 Dantherm Power (Denmark)'),
(33604, 'https://ror.org/019cw2518', 'en', 1, 'https://ror.org/019cw2518 Alameda County Public Health Department'),
(33605, 'https://ror.org/05fx9z870', 'no_lang_code', 1, 'https://ror.org/05fx9z870 Emergo (United States)'),
(33606, 'https://ror.org/04g7c7q49', 'no_lang_code', 1, 'https://ror.org/04g7c7q49 ALIS Engineering and Systems Solutions (Brazil) ALIS Soluções em Engenharia e Sistemas'),
(33607, 'https://ror.org/0101zye71', 'en', 1, 'https://ror.org/0101zye71 Brazilian Institute of Geography and Statistics Instituto Brasileiro de Geografia e Estatística'),
(33608, 'https://ror.org/04gnvkj51', 'pt', 1, 'https://ror.org/04gnvkj51 Instituto Cultural Cravo Albin'),
(33609, 'https://ror.org/040bdaa45', 'en', 1, 'https://ror.org/040bdaa45 Instituto de Engenharia Nuclear Nuclear Engineering Institute'),
(33610, 'https://ror.org/00dpc3e39', 'en', 1, 'https://ror.org/00dpc3e39 American Nonsmokers'' Rights Foundation'),
(33611, 'https://ror.org/04kecee19', 'en', 1, 'https://ror.org/04kecee19 Institute of Homeopathy James Tyler Kent Instituto de Homeopatia James Tyler Kent'),
(33612, 'https://ror.org/03tkxvj23', 'pt', 1, 'https://ror.org/03tkxvj23 Arquivo Público do Estado do Rio de Janeiro'),
(33613, 'https://ror.org/02d3hy418', 'en', 1, 'https://ror.org/02d3hy418 Institute of Applied Economic Research Instituto de Pesquisa Econômica Aplicada'),
(33614, 'https://ror.org/00vfe5x12', 'pt', 1, 'https://ror.org/00vfe5x12 Espaço Ciência Viva'),
(33615, 'https://ror.org/00zx28k54', 'no_lang_code', 1, 'https://ror.org/00zx28k54 Artecriação (Brazil)'),
(33616, 'https://ror.org/034yf4q42', 'no_lang_code', 1, 'https://ror.org/034yf4q42 Ryjor (Brazil)'),
(33617, 'https://ror.org/019cg0811', 'pt', 1, 'https://ror.org/019cg0811 Instituto Histórico e Geográfico Brasileiro'),
(33618, 'https://ror.org/03veakt65', 'en', 1, 'https://ror.org/03veakt65 Instituto Militar de Engenharia Military Institute of Engineering'),
(33619, 'https://ror.org/003fyqt13', 'pt', 1, 'https://ror.org/003fyqt13 AVM Faculdade Integrada'),
(33620, 'https://ror.org/04w1y7251', 'pt', 1, 'https://ror.org/04w1y7251 Instituto Nacional da Propriedade Industrial'),
(33621, 'https://ror.org/008wzyk06', 'en', 1, 'https://ror.org/008wzyk06 Hélio Alonso University'),
(33622, 'https://ror.org/03hpex020', 'en', 1, 'https://ror.org/03hpex020 Unity Fellowship Church Movement'),
(33623, 'https://ror.org/04n0d8e29', 'pt', 1, 'https://ror.org/04n0d8e29 Instituto Nacional de Educação de Surdos'),
(33624, 'https://ror.org/0101h5125', 'pt', 1, 'https://ror.org/0101h5125 Instituto Brasileiro de Mercado de Capitais'),
(33625, 'https://ror.org/00jm2yd36', 'en', 1, 'https://ror.org/00jm2yd36 Bishop Veterinary Hospital'),
(33626, 'https://ror.org/012ang229', 'pt', 1, 'https://ror.org/012ang229 Instituto Nacional de Tecnologia National Institute of Technology'),
(33627, 'https://ror.org/01nvkaf11', 'en', 1, 'https://ror.org/01nvkaf11 San Francisco Firefighters Cancer Prevention Foundation'),
(33628, 'https://ror.org/04wy35175', 'pt', 1, 'https://ror.org/04wy35175 Instituto Superior de Educação do Rio de Janeiro'),
(33629, 'https://ror.org/031bnv033', 'en', 1, 'https://ror.org/031bnv033 Brighter Beginnings'),
(33630, 'https://ror.org/009kef261', 'pt', 1, 'https://ror.org/009kef261 Instituto Universitário de Pesquisas do Rio de Janeiro'),
(33631, 'https://ror.org/019cxby81', 'en', 1, 'https://ror.org/019cxby81 Biblioteca Nacional do Brasil National Library of Brazil'),
(33632, 'https://ror.org/009egh542', 'no_lang_code', 1, 'https://ror.org/009egh542 Calera (United States)'),
(33633, 'https://ror.org/044kqk861', 'no_lang_code', 1, 'https://ror.org/044kqk861 Instituto Vital Brazil (Brazil)'),
(33634, 'https://ror.org/040bxjg62', 'pt', 1, 'https://ror.org/040bxjg62 Fundação Casa de Rui Barbosa'),
(33635, 'https://ror.org/039r09095', 'no_lang_code', 1, 'https://ror.org/039r09095 SillaJen (United States)'),
(33636, 'https://ror.org/02ddq0w66', 'pt', 1, 'https://ror.org/02ddq0w66 Fundação Cesgranrio'),
(33637, 'https://ror.org/04tn4w071', 'pt', 1, 'https://ror.org/04tn4w071 Fundação CECIERJ'),
(33638, 'https://ror.org/00ebt7309', 'pt', 1, 'https://ror.org/00ebt7309 Pro Criança Cardíaca'),
(33639, 'https://ror.org/013796n77', 'pt', 1, 'https://ror.org/013796n77 Fundação de Apoio à Escola Técnica'),
(33640, 'https://ror.org/00640dd83', 'no_lang_code', 1, 'https://ror.org/00640dd83 Lexikon Editora Digital (Brazil)'),
(33641, 'https://ror.org/00n4vrp79', 'pt', 1, 'https://ror.org/00n4vrp79 Centro de Tecnologia Mineral'),
(33642, 'https://ror.org/02a3nmn42', 'pt', 1, 'https://ror.org/02a3nmn42 Fundação Educacional D. André Arcoverde'),
(33643, 'https://ror.org/0271xgz16', 'en', 1, 'https://ror.org/0271xgz16 Women of Color Breast Cancer Survivors'' Support Project'),
(33644, 'https://ror.org/03j8tnm47', 'en', 1, 'https://ror.org/03j8tnm47 Centre fédéral d''éducation technologique celso suckow da fonseca Centro Federal de Educação Tecnológica Celso Suckow da Fonseca Federal Center for Technological Education Celso Suckow da Fonseca'),
(33645, 'https://ror.org/059gy0v60', 'en', 1, 'https://ror.org/059gy0v60 Women of Essence'),
(33646, 'https://ror.org/04tvhd893', 'pt', 1, 'https://ror.org/04tvhd893 Museu de Astronomia e Ciências Afins'),
(33647, 'https://ror.org/02nhz2g44', 'en', 1, 'https://ror.org/02nhz2g44 Social and Environmental Entrepreneurs'),
(33648, 'https://ror.org/03wen3n10', 'en', 1, 'https://ror.org/03wen3n10 Clinica de Salud del Valle de Salinas'),
(33649, 'https://ror.org/03y2b4f92', 'pt', 1, 'https://ror.org/03y2b4f92 Bioline - Consultoria e Engenharia Ambiental'),
(33650, 'https://ror.org/01pmf1z12', 'pt', 1, 'https://ror.org/01pmf1z12 Hospital São Vicente de Paulo'),
(33651, 'https://ror.org/05wd9fr72', 'no_lang_code', 1, 'https://ror.org/05wd9fr72 Dalvic (Brazil)'),
(33652, 'https://ror.org/00chm8v09', 'pt', 1, 'https://ror.org/00chm8v09 Departamento Nacional de Produção Mineral'),
(33653, 'https://ror.org/04v7ec183', 'no_lang_code', 1, 'https://ror.org/04v7ec183 Terenzi (Brazil)'),
(33654, 'https://ror.org/01d2w7m45', 'no_lang_code', 1, 'https://ror.org/01d2w7m45 Inovax (Brazil)'),
(33655, 'https://ror.org/00vjvqk56', 'en', 1, 'https://ror.org/00vjvqk56 DESA'),
(33656, 'https://ror.org/03ggx6m14', 'pt', 1, 'https://ror.org/03ggx6m14 Muncipal de Bom Jesus do Itabapoana'),
(33657, 'https://ror.org/0033xm087', 'pt', 1, 'https://ror.org/0033xm087 Instituto de Estudos do Mar Almirante Paulo Moreira'),
(33658, 'https://ror.org/015ar5551', 'pt', 1, 'https://ror.org/015ar5551 Secretaria de Ciência, Tecnologia e Inovação da Marinha'),
(33659, 'https://ror.org/03rrfz230', 'pt', 1, 'https://ror.org/03rrfz230 Empresa de Pesquisa Agropecuária do Estado do Rio de Janeiro'),
(33660, 'https://ror.org/010552r76', 'no_lang_code', 1, 'https://ror.org/010552r76 IBE (Slovenia)'),
(33661, 'https://ror.org/04nhq6337', 'no_lang_code', 1, 'https://ror.org/04nhq6337 Abelium (Slovenia)'),
(33662, 'https://ror.org/04njjet64', 'en', 1, 'https://ror.org/04njjet64 Nova revija Institute for Humanities'),
(33663, 'https://ror.org/03es91d09', 'no_lang_code', 1, 'https://ror.org/03es91d09 Acer Novo Mesto (Slovenia)'),
(33664, 'https://ror.org/03bdq2a67', 'no_lang_code', 1, 'https://ror.org/03bdq2a67 Acies Bio (Slovenia)'),
(33665, 'https://ror.org/05ev6b373', 'no_lang_code', 1, 'https://ror.org/05ev6b373 Acroni (Slovenia)'),
(33666, 'https://ror.org/02h25ds10', 'no_lang_code', 1, 'https://ror.org/02h25ds10 IGEA (Slovenia)'),
(33667, 'https://ror.org/02t5nc402', 'no_lang_code', 1, 'https://ror.org/02t5nc402 Omega Consult (Slovenia)'),
(33668, 'https://ror.org/021j2r958', 'no_lang_code', 1, 'https://ror.org/021j2r958 ACROS Security (Slovenia)'),
(33669, 'https://ror.org/05v3yw889', 'no_lang_code', 1, 'https://ror.org/05v3yw889 Omega (Slovenia)'),
(33670, 'https://ror.org/00b0x7350', 'no_lang_code', 1, 'https://ror.org/00b0x7350 Igmat (Slovenia)'),
(33671, 'https://ror.org/04sdpvy45', 'no_lang_code', 1, 'https://ror.org/04sdpvy45 Adapti (Slovenia)'),
(33672, 'https://ror.org/00t8aqf69', 'no_lang_code', 1, 'https://ror.org/00t8aqf69 OptaCore (Slovenia)');
INSERT INTO `rors` VALUES
(33673, 'https://ror.org/03jchgp61', 'no_lang_code', 1, 'https://ror.org/03jchgp61 Impol (Slovenia)'),
(33674, 'https://ror.org/00drj4p25', 'no_lang_code', 1, 'https://ror.org/00drj4p25 Optopol Technology (Slovenia)'),
(33675, 'https://ror.org/03ft27t79', 'no_lang_code', 1, 'https://ror.org/03ft27t79 Advanced Materials and Technologies (Slovenia)'),
(33676, 'https://ror.org/057n9mf41', 'no_lang_code', 1, 'https://ror.org/057n9mf41 Jolly Aero (Slovenia)'),
(33677, 'https://ror.org/03248dr08', 'no_lang_code', 1, 'https://ror.org/03248dr08 Robert Bosch (Slovenia)'),
(33678, 'https://ror.org/03vjmg579', 'no_lang_code', 1, 'https://ror.org/03vjmg579 Pan-Nutri (Slovenia)'),
(33679, 'https://ror.org/02rmcnx09', 'no_lang_code', 1, 'https://ror.org/02rmcnx09 Induktio (Slovenia)'),
(33680, 'https://ror.org/03a22gk67', 'en', 1, 'https://ror.org/03a22gk67 Anton Trstenjak Institute'),
(33681, 'https://ror.org/00fvw4t71', 'sl', 1, 'https://ror.org/00fvw4t71 Kmetijsko Gozdarski Zavod Nova Gorica'),
(33682, 'https://ror.org/00qhjc802', 'no_lang_code', 1, 'https://ror.org/00qhjc802 Alianta (Slovenia)'),
(33683, 'https://ror.org/01gdbj015', 'no_lang_code', 1, 'https://ror.org/01gdbj015 Perutnina Ptuj (Slovenia)'),
(33684, 'https://ror.org/050sa6c22', 'no_lang_code', 1, 'https://ror.org/050sa6c22 Alpina (Slovenia)'),
(33685, 'https://ror.org/05k2k4e76', 'no_lang_code', 1, 'https://ror.org/05k2k4e76 Alpineon (Slovenia)'),
(33686, 'https://ror.org/004kgh805', 'no_lang_code', 1, 'https://ror.org/004kgh805 Amebis (Slovenia)'),
(33687, 'https://ror.org/05wk2qf13', 'en', 1, 'https://ror.org/05wk2qf13 Institute of Metal Constructions'),
(33688, 'https://ror.org/020e65m33', 'no_lang_code', 1, 'https://ror.org/020e65m33 AMES (Slovenia)'),
(33689, 'https://ror.org/03am6ps88', 'en', 1, 'https://ror.org/03am6ps88 Institute for Spatial Policies Inštitut za politike prostora'),
(33690, 'https://ror.org/033eygk88', 'no_lang_code', 1, 'https://ror.org/033eygk88 AMS (Slovenia)'),
(33691, 'https://ror.org/02pj56a46', 'no_lang_code', 1, 'https://ror.org/02pj56a46 Pinus TKI (Slovenia)'),
(33692, 'https://ror.org/01q726526', 'no_lang_code', 1, 'https://ror.org/01q726526 Litostroj Group (Slovenia)'),
(33693, 'https://ror.org/03ahnb373', 'en', 1, 'https://ror.org/03ahnb373 Institute for developmental and strategic analysis'),
(33694, 'https://ror.org/03cpk2k89', 'no_lang_code', 1, 'https://ror.org/03cpk2k89 Aquarius (Slovenia)'),
(33695, 'https://ror.org/03batkt67', 'no_lang_code', 1, 'https://ror.org/03batkt67 Arcont (Slovenia)'),
(33696, 'https://ror.org/03v2esq45', 'no_lang_code', 1, 'https://ror.org/03v2esq45 Predilnica Litija (Slovenia)'),
(33697, 'https://ror.org/016wzar13', 'no_lang_code', 1, 'https://ror.org/016wzar13 Arex Defense (Slovenia)'),
(33698, 'https://ror.org/01wfa7737', 'no_lang_code', 1, 'https://ror.org/01wfa7737 ATES (Slovenia)'),
(33699, 'https://ror.org/000y1tz34', 'no_lang_code', 1, 'https://ror.org/000y1tz34 Atotech (Slovenia)'),
(33700, 'https://ror.org/033fq2155', 'en', 1, 'https://ror.org/033fq2155 Institute for Hydraulic Research'),
(33701, 'https://ror.org/031szhw45', 'no_lang_code', 1, 'https://ror.org/031szhw45 Infinita (Slovenia)'),
(33702, 'https://ror.org/05vwgdc91', 'no_lang_code', 1, 'https://ror.org/05vwgdc91 B2 (Slovenia)'),
(33703, 'https://ror.org/03vvyat40', 'en', 1, 'https://ror.org/03vvyat40 Institute for Research in Materials and Applications'),
(33704, 'https://ror.org/014mmh993', 'no_lang_code', 1, 'https://ror.org/014mmh993 BIA (Slovenia)'),
(33705, 'https://ror.org/03h7kv823', 'en', 1, 'https://ror.org/03h7kv823 Institute for Sustainable Innovative Technologies'),
(33706, 'https://ror.org/03jkgmn26', 'no_lang_code', 1, 'https://ror.org/03jkgmn26 PUH Team (Slovenia)'),
(33707, 'https://ror.org/0220s7h54', 'en', 1, 'https://ror.org/0220s7h54 Institute for Civilization and Culture'),
(33708, 'https://ror.org/05cec6864', 'sl', 1, 'https://ror.org/05cec6864 Bion, Institute for bioelectromagnetics Inštitut Bion'),
(33709, 'https://ror.org/0461qh336', 'sl', 1, 'https://ror.org/0461qh336 Biotehniški Center Naklo'),
(33710, 'https://ror.org/04nqnb117', 'en', 1, 'https://ror.org/04nqnb117 Institute of Criminology'),
(33711, 'https://ror.org/01tc1se08', 'no_lang_code', 1, 'https://ror.org/01tc1se08 Kolektor (Slovenia)'),
(33712, 'https://ror.org/04zn3ze07', 'sl', 1, 'https://ror.org/04zn3ze07 Animal Hospital Postojna'),
(33713, 'https://ror.org/04m1akh07', 'no_lang_code', 1, 'https://ror.org/04m1akh07 Radenska (Slovenia)'),
(33714, 'https://ror.org/05rdrh795', 'no_lang_code', 1, 'https://ror.org/05rdrh795 CBS Inštitut (Slovenia)'),
(33715, 'https://ror.org/05dc99548', 'no_lang_code', 1, 'https://ror.org/05dc99548 Regional Development Agency Mura (Slovenia)'),
(33716, 'https://ror.org/05k2whz35', 'en', 1, 'https://ror.org/05k2whz35 Inspectorate of the Republic of Slovenia for the Environment and Spatial Planning'),
(33717, 'https://ror.org/002ryrd72', 'sl', 1, 'https://ror.org/002ryrd72 Pomurski muzej Murska Sobota'),
(33718, 'https://ror.org/04bfpy692', 'sl', 1, 'https://ror.org/04bfpy692 S&T Slovenija'),
(33719, 'https://ror.org/031g15v45', 'en', 1, 'https://ror.org/031g15v45 Institute for High Technologies and Systems'),
(33720, 'https://ror.org/01e7t7h48', 'no_lang_code', 1, 'https://ror.org/01e7t7h48 Sadar + Vuga (Slovenia)'),
(33721, 'https://ror.org/05g2jnh09', 'en', 1, 'https://ror.org/05g2jnh09 Centre of Excellence for Integrated Approaches in Chemistry and Biology of Proteins'),
(33722, 'https://ror.org/01eb3qa50', 'en', 1, 'https://ror.org/01eb3qa50 Institute of Mathematics, Physics, and Mechanics'),
(33723, 'https://ror.org/03xe8sk89', 'no_lang_code', 1, 'https://ror.org/03xe8sk89 Institute of Metagenomics and Microbial Technologies (Slovenia)'),
(33724, 'https://ror.org/02s54wa56', 'no_lang_code', 1, 'https://ror.org/02s54wa56 Nanocenter'),
(33725, 'https://ror.org/04qw53y32', 'no_lang_code', 1, 'https://ror.org/04qw53y32 CenterKontura (Slovenia)'),
(33726, 'https://ror.org/04fehbe54', 'no_lang_code', 1, 'https://ror.org/04fehbe54 Salonit Anhovo (Slovenia)'),
(33727, 'https://ror.org/04djf6d46', 'no_lang_code', 1, 'https://ror.org/04djf6d46 Sava (Slovenia)'),
(33728, 'https://ror.org/03pxk9k03', 'no_lang_code', 1, 'https://ror.org/03pxk9k03 Savatech (Slovenia)'),
(33729, 'https://ror.org/01mjqb881', 'sl', 1, 'https://ror.org/01mjqb881 Inštituta za Neionizirna Sevanja'),
(33730, 'https://ror.org/04jmra880', 'en', 1, 'https://ror.org/04jmra880 Scientific Research Centre Bistra Ptu'),
(33731, 'https://ror.org/0063fxv95', 'no_lang_code', 1, 'https://ror.org/0063fxv95 Semenarna (Slovenia)'),
(33732, 'https://ror.org/051cpbj61', 'no_lang_code', 1, 'https://ror.org/051cpbj61 Sensum (Slovenia)'),
(33733, 'https://ror.org/019sgcz74', 'en', 1, 'https://ror.org/019sgcz74 Slovenian Centre of Excellence for Space Sciences and Technologies'),
(33734, 'https://ror.org/018s9hj09', 'sl', 1, 'https://ror.org/018s9hj09 Inštitut za Javno Upravo'),
(33735, 'https://ror.org/04j9afg86', 'en', 1, 'https://ror.org/04j9afg86 Centre of Excellence NAMASTE'),
(33736, 'https://ror.org/02fn3t029', 'sl', 1, 'https://ror.org/02fn3t029 Sicenter (Slovenia)'),
(33737, 'https://ror.org/04m8ndw19', 'no_lang_code', 1, 'https://ror.org/04m8ndw19 Silkem (Slovenia)'),
(33738, 'https://ror.org/02gmdvw97', 'en', 1, 'https://ror.org/02gmdvw97 Slovenian Institute of Quality and Metrology'),
(33739, 'https://ror.org/04f2zcj37', 'no_lang_code', 1, 'https://ror.org/04f2zcj37 PoliMaT Centre of Excellence (Slovenia)'),
(33740, 'https://ror.org/05m1b0q08', 'no_lang_code', 1, 'https://ror.org/05m1b0q08 Sistemska Tehnika (Slovenia)'),
(33741, 'https://ror.org/01rdbqt89', 'en', 1, 'https://ror.org/01rdbqt89 Slovene Ethnographic Museum'),
(33742, 'https://ror.org/0361v2a25', 'no_lang_code', 1, 'https://ror.org/0361v2a25 IRSPIN (Slovenia)'),
(33743, 'https://ror.org/05sgk7672', 'en', 1, 'https://ror.org/05sgk7672 Prirodoslovni muzej Slovenije Slovenian Museum of Natural History'),
(33744, 'https://ror.org/0293jje80', 'no_lang_code', 1, 'https://ror.org/0293jje80 Cetis (Slovenia)'),
(33745, 'https://ror.org/018mr1k06', 'no_lang_code', 1, 'https://ror.org/018mr1k06 Četrta Pot (Slovenia)'),
(33746, 'https://ror.org/05bvpc358', 'no_lang_code', 1, 'https://ror.org/05bvpc358 CGS plus (Slovenia)'),
(33747, 'https://ror.org/02yyma482', 'en', 1, 'https://ror.org/02yyma482 International Tourism Institute'),
(33748, 'https://ror.org/05gwwmd95', 'no_lang_code', 1, 'https://ror.org/05gwwmd95 Slovenska Industrija Jekla (Slovenia)'),
(33749, 'https://ror.org/01sh25n93', 'en', 1, 'https://ror.org/01sh25n93 Institute for Environmental Protection and Sensors'),
(33750, 'https://ror.org/0159gyh21', 'no_lang_code', 1, 'https://ror.org/0159gyh21 Telekom Slovenije (Slovenia)'),
(33751, 'https://ror.org/00d65rw94', 'no_lang_code', 1, 'https://ror.org/00d65rw94 Cimos (Slovenia)'),
(33752, 'https://ror.org/022w5pf74', 'en', 1, 'https://ror.org/022w5pf74 Institute for Symbolic analysis and Development of Information Technologies'),
(33753, 'https://ror.org/02gvqxg57', 'no_lang_code', 1, 'https://ror.org/02gvqxg57 Cinkarna (Slovenia)'),
(33754, 'https://ror.org/04eac2y27', 'en', 1, 'https://ror.org/04eac2y27 Institute for Project Management and Information Technology'),
(33755, 'https://ror.org/021s7xp77', 'no_lang_code', 1, 'https://ror.org/021s7xp77 Helios (Slovenia)'),
(33756, 'https://ror.org/03dc24792', 'no_lang_code', 1, 'https://ror.org/03dc24792 Iskra Medical (Slovenia)'),
(33757, 'https://ror.org/01f176r46', 'no_lang_code', 1, 'https://ror.org/01f176r46 Iskra Mehanizmi (Slovenia)'),
(33758, 'https://ror.org/05s8x0p02', 'no_lang_code', 1, 'https://ror.org/05s8x0p02 Iskra Pio (Slovenia)'),
(33759, 'https://ror.org/00af5g613', 'no_lang_code', 1, 'https://ror.org/00af5g613 SMM production systems (Slovenia)'),
(33760, 'https://ror.org/04fx4vz25', 'en', 1, 'https://ror.org/04fx4vz25 Community Health Centre Ljubljana'),
(33761, 'https://ror.org/027sqes69', 'no_lang_code', 1, 'https://ror.org/027sqes69 Iskra (Slovenia)'),
(33762, 'https://ror.org/05whram96', 'no_lang_code', 1, 'https://ror.org/05whram96 Svetovalna in Razvojna Dejavnost (Slovenia)'),
(33763, 'https://ror.org/03qe0g959', 'sl', 1, 'https://ror.org/03qe0g959 Cosylab'),
(33764, 'https://ror.org/02ahy9q02', 'no_lang_code', 1, 'https://ror.org/02ahy9q02 Iskra Zaščite (Slovenia)'),
(33765, 'https://ror.org/00myd9a07', 'en', 1, 'https://ror.org/00myd9a07 Counselling Centre for Children, Adolescents and Parents'),
(33766, 'https://ror.org/01xn49b44', 'no_lang_code', 1, 'https://ror.org/01xn49b44 CPZ International'),
(33767, 'https://ror.org/01ja4zf46', 'no_lang_code', 1, 'https://ror.org/01ja4zf46 Le-tehnika (Slovenia)'),
(33768, 'https://ror.org/00f89q571', 'no_lang_code', 1, 'https://ror.org/00f89q571 Elsewedy Electric (Slovenia)'),
(33769, 'https://ror.org/009r3dd41', 'no_lang_code', 1, 'https://ror.org/009r3dd41 CVS Mobile (Slovenia)'),
(33770, 'https://ror.org/05qsbt763', 'no_lang_code', 1, 'https://ror.org/05qsbt763 Iskratel (Slovenia)'),
(33771, 'https://ror.org/05n878z30', 'no_lang_code', 1, 'https://ror.org/05n878z30 DFG Consulting (Slovenia)'),
(33772, 'https://ror.org/03cek7y17', 'no_lang_code', 1, 'https://ror.org/03cek7y17 Domel (Slovenia)'),
(33773, 'https://ror.org/01k0zsm40', 'no_lang_code', 1, 'https://ror.org/01k0zsm40 Vodovod-Kanalizacija (Slovenia)'),
(33774, 'https://ror.org/01f3xmn08', 'no_lang_code', 1, 'https://ror.org/01f3xmn08 Spica International (Slovenia)'),
(33775, 'https://ror.org/02m7v1314', 'no_lang_code', 1, 'https://ror.org/02m7v1314 DARS (Slovenia)'),
(33776, 'https://ror.org/04am65f10', 'sl', 1, 'https://ror.org/04am65f10 Skupina IRI Ljubljana'),
(33777, 'https://ror.org/00744et58', 'no_lang_code', 1, 'https://ror.org/00744et58 Štore Steel (Slovenia)'),
(33778, 'https://ror.org/05f060a20', 'no_lang_code', 1, 'https://ror.org/05f060a20 Keko Equipment (Slovenia)'),
(33779, 'https://ror.org/0205pd806', 'no_lang_code', 1, 'https://ror.org/0205pd806 ECHO (Slovenia)'),
(33780, 'https://ror.org/03aqe2s98', 'no_lang_code', 1, 'https://ror.org/03aqe2s98 Structum (Slovenia)'),
(33781, 'https://ror.org/006xrke70', 'no_lang_code', 1, 'https://ror.org/006xrke70 Ecological Engineering Institute'),
(33782, 'https://ror.org/01sq60k61', 'no_lang_code', 1, 'https://ror.org/01sq60k61 Gramatex (Slovenia)'),
(33783, 'https://ror.org/05kmd3412', 'no_lang_code', 1, 'https://ror.org/05kmd3412 ERICo (Slovenia)'),
(33784, 'https://ror.org/00qh28f47', 'no_lang_code', 1, 'https://ror.org/00qh28f47 Svilanit (Slovenia)'),
(33785, 'https://ror.org/03yajhg79', 'en', 1, 'https://ror.org/03yajhg79 Educell'),
(33786, 'https://ror.org/04hqqqx81', 'en', 1, 'https://ror.org/04hqqqx81 Chamber of Agriculture and Forestry of Slovenia'),
(33787, 'https://ror.org/00repdk15', 'no_lang_code', 1, 'https://ror.org/00repdk15 Talum (Slovenia)'),
(33788, 'https://ror.org/04nq64115', 'no_lang_code', 1, 'https://ror.org/04nq64115 Ekliptik (Slovenia)'),
(33789, 'https://ror.org/044pnqk33', 'no_lang_code', 1, 'https://ror.org/044pnqk33 Kolpa (Slovenia)'),
(33790, 'https://ror.org/02p8wff42', 'en', 1, 'https://ror.org/02p8wff42 Testing and Certification Laboratories'),
(33791, 'https://ror.org/01nvq1078', 'no_lang_code', 1, 'https://ror.org/01nvq1078 TECES'),
(33792, 'https://ror.org/02r44dv51', 'sl', 1, 'https://ror.org/02r44dv51 Ekoremediacijski Tehnološki Center'),
(33793, 'https://ror.org/0563w4015', 'sl', 1, 'https://ror.org/0563w4015 Tehnološko raziskovalni center JUB'),
(33794, 'https://ror.org/03nwfz403', 'no_lang_code', 1, 'https://ror.org/03nwfz403 Krka (Slovenia)'),
(33795, 'https://ror.org/022861y27', 'no_lang_code', 1, 'https://ror.org/022861y27 Ektimo (Slovenia)'),
(33796, 'https://ror.org/00f8nat88', 'no_lang_code', 1, 'https://ror.org/00f8nat88 Tekstina (Slovenia)'),
(33797, 'https://ror.org/04fr8n552', 'no_lang_code', 1, 'https://ror.org/04fr8n552 Elea iC (Slovenia)'),
(33798, 'https://ror.org/010a00062', 'no_lang_code', 1, 'https://ror.org/010a00062 TMG-BMC (Slovenia)'),
(33799, 'https://ror.org/059skkh49', 'no_lang_code', 1, 'https://ror.org/059skkh49 TKK'),
(33800, 'https://ror.org/05mn5p987', 'no_lang_code', 1, 'https://ror.org/05mn5p987 Em.tronic Elektromehanski Sistemi (Slovenia)'),
(33801, 'https://ror.org/02j08vc33', 'no_lang_code', 1, 'https://ror.org/02j08vc33 Labena (Slovenia)'),
(33802, 'https://ror.org/038xfsp37', 'no_lang_code', 1, 'https://ror.org/038xfsp37 EMO Orodjarna (Slovenia)'),
(33803, 'https://ror.org/0504mbn59', 'no_lang_code', 1, 'https://ror.org/0504mbn59 Novartis (Slovenia)'),
(33804, 'https://ror.org/036m1ng26', 'no_lang_code', 1, 'https://ror.org/036m1ng26 TIC-LENS Laser Technologies (Slovenia)'),
(33805, 'https://ror.org/04s1b0x88', 'no_lang_code', 1, 'https://ror.org/04s1b0x88 EN-FIST Centre of Excellence (Slovenia)'),
(33806, 'https://ror.org/058g2b535', 'no_lang_code', 1, 'https://ror.org/058g2b535 Limnos (Slovenia)'),
(33807, 'https://ror.org/009mn4a13', 'no_lang_code', 1, 'https://ror.org/009mn4a13 Energy Restructuring Agency (Slovenia)'),
(33808, 'https://ror.org/04ngq0c47', 'en', 1, 'https://ror.org/04ngq0c47 Coal Mining Museum of Slovenia'),
(33809, 'https://ror.org/011ztk477', 'no_lang_code', 1, 'https://ror.org/011ztk477 Litostroj Power (Slovenia)'),
(33810, 'https://ror.org/01b2feq51', 'no_lang_code', 1, 'https://ror.org/01b2feq51 Envit (Slovenia)'),
(33811, 'https://ror.org/021gz1h55', 'no_lang_code', 1, 'https://ror.org/021gz1h55 Logon (Slovenia)'),
(33812, 'https://ror.org/052pha961', 'en', 1, 'https://ror.org/052pha961 National School of Leadership in Education'),
(33813, 'https://ror.org/008neaz95', 'no_lang_code', 1, 'https://ror.org/008neaz95 Episcenter (Slovenia)'),
(33814, 'https://ror.org/02tezqe13', 'no_lang_code', 1, 'https://ror.org/02tezqe13 Esotech (Slovenia)'),
(33815, 'https://ror.org/02gg7et70', 'no_lang_code', 1, 'https://ror.org/02gg7et70 Unior (Slovenia)'),
(33816, 'https://ror.org/053pwq338', 'no_lang_code', 1, 'https://ror.org/053pwq338 ETI Elektroelement (Slovenia)'),
(33817, 'https://ror.org/055bk1853', 'no_lang_code', 1, 'https://ror.org/055bk1853 Unichem (Slovenia)'),
(33818, 'https://ror.org/00be2mx71', 'no_lang_code', 1, 'https://ror.org/00be2mx71 Gorenjska Predilnica (Slovenia)'),
(33819, 'https://ror.org/05ffyy494', 'en', 1, 'https://ror.org/05ffyy494 Trojina Institute for Applied Slovene Studies'),
(33820, 'https://ror.org/05sk1gv89', 'no_lang_code', 1, 'https://ror.org/05sk1gv89 Trimo (Slovenia)'),
(33821, 'https://ror.org/0244q6h72', 'no_lang_code', 1, 'https://ror.org/0244q6h72 LPKF Group (Slovenia)'),
(33822, 'https://ror.org/02hfya711', 'no_lang_code', 1, 'https://ror.org/02hfya711 Tosama (Slovenia)'),
(33823, 'https://ror.org/00pbr1q26', 'no_lang_code', 1, 'https://ror.org/00pbr1q26 Mahle Letrika (Slovenia)'),
(33824, 'https://ror.org/057xvqd88', 'sl', 1, 'https://ror.org/057xvqd88 Veterinarska Bolnica Maribor'),
(33825, 'https://ror.org/00jhh5t96', 'en', 1, 'https://ror.org/00jhh5t96 Institute of Environmental Biology and Biotechnology L’Institut de Biologie Environnementale et Biotechnologie'),
(33826, 'https://ror.org/052wcqj17', 'fr', 1, 'https://ror.org/052wcqj17 Institut de Biologie et Technologies Institute of Biology and Technology'),
(33827, 'https://ror.org/03bk36k19', 'en', 1, 'https://ror.org/03bk36k19 Infectious Disease Models and Innovative Therapies'),
(33828, 'https://ror.org/039javj55', 'fr', 1, 'https://ror.org/039javj55 Institut de Recherches en Technologies et Sciences pour le Vivant'),
(33829, 'https://ror.org/040pw5174', 'no_lang_code', 1, 'https://ror.org/040pw5174 Marmor Hotavlje Group (Slovenia)'),
(33830, 'https://ror.org/04ztaw443', 'en', 1, 'https://ror.org/04ztaw443 Fisheries Research Institute of Slovenia'),
(33831, 'https://ror.org/00g7qk458', 'no_lang_code', 1, 'https://ror.org/00g7qk458 Daihen Varstroj (Slovenia)'),
(33832, 'https://ror.org/03vpyey53', 'no_lang_code', 1, 'https://ror.org/03vpyey53 Fotona (Slovenia)'),
(33833, 'https://ror.org/03c8hg310', 'no_lang_code', 1, 'https://ror.org/03c8hg310 Velana Living (Slovenia)'),
(33834, 'https://ror.org/014nmkx89', 'en', 1, 'https://ror.org/014nmkx89 Mediterranean Institute for Advanced Studies'),
(33835, 'https://ror.org/02k69yb86', 'no_lang_code', 1, 'https://ror.org/02k69yb86 Veplas (Slovenia)'),
(33836, 'https://ror.org/04vyb7b30', 'no_lang_code', 1, 'https://ror.org/04vyb7b30 Vilpo (Slovenia)'),
(33837, 'https://ror.org/023wja311', 'sl', 1, 'https://ror.org/023wja311 Frančiškanski Družinski Inštitut'),
(33838, 'https://ror.org/01pwx8e77', 'sl', 1, 'https://ror.org/01pwx8e77 MEIS Storitve za Okolje'),
(33839, 'https://ror.org/02pman068', 'no_lang_code', 1, 'https://ror.org/02pman068 Viris (Slovenia)'),
(33840, 'https://ror.org/00n002f65', 'no_lang_code', 1, 'https://ror.org/00n002f65 Metal Ravne (Slovenia)'),
(33841, 'https://ror.org/02hbbce41', 'no_lang_code', 1, 'https://ror.org/02hbbce41 Metrel (Slovenia)'),
(33842, 'https://ror.org/0379mtc39', 'no_lang_code', 1, 'https://ror.org/0379mtc39 Metronik (Slovenia)'),
(33843, 'https://ror.org/00qh0h134', 'sl', 1, 'https://ror.org/00qh0h134 Splošna Bolnišnica Slovenj Gradec'),
(33844, 'https://ror.org/01bqtxm09', 'no_lang_code', 1, 'https://ror.org/01bqtxm09 VIsport (Slovenia)'),
(33845, 'https://ror.org/02jadyf48', 'no_lang_code', 1, 'https://ror.org/02jadyf48 Mg Soft (Slovenia)'),
(33846, 'https://ror.org/02sjnxv88', 'no_lang_code', 1, 'https://ror.org/02sjnxv88 Geodetski Zavod Celje (Slovenia)'),
(33847, 'https://ror.org/04gwybq17', 'en', 1, 'https://ror.org/04gwybq17 Welding Institute (Slovenia)'),
(33848, 'https://ror.org/00dqbnh70', 'no_lang_code', 1, 'https://ror.org/00dqbnh70 Goap (Slovenia)'),
(33849, 'https://ror.org/03591vd47', 'no_lang_code', 1, 'https://ror.org/03591vd47 MKS Electronic Systems (Slovenia)'),
(33850, 'https://ror.org/02d0sw995', 'no_lang_code', 1, 'https://ror.org/02d0sw995 Mlinotest (Slovenia)'),
(33851, 'https://ror.org/00qcchj97', 'no_lang_code', 1, 'https://ror.org/00qcchj97 Yaskawa (Slovenia)'),
(33852, 'https://ror.org/04j6r2795', 'en', 1, 'https://ror.org/04j6r2795 National Education Institute of the Republic of Slovenia'),
(33853, 'https://ror.org/014snft51', 'no_lang_code', 1, 'https://ror.org/014snft51 Harpha Sea (Slovenia)'),
(33854, 'https://ror.org/059wee776', 'no_lang_code', 1, 'https://ror.org/059wee776 Nigrad (Slovenia)'),
(33855, 'https://ror.org/03nt90n09', 'sl', 1, 'https://ror.org/03nt90n09 Rogaška Medical Centre'),
(33856, 'https://ror.org/03zn2vc68', 'no_lang_code', 1, 'https://ror.org/03zn2vc68 Niko (Slovenia)'),
(33857, 'https://ror.org/0028m9f31', 'no_lang_code', 1, 'https://ror.org/0028m9f31 Comtrade (Slovenia)'),
(33858, 'https://ror.org/00yycrh80', 'no_lang_code', 1, 'https://ror.org/00yycrh80 Hidria (Slovenia)'),
(33859, 'https://ror.org/037hj0t48', 'no_lang_code', 1, 'https://ror.org/037hj0t48 HIPOT-RR (Slovenia)'),
(33860, 'https://ror.org/04dpavv81', 'no_lang_code', 1, 'https://ror.org/04dpavv81 I 2 Družba za Založništvo Izobraževanje in Raziskovanje'),
(33861, 'https://ror.org/05h0vyf89', 'sl', 1, 'https://ror.org/05h0vyf89 Grm Novo mesto - Center Biotehnike in Turizma'),
(33862, 'https://ror.org/00sbttv49', 'fr', 1, 'https://ror.org/00sbttv49 Délégation Paris 12'),
(33863, 'https://ror.org/00cpsd622', 'en', 1, 'https://ror.org/00cpsd622 Lilly Endowment'),
(33864, 'https://ror.org/01a1mq059', 'en', 1, 'https://ror.org/01a1mq059 ARC Centre of Excellence in Plant Energy Biology'),
(33865, 'https://ror.org/01jz2hz84', 'en', 1, 'https://ror.org/01jz2hz84 National Kidney Foundation Singapore'),
(33866, 'https://ror.org/049nrz535', 'en', 1, 'https://ror.org/049nrz535 Department of Scientific and Industrial Research'),
(33867, 'https://ror.org/02tvrwm90', 'en', 1, 'https://ror.org/02tvrwm90 Canada Excellence Research Chairs Chaires d’Excellence en Recherche du Canada'),
(33868, 'https://ror.org/02rxjts25', 'de', 1, 'https://ror.org/02rxjts25 Minerva Stiftung'),
(33869, 'https://ror.org/040zfw946', 'no_lang_code', 1, 'https://ror.org/040zfw946 Doosan Yonkang Foundation'),
(33870, 'https://ror.org/01h9bce24', 'no_lang_code', 1, 'https://ror.org/01h9bce24 ZootFly (Slovenia)'),
(33871, 'https://ror.org/003xvn846', 'no_lang_code', 1, 'https://ror.org/003xvn846 ZUM urban planning, design (Slovenia)'),
(33872, 'https://ror.org/02srty072', 'en', 1, 'https://ror.org/02srty072 Woosong University 우송대학교'),
(33873, 'https://ror.org/04x3rvs94', 'no_lang_code', 1, 'https://ror.org/04x3rvs94 Metallteknikk (Norway)'),
(33874, 'https://ror.org/02kxqpx65', 'no_lang_code', 1, 'https://ror.org/02kxqpx65 Anteo (Norway)'),
(33875, 'https://ror.org/02rtkz848', 'no_lang_code', 1, 'https://ror.org/02rtkz848 Athena Seafoods (Norway)'),
(33876, 'https://ror.org/05em0xj58', 'no_lang_code', 1, 'https://ror.org/05em0xj58 Apertus (Norway)'),
(33877, 'https://ror.org/00c99c668', 'en', 1, 'https://ror.org/00c99c668 Akershus County Council'),
(33878, 'https://ror.org/01nj3h423', 'no_lang_code', 1, 'https://ror.org/01nj3h423 APIM Therapeutics (Norway)'),
(33879, 'https://ror.org/022gnfx83', 'no_lang_code', 1, 'https://ror.org/022gnfx83 Shell (Norway) Shell i Norge'),
(33880, 'https://ror.org/00awpxt48', 'no_lang_code', 1, 'https://ror.org/00awpxt48 Applica Test & Certification (Norway)'),
(33881, 'https://ror.org/016455p20', 'no_lang_code', 1, 'https://ror.org/016455p20 OMBE Plast (Norway)'),
(33882, 'https://ror.org/03hjz0g77', 'no_lang_code', 1, 'https://ror.org/03hjz0g77 Applied Petroleum Technology (Norway)'),
(33883, 'https://ror.org/04v5bkc47', 'no_lang_code', 1, 'https://ror.org/04v5bkc47 Aventa (Norway)'),
(33884, 'https://ror.org/05hqztx55', 'no_lang_code', 1, 'https://ror.org/05hqztx55 Aptomar (Norway)'),
(33885, 'https://ror.org/018wmr002', 'no_lang_code', 1, 'https://ror.org/018wmr002 Åkrehamn Trålbøteri (Norway)'),
(33886, 'https://ror.org/00pe9yd58', 'no_lang_code', 1, 'https://ror.org/00pe9yd58 Denofa (Norway)'),
(33887, 'https://ror.org/04f501w39', 'no_lang_code', 1, 'https://ror.org/04f501w39 Aseon (Norway)'),
(33888, 'https://ror.org/006hmqw32', 'no', 1, 'https://ror.org/006hmqw32 AksjeNorge'),
(33889, 'https://ror.org/00t9sn355', 'no_lang_code', 1, 'https://ror.org/00t9sn355 Avexxin (Norway)'),
(33890, 'https://ror.org/042bm3f17', 'no', 1, 'https://ror.org/042bm3f17 Aksjonærforeningen'),
(33891, 'https://ror.org/02e66s593', 'no_lang_code', 1, 'https://ror.org/02e66s593 2K Tools (Norway)'),
(33892, 'https://ror.org/00mfqc035', 'no_lang_code', 1, 'https://ror.org/00mfqc035 AKVA Group (Norway)'),
(33893, 'https://ror.org/048c3ks84', 'no_lang_code', 1, 'https://ror.org/048c3ks84 3GSolar (Norway)'),
(33894, 'https://ror.org/03yy00h78', 'no_lang_code', 1, 'https://ror.org/03yy00h78 Avfall Norge (Norway)'),
(33895, 'https://ror.org/03h4k9g13', 'no_lang_code', 1, 'https://ror.org/03h4k9g13 Aqua Bio Technology (Norway)'),
(33896, 'https://ror.org/045fr5063', 'no_lang_code', 1, 'https://ror.org/045fr5063 Aspiro (Norway)'),
(33897, 'https://ror.org/00nmk1536', 'no_lang_code', 1, 'https://ror.org/00nmk1536 Avinor (Norway)'),
(33898, 'https://ror.org/0301jsj38', 'no_lang_code', 1, 'https://ror.org/0301jsj38 Aqua Energy Solutions (Norway)'),
(33899, 'https://ror.org/04zyaf064', 'no_lang_code', 1, 'https://ror.org/04zyaf064 Akvaforsk Genetics Center (Norway)'),
(33900, 'https://ror.org/02aqc1f57', 'no', 1, 'https://ror.org/02aqc1f57 3T Helse (Norway)'),
(33901, 'https://ror.org/04ppv9r66', 'no_lang_code', 1, 'https://ror.org/04ppv9r66 AquaGen (Norway)'),
(33902, 'https://ror.org/01tv6je98', 'no_lang_code', 1, 'https://ror.org/01tv6je98 AXTech (Norway)'),
(33903, 'https://ror.org/028zzym80', 'no_lang_code', 1, 'https://ror.org/028zzym80 Morenot (Norway)'),
(33904, 'https://ror.org/003y01g65', 'no_lang_code', 1, 'https://ror.org/003y01g65 4Subsea (Norway)'),
(33905, 'https://ror.org/03yvfnr08', 'no_lang_code', 1, 'https://ror.org/03yvfnr08 Ayanda (Norway)'),
(33906, 'https://ror.org/05vxqd987', 'no_lang_code', 1, 'https://ror.org/05vxqd987 Aquadyne (Norway)'),
(33907, 'https://ror.org/00df11c89', 'no_lang_code', 1, 'https://ror.org/00df11c89 Bach Technology (Norway)'),
(33908, 'https://ror.org/04j246913', 'no_lang_code', 1, 'https://ror.org/04j246913 Badger Explorer (Norway)'),
(33909, 'https://ror.org/04bcp1r41', 'no_lang_code', 1, 'https://ror.org/04bcp1r41 Bærgården Østre Enger (Norway)'),
(33910, 'https://ror.org/047jhq856', 'no', 1, 'https://ror.org/047jhq856 AT Skog'),
(33911, 'https://ror.org/01psj0w95', 'no_lang_code', 1, 'https://ror.org/01psj0w95 Alcoa (Norway)'),
(33912, 'https://ror.org/0189bb227', 'no_lang_code', 1, 'https://ror.org/0189bb227 Alcontrol Laboratories (Norway)'),
(33913, 'https://ror.org/05pbhjp46', 'no_lang_code', 1, 'https://ror.org/05pbhjp46 Alere (Norway)'),
(33914, 'https://ror.org/01z6y6z64', 'no', 1, 'https://ror.org/01z6y6z64 657 Oslo'),
(33915, 'https://ror.org/04wbyjk66', 'no_lang_code', 1, 'https://ror.org/04wbyjk66 7Sense Group (Norway)'),
(33916, 'https://ror.org/010e5k554', 'no_lang_code', 1, 'https://ror.org/010e5k554 Aquafarm Equipment (Norway)'),
(33917, 'https://ror.org/001khdx24', 'no_lang_code', 1, 'https://ror.org/001khdx24 AquaFence (Norway)'),
(33918, 'https://ror.org/04p98pm42', 'no_lang_code', 1, 'https://ror.org/04p98pm42 Alfa (Norway)'),
(33919, 'https://ror.org/01jy8d602', 'no_lang_code', 1, 'https://ror.org/01jy8d602 Baker Hughes (Norway)'),
(33920, 'https://ror.org/02bc2r066', 'no_lang_code', 1, 'https://ror.org/02bc2r066 Alfsen og Gunderson (Norway)'),
(33921, 'https://ror.org/04xef4937', 'no_lang_code', 1, 'https://ror.org/04xef4937 Aqualine (Norway)'),
(33922, 'https://ror.org/05e8kwn08', 'no_lang_code', 1, 'https://ror.org/05e8kwn08 A-Lifting (Norway)'),
(33923, 'https://ror.org/028521m47', 'no_lang_code', 1, 'https://ror.org/028521m47 Balter Medical (Norway)'),
(33924, 'https://ror.org/02f8b2d05', 'no_lang_code', 1, 'https://ror.org/02f8b2d05 Bama Gruppen (Norway)'),
(33925, 'https://ror.org/03v1yvt11', 'no_lang_code', 1, 'https://ror.org/03v1yvt11 AquaScan (Norway)'),
(33926, 'https://ror.org/02attg727', 'no_lang_code', 1, 'https://ror.org/02attg727 Bayer (Norway)'),
(33927, 'https://ror.org/05nvjkk97', 'no_lang_code', 1, 'https://ror.org/05nvjkk97 Aquastructures (Norway)'),
(33928, 'https://ror.org/05wgrpp48', 'no_lang_code', 1, 'https://ror.org/05wgrpp48 Infor (Norway)'),
(33929, 'https://ror.org/00e6cpy98', 'no_lang_code', 1, 'https://ror.org/00e6cpy98 Algaetech (Norway)'),
(33930, 'https://ror.org/05gawss62', 'no_lang_code', 1, 'https://ror.org/05gawss62 Barco (Norway)'),
(33931, 'https://ror.org/01e3zyd27', 'no_lang_code', 1, 'https://ror.org/01e3zyd27 Pelias Norsk Skadedyrkontroll (Norway)'),
(33932, 'https://ror.org/036r3bf08', 'no_lang_code', 1, 'https://ror.org/036r3bf08 Atkins (Norway)'),
(33933, 'https://ror.org/01ns8dn21', 'no_lang_code', 1, 'https://ror.org/01ns8dn21 Aquatic Concept group (Norway)'),
(33934, 'https://ror.org/016qgdx27', 'no_lang_code', 1, 'https://ror.org/016qgdx27 ATM Brovig (Norway)'),
(33935, 'https://ror.org/04gd7mk44', 'no_lang_code', 1, 'https://ror.org/04gd7mk44 Aanderaa (Norway)'),
(33936, 'https://ror.org/04pg95t29', 'no_lang_code', 1, 'https://ror.org/04pg95t29 Aarbakke Innovation (Norway)'),
(33937, 'https://ror.org/019cs7136', 'no_lang_code', 1, 'https://ror.org/019cs7136 Atmel (Norway)'),
(33938, 'https://ror.org/04h1n6t82', 'no_lang_code', 1, 'https://ror.org/04h1n6t82 Bartec Pixavi (Norway)'),
(33939, 'https://ror.org/01br8pc86', 'no_lang_code', 1, 'https://ror.org/01br8pc86 Allskog (Norway)'),
(33940, 'https://ror.org/05gy3y907', 'no_lang_code', 1, 'https://ror.org/05gy3y907 Abalonyx (Norway)'),
(33941, 'https://ror.org/05fcegz04', 'en', 1, 'https://ror.org/05fcegz04 Association of Vocational Rehabilitation Enterprises'),
(33942, 'https://ror.org/033mwhp49', 'no_lang_code', 1, 'https://ror.org/033mwhp49 Bass (Norway)'),
(33943, 'https://ror.org/02hw4sy21', 'no_lang_code', 1, 'https://ror.org/02hw4sy21 AudioPlus (Norway)'),
(33944, 'https://ror.org/01rvrxf39', 'no_lang_code', 1, 'https://ror.org/01rvrxf39 Abbon (Norway)'),
(33945, 'https://ror.org/01n3ps908', 'no', 1, 'https://ror.org/01n3ps908 BesteBakken'),
(33946, 'https://ror.org/00qrrj311', 'no', 1, 'https://ror.org/00qrrj311 Abelia'),
(33947, 'https://ror.org/059xx0z39', 'en', 1, 'https://ror.org/059xx0z39 Norwegian Labour Inspection Authority'),
(33948, 'https://ror.org/00xzsc219', 'no_lang_code', 1, 'https://ror.org/00xzsc219 Aurland Naturverkstad (Norway)'),
(33949, 'https://ror.org/02g9xm383', 'no_lang_code', 1, 'https://ror.org/02g9xm383 Abilia (Norway)'),
(33950, 'https://ror.org/0483wn475', 'no', 1, 'https://ror.org/0483wn475 Coperiosenteret'),
(33951, 'https://ror.org/05b8fve51', 'no_lang_code', 1, 'https://ror.org/05b8fve51 Archer (Norway)'),
(33952, 'https://ror.org/0417pw826', 'no_lang_code', 1, 'https://ror.org/0417pw826 Lyse (Norway)'),
(33953, 'https://ror.org/02qnspa70', 'no_lang_code', 1, 'https://ror.org/02qnspa70 Abyssus Marine Services (Norway)'),
(33954, 'https://ror.org/04wcc2q98', 'no_lang_code', 1, 'https://ror.org/04wcc2q98 Accenture (Norway)'),
(33955, 'https://ror.org/005fhb985', 'no_lang_code', 1, 'https://ror.org/005fhb985 Båtservice (Norway)'),
(33956, 'https://ror.org/03h6f8g89', 'no_lang_code', 1, 'https://ror.org/03h6f8g89 Seagarden (Norway)'),
(33957, 'https://ror.org/00pd69702', 'no_lang_code', 1, 'https://ror.org/00pd69702 TGS (Norway)'),
(33958, 'https://ror.org/043cf4715', 'no_lang_code', 1, 'https://ror.org/043cf4715 Beck Engineering (Norway)'),
(33959, 'https://ror.org/000pke647', 'no_lang_code', 1, 'https://ror.org/000pke647 Arctic Nutrition (Norway)'),
(33960, 'https://ror.org/00vnz7193', 'no_lang_code', 1, 'https://ror.org/00vnz7193 Arctic Pharma (Norway)'),
(33961, 'https://ror.org/012674h84', 'no_lang_code', 1, 'https://ror.org/012674h84 Ericsson (Norway)'),
(33962, 'https://ror.org/0234z1974', 'no_lang_code', 1, 'https://ror.org/0234z1974 Amedia (Norway)'),
(33963, 'https://ror.org/049gbkg80', 'no_lang_code', 1, 'https://ror.org/049gbkg80 Acona (Norway)'),
(33964, 'https://ror.org/05x3kq496', 'no_lang_code', 1, 'https://ror.org/05x3kq496 ArcticZymes (Norway)'),
(33965, 'https://ror.org/05mxqzt83', 'no_lang_code', 1, 'https://ror.org/05mxqzt83 Acoustics (Norway)'),
(33966, 'https://ror.org/0376qrw20', 'no_lang_code', 1, 'https://ror.org/0376qrw20 AnaCon (Norway)'),
(33967, 'https://ror.org/05kr66310', 'no_lang_code', 1, 'https://ror.org/05kr66310 ArcusGruppen (Norway)'),
(33968, 'https://ror.org/037r20s14', 'en', 1, 'https://ror.org/037r20s14 Bellona Foundation'),
(33969, 'https://ror.org/013572v77', 'no_lang_code', 1, 'https://ror.org/013572v77 ActionPhoto International (Norway)'),
(33970, 'https://ror.org/02q5gf687', 'no', 1, 'https://ror.org/02q5gf687 Andøya Space Center'),
(33971, 'https://ror.org/036wf7b34', 'no_lang_code', 1, 'https://ror.org/036wf7b34 Benteler (Norway)'),
(33972, 'https://ror.org/03gm8q023', 'no_lang_code', 1, 'https://ror.org/03gm8q023 Vizrt (Norway)'),
(33973, 'https://ror.org/002kp7y60', 'no_lang_code', 1, 'https://ror.org/002kp7y60 Bergen Energi (Norway)'),
(33974, 'https://ror.org/01qb65r21', 'no_lang_code', 1, 'https://ror.org/01qb65r21 Adalia Film (Norway)'),
(33975, 'https://ror.org/03kgran92', 'no_lang_code', 1, 'https://ror.org/03kgran92 Nexans (Norway)'),
(33976, 'https://ror.org/03xks2j10', 'no_lang_code', 1, 'https://ror.org/03xks2j10 Argus Remote Systems (Norway)'),
(33977, 'https://ror.org/02tgjqk78', 'no_lang_code', 1, 'https://ror.org/02tgjqk78 Adigo (Norway)'),
(33978, 'https://ror.org/02n2tgb73', 'no', 1, 'https://ror.org/02n2tgb73 Bergen Kommune Byrådsavd for Helse og Omsorg'),
(33979, 'https://ror.org/04j3z9j34', 'no_lang_code', 1, 'https://ror.org/04j3z9j34 Arkitektbedriftene (Norway)'),
(33980, 'https://ror.org/028dt6y58', 'no_lang_code', 1, 'https://ror.org/028dt6y58 Bergen Teknologioverføring (Norway)'),
(33981, 'https://ror.org/0158j3249', 'no_lang_code', 1, 'https://ror.org/0158j3249 Felleskjøpet Agri (Norway)'),
(33982, 'https://ror.org/00djr0052', 'no_lang_code', 1, 'https://ror.org/00djr0052 Arkitektskap (Norway)'),
(33983, 'https://ror.org/05fp2e057', 'no_lang_code', 1, 'https://ror.org/05fp2e057 Admincontrol (Norway)'),
(33984, 'https://ror.org/00cd60776', 'no_lang_code', 1, 'https://ror.org/00cd60776 Animaze Technology (Norway)'),
(33985, 'https://ror.org/02bjjst49', 'en', 1, 'https://ror.org/02bjjst49 Bergen Science Center'),
(33986, 'https://ror.org/03xsw0p28', 'no_lang_code', 1, 'https://ror.org/03xsw0p28 Arkitektur og Byggteknikk (Norway)'),
(33987, 'https://ror.org/04t7avg40', 'no_lang_code', 1, 'https://ror.org/04t7avg40 Anlegg Bolig Rør & Varme AS (Norway)'),
(33988, 'https://ror.org/05tacv029', 'no_lang_code', 1, 'https://ror.org/05tacv029 BerGenBio (Norway)'),
(33989, 'https://ror.org/047fbt408', 'no_lang_code', 1, 'https://ror.org/047fbt408 Autronica Fire and Security (Norway)'),
(33990, 'https://ror.org/02gxndb03', 'en', 1, 'https://ror.org/02gxndb03 National Archives Services of Norway'),
(33991, 'https://ror.org/050ng1611', 'no_lang_code', 1, 'https://ror.org/050ng1611 Admit (Norway)'),
(33992, 'https://ror.org/00ggx8446', 'no_lang_code', 1, 'https://ror.org/00ggx8446 Bergene Holm (Norway)'),
(33993, 'https://ror.org/05ma9je87', 'no_lang_code', 1, 'https://ror.org/05ma9je87 Jaeder (Norway)'),
(33994, 'https://ror.org/05sp73k66', 'no_lang_code', 1, 'https://ror.org/05sp73k66 Geno (Norway)'),
(33995, 'https://ror.org/03h2ryz41', 'no_lang_code', 1, 'https://ror.org/03h2ryz41 Adresseavisen (Norway)'),
(33996, 'https://ror.org/01xdmtt96', 'no_lang_code', 1, 'https://ror.org/01xdmtt96 Biolink Group (Norway)'),
(33997, 'https://ror.org/040w2fg16', 'no', 1, 'https://ror.org/040w2fg16 Bergens Rederiforening'),
(33998, 'https://ror.org/037afsz69', 'no_lang_code', 1, 'https://ror.org/037afsz69 BioMar (Norway)'),
(33999, 'https://ror.org/00c652853', 'no_lang_code', 1, 'https://ror.org/00c652853 Data Respons (Norway)'),
(34000, 'https://ror.org/019nn6105', 'no_lang_code', 1, 'https://ror.org/019nn6105 BW Group (Norway)'),
(34001, 'https://ror.org/015ckc894', 'no_lang_code', 1, 'https://ror.org/015ckc894 Aibel (Norway)'),
(34002, 'https://ror.org/01x6yf687', 'no_lang_code', 1, 'https://ror.org/01x6yf687 Artec Aqua (Norway)'),
(34003, 'https://ror.org/01wq03263', 'no_lang_code', 1, 'https://ror.org/01wq03263 Biomega (Norway)'),
(34004, 'https://ror.org/0444s8s29', 'no_lang_code', 1, 'https://ror.org/0444s8s29 Biomolex (Norway)'),
(34005, 'https://ror.org/02dwwjd32', 'no_lang_code', 1, 'https://ror.org/02dwwjd32 Norwegian Biochemical (Norway)'),
(34006, 'https://ror.org/05569xx10', 'no_lang_code', 1, 'https://ror.org/05569xx10 Bionor (Norway)'),
(34007, 'https://ror.org/03frs5880', 'no_lang_code', 1, 'https://ror.org/03frs5880 Delprodukt (Norway)'),
(34008, 'https://ror.org/0326h5856', 'no', 1, 'https://ror.org/0326h5856 Aga Halibut'),
(34009, 'https://ror.org/0156b0f63', 'en', 1, 'https://ror.org/0156b0f63 Board of European Students of Technology'),
(34010, 'https://ror.org/024x6hc31', 'no_lang_code', 1, 'https://ror.org/024x6hc31 Agder Energi (Norway)'),
(34011, 'https://ror.org/00s3yxg72', 'no_lang_code', 1, 'https://ror.org/00s3yxg72 Green Cube Management (Norway)'),
(34012, 'https://ror.org/00c2cek40', 'no_lang_code', 1, 'https://ror.org/00c2cek40 Betonmast (Norway)'),
(34013, 'https://ror.org/00krkjc90', 'no_lang_code', 1, 'https://ror.org/00krkjc90 Hadeland Glassverk (Norway)'),
(34014, 'https://ror.org/03whyax55', 'no_lang_code', 1, 'https://ror.org/03whyax55 Bevital (Norway)'),
(34015, 'https://ror.org/02ev4fa71', 'no_lang_code', 1, 'https://ror.org/02ev4fa71 AGR Group (Norway)'),
(34016, 'https://ror.org/01ygcjp85', 'no_lang_code', 1, 'https://ror.org/01ygcjp85 Biosense Laboratories (Norway)'),
(34017, 'https://ror.org/025q8bf29', 'no_lang_code', 1, 'https://ror.org/025q8bf29 BEWi (Norway)'),
(34018, 'https://ror.org/05808w753', 'en', 1, 'https://ror.org/05808w753 Norwegian Institute of Emotion-focused Therapy'),
(34019, 'https://ror.org/036xk1d10', 'no_lang_code', 1, 'https://ror.org/036xk1d10 Agromiljø (Norway)'),
(34020, 'https://ror.org/03cebfr78', 'no_lang_code', 1, 'https://ror.org/03cebfr78 Torvald Klaveness (Norway)'),
(34021, 'https://ror.org/05ecjem84', 'no_lang_code', 1, 'https://ror.org/05ecjem84 Biblioteksentralen (Norway)'),
(34022, 'https://ror.org/0239rms91', 'no_lang_code', 1, 'https://ror.org/0239rms91 Biosergen (Norway)'),
(34023, 'https://ror.org/056ej1m32', 'no_lang_code', 1, 'https://ror.org/056ej1m32 Marex (Norway)'),
(34024, 'https://ror.org/05sm49m59', 'no_lang_code', 1, 'https://ror.org/05sm49m59 AgroNova (Norway)'),
(34025, 'https://ror.org/03y2gf405', 'no_lang_code', 1, 'https://ror.org/03y2gf405 Bulldozer Film (Norway)'),
(34026, 'https://ror.org/01yn06q53', 'no', 1, 'https://ror.org/01yn06q53 Avdeling for Utdanning Nord-Trøndelag Fylkeskommune'),
(34027, 'https://ror.org/0000xh558', 'no_lang_code', 1, 'https://ror.org/0000xh558 BioBag (Norway)'),
(34028, 'https://ror.org/02t8zdk52', 'no_lang_code', 1, 'https://ror.org/02t8zdk52 Biota Guard (Norway)'),
(34029, 'https://ror.org/016646t85', 'en', 1, 'https://ror.org/016646t85 Business Region Bergen'),
(34030, 'https://ror.org/04ejtfc04', 'no_lang_code', 1, 'https://ror.org/04ejtfc04 Biobe (Norway)'),
(34031, 'https://ror.org/046h6tv02', 'no_lang_code', 1, 'https://ror.org/046h6tv02 Ak. Grieg Norge (Norway)'),
(34032, 'https://ror.org/05g3zpw59', 'no_lang_code', 1, 'https://ror.org/05g3zpw59 BiotaTools (Norway)'),
(34033, 'https://ror.org/024mwqq28', 'en', 1, 'https://ror.org/024mwqq28 Buskerud County Municipality'),
(34034, 'https://ror.org/054n7j171', 'no_lang_code', 1, 'https://ror.org/054n7j171 Biochos (Norway)'),
(34035, 'https://ror.org/045qetg51', 'no_lang_code', 1, 'https://ror.org/045qetg51 Biotec Pharmacon (Norway)'),
(34036, 'https://ror.org/04kgpzh67', 'en', 1, 'https://ror.org/04kgpzh67 Confederation of Norwegian Enterprise'),
(34037, 'https://ror.org/033tsye23', 'no', 1, 'https://ror.org/033tsye23 Akademika (Norway)'),
(34038, 'https://ror.org/00ks2fw34', 'en', 1, 'https://ror.org/00ks2fw34 Norwegian Biotechnology Advisory Board'),
(34039, 'https://ror.org/016sv8t06', 'no_lang_code', 1, 'https://ror.org/016sv8t06 Biovotec (Norway)'),
(34040, 'https://ror.org/038dzsp73', 'no_lang_code', 1, 'https://ror.org/038dzsp73 C-NAV (Norway)'),
(34041, 'https://ror.org/02492wy41', 'no_lang_code', 1, 'https://ror.org/02492wy41 Biogrid (Norway)'),
(34042, 'https://ror.org/04z5mkt27', 'no_lang_code', 1, 'https://ror.org/04z5mkt27 C10 Pharma (Norway)'),
(34043, 'https://ror.org/019q0kc03', 'no_lang_code', 1, 'https://ror.org/019q0kc03 Biowater Technology (Norway)'),
(34044, 'https://ror.org/05hmx2x96', 'no_lang_code', 1, 'https://ror.org/05hmx2x96 C6 Technologies (Norway)'),
(34045, 'https://ror.org/00xm9b761', 'no_lang_code', 1, 'https://ror.org/00xm9b761 Commitment (Norway)'),
(34046, 'https://ror.org/018xkp798', 'no_lang_code', 1, 'https://ror.org/018xkp798 C-Feed (Norway)'),
(34047, 'https://ror.org/059cfwd16', 'no_lang_code', 1, 'https://ror.org/059cfwd16 Calanus (Norway)'),
(34048, 'https://ror.org/04r3qwa04', 'no_lang_code', 1, 'https://ror.org/04r3qwa04 Bjørnson (Norway)'),
(34049, 'https://ror.org/044a6j606', 'no_lang_code', 1, 'https://ror.org/044a6j606 Calcus (Norway)'),
(34050, 'https://ror.org/03kd6q497', 'no_lang_code', 1, 'https://ror.org/03kd6q497 Completion Technology Resources (Norway)'),
(34051, 'https://ror.org/03yyk9v83', 'en', 1, 'https://ror.org/03yyk9v83 Norwegian Computer Society'),
(34052, 'https://ror.org/04b709v36', 'no_lang_code', 1, 'https://ror.org/04b709v36 Calora Subsea (Norway)'),
(34053, 'https://ror.org/02db4tt61', 'no_lang_code', 1, 'https://ror.org/02db4tt61 Bergenshalvøens Kommunale Kraftselskap (Norway)'),
(34054, 'https://ror.org/00aagcd70', 'no_lang_code', 1, 'https://ror.org/00aagcd70 Calpro (Norway)'),
(34055, 'https://ror.org/01x578c48', 'no', 1, 'https://ror.org/01x578c48 Emballasjeforeningen'),
(34056, 'https://ror.org/05vg3sa15', 'no_lang_code', 1, 'https://ror.org/05vg3sa15 Calysta (Norway)'),
(34057, 'https://ror.org/022w6y159', 'en', 1, 'https://ror.org/022w6y159 Norwegian Medical Association'),
(34058, 'https://ror.org/02hb0te91', 'no_lang_code', 1, 'https://ror.org/02hb0te91 Cambi (Norway)'),
(34059, 'https://ror.org/02e2px796', 'no_lang_code', 1, 'https://ror.org/02e2px796 Höegh LNG (Norway)'),
(34060, 'https://ror.org/00238y219', 'no_lang_code', 1, 'https://ror.org/00238y219 Blåst Film (Norway)'),
(34061, 'https://ror.org/007q6cq88', 'no_lang_code', 1, 'https://ror.org/007q6cq88 Doble (Norway)'),
(34062, 'https://ror.org/058r2a869', 'no_lang_code', 1, 'https://ror.org/058r2a869 Comptel (Norway)'),
(34063, 'https://ror.org/021fpfb36', 'no_lang_code', 1, 'https://ror.org/021fpfb36 Docmap (Norway)'),
(34064, 'https://ror.org/008stff69', 'no_lang_code', 1, 'https://ror.org/008stff69 Blue Planet (Norway)'),
(34065, 'https://ror.org/018a0bk66', 'no_lang_code', 1, 'https://ror.org/018a0bk66 Rolls-Royce (Norway)'),
(34066, 'https://ror.org/00h9cwn45', 'en', 1, 'https://ror.org/00h9cwn45 Computer Applications and Quantitative Methods in Archaeology'),
(34067, 'https://ror.org/00f1jfy92', 'no_lang_code', 1, 'https://ror.org/00f1jfy92 DOF Subsea (Norway)'),
(34068, 'https://ror.org/053zh1b29', 'no_lang_code', 1, 'https://ror.org/053zh1b29 Camo (Norway)'),
(34069, 'https://ror.org/01qxktz51', 'no_lang_code', 1, 'https://ror.org/01qxktz51 Con-Form (Norway)'),
(34070, 'https://ror.org/05yaghb42', 'no_lang_code', 1, 'https://ror.org/05yaghb42 Dolphin Interconnect Solutions (Norway)'),
(34071, 'https://ror.org/02ca6sz73', 'no_lang_code', 1, 'https://ror.org/02ca6sz73 BNW-Energy (Norway)'),
(34072, 'https://ror.org/05sbaym77', 'no_lang_code', 1, 'https://ror.org/05sbaym77 Boa Offshore (Norway)'),
(34073, 'https://ror.org/00zgpxe28', 'no_lang_code', 1, 'https://ror.org/00zgpxe28 CondAlign (Norway)'),
(34074, 'https://ror.org/00ec1q452', 'no_lang_code', 1, 'https://ror.org/00ec1q452 Conexus (Norway)'),
(34075, 'https://ror.org/051g1tp93', 'no_lang_code', 1, 'https://ror.org/051g1tp93 Domos (Norway)'),
(34076, 'https://ror.org/02d3w1b29', 'no_lang_code', 1, 'https://ror.org/02d3w1b29 Capgemini (Norway)'),
(34077, 'https://ror.org/0371j5q71', 'no_lang_code', 1, 'https://ror.org/0371j5q71 Ørsted (Norway)'),
(34078, 'https://ror.org/02gma2x70', 'no_lang_code', 1, 'https://ror.org/02gma2x70 Connect LNG (Norway)'),
(34079, 'https://ror.org/00hscp190', 'no_lang_code', 1, 'https://ror.org/00hscp190 Capia (Norway)'),
(34080, 'https://ror.org/0170ys284', 'en', 1, 'https://ror.org/0170ys284 Connect'),
(34081, 'https://ror.org/0515bx276', 'no_lang_code', 1, 'https://ror.org/0515bx276 Cappelen Damm (Norway)'),
(34082, 'https://ror.org/03qng6g45', 'en', 1, 'https://ror.org/03qng6g45 Norwegian Farmers'' Union'),
(34083, 'https://ror.org/02zg72e18', 'no_lang_code', 1, 'https://ror.org/02zg72e18 Dovre (Norway)'),
(34084, 'https://ror.org/053tv0d72', 'no_lang_code', 1, 'https://ror.org/053tv0d72 Capwell (Norway)'),
(34085, 'https://ror.org/043qs7x90', 'no_lang_code', 1, 'https://ror.org/043qs7x90 Conpart (Norway)'),
(34086, 'https://ror.org/01y7nr056', 'no_lang_code', 1, 'https://ror.org/01y7nr056 Dpcom (Norway)'),
(34087, 'https://ror.org/04y9czb62', 'no_lang_code', 1, 'https://ror.org/04y9czb62 Borginnovasj (Norway)'),
(34088, 'https://ror.org/039726g63', 'no_lang_code', 1, 'https://ror.org/039726g63 Cardiaccs (Norway)'),
(34089, 'https://ror.org/04a10z221', 'no_lang_code', 1, 'https://ror.org/04a10z221 Consafe Logistics (Norway)'),
(34090, 'https://ror.org/02w46bq53', 'no_lang_code', 1, 'https://ror.org/02w46bq53 Dr.Techn.Olav Olsen (Norway)'),
(34091, 'https://ror.org/02yr30s14', 'no', 1, 'https://ror.org/02yr30s14 Drammen Kommune'),
(34092, 'https://ror.org/02eefwm92', 'no_lang_code', 1, 'https://ror.org/02eefwm92 Norwegian State Railways (Norway)'),
(34093, 'https://ror.org/03y62np16', 'no_lang_code', 1, 'https://ror.org/03y62np16 Cautus Geo (Norway)'),
(34094, 'https://ror.org/05hmcwd14', 'no_lang_code', 1, 'https://ror.org/05hmcwd14 Coop Norge (Norway)'),
(34095, 'https://ror.org/01aaadk61', 'no_lang_code', 1, 'https://ror.org/01aaadk61 JB Well Solutions (Norway)'),
(34096, 'https://ror.org/016pvmh77', 'no_lang_code', 1, 'https://ror.org/016pvmh77 Botngaard (Norway)'),
(34097, 'https://ror.org/03x9m5a16', 'no_lang_code', 1, 'https://ror.org/03x9m5a16 Celerway Communication (Norway)'),
(34098, 'https://ror.org/03h58v266', 'no_lang_code', 1, 'https://ror.org/03h58v266 CellCura (Norway)'),
(34099, 'https://ror.org/04arjdq12', 'no_lang_code', 1, 'https://ror.org/04arjdq12 Sekal (Norway)'),
(34100, 'https://ror.org/02sjwdt08', 'no_lang_code', 1, 'https://ror.org/02sjwdt08 Designit (Norway)'),
(34101, 'https://ror.org/0030apy05', 'no_lang_code', 1, 'https://ror.org/0030apy05 CoorsTek (Norway)'),
(34102, 'https://ror.org/045f8n343', 'no_lang_code', 1, 'https://ror.org/045f8n343 BP Norge (Norway)'),
(34103, 'https://ror.org/01gz5rq53', 'no_lang_code', 1, 'https://ror.org/01gz5rq53 Ceragon (Norway)'),
(34104, 'https://ror.org/043zemc40', 'en', 1, 'https://ror.org/043zemc40 Queen Maud University College'),
(34105, 'https://ror.org/01egm4002', 'no_lang_code', 1, 'https://ror.org/01egm4002 CoreAll (Norway)'),
(34106, 'https://ror.org/02vvyxq62', 'no_lang_code', 1, 'https://ror.org/02vvyxq62 Brady (Norway)'),
(34107, 'https://ror.org/03cxg0n72', 'no_lang_code', 1, 'https://ror.org/03cxg0n72 Mitsubishi Corporation (Norway)'),
(34108, 'https://ror.org/05t76y454', 'no', 1, 'https://ror.org/05t76y454 Statped'),
(34109, 'https://ror.org/00nsveh54', 'no_lang_code', 1, 'https://ror.org/00nsveh54 Corentium (Norway)'),
(34110, 'https://ror.org/04nybae35', 'no_lang_code', 1, 'https://ror.org/04nybae35 Drug Discovery Laboratory (Norway)'),
(34111, 'https://ror.org/05trysh47', 'no_lang_code', 1, 'https://ror.org/05trysh47 Cerpus (Norway)'),
(34112, 'https://ror.org/014crwt40', 'no_lang_code', 1, 'https://ror.org/014crwt40 Due Miljø (Norway)'),
(34113, 'https://ror.org/02b7hq178', 'no_lang_code', 1, 'https://ror.org/02b7hq178 Breeze (Norway)'),
(34114, 'https://ror.org/05q388t62', 'no_lang_code', 1, 'https://ror.org/05q388t62 Duverden (Norway)'),
(34115, 'https://ror.org/0044jmf17', 'no_lang_code', 1, 'https://ror.org/0044jmf17 CFD Marine (Norway)'),
(34116, 'https://ror.org/03pgmt571', 'no_lang_code', 1, 'https://ror.org/03pgmt571 Cflow Fish Handling (Norway)'),
(34117, 'https://ror.org/05s429h13', 'no_lang_code', 1, 'https://ror.org/05s429h13 Corticalis (Norway)'),
(34118, 'https://ror.org/04err9585', 'no_lang_code', 1, 'https://ror.org/04err9585 Norges Vel (Norway)'),
(34119, 'https://ror.org/00g5afz31', 'no_lang_code', 1, 'https://ror.org/00g5afz31 Dynatec (Norway)'),
(34120, 'https://ror.org/05ajm2r35', 'no_lang_code', 1, 'https://ror.org/05ajm2r35 Dynavec (Norway)'),
(34121, 'https://ror.org/01pn94h16', 'no_lang_code', 1, 'https://ror.org/01pn94h16 Changetech (Norway)'),
(34122, 'https://ror.org/053y7yq36', 'no_lang_code', 1, 'https://ror.org/053y7yq36 BRI Offshore (Norway)'),
(34123, 'https://ror.org/04m91d487', 'no_lang_code', 1, 'https://ror.org/04m91d487 Dynea (Norway)'),
(34124, 'https://ror.org/05tgt0w11', 'no_lang_code', 1, 'https://ror.org/05tgt0w11 Cova (Norway)'),
(34125, 'https://ror.org/002qg6270', 'no_lang_code', 1, 'https://ror.org/002qg6270 Bring (Norway)'),
(34126, 'https://ror.org/04h0zn247', 'no_lang_code', 1, 'https://ror.org/04h0zn247 Chiron (Norway)'),
(34127, 'https://ror.org/02a1wev37', 'no_lang_code', 1, 'https://ror.org/02a1wev37 E Plug (Norway)'),
(34128, 'https://ror.org/00k3k7m85', 'no_lang_code', 1, 'https://ror.org/00k3k7m85 CrayoNano (Norway)'),
(34129, 'https://ror.org/031zx7n25', 'en', 1, 'https://ror.org/031zx7n25 Norwegian Bible Society'),
(34130, 'https://ror.org/053k88v22', 'no_lang_code', 1, 'https://ror.org/053k88v22 CreoTech (Norway)'),
(34131, 'https://ror.org/02pc96p08', 'no_lang_code', 1, 'https://ror.org/02pc96p08 E-CO Energi (Norway)'),
(34132, 'https://ror.org/0047pk836', 'no_lang_code', 1, 'https://ror.org/0047pk836 Crevi (Norway)'),
(34133, 'https://ror.org/027p4v066', 'no_lang_code', 1, 'https://ror.org/027p4v066 EAB Engineering (Norway)'),
(34134, 'https://ror.org/03sb6qc51', 'no_lang_code', 1, 'https://ror.org/03sb6qc51 Brødrene Dahl (Norway)'),
(34135, 'https://ror.org/04rfn0m45', 'no_lang_code', 1, 'https://ror.org/04rfn0m45 Chriship (Norway)'),
(34136, 'https://ror.org/055wgnw59', 'en', 1, 'https://ror.org/055wgnw59 Norwegian Nobel Institute'),
(34137, 'https://ror.org/01wajv258', 'no_lang_code', 1, 'https://ror.org/01wajv258 Brunvoll (Norway)'),
(34138, 'https://ror.org/01hqrqj31', 'en', 1, 'https://ror.org/01hqrqj31 Oslo Centre for Interdisciplinary Environmental and Social Research'),
(34139, 'https://ror.org/00gbks067', 'en', 1, 'https://ror.org/00gbks067 Norwegian Forestry Society');
INSERT INTO `rors` VALUES
(34140, 'https://ror.org/02sda1489', 'no_lang_code', 1, 'https://ror.org/02sda1489 Brusell Communications (Norway)'),
(34141, 'https://ror.org/02r5d5757', 'en', 1, 'https://ror.org/02r5d5757 Crisis Training'),
(34142, 'https://ror.org/053mnmm40', 'no_lang_code', 1, 'https://ror.org/053mnmm40 City Motion (Norway)'),
(34143, 'https://ror.org/01ctwqf32', 'no_lang_code', 1, 'https://ror.org/01ctwqf32 Brynsløkken (Norway)'),
(34144, 'https://ror.org/025jpz175', 'no_lang_code', 1, 'https://ror.org/025jpz175 Csub (Norway)'),
(34145, 'https://ror.org/01kvzjx09', 'no_lang_code', 1, 'https://ror.org/01kvzjx09 Eco Inhibitors (Norway)'),
(34146, 'https://ror.org/040481r38', 'en', 1, 'https://ror.org/040481r38 Norwegian Trotting Association'),
(34147, 'https://ror.org/01c6xft10', 'no_lang_code', 1, 'https://ror.org/01c6xft10 ClampOn (Norway)'),
(34148, 'https://ror.org/02ez7hy34', 'no_lang_code', 1, 'https://ror.org/02ez7hy34 Cubility (Norway)'),
(34149, 'https://ror.org/00azt0581', 'no_lang_code', 1, 'https://ror.org/00azt0581 BT Signaal (Norway)'),
(34150, 'https://ror.org/01d3knk22', 'no_lang_code', 1, 'https://ror.org/01d3knk22 Clarity Water Treatment Systems (Norway)'),
(34151, 'https://ror.org/00atz9x05', 'no', 1, 'https://ror.org/00atz9x05 Cultura Bank'),
(34152, 'https://ror.org/00884mc13', 'no_lang_code', 1, 'https://ror.org/00884mc13 Cupp Computing (Norway)'),
(34153, 'https://ror.org/01xvh4n70', 'no_lang_code', 1, 'https://ror.org/01xvh4n70 Bull Ski & Kajakk (Norway)'),
(34154, 'https://ror.org/04abbvn76', 'no_lang_code', 1, 'https://ror.org/04abbvn76 ECOsubsea (Norway)'),
(34155, 'https://ror.org/01hyf2b24', 'no_lang_code', 1, 'https://ror.org/01hyf2b24 Clean Marine (Norway)'),
(34156, 'https://ror.org/02raqmj47', 'no', 1, 'https://ror.org/02raqmj47 Boligbygg Oslo KF'),
(34157, 'https://ror.org/01094wq95', 'no_lang_code', 1, 'https://ror.org/01094wq95 Cybernetica (Norway)'),
(34158, 'https://ror.org/03sb9qx96', 'no_lang_code', 1, 'https://ror.org/03sb9qx96 Ecotone (Norway)'),
(34159, 'https://ror.org/01mfwsz24', 'no_lang_code', 1, 'https://ror.org/01mfwsz24 Clavis Technology (Norway)'),
(34160, 'https://ror.org/03jpsgw63', 'no_lang_code', 1, 'https://ror.org/03jpsgw63 Cytovation (Norway)'),
(34161, 'https://ror.org/02jv9pf54', 'no', 1, 'https://ror.org/02jv9pf54 Praktisk-Teologiske Seminar'),
(34162, 'https://ror.org/059jaw607', 'no_lang_code', 1, 'https://ror.org/059jaw607 Clean Silicon (Norway)'),
(34163, 'https://ror.org/03ag00v40', 'no_lang_code', 1, 'https://ror.org/03ag00v40 Devoteam (Norway)'),
(34164, 'https://ror.org/00grb5v24', 'no_lang_code', 1, 'https://ror.org/00grb5v24 Elliptic Labs (Norway)'),
(34165, 'https://ror.org/023e2rv43', 'no_lang_code', 1, 'https://ror.org/023e2rv43 Clearwater Group (Norway)'),
(34166, 'https://ror.org/02d50z080', 'no_lang_code', 1, 'https://ror.org/02d50z080 Compello (Norway)'),
(34167, 'https://ror.org/010vfte86', 'en', 1, 'https://ror.org/010vfte86 Rogaland County Council'),
(34168, 'https://ror.org/03zh4gk78', 'no_lang_code', 1, 'https://ror.org/03zh4gk78 Evry (Norway)'),
(34169, 'https://ror.org/04s468185', 'no_lang_code', 1, 'https://ror.org/04s468185 CLS Technology (Norway)'),
(34170, 'https://ror.org/025j99319', 'no_lang_code', 1, 'https://ror.org/025j99319 Elop (Norway)'),
(34171, 'https://ror.org/037hcxy67', 'no_lang_code', 1, 'https://ror.org/037hcxy67 eDrilling (Norway)'),
(34172, 'https://ror.org/02n1s9498', 'no_lang_code', 1, 'https://ror.org/02n1s9498 Co-action Publishing (Norway)'),
(34173, 'https://ror.org/05h173491', 'no_lang_code', 1, 'https://ror.org/05h173491 Elotec (Norway)'),
(34174, 'https://ror.org/003yx8k21', 'no_lang_code', 1, 'https://ror.org/003yx8k21 Elretur (Norway)'),
(34175, 'https://ror.org/03azf9x72', 'no_lang_code', 1, 'https://ror.org/03azf9x72 Edtech Foundry (Norway)'),
(34176, 'https://ror.org/02agh6277', 'no_lang_code', 1, 'https://ror.org/02agh6277 CO2-Norway (Norway)'),
(34177, 'https://ror.org/01arxq231', 'no_lang_code', 1, 'https://ror.org/01arxq231 Cobuilder (Norway)'),
(34178, 'https://ror.org/00k5mw791', 'no_lang_code', 1, 'https://ror.org/00k5mw791 Didac (Norway)'),
(34179, 'https://ror.org/04r5dzw32', 'no_lang_code', 1, 'https://ror.org/04r5dzw32 CodeIT (Norway)'),
(34180, 'https://ror.org/03pgv3k36', 'en', 1, 'https://ror.org/03pgv3k36 Trondheim-Fjord Rivers'),
(34181, 'https://ror.org/04hxqef50', 'no', 1, 'https://ror.org/04hxqef50 Dans i Skolen'),
(34182, 'https://ror.org/04fc0n424', 'no_lang_code', 1, 'https://ror.org/04fc0n424 Colifast (Norway)'),
(34183, 'https://ror.org/05kd02296', 'no_lang_code', 1, 'https://ror.org/05kd02296 DigiDoc Technologies (Norway)'),
(34184, 'https://ror.org/00rvh4702', 'no_lang_code', 1, 'https://ror.org/00rvh4702 Comet Biotech (Norway)'),
(34185, 'https://ror.org/036dmxc82', 'no_lang_code', 1, 'https://ror.org/036dmxc82 Dat (Norway)'),
(34186, 'https://ror.org/017za6717', 'no_lang_code', 1, 'https://ror.org/017za6717 Dignio (Norway)'),
(34187, 'https://ror.org/022ke2j41', 'no_lang_code', 1, 'https://ror.org/022ke2j41 Electromagnetic Geoservices (Norway)'),
(34188, 'https://ror.org/030a0m094', 'no_lang_code', 1, 'https://ror.org/030a0m094 Commfides Norge (Norway)'),
(34189, 'https://ror.org/018nftw61', 'no_lang_code', 1, 'https://ror.org/018nftw61 Dataloy (Norway)'),
(34190, 'https://ror.org/05v373q59', 'no_lang_code', 1, 'https://ror.org/05v373q59 Emisoft (Norway)'),
(34191, 'https://ror.org/00p15ac84', 'no_lang_code', 1, 'https://ror.org/00p15ac84 Davvi Girji (Norway)'),
(34192, 'https://ror.org/057f18p10', 'no_lang_code', 1, 'https://ror.org/057f18p10 Encap Security (Norway)'),
(34193, 'https://ror.org/04nsp1e11', 'no_lang_code', 1, 'https://ror.org/04nsp1e11 Douchebags (Norway)'),
(34194, 'https://ror.org/002t5m579', 'no_lang_code', 1, 'https://ror.org/002t5m579 Dinamo (Norway)'),
(34195, 'https://ror.org/05a18r864', 'en', 1, 'https://ror.org/05a18r864 International Ocean Discovery Program'),
(34196, 'https://ror.org/012zdsa19', 'no_lang_code', 1, 'https://ror.org/012zdsa19 Dips (Norway)'),
(34197, 'https://ror.org/038zrcp32', 'en', 1, 'https://ror.org/038zrcp32 Energy Norway'),
(34198, 'https://ror.org/02r61ng07', 'en', 1, 'https://ror.org/02r61ng07 Energy Farm'),
(34199, 'https://ror.org/00srhwt80', 'en', 1, 'https://ror.org/00srhwt80 Norwegian National Research Ethics Committees'),
(34200, 'https://ror.org/006gt3q68', 'no_lang_code', 1, 'https://ror.org/006gt3q68 DeAmp (Norway)'),
(34201, 'https://ror.org/014eweh95', 'en', 1, 'https://ror.org/014eweh95 Division of Grants & Agreements'),
(34202, 'https://ror.org/05hk46p43', 'no_lang_code', 1, 'https://ror.org/05hk46p43 DeepOcean (Norway)'),
(34203, 'https://ror.org/043w2w702', 'en', 1, 'https://ror.org/043w2w702 Inland Norway Energy Agency'),
(34204, 'https://ror.org/02k1hw394', 'en', 1, 'https://ror.org/02k1hw394 Directorate for Cultural Heritage Riksantikvaren'),
(34205, 'https://ror.org/03qm2cd43', 'no_lang_code', 1, 'https://ror.org/03qm2cd43 EnergiUnion (Norway)'),
(34206, 'https://ror.org/01tm3ht72', 'no_lang_code', 1, 'https://ror.org/01tm3ht72 Deep Sea Anchors (Norway)'),
(34207, 'https://ror.org/02sht8d21', 'no_lang_code', 1, 'https://ror.org/02sht8d21 Nordly Holding (Norway)'),
(34208, 'https://ror.org/04qn9mx93', 'en', 1, 'https://ror.org/04qn9mx93 Division of Biological Infrastructure'),
(34209, 'https://ror.org/04pxf4m67', 'no_lang_code', 1, 'https://ror.org/04pxf4m67 Ener-G (Norway)'),
(34210, 'https://ror.org/03g87he71', 'en', 1, 'https://ror.org/03g87he71 Division of Environmental Biology'),
(34211, 'https://ror.org/01tnvpc68', 'en', 1, 'https://ror.org/01tnvpc68 Emerging Frontiers Office'),
(34212, 'https://ror.org/039jpp391', 'no_lang_code', 1, 'https://ror.org/039jpp391 Defa (Norway)'),
(34213, 'https://ror.org/04ckq7q54', 'no', 1, 'https://ror.org/04ckq7q54 Direktoratet for økonomistyring'),
(34214, 'https://ror.org/011sx0d94', 'en', 1, 'https://ror.org/011sx0d94 Oslo Public Library'),
(34215, 'https://ror.org/04q0w2t43', 'no_lang_code', 1, 'https://ror.org/04q0w2t43 Evac (Norway)'),
(34216, 'https://ror.org/02qaq7m46', 'no_lang_code', 1, 'https://ror.org/02qaq7m46 Delitek (Norway)'),
(34217, 'https://ror.org/01rvays47', 'en', 1, 'https://ror.org/01rvays47 Division of Integrative Organismal Systems'),
(34218, 'https://ror.org/05fhsxp84', 'no', 1, 'https://ror.org/05fhsxp84 Evidensia Oslo dyresykehus'),
(34219, 'https://ror.org/006f4gp05', 'no_lang_code', 1, 'https://ror.org/006f4gp05 Deltagruppen (Norway)'),
(34220, 'https://ror.org/023m9d467', 'no_lang_code', 1, 'https://ror.org/023m9d467 Energy Dynamics (Norway)'),
(34221, 'https://ror.org/002jdaq33', 'en', 1, 'https://ror.org/002jdaq33 Division of Molecular & Cellular Biosciences'),
(34222, 'https://ror.org/0377jb567', 'no_lang_code', 1, 'https://ror.org/0377jb567 Expology (Norway)'),
(34223, 'https://ror.org/04gnscf86', 'no_lang_code', 1, 'https://ror.org/04gnscf86 Fredrikstad Energi (Norway)'),
(34224, 'https://ror.org/02ebhah82', 'no_lang_code', 1, 'https://ror.org/02ebhah82 Eyasys (Norway)'),
(34225, 'https://ror.org/00by76g53', 'no_lang_code', 1, 'https://ror.org/00by76g53 Fish Pool (Norway)'),
(34226, 'https://ror.org/03c935487', 'no', 1, 'https://ror.org/03c935487 Eyde-Nettverket'),
(34227, 'https://ror.org/01dqpe181', 'no_lang_code', 1, 'https://ror.org/01dqpe181 EyeLife (Norway)'),
(34228, 'https://ror.org/01mng8331', 'en', 1, 'https://ror.org/01mng8331 Division of Computing and Communication Foundations'),
(34229, 'https://ror.org/02rdzmk74', 'en', 1, 'https://ror.org/02rdzmk74 Division of Computer and Network Systems'),
(34230, 'https://ror.org/04kbca671', 'no_lang_code', 1, 'https://ror.org/04kbca671 Enhanced Drilling (Norway)'),
(34231, 'https://ror.org/00jkz7z57', 'no_lang_code', 1, 'https://ror.org/00jkz7z57 Fishbones (Norway)'),
(34232, 'https://ror.org/053a2cp42', 'en', 1, 'https://ror.org/053a2cp42 Division of Information and Intelligent Systems'),
(34233, 'https://ror.org/00cx39g50', 'no_lang_code', 1, 'https://ror.org/00cx39g50 Isola (Norway)'),
(34234, 'https://ror.org/028bcwc63', 'no_lang_code', 1, 'https://ror.org/028bcwc63 Fabriscale Technologies (Norway)'),
(34235, 'https://ror.org/03jxb9w83', 'no', 1, 'https://ror.org/03jxb9w83 Norwegian Seafood Federation Sjømat Norge'),
(34236, 'https://ror.org/05n8hjk08', 'no_lang_code', 1, 'https://ror.org/05n8hjk08 Friskgården (Norway)'),
(34237, 'https://ror.org/03163ea17', 'no_lang_code', 1, 'https://ror.org/03163ea17 Fiskeriforum Vest (Norway)'),
(34238, 'https://ror.org/05d01fw51', 'no_lang_code', 1, 'https://ror.org/05d01fw51 Fronteer Solutions (Norway)'),
(34239, 'https://ror.org/051tbnd05', 'no_lang_code', 1, 'https://ror.org/051tbnd05 Fjellstrand (Norway)'),
(34240, 'https://ror.org/02mt99d54', 'no_lang_code', 1, 'https://ror.org/02mt99d54 Vigmostad & Bjørke (Norway)'),
(34241, 'https://ror.org/02p2n1t29', 'no_lang_code', 1, 'https://ror.org/02p2n1t29 Fronter (Norway)'),
(34242, 'https://ror.org/0471zv972', 'en', 1, 'https://ror.org/0471zv972 Division of Chemical, Bioengineering, Environmental, and Transport Systems'),
(34243, 'https://ror.org/01qyqee78', 'no_lang_code', 1, 'https://ror.org/01qyqee78 Faktotum Informasjon (Norway)'),
(34244, 'https://ror.org/00hzhrq25', 'no_lang_code', 1, 'https://ror.org/00hzhrq25 Enoco (Norway)'),
(34245, 'https://ror.org/00wrds652', 'no_lang_code', 1, 'https://ror.org/00wrds652 Frost Produkt (Norway)'),
(34246, 'https://ror.org/01krpsy48', 'en', 1, 'https://ror.org/01krpsy48 Division of Electrical, Communications & Cyber Systems'),
(34247, 'https://ror.org/050zafg52', 'no_lang_code', 1, 'https://ror.org/050zafg52 Fjord IT (Norway)'),
(34248, 'https://ror.org/01w17p094', 'no_lang_code', 1, 'https://ror.org/01w17p094 Enøk-Senteret (Norway)'),
(34249, 'https://ror.org/050rnw378', 'en', 1, 'https://ror.org/050rnw378 Division of Engineering Education & Centers'),
(34250, 'https://ror.org/0021wxc35', 'no_lang_code', 1, 'https://ror.org/0021wxc35 Fjord Marin (Norway)'),
(34251, 'https://ror.org/000qjd183', 'no_lang_code', 1, 'https://ror.org/000qjd183 Falck Nutec (Norway)'),
(34252, 'https://ror.org/047dn2208', 'no_lang_code', 1, 'https://ror.org/047dn2208 ENOVA (Norway)'),
(34253, 'https://ror.org/00ve36y89', 'no_lang_code', 1, 'https://ror.org/00ve36y89 Fanbooster (Norway)'),
(34254, 'https://ror.org/00dew5745', 'no_lang_code', 1, 'https://ror.org/00dew5745 Fjordforsk (Norway)'),
(34255, 'https://ror.org/03j4kxk06', 'no_lang_code', 1, 'https://ror.org/03j4kxk06 Enovate (Norway)'),
(34256, 'https://ror.org/004yws045', 'no_lang_code', 1, 'https://ror.org/004yws045 Fjordland (Norway)'),
(34257, 'https://ror.org/0388pet74', 'en', 1, 'https://ror.org/0388pet74 Office of Emerging Frontiers and Multidisciplinary Activities'),
(34258, 'https://ror.org/03x46pr49', 'no_lang_code', 1, 'https://ror.org/03x46pr49 EnSol (Norway)'),
(34259, 'https://ror.org/00jn73068', 'no_lang_code', 1, 'https://ror.org/00jn73068 Fatland (Norway)'),
(34260, 'https://ror.org/03xyg3m20', 'en', 1, 'https://ror.org/03xyg3m20 Division of Industrial Innovation & Partnerships'),
(34261, 'https://ror.org/04bxrwt74', 'no_lang_code', 1, 'https://ror.org/04bxrwt74 Environgas (Norway)'),
(34262, 'https://ror.org/00nynxj47', 'no_lang_code', 1, 'https://ror.org/00nynxj47 Faveo (Norway)'),
(34263, 'https://ror.org/03c1zct07', 'no', 1, 'https://ror.org/03c1zct07 Norsk Landbruksrådgiving'),
(34264, 'https://ror.org/001jrcp20', 'no_lang_code', 1, 'https://ror.org/001jrcp20 Flapres (Norway)'),
(34265, 'https://ror.org/018mn5n05', 'no_lang_code', 1, 'https://ror.org/018mn5n05 Feed Control (Norway)'),
(34266, 'https://ror.org/00a9g0t62', 'no_lang_code', 1, 'https://ror.org/00a9g0t62 Flatsetsund Engineering (Norway)'),
(34267, 'https://ror.org/04krcaz19', 'no_lang_code', 1, 'https://ror.org/04krcaz19 Feedback Aquaculture (Norway)'),
(34268, 'https://ror.org/00s6pe011', 'no_lang_code', 1, 'https://ror.org/00s6pe011 Made for Movement (Norway)'),
(34269, 'https://ror.org/027qtg134', 'no_lang_code', 1, 'https://ror.org/027qtg134 Flexit (Norway)'),
(34270, 'https://ror.org/05nwjp114', 'en', 1, 'https://ror.org/05nwjp114 Office of Polar Programs'),
(34271, 'https://ror.org/05j889016', 'no_lang_code', 1, 'https://ror.org/05j889016 Flow Design Bureau (Norway)'),
(34272, 'https://ror.org/01swgw930', 'no_lang_code', 1, 'https://ror.org/01swgw930 Flowtec (Norway)'),
(34273, 'https://ror.org/04p5pgm74', 'no_lang_code', 1, 'https://ror.org/04p5pgm74 Funcom (Norway)'),
(34274, 'https://ror.org/028wsx658', 'no_lang_code', 1, 'https://ror.org/028wsx658 Danaher (Norway)'),
(34275, 'https://ror.org/04bpvsh10', 'no_lang_code', 1, 'https://ror.org/04bpvsh10 Epsis (Norway)'),
(34276, 'https://ror.org/01t6w5q16', 'no_lang_code', 1, 'https://ror.org/01t6w5q16 Felleskjøpet (Norway)'),
(34277, 'https://ror.org/050vybr60', 'en', 1, 'https://ror.org/050vybr60 Equator Aircraft Norway'),
(34278, 'https://ror.org/010y28g02', 'no_lang_code', 1, 'https://ror.org/010y28g02 Fupe Systems (Norway)'),
(34279, 'https://ror.org/0187ced18', 'no_lang_code', 1, 'https://ror.org/0187ced18 Furore film (Norway)'),
(34280, 'https://ror.org/04tdcgr05', 'no_lang_code', 1, 'https://ror.org/04tdcgr05 Eramet (Norway)'),
(34281, 'https://ror.org/0186a6222', 'no_lang_code', 1, 'https://ror.org/0186a6222 Grieg Seafood (Norway)'),
(34282, 'https://ror.org/003fgxd95', 'no_lang_code', 1, 'https://ror.org/003fgxd95 Future Solutions (Norway)'),
(34283, 'https://ror.org/04vz51s38', 'no_lang_code', 1, 'https://ror.org/04vz51s38 Erichsen & Horgen (Norway)'),
(34284, 'https://ror.org/05xfhsc76', 'no', 1, 'https://ror.org/05xfhsc76 Halden Kommune'),
(34285, 'https://ror.org/00k3mkd53', 'no_lang_code', 1, 'https://ror.org/00k3mkd53 Future Subsea (Norway)'),
(34286, 'https://ror.org/05njqnk64', 'no', 1, 'https://ror.org/05njqnk64 Forbrukerrådet'),
(34287, 'https://ror.org/04rccsv84', 'no_lang_code', 1, 'https://ror.org/04rccsv84 FORCE Technology (Norway)'),
(34288, 'https://ror.org/023ar3785', 'en', 1, 'https://ror.org/023ar3785 County Governor of Nordland'),
(34289, 'https://ror.org/02zm5n619', 'no_lang_code', 1, 'https://ror.org/02zm5n619 Ernst-B. Johansen (Norway)'),
(34290, 'https://ror.org/02gxbm014', 'no_lang_code', 1, 'https://ror.org/02gxbm014 FEM Engineering (Norway)'),
(34291, 'https://ror.org/0361rdk10', 'no_lang_code', 1, 'https://ror.org/0361rdk10 Forget-Me-Not (Norway)'),
(34292, 'https://ror.org/047jbnz84', 'no', 1, 'https://ror.org/047jbnz84 Sør-Trøndelag County Authority'),
(34293, 'https://ror.org/01d9byf14', 'en', 1, 'https://ror.org/01d9byf14 County Governor of Sogn og Fjordane'),
(34294, 'https://ror.org/017fps450', 'no_lang_code', 1, 'https://ror.org/017fps450 Fornebu Consulting (Norway)'),
(34295, 'https://ror.org/02kz5ap91', 'no_lang_code', 1, 'https://ror.org/02kz5ap91 Ferrx (Norway)'),
(34296, 'https://ror.org/04mg8wm74', 'en', 1, 'https://ror.org/04mg8wm74 Division of Astronomical Sciences'),
(34297, 'https://ror.org/01djj8165', 'no_lang_code', 1, 'https://ror.org/01djj8165 Genderguide (Norway)'),
(34298, 'https://ror.org/05t5dnk19', 'no', 1, 'https://ror.org/05t5dnk19 Forskerfabrikken'),
(34299, 'https://ror.org/04d1z5w79', 'en', 1, 'https://ror.org/04d1z5w79 Gena'),
(34300, 'https://ror.org/04nx0sn11', 'no_lang_code', 1, 'https://ror.org/04nx0sn11 Fesil (Norway)'),
(34301, 'https://ror.org/00c9dk124', 'no_lang_code', 1, 'https://ror.org/00c9dk124 Forskning.no (Norway)'),
(34302, 'https://ror.org/01ar8dr59', 'en', 1, 'https://ror.org/01ar8dr59 Division of Chemistry'),
(34303, 'https://ror.org/05dqznn49', 'no_lang_code', 1, 'https://ror.org/05dqznn49 Oslotech (Norway)'),
(34304, 'https://ror.org/04gztv912', 'no_lang_code', 1, 'https://ror.org/04gztv912 Etac (Norway)'),
(34305, 'https://ror.org/02h8v7m77', 'en', 1, 'https://ror.org/02h8v7m77 Center for Selective C–H Functionalization'),
(34306, 'https://ror.org/00tsmp672', 'en', 1, 'https://ror.org/00tsmp672 Narvik Science Park'),
(34307, 'https://ror.org/04r98y365', 'no_lang_code', 1, 'https://ror.org/04r98y365 Figgjo (Norway)'),
(34308, 'https://ror.org/01pc7k308', 'en', 1, 'https://ror.org/01pc7k308 Division of Materials Research'),
(34309, 'https://ror.org/051fftw81', 'en', 1, 'https://ror.org/051fftw81 Division of Mathematical Sciences'),
(34310, 'https://ror.org/04ap5x931', 'en', 1, 'https://ror.org/04ap5x931 Division of Physics'),
(34311, 'https://ror.org/05e64ed12', 'en', 1, 'https://ror.org/05e64ed12 Finance Norway'),
(34312, 'https://ror.org/001s2e926', 'no_lang_code', 1, 'https://ror.org/001s2e926 Eurofins (Norway)'),
(34313, 'https://ror.org/04vr78v16', 'no_lang_code', 1, 'https://ror.org/04vr78v16 General Electric (Norway)'),
(34314, 'https://ror.org/04k9mqs78', 'en', 1, 'https://ror.org/04k9mqs78 Office of Integrative Activities'),
(34315, 'https://ror.org/01p4fde84', 'no_lang_code', 1, 'https://ror.org/01p4fde84 Findus (Norway)'),
(34316, 'https://ror.org/02r7hq914', 'no_lang_code', 1, 'https://ror.org/02r7hq914 Fortum (Norway)'),
(34317, 'https://ror.org/01k638r21', 'en', 1, 'https://ror.org/01k638r21 Office of International Science and Engineering'),
(34318, 'https://ror.org/03qf55f50', 'no_lang_code', 1, 'https://ror.org/03qf55f50 Digital Insight (Norway)'),
(34319, 'https://ror.org/04p795979', 'no_lang_code', 1, 'https://ror.org/04p795979 Gce Node Service (Norway)'),
(34320, 'https://ror.org/03xgpq506', 'en', 1, 'https://ror.org/03xgpq506 Norwegian Society for Medical Informatics'),
(34321, 'https://ror.org/04348hm12', 'no_lang_code', 1, 'https://ror.org/04348hm12 Gavita (Norway)'),
(34322, 'https://ror.org/01vnjbg30', 'en', 1, 'https://ror.org/01vnjbg30 Division of Information Systems'),
(34323, 'https://ror.org/01dm6f769', 'no_lang_code', 1, 'https://ror.org/01dm6f769 Forus Næringspark (Norway)'),
(34324, 'https://ror.org/0408sy511', 'no_lang_code', 1, 'https://ror.org/0408sy511 Finsbråten (Norway)'),
(34325, 'https://ror.org/03pp54d63', 'no_lang_code', 1, 'https://ror.org/03pp54d63 GKN (Norway)'),
(34326, 'https://ror.org/04ajr8041', 'no_lang_code', 1, 'https://ror.org/04ajr8041 Gastronomisk Institutt'),
(34327, 'https://ror.org/02869ee65', 'no_lang_code', 1, 'https://ror.org/02869ee65 FiReCo (Norway)'),
(34328, 'https://ror.org/02zhfb961', 'no_lang_code', 1, 'https://ror.org/02zhfb961 ForzaSys (Norway)'),
(34329, 'https://ror.org/02ht58c79', 'no', 1, 'https://ror.org/02ht58c79 Glåmdal Regionråd'),
(34330, 'https://ror.org/05wgkzg12', 'en', 1, 'https://ror.org/05wgkzg12 Division of Behavioral and Cognitive Sciences'),
(34331, 'https://ror.org/02dz2hb46', 'en', 1, 'https://ror.org/02dz2hb46 Division of Social and Economic Sciences'),
(34332, 'https://ror.org/05ej1z911', 'no_lang_code', 1, 'https://ror.org/05ej1z911 Glamox (Norway)'),
(34333, 'https://ror.org/034m1ez10', 'en', 1, 'https://ror.org/034m1ez10 Science of Learning Centers Program Coordinating Committee'),
(34334, 'https://ror.org/02r7w5t06', 'no_lang_code', 1, 'https://ror.org/02r7w5t06 Dräger (Norway)'),
(34335, 'https://ror.org/046yjsn38', 'no_lang_code', 1, 'https://ror.org/046yjsn38 Glen Dimplex Nordic (Norway)'),
(34336, 'https://ror.org/02a65dj82', 'en', 1, 'https://ror.org/02a65dj82 SBE Office of Multidisciplinary Activities'),
(34337, 'https://ror.org/012dwyq75', 'no_lang_code', 1, 'https://ror.org/012dwyq75 Gassco (Norway)'),
(34338, 'https://ror.org/046yj6w95', 'no_lang_code', 1, 'https://ror.org/046yj6w95 GasPlas (Norway)'),
(34339, 'https://ror.org/05a8p8995', 'no_lang_code', 1, 'https://ror.org/05a8p8995 Glencore (Norway)'),
(34340, 'https://ror.org/04pyf6e44', 'no_lang_code', 1, 'https://ror.org/04pyf6e44 Gartnerhallen (Norway)'),
(34341, 'https://ror.org/003dgzf80', 'no_lang_code', 1, 'https://ror.org/003dgzf80 Firmenich (Norway)'),
(34342, 'https://ror.org/00c2s7991', 'no_lang_code', 1, 'https://ror.org/00c2s7991 Glommen Skog (Norway)'),
(34343, 'https://ror.org/00hs0rb66', 'no_lang_code', 1, 'https://ror.org/00hs0rb66 Torghatten (Norway)'),
(34344, 'https://ror.org/008etp691', 'no_lang_code', 1, 'https://ror.org/008etp691 GlucoSet (Norway)'),
(34345, 'https://ror.org/01gy2wn10', 'no_lang_code', 1, 'https://ror.org/01gy2wn10 GlycaNova (Norway)'),
(34346, 'https://ror.org/02vfqaw29', 'no_lang_code', 1, 'https://ror.org/02vfqaw29 Go Mobile (Norway)'),
(34347, 'https://ror.org/021d0nd97', 'en', 1, 'https://ror.org/021d0nd97 First Scandinavia'),
(34348, 'https://ror.org/03tnggn83', 'no_lang_code', 1, 'https://ror.org/03tnggn83 FourC (Norway)'),
(34349, 'https://ror.org/050kr2566', 'no_lang_code', 1, 'https://ror.org/050kr2566 Fraktefartøyenes Rederiforening (Norway)'),
(34350, 'https://ror.org/043ad9j09', 'no_lang_code', 1, 'https://ror.org/043ad9j09 Goodtech (Norway)'),
(34351, 'https://ror.org/03d11xx07', 'no_lang_code', 1, 'https://ror.org/03d11xx07 Alfa Laval (Norway)'),
(34352, 'https://ror.org/00nnw5g58', 'no_lang_code', 1, 'https://ror.org/00nnw5g58 Graminor (Norway)'),
(34353, 'https://ror.org/04gsxzk49', 'no_lang_code', 1, 'https://ror.org/04gsxzk49 Gran Tre (Norway)'),
(34354, 'https://ror.org/05yjs1q31', 'no_lang_code', 1, 'https://ror.org/05yjs1q31 Gaidaros Forlag (Norway)'),
(34355, 'https://ror.org/010a3bp06', 'no_lang_code', 1, 'https://ror.org/010a3bp06 Hermes Academic Publishing and Bookshop (Norway)'),
(34356, 'https://ror.org/03yew7g23', 'no_lang_code', 1, 'https://ror.org/03yew7g23 Graphene Batteries (Norway)'),
(34357, 'https://ror.org/015ck6z19', 'no_lang_code', 1, 'https://ror.org/015ck6z19 G3 Ungplanter (Norway)'),
(34358, 'https://ror.org/003cthx96', 'en', 1, 'https://ror.org/003cthx96 Fredrikstad Dyrehospital'),
(34359, 'https://ror.org/01pvv7388', 'no_lang_code', 1, 'https://ror.org/01pvv7388 G&T Septech (Norway)'),
(34360, 'https://ror.org/035w01f39', 'no_lang_code', 1, 'https://ror.org/035w01f39 Hexagon (Norway)'),
(34361, 'https://ror.org/02y0nmb35', 'no_lang_code', 1, 'https://ror.org/02y0nmb35 Grenland Energy (Norway)'),
(34362, 'https://ror.org/00wq53e84', 'no_lang_code', 1, 'https://ror.org/00wq53e84 GeneSeque (Norway)'),
(34363, 'https://ror.org/05prt4y28', 'no_lang_code', 1, 'https://ror.org/05prt4y28 Genetic Analysis (Norway)'),
(34364, 'https://ror.org/04nc4qk98', 'no_lang_code', 1, 'https://ror.org/04nc4qk98 High Density Devices (Norway)'),
(34365, 'https://ror.org/0312wfb17', 'no_lang_code', 1, 'https://ror.org/0312wfb17 GridSky Software (Norway)'),
(34366, 'https://ror.org/053xcdp31', 'no_lang_code', 1, 'https://ror.org/053xcdp31 Genomar (Norway)'),
(34367, 'https://ror.org/05d5xcx47', 'no_lang_code', 1, 'https://ror.org/05d5xcx47 Gentian (Norway)'),
(34368, 'https://ror.org/04wsp0t42', 'no_lang_code', 1, 'https://ror.org/04wsp0t42 Grieg Group (Norway)'),
(34369, 'https://ror.org/000558439', 'no_lang_code', 1, 'https://ror.org/000558439 Hydrolift (Norway)'),
(34370, 'https://ror.org/00tem3932', 'no_lang_code', 1, 'https://ror.org/00tem3932 Hynor Lillestrøm (Norway)'),
(34371, 'https://ror.org/00b1cv365', 'no_lang_code', 1, 'https://ror.org/00b1cv365 Grønt Punkt Norge (Norway)'),
(34372, 'https://ror.org/038q6p167', 'no_lang_code', 1, 'https://ror.org/038q6p167 Hyperthermics (Norway)'),
(34373, 'https://ror.org/03ngy3w26', 'no_lang_code', 1, 'https://ror.org/03ngy3w26 Grove Knutsen (Norway)'),
(34374, 'https://ror.org/02bs89v88', 'no_lang_code', 1, 'https://ror.org/02bs89v88 Geograf (Norway)'),
(34375, 'https://ror.org/05w02xt27', 'no_lang_code', 1, 'https://ror.org/05w02xt27 Hypet Data (Norway)'),
(34376, 'https://ror.org/05vtg7207', 'no_lang_code', 1, 'https://ror.org/05vtg7207 Geomatics (Norway)'),
(34377, 'https://ror.org/023312y65', 'no_lang_code', 1, 'https://ror.org/023312y65 Hystorsys (Norway)'),
(34378, 'https://ror.org/04bdbag67', 'no_lang_code', 1, 'https://ror.org/04bdbag67 Geomatikk (Norway)'),
(34379, 'https://ror.org/030t3j082', 'no_lang_code', 1, 'https://ror.org/030t3j082 I-Sea (Norway)'),
(34380, 'https://ror.org/04gsfat44', 'no_lang_code', 1, 'https://ror.org/04gsfat44 GeoPlayGround (Norway)'),
(34381, 'https://ror.org/03angs540', 'no_lang_code', 1, 'https://ror.org/03angs540 Gether (Norway)'),
(34382, 'https://ror.org/01cj6rb73', 'no_lang_code', 1, 'https://ror.org/01cj6rb73 Ibsentelecom (Norway)'),
(34383, 'https://ror.org/00shkn419', 'no', 1, 'https://ror.org/00shkn419 Gründerskolen Alumni'),
(34384, 'https://ror.org/05wrwe084', 'no_lang_code', 1, 'https://ror.org/05wrwe084 Nortura (Norway)'),
(34385, 'https://ror.org/018gwvf53', 'no_lang_code', 1, 'https://ror.org/018gwvf53 Eureka Pumps (Norway)'),
(34386, 'https://ror.org/01g4sny84', 'no_lang_code', 1, 'https://ror.org/01g4sny84 IC Targets (Norway)'),
(34387, 'https://ror.org/05wqffg52', 'no_lang_code', 1, 'https://ror.org/05wqffg52 Gintel (Norway)'),
(34388, 'https://ror.org/03n4tsy42', 'no_lang_code', 1, 'https://ror.org/03n4tsy42 GOE-IP (Norway)'),
(34389, 'https://ror.org/01hjbaa35', 'no', 1, 'https://ror.org/01hjbaa35 Gjemnes Kommune'),
(34390, 'https://ror.org/01mbqex31', 'no', 1, 'https://ror.org/01mbqex31 Hermetikken Næringshage'),
(34391, 'https://ror.org/02eqa6h17', 'no_lang_code', 1, 'https://ror.org/02eqa6h17 Industrial Control Design (Norway)'),
(34392, 'https://ror.org/018zf4j27', 'no', 1, 'https://ror.org/018zf4j27 Gjerdrum kommune'),
(34393, 'https://ror.org/05ahdc712', 'en', 1, 'https://ror.org/05ahdc712 GS1 Norway'),
(34394, 'https://ror.org/031m7k936', 'no_lang_code', 1, 'https://ror.org/031m7k936 Gjøco (Norway)'),
(34395, 'https://ror.org/02negn633', 'no_lang_code', 1, 'https://ror.org/02negn633 ICT Group (Norway)'),
(34396, 'https://ror.org/02ykc9w32', 'no_lang_code', 1, 'https://ror.org/02ykc9w32 Holmens (Norway)'),
(34397, 'https://ror.org/047eb3p71', 'no_lang_code', 1, 'https://ror.org/047eb3p71 Gudbrandsdalsmat (Norway)'),
(34398, 'https://ror.org/011fsqw83', 'no_lang_code', 1, 'https://ror.org/011fsqw83 HomeControl (Norway)'),
(34399, 'https://ror.org/00caaxe50', 'no_lang_code', 1, 'https://ror.org/00caaxe50 Idex (Norway)'),
(34400, 'https://ror.org/036jhyh48', 'no_lang_code', 1, 'https://ror.org/036jhyh48 Ko-Aks (Norway)'),
(34401, 'https://ror.org/010e7qh86', 'no_lang_code', 1, 'https://ror.org/010e7qh86 Idrettssenteret (Norway)'),
(34402, 'https://ror.org/034yp4s66', 'no_lang_code', 1, 'https://ror.org/034yp4s66 Austevoll Seafood (Norway)'),
(34403, 'https://ror.org/01z9pc360', 'no_lang_code', 1, 'https://ror.org/01z9pc360 GK (Norway)'),
(34404, 'https://ror.org/04zab0068', 'no_lang_code', 1, 'https://ror.org/04zab0068 Industriell Design og Teknologi (Norway)'),
(34405, 'https://ror.org/017apa262', 'no_lang_code', 1, 'https://ror.org/017apa262 Gurskøy (Norway)'),
(34406, 'https://ror.org/02vzn9b06', 'no_lang_code', 1, 'https://ror.org/02vzn9b06 Idteq (Norway)'),
(34407, 'https://ror.org/05tqjf426', 'en', 1, 'https://ror.org/05tqjf426 Inspiria Science Center'),
(34408, 'https://ror.org/016zetd68', 'no_lang_code', 1, 'https://ror.org/016zetd68 iExcel (Norway)'),
(34409, 'https://ror.org/040tq8233', 'no_lang_code', 1, 'https://ror.org/040tq8233 Aschehoug (Norway)'),
(34410, 'https://ror.org/05kxjz795', 'no_lang_code', 1, 'https://ror.org/05kxjz795 H. J. Kyvik (Norway)'),
(34411, 'https://ror.org/022qggq29', 'en', 1, 'https://ror.org/022qggq29 Hordaland County Council'),
(34412, 'https://ror.org/03dbk8y32', 'no_lang_code', 1, 'https://ror.org/03dbk8y32 H. Henriksen (Norway)'),
(34413, 'https://ror.org/01z00ad02', 'no_lang_code', 1, 'https://ror.org/01z00ad02 EFD Induction (Norway)'),
(34414, 'https://ror.org/043ysjp15', 'no_lang_code', 1, 'https://ror.org/043ysjp15 Hacienda (Norway)'),
(34415, 'https://ror.org/05sdds724', 'no_lang_code', 1, 'https://ror.org/05sdds724 Hafenstrom (Norway)'),
(34416, 'https://ror.org/03xckv489', 'no', 1, 'https://ror.org/03xckv489 Institutt for Grafiske Medier'),
(34417, 'https://ror.org/01qvdnz37', 'no_lang_code', 1, 'https://ror.org/01qvdnz37 Hafslund (Norway)'),
(34418, 'https://ror.org/00jkcwn82', 'no_lang_code', 1, 'https://ror.org/00jkcwn82 IKM Group (Norway)'),
(34419, 'https://ror.org/01re9k832', 'no', 1, 'https://ror.org/01re9k832 Hornindal Kommune'),
(34420, 'https://ror.org/02s2gmj52', 'no_lang_code', 1, 'https://ror.org/02s2gmj52 Effect Ships International (Norway)'),
(34421, 'https://ror.org/024nns705', 'en', 1, 'https://ror.org/024nns705 Tana Municipality'),
(34422, 'https://ror.org/02w8d2553', 'no', 1, 'https://ror.org/02w8d2553 Åmot Kommune'),
(34423, 'https://ror.org/036nbhr81', 'no', 1, 'https://ror.org/036nbhr81 Fjell Kommune'),
(34424, 'https://ror.org/05272pa41', 'en', 1, 'https://ror.org/05272pa41 Municipality of Andebu'),
(34425, 'https://ror.org/035vexy28', 'no_lang_code', 1, 'https://ror.org/035vexy28 Hørselslaben (Norway)'),
(34426, 'https://ror.org/04hy2yk18', 'no', 1, 'https://ror.org/04hy2yk18 Egal Teater'),
(34427, 'https://ror.org/02yag5627', 'no', 1, 'https://ror.org/02yag5627 Egede Instituttet'),
(34428, 'https://ror.org/03t9p8264', 'no_lang_code', 1, 'https://ror.org/03t9p8264 Scandinavian Business Seating (Norway)'),
(34429, 'https://ror.org/02xnfye26', 'no_lang_code', 1, 'https://ror.org/02xnfye26 Egersund Group (Norway)'),
(34430, 'https://ror.org/05pz81c75', 'no', 1, 'https://ror.org/05pz81c75 Hospital IT'),
(34431, 'https://ror.org/03jx3ep44', 'no', 1, 'https://ror.org/03jx3ep44 Church Educational Centre Kirkelig Pedagogisk Senter'),
(34432, 'https://ror.org/00nexa929', 'no_lang_code', 1, 'https://ror.org/00nexa929 Eidsiva Bredbånd (Norway)'),
(34433, 'https://ror.org/0095jfr46', 'no_lang_code', 1, 'https://ror.org/0095jfr46 IKT Indre Namdal (Norway)'),
(34434, 'https://ror.org/027pytp55', 'no', 1, 'https://ror.org/027pytp55 Eidskog Kommune'),
(34435, 'https://ror.org/05q84jy08', 'no_lang_code', 1, 'https://ror.org/05q84jy08 IKT-Norge (Norway)'),
(34436, 'https://ror.org/0184ryh50', 'no', 1, 'https://ror.org/0184ryh50 Hospital Organiser'),
(34437, 'https://ror.org/00rc8te69', 'en', 1, 'https://ror.org/00rc8te69 ICT Telemark'),
(34438, 'https://ror.org/00j3ph269', 'no_lang_code', 1, 'https://ror.org/00j3ph269 International technology Alliance (Norway)'),
(34439, 'https://ror.org/02r92m054', 'no_lang_code', 1, 'https://ror.org/02r92m054 Hagen (Norway)'),
(34440, 'https://ror.org/051srph65', 'no_lang_code', 1, 'https://ror.org/051srph65 Imatis (Norway)'),
(34441, 'https://ror.org/01h16sk12', 'no_lang_code', 1, 'https://ror.org/01h16sk12 Ekornes (Norway)'),
(34442, 'https://ror.org/026y8kf09', 'no_lang_code', 1, 'https://ror.org/026y8kf09 Halify (Norway)'),
(34443, 'https://ror.org/000qg2787', 'no_lang_code', 1, 'https://ror.org/000qg2787 Imerso (Norway)'),
(34444, 'https://ror.org/01e91b575', 'no_lang_code', 1, 'https://ror.org/01e91b575 Elecde (Norway)'),
(34445, 'https://ror.org/05h4txh72', 'no_lang_code', 1, 'https://ror.org/05h4txh72 Hotel Ullensvang (Norway)'),
(34446, 'https://ror.org/05wnbm742', 'no_lang_code', 1, 'https://ror.org/05wnbm742 Hallingplast (Norway)'),
(34447, 'https://ror.org/004xrke09', 'no_lang_code', 1, 'https://ror.org/004xrke09 Halogen (Norway)'),
(34448, 'https://ror.org/04zqksp15', 'en', 1, 'https://ror.org/04zqksp15 International Society for Ecological Economics'),
(34449, 'https://ror.org/02a3v6h38', 'no_lang_code', 1, 'https://ror.org/02a3v6h38 Electrical Subsea and Drilling (Norway)'),
(34450, 'https://ror.org/00c1cxt77', 'no_lang_code', 1, 'https://ror.org/00c1cxt77 Industry Media Group (Norway)'),
(34451, 'https://ror.org/03crstk25', 'no_lang_code', 1, 'https://ror.org/03crstk25 Jomar (Norway)'),
(34452, 'https://ror.org/034wdms74', 'no', 1, 'https://ror.org/034wdms74 Løvenskiold Fossum'),
(34453, 'https://ror.org/04p94x951', 'no_lang_code', 1, 'https://ror.org/04p94x951 Maritime Suppliers (Norway)'),
(34454, 'https://ror.org/0210sec94', 'no_lang_code', 1, 'https://ror.org/0210sec94 Hammertech (Norway)'),
(34455, 'https://ror.org/01vd9vr78', 'no_lang_code', 1, 'https://ror.org/01vd9vr78 Halvors Tradisjonsfisk (Norway)'),
(34456, 'https://ror.org/01mr84c03', 'no_lang_code', 1, 'https://ror.org/01mr84c03 Ipark (Norway)'),
(34457, 'https://ror.org/00gmcpk75', 'no_lang_code', 1, 'https://ror.org/00gmcpk75 Impetro International (Norway)'),
(34458, 'https://ror.org/02p932s29', 'no_lang_code', 1, 'https://ror.org/02p932s29 IMPETUS Afea (Norway)'),
(34459, 'https://ror.org/01gzder05', 'no_lang_code', 1, 'https://ror.org/01gzder05 Hans-Petter Brathaug (Norway)'),
(34460, 'https://ror.org/05594xe57', 'no_lang_code', 1, 'https://ror.org/05594xe57 InterMedium (Norway)'),
(34461, 'https://ror.org/0352m1z03', 'no_lang_code', 1, 'https://ror.org/0352m1z03 IMS Group (Norway)'),
(34462, 'https://ror.org/008qzvt03', 'no_lang_code', 1, 'https://ror.org/008qzvt03 Inaq (Norway)'),
(34463, 'https://ror.org/008rxa151', 'no_lang_code', 1, 'https://ror.org/008rxa151 Infrared Clinical Cancer Diagnostics (Norway)'),
(34464, 'https://ror.org/022bcfn34', 'no_lang_code', 1, 'https://ror.org/022bcfn34 Hansen Protection (Norway)'),
(34465, 'https://ror.org/05pgvrp60', 'no_lang_code', 1, 'https://ror.org/05pgvrp60 Hrafn (Norway)'),
(34466, 'https://ror.org/0254m6v25', 'no_lang_code', 1, 'https://ror.org/0254m6v25 Harald Krogsæter (Norway)'),
(34467, 'https://ror.org/05dcmqv57', 'no', 1, 'https://ror.org/05dcmqv57 Inderøy Kommune'),
(34468, 'https://ror.org/00747z152', 'no_lang_code', 1, 'https://ror.org/00747z152 Hardanger Fjordfrukt (Norway)'),
(34469, 'https://ror.org/01xryb297', 'no_lang_code', 1, 'https://ror.org/01xryb297 Indra Navia (Norway)'),
(34470, 'https://ror.org/05pq15235', 'no_lang_code', 1, 'https://ror.org/05pq15235 HS News Systems (Norway)'),
(34471, 'https://ror.org/03526x064', 'no_lang_code', 1, 'https://ror.org/03526x064 Huddlestock Capital (Norway)'),
(34472, 'https://ror.org/00wsgg405', 'no_lang_code', 1, 'https://ror.org/00wsgg405 Integrated Optoelectronics (Norway)'),
(34473, 'https://ror.org/0043mfh16', 'no_lang_code', 1, 'https://ror.org/0043mfh16 Integrated Detector Electronics AS (Norway)'),
(34474, 'https://ror.org/004g4mj14', 'en', 1, 'https://ror.org/004g4mj14 Association for Electrotechnics and Automation in Industry'),
(34475, 'https://ror.org/00gc3ww13', 'no_lang_code', 1, 'https://ror.org/00gc3ww13 Human Factors Solutions (Norway)'),
(34476, 'https://ror.org/04zypah04', 'no_lang_code', 1, 'https://ror.org/04zypah04 L3Harris (Norway)'),
(34477, 'https://ror.org/01p2dyg20', 'no', 1, 'https://ror.org/01p2dyg20 Hattfjelldal Kommune'),
(34478, 'https://ror.org/03z6nc566', 'no_lang_code', 1, 'https://ror.org/03z6nc566 Atheno (Norway)'),
(34479, 'https://ror.org/044xa2871', 'no_lang_code', 1, 'https://ror.org/044xa2871 Human Dialog (Norway)'),
(34480, 'https://ror.org/00bxnjh68', 'no_lang_code', 1, 'https://ror.org/00bxnjh68 Hunton Fiber (Norway)'),
(34481, 'https://ror.org/05dtsch22', 'no_lang_code', 1, 'https://ror.org/05dtsch22 Ispas (Norway)'),
(34482, 'https://ror.org/04dcv0236', 'en', 1, 'https://ror.org/04dcv0236 Norwegian State Housing Bank'),
(34483, 'https://ror.org/03y615034', 'no_lang_code', 1, 'https://ror.org/03y615034 Insurance Process Management (Norway)'),
(34484, 'https://ror.org/0315kxv51', 'no_lang_code', 1, 'https://ror.org/0315kxv51 HV Plast (Norway)'),
(34485, 'https://ror.org/03vaa9790', 'no_lang_code', 1, 'https://ror.org/03vaa9790 ITS (Norway)'),
(34486, 'https://ror.org/04b3dbk68', 'en', 1, 'https://ror.org/04b3dbk68 Institute for Comparative Research in Human Culture'),
(34487, 'https://ror.org/0385e5n50', 'no_lang_code', 1, 'https://ror.org/0385e5n50 Ineos (Norway)'),
(34488, 'https://ror.org/00ag1gh03', 'en', 1, 'https://ror.org/00ag1gh03 WhaleSafari'),
(34489, 'https://ror.org/05mcw8n93', 'en', 1, 'https://ror.org/05mcw8n93 Hedmark County Council'),
(34490, 'https://ror.org/05mw8qs29', 'no_lang_code', 1, 'https://ror.org/05mw8qs29 Hedmark IKT (Norway)'),
(34491, 'https://ror.org/0176ge440', 'no_lang_code', 1, 'https://ror.org/0176ge440 IV Group (Norway)'),
(34492, 'https://ror.org/02sdj1163', 'no_lang_code', 1, 'https://ror.org/02sdj1163 HyBond (Norway)'),
(34493, 'https://ror.org/0547sph41', 'no', 1, 'https://ror.org/0547sph41 Hedmark Kunnskapspark'),
(34494, 'https://ror.org/00pndr306', 'no_lang_code', 1, 'https://ror.org/00pndr306 Hybrid Energy (Norway)'),
(34495, 'https://ror.org/03w5c7758', 'no_lang_code', 1, 'https://ror.org/03w5c7758 Heggset Engineering (Norway)'),
(34496, 'https://ror.org/0239h0795', 'no_lang_code', 1, 'https://ror.org/0239h0795 Interon (Norway)'),
(34497, 'https://ror.org/0038s7b86', 'no_lang_code', 1, 'https://ror.org/0038s7b86 Helland Møbler (Norway)'),
(34498, 'https://ror.org/02c1wa369', 'no_lang_code', 1, 'https://ror.org/02c1wa369 Interwell (Norway)'),
(34499, 'https://ror.org/00agykx25', 'no_lang_code', 1, 'https://ror.org/00agykx25 Hydal Aluminium Profiler (Norway)'),
(34500, 'https://ror.org/04ehecb51', 'no_lang_code', 1, 'https://ror.org/04ehecb51 Intrapoint (Norway)'),
(34501, 'https://ror.org/04y0g6r28', 'no_lang_code', 1, 'https://ror.org/04y0g6r28 TechnipFMC (Norway)'),
(34502, 'https://ror.org/02crxt883', 'no_lang_code', 1, 'https://ror.org/02crxt883 Intravision Group (Norway)'),
(34503, 'https://ror.org/05ka2ew29', 'no', 1, 'https://ror.org/05ka2ew29 Helse Møre og Romsdal HF'),
(34504, 'https://ror.org/01cydpj49', 'no_lang_code', 1, 'https://ror.org/01cydpj49 InNano (Norway)'),
(34505, 'https://ror.org/04q5jra63', 'no_lang_code', 1, 'https://ror.org/04q5jra63 Inven2 (Norway)'),
(34506, 'https://ror.org/04xmgtd15', 'no_lang_code', 1, 'https://ror.org/04xmgtd15 Invenia (Norway)'),
(34507, 'https://ror.org/03fjs1746', 'no_lang_code', 1, 'https://ror.org/03fjs1746 Herbjørn Kolstad (Norway)'),
(34508, 'https://ror.org/0399rn938', 'no_lang_code', 1, 'https://ror.org/0399rn938 Inventas (Norway)'),
(34509, 'https://ror.org/001212e83', 'en', 1, 'https://ror.org/001212e83 Western Norway Regional Health Authority'),
(34510, 'https://ror.org/008x0kw97', 'no_lang_code', 1, 'https://ror.org/008x0kw97 Inventi (Norway)'),
(34511, 'https://ror.org/02yxcv577', 'no_lang_code', 1, 'https://ror.org/02yxcv577 Kom Forlag (Norway)'),
(34512, 'https://ror.org/03gde5b77', 'no_lang_code', 1, 'https://ror.org/03gde5b77 IOR Chemco (Norway)'),
(34513, 'https://ror.org/00k172x46', 'no_lang_code', 1, 'https://ror.org/00k172x46 Innotech Solar (Norway)'),
(34514, 'https://ror.org/02k2nf272', 'no_lang_code', 1, 'https://ror.org/02k2nf272 Innova (Norway)'),
(34515, 'https://ror.org/04jw7he54', 'no', 1, 'https://ror.org/04jw7he54 Jærmuseet'),
(34516, 'https://ror.org/001dvq796', 'no', 1, 'https://ror.org/001dvq796 Hemne Kommune'),
(34517, 'https://ror.org/05vyesa56', 'no_lang_code', 1, 'https://ror.org/05vyesa56 Kongsberg Automotive (Norway)'),
(34518, 'https://ror.org/03dxa6r53', 'no_lang_code', 1, 'https://ror.org/03dxa6r53 Hemnes Mekaniske Verksted (Norway)'),
(34519, 'https://ror.org/01yq0dc07', 'no_lang_code', 1, 'https://ror.org/01yq0dc07 Innovation Performance (Norway)'),
(34520, 'https://ror.org/01f2vgw59', 'en', 1, 'https://ror.org/01f2vgw59 Norwegian National Rail Administration'),
(34521, 'https://ror.org/03bpgs673', 'no_lang_code', 1, 'https://ror.org/03bpgs673 Linus (Norway)'),
(34522, 'https://ror.org/04zppa787', 'no_lang_code', 1, 'https://ror.org/04zppa787 Jets Vacuum (Norway)'),
(34523, 'https://ror.org/002wqxx21', 'no_lang_code', 1, 'https://ror.org/002wqxx21 Lipidx (Norway)'),
(34524, 'https://ror.org/02pkggd65', 'no_lang_code', 1, 'https://ror.org/02pkggd65 Innoventus Sør (Norway)'),
(34525, 'https://ror.org/030maey82', 'no_lang_code', 1, 'https://ror.org/030maey82 Heads (Norway)'),
(34526, 'https://ror.org/01x3q7681', 'no_lang_code', 1, 'https://ror.org/01x3q7681 Liquiline (Norway)'),
(34527, 'https://ror.org/0590q1218', 'en', 1, 'https://ror.org/0590q1218 Innovest'),
(34528, 'https://ror.org/04bsr5107', 'no_lang_code', 1, 'https://ror.org/04bsr5107 Helly Hansen (Norway)'),
(34529, 'https://ror.org/014dynf21', 'no_lang_code', 1, 'https://ror.org/014dynf21 InnSep (Norway)'),
(34530, 'https://ror.org/020f80982', 'no_lang_code', 1, 'https://ror.org/020f80982 Lividi (Norway)'),
(34531, 'https://ror.org/05kv62m20', 'no_lang_code', 1, 'https://ror.org/05kv62m20 Memscap (Norway)'),
(34532, 'https://ror.org/018049485', 'no_lang_code', 1, 'https://ror.org/018049485 Enghouse Systems (Norway)'),
(34533, 'https://ror.org/027s4f313', 'no_lang_code', 1, 'https://ror.org/027s4f313 Menon Business Economics (Norway)'),
(34534, 'https://ror.org/00sxf2f02', 'no_lang_code', 1, 'https://ror.org/00sxf2f02 Inovyn Norge (Norway)'),
(34535, 'https://ror.org/04zeekc72', 'no', 1, 'https://ror.org/04zeekc72 Lødingen kommune'),
(34536, 'https://ror.org/00bg5ds86', 'no_lang_code', 1, 'https://ror.org/00bg5ds86 JointBiomed (Norway)'),
(34537, 'https://ror.org/01vkqwg02', 'no_lang_code', 1, 'https://ror.org/01vkqwg02 InPhase Solutions (Norway)'),
(34538, 'https://ror.org/04pbpmy81', 'no_lang_code', 1, 'https://ror.org/04pbpmy81 Joma International (Norway)'),
(34539, 'https://ror.org/04dacm347', 'no_lang_code', 1, 'https://ror.org/04dacm347 Mentum (Norway)'),
(34540, 'https://ror.org/05ggnc709', 'no_lang_code', 1, 'https://ror.org/05ggnc709 Inpower (Norway)'),
(34541, 'https://ror.org/00fst5z79', 'no', 1, 'https://ror.org/00fst5z79 Lofotrådet'),
(34542, 'https://ror.org/02qkr4e94', 'no_lang_code', 1, 'https://ror.org/02qkr4e94 Inspirator (Norway)'),
(34543, 'https://ror.org/04p8aem44', 'no_lang_code', 1, 'https://ror.org/04p8aem44 Logiq (Norway)'),
(34544, 'https://ror.org/0589hep89', 'en', 1, 'https://ror.org/0589hep89 Norwegian Centre for Space-related Education'),
(34545, 'https://ror.org/04gc45324', 'no_lang_code', 1, 'https://ror.org/04gc45324 Jool Capital Partner (Norway)'),
(34546, 'https://ror.org/042eq7k73', 'no_lang_code', 1, 'https://ror.org/042eq7k73 Semcon (Norway)'),
(34547, 'https://ror.org/04z6y5271', 'no_lang_code', 1, 'https://ror.org/04z6y5271 Mepex Consult (Norway)'),
(34548, 'https://ror.org/01rwa6k95', 'no_lang_code', 1, 'https://ror.org/01rwa6k95 Kongsberg Innovasjon (Norway)'),
(34549, 'https://ror.org/042epp307', 'no_lang_code', 1, 'https://ror.org/042epp307 Jøtul (Norway)'),
(34550, 'https://ror.org/02rjd3g51', 'no_lang_code', 1, 'https://ror.org/02rjd3g51 Jotun (Norway)'),
(34551, 'https://ror.org/02az81309', 'no_lang_code', 1, 'https://ror.org/02az81309 Konjekt (Norway)'),
(34552, 'https://ror.org/00n12r929', 'no_lang_code', 1, 'https://ror.org/00n12r929 MESH (Norway)'),
(34553, 'https://ror.org/00vbqcv97', 'no', 1, 'https://ror.org/00vbqcv97 Narvik Sykehus'),
(34554, 'https://ror.org/01k8p3j71', 'no_lang_code', 1, 'https://ror.org/01k8p3j71 Lattix (Norway)'),
(34555, 'https://ror.org/002dg3j61', 'no', 1, 'https://ror.org/002dg3j61 NHO Logistikk og Transport'),
(34556, 'https://ror.org/01kpx5a10', 'no_lang_code', 1, 'https://ror.org/01kpx5a10 Mestergruppen (Norway)'),
(34557, 'https://ror.org/00nqqgg17', 'en', 1, 'https://ror.org/00nqqgg17 National Security Authority'),
(34558, 'https://ror.org/05de59334', 'en', 1, 'https://ror.org/05de59334 Kristiansand Municipality'),
(34559, 'https://ror.org/00t3epc32', 'no_lang_code', 1, 'https://ror.org/00t3epc32 Kruse Smith (Norway)'),
(34560, 'https://ror.org/05b5whm83', 'en', 1, 'https://ror.org/05b5whm83 Norwegian Agency for Quality Assurance in Education'),
(34561, 'https://ror.org/03m6mr356', 'no_lang_code', 1, 'https://ror.org/03m6mr356 Metafocus (Norway)'),
(34562, 'https://ror.org/02qqapf71', 'no_lang_code', 1, 'https://ror.org/02qqapf71 National Oilwell Varco (Norway)'),
(34563, 'https://ror.org/044qsan02', 'no_lang_code', 1, 'https://ror.org/044qsan02 Lumex (Norway)'),
(34564, 'https://ror.org/037sc9d45', 'en', 1, 'https://ror.org/037sc9d45 Lillestrøm Centre of Expertise'),
(34565, 'https://ror.org/01yr8vh25', 'no_lang_code', 1, 'https://ror.org/01yr8vh25 K.A. Rasmussen (Norway)'),
(34566, 'https://ror.org/00te78715', 'no_lang_code', 1, 'https://ror.org/00te78715 Metallco (Norway)'),
(34567, 'https://ror.org/02ghdr016', 'no', 1, 'https://ror.org/02ghdr016 Nasjonalmuseet National Museum of Art, Architecture and Design'),
(34568, 'https://ror.org/023q7sf47', 'no_lang_code', 1, 'https://ror.org/023q7sf47 Bodø Science Park (Norway)'),
(34569, 'https://ror.org/00z12fn95', 'no', 1, 'https://ror.org/00z12fn95 Lundes Gartneri'),
(34570, 'https://ror.org/03dbjrt28', 'no_lang_code', 1, 'https://ror.org/03dbjrt28 Kverneland Aqua (Norway)'),
(34571, 'https://ror.org/04fd1r707', 'no_lang_code', 1, 'https://ror.org/04fd1r707 Kverneland Group (Norway)'),
(34572, 'https://ror.org/018ay6c72', 'no_lang_code', 1, 'https://ror.org/018ay6c72 Beisfjord Sementvarefabrikk (Norway)'),
(34573, 'https://ror.org/04v8gpn54', 'no', 1, 'https://ror.org/04v8gpn54 Kvinner i Skogbruket'),
(34574, 'https://ror.org/057919b11', 'no_lang_code', 1, 'https://ror.org/057919b11 K & K Designs (Norway)'),
(34575, 'https://ror.org/028t3qn68', 'no_lang_code', 1, 'https://ror.org/028t3qn68 Meventus (Norway)'),
(34576, 'https://ror.org/05baenv82', 'no_lang_code', 1, 'https://ror.org/05baenv82 Luxo (Norway)'),
(34577, 'https://ror.org/0328dqn15', 'en', 1, 'https://ror.org/0328dqn15 Norwegian Coastal Administration'),
(34578, 'https://ror.org/01zpfhn04', 'no_lang_code', 1, 'https://ror.org/01zpfhn04 Nattopharma (Norway)'),
(34579, 'https://ror.org/031nbsp88', 'no_lang_code', 1, 'https://ror.org/031nbsp88 MHWirth (Norway)'),
(34580, 'https://ror.org/04kzyq982', 'no_lang_code', 1, 'https://ror.org/04kzyq982 LABO Mixed Realities (Norway)'),
(34581, 'https://ror.org/02z6mh533', 'no_lang_code', 1, 'https://ror.org/02z6mh533 Kahoot (Norway)'),
(34582, 'https://ror.org/01kyk7057', 'no_lang_code', 1, 'https://ror.org/01kyk7057 Kaleidoskopet (Norway)'),
(34583, 'https://ror.org/00kpyx284', 'no_lang_code', 1, 'https://ror.org/00kpyx284 Naturbilder (Norway)'),
(34584, 'https://ror.org/01gbtqs26', 'no_lang_code', 1, 'https://ror.org/01gbtqs26 MicroA (Norway)'),
(34585, 'https://ror.org/03bh7xn56', 'en', 1, 'https://ror.org/03bh7xn56 Laerdal Global Health'),
(34586, 'https://ror.org/00xxveb47', 'no_lang_code', 1, 'https://ror.org/00xxveb47 Kalkulo (Norway)'),
(34587, 'https://ror.org/04tfeav65', 'no_lang_code', 1, 'https://ror.org/04tfeav65 Nature Oil & Gas (Norway)'),
(34588, 'https://ror.org/02e6g6a88', 'no_lang_code', 1, 'https://ror.org/02e6g6a88 Laerdal (Norway)'),
(34589, 'https://ror.org/02raeh877', 'no_lang_code', 1, 'https://ror.org/02raeh877 Microbeads (Norway)'),
(34590, 'https://ror.org/00qqspx12', 'no_lang_code', 1, 'https://ror.org/00qqspx12 Kappa Bioscience (Norway)'),
(34591, 'https://ror.org/0496qn750', 'no', 1, 'https://ror.org/0496qn750 Lyskultur'),
(34592, 'https://ror.org/016ftvg65', 'no_lang_code', 1, 'https://ror.org/016ftvg65 Lytix Biopharma (Norway)'),
(34593, 'https://ror.org/036evcw04', 'no_lang_code', 1, 'https://ror.org/036evcw04 M3 Helse'),
(34594, 'https://ror.org/050c4yn95', 'en', 1, 'https://ror.org/050c4yn95 County Governor of Sør-Trøndelag'),
(34595, 'https://ror.org/01x99wc57', 'no_lang_code', 1, 'https://ror.org/01x99wc57 MicroTech Innovation (Norway)'),
(34596, 'https://ror.org/00bfqf394', 'no', 1, 'https://ror.org/00bfqf394 Karasjok Kommune'),
(34597, 'https://ror.org/05kwv6m71', 'no_lang_code', 1, 'https://ror.org/05kwv6m71 Macgregor Pusnes (Norway)'),
(34598, 'https://ror.org/05tbw7g42', 'no_lang_code', 1, 'https://ror.org/05tbw7g42 Karde (Norway)'),
(34599, 'https://ror.org/01fnbm952', 'no_lang_code', 1, 'https://ror.org/01fnbm952 Madshus (Norway)'),
(34600, 'https://ror.org/0021b8g40', 'no_lang_code', 1, 'https://ror.org/0021b8g40 Naviaq (Norway)'),
(34601, 'https://ror.org/036fhj216', 'no', 1, 'https://ror.org/036fhj216 Mære Landbruksskole'),
(34602, 'https://ror.org/00qjyjx92', 'no_lang_code', 1, 'https://ror.org/00qjyjx92 Langlee Wave Power (Norway)'),
(34603, 'https://ror.org/0422n9778', 'no_lang_code', 1, 'https://ror.org/0422n9778 Magtech (Norway)'),
(34604, 'https://ror.org/0108yh543', 'no_lang_code', 1, 'https://ror.org/0108yh543 Making View (Norway)'),
(34605, 'https://ror.org/02729dt24', 'no_lang_code', 1, 'https://ror.org/02729dt24 NavSys (Norway)'),
(34606, 'https://ror.org/05sjrmw93', 'no_lang_code', 1, 'https://ror.org/05sjrmw93 Kebony (Norway)'),
(34607, 'https://ror.org/031x8mb64', 'no_lang_code', 1, 'https://ror.org/031x8mb64 Måltidets (Norway)'),
(34608, 'https://ror.org/04d1j9a12', 'no_lang_code', 1, 'https://ror.org/04d1j9a12 Lanopro (Norway)'),
(34609, 'https://ror.org/01da73p86', 'no_lang_code', 1, 'https://ror.org/01da73p86 Keep-it Technologies (Norway)'),
(34610, 'https://ror.org/04yqgnw12', 'no_lang_code', 1, 'https://ror.org/04yqgnw12 Miko Marine (Norway)'),
(34611, 'https://ror.org/00313pn56', 'en', 1, 'https://ror.org/00313pn56 Other Side Studio'),
(34612, 'https://ror.org/01gz2ss49', 'no_lang_code', 1, 'https://ror.org/01gz2ss49 Kelda Drilling Controls (Norway)'),
(34613, 'https://ror.org/00xxfcb49', 'no_lang_code', 1, 'https://ror.org/00xxfcb49 Navtor (Norway)'),
(34614, 'https://ror.org/051p4t773', 'en', 1, 'https://ror.org/051p4t773 Institute for Church, Religion, and Worldview Research'),
(34615, 'https://ror.org/03ejke973', 'no_lang_code', 1, 'https://ror.org/03ejke973 NCC (Norway)');
INSERT INTO `rors` VALUES
(34616, 'https://ror.org/058ran651', 'no_lang_code', 1, 'https://ror.org/058ran651 King Oscar (Norway)'),
(34617, 'https://ror.org/042s2r166', 'no_lang_code', 1, 'https://ror.org/042s2r166 Marine Constructions (Norway)'),
(34618, 'https://ror.org/05cn1e898', 'no_lang_code', 1, 'https://ror.org/05cn1e898 Miljøkom (Norway)'),
(34619, 'https://ror.org/037e53n70', 'no_lang_code', 1, 'https://ror.org/037e53n70 Marine design (Norway)'),
(34620, 'https://ror.org/01r3x0471', 'no_lang_code', 1, 'https://ror.org/01r3x0471 Nebb (Norway)'),
(34621, 'https://ror.org/0316g5c30', 'no_lang_code', 1, 'https://ror.org/0316g5c30 Kings Bay (Norway)'),
(34622, 'https://ror.org/01f4ph383', 'no_lang_code', 1, 'https://ror.org/01f4ph383 Miljø-Teknologi (Norway)'),
(34623, 'https://ror.org/03ykazq11', 'no_lang_code', 1, 'https://ror.org/03ykazq11 Nel (Norway)'),
(34624, 'https://ror.org/05sxctv21', 'no_lang_code', 1, 'https://ror.org/05sxctv21 Mills (Norway)'),
(34625, 'https://ror.org/05ng62226', 'no_lang_code', 1, 'https://ror.org/05ng62226 Kitemill (Norway)'),
(34626, 'https://ror.org/019dzwc76', 'no', 1, 'https://ror.org/019dzwc76 Lebesby kommune'),
(34627, 'https://ror.org/01d43dx11', 'no_lang_code', 1, 'https://ror.org/01d43dx11 Lectinect (Norway)'),
(34628, 'https://ror.org/04v86g664', 'no_lang_code', 1, 'https://ror.org/04v86g664 MiniHydro (Norway)'),
(34629, 'https://ror.org/055fzjh61', 'no_lang_code', 1, 'https://ror.org/055fzjh61 Neorad (Norway)'),
(34630, 'https://ror.org/02e3ta377', 'no_lang_code', 1, 'https://ror.org/02e3ta377 Kjeldstad (Norway)'),
(34631, 'https://ror.org/04c0mxs15', 'no_lang_code', 1, 'https://ror.org/04c0mxs15 Leif Høegh (Norway)'),
(34632, 'https://ror.org/01vt9fn98', 'en', 1, 'https://ror.org/01vt9fn98 Maritime CleanTech West'),
(34633, 'https://ror.org/042vs4796', 'no_lang_code', 1, 'https://ror.org/042vs4796 Nergård (Norway)'),
(34634, 'https://ror.org/000e19x32', 'no_lang_code', 1, 'https://ror.org/000e19x32 Kjeller Innovasjon (Norway) Kjeller Innovation'),
(34635, 'https://ror.org/006mjdb74', 'no_lang_code', 1, 'https://ror.org/006mjdb74 Miriam (Norway)'),
(34636, 'https://ror.org/00hpvb303', 'no_lang_code', 1, 'https://ror.org/00hpvb303 Leiv Eiriksson Nyskaping (Norway)'),
(34637, 'https://ror.org/04v3sbr52', 'no_lang_code', 1, 'https://ror.org/04v3sbr52 Kjeller Vindteknikk (Norway)'),
(34638, 'https://ror.org/04kt5nj50', 'no_lang_code', 1, 'https://ror.org/04kt5nj50 Maritime Møbler (Norway)'),
(34639, 'https://ror.org/02mfvb853', 'no_lang_code', 1, 'https://ror.org/02mfvb853 Miros (Norway)'),
(34640, 'https://ror.org/05hqmfz74', 'no', 1, 'https://ror.org/05hqmfz74 Nes Kommune'),
(34641, 'https://ror.org/01bfb0f53', 'no_lang_code', 1, 'https://ror.org/01bfb0f53 Maritime Robotics (Norway)'),
(34642, 'https://ror.org/04wyvw190', 'no', 1, 'https://ror.org/04wyvw190 Nesna Kommune'),
(34643, 'https://ror.org/05sa5v987', 'no', 1, 'https://ror.org/05sa5v987 Lenvik kommune'),
(34644, 'https://ror.org/050phsp73', 'no', 1, 'https://ror.org/050phsp73 Markedhøyskolen'),
(34645, 'https://ror.org/016thfw32', 'no_lang_code', 1, 'https://ror.org/016thfw32 Kjemi (Norway)'),
(34646, 'https://ror.org/05d4adb22', 'no_lang_code', 1, 'https://ror.org/05d4adb22 Mustad Autoline (Norway)'),
(34647, 'https://ror.org/02te9ba85', 'no_lang_code', 1, 'https://ror.org/02te9ba85 Nettverk Norge (Norway)'),
(34648, 'https://ror.org/03cnzfb68', 'no_lang_code', 1, 'https://ror.org/03cnzfb68 Lerøy (Norway)'),
(34649, 'https://ror.org/02wsxm934', 'no_lang_code', 1, 'https://ror.org/02wsxm934 Lerum (Norway)'),
(34650, 'https://ror.org/024a7ry57', 'en', 1, 'https://ror.org/024a7ry57 Kjeøy Research & Education Center Trading Post and Fishing Village'),
(34651, 'https://ror.org/02ans6w40', 'en', 1, 'https://ror.org/02ans6w40 Network Learning Lab'),
(34652, 'https://ror.org/02rxw4j53', 'no_lang_code', 1, 'https://ror.org/02rxw4j53 Light Emergency Stretcher Systems (Norway)'),
(34653, 'https://ror.org/02kxhwm03', 'no_lang_code', 1, 'https://ror.org/02kxhwm03 Mjøsen Skog (Norway)'),
(34654, 'https://ror.org/04agghx84', 'en', 1, 'https://ror.org/04agghx84 MarLife (Norway)'),
(34655, 'https://ror.org/05bvm3t13', 'no_lang_code', 1, 'https://ror.org/05bvm3t13 Marna Motor (Norway)'),
(34656, 'https://ror.org/0109vey20', 'no_lang_code', 1, 'https://ror.org/0109vey20 Marlo (Norway)'),
(34657, 'https://ror.org/03hsyk684', 'no_lang_code', 1, 'https://ror.org/03hsyk684 Nextera (Norway)'),
(34658, 'https://ror.org/055081974', 'no_lang_code', 1, 'https://ror.org/055081974 Lid Invest (Norway)'),
(34659, 'https://ror.org/05ftebz76', 'no_lang_code', 1, 'https://ror.org/05ftebz76 Masiv Bygg (Norway)'),
(34660, 'https://ror.org/0379wsf91', 'no_lang_code', 1, 'https://ror.org/0379wsf91 Nextsys (Norway)'),
(34661, 'https://ror.org/016mx6p04', 'no_lang_code', 1, 'https://ror.org/016mx6p04 Liegruppen (Norway)'),
(34662, 'https://ror.org/03cqkrn62', 'no_lang_code', 1, 'https://ror.org/03cqkrn62 Massefabrikken'),
(34663, 'https://ror.org/00vby1197', 'no_lang_code', 1, 'https://ror.org/00vby1197 MMC Green Technology (Norway)'),
(34664, 'https://ror.org/00zhnhw93', 'no_lang_code', 1, 'https://ror.org/00zhnhw93 Matpartner (Norway)'),
(34665, 'https://ror.org/0535s4372', 'no_lang_code', 1, 'https://ror.org/0535s4372 Mobilarm (Norway)'),
(34666, 'https://ror.org/05s3m5a67', 'no_lang_code', 1, 'https://ror.org/05s3m5a67 Max Manus (Norway)'),
(34667, 'https://ror.org/05ea91r51', 'no', 1, 'https://ror.org/05ea91r51 Norsk Gartnerforbund'),
(34668, 'https://ror.org/02h59q288', 'en', 1, 'https://ror.org/02h59q288 Lillehammer Municipality'),
(34669, 'https://ror.org/03ss19281', 'no', 1, 'https://ror.org/03ss19281 Klepp Kommune'),
(34670, 'https://ror.org/00d64xh03', 'no_lang_code', 1, 'https://ror.org/00d64xh03 Maxeta (Norway)'),
(34671, 'https://ror.org/00fs6w428', 'no_lang_code', 1, 'https://ror.org/00fs6w428 MazeMap (Norway)'),
(34672, 'https://ror.org/01jww0j97', 'no_lang_code', 1, 'https://ror.org/01jww0j97 Kleven Maritime (Norway)'),
(34673, 'https://ror.org/01mccm505', 'no_lang_code', 1, 'https://ror.org/01mccm505 Meawallet (Norway)'),
(34674, 'https://ror.org/012ezqr21', 'no_lang_code', 1, 'https://ror.org/012ezqr21 Norsk Geografisk Selskap'),
(34675, 'https://ror.org/034qf1506', 'no_lang_code', 1, 'https://ror.org/034qf1506 Lindum (Norway)'),
(34676, 'https://ror.org/0065vqr08', 'no_lang_code', 1, 'https://ror.org/0065vqr08 Mobiletech (Norway)'),
(34677, 'https://ror.org/058jj2467', 'no_lang_code', 1, 'https://ror.org/058jj2467 Mechanix Film (Norway)'),
(34678, 'https://ror.org/040dak484', 'no_lang_code', 1, 'https://ror.org/040dak484 Mecmar (Norway)'),
(34679, 'https://ror.org/01rwnqg85', 'no_lang_code', 1, 'https://ror.org/01rwnqg85 Mecsense (Norway)'),
(34680, 'https://ror.org/05vbhz423', 'no_lang_code', 1, 'https://ror.org/05vbhz423 Mectro (Norway)'),
(34681, 'https://ror.org/04kbwjr52', 'no_lang_code', 1, 'https://ror.org/04kbwjr52 Kleive Mekaniske and Industriservice (Norway)'),
(34682, 'https://ror.org/021h8nm63', 'no_lang_code', 1, 'https://ror.org/021h8nm63 Knowit (Norway)'),
(34683, 'https://ror.org/01cb7ff94', 'no_lang_code', 1, 'https://ror.org/01cb7ff94 Nordic Aquafarms (Norway)'),
(34684, 'https://ror.org/048cn7s66', 'en', 1, 'https://ror.org/048cn7s66 MedCoast Scandinavia'),
(34685, 'https://ror.org/03kxws612', 'no_lang_code', 1, 'https://ror.org/03kxws612 Medema (Norway)'),
(34686, 'https://ror.org/05ftva293', 'no_lang_code', 1, 'https://ror.org/05ftva293 Moelven (Norway)'),
(34687, 'https://ror.org/054r3a876', 'no_lang_code', 1, 'https://ror.org/054r3a876 Nordic Mining (Norway)'),
(34688, 'https://ror.org/05mbvyj38', 'no_lang_code', 1, 'https://ror.org/05mbvyj38 Media Lunde Tollefsen (Norway)'),
(34689, 'https://ror.org/009rsfm47', 'no_lang_code', 1, 'https://ror.org/009rsfm47 Medieoperatørene (Norway)'),
(34690, 'https://ror.org/0574vhp63', 'no_lang_code', 1, 'https://ror.org/0574vhp63 Nordic Quantum Computing Group (Norway)'),
(34691, 'https://ror.org/01n70wn69', 'no_lang_code', 1, 'https://ror.org/01n70wn69 Knutsen OAS Shipping (Norway)'),
(34692, 'https://ror.org/00xrcsz24', 'no', 1, 'https://ror.org/00xrcsz24 Hvorfor det'),
(34693, 'https://ror.org/00kmb9t52', 'no', 1, 'https://ror.org/00kmb9t52 Molde kommune'),
(34694, 'https://ror.org/04cp2as26', 'en', 1, 'https://ror.org/04cp2as26 Learn By Motion'),
(34695, 'https://ror.org/03x0ke992', 'no_lang_code', 1, 'https://ror.org/03x0ke992 Thermo Fisher Scientific (Norway)'),
(34696, 'https://ror.org/05rkb4k51', 'no_lang_code', 1, 'https://ror.org/05rkb4k51 Molde Kunnskapspark (Norway)'),
(34697, 'https://ror.org/05kdxv376', 'no_lang_code', 1, 'https://ror.org/05kdxv376 Nordic Seal (Norway)'),
(34698, 'https://ror.org/003ednf28', 'no_lang_code', 1, 'https://ror.org/003ednf28 Norsk Hummer (Norway)'),
(34699, 'https://ror.org/05akpxs80', 'no_lang_code', 1, 'https://ror.org/05akpxs80 Nordic Semiconductor (Norway)'),
(34700, 'https://ror.org/01a6v1434', 'no_lang_code', 1, 'https://ror.org/01a6v1434 Moltres (Norway)'),
(34701, 'https://ror.org/027n0t368', 'no_lang_code', 1, 'https://ror.org/027n0t368 Nordic wildfish (Norway)'),
(34702, 'https://ror.org/04evrma49', 'no_lang_code', 1, 'https://ror.org/04evrma49 Nicarnica Aviation (Norway)'),
(34703, 'https://ror.org/009wzft49', 'en', 1, 'https://ror.org/009wzft49 Norwegian Hydrogen Forum'),
(34704, 'https://ror.org/00fj2g686', 'no_lang_code', 1, 'https://ror.org/00fj2g686 Kontali (Norway)'),
(34705, 'https://ror.org/00rj40e45', 'en', 1, 'https://ror.org/00rj40e45 North Cape Municipality'),
(34706, 'https://ror.org/0418vfj03', 'no', 1, 'https://ror.org/0418vfj03 Norges Ingeniør- og Teknologorganisasjon'),
(34707, 'https://ror.org/032tqk105', 'no_lang_code', 1, 'https://ror.org/032tqk105 Nordlaks (Norway)'),
(34708, 'https://ror.org/04qrzjd35', 'en', 1, 'https://ror.org/04qrzjd35 Nordland County Council'),
(34709, 'https://ror.org/04b4kkz92', 'no_lang_code', 1, 'https://ror.org/04b4kkz92 MedNose (Norway)'),
(34710, 'https://ror.org/034ga4e26', 'no_lang_code', 1, 'https://ror.org/034ga4e26 Moods of Norway (Norway)'),
(34711, 'https://ror.org/04z80h498', 'no', 1, 'https://ror.org/04z80h498 Mektron'),
(34712, 'https://ror.org/014frm951', 'no_lang_code', 1, 'https://ror.org/014frm951 Møre Maritime (Norway)'),
(34713, 'https://ror.org/0198mwj18', 'en', 1, 'https://ror.org/0198mwj18 North Norwegian Art Center'),
(34714, 'https://ror.org/027hr5e81', 'no_lang_code', 1, 'https://ror.org/027hr5e81 Melbu Systems (Norway)'),
(34715, 'https://ror.org/01wvsk422', 'no', 1, 'https://ror.org/01wvsk422 Mellomrom Arkitekturpsykologi'),
(34716, 'https://ror.org/05vb46y86', 'no_lang_code', 1, 'https://ror.org/05vb46y86 MemfoACT (Norway)'),
(34717, 'https://ror.org/059zrhd58', 'no_lang_code', 1, 'https://ror.org/059zrhd58 Norsk Juletre (Norway)'),
(34718, 'https://ror.org/05hyzh026', 'no_lang_code', 1, 'https://ror.org/05hyzh026 Memor Software (Norway)'),
(34719, 'https://ror.org/01a80cj23', 'no_lang_code', 1, 'https://ror.org/01a80cj23 Novartis (Netherlands)'),
(34720, 'https://ror.org/02149rc02', 'en', 1, 'https://ror.org/02149rc02 Vilniaus Šv. Juozapo kunigų seminarija Vilnius St. Joseph Seminary Семинария Святого Иосифа'),
(34721, 'https://ror.org/00ex4he60', 'en', 1, 'https://ror.org/00ex4he60 Virtual High School'),
(34722, 'https://ror.org/049pr6f34', 'en', 1, 'https://ror.org/049pr6f34 Canadian Society of Allergy and Clinical Immunology'),
(34723, 'https://ror.org/03ynjfm77', 'en', 1, 'https://ror.org/03ynjfm77 King & Spalding'),
(34724, 'https://ror.org/02qpb0e30', 'en', 1, 'https://ror.org/02qpb0e30 Kaunas County Public Library'),
(34725, 'https://ror.org/021f7p178', 'en', 1, 'https://ror.org/021f7p178 Lib4RI - Library for the Research Institutes within the ETH Domain: Eawag, Empa, PSI & WSL'),
(34726, 'https://ror.org/01249dt22', 'en', 1, 'https://ror.org/01249dt22 Aqua (France)'),
(34727, 'https://ror.org/00y0tkz25', 'en', 1, 'https://ror.org/00y0tkz25 Australian Law Reform Commission'),
(34728, 'https://ror.org/02ax94a12', 'en', 1, 'https://ror.org/02ax94a12 Addis Continental Institute of Public Health'),
(34729, 'https://ror.org/00nr0z368', 'no_lang_code', 1, 'https://ror.org/00nr0z368 Shaklee (United States)'),
(34730, 'https://ror.org/04nybwt17', 'en', 1, 'https://ror.org/04nybwt17 Therapeutic Guidelines'),
(34731, 'https://ror.org/021jq8741', 'en', 1, 'https://ror.org/021jq8741 Alliance for Health Policy and Systems Research'),
(34732, 'https://ror.org/01rz48a94', 'no_lang_code', 1, 'https://ror.org/01rz48a94 Wilson Sonsini Goodrich & Rosati'),
(34733, 'https://ror.org/0093x0153', 'en', 1, 'https://ror.org/0093x0153 American Association of Pharmaceutical Scientists'),
(34734, 'https://ror.org/01fktj061', 'en', 1, 'https://ror.org/01fktj061 Florida Department of Elder Affairs'),
(34735, 'https://ror.org/05w9mt194', 'en', 1, 'https://ror.org/05w9mt194 Department for Employment and Learning'),
(34736, 'https://ror.org/02wjs8c89', 'en', 1, 'https://ror.org/02wjs8c89 Asia Oceania Geosciences Society'),
(34737, 'https://ror.org/03z2ts232', 'en', 1, 'https://ror.org/03z2ts232 Swedish Film Institute'),
(34738, 'https://ror.org/030vz9r78', 'en', 1, 'https://ror.org/030vz9r78 Ashfield Healthcare'),
(34739, 'https://ror.org/03cdz5d08', 'en', 1, 'https://ror.org/03cdz5d08 Quality Enhancement Research Initiative'),
(34740, 'https://ror.org/03e9kb581', 'no_lang_code', 1, 'https://ror.org/03e9kb581 Ferring Pharmaceuticals (United Kingdom)'),
(34741, 'https://ror.org/02vds7q94', 'en', 1, 'https://ror.org/02vds7q94 St. Clair College'),
(34742, 'https://ror.org/010ajwv03', 'no_lang_code', 1, 'https://ror.org/010ajwv03 Eli Lilly (Singapore)'),
(34743, 'https://ror.org/00dbebs66', 'pt', 1, 'https://ror.org/00dbebs66 Sociedade Brasileira de Diabetes'),
(34744, 'https://ror.org/00kx97841', 'en', 1, 'https://ror.org/00kx97841 Michener Institute'),
(34745, 'https://ror.org/00aphdz18', 'no_lang_code', 1, 'https://ror.org/00aphdz18 Morgan Stanley (United States)'),
(34746, 'https://ror.org/02czw4g92', 'en', 1, 'https://ror.org/02czw4g92 New Leaf Venture Partners'),
(34747, 'https://ror.org/04n305y15', 'en', 1, 'https://ror.org/04n305y15 British Veterinary Association'),
(34748, 'https://ror.org/02r4rcw08', 'en', 1, 'https://ror.org/02r4rcw08 European Research Group on Environment and Health in the Transport Sector Europäische Forschungsvereinigung für Umwelt und Gesundheit im Transportsektor e.V.'),
(34749, 'https://ror.org/02kcgy861', 'en', 1, 'https://ror.org/02kcgy861 Peninsula HealthCare Connection'),
(34750, 'https://ror.org/05amp0d44', 'no_lang_code', 1, 'https://ror.org/05amp0d44 Novamed (Italy)'),
(34751, 'https://ror.org/02xv7km65', 'en', 1, 'https://ror.org/02xv7km65 Japanese Society of Physiological Anthropology'),
(34752, 'https://ror.org/025g6sc95', 'en', 1, 'https://ror.org/025g6sc95 President''s Emergency Plan for AIDS Relief'),
(34753, 'https://ror.org/04fgxrt38', 'en', 1, 'https://ror.org/04fgxrt38 Kirsch Foundation'),
(34754, 'https://ror.org/04yh9yy49', 'en', 1, 'https://ror.org/04yh9yy49 Brazilian Network Information Center Núcleo de Informação e Coordenação do Ponto BR'),
(34755, 'https://ror.org/03fh45z28', 'en', 1, 'https://ror.org/03fh45z28 Charles Stewart Mott Foundation'),
(34756, 'https://ror.org/03d3kf570', 'en', 1, 'https://ror.org/03d3kf570 Orphanet'),
(34757, 'https://ror.org/010h5fs55', 'en', 1, 'https://ror.org/010h5fs55 PIH Health'),
(34758, 'https://ror.org/00gdm3q19', 'en', 1, 'https://ror.org/00gdm3q19 Brazilian Dental Materials Group Grupo Brasileiro de Materiais Dentários'),
(34759, 'https://ror.org/050f2kd12', 'en', 1, 'https://ror.org/050f2kd12 Lindbergh Foundation'),
(34760, 'https://ror.org/01hpg6340', 'en', 1, 'https://ror.org/01hpg6340 Grönemeyer Institut für MikroTherapie Grönemeyer Institute for MicroTherapy'),
(34761, 'https://ror.org/01fp6hr92', 'en', 1, 'https://ror.org/01fp6hr92 Japanese Society of Tropical Medicine'),
(34762, 'https://ror.org/01fen8d67', 'en', 1, 'https://ror.org/01fen8d67 Association of Schools of Public Health in the European Region'),
(34763, 'https://ror.org/0036pxz38', 'en', 1, 'https://ror.org/0036pxz38 Korean Association of Maxillofacial Plastic and Reconstructive Surgery'),
(34764, 'https://ror.org/02c4ez492', 'no_lang_code', 1, 'https://ror.org/02c4ez492 Hershey (United States)'),
(34765, 'https://ror.org/03ted7148', 'en', 1, 'https://ror.org/03ted7148 Korean Society for Quality Management'),
(34766, 'https://ror.org/009nmab38', 'en', 1, 'https://ror.org/009nmab38 World Allergy Organization'),
(34767, 'https://ror.org/05whhvm83', 'en', 1, 'https://ror.org/05whhvm83 International Consortium on Geo-disaster Reduction'),
(34768, 'https://ror.org/00rezgj18', 'en', 1, 'https://ror.org/00rezgj18 Winfocus'),
(34769, 'https://ror.org/03fd44j44', 'no_lang_code', 1, 'https://ror.org/03fd44j44 Beike Biotechnology (China) 北科生物科技'),
(34770, 'https://ror.org/04qfjb814', 'en', 1, 'https://ror.org/04qfjb814 International Hereditary Cancer Center'),
(34771, 'https://ror.org/0481e3r23', 'en', 1, 'https://ror.org/0481e3r23 Society for Immunotherapy of Cancer'),
(34772, 'https://ror.org/057k8tk89', 'es', 1, 'https://ror.org/057k8tk89 Sociedad de Biología de Chile'),
(34773, 'https://ror.org/04h3xje09', 'en', 1, 'https://ror.org/04h3xje09 College of Podiatry'),
(34774, 'https://ror.org/049k8ev11', 'en', 1, 'https://ror.org/049k8ev11 Society of Open Innovation Technology Market & Complexity'),
(34775, 'https://ror.org/04ndjyr10', 'en', 1, 'https://ror.org/04ndjyr10 National Science Library 中国科学院文献情报中心'),
(34776, 'https://ror.org/02myr0q32', 'en', 1, 'https://ror.org/02myr0q32 EUR-Oceans Consortium'),
(34777, 'https://ror.org/01480s295', 'no_lang_code', 1, 'https://ror.org/01480s295 Pearson (United Kingdom)'),
(34778, 'https://ror.org/038arc322', 'en', 1, 'https://ror.org/038arc322 Asia-Pacific Society for Computers in Education'),
(34779, 'https://ror.org/01mfkkh63', 'no_lang_code', 1, 'https://ror.org/01mfkkh63 Guangzhou Chemistry (China) 中科院广州化学有限公司'),
(34780, 'https://ror.org/01hh9ag93', 'en', 1, 'https://ror.org/01hh9ag93 Institute of Subtropical Agriculture 中国科学院亚热带农业生态研究所'),
(34781, 'https://ror.org/0057mbc31', 'en', 1, 'https://ror.org/0057mbc31 Windsor Regional Hospital'),
(34782, 'https://ror.org/03zn6c508', 'en', 1, 'https://ror.org/03zn6c508 Institute of Tibetan Plateau Research 中国科学院青藏高原研究所'),
(34783, 'https://ror.org/00qae8971', 'en', 1, 'https://ror.org/00qae8971 Institute for History of Natural Sciences 中国科学院自然科学史研究所'),
(34784, 'https://ror.org/001bbwj30', 'it', 1, 'https://ror.org/001bbwj30 Azienda Sanitaria Unità Locale di Reggio Emilia'),
(34785, 'https://ror.org/0000pmw59', 'en', 1, 'https://ror.org/0000pmw59 Institute of Vertebrate Paleontology and Paleoanthropology 中国科学院古脊椎动物与古人类研究所'),
(34786, 'https://ror.org/033js6g46', 'en', 1, 'https://ror.org/033js6g46 Institute of Electrical Engineering 中国科学院电工研究所'),
(34787, 'https://ror.org/01z143507', 'en', 1, 'https://ror.org/01z143507 Institute of Electronics 中国科学院电子学研究所'),
(34788, 'https://ror.org/031zj0q48', 'en', 1, 'https://ror.org/031zj0q48 Institute of Engineering Thermophysics 中国科学院工程热物理研究所'),
(34789, 'https://ror.org/01pjxkf30', 'en', 1, 'https://ror.org/01pjxkf30 Xinjiang Astronomical Observatory 中国科学院新疆天文台'),
(34790, 'https://ror.org/030k21z47', 'en', 1, 'https://ror.org/030k21z47 Beijing Institute of Nanoenergy and Nanosystems 中国科学院北京纳米能源与系统研究所'),
(34791, 'https://ror.org/04sxr1261', 'en', 1, 'https://ror.org/04sxr1261 Nanjing Institute of Astronomical Optics & Technology 中国科学院南京天文光学技术研究所'),
(34792, 'https://ror.org/02rz58g17', 'en', 1, 'https://ror.org/02rz58g17 Xishuangbanna Tropical Botanical Garden 西双版纳热带植物园'),
(34793, 'https://ror.org/02f42pw58', 'no_lang_code', 1, 'https://ror.org/02f42pw58 Yunnan Observatories 云南天文台'),
(34794, 'https://ror.org/02xqp7x96', 'no_lang_code', 1, 'https://ror.org/02xqp7x96 Shenyang Institute of Computing Technology (China) 中国科学院沈阳计算技术研究所'),
(34795, 'https://ror.org/02eb4t121', 'en', 1, 'https://ror.org/02eb4t121 Purple Mountain Observatory 中国科学院紫金山天文台'),
(34796, 'https://ror.org/05h3vcy91', 'en', 1, 'https://ror.org/05h3vcy91 Qingdao Institute of Bioenergy and Bioprocess Technology 中国科学院青岛生物能源与过程研究所'),
(34797, 'https://ror.org/048gskb76', 'no_lang_code', 1, 'https://ror.org/048gskb76 Novamedia (Italy)'),
(34798, 'https://ror.org/00f58mx93', 'en', 1, 'https://ror.org/00f58mx93 Suzhou Institute of Biomedical Engineering and Technology 中国科学院苏州生物医学工程技术研究所'),
(34799, 'https://ror.org/050spgz68', 'en', 1, 'https://ror.org/050spgz68 Institute of Deep-Sea Science and Engineering 中国科学院深海科学与工程研究所'),
(34800, 'https://ror.org/02br7py06', 'en', 1, 'https://ror.org/02br7py06 Shanghai Advanced Research Institute 上海高等研究院'),
(34801, 'https://ror.org/00cn03n83', 'en', 1, 'https://ror.org/00cn03n83 Technology and Engineering Center for Space Utilization 中国科学院空间应用工程与技术中心'),
(34802, 'https://ror.org/04acsr153', 'en', 1, 'https://ror.org/04acsr153 Academy of Opto-Electronics 中国科学院光电研究院'),
(34803, 'https://ror.org/058xdps70', 'en', 1, 'https://ror.org/058xdps70 Guangdong Province Science and Technology Library'),
(34804, 'https://ror.org/042pyga86', 'en', 1, 'https://ror.org/042pyga86 Tianjin Institute of Industrial Biotechnology 中国科学院天津工业生物技术研究所'),
(34805, 'https://ror.org/02j0gyf89', 'en', 1, 'https://ror.org/02j0gyf89 Wuhan Botanical Garden 中国科学院武汉植物园'),
(34806, 'https://ror.org/030erj688', 'en', 1, 'https://ror.org/030erj688 Oberlin Group'),
(34807, 'https://ror.org/046n0zq43', 'en', 1, 'https://ror.org/046n0zq43 Wuhan Branch of the National Science Library 中国科学院武汉文献情报中心'),
(34808, 'https://ror.org/02ay6xb89', 'en', 1, 'https://ror.org/02ay6xb89 Norwegian Kennel Club'),
(34809, 'https://ror.org/012sdxq48', 'en', 1, 'https://ror.org/012sdxq48 Arendal Municipality'),
(34810, 'https://ror.org/02w4kss89', 'no_lang_code', 1, 'https://ror.org/02w4kss89 Møreforsking (Norway)'),
(34811, 'https://ror.org/059yn9d94', 'no', 1, 'https://ror.org/059yn9d94 Asker kommune'),
(34812, 'https://ror.org/057xpxe28', 'no_lang_code', 1, 'https://ror.org/057xpxe28 Norsk Kirkegårdsservice (Norway)'),
(34813, 'https://ror.org/04rn19w05', 'no', 1, 'https://ror.org/04rn19w05 Berg kommune'),
(34814, 'https://ror.org/03xjymw07', 'no', 1, 'https://ror.org/03xjymw07 Norwea'),
(34815, 'https://ror.org/02mskse42', 'no', 1, 'https://ror.org/02mskse42 Oslo Kommune'),
(34816, 'https://ror.org/01vjpav59', 'no_lang_code', 1, 'https://ror.org/01vjpav59 Norwegian Crystals (Norway)'),
(34817, 'https://ror.org/04knhp704', 'no', 1, 'https://ror.org/04knhp704 Finnmark Fylkeskommune'),
(34818, 'https://ror.org/04c7hbg15', 'no_lang_code', 1, 'https://ror.org/04c7hbg15 Norwegian Graphite (Norway)'),
(34819, 'https://ror.org/02kdq5f02', 'no', 1, 'https://ror.org/02kdq5f02 Fredrikstad Kommune'),
(34820, 'https://ror.org/010mrqa05', 'en', 1, 'https://ror.org/010mrqa05 Arts Council Norway'),
(34821, 'https://ror.org/02nssyt88', 'no_lang_code', 1, 'https://ror.org/02nssyt88 Norwegian Hull Club (Norway)'),
(34822, 'https://ror.org/01ktv8680', 'no_lang_code', 1, 'https://ror.org/01ktv8680 Mosaic Solutions (Norway)'),
(34823, 'https://ror.org/057zq5186', 'no', 1, 'https://ror.org/057zq5186 Møre og Romsdal Fylkeskommune'),
(34824, 'https://ror.org/00r69t692', 'no', 1, 'https://ror.org/00r69t692 Nordnorske Entreprenørers Service Organisasjon'),
(34825, 'https://ror.org/04c1v2b17', 'en', 1, 'https://ror.org/04c1v2b17 Center for Innovation'),
(34826, 'https://ror.org/03z55gw17', 'no_lang_code', 1, 'https://ror.org/03z55gw17 Norwegian Oilfield Supply'),
(34827, 'https://ror.org/016yah886', 'en', 1, 'https://ror.org/016yah886 Norwegian Institute of Local History'),
(34828, 'https://ror.org/02qz80268', 'no_lang_code', 1, 'https://ror.org/02qz80268 Norwegian Subsea (Norway)'),
(34829, 'https://ror.org/01sqbks28', 'no_lang_code', 1, 'https://ror.org/01sqbks28 Nordox (Norway)'),
(34830, 'https://ror.org/02gdmcq40', 'no_lang_code', 1, 'https://ror.org/02gdmcq40 Norwegian Group (Norway)'),
(34831, 'https://ror.org/03rq35s79', 'no_lang_code', 1, 'https://ror.org/03rq35s79 Guangzhou Electronic Technology (China) 中科院广州电子技术有限公司'),
(34832, 'https://ror.org/00f37g133', 'no', 1, 'https://ror.org/00f37g133 Norsk Matematisk Forening'),
(34833, 'https://ror.org/01wy8wf04', 'no_lang_code', 1, 'https://ror.org/01wy8wf04 Norwell (Norway)'),
(34834, 'https://ror.org/01nmxvn49', 'no_lang_code', 1, 'https://ror.org/01nmxvn49 Chengdu Organic Chemicals (China) 中国科学院成都有机化学有限公司'),
(34835, 'https://ror.org/052nwsb77', 'no_lang_code', 1, 'https://ror.org/052nwsb77 Norwex (Norway)'),
(34836, 'https://ror.org/002rwrx57', 'no_lang_code', 1, 'https://ror.org/002rwrx57 MOTECH Plasma (Norway)'),
(34837, 'https://ror.org/003w57e32', 'no', 1, 'https://ror.org/003w57e32 Norsk Matraps'),
(34838, 'https://ror.org/04gp4me61', 'no', 1, 'https://ror.org/04gp4me61 Norsk Medieforskerlag'),
(34839, 'https://ror.org/00j582x21', 'no_lang_code', 1, 'https://ror.org/00j582x21 Noryards (Norway)'),
(34840, 'https://ror.org/02ceer540', 'no_lang_code', 1, 'https://ror.org/02ceer540 SalMar (Norway)'),
(34841, 'https://ror.org/02kdw7y22', 'no_lang_code', 1, 'https://ror.org/02kdw7y22 Norwegian Electro Ceramics (Norway)'),
(34842, 'https://ror.org/04k7z5476', 'no_lang_code', 1, 'https://ror.org/04k7z5476 Norsk Medisinsk Syklotronsenter (Norway)'),
(34843, 'https://ror.org/00a39qp34', 'no_lang_code', 1, 'https://ror.org/00a39qp34 Movation (Norway)'),
(34844, 'https://ror.org/054ympc71', 'en', 1, 'https://ror.org/054ympc71 Norwegian Beekeepers Association'),
(34845, 'https://ror.org/02q3q6m55', 'no', 1, 'https://ror.org/02q3q6m55 Norges Blindeforbund'),
(34846, 'https://ror.org/00dxw3680', 'no_lang_code', 1, 'https://ror.org/00dxw3680 Move About (Norway)'),
(34847, 'https://ror.org/058gxc624', 'no_lang_code', 1, 'https://ror.org/058gxc624 NLI Innovation (Norway)'),
(34848, 'https://ror.org/01nvcgz36', 'no', 1, 'https://ror.org/01nvcgz36 Norsk Namnelag'),
(34849, 'https://ror.org/05k8zya46', 'no', 1, 'https://ror.org/05k8zya46 Norges Fiskarlag'),
(34850, 'https://ror.org/036qhje24', 'no_lang_code', 1, 'https://ror.org/036qhje24 Norwegian Hydropower (Norway)'),
(34851, 'https://ror.org/01jnsyr23', 'en', 1, 'https://ror.org/01jnsyr23 Norwegian Golf Federation'),
(34852, 'https://ror.org/00kt5tf40', 'en', 1, 'https://ror.org/00kt5tf40 Norwegian Association of Disabled'),
(34853, 'https://ror.org/00wp87h24', 'no_lang_code', 1, 'https://ror.org/00wp87h24 NovaBiotics (Norway)'),
(34854, 'https://ror.org/002tr2c66', 'no_lang_code', 1, 'https://ror.org/002tr2c66 Nofi Tromsø (Norway)'),
(34855, 'https://ror.org/00td2nm66', 'no_lang_code', 1, 'https://ror.org/00td2nm66 Nova Sea (Norway)'),
(34856, 'https://ror.org/03se59c70', 'no_lang_code', 1, 'https://ror.org/03se59c70 NRK (Norway)'),
(34857, 'https://ror.org/055ftza32', 'en', 1, 'https://ror.org/055ftza32 Institute of Internal Auditors Norway'),
(34858, 'https://ror.org/05ycfv646', 'no_lang_code', 1, 'https://ror.org/05ycfv646 Multiconsult (Norway)'),
(34859, 'https://ror.org/02730rb40', 'no_lang_code', 1, 'https://ror.org/02730rb40 Novelda (Norway)'),
(34860, 'https://ror.org/05xyfkx86', 'no', 1, 'https://ror.org/05xyfkx86 Norsk Sau og Geit'),
(34861, 'https://ror.org/05g27aj31', 'no', 1, 'https://ror.org/05g27aj31 Norges Kystfiskarlag'),
(34862, 'https://ror.org/00w52ce92', 'no_lang_code', 1, 'https://ror.org/00w52ce92 Hansa Borg Bryggerier (Norway)'),
(34863, 'https://ror.org/05r45gk31', 'no', 1, 'https://ror.org/05r45gk31 Nome Kommune'),
(34864, 'https://ror.org/02kpq2a15', 'no_lang_code', 1, 'https://ror.org/02kpq2a15 Head Energy (Norway)'),
(34865, 'https://ror.org/04gens608', 'no_lang_code', 1, 'https://ror.org/04gens608 NorTronic (Norway)'),
(34866, 'https://ror.org/041vdra32', 'no', 1, 'https://ror.org/041vdra32 Friends of the Earth Norway Naturvernforbundet'),
(34867, 'https://ror.org/04chwrz02', 'no_lang_code', 1, 'https://ror.org/04chwrz02 Nord-Trøndelag Elektrisitetsverk (Norway)'),
(34868, 'https://ror.org/02621tf26', 'no_lang_code', 1, 'https://ror.org/02621tf26 Norboat (Norway)'),
(34869, 'https://ror.org/00td7a857', 'en', 1, 'https://ror.org/00td7a857 Federation of Norwegian Agricultural Co-operatives'),
(34870, 'https://ror.org/037958547', 'en', 1, 'https://ror.org/037958547 Munch Museum'),
(34871, 'https://ror.org/05qtgz885', 'no_lang_code', 1, 'https://ror.org/05qtgz885 Norskog Consulting (Norway)'),
(34872, 'https://ror.org/04fzjj956', 'no_lang_code', 1, 'https://ror.org/04fzjj956 NTNU Technology Transfer (Norway)'),
(34873, 'https://ror.org/000sq7c21', 'no', 1, 'https://ror.org/000sq7c21 Norges Røde Kors Norwegian Red Cross'),
(34874, 'https://ror.org/008qm8389', 'no', 1, 'https://ror.org/008qm8389 Norsk Skogmuseum'),
(34875, 'https://ror.org/02d7jm947', 'no_lang_code', 1, 'https://ror.org/02d7jm947 Mundal Gruppen (Norway)'),
(34876, 'https://ror.org/03t3x0x69', 'no', 1, 'https://ror.org/03t3x0x69 Norsk Sosiologforening'),
(34877, 'https://ror.org/02jt05p62', 'no', 1, 'https://ror.org/02jt05p62 Norges Sildesalgslag Norwegian Herring Sales Association'),
(34878, 'https://ror.org/01qjq7726', 'no_lang_code', 1, 'https://ror.org/01qjq7726 Nucleus (Norway)'),
(34879, 'https://ror.org/044tsct54', 'en', 1, 'https://ror.org/044tsct54 Norwegian Steel Association'),
(34880, 'https://ror.org/00sk8vk27', 'no_lang_code', 1, 'https://ror.org/00sk8vk27 Dolphin Geophysical (Norway)'),
(34881, 'https://ror.org/03yr3hm52', 'no', 1, 'https://ror.org/03yr3hm52 Norsk Sveiseteknisk Forbund'),
(34882, 'https://ror.org/021yjvj30', 'en', 1, 'https://ror.org/021yjvj30 Norwegian Seafood Council'),
(34883, 'https://ror.org/023p8r457', 'en', 1, 'https://ror.org/023p8r457 Norwegian Forest Owners Association'),
(34884, 'https://ror.org/00v7c5185', 'no_lang_code', 1, 'https://ror.org/00v7c5185 Mycoteam (Norway)'),
(34885, 'https://ror.org/02yyqh779', 'no_lang_code', 1, 'https://ror.org/02yyqh779 Numedalsutvikling (Norway)'),
(34886, 'https://ror.org/02xq4sz17', 'no_lang_code', 1, 'https://ror.org/02xq4sz17 Myhrene (Norway)'),
(34887, 'https://ror.org/04dmsj331', 'no_lang_code', 1, 'https://ror.org/04dmsj331 Mylifeproducts (Norway)'),
(34888, 'https://ror.org/04kqbmr61', 'no_lang_code', 1, 'https://ror.org/04kqbmr61 Nunatak (Norway)'),
(34889, 'https://ror.org/02cpyxc95', 'no_lang_code', 1, 'https://ror.org/02cpyxc95 NutraQ (Norway)'),
(34890, 'https://ror.org/055pv4k97', 'no_lang_code', 1, 'https://ror.org/055pv4k97 Pemco (Norway)'),
(34891, 'https://ror.org/01tt6ct02', 'no_lang_code', 1, 'https://ror.org/01tt6ct02 Myworkout (Norway)'),
(34892, 'https://ror.org/04e99wk33', 'no_lang_code', 1, 'https://ror.org/04e99wk33 Nygon (Norway)'),
(34893, 'https://ror.org/028a3zj94', 'no', 1, 'https://ror.org/028a3zj94 Solskjerming'),
(34894, 'https://ror.org/04bpra047', 'no_lang_code', 1, 'https://ror.org/04bpra047 Mustad (Norway)'),
(34895, 'https://ror.org/004cakc07', 'en', 1, 'https://ror.org/004cakc07 Norwegian Academy of Technological Sciences'),
(34896, 'https://ror.org/03ywcxa16', 'no_lang_code', 1, 'https://ror.org/03ywcxa16 NorDan (Norway)'),
(34897, 'https://ror.org/04gqcjz27', 'no_lang_code', 1, 'https://ror.org/04gqcjz27 Scatec (Norway)'),
(34898, 'https://ror.org/02q9r3565', 'fi', 1, 'https://ror.org/02q9r3565 Kainun Institutti'),
(34899, 'https://ror.org/03pkxjx53', 'no_lang_code', 1, 'https://ror.org/03pkxjx53 Steinsvik (Norway)'),
(34900, 'https://ror.org/003wp4g82', 'no_lang_code', 1, 'https://ror.org/003wp4g82 Norgesfôr (Norway)'),
(34901, 'https://ror.org/0066ttc69', 'no_lang_code', 1, 'https://ror.org/0066ttc69 NorgesGruppen (Norway)'),
(34902, 'https://ror.org/00d5qfz16', 'en', 1, 'https://ror.org/00d5qfz16 Norwegian Institute of Wood Technology'),
(34903, 'https://ror.org/0122ngb55', 'no_lang_code', 1, 'https://ror.org/0122ngb55 Saint-Gobain (Norway)'),
(34904, 'https://ror.org/041ww9d57', 'no_lang_code', 1, 'https://ror.org/041ww9d57 Ocean Energy (Norway)'),
(34905, 'https://ror.org/04r3yqx69', 'no_lang_code', 1, 'https://ror.org/04r3yqx69 OptiNose (Norway)'),
(34906, 'https://ror.org/02qhzxt05', 'en', 1, 'https://ror.org/02qhzxt05 Norwegian Business and Industry Security Council'),
(34907, 'https://ror.org/0438q2q05', 'no_lang_code', 1, 'https://ror.org/0438q2q05 Norgesmøllene (Norway)'),
(34908, 'https://ror.org/024jky872', 'no', 1, 'https://ror.org/024jky872 Norsk Trevare'),
(34909, 'https://ror.org/02fqwth13', 'no_lang_code', 1, 'https://ror.org/02fqwth13 Ocean Visuals (Norway)'),
(34910, 'https://ror.org/03s6yf189', 'no_lang_code', 1, 'https://ror.org/03s6yf189 Nammo (Norway)'),
(34911, 'https://ror.org/02d0m4q63', 'no_lang_code', 1, 'https://ror.org/02d0m4q63 Nokia (Norway)'),
(34912, 'https://ror.org/01ddmgr89', 'no_lang_code', 1, 'https://ror.org/01ddmgr89 Norhard (Norway)'),
(34913, 'https://ror.org/01pznaa94', 'en', 1, 'https://ror.org/01pznaa94 Norwegian Institute of International Affairs'),
(34914, 'https://ror.org/02e8y7481', 'en', 1, 'https://ror.org/02e8y7481 Nansen Neuroscience Network'),
(34915, 'https://ror.org/05011r820', 'no_lang_code', 1, 'https://ror.org/05011r820 Orkana Forlag (Norway)'),
(34916, 'https://ror.org/05xn6e267', 'en', 1, 'https://ror.org/05xn6e267 Norwegian Corporate Governance Board'),
(34917, 'https://ror.org/04v6t0889', 'en', 1, 'https://ror.org/04v6t0889 Norwegian Water'),
(34918, 'https://ror.org/055jgd565', 'no_lang_code', 1, 'https://ror.org/055jgd565 Orkel (Norway)'),
(34919, 'https://ror.org/02knph556', 'no_lang_code', 1, 'https://ror.org/02knph556 Plastal (Norway)'),
(34920, 'https://ror.org/01059d966', 'no_lang_code', 1, 'https://ror.org/01059d966 Norinnova (Norway)'),
(34921, 'https://ror.org/03fs8gt32', 'no_lang_code', 1, 'https://ror.org/03fs8gt32 Plasto (Norway)'),
(34922, 'https://ror.org/01thm5617', 'no_lang_code', 1, 'https://ror.org/01thm5617 OceanSaver (Norway)'),
(34923, 'https://ror.org/05cc9pg46', 'no_lang_code', 1, 'https://ror.org/05cc9pg46 Orthogenics (Norway)'),
(34924, 'https://ror.org/029ndw944', 'no', 1, 'https://ror.org/029ndw944 Norsk Virkesmåling'),
(34925, 'https://ror.org/03fnhx680', 'no_lang_code', 1, 'https://ror.org/03fnhx680 Oshaug Metall (Norway)'),
(34926, 'https://ror.org/001dwsq82', 'no_lang_code', 1, 'https://ror.org/001dwsq82 Pleat (Norway)'),
(34927, 'https://ror.org/05r1rzk07', 'no_lang_code', 1, 'https://ror.org/05r1rzk07 Norsk Wax (Norway)'),
(34928, 'https://ror.org/03w5nvk39', 'en', 1, 'https://ror.org/03w5nvk39 Oslo Stock Exchange'),
(34929, 'https://ror.org/05rpeka60', 'no_lang_code', 1, 'https://ror.org/05rpeka60 NorLense (Norway)'),
(34930, 'https://ror.org/055jjx645', 'en', 1, 'https://ror.org/055jjx645 Oslo Cancer Cluster'),
(34931, 'https://ror.org/01nevmj51', 'en', 1, 'https://ror.org/01nevmj51 Co-opertive Housing Federation of Norway'),
(34932, 'https://ror.org/03vn4w338', 'no_lang_code', 1, 'https://ror.org/03vn4w338 Norli Libris (Norway)'),
(34933, 'https://ror.org/011mfhx24', 'en', 1, 'https://ror.org/011mfhx24 Oslo Chamber of Commerce'),
(34934, 'https://ror.org/02afrq658', 'no_lang_code', 1, 'https://ror.org/02afrq658 Polarkonsult (Norway)'),
(34935, 'https://ror.org/058gxfr70', 'no_lang_code', 1, 'https://ror.org/058gxfr70 NorMedia (Norway)'),
(34936, 'https://ror.org/05wk1t126', 'en', 1, 'https://ror.org/05wk1t126 Oslo Port Authority'),
(34937, 'https://ror.org/03b0jpz35', 'no_lang_code', 1, 'https://ror.org/03b0jpz35 Normex (Norway)'),
(34938, 'https://ror.org/05eqwb473', 'no_lang_code', 1, 'https://ror.org/05eqwb473 Norrønt (Norway)'),
(34939, 'https://ror.org/03rgdaq32', 'no_lang_code', 1, 'https://ror.org/03rgdaq32 Norsafe (Norway)'),
(34940, 'https://ror.org/00etk3t37', 'no_lang_code', 1, 'https://ror.org/00etk3t37 Norske Skog (Norway) Norwegian Forest Industries'),
(34941, 'https://ror.org/012dd9d89', 'no_lang_code', 1, 'https://ror.org/012dd9d89 poLight (Norway)'),
(34942, 'https://ror.org/03ajdty96', 'no', 1, 'https://ror.org/03ajdty96 Norsif'),
(34943, 'https://ror.org/03w0yv793', 'no', 1, 'https://ror.org/03w0yv793 Norske Takstolprodusenters Forening'),
(34944, 'https://ror.org/050pqc318', 'no', 1, 'https://ror.org/050pqc318 Norsk Algeforening'),
(34945, 'https://ror.org/03e70fp94', 'en', 1, 'https://ror.org/03e70fp94 Oslo Medtech'),
(34946, 'https://ror.org/04wpmh396', 'no_lang_code', 1, 'https://ror.org/04wpmh396 Norsonic (Norway)'),
(34947, 'https://ror.org/02d4aa907', 'no', 1, 'https://ror.org/02d4aa907 Norsk Arkeologisk Selskap'),
(34948, 'https://ror.org/05fhxyg37', 'no', 1, 'https://ror.org/05fhxyg37 Politiet'),
(34949, 'https://ror.org/00gar9b27', 'en', 1, 'https://ror.org/00gar9b27 NorStella Foundation'),
(34950, 'https://ror.org/01sf89923', 'no_lang_code', 1, 'https://ror.org/01sf89923 Tomra (Norway)'),
(34951, 'https://ror.org/018rc2s15', 'no_lang_code', 1, 'https://ror.org/018rc2s15 NorSun (Norway)'),
(34952, 'https://ror.org/03rdeqz85', 'no_lang_code', 1, 'https://ror.org/03rdeqz85 Norsk Automatisering (Norway)'),
(34953, 'https://ror.org/04ehzpr81', 'no_lang_code', 1, 'https://ror.org/04ehzpr81 Odfjell Drilling (Norway)'),
(34954, 'https://ror.org/01xdsqb07', 'no_lang_code', 1, 'https://ror.org/01xdsqb07 Kvalvik (Norway)'),
(34955, 'https://ror.org/02px7xz82', 'en', 1, 'https://ror.org/02px7xz82 Oslo Vest Rotary Klubb'),
(34956, 'https://ror.org/04ph6jr06', 'no_lang_code', 1, 'https://ror.org/04ph6jr06 Nortek (Norway)'),
(34957, 'https://ror.org/00vfc7k77', 'no_lang_code', 1, 'https://ror.org/00vfc7k77 North Energy (Norway)'),
(34958, 'https://ror.org/01r41r914', 'no_lang_code', 1, 'https://ror.org/01r41r914 NorthSea Container Line (Norway)'),
(34959, 'https://ror.org/017c6yw85', 'no_lang_code', 1, 'https://ror.org/017c6yw85 OSO Hotwater (Norway)'),
(34960, 'https://ror.org/00rmzby10', 'en', 1, 'https://ror.org/00rmzby10 Norwegian Centre for Design and Architecture'),
(34961, 'https://ror.org/01gaazr53', 'no_lang_code', 1, 'https://ror.org/01gaazr53 Østensjø Rederi (Norway)'),
(34962, 'https://ror.org/00dasvg19', 'no_lang_code', 1, 'https://ror.org/00dasvg19 Offshore Sensing (Norway)'),
(34963, 'https://ror.org/02hbww352', 'no_lang_code', 1, 'https://ror.org/02hbww352 Porolon (Norway)'),
(34964, 'https://ror.org/03vj43k94', 'no_lang_code', 1, 'https://ror.org/03vj43k94 Nortransport (Norway)'),
(34965, 'https://ror.org/01jzfkq41', 'no_lang_code', 1, 'https://ror.org/01jzfkq41 Nortroll (Norway)'),
(34966, 'https://ror.org/0159fax30', 'no', 1, 'https://ror.org/0159fax30 Porsanger Kommune'),
(34967, 'https://ror.org/05w1kd396', 'no_lang_code', 1, 'https://ror.org/05w1kd396 Portahead (Norway)'),
(34968, 'https://ror.org/052x09g67', 'en', 1, 'https://ror.org/052x09g67 Norwegian Film Institute'),
(34969, 'https://ror.org/00753wa45', 'no_lang_code', 1, 'https://ror.org/00753wa45 Østerdalsmia (Norway)'),
(34970, 'https://ror.org/03zgm9x14', 'no_lang_code', 1, 'https://ror.org/03zgm9x14 Portal (Norway)'),
(34971, 'https://ror.org/04x931c50', 'en', 1, 'https://ror.org/04x931c50 POSC Caesar Association'),
(34972, 'https://ror.org/04c2cdz27', 'no', 1, 'https://ror.org/04c2cdz27 Norsk Fjørfelag'),
(34973, 'https://ror.org/03qpxp676', 'no_lang_code', 1, 'https://ror.org/03qpxp676 Norway Well Solutions'),
(34974, 'https://ror.org/02t6kpd72', 'no', 1, 'https://ror.org/02t6kpd72 Norsk Folkemuseum'),
(34975, 'https://ror.org/03q52r448', 'no_lang_code', 1, 'https://ror.org/03q52r448 Offshore Simulator Centre (Norway)'),
(34976, 'https://ror.org/00cgmd914', 'no_lang_code', 1, 'https://ror.org/00cgmd914 Siemens (Norway)'),
(34977, 'https://ror.org/01hqxm727', 'no_lang_code', 1, 'https://ror.org/01hqxm727 Norsk Mineral (Norway)'),
(34978, 'https://ror.org/03fpa6x12', 'no_lang_code', 1, 'https://ror.org/03fpa6x12 Oil Tools Of Norway (Norway)'),
(34979, 'https://ror.org/0107jsx26', 'en', 1, 'https://ror.org/0107jsx26 Norwegian Society of Automatic Control'),
(34980, 'https://ror.org/04sa8xk52', 'no_lang_code', 1, 'https://ror.org/04sa8xk52 OilCraft (Norway)'),
(34981, 'https://ror.org/00at1a685', 'no_lang_code', 1, 'https://ror.org/00at1a685 Poseidon (Norway)'),
(34982, 'https://ror.org/05sryxz27', 'no', 1, 'https://ror.org/05sryxz27 Norsk Forening for Bildebehandling og Mønstergjenkjenning'),
(34983, 'https://ror.org/01tvtq106', 'no_lang_code', 1, 'https://ror.org/01tvtq106 Posicom (Norway)'),
(34984, 'https://ror.org/01d92zj09', 'no_lang_code', 1, 'https://ror.org/01d92zj09 Oilfield Technology Group (Norway)'),
(34985, 'https://ror.org/03d41qd17', 'no_lang_code', 1, 'https://ror.org/03d41qd17 OiW Process (Norway)'),
(34986, 'https://ror.org/020deqr47', 'en', 1, 'https://ror.org/020deqr47 Eastern Norway Research Institute'),
(34987, 'https://ror.org/03ezm5049', 'no', 1, 'https://ror.org/03ezm5049 Tannlege Ole Christian Amundsen'),
(34988, 'https://ror.org/03hqca282', 'en', 1, 'https://ror.org/03hqca282 Norwegian Association for Development Research'),
(34989, 'https://ror.org/02yq0sn95', 'no_lang_code', 1, 'https://ror.org/02yq0sn95 Posten (Norway)'),
(34990, 'https://ror.org/0519mfj33', 'no_lang_code', 1, 'https://ror.org/0519mfj33 Ostomycure (Norway)'),
(34991, 'https://ror.org/017q09r90', 'no_lang_code', 1, 'https://ror.org/017q09r90 Otech Marine Services (Norway)'),
(34992, 'https://ror.org/02mz22k75', 'no', 1, 'https://ror.org/02mz22k75 Norsk Friluftsliv'),
(34993, 'https://ror.org/04dcrct74', 'no_lang_code', 1, 'https://ror.org/04dcrct74 Exova Metech (Norway)'),
(34994, 'https://ror.org/0023n0d81', 'no', 1, 'https://ror.org/0023n0d81 Øksnes Kommune'),
(34995, 'https://ror.org/003r70w25', 'no_lang_code', 1, 'https://ror.org/003r70w25 Otechos (Norway)'),
(34996, 'https://ror.org/02me8mn40', 'no_lang_code', 1, 'https://ror.org/02me8mn40 Otivio (Norway)'),
(34997, 'https://ror.org/04y5wt580', 'no', 1, 'https://ror.org/04y5wt580 Overhalla Kommune'),
(34998, 'https://ror.org/05veaq644', 'no', 1, 'https://ror.org/05veaq644 Øvre Eiker Kommune'),
(34999, 'https://ror.org/040wxw844', 'no', 1, 'https://ror.org/040wxw844 Norsk Fysisk Selskap'),
(35000, 'https://ror.org/045qycg64', 'no_lang_code', 1, 'https://ror.org/045qycg64 PostNord (Norway)'),
(35001, 'https://ror.org/05wbvqf90', 'no_lang_code', 1, 'https://ror.org/05wbvqf90 OWC Power (Norway)'),
(35002, 'https://ror.org/00gbsxt88', 'no_lang_code', 1, 'https://ror.org/00gbsxt88 Norsk Gjenvinning (Norway)'),
(35003, 'https://ror.org/01v583s72', 'no_lang_code', 1, 'https://ror.org/01v583s72 Arendals Fossekompani (Norway)'),
(35004, 'https://ror.org/05cjvqb89', 'no_lang_code', 1, 'https://ror.org/05cjvqb89 ØKOKRIM'),
(35005, 'https://ror.org/04ctcce15', 'en', 1, 'https://ror.org/04ctcce15 Norwegian Ports Association'),
(35006, 'https://ror.org/05pjatf35', 'no_lang_code', 1, 'https://ror.org/05pjatf35 Rauma Group (Norway)'),
(35007, 'https://ror.org/05ya1hz84', 'no', 1, 'https://ror.org/05ya1hz84 Norsk Hestesenter Stiftelse'),
(35008, 'https://ror.org/021c3kv95', 'no_lang_code', 1, 'https://ror.org/021c3kv95 Økologisk Spesialkorn (Norway)'),
(35009, 'https://ror.org/03xn8jx42', 'no_lang_code', 1, 'https://ror.org/03xn8jx42 AFRY (Norway)'),
(35010, 'https://ror.org/00a3jhq22', 'no', 1, 'https://ror.org/00a3jhq22 Re Kommune'),
(35011, 'https://ror.org/00zzy9k89', 'no_lang_code', 1, 'https://ror.org/00zzy9k89 Norsk Hoppemelk (Norway)'),
(35012, 'https://ror.org/05f655c20', 'no_lang_code', 1, 'https://ror.org/05f655c20 Re-Turn (Norway)'),
(35013, 'https://ror.org/04apegc06', 'no_lang_code', 1, 'https://ror.org/04apegc06 Reactive Metal Particles (Norway)'),
(35014, 'https://ror.org/03y2s5683', 'no_lang_code', 1, 'https://ror.org/03y2s5683 Oxford Research (Norway)'),
(35015, 'https://ror.org/04c9n9394', 'no_lang_code', 1, 'https://ror.org/04c9n9394 Rotoboost (Norway)'),
(35016, 'https://ror.org/04fhvfc61', 'no_lang_code', 1, 'https://ror.org/04fhvfc61 Olivita (Norway)'),
(35017, 'https://ror.org/023vx9026', 'no_lang_code', 1, 'https://ror.org/023vx9026 Prediktor (Norway)'),
(35018, 'https://ror.org/00dhzdc05', 'no_lang_code', 1, 'https://ror.org/00dhzdc05 Omega Media (Norway)'),
(35019, 'https://ror.org/03yqxd013', 'no_lang_code', 1, 'https://ror.org/03yqxd013 Omegatri (Norway)'),
(35020, 'https://ror.org/03fbtkm67', 'no_lang_code', 1, 'https://ror.org/03fbtkm67 Prekubator (Norway)'),
(35021, 'https://ror.org/016gp0w25', 'no_lang_code', 1, 'https://ror.org/016gp0w25 Emerson (Norway)'),
(35022, 'https://ror.org/034wzt925', 'no_lang_code', 1, 'https://ror.org/034wzt925 Omex (Norway)'),
(35023, 'https://ror.org/05b30h594', 'no_lang_code', 1, 'https://ror.org/05b30h594 Real Alloy (Norway)'),
(35024, 'https://ror.org/05e19x344', 'no_lang_code', 1, 'https://ror.org/05e19x344 OxyVision (Norway)'),
(35025, 'https://ror.org/03hf9pe15', 'en', 1, 'https://ror.org/03hf9pe15 Røyken Municipality'),
(35026, 'https://ror.org/03ktys708', 'no', 1, 'https://ror.org/03ktys708 Realistforeningen'),
(35027, 'https://ror.org/01n4nv253', 'no_lang_code', 1, 'https://ror.org/01n4nv253 Preline Fishfarming Systems (Norway)'),
(35028, 'https://ror.org/00by0d563', 'no_lang_code', 1, 'https://ror.org/00by0d563 RPR Technologies (Norway)'),
(35029, 'https://ror.org/05k7dys50', 'no_lang_code', 1, 'https://ror.org/05k7dys50 Oyatel (Norway)'),
(35030, 'https://ror.org/058d7nh07', 'no_lang_code', 1, 'https://ror.org/058d7nh07 Oncoinvent (Norway)'),
(35031, 'https://ror.org/04dz9hf76', 'no_lang_code', 1, 'https://ror.org/04dz9hf76 Onsite Treatment Technologies (Norway)'),
(35032, 'https://ror.org/00803nh20', 'en', 1, 'https://ror.org/00803nh20 Runde Environmental Centre'),
(35033, 'https://ror.org/01g22pf62', 'no_lang_code', 1, 'https://ror.org/01g22pf62 Ruter (Norway)'),
(35034, 'https://ror.org/059mcba53', 'no_lang_code', 1, 'https://ror.org/059mcba53 Preseria (Norway)'),
(35035, 'https://ror.org/04da9qq88', 'no_lang_code', 1, 'https://ror.org/04da9qq88 PaleBlue (Norway)'),
(35036, 'https://ror.org/05hj5cr21', 'no_lang_code', 1, 'https://ror.org/05hj5cr21 Panalpina (Norway)'),
(35037, 'https://ror.org/053qb6g74', 'en', 1, 'https://ror.org/053qb6g74 Paper and Fibre Research Institute'),
(35038, 'https://ror.org/03xgcy581', 'no_lang_code', 1, 'https://ror.org/03xgcy581 Holta Invest (Norway)'),
(35039, 'https://ror.org/05xrz9x70', 'no_lang_code', 1, 'https://ror.org/05xrz9x70 Ryfylke (Norway)'),
(35040, 'https://ror.org/059795h04', 'no_lang_code', 1, 'https://ror.org/059795h04 Papirbredden Innovasjon (Norway)'),
(35041, 'https://ror.org/027419338', 'en', 1, 'https://ror.org/027419338 Rygge Municipality'),
(35042, 'https://ror.org/038ny6229', 'no_lang_code', 1, 'https://ror.org/038ny6229 RED Consulting (Norway)'),
(35043, 'https://ror.org/04cbhvr29', 'no_lang_code', 1, 'https://ror.org/04cbhvr29 PartnerPlast (Norway)'),
(35044, 'https://ror.org/01adx2n38', 'no_lang_code', 1, 'https://ror.org/01adx2n38 Viken Skog (Norway)'),
(35045, 'https://ror.org/00ve8y072', 'no_lang_code', 1, 'https://ror.org/00ve8y072 Saemien Sijte'),
(35046, 'https://ror.org/017vpsa98', 'no_lang_code', 1, 'https://ror.org/017vpsa98 Redcord (Norway)'),
(35047, 'https://ror.org/0148n2a41', 'no_lang_code', 1, 'https://ror.org/0148n2a41 Safelink (Norway)'),
(35048, 'https://ror.org/01zmty518', 'no_lang_code', 1, 'https://ror.org/01zmty518 Opera Software (Norway)'),
(35049, 'https://ror.org/007gdk107', 'no_lang_code', 1, 'https://ror.org/007gdk107 Saga Welco (Norway)'),
(35050, 'https://ror.org/049qcgg02', 'no_lang_code', 1, 'https://ror.org/049qcgg02 Redox (Norway)'),
(35051, 'https://ror.org/02p4hh588', 'no_lang_code', 1, 'https://ror.org/02p4hh588 PatoGen (Norway)'),
(35052, 'https://ror.org/03pf0r360', 'no_lang_code', 1, 'https://ror.org/03pf0r360 Br. Birkeland (Norway)'),
(35053, 'https://ror.org/05k5sr007', 'no_lang_code', 1, 'https://ror.org/05k5sr007 Redpill Linpro (Norway)'),
(35054, 'https://ror.org/020v4ez65', 'no_lang_code', 1, 'https://ror.org/020v4ez65 PREZIOSO Linjebygg (Norway)'),
(35055, 'https://ror.org/00g3h5036', 'no_lang_code', 1, 'https://ror.org/00g3h5036 Reelwell (Norway)'),
(35056, 'https://ror.org/01z1jq781', 'no_lang_code', 1, 'https://ror.org/01z1jq781 Opinion (Norway)'),
(35057, 'https://ror.org/00qq5j134', 'no_lang_code', 1, 'https://ror.org/00qq5j134 Pax Forlag (Norway)'),
(35058, 'https://ror.org/02nvrva15', 'no_lang_code', 1, 'https://ror.org/02nvrva15 Reemsys (Norway)'),
(35059, 'https://ror.org/007sqfz40', 'no_lang_code', 1, 'https://ror.org/007sqfz40 PricewaterhouseCoopers (Norway)'),
(35060, 'https://ror.org/00y495746', 'no_lang_code', 1, 'https://ror.org/00y495746 PCI Biotech (Norway)'),
(35061, 'https://ror.org/04fhs8414', 'no', 1, 'https://ror.org/04fhs8414 Oppegård Kommune'),
(35062, 'https://ror.org/05kprpt37', 'no_lang_code', 1, 'https://ror.org/05kprpt37 Pelagic Power (Norway)'),
(35063, 'https://ror.org/05c5mw559', 'no_lang_code', 1, 'https://ror.org/05c5mw559 Sagaplant (Norway)'),
(35064, 'https://ror.org/03d8xe868', 'no', 1, 'https://ror.org/03d8xe868 Oppland Fylkeskommune'),
(35065, 'https://ror.org/00qch4977', 'no_lang_code', 1, 'https://ror.org/00qch4977 Pro Analysis (Norway)'),
(35066, 'https://ror.org/001prbr35', 'no_lang_code', 1, 'https://ror.org/001prbr35 Vónin Refa (Norway)'),
(35067, 'https://ror.org/01pwxk906', 'no_lang_code', 1, 'https://ror.org/01pwxk906 Opplysningskontoret for Meieriprodukter (Norway)'),
(35068, 'https://ror.org/05a1ns214', 'no_lang_code', 1, 'https://ror.org/05a1ns214 Regatta (Norway)'),
(35069, 'https://ror.org/037z21177', 'no_lang_code', 1, 'https://ror.org/037z21177 Pro Barents (Norway)'),
(35070, 'https://ror.org/01vxfv915', 'no_lang_code', 1, 'https://ror.org/01vxfv915 OptimarStette (Norway)'),
(35071, 'https://ror.org/01mstep31', 'no_lang_code', 1, 'https://ror.org/01mstep31 Regenics (Norway)'),
(35072, 'https://ror.org/00q7vjv87', 'no_lang_code', 1, 'https://ror.org/00q7vjv87 Optime Subsea Services (Norway)'),
(35073, 'https://ror.org/00gzhxp51', 'no_lang_code', 1, 'https://ror.org/00gzhxp51 Optimeering (Norway)'),
(35074, 'https://ror.org/05n877995', 'no_lang_code', 1, 'https://ror.org/05n877995 Proceda (Norway)'),
(35075, 'https://ror.org/04x0t4f03', 'no_lang_code', 1, 'https://ror.org/04x0t4f03 Benchmark Holdings (Norway)'),
(35076, 'https://ror.org/03xebwg03', 'no_lang_code', 1, 'https://ror.org/03xebwg03 Salt (Norway)');
INSERT INTO `rors` VALUES
(35077, 'https://ror.org/01xkb1z92', 'no_lang_code', 1, 'https://ror.org/01xkb1z92 Peterson (Norway)'),
(35078, 'https://ror.org/042s03372', 'en', 1, 'https://ror.org/042s03372 Center for Child and Adolescent Mental Health, Eastern and Southern Norway'),
(35079, 'https://ror.org/006z5we64', 'no', 1, 'https://ror.org/006z5we64 Salten Regionråd'),
(35080, 'https://ror.org/02eees117', 'no_lang_code', 1, 'https://ror.org/02eees117 ProduksjonsTeknologi (Norway)'),
(35081, 'https://ror.org/01n5bzx98', 'no_lang_code', 1, 'https://ror.org/01n5bzx98 Petoro (Norway)'),
(35082, 'https://ror.org/003m47s20', 'no_lang_code', 1, 'https://ror.org/003m47s20 Produs Aqua (Norway)'),
(35083, 'https://ror.org/05j6q2769', 'no_lang_code', 1, 'https://ror.org/05j6q2769 Petrell (Norway)'),
(35084, 'https://ror.org/03zn6e898', 'no_lang_code', 1, 'https://ror.org/03zn6e898 Profectum (Norway)'),
(35085, 'https://ror.org/03d9q1m75', 'no_lang_code', 1, 'https://ror.org/03d9q1m75 Petroleum Technology Company (Norway)'),
(35086, 'https://ror.org/02pxhh871', 'no_lang_code', 1, 'https://ror.org/02pxhh871 Petroleumsoft (Norway)'),
(35087, 'https://ror.org/01bqp1107', 'no_lang_code', 1, 'https://ror.org/01bqp1107 Selfa (Norway)'),
(35088, 'https://ror.org/00v8gh961', 'no_lang_code', 1, 'https://ror.org/00v8gh961 Petrolink (Norway)'),
(35089, 'https://ror.org/01846wa75', 'no_lang_code', 1, 'https://ror.org/01846wa75 Profixio (Norway)'),
(35090, 'https://ror.org/04jnt3s43', 'no_lang_code', 1, 'https://ror.org/04jnt3s43 Seløy Undervannsservice (Norway)'),
(35091, 'https://ror.org/03j2t9x72', 'no_lang_code', 1, 'https://ror.org/03j2t9x72 Salto (Norway)'),
(35092, 'https://ror.org/0072bcq84', 'no_lang_code', 1, 'https://ror.org/0072bcq84 Profvet (Norway)'),
(35093, 'https://ror.org/007gm3994', 'no_lang_code', 1, 'https://ror.org/007gm3994 Selvaag Gruppen (Norway)'),
(35094, 'https://ror.org/05gn7qs79', 'no_lang_code', 1, 'https://ror.org/05gn7qs79 Semco Maritime (Norway)'),
(35095, 'https://ror.org/00snpfp77', 'en', 1, 'https://ror.org/00snpfp77 Norwegian Association of Economists'),
(35096, 'https://ror.org/05ksgvc87', 'no_lang_code', 1, 'https://ror.org/05ksgvc87 Reichhold (Norway)'),
(35097, 'https://ror.org/04zbn7k04', 'en', 1, 'https://ror.org/04zbn7k04 Norwegian Agency for Development Cooperation'),
(35098, 'https://ror.org/0357w4d04', 'no_lang_code', 1, 'https://ror.org/0357w4d04 Sana Pharma Medical (Norway)'),
(35099, 'https://ror.org/0239yvq05', 'no_lang_code', 1, 'https://ror.org/0239yvq05 Expro (Norway)'),
(35100, 'https://ror.org/023mn6e26', 'en', 1, 'https://ror.org/023mn6e26 Semicolon'),
(35101, 'https://ror.org/01afg1s08', 'no_lang_code', 1, 'https://ror.org/01afg1s08 Reime (Norway)'),
(35102, 'https://ror.org/02bte5314', 'no_lang_code', 1, 'https://ror.org/02bte5314 Maritim Food (Norway)'),
(35103, 'https://ror.org/05v8cdx93', 'no_lang_code', 1, 'https://ror.org/05v8cdx93 Sencel Bioinformatics (Norway)'),
(35104, 'https://ror.org/01hmp0h76', 'no_lang_code', 1, 'https://ror.org/01hmp0h76 Petroleum Geo-Services (Norway)'),
(35105, 'https://ror.org/01f3n2767', 'no_lang_code', 1, 'https://ror.org/01f3n2767 Sensocure (Norway)'),
(35106, 'https://ror.org/039a9p804', 'no_lang_code', 1, 'https://ror.org/039a9p804 Reinertsen (Norway)'),
(35107, 'https://ror.org/0510v1781', 'no', 1, 'https://ror.org/0510v1781 Sandefjord Kommune'),
(35108, 'https://ror.org/04vxgz290', 'no_lang_code', 1, 'https://ror.org/04vxgz290 Remora (Norway)'),
(35109, 'https://ror.org/054v2zz61', 'no_lang_code', 1, 'https://ror.org/054v2zz61 RemovAid (Norway)'),
(35110, 'https://ror.org/04yh74t68', 'no_lang_code', 1, 'https://ror.org/04yh74t68 Infineon Technologies (Norway)'),
(35111, 'https://ror.org/04q61xe51', 'no_lang_code', 1, 'https://ror.org/04q61xe51 Sensorlink (Norway)'),
(35112, 'https://ror.org/03tw2c072', 'no_lang_code', 1, 'https://ror.org/03tw2c072 Sandvik (Norway)'),
(35113, 'https://ror.org/03rcgd081', 'no_lang_code', 1, 'https://ror.org/03rcgd081 Pharmaq (Norway)'),
(35114, 'https://ror.org/01vzhs891', 'no_lang_code', 1, 'https://ror.org/01vzhs891 Sensorteknikk (Norway)'),
(35115, 'https://ror.org/03ccpe393', 'no_lang_code', 1, 'https://ror.org/03ccpe393 BASF (Norway)'),
(35116, 'https://ror.org/02w9zyq75', 'no_lang_code', 1, 'https://ror.org/02w9zyq75 Pharmasum Therapeutics (Norway)'),
(35117, 'https://ror.org/04hybbx63', 'no_lang_code', 1, 'https://ror.org/04hybbx63 Prophylix Pharma (Norway)'),
(35118, 'https://ror.org/059h94t31', 'no_lang_code', 1, 'https://ror.org/059h94t31 REN (Norway)'),
(35119, 'https://ror.org/00q13z447', 'no_lang_code', 1, 'https://ror.org/00q13z447 PRORES (Norway)'),
(35120, 'https://ror.org/05xc75s20', 'no', 1, 'https://ror.org/05xc75s20 Regionrådet i Nord-Gudbrandsdal'),
(35121, 'https://ror.org/03037mp68', 'no_lang_code', 1, 'https://ror.org/03037mp68 Sensovann (Norway)'),
(35122, 'https://ror.org/01sz7a883', 'no', 1, 'https://ror.org/01sz7a883 Fjellregionen'),
(35123, 'https://ror.org/021dpgf14', 'no', 1, 'https://ror.org/021dpgf14 Regionrådet for Hallingdal'),
(35124, 'https://ror.org/05t55vt39', 'no_lang_code', 1, 'https://ror.org/05t55vt39 Sarsia (Norway)'),
(35125, 'https://ror.org/028rs2d85', 'no_lang_code', 1, 'https://ror.org/028rs2d85 ReNorway (Norway)'),
(35126, 'https://ror.org/01e1z6807', 'no_lang_code', 1, 'https://ror.org/01e1z6807 Photocure (Norway)'),
(35127, 'https://ror.org/01xssd484', 'no_lang_code', 1, 'https://ror.org/01xssd484 SAS Cargo (Norway)'),
(35128, 'https://ror.org/01x9cep12', 'no_lang_code', 1, 'https://ror.org/01x9cep12 Wienerberger (Norway)'),
(35129, 'https://ror.org/055nt8z76', 'no_lang_code', 1, 'https://ror.org/055nt8z76 Glor (Norway)'),
(35130, 'https://ror.org/04q60r444', 'no_lang_code', 1, 'https://ror.org/04q60r444 Pipetech International (Norway)'),
(35131, 'https://ror.org/04gaydk29', 'no_lang_code', 1, 'https://ror.org/04gaydk29 Piql (Norway)'),
(35132, 'https://ror.org/020rm1980', 'no_lang_code', 1, 'https://ror.org/020rm1980 Res Publica (Norway)'),
(35133, 'https://ror.org/04bwvvd57', 'no_lang_code', 1, 'https://ror.org/04bwvvd57 SAS Institute (Norway)'),
(35134, 'https://ror.org/05t55rs39', 'no_lang_code', 1, 'https://ror.org/05t55rs39 Piscada (Norway)'),
(35135, 'https://ror.org/05rbhea42', 'no_lang_code', 1, 'https://ror.org/05rbhea42 Centre for Advanced Study'),
(35136, 'https://ror.org/05qrcqk02', 'no_lang_code', 1, 'https://ror.org/05qrcqk02 Protector (Norway)'),
(35137, 'https://ror.org/027zxhv97', 'no_lang_code', 1, 'https://ror.org/027zxhv97 Research Management (Norway)'),
(35138, 'https://ror.org/05bg39511', 'no_lang_code', 1, 'https://ror.org/05bg39511 ReSight (Norway)'),
(35139, 'https://ror.org/019wpez42', 'no_lang_code', 1, 'https://ror.org/019wpez42 Proteket (Norway)'),
(35140, 'https://ror.org/00bcxky47', 'no_lang_code', 1, 'https://ror.org/00bcxky47 Scale Protection (Norway)'),
(35141, 'https://ror.org/03acm9457', 'no_lang_code', 1, 'https://ror.org/03acm9457 Parker Maritime (Norway)'),
(35142, 'https://ror.org/021ypf588', 'no_lang_code', 1, 'https://ror.org/021ypf588 Scan4news (Norway)'),
(35143, 'https://ror.org/01xc51294', 'no_lang_code', 1, 'https://ror.org/01xc51294 Scana (Norway)'),
(35144, 'https://ror.org/00r2mkt64', 'no_lang_code', 1, 'https://ror.org/00r2mkt64 Weatherford (Norway)'),
(35145, 'https://ror.org/02mzaws48', 'no_lang_code', 1, 'https://ror.org/02mzaws48 Resman (Norway)'),
(35146, 'https://ror.org/02taagt52', 'no_lang_code', 1, 'https://ror.org/02taagt52 Provista (Norway)'),
(35147, 'https://ror.org/02e29gr04', 'no_lang_code', 1, 'https://ror.org/02e29gr04 Planktonic (Norway)'),
(35148, 'https://ror.org/0327c5w84', 'no_lang_code', 1, 'https://ror.org/0327c5w84 Resonator (Norway)'),
(35149, 'https://ror.org/01k67xz52', 'no_lang_code', 1, 'https://ror.org/01k67xz52 Plany (Norway)'),
(35150, 'https://ror.org/0171xsf67', 'no_lang_code', 1, 'https://ror.org/0171xsf67 Response Nordic (Norway)'),
(35151, 'https://ror.org/04rk73070', 'no_lang_code', 1, 'https://ror.org/04rk73070 Scanmar (Norway)'),
(35152, 'https://ror.org/02a242w84', 'no_lang_code', 1, 'https://ror.org/02a242w84 Savo (Norway)'),
(35153, 'https://ror.org/004r88k74', 'no_lang_code', 1, 'https://ror.org/004r88k74 Prox Dynamics (Norway)'),
(35154, 'https://ror.org/017aag272', 'no_lang_code', 1, 'https://ror.org/017aag272 Scanship (Norway)'),
(35155, 'https://ror.org/05xe9nd50', 'no_lang_code', 1, 'https://ror.org/05xe9nd50 Scantrol (Norway)'),
(35156, 'https://ror.org/03jbfte74', 'no_lang_code', 1, 'https://ror.org/03jbfte74 Restrack (Norway)'),
(35157, 'https://ror.org/00ppwz362', 'no_lang_code', 1, 'https://ror.org/00ppwz362 ScanVacc (Norway)'),
(35158, 'https://ror.org/01x1d6d19', 'no', 1, 'https://ror.org/01x1d6d19 Psykologica'),
(35159, 'https://ror.org/05ezx4n91', 'no', 1, 'https://ror.org/05ezx4n91 Rettspolitisk Forening'),
(35160, 'https://ror.org/002jt8031', 'no_lang_code', 1, 'https://ror.org/002jt8031 PubGene (Norway)'),
(35161, 'https://ror.org/05mwx1x85', 'no_lang_code', 1, 'https://ror.org/05mwx1x85 PXO (Norway)'),
(35162, 'https://ror.org/026t4yj55', 'no_lang_code', 1, 'https://ror.org/026t4yj55 Retura (Norway)'),
(35163, 'https://ror.org/014kzqt55', 'no_lang_code', 1, 'https://ror.org/014kzqt55 Rheumatech (Norway)'),
(35164, 'https://ror.org/0588hkb73', 'no_lang_code', 1, 'https://ror.org/0588hkb73 Quality Management Software (Norway)'),
(35165, 'https://ror.org/01fj3m631', 'en', 1, 'https://ror.org/01fj3m631 Association of Consulting Engineers'),
(35166, 'https://ror.org/0483q4e62', 'en', 1, 'https://ror.org/0483q4e62 Office of the Auditor General of Norway'),
(35167, 'https://ror.org/032ymtx48', 'no_lang_code', 1, 'https://ror.org/032ymtx48 ICR (Norway)'),
(35168, 'https://ror.org/00t7chs43', 'no_lang_code', 1, 'https://ror.org/00t7chs43 R.J.Rygg International (Norway)'),
(35169, 'https://ror.org/00c3nj152', 'no_lang_code', 1, 'https://ror.org/00c3nj152 Sea Urchin Farm (Norway)'),
(35170, 'https://ror.org/02q6tz689', 'no_lang_code', 1, 'https://ror.org/02q6tz689 Rimfrost (Norway)'),
(35171, 'https://ror.org/00nf2y042', 'no_lang_code', 1, 'https://ror.org/00nf2y042 Rindalshytter (Norway)'),
(35172, 'https://ror.org/02b3zmq47', 'en', 1, 'https://ror.org/02b3zmq47 Norwegian Center of Expertise'),
(35173, 'https://ror.org/03gt4py31', 'no_lang_code', 1, 'https://ror.org/03gt4py31 Smartbrain (Norway)'),
(35174, 'https://ror.org/04aynjg70', 'no_lang_code', 1, 'https://ror.org/04aynjg70 Rising Star Products (Norway)'),
(35175, 'https://ror.org/047cs9w11', 'no_lang_code', 1, 'https://ror.org/047cs9w11 SmartCare (Norway)'),
(35176, 'https://ror.org/018jfg264', 'no_lang_code', 1, 'https://ror.org/018jfg264 Seacalx (Norway)'),
(35177, 'https://ror.org/02x0ymb50', 'en', 1, 'https://ror.org/02x0ymb50 Council for Mental Health'),
(35178, 'https://ror.org/00c3hyn70', 'no_lang_code', 1, 'https://ror.org/00c3hyn70 Robot Aviation (Norway)'),
(35179, 'https://ror.org/028fs8s54', 'no_lang_code', 1, 'https://ror.org/028fs8s54 Radionor Communications (Norway)'),
(35180, 'https://ror.org/04h29cm67', 'no_lang_code', 1, 'https://ror.org/04h29cm67 Smartcom:tv (Norway)'),
(35181, 'https://ror.org/00h600x29', 'no_lang_code', 1, 'https://ror.org/00h600x29 Seadrill (Norway)'),
(35182, 'https://ror.org/02he3sm39', 'no_lang_code', 1, 'https://ror.org/02he3sm39 Robotic Drilling Systems (Norway)'),
(35183, 'https://ror.org/01hcbs823', 'en', 1, 'https://ror.org/01hcbs823 Norwegain Radium Hospital Research Foundation'),
(35184, 'https://ror.org/01r53zj15', 'no_lang_code', 1, 'https://ror.org/01r53zj15 Smartfish (Norway)'),
(35185, 'https://ror.org/02pz5h498', 'no_lang_code', 1, 'https://ror.org/02pz5h498 Robotnorge (Norway)'),
(35186, 'https://ror.org/05wgaw739', 'no_lang_code', 1, 'https://ror.org/05wgaw739 Ralston & Bau (Norway)'),
(35187, 'https://ror.org/02bga3905', 'no_lang_code', 1, 'https://ror.org/02bga3905 Rofi (Norway)'),
(35188, 'https://ror.org/024dhg912', 'no_lang_code', 1, 'https://ror.org/024dhg912 Seamless (Norway)'),
(35189, 'https://ror.org/02w96wv37', 'no_lang_code', 1, 'https://ror.org/02w96wv37 Ramboll (Norway)'),
(35190, 'https://ror.org/01q30s265', 'no_lang_code', 1, 'https://ror.org/01q30s265 Searis (Norway)'),
(35191, 'https://ror.org/00bsg1308', 'no_lang_code', 1, 'https://ror.org/00bsg1308 Seram Coatings (Norway)'),
(35192, 'https://ror.org/01jcpms10', 'no_lang_code', 1, 'https://ror.org/01jcpms10 Leonhard Nilsen & Sønner (Norway)'),
(35193, 'https://ror.org/003t41316', 'en', 1, 'https://ror.org/003t41316 Rogaland Training & Education Centre'),
(35194, 'https://ror.org/02z6zf495', 'no_lang_code', 1, 'https://ror.org/02z6zf495 Seas Fabrikker (Norway)'),
(35195, 'https://ror.org/04a1h1h05', 'no_lang_code', 1, 'https://ror.org/04a1h1h05 Smart Solution (Norway)'),
(35196, 'https://ror.org/04b40n161', 'no_lang_code', 1, 'https://ror.org/04b40n161 Seria (Norway)'),
(35197, 'https://ror.org/007ssvs37', 'no_lang_code', 1, 'https://ror.org/007ssvs37 Seashell (Norway)'),
(35198, 'https://ror.org/03h6wcn09', 'no_lang_code', 1, 'https://ror.org/03h6wcn09 Smerud Medical Research (Norway)'),
(35199, 'https://ror.org/04z3wpq90', 'no_lang_code', 1, 'https://ror.org/04z3wpq90 Setred (Norway)'),
(35200, 'https://ror.org/0272hbz69', 'no_lang_code', 1, 'https://ror.org/0272hbz69 SeaSide (Norway)'),
(35201, 'https://ror.org/03wgydg43', 'no_lang_code', 1, 'https://ror.org/03wgydg43 RollerSafe (Norway)'),
(35202, 'https://ror.org/04dwnx646', 'no_lang_code', 1, 'https://ror.org/04dwnx646 Smi Human (Norway)'),
(35203, 'https://ror.org/0187k6t98', 'no_lang_code', 1, 'https://ror.org/0187k6t98 SES Europe (Norway)'),
(35204, 'https://ror.org/04w708p35', 'no_lang_code', 1, 'https://ror.org/04w708p35 Rolvsoy Metalindustri (Norway)'),
(35205, 'https://ror.org/056c41506', 'no_lang_code', 1, 'https://ror.org/056c41506 Serodus (Norway)'),
(35206, 'https://ror.org/03c4e0176', 'no_lang_code', 1, 'https://ror.org/03c4e0176 Smia Gjerdeprodukter (Norway)'),
(35207, 'https://ror.org/02v4sna49', 'no_lang_code', 1, 'https://ror.org/02v4sna49 Seatower (Norway)'),
(35208, 'https://ror.org/003dc0936', 'no_lang_code', 1, 'https://ror.org/003dc0936 Sero (Norway)'),
(35209, 'https://ror.org/00bdnn422', 'no_lang_code', 1, 'https://ror.org/00bdnn422 Seatrans (Norway)'),
(35210, 'https://ror.org/00nfrej94', 'en', 1, 'https://ror.org/00nfrej94 Norwegian Directorate of Public Construction and Property'),
(35211, 'https://ror.org/046yyy878', 'no_lang_code', 1, 'https://ror.org/046yyy878 Seaweed Energy Solutions (Norway)'),
(35212, 'https://ror.org/04am2ad87', 'no_lang_code', 1, 'https://ror.org/04am2ad87 Seaworks (Norway)'),
(35213, 'https://ror.org/045hhpe19', 'no_lang_code', 1, 'https://ror.org/045hhpe19 Statskog (Norway)'),
(35214, 'https://ror.org/046c79798', 'no_lang_code', 1, 'https://ror.org/046c79798 Snöball Film (Norway)'),
(35215, 'https://ror.org/01xgb9x41', 'no_lang_code', 1, 'https://ror.org/01xgb9x41 Sway (Norway)'),
(35216, 'https://ror.org/0244tm524', 'no_lang_code', 1, 'https://ror.org/0244tm524 Securenok (Norway)'),
(35217, 'https://ror.org/037pdaj95', 'no_lang_code', 1, 'https://ror.org/037pdaj95 Sheriff Film Company (Norway)'),
(35218, 'https://ror.org/00na8v834', 'no_lang_code', 1, 'https://ror.org/00na8v834 Snøgg (Norway)'),
(35219, 'https://ror.org/009vyay43', 'no_lang_code', 1, 'https://ror.org/009vyay43 Stavanger Health Research (Norway)'),
(35220, 'https://ror.org/01tm5gc80', 'no_lang_code', 1, 'https://ror.org/01tm5gc80 Securo (Norway)'),
(35221, 'https://ror.org/05e5vvv83', 'no_lang_code', 1, 'https://ror.org/05e5vvv83 Ship Modelling & Simulation Centre'),
(35222, 'https://ror.org/04jqvmp15', 'no_lang_code', 1, 'https://ror.org/04jqvmp15 Swix Sport (Norway)'),
(35223, 'https://ror.org/03dj06y91', 'no_lang_code', 1, 'https://ror.org/03dj06y91 Snøhetta (Norway)'),
(35224, 'https://ror.org/05c1jqg32', 'no_lang_code', 1, 'https://ror.org/05c1jqg32 BMS Kuhn Steel (Norway)'),
(35225, 'https://ror.org/03vsy6588', 'no_lang_code', 1, 'https://ror.org/03vsy6588 Segel (Norway)'),
(35226, 'https://ror.org/010vett18', 'no_lang_code', 1, 'https://ror.org/010vett18 Tieto (Norway)'),
(35227, 'https://ror.org/038ynt641', 'no_lang_code', 1, 'https://ror.org/038ynt641 Symphonical (Norway)'),
(35228, 'https://ror.org/04x20w027', 'no_lang_code', 1, 'https://ror.org/04x20w027 Synthetica (Norway)'),
(35229, 'https://ror.org/05a1hde32', 'no_lang_code', 1, 'https://ror.org/05a1hde32 Sypress Forlag (Norway)'),
(35230, 'https://ror.org/03hrj0y40', 'no_lang_code', 1, 'https://ror.org/03hrj0y40 Syslab International (Norway)'),
(35231, 'https://ror.org/00pr7tv03', 'no_lang_code', 1, 'https://ror.org/00pr7tv03 Shippingcluster (Norway)'),
(35232, 'https://ror.org/05dqc2261', 'no', 1, 'https://ror.org/05dqc2261 Barratt Due'),
(35233, 'https://ror.org/017wtg883', 'no_lang_code', 1, 'https://ror.org/017wtg883 Sogn Aqua (Norway)'),
(35234, 'https://ror.org/002zf0s07', 'no_lang_code', 1, 'https://ror.org/002zf0s07 Systemløsning (Norway)'),
(35235, 'https://ror.org/00jscjq02', 'no_lang_code', 1, 'https://ror.org/00jscjq02 T&G Elektro (Norway)'),
(35236, 'https://ror.org/01f59ee73', 'no', 1, 'https://ror.org/01f59ee73 Sogn Regionråd'),
(35237, 'https://ror.org/04a24qj50', 'no', 1, 'https://ror.org/04a24qj50 Stiftelsen Bergensklinikkene'),
(35238, 'https://ror.org/04wcfwt17', 'no_lang_code', 1, 'https://ror.org/04wcfwt17 Tagarno Norge (Norway)'),
(35239, 'https://ror.org/04ncd3k75', 'no', 1, 'https://ror.org/04ncd3k75 Sogndal Fotball'),
(35240, 'https://ror.org/003n39798', 'no_lang_code', 1, 'https://ror.org/003n39798 Talkped (Norway)'),
(35241, 'https://ror.org/054kgv845', 'no_lang_code', 1, 'https://ror.org/054kgv845 Unifeeder (Norway)'),
(35242, 'https://ror.org/0363hbd07', 'no', 1, 'https://ror.org/0363hbd07 Tinn kommune'),
(35243, 'https://ror.org/019f0qd57', 'no_lang_code', 1, 'https://ror.org/019f0qd57 Sognefrukt (Norway)'),
(35244, 'https://ror.org/05nkrhe64', 'no_lang_code', 1, 'https://ror.org/05nkrhe64 Targovax (Norway)'),
(35245, 'https://ror.org/01fwpma03', 'no_lang_code', 1, 'https://ror.org/01fwpma03 KRONOS (Norway)'),
(35246, 'https://ror.org/00y0hrk69', 'no_lang_code', 1, 'https://ror.org/00y0hrk69 Catch Solar Energy (Norway)'),
(35247, 'https://ror.org/011qemc14', 'no_lang_code', 1, 'https://ror.org/011qemc14 SolidTech (Norway)'),
(35248, 'https://ror.org/03bchcy62', 'en', 1, 'https://ror.org/03bchcy62 Tax Justice Network'),
(35249, 'https://ror.org/00zh2nr83', 'no_lang_code', 1, 'https://ror.org/00zh2nr83 Sigla (Norway)'),
(35250, 'https://ror.org/00fs3p617', 'en', 1, 'https://ror.org/00fs3p617 Norwegian Institute of Journalism'),
(35251, 'https://ror.org/057q4k809', 'no_lang_code', 1, 'https://ror.org/057q4k809 Solstad Offshore (Norway)'),
(35252, 'https://ror.org/013exrh58', 'no', 1, 'https://ror.org/013exrh58 Kanvas'),
(35253, 'https://ror.org/01qk21t24', 'no_lang_code', 1, 'https://ror.org/01qk21t24 Toma Mat (Norway)'),
(35254, 'https://ror.org/001g8x550', 'no_lang_code', 1, 'https://ror.org/001g8x550 Solum Forlag (Norway)'),
(35255, 'https://ror.org/04ypbx278', 'no_lang_code', 1, 'https://ror.org/04ypbx278 Sigurd Løkeland (Norway)'),
(35256, 'https://ror.org/03fb1av13', 'no_lang_code', 1, 'https://ror.org/03fb1av13 Tomax (Norway)'),
(35257, 'https://ror.org/056zqys57', 'no_lang_code', 1, 'https://ror.org/056zqys57 Solution Seeker (Norway)'),
(35258, 'https://ror.org/035by7v51', 'no', 1, 'https://ror.org/035by7v51 Kappabel'),
(35259, 'https://ror.org/04nkxbz64', 'no_lang_code', 1, 'https://ror.org/04nkxbz64 Tommen Gram Folie (Norway)'),
(35260, 'https://ror.org/05h7a5719', 'no_lang_code', 1, 'https://ror.org/05h7a5719 TeamTec (Norway)'),
(35261, 'https://ror.org/005czd885', 'no_lang_code', 1, 'https://ror.org/005czd885 Simlink (Norway)'),
(35262, 'https://ror.org/02bc4vm73', 'no_lang_code', 1, 'https://ror.org/02bc4vm73 Sonitor Technologies (Norway)'),
(35263, 'https://ror.org/00ps78702', 'no_lang_code', 1, 'https://ror.org/00ps78702 Simicon (Norway)'),
(35264, 'https://ror.org/05p0byv33', 'no_lang_code', 1, 'https://ror.org/05p0byv33 Sonowand (Norway)'),
(35265, 'https://ror.org/022641m79', 'no_lang_code', 1, 'https://ror.org/022641m79 Klar Tale'),
(35266, 'https://ror.org/02vzzsr12', 'no_lang_code', 1, 'https://ror.org/02vzzsr12 Sima (Norway)'),
(35267, 'https://ror.org/036k6sw03', 'en', 1, 'https://ror.org/036k6sw03 Tone Lise Academy'),
(35268, 'https://ror.org/01xqcr941', 'no_lang_code', 1, 'https://ror.org/01xqcr941 TECE Norge (Norway)'),
(35269, 'https://ror.org/05rmtav82', 'no_lang_code', 1, 'https://ror.org/05rmtav82 Silicon Labs (Norway)'),
(35270, 'https://ror.org/010szz537', 'no_lang_code', 1, 'https://ror.org/010szz537 Sorbwater Technology (Norway)'),
(35271, 'https://ror.org/0319n6680', 'no', 1, 'https://ror.org/0319n6680 Kunnskapssenter for Laks og Vannmiljø'),
(35272, 'https://ror.org/01dxv3z76', 'no_lang_code', 1, 'https://ror.org/01dxv3z76 Tech Damper (Norway)'),
(35273, 'https://ror.org/03zezqe26', 'no_lang_code', 1, 'https://ror.org/03zezqe26 Tool Tech (Norway)'),
(35274, 'https://ror.org/03ky2vw43', 'no_lang_code', 1, 'https://ror.org/03ky2vw43 Topro (Norway)'),
(35275, 'https://ror.org/0226dyd29', 'no', 1, 'https://ror.org/0226dyd29 Sørlandet Boligbyggelag'),
(35276, 'https://ror.org/05yawxj29', 'no_lang_code', 1, 'https://ror.org/05yawxj29 Single-Phase Power (Norway)'),
(35277, 'https://ror.org/052gr5r08', 'en', 1, 'https://ror.org/052gr5r08 Simula School'),
(35278, 'https://ror.org/020vj5597', 'no', 1, 'https://ror.org/020vj5597 Sørlandet Kunnskapspark'),
(35279, 'https://ror.org/038a7tx93', 'no', 1, 'https://ror.org/038a7tx93 Materialisten'),
(35280, 'https://ror.org/04w4hwt37', 'no_lang_code', 1, 'https://ror.org/04w4hwt37 Simula Innovation (Norway)'),
(35281, 'https://ror.org/04fnkjm97', 'en', 1, 'https://ror.org/04fnkjm97 South Norway European Office'),
(35282, 'https://ror.org/03b2r8705', 'no', 1, 'https://ror.org/03b2r8705 Sørlandslisten'),
(35283, 'https://ror.org/05fz42k53', 'no_lang_code', 1, 'https://ror.org/05fz42k53 Simrad (Norway)'),
(35284, 'https://ror.org/02tk6p688', 'no_lang_code', 1, 'https://ror.org/02tk6p688 SimSea (Norway)'),
(35285, 'https://ror.org/03s4f5949', 'no_lang_code', 1, 'https://ror.org/03s4f5949 Techni (Norway)'),
(35286, 'https://ror.org/04efgec06', 'no', 1, 'https://ror.org/04efgec06 Sikkerhetssenteret Rørvik'),
(35287, 'https://ror.org/01wbmq566', 'no', 1, 'https://ror.org/01wbmq566 Torsken kommune'),
(35288, 'https://ror.org/01yweg667', 'no_lang_code', 1, 'https://ror.org/01yweg667 Simtronics (Norway)'),
(35289, 'https://ror.org/02kqmtt46', 'no_lang_code', 1, 'https://ror.org/02kqmtt46 siRNAsense (Norway)'),
(35290, 'https://ror.org/00vvj5e57', 'no_lang_code', 1, 'https://ror.org/00vvj5e57 TotAl-gruppen (Norway)'),
(35291, 'https://ror.org/05edp6x37', 'en', 1, 'https://ror.org/05edp6x37 Norwegian National Museum of Justice'),
(35292, 'https://ror.org/05gavvk50', 'no_lang_code', 1, 'https://ror.org/05gavvk50 Tectonor (Norway)'),
(35293, 'https://ror.org/04zzhqg11', 'no', 1, 'https://ror.org/04zzhqg11 Studentsamskipnaden i Trondheim'),
(35294, 'https://ror.org/0592jzf54', 'no', 1, 'https://ror.org/0592jzf54 SpareBank 1 Nord-Norge'),
(35295, 'https://ror.org/00r5q3093', 'no', 1, 'https://ror.org/00r5q3093 Norsk Sjømatsenter'),
(35296, 'https://ror.org/00dcw5152', 'no_lang_code', 1, 'https://ror.org/00dcw5152 Teddy TV (Norway)'),
(35297, 'https://ror.org/02hzxf772', 'no_lang_code', 1, 'https://ror.org/02hzxf772 Sitma (Norway)'),
(35298, 'https://ror.org/02vdp4743', 'no_lang_code', 1, 'https://ror.org/02vdp4743 TraceTracker (Norway)'),
(35299, 'https://ror.org/01py34264', 'no', 1, 'https://ror.org/01py34264 Sparebankforeningen i Norge'),
(35300, 'https://ror.org/05xvhkb42', 'no_lang_code', 1, 'https://ror.org/05xvhkb42 TracID (Norway)'),
(35301, 'https://ror.org/00qwdz285', 'no_lang_code', 1, 'https://ror.org/00qwdz285 Teekay (Norway)'),
(35302, 'https://ror.org/0387h3509', 'no_lang_code', 1, 'https://ror.org/0387h3509 Spartacus Forlag (Norway)'),
(35303, 'https://ror.org/01rmmxf18', 'no_lang_code', 1, 'https://ror.org/01rmmxf18 TEGma (Norway)'),
(35304, 'https://ror.org/039xdzv43', 'en', 1, 'https://ror.org/039xdzv43 Norwegian Maritime Authority'),
(35305, 'https://ror.org/04v1f7r08', 'en', 1, 'https://ror.org/04v1f7r08 Museum of Migration'),
(35306, 'https://ror.org/01fmmx322', 'no_lang_code', 1, 'https://ror.org/01fmmx322 Tekna (Norway)'),
(35307, 'https://ror.org/017jtm929', 'no', 1, 'https://ror.org/017jtm929 Polaria'),
(35308, 'https://ror.org/05yaygt56', 'no_lang_code', 1, 'https://ror.org/05yaygt56 Spermatech (Norway)'),
(35309, 'https://ror.org/02dmket45', 'no', 1, 'https://ror.org/02dmket45 Transparency International Norge'),
(35310, 'https://ror.org/016peqn40', 'no_lang_code', 1, 'https://ror.org/016peqn40 Teknisk Lys (Norway)'),
(35311, 'https://ror.org/03z0dd375', 'en', 1, 'https://ror.org/03z0dd375 Seed Forum'),
(35312, 'https://ror.org/0559rdv60', 'no_lang_code', 1, 'https://ror.org/0559rdv60 Spesialprodukter Sør (Norway)'),
(35313, 'https://ror.org/02pknm559', 'no', 1, 'https://ror.org/02pknm559 Skedsmo kommune'),
(35314, 'https://ror.org/02jjgkb92', 'en', 1, 'https://ror.org/02jjgkb92 Telemark Research Institute'),
(35315, 'https://ror.org/00z451h60', 'no_lang_code', 1, 'https://ror.org/00z451h60 Trefokus (Norway)'),
(35316, 'https://ror.org/05abjx080', 'no_lang_code', 1, 'https://ror.org/05abjx080 Spider Solutions (Norway)'),
(35317, 'https://ror.org/027snk764', 'no_lang_code', 1, 'https://ror.org/027snk764 SpinChip Diagnostics (Norway)'),
(35318, 'https://ror.org/013afsb92', 'no_lang_code', 1, 'https://ror.org/013afsb92 Spiro Medical (Norway)'),
(35319, 'https://ror.org/0364zga38', 'no_lang_code', 1, 'https://ror.org/0364zga38 Det Norske Samlaget (Norway)'),
(35320, 'https://ror.org/05v1bgc28', 'no_lang_code', 1, 'https://ror.org/05v1bgc28 Treindustrien (Norway)'),
(35321, 'https://ror.org/04y5m6789', 'no', 1, 'https://ror.org/04y5m6789 Stiftinga For Folkemusikk og Folkedans'),
(35322, 'https://ror.org/0424mj572', 'no_lang_code', 1, 'https://ror.org/0424mj572 Stimline (Norway)'),
(35323, 'https://ror.org/04tvje441', 'no_lang_code', 1, 'https://ror.org/04tvje441 Stinger Technology (Norway)'),
(35324, 'https://ror.org/04xxxy475', 'no_lang_code', 1, 'https://ror.org/04xxxy475 SquareHead Technology (Norway)'),
(35325, 'https://ror.org/0346psp61', 'no_lang_code', 1, 'https://ror.org/0346psp61 Ulstein Group (Norway)'),
(35326, 'https://ror.org/02nywzg97', 'no', 1, 'https://ror.org/02nywzg97 Tresenteret'),
(35327, 'https://ror.org/0591rz722', 'no_lang_code', 1, 'https://ror.org/0591rz722 Triad (Norway)'),
(35328, 'https://ror.org/05d3ht335', 'no_lang_code', 1, 'https://ror.org/05d3ht335 Ultimovacs (Norway)'),
(35329, 'https://ror.org/055frmz88', 'no_lang_code', 1, 'https://ror.org/055frmz88 Teknomedia (Norway)'),
(35330, 'https://ror.org/0316g6k10', 'no_lang_code', 1, 'https://ror.org/0316g6k10 Store Norske (Norway)'),
(35331, 'https://ror.org/0402vjj88', 'no_lang_code', 1, 'https://ror.org/0402vjj88 Trilobite (Norway)'),
(35332, 'https://ror.org/01pf53a69', 'no', 1, 'https://ror.org/01pf53a69 Storfjord Kommune'),
(35333, 'https://ror.org/00njcfy31', 'no_lang_code', 1, 'https://ror.org/00njcfy31 Standard Bio (Norway)'),
(35334, 'https://ror.org/02p1tbs51', 'no_lang_code', 1, 'https://ror.org/02p1tbs51 Trollhetta (Norway)'),
(35335, 'https://ror.org/00q0t9719', 'no_lang_code', 1, 'https://ror.org/00q0t9719 StormGeo (Norway)'),
(35336, 'https://ror.org/027kfm928', 'no_lang_code', 1, 'https://ror.org/027kfm928 Troms Kraft (Norway)'),
(35337, 'https://ror.org/02ekw8p73', 'no', 1, 'https://ror.org/02ekw8p73 Teknova'),
(35338, 'https://ror.org/000fr0609', 'no_lang_code', 1, 'https://ror.org/000fr0609 Stangeskovene (Norway)'),
(35339, 'https://ror.org/011s3c574', 'no_lang_code', 1, 'https://ror.org/011s3c574 Stranda Prolog (Norway)'),
(35340, 'https://ror.org/007cf5b05', 'no_lang_code', 1, 'https://ror.org/007cf5b05 Star Information Systems (Norway)'),
(35341, 'https://ror.org/03ayyme69', 'no', 1, 'https://ror.org/03ayyme69 Troms Fylkeskommune'),
(35342, 'https://ror.org/04bsrdh64', 'en', 1, 'https://ror.org/04bsrdh64 Strømme Foundation'),
(35343, 'https://ror.org/02djg1003', 'no_lang_code', 1, 'https://ror.org/02djg1003 Trolltind (Norway)'),
(35344, 'https://ror.org/043jqct61', 'no', 1, 'https://ror.org/043jqct61 Start Norge'),
(35345, 'https://ror.org/03rwraz38', 'no_lang_code', 1, 'https://ror.org/03rwraz38 Baader Food Processing Machinery (Norway)'),
(35346, 'https://ror.org/01zmf6239', 'no_lang_code', 1, 'https://ror.org/01zmf6239 Strongpoint (Norway)'),
(35347, 'https://ror.org/01x5kq968', 'no', 1, 'https://ror.org/01x5kq968 Studix'),
(35348, 'https://ror.org/040y85z67', 'no_lang_code', 1, 'https://ror.org/040y85z67 Tidewater (Norway)'),
(35349, 'https://ror.org/00cwj5j78', 'no_lang_code', 1, 'https://ror.org/00cwj5j78 Tele-Com (Norway)'),
(35350, 'https://ror.org/023f84a29', 'no_lang_code', 1, 'https://ror.org/023f84a29 Statkraft (Norway)'),
(35351, 'https://ror.org/03se7gq11', 'no_lang_code', 1, 'https://ror.org/03se7gq11 Subhydro (Norway)'),
(35352, 'https://ror.org/05dq2qj05', 'no', 1, 'https://ror.org/05dq2qj05 Telemark County Council Telemark Fylkeskommune'),
(35353, 'https://ror.org/053vdc408', 'no_lang_code', 1, 'https://ror.org/053vdc408 Subsea Chokes International (Norway)'),
(35354, 'https://ror.org/02ddbzq19', 'no_lang_code', 1, 'https://ror.org/02ddbzq19 Subsea Smart Solutions (Norway)'),
(35355, 'https://ror.org/049whr973', 'no_lang_code', 1, 'https://ror.org/049whr973 Teleplan Consulting (Norway)'),
(35356, 'https://ror.org/04td70f50', 'no_lang_code', 1, 'https://ror.org/04td70f50 Ulltveit-Moe Group (Norway)'),
(35357, 'https://ror.org/01hw8wm79', 'no_lang_code', 1, 'https://ror.org/01hw8wm79 Trøndelag Forskning og Utvikling (Norway)'),
(35358, 'https://ror.org/02k4een92', 'no_lang_code', 1, 'https://ror.org/02k4een92 Vaxxinova (Norway)'),
(35359, 'https://ror.org/00ycas454', 'no_lang_code', 1, 'https://ror.org/00ycas454 Telio (Norway)'),
(35360, 'https://ror.org/04s4d8021', 'no_lang_code', 1, 'https://ror.org/04s4d8021 TrønderEnergi (Norway)'),
(35361, 'https://ror.org/01exddw17', 'no_lang_code', 1, 'https://ror.org/01exddw17 Tellu (Norway)'),
(35362, 'https://ror.org/00r4x3y44', 'no_lang_code', 1, 'https://ror.org/00r4x3y44 Vectron Biosolutions (Norway)'),
(35363, 'https://ror.org/03t6hvd19', 'no', 1, 'https://ror.org/03t6hvd19 Suldal Kommune'),
(35364, 'https://ror.org/0509azq23', 'no_lang_code', 1, 'https://ror.org/0509azq23 Tendeka (Norway)'),
(35365, 'https://ror.org/01vdq2v07', 'no', 1, 'https://ror.org/01vdq2v07 Trondheim Havn IKS'),
(35366, 'https://ror.org/02fd97s83', 'no', 1, 'https://ror.org/02fd97s83 Trøndelags Europakontor'),
(35367, 'https://ror.org/05qs3gc73', 'no_lang_code', 1, 'https://ror.org/05qs3gc73 Fram Flora (Norway)'),
(35368, 'https://ror.org/03j3ybc16', 'no_lang_code', 1, 'https://ror.org/03j3ybc16 Vedde (Norway)'),
(35369, 'https://ror.org/052rvmw54', 'no_lang_code', 1, 'https://ror.org/052rvmw54 Underbakke (Norway)'),
(35370, 'https://ror.org/00e6njw97', 'no_lang_code', 1, 'https://ror.org/00e6njw97 SunSense (Norway)'),
(35371, 'https://ror.org/02rbj4561', 'no_lang_code', 1, 'https://ror.org/02rbj4561 Tronrud Engineering (Norway)'),
(35372, 'https://ror.org/00deak765', 'no_lang_code', 1, 'https://ror.org/00deak765 Veidekke (Norway)'),
(35373, 'https://ror.org/03fevrz39', 'no_lang_code', 1, 'https://ror.org/03fevrz39 SuperOffice (Norway)'),
(35374, 'https://ror.org/00tajj279', 'no', 1, 'https://ror.org/00tajj279 Unge aksjonærer'),
(35375, 'https://ror.org/01t1wff71', 'no', 1, 'https://ror.org/01t1wff71 Tenketanken Tau'),
(35376, 'https://ror.org/04zfra764', 'no_lang_code', 1, 'https://ror.org/04zfra764 Unger Fabrikker (Norway)'),
(35377, 'https://ror.org/057hmyk78', 'no', 1, 'https://ror.org/057hmyk78 Ungt Entreprenørskap'),
(35378, 'https://ror.org/05gwzej73', 'no_lang_code', 1, 'https://ror.org/05gwzej73 Trustper (Norway)'),
(35379, 'https://ror.org/059fh8358', 'no_lang_code', 1, 'https://ror.org/059fh8358 Trysil Kommune'),
(35380, 'https://ror.org/00vqmcb18', 'no_lang_code', 1, 'https://ror.org/00vqmcb18 Verdal Inspection and Technology Center (Norway)'),
(35381, 'https://ror.org/05x32yq84', 'no_lang_code', 1, 'https://ror.org/05x32yq84 Svorka (Norway)'),
(35382, 'https://ror.org/059xg9r41', 'no_lang_code', 1, 'https://ror.org/059xg9r41 Unified Messaging Systems (Norway)'),
(35383, 'https://ror.org/00zjkp172', 'no_lang_code', 1, 'https://ror.org/00zjkp172 Tsat (Norway)'),
(35384, 'https://ror.org/01dscr755', 'no_lang_code', 1, 'https://ror.org/01dscr755 Termorens (Norway)'),
(35385, 'https://ror.org/04d3fgy68', 'no_lang_code', 1, 'https://ror.org/04d3fgy68 Svovel (Norway)'),
(35386, 'https://ror.org/04vfeym88', 'en', 1, 'https://ror.org/04vfeym88 Norwegian Fund and Asset Management Association'),
(35387, 'https://ror.org/03hy7r126', 'no_lang_code', 1, 'https://ror.org/03hy7r126 Warm Systems (Norway)'),
(35388, 'https://ror.org/02knacy77', 'no_lang_code', 1, 'https://ror.org/02knacy77 TV 2 (Norway)'),
(35389, 'https://ror.org/01z3h6v80', 'en', 1, 'https://ror.org/01z3h6v80 Norwegian Securities Dealers Association'),
(35390, 'https://ror.org/03xdw5e88', 'no_lang_code', 1, 'https://ror.org/03xdw5e88 Typhonix (Norway)'),
(35391, 'https://ror.org/01jdhnc41', 'no_lang_code', 1, 'https://ror.org/01jdhnc41 Wärtsilä (Norway)'),
(35392, 'https://ror.org/05g0fhs68', 'no_lang_code', 1, 'https://ror.org/05g0fhs68 Washington Mills (Norway)'),
(35393, 'https://ror.org/019wmzy95', 'no_lang_code', 1, 'https://ror.org/019wmzy95 VS Safety (Norway)'),
(35394, 'https://ror.org/00930df66', 'no_lang_code', 1, 'https://ror.org/00930df66 Ulefos Esco (Norway)'),
(35395, 'https://ror.org/00tya8c87', 'no_lang_code', 1, 'https://ror.org/00tya8c87 Terratec (Norway)'),
(35396, 'https://ror.org/05cswb132', 'no_lang_code', 1, 'https://ror.org/05cswb132 Texas Instruments (Norway)'),
(35397, 'https://ror.org/03wsafn70', 'no_lang_code', 1, 'https://ror.org/03wsafn70 VeriSat (Norway)'),
(35398, 'https://ror.org/03rad7938', 'no_lang_code', 1, 'https://ror.org/03rad7938 Vest i Havet (Norway)'),
(35399, 'https://ror.org/05tnf6s41', 'no_lang_code', 1, 'https://ror.org/05tnf6s41 Wave Propulsion (Norway)'),
(35400, 'https://ror.org/04q4re318', 'no_lang_code', 1, 'https://ror.org/04q4re318 GGG (Norway)'),
(35401, 'https://ror.org/031xv5t30', 'no', 1, 'https://ror.org/031xv5t30 Urban Sjøfront'),
(35402, 'https://ror.org/0120sbw19', 'no_lang_code', 1, 'https://ror.org/0120sbw19 Norwegian Directorate for Education and Training Utdanningsdirektoratet'),
(35403, 'https://ror.org/00gwbbj79', 'no_lang_code', 1, 'https://ror.org/00gwbbj79 Xepto (Norway)'),
(35404, 'https://ror.org/01z5a7f98', 'en', 1, 'https://ror.org/01z5a7f98 Webstudent'),
(35405, 'https://ror.org/02vfz1845', 'no_lang_code', 1, 'https://ror.org/02vfz1845 Weifa (Norway)'),
(35406, 'https://ror.org/015g7kj97', 'no_lang_code', 1, 'https://ror.org/015g7kj97 Xrgia (Norway)'),
(35407, 'https://ror.org/03vm72742', 'no', 1, 'https://ror.org/03vm72742 Vest-Telemarkrådet'),
(35408, 'https://ror.org/00aaeae98', 'no_lang_code', 1, 'https://ror.org/00aaeae98 XTronica (Norway)'),
(35409, 'https://ror.org/05gey1s27', 'no_lang_code', 1, 'https://ror.org/05gey1s27 Thales (Norway)'),
(35410, 'https://ror.org/02vn96q13', 'no_lang_code', 1, 'https://ror.org/02vn96q13 Vestdavit (Norway)'),
(35411, 'https://ror.org/05qf9ct67', 'no', 1, 'https://ror.org/05qf9ct67 Vågan kommune'),
(35412, 'https://ror.org/04488qt04', 'en', 1, 'https://ror.org/04488qt04 Congress-Conference'),
(35413, 'https://ror.org/05fh9da77', 'no_lang_code', 1, 'https://ror.org/05fh9da77 Z Energi (Norway)'),
(35414, 'https://ror.org/009tejc24', 'no_lang_code', 1, 'https://ror.org/009tejc24 Zaptec (Norway)'),
(35415, 'https://ror.org/042k07j95', 'no_lang_code', 1, 'https://ror.org/042k07j95 Quartz Corp (Norway)'),
(35416, 'https://ror.org/02e5y0e76', 'no', 1, 'https://ror.org/02e5y0e76 Valdres Folkemuseum'),
(35417, 'https://ror.org/00emgcm32', 'no_lang_code', 1, 'https://ror.org/00emgcm32 Vallvi (Norway)'),
(35418, 'https://ror.org/05rm0bg60', 'no_lang_code', 1, 'https://ror.org/05rm0bg60 Thelma Biotel (Norway)'),
(35419, 'https://ror.org/04ehae637', 'no_lang_code', 1, 'https://ror.org/04ehae637 Therma Industri (Norway)'),
(35420, 'https://ror.org/00m94xd51', 'no_lang_code', 1, 'https://ror.org/00m94xd51 Thermtech (Norway)'),
(35421, 'https://ror.org/02r8dvt87', 'no_lang_code', 1, 'https://ror.org/02r8dvt87 Thinfilm (Norway)'),
(35422, 'https://ror.org/00n4e0w09', 'no_lang_code', 1, 'https://ror.org/00n4e0w09 ZEG Power (Norway)'),
(35423, 'https://ror.org/0076czt51', 'no_lang_code', 1, 'https://ror.org/0076czt51 Metas (Norway)'),
(35424, 'https://ror.org/043tanr92', 'no', 1, 'https://ror.org/043tanr92 Árran Julevsáme Guovdásj Lulesamisk Senter'),
(35425, 'https://ror.org/00hkhkg72', 'no_lang_code', 1, 'https://ror.org/00hkhkg72 ZEM (Norway)'),
(35426, 'https://ror.org/00cb94380', 'no', 1, 'https://ror.org/00cb94380 Valnesfjord Helsesportssenter'),
(35427, 'https://ror.org/045fwjn44', 'no_lang_code', 1, 'https://ror.org/045fwjn44 Wellcem (Norway)'),
(35428, 'https://ror.org/01277af53', 'no_lang_code', 1, 'https://ror.org/01277af53 Zenitel (Norway)'),
(35429, 'https://ror.org/0013ka569', 'no_lang_code', 1, 'https://ror.org/0013ka569 Wenaas Workwear (Norway)'),
(35430, 'https://ror.org/03qg3qz10', 'no', 1, 'https://ror.org/03qg3qz10 Vestskog'),
(35431, 'https://ror.org/043tfr230', 'en', 1, 'https://ror.org/043tfr230 Institute of Neurosciences, Mental Health and Addiction'),
(35432, 'https://ror.org/01549pn89', 'no_lang_code', 1, 'https://ror.org/01549pn89 West Group (Norway)'),
(35433, 'https://ror.org/04hyzh408', 'no', 1, 'https://ror.org/04hyzh408 Vestvågøy Kommune'),
(35434, 'https://ror.org/00s0b8a75', 'en', 1, 'https://ror.org/00s0b8a75 Institute of Human Development, Child and Youth Health'),
(35435, 'https://ror.org/05ve4qs86', 'no_lang_code', 1, 'https://ror.org/05ve4qs86 Olav Thon (Norway)'),
(35436, 'https://ror.org/03vbt0765', 'en', 1, 'https://ror.org/03vbt0765 Institute of Gender and Health'),
(35437, 'https://ror.org/00dpztj76', 'en', 1, 'https://ror.org/00dpztj76 Institute of Cancer Research'),
(35438, 'https://ror.org/05yg59x49', 'no_lang_code', 1, 'https://ror.org/05yg59x49 Thrace Polybulk (Norway)'),
(35439, 'https://ror.org/0091yh482', 'en', 1, 'https://ror.org/0091yh482 Institute of Health Services and Policy Research'),
(35440, 'https://ror.org/0245knx74', 'no_lang_code', 1, 'https://ror.org/0245knx74 Tidal Sails (Norway)'),
(35441, 'https://ror.org/02g38qb36', 'no_lang_code', 1, 'https://ror.org/02g38qb36 VARD (Norway)'),
(35442, 'https://ror.org/03b5r3y93', 'no', 1, 'https://ror.org/03b5r3y93 Wikimedia Norge'),
(35443, 'https://ror.org/02e07gw14', 'no_lang_code', 1, 'https://ror.org/02e07gw14 Wilh. Wilhelmsen (Norway)'),
(35444, 'https://ror.org/05rzahq86', 'no_lang_code', 1, 'https://ror.org/05rzahq86 WindSim (Norway)'),
(35445, 'https://ror.org/00tcrkx08', 'no_lang_code', 1, 'https://ror.org/00tcrkx08 Vardar (Norway)'),
(35446, 'https://ror.org/04krpa529', 'no_lang_code', 1, 'https://ror.org/04krpa529 WindMaster Technologies'),
(35447, 'https://ror.org/03gwhmn95', 'en', 1, 'https://ror.org/03gwhmn95 Institute of Genetics'),
(35448, 'https://ror.org/01zhqzf22', 'no_lang_code', 1, 'https://ror.org/01zhqzf22 Vardø Barents Base (Norway)'),
(35449, 'https://ror.org/05qfcgb18', 'no', 1, 'https://ror.org/05qfcgb18 Vardø kommune'),
(35450, 'https://ror.org/044mbfr67', 'en', 1, 'https://ror.org/044mbfr67 Institute of Aging'),
(35451, 'https://ror.org/01f11rr66', 'no_lang_code', 1, 'https://ror.org/01f11rr66 Hegnar Media (Norway)'),
(35452, 'https://ror.org/03jpq8k18', 'no_lang_code', 1, 'https://ror.org/03jpq8k18 Wireless Instrumentation Systems (Norway)'),
(35453, 'https://ror.org/05kbnvp43', 'no_lang_code', 1, 'https://ror.org/05kbnvp43 Varier (Norway)'),
(35454, 'https://ror.org/0425b0029', 'no_lang_code', 1, 'https://ror.org/0425b0029 Vartdal Plast (Norway)'),
(35455, 'https://ror.org/04jh1kc52', 'no_lang_code', 1, 'https://ror.org/04jh1kc52 Wirescan (Norway)'),
(35456, 'https://ror.org/0337pwh54', 'no_lang_code', 1, 'https://ror.org/0337pwh54 WiSub (Norway)'),
(35457, 'https://ror.org/00c92tc34', 'no_lang_code', 1, 'https://ror.org/00c92tc34 Viking Development Group (Norway)'),
(35458, 'https://ror.org/04aza8v20', 'no_lang_code', 1, 'https://ror.org/04aza8v20 Wireless Power & Communication (Norway)'),
(35459, 'https://ror.org/05hj6ps60', 'no', 1, 'https://ror.org/05hj6ps60 Vikna Kommune'),
(35460, 'https://ror.org/00e6xyd22', 'no_lang_code', 1, 'https://ror.org/00e6xyd22 TideTec (Norway)'),
(35461, 'https://ror.org/03cdqv492', 'no_lang_code', 1, 'https://ror.org/03cdqv492 Timm (Norway)'),
(35462, 'https://ror.org/04mcehe57', 'no_lang_code', 1, 'https://ror.org/04mcehe57 Tind Technologies (Norway)'),
(35463, 'https://ror.org/05gzt5s45', 'no_lang_code', 1, 'https://ror.org/05gzt5s45 Viscenario (Norway)'),
(35464, 'https://ror.org/00zsg1530', 'no_lang_code', 1, 'https://ror.org/00zsg1530 Vision iO (Norway)'),
(35465, 'https://ror.org/02346dc53', 'no_lang_code', 1, 'https://ror.org/02346dc53 Visitech (Norway)'),
(35466, 'https://ror.org/0295npy46', 'no_lang_code', 1, 'https://ror.org/0295npy46 Zeracryl (Norway)'),
(35467, 'https://ror.org/04evhzp91', 'fr', 1, 'https://ror.org/04evhzp91 Agence Science Presse'),
(35468, 'https://ror.org/04e9sck44', 'no_lang_code', 1, 'https://ror.org/04e9sck44 Visma (Norway)'),
(35469, 'https://ror.org/03j5ebv52', 'en', 1, 'https://ror.org/03j5ebv52 Zero Emissions Resource Organisation'),
(35470, 'https://ror.org/009mq9d73', 'en', 1, 'https://ror.org/009mq9d73 Agence universitaire de la Francophonie Francophone University Association'),
(35471, 'https://ror.org/05tq83t16', 'no_lang_code', 1, 'https://ror.org/05tq83t16 Ziebel (Norway)'),
(35472, 'https://ror.org/03j5m6417', 'no_lang_code', 1, 'https://ror.org/03j5m6417 Vista Analyse (Norway)'),
(35473, 'https://ror.org/041c8tt83', 'fr', 1, 'https://ror.org/041c8tt83 Centres Intégré Universitaires de Santé et de Services Sociaux'),
(35474, 'https://ror.org/04zbxvv62', 'no_lang_code', 1, 'https://ror.org/04zbxvv62 Zoaring (Norway)'),
(35475, 'https://ror.org/0403fs498', 'no_lang_code', 1, 'https://ror.org/0403fs498 Vista Utredning (Norway)'),
(35476, 'https://ror.org/05xdv6s36', 'en', 1, 'https://ror.org/05xdv6s36 Association internationale de science politique International Political Science Association'),
(35477, 'https://ror.org/05mkwhv74', 'en', 1, 'https://ror.org/05mkwhv74 Collège militaire royal de Saint-Jean Royal Military College Saint-Jean'),
(35478, 'https://ror.org/00fxawc57', 'no_lang_code', 1, 'https://ror.org/00fxawc57 Visual Solutions (Norway)'),
(35479, 'https://ror.org/05fhv3964', 'fr', 1, 'https://ror.org/05fhv3964 Association Internationale des Études Québécoises'),
(35480, 'https://ror.org/01yyc4w33', 'no_lang_code', 1, 'https://ror.org/01yyc4w33 Vidarforlaget (Norway)'),
(35481, 'https://ror.org/05kqg2j33', 'fr', 1, 'https://ror.org/05kqg2j33 Collège Montmorency'),
(35482, 'https://ror.org/04hdhsf72', 'no_lang_code', 1, 'https://ror.org/04hdhsf72 Visuray (Norway)'),
(35483, 'https://ror.org/019c3k705', 'no_lang_code', 1, 'https://ror.org/019c3k705 Vitality Innovation (Norway)'),
(35484, 'https://ror.org/0153jrn34', 'en', 1, 'https://ror.org/0153jrn34 Champlain Regional College Collège régional champlain de saint-lambert'),
(35485, 'https://ror.org/056v9a321', 'en', 1, 'https://ror.org/056v9a321 Caneus International'),
(35486, 'https://ror.org/01cdn3r29', 'fr', 1, 'https://ror.org/01cdn3r29 École Nationale Supérieure des Beaux-Arts École des Beaux-Arts École des beaux-arts'),
(35487, 'https://ror.org/053pw6b94', 'no_lang_code', 1, 'https://ror.org/053pw6b94 Vitenparken'),
(35488, 'https://ror.org/04wfzsh36', 'no_lang_code', 1, 'https://ror.org/04wfzsh36 CapCOGITO (Canada)'),
(35489, 'https://ror.org/042y68y70', 'no', 1, 'https://ror.org/042y68y70 Trondheim Science Museum Vitensenteret i Trondheim'),
(35490, 'https://ror.org/05rxd1q58', 'fr', 1, 'https://ror.org/05rxd1q58 Cégep de l''Outaouais'),
(35491, 'https://ror.org/059jbqt71', 'fr', 1, 'https://ror.org/059jbqt71 Institut du Nouveau Monde'),
(35492, 'https://ror.org/05hd3bg98', 'no', 1, 'https://ror.org/05hd3bg98 Science Center of Innlandet Vitensenteret Innlandet'),
(35493, 'https://ror.org/0572dex65', 'no', 1, 'https://ror.org/0572dex65 Vitensenteret Sørlandet'),
(35494, 'https://ror.org/04yr0ey26', 'fr', 1, 'https://ror.org/04yr0ey26 Réseau Technoscience Saguenay–Lac-Saint-Jean'),
(35495, 'https://ror.org/01zzvpv85', 'fr', 1, 'https://ror.org/01zzvpv85 Cégep de Saint-Laurent'),
(35496, 'https://ror.org/02jmyy013', 'fr', 1, 'https://ror.org/02jmyy013 Cégep du Vieux Montréal'),
(35497, 'https://ror.org/0235t2b60', 'fr', 1, 'https://ror.org/0235t2b60 Centre des Sciences de Montréal'),
(35498, 'https://ror.org/00gnjv286', 'no_lang_code', 1, 'https://ror.org/00gnjv286 VivID (Norway)'),
(35499, 'https://ror.org/02p68mp54', 'no_lang_code', 1, 'https://ror.org/02p68mp54 Voca (Norway)'),
(35500, 'https://ror.org/05351er27', 'no_lang_code', 1, 'https://ror.org/05351er27 VoiceASP (Norway)'),
(35501, 'https://ror.org/03pda7361', 'no', 1, 'https://ror.org/03pda7361 Voss Kommune'),
(35502, 'https://ror.org/02thtn249', 'fr', 1, 'https://ror.org/02thtn249 Kéroul'),
(35503, 'https://ror.org/03svm3p52', 'no', 1, 'https://ror.org/03svm3p52 VitenWahl Andreas Wahl'),
(35504, 'https://ror.org/058zgr739', 'en', 1, 'https://ror.org/058zgr739 Consortium de Recherche en Oncologie Clinique du Québec Quebec - Clinical Research Organization in Cancer'),
(35505, 'https://ror.org/04pgq1648', 'fr', 1, 'https://ror.org/04pgq1648 Centre de Liaison Sur l''Intervention et la Prévention Psychosociales'),
(35506, 'https://ror.org/04yxrt293', 'fr', 1, 'https://ror.org/04yxrt293 Ordre des Psychologues du Québec'),
(35507, 'https://ror.org/03x18qq52', 'en', 1, 'https://ror.org/03x18qq52 Consortium de recherche et d''innovation en technologies médicales du Québec Quebec Consortium for Industrial Research and Innovation in Medical Technology'),
(35508, 'https://ror.org/05xamdp54', 'fr', 1, 'https://ror.org/05xamdp54 Le Fresnoy - Studio National des Arts Contemporains'),
(35509, 'https://ror.org/05bxqp605', 'fr', 1, 'https://ror.org/05bxqp605 Réseau Québécois en Innovation Sociale'),
(35510, 'https://ror.org/00x1wkj06', 'fr', 1, 'https://ror.org/00x1wkj06 Robotique FIRST Québec'),
(35511, 'https://ror.org/01ne8cy78', 'fr', 1, 'https://ror.org/01ne8cy78 Salon Carrière Formation de Québec'),
(35512, 'https://ror.org/00p4fjt47', 'en', 1, 'https://ror.org/00p4fjt47 Innovation Maritime'),
(35513, 'https://ror.org/04qze1e43', 'fr', 1, 'https://ror.org/04qze1e43 Montréal InVivo'),
(35514, 'https://ror.org/02nqgwy66', 'en', 1, 'https://ror.org/02nqgwy66 Institut de la Statistique du Québec Quebec Statistical Institute'),
(35515, 'https://ror.org/0499krd69', 'fr', 1, 'https://ror.org/0499krd69 Museum of Civilization Musée de la Civilisation'),
(35516, 'https://ror.org/030t4re78', 'fr', 1, 'https://ror.org/030t4re78 Musée du Fjord'),
(35517, 'https://ror.org/01bgked92', 'fr', 1, 'https://ror.org/01bgked92 Centre de Santé et de Services Sociaux de la Montagne'),
(35518, 'https://ror.org/01h6cpb10', 'fr', 1, 'https://ror.org/01h6cpb10 Centre de Santé et de Services Sociaux de la Vieille-Capitale'),
(35519, 'https://ror.org/012bzsw43', 'en', 1, 'https://ror.org/012bzsw43 Danish National Institute of Public Health Statens Institut for Folkesundhed'),
(35520, 'https://ror.org/01wpx1p02', 'en', 1, 'https://ror.org/01wpx1p02 Centre de santé et de services sociaux Institut universitaire de gériatrie de Sherbrooke Health and Social Services Centre University Institute of Geriatrics of Sherbrooke'),
(35521, 'https://ror.org/043f3ea85', 'fr', 1, 'https://ror.org/043f3ea85 Centre de Transfert Pour la Réussite Educative du Québec'),
(35522, 'https://ror.org/035sj1s35', 'fr', 1, 'https://ror.org/035sj1s35 Service de Recherche et d''EXpertise en Transformation des Produits Forestiers'),
(35523, 'https://ror.org/002zkqx49', 'en', 1, 'https://ror.org/002zkqx49 Quebec Society for the Protection of Plants Société de Protection des Plantes du Québec'),
(35524, 'https://ror.org/05p0hpp38', 'en', 1, 'https://ror.org/05p0hpp38 Society for Arts and Technology Société des Arts Technologiques'),
(35525, 'https://ror.org/01wfedj41', 'it', 1, 'https://ror.org/01wfedj41 Ospedale Cervesi di Cattolica'),
(35526, 'https://ror.org/03t6npk27', 'en', 1, 'https://ror.org/03t6npk27 Old Port of Montreal Corporation Société du Vieux-Port de Montréal'),
(35527, 'https://ror.org/04y52r328', 'en', 1, 'https://ror.org/04y52r328 Novika Solutions'),
(35528, 'https://ror.org/003x1ca72', 'en', 1, 'https://ror.org/003x1ca72 Clark Art Institute Instituto de Arte Clark'),
(35529, 'https://ror.org/03xaygd04', 'fr', 1, 'https://ror.org/03xaygd04 Centre Québécois du P.E.N. International'),
(35530, 'https://ror.org/018samx11', 'en', 1, 'https://ror.org/018samx11 Zone01 Robotics'),
(35531, 'https://ror.org/02rrvb782', 'fr', 1, 'https://ror.org/02rrvb782 Quebec Television Broadcasting Corporation Télé-Québec'),
(35532, 'https://ror.org/038b7sx49', 'no_lang_code', 1, 'https://ror.org/038b7sx49 Adaptimmune (United Kingdom)'),
(35533, 'https://ror.org/01ra53y91', 'en', 1, 'https://ror.org/01ra53y91 Aditya Birla Memorial Hospital'),
(35534, 'https://ror.org/03tjs3938', 'en', 1, 'https://ror.org/03tjs3938 BLK Super Speciality Hospital'),
(35535, 'https://ror.org/0174nta86', 'es', 1, 'https://ror.org/0174nta86 Hospital Alto Guadalquivir'),
(35536, 'https://ror.org/0440dpw16', 'no_lang_code', 1, 'https://ror.org/0440dpw16 Advanced Fiber Resources (China)'),
(35537, 'https://ror.org/046f4h193', 'no_lang_code', 1, 'https://ror.org/046f4h193 Abcodia (United Kingdom)'),
(35538, 'https://ror.org/0353d6x38', 'no_lang_code', 1, 'https://ror.org/0353d6x38 Amarin (United States)'),
(35539, 'https://ror.org/01g6hae70', 'no_lang_code', 1, 'https://ror.org/01g6hae70 Advanced Research Systems'),
(35540, 'https://ror.org/03mpynm22', 'it', 1, 'https://ror.org/03mpynm22 Ospedale Pesenti Fenaroli'),
(35541, 'https://ror.org/0563z6d74', 'en', 1, 'https://ror.org/0563z6d74 421 Hospital of PLA'),
(35542, 'https://ror.org/03wtb7y24', 'no_lang_code', 1, 'https://ror.org/03wtb7y24 Advion (United Kingdom)'),
(35543, 'https://ror.org/027wzg564', 'en', 1, 'https://ror.org/027wzg564 Australian College of Applied Psychology'),
(35544, 'https://ror.org/03s8epn20', 'en', 1, 'https://ror.org/03s8epn20 Aerospace Research Institute of Materials and Processing Technology 航天材料及工艺研究所'),
(35545, 'https://ror.org/006p8df44', 'en', 1, 'https://ror.org/006p8df44 AMRI Hospitals');
INSERT INTO `rors` VALUES
(35546, 'https://ror.org/04sz74c83', 'en', 1, 'https://ror.org/04sz74c83 Shandong Shierming Eye Hospital'),
(35547, 'https://ror.org/01z5xma55', 'de', 1, 'https://ror.org/01z5xma55 Krankenhaus der Elisabethinen'),
(35548, 'https://ror.org/049vsq398', 'en', 1, 'https://ror.org/049vsq398 Affiliated Hospital of Hebei University'),
(35549, 'https://ror.org/01ry3tb23', 'en', 1, 'https://ror.org/01ry3tb23 ACPM Dental College and Hospital'),
(35550, 'https://ror.org/04cgmg165', 'en', 1, 'https://ror.org/04cgmg165 Wuhan Sixth Hospital'),
(35551, 'https://ror.org/04j1qx617', 'en', 1, 'https://ror.org/04j1qx617 Aviation General Hospital'),
(35552, 'https://ror.org/02ar02c28', 'en', 1, 'https://ror.org/02ar02c28 Wuxi Fourth People''s Hospital'),
(35553, 'https://ror.org/03snt1857', 'en', 1, 'https://ror.org/03snt1857 A.M. Obukhov Institute of Atmospheric Physics Федеральное государственное бюджетное учреждение науки Институт физики атмосферы им. А.М. Обухова Российской академии наук'),
(35554, 'https://ror.org/00fxmev27', 'no_lang_code', 1, 'https://ror.org/00fxmev27 Axdev Group (Canada)'),
(35555, 'https://ror.org/03tt6x206', 'no_lang_code', 1, 'https://ror.org/03tt6x206 Shimadzu (China)'),
(35556, 'https://ror.org/000j1tr86', 'en', 1, 'https://ror.org/000j1tr86 Qinghai University Affiliated Hospital 青海大学附属医院'),
(35557, 'https://ror.org/05vcxb550', 'en', 1, 'https://ror.org/05vcxb550 Affiliated Hospital of Shandong Academy of Medical Sciences'),
(35558, 'https://ror.org/01pt0s458', 'en', 1, 'https://ror.org/01pt0s458 Bayi Children''s Hospital'),
(35559, 'https://ror.org/04my4mt94', 'no_lang_code', 1, 'https://ror.org/04my4mt94 Ayasdi (United States)'),
(35560, 'https://ror.org/04fe8dr29', 'no_lang_code', 1, 'https://ror.org/04fe8dr29 Biological Consulting Services (United States)'),
(35561, 'https://ror.org/012ga1w05', 'en', 1, 'https://ror.org/012ga1w05 Memorial Ankara Hospital'),
(35562, 'https://ror.org/04mcj7g72', 'no_lang_code', 1, 'https://ror.org/04mcj7g72 Bialanx (United States)'),
(35563, 'https://ror.org/015tqbb95', 'en', 1, 'https://ror.org/015tqbb95 Tumor Hospital of Xinjiang Medical University'),
(35564, 'https://ror.org/03w1sg385', 'nl', 1, 'https://ror.org/03w1sg385 Damiaan Dicht bij het leven'),
(35565, 'https://ror.org/030cwsf88', 'en', 1, 'https://ror.org/030cwsf88 Yancheng Third People''s Hospital'),
(35566, 'https://ror.org/00xsgfc59', 'it', 1, 'https://ror.org/00xsgfc59 Azienda Ospedaliera Bolognini Seriate'),
(35567, 'https://ror.org/041ts2d40', 'en', 1, 'https://ror.org/041ts2d40 Affiliated Zhongshan Hospital of Dalian University'),
(35568, 'https://ror.org/02h866337', 'no_lang_code', 1, 'https://ror.org/02h866337 BioBee (Israel)'),
(35569, 'https://ror.org/00t3hse28', 'no_lang_code', 1, 'https://ror.org/00t3hse28 AhR Pharmaceuticals (United States)'),
(35570, 'https://ror.org/053y0qd29', 'it', 1, 'https://ror.org/053y0qd29 Azienda Ospedaliera Pugliese Ciaccio'),
(35571, 'https://ror.org/0579e9266', 'en', 1, 'https://ror.org/0579e9266 Beijing Fengtai Hospital'),
(35572, 'https://ror.org/01spyyb53', 'no_lang_code', 1, 'https://ror.org/01spyyb53 Beijing Biocytogen (China)'),
(35573, 'https://ror.org/01hbgfy53', 'no_lang_code', 1, 'https://ror.org/01hbgfy53 Applied StemCell (United States)'),
(35574, 'https://ror.org/04t9jdp81', 'no_lang_code', 1, 'https://ror.org/04t9jdp81 BioGenex (India)'),
(35575, 'https://ror.org/01yejqg95', 'no_lang_code', 1, 'https://ror.org/01yejqg95 Applied Technical Services (United States)'),
(35576, 'https://ror.org/057vq6e26', 'en', 1, 'https://ror.org/057vq6e26 Beijing Hospital of Traditional Chinese Medicine 北京市中西医结合医院'),
(35577, 'https://ror.org/04mffe096', 'no_lang_code', 1, 'https://ror.org/04mffe096 Aqualex Multimedia Consortium (Ireland)'),
(35578, 'https://ror.org/04etf9p48', 'it', 1, 'https://ror.org/04etf9p48 Ospedali Riuniti San Giovanni di Dio e Ruggi d''Aragona'),
(35579, 'https://ror.org/02yq66p71', 'no_lang_code', 1, 'https://ror.org/02yq66p71 BioNumerik (United States)'),
(35580, 'https://ror.org/01j511762', 'en', 1, 'https://ror.org/01j511762 Armament Research and Development Establishment आयुध अनुसंधान एवं विकास स्थापना'),
(35581, 'https://ror.org/051tt6c85', 'it', 1, 'https://ror.org/051tt6c85 Azienda Ospedaliero-Universitaria Policlinico - Vittorio Emanuele'),
(35582, 'https://ror.org/00e9cav63', 'en', 1, 'https://ror.org/00e9cav63 Al-Qasemi Academic College of Education'),
(35583, 'https://ror.org/04pq2gg30', 'en', 1, 'https://ror.org/04pq2gg30 Beijing Open University'),
(35584, 'https://ror.org/02rzdts70', 'en', 1, 'https://ror.org/02rzdts70 Alabama College of Osteopathic Medicine'),
(35585, 'https://ror.org/0184f7469', 'de', 1, 'https://ror.org/0184f7469 Alb Fils Kliniken'),
(35586, 'https://ror.org/012p2hd37', 'no_lang_code', 1, 'https://ror.org/012p2hd37 Albany Molecular Research (Singapore)'),
(35587, 'https://ror.org/04k62rh44', 'en', 1, 'https://ror.org/04k62rh44 Beijing Royal Integrative Medicine Hospital'),
(35588, 'https://ror.org/05342be32', 'en', 1, 'https://ror.org/05342be32 Askham Bryan College'),
(35589, 'https://ror.org/01gz84683', 'no_lang_code', 1, 'https://ror.org/01gz84683 BluGlass (Australia)'),
(35590, 'https://ror.org/007z4mw61', 'en', 1, 'https://ror.org/007z4mw61 Bakırköy Psychiatric Hospital'),
(35591, 'https://ror.org/05qy3yc66', 'no_lang_code', 1, 'https://ror.org/05qy3yc66 Beijing Wantai Biological Pharmacy (China)'),
(35592, 'https://ror.org/0113n2b16', 'en', 1, 'https://ror.org/0113n2b16 Aleris Hamlet Hospital'),
(35593, 'https://ror.org/0387raj07', 'de', 1, 'https://ror.org/0387raj07 Asklepios Klinik St. Georg'),
(35594, 'https://ror.org/03naspe88', 'en', 1, 'https://ror.org/03naspe88 Ali Osman Sonmez Oncology Hospital'),
(35595, 'https://ror.org/00bmjpn60', 'no_lang_code', 1, 'https://ror.org/00bmjpn60 Bandwidth10 (United States)'),
(35596, 'https://ror.org/034jg6t98', 'pt', 1, 'https://ror.org/034jg6t98 Centro Universitário Fundação Assis Gurgacz'),
(35597, 'https://ror.org/01jnnpe14', 'no_lang_code', 1, 'https://ror.org/01jnnpe14 Boehringer Ingelheim (United Kingdom)'),
(35598, 'https://ror.org/01hcfbh13', 'en', 1, 'https://ror.org/01hcfbh13 Ashwini Hospital'),
(35599, 'https://ror.org/00qs33y73', 'en', 1, 'https://ror.org/00qs33y73 Bowen University Teaching Hospital'),
(35600, 'https://ror.org/03ma9wk70', 'no_lang_code', 1, 'https://ror.org/03ma9wk70 AstraZeneca (India)'),
(35601, 'https://ror.org/037hw8d27', 'en', 1, 'https://ror.org/037hw8d27 Bestian Medical Center'),
(35602, 'https://ror.org/057bfzf92', 'no_lang_code', 1, 'https://ror.org/057bfzf92 Camlin Technologies (United Kingdom)'),
(35603, 'https://ror.org/05hmaqs06', 'en', 1, 'https://ror.org/05hmaqs06 Bapuji Dental College and Hospital ಬಾಪೂಜಿ ದಂತ ಮಹಾವಿದ್ಯಾಲಯ ಮತ್ತು ಆಸ್ಪತ್ರೇ'),
(35604, 'https://ror.org/04jgpa018', 'en', 1, 'https://ror.org/04jgpa018 Babasaheb Bhimrao Ambedkar Bihar University'),
(35605, 'https://ror.org/02c3nsj20', 'tr', 1, 'https://ror.org/02c3nsj20 Beytepe Asker Hastanesi'),
(35606, 'https://ror.org/0086skx40', 'en', 1, 'https://ror.org/0086skx40 Adana Hospital'),
(35607, 'https://ror.org/032vq8n85', 'no_lang_code', 1, 'https://ror.org/032vq8n85 Augmentium Pharma Consulting (Canada)'),
(35608, 'https://ror.org/042z7hw74', 'en', 1, 'https://ror.org/042z7hw74 Changsha Environmental Protection College'),
(35609, 'https://ror.org/01gbz1v61', 'no_lang_code', 1, 'https://ror.org/01gbz1v61 CardioDx (United States)'),
(35610, 'https://ror.org/05mvkx311', 'no_lang_code', 1, 'https://ror.org/05mvkx311 Cortical Dynamics (Australia)'),
(35611, 'https://ror.org/05r5vfp03', 'en', 1, 'https://ror.org/05r5vfp03 Civil Service Hospital'),
(35612, 'https://ror.org/01ybqnp73', 'de', 1, 'https://ror.org/01ybqnp73 Katholisches Klinikum Essen'),
(35613, 'https://ror.org/048b5ng26', 'no_lang_code', 1, 'https://ror.org/048b5ng26 Covance (Australia)'),
(35614, 'https://ror.org/01dd2km13', 'no_lang_code', 1, 'https://ror.org/01dd2km13 Bruning (Brazil)'),
(35615, 'https://ror.org/0234wv516', 'en', 1, 'https://ror.org/0234wv516 Chaohu Hospital of Anhui Medical University'),
(35616, 'https://ror.org/019aeg752', 'en', 1, 'https://ror.org/019aeg752 Bryansk State Agrarian University Брянский государственный аграрный университет'),
(35617, 'https://ror.org/00t7r5h51', 'en', 1, 'https://ror.org/00t7r5h51 Center for Autism and Related Disorders'),
(35618, 'https://ror.org/006xrph64', 'en', 1, 'https://ror.org/006xrph64 Central Hospital Affiliated to Shenyang Medical College'),
(35619, 'https://ror.org/041137e25', 'en', 1, 'https://ror.org/041137e25 Central Institute of Freshwater Aquaculture'),
(35620, 'https://ror.org/04cxs2q71', 'no_lang_code', 1, 'https://ror.org/04cxs2q71 Createc (United Kingdom)'),
(35621, 'https://ror.org/03gxy9f87', 'en', 1, 'https://ror.org/03gxy9f87 Chengdu Fifth People''s Hospital'),
(35622, 'https://ror.org/04y2bwa40', 'en', 1, 'https://ror.org/04y2bwa40 Chenzhou First People''s Hospital'),
(35623, 'https://ror.org/02h5h0a06', 'en', 1, 'https://ror.org/02h5h0a06 College of Applied Sciences- Ibri'),
(35624, 'https://ror.org/058a3vg17', 'en', 1, 'https://ror.org/058a3vg17 Central Mental Hospital'),
(35625, 'https://ror.org/055faex28', 'no_lang_code', 1, 'https://ror.org/055faex28 Crown Bioscience (China)'),
(35626, 'https://ror.org/02y2arb86', 'no_lang_code', 1, 'https://ror.org/02y2arb86 Chiba Aoba Municipal Hospital 千葉市立青葉病院'),
(35627, 'https://ror.org/05hyj7861', 'en', 1, 'https://ror.org/05hyj7861 Children''s Hospital of Capital Institute of Pediatrics'),
(35628, 'https://ror.org/03sb1fv32', 'no_lang_code', 1, 'https://ror.org/03sb1fv32 Cupron (Israel)'),
(35629, 'https://ror.org/03tws3217', 'en', 1, 'https://ror.org/03tws3217 Jiangxi Provincial Children''s Hospital'),
(35630, 'https://ror.org/00t30f389', 'en', 1, 'https://ror.org/00t30f389 Children''s Hospital of San Antonio'),
(35631, 'https://ror.org/00hn0mq04', 'en', 1, 'https://ror.org/00hn0mq04 Daelim University College 대림대학교'),
(35632, 'https://ror.org/05w0gx844', 'de', 1, 'https://ror.org/05w0gx844 Kinderklinik Regensburg'),
(35633, 'https://ror.org/00rs50b76', 'en', 1, 'https://ror.org/00rs50b76 Chabahar Maritime University'),
(35634, 'https://ror.org/01j157486', 'en', 1, 'https://ror.org/01j157486 College of Industrial Engineering'),
(35635, 'https://ror.org/01653mw07', 'en', 1, 'https://ror.org/01653mw07 Bệnh viện Đà Nẵng Da Nang Hospital'),
(35636, 'https://ror.org/033kyng81', 'de', 1, 'https://ror.org/033kyng81 Diakonissenkrankenhaus'),
(35637, 'https://ror.org/05vc01a67', 'en', 1, 'https://ror.org/05vc01a67 Daejeon Oriental Hospital'),
(35638, 'https://ror.org/03jc49e50', 'en', 1, 'https://ror.org/03jc49e50 Darshan Dental College and Hospital'),
(35639, 'https://ror.org/05gvw2741', 'en', 1, 'https://ror.org/05gvw2741 Chongqing Medical and Pharmaceutical College'),
(35640, 'https://ror.org/046gga527', 'en', 1, 'https://ror.org/046gga527 King Khalid University Hospital'),
(35641, 'https://ror.org/01fpkt395', 'de', 1, 'https://ror.org/01fpkt395 Christian Doppler Klinik'),
(35642, 'https://ror.org/00mfpj979', 'no_lang_code', 1, 'https://ror.org/00mfpj979 Dong-A ST (South Korea)'),
(35643, 'https://ror.org/024s10v78', 'no_lang_code', 1, 'https://ror.org/024s10v78 ESU-Services (Switzerland)'),
(35644, 'https://ror.org/01kzp9g64', 'no_lang_code', 1, 'https://ror.org/01kzp9g64 Etsy (United States)'),
(35645, 'https://ror.org/05watjs66', 'en', 1, 'https://ror.org/05watjs66 Dr D Y Patil Dental College & Hospital'),
(35646, 'https://ror.org/04y22rp03', 'no_lang_code', 1, 'https://ror.org/04y22rp03 Delfin Technologies (Finland)'),
(35647, 'https://ror.org/01vstb938', 'pt', 1, 'https://ror.org/01vstb938 Universidade Katyavala Bwila'),
(35648, 'https://ror.org/04ce4rf90', 'en', 1, 'https://ror.org/04ce4rf90 Dr. Rajendra Prasad Government Medical College'),
(35649, 'https://ror.org/02espa273', 'no_lang_code', 1, 'https://ror.org/02espa273 Euromedik'),
(35650, 'https://ror.org/03q1w1s93', 'en', 1, 'https://ror.org/03q1w1s93 Colorectal Surgical Associates'),
(35651, 'https://ror.org/01wgkjr48', 'no_lang_code', 1, 'https://ror.org/01wgkjr48 Dynamic Research (United States)'),
(35652, 'https://ror.org/037ve0v69', 'en', 1, 'https://ror.org/037ve0v69 Yanbian University Hospital'),
(35653, 'https://ror.org/0470nf974', 'en', 1, 'https://ror.org/0470nf974 Federal University Kashere'),
(35654, 'https://ror.org/00xw2x114', 'en', 1, 'https://ror.org/00xw2x114 Tangshan People''s Hospital'),
(35655, 'https://ror.org/00asd2k77', 'no_lang_code', 1, 'https://ror.org/00asd2k77 Comsol (United States)'),
(35656, 'https://ror.org/00w1jf336', 'en', 1, 'https://ror.org/00w1jf336 Europa Ziekenhuizen Europe Hospitals'),
(35657, 'https://ror.org/03fhbcz65', 'no_lang_code', 1, 'https://ror.org/03fhbcz65 Confocal Science (Japan)'),
(35658, 'https://ror.org/02d9k8j51', 'en', 1, 'https://ror.org/02d9k8j51 Employees'' State Insurance Model Hospital'),
(35659, 'https://ror.org/01tnkds55', 'en', 1, 'https://ror.org/01tnkds55 Connecticut Valley Hospital'),
(35660, 'https://ror.org/011at3t25', 'en', 1, 'https://ror.org/011at3t25 European University of Rome'),
(35661, 'https://ror.org/00kxdwc81', 'no_lang_code', 1, 'https://ror.org/00kxdwc81 Tanggangzi hospital'),
(35662, 'https://ror.org/018ced875', 'en', 1, 'https://ror.org/018ced875 Federal University Lokoja'),
(35663, 'https://ror.org/00wg75m45', 'no_lang_code', 1, 'https://ror.org/00wg75m45 Thermo Fisher Scientific (Japan)'),
(35664, 'https://ror.org/0309pcg09', 'en', 1, 'https://ror.org/0309pcg09 Shanghai Eighth People Hospital'),
(35665, 'https://ror.org/02j0abw33', 'de', 1, 'https://ror.org/02j0abw33 Felix Platter Spital Felix Platter-Hospital'),
(35666, 'https://ror.org/00jqpet07', 'no_lang_code', 1, 'https://ror.org/00jqpet07 Fernandez Hospital'),
(35667, 'https://ror.org/03wparr05', 'no_lang_code', 1, 'https://ror.org/03wparr05 eCoast (New Zealand)'),
(35668, 'https://ror.org/05cxk4q81', 'no_lang_code', 1, 'https://ror.org/05cxk4q81 Punan Hospital'),
(35669, 'https://ror.org/0257syp95', 'de', 1, 'https://ror.org/0257syp95 Friedrich-Ebert-Krankenhaus'),
(35670, 'https://ror.org/01x5rsx73', 'no_lang_code', 1, 'https://ror.org/01x5rsx73 Educomp Solutions (India)'),
(35671, 'https://ror.org/05tj2eg80', 'no_lang_code', 1, 'https://ror.org/05tj2eg80 GCI Science & Technology (China)'),
(35672, 'https://ror.org/01p25q678', 'en', 1, 'https://ror.org/01p25q678 Yili Friendship Hospital'),
(35673, 'https://ror.org/05ses6v92', 'en', 1, 'https://ror.org/05ses6v92 First People''s Hospital of Jingzhou'),
(35674, 'https://ror.org/04ebj7x87', 'no_lang_code', 1, 'https://ror.org/04ebj7x87 Genbody (South Korea)'),
(35675, 'https://ror.org/02156y972', 'no_lang_code', 1, 'https://ror.org/02156y972 Eli Lilly (India)'),
(35676, 'https://ror.org/05myyzn85', 'en', 1, 'https://ror.org/05myyzn85 Shanghai First Maternity and Infant Hospital'),
(35677, 'https://ror.org/02qg60849', 'no_lang_code', 1, 'https://ror.org/02qg60849 Engineering Systems (United States)'),
(35678, 'https://ror.org/02h2ywm64', 'en', 1, 'https://ror.org/02h2ywm64 The First People''s Hospital of Changde'),
(35679, 'https://ror.org/01xn7k765', 'en', 1, 'https://ror.org/01xn7k765 Corfu General Clinic'),
(35680, 'https://ror.org/027xmwe42', 'en', 1, 'https://ror.org/027xmwe42 General Hospital of Drama'),
(35681, 'https://ror.org/04gs6v336', 'en', 1, 'https://ror.org/04gs6v336 Jining First People''s Hospital 济宁市第一人民医院'),
(35682, 'https://ror.org/04n0rp146', 'no_lang_code', 1, 'https://ror.org/04n0rp146 Enjet (South Korea)'),
(35683, 'https://ror.org/004qehs09', 'en', 1, 'https://ror.org/004qehs09 Quzhou City People''s Hospital'),
(35684, 'https://ror.org/05ca6eb43', 'en', 1, 'https://ror.org/05ca6eb43 Xuzhou No.1 People''s Hospital'),
(35685, 'https://ror.org/01mmhvx47', 'no_lang_code', 1, 'https://ror.org/01mmhvx47 Epizyme (United States)'),
(35686, 'https://ror.org/05j4ckm72', 'no_lang_code', 1, 'https://ror.org/05j4ckm72 Genetic Technologies (Australia)'),
(35687, 'https://ror.org/01xp9ya88', 'en', 1, 'https://ror.org/01xp9ya88 Flinders Private Hospital'),
(35688, 'https://ror.org/01nfh3016', 'pt', 1, 'https://ror.org/01nfh3016 Hospital Erasto Gaertner'),
(35689, 'https://ror.org/03t4eaf83', 'no_lang_code', 1, 'https://ror.org/03t4eaf83 Forristall Ocean Engineering (United States)'),
(35690, 'https://ror.org/05xe0se54', 'no_lang_code', 1, 'https://ror.org/05xe0se54 Furukawa Electric (Japan) 古河電気工業'),
(35691, 'https://ror.org/04k0a2p36', 'no_lang_code', 1, 'https://ror.org/04k0a2p36 Van Drunen Farms (United States)'),
(35692, 'https://ror.org/04v95p207', 'en', 1, 'https://ror.org/04v95p207 Panzhihua Central Hospital'),
(35693, 'https://ror.org/02bsc8781', 'no_lang_code', 1, 'https://ror.org/02bsc8781 Gezhouba Explosive (China)'),
(35694, 'https://ror.org/00xrr2d51', 'fr', 1, 'https://ror.org/00xrr2d51 Sante Montreal'),
(35695, 'https://ror.org/03p7abc05', 'fr', 1, 'https://ror.org/03p7abc05 Association pour la Recherche au Collégial'),
(35696, 'https://ror.org/046q1bp69', 'en', 1, 'https://ror.org/046q1bp69 Guizhou Provincial People''s Hospital 贵州省人民医院'),
(35697, 'https://ror.org/04rss9b70', 'fr', 1, 'https://ror.org/04rss9b70 Centre Jeunesse de Quebec'),
(35698, 'https://ror.org/04g9pp561', 'no_lang_code', 1, 'https://ror.org/04g9pp561 Fortis Hospital'),
(35699, 'https://ror.org/04t1ycn35', 'en', 1, 'https://ror.org/04t1ycn35 G. Kuppuswamy Naidu Memorial Hospital'),
(35700, 'https://ror.org/01vq6my12', 'no_lang_code', 1, 'https://ror.org/01vq6my12 Golder Associates (China)'),
(35701, 'https://ror.org/054dshd81', 'en', 1, 'https://ror.org/054dshd81 International University MITSO'),
(35702, 'https://ror.org/03rdmxv04', 'no_lang_code', 1, 'https://ror.org/03rdmxv04 Guolian Futures (China)'),
(35703, 'https://ror.org/00g212534', 'tr', 1, 'https://ror.org/00g212534 Hitit Üniversitesi Çorum Eğitim ve Araştırma Hastanesi'),
(35704, 'https://ror.org/05q7rp785', 'en', 1, 'https://ror.org/05q7rp785 Hobart Private Hospital'),
(35705, 'https://ror.org/05wh5fw51', 'no_lang_code', 1, 'https://ror.org/05wh5fw51 Mitsui Chemicals (Japan) 三井化学株式会社'),
(35706, 'https://ror.org/00r398124', 'en', 1, 'https://ror.org/00r398124 Ganzhou People''s Hospital'),
(35707, 'https://ror.org/030sr2v21', 'en', 1, 'https://ror.org/030sr2v21 Hainan General Hospital 海南省人民医院'),
(35708, 'https://ror.org/0483p1w82', 'en', 1, 'https://ror.org/0483p1w82 Great North Children''s Hospital'),
(35709, 'https://ror.org/047ev4v84', 'es', 1, 'https://ror.org/047ev4v84 Hospital Universitario del Henares'),
(35710, 'https://ror.org/022cbyf89', 'en', 1, 'https://ror.org/022cbyf89 Gaochun People''s Hospital'),
(35711, 'https://ror.org/01hgb6e08', 'en', 1, 'https://ror.org/01hgb6e08 Hamedan University of Technology'),
(35712, 'https://ror.org/01mqcfb91', 'no_lang_code', 1, 'https://ror.org/01mqcfb91 Green Pool (Australia)'),
(35713, 'https://ror.org/03j4kg535', 'en', 1, 'https://ror.org/03j4kg535 Gateway Technical College'),
(35714, 'https://ror.org/02506kf89', 'de', 1, 'https://ror.org/02506kf89 Klinikum Weiden'),
(35715, 'https://ror.org/05w2qpw18', 'no_lang_code', 1, 'https://ror.org/05w2qpw18 GridBridge (United States)'),
(35716, 'https://ror.org/032hca325', 'en', 1, 'https://ror.org/032hca325 Hsing Wu University 醒吾科技大學'),
(35717, 'https://ror.org/05wx3dm75', 'de', 1, 'https://ror.org/05wx3dm75 Krankenhaus Köln-Holweide'),
(35718, 'https://ror.org/008p6rr25', 'en', 1, 'https://ror.org/008p6rr25 Huanghe Science and Technology College 黄河科技学院'),
(35719, 'https://ror.org/047b0ff75', 'no_lang_code', 1, 'https://ror.org/047b0ff75 Gritek (China)'),
(35720, 'https://ror.org/03t3p6f87', 'no', 1, 'https://ror.org/03t3p6f87 Haraldsplass Diakonale Sykehus'),
(35721, 'https://ror.org/030ffke25', 'en', 1, 'https://ror.org/030ffke25 Guangdong University of Petrochemical Technology 广东石油化工学院'),
(35722, 'https://ror.org/0493m8x04', 'en', 1, 'https://ror.org/0493m8x04 Guangdong Province Women and Children Hospital'),
(35723, 'https://ror.org/05701yq92', 'es', 1, 'https://ror.org/05701yq92 Hospital Base Guillermo Almenara Irigoyen'),
(35724, 'https://ror.org/05bkcgf50', 'en', 1, 'https://ror.org/05bkcgf50 Hubei Urban Construction Vocational and Technological College 湖北城市建设职业技术学院'),
(35725, 'https://ror.org/03dncqh14', 'no_lang_code', 1, 'https://ror.org/03dncqh14 Ichimaru Pharcos (Japan)'),
(35726, 'https://ror.org/00cndk772', 'no_lang_code', 1, 'https://ror.org/00cndk772 Icon (United Kingdom)'),
(35727, 'https://ror.org/0170a8r40', 'no_lang_code', 1, 'https://ror.org/0170a8r40 Humanpass (South Korea)'),
(35728, 'https://ror.org/002v59719', 'no_lang_code', 1, 'https://ror.org/002v59719 Idemitsu Kosan (Japan) 出光興産'),
(35729, 'https://ror.org/041xr2b79', 'it', 1, 'https://ror.org/041xr2b79 Ospedale di Civita Castellana'),
(35730, 'https://ror.org/02cjc1z91', 'no_lang_code', 1, 'https://ror.org/02cjc1z91 Humanwell Healthcare Group (China)'),
(35731, 'https://ror.org/0396mnx76', 'es', 1, 'https://ror.org/0396mnx76 Hospital de Manises'),
(35732, 'https://ror.org/03ccj3w73', 'en', 1, 'https://ror.org/03ccj3w73 Heart Life Hospital 社会医療法人かりゆし会'),
(35733, 'https://ror.org/0247xas18', 'en', 1, 'https://ror.org/0247xas18 Guigang City People''s Hospital'),
(35734, 'https://ror.org/00t4w1v80', 'es', 1, 'https://ror.org/00t4w1v80 Hospital de Viladecans'),
(35735, 'https://ror.org/00qw5wg75', 'en', 1, 'https://ror.org/00qw5wg75 Guizhou Cancer Hospital'),
(35736, 'https://ror.org/009ssz662', 'en', 1, 'https://ror.org/009ssz662 Shenzhen Occupational Disease Prevention Hospital'),
(35737, 'https://ror.org/05mfr7w08', 'en', 1, 'https://ror.org/05mfr7w08 Third People''s Hospital of Hefei'),
(35738, 'https://ror.org/055fsxq56', 'no_lang_code', 1, 'https://ror.org/055fsxq56 Intertek (Switzerland)'),
(35739, 'https://ror.org/01kjwt492', 'no_lang_code', 1, 'https://ror.org/01kjwt492 Imari Arita Kyoritsu Hospital'),
(35740, 'https://ror.org/01wc63152', 'es', 1, 'https://ror.org/01wc63152 Hospital General de Almansa'),
(35741, 'https://ror.org/02f5aec20', 'de', 1, 'https://ror.org/02f5aec20 Hegau-Bodensee-Klinikum Singen'),
(35742, 'https://ror.org/04vvd8839', 'ro', 1, 'https://ror.org/04vvd8839 Universitatea Ioan Slavici'),
(35743, 'https://ror.org/05d5cn472', 'no_lang_code', 1, 'https://ror.org/05d5cn472 Altimmune (United Kingdom)'),
(35744, 'https://ror.org/03gezv924', 'no_lang_code', 1, 'https://ror.org/03gezv924 Intel (Taiwan)'),
(35745, 'https://ror.org/01yz57p78', 'en', 1, 'https://ror.org/01yz57p78 Iran University of Industries and Mines'),
(35746, 'https://ror.org/02epdjj68', 'es', 1, 'https://ror.org/02epdjj68 Hospital Civil de Guadalajara'),
(35747, 'https://ror.org/030nxya44', 'en', 1, 'https://ror.org/030nxya44 Indian Institute of Sugarcane Research'),
(35748, 'https://ror.org/02qk18s08', 'en', 1, 'https://ror.org/02qk18s08 International Center for Tropical Agriculture'),
(35749, 'https://ror.org/04d3sf574', 'en', 1, 'https://ror.org/04d3sf574 Henan Provincial Chest Hospital 河南省胸科医院'),
(35750, 'https://ror.org/02p2c1595', 'en', 1, 'https://ror.org/02p2c1595 Islamia College University اسلامیہ کالج یونیورسٹی'),
(35751, 'https://ror.org/032kjn442', 'en', 1, 'https://ror.org/032kjn442 Indian Institute of Vegetable Research'),
(35752, 'https://ror.org/02pyb2233', 'es', 1, 'https://ror.org/02pyb2233 Hospital La Inmaculada'),
(35753, 'https://ror.org/002mm7c07', 'en', 1, 'https://ror.org/002mm7c07 Henan University Huaihe Hospital and Huaihe Clinical Institute'),
(35754, 'https://ror.org/01y4k8j51', 'no_lang_code', 1, 'https://ror.org/01y4k8j51 Isothermal Technology (United Kingdom)'),
(35755, 'https://ror.org/01k8sh332', 'no_lang_code', 1, 'https://ror.org/01k8sh332 Isotop (Israel)'),
(35756, 'https://ror.org/04xphfg38', 'no_lang_code', 1, 'https://ror.org/04xphfg38 Hermes Microvision (United States)'),
(35757, 'https://ror.org/0152tc190', 'en', 1, 'https://ror.org/0152tc190 Yantai Infectious Diseases Hospital'),
(35758, 'https://ror.org/056agx034', 'de', 1, 'https://ror.org/056agx034 Krankenhaus Neuwerk "Maria von den Aposteln"'),
(35759, 'https://ror.org/05rgpb984', 'no_lang_code', 1, 'https://ror.org/05rgpb984 Information and Mathematical Science and Bioinformatics (Japan)'),
(35760, 'https://ror.org/02j8tr589', 'en', 1, 'https://ror.org/02j8tr589 Inha Technical College'),
(35761, 'https://ror.org/04adbw927', 'no_lang_code', 1, 'https://ror.org/04adbw927 Inner Mongolia Yili Industrial Group (China) 伊利集团'),
(35762, 'https://ror.org/019wdt926', 'no_lang_code', 1, 'https://ror.org/019wdt926 Himgiri Zee University'),
(35763, 'https://ror.org/05fx84t54', 'hu', 1, 'https://ror.org/05fx84t54 Jahn Ferenc Dél-Pesti Kórház és Rendelőintézet'),
(35764, 'https://ror.org/03rhsnv81', 'en', 1, 'https://ror.org/03rhsnv81 Hippocrateon Private Hospital'),
(35765, 'https://ror.org/05jg53152', 'it', 1, 'https://ror.org/05jg53152 Ospedale Versilia'),
(35766, 'https://ror.org/05516nt33', 'no_lang_code', 1, 'https://ror.org/05516nt33 Jordan Valley Semiconductors (China)'),
(35767, 'https://ror.org/047yd9004', 'en', 1, 'https://ror.org/047yd9004 Institute for Color Science and Technology'),
(35768, 'https://ror.org/04hwc4q95', 'no_lang_code', 1, 'https://ror.org/04hwc4q95 Histoindex (Singapore)'),
(35769, 'https://ror.org/01kmxkx53', 'no_lang_code', 1, 'https://ror.org/01kmxkx53 Jain Irrigation Systems (India)'),
(35770, 'https://ror.org/005td0w95', 'es', 1, 'https://ror.org/005td0w95 Hospital Psiquiatrico Infantil Juan N Navarro'),
(35771, 'https://ror.org/01pgfea66', 'en', 1, 'https://ror.org/01pgfea66 Jammu Hospital'),
(35772, 'https://ror.org/01c7p3v19', 'no_lang_code', 1, 'https://ror.org/01c7p3v19 Japan Aviation Electronics Industry (Japan) 日本航空電子工業'),
(35773, 'https://ror.org/00tbh0a59', 'en', 1, 'https://ror.org/00tbh0a59 Gulu Hospital'),
(35774, 'https://ror.org/05cwk4h45', 'es', 1, 'https://ror.org/05cwk4h45 Hospital Quirón Torrevieja'),
(35775, 'https://ror.org/03tv82d64', 'no_lang_code', 1, 'https://ror.org/03tv82d64 Japan Bio Products (Japan)'),
(35776, 'https://ror.org/01kwdp645', 'en', 1, 'https://ror.org/01kwdp645 Kailuan General Hospital'),
(35777, 'https://ror.org/008ny3111', 'en', 1, 'https://ror.org/008ny3111 K.S. Hegde Hospital ಜಸ್ಟೀಸ್ ಕೆ.ಎಸ್ ಹೆಗ್ಡೆ ಆಸ್ಪತ್ರೆ'),
(35778, 'https://ror.org/019gdfm13', 'es', 1, 'https://ror.org/019gdfm13 Hospital Universitario Rey Juan Carlos'),
(35779, 'https://ror.org/01pfs6p94', 'en', 1, 'https://ror.org/01pfs6p94 KM Shah Dental College and Hospital'),
(35780, 'https://ror.org/017em7993', 'no_lang_code', 1, 'https://ror.org/017em7993 Aerocosmos федеральное государственное бюджетное научное учреждение Научно-исследовательский институт аэрокосмического мониторинга АЭРОКОСМОС'),
(35781, 'https://ror.org/017s6v868', 'en', 1, 'https://ror.org/017s6v868 Jilin Vocational College of Industry and Technology'),
(35782, 'https://ror.org/00var7h03', 'pt', 1, 'https://ror.org/00var7h03 Hospital Samaritano de São Paulo'),
(35783, 'https://ror.org/018fymd62', 'en', 1, 'https://ror.org/018fymd62 Kamla Nehru Memorial Hospital'),
(35784, 'https://ror.org/05ty6nt57', 'en', 1, 'https://ror.org/05ty6nt57 Jaypee Hospital'),
(35785, 'https://ror.org/0057m5255', 'no_lang_code', 1, 'https://ror.org/0057m5255 JEOL (United States)'),
(35786, 'https://ror.org/02c1qc696', 'ms', 1, 'https://ror.org/02c1qc696 Hospital Seberang Jaya'),
(35787, 'https://ror.org/004j26v17', 'en', 1, 'https://ror.org/004j26v17 Jiading District Central Hospital'),
(35788, 'https://ror.org/05hewaf81', 'en', 1, 'https://ror.org/05hewaf81 University of Kang Ning 康寧大學'),
(35789, 'https://ror.org/01j5v0d02', 'es', 1, 'https://ror.org/01j5v0d02 Hospital Universitario de Burgos'),
(35790, 'https://ror.org/05wfz2361', 'en', 1, 'https://ror.org/05wfz2361 Kang-Ning Junior College of Medical Care and Management'),
(35791, 'https://ror.org/04baw4297', 'en', 1, 'https://ror.org/04baw4297 Jiangmen Central Hospital'),
(35792, 'https://ror.org/0360yvh71', 'de', 1, 'https://ror.org/0360yvh71 Krankenhaus Lindenbrunn'),
(35793, 'https://ror.org/018c7c068', 'en', 1, 'https://ror.org/018c7c068 JiangSu Armed Police General Hospital'),
(35794, 'https://ror.org/05bgpkm02', 'en', 1, 'https://ror.org/05bgpkm02 Krantisinh Nana Patil College of Veterinary Science'),
(35795, 'https://ror.org/00f656h73', 'no_lang_code', 1, 'https://ror.org/00f656h73 Asian Star Anchor Chain (China)'),
(35796, 'https://ror.org/056bjcd96', 'no_lang_code', 1, 'https://ror.org/056bjcd96 Jiangsu Shengze Hospital'),
(35797, 'https://ror.org/05yabwx33', 'de', 1, 'https://ror.org/05yabwx33 Kantonsspital Frauenfeld'),
(35798, 'https://ror.org/02c28a074', 'de', 1, 'https://ror.org/02c28a074 Kantonsspital Münsterlingen'),
(35799, 'https://ror.org/05jxvg504', 'tr', 1, 'https://ror.org/05jxvg504 İstanbul Kanuni Sultan Süleyman Eğitim ve Araştırma Hastanesi'),
(35800, 'https://ror.org/00py85p62', 'en', 1, 'https://ror.org/00py85p62 Kyanous Stavros Hospital'),
(35801, 'https://ror.org/01y87aw49', 'en', 1, 'https://ror.org/01y87aw49 Jilin City Central Hospital'),
(35802, 'https://ror.org/01xet8208', 'de', 1, 'https://ror.org/01xet8208 Olgahospital'),
(35803, 'https://ror.org/033573j20', 'no_lang_code', 1, 'https://ror.org/033573j20 Kyowa Hakko Kirin (Singapore)'),
(35804, 'https://ror.org/00d2wxy31', 'en', 1, 'https://ror.org/00d2wxy31 Jinan Maternity And Care Hospital'),
(35805, 'https://ror.org/047ytwp82', 'en', 1, 'https://ror.org/047ytwp82 Karamay Central Hospital 克拉玛依市中心医院·云医院'),
(35806, 'https://ror.org/03vcw8k58', 'en', 1, 'https://ror.org/03vcw8k58 Ling Tung University 嶺東科技大學'),
(35807, 'https://ror.org/04x5ap794', 'en', 1, 'https://ror.org/04x5ap794 M. S. Ramaiah Dental College and Hospital'),
(35808, 'https://ror.org/05k0x2w50', 'en', 1, 'https://ror.org/05k0x2w50 Lipetsk State Pedagogical University'),
(35809, 'https://ror.org/006fh5g40', 'en', 1, 'https://ror.org/006fh5g40 Lipetsk State Technical University'),
(35810, 'https://ror.org/002n0by50', 'de', 1, 'https://ror.org/002n0by50 Katharinenhospital'),
(35811, 'https://ror.org/02fkrbc57', 'no_lang_code', 1, 'https://ror.org/02fkrbc57 Kawamura Hospital'),
(35812, 'https://ror.org/00p43ne90', 'en', 1, 'https://ror.org/00p43ne90 Mahsa University'),
(35813, 'https://ror.org/01shdt141', 'en', 1, 'https://ror.org/01shdt141 Lake–Sumter State College'),
(35814, 'https://ror.org/030ztmv39', 'no_lang_code', 1, 'https://ror.org/030ztmv39 Landis International (United States)'),
(35815, 'https://ror.org/057mx6f31', 'no_lang_code', 1, 'https://ror.org/057mx6f31 Klohn Crippen Berger (Canada)'),
(35816, 'https://ror.org/01hxvmm54', 'no_lang_code', 1, 'https://ror.org/01hxvmm54 Logos Biosystems (South Korea)'),
(35817, 'https://ror.org/04thm3d12', 'de', 1, 'https://ror.org/04thm3d12 Malteser Krankenhaus St. Anna'),
(35818, 'https://ror.org/008j9bq89', 'fi', 1, 'https://ror.org/008j9bq89 Länsi-Pohjan Sairaanhoitopiirin Kuntayhtymä'),
(35819, 'https://ror.org/01t0mhp33', 'no_lang_code', 1, 'https://ror.org/01t0mhp33 Manila Consulting Group (United States)'),
(35820, 'https://ror.org/00pzh0w90', 'tr', 1, 'https://ror.org/00pzh0w90 Kocaeli Üniversitesi Araştırma ve Uygulama Hastanesi'),
(35821, 'https://ror.org/00pfazs12', 'no_lang_code', 1, 'https://ror.org/00pfazs12 Kennedy Martin Health Outcomes (United Kingdom)'),
(35822, 'https://ror.org/02xrpdt68', 'en', 1, 'https://ror.org/02xrpdt68 Luohe Medical College'),
(35823, 'https://ror.org/039n2wf68', 'no_lang_code', 1, 'https://ror.org/039n2wf68 Kokilaben Dhirubhai Ambani Hospital'),
(35824, 'https://ror.org/00a84en41', 'no_lang_code', 1, 'https://ror.org/00a84en41 Mari Petroleum Company (Pakistan)'),
(35825, 'https://ror.org/036cvz290', 'en', 1, 'https://ror.org/036cvz290 Leshan Normal University 乐山师范学院'),
(35826, 'https://ror.org/01gkp6p31', 'en', 1, 'https://ror.org/01gkp6p31 Maria Fareri Children''s Hospital'),
(35827, 'https://ror.org/030qwf038', 'de', 1, 'https://ror.org/030qwf038 Marien Hospital Düsseldorf'),
(35828, 'https://ror.org/044e25681', 'no_lang_code', 1, 'https://ror.org/044e25681 Kolon Life Science (South Korea)'),
(35829, 'https://ror.org/02903cd17', 'no_lang_code', 1, 'https://ror.org/02903cd17 Keysight Technologies (United States)'),
(35830, 'https://ror.org/017ga1x09', 'no_lang_code', 1, 'https://ror.org/017ga1x09 Level-5 (Japan)'),
(35831, 'https://ror.org/004h6mc53', 'de', 1, 'https://ror.org/004h6mc53 Universitätsklinik Marien Hospital Herne'),
(35832, 'https://ror.org/00b2xnk27', 'en', 1, 'https://ror.org/00b2xnk27 Lviv City Children''s Hospital'),
(35833, 'https://ror.org/00g01gj95', 'de', 1, 'https://ror.org/00g01gj95 Marienhospital Stuttgart'),
(35834, 'https://ror.org/00fedxs81', 'no_lang_code', 1, 'https://ror.org/00fedxs81 LxRay (Japan)'),
(35835, 'https://ror.org/00spt4n57', 'en', 1, 'https://ror.org/00spt4n57 Lianyungang Maternal and Children’s Hospital'),
(35836, 'https://ror.org/02xay1410', 'en', 1, 'https://ror.org/02xay1410 Mathrusri Ramabai Ambedkar Dental College & Hospital'),
(35837, 'https://ror.org/00qbb2v66', 'en', 1, 'https://ror.org/00qbb2v66 Kharkiv University of Air Force'),
(35838, 'https://ror.org/000ex0h82', 'no_lang_code', 1, 'https://ror.org/000ex0h82 Maruwa Foods and Biosciences (Japan)'),
(35839, 'https://ror.org/00e7r7m66', 'en', 1, 'https://ror.org/00e7r7m66 Max Super Speciality Hospital'),
(35840, 'https://ror.org/01j77q308', 'no_lang_code', 1, 'https://ror.org/01j77q308 Mata Chanan Devi Hospital'),
(35841, 'https://ror.org/05w1xct55', 'no_lang_code', 1, 'https://ror.org/05w1xct55 Lilly (China)'),
(35842, 'https://ror.org/00f041n88', 'en', 1, 'https://ror.org/00f041n88 Mbarara National Referral Hospital'),
(35843, 'https://ror.org/0012vvx22', 'no_lang_code', 1, 'https://ror.org/0012vvx22 Kintama (Canada)'),
(35844, 'https://ror.org/04w5mzj20', 'en', 1, 'https://ror.org/04w5mzj20 Changsha Hospital for Maternal and Child Health Care'),
(35845, 'https://ror.org/00w3t2881', 'no_lang_code', 1, 'https://ror.org/00w3t2881 Med Data Quest (United States)'),
(35846, 'https://ror.org/02deds976', 'no_lang_code', 1, 'https://ror.org/02deds976 Medsonic (Cyprus)'),
(35847, 'https://ror.org/05jjqbw81', 'en', 1, 'https://ror.org/05jjqbw81 Lillebaelt Academy University of Applied Sciences'),
(35848, 'https://ror.org/04pspdc11', 'no_lang_code', 1, 'https://ror.org/04pspdc11 Novocure (United States)'),
(35849, 'https://ror.org/000aph098', 'en', 1, 'https://ror.org/000aph098 Hainan Maternal and Child Health Hospital'),
(35850, 'https://ror.org/04n7kzx92', 'no_lang_code', 1, 'https://ror.org/04n7kzx92 Megafine Pharma (India)'),
(35851, 'https://ror.org/03nw30958', 'en', 1, 'https://ror.org/03nw30958 Dr. Mehta''s Children''s Hospital'),
(35852, 'https://ror.org/01ptz4362', 'no_lang_code', 1, 'https://ror.org/01ptz4362 Misasa Onsen Hospital'),
(35853, 'https://ror.org/0026mdx79', 'en', 1, 'https://ror.org/0026mdx79 Meizhou City People''s Hospital 梅州市人民医院'),
(35854, 'https://ror.org/05wasnw28', 'en', 1, 'https://ror.org/05wasnw28 Meliksah University'),
(35855, 'https://ror.org/041z54681', 'en', 1, 'https://ror.org/041z54681 Mediclinic City Hospital'),
(35856, 'https://ror.org/04jxxwk32', 'en', 1, 'https://ror.org/04jxxwk32 KKR ENT Hospital and Research Institute'),
(35857, 'https://ror.org/04qe4s326', 'en', 1, 'https://ror.org/04qe4s326 MediHope Super Specialty Hospital'),
(35858, 'https://ror.org/05j6mnq41', 'en', 1, 'https://ror.org/05j6mnq41 Weifang Maternity and Child Care Hospital'),
(35859, 'https://ror.org/04wadnc74', 'en', 1, 'https://ror.org/04wadnc74 Mittal hospital'),
(35860, 'https://ror.org/03andxb27', 'no_lang_code', 1, 'https://ror.org/03andxb27 Medistem (Panama)'),
(35861, 'https://ror.org/00abh5k34', 'no_lang_code', 1, 'https://ror.org/00abh5k34 Mizushima Central Hospital'),
(35862, 'https://ror.org/00zsezt30', 'no_lang_code', 1, 'https://ror.org/00zsezt30 Pudong Maternal and Child Health Hospital'),
(35863, 'https://ror.org/029w49918', 'no_lang_code', 1, 'https://ror.org/029w49918 Mengchao Hepatobiliary Hospital'),
(35864, 'https://ror.org/02m8hhb31', 'no_lang_code', 1, 'https://ror.org/02m8hhb31 Matsutani America (United States)'),
(35865, 'https://ror.org/04ysdg006', 'en', 1, 'https://ror.org/04ysdg006 Anderson Hospital'),
(35866, 'https://ror.org/002npz476', 'en', 1, 'https://ror.org/002npz476 Mohak Hitech Speciality Hospital'),
(35867, 'https://ror.org/04n6gdq39', 'en', 1, 'https://ror.org/04n6gdq39 First People''s Hospital of Nanning'),
(35868, 'https://ror.org/01pqs5k49', 'tr', 1, 'https://ror.org/01pqs5k49 Baltalimanı Kemik Hastalıkları Hastanesi'),
(35869, 'https://ror.org/0332phy25', 'no_lang_code', 1, 'https://ror.org/0332phy25 Mouse Specifics (United States)'),
(35870, 'https://ror.org/01a2gef28', 'en', 1, 'https://ror.org/01a2gef28 Nanjing Maternity and Child Health Care Hospital'),
(35871, 'https://ror.org/04nsks563', 'en', 1, 'https://ror.org/04nsks563 Tang Hospital'),
(35872, 'https://ror.org/05d0s2j60', 'en', 1, 'https://ror.org/05d0s2j60 Nazareth Hospital'),
(35873, 'https://ror.org/03df3zw56', 'en', 1, 'https://ror.org/03df3zw56 Midland Regional Hospital at Tullamore Ospidéal Ginearálta Thulach Mhór'),
(35874, 'https://ror.org/023e9bm81', 'en', 1, 'https://ror.org/023e9bm81 Muhammad Nawaz Sharif University of Engineering & Technology'),
(35875, 'https://ror.org/05bvvtk87', 'en', 1, 'https://ror.org/05bvvtk87 Nehru Gram Bharti University'),
(35876, 'https://ror.org/05agnp051', 'no_lang_code', 1, 'https://ror.org/05agnp051 Nema Research (United States)'),
(35877, 'https://ror.org/01r6rnc70', 'no_lang_code', 1, 'https://ror.org/01r6rnc70 Midot (Israel)'),
(35878, 'https://ror.org/035rf9c29', 'en', 1, 'https://ror.org/035rf9c29 Noguchi Hospital'),
(35879, 'https://ror.org/04z2wa675', 'no_lang_code', 1, 'https://ror.org/04z2wa675 Nanonics Imaging (Israel)'),
(35880, 'https://ror.org/00qhxf575', 'en', 1, 'https://ror.org/00qhxf575 Nokami Kousei Sougo Hospital'),
(35881, 'https://ror.org/056n6pc71', 'no_lang_code', 1, 'https://ror.org/056n6pc71 NanoPhotonica (United States)'),
(35882, 'https://ror.org/03tsk0927', 'en', 1, 'https://ror.org/03tsk0927 Murshidabad Medical College and Hospital'),
(35883, 'https://ror.org/00mpvas76', 'en', 1, 'https://ror.org/00mpvas76 Ålesund Hospital'),
(35884, 'https://ror.org/045mkw584', 'no_lang_code', 1, 'https://ror.org/045mkw584 Nanosyn (United States)'),
(35885, 'https://ror.org/01na16w26', 'no_lang_code', 1, 'https://ror.org/01na16w26 Nanosystem (Russia)'),
(35886, 'https://ror.org/04x4hjg39', 'no_lang_code', 1, 'https://ror.org/04x4hjg39 Globus Medical (United States)'),
(35887, 'https://ror.org/054p5nv83', 'no_lang_code', 1, 'https://ror.org/054p5nv83 Azumi Hospital'),
(35888, 'https://ror.org/04nppa482', 'no_lang_code', 1, 'https://ror.org/04nppa482 Nextomics Biosciences (China) 未来组生物科技有限公司'),
(35889, 'https://ror.org/055vk7b41', 'en', 1, 'https://ror.org/055vk7b41 Ng Teng Fong General Hospital'),
(35890, 'https://ror.org/0016atv87', 'en', 1, 'https://ror.org/0016atv87 Nantong Maternity and Child Health Hospital'),
(35891, 'https://ror.org/00j0keq36', 'no_lang_code', 1, 'https://ror.org/00j0keq36 Oryza (Japan)'),
(35892, 'https://ror.org/02m7msy24', 'en', 1, 'https://ror.org/02m7msy24 North China Institute of Aerospace Engineering'),
(35893, 'https://ror.org/02rbpk607', 'no_lang_code', 1, 'https://ror.org/02rbpk607 NGC Aerospace (Canada)'),
(35894, 'https://ror.org/04ea07q57', 'no_lang_code', 1, 'https://ror.org/04ea07q57 Mytech (Japan)'),
(35895, 'https://ror.org/019rdg506', 'no_lang_code', 1, 'https://ror.org/019rdg506 Saiseikaisenri Hospital'),
(35896, 'https://ror.org/025ve8p25', 'no_lang_code', 1, 'https://ror.org/025ve8p25 Gazprombank'),
(35897, 'https://ror.org/052q3v778', 'en', 1, 'https://ror.org/052q3v778 Northwest Orthopaedic Specialists'),
(35898, 'https://ror.org/0077bn238', 'en', 1, 'https://ror.org/0077bn238 Niloufer Hospital'),
(35899, 'https://ror.org/01paha414', 'en', 1, 'https://ror.org/01paha414 Osaki Citizen Hospital 大崎市民病院'),
(35900, 'https://ror.org/041qnde49', 'en', 1, 'https://ror.org/041qnde49 Azerbaijan National Aerospace Agency Azərbaycan Milli Aerokosmik Agentliyi'),
(35901, 'https://ror.org/02nwx5237', 'no_lang_code', 1, 'https://ror.org/02nwx5237 Health Biomed (China)'),
(35902, 'https://ror.org/03r296s11', 'no', 1, 'https://ror.org/03r296s11 Ullevål Sykehusapotek'),
(35903, 'https://ror.org/037kzdg33', 'it', 1, 'https://ror.org/037kzdg33 Santissima Trinità'),
(35904, 'https://ror.org/01j9jq089', 'en', 1, 'https://ror.org/01j9jq089 Overseas Chinese University 僑光科技大學'),
(35905, 'https://ror.org/049k17734', 'no_lang_code', 1, 'https://ror.org/049k17734 Medfiles (Finland)'),
(35906, 'https://ror.org/02nrcd067', 'it', 1, 'https://ror.org/02nrcd067 Ospedale di Latisana'),
(35907, 'https://ror.org/044ybef51', 'en', 1, 'https://ror.org/044ybef51 National Cancer Institute'),
(35908, 'https://ror.org/01fa85441', 'en', 1, 'https://ror.org/01fa85441 NU Hospital Group'),
(35909, 'https://ror.org/040d6j646', 'it', 1, 'https://ror.org/040d6j646 Ospedale dell'' Angelo'),
(35910, 'https://ror.org/05rzcwg85', 'en', 1, 'https://ror.org/05rzcwg85 Peking University Sixth Hospital'),
(35911, 'https://ror.org/00ph73362', 'no_lang_code', 1, 'https://ror.org/00ph73362 P.E. LaMoreaux & Associates (United States)'),
(35912, 'https://ror.org/03n1tvb36', 'en', 1, 'https://ror.org/03n1tvb36 Humanitas Mater Domini'),
(35913, 'https://ror.org/0493ajd33', 'no_lang_code', 1, 'https://ror.org/0493ajd33 Plexision (United States)'),
(35914, 'https://ror.org/0056jcm84', 'en', 1, 'https://ror.org/0056jcm84 National Hospital'),
(35915, 'https://ror.org/05bkbs460', 'en', 1, 'https://ror.org/05bkbs460 Obafemi Awolowo University Teaching Hospitals Complex'),
(35916, 'https://ror.org/04j2kd042', 'en', 1, 'https://ror.org/04j2kd042 Paddington Cat Hospital'),
(35917, 'https://ror.org/03s204r94', 'no_lang_code', 1, 'https://ror.org/03s204r94 Pluristem Therapeutics (Israel)'),
(35918, 'https://ror.org/02bxe3959', 'en', 1, 'https://ror.org/02bxe3959 Changchun Obstetrics and Gynecology Hospital'),
(35919, 'https://ror.org/044xepv65', 'no_lang_code', 1, 'https://ror.org/044xepv65 Rosetta Genomics (Israel)'),
(35920, 'https://ror.org/0461fey84', 'no_lang_code', 1, 'https://ror.org/0461fey84 Pammakaristos Hospital'),
(35921, 'https://ror.org/02fvak958', 'no_lang_code', 1, 'https://ror.org/02fvak958 Olympia Diagnostics (United States)'),
(35922, 'https://ror.org/02wwftm12', 'en', 1, 'https://ror.org/02wwftm12 Panyu District Central Hospital'),
(35923, 'https://ror.org/01h4bh480', 'en', 1, 'https://ror.org/01h4bh480 Royal College of Surgeons in Ireland - Bahrain جامعة البحرين الطبية'),
(35924, 'https://ror.org/02ke3k930', 'en', 1, 'https://ror.org/02ke3k930 Presbyterian University and Theological Seminary'),
(35925, 'https://ror.org/05phqqn85', 'no_lang_code', 1, 'https://ror.org/05phqqn85 Oncolytics Biotech (Canada)'),
(35926, 'https://ror.org/04a021880', 'no_lang_code', 1, 'https://ror.org/04a021880 Optolink (Russia)'),
(35927, 'https://ror.org/05kbqy564', 'no_lang_code', 1, 'https://ror.org/05kbqy564 Ooyo Seibutsu (Japan)'),
(35928, 'https://ror.org/04y7frr04', 'no_lang_code', 1, 'https://ror.org/04y7frr04 PriMove Infrastructure Development Consultants (India)'),
(35929, 'https://ror.org/04vp97q80', 'no_lang_code', 1, 'https://ror.org/04vp97q80 OP Bio Factory (Japan)'),
(35930, 'https://ror.org/04jvka613', 'en', 1, 'https://ror.org/04jvka613 National Institute of Technology, Toyama College 富山高等専門学校'),
(35931, 'https://ror.org/02wf8xc83', 'de', 1, 'https://ror.org/02wf8xc83 Rudolfinerhaus Hospital'),
(35932, 'https://ror.org/04ejvay74', 'de', 1, 'https://ror.org/04ejvay74 Prosper Hospital'),
(35933, 'https://ror.org/00j4fqt27', 'en', 1, 'https://ror.org/00j4fqt27 National Neurosciences Centre'),
(35934, 'https://ror.org/0358q4810', 'en', 1, 'https://ror.org/0358q4810 Ruihua Affiliated Hospital of Soochow University'),
(35935, 'https://ror.org/01xpk0z24', 'sl', 1, 'https://ror.org/01xpk0z24 Psihiatrična Bolnišnica Ormož'),
(35936, 'https://ror.org/00h85rj63', 'no_lang_code', 1, 'https://ror.org/00h85rj63 Ryoka Systems (Japan)'),
(35937, 'https://ror.org/05hrhc122', 'en', 1, 'https://ror.org/05hrhc122 Q.D. Research'),
(35938, 'https://ror.org/00djq1r46', 'no_lang_code', 1, 'https://ror.org/00djq1r46 Optibrium (United Kingdom)'),
(35939, 'https://ror.org/031870q06', 'no_lang_code', 1, 'https://ror.org/031870q06 Orchid Pharma (India)'),
(35940, 'https://ror.org/01436qt40', 'no_lang_code', 1, 'https://ror.org/01436qt40 Mednax (United States)'),
(35941, 'https://ror.org/05e1zbn94', 'en', 1, 'https://ror.org/05e1zbn94 Qingdao Huanghai University'),
(35942, 'https://ror.org/01jf1v940', 'en', 1, 'https://ror.org/01jf1v940 Qingzhou City People''s Hospital'),
(35943, 'https://ror.org/03bjv2y17', 'en', 1, 'https://ror.org/03bjv2y17 Orlov State University'),
(35944, 'https://ror.org/00e42ba10', 'en', 1, 'https://ror.org/00e42ba10 Qiongtai Teachers College'),
(35945, 'https://ror.org/02bp8ne74', 'no_lang_code', 1, 'https://ror.org/02bp8ne74 Orochem Technologies (United States)'),
(35946, 'https://ror.org/015w8tk05', 'en', 1, 'https://ror.org/015w8tk05 Hospital de Olhos Sadalla Amin Ghanem Sadalla Amin Ghanem Eye Hospital'),
(35947, 'https://ror.org/02h67ht97', 'tr', 1, 'https://ror.org/02h67ht97 Sakarya Eğitim ve Araştırma Hastanesi Sakarya Training and Research Hospital'),
(35948, 'https://ror.org/03q9tge24', 'en', 1, 'https://ror.org/03q9tge24 Sai Nath University'),
(35949, 'https://ror.org/01ptvbz51', 'de', 1, 'https://ror.org/01ptvbz51 Asklepios Kliniken Bad Abbach'),
(35950, 'https://ror.org/00syyqa87', 'en', 1, 'https://ror.org/00syyqa87 Orthopaedic University Hospital Friedrichsheim Orthopädische Universitätsklinik Friedrichsheim'),
(35951, 'https://ror.org/04ey7f468', 'en', 1, 'https://ror.org/04ey7f468 Saint Mary''s Hospital Luodong'),
(35952, 'https://ror.org/01r8rcr36', 'no_lang_code', 1, 'https://ror.org/01r8rcr36 Tongren Hospital'),
(35953, 'https://ror.org/052frf812', 'en', 1, 'https://ror.org/052frf812 Shanmuganathan Engineering College'),
(35954, 'https://ror.org/043p9x506', 'no_lang_code', 1, 'https://ror.org/043p9x506 Shutech (Japan)'),
(35955, 'https://ror.org/03hjnd594', 'no_lang_code', 1, 'https://ror.org/03hjnd594 San’an Optoelectronics (China)'),
(35956, 'https://ror.org/017jdxf89', 'no_lang_code', 1, 'https://ror.org/017jdxf89 Sibanye Gold (South Africa)'),
(35957, 'https://ror.org/05tv5ra11', 'en', 1, 'https://ror.org/05tv5ra11 Sixth Affiliated Hospital of Kunming Medical University'),
(35958, 'https://ror.org/01r1kqm06', 'en', 1, 'https://ror.org/01r1kqm06 Ramin Agriculture and Natural Resources University of Khouzestan'),
(35959, 'https://ror.org/011b7yt80', 'en', 1, 'https://ror.org/011b7yt80 Rashid Latif Medical College'),
(35960, 'https://ror.org/04a94ee43', 'en', 1, 'https://ror.org/04a94ee43 Sanko University'),
(35961, 'https://ror.org/01v83yg31', 'en', 1, 'https://ror.org/01v83yg31 Linzi District People''s Hospital'),
(35962, 'https://ror.org/01tmhf693', 'no_lang_code', 1, 'https://ror.org/01tmhf693 Recombinant Antibody Technology (United Kingdom)'),
(35963, 'https://ror.org/0126dzb30', 'cs', 1, 'https://ror.org/0126dzb30 Slezská Nemocnice v Opavě'),
(35964, 'https://ror.org/04rrsxv85', 'no_lang_code', 1, 'https://ror.org/04rrsxv85 Regentis Biomaterials (Israel)'),
(35965, 'https://ror.org/02zv5qf81', 'tr', 1, 'https://ror.org/02zv5qf81 Şanlıurfa Mehmet Akif İnan Education and Research Hospital Şanlıurfa Mehmet Akif İnan Eğitim ve Araştırma Hastanesi'),
(35966, 'https://ror.org/01bdmd194', 'de', 1, 'https://ror.org/01bdmd194 Rems-Murr-Klinikum'),
(35967, 'https://ror.org/0303drj82', 'no_lang_code', 1, 'https://ror.org/0303drj82 Personalis (United States)'),
(35968, 'https://ror.org/04h84kq35', 'en', 1, 'https://ror.org/04h84kq35 Sobell House'),
(35969, 'https://ror.org/049epw866', 'en', 1, 'https://ror.org/049epw866 Shenzhen Shajing Affiliated Hospital of Guangzhou Medical University'),
(35970, 'https://ror.org/00jrxyr16', 'no_lang_code', 1, 'https://ror.org/00jrxyr16 Santokba Durlabhji Memorial hospital'),
(35971, 'https://ror.org/0570jbq35', 'en', 1, 'https://ror.org/0570jbq35 Fusion UK'),
(35972, 'https://ror.org/05tfq8535', 'en', 1, 'https://ror.org/05tfq8535 Phoenix College'),
(35973, 'https://ror.org/05efb1x79', 'no_lang_code', 1, 'https://ror.org/05efb1x79 Western Metal Materials (China)'),
(35974, 'https://ror.org/03ewzbm88', 'en', 1, 'https://ror.org/03ewzbm88 Sapporo Toho Hospital'),
(35975, 'https://ror.org/02zgfyq81', 'en', 1, 'https://ror.org/02zgfyq81 Sarah Network of Rehabilitation Hospitals'),
(35976, 'https://ror.org/05b51ak88', 'no_lang_code', 1, 'https://ror.org/05b51ak88 Chinese People’s Liberation Army 263 hospital'),
(35977, 'https://ror.org/00hdm6c37', 'no_lang_code', 1, 'https://ror.org/00hdm6c37 Shenzhen Weiguang Biological Products (China)'),
(35978, 'https://ror.org/00yxvfq91', 'no_lang_code', 1, 'https://ror.org/00yxvfq91 Slips Technologies (United States)'),
(35979, 'https://ror.org/04tf09b52', 'de', 1, 'https://ror.org/04tf09b52 St.-Johannes-Hospital Dortmund'),
(35980, 'https://ror.org/01dfmkn15', 'no_lang_code', 1, 'https://ror.org/01dfmkn15 Sky Island Alliance (United States)'),
(35981, 'https://ror.org/02333k624', 'en', 1, 'https://ror.org/02333k624 St. Joseph Dental College'),
(35982, 'https://ror.org/05817s869', 'no_lang_code', 1, 'https://ror.org/05817s869 Snowdon (United States)'),
(35983, 'https://ror.org/038rse530', 'no_lang_code', 1, 'https://ror.org/038rse530 Sumitomo Rubber Industries (Japan) 住友ゴム工業株式会社'),
(35984, 'https://ror.org/051d2r706', 'no_lang_code', 1, 'https://ror.org/051d2r706 Selventa (United States)'),
(35985, 'https://ror.org/0360rgf68', 'de', 1, 'https://ror.org/0360rgf68 Sophien-und Hufeland Klinikum'),
(35986, 'https://ror.org/01cnbre95', 'no_lang_code', 1, 'https://ror.org/01cnbre95 Suzhou Creative Nano-carbon (China)'),
(35987, 'https://ror.org/03n439y66', 'en', 1, 'https://ror.org/03n439y66 Funabashi Orthopaedic Hospital');
INSERT INTO `rors` VALUES
(35988, 'https://ror.org/00j3kev89', 'no_lang_code', 1, 'https://ror.org/00j3kev89 Sotera Wireless (United States)'),
(35989, 'https://ror.org/00kkxne40', 'en', 1, 'https://ror.org/00kkxne40 Suzhou Kowloon Hospital'),
(35990, 'https://ror.org/03r8cvf94', 'no_lang_code', 1, 'https://ror.org/03r8cvf94 STATinMED (United States)'),
(35991, 'https://ror.org/00m84gg72', 'en', 1, 'https://ror.org/00m84gg72 Central Clinical Hospital No 2 named Semashko Центральная Клиническая Больница имени Семашко'),
(35992, 'https://ror.org/011nk9770', 'en', 1, 'https://ror.org/011nk9770 Shri Ramswaroop Memorial University'),
(35993, 'https://ror.org/001dr7z09', 'no_lang_code', 1, 'https://ror.org/001dr7z09 Senshio Rifu hospital'),
(35994, 'https://ror.org/056rkh971', 'en', 1, 'https://ror.org/056rkh971 Stony Brook Children''s Hospital'),
(35995, 'https://ror.org/006pshn89', 'en', 1, 'https://ror.org/006pshn89 Seojeong University 서정대학교'),
(35996, 'https://ror.org/02qzb7q11', 'no_lang_code', 1, 'https://ror.org/02qzb7q11 Sparx Group (Japan)'),
(35997, 'https://ror.org/012ttce43', 'en', 1, 'https://ror.org/012ttce43 State Scientific Research Institute of Aviation Systems Государственный научно-исследовательский институт авиационных систем'),
(35998, 'https://ror.org/01jyw2164', 'en', 1, 'https://ror.org/01jyw2164 Hospital Taiping Taiping Hospital'),
(35999, 'https://ror.org/04m21mw32', 'pt', 1, 'https://ror.org/04m21mw32 State University of Amapá Universidade Estadual do Amapá'),
(36000, 'https://ror.org/05xe6ep17', 'no_lang_code', 1, 'https://ror.org/05xe6ep17 Satguru Partap Singh Hospital'),
(36001, 'https://ror.org/02bnr5073', 'en', 1, 'https://ror.org/02bnr5073 Stomatological Hospital of Chongqing Medical University'),
(36002, 'https://ror.org/05f1g5a11', 'en', 1, 'https://ror.org/05f1g5a11 Seven Oaks General Hospital'),
(36003, 'https://ror.org/01882y777', 'en', 1, 'https://ror.org/01882y777 Stony Brook Medicine'),
(36004, 'https://ror.org/02ez0zm48', 'en', 1, 'https://ror.org/02ez0zm48 Taixing People''s Hospital'),
(36005, 'https://ror.org/05gjjdy50', 'en', 1, 'https://ror.org/05gjjdy50 Swiss Leading Hospitals'),
(36006, 'https://ror.org/01cay9k79', 'en', 1, 'https://ror.org/01cay9k79 Sri Ramachandra Medical Centre'),
(36007, 'https://ror.org/04q18mv54', 'en', 1, 'https://ror.org/04q18mv54 Sugarcane Breeding Institute'),
(36008, 'https://ror.org/04x762r03', 'en', 1, 'https://ror.org/04x762r03 Sri Sai Super Speciality Hospital श्री साई सुपर स्पेशलिटी हॉस्पिटल'),
(36009, 'https://ror.org/00aw48305', 'en', 1, 'https://ror.org/00aw48305 Sri Venkateswara Veterinary University శ్రీ వేంకటేశ్వర పశువైద్య విశ్వవిద్యాలయం, తిరుపతి'),
(36010, 'https://ror.org/01mny2094', 'no_lang_code', 1, 'https://ror.org/01mny2094 Suita Tokushukai Hospital'),
(36011, 'https://ror.org/03nyxmy82', 'no_lang_code', 1, 'https://ror.org/03nyxmy82 Sumitomo Chemical (Japan) 住友化学'),
(36012, 'https://ror.org/05ktm1f40', 'en', 1, 'https://ror.org/05ktm1f40 Shalem College'),
(36013, 'https://ror.org/034j4ta73', 'no_lang_code', 1, 'https://ror.org/034j4ta73 Shanda Games'),
(36014, 'https://ror.org/0097rw043', 'no_lang_code', 1, 'https://ror.org/0097rw043 Taoka Hospital'),
(36015, 'https://ror.org/00vgj1d44', 'no_lang_code', 1, 'https://ror.org/00vgj1d44 Sunano (China)'),
(36016, 'https://ror.org/04yxyzj48', 'it', 1, 'https://ror.org/04yxyzj48 Azienda Ospedaliera Nazionale SS. Antonio e Biagio e Cesare Arrigo'),
(36017, 'https://ror.org/001wtjx27', 'no_lang_code', 1, 'https://ror.org/001wtjx27 Tata Steel (India)'),
(36018, 'https://ror.org/05bzatp41', 'no_lang_code', 1, 'https://ror.org/05bzatp41 Takashimadaira Chuo General Hospital'),
(36019, 'https://ror.org/00hwt9s33', 'no_lang_code', 1, 'https://ror.org/00hwt9s33 St Francis’ Hospital'),
(36020, 'https://ror.org/04yvdan45', 'en', 1, 'https://ror.org/04yvdan45 Tang Du Hospital'),
(36021, 'https://ror.org/05b52bg33', 'en', 1, 'https://ror.org/05b52bg33 Tatarstan Academy of Sciences'),
(36022, 'https://ror.org/05t6h5824', 'hu', 1, 'https://ror.org/05t6h5824 Szent Imre Egyetemi Oktatókórház'),
(36023, 'https://ror.org/05q054h21', 'no_lang_code', 1, 'https://ror.org/05q054h21 Syngenta (China)'),
(36024, 'https://ror.org/0019g5792', 'en', 1, 'https://ror.org/0019g5792 Taksim Alman Hastanesi Taksim German Hospital'),
(36025, 'https://ror.org/05pnk8r52', 'no_lang_code', 1, 'https://ror.org/05pnk8r52 Lushang (China)'),
(36026, 'https://ror.org/04ew4eb36', 'en', 1, 'https://ror.org/04ew4eb36 St John of God Hospital'),
(36027, 'https://ror.org/030617867', 'no_lang_code', 1, 'https://ror.org/030617867 Shandong Jiaotong Hospital'),
(36028, 'https://ror.org/00hvh1x59', 'en', 1, 'https://ror.org/00hvh1x59 St John of God Subiaco Hospital'),
(36029, 'https://ror.org/02ar2nf05', 'en', 1, 'https://ror.org/02ar2nf05 Shandong Provincial Hospital 山东省立医院'),
(36030, 'https://ror.org/04rq4r017', 'en', 1, 'https://ror.org/04rq4r017 John F Finn Institute for Public Safety'),
(36031, 'https://ror.org/019bexy50', 'hu', 1, 'https://ror.org/019bexy50 Szent Borbála Kórház'),
(36032, 'https://ror.org/00sgtyj59', 'no_lang_code', 1, 'https://ror.org/00sgtyj59 Ansteel (China)'),
(36033, 'https://ror.org/033jzmc70', 'en', 1, 'https://ror.org/033jzmc70 Leon Wiltse Memorial Hospital 윌스기념병원'),
(36034, 'https://ror.org/02fa7s823', 'no_lang_code', 1, 'https://ror.org/02fa7s823 Fujian Tobacco Industry Limited Liability Company (China)'),
(36035, 'https://ror.org/030f60051', 'en', 1, 'https://ror.org/030f60051 Ten Chen Hospital'),
(36036, 'https://ror.org/05d50hn21', 'en', 1, 'https://ror.org/05d50hn21 St. Johns Hospital'),
(36037, 'https://ror.org/0502tm991', 'en', 1, 'https://ror.org/0502tm991 Shenzhen Zhongshan Urological Hospital'),
(36038, 'https://ror.org/033fsme98', 'no_lang_code', 1, 'https://ror.org/033fsme98 TeraRecon (United States)'),
(36039, 'https://ror.org/04jhrwr82', 'de', 1, 'https://ror.org/04jhrwr82 St. Joseph-Krankenhaus'),
(36040, 'https://ror.org/01cmrry21', 'en', 1, 'https://ror.org/01cmrry21 Royal Hospital for Neuro-disability'),
(36041, 'https://ror.org/032yhrq65', 'no_lang_code', 1, 'https://ror.org/032yhrq65 Mission Hospital Durgapur'),
(36042, 'https://ror.org/0182n4f20', 'en', 1, 'https://ror.org/0182n4f20 National Center for University Entrance Examinations 独立行政法人大学入試センター'),
(36043, 'https://ror.org/01y07zp44', 'en', 1, 'https://ror.org/01y07zp44 Second Affiliated Hospital of Inner Mongolia Medical University'),
(36044, 'https://ror.org/015z4kn26', 'en', 1, 'https://ror.org/015z4kn26 117th Hospital of People''s Liberation Army'),
(36045, 'https://ror.org/048xxxv92', 'en', 1, 'https://ror.org/048xxxv92 Toowoomba Hospital'),
(36046, 'https://ror.org/0520d0g72', 'en', 1, 'https://ror.org/0520d0g72 Academy of Physiotherapy in Wrocław'),
(36047, 'https://ror.org/01r8m0a35', 'en', 1, 'https://ror.org/01r8m0a35 The Ohio State University Newark'),
(36048, 'https://ror.org/03kvr9360', 'en', 1, 'https://ror.org/03kvr9360 181st Hospital of Chinese People''s Liberation Army'),
(36049, 'https://ror.org/04jbyz122', 'en', 1, 'https://ror.org/04jbyz122 Edmond and Lily Safra Children''s Hospital'),
(36050, 'https://ror.org/0261d1g37', 'en', 1, 'https://ror.org/0261d1g37 Second Hospital of Nanchang'),
(36051, 'https://ror.org/009ag0z22', 'no_lang_code', 1, 'https://ror.org/009ag0z22 Toshima Manufacturing (Japan)'),
(36052, 'https://ror.org/00bpk6053', 'en', 1, 'https://ror.org/00bpk6053 Orentreich Foundation for the Advancement of Science'),
(36053, 'https://ror.org/01c0exk17', 'en', 1, 'https://ror.org/01c0exk17 First Affiliated Hospital of Heilongjiang University of Chinese Medicine'),
(36054, 'https://ror.org/01s154648', 'en', 1, 'https://ror.org/01s154648 The Eighth People’s Hospital of Nanning'),
(36055, 'https://ror.org/05xyfmz81', 'en', 1, 'https://ror.org/05xyfmz81 Total Rehab'),
(36056, 'https://ror.org/047vmpf34', 'en', 1, 'https://ror.org/047vmpf34 Oxford Educational Institutions'),
(36057, 'https://ror.org/01zjqqd74', 'no_lang_code', 1, 'https://ror.org/01zjqqd74 Tottori Prefectural Kousei Hospital 鳥取県立厚生病院'),
(36058, 'https://ror.org/0536rsk67', 'en', 1, 'https://ror.org/0536rsk67 First Affiliated Hospital of Henan University'),
(36059, 'https://ror.org/016bw3t53', 'en', 1, 'https://ror.org/016bw3t53 Second Hospital of Yichang'),
(36060, 'https://ror.org/05k5dwn49', 'en', 1, 'https://ror.org/05k5dwn49 Second Affiliated Hospital of Luohe Medical College'),
(36061, 'https://ror.org/01xncyx73', 'en', 1, 'https://ror.org/01xncyx73 Second People''s Hospital of NanTong 南通市第二人民医院'),
(36062, 'https://ror.org/00mgq3q11', 'de', 1, 'https://ror.org/00mgq3q11 Unfallkrankenhaus Meidling'),
(36063, 'https://ror.org/001e5z833', 'en', 1, 'https://ror.org/001e5z833 Wuqing District People''s Hospital'),
(36064, 'https://ror.org/05xceke97', 'en', 1, 'https://ror.org/05xceke97 Second People’s Hospital of Yibin'),
(36065, 'https://ror.org/04743aj70', 'en', 1, 'https://ror.org/04743aj70 Wuhan Third Hospital'),
(36066, 'https://ror.org/0140x9678', 'en', 1, 'https://ror.org/0140x9678 Jiujiang First People''s Hospital'),
(36067, 'https://ror.org/00wwb2b69', 'en', 1, 'https://ror.org/00wwb2b69 The First People''s Hospital of Shunde'),
(36068, 'https://ror.org/00fts7a69', 'en', 1, 'https://ror.org/00fts7a69 Zhangqiu City People''s Hospital 章丘区人民医院'),
(36069, 'https://ror.org/00sf52z42', 'no_lang_code', 1, 'https://ror.org/00sf52z42 Truven Health Analytics (United States)'),
(36070, 'https://ror.org/006ajxc32', 'en', 1, 'https://ror.org/006ajxc32 Xiaochang People''s Hospital 孝昌县第一人民医院'),
(36071, 'https://ror.org/03p184w47', 'en', 1, 'https://ror.org/03p184w47 People''s Hospital of Bishan District'),
(36072, 'https://ror.org/01wfgh551', 'en', 1, 'https://ror.org/01wfgh551 Fifth Affiliated Hospital of Zhengzhou University'),
(36073, 'https://ror.org/00cy3ar81', 'en', 1, 'https://ror.org/00cy3ar81 People’s Hospital of Wenshan Prefecture'),
(36074, 'https://ror.org/03617rq47', 'en', 1, 'https://ror.org/03617rq47 The First People’s Hospital of Lianyungang'),
(36075, 'https://ror.org/01ms51d52', 'en', 1, 'https://ror.org/01ms51d52 National Institute of Technology, Tsuruoka College 鶴岡工業高等専門学校'),
(36076, 'https://ror.org/01bkvqx83', 'en', 1, 'https://ror.org/01bkvqx83 Affiliated Hospital of Hangzhou Normal University'),
(36077, 'https://ror.org/0335pr187', 'en', 1, 'https://ror.org/0335pr187 Fourth Affiliated Hospital of Guangxi Medical University'),
(36078, 'https://ror.org/045rymn14', 'en', 1, 'https://ror.org/045rymn14 Ningbo University Affiliated Hospital 宁波大学医学院附属医院'),
(36079, 'https://ror.org/04j6xxj55', 'en', 1, 'https://ror.org/04j6xxj55 Ufa State University of Economics and Service'),
(36080, 'https://ror.org/00vva8g89', 'en', 1, 'https://ror.org/00vva8g89 Fourth People''s Hospital of Sichuan Province'),
(36081, 'https://ror.org/0358v9d31', 'en', 1, 'https://ror.org/0358v9d31 Affiliated Hospital of Youjiang Medical University for Nationalities'),
(36082, 'https://ror.org/012xbj452', 'en', 1, 'https://ror.org/012xbj452 Fourth People’s Hospital of Jinan'),
(36083, 'https://ror.org/010mck520', 'de', 1, 'https://ror.org/010mck520 Universitäres Kinderwunschzentrum Lübeck'),
(36084, 'https://ror.org/01by4sz34', 'no_lang_code', 1, 'https://ror.org/01by4sz34 Ultizyme International (Japan)'),
(36085, 'https://ror.org/02fe8jz98', 'no_lang_code', 1, 'https://ror.org/02fe8jz98 Ultrahaptics (United Kingdom)'),
(36086, 'https://ror.org/01jnj9432', 'no_lang_code', 1, 'https://ror.org/01jnj9432 Lozenetz Hospital Университетска болница Лозенец'),
(36087, 'https://ror.org/02f3rn888', 'es', 1, 'https://ror.org/02f3rn888 Hospital Regional Rancagua'),
(36088, 'https://ror.org/00ccgr484', 'pt', 1, 'https://ror.org/00ccgr484 Real Hospital Português'),
(36089, 'https://ror.org/01q4c7394', 'no_lang_code', 1, 'https://ror.org/01q4c7394 Thync (United States)'),
(36090, 'https://ror.org/053zwxr79', 'en', 1, 'https://ror.org/053zwxr79 United Nations University – Maastricht Economic and Social Research Institute on Innovation and Technology'),
(36091, 'https://ror.org/01y130z09', 'en', 1, 'https://ror.org/01y130z09 United Nations University-International Institute for Global Health'),
(36092, 'https://ror.org/0594j9961', 'fr', 1, 'https://ror.org/0594j9961 Université des Sciences, de Technologie et de Médecine'),
(36093, 'https://ror.org/01jk9f236', 'no_lang_code', 1, 'https://ror.org/01jk9f236 Tissue Gene (United States)'),
(36094, 'https://ror.org/03crxcn36', 'en', 1, 'https://ror.org/03crxcn36 Albstadt-Sigmaringen University Hochschule Albstadt-Sigmaringen'),
(36095, 'https://ror.org/032ymzc07', 'en', 1, 'https://ror.org/032ymzc07 Fachhochschule Graubünden University of Applied Sciences of the Grisons'),
(36096, 'https://ror.org/034qxt397', 'it', 1, 'https://ror.org/034qxt397 Azienda Ospedaliero-Universitaria Cagliari'),
(36097, 'https://ror.org/000e9w685', 'en', 1, 'https://ror.org/000e9w685 Tokyo College of Environment'),
(36098, 'https://ror.org/03a07kg34', 'pl', 1, 'https://ror.org/03a07kg34 Uniwersytecki Szpital Kliniczny w Olsztynie'),
(36099, 'https://ror.org/043yqwn61', 'no_lang_code', 1, 'https://ror.org/043yqwn61 Tolero Pharmaceuticals (United States)'),
(36100, 'https://ror.org/00t954r14', 'en', 1, 'https://ror.org/00t954r14 University Hospital St. Marina'),
(36101, 'https://ror.org/017vkhg73', 'it', 1, 'https://ror.org/017vkhg73 Azienda Ospedaliera di Valtellina e Valchiavenna'),
(36102, 'https://ror.org/03mpgr607', 'no_lang_code', 1, 'https://ror.org/03mpgr607 Value Frontier (Japan)'),
(36103, 'https://ror.org/001gbdr73', 'no_lang_code', 1, 'https://ror.org/001gbdr73 Beijing VDJBio (China)'),
(36104, 'https://ror.org/006hvpn82', 'en', 1, 'https://ror.org/006hvpn82 Islamic Azad University of Shahreza'),
(36105, 'https://ror.org/04ctbxy49', 'en', 1, 'https://ror.org/04ctbxy49 VIA University College'),
(36106, 'https://ror.org/054dxwf20', 'no_lang_code', 1, 'https://ror.org/054dxwf20 Vibrant Data (United States)'),
(36107, 'https://ror.org/04880yb19', 'en', 1, 'https://ror.org/04880yb19 LUdeS University Libera Universita degli Studi di Scienze Umane e Tecnologiche di Lugano'),
(36108, 'https://ror.org/050qh0g23', 'en', 1, 'https://ror.org/050qh0g23 Villa Torri Hospital'),
(36109, 'https://ror.org/030xgr181', 'en', 1, 'https://ror.org/030xgr181 Vinzenz Pallotti Hospital Bensberg'),
(36110, 'https://ror.org/01v1qva17', 'no_lang_code', 1, 'https://ror.org/01v1qva17 Virttu Biologics (United Kingdom)'),
(36111, 'https://ror.org/0551mkt91', 'de', 1, 'https://ror.org/0551mkt91 St. Remigius Krankenhaus Opladen'),
(36112, 'https://ror.org/05t1nkw30', 'no_lang_code', 1, 'https://ror.org/05t1nkw30 Xiamen Tobacco Industry (China)'),
(36113, 'https://ror.org/01seqfb61', 'no_lang_code', 1, 'https://ror.org/01seqfb61 Vitacress (United Kingdom)'),
(36114, 'https://ror.org/05p50vw42', 'no_lang_code', 1, 'https://ror.org/05p50vw42 Viva Biotech (China)'),
(36115, 'https://ror.org/04enaaj19', 'en', 1, 'https://ror.org/04enaaj19 Volgograd State Agricultural University'),
(36116, 'https://ror.org/00ajd9b21', 'en', 1, 'https://ror.org/00ajd9b21 Western Galilee College המכללה האקדמית גליל מערבי'),
(36117, 'https://ror.org/04zkkh342', 'no_lang_code', 1, 'https://ror.org/04zkkh342 Hangzhou Xixi hospital'),
(36118, 'https://ror.org/02x98g831', 'en', 1, 'https://ror.org/02x98g831 Xuzhou Children Hospital'),
(36119, 'https://ror.org/04tm92h03', 'no_lang_code', 1, 'https://ror.org/04tm92h03 Wakaba Hospital'),
(36120, 'https://ror.org/002t0k030', 'no_lang_code', 1, 'https://ror.org/002t0k030 Detec (Norway)'),
(36121, 'https://ror.org/011p1c445', 'no_lang_code', 1, 'https://ror.org/011p1c445 Kihoku hospital'),
(36122, 'https://ror.org/01fw7k425', 'no_lang_code', 1, 'https://ror.org/01fw7k425 Wired (Japan)'),
(36123, 'https://ror.org/007s9wc50', 'no_lang_code', 1, 'https://ror.org/007s9wc50 York Osteoarchaeology (United Kingdom)'),
(36124, 'https://ror.org/013c4m264', 'no_lang_code', 1, 'https://ror.org/013c4m264 Waters (China)'),
(36125, 'https://ror.org/05cqn9380', 'en', 1, 'https://ror.org/05cqn9380 Yangpu Hospital of Tongji University'),
(36126, 'https://ror.org/03kk5qq41', 'no_lang_code', 1, 'https://ror.org/03kk5qq41 WellSeek (United States)'),
(36127, 'https://ror.org/01nj2eb64', 'no_lang_code', 1, 'https://ror.org/01nj2eb64 Welspun (India)'),
(36128, 'https://ror.org/03gd0pk10', 'no_lang_code', 1, 'https://ror.org/03gd0pk10 Yashoda Hospital'),
(36129, 'https://ror.org/02671ys76', 'tr', 1, 'https://ror.org/02671ys76 Yunus Emre Hastanesi'),
(36130, 'https://ror.org/02ggf1973', 'en', 1, 'https://ror.org/02ggf1973 Yemeni Jordanian University'),
(36131, 'https://ror.org/002ngbk13', 'en', 1, 'https://ror.org/002ngbk13 Yeungjin College 영진전문대학'),
(36132, 'https://ror.org/053syz184', 'en', 1, 'https://ror.org/053syz184 Wuhan Technical College of Communications'),
(36133, 'https://ror.org/04abccf14', 'no_lang_code', 1, 'https://ror.org/04abccf14 Lee''s Pharmaceutical (China)'),
(36134, 'https://ror.org/00yejqr65', 'en', 1, 'https://ror.org/00yejqr65 Zhejiang DongFang Vocational and Technical College'),
(36135, 'https://ror.org/01b923653', 'no_lang_code', 1, 'https://ror.org/01b923653 Zebra Biologics (United States)'),
(36136, 'https://ror.org/03wcqja14', 'no_lang_code', 1, 'https://ror.org/03wcqja14 Wuhan YZY Biopharma (China)'),
(36137, 'https://ror.org/042yzj970', 'no_lang_code', 1, 'https://ror.org/042yzj970 Yonsei Sarang Hospital'),
(36138, 'https://ror.org/03j93xk55', 'no_lang_code', 1, 'https://ror.org/03j93xk55 Zhejiang Hisun Pharmaceutical (China)'),
(36139, 'https://ror.org/03syp5w68', 'en', 1, 'https://ror.org/03syp5w68 Zefat Academic College'),
(36140, 'https://ror.org/0111q0t22', 'en', 1, 'https://ror.org/0111q0t22 Wujiang District People''s Hospital 吴江市第一人民医院'),
(36141, 'https://ror.org/0440kgc56', 'en', 1, 'https://ror.org/0440kgc56 Boai Hospital of Zhongshan 中山市博爱医院'),
(36142, 'https://ror.org/00c0xnf10', 'en', 1, 'https://ror.org/00c0xnf10 Ahmed Bin Mohammed Military College'),
(36143, 'https://ror.org/03y3mre69', 'no_lang_code', 1, 'https://ror.org/03y3mre69 AHR (United Kingdom)'),
(36144, 'https://ror.org/026g68t18', 'no_lang_code', 1, 'https://ror.org/026g68t18 Zhoushan Hospital'),
(36145, 'https://ror.org/05pb5hm55', 'en', 1, 'https://ror.org/05pb5hm55 Wuxi People''s Hospital'),
(36146, 'https://ror.org/03nznv947', 'no_lang_code', 1, 'https://ror.org/03nznv947 Adaptive Intelligent Systems (United States)'),
(36147, 'https://ror.org/04eh3ca90', 'no_lang_code', 1, 'https://ror.org/04eh3ca90 WuXi AppTec (China)'),
(36148, 'https://ror.org/02t3pnf96', 'no_lang_code', 1, 'https://ror.org/02t3pnf96 WuXiPRA (China)'),
(36149, 'https://ror.org/05yfnn994', 'no_lang_code', 1, 'https://ror.org/05yfnn994 Allinea Software (United Kingdom)'),
(36150, 'https://ror.org/02h3c2z65', 'no_lang_code', 1, 'https://ror.org/02h3c2z65 Xeme Biopharma (United States)'),
(36151, 'https://ror.org/05hg8d082', 'en', 1, 'https://ror.org/05hg8d082 First Hospital of Xi''an'),
(36152, 'https://ror.org/05e966z79', 'en', 1, 'https://ror.org/05e966z79 Akron Council of Engineering and Scientific Societies'),
(36153, 'https://ror.org/049k3fp61', 'en', 1, 'https://ror.org/049k3fp61 American Society for Eighteenth-Century Studies'),
(36154, 'https://ror.org/02q350s40', 'no_lang_code', 1, 'https://ror.org/02q350s40 Brook Lyndhurst (United Kingdom)'),
(36155, 'https://ror.org/031ekp611', 'no_lang_code', 1, 'https://ror.org/031ekp611 BCL Technologies (United States)'),
(36156, 'https://ror.org/02ggbdh30', 'fr', 1, 'https://ror.org/02ggbdh30 Cégep Marie-Victorin'),
(36157, 'https://ror.org/01ca46h26', 'en', 1, 'https://ror.org/01ca46h26 Association of Minority Health Professions Schools'),
(36158, 'https://ror.org/04fmx6120', 'no_lang_code', 1, 'https://ror.org/04fmx6120 Chaotic.com (United States)'),
(36159, 'https://ror.org/04bykga04', 'en', 1, 'https://ror.org/04bykga04 ASCE Foundation'),
(36160, 'https://ror.org/04y1t5a55', 'en', 1, 'https://ror.org/04y1t5a55 Colorado Wyoming Academy of Science'),
(36161, 'https://ror.org/0482b5b22', 'en', 1, 'https://ror.org/0482b5b22 Brazilian Agricultural Research Corporation Empresa Brasileira de Pesquisa Agropecuária'),
(36162, 'https://ror.org/00pdjsv51', 'en', 1, 'https://ror.org/00pdjsv51 National Mississippi River Museum & Aquarium'),
(36163, 'https://ror.org/03345rt93', 'no_lang_code', 1, 'https://ror.org/03345rt93 Imaging Technology Consulting (United States)'),
(36164, 'https://ror.org/00x035a35', 'en', 1, 'https://ror.org/00x035a35 Energy Agency for Southeast'),
(36165, 'https://ror.org/025xvg623', 'no_lang_code', 1, 'https://ror.org/025xvg623 EY Technologies (United States)'),
(36166, 'https://ror.org/01hcrwv94', 'no_lang_code', 1, 'https://ror.org/01hcrwv94 Engineering Research & Analysis (United States)'),
(36167, 'https://ror.org/02nejrd79', 'no_lang_code', 1, 'https://ror.org/02nejrd79 FlexEnable (United Kingdom)'),
(36168, 'https://ror.org/04kfz7522', 'no_lang_code', 1, 'https://ror.org/04kfz7522 Flex (Canada)'),
(36169, 'https://ror.org/045h1r327', 'no_lang_code', 1, 'https://ror.org/045h1r327 Scott Group Studio (United States)'),
(36170, 'https://ror.org/00xcyc711', 'no_lang_code', 1, 'https://ror.org/00xcyc711 Environmental Resources Management (United Kingdom)'),
(36171, 'https://ror.org/04ftf3m30', 'en', 1, 'https://ror.org/04ftf3m30 Fort Ticonderoga Association'),
(36172, 'https://ror.org/00q6e3362', 'en', 1, 'https://ror.org/00q6e3362 Friends of Independence National Historical Park'),
(36173, 'https://ror.org/008y17h10', 'no_lang_code', 1, 'https://ror.org/008y17h10 Retriev Technologies (United States)'),
(36174, 'https://ror.org/02yf7vb16', 'no_lang_code', 1, 'https://ror.org/02yf7vb16 PepsiCo (United Kingdom)'),
(36175, 'https://ror.org/05dvp4993', 'no_lang_code', 1, 'https://ror.org/05dvp4993 Ubitech (Greece)'),
(36176, 'https://ror.org/034epfv80', 'no_lang_code', 1, 'https://ror.org/034epfv80 Fluenta (Norway)'),
(36177, 'https://ror.org/02z1zrr65', 'no_lang_code', 1, 'https://ror.org/02z1zrr65 Fobox (Norway)'),
(36178, 'https://ror.org/043mmxr96', 'en', 1, 'https://ror.org/043mmxr96 Atlanta Film Festival'),
(36179, 'https://ror.org/038awey71', 'en', 1, 'https://ror.org/038awey71 Management Research Institute'),
(36180, 'https://ror.org/03ytzbe98', 'en', 1, 'https://ror.org/03ytzbe98 HBCU Library Alliance'),
(36181, 'https://ror.org/01qtabf22', 'en', 1, 'https://ror.org/01qtabf22 Processors and Growers Research Organisation'),
(36182, 'https://ror.org/02sv85a88', 'no_lang_code', 1, 'https://ror.org/02sv85a88 Rocksource (Norway)'),
(36183, 'https://ror.org/01ktbtm29', 'no_lang_code', 1, 'https://ror.org/01ktbtm29 Matrix Engineering (United States)'),
(36184, 'https://ror.org/03g6dfe56', 'en', 1, 'https://ror.org/03g6dfe56 Garden Organic'),
(36185, 'https://ror.org/01v5fm873', 'no_lang_code', 1, 'https://ror.org/01v5fm873 Reliable Software Resources (United States)'),
(36186, 'https://ror.org/02b3z7h52', 'en', 1, 'https://ror.org/02b3z7h52 International Association for Comparative Research on Leukemia and Related Diseases'),
(36187, 'https://ror.org/02fb28f73', 'no_lang_code', 1, 'https://ror.org/02fb28f73 Micropply (United Kingdom)'),
(36188, 'https://ror.org/013c8e386', 'no_lang_code', 1, 'https://ror.org/013c8e386 S2G Biochem (Canada)'),
(36189, 'https://ror.org/007vzwm62', 'en', 1, 'https://ror.org/007vzwm62 Northern College'),
(36190, 'https://ror.org/05fdre954', 'no_lang_code', 1, 'https://ror.org/05fdre954 Simitive (United Kingdom)'),
(36191, 'https://ror.org/047ew8298', 'en', 1, 'https://ror.org/047ew8298 Rowan College at Burlington County'),
(36192, 'https://ror.org/055g39p68', 'sk', 1, 'https://ror.org/055g39p68 Slovenská Spoločnosť pre Kvalitu'),
(36193, 'https://ror.org/032jq1431', 'no_lang_code', 1, 'https://ror.org/032jq1431 KLRU-TV'),
(36194, 'https://ror.org/05p1qcv65', 'no_lang_code', 1, 'https://ror.org/05p1qcv65 Ervik & Sævik (Norway)'),
(36195, 'https://ror.org/03ffv2k10', 'en', 1, 'https://ror.org/03ffv2k10 Offshore Renewable Energy Catapult'),
(36196, 'https://ror.org/025rbqk82', 'en', 1, 'https://ror.org/025rbqk82 Small and Medium Enterprises Development Organization'),
(36197, 'https://ror.org/00vnpmg64', 'en', 1, 'https://ror.org/00vnpmg64 Oregon International Council'),
(36198, 'https://ror.org/02nwjvq32', 'no_lang_code', 1, 'https://ror.org/02nwjvq32 Lein Applied Diagnostics (United Kingdom)'),
(36199, 'https://ror.org/03kwtfg48', 'no', 1, 'https://ror.org/03kwtfg48 Foreningen GranittRock'),
(36200, 'https://ror.org/02jh1am07', 'en', 1, 'https://ror.org/02jh1am07 Utah Geological Survey'),
(36201, 'https://ror.org/01r729996', 'no_lang_code', 1, 'https://ror.org/01r729996 Tubądzin (Poland)'),
(36202, 'https://ror.org/059p4v436', 'no_lang_code', 1, 'https://ror.org/059p4v436 Kanazawa Hospital 金沢病院'),
(36203, 'https://ror.org/059z8dx76', 'no_lang_code', 1, 'https://ror.org/059z8dx76 Danko Hodowla Roślin (Poland)'),
(36204, 'https://ror.org/00g1f7p91', 'en', 1, 'https://ror.org/00g1f7p91 Weisman Art Museum'),
(36205, 'https://ror.org/03pehnk14', 'no_lang_code', 1, 'https://ror.org/03pehnk14 A&A Biotechnology (Poland)'),
(36206, 'https://ror.org/055ta3j62', 'no_lang_code', 1, 'https://ror.org/055ta3j62 Strainoptics (United States)'),
(36207, 'https://ror.org/03s6gep62', 'no_lang_code', 1, 'https://ror.org/03s6gep62 Ogrody Dankiewicz (Poland)'),
(36208, 'https://ror.org/04tkyvc79', 'no_lang_code', 1, 'https://ror.org/04tkyvc79 Abraxas Olgierd Jeremiasz (Poland)'),
(36209, 'https://ror.org/00hb1zy68', 'en', 1, 'https://ror.org/00hb1zy68 Swedish Chemical Society'),
(36210, 'https://ror.org/01prk3x73', 'en', 1, 'https://ror.org/01prk3x73 Academic Center of Medicine'),
(36211, 'https://ror.org/043xx4m81', 'no_lang_code', 1, 'https://ror.org/043xx4m81 Cybid (Poland)'),
(36212, 'https://ror.org/0145cbg67', 'no_lang_code', 1, 'https://ror.org/0145cbg67 Adal (Poland)'),
(36213, 'https://ror.org/00c6b0t92', 'no_lang_code', 1, 'https://ror.org/00c6b0t92 Autocomp Management (Poland)'),
(36214, 'https://ror.org/03jnqax33', 'no_lang_code', 1, 'https://ror.org/03jnqax33 TSO Logic (Canada)'),
(36215, 'https://ror.org/03zfe3916', 'no_lang_code', 1, 'https://ror.org/03zfe3916 Autosan (Poland)'),
(36216, 'https://ror.org/033wnan59', 'no_lang_code', 1, 'https://ror.org/033wnan59 D.A. Glass (Poland)'),
(36217, 'https://ror.org/01pgeyv96', 'no_lang_code', 1, 'https://ror.org/01pgeyv96 Adamed (Poland)'),
(36218, 'https://ror.org/00dbw6487', 'no_lang_code', 1, 'https://ror.org/00dbw6487 Damel (Poland)'),
(36219, 'https://ror.org/03ttb4s72', 'no_lang_code', 1, 'https://ror.org/03ttb4s72 Agat (Poland)'),
(36220, 'https://ror.org/02nhhj727', 'no_lang_code', 1, 'https://ror.org/02nhhj727 Wavefront (United States)'),
(36221, 'https://ror.org/04febtn50', 'no_lang_code', 1, 'https://ror.org/04febtn50 FinnMedi (Finland)'),
(36222, 'https://ror.org/04mzgyy45', 'en', 1, 'https://ror.org/04mzgyy45 Wayne County Historical Society'),
(36223, 'https://ror.org/02vkr9a39', 'no_lang_code', 1, 'https://ror.org/02vkr9a39 Deep Ocean Technology (Poland)'),
(36224, 'https://ror.org/00e0f3814', 'no_lang_code', 1, 'https://ror.org/00e0f3814 Awat (Poland)'),
(36225, 'https://ror.org/037emwa26', 'en', 1, 'https://ror.org/037emwa26 Polish Wood Cluster'),
(36226, 'https://ror.org/05qgg4j70', 'no_lang_code', 1, 'https://ror.org/05qgg4j70 Polmlek (Poland)'),
(36227, 'https://ror.org/005ckkn56', 'no_lang_code', 1, 'https://ror.org/005ckkn56 Demetrix (Poland)'),
(36228, 'https://ror.org/05f4xxw74', 'no_lang_code', 1, 'https://ror.org/05f4xxw74 Balton (Poland)'),
(36229, 'https://ror.org/015ndme87', 'en', 1, 'https://ror.org/015ndme87 Dream Adaptive Recreation'),
(36230, 'https://ror.org/01dvw2p26', 'en', 1, 'https://ror.org/01dvw2p26 Akces Lab'),
(36231, 'https://ror.org/023q9y161', 'no_lang_code', 1, 'https://ror.org/023q9y161 Albatros Aluminium (Poland)'),
(36232, 'https://ror.org/000n97s94', 'no_lang_code', 1, 'https://ror.org/000n97s94 BioMaxima (Poland)'),
(36233, 'https://ror.org/028r81743', 'en', 1, 'https://ror.org/028r81743 Habitat for Humanity'),
(36234, 'https://ror.org/02acpt629', 'en', 1, 'https://ror.org/02acpt629 Aeris Futuro Foundation'),
(36235, 'https://ror.org/02eqnr535', 'no_lang_code', 1, 'https://ror.org/02eqnr535 BioLab Innovative Research Technologies (Poland)'),
(36236, 'https://ror.org/04xzpvb32', 'en', 1, 'https://ror.org/04xzpvb32 Nobody’s Children Foundation'),
(36237, 'https://ror.org/022qzp196', 'no_lang_code', 1, 'https://ror.org/022qzp196 Alimetrics (Finland)'),
(36238, 'https://ror.org/00nbjph85', 'no_lang_code', 1, 'https://ror.org/00nbjph85 Polish Armaments Group (Poland)'),
(36239, 'https://ror.org/03fknzz27', 'no_lang_code', 1, 'https://ror.org/03fknzz27 E-Test (Poland)'),
(36240, 'https://ror.org/04qh35y55', 'pl', 1, 'https://ror.org/04qh35y55 Fundacja Ewy Błaszczyk Akogo'),
(36241, 'https://ror.org/01xa4wv03', 'no_lang_code', 1, 'https://ror.org/01xa4wv03 Hydromega (Poland)'),
(36242, 'https://ror.org/003agrv69', 'no_lang_code', 1, 'https://ror.org/003agrv69 Allstar PZL Glider (Poland)'),
(36243, 'https://ror.org/01f1ext93', 'no_lang_code', 1, 'https://ror.org/01f1ext93 IMC Engineering Poland (Poland)'),
(36244, 'https://ror.org/00p9dzj96', 'pl', 1, 'https://ror.org/00p9dzj96 Ogród Zoologiczny w Krakowie'),
(36245, 'https://ror.org/01w2a1611', 'no_lang_code', 1, 'https://ror.org/01w2a1611 Egovita (Poland)'),
(36246, 'https://ror.org/017gwgp39', 'no_lang_code', 1, 'https://ror.org/017gwgp39 Blue Dot Solutions (Poland)'),
(36247, 'https://ror.org/05k4hm954', 'no_lang_code', 1, 'https://ror.org/05k4hm954 Alstom (Poland)'),
(36248, 'https://ror.org/01yxywh30', 'no_lang_code', 1, 'https://ror.org/01yxywh30 Icopal (Poland)'),
(36249, 'https://ror.org/014cmtr13', 'en', 1, 'https://ror.org/014cmtr13 Unit for Social Innovation and Research Shipyard'),
(36250, 'https://ror.org/01k30an65', 'no_lang_code', 1, 'https://ror.org/01k30an65 Ekopop (Poland)'),
(36251, 'https://ror.org/02q2v1q18', 'no_lang_code', 1, 'https://ror.org/02q2v1q18 Alta (Poland)'),
(36252, 'https://ror.org/01xsmx049', 'no_lang_code', 1, 'https://ror.org/01xsmx049 ImagineRT (Poland)'),
(36253, 'https://ror.org/01gt3r273', 'no_lang_code', 1, 'https://ror.org/01gt3r273 EL-Automatyka (Poland)'),
(36254, 'https://ror.org/04x1mps47', 'no_lang_code', 1, 'https://ror.org/04x1mps47 Ele-DriveCo (Poland)'),
(36255, 'https://ror.org/04395y550', 'no_lang_code', 1, 'https://ror.org/04395y550 Alwernia (Poland)'),
(36256, 'https://ror.org/03jpvv707', 'no_lang_code', 1, 'https://ror.org/03jpvv707 AM Technologies (Poland)'),
(36257, 'https://ror.org/02vspvr81', 'pl', 1, 'https://ror.org/02vspvr81 Centrum Medyczne iMed24'),
(36258, 'https://ror.org/035qg4911', 'no_lang_code', 1, 'https://ror.org/035qg4911 Electric System & Laser Technology (Poland)'),
(36259, 'https://ror.org/00e9gka57', 'no_lang_code', 1, 'https://ror.org/00e9gka57 Budimex (Poland)'),
(36260, 'https://ror.org/0561ntb60', 'no_lang_code', 1, 'https://ror.org/0561ntb60 Impact Clean Power Technology (Poland)'),
(36261, 'https://ror.org/022e3pg27', 'en', 1, 'https://ror.org/022e3pg27 Praesterno Foundation'),
(36262, 'https://ror.org/024mz1171', 'no_lang_code', 1, 'https://ror.org/024mz1171 Budopex (Poland)'),
(36263, 'https://ror.org/00tdd5j20', 'no_lang_code', 1, 'https://ror.org/00tdd5j20 Elektrobudowa (Poland)'),
(36264, 'https://ror.org/04grq3m63', 'en', 1, 'https://ror.org/04grq3m63 American Heart of Poland'),
(36265, 'https://ror.org/040njjb71', 'en', 1, 'https://ror.org/040njjb71 TechSoup'),
(36266, 'https://ror.org/05cqs0208', 'no_lang_code', 1, 'https://ror.org/05cqs0208 Elhand Transformatory (Poland)'),
(36267, 'https://ror.org/01xy3fg04', 'no_lang_code', 1, 'https://ror.org/01xy3fg04 Eltcrac System (Poland)'),
(36268, 'https://ror.org/050w53c21', 'en', 1, 'https://ror.org/050w53c21 Free and Open Source Software Foundation'),
(36269, 'https://ror.org/04r5sb480', 'no_lang_code', 1, 'https://ror.org/04r5sb480 AMZ (Poland)'),
(36270, 'https://ror.org/004z3dy70', 'no_lang_code', 1, 'https://ror.org/004z3dy70 Polski Holding Obronny (Poland)'),
(36271, 'https://ror.org/05etvgz30', 'no_lang_code', 1, 'https://ror.org/05etvgz30 Galwes (Poland)'),
(36272, 'https://ror.org/0209g3a14', 'no_lang_code', 1, 'https://ror.org/0209g3a14 Innovations for Heart and Vessels (Poland)'),
(36273, 'https://ror.org/04jnhhw51', 'en', 1, 'https://ror.org/04jnhhw51 Carolinas HealthCare Foundation'),
(36274, 'https://ror.org/00wz29n17', 'no_lang_code', 1, 'https://ror.org/00wz29n17 Gascontrol Polska'),
(36275, 'https://ror.org/00sjjkp82', 'no_lang_code', 1, 'https://ror.org/00sjjkp82 Instar (Poland)'),
(36276, 'https://ror.org/03va80p69', 'no_lang_code', 1, 'https://ror.org/03va80p69 Gemalto (Poland)'),
(36277, 'https://ror.org/04ve0xz37', 'no_lang_code', 1, 'https://ror.org/04ve0xz37 Cemad (Poland)'),
(36278, 'https://ror.org/03yy70b29', 'no_lang_code', 1, 'https://ror.org/03yy70b29 Celsa (Poland)'),
(36279, 'https://ror.org/05fq4pb53', 'en', 1, 'https://ror.org/05fq4pb53 Centres for Economic Development, Transport and the Environment Elinkeino-, liikenne- ja ympäristökeskukset Närings- Trafik- och Miljöcentralen'),
(36280, 'https://ror.org/012hfzv58', 'no_lang_code', 1, 'https://ror.org/012hfzv58 Armada (Poland)'),
(36281, 'https://ror.org/055j3vp97', 'no_lang_code', 1, 'https://ror.org/055j3vp97 Enel (Poland)'),
(36282, 'https://ror.org/053s3hs07', 'no_lang_code', 1, 'https://ror.org/053s3hs07 Astronika (Poland)'),
(36283, 'https://ror.org/00cadpz88', 'no_lang_code', 1, 'https://ror.org/00cadpz88 Enigma Systemy Ochrony Informacji (Poland)'),
(36284, 'https://ror.org/03n3nz506', 'no_lang_code', 1, 'https://ror.org/03n3nz506 General Motors (Poland)'),
(36285, 'https://ror.org/02nh4wx40', 'en', 1, 'https://ror.org/02nh4wx40 Institute of Agricultural and Food Biotechnology'),
(36286, 'https://ror.org/04yntp988', 'no_lang_code', 1, 'https://ror.org/04yntp988 Ente (Poland)'),
(36287, 'https://ror.org/03g4xy420', 'no_lang_code', 1, 'https://ror.org/03g4xy420 IBSS BIOMED (Poland)'),
(36288, 'https://ror.org/028hxy872', 'pl', 1, 'https://ror.org/028hxy872 Centrum Medyczne Aurismed'),
(36289, 'https://ror.org/04ja6xk17', 'no_lang_code', 1, 'https://ror.org/04ja6xk17 Genomed (Poland)'),
(36290, 'https://ror.org/04r0t2b06', 'no_lang_code', 1, 'https://ror.org/04r0t2b06 Auto Galeria (Poland)'),
(36291, 'https://ror.org/04qktrs60', 'no_lang_code', 1, 'https://ror.org/04qktrs60 Esri Polska (Poland)'),
(36292, 'https://ror.org/05dmdhx59', 'en', 1, 'https://ror.org/05dmdhx59 Institute of Ceramics and Building Materials'),
(36293, 'https://ror.org/054h11b04', 'en', 1, 'https://ror.org/054h11b04 Central Finland Health Care District Keski-Suomen keskussairaala'),
(36294, 'https://ror.org/04qjtha44', 'no_lang_code', 1, 'https://ror.org/04qjtha44 Environmental Tectonics (Poland)'),
(36295, 'https://ror.org/00wtrhc98', 'en', 1, 'https://ror.org/00wtrhc98 Institute of Geography and Spatial Organization, Polish Academy of Sciences'),
(36296, 'https://ror.org/003sdh081', 'en', 1, 'https://ror.org/003sdh081 Instytut Historii im. Tadeusza Manteuffla Tadeusz Manteuffel Institute of History'),
(36297, 'https://ror.org/01pe10g60', 'en', 1, 'https://ror.org/01pe10g60 Institute of Philosophy and Sociology Instytut Filozofii i Socjologii'),
(36298, 'https://ror.org/00cv5j742', 'no_lang_code', 1, 'https://ror.org/00cv5j742 Fabryka Armatur Swarzędz (Poland)'),
(36299, 'https://ror.org/04tk9dh57', 'no_lang_code', 1, 'https://ror.org/04tk9dh57 Global Colors Polska (Poland)'),
(36300, 'https://ror.org/01fntqb44', 'no_lang_code', 1, 'https://ror.org/01fntqb44 Sefako (Poland)'),
(36301, 'https://ror.org/05nac3h44', 'pl', 1, 'https://ror.org/05nac3h44 Centrum Badań i Dozoru Górnictwa Podziemnego'),
(36302, 'https://ror.org/037p52j25', 'en', 1, 'https://ror.org/037p52j25 Institute of Theoretical and Applied Informatics Instytut Informatyki Teoretycznej i Stosowanej Polskiej Akademii Nauk'),
(36303, 'https://ror.org/017enfr88', 'en', 1, 'https://ror.org/017enfr88 Franciszek Górski Institute of Plant Physiology Instytut Fizjologii Roślin im. Franciszek Górskiego'),
(36304, 'https://ror.org/030zz7j19', 'pl', 1, 'https://ror.org/030zz7j19 Centrum Badań i Innowacji Pro-Akademia'),
(36305, 'https://ror.org/03w4fhz38', 'no_lang_code', 1, 'https://ror.org/03w4fhz38 DMG Mori (Poland)'),
(36306, 'https://ror.org/01h9sha04', 'en', 1, 'https://ror.org/01h9sha04 Instytut Języka Polskiego Polskiej Akademii Nauk The Institute of the Polish Language of the Polish Academy of Sciences'),
(36307, 'https://ror.org/01ajzj063', 'no_lang_code', 1, 'https://ror.org/01ajzj063 GMV Innovating Solutions (Poland)'),
(36308, 'https://ror.org/0038zp908', 'en', 1, 'https://ror.org/0038zp908 Institute of Genetics and Animal Biotechnology of the Polish Academy of Sciences Instytut Genetyki i Biotechnologii Zwierząt Polskiej Akademii Nauk'),
(36309, 'https://ror.org/037x86n09', 'pl', 1, 'https://ror.org/037x86n09 Centrum Cyfrowe Projekt'),
(36310, 'https://ror.org/00cm8fy76', 'en', 1, 'https://ror.org/00cm8fy76 Institute of Mediterranean and Oriental Cultures Instytut Kultur Śródziemnomorskich i Orientalnych Polskiej Akademii Nauk'),
(36311, 'https://ror.org/01x675h84', 'en', 1, 'https://ror.org/01x675h84 Institute of Mathematical Machines'),
(36312, 'https://ror.org/01q6r0v22', 'pl', 1, 'https://ror.org/01q6r0v22 Centrum Leczenia Oparzeń'),
(36313, 'https://ror.org/01vzjr049', 'en', 1, 'https://ror.org/01vzjr049 Instytut Mechaniki Górotworu Strata Mechanics Research Institute'),
(36314, 'https://ror.org/02j43z323', 'en', 1, 'https://ror.org/02j43z323 Institute of Security Technologies MORATEX'),
(36315, 'https://ror.org/04c6t2v13', 'no_lang_code', 1, 'https://ror.org/04c6t2v13 TDJ (Poland)'),
(36316, 'https://ror.org/051c73j58', 'no_lang_code', 1, 'https://ror.org/051c73j58 Gonar (Poland)'),
(36317, 'https://ror.org/02w1m8s39', 'no_lang_code', 1, 'https://ror.org/02w1m8s39 FAS (Poland)'),
(36318, 'https://ror.org/05kbjcm35', 'no_lang_code', 1, 'https://ror.org/05kbjcm35 FCA (Poland)'),
(36319, 'https://ror.org/00pvkt339', 'no_lang_code', 1, 'https://ror.org/00pvkt339 Finnish Consulting Group (Finland)'),
(36320, 'https://ror.org/03gw23n83', 'no_lang_code', 1, 'https://ror.org/03gw23n83 Górnośląski Park Przemysłowy (Poland)'),
(36321, 'https://ror.org/03b6zwf53', 'en', 1, 'https://ror.org/03b6zwf53 Finnish Society for Nutrition Research'),
(36322, 'https://ror.org/03ad5a420', 'no_lang_code', 1, 'https://ror.org/03ad5a420 Grupa Azoty (Poland)'),
(36323, 'https://ror.org/03mg4e956', 'no_lang_code', 1, 'https://ror.org/03mg4e956 Mahle (Poland)'),
(36324, 'https://ror.org/01fbjr446', 'pl', 1, 'https://ror.org/01fbjr446 Instytut Metalurgii Żelaza im. Stanisława Staszica Stanislaw Staszic Institute for Ferrous Metallurgy'),
(36325, 'https://ror.org/01fba6t94', 'no_lang_code', 1, 'https://ror.org/01fba6t94 Group Image (Poland)'),
(36326, 'https://ror.org/00gbgk256', 'en', 1, 'https://ror.org/00gbgk256 MaineGeneral Medical Center'),
(36327, 'https://ror.org/025cgya16', 'no_lang_code', 1, 'https://ror.org/025cgya16 GTM Mobil (Poland)'),
(36328, 'https://ror.org/0086rk289', 'en', 1, 'https://ror.org/0086rk289 Łukasiewicz Instytut Napędów i Maszyn Elektrycznych KOMEL Łukasiewicz Research Network - Institute of Electrical Drives & Machines KOMEL'),
(36329, 'https://ror.org/05n3y0v15', 'no_lang_code', 1, 'https://ror.org/05n3y0v15 Inter Metal (Poland)'),
(36330, 'https://ror.org/01reqxx39', 'no_lang_code', 1, 'https://ror.org/01reqxx39 Hardsoft Microprocessor Systems (Poland)'),
(36331, 'https://ror.org/05htr1n89', 'pl', 1, 'https://ror.org/05htr1n89 Centrum Słuchu i Mowy'),
(36332, 'https://ror.org/03j7efk91', 'en', 1, 'https://ror.org/03j7efk91 New Chemical Syntheses Institute'),
(36333, 'https://ror.org/02vfaew05', 'no_lang_code', 1, 'https://ror.org/02vfaew05 Medcore (Poland)'),
(36334, 'https://ror.org/0417dsh96', 'no_lang_code', 1, 'https://ror.org/0417dsh96 Harpo (Poland)'),
(36335, 'https://ror.org/04xdy7f60', 'no_lang_code', 1, 'https://ror.org/04xdy7f60 Izolacja-Jarocin (Poland)'),
(36336, 'https://ror.org/00sx97n88', 'en', 1, 'https://ror.org/00sx97n88 Centre for International Relations'),
(36337, 'https://ror.org/02rcybf88', 'no_lang_code', 1, 'https://ror.org/02rcybf88 Medgal (Poland)'),
(36338, 'https://ror.org/00rmr1x70', 'no_lang_code', 1, 'https://ror.org/00rmr1x70 Hart Tech (Poland)'),
(36339, 'https://ror.org/02drpw934', 'no_lang_code', 1, 'https://ror.org/02drpw934 Ciech (Poland)'),
(36340, 'https://ror.org/03v95wd71', 'no_lang_code', 1, 'https://ror.org/03v95wd71 Azet Products (Poland)'),
(36341, 'https://ror.org/0133spp95', 'no_lang_code', 1, 'https://ror.org/0133spp95 Metal Expert (Poland)'),
(36342, 'https://ror.org/01ptw3s93', 'no_lang_code', 1, 'https://ror.org/01ptw3s93 JAS Technologies (Poland)'),
(36343, 'https://ror.org/03zskka50', 'en', 1, 'https://ror.org/03zskka50 Metro Area Community Empowerment'),
(36344, 'https://ror.org/03qg29w70', 'no_lang_code', 1, 'https://ror.org/03qg29w70 Jastrzębska Spółka Węglowa (Poland)'),
(36345, 'https://ror.org/03a0eje69', 'no_lang_code', 1, 'https://ror.org/03a0eje69 Helioenergia (Poland)'),
(36346, 'https://ror.org/04m6b4442', 'en', 1, 'https://ror.org/04m6b4442 Maksymilian Pluta Institute of Applied Optics'),
(36347, 'https://ror.org/01ep3aj25', 'no_lang_code', 1, 'https://ror.org/01ep3aj25 Centralny Ośrodek Informatyki Górnictwa'),
(36348, 'https://ror.org/04571v857', 'no_lang_code', 1, 'https://ror.org/04571v857 Metsähallitus (Finland)'),
(36349, 'https://ror.org/02dvkbx23', 'no_lang_code', 1, 'https://ror.org/02dvkbx23 Syskon (Poland)'),
(36350, 'https://ror.org/04xk7k966', 'en', 1, 'https://ror.org/04xk7k966 Institute of Paleobiology Instytut Paleobiologii'),
(36351, 'https://ror.org/02vwv0r85', 'no_lang_code', 1, 'https://ror.org/02vwv0r85 Jenox (Poland)'),
(36352, 'https://ror.org/011m6ze86', 'no_lang_code', 1, 'https://ror.org/011m6ze86 Mexeo (Poland)'),
(36353, 'https://ror.org/0055ya375', 'no_lang_code', 1, 'https://ror.org/0055ya375 MGGP Aero (Poland)'),
(36354, 'https://ror.org/02c3phe56', 'en', 1, 'https://ror.org/02c3phe56 Witold Stefański Institute of Parasitology Witolda Stefańskiego Instytut Parazytologii PAN'),
(36355, 'https://ror.org/00g9q3p96', 'no_lang_code', 1, 'https://ror.org/00g9q3p96 JHJ (Poland)'),
(36356, 'https://ror.org/01btsgc53', 'no_lang_code', 1, 'https://ror.org/01btsgc53 Miejskie Przedsiebiorstwo Wodociągów i Kanalizacji (Poland)'),
(36357, 'https://ror.org/0261v0920', 'no_lang_code', 1, 'https://ror.org/0261v0920 Pedmo (Poland)'),
(36358, 'https://ror.org/01j9zyw40', 'en', 1, 'https://ror.org/01j9zyw40 Institute of Environmental Engineering Instytut Podstaw Inżynierii Środowiska Polskiej Akademii Nauk'),
(36359, 'https://ror.org/02zhmsp02', 'no_lang_code', 1, 'https://ror.org/02zhmsp02 HOBAS (Poland)'),
(36360, 'https://ror.org/00sgkxj28', 'no_lang_code', 1, 'https://ror.org/00sgkxj28 Katowice Coal Holding (Poland)'),
(36361, 'https://ror.org/0180r1p81', 'en', 1, 'https://ror.org/0180r1p81 Pellervo Economic Research'),
(36362, 'https://ror.org/01hz8vp40', 'no_lang_code', 1, 'https://ror.org/01hz8vp40 Peszke (Poland)'),
(36363, 'https://ror.org/00d5dra59', 'no_lang_code', 1, 'https://ror.org/00d5dra59 KenBIT (Poland)'),
(36364, 'https://ror.org/054m12006', 'no_lang_code', 1, 'https://ror.org/054m12006 Mikanit (Poland)'),
(36365, 'https://ror.org/01kk1nf20', 'en', 1, 'https://ror.org/01kk1nf20 Institute of Industrial Organic Chemistry'),
(36366, 'https://ror.org/022aw4932', 'no_lang_code', 1, 'https://ror.org/022aw4932 Mine Master (Poland)'),
(36367, 'https://ror.org/05qztqs34', 'pl', 1, 'https://ror.org/05qztqs34 Instytut Przemysłu Skórzanego'),
(36368, 'https://ror.org/00dftxz84', 'no_lang_code', 1, 'https://ror.org/00dftxz84 KFB Polska (Poland)'),
(36369, 'https://ror.org/034dn0836', 'en', 1, 'https://ror.org/034dn0836 Institute of Psychology Instytut Psychologii Polska Akademia Nauk'),
(36370, 'https://ror.org/05n3z7m75', 'no_lang_code', 1, 'https://ror.org/05n3z7m75 Radwag Balances and Scales (Poland)'),
(36371, 'https://ror.org/03q27nw68', 'no_lang_code', 1, 'https://ror.org/03q27nw68 Kirchhoff (Poland)'),
(36372, 'https://ror.org/03k1p5343', 'no_lang_code', 1, 'https://ror.org/03k1p5343 Pit Radwar (Poland)'),
(36373, 'https://ror.org/03j6dmn04', 'no_lang_code', 1, 'https://ror.org/03j6dmn04 MSP (Poland)'),
(36374, 'https://ror.org/018wm7s07', 'en', 1, 'https://ror.org/018wm7s07 Coal Mining Museum in Zabrze'),
(36375, 'https://ror.org/05rdy5005', 'en', 1, 'https://ror.org/05rdy5005 Institute of Systematics and Evolution of Animals Instytut Systematyki i Ewolucji Zwierząt PAN'),
(36376, 'https://ror.org/03h68ys54', 'no_lang_code', 1, 'https://ror.org/03h68ys54 Kongsberg Automotive (Poland)'),
(36377, 'https://ror.org/017bpsz44', 'no_lang_code', 1, 'https://ror.org/017bpsz44 Rejonowe Przedsiębiorstwo Wodociągów i Kanalizacji W Sosnowcu (Poland)'),
(36378, 'https://ror.org/017fyx225', 'en', 1, 'https://ror.org/017fyx225 Institute of Art Instytut Sztuki Polskiej Akademii Nauk'),
(36379, 'https://ror.org/00dn6p145', 'no_lang_code', 1, 'https://ror.org/00dn6p145 kopex (Poland)'),
(36380, 'https://ror.org/01z735w38', 'no_lang_code', 1, 'https://ror.org/01z735w38 Rek Swed (Poland)'),
(36381, 'https://ror.org/03as2hc70', 'en', 1, 'https://ror.org/03as2hc70 Instytut Technik Innowacyjnych EMAG Łukasiewicz Research Network - Institute of Innovative Technologies EMAG'),
(36382, 'https://ror.org/00f4x2j47', 'no_lang_code', 1, 'https://ror.org/00f4x2j47 Korporacja Wschód (Poland)'),
(36383, 'https://ror.org/04bndcy38', 'no_lang_code', 1, 'https://ror.org/04bndcy38 Remstat (Poland)'),
(36384, 'https://ror.org/02ks0br87', 'en', 1, 'https://ror.org/02ks0br87 Institute of Medical Technology and Equipment'),
(36385, 'https://ror.org/03fpmzv72', 'no_lang_code', 1, 'https://ror.org/03fpmzv72 Krajowa Spółka Cukrowa (Poland)'),
(36386, 'https://ror.org/04a57ke25', 'no_lang_code', 1, 'https://ror.org/04a57ke25 PKP Group (Poland)'),
(36387, 'https://ror.org/01q2fk491', 'en', 1, 'https://ror.org/01q2fk491 Institute of Technology and Life Sciences'),
(36388, 'https://ror.org/05fn7qf30', 'no_lang_code', 1, 'https://ror.org/05fn7qf30 Nafra Polska (Poland)'),
(36389, 'https://ror.org/00gbs4x54', 'en', 1, 'https://ror.org/00gbs4x54 Institute for the Languages of Finland'),
(36390, 'https://ror.org/05v34hx56', 'no_lang_code', 1, 'https://ror.org/05v34hx56 Nano Carbon (Poland)'),
(36391, 'https://ror.org/00hwjxp97', 'no_lang_code', 1, 'https://ror.org/00hwjxp97 Pesa (Poland)'),
(36392, 'https://ror.org/00qnzks08', 'no_lang_code', 1, 'https://ror.org/00qnzks08 Krakodlew (Poland)'),
(36393, 'https://ror.org/00pqahb84', 'no_lang_code', 1, 'https://ror.org/00pqahb84 NanoVelos (Poland)'),
(36394, 'https://ror.org/05sdxzt97', 'no_lang_code', 1, 'https://ror.org/05sdxzt97 Robotics Inventions (Poland)'),
(36395, 'https://ror.org/02957ep02', 'no_lang_code', 1, 'https://ror.org/02957ep02 Pol-Nil (Poland)'),
(36396, 'https://ror.org/01m4hhk76', 'pl', 1, 'https://ror.org/01m4hhk76 Stowarzyszenie Nowa Wspólna Droga'),
(36397, 'https://ror.org/05c3cgy93', 'en', 1, 'https://ror.org/05c3cgy93 Krakow Cardiovascular Research Institute'),
(36398, 'https://ror.org/01w5jqs06', 'no_lang_code', 1, 'https://ror.org/01w5jqs06 Pol-Spec-Tech-Service (Poland)'),
(36399, 'https://ror.org/01dcvkj86', 'en', 1, 'https://ror.org/01dcvkj86 Medenta'),
(36400, 'https://ror.org/03c4nng82', 'no_lang_code', 1, 'https://ror.org/03c4nng82 Hutton Energy (Poland)'),
(36401, 'https://ror.org/01eewg647', 'no_lang_code', 1, 'https://ror.org/01eewg647 Studio Promocji MIT (Poland)'),
(36402, 'https://ror.org/02sgbmf75', 'en', 1, 'https://ror.org/02sgbmf75 United Spinal Association'),
(36403, 'https://ror.org/056sydj58', 'en', 1, 'https://ror.org/056sydj58 National Wheelchair Softball Association'),
(36404, 'https://ror.org/03qatc504', 'no_lang_code', 1, 'https://ror.org/03qatc504 Krzysztof Kucharczyk Techniki Elektroforetyczne (Poland)'),
(36405, 'https://ror.org/04xex7r55', 'no_lang_code', 1, 'https://ror.org/04xex7r55 Ronkowski (Poland)'),
(36406, 'https://ror.org/05k51jh55', 'no_lang_code', 1, 'https://ror.org/05k51jh55 Rosomak (Poland)'),
(36407, 'https://ror.org/032p5d762', 'no_lang_code', 1, 'https://ror.org/032p5d762 Polprek (Poland)'),
(36408, 'https://ror.org/02fmy3k80', 'no_lang_code', 1, 'https://ror.org/02fmy3k80 Kubara Lamina (Poland)'),
(36409, 'https://ror.org/01t19y493', 'no_lang_code', 1, 'https://ror.org/01t19y493 NeoSentio (Poland)'),
(36410, 'https://ror.org/03d772195', 'no_lang_code', 1, 'https://ror.org/03d772195 Supra Elco (Poland)'),
(36411, 'https://ror.org/01pfm3094', 'no_lang_code', 1, 'https://ror.org/01pfm3094 Sweco (Poland)'),
(36412, 'https://ror.org/00xb1ja93', 'en', 1, 'https://ror.org/00xb1ja93 Polish Seed Trade Association'),
(36413, 'https://ror.org/022c1nw12', 'fi', 1, 'https://ror.org/022c1nw12 Salla'),
(36414, 'https://ror.org/00632ee91', 'no_lang_code', 1, 'https://ror.org/00632ee91 Polonia Aero (Poland)'),
(36415, 'https://ror.org/042grvw12', 'no_lang_code', 1, 'https://ror.org/042grvw12 Neuro Device (Poland)'),
(36416, 'https://ror.org/02z3m0q91', 'no_lang_code', 1, 'https://ror.org/02z3m0q91 Synthos (Poland)'),
(36417, 'https://ror.org/05nezzp08', 'pl', 1, 'https://ror.org/05nezzp08 Polskie Forum Osób Niepełnosprawnych'),
(36418, 'https://ror.org/04d2fgr32', 'no_lang_code', 1, 'https://ror.org/04d2fgr32 Zenit (Poland)'),
(36419, 'https://ror.org/02xjdt420', 'no_lang_code', 1, 'https://ror.org/02xjdt420 Systherm (Poland)'),
(36420, 'https://ror.org/058b5kq09', 'no_lang_code', 1, 'https://ror.org/058b5kq09 Polskie Górnictwo Naftowe i Gazownictwo (Poland)'),
(36421, 'https://ror.org/01w3zv781', 'en', 1, 'https://ror.org/01w3zv781 Niilo Mäki institute'),
(36422, 'https://ror.org/00fwhek95', 'en', 1, 'https://ror.org/00fwhek95 Laboratory of Molecular Genetics'),
(36423, 'https://ror.org/057scmk50', 'en', 1, 'https://ror.org/057scmk50 Sami Parliament of Finland'),
(36424, 'https://ror.org/00vggt529', 'no_lang_code', 1, 'https://ror.org/00vggt529 Tauron (Poland)'),
(36425, 'https://ror.org/04xpcd506', 'pl', 1, 'https://ror.org/04xpcd506 Polskie Sieci Elektroenergetyczne');
INSERT INTO `rors` VALUES
(36426, 'https://ror.org/01z6h9229', 'no_lang_code', 1, 'https://ror.org/01z6h9229 Nowoczesne Techniki Instalacyjne (Poland)'),
(36427, 'https://ror.org/00gqs6w28', 'no_lang_code', 1, 'https://ror.org/00gqs6w28 Taxus (Poland)'),
(36428, 'https://ror.org/05c6gff39', 'no_lang_code', 1, 'https://ror.org/05c6gff39 Seco Warwick (Poland)'),
(36429, 'https://ror.org/018674f79', 'no_lang_code', 1, 'https://ror.org/018674f79 Laboratorium Kosmetyczne Dr Irena Eris (Poland)'),
(36430, 'https://ror.org/027z9zj80', 'no_lang_code', 1, 'https://ror.org/027z9zj80 Numerola (Finland)'),
(36431, 'https://ror.org/00frd8c57', 'no_lang_code', 1, 'https://ror.org/00frd8c57 Techglass (Poland)'),
(36432, 'https://ror.org/059s74574', 'en', 1, 'https://ror.org/059s74574 Labour Institute for Economic Research'),
(36433, 'https://ror.org/01jvdrm66', 'pl', 1, 'https://ror.org/01jvdrm66 Technika Podwodna (Poland)'),
(36434, 'https://ror.org/04n4xbr51', 'no_lang_code', 1, 'https://ror.org/04n4xbr51 Sensor Tech (Poland)'),
(36435, 'https://ror.org/03qkdhn31', 'no_lang_code', 1, 'https://ror.org/03qkdhn31 Lars (Poland)'),
(36436, 'https://ror.org/05bcfye76', 'no_lang_code', 1, 'https://ror.org/05bcfye76 Kawmet (Poland)'),
(36437, 'https://ror.org/05n4pcy10', 'pl', 1, 'https://ror.org/05n4pcy10 Polskie Stowarzyszenie Korozyjne'),
(36438, 'https://ror.org/04m7ezr62', 'no_lang_code', 1, 'https://ror.org/04m7ezr62 Tele-Fonika Kable (Poland)'),
(36439, 'https://ror.org/00ykry024', 'no_lang_code', 1, 'https://ror.org/00ykry024 Sevitel (Poland)'),
(36440, 'https://ror.org/03vsgkg08', 'no_lang_code', 1, 'https://ror.org/03vsgkg08 Laska Technika Przemysłowa (Poland)'),
(36441, 'https://ror.org/00zmypf05', 'no_lang_code', 1, 'https://ror.org/00zmypf05 Le Loch Healthcare (Poland)'),
(36442, 'https://ror.org/031g83w70', 'no_lang_code', 1, 'https://ror.org/031g83w70 Polwax (Poland)'),
(36443, 'https://ror.org/00vb2ts27', 'no_lang_code', 1, 'https://ror.org/00vb2ts27 Drawski (Poland)'),
(36444, 'https://ror.org/013v3p656', 'no_lang_code', 1, 'https://ror.org/013v3p656 Telzas (Poland)'),
(36445, 'https://ror.org/03neqmv05', 'no_lang_code', 1, 'https://ror.org/03neqmv05 LGC Standards (Poland)'),
(36446, 'https://ror.org/01qmde036', 'no_lang_code', 1, 'https://ror.org/01qmde036 Tercja Systemy Pomiarowe i Komputerowe (Poland)'),
(36447, 'https://ror.org/03w55j836', 'no_lang_code', 1, 'https://ror.org/03w55j836 Kulej (Poland)'),
(36448, 'https://ror.org/05te2ab69', 'en', 1, 'https://ror.org/05te2ab69 Citizens Network Watchdog'),
(36449, 'https://ror.org/04epdwv63', 'no_lang_code', 1, 'https://ror.org/04epdwv63 Termall (Poland)'),
(36450, 'https://ror.org/03mahcv92', 'en', 1, 'https://ror.org/03mahcv92 LIKES – Foundation for Sport and Health Sciences'),
(36451, 'https://ror.org/032bhb453', 'no_lang_code', 1, 'https://ror.org/032bhb453 Łódzki Regionalny Park Naukowo-Technologiczny (Poland)'),
(36452, 'https://ror.org/00q6t4456', 'en', 1, 'https://ror.org/00q6t4456 National Federation of Polish NGOs'),
(36453, 'https://ror.org/01bhgpn34', 'no_lang_code', 1, 'https://ror.org/01bhgpn34 TRAK (Poland)'),
(36454, 'https://ror.org/02ygq7y20', 'no_lang_code', 1, 'https://ror.org/02ygq7y20 Sigma (Poland)'),
(36455, 'https://ror.org/01mdh2992', 'no_lang_code', 1, 'https://ror.org/01mdh2992 Magister Solutions (Finland)'),
(36456, 'https://ror.org/04q9n1p25', 'no_lang_code', 1, 'https://ror.org/04q9n1p25 Osrodek Konstrukcyjno Badawczy (Poland)'),
(36457, 'https://ror.org/01pndf691', 'fi', 1, 'https://ror.org/01pndf691 Väestöliitto'),
(36458, 'https://ror.org/05ygpsf69', 'no_lang_code', 1, 'https://ror.org/05ygpsf69 Silcare (Poland)'),
(36459, 'https://ror.org/03zdb8v54', 'no_lang_code', 1, 'https://ror.org/03zdb8v54 Oltis Polska (Poland)'),
(36460, 'https://ror.org/03q2tdj19', 'no_lang_code', 1, 'https://ror.org/03q2tdj19 OncoArendi Therapeutics (Poland)'),
(36461, 'https://ror.org/01rcr6221', 'no_lang_code', 1, 'https://ror.org/01rcr6221 Silesia Oil (Poland)'),
(36462, 'https://ror.org/03m2axv35', 'en', 1, 'https://ror.org/03m2axv35 Finnish Jazz & Pop Archive'),
(36463, 'https://ror.org/05p9n5k62', 'en', 1, 'https://ror.org/05p9n5k62 Adaptive Sports Northwest'),
(36464, 'https://ror.org/059m0z495', 'no_lang_code', 1, 'https://ror.org/059m0z495 Premium Rosa (Poland)'),
(36465, 'https://ror.org/00vkfw855', 'no_lang_code', 1, 'https://ror.org/00vkfw855 Sirc (Poland)'),
(36466, 'https://ror.org/01xn9tc24', 'no_lang_code', 1, 'https://ror.org/01xn9tc24 Promost Consulting (Poland)'),
(36467, 'https://ror.org/035mhpy30', 'no_lang_code', 1, 'https://ror.org/035mhpy30 Orlen (Poland) Polski Koncern Naftowy Orlen'),
(36468, 'https://ror.org/02qs38f38', 'en', 1, 'https://ror.org/02qs38f38 Finnish Youth Research Society'),
(36469, 'https://ror.org/04afck573', 'no_lang_code', 1, 'https://ror.org/04afck573 Thermaflex (Poland)'),
(36470, 'https://ror.org/02sgy5e89', 'en', 1, 'https://ror.org/02sgy5e89 USA Boccia'),
(36471, 'https://ror.org/05cnz8f61', 'en', 1, 'https://ror.org/05cnz8f61 Research and Development Centre for Wood-Based Panels'),
(36472, 'https://ror.org/001122g55', 'no_lang_code', 1, 'https://ror.org/001122g55 Innolink (Finland)'),
(36473, 'https://ror.org/01g2j3891', 'no_lang_code', 1, 'https://ror.org/01g2j3891 Thermo Fisher Scientific (Finland)'),
(36474, 'https://ror.org/008533323', 'no_lang_code', 1, 'https://ror.org/008533323 Thermolab (Poland)'),
(36475, 'https://ror.org/01gdwxc49', 'no_lang_code', 1, 'https://ror.org/01gdwxc49 Ośrodek Badawczo-Rozwojowy Urządzeń Mechanicznych (Poland)'),
(36476, 'https://ror.org/04gfj4836', 'no_lang_code', 1, 'https://ror.org/04gfj4836 Vipharm (Poland)'),
(36477, 'https://ror.org/05ne28y03', 'no_lang_code', 1, 'https://ror.org/05ne28y03 Polon (Poland)'),
(36478, 'https://ror.org/03hf7ar06', 'no_lang_code', 1, 'https://ror.org/03hf7ar06 VIS Systems (Poland)'),
(36479, 'https://ror.org/04n13s404', 'no_lang_code', 1, 'https://ror.org/04n13s404 Thoni Alutec (Poland)'),
(36480, 'https://ror.org/0547b1h57', 'no_lang_code', 1, 'https://ror.org/0547b1h57 Softhis (Poland)'),
(36481, 'https://ror.org/04ghzbn43', 'no_lang_code', 1, 'https://ror.org/04ghzbn43 ASPA (Poland)'),
(36482, 'https://ror.org/01ddx3048', 'no_lang_code', 1, 'https://ror.org/01ddx3048 Transformex (Poland)'),
(36483, 'https://ror.org/01y8byw03', 'no_lang_code', 1, 'https://ror.org/01y8byw03 Meaning Processing (Finland)'),
(36484, 'https://ror.org/02prj1520', 'no_lang_code', 1, 'https://ror.org/02prj1520 TRUMPF (Poland)'),
(36485, 'https://ror.org/03tdc2j03', 'no_lang_code', 1, 'https://ror.org/03tdc2j03 Waldrex (Poland)'),
(36486, 'https://ror.org/019h74q49', 'no_lang_code', 1, 'https://ror.org/019h74q49 PPUH Bryk Witold Bryk (Poland)'),
(36487, 'https://ror.org/04h1dx218', 'no_lang_code', 1, 'https://ror.org/04h1dx218 Wasko (Poland)'),
(36488, 'https://ror.org/04vgd5j91', 'no_lang_code', 1, 'https://ror.org/04vgd5j91 Pachemtech (Poland)'),
(36489, 'https://ror.org/04v0t8a58', 'no_lang_code', 1, 'https://ror.org/04v0t8a58 WB Electronics (Poland)'),
(36490, 'https://ror.org/04crred05', 'en', 1, 'https://ror.org/04crred05 Paradox Sports'),
(36491, 'https://ror.org/03fwf5291', 'no_lang_code', 1, 'https://ror.org/03fwf5291 Patentus (Poland)'),
(36492, 'https://ror.org/02y051p53', 'no_lang_code', 1, 'https://ror.org/02y051p53 Armatura (Poland)'),
(36493, 'https://ror.org/005cxvy66', 'no_lang_code', 1, 'https://ror.org/005cxvy66 PB Online (Poland)'),
(36494, 'https://ror.org/00pejg468', 'no_lang_code', 1, 'https://ror.org/00pejg468 Wodociągi Kłodzkie (Poland)'),
(36495, 'https://ror.org/02apz9z86', 'no_lang_code', 1, 'https://ror.org/02apz9z86 Wojas (Poland)'),
(36496, 'https://ror.org/03jp77920', 'no_lang_code', 1, 'https://ror.org/03jp77920 PBS (Poland)'),
(36497, 'https://ror.org/02y8fm890', 'pl', 1, 'https://ror.org/02y8fm890 Wojewódzki Ośrodek Medycyny Pracy'),
(36498, 'https://ror.org/00raj4980', 'en', 1, 'https://ror.org/00raj4980 USRowing'),
(36499, 'https://ror.org/04cvmcb43', 'en', 1, 'https://ror.org/04cvmcb43 Bialystok School of Economics'),
(36500, 'https://ror.org/03k31r283', 'no_lang_code', 1, 'https://ror.org/03k31r283 Specodlew (Poland)'),
(36501, 'https://ror.org/03s7c3y50', 'no_lang_code', 1, 'https://ror.org/03s7c3y50 Przedsiębiorstwo Badań Geofizycznych'),
(36502, 'https://ror.org/049ayn705', 'no_lang_code', 1, 'https://ror.org/049ayn705 Huta Stalowa Wola (Poland)'),
(36503, 'https://ror.org/04kff0p34', 'no_lang_code', 1, 'https://ror.org/04kff0p34 Polsat (Poland)'),
(36504, 'https://ror.org/0337j9c19', 'no_lang_code', 1, 'https://ror.org/0337j9c19 Wojskowe Zakłady Inżynieryjne (Poland)'),
(36505, 'https://ror.org/00bj5yr20', 'no_lang_code', 1, 'https://ror.org/00bj5yr20 Mesko (Poland)'),
(36506, 'https://ror.org/043x6wz15', 'no_lang_code', 1, 'https://ror.org/043x6wz15 Hardkop (Poland)'),
(36507, 'https://ror.org/02nmtb782', 'no', 1, 'https://ror.org/02nmtb782 Norsk Kjemisk Selskap Norwegian Chemical Society'),
(36508, 'https://ror.org/033722021', 'en', 1, 'https://ror.org/033722021 Institute of Plant Protection'),
(36509, 'https://ror.org/00wrp4434', 'en', 1, 'https://ror.org/00wrp4434 Institute of Agricultural and Food Economics'),
(36510, 'https://ror.org/05ffk0s37', 'no_lang_code', 1, 'https://ror.org/05ffk0s37 N2 Applied (Norway)'),
(36511, 'https://ror.org/053sej726', 'no_lang_code', 1, 'https://ror.org/053sej726 Agra (Norway)'),
(36512, 'https://ror.org/026k8vn84', 'no_lang_code', 1, 'https://ror.org/026k8vn84 PPM Robotics (Norway)'),
(36513, 'https://ror.org/03x75jm90', 'no', 1, 'https://ror.org/03x75jm90 Nord-Trøndelag FylkesKommune'),
(36514, 'https://ror.org/02qhxnk51', 'no_lang_code', 1, 'https://ror.org/02qhxnk51 OneCo (Norway)'),
(36515, 'https://ror.org/02qna0m23', 'no_lang_code', 1, 'https://ror.org/02qna0m23 Buddy Electric (Norway)'),
(36516, 'https://ror.org/02rr4wh12', 'no_lang_code', 1, 'https://ror.org/02rr4wh12 Skogselskapet i Oppland (Norway)'),
(36517, 'https://ror.org/01sh1rd07', 'no_lang_code', 1, 'https://ror.org/01sh1rd07 Polyform (Norway)'),
(36518, 'https://ror.org/038wth296', 'no_lang_code', 1, 'https://ror.org/038wth296 Scanwatt (Norway)'),
(36519, 'https://ror.org/034e8et22', 'no_lang_code', 1, 'https://ror.org/034e8et22 Science and Technology Corporation (Norway)'),
(36520, 'https://ror.org/05x6w0w63', 'no_lang_code', 1, 'https://ror.org/05x6w0w63 PetroMarker (Norway)'),
(36521, 'https://ror.org/059zjhp33', 'en', 1, 'https://ror.org/059zjhp33 Sector Asset Management'),
(36522, 'https://ror.org/00b4pqy74', 'no_lang_code', 1, 'https://ror.org/00b4pqy74 Military Communication Works No 2 (Poland)'),
(36523, 'https://ror.org/02jq6we42', 'no_lang_code', 1, 'https://ror.org/02jq6we42 Military Aviation Works No. 1 (Poland)'),
(36524, 'https://ror.org/03e49jp29', 'no_lang_code', 1, 'https://ror.org/03e49jp29 Zakłady Urządzeń Kotłowych Stąporków (Poland)'),
(36525, 'https://ror.org/04fbf2x65', 'no_lang_code', 1, 'https://ror.org/04fbf2x65 Wojskowe Zakłady Motoryzacyjne (Poland)'),
(36526, 'https://ror.org/01dh5eq20', 'no_lang_code', 1, 'https://ror.org/01dh5eq20 Zakład Budowy Urządzeń Spawalniczych (Poland)'),
(36527, 'https://ror.org/01pj54844', 'no_lang_code', 1, 'https://ror.org/01pj54844 Zetkama (Poland)'),
(36528, 'https://ror.org/01wqqbh83', 'no_lang_code', 1, 'https://ror.org/01wqqbh83 Złotecki (Poland)'),
(36529, 'https://ror.org/04faqmv97', 'pl', 1, 'https://ror.org/04faqmv97 Stowarzyszenie Łódzki Klub Amazonka'),
(36530, 'https://ror.org/016yh0k66', 'pl', 1, 'https://ror.org/016yh0k66 Wojskowy Instytut Chemii i Radiometrii'),
(36531, 'https://ror.org/02pmesx16', 'no_lang_code', 1, 'https://ror.org/02pmesx16 Promar (Poland)'),
(36532, 'https://ror.org/00w1szk34', 'no_lang_code', 1, 'https://ror.org/00w1szk34 Ravimed (Poland)'),
(36533, 'https://ror.org/04a1amm82', 'no_lang_code', 1, 'https://ror.org/04a1amm82 ZRE Gdańsk (Poland)'),
(36534, 'https://ror.org/00h6n4889', 'en', 1, 'https://ror.org/00h6n4889 Aviation Valley'),
(36535, 'https://ror.org/040g67t40', 'en', 1, 'https://ror.org/040g67t40 Association of Polish Cities'),
(36536, 'https://ror.org/04kam9969', 'no_lang_code', 1, 'https://ror.org/04kam9969 Przemysłowe Centrum Optyki (Poland)'),
(36537, 'https://ror.org/05s3rgw55', 'en', 1, 'https://ror.org/05s3rgw55 Military Institute of Armament Technology'),
(36538, 'https://ror.org/025wsd308', 'en', 1, 'https://ror.org/025wsd308 Sieć Badawcza Łukasiewicz – Przemysłowy Instytut Motoryzacji Łukasiewicz Research Network - Automotive Industry Institute'),
(36539, 'https://ror.org/010nnnk31', 'pl', 1, 'https://ror.org/010nnnk31 Wojskowy Instytut Techniki Pancernej i Samochodowej'),
(36540, 'https://ror.org/05qmjha96', 'fi', 1, 'https://ror.org/05qmjha96 Hengitysliitto'),
(36541, 'https://ror.org/0049mdg50', 'no_lang_code', 1, 'https://ror.org/0049mdg50 INFOKLINIKA (Poland)'),
(36542, 'https://ror.org/05qn8wt84', 'en', 1, 'https://ror.org/05qn8wt84 Pyhäjärvi Institute'),
(36543, 'https://ror.org/00d5e0a67', 'en', 1, 'https://ror.org/00d5e0a67 Devon General Hospital'),
(36544, 'https://ror.org/01rxnnx98', 'no_lang_code', 1, 'https://ror.org/01rxnnx98 Radiotechnika Marketing (Poland)'),
(36545, 'https://ror.org/001shqf12', 'en', 1, 'https://ror.org/001shqf12 American University of Antigua'),
(36546, 'https://ror.org/054dsb308', 'en', 1, 'https://ror.org/054dsb308 Dr. Everett Chalmers Regional Hospital'),
(36547, 'https://ror.org/00eeh3p16', 'en', 1, 'https://ror.org/00eeh3p16 Eagle Ridge Hospital'),
(36548, 'https://ror.org/04aq1ms94', 'en', 1, 'https://ror.org/04aq1ms94 Eastern Shore Memorial Hospital'),
(36549, 'https://ror.org/01xcx0382', 'en', 1, 'https://ror.org/01xcx0382 Sutherland Hospital'),
(36550, 'https://ror.org/01nkg7v26', 'en', 1, 'https://ror.org/01nkg7v26 Upper River Valley Hospital'),
(36551, 'https://ror.org/02xd7fn78', 'en', 1, 'https://ror.org/02xd7fn78 Etobicoke General Hospital'),
(36552, 'https://ror.org/05pw47n55', 'en', 1, 'https://ror.org/05pw47n55 Vernon Jubilee Hospital'),
(36553, 'https://ror.org/03v1svm63', 'pl', 1, 'https://ror.org/03v1svm63 University of Information Technology Wyższa Szkoła Technologii Informatycznych w Warszawie'),
(36554, 'https://ror.org/03ebv4744', 'en', 1, 'https://ror.org/03ebv4744 University College of the Cayman Islands'),
(36555, 'https://ror.org/036e7jk76', 'no_lang_code', 1, 'https://ror.org/036e7jk76 Matczak Autonadwozia (Poland)'),
(36556, 'https://ror.org/017hmzz19', 'es', 1, 'https://ror.org/017hmzz19 Hospital Carlos Van Buren'),
(36557, 'https://ror.org/0048zyh71', 'no_lang_code', 1, 'https://ror.org/0048zyh71 AREX (Poland)'),
(36558, 'https://ror.org/05yhvta08', 'es', 1, 'https://ror.org/05yhvta08 Hospital Tobar García'),
(36559, 'https://ror.org/022v7y137', 'en', 1, 'https://ror.org/022v7y137 Thomas Embling Hospital'),
(36560, 'https://ror.org/05razqx97', 'pl', 1, 'https://ror.org/05razqx97 Zakład Doskonalenia Zawodowego w Krakowie'),
(36561, 'https://ror.org/014has228', 'en', 1, 'https://ror.org/014has228 Fort Saskatchewan Community Hospital'),
(36562, 'https://ror.org/05dzdb443', 'pl', 1, 'https://ror.org/05dzdb443 Zakład Doświadczalny Instytutu Zootechniki'),
(36563, 'https://ror.org/02dv98466', 'en', 1, 'https://ror.org/02dv98466 Georgetown Hospital'),
(36564, 'https://ror.org/045wnmj48', 'en', 1, 'https://ror.org/045wnmj48 Hospital Naval de Puerto Williams Naval Hospital of Puerto Williams'),
(36565, 'https://ror.org/05newpx76', 'en', 1, 'https://ror.org/05newpx76 Wagga Wagga Base Hospital'),
(36566, 'https://ror.org/05j3bsc16', 'no_lang_code', 1, 'https://ror.org/05j3bsc16 Cantoni (Poland)'),
(36567, 'https://ror.org/01gw0xq27', 'en', 1, 'https://ror.org/01gw0xq27 Guelph General Hospital'),
(36568, 'https://ror.org/00989y104', 'en', 1, 'https://ror.org/00989y104 New Century International Hospital for Children'),
(36569, 'https://ror.org/01r2b6235', 'no_lang_code', 1, 'https://ror.org/01r2b6235 Lester (Poland)'),
(36570, 'https://ror.org/03t6bjv67', 'en', 1, 'https://ror.org/03t6bjv67 Hillsborough Hospital Hôpital hillsborough'),
(36571, 'https://ror.org/037w1y594', 'en', 1, 'https://ror.org/037w1y594 International Hospital of Bahrain مستشفى البحرين الدولي'),
(36572, 'https://ror.org/010tqsy45', 'en', 1, 'https://ror.org/010tqsy45 Beijing United Family Hospital'),
(36573, 'https://ror.org/056nsw527', 'no_lang_code', 1, 'https://ror.org/056nsw527 Explomet (Poland)'),
(36574, 'https://ror.org/03sya6q88', 'no_lang_code', 1, 'https://ror.org/03sya6q88 Uskom (Poland)'),
(36575, 'https://ror.org/05ykbvr48', 'en', 1, 'https://ror.org/05ykbvr48 Humboldt District Hospital'),
(36576, 'https://ror.org/01c1w2064', 'no_lang_code', 1, 'https://ror.org/01c1w2064 Zakład Wodociągów i Kanalizacji (Poland)'),
(36577, 'https://ror.org/05rcdf096', 'no_lang_code', 1, 'https://ror.org/05rcdf096 Andre Abrasive Articles (Poland)'),
(36578, 'https://ror.org/02cqb6d97', 'no_lang_code', 1, 'https://ror.org/02cqb6d97 Zakład Automatyki Przemysłowej (Poland)'),
(36579, 'https://ror.org/02bnct292', 'en', 1, 'https://ror.org/02bnct292 South Bruce Grey Health Centre'),
(36580, 'https://ror.org/045tkmf79', 'en', 1, 'https://ror.org/045tkmf79 Belmont Hospital'),
(36581, 'https://ror.org/00y8zcm61', 'en', 1, 'https://ror.org/00y8zcm61 Chattagram Maa-O-Shishu Hospital Medical College'),
(36582, 'https://ror.org/05y7a3192', 'en', 1, 'https://ror.org/05y7a3192 Kirkland and District Hospital'),
(36583, 'https://ror.org/04f970v93', 'en', 1, 'https://ror.org/04f970v93 Fifth Affiliated Hospital of Xinjiang Medical University'),
(36584, 'https://ror.org/01pp0ar58', 'en', 1, 'https://ror.org/01pp0ar58 Bowral & District Hospital'),
(36585, 'https://ror.org/046j4d739', 'en', 1, 'https://ror.org/046j4d739 Hôpital général du Lakeshore Lakeshore General Hospital'),
(36586, 'https://ror.org/040h8qn92', 'en', 1, 'https://ror.org/040h8qn92 Fuda Cancer Hospital'),
(36587, 'https://ror.org/041c7s516', 'en', 1, 'https://ror.org/041c7s516 Calvary Hospital'),
(36588, 'https://ror.org/03yn2qz25', 'en', 1, 'https://ror.org/03yn2qz25 Leduc Community Hospital'),
(36589, 'https://ror.org/04fm9y474', 'en', 1, 'https://ror.org/04fm9y474 North East University'),
(36590, 'https://ror.org/04zg8gg70', 'en', 1, 'https://ror.org/04zg8gg70 Lloydminster Hospital'),
(36591, 'https://ror.org/00ha5jx35', 'en', 1, 'https://ror.org/00ha5jx35 Haikou City People''s Hospital'),
(36592, 'https://ror.org/040pmw620', 'en', 1, 'https://ror.org/040pmw620 Medicine Hat Regional Hospital'),
(36593, 'https://ror.org/02gt91x70', 'en', 1, 'https://ror.org/02gt91x70 Calvary Wakefield Hospital'),
(36594, 'https://ror.org/04x57eq39', 'en', 1, 'https://ror.org/04x57eq39 St John Berchmans University College'),
(36595, 'https://ror.org/00vk5m430', 'en', 1, 'https://ror.org/00vk5m430 Milton District Hospital'),
(36596, 'https://ror.org/03sy52r18', 'en', 1, 'https://ror.org/03sy52r18 Hôpital Chinois de Montréal, Montreal Chinese Hospital'),
(36597, 'https://ror.org/04c318s33', 'en', 1, 'https://ror.org/04c318s33 Camden and Campbelltown Hospitals'),
(36598, 'https://ror.org/05x596b40', 'en', 1, 'https://ror.org/05x596b40 Norfolk General Hospital'),
(36599, 'https://ror.org/053tba870', 'en', 1, 'https://ror.org/053tba870 Ethiopian Police University College'),
(36600, 'https://ror.org/02dtaqx81', 'en', 1, 'https://ror.org/02dtaqx81 Nova Scotia Hospital'),
(36601, 'https://ror.org/015aem925', 'en', 1, 'https://ror.org/015aem925 New Generation University College'),
(36602, 'https://ror.org/04y523h62', 'en', 1, 'https://ror.org/04y523h62 Oakville-Trafalgar Memorial Hospital'),
(36603, 'https://ror.org/043m37669', 'en', 1, 'https://ror.org/043m37669 Capricorn Coast Hospital'),
(36604, 'https://ror.org/00kga6267', 'en', 1, 'https://ror.org/00kga6267 Rift Valley University'),
(36605, 'https://ror.org/01e4tbd96', 'en', 1, 'https://ror.org/01e4tbd96 National University of Management សាកលវិទ្យាល័យជាតិគ្រប់គ្រង'),
(36606, 'https://ror.org/05ea1cr97', 'en', 1, 'https://ror.org/05ea1cr97 Modern Cancer Hospital Guangzhou'),
(36607, 'https://ror.org/01fr2g046', 'en', 1, 'https://ror.org/01fr2g046 Peace Arch Hospital'),
(36608, 'https://ror.org/030jpqj15', 'en', 1, 'https://ror.org/030jpqj15 Goulburn Base Hospital'),
(36609, 'https://ror.org/02g83kd39', 'en', 1, 'https://ror.org/02g83kd39 Penticton Regional Hospital'),
(36610, 'https://ror.org/00rx1ga86', 'en', 1, 'https://ror.org/00rx1ga86 Central Hospital of Yaoundé Hôpital Central de Yaoundé'),
(36611, 'https://ror.org/01s1hzr17', 'en', 1, 'https://ror.org/01s1hzr17 Prince County Hospital'),
(36612, 'https://ror.org/05c82kn73', 'en', 1, 'https://ror.org/05c82kn73 Queensway-Carleton Hospital'),
(36613, 'https://ror.org/025p6sg19', 'en', 1, 'https://ror.org/025p6sg19 Limbe Provincial Hospital'),
(36614, 'https://ror.org/04f7crx66', 'en', 1, 'https://ror.org/04f7crx66 Red Deer Regional Hospital'),
(36615, 'https://ror.org/03r4az639', 'en', 1, 'https://ror.org/03r4az639 Sixth Affiliated Hospital of Xinjiang Medical University'),
(36616, 'https://ror.org/00s3sq827', 'en', 1, 'https://ror.org/00s3sq827 Hôpital gynéco-obstétrique et pédiatrique de Yaoundé Yaoundé Gynaecology, Obstetrics and Pediatrics Hospital'),
(36617, 'https://ror.org/01wm3xb93', 'en', 1, 'https://ror.org/01wm3xb93 Richmond Hospital'),
(36618, 'https://ror.org/04bjfzn83', 'fr', 1, 'https://ror.org/04bjfzn83 Centre Hospitalier d''Albi'),
(36619, 'https://ror.org/00aeqjw83', 'en', 1, 'https://ror.org/00aeqjw83 Jessie McPherson Private Hospital'),
(36620, 'https://ror.org/052nzzz22', 'en', 1, 'https://ror.org/052nzzz22 Aberdeen Regional Hospital'),
(36621, 'https://ror.org/05tg8p317', 'en', 1, 'https://ror.org/05tg8p317 Rockyview General Hospital'),
(36622, 'https://ror.org/031va0421', 'es', 1, 'https://ror.org/031va0421 Hospital San Pedro'),
(36623, 'https://ror.org/02xw13d29', 'en', 1, 'https://ror.org/02xw13d29 Katherine Hospital'),
(36624, 'https://ror.org/04tkqn952', 'en', 1, 'https://ror.org/04tkqn952 Sackville Memorial Hospital'),
(36625, 'https://ror.org/009xa9473', 'en', 1, 'https://ror.org/009xa9473 Arrow Lakes Hospital'),
(36626, 'https://ror.org/01gn4gb91', 'en', 1, 'https://ror.org/01gn4gb91 Kenvale College'),
(36627, 'https://ror.org/0377q3w53', 'en', 1, 'https://ror.org/0377q3w53 Saskatchewan Hospital'),
(36628, 'https://ror.org/0390t1205', 'en', 1, 'https://ror.org/0390t1205 Saskatoon City Hospital'),
(36629, 'https://ror.org/02y3prs94', 'en', 1, 'https://ror.org/02y3prs94 Booth University College'),
(36630, 'https://ror.org/042170a43', 'no_lang_code', 1, 'https://ror.org/042170a43 Xizang Minzu University 西藏民族学院'),
(36631, 'https://ror.org/02mp59d98', 'fr', 1, 'https://ror.org/02mp59d98 Centre Hospitalier de Gonesse'),
(36632, 'https://ror.org/004kvma63', 'en', 1, 'https://ror.org/004kvma63 Lismore Base Hospital'),
(36633, 'https://ror.org/01q9kjc87', 'en', 1, 'https://ror.org/01q9kjc87 Brampton Civic Hospital'),
(36634, 'https://ror.org/03rcrwp92', 'en', 1, 'https://ror.org/03rcrwp92 South Okanagan General Hospital'),
(36635, 'https://ror.org/00z6pvt32', 'en', 1, 'https://ror.org/00z6pvt32 Burnaby Hospital'),
(36636, 'https://ror.org/00brmyn57', 'en', 1, 'https://ror.org/00brmyn57 Xinhui People''s Hospital'),
(36637, 'https://ror.org/0289r4642', 'en', 1, 'https://ror.org/0289r4642 St. John''s Rehab Hospital'),
(36638, 'https://ror.org/022ave037', 'en', 1, 'https://ror.org/022ave037 Campbellford Memorial Hospital'),
(36639, 'https://ror.org/04dbasv67', 'en', 1, 'https://ror.org/04dbasv67 Canmore General Hospital'),
(36640, 'https://ror.org/04b64cp31', 'en', 1, 'https://ror.org/04b64cp31 Hôpital Sainte-Anne Ste. Anne''s Hospital'),
(36641, 'https://ror.org/02mtj1m22', 'en', 1, 'https://ror.org/02mtj1m22 Strathcona Community Hospital'),
(36642, 'https://ror.org/00169ff80', 'en', 1, 'https://ror.org/00169ff80 Sturgeon Community Hospital'),
(36643, 'https://ror.org/05ndmfc04', 'en', 1, 'https://ror.org/05ndmfc04 Surrey Memorial Hospital'),
(36644, 'https://ror.org/04pzgb662', 'en', 1, 'https://ror.org/04pzgb662 The Scarborough Hospital'),
(36645, 'https://ror.org/0032cnc36', 'en', 1, 'https://ror.org/0032cnc36 Paphos General Hospital'),
(36646, 'https://ror.org/00b0jsn50', 'en', 1, 'https://ror.org/00b0jsn50 Cape Breton Regional Hospital'),
(36647, 'https://ror.org/05pyye095', 'en', 1, 'https://ror.org/05pyye095 Hôpital général de kinshasa Kinshasa General Hospital'),
(36648, 'https://ror.org/02hm5wz09', 'en', 1, 'https://ror.org/02hm5wz09 Centracare'),
(36649, 'https://ror.org/01k4cfw02', 'en', 1, 'https://ror.org/01k4cfw02 Mater Misericordiae Hospital'),
(36650, 'https://ror.org/023ac3y20', 'en', 1, 'https://ror.org/023ac3y20 Chedoke Hospital'),
(36651, 'https://ror.org/04me72w78', 'en', 1, 'https://ror.org/04me72w78 Chinook Regional Hospital'),
(36652, 'https://ror.org/00f9jfw45', 'en', 1, 'https://ror.org/00f9jfw45 Tamale Teaching Hospital'),
(36653, 'https://ror.org/00tejnf65', 'en', 1, 'https://ror.org/00tejnf65 Milton Ulladulla Hospital'),
(36654, 'https://ror.org/053gnae26', 'en', 1, 'https://ror.org/053gnae26 Concordia Hospital'),
(36655, 'https://ror.org/000q9yz13', 'en', 1, 'https://ror.org/000q9yz13 University College of Agriculture and Environmental Studies'),
(36656, 'https://ror.org/02rgjy857', 'en', 1, 'https://ror.org/02rgjy857 Dartmouth General Hospital'),
(36657, 'https://ror.org/04dj1na10', 'en', 1, 'https://ror.org/04dj1na10 University College Lillebaelt University College Lillebælt'),
(36658, 'https://ror.org/01w05wy86', 'en', 1, 'https://ror.org/01w05wy86 University of Professional Studies'),
(36659, 'https://ror.org/057t0vd36', 'en', 1, 'https://ror.org/057t0vd36 Government Unani and Ayurvedic Degree College and Hospital'),
(36660, 'https://ror.org/016mx5748', 'en', 1, 'https://ror.org/016mx5748 Monash Children’s Hospital'),
(36661, 'https://ror.org/056c4z730', 'en', 1, 'https://ror.org/056c4z730 Professionshøjskolen University College Nordjylland University College of Northern Denmark'),
(36662, 'https://ror.org/00kytsw15', 'en', 1, 'https://ror.org/00kytsw15 West End Hospital'),
(36663, 'https://ror.org/05sv58043', 'en', 1, 'https://ror.org/05sv58043 University College Absalon'),
(36664, 'https://ror.org/027sjp768', 'en', 1, 'https://ror.org/027sjp768 Queanbeyan District Hospital'),
(36665, 'https://ror.org/01npwa559', 'en', 1, 'https://ror.org/01npwa559 Hospital de San Bernardo St Bernard''s Hospital'),
(36666, 'https://ror.org/03qa8qv52', 'en', 1, 'https://ror.org/03qa8qv52 Dr. H. Gordon Roberts Hospital'),
(36667, 'https://ror.org/05cm4gv85', 'no_lang_code', 1, 'https://ror.org/05cm4gv85 Agios Pavlos General Hospital'),
(36668, 'https://ror.org/0257s2812', 'en', 1, 'https://ror.org/0257s2812 Robina Hospital'),
(36669, 'https://ror.org/03zc07z23', 'no_lang_code', 1, 'https://ror.org/03zc07z23 Durgabai Deshmukh Hospital'),
(36670, 'https://ror.org/01dvjey82', 'en', 1, 'https://ror.org/01dvjey82 Shellharbour Hospital'),
(36671, 'https://ror.org/00txnqh94', 'en', 1, 'https://ror.org/00txnqh94 37 Military Hospital'),
(36672, 'https://ror.org/04p6jw654', 'en', 1, 'https://ror.org/04p6jw654 Shoalhaven District Memorial Hospital'),
(36673, 'https://ror.org/04aenby30', 'en', 1, 'https://ror.org/04aenby30 African University College of Communications'),
(36674, 'https://ror.org/05r8bzv42', 'en', 1, 'https://ror.org/05r8bzv42 Christian Service University College'),
(36675, 'https://ror.org/01g5hc933', 'en', 1, 'https://ror.org/01g5hc933 St John of God Geelong Hospital'),
(36676, 'https://ror.org/05svjc560', 'en', 1, 'https://ror.org/05svjc560 Data Link Institute of Business and Technology'),
(36677, 'https://ror.org/00m8pwv45', 'no_lang_code', 1, 'https://ror.org/00m8pwv45 Donka Hospital'),
(36678, 'https://ror.org/048wdxr20', 'no_lang_code', 1, 'https://ror.org/048wdxr20 Sarojini Devi Eye Hospital'),
(36679, 'https://ror.org/03bgteg28', 'no_lang_code', 1, 'https://ror.org/03bgteg28 Evangelical Presbyterian University College'),
(36680, 'https://ror.org/00a1sfb75', 'en', 1, 'https://ror.org/00a1sfb75 Fhrai Institute of Hospitality Management'),
(36681, 'https://ror.org/05s76vp15', 'en', 1, 'https://ror.org/05s76vp15 Garden City University College'),
(36682, 'https://ror.org/02kzvnr24', 'en', 1, 'https://ror.org/02kzvnr24 Senate of Serampore College सीनेट अफ सेरामपोर कलेज (विश्वविद्यालय) সেনেট অফ শ্রীরামপুর কলেজ'),
(36683, 'https://ror.org/05wp4z583', 'no_lang_code', 1, 'https://ror.org/05wp4z583 New Amsterdam Public Hospital'),
(36684, 'https://ror.org/00evszt20', 'en', 1, 'https://ror.org/00evszt20 Ford Hospital and Research Centre'),
(36685, 'https://ror.org/05wm9y343', 'en', 1, 'https://ror.org/05wm9y343 Islamic University College'),
(36686, 'https://ror.org/040y5k757', 'en', 1, 'https://ror.org/040y5k757 Seventh day Adventist Hospital'),
(36687, 'https://ror.org/032vny106', 'no_lang_code', 1, 'https://ror.org/032vny106 Mountcrest University College'),
(36688, 'https://ror.org/01y361889', 'en', 1, 'https://ror.org/01y361889 Islamic Azad University Mahshahr دانشگاه آزاد اسلامی واحد ماهشهر'),
(36689, 'https://ror.org/04160ha27', 'en', 1, 'https://ror.org/04160ha27 Pentecost University College'),
(36690, 'https://ror.org/01cce5t38', 'en', 1, 'https://ror.org/01cce5t38 Silchar Medical College and Hospital'),
(36691, 'https://ror.org/05w7tpg32', 'en', 1, 'https://ror.org/05w7tpg32 Castle Peak Hospital 青山醫院'),
(36692, 'https://ror.org/04gcrjz11', 'en', 1, 'https://ror.org/04gcrjz11 Sir Sunderlal Hospital'),
(36693, 'https://ror.org/027r49s81', 'no_lang_code', 1, 'https://ror.org/027r49s81 Fortis Malar Hospital'),
(36694, 'https://ror.org/002td2d02', 'en', 1, 'https://ror.org/002td2d02 Hong Kong Adventist Hospital 香港港安醫院'),
(36695, 'https://ror.org/03nyhx379', 'no_lang_code', 1, 'https://ror.org/03nyhx379 General Hospital Ernakulam'),
(36696, 'https://ror.org/00dc48k09', 'en', 1, 'https://ror.org/00dc48k09 Sri Narayani Hospital & Research Centre'),
(36697, 'https://ror.org/02mgtjj52', 'en', 1, 'https://ror.org/02mgtjj52 Islamic Azad University of Parand دانشگاه آزاد اسلامی واحد پرند'),
(36698, 'https://ror.org/05ghtc147', 'en', 1, 'https://ror.org/05ghtc147 St. George Hospital'),
(36699, 'https://ror.org/018nk4a27', 'en', 1, 'https://ror.org/018nk4a27 Global Open University'),
(36700, 'https://ror.org/03kjtb134', 'no_lang_code', 1, 'https://ror.org/03kjtb134 Tsan Yuk Hospital 贊育醫院'),
(36701, 'https://ror.org/04pc6dy04', 'en', 1, 'https://ror.org/04pc6dy04 St. Theresa’s Multi-Speciality Hospital సెయింట్ తెరెసా హాస్పిటల్'),
(36702, 'https://ror.org/0324c8f61', 'en', 1, 'https://ror.org/0324c8f61 Mahak Hospital and Rehabilitation Complex بیمارستان محک'),
(36703, 'https://ror.org/031ak8575', 'en', 1, 'https://ror.org/031ak8575 Tsuen Wan Adventist Hospital'),
(36704, 'https://ror.org/05ffh3h97', 'en', 1, 'https://ror.org/05ffh3h97 Government ENT Hospital ప్రభుత్వ ఈఎన్టీ వైద్యశాల'),
(36705, 'https://ror.org/01v5rq776', 'en', 1, 'https://ror.org/01v5rq776 Swami Pranavananda Homoeopathic Medical College and Hospital'),
(36706, 'https://ror.org/05jdk6x63', 'en', 1, 'https://ror.org/05jdk6x63 (حکومت نظامیہ جنرل ہسپتال ( طبی داواکہان Government Nizamia General Hospital నిజామియా జనరల్ ఆస్పత్రి'),
(36707, 'https://ror.org/03m340337', 'en', 1, 'https://ror.org/03m340337 Tamil Nadu Government Multi Super Speciality Hospital தமிழ்நாடு புதிய சட்டமன்றம் மற்றும் தலைமை செயலக வளாகம்'),
(36708, 'https://ror.org/00cwj5e90', 'en', 1, 'https://ror.org/00cwj5e90 Government Royapettah Hospital'),
(36709, 'https://ror.org/01j7r2734', 'en', 1, 'https://ror.org/01j7r2734 Union Hospital 仁安醫院'),
(36710, 'https://ror.org/01kdvbn15', 'en', 1, 'https://ror.org/01kdvbn15 Anugrah Narayan Magadh Medical College & Hospital अनुग्रह नारायण मगध मेडिकल कॉलेज अस्पताल'),
(36711, 'https://ror.org/05fa5qm36', 'no_lang_code', 1, 'https://ror.org/05fa5qm36 Hôpital delek Tibetan Delek Hospital'),
(36712, 'https://ror.org/058bst240', 'no_lang_code', 1, 'https://ror.org/058bst240 Hamidia Hospital'),
(36713, 'https://ror.org/03ta7wx62', 'en', 1, 'https://ror.org/03ta7wx62 Hi-Tech Medical College & Hospital'),
(36714, 'https://ror.org/008nfm327', 'en', 1, 'https://ror.org/008nfm327 Aditya Jyot Eye Hospital'),
(36715, 'https://ror.org/048ke3y07', 'en', 1, 'https://ror.org/048ke3y07 Hindu Mission Hospital'),
(36716, 'https://ror.org/02qhdd073', 'en', 1, 'https://ror.org/02qhdd073 Aizawl Adventist Hospital'),
(36717, 'https://ror.org/03h1e6k67', 'en', 1, 'https://ror.org/03h1e6k67 Trichur Heart Hospital'),
(36718, 'https://ror.org/01c5r3056', 'en', 1, 'https://ror.org/01c5r3056 Holy Spirit Hospital'),
(36719, 'https://ror.org/046vamx76', 'en', 1, 'https://ror.org/046vamx76 Tripura Medical College & Dr. B.R. Ambedkar Memorial Teaching Hospital'),
(36720, 'https://ror.org/01cskd113', 'en', 1, 'https://ror.org/01cskd113 Al-Ameen Pre University College'),
(36721, 'https://ror.org/04je37366', 'en', 1, 'https://ror.org/04je37366 Indian Agricultural Universities Association'),
(36722, 'https://ror.org/026dp8058', 'en', 1, 'https://ror.org/026dp8058 Baghdad College of Economic Sciences University كلية بغداد للعلوم الاقتصادية الجامعة'),
(36723, 'https://ror.org/02e81hv64', 'no_lang_code', 1, 'https://ror.org/02e81hv64 Umrao Hospital'),
(36724, 'https://ror.org/03vndx142', 'en', 1, 'https://ror.org/03vndx142 Dijlah University College كلية دجلة الجامعة'),
(36725, 'https://ror.org/01tsqk383', 'no_lang_code', 1, 'https://ror.org/01tsqk383 Almas Hospital'),
(36726, 'https://ror.org/01hj51r83', 'en', 1, 'https://ror.org/01hj51r83 Universal Engineering College'),
(36727, 'https://ror.org/033dx8j94', 'en', 1, 'https://ror.org/033dx8j94 University B.D.T College of Engineering'),
(36728, 'https://ror.org/03try1s84', 'no_lang_code', 1, 'https://ror.org/03try1s84 Inlaks & Budhrani Hospital'),
(36729, 'https://ror.org/04m55cb74', 'no_lang_code', 1, 'https://ror.org/04m55cb74 Anandalok Hospital आनंदलोक अस्पताल'),
(36730, 'https://ror.org/02c5dz126', 'en', 1, 'https://ror.org/02c5dz126 University B.T. & Evening College'),
(36731, 'https://ror.org/00j3qc684', 'en', 1, 'https://ror.org/00j3qc684 Ansal University'),
(36732, 'https://ror.org/00kazcx49', 'en', 1, 'https://ror.org/00kazcx49 Madenat Alelem University College كلية مدينة العلم الجامعة'),
(36733, 'https://ror.org/02ny12416', 'en', 1, 'https://ror.org/02ny12416 University College for Women'),
(36734, 'https://ror.org/02kdtt649', 'en', 1, 'https://ror.org/02kdtt649 Islamic University of Science and Technology'),
(36735, 'https://ror.org/02fhv9758', 'en', 1, 'https://ror.org/02fhv9758 Antara'),
(36736, 'https://ror.org/04we0sp42', 'en', 1, 'https://ror.org/04we0sp42 University College of Commerce & Business Management'),
(36737, 'https://ror.org/02pzvty54', 'en', 1, 'https://ror.org/02pzvty54 Apollo KH Hospital'),
(36738, 'https://ror.org/0047hkh43', 'en', 1, 'https://ror.org/0047hkh43 Alsalam University College كلية الشيخ محمد الكسنزان الجامعة'),
(36739, 'https://ror.org/03ht2bz32', 'en', 1, 'https://ror.org/03ht2bz32 Institute of Medical Sciences and Sum Hospital'),
(36740, 'https://ror.org/04yzj0y93', 'en', 1, 'https://ror.org/04yzj0y93 Arignar Anna Memorial Cancer Hospital & Research Institute அரசு அறிஞர் அண்ணா நினைவு புற்றுநோய் மருத்துவமனையும் ஆராய்ச்சி நிலையமும்'),
(36741, 'https://ror.org/05vjm3y03', 'en', 1, 'https://ror.org/05vjm3y03 Joshi Hospital जोशी रुग्णालय'),
(36742, 'https://ror.org/00msr5x28', 'en', 1, 'https://ror.org/00msr5x28 Aut Even Hospital'),
(36743, 'https://ror.org/002bjj765', 'en', 1, 'https://ror.org/002bjj765 Bantry General Hospital Ospidéal Ginearálta Bheanntraí'),
(36744, 'https://ror.org/05gkvd676', 'en', 1, 'https://ror.org/05gkvd676 King George Hospital కింగ్ జార్జి ఆసుపత్రి'),
(36745, 'https://ror.org/0197t7j38', 'en', 1, 'https://ror.org/0197t7j38 Bon Secours Hospital Cork'),
(36746, 'https://ror.org/03kfqmz83', 'en', 1, 'https://ror.org/03kfqmz83 University of Technology and Management Université de technologie et management प्रौद्योगिकी एवं प्रबंधन विश्वविद्यालय'),
(36747, 'https://ror.org/013171h84', 'en', 1, 'https://ror.org/013171h84 Aware Global Hospital'),
(36748, 'https://ror.org/0156shp22', 'en', 1, 'https://ror.org/0156shp22 Bon Secours Hospital Dublin'),
(36749, 'https://ror.org/01kpm8k86', 'en', 1, 'https://ror.org/01kpm8k86 Bethesda Hospital பெதெஸ்தா மருத்துவமனை'),
(36750, 'https://ror.org/0375jhj23', 'en', 1, 'https://ror.org/0375jhj23 Little Flower Hospital & Research Centre'),
(36751, 'https://ror.org/02we0g281', 'en', 1, 'https://ror.org/02we0g281 Bon Secours Hospital Galway'),
(36752, 'https://ror.org/05bp6y176', 'en', 1, 'https://ror.org/05bp6y176 Bon Secours Hospital Tralee'),
(36753, 'https://ror.org/01qq0f268', 'no_lang_code', 1, 'https://ror.org/01qq0f268 Maharaja Yeshwantrao Hospital'),
(36754, 'https://ror.org/01q855b60', 'no_lang_code', 1, 'https://ror.org/01q855b60 Bhabha Hospital'),
(36755, 'https://ror.org/01f8zms39', 'en', 1, 'https://ror.org/01f8zms39 Billroth Hospitals'),
(36756, 'https://ror.org/031fazd56', 'en', 1, 'https://ror.org/031fazd56 Cavan General Hospital Ospidéal Ginearálta an Chabháin'),
(36757, 'https://ror.org/051eh0e10', 'no_lang_code', 1, 'https://ror.org/051eh0e10 Caritas Hospital'),
(36758, 'https://ror.org/03gth6e91', 'en', 1, 'https://ror.org/03gth6e91 Ospidéal Ollscoile Chiarraí University Hospital Kerry'),
(36759, 'https://ror.org/03fb58t45', 'en', 1, 'https://ror.org/03fb58t45 Maharishi University of Management and Technology'),
(36760, 'https://ror.org/00m1fvd66', 'en', 1, 'https://ror.org/00m1fvd66 Catherine Booth Hospital காதரின் பூத் மருத்துவ மனை'),
(36761, 'https://ror.org/0175hgp63', 'en', 1, 'https://ror.org/0175hgp63 Malda Medical College and Hospital'),
(36762, 'https://ror.org/012b0w593', 'en', 1, 'https://ror.org/012b0w593 Kilcreene Orthopaedic Hospital Ospidéal Ortaipéideach Kilcreene'),
(36763, 'https://ror.org/03jvj6959', 'en', 1, 'https://ror.org/03jvj6959 Vanivilas Women and Children Hospital'),
(36764, 'https://ror.org/00keqx598', 'en', 1, 'https://ror.org/00keqx598 Mallow General Hospital Ospidéal Ginearálta Mhala'),
(36765, 'https://ror.org/00fbxbf55', 'en', 1, 'https://ror.org/00fbxbf55 Manjara Ayurvedic Medical College and Hospital'),
(36766, 'https://ror.org/03z526x05', 'en', 1, 'https://ror.org/03z526x05 Midland Regional Hospital Mullingar Ospidéal Réigiúnach an Mhuilinn Chearr'),
(36767, 'https://ror.org/03q53r674', 'no_lang_code', 1, 'https://ror.org/03q53r674 Victoria Hospital'),
(36768, 'https://ror.org/043mnf671', 'en', 1, 'https://ror.org/043mnf671 Midland Regional Hospital Portlaoise Ospidéal Réigiúnach Lár Tíre, Port Laoise'),
(36769, 'https://ror.org/02y5heq38', 'en', 1, 'https://ror.org/02y5heq38 Charnock Hospital'),
(36770, 'https://ror.org/044dxh921', 'en', 1, 'https://ror.org/044dxh921 Matha Ayurveda Eye Hospital'),
(36771, 'https://ror.org/00vd4yx94', 'no_lang_code', 1, 'https://ror.org/00vd4yx94 Chazhikattu Hospital'),
(36772, 'https://ror.org/0415f1661', 'no_lang_code', 1, 'https://ror.org/0415f1661 Mathura Das Mathur Hospital मथुरादास माथुर हॉस्पिटल'),
(36773, 'https://ror.org/03fp2bh88', 'en', 1, 'https://ror.org/03fp2bh88 Mount Carmel Hospital'),
(36774, 'https://ror.org/054k08k63', 'en', 1, 'https://ror.org/054k08k63 World Laparoscopy Hospital'),
(36775, 'https://ror.org/01d7hm230', 'en', 1, 'https://ror.org/01d7hm230 Christian Hospital Serkawn'),
(36776, 'https://ror.org/00053vy13', 'no_lang_code', 1, 'https://ror.org/00053vy13 Koyama Fukusei Hospital 神山復生病院'),
(36777, 'https://ror.org/02nnqja38', 'no_lang_code', 1, 'https://ror.org/02nnqja38 Yerwada Mental Hospital'),
(36778, 'https://ror.org/03v372z22', 'en', 1, 'https://ror.org/03v372z22 College of Medicine & JNM Hospital'),
(36779, 'https://ror.org/020t0j562', 'en', 1, 'https://ror.org/020t0j562 Mahatma Gandhi Mission Medical College and Hospital'),
(36780, 'https://ror.org/04hh2kn75', 'en', 1, 'https://ror.org/04hh2kn75 Ospidéal Chontae Ros Comáin Roscommon University Hospital'),
(36781, 'https://ror.org/02r0eqd13', 'en', 1, 'https://ror.org/02r0eqd13 College of Medicine & Sagore Dutta Hospital'),
(36782, 'https://ror.org/03p37kd86', 'en', 1, 'https://ror.org/03p37kd86 Midnapore Medical College and Hospital'),
(36783, 'https://ror.org/040f86t49', 'en', 1, 'https://ror.org/040f86t49 Dr. Kariadi Hospital Rumah Sakit Dr. Kariadi'),
(36784, 'https://ror.org/04d4bt482', 'en', 1, 'https://ror.org/04d4bt482 Isra University جامعة الإسراء'),
(36785, 'https://ror.org/04avk7z79', 'en', 1, 'https://ror.org/04avk7z79 Sacred Heart Hospital'),
(36786, 'https://ror.org/03ta1q534', 'en', 1, 'https://ror.org/03ta1q534 Panti Rapih Hospital Rumah Sakit Umum Panti Rapih'),
(36787, 'https://ror.org/036d0t930', 'en', 1, 'https://ror.org/036d0t930 Minto Ophthalmic Hospital'),
(36788, 'https://ror.org/05as0g053', 'en', 1, 'https://ror.org/05as0g053 Mithila Minority Dental College And Hospital'),
(36789, 'https://ror.org/02f6hdc06', 'en', 1, 'https://ror.org/02f6hdc06 King Abdullah University Hospital مستشفى الملك المؤسس عبد الله الجامعي'),
(36790, 'https://ror.org/02ry07h90', 'en', 1, 'https://ror.org/02ry07h90 Cooper Hospital'),
(36791, 'https://ror.org/02zfghc79', 'en', 1, 'https://ror.org/02zfghc79 Mother Hospital'),
(36792, 'https://ror.org/02dhjed84', 'en', 1, 'https://ror.org/02dhjed84 Ospidéal Ginearálta Thiobraid Árann Theas South Tipperary General Hospital'),
(36793, 'https://ror.org/01fafm680', 'en', 1, 'https://ror.org/01fafm680 Specialty Hospital, Jordan'),
(36794, 'https://ror.org/052yqc035', 'no_lang_code', 1, 'https://ror.org/052yqc035 Muthu Hospital'),
(36795, 'https://ror.org/03em5rb28', 'en', 1, 'https://ror.org/03em5rb28 Nalanda Medical College and Hospital नालन्दा मेडिकल कॉलेज और अस्पताल'),
(36796, 'https://ror.org/02jywn868', 'en', 1, 'https://ror.org/02jywn868 Islamic Azad University of Farahan'),
(36797, 'https://ror.org/04rrs4x54', 'en', 1, 'https://ror.org/04rrs4x54 University of Central Asia'),
(36798, 'https://ror.org/01bjya005', 'en', 1, 'https://ror.org/01bjya005 Darbhanga Medical College and Hospital'),
(36799, 'https://ror.org/04q36bj19', 'en', 1, 'https://ror.org/04q36bj19 Islamic Azad University of Kashan دانشگاه آزاد اسلامی واحد کاشان'),
(36800, 'https://ror.org/01tm0s838', 'en', 1, 'https://ror.org/01tm0s838 Ospidéal Naomh Colm Cille St. Columcille''s Hospital'),
(36801, 'https://ror.org/05ydkmr70', 'en', 1, 'https://ror.org/05ydkmr70 Patna Medical College and Hospital पटना मेडिकल कॉलेज अस्पताल'),
(36802, 'https://ror.org/04kmnjy05', 'en', 1, 'https://ror.org/04kmnjy05 Deccan School of Hospital Management'),
(36803, 'https://ror.org/00grekx31', 'en', 1, 'https://ror.org/00grekx31 Synod Hospital'),
(36804, 'https://ror.org/00fmvp630', 'en', 1, 'https://ror.org/00fmvp630 Ospidéal Naomh Conaill St. Conal''s Psychiatric Hospital'),
(36805, 'https://ror.org/02cfg8q88', 'en', 1, 'https://ror.org/02cfg8q88 Council of Christian Hospitals'),
(36806, 'https://ror.org/023fkcg80', 'en', 1, 'https://ror.org/023fkcg80 Africa International University'),
(36807, 'https://ror.org/00sgprf31', 'en', 1, 'https://ror.org/00sgprf31 Ospidéal Naomh Dympna St. Dympna''s Hospital'),
(36808, 'https://ror.org/048p06y15', 'en', 1, 'https://ror.org/048p06y15 Prince Aly Khan Hospital'),
(36809, 'https://ror.org/038y3xt87', 'en', 1, 'https://ror.org/038y3xt87 Aga Khan Hospital, Kisumu'),
(36810, 'https://ror.org/01y3fwb07', 'en', 1, 'https://ror.org/01y3fwb07 Aga Khan Hospital, Mombasa'),
(36811, 'https://ror.org/03m0r4h89', 'no_lang_code', 1, 'https://ror.org/03m0r4h89 Desun Hospital & Heart Institute'),
(36812, 'https://ror.org/03cm42t62', 'en', 1, 'https://ror.org/03cm42t62 Rajarshee Chhatrapati Shahu Maharaj Government Medical College and CPR Hospital Kolhapur'),
(36813, 'https://ror.org/05r2sx051', 'en', 1, 'https://ror.org/05r2sx051 Kingsbridge Private Hospital Sligo'),
(36814, 'https://ror.org/01ttpsp54', 'en', 1, 'https://ror.org/01ttpsp54 East Yangon General Hospital ရန်ကုန် အရှေ့ပိုင်း ဆေးရုံ'),
(36815, 'https://ror.org/01hctzw61', 'en', 1, 'https://ror.org/01hctzw61 Khawaja Farid Social Security Hospital خواجہ فرید سوشل سیکورٹی ہسپتال'),
(36816, 'https://ror.org/027y59j70', 'en', 1, 'https://ror.org/027y59j70 Mariakani Cottage Hospital'),
(36817, 'https://ror.org/00673mt18', 'en', 1, 'https://ror.org/00673mt18 North Okkalapa General Hospital မြောက် ဥက္ကလာပဆေးရုံ'),
(36818, 'https://ror.org/00rds0p35', 'en', 1, 'https://ror.org/00rds0p35 Hospitali ya Nairobi Nairobi Hospital'),
(36819, 'https://ror.org/049pxhr81', 'en', 1, 'https://ror.org/049pxhr81 The Nairobi Women’s Hospital'),
(36820, 'https://ror.org/045twjx32', 'en', 1, 'https://ror.org/045twjx32 West Yangon General Hospital ရန်ကုန် အနောက်ပိုင်း ဆေးရုံ'),
(36821, 'https://ror.org/04x2gpd09', 'en', 1, 'https://ror.org/04x2gpd09 Yangon Central Women''s Hospital ရန်ကုန် ဗဟို အမျိုးသမီး ဆေးရုံ'),
(36822, 'https://ror.org/0308pxz24', 'en', 1, 'https://ror.org/0308pxz24 Services Hospital سروسز ہسپتال'),
(36823, 'https://ror.org/02ck8dx35', 'no_lang_code', 1, 'https://ror.org/02ck8dx35 Al-Salam Hospital Hopital de la Paix'),
(36824, 'https://ror.org/04jn7v116', 'en', 1, 'https://ror.org/04jn7v116 Yangon Children''s Hospital ရန်ကုန်ကလေးဆေးရုံကြီ'),
(36825, 'https://ror.org/04qs54252', 'en', 1, 'https://ror.org/04qs54252 Alyn Hospital'),
(36826, 'https://ror.org/02a2hb496', 'en', 1, 'https://ror.org/02a2hb496 Nazareth Hospital EMMS مستشفى الناصرة ا.م.م.س'),
(36827, 'https://ror.org/02evq8q51', 'en', 1, 'https://ror.org/02evq8q51 Ganta United Methodist Hospital'),
(36828, 'https://ror.org/02vhvhj11', 'en', 1, 'https://ror.org/02vhvhj11 Shaikh Zayed Medical College and Hospital'),
(36829, 'https://ror.org/01f60xs15', 'en', 1, 'https://ror.org/01f60xs15 Agriculture and Forestry University नेपाल कृषि तथा वन विश्वविद्यालय'),
(36830, 'https://ror.org/01s776p02', 'no_lang_code', 1, 'https://ror.org/01s776p02 Shalamar Hospital'),
(36831, 'https://ror.org/00e99cv66', 'no_lang_code', 1, 'https://ror.org/00e99cv66 Centro Hospitalar Conde de São Januário Hospital Conde S. Januário 仁伯爵综合医院'),
(36832, 'https://ror.org/05xwpxc69', 'en', 1, 'https://ror.org/05xwpxc69 Jerusalem University College'),
(36833, 'https://ror.org/05ptzph62', 'en', 1, 'https://ror.org/05ptzph62 International University College of Turin'),
(36834, 'https://ror.org/04776x595', 'no_lang_code', 1, 'https://ror.org/04776x595 Assunta Hospital Hospital Assunta 阿松大医院'),
(36835, 'https://ror.org/00467a196', 'no_lang_code', 1, 'https://ror.org/00467a196 Sindh Madressatul Islam University سندھ مدرسۃ الاسلام سنڌ مدرسته الاسلام'),
(36836, 'https://ror.org/02q764m16', 'no_lang_code', 1, 'https://ror.org/02q764m16 Baidya and Banskota Hospital'),
(36837, 'https://ror.org/02vdfy254', 'en', 1, 'https://ror.org/02vdfy254 Berjaya University College of Hospitality'),
(36838, 'https://ror.org/01ghxpd93', 'no_lang_code', 1, 'https://ror.org/01ghxpd93 Sir Ganga Ram Hospital سر گنگا رام ہسپتال'),
(36839, 'https://ror.org/01qt0ws77', 'no_lang_code', 1, 'https://ror.org/01qt0ws77 Bambisana Hospital'),
(36840, 'https://ror.org/00b2b8c41', 'en', 1, 'https://ror.org/00b2b8c41 Hospital Kajang Kajang Hospital'),
(36841, 'https://ror.org/05pc4mf95', 'en', 1, 'https://ror.org/05pc4mf95 Kuala Lumpur Metropolitan University College'),
(36842, 'https://ror.org/04v8qm048', 'en', 1, 'https://ror.org/04v8qm048 St. Elizabeth''s Hospital'),
(36843, 'https://ror.org/03czqdx05', 'en', 1, 'https://ror.org/03czqdx05 Bedford Provincial Hospital'),
(36844, 'https://ror.org/02ejbzv65', 'no_lang_code', 1, 'https://ror.org/02ejbzv65 St. Raphael''s Hospital'),
(36845, 'https://ror.org/04eefyt88', 'en', 1, 'https://ror.org/04eefyt88 Bhisho Provincial Hospital'),
(36846, 'https://ror.org/05n2jy464', 'en', 1, 'https://ror.org/05n2jy464 Surgimed Hospital سرجیمیڈ ہسپتال لاہور'),
(36847, 'https://ror.org/05n714746', 'en', 1, 'https://ror.org/05n714746 Burgersdorp Provincial Hospital'),
(36848, 'https://ror.org/01abdqw97', 'no_lang_code', 1, 'https://ror.org/01abdqw97 Dhulikhel Hospital'),
(36849, 'https://ror.org/04rs6p381', 'en', 1, 'https://ror.org/04rs6p381 Butterworth Hospital'),
(36850, 'https://ror.org/03yzrhw11', 'no_lang_code', 1, 'https://ror.org/03yzrhw11 Cala Provincial Hospital'),
(36851, 'https://ror.org/03t1qsw88', 'en', 1, 'https://ror.org/03t1qsw88 Arad County Clinical Hospital'),
(36852, 'https://ror.org/00vq26t70', 'no_lang_code', 1, 'https://ror.org/00vq26t70 Canzibe Hospital'),
(36853, 'https://ror.org/04csfg491', 'en', 1, 'https://ror.org/04csfg491 Bedford Orthopedic Hospital'),
(36854, 'https://ror.org/00737wk38', 'en', 1, 'https://ror.org/00737wk38 Sai Krishna Medical College & Hospital'),
(36855, 'https://ror.org/05jh60332', 'en', 1, 'https://ror.org/05jh60332 Cathcart Provincial Hospital'),
(36856, 'https://ror.org/03dpjfc73', 'en', 1, 'https://ror.org/03dpjfc73 Amsterdam University College'),
(36857, 'https://ror.org/05fnafm06', 'no_lang_code', 1, 'https://ror.org/05fnafm06 Cecilia Makiwane Hospital'),
(36858, 'https://ror.org/00cj6df44', 'en', 1, 'https://ror.org/00cj6df44 Cloete Joubert Hospital'),
(36859, 'https://ror.org/05bbns833', 'en', 1, 'https://ror.org/05bbns833 University College of Islamabad');
INSERT INTO `rors` VALUES
(36860, 'https://ror.org/00ajvp903', 'no_lang_code', 1, 'https://ror.org/00ajvp903 Cofimvaba Hospital'),
(36861, 'https://ror.org/018pest88', 'en', 1, 'https://ror.org/018pest88 Cradock Provincial Hospital'),
(36862, 'https://ror.org/03006q137', 'en', 1, 'https://ror.org/03006q137 Denmar Specialist Psychiatric Hospital'),
(36863, 'https://ror.org/04x0mgy69', 'en', 1, 'https://ror.org/04x0mgy69 Hospital Melaka Malacca General Hospital'),
(36864, 'https://ror.org/02qgf1459', 'no_lang_code', 1, 'https://ror.org/02qgf1459 Dora Nginza Hospital'),
(36865, 'https://ror.org/0218d7462', 'ms', 1, 'https://ror.org/0218d7462 Manipal Hospital Klang'),
(36866, 'https://ror.org/044xemj90', 'no_lang_code', 1, 'https://ror.org/044xemj90 Dar Al-Shifa Hospital مستشفى دار الشفاء'),
(36867, 'https://ror.org/02y5cd625', 'no_lang_code', 1, 'https://ror.org/02y5cd625 Dordrecht Hospital'),
(36868, 'https://ror.org/02t2f7916', 'en', 1, 'https://ror.org/02t2f7916 St Petersburg Psychiatric Hospital of Specialized Type with Intense Observation Санкт-Петербургская психиатрическая больница специализированного типа с интенсивным наблюдением'),
(36869, 'https://ror.org/01rvbmq75', 'en', 1, 'https://ror.org/01rvbmq75 New Era College 新纪元学院'),
(36870, 'https://ror.org/00f72x493', 'en', 1, 'https://ror.org/00f72x493 University College of Applied Science الكلية الجامعية للعلوم التطبيقية'),
(36871, 'https://ror.org/00jjwaj46', 'en', 1, 'https://ror.org/00jjwaj46 Dr George Mukhari Hospital'),
(36872, 'https://ror.org/02dxe8s77', 'en', 1, 'https://ror.org/02dxe8s77 National Hospital'),
(36873, 'https://ror.org/00g89bg08', 'en', 1, 'https://ror.org/00g89bg08 Serdang Hospital'),
(36874, 'https://ror.org/0403qtv92', 'en', 1, 'https://ror.org/0403qtv92 Duncan Village Day Hospital'),
(36875, 'https://ror.org/01w86pt71', 'en', 1, 'https://ror.org/01w86pt71 Sibu Hospital'),
(36876, 'https://ror.org/035veqr40', 'en', 1, 'https://ror.org/035veqr40 Elizabeth Donkin Hospital'),
(36877, 'https://ror.org/03c3mm140', 'en', 1, 'https://ror.org/03c3mm140 Nánfāng Dàxué Xuéyuàn Southern University College 南方大学学院'),
(36878, 'https://ror.org/02whjr542', 'en', 1, 'https://ror.org/02whjr542 Braemar Hospital'),
(36879, 'https://ror.org/00p5w8488', 'en', 1, 'https://ror.org/00p5w8488 Elliot Provincial Hospital'),
(36880, 'https://ror.org/02xvrbk22', 'en', 1, 'https://ror.org/02xvrbk22 Hospital Sultan Abdul Halim Sultan Abdul Halim Hospital'),
(36881, 'https://ror.org/03edsg024', 'en', 1, 'https://ror.org/03edsg024 Hospital Sultan Haji Ahmad Shah Sultan Haji Ahmad Shah Hospital'),
(36882, 'https://ror.org/01a48y329', 'es', 1, 'https://ror.org/01a48y329 Hospital Punta Pacifica'),
(36883, 'https://ror.org/04h8qa024', 'no_lang_code', 1, 'https://ror.org/04h8qa024 Empilisweni District Hospital'),
(36884, 'https://ror.org/043e82c76', 'en', 1, 'https://ror.org/043e82c76 Sultan Ismail Specialist Hospital'),
(36885, 'https://ror.org/02pgs0t39', 'en', 1, 'https://ror.org/02pgs0t39 Hospital Santo Tomás Saint Thomas Hospital'),
(36886, 'https://ror.org/04pp10d34', 'en', 1, 'https://ror.org/04pp10d34 Wakari Hospital'),
(36887, 'https://ror.org/02d6w7230', 'en', 1, 'https://ror.org/02d6w7230 Kolej Universiti TATI TATI University College'),
(36888, 'https://ror.org/02ad2pb06', 'en', 1, 'https://ror.org/02ad2pb06 International American University'),
(36889, 'https://ror.org/008trbz07', 'en', 1, 'https://ror.org/008trbz07 Hospital Tuaran Tuaran Hospital'),
(36890, 'https://ror.org/01x5tzy43', 'no_lang_code', 1, 'https://ror.org/01x5tzy43 ADK Hospital'),
(36891, 'https://ror.org/03eem3b66', 'no_lang_code', 1, 'https://ror.org/03eem3b66 Faafu Atoll Hospital'),
(36892, 'https://ror.org/0486aq354', 'en', 1, 'https://ror.org/0486aq354 Whakatane Hospital'),
(36893, 'https://ror.org/05an5n875', 'en', 1, 'https://ror.org/05an5n875 Saad Specialist Hospital مستشفى سعد التخصصي'),
(36894, 'https://ror.org/05wnsp028', 'en', 1, 'https://ror.org/05wnsp028 Fort Beaufort Hospital'),
(36895, 'https://ror.org/02yj6ya55', 'en', 1, 'https://ror.org/02yj6ya55 Asian Hospital and Medical Center'),
(36896, 'https://ror.org/01yq3x543', 'en', 1, 'https://ror.org/01yq3x543 Indira Gandhi Memorial Hospital'),
(36897, 'https://ror.org/01bpdjm13', 'en', 1, 'https://ror.org/01bpdjm13 Keiser University Latin American Campus'),
(36898, 'https://ror.org/01apaq485', 'en', 1, 'https://ror.org/01apaq485 Fort England Psigiatriese hospitaal Fort England Psychiatric Hospital'),
(36899, 'https://ror.org/03hwy2z57', 'en', 1, 'https://ror.org/03hwy2z57 Paul University Awka'),
(36900, 'https://ror.org/05qp58s25', 'en', 1, 'https://ror.org/05qp58s25 Association of Christian Schools, Colleges and Universities'),
(36901, 'https://ror.org/038g0j466', 'en', 1, 'https://ror.org/038g0j466 Fort Grey TB Hospital'),
(36902, 'https://ror.org/025m8nj62', 'no_lang_code', 1, 'https://ror.org/025m8nj62 Frontier Hospital'),
(36903, 'https://ror.org/02z2mhx36', 'en', 1, 'https://ror.org/02z2mhx36 Association of Local Colleges and Universities'),
(36904, 'https://ror.org/03vgy8f59', 'en', 1, 'https://ror.org/03vgy8f59 Glen Grey Provincial Hospital'),
(36905, 'https://ror.org/01sj7p872', 'en', 1, 'https://ror.org/01sj7p872 St John of God Hospital Sierra Leone'),
(36906, 'https://ror.org/05eegng50', 'en', 1, 'https://ror.org/05eegng50 Bangued Christian Hospital'),
(36907, 'https://ror.org/01562cp57', 'en', 1, 'https://ror.org/01562cp57 Bethel Baptist Hospital'),
(36908, 'https://ror.org/05y17bn08', 'en', 1, 'https://ror.org/05y17bn08 Grey Provincial Hospital'),
(36909, 'https://ror.org/05mwhq004', 'es', 1, 'https://ror.org/05mwhq004 Hospital de Jesús Nazareno'),
(36910, 'https://ror.org/05czzgv88', 'en', 1, 'https://ror.org/05czzgv88 Namsos Hospital'),
(36911, 'https://ror.org/00r2t8g81', 'en', 1, 'https://ror.org/00r2t8g81 Parkway East Hospital'),
(36912, 'https://ror.org/04j69ht58', 'en', 1, 'https://ror.org/04j69ht58 Hewu Hospital'),
(36913, 'https://ror.org/04hbzm840', 'en', 1, 'https://ror.org/04hbzm840 Chinese General Hospital and Medical Center'),
(36914, 'https://ror.org/05kds6518', 'en', 1, 'https://ror.org/05kds6518 Indwe Hospital'),
(36915, 'https://ror.org/02a0q1e43', 'en', 1, 'https://ror.org/02a0q1e43 Norwegian Universities and Colleges Admission Service'),
(36916, 'https://ror.org/01cnqh417', 'en', 1, 'https://ror.org/01cnqh417 Mount Elizabeth Novena Hospital'),
(36917, 'https://ror.org/04xaked44', 'es', 1, 'https://ror.org/04xaked44 Hospital San Hipólito'),
(36918, 'https://ror.org/00fweme20', 'en', 1, 'https://ror.org/00fweme20 Chinese General Hospital College of Nursing and Liberal Arts'),
(36919, 'https://ror.org/03rsw7n31', 'en', 1, 'https://ror.org/03rsw7n31 Davao Doctors Hospital'),
(36920, 'https://ror.org/05w4sv861', 'en', 1, 'https://ror.org/05w4sv861 Jamestown Hospital'),
(36921, 'https://ror.org/03fatc842', 'en', 1, 'https://ror.org/03fatc842 Jose Pearson TB Hospital'),
(36922, 'https://ror.org/05t534806', 'en', 1, 'https://ror.org/05t534806 Dr. Jose N. Rodriguez Memorial Hospital'),
(36923, 'https://ror.org/00w2nrp41', 'en', 1, 'https://ror.org/00w2nrp41 Kalafong Hospitaal Kalafong Hospital'),
(36924, 'https://ror.org/00kxk0k30', 'en', 1, 'https://ror.org/00kxk0k30 Rudolf Steiner University College'),
(36925, 'https://ror.org/00a5p2894', 'no_lang_code', 1, 'https://ror.org/00a5p2894 Komga Hospital'),
(36926, 'https://ror.org/053cj9d07', 'en', 1, 'https://ror.org/053cj9d07 Onderstepoort Veterinary Academic Hospital Onderstepoort-dierehospitaal'),
(36927, 'https://ror.org/05jd9hn69', 'en', 1, 'https://ror.org/05jd9hn69 Lady Grey Hospital'),
(36928, 'https://ror.org/053x7k331', 'en', 1, 'https://ror.org/053x7k331 St Luke''s Hospital'),
(36929, 'https://ror.org/02bg43d92', 'en', 1, 'https://ror.org/02bg43d92 P.Z. Meyer Hospital'),
(36930, 'https://ror.org/02pfhds36', 'en', 1, 'https://ror.org/02pfhds36 Iloilo Mission Hospital'),
(36931, 'https://ror.org/00f0wme23', 'en', 1, 'https://ror.org/00f0wme23 Livingstone Hospital'),
(36932, 'https://ror.org/01fr0xp26', 'en', 1, 'https://ror.org/01fr0xp26 John B. Lacson Foundation Maritime University'),
(36933, 'https://ror.org/0327sj791', 'no_lang_code', 1, 'https://ror.org/0327sj791 S.S. Gida Hospital'),
(36934, 'https://ror.org/00d3ws365', 'en', 1, 'https://ror.org/00d3ws365 Aga Khan Hospital for Women'),
(36935, 'https://ror.org/01sz1dt34', 'en', 1, 'https://ror.org/01sz1dt34 Štefan Kukura Hospital in Michalovce'),
(36936, 'https://ror.org/02mrs6s31', 'en', 1, 'https://ror.org/02mrs6s31 Maclear Hospital'),
(36937, 'https://ror.org/03rm5rm15', 'en', 1, 'https://ror.org/03rm5rm15 Settlers Hospital'),
(36938, 'https://ror.org/0523nzq15', 'en', 1, 'https://ror.org/0523nzq15 Juan S. Alano Memorial Hospital'),
(36939, 'https://ror.org/02rsn0x61', 'en', 1, 'https://ror.org/02rsn0x61 Allied Hospital'),
(36940, 'https://ror.org/0214vep53', 'no_lang_code', 1, 'https://ror.org/0214vep53 Madwaleni Hospital'),
(36941, 'https://ror.org/00qh12n88', 'en', 1, 'https://ror.org/00qh12n88 Laguna State Polytechnic University'),
(36942, 'https://ror.org/050jgsv04', 'en', 1, 'https://ror.org/050jgsv04 Somerset Hospital'),
(36943, 'https://ror.org/0074zqk79', 'en', 1, 'https://ror.org/0074zqk79 Madzikane Ka Zulu Memorial Hospital'),
(36944, 'https://ror.org/03e7k3562', 'en', 1, 'https://ror.org/03e7k3562 St Barnabas Hospital'),
(36945, 'https://ror.org/01ark0470', 'en', 1, 'https://ror.org/01ark0470 Abudwak Maternity and Children''s Hospital Isbitaalka Caabudwaaq ee Daryeelka Umulaha iyo Caruurta'),
(36946, 'https://ror.org/00qej3243', 'en', 1, 'https://ror.org/00qej3243 Medina General Hospital'),
(36947, 'https://ror.org/037ssjt43', 'no_lang_code', 1, 'https://ror.org/037ssjt43 Martje Venter Hospital'),
(36948, 'https://ror.org/00rqqzf78', 'en', 1, 'https://ror.org/00rqqzf78 Daud Memorial Hospital'),
(36949, 'https://ror.org/000d92m60', 'en', 1, 'https://ror.org/000d92m60 Midlands Provincial Hospital'),
(36950, 'https://ror.org/0110xbk95', 'en', 1, 'https://ror.org/0110xbk95 St Elizabeth Mission Hospital'),
(36951, 'https://ror.org/04fc2q781', 'en', 1, 'https://ror.org/04fc2q781 Divisional Headquarters Teaching Hospital Mirpur'),
(36952, 'https://ror.org/0398fjy18', 'en', 1, 'https://ror.org/0398fjy18 St Francis Chronic Hospital'),
(36953, 'https://ror.org/05xfapj25', 'no_lang_code', 1, 'https://ror.org/05xfapj25 Mjanyana Hospital'),
(36954, 'https://ror.org/02rxr6563', 'no_lang_code', 1, 'https://ror.org/02rxr6563 Molteno Hospital'),
(36955, 'https://ror.org/03qve6z66', 'en', 1, 'https://ror.org/03qve6z66 St Lucy''s Hospital'),
(36956, 'https://ror.org/00bdqv395', 'en', 1, 'https://ror.org/00bdqv395 District Headquarters Hospital Battagram مرکزی ضلع ہسپتال بٹگرام'),
(36957, 'https://ror.org/02cbfxf79', 'en', 1, 'https://ror.org/02cbfxf79 St Patrick''s Hospital'),
(36958, 'https://ror.org/02z89pc64', 'en', 1, 'https://ror.org/02z89pc64 Mindanao Sanitarium and Hospital College'),
(36959, 'https://ror.org/04e3aws14', 'en', 1, 'https://ror.org/04e3aws14 Farooq Hospital'),
(36960, 'https://ror.org/02p3z0a62', 'en', 1, 'https://ror.org/02p3z0a62 Mount Ayliff Hospital'),
(36961, 'https://ror.org/05m5pvn27', 'en', 1, 'https://ror.org/05m5pvn27 Mthatha General Hospital'),
(36962, 'https://ror.org/014m06j94', 'en', 1, 'https://ror.org/014m06j94 Sterkstroom Provincial Hospital'),
(36963, 'https://ror.org/015gtm372', 'en', 1, 'https://ror.org/015gtm372 Steve Biko Akademiese Hospitaal Steve Biko Hospital'),
(36964, 'https://ror.org/036z4hp15', 'en', 1, 'https://ror.org/036z4hp15 Nelson Mandela Academic Hospital'),
(36965, 'https://ror.org/05vsk3m88', 'en', 1, 'https://ror.org/05vsk3m88 Kilinochchi General Hospital'),
(36966, 'https://ror.org/05p4cdm91', 'no_lang_code', 1, 'https://ror.org/05p4cdm91 Banadir Hospital'),
(36967, 'https://ror.org/0317k7j67', 'en', 1, 'https://ror.org/0317k7j67 Lanka Hospitals'),
(36968, 'https://ror.org/05h7j3j46', 'en', 1, 'https://ror.org/05h7j3j46 Steynsburg Provincial Hospital'),
(36969, 'https://ror.org/02szqsk98', 'en', 1, 'https://ror.org/02szqsk98 East Bardera Mothers and Children''s Hospital'),
(36970, 'https://ror.org/0216ejh55', 'en', 1, 'https://ror.org/0216ejh55 Stutterheim Provincial Hospital'),
(36971, 'https://ror.org/05s6ykc72', 'en', 1, 'https://ror.org/05s6ykc72 Nkqubela Chest Hospital'),
(36972, 'https://ror.org/03sdprd87', 'en', 1, 'https://ror.org/03sdprd87 Quirino State University'),
(36973, 'https://ror.org/02q2b0g11', 'no_lang_code', 1, 'https://ror.org/02q2b0g11 Tafalofefe Hospital'),
(36974, 'https://ror.org/01kaftk72', 'no_lang_code', 1, 'https://ror.org/01kaftk72 Mallavi Hospital'),
(36975, 'https://ror.org/048fm8466', 'en', 1, 'https://ror.org/048fm8466 Edna Adan Maternity Hospital'),
(36976, 'https://ror.org/01gjcwg85', 'en', 1, 'https://ror.org/01gjcwg85 Tayler Bequest District Hospital'),
(36977, 'https://ror.org/0443z5530', 'en', 1, 'https://ror.org/0443z5530 San Jose Hospital & Trauma Center'),
(36978, 'https://ror.org/042qcb753', 'no_lang_code', 1, 'https://ror.org/042qcb753 Nompumelelo Hospital'),
(36979, 'https://ror.org/00mwp9n57', 'en', 1, 'https://ror.org/00mwp9n57 Tower Psychiatric Hospital'),
(36980, 'https://ror.org/035c32k36', 'no_lang_code', 1, 'https://ror.org/035c32k36 Gardo General Hospital'),
(36981, 'https://ror.org/05pd21s36', 'no_lang_code', 1, 'https://ror.org/05pd21s36 Somoso General Hospital'),
(36982, 'https://ror.org/05rjfvd69', 'no_lang_code', 1, 'https://ror.org/05rjfvd69 Umlamli Hospital'),
(36983, 'https://ror.org/05mpa6118', 'en', 1, 'https://ror.org/05mpa6118 Mannar Hospital'),
(36984, 'https://ror.org/0374eby90', 'no_lang_code', 1, 'https://ror.org/0374eby90 Valkenberg Hospital'),
(36985, 'https://ror.org/00n08qc60', 'en', 1, 'https://ror.org/00n08qc60 Unciano Colleges and General Hospital'),
(36986, 'https://ror.org/008vpwk50', 'no_lang_code', 1, 'https://ror.org/008vpwk50 Victoria Hospital'),
(36987, 'https://ror.org/05xh9zn04', 'no_lang_code', 1, 'https://ror.org/05xh9zn04 Mullaitivu Hospital'),
(36988, 'https://ror.org/036s60e53', 'en', 1, 'https://ror.org/036s60e53 Aberdeen Provincial Hospital'),
(36989, 'https://ror.org/03cwq3j60', 'en', 1, 'https://ror.org/03cwq3j60 Wilhelm Stahl Provincial Hospital'),
(36990, 'https://ror.org/00rb2cm82', 'en', 1, 'https://ror.org/00rb2cm82 Universal College'),
(36991, 'https://ror.org/00k3bnk40', 'en', 1, 'https://ror.org/00k3bnk40 Zithulele Hospital'),
(36992, 'https://ror.org/04s1njj71', 'en', 1, 'https://ror.org/04s1njj71 Adelaide Provincial Hospital'),
(36993, 'https://ror.org/03d5h2g68', 'no_lang_code', 1, 'https://ror.org/03d5h2g68 Nawaloka Hospital නවලෝක රෝහල'),
(36994, 'https://ror.org/03nhtqr81', 'en', 1, 'https://ror.org/03nhtqr81 Kibuli Hospital'),
(36995, 'https://ror.org/04qvybk43', 'en', 1, 'https://ror.org/04qvybk43 Bumin Hospital Group'),
(36996, 'https://ror.org/04s3waj07', 'en', 1, 'https://ror.org/04s3waj07 Chung Cheong University 忠淸大學 충청대학교'),
(36997, 'https://ror.org/0491f2496', 'en', 1, 'https://ror.org/0491f2496 Dr Neville Fernando Teaching Hospital'),
(36998, 'https://ror.org/033pwxw54', 'en', 1, 'https://ror.org/033pwxw54 Kisiizi Hospital'),
(36999, 'https://ror.org/05htgxx31', 'en', 1, 'https://ror.org/05htgxx31 Point Pedro Hospital'),
(37000, 'https://ror.org/05wb29v16', 'en', 1, 'https://ror.org/05wb29v16 Kitojo Hospital'),
(37001, 'https://ror.org/04znkkz68', 'en', 1, 'https://ror.org/04znkkz68 Daewon University College 대원대학교'),
(37002, 'https://ror.org/01zx9b829', 'en', 1, 'https://ror.org/01zx9b829 Aliwal North Hospital'),
(37003, 'https://ror.org/02324e112', 'en', 1, 'https://ror.org/02324e112 Mission Hospital'),
(37004, 'https://ror.org/036yer645', 'no_lang_code', 1, 'https://ror.org/036yer645 Tellippalai Hospital'),
(37005, 'https://ror.org/031ts3559', 'en', 1, 'https://ror.org/031ts3559 Doowon Technical University College 두원공과대학교'),
(37006, 'https://ror.org/04bz3d640', 'en', 1, 'https://ror.org/04bz3d640 Kitovu Hospital'),
(37007, 'https://ror.org/011g06z87', 'en', 1, 'https://ror.org/011g06z87 Trincomalee Hospital ත්රිකුණාමලය රෝහල'),
(37008, 'https://ror.org/05fmss017', 'en', 1, 'https://ror.org/05fmss017 All Saints Hospital'),
(37009, 'https://ror.org/023x8re17', 'no_lang_code', 1, 'https://ror.org/023x8re17 Bangkok Christian Hospital โรงพยาบาลกรุงเทพคริสเตียน'),
(37010, 'https://ror.org/013zxek87', 'en', 1, 'https://ror.org/013zxek87 Hallym Polytechnic University 翰林聖心大學校 한림성심대학교'),
(37011, 'https://ror.org/02rbp5787', 'en', 1, 'https://ror.org/02rbp5787 Kiwoko Hospital'),
(37012, 'https://ror.org/04st2h187', 'en', 1, 'https://ror.org/04st2h187 Andries Vosloo Hospital'),
(37013, 'https://ror.org/037zgz558', 'en', 1, 'https://ror.org/037zgz558 Vavuniya General Hospital'),
(37014, 'https://ror.org/02hhjhn88', 'en', 1, 'https://ror.org/02hhjhn88 B.J. Vorster Hospital'),
(37015, 'https://ror.org/011xmw283', 'en', 1, 'https://ror.org/011xmw283 Kuluva Hospital'),
(37016, 'https://ror.org/00ya08494', 'en', 1, 'https://ror.org/00ya08494 Bumrungrad International Hospital โรงพยาบาลบำรุงราษฎร์'),
(37017, 'https://ror.org/03f6y6166', 'en', 1, 'https://ror.org/03f6y6166 Lira Hospital'),
(37018, 'https://ror.org/03thytm37', 'no_lang_code', 1, 'https://ror.org/03thytm37 Manarom Hospital'),
(37019, 'https://ror.org/01rztx461', 'en', 1, 'https://ror.org/01rztx461 University of Medical Sciences and Technology جامعة مأمون حميدة'),
(37020, 'https://ror.org/01q0yhx95', 'en', 1, 'https://ror.org/01q0yhx95 Masaka Hospital'),
(37021, 'https://ror.org/041dcxd16', 'en', 1, 'https://ror.org/041dcxd16 Lanchester Road Hospital'),
(37022, 'https://ror.org/02jxdjn74', 'en', 1, 'https://ror.org/02jxdjn74 Mayo Hospital'),
(37023, 'https://ror.org/02agpjg13', 'en', 1, 'https://ror.org/02agpjg13 Matany Hospital'),
(37024, 'https://ror.org/01dy1y679', 'en', 1, 'https://ror.org/01dy1y679 Nakornthon Hospital'),
(37025, 'https://ror.org/05n0dev02', 'en', 1, 'https://ror.org/05n0dev02 Mbale Hospital'),
(37026, 'https://ror.org/01h9spb06', 'en', 1, 'https://ror.org/01h9spb06 Korea National University of Welfare 한국복지대학교'),
(37027, 'https://ror.org/043qb7f72', 'en', 1, 'https://ror.org/043qb7f72 Fleming Cottage Hospital'),
(37028, 'https://ror.org/03fw3x319', 'en', 1, 'https://ror.org/03fw3x319 Frölunda Specialist Hospital Frölunda Specialistsjukhus'),
(37029, 'https://ror.org/009aksf94', 'no_lang_code', 1, 'https://ror.org/009aksf94 Vejthani Hospital'),
(37030, 'https://ror.org/00zec6783', 'en', 1, 'https://ror.org/00zec6783 Tongwon University 동원대학교'),
(37031, 'https://ror.org/00awmjf06', 'no_lang_code', 1, 'https://ror.org/00awmjf06 Vibhavadi Hospital'),
(37032, 'https://ror.org/01xqpsp32', 'en', 1, 'https://ror.org/01xqpsp32 Fountain Way'),
(37033, 'https://ror.org/02ps5zx04', 'en', 1, 'https://ror.org/02ps5zx04 Moroto Hospital'),
(37034, 'https://ror.org/01qj9e285', 'en', 1, 'https://ror.org/01qj9e285 Yuhan University 유한대학교'),
(37035, 'https://ror.org/02q3pem31', 'no_lang_code', 1, 'https://ror.org/02q3pem31 Yanhee Hospital โรงพยาบาลยันฮี'),
(37036, 'https://ror.org/01vn1cc81', 'en', 1, 'https://ror.org/01vn1cc81 Galloway Community Hospital'),
(37037, 'https://ror.org/01xt6pa06', 'en', 1, 'https://ror.org/01xt6pa06 Mubende Hospital'),
(37038, 'https://ror.org/03850me26', 'en', 1, 'https://ror.org/03850me26 Mutolere Hospital'),
(37039, 'https://ror.org/04x3j0s69', 'en', 1, 'https://ror.org/04x3j0s69 Gilbert Bain Hospital'),
(37040, 'https://ror.org/03cjy1t09', 'en', 1, 'https://ror.org/03cjy1t09 Hospital general de Puerto España Port of Spain General Hospital'),
(37041, 'https://ror.org/02axhzn68', 'en', 1, 'https://ror.org/02axhzn68 Naggalama Hospital'),
(37042, 'https://ror.org/05t8tj069', 'en', 1, 'https://ror.org/05t8tj069 Glen O''Dee Hospital'),
(37043, 'https://ror.org/00va2ea06', 'no_lang_code', 1, 'https://ror.org/00va2ea06 Ampara Hospital අම්පාර රෝහල'),
(37044, 'https://ror.org/00n0gcp81', 'en', 1, 'https://ror.org/00n0gcp81 Naguru General Hospital'),
(37045, 'https://ror.org/04zympr28', 'en', 1, 'https://ror.org/04zympr28 Insch War Memorial Hospital'),
(37046, 'https://ror.org/02z875e74', 'en', 1, 'https://ror.org/02z875e74 Ashraff Memorial Hospital'),
(37047, 'https://ror.org/04tav6r22', 'sv', 1, 'https://ror.org/04tav6r22 Sjukhuset i Lidköping'),
(37048, 'https://ror.org/05a70mg07', 'en', 1, 'https://ror.org/05a70mg07 Nakaseke Hospital'),
(37049, 'https://ror.org/036g8b848', 'en', 1, 'https://ror.org/036g8b848 Inverurie Hospital'),
(37050, 'https://ror.org/04dp8fd47', 'en', 1, 'https://ror.org/04dp8fd47 Jubilee Hospital'),
(37051, 'https://ror.org/00sy03c71', 'en', 1, 'https://ror.org/00sy03c71 Teaching Hospital Batticaloa போதனா வைத்தியசாலை மட்டக்களப்பு'),
(37052, 'https://ror.org/02pktej77', 'en', 1, 'https://ror.org/02pktej77 Kincardine Community Hospital'),
(37053, 'https://ror.org/002kk4g03', 'en', 1, 'https://ror.org/002kk4g03 Nkozi Hospital'),
(37054, 'https://ror.org/04spvzc70', 'tr', 1, 'https://ror.org/04spvzc70 Balikli Rum Vakfi Hastanesi Balıklı Greek Hospital Balıklı Rum Hastanesi'),
(37055, 'https://ror.org/0508eaq76', 'no_lang_code', 1, 'https://ror.org/0508eaq76 Chavakachcheri Hospital'),
(37056, 'https://ror.org/0331bk778', 'en', 1, 'https://ror.org/0331bk778 Nsambya Hospital'),
(37057, 'https://ror.org/0027zt973', 'en', 1, 'https://ror.org/0027zt973 Swiss Association for Private Schools and Universities'),
(37058, 'https://ror.org/02vwzhc72', 'en', 1, 'https://ror.org/02vwzhc72 Kirklandside Hospital'),
(37059, 'https://ror.org/02xsnmk21', 'en', 1, 'https://ror.org/02xsnmk21 Nyakibale Hospital'),
(37060, 'https://ror.org/05ckkwm59', 'en', 1, 'https://ror.org/05ckkwm59 Kirkwood Hospice'),
(37061, 'https://ror.org/020twtp42', 'en', 1, 'https://ror.org/020twtp42 Swiss Institute for Management and Hospitality'),
(37062, 'https://ror.org/03p2ng128', 'no_lang_code', 1, 'https://ror.org/03p2ng128 Cheddikulam Hospital'),
(37063, 'https://ror.org/03fmefz35', 'en', 1, 'https://ror.org/03fmefz35 Lagan Valley Hospital'),
(37064, 'https://ror.org/01gezpw47', 'no_lang_code', 1, 'https://ror.org/01gezpw47 Durdans Hospital'),
(37065, 'https://ror.org/018dznw39', 'en', 1, 'https://ror.org/018dznw39 Rubaga Hospital'),
(37066, 'https://ror.org/012m63179', 'en', 1, 'https://ror.org/012m63179 Leanchoil Hospital'),
(37067, 'https://ror.org/01555zp21', 'en', 1, 'https://ror.org/01555zp21 Swiss School of Tourism and Hospitality'),
(37068, 'https://ror.org/05fs4ar13', 'en', 1, 'https://ror.org/05fs4ar13 Soroti Hospital'),
(37069, 'https://ror.org/05pd2z238', 'en', 1, 'https://ror.org/05pd2z238 Jaffna Teaching Hospital යාපනය ශික්ෂණ රෝහල'),
(37070, 'https://ror.org/04hbbc968', 'en', 1, 'https://ror.org/04hbbc968 Kalmunai North Hospital கல்முனை வடக்கு ஆதார வைத்தியசாலை'),
(37071, 'https://ror.org/03frvp088', 'en', 1, 'https://ror.org/03frvp088 International University for Science and Technology'),
(37072, 'https://ror.org/02qw5pa02', 'en', 1, 'https://ror.org/02qw5pa02 St. Francis Hospital Nkokonjeru'),
(37073, 'https://ror.org/04wp4st08', 'en', 1, 'https://ror.org/04wp4st08 Llanfrechfa Grange Hospital'),
(37074, 'https://ror.org/03r9wk794', 'en', 1, 'https://ror.org/03r9wk794 Kayts Hospital'),
(37075, 'https://ror.org/03asev112', 'en', 1, 'https://ror.org/03asev112 London Bridge Hospital'),
(37076, 'https://ror.org/01rzrn583', 'en', 1, 'https://ror.org/01rzrn583 University of Military Science and Technology'),
(37077, 'https://ror.org/01fsf9j67', 'en', 1, 'https://ror.org/01fsf9j67 Lowestoft Hospital'),
(37078, 'https://ror.org/00ssdam06', 'en', 1, 'https://ror.org/00ssdam06 The Mount'),
(37079, 'https://ror.org/041dnc326', 'en', 1, 'https://ror.org/041dnc326 Turner Memorial Hospital'),
(37080, 'https://ror.org/01p3c2g14', 'en', 1, 'https://ror.org/01p3c2g14 Turriff Cottage Hospital'),
(37081, 'https://ror.org/024yt9656', 'en', 1, 'https://ror.org/024yt9656 Villa Maria Hospital'),
(37082, 'https://ror.org/00dpzx715', 'en', 1, 'https://ror.org/00dpzx715 Suleyman Demirel University Research and Education Hospital'),
(37083, 'https://ror.org/02akjg578', 'en', 1, 'https://ror.org/02akjg578 Mackinnon Memorial Hospital'),
(37084, 'https://ror.org/04hfdry06', 'en', 1, 'https://ror.org/04hfdry06 Virika Hospital'),
(37085, 'https://ror.org/03z1ps729', 'en', 1, 'https://ror.org/03z1ps729 Aga Khan Hospital Dar es Salaam'),
(37086, 'https://ror.org/00v1kpv21', 'en', 1, 'https://ror.org/00v1kpv21 Maindiff Court Hospital Ysbyty Maindiff Court'),
(37087, 'https://ror.org/02j3f7p78', 'en', 1, 'https://ror.org/02j3f7p78 Ugie Hospital'),
(37088, 'https://ror.org/01jzgfe96', 'en', 1, 'https://ror.org/01jzgfe96 Bombo Hospital'),
(37089, 'https://ror.org/03g7zhh97', 'en', 1, 'https://ror.org/03g7zhh97 Uist and Barra Hospital'),
(37090, 'https://ror.org/01ewp8233', 'tr', 1, 'https://ror.org/01ewp8233 Yedikule Surp Pırgiç Armenian Hospital Yedikule Surp Pırgiç Ermeni Hastanesi'),
(37091, 'https://ror.org/05sqvht74', 'en', 1, 'https://ror.org/05sqvht74 Midlothian Community Hospital'),
(37092, 'https://ror.org/02tzc1925', 'en', 1, 'https://ror.org/02tzc1925 Haydom Lutheran Hospital'),
(37093, 'https://ror.org/02e8wzn87', 'en', 1, 'https://ror.org/02e8wzn87 Naomi House and Jacksplace'),
(37094, 'https://ror.org/05w7k9134', 'en', 1, 'https://ror.org/05w7k9134 Ajman Specialty General Hospital بیمارستان عمومی تخصصی عجمان'),
(37095, 'https://ror.org/01tajhr18', 'en', 1, 'https://ror.org/01tajhr18 Princess Margaret Hospital'),
(37096, 'https://ror.org/04t6q1p67', 'en', 1, 'https://ror.org/04t6q1p67 Neath Port Talbot Hospital'),
(37097, 'https://ror.org/04b14sj77', 'en', 1, 'https://ror.org/04b14sj77 Peterborough Regional College'),
(37098, 'https://ror.org/04p73je79', 'en', 1, 'https://ror.org/04p73je79 Angal Hospital'),
(37099, 'https://ror.org/03vxaxy97', 'en', 1, 'https://ror.org/03vxaxy97 Peterhead Community Hospital'),
(37100, 'https://ror.org/00qjry581', 'en', 1, 'https://ror.org/00qjry581 Warwickshire Hospital'),
(37101, 'https://ror.org/00254th47', 'en', 1, 'https://ror.org/00254th47 Western Isles Hospital'),
(37102, 'https://ror.org/03541w302', 'en', 1, 'https://ror.org/03541w302 Arua Regional Referral Hospital'),
(37103, 'https://ror.org/01qjnmr21', 'en', 1, 'https://ror.org/01qjnmr21 Redwood Memorial Hospital'),
(37104, 'https://ror.org/01ccpfp25', 'en', 1, 'https://ror.org/01ccpfp25 Danat Al Emarat Women & Children’s Hospital'),
(37105, 'https://ror.org/01dafpx49', 'en', 1, 'https://ror.org/01dafpx49 Buluba Hospital'),
(37106, 'https://ror.org/015g8zg50', 'en', 1, 'https://ror.org/015g8zg50 Royal Buckinghamshire Hospital'),
(37107, 'https://ror.org/02z5rm416', 'en', 1, 'https://ror.org/02z5rm416 Butabika Hospital'),
(37108, 'https://ror.org/00q9ekq83', 'no_lang_code', 1, 'https://ror.org/00q9ekq83 Dar Al Shifaa Hospital'),
(37109, 'https://ror.org/043dmbr88', 'en', 1, 'https://ror.org/043dmbr88 Westminster Memorial Hospital'),
(37110, 'https://ror.org/03vt5c527', 'en', 1, 'https://ror.org/03vt5c527 Royal Gwent Hospital Ysbyty Brenhinol Gwent'),
(37111, 'https://ror.org/003xxrm77', 'en', 1, 'https://ror.org/003xxrm77 Wirral Women and Children''s Hospital'),
(37112, 'https://ror.org/02yj8ay39', 'en', 1, 'https://ror.org/02yj8ay39 Royal Hospital Chelsea'),
(37113, 'https://ror.org/01q1nqh97', 'en', 1, 'https://ror.org/01q1nqh97 Cabell Huntington Hospital'),
(37114, 'https://ror.org/00ggs5315', 'en', 1, 'https://ror.org/00ggs5315 Woolmanhill Hospital'),
(37115, 'https://ror.org/0243vac68', 'en', 1, 'https://ror.org/0243vac68 GMC Hospital'),
(37116, 'https://ror.org/007svmx82', 'en', 1, 'https://ror.org/007svmx82 Caldwell Memorial Hospital'),
(37117, 'https://ror.org/05a637472', 'en', 1, 'https://ror.org/05a637472 CURE Children’s Hospital of Uganda'),
(37118, 'https://ror.org/05t9fq164', 'en', 1, 'https://ror.org/05t9fq164 Calvert Memorial Hospital'),
(37119, 'https://ror.org/04rcnsw78', 'en', 1, 'https://ror.org/04rcnsw78 Royal Hospital School'),
(37120, 'https://ror.org/00e252407', 'en', 1, 'https://ror.org/00e252407 Oasis Hospital'),
(37121, 'https://ror.org/058sgvn64', 'en', 1, 'https://ror.org/058sgvn64 Alameda Hospital'),
(37122, 'https://ror.org/02rpzg225', 'en', 1, 'https://ror.org/02rpzg225 Fort Portal Hospital'),
(37123, 'https://ror.org/03jygq783', 'en', 1, 'https://ror.org/03jygq783 Carroll Hospital'),
(37124, 'https://ror.org/05mg1ma72', 'en', 1, 'https://ror.org/05mg1ma72 Seafield Hospital'),
(37125, 'https://ror.org/022m3jb71', 'en', 1, 'https://ror.org/022m3jb71 Hoima Hospital'),
(37126, 'https://ror.org/02g0pj253', 'en', 1, 'https://ror.org/02g0pj253 Centegra Hospital McHenry'),
(37127, 'https://ror.org/01pykff63', 'en', 1, 'https://ror.org/01pykff63 Holy Innocents Children''s Hospital'),
(37128, 'https://ror.org/02qzqg182', 'en', 1, 'https://ror.org/02qzqg182 Centegra Hospital Woodstock'),
(37129, 'https://ror.org/012w90b89', 'en', 1, 'https://ror.org/012w90b89 Emirates Academy of Hospitality Management'),
(37130, 'https://ror.org/04vh5xb31', 'en', 1, 'https://ror.org/04vh5xb31 Centennial Hills Hospital'),
(37131, 'https://ror.org/04r6ymp55', 'en', 1, 'https://ror.org/04r6ymp55 Central State Hospital'),
(37132, 'https://ror.org/04ddxpg37', 'en', 1, 'https://ror.org/04ddxpg37 Albyn Hospital'),
(37133, 'https://ror.org/05vsjw141', 'en', 1, 'https://ror.org/05vsjw141 International Hospital Kampala'),
(37134, 'https://ror.org/019thgp94', 'en', 1, 'https://ror.org/019thgp94 Adventist Health Community Care-Hanford'),
(37135, 'https://ror.org/03d1se459', 'en', 1, 'https://ror.org/03d1se459 St Cadoc''s Hospital'),
(37136, 'https://ror.org/050kv7279', 'en', 1, 'https://ror.org/050kv7279 Ishaka Adventist Hospital'),
(37137, 'https://ror.org/03r8nx235', 'en', 1, 'https://ror.org/03r8nx235 Albert B. Chandler Hospital'),
(37138, 'https://ror.org/01v67r190', 'en', 1, 'https://ror.org/01v67r190 Clark Fork Valley Hospital'),
(37139, 'https://ror.org/01qbm4443', 'en', 1, 'https://ror.org/01qbm4443 Basildon and Thurrock University Hospitals NHS Foundation Trust'),
(37140, 'https://ror.org/01xd8qn15', 'en', 1, 'https://ror.org/01xd8qn15 St Woolos Hospital'),
(37141, 'https://ror.org/03k3gy769', 'en', 1, 'https://ror.org/03k3gy769 Itojo Hospital'),
(37142, 'https://ror.org/01hhq6g52', 'en', 1, 'https://ror.org/01hhq6g52 Alta View Hospital'),
(37143, 'https://ror.org/0304chs76', 'en', 1, 'https://ror.org/0304chs76 Coalinga State Hospital'),
(37144, 'https://ror.org/034qn2e75', 'en', 1, 'https://ror.org/034qn2e75 Community Hospital of Long Beach'),
(37145, 'https://ror.org/05fe98h83', 'en', 1, 'https://ror.org/05fe98h83 Jinja Hospital'),
(37146, 'https://ror.org/01a7fxy42', 'en', 1, 'https://ror.org/01a7fxy42 St. Brendan''s Hospital'),
(37147, 'https://ror.org/0092pe568', 'en', 1, 'https://ror.org/0092pe568 Community Hospital of San Bernardino'),
(37148, 'https://ror.org/05w77r929', 'en', 1, 'https://ror.org/05w77r929 Blaenavon Hospital'),
(37149, 'https://ror.org/04e4aky44', 'en', 1, 'https://ror.org/04e4aky44 American Fork Hospital'),
(37150, 'https://ror.org/03a470v04', 'en', 1, 'https://ror.org/03a470v04 Kabale Hospital'),
(37151, 'https://ror.org/0560ehd58', 'en', 1, 'https://ror.org/0560ehd58 Stephen Cottage Hospital'),
(37152, 'https://ror.org/013b2a427', 'en', 1, 'https://ror.org/013b2a427 Campbell Hospital'),
(37153, 'https://ror.org/020eynm41', 'en', 1, 'https://ror.org/020eynm41 Stracathro Hospital'),
(37154, 'https://ror.org/03sffv110', 'en', 1, 'https://ror.org/03sffv110 Kagando Hospital'),
(37155, 'https://ror.org/03sd8nm03', 'en', 1, 'https://ror.org/03sd8nm03 Cefn Coed Hospital'),
(37156, 'https://ror.org/00w069474', 'en', 1, 'https://ror.org/00w069474 Ancora Psychiatric Hospital'),
(37157, 'https://ror.org/04dq5k727', 'en', 1, 'https://ror.org/04dq5k727 BMI The Meriden Hospital'),
(37158, 'https://ror.org/03r9gvk70', 'en', 1, 'https://ror.org/03r9gvk70 Kalongo Hospital'),
(37159, 'https://ror.org/05px4ev98', 'en', 1, 'https://ror.org/05px4ev98 Cottage Grove Community Medical Center'),
(37160, 'https://ror.org/02h9b8h17', 'en', 1, 'https://ror.org/02h9b8h17 Chesterfield Royal Hospital NHS Foundation Trust'),
(37161, 'https://ror.org/02h9qaw79', 'en', 1, 'https://ror.org/02h9qaw79 AnMed Health Women''s & Children''s Hospital'),
(37162, 'https://ror.org/030ncf194', 'en', 1, 'https://ror.org/030ncf194 Cooper Green Mercy Hospital'),
(37163, 'https://ror.org/00t3ejb31', 'en', 1, 'https://ror.org/00t3ejb31 Kamuli General Hospital'),
(37164, 'https://ror.org/04v1qxj13', 'en', 1, 'https://ror.org/04v1qxj13 Antelope Valley Hospital'),
(37165, 'https://ror.org/004p7xa79', 'en', 1, 'https://ror.org/004p7xa79 Cowal Community Hospital'),
(37166, 'https://ror.org/01bd9d715', 'en', 1, 'https://ror.org/01bd9d715 Kamuli Mission Hospital'),
(37167, 'https://ror.org/01zq8yd65', 'en', 1, 'https://ror.org/01zq8yd65 ProMedica Fostoria Community Hospital'),
(37168, 'https://ror.org/04dr0x243', 'en', 1, 'https://ror.org/04dr0x243 Arroyo Grande Community Hospital'),
(37169, 'https://ror.org/03tmst390', 'en', 1, 'https://ror.org/03tmst390 Frank R. Howard Memorial Hospital'),
(37170, 'https://ror.org/032az3k06', 'en', 1, 'https://ror.org/032az3k06 Ashland Community Hospital'),
(37171, 'https://ror.org/03xx2xa59', 'en', 1, 'https://ror.org/03xx2xa59 Desert Springs Hospital'),
(37172, 'https://ror.org/012k58098', 'en', 1, 'https://ror.org/012k58098 Mercy Defiance Hospital'),
(37173, 'https://ror.org/02bme6n25', 'en', 1, 'https://ror.org/02bme6n25 Association of Independent Colleges and Universities in Massachusetts'),
(37174, 'https://ror.org/01bre2z07', 'en', 1, 'https://ror.org/01bre2z07 Fremont Memorial Hospital'),
(37175, 'https://ror.org/05hrhxs64', 'en', 1, 'https://ror.org/05hrhxs64 Amita Health St. Mary''s Hospital'),
(37176, 'https://ror.org/05r1ynr77', 'en', 1, 'https://ror.org/05r1ynr77 Asociación de Universidades Jesuitas Association des universités et facultés jésuites Association of Jesuit Colleges and Universities'),
(37177, 'https://ror.org/0594wgp58', 'en', 1, 'https://ror.org/0594wgp58 Mercy Tiffin Hospital'),
(37178, 'https://ror.org/05qhetb06', 'en', 1, 'https://ror.org/05qhetb06 Atascadero State Hospital'),
(37179, 'https://ror.org/04qa0nf30', 'en', 1, 'https://ror.org/04qa0nf30 Desert Valley Hospital'),
(37180, 'https://ror.org/00b26s419', 'en', 1, 'https://ror.org/00b26s419 Providence Milwaukie Hospital'),
(37181, 'https://ror.org/03th00v97', 'en', 1, 'https://ror.org/03th00v97 Atlantic General Hospital'),
(37182, 'https://ror.org/010t80406', 'en', 1, 'https://ror.org/010t80406 Duplin General Hospital'),
(37183, 'https://ror.org/02921wt38', 'en', 1, 'https://ror.org/02921wt38 Grace Cottage Hospital'),
(37184, 'https://ror.org/02gb6yk96', 'en', 1, 'https://ror.org/02gb6yk96 Gracie Square Hospital'),
(37185, 'https://ror.org/01t63bj13', 'en', 1, 'https://ror.org/01t63bj13 Mercy Willard Hospital'),
(37186, 'https://ror.org/05v744n89', 'en', 1, 'https://ror.org/05v744n89 Grande Ronde Hospital'),
(37187, 'https://ror.org/00x2q5f89', 'en', 1, 'https://ror.org/00x2q5f89 Randall Children''s Hospital at Legacy Emanuel'),
(37188, 'https://ror.org/00na98362', 'en', 1, 'https://ror.org/00na98362 Bakersfield Heart Hospital'),
(37189, 'https://ror.org/01r5p9y80', 'en', 1, 'https://ror.org/01r5p9y80 Methodist Hospital'),
(37190, 'https://ror.org/03tkbnt96', 'en', 1, 'https://ror.org/03tkbnt96 Barlow Respiratory Hospital'),
(37191, 'https://ror.org/03xy1px17', 'en', 1, 'https://ror.org/03xy1px17 Greater Cincinnati Consortium of Colleges and Universities'),
(37192, 'https://ror.org/056pzh665', 'en', 1, 'https://ror.org/056pzh665 Raulerson Hospital'),
(37193, 'https://ror.org/02dw30c90', 'en', 1, 'https://ror.org/02dw30c90 Barstow Community Hospital'),
(37194, 'https://ror.org/00eswsq11', 'en', 1, 'https://ror.org/00eswsq11 Rawson-Neal Hospital'),
(37195, 'https://ror.org/05515v279', 'en', 1, 'https://ror.org/05515v279 Metro Health Hospital'),
(37196, 'https://ror.org/03nask903', 'en', 1, 'https://ror.org/03nask903 Bay Park Community Hospital'),
(37197, 'https://ror.org/02agrc313', 'en', 1, 'https://ror.org/02agrc313 Rebecca Sealy Hospital'),
(37198, 'https://ror.org/00749c973', 'en', 1, 'https://ror.org/00749c973 Eastern Shore Hospital Center'),
(37199, 'https://ror.org/01k08w337', 'en', 1, 'https://ror.org/01k08w337 El Camino Hospital'),
(37200, 'https://ror.org/02bt3yy91', 'en', 1, 'https://ror.org/02bt3yy91 Miami Valley Hospital South'),
(37201, 'https://ror.org/04sjxr917', 'en', 1, 'https://ror.org/04sjxr917 Rideout Memorial Hospital'),
(37202, 'https://ror.org/003mb7998', 'en', 1, 'https://ror.org/003mb7998 Eleanor Slater Hospital'),
(37203, 'https://ror.org/04fcfgh72', 'en', 1, 'https://ror.org/04fcfgh72 Bayshore Community Hospital'),
(37204, 'https://ror.org/0523wf777', 'en', 1, 'https://ror.org/0523wf777 Ridgecrest Regional Hospital'),
(37205, 'https://ror.org/008zn4267', 'en', 1, 'https://ror.org/008zn4267 Mid Coast Hospital'),
(37206, 'https://ror.org/042ze4p12', 'en', 1, 'https://ror.org/042ze4p12 Ben Taub Hospital'),
(37207, 'https://ror.org/051pm1k39', 'en', 1, 'https://ror.org/051pm1k39 Encino Hospital Medical Center'),
(37208, 'https://ror.org/05d6xwf62', 'en', 1, 'https://ror.org/05d6xwf62 Rocky Vista University'),
(37209, 'https://ror.org/038z2kp14', 'en', 1, 'https://ror.org/038z2kp14 Blue Mountain Hospital'),
(37210, 'https://ror.org/033v3bb42', 'en', 1, 'https://ror.org/033v3bb42 Blythedale Children''s Hospital'),
(37211, 'https://ror.org/01znj1w09', 'en', 1, 'https://ror.org/01znj1w09 Saint Thomas - Rutherford Hospital'),
(37212, 'https://ror.org/05by7rp83', 'en', 1, 'https://ror.org/05by7rp83 Helen Newberry Joy Hospital'),
(37213, 'https://ror.org/0130rew69', 'en', 1, 'https://ror.org/0130rew69 Bon Secours Hospital'),
(37214, 'https://ror.org/017cmyy42', 'en', 1, 'https://ror.org/017cmyy42 Falmouth Hospital'),
(37215, 'https://ror.org/051cacg72', 'en', 1, 'https://ror.org/051cacg72 Samaritan Albany General Hospital'),
(37216, 'https://ror.org/05qkeds59', 'en', 1, 'https://ror.org/05qkeds59 Milford Hospital'),
(37217, 'https://ror.org/048snr569', 'en', 1, 'https://ror.org/048snr569 Boulder City Hospital'),
(37218, 'https://ror.org/01jydv679', 'en', 1, 'https://ror.org/01jydv679 Fawcett Memorial Hospital'),
(37219, 'https://ror.org/04n4kxk55', 'en', 1, 'https://ror.org/04n4kxk55 Hickman Community Hospital'),
(37220, 'https://ror.org/00cdxfz76', 'en', 1, 'https://ror.org/00cdxfz76 Brattleboro Memorial Hospital'),
(37221, 'https://ror.org/05ne0nx52', 'en', 1, 'https://ror.org/05ne0nx52 Feather River Hospital'),
(37222, 'https://ror.org/04yc38g92', 'en', 1, 'https://ror.org/04yc38g92 Samaritan Lebanon Community Hospital'),
(37223, 'https://ror.org/03de1e587', 'en', 1, 'https://ror.org/03de1e587 Holland Hospital'),
(37224, 'https://ror.org/03wrd3648', 'en', 1, 'https://ror.org/03wrd3648 Montclair Hospital Medical Center'),
(37225, 'https://ror.org/00gpwad22', 'en', 1, 'https://ror.org/00gpwad22 Samaritan North Lincoln Hospital'),
(37226, 'https://ror.org/01dvk8489', 'en', 1, 'https://ror.org/01dvk8489 Finley Hospital'),
(37227, 'https://ror.org/05mgsm482', 'en', 1, 'https://ror.org/05mgsm482 Howard County General Hospital'),
(37228, 'https://ror.org/02g4abr06', 'en', 1, 'https://ror.org/02g4abr06 Broughton Hospital'),
(37229, 'https://ror.org/05v00rs76', 'en', 1, 'https://ror.org/05v00rs76 Flagler Hospital'),
(37230, 'https://ror.org/05pwyzq32', 'en', 1, 'https://ror.org/05pwyzq32 Samaritan Pacific Communities Hospital'),
(37231, 'https://ror.org/02dwtw793', 'en', 1, 'https://ror.org/02dwtw793 Bryce Hospital'),
(37232, 'https://ror.org/014x3kb31', 'en', 1, 'https://ror.org/014x3kb31 Huntsville Hospital'),
(37233, 'https://ror.org/05vn58r96', 'en', 1, 'https://ror.org/05vn58r96 San Antonio Regional Hospital'),
(37234, 'https://ror.org/014x4zd69', 'en', 1, 'https://ror.org/014x4zd69 LewisGale Hospital Montgomery'),
(37235, 'https://ror.org/030sy9j53', 'en', 1, 'https://ror.org/030sy9j53 St. Luke''s Hospital'),
(37236, 'https://ror.org/019yny421', 'en', 1, 'https://ror.org/019yny421 Santa Paula Hospital'),
(37237, 'https://ror.org/01v4x4669', 'en', 1, 'https://ror.org/01v4x4669 AdventHealth East Orlando'),
(37238, 'https://ror.org/017x9j395', 'en', 1, 'https://ror.org/017x9j395 Indiana Orthopaedic Hospital'),
(37239, 'https://ror.org/0597nct77', 'en', 1, 'https://ror.org/0597nct77 Morton Hospital'),
(37240, 'https://ror.org/05a60y787', 'en', 1, 'https://ror.org/05a60y787 Intercultural Open University Foundation'),
(37241, 'https://ror.org/04sqfs158', 'en', 1, 'https://ror.org/04sqfs158 St. Rose Dominican Hospital'),
(37242, 'https://ror.org/05r3pfn29', 'en', 1, 'https://ror.org/05r3pfn29 Morton Plant North Bay Hospital'),
(37243, 'https://ror.org/04r6zx259', 'en', 1, 'https://ror.org/04r6zx259 AdventHealth Sebring'),
(37244, 'https://ror.org/039v2y730', 'en', 1, 'https://ror.org/039v2y730 Summa St. Thomas Hospital'),
(37245, 'https://ror.org/01h2p4517', 'en', 1, 'https://ror.org/01h2p4517 Mt. Washington Pediatric Hospital'),
(37246, 'https://ror.org/00bm58p15', 'en', 1, 'https://ror.org/00bm58p15 Santa Ynez Valley Cottage Hospital'),
(37247, 'https://ror.org/04n5ych62', 'en', 1, 'https://ror.org/04n5ych62 AdventHealth Lake Placid'),
(37248, 'https://ror.org/03rk9kh93', 'en', 1, 'https://ror.org/03rk9kh93 Summerlin Hospital Medical Center'),
(37249, 'https://ror.org/05wer6w03', 'en', 1, 'https://ror.org/05wer6w03 Sunrise Hospital & Medical Center'),
(37250, 'https://ror.org/00gwqq432', 'en', 1, 'https://ror.org/00gwqq432 Sherman Oaks Hospital'),
(37251, 'https://ror.org/05ec81r30', 'en', 1, 'https://ror.org/05ec81r30 Napa State Hospital'),
(37252, 'https://ror.org/050n8x383', 'en', 1, 'https://ror.org/050n8x383 The Bristol-Myers Squibb Children''s Hospital'),
(37253, 'https://ror.org/05c1z0f40', 'en', 1, 'https://ror.org/05c1z0f40 National Association of Independent Colleges and Universities'),
(37254, 'https://ror.org/03yvwxc80', 'en', 1, 'https://ror.org/03yvwxc80 Sierra View Medical Center'),
(37255, 'https://ror.org/017j15308', 'en', 1, 'https://ror.org/017j15308 University Press of Florida'),
(37256, 'https://ror.org/03edgm225', 'en', 1, 'https://ror.org/03edgm225 Nebraska Orthopaedic Hospital'),
(37257, 'https://ror.org/03kwc4219', 'en', 1, 'https://ror.org/03kwc4219 Jersey Community Hospital'),
(37258, 'https://ror.org/00v19am98', 'en', 1, 'https://ror.org/00v19am98 Hospital del estado de Utah Utah State Hospital'),
(37259, 'https://ror.org/01ahbf530', 'en', 1, 'https://ror.org/01ahbf530 Silverton Hospital'),
(37260, 'https://ror.org/02fxjt553', 'en', 1, 'https://ror.org/02fxjt553 John Sealy Hospital'),
(37261, 'https://ror.org/01kakjy62', 'en', 1, 'https://ror.org/01kakjy62 Newport Hospital'),
(37262, 'https://ror.org/014eq5c38', 'en', 1, 'https://ror.org/014eq5c38 Adventist Health Simi Valley'),
(37263, 'https://ror.org/05m6a9a03', 'en', 1, 'https://ror.org/05m6a9a03 The Outer Banks Hospital'),
(37264, 'https://ror.org/04x1zna55', 'en', 1, 'https://ror.org/04x1zna55 Valley Regional Hospital'),
(37265, 'https://ror.org/04p3ja862', 'en', 1, 'https://ror.org/04p3ja862 Skagit Valley Hospital'),
(37266, 'https://ror.org/04e7dhd60', 'en', 1, 'https://ror.org/04e7dhd60 Vermont State Hospital'),
(37267, 'https://ror.org/035rm0c83', 'en', 1, 'https://ror.org/035rm0c83 Norman Regional Hospital'),
(37268, 'https://ror.org/048xmz857', 'en', 1, 'https://ror.org/048xmz857 Kankakee State Hospital'),
(37269, 'https://ror.org/023pf5e38', 'en', 1, 'https://ror.org/023pf5e38 Somerville Hospital'),
(37270, 'https://ror.org/02dc6j928', 'en', 1, 'https://ror.org/02dc6j928 Torrance State Hospital'),
(37271, 'https://ror.org/02xbqbw69', 'en', 1, 'https://ror.org/02xbqbw69 Via Christi Hospital'),
(37272, 'https://ror.org/01hwe9w34', 'en', 1, 'https://ror.org/01hwe9w34 Sonoma Valley Hospital'),
(37273, 'https://ror.org/0517ce304', 'en', 1, 'https://ror.org/0517ce304 Kingston University'),
(37274, 'https://ror.org/02zkwve04', 'en', 1, 'https://ror.org/02zkwve04 Norristown State Hospital'),
(37275, 'https://ror.org/032bzhf86', 'en', 1, 'https://ror.org/032bzhf86 Vision International University'),
(37276, 'https://ror.org/00yntsj40', 'en', 1, 'https://ror.org/00yntsj40 South County Hospital'),
(37277, 'https://ror.org/03fytj861', 'en', 1, 'https://ror.org/03fytj861 La Palma Intercommunity Hospital'),
(37278, 'https://ror.org/00e2n6h96', 'en', 1, 'https://ror.org/00e2n6h96 Walla Walla General Hospital'),
(37279, 'https://ror.org/03b5xce19', 'en', 1, 'https://ror.org/03b5xce19 South Seminole Hospital'),
(37280, 'https://ror.org/045s3s145', 'en', 1, 'https://ror.org/045s3s145 Lake District Hospital'),
(37281, 'https://ror.org/004wdwb09', 'en', 1, 'https://ror.org/004wdwb09 WellStar Douglas Hospital'),
(37282, 'https://ror.org/03atmxx79', 'en', 1, 'https://ror.org/03atmxx79 Westerly Hospital'),
(37283, 'https://ror.org/00e9nf534', 'en', 1, 'https://ror.org/00e9nf534 Lake Taylor Transitional Care Hospital'),
(37284, 'https://ror.org/04q162150', 'en', 1, 'https://ror.org/04q162150 Trinity Hospital of Augusta'),
(37285, 'https://ror.org/03bh3se42', 'en', 1, 'https://ror.org/03bh3se42 Spring Valley Hospital'),
(37286, 'https://ror.org/0464f7620', 'en', 1, 'https://ror.org/0464f7620 Whidden Memorial Hospital'),
(37287, 'https://ror.org/00nwwb878', 'en', 1, 'https://ror.org/00nwwb878 Littleton Adventist Hospital'),
(37288, 'https://ror.org/01zndg142', 'en', 1, 'https://ror.org/01zndg142 Northeastern Vermont Regional Hospital'),
(37289, 'https://ror.org/02tzs1080', 'en', 1, 'https://ror.org/02tzs1080 St. Anne Mercy Hospital'),
(37290, 'https://ror.org/01f3dz928', 'en', 1, 'https://ror.org/01f3dz928 Logan Regional Hospital'),
(37291, 'https://ror.org/030jh8c52', 'en', 1, 'https://ror.org/030jh8c52 Tuality Forest Grove Hospital'),
(37292, 'https://ror.org/01yemzx31', 'en', 1, 'https://ror.org/01yemzx31 St. Anthony Hospital'),
(37293, 'https://ror.org/0082w0p19', 'en', 1, 'https://ror.org/0082w0p19 Northridge Hospital Medical Center'),
(37294, 'https://ror.org/047ge9e14', 'en', 1, 'https://ror.org/047ge9e14 Longmont United Hospital'),
(37295, 'https://ror.org/03dsp8w17', 'en', 1, 'https://ror.org/03dsp8w17 Union General Hospital'),
(37296, 'https://ror.org/04dhkam06', 'en', 1, 'https://ror.org/04dhkam06 Los Robles Hospital & Medical Center'),
(37297, 'https://ror.org/035yrx309', 'en', 1, 'https://ror.org/035yrx309 Norwood Hospital'),
(37298, 'https://ror.org/00jkecz03', 'en', 1, 'https://ror.org/00jkecz03 Willingway Hospital'),
(37299, 'https://ror.org/0530erx71', 'en', 1, 'https://ror.org/0530erx71 Weiss Memorial Hospital'),
(37300, 'https://ror.org/04bst6v91', 'en', 1, 'https://ror.org/04bst6v91 Winnie Palmer Hospital for Women & Babies'),
(37301, 'https://ror.org/01cbjg783', 'en', 1, 'https://ror.org/01cbjg783 Mercy St. Charles Hospital'),
(37302, 'https://ror.org/05y4f4n31', 'en', 1, 'https://ror.org/05y4f4n31 Wisconsin Association of Independent Colleges and Universities'),
(37303, 'https://ror.org/01yj0ps95', 'en', 1, 'https://ror.org/01yj0ps95 Novant Health Charlotte Orthopedic Hospital'),
(37304, 'https://ror.org/040x31d97', 'en', 1, 'https://ror.org/040x31d97 Worcester Recovery Center and Hospital'),
(37305, 'https://ror.org/040tgwz33', 'en', 1, 'https://ror.org/040tgwz33 Lourdes Hospital'),
(37306, 'https://ror.org/04gzs4s06', 'es', 1, 'https://ror.org/04gzs4s06 Hospital Británico'),
(37307, 'https://ror.org/01v9cv612', 'en', 1, 'https://ror.org/01v9cv612 O’Connor Hospital'),
(37308, 'https://ror.org/02091ng19', 'en', 1, 'https://ror.org/02091ng19 Lowell General Hospital'),
(37309, 'https://ror.org/02fbyyv82', 'es', 1, 'https://ror.org/02fbyyv82 Hospital Vilardebó'),
(37310, 'https://ror.org/024sym234', 'en', 1, 'https://ror.org/024sym234 St. Cloud Hospital'),
(37311, 'https://ror.org/021f59e59', 'en', 1, 'https://ror.org/021f59e59 Manchester Memorial Hospital'),
(37312, 'https://ror.org/05jrtrp47', 'en', 1, 'https://ror.org/05jrtrp47 Maple Grove Hospital'),
(37313, 'https://ror.org/02j40nc84', 'en', 1, 'https://ror.org/02j40nc84 Olean General Hospital'),
(37314, 'https://ror.org/0018abm07', 'en', 1, 'https://ror.org/0018abm07 PSB College Vietnam'),
(37315, 'https://ror.org/05wqyfz02', 'en', 1, 'https://ror.org/05wqyfz02 Marina Del Rey Hospital'),
(37316, 'https://ror.org/051pcb820', 'en', 1, 'https://ror.org/051pcb820 University of the Nations'),
(37317, 'https://ror.org/023afa504', 'en', 1, 'https://ror.org/023afa504 Oregon State Hospital'),
(37318, 'https://ror.org/03jm3ya95', 'en', 1, 'https://ror.org/03jm3ya95 Oroville Hospital'),
(37319, 'https://ror.org/02z9c4y45', 'en', 1, 'https://ror.org/02z9c4y45 Osawatomie State Hospital'),
(37320, 'https://ror.org/03q6hax08', 'en', 1, 'https://ror.org/03q6hax08 St. Helena Hospital'),
(37321, 'https://ror.org/032g22j83', 'en', 1, 'https://ror.org/032g22j83 Oswego Community Hospital'),
(37322, 'https://ror.org/052yjgk16', 'en', 1, 'https://ror.org/052yjgk16 Hung Yen University of Technology and Education Trường Đại học Sư phạm Kỹ thuật Hưng Yên'),
(37323, 'https://ror.org/00gxg1c10', 'en', 1, 'https://ror.org/00gxg1c10 St. Helena Hospital'),
(37324, 'https://ror.org/037asfq15', 'en', 1, 'https://ror.org/037asfq15 Thai Nguyen National General Hospital'),
(37325, 'https://ror.org/01stsya15', 'en', 1, 'https://ror.org/01stsya15 St. John''s Hospital'),
(37326, 'https://ror.org/01aj5dy09', 'en', 1, 'https://ror.org/01aj5dy09 Marquette General Hospital'),
(37327, 'https://ror.org/049ymah45', 'en', 1, 'https://ror.org/049ymah45 Bệnh viện Việt Đức Viet Duc Hospital'),
(37328, 'https://ror.org/04py84927', 'en', 1, 'https://ror.org/04py84927 Our Lady of Bellefonte Hospital'),
(37329, 'https://ror.org/02bfb2d67', 'en', 1, 'https://ror.org/02bfb2d67 Martha''s Vineyard Hospital'),
(37330, 'https://ror.org/000nw5c60', 'en', 1, 'https://ror.org/000nw5c60 St. John''s Pleasant Valley Hospital'),
(37331, 'https://ror.org/0253es752', 'en', 1, 'https://ror.org/0253es752 Martin Luther King, Jr. Community Hospital'),
(37332, 'https://ror.org/02etfr602', 'en', 1, 'https://ror.org/02etfr602 Our Lady of Fatima Hospital'),
(37333, 'https://ror.org/05bfknj54', 'en', 1, 'https://ror.org/05bfknj54 St. Joseph Hospital'),
(37334, 'https://ror.org/046s0tg81', 'en', 1, 'https://ror.org/046s0tg81 Massac Memorial Hospital'),
(37335, 'https://ror.org/00d415h66', 'en', 1, 'https://ror.org/00d415h66 Palm Springs General Hospital');
INSERT INTO `rors` VALUES
(37336, 'https://ror.org/031mmkk34', 'en', 1, 'https://ror.org/031mmkk34 Palms of Pasadena Hospital'),
(37337, 'https://ror.org/056mrrf04', 'en', 1, 'https://ror.org/056mrrf04 St. Luke''s Hospital'),
(37338, 'https://ror.org/054ykyc47', 'en', 1, 'https://ror.org/054ykyc47 Palo Verde Hospital'),
(37339, 'https://ror.org/0436hk567', 'no_lang_code', 1, 'https://ror.org/0436hk567 Karanda Mission Hospital'),
(37340, 'https://ror.org/01nkx9v56', 'en', 1, 'https://ror.org/01nkx9v56 Mease Countryside Hospital'),
(37341, 'https://ror.org/010bpy365', 'no_lang_code', 1, 'https://ror.org/010bpy365 Kwekwe General Hospital'),
(37342, 'https://ror.org/00np0kv70', 'en', 1, 'https://ror.org/00np0kv70 Mease Dunedin Hospital'),
(37343, 'https://ror.org/0188h2v81', 'en', 1, 'https://ror.org/0188h2v81 Patton State Hospital'),
(37344, 'https://ror.org/04esh0d76', 'en', 1, 'https://ror.org/04esh0d76 Melrose-Wakefield Hospital'),
(37345, 'https://ror.org/028203t96', 'en', 1, 'https://ror.org/028203t96 Peace Harbor Hospital'),
(37346, 'https://ror.org/01q2gyr74', 'no_lang_code', 1, 'https://ror.org/01q2gyr74 Mbuma Mission Hospital'),
(37347, 'https://ror.org/00yfewz72', 'en', 1, 'https://ror.org/00yfewz72 Piedmont Henry Hospital'),
(37348, 'https://ror.org/05gftk240', 'no_lang_code', 1, 'https://ror.org/05gftk240 Murambinda Mission Hospital'),
(37349, 'https://ror.org/0141vbw04', 'en', 1, 'https://ror.org/0141vbw04 Piedmont Newnan Hospital'),
(37350, 'https://ror.org/005x7q366', 'en', 1, 'https://ror.org/005x7q366 PIH Health Hospital'),
(37351, 'https://ror.org/03armkb15', 'en', 1, 'https://ror.org/03armkb15 Pomerado Hospital'),
(37352, 'https://ror.org/02pepyh86', 'en', 1, 'https://ror.org/02pepyh86 Preston University'),
(37353, 'https://ror.org/05eagfs92', 'en', 1, 'https://ror.org/05eagfs92 Slovak Environmental Agency'),
(37354, 'https://ror.org/025z8hh73', 'tr', 1, 'https://ror.org/025z8hh73 Suluova Devlet Hastanesi'),
(37355, 'https://ror.org/02ggsxt79', 'en', 1, 'https://ror.org/02ggsxt79 Beijing Health Vocational College'),
(37356, 'https://ror.org/00jp1zb22', 'en', 1, 'https://ror.org/00jp1zb22 Defence Metallurgical Research Laboratory'),
(37357, 'https://ror.org/02rf6w514', 'da', 1, 'https://ror.org/02rf6w514 Hou Maritime Idrætsefterskole'),
(37358, 'https://ror.org/04adqmv58', 'cs', 1, 'https://ror.org/04adqmv58 Centrum kardiovaskulární a transplantační chirurgie'),
(37359, 'https://ror.org/05r7nbf33', 'en', 1, 'https://ror.org/05r7nbf33 Skyline University College'),
(37360, 'https://ror.org/00tmaba41', 'en', 1, 'https://ror.org/00tmaba41 Montana Department of Corrections'),
(37361, 'https://ror.org/01sdfmp14', 'en', 1, 'https://ror.org/01sdfmp14 Berlin Partner for Business and Technology'),
(37362, 'https://ror.org/05vgg2c14', 'en', 1, 'https://ror.org/05vgg2c14 West Middlesex University Hospital'),
(37363, 'https://ror.org/0036ate90', 'en', 1, 'https://ror.org/0036ate90 Nuffield Orthopaedic Centre'),
(37364, 'https://ror.org/0170m4k80', 'en', 1, 'https://ror.org/0170m4k80 Los Angeles Pierce College'),
(37365, 'https://ror.org/03pmg8447', 'en', 1, 'https://ror.org/03pmg8447 Los Angeles City College'),
(37366, 'https://ror.org/0272wvz49', 'en', 1, 'https://ror.org/0272wvz49 Los Angeles Trade Technical College Universidad Comunitaria Vocacional–Técnica de Los Ángeles'),
(37367, 'https://ror.org/022dft797', 'en', 1, 'https://ror.org/022dft797 Los Angeles Valley College'),
(37368, 'https://ror.org/01kdxra28', 'en', 1, 'https://ror.org/01kdxra28 Academy of Sciences and Literature Akademie der Wissenschaften und der Literatur Mainz'),
(37369, 'https://ror.org/02h988s91', 'de', 1, 'https://ror.org/02h988s91 Ingenieure für das Bauwesen'),
(37370, 'https://ror.org/052z6qn75', 'no_lang_code', 1, 'https://ror.org/052z6qn75 FMP Technology (Germany)'),
(37371, 'https://ror.org/0094sxw24', 'no_lang_code', 1, 'https://ror.org/0094sxw24 InnoCentive (United States)'),
(37372, 'https://ror.org/05ssg5j36', 'de', 1, 'https://ror.org/05ssg5j36 Albertus-Magnus-Institut'),
(37373, 'https://ror.org/03zmadd59', 'en', 1, 'https://ror.org/03zmadd59 American Federation for Medical Research'),
(37374, 'https://ror.org/05cqqj259', 'en', 1, 'https://ror.org/05cqqj259 American Society of Transplantation'),
(37375, 'https://ror.org/01sd0e661', 'no_lang_code', 1, 'https://ror.org/01sd0e661 AMO (Germany)'),
(37376, 'https://ror.org/02bsh9z73', 'en', 1, 'https://ror.org/02bsh9z73 Curt Engelhorn Centre Archaeometry Curt-Engelhorn-Zentrum Archäometrie'),
(37377, 'https://ror.org/05gxyna29', 'en', 1, 'https://ror.org/05gxyna29 Frankfurt School of Finance & Management Hochschule für Bankwirtschaft'),
(37378, 'https://ror.org/001tbyf75', 'en', 1, 'https://ror.org/001tbyf75 Duchess Anna Amalia Library Herzogin Anna Amalia Bibliothek'),
(37379, 'https://ror.org/0306a8d50', 'en', 1, 'https://ror.org/0306a8d50 Annenberg Center for Health Sciences at Eisenhower'),
(37380, 'https://ror.org/00p1s4075', 'en', 1, 'https://ror.org/00p1s4075 Institut für Arbeitsrecht und Arbeitsbeziehungen in der Europäischen Union Institute for Labour Law and Industrial Relations in the European Union'),
(37381, 'https://ror.org/02fqn3k51', 'en', 1, 'https://ror.org/02fqn3k51 Academy of Arts Die Akademie der Künste'),
(37382, 'https://ror.org/0206aqk41', 'en', 1, 'https://ror.org/0206aqk41 Institut für die Geschichte der deutschen Juden Institute for the History of the German Jews'),
(37383, 'https://ror.org/05bxvzw76', 'en', 1, 'https://ror.org/05bxvzw76 Association of Organ Procurement Organizations'),
(37384, 'https://ror.org/0554mjv55', 'de', 1, 'https://ror.org/0554mjv55 Institut für EnergieTransformation'),
(37385, 'https://ror.org/0344nnn17', 'no_lang_code', 1, 'https://ror.org/0344nnn17 Total (Germany)'),
(37386, 'https://ror.org/00n3mcd10', 'de', 1, 'https://ror.org/00n3mcd10 Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen'),
(37387, 'https://ror.org/03wrq5388', 'de', 1, 'https://ror.org/03wrq5388 Institut für Grenzgebiete der Psychologie und Psychohygiene'),
(37388, 'https://ror.org/052gzq419', 'de', 1, 'https://ror.org/052gzq419 Hochschule für Jüdische Studien'),
(37389, 'https://ror.org/0266m8d62', 'de', 1, 'https://ror.org/0266m8d62 Frankfurter Goethe Haus – Freies Deutsches Hochstift'),
(37390, 'https://ror.org/000evwg49', 'en', 1, 'https://ror.org/000evwg49 Hochschule für Musik Franz Liszt Weimar University of Music FRANZ LISZT Weimar'),
(37391, 'https://ror.org/05256tw11', 'en', 1, 'https://ror.org/05256tw11 Cologne University of Music Hochschule für Musik und Tanz Köln'),
(37392, 'https://ror.org/05tvfb833', 'en', 1, 'https://ror.org/05tvfb833 Institut für Luft- und Kältetechnik Institute of Air Handling and Refrigeration'),
(37393, 'https://ror.org/01r70sq06', 'en', 1, 'https://ror.org/01r70sq06 Deutsches Forschungsinstitut für öffentliche Verwaltung German Research Institute for Public Administration'),
(37394, 'https://ror.org/055q5tj54', 'no_lang_code', 1, 'https://ror.org/055q5tj54 BioCer Entwicklungs (Germany)'),
(37395, 'https://ror.org/00bpta863', 'de', 1, 'https://ror.org/00bpta863 Leibniz-Zentrum für Literatur- und Kulturforschung'),
(37396, 'https://ror.org/023vb4t46', 'de', 1, 'https://ror.org/023vb4t46 Institut für Sächsische Geschichte und Volkskunde'),
(37397, 'https://ror.org/01yvp8p19', 'en', 1, 'https://ror.org/01yvp8p19 General Numerics Research Lab'),
(37398, 'https://ror.org/002c7zk35', 'en', 1, 'https://ror.org/002c7zk35 Eglin Air Force Base'),
(37399, 'https://ror.org/01p03pa87', 'de', 1, 'https://ror.org/01p03pa87 Brandenburgisches Landesamt für Denkmalpflege und Archäologisches Landesmuseum'),
(37400, 'https://ror.org/03fvtr511', 'en', 1, 'https://ror.org/03fvtr511 Hanscom Air Force Base'),
(37401, 'https://ror.org/03b9q7371', 'en', 1, 'https://ror.org/03b9q7371 Hochschule Neubrandenburg Neubrandenburg University of Applied Sciences'),
(37402, 'https://ror.org/058yg6182', 'en', 1, 'https://ror.org/058yg6182 Brandenburg Main State Archive Brandenburgisches Landeshauptarchiv'),
(37403, 'https://ror.org/02jxznk77', 'en', 1, 'https://ror.org/02jxznk77 Joint Base San Antonio'),
(37404, 'https://ror.org/02jy2nq64', 'en', 1, 'https://ror.org/02jy2nq64 Deutsches Institut für Kautschuktechnologie German Institute of Rubber Technology'),
(37405, 'https://ror.org/05x75gh12', 'en', 1, 'https://ror.org/05x75gh12 Deutsches Literaturarchiv German Literature Archive'),
(37406, 'https://ror.org/03bc1mz40', 'en', 1, 'https://ror.org/03bc1mz40 Ibero-American Institute Ibero-Amerikanisches Institut Instituto Ibero-Americano Patrimonio Cultural Prusiano'),
(37407, 'https://ror.org/00nx39s55', 'en', 1, 'https://ror.org/00nx39s55 Georg Kolbe Museum'),
(37408, 'https://ror.org/014zbcz37', 'en', 1, 'https://ror.org/014zbcz37 Korea Centre for Atmospheric Environment Research'),
(37409, 'https://ror.org/0593dvd47', 'en', 1, 'https://ror.org/0593dvd47 Deutsches Orient-Institut German Orient Foundation'),
(37410, 'https://ror.org/023mvn081', 'en', 1, 'https://ror.org/023mvn081 Mevlana University Hospital'),
(37411, 'https://ror.org/02wbjm117', 'en', 1, 'https://ror.org/02wbjm117 Bundesarchiv German Federal Archives'),
(37412, 'https://ror.org/05ejb6h88', 'en', 1, 'https://ror.org/05ejb6h88 Bundeskanzleramt German Federal Chancellery'),
(37413, 'https://ror.org/04kd0pe74', 'no_lang_code', 1, 'https://ror.org/04kd0pe74 CD-adapco (Germany)'),
(37414, 'https://ror.org/02fv99722', 'de', 1, 'https://ror.org/02fv99722 Germanisches Nationalmuseum'),
(37415, 'https://ror.org/05k5t2r42', 'de', 1, 'https://ror.org/05k5t2r42 Katholisches Klinikum Bochum'),
(37416, 'https://ror.org/04maxh374', 'en', 1, 'https://ror.org/04maxh374 Documenta Archive'),
(37417, 'https://ror.org/05evypg37', 'de', 1, 'https://ror.org/05evypg37 Integrierte Forschungs- und Behandlungszentren'),
(37418, 'https://ror.org/052tt7c68', 'de', 1, 'https://ror.org/052tt7c68 Carl Gustav Carus-Institut'),
(37419, 'https://ror.org/00b6j6x40', 'en', 1, 'https://ror.org/00b6j6x40 International Psychoanalytic University Berlin'),
(37420, 'https://ror.org/00egat183', 'de', 1, 'https://ror.org/00egat183 Gesellschaft zur Förderung der Naturwissenschaftlich-Technischen Forschung'),
(37421, 'https://ror.org/03hxbk195', 'de', 1, 'https://ror.org/03hxbk195 Kliniken der Stadt Köln'),
(37422, 'https://ror.org/051nfce45', 'de', 1, 'https://ror.org/051nfce45 Endokrinologikum'),
(37423, 'https://ror.org/03v958f45', 'de', 1, 'https://ror.org/03v958f45 Kliniken Essen-Mitte'),
(37424, 'https://ror.org/03bbqn881', 'de', 1, 'https://ror.org/03bbqn881 Gottfried Wilhelm Leibniz Bibliothek'),
(37425, 'https://ror.org/05kcrhm92', 'no_lang_code', 1, 'https://ror.org/05kcrhm92 Climate Risk Analysis (Germany)'),
(37426, 'https://ror.org/01tzaf675', 'de', 1, 'https://ror.org/01tzaf675 Joseph Haydn-Institut'),
(37427, 'https://ror.org/004hd5y14', 'en', 1, 'https://ror.org/004hd5y14 Leibniz Institute for Plasma Science and Technology Leibniz-Institut für Plasmaforschung und Technologie'),
(37428, 'https://ror.org/01kp9rn35', 'en', 1, 'https://ror.org/01kp9rn35 Jewish Museum Berlin Jüdisches Museum Berlin'),
(37429, 'https://ror.org/00nrggp23', 'de', 1, 'https://ror.org/00nrggp23 Klinikum Vest'),
(37430, 'https://ror.org/02dv3wb67', 'de', 1, 'https://ror.org/02dv3wb67 Kommission für Geschichte des Parlamentarismus und der politischen Parteien'),
(37431, 'https://ror.org/05cm0ff89', 'la', 1, 'https://ror.org/05cm0ff89 Monumenta Germaniae Historica'),
(37432, 'https://ror.org/02cdemf49', 'en', 1, 'https://ror.org/02cdemf49 European Liaison Office of the German Research Organisations Kooperationsstelle EU der Wissenschaftsorganisationen'),
(37433, 'https://ror.org/005c74108', 'de', 1, 'https://ror.org/005c74108 Polymet Jena'),
(37434, 'https://ror.org/00s21wr35', 'no_lang_code', 1, 'https://ror.org/00s21wr35 Polymer Standards Service (Germany)'),
(37435, 'https://ror.org/059ed8079', 'en', 1, 'https://ror.org/059ed8079 Alliance for European Diabetes Research'),
(37436, 'https://ror.org/01qgsj208', 'de', 1, 'https://ror.org/01qgsj208 Münchner Stadtbibliothek'),
(37437, 'https://ror.org/04cwrrv92', 'de', 1, 'https://ror.org/04cwrrv92 Praxis für Humangenetik'),
(37438, 'https://ror.org/04gtryb63', 'no_lang_code', 1, 'https://ror.org/04gtryb63 Life Science Center Düsseldorf (Germany)'),
(37439, 'https://ror.org/00b0t5r83', 'de', 1, 'https://ror.org/00b0t5r83 Kunst- und Museumsbibliothek der Stadt Köln'),
(37440, 'https://ror.org/02b8bdw43', 'de', 1, 'https://ror.org/02b8bdw43 Praxisklinik für Orthopädie, Unfall- und Neurochirurgie'),
(37441, 'https://ror.org/01d5ccc15', 'de', 1, 'https://ror.org/01d5ccc15 Literaturarchiv'),
(37442, 'https://ror.org/02kv9xm28', 'de', 1, 'https://ror.org/02kv9xm28 Archaeological Heritage Office in Saxony Landesamt für Archäologie Sachsen'),
(37443, 'https://ror.org/02k9k5a61', 'de', 1, 'https://ror.org/02k9k5a61 Landesamt für Denkmalpflege Hessen'),
(37444, 'https://ror.org/01ybxp914', 'de', 1, 'https://ror.org/01ybxp914 Landesamt für Denkmalpflege und Archäologie Sachsen-Anhalt'),
(37445, 'https://ror.org/050phcn63', 'de', 1, 'https://ror.org/050phcn63 LVR-Klinik Köln'),
(37446, 'https://ror.org/028j9tc52', 'de', 1, 'https://ror.org/028j9tc52 Niedersächsisches Institut für frühkindliche Bildung und Entwicklung'),
(37447, 'https://ror.org/05dtq3097', 'no_lang_code', 1, 'https://ror.org/05dtq3097 Senseonics (United States)'),
(37448, 'https://ror.org/00yv11a49', 'de', 1, 'https://ror.org/00yv11a49 Niedersächsisches Landesamt für Denkmalpflege'),
(37449, 'https://ror.org/00sj27p43', 'de', 1, 'https://ror.org/00sj27p43 Landesarchiv Nordrhein-Westfalen'),
(37450, 'https://ror.org/04g138p23', 'de', 1, 'https://ror.org/04g138p23 Niedersächsisches Landesarchiv'),
(37451, 'https://ror.org/01599c412', 'en', 1, 'https://ror.org/01599c412 Lower Saxony State Museum Niedersächsisches Landesmuseum Hannover'),
(37452, 'https://ror.org/00xv9sn23', 'de', 1, 'https://ror.org/00xv9sn23 Martin-Luther-Krankenhaus'),
(37453, 'https://ror.org/03mznce35', 'de', 1, 'https://ror.org/03mznce35 Regierungspräsidium Stuttgart'),
(37454, 'https://ror.org/014wzed86', 'no_lang_code', 1, 'https://ror.org/014wzed86 Smiths Group (United Kingdom)'),
(37455, 'https://ror.org/00a7y2r22', 'en', 1, 'https://ror.org/00a7y2r22 Reiss Engelhorn Museum Reiss-Engelhorn-Museen'),
(37456, 'https://ror.org/03x74qd84', 'de', 1, 'https://ror.org/03x74qd84 Landesarchiv Sachsen-Anhalt'),
(37457, 'https://ror.org/05tg3h152', 'no_lang_code', 1, 'https://ror.org/05tg3h152 Research Management Systems (United States)'),
(37458, 'https://ror.org/01t4pzq33', 'de', 1, 'https://ror.org/01t4pzq33 Max Bergmann Zentrum für Biomaterialien'),
(37459, 'https://ror.org/04wtxqn67', 'en', 1, 'https://ror.org/04wtxqn67 Dresden State Art Collections Staatliche Kunstsammlungen Dresden'),
(37460, 'https://ror.org/040yf2s15', 'de', 1, 'https://ror.org/040yf2s15 Landesmuseum Württemberg'),
(37461, 'https://ror.org/0515m2n86', 'en', 1, 'https://ror.org/0515m2n86 Max Planck Institute for Comparative Public Law and International Law Max-Planck-Institut für ausländisches öffentliches Recht und Völkerrecht'),
(37462, 'https://ror.org/023ahcz89', 'en', 1, 'https://ror.org/023ahcz89 Max Planck Institute for Comparative and International Private Law Max-Planck-Institut für Ausländisches und Internationales Privatrecht'),
(37463, 'https://ror.org/0426ffx42', 'en', 1, 'https://ror.org/0426ffx42 Pacific Research Institute'),
(37464, 'https://ror.org/04j6cwd10', 'no_lang_code', 1, 'https://ror.org/04j6cwd10 RLP AgroScience (Germany)'),
(37465, 'https://ror.org/02rtsfd15', 'en', 1, 'https://ror.org/02rtsfd15 Pädagogische Hochschule Freiburg University of Education Freiburg'),
(37466, 'https://ror.org/052q5nf15', 'en', 1, 'https://ror.org/052q5nf15 Five Continents Museum Staatliches Museum für Völkerkunde'),
(37467, 'https://ror.org/04e1yzk82', 'en', 1, 'https://ror.org/04e1yzk82 Robert Schumann Hochschule Robert Schumann University of Music and Media'),
(37468, 'https://ror.org/000rdbk18', 'en', 1, 'https://ror.org/000rdbk18 Max Planck Institute for Empirical Aesthetics Max-Planck-Institut für Empirische Ästhetik'),
(37469, 'https://ror.org/02mavc002', 'en', 1, 'https://ror.org/02mavc002 Max Planck Institute for Social Anthropology Max-Planck-Institut für Ethnologische Forschung'),
(37470, 'https://ror.org/023pfp970', 'de', 1, 'https://ror.org/023pfp970 Staatsarchiv Bremen'),
(37471, 'https://ror.org/05hq62676', 'en', 1, 'https://ror.org/05hq62676 Bamberg State Library Staatsbibliothek Bamberg'),
(37472, 'https://ror.org/01a62v145', 'en', 1, 'https://ror.org/01a62v145 Leibniz Institute of Vegetable and Ornamental Crops Leibniz-Institut für Gemüse- und Zierpflanzenbau'),
(37473, 'https://ror.org/037p86664', 'en', 1, 'https://ror.org/037p86664 Leibniz Institute for Crystal Growth Leibniz-Institut für Kristallzüchtung'),
(37474, 'https://ror.org/043bgwc02', 'de', 1, 'https://ror.org/043bgwc02 Stiftung Schleswig-Holsteinische Landesmuseen'),
(37475, 'https://ror.org/02wt6e634', 'en', 1, 'https://ror.org/02wt6e634 Leibniz Institute for Regional Geography Leibniz-Institut für Länderkunde'),
(37476, 'https://ror.org/02c46jq57', 'en', 1, 'https://ror.org/02c46jq57 Städel Museum Städelsches Kunstinstitut und Städtische Galerie'),
(37477, 'https://ror.org/040djv263', 'en', 1, 'https://ror.org/040djv263 Max Planck Institute for Molecular Biomedicine Max-Planck-Institut für Molekulare Biomedizin'),
(37478, 'https://ror.org/04vx4mk32', 'en', 1, 'https://ror.org/04vx4mk32 Leibniz Institute of Surface Engineering Leibniz-Institut für Oberflächenmodifizierung'),
(37479, 'https://ror.org/036d7m178', 'de', 1, 'https://ror.org/036d7m178 Klinikum Bielefeld'),
(37480, 'https://ror.org/01jdjjh55', 'de', 1, 'https://ror.org/01jdjjh55 Sächsisches Staatsarchiv'),
(37481, 'https://ror.org/000nwzp56', 'de', 1, 'https://ror.org/000nwzp56 Stadtarchiv Erfurt'),
(37482, 'https://ror.org/03gj2cq31', 'en', 1, 'https://ror.org/03gj2cq31 Max Planck Institute for Tax Law and Public Finance Max-Planck-Institut für Steuerrecht und Öffentliche Finanzen'),
(37483, 'https://ror.org/00y18kr09', 'de', 1, 'https://ror.org/00y18kr09 Stadtarchiv Gifhorn'),
(37484, 'https://ror.org/016jvas21', 'en', 1, 'https://ror.org/016jvas21 T1D Exchange'),
(37485, 'https://ror.org/00201ef63', 'de', 1, 'https://ror.org/00201ef63 Stadtarchiv Grevesmühlen'),
(37486, 'https://ror.org/045gv5c80', 'de', 1, 'https://ror.org/045gv5c80 Stadtarchiv Ibbenbüren'),
(37487, 'https://ror.org/01sx9kd33', 'de', 1, 'https://ror.org/01sx9kd33 Stadtarchiv Mainz'),
(37488, 'https://ror.org/02mxhgm70', 'de', 1, 'https://ror.org/02mxhgm70 Stadtarchiv Worms'),
(37489, 'https://ror.org/04s8e0q95', 'de', 1, 'https://ror.org/04s8e0q95 Stadtbibliothek Nürnberg'),
(37490, 'https://ror.org/04fe46645', 'en', 1, 'https://ror.org/04fe46645 University Hospital in Halle Universitätsklinikum Halle'),
(37491, 'https://ror.org/03bpan768', 'de', 1, 'https://ror.org/03bpan768 Thüringisches Hauptstaatsarchiv Weimar'),
(37492, 'https://ror.org/03efsge90', 'en', 1, 'https://ror.org/03efsge90 Steinbeis University Berlin Steinbeis-Hochschule Berlin'),
(37493, 'https://ror.org/05dvpaj72', 'en', 1, 'https://ror.org/05dvpaj72 The Rogosin Institute'),
(37494, 'https://ror.org/034hztf92', 'de', 1, 'https://ror.org/034hztf92 Hanseatic Wirtschaftsarchiv Stiftung Hanseatisches Wirtschaftsarchiv'),
(37495, 'https://ror.org/04e7zd380', 'en', 1, 'https://ror.org/04e7zd380 Berlin Central and Regional Library Zentral- und Landesbibliothek Berlin'),
(37496, 'https://ror.org/05nn38891', 'en', 1, 'https://ror.org/05nn38891 Prussian Palaces and Gardens Foundation Berlin Brandenburg Stiftung Preußische Schlösser und Gärten Berlin-Brandenburg'),
(37497, 'https://ror.org/05sqrfr79', 'en', 1, 'https://ror.org/05sqrfr79 Central Institute for Art History Zentralinstitut für Kunstgeschichte'),
(37498, 'https://ror.org/048vdhs48', 'de', 1, 'https://ror.org/048vdhs48 Common Library Network Verbundzentrale des GBV'),
(37499, 'https://ror.org/003xfve38', 'tr', 1, 'https://ror.org/003xfve38 Ankara Mevki Asker Hastanesi'),
(37500, 'https://ror.org/03p5ygk36', 'en', 1, 'https://ror.org/03p5ygk36 Lishui Maternity and Child Health Care Hospital'),
(37501, 'https://ror.org/029d98p07', 'en', 1, 'https://ror.org/029d98p07 Southampton Children''s Hospital'),
(37502, 'https://ror.org/048ym4d69', 'it', 1, 'https://ror.org/048ym4d69 Azienda USL di Pescara'),
(37503, 'https://ror.org/03d8y7214', 'en', 1, 'https://ror.org/03d8y7214 Yunnan Forestry Vocational and Technical College'),
(37504, 'https://ror.org/05d8s8843', 'no_lang_code', 1, 'https://ror.org/05d8s8843 Bruker (Canada)'),
(37505, 'https://ror.org/02cghc635', 'no_lang_code', 1, 'https://ror.org/02cghc635 Buchang Pharma (China)'),
(37506, 'https://ror.org/02zyv6x15', 'no_lang_code', 1, 'https://ror.org/02zyv6x15 Gibson Innovations (Belgium)'),
(37507, 'https://ror.org/04mc60a87', 'it', 1, 'https://ror.org/04mc60a87 Ospedale Buon Consiglio Fatebenefratelli'),
(37508, 'https://ror.org/017qjg066', 'en', 1, 'https://ror.org/017qjg066 Dahua Hospital'),
(37509, 'https://ror.org/02yjsqr32', 'de', 1, 'https://ror.org/02yjsqr32 Krankenhaus Oberndorf'),
(37510, 'https://ror.org/053ws4838', 'en', 1, 'https://ror.org/053ws4838 Airport Shunyi District Hospital'),
(37511, 'https://ror.org/04dm8yx03', 'en', 1, 'https://ror.org/04dm8yx03 North-West State Technical University'),
(37512, 'https://ror.org/021b6hf74', 'en', 1, 'https://ror.org/021b6hf74 Shanxi Taiyuan Jinkang Rheumatism Hospital'),
(37513, 'https://ror.org/01f6t6q54', 'no_lang_code', 1, 'https://ror.org/01f6t6q54 Emam Reza Hospital'),
(37514, 'https://ror.org/00dga6q15', 'en', 1, 'https://ror.org/00dga6q15 Dalian Jinzhou First People''s Hospital'),
(37515, 'https://ror.org/02jv8h741', 'ro', 1, 'https://ror.org/02jv8h741 Spitalul Clinic Dr. C. I. Parhon'),
(37516, 'https://ror.org/024vfsp92', 'en', 1, 'https://ror.org/024vfsp92 UPMC Presbyterian'),
(37517, 'https://ror.org/00726et14', 'en', 1, 'https://ror.org/00726et14 West China Second University Hospital of Sichuan University'),
(37518, 'https://ror.org/051jybk56', 'en', 1, 'https://ror.org/051jybk56 Henan Provincial Eye Hospital 河南省眼科研究所'),
(37519, 'https://ror.org/03hb33c79', 'en', 1, 'https://ror.org/03hb33c79 Gansu Provincial Cancer Hospital Gansu Provincial Academic Instiute for Medical Research 甘肃省医学科学研究院'),
(37520, 'https://ror.org/03f2jcq85', 'tr', 1, 'https://ror.org/03f2jcq85 Diyarbakır Gazi Yaşargil Eğitim ve Araştırma Hastanesi'),
(37521, 'https://ror.org/016k98t76', 'en', 1, 'https://ror.org/016k98t76 Nanjing Traditional Chinese Medicine Hospital'),
(37522, 'https://ror.org/01hv74g78', 'en', 1, 'https://ror.org/01hv74g78 Scripps Green Hospital'),
(37523, 'https://ror.org/032qsa580', 'en', 1, 'https://ror.org/032qsa580 Nishikawa Hospital'),
(37524, 'https://ror.org/04d25v571', 'no_lang_code', 1, 'https://ror.org/04d25v571 Cosmo Bio (Japan)'),
(37525, 'https://ror.org/0217s3a79', 'fr', 1, 'https://ror.org/0217s3a79 Centre Hospitalier Universitaire Yalgado Ouédraogo'),
(37526, 'https://ror.org/02w7pyj82', 'en', 1, 'https://ror.org/02w7pyj82 Priory Hospital Altrincham'),
(37527, 'https://ror.org/04m5dzp25', 'no_lang_code', 1, 'https://ror.org/04m5dzp25 Oida Hospital'),
(37528, 'https://ror.org/01rgpbf42', 'no_lang_code', 1, 'https://ror.org/01rgpbf42 Tianjin Hi-Tech Superconducting Electronic Technology (China)'),
(37529, 'https://ror.org/05vapw332', 'en', 1, 'https://ror.org/05vapw332 University clinical center of Republika Srpska'),
(37530, 'https://ror.org/05mfqj750', 'no_lang_code', 1, 'https://ror.org/05mfqj750 Weifang Chinese Medicine Hospital'),
(37531, 'https://ror.org/035wt7p80', 'en', 1, 'https://ror.org/035wt7p80 Shengli Oilfield Central Hospital'),
(37532, 'https://ror.org/0070zck46', 'no_lang_code', 1, 'https://ror.org/0070zck46 Aquatic Farms (United States)'),
(37533, 'https://ror.org/04fnhr972', 'en', 1, 'https://ror.org/04fnhr972 He Eye Hospital'),
(37534, 'https://ror.org/04ktat366', 'en', 1, 'https://ror.org/04ktat366 Helmholtz-Institut Münster Helmholtz-Institute Münster'),
(37535, 'https://ror.org/024thra40', 'en', 1, 'https://ror.org/024thra40 Helmholtz Institute Mainz Helmholtz-Institut Mainz'),
(37536, 'https://ror.org/042dsac10', 'en', 1, 'https://ror.org/042dsac10 Helmholtz Institute for Pharmaceutical Research Saarland Helmholtz-Institut für Pharmazeutische Forschung Saarland'),
(37537, 'https://ror.org/03cgmq069', 'no_lang_code', 1, 'https://ror.org/03cgmq069 DBV Technologies (France)'),
(37538, 'https://ror.org/04k6p0323', 'es', 1, 'https://ror.org/04k6p0323 Centro de Ciencias Penales y Política Criminal'),
(37539, 'https://ror.org/05s030550', 'no_lang_code', 1, 'https://ror.org/05s030550 Ablynx (Belgium)'),
(37540, 'https://ror.org/03327ex30', 'de', 1, 'https://ror.org/03327ex30 Bayerische Staatssammlung für Paläontologie und Geologie'),
(37541, 'https://ror.org/00y3by878', 'en', 1, 'https://ror.org/00y3by878 De Lin Institute of Technology 德霖技術學院'),
(37542, 'https://ror.org/016j6rk60', 'en', 1, 'https://ror.org/016j6rk60 Accra Technical University'),
(37543, 'https://ror.org/01teejf37', 'en', 1, 'https://ror.org/01teejf37 Defence Research and Development Laboratory रक्षा अनुसंधान एवं विकास प्रयोगशाला'),
(37544, 'https://ror.org/003f8ap84', 'en', 1, 'https://ror.org/003f8ap84 Cerro Coso Community College'),
(37545, 'https://ror.org/056cywe62', 'en', 1, 'https://ror.org/056cywe62 Defense Language Institute Foreign Language Center'),
(37546, 'https://ror.org/04bbesv37', 'en', 1, 'https://ror.org/04bbesv37 Adventist International Institute of Advanced Studies'),
(37547, 'https://ror.org/05enrfh93', 'en', 1, 'https://ror.org/05enrfh93 Chattahoochee Technical College'),
(37548, 'https://ror.org/053e9nw85', 'en', 1, 'https://ror.org/053e9nw85 Evangelical Theological Faculty Evangelische Theologische Faculteit Evangelische Theologische Faculteit Leuven Faculté de théologie évangélique de louvain'),
(37549, 'https://ror.org/04d5rm267', 'en', 1, 'https://ror.org/04d5rm267 Chesapeake College'),
(37550, 'https://ror.org/02d0cnn24', 'en', 1, 'https://ror.org/02d0cnn24 Agriculture Fisheries and Conservation Department Agriculture, Fisheries and Conservation Department 漁農自然護理署'),
(37551, 'https://ror.org/04t999r74', 'en', 1, 'https://ror.org/04t999r74 Department of Corrections'),
(37552, 'https://ror.org/03ccc5z68', 'de', 1, 'https://ror.org/03ccc5z68 Evangelische Hochschule Ludwigsburg'),
(37553, 'https://ror.org/03rkmps36', 'en', 1, 'https://ror.org/03rkmps36 Berlin School of Economics and Law Hochschule für Wirtschaft und Recht'),
(37554, 'https://ror.org/00kmqf908', 'en', 1, 'https://ror.org/00kmqf908 Christ the King Seminary'),
(37555, 'https://ror.org/030jqbn26', 'en', 1, 'https://ror.org/030jqbn26 Department of Health 衞生署'),
(37556, 'https://ror.org/01wzmsm36', 'en', 1, 'https://ror.org/01wzmsm36 Faulkner State Community College'),
(37557, 'https://ror.org/02twzqt54', 'en', 1, 'https://ror.org/02twzqt54 Fayetteville Technical Community College'),
(37558, 'https://ror.org/02sk5qk36', 'en', 1, 'https://ror.org/02sk5qk36 Alamance Community College'),
(37559, 'https://ror.org/0568w4770', 'en', 1, 'https://ror.org/0568w4770 Bible College of South Australia'),
(37560, 'https://ror.org/00ngt1q87', 'en', 1, 'https://ror.org/00ngt1q87 Biblical Theological Seminary'),
(37561, 'https://ror.org/0450swy91', 'en', 1, 'https://ror.org/0450swy91 All Hallows College'),
(37562, 'https://ror.org/04g6zen34', 'en', 1, 'https://ror.org/04g6zen34 Bibliotheca Hertziana - Max-Planck-Institut für Kunstgeschichte Bibliotheca Hertziana – Max Planck Institute for Art History'),
(37563, 'https://ror.org/0157zmb13', 'en', 1, 'https://ror.org/0157zmb13 Citrus College'),
(37564, 'https://ror.org/03545fq57', 'en', 1, 'https://ror.org/03545fq57 Comisión Federal de Comunicaciones Federal Communications Commission'),
(37565, 'https://ror.org/02qqqms67', 'fr', 1, 'https://ror.org/02qqqms67 Bibliothèque Nationale du Royaume du Maroc'),
(37566, 'https://ror.org/00k9r5g94', 'en', 1, 'https://ror.org/00k9r5g94 Technical College System of Georgia'),
(37567, 'https://ror.org/05mncca07', 'en', 1, 'https://ror.org/05mncca07 City and Islington College'),
(37568, 'https://ror.org/04cwzs398', 'en', 1, 'https://ror.org/04cwzs398 Alvin Community College'),
(37569, 'https://ror.org/05x3pnd66', 'en', 1, 'https://ror.org/05x3pnd66 City College Brighton & Hove City College Brighton and Hove'),
(37570, 'https://ror.org/04rb1tf06', 'en', 1, 'https://ror.org/04rb1tf06 City College Coventry'),
(37571, 'https://ror.org/01b1fn946', 'en', 1, 'https://ror.org/01b1fn946 American College, Madurai'),
(37572, 'https://ror.org/01rppxt60', 'en', 1, 'https://ror.org/01rppxt60 American Indian College'),
(37573, 'https://ror.org/05kwk4552', 'en', 1, 'https://ror.org/05kwk4552 American School of Classical Studies at Athens Αμερικανική Σχολή Κλασικών Σπουδών στην Αθήνα'),
(37574, 'https://ror.org/039rg3x29', 'en', 1, 'https://ror.org/039rg3x29 City of Bristol College'),
(37575, 'https://ror.org/0403nm782', 'en', 1, 'https://ror.org/0403nm782 American School of Milan'),
(37576, 'https://ror.org/035xenz28', 'en', 1, 'https://ror.org/035xenz28 American School of Warsaw'),
(37577, 'https://ror.org/00qbv9d45', 'en', 1, 'https://ror.org/00qbv9d45 Andover Newton Theological School'),
(37578, 'https://ror.org/02axqg987', 'en', 1, 'https://ror.org/02axqg987 Angelina College'),
(37579, 'https://ror.org/02fad4q52', 'en', 1, 'https://ror.org/02fad4q52 Appalachian Bible College'),
(37580, 'https://ror.org/01jq15d50', 'en', 1, 'https://ror.org/01jq15d50 Clover Park Technical College'),
(37581, 'https://ror.org/007hw6r71', 'de', 1, 'https://ror.org/007hw6r71 Archäologisches Landesmuseum Baden-Württemberg'),
(37582, 'https://ror.org/04f330m50', 'en', 1, 'https://ror.org/04f330m50 Clovis Community College'),
(37583, 'https://ror.org/03h4tn103', 'en', 1, 'https://ror.org/03h4tn103 Arkansas Public Service Commission'),
(37584, 'https://ror.org/04wnz4487', 'en', 1, 'https://ror.org/04wnz4487 Texas Health Arlington Memorial'),
(37585, 'https://ror.org/04gzw7t05', 'en', 1, 'https://ror.org/04gzw7t05 Coahoma Community College'),
(37586, 'https://ror.org/018baft35', 'en', 1, 'https://ror.org/018baft35 Cochise College'),
(37587, 'https://ror.org/034pj3s87', 'en', 1, 'https://ror.org/034pj3s87 Kazakh-Russian International University'),
(37588, 'https://ror.org/05ahxa252', 'en', 1, 'https://ror.org/05ahxa252 ASA University Bangladesh আশা বিশ্ববিদ্যালয় বাংলাদেশ'),
(37589, 'https://ror.org/026j3ke77', 'en', 1, 'https://ror.org/026j3ke77 Asbury Theological Seminary'),
(37590, 'https://ror.org/05hjjxp72', 'en', 1, 'https://ror.org/05hjjxp72 Asheville–Buncombe Technical Community College'),
(37591, 'https://ror.org/036bcm133', 'en', 1, 'https://ror.org/036bcm133 Asian Development Bank Bangko sa Pagpapaunlad ng Asya'),
(37592, 'https://ror.org/05yptg266', 'en', 1, 'https://ror.org/05yptg266 Asnuntuck Community College'),
(37593, 'https://ror.org/05xxpnn88', 'en', 1, 'https://ror.org/05xxpnn88 College of Biblical Studies'),
(37594, 'https://ror.org/05kx58550', 'en', 1, 'https://ror.org/05kx58550 College of Islamic and Arabic Studies كلية الدراسات الإسلامية والعربية'),
(37595, 'https://ror.org/04rqs6380', 'en', 1, 'https://ror.org/04rqs6380 College of Southern Idaho'),
(37596, 'https://ror.org/027697215', 'en', 1, 'https://ror.org/027697215 College of West Anglia'),
(37597, 'https://ror.org/05jfg8552', 'en', 1, 'https://ror.org/05jfg8552 Columbia Bible College'),
(37598, 'https://ror.org/05sy23e62', 'en', 1, 'https://ror.org/05sy23e62 Columbia Gorge Community College'),
(37599, 'https://ror.org/0368f8s77', 'en', 1, 'https://ror.org/0368f8s77 Atlanta Metropolitan College Atlanta Metropolitan State College'),
(37600, 'https://ror.org/01tphmj73', 'en', 1, 'https://ror.org/01tphmj73 Atlantic Cape Community College'),
(37601, 'https://ror.org/007xs6t35', 'en', 1, 'https://ror.org/007xs6t35 Community College of Aurora'),
(37602, 'https://ror.org/05n9fqb27', 'en', 1, 'https://ror.org/05n9fqb27 Community College of Denver'),
(37603, 'https://ror.org/03pf0yc39', 'en', 1, 'https://ror.org/03pf0yc39 Confederation College'),
(37604, 'https://ror.org/034r26m89', 'en', 1, 'https://ror.org/034r26m89 Contra Costa College'),
(37605, 'https://ror.org/04nkken68', 'de', 1, 'https://ror.org/04nkken68 Augustana-Hochschule Neuendettelsau'),
(37606, 'https://ror.org/005dgnw92', 'en', 1, 'https://ror.org/005dgnw92 Austin Presbyterian Theological Seminary'),
(37607, 'https://ror.org/01grd6v95', 'en', 1, 'https://ror.org/01grd6v95 Copper Mountain College'),
(37608, 'https://ror.org/020r4kx11', 'en', 1, 'https://ror.org/020r4kx11 Coquitlam College'),
(37609, 'https://ror.org/00q7xcw45', 'en', 1, 'https://ror.org/00q7xcw45 Australian Lutheran College'),
(37610, 'https://ror.org/023sbte93', 'en', 1, 'https://ror.org/023sbte93 Cosumnes River College'),
(37611, 'https://ror.org/04nxj7050', 'no_lang_code', 1, 'https://ror.org/04nxj7050 B. Braun (Germany)'),
(37612, 'https://ror.org/04xvv6376', 'en', 1, 'https://ror.org/04xvv6376 BA School of Business and Finance Banku Augstskola'),
(37613, 'https://ror.org/04s6nsa81', 'en', 1, 'https://ror.org/04s6nsa81 Covenant Theological Seminary'),
(37614, 'https://ror.org/01dv0vw10', 'en', 1, 'https://ror.org/01dv0vw10 Bahrain Polytechnic بوليتكنك البحرين'),
(37615, 'https://ror.org/00sm4bp25', 'en', 1, 'https://ror.org/00sm4bp25 Crafton Hills College'),
(37616, 'https://ror.org/00yk34w18', 'en', 1, 'https://ror.org/00yk34w18 Bainbridge State College'),
(37617, 'https://ror.org/00wqdg589', 'en', 1, 'https://ror.org/00wqdg589 Criswell College'),
(37618, 'https://ror.org/01n09m616', 'en', 1, 'https://ror.org/01n09m616 Bangladesh Agricultural Research Institute বাংলাদেশ কৃষি গবেষণা ইনস্টিটিউট'),
(37619, 'https://ror.org/01shra089', 'es', 1, 'https://ror.org/01shra089 Banco de la República Colombia'),
(37620, 'https://ror.org/03n73vq73', 'en', 1, 'https://ror.org/03n73vq73 Fourth Paradigm Institute'),
(37621, 'https://ror.org/02s49nq19', 'en', 1, 'https://ror.org/02s49nq19 Banner Lassen Medical Center'),
(37622, 'https://ror.org/03dd4nz58', 'en', 1, 'https://ror.org/03dd4nz58 Baptist Bible College'),
(37623, 'https://ror.org/002273w22', 'en', 1, 'https://ror.org/002273w22 Baptist College of Health Sciences'),
(37624, 'https://ror.org/02an0gw26', 'en', 1, 'https://ror.org/02an0gw26 Cumberland County College'),
(37625, 'https://ror.org/05ht4fz15', 'en', 1, 'https://ror.org/05ht4fz15 Barton Community College'),
(37626, 'https://ror.org/05xjkag81', 'en', 1, 'https://ror.org/05xjkag81 Cyprus College'),
(37627, 'https://ror.org/04hcs1a71', 'en', 1, 'https://ror.org/04hcs1a71 Bay State College'),
(37628, 'https://ror.org/00pffbm70', 'en', 1, 'https://ror.org/00pffbm70 Daegu Health College 대구보건대학교'),
(37629, 'https://ror.org/03051w252', 'de', 1, 'https://ror.org/03051w252 Bauernmuseum Bamberger Land'),
(37630, 'https://ror.org/046sh6j17', 'en', 1, 'https://ror.org/046sh6j17 Birla Institute of Technology and Science, Pilani - Goa Campus'),
(37631, 'https://ror.org/04szag615', 'en', 1, 'https://ror.org/04szag615 Dawson Community College'),
(37632, 'https://ror.org/02zvm4r30', 'en', 1, 'https://ror.org/02zvm4r30 Black Hawk College'),
(37633, 'https://ror.org/04qbta562', 'en', 1, 'https://ror.org/04qbta562 Department of Public'),
(37634, 'https://ror.org/02zbc1a16', 'en', 1, 'https://ror.org/02zbc1a16 Department of the Treasury'),
(37635, 'https://ror.org/02jnx6884', 'en', 1, 'https://ror.org/02jnx6884 Blackhawk Technical College'),
(37636, 'https://ror.org/049xxah85', 'en', 1, 'https://ror.org/049xxah85 Deutsche Gesellschaft für Auswärtige Politik German Council on Foreign Relations'),
(37637, 'https://ror.org/01abzeb36', 'en', 1, 'https://ror.org/01abzeb36 Bladen Community College'),
(37638, 'https://ror.org/02rw6sa19', 'en', 1, 'https://ror.org/02rw6sa19 Blue Ridge Community College'),
(37639, 'https://ror.org/034zes736', 'en', 1, 'https://ror.org/034zes736 Bluegrass Community and Technical College'),
(37640, 'https://ror.org/00we5be91', 'en', 1, 'https://ror.org/00we5be91 Deutsches Zentrum für Altersfragen German Centre of Gerontology'),
(37641, 'https://ror.org/00tavxp27', 'no_lang_code', 1, 'https://ror.org/00tavxp27 Syngenta (Belgium)'),
(37642, 'https://ror.org/006a04p80', 'en', 1, 'https://ror.org/006a04p80 Dodge City Community College'),
(37643, 'https://ror.org/038astr05', 'en', 1, 'https://ror.org/038astr05 Dominican House of Studies'),
(37644, 'https://ror.org/02zc5r772', 'en', 1, 'https://ror.org/02zc5r772 Box Hill Institute'),
(37645, 'https://ror.org/02jey0g96', 'en', 1, 'https://ror.org/02jey0g96 Bradford College, England'),
(37646, 'https://ror.org/01rkxa860', 'no_lang_code', 1, 'https://ror.org/01rkxa860 Dr. Reddy''s Laboratories (India) डॉ. रेड्डीज लेबोरेटरीज டா. ரெட்டீசு డా. రెడ్డీస్ ల్యాబ్స్ ಡಾ. ರೆಡ್ಡೀ''ಸ್ ಲ್ಯಾಬೋರೇಟರೀಸ್'),
(37647, 'https://ror.org/00gq58w69', 'en', 1, 'https://ror.org/00gq58w69 Brazilian Naval School Escola Naval'),
(37648, 'https://ror.org/051dggm19', 'en', 1, 'https://ror.org/051dggm19 Dublin Business School'),
(37649, 'https://ror.org/03qp5np35', 'en', 1, 'https://ror.org/03qp5np35 Bridgwater College'),
(37650, 'https://ror.org/0259gsa43', 'en', 1, 'https://ror.org/0259gsa43 Brigham Young University Hawaii Brigham Young University–Hawaii'),
(37651, 'https://ror.org/02c00pn47', 'en', 1, 'https://ror.org/02c00pn47 Durango Institute of Technology Instituto Tecnológico de Durango'),
(37652, 'https://ror.org/0435fd055', 'en', 1, 'https://ror.org/0435fd055 Britannia Royal Naval College'),
(37653, 'https://ror.org/013z3dx97', 'en', 1, 'https://ror.org/013z3dx97 Eastern Idaho Technical College'),
(37654, 'https://ror.org/01befse58', 'en', 1, 'https://ror.org/01befse58 Bryn Athyn College'),
(37655, 'https://ror.org/00f659030', 'en', 1, 'https://ror.org/00f659030 Bucks County Community College'),
(37656, 'https://ror.org/01sy5zn44', 'en', 1, 'https://ror.org/01sy5zn44 Bureau of Land Management'),
(37657, 'https://ror.org/03x0g5n48', 'en', 1, 'https://ror.org/03x0g5n48 Business School Lausanne'),
(37658, 'https://ror.org/02sh7hr68', 'en', 1, 'https://ror.org/02sh7hr68 Butler Community College'),
(37659, 'https://ror.org/004q90683', 'en', 1, 'https://ror.org/004q90683 Calvin Theological Seminary'),
(37660, 'https://ror.org/01pcm0w39', 'en', 1, 'https://ror.org/01pcm0w39 Canadian Forces College'),
(37661, 'https://ror.org/03e3wca31', 'en', 1, 'https://ror.org/03e3wca31 Canning College'),
(37662, 'https://ror.org/01kpwv903', 'no_lang_code', 1, 'https://ror.org/01kpwv903 Capital Fund Management (France)'),
(37663, 'https://ror.org/03mq2bd64', 'en', 1, 'https://ror.org/03mq2bd64 Carilion New River Valley Medical Center'),
(37664, 'https://ror.org/01wgg9r40', 'en', 1, 'https://ror.org/01wgg9r40 Carroll Community College'),
(37665, 'https://ror.org/01gsyn886', 'en', 1, 'https://ror.org/01gsyn886 Casper College'),
(37666, 'https://ror.org/030hd3e53', 'en', 1, 'https://ror.org/030hd3e53 Catawba Valley Community College'),
(37667, 'https://ror.org/02t5j7398', 'en', 1, 'https://ror.org/02t5j7398 Cedar Valley College'),
(37668, 'https://ror.org/04qwxfa96', 'en', 1, 'https://ror.org/04qwxfa96 Central Alabama Community College'),
(37669, 'https://ror.org/03c9ncn37', 'en', 1, 'https://ror.org/03c9ncn37 Wuhan National Laboratory for Optoelectronics'),
(37670, 'https://ror.org/02dyzf078', 'en', 1, 'https://ror.org/02dyzf078 Central Baptist College'),
(37671, 'https://ror.org/007x12q48', 'en', 1, 'https://ror.org/007x12q48 Central Carolina Community College'),
(37672, 'https://ror.org/01hh45364', 'en', 1, 'https://ror.org/01hh45364 Central Electronics Engineering Research Institute केन् द्रीय इलेक् ट्रोनिकी अभियांत्रिकी अनुसंधान संस् थान (सीरी)'),
(37673, 'https://ror.org/02zww6317', 'en', 1, 'https://ror.org/02zww6317 Central Institute of Indian Languages केन्द्रीय भारतीय भाषा संस्थान କେନ୍ଦ୍ରୀୟ ଭାରତୀୟ ଭାଷା ପ୍ରତିଷ୍ଠାନ இந்திய மொழிகளின் நடுவண் நிறுவனம்'),
(37674, 'https://ror.org/03jexcz37', 'en', 1, 'https://ror.org/03jexcz37 Central Institute of Technology'),
(37675, 'https://ror.org/04rx3a489', 'en', 1, 'https://ror.org/04rx3a489 Central Lakes College'),
(37676, 'https://ror.org/01e2adt21', 'en', 1, 'https://ror.org/01e2adt21 School of Business and Management'),
(37677, 'https://ror.org/0458ana96', 'fr', 1, 'https://ror.org/0458ana96 Institut Français de la Brasserie et de la Malterie Institut Français des Boissons, de la Brasserie et de la Malterie'),
(37678, 'https://ror.org/03d436n40', 'en', 1, 'https://ror.org/03d436n40 Florida Coastal School of Law'),
(37679, 'https://ror.org/02hfm7873', 'de', 1, 'https://ror.org/02hfm7873 Focke Museum'),
(37680, 'https://ror.org/04qyb2227', 'no_lang_code', 1, 'https://ror.org/04qyb2227 Foley Hoag (United States)'),
(37681, 'https://ror.org/05tn97j65', 'en', 1, 'https://ror.org/05tn97j65 Folsom Lake College'),
(37682, 'https://ror.org/03sygwm20', 'en', 1, 'https://ror.org/03sygwm20 Emilio Aguinaldo College Kolehiyong Emilio Aguinaldo'),
(37683, 'https://ror.org/05wweqh04', 'en', 1, 'https://ror.org/05wweqh04 Emirates College for Advanced Education'),
(37684, 'https://ror.org/01t8rk370', 'en', 1, 'https://ror.org/01t8rk370 Auswärtiges Amt Federal Foreign Office'),
(37685, 'https://ror.org/00het1s45', 'en', 1, 'https://ror.org/00het1s45 Forsyth Technical Community College'),
(37686, 'https://ror.org/03r400k37', 'en', 1, 'https://ror.org/03r400k37 Frank Phillips College'),
(37687, 'https://ror.org/03mned672', 'en', 1, 'https://ror.org/03mned672 Marienfelde Refugee Center Museum'),
(37688, 'https://ror.org/035f23321', 'de', 1, 'https://ror.org/035f23321 Frobenius Institute for Research in Cultural Anthropology Frobenius-Institut'),
(37689, 'https://ror.org/02f2p8175', 'en', 1, 'https://ror.org/02f2p8175 Front Range Community College'),
(37690, 'https://ror.org/00t8j2x68', 'en', 1, 'https://ror.org/00t8j2x68 Eston College'),
(37691, 'https://ror.org/01rwv5z20', 'en', 1, 'https://ror.org/01rwv5z20 Garda Síochána College'),
(37692, 'https://ror.org/01hr9q823', 'en', 1, 'https://ror.org/01hr9q823 Gaston College'),
(37693, 'https://ror.org/037wp0751', 'en', 1, 'https://ror.org/037wp0751 Gratz College'),
(37694, 'https://ror.org/00x11zg33', 'en', 1, 'https://ror.org/00x11zg33 Gateway Community and Technical College'),
(37695, 'https://ror.org/05tn9zh92', 'en', 1, 'https://ror.org/05tn9zh92 Gavilan College'),
(37696, 'https://ror.org/038m8dc24', 'en', 1, 'https://ror.org/038m8dc24 Great Basin College'),
(37697, 'https://ror.org/02pvadn84', 'de', 1, 'https://ror.org/02pvadn84 Geisteswissenschaftliche Zentren Berlin'),
(37698, 'https://ror.org/02ntagd75', 'en', 1, 'https://ror.org/02ntagd75 Great Lakes Christian College'),
(37699, 'https://ror.org/036vdb341', 'en', 1, 'https://ror.org/036vdb341 Hopkinsville Community College'),
(37700, 'https://ror.org/04qqnyh49', 'de', 1, 'https://ror.org/04qqnyh49 Hessisches Landesmuseum Darmstadt'),
(37701, 'https://ror.org/017vpw228', 'en', 1, 'https://ror.org/017vpw228 Great Plains College'),
(37702, 'https://ror.org/01sjjfh02', 'en', 1, 'https://ror.org/01sjjfh02 Horizon College and Seminary'),
(37703, 'https://ror.org/02r3v8c94', 'en', 1, 'https://ror.org/02r3v8c94 Housatonic Community College'),
(37704, 'https://ror.org/051q8jk17', 'en', 1, 'https://ror.org/051q8jk17 Higher Technological Institute المعهد التكنولوجي العالي'),
(37705, 'https://ror.org/00qbe9m93', 'en', 1, 'https://ror.org/00qbe9m93 Howard College'),
(37706, 'https://ror.org/02mxywv89', 'en', 1, 'https://ror.org/02mxywv89 Highland Community College - Illinois'),
(37707, 'https://ror.org/045yjdg59', 'en', 1, 'https://ror.org/045yjdg59 Hill College'),
(37708, 'https://ror.org/045akps60', 'en', 1, 'https://ror.org/045akps60 Hudson County Community College'),
(37709, 'https://ror.org/0162adx59', 'en', 1, 'https://ror.org/0162adx59 Hull College'),
(37710, 'https://ror.org/03x72q350', 'en', 1, 'https://ror.org/03x72q350 Gwangju Health University 광주보건대학교'),
(37711, 'https://ror.org/008t32k41', 'en', 1, 'https://ror.org/008t32k41 Hun School of Princeton'),
(37712, 'https://ror.org/045gdxt02', 'de', 1, 'https://ror.org/045gdxt02 Hochschule für bildende Künste University of Fine Arts in Hamburg'),
(37713, 'https://ror.org/03b9s4g93', 'en', 1, 'https://ror.org/03b9s4g93 Hutchinson Community College'),
(37714, 'https://ror.org/04wqsqf86', 'en', 1, 'https://ror.org/04wqsqf86 Dresden Academy of Fine Arts Hochschule für Bildende Künste Dresden'),
(37715, 'https://ror.org/04d5fry87', 'no_lang_code', 1, 'https://ror.org/04d5fry87 Hyejeon College 혜전대학교'),
(37716, 'https://ror.org/03ec28972', 'en', 1, 'https://ror.org/03ec28972 Hamburg Institute for Social Research Hamburger Institut für Sozialforschung'),
(37717, 'https://ror.org/03hzkp562', 'de', 1, 'https://ror.org/03hzkp562 Academy of Visual Arts Leipzig Hochschule für Grafik und Buchkunst Leipzig'),
(37718, 'https://ror.org/024pdem44', 'en', 1, 'https://ror.org/024pdem44 Hyogo University 兵庫大学'),
(37719, 'https://ror.org/028fzwe08', 'fr', 1, 'https://ror.org/028fzwe08 Laboratoire des Procédés en Milieux Granulaires Granulaires'),
(37720, 'https://ror.org/00xnq7h44', 'de', 1, 'https://ror.org/00xnq7h44 Hochschule für Künste im Sozialen'),
(37721, 'https://ror.org/0520whs57', 'en', 1, 'https://ror.org/0520whs57 IBAT College'),
(37722, 'https://ror.org/03fgkm950', 'en', 1, 'https://ror.org/03fgkm950 Harcum College'),
(37723, 'https://ror.org/0332xca13', 'en', 1, 'https://ror.org/0332xca13 Ibn Sina National College for Medical Studies كلية ابن سينا'),
(37724, 'https://ror.org/05y3c0716', 'en', 1, 'https://ror.org/05y3c0716 Harrogate and District NHS Foundation Trust'),
(37725, 'https://ror.org/01bqcs587', 'en', 1, 'https://ror.org/01bqcs587 Holy Apostles College and Seminary'),
(37726, 'https://ror.org/0185jey51', 'fr', 1, 'https://ror.org/0185jey51 French for School of High Studies in Engineering Hautes Études d''Ingénieur'),
(37727, 'https://ror.org/02qhzp658', 'en', 1, 'https://ror.org/02qhzp658 Hawaii Tokai International College'),
(37728, 'https://ror.org/02qsgha90', 'en', 1, 'https://ror.org/02qsgha90 General Theological Seminary'),
(37729, 'https://ror.org/03hjp7620', 'en', 1, 'https://ror.org/03hjp7620 Central Party School of the Communist Party of China 中共中央党校'),
(37730, 'https://ror.org/04h9z0906', 'en', 1, 'https://ror.org/04h9z0906 Central Piedmont Community College'),
(37731, 'https://ror.org/05ey71f27', 'en', 1, 'https://ror.org/05ey71f27 George C. Marshall European Center for Security Studies George C. Marshall Europäisches Zentrum für Sicherheitsstudien'),
(37732, 'https://ror.org/039mdjd71', 'en', 1, 'https://ror.org/039mdjd71 Central Texas College'),
(37733, 'https://ror.org/027q1ta90', 'en', 1, 'https://ror.org/027q1ta90 Georgia Military College'),
(37734, 'https://ror.org/03asvq815', 'en', 1, 'https://ror.org/03asvq815 Central University of Kashmir कश्मीर केन्द्रीय विश्वविद्यालय'),
(37735, 'https://ror.org/02hkfs074', 'en', 1, 'https://ror.org/02hkfs074 Helderberg College'),
(37736, 'https://ror.org/03vxb8t23', 'en', 1, 'https://ror.org/03vxb8t23 Hellenic College Holy Cross Greek Orthodox School of Theology Hellenic College and Holy Cross Greek Orthodox School of Theology'),
(37737, 'https://ror.org/05bsmsd63', 'en', 1, 'https://ror.org/05bsmsd63 Central Wyoming College'),
(37738, 'https://ror.org/03ty9wj75', 'de', 1, 'https://ror.org/03ty9wj75 Leibniz-Zentrum Moderner Orient'),
(37739, 'https://ror.org/00s13br28', 'en', 1, 'https://ror.org/00s13br28 Henan Normal University 河南师范大学'),
(37740, 'https://ror.org/05gjbhz21', 'en', 1, 'https://ror.org/05gjbhz21 Biblioteca del Condado de Hennepin Hennepin County Library'),
(37741, 'https://ror.org/05xng5k36', 'en', 1, 'https://ror.org/05xng5k36 Collège héritage Heritage College'),
(37742, 'https://ror.org/01mgdzc49', 'en', 1, 'https://ror.org/01mgdzc49 Centre for Quantum Technologies'),
(37743, 'https://ror.org/057gs9r51', 'en', 1, 'https://ror.org/057gs9r51 Glion Institute of Higher Education Institut de hautes études de glion'),
(37744, 'https://ror.org/03py58635', 'en', 1, 'https://ror.org/03py58635 Global Public Policy Institute'),
(37745, 'https://ror.org/02tvj3q58', 'fr', 1, 'https://ror.org/02tvj3q58 Centre National des Sciences et Technologies Nucléaires'),
(37746, 'https://ror.org/009p5nb11', 'fr', 1, 'https://ror.org/009p5nb11 Centre de Référence Déficits Immunitaires Héréditaires'),
(37747, 'https://ror.org/01y60ry16', 'en', 1, 'https://ror.org/01y60ry16 Gateway Seminary'),
(37748, 'https://ror.org/009bjed14', 'en', 1, 'https://ror.org/009bjed14 Goodwin College'),
(37749, 'https://ror.org/004gk0w56', 'en', 1, 'https://ror.org/004gk0w56 Gordon College Gordon State College'),
(37750, 'https://ror.org/039kas258', 'en', 1, 'https://ror.org/039kas258 Imperial Valley College'),
(37751, 'https://ror.org/014ycqe77', 'fr', 1, 'https://ror.org/014ycqe77 Institut d''Économie Publique'),
(37752, 'https://ror.org/02t36nw30', 'en', 1, 'https://ror.org/02t36nw30 Independence Community College'),
(37753, 'https://ror.org/0177s1090', 'es', 1, 'https://ror.org/0177s1090 Instituto Tecnológico de Nogales'),
(37754, 'https://ror.org/01hfvpj82', 'en', 1, 'https://ror.org/01hfvpj82 Indian Institute of Advanced Study इंडियन इंस्टीट्यूट आफ एडवांस्ड स्टडी'),
(37755, 'https://ror.org/00ca9p538', 'es', 1, 'https://ror.org/00ca9p538 Instituto Tecnológico de Querétaro Technological Institute of Querétaro'),
(37756, 'https://ror.org/00r80q412', 'en', 1, 'https://ror.org/00r80q412 Research Centre for Eastern and South Eastern Europe Wissenschaftszentrum Ost- und Südosteuropa Regensburg');
INSERT INTO `rors` VALUES
(37757, 'https://ror.org/04vbyvm90', 'es', 1, 'https://ror.org/04vbyvm90 Instituto Tecnológico de Saltillo Technological Institute of Saltillo'),
(37758, 'https://ror.org/02v3n9z83', 'en', 1, 'https://ror.org/02v3n9z83 ISG Institute for Social Research Institut für Sozialforschung und Gesellschaftspolitik'),
(37759, 'https://ror.org/024nzz449', 'de', 1, 'https://ror.org/024nzz449 Institut für Sozialforschung und Sozialwirtschaft'),
(37760, 'https://ror.org/006je8v76', 'fr', 1, 'https://ror.org/006je8v76 Institut de Biochimie et Biophysique Moléculaire et Cellulaire'),
(37761, 'https://ror.org/00qryer39', 'en', 1, 'https://ror.org/00qryer39 International Institute of Information Technology अंतर्राष्ट्रीय सूचना प्रौद्योगिकी संस्थान, भुवनेश्वर'),
(37762, 'https://ror.org/027t6ka17', 'en', 1, 'https://ror.org/027t6ka17 Indian School of Business इंडियन स्कूल ऑफ बिजनेस ఇండియన్ స్కూల్ ఆఫ్ బిజినెస్ ಇಂಡಿಯನ್ ಸ್ಕೂಲ್ ಆಫ್ ಬಿಸಿನೆಸ್'),
(37763, 'https://ror.org/03tebpn36', 'en', 1, 'https://ror.org/03tebpn36 International Labour Organization Internationale Arbeitsorganisation Organisation internationale du travail Organizzazione internazionale del lavoro'),
(37764, 'https://ror.org/021bx9h20', 'en', 1, 'https://ror.org/021bx9h20 Inver Hills Community College'),
(37765, 'https://ror.org/03y150857', 'en', 1, 'https://ror.org/03y150857 Irvine Valley College'),
(37766, 'https://ror.org/022sv5w75', 'en', 1, 'https://ror.org/022sv5w75 Islamic Azad University of Ahar دانشگاه آزاد اسلامی واحد اهر'),
(37767, 'https://ror.org/04q9bek18', 'en', 1, 'https://ror.org/04q9bek18 Isothermal Community College'),
(37768, 'https://ror.org/047pt5178', 'en', 1, 'https://ror.org/047pt5178 Institute of Problems of Mechanical Engineering Федеральное государственное бюджетное учреждение науки Институт проблем машиностроения Российской академии наук'),
(37769, 'https://ror.org/04ygnx468', 'en', 1, 'https://ror.org/04ygnx468 Johnston Community College'),
(37770, 'https://ror.org/04q3mp532', 'en', 1, 'https://ror.org/04q3mp532 Institute of Mathematics Інститут математики НАН України Институт математики НАН Украины'),
(37771, 'https://ror.org/04v8qfb10', 'en', 1, 'https://ror.org/04v8qfb10 Jakarta State Polytechnic Politeknik Negeri Jakarta Politèknik Negri Jakarta'),
(37772, 'https://ror.org/04f0f7630', 'en', 1, 'https://ror.org/04f0f7630 Centro Conjunto de Advertencia de Tifones Joint Typhoon Warning Center'),
(37773, 'https://ror.org/03zrmej96', 'en', 1, 'https://ror.org/03zrmej96 Jefferson Community and Technical College'),
(37774, 'https://ror.org/05htdfq36', 'en', 1, 'https://ror.org/05htdfq36 Jefferson Davis Community College'),
(37775, 'https://ror.org/05gbyky62', 'en', 1, 'https://ror.org/05gbyky62 Institute of Radio-Engineering and Electronics Институт радиотехники и электроники им. В. А. Котельникова РАН'),
(37776, 'https://ror.org/02dm0bq25', 'fr', 1, 'https://ror.org/02dm0bq25 Institut de Transplantation Urologie en Nephrologie'),
(37777, 'https://ror.org/01rw40d12', 'en', 1, 'https://ror.org/01rw40d12 Jubail Industrial College كلية الجبيل الصناعية'),
(37778, 'https://ror.org/01v2fcr49', 'de', 1, 'https://ror.org/01v2fcr49 Jura-Museum Eichstätt'),
(37779, 'https://ror.org/0514c4d93', 'en', 1, 'https://ror.org/0514c4d93 Kanagawa Dental University 神奈川歯科大学'),
(37780, 'https://ror.org/03nk70a85', 'en', 1, 'https://ror.org/03nk70a85 Kangan Institute'),
(37781, 'https://ror.org/02ckz2f26', 'en', 1, 'https://ror.org/02ckz2f26 Kansas City Kansas Community College'),
(37782, 'https://ror.org/0509e3289', 'en', 1, 'https://ror.org/0509e3289 Instituto Nacional de Antropología e Historia National Institute of Anthropology and History'),
(37783, 'https://ror.org/01v6q6r30', 'en', 1, 'https://ror.org/01v6q6r30 Lackawanna College'),
(37784, 'https://ror.org/04r2bq949', 'no_lang_code', 1, 'https://ror.org/04r2bq949 Kaplan (United States) Kaplan international colleges'),
(37785, 'https://ror.org/04pkdxp64', 'en', 1, 'https://ror.org/04pkdxp64 Laidlaw College'),
(37786, 'https://ror.org/03d6j2008', 'en', 1, 'https://ror.org/03d6j2008 Lake Superior College'),
(37787, 'https://ror.org/01bnqts78', 'en', 1, 'https://ror.org/01bnqts78 Lake Washington Institute of Technology'),
(37788, 'https://ror.org/04dh6fw56', 'en', 1, 'https://ror.org/04dh6fw56 Instituto Tecnológico de Jiquilpan Technological Institute of Jiquilpan'),
(37789, 'https://ror.org/01af24v42', 'es', 1, 'https://ror.org/01af24v42 Instituto Tecnológico de Mérida'),
(37790, 'https://ror.org/02bd3qj97', 'en', 1, 'https://ror.org/02bd3qj97 Kensington College of Business'),
(37791, 'https://ror.org/05mpkhc90', 'de', 1, 'https://ror.org/05mpkhc90 LVR-Industriemuseum'),
(37792, 'https://ror.org/00akpdm49', 'de', 1, 'https://ror.org/00akpdm49 Ludwig Forum für Internationale Kunst'),
(37793, 'https://ror.org/01k6cft19', 'en', 1, 'https://ror.org/01k6cft19 Laney College'),
(37794, 'https://ror.org/02az15671', 'en', 1, 'https://ror.org/02az15671 Kilgore College'),
(37795, 'https://ror.org/00sd35b30', 'en', 1, 'https://ror.org/00sd35b30 Luzerne County Community College'),
(37796, 'https://ror.org/05ga7sz51', 'en', 1, 'https://ror.org/05ga7sz51 King''s Inns Óstaí an Rí'),
(37797, 'https://ror.org/05r7dwa03', 'en', 1, 'https://ror.org/05r7dwa03 Lanier Technical College'),
(37798, 'https://ror.org/005tsjq27', 'en', 1, 'https://ror.org/005tsjq27 Las Positas College'),
(37799, 'https://ror.org/04kvfjw03', 'en', 1, 'https://ror.org/04kvfjw03 Madras Institute of Development Studies சென்னை வளர்ச்சி ஆராய்ச்சி நிறுவனம்'),
(37800, 'https://ror.org/05jhctt84', 'en', 1, 'https://ror.org/05jhctt84 Malaysia Theological Seminary'),
(37801, 'https://ror.org/04rrkhs81', 'en', 1, 'https://ror.org/04rrkhs81 Manchester Academic Health Science Centre'),
(37802, 'https://ror.org/025fme611', 'en', 1, 'https://ror.org/025fme611 Lewisham College Lewisham Southwark College'),
(37803, 'https://ror.org/03at7j224', 'en', 1, 'https://ror.org/03at7j224 Manhattan Christian College'),
(37804, 'https://ror.org/051axz542', 'en', 1, 'https://ror.org/051axz542 Manor College'),
(37805, 'https://ror.org/0519cg026', 'en', 1, 'https://ror.org/0519cg026 Knox Theological Seminary'),
(37806, 'https://ror.org/03bqbw279', 'en', 1, 'https://ror.org/03bqbw279 Lexington Theological Seminary'),
(37807, 'https://ror.org/02ngzgx62', 'en', 1, 'https://ror.org/02ngzgx62 Bibliothèque du Parlement Library of Parliament'),
(37808, 'https://ror.org/040rd2b57', 'no_lang_code', 1, 'https://ror.org/040rd2b57 Mapúa University Suriang Mapúa ng Teknolohiya'),
(37809, 'https://ror.org/05btn9560', 'en', 1, 'https://ror.org/05btn9560 Korean Intellectual Property Office 대한민국 특허청'),
(37810, 'https://ror.org/04kthgc59', 'en', 1, 'https://ror.org/04kthgc59 Criminological Research Institute of Lower Saxony Kriminologisches Forschungsinstitut Niedersachsen'),
(37811, 'https://ror.org/008zh9d08', 'en', 1, 'https://ror.org/008zh9d08 Maria College'),
(37812, 'https://ror.org/01j1n1798', 'en', 1, 'https://ror.org/01j1n1798 London School of Business and Management'),
(37813, 'https://ror.org/044vzkq25', 'en', 1, 'https://ror.org/044vzkq25 Marion Military Institute'),
(37814, 'https://ror.org/02967z527', 'de', 1, 'https://ror.org/02967z527 Kunsthistorisches Institut in Florenz'),
(37815, 'https://ror.org/02qx7s056', 'en', 1, 'https://ror.org/02qx7s056 Marymount California University Marymount College, Palos Verdes'),
(37816, 'https://ror.org/0069hee22', 'en', 1, 'https://ror.org/0069hee22 Kuyper College'),
(37817, 'https://ror.org/011rcn817', 'en', 1, 'https://ror.org/011rcn817 Massasoit Community College'),
(37818, 'https://ror.org/028nyzb21', 'en', 1, 'https://ror.org/028nyzb21 Los Angeles Harbor College'),
(37819, 'https://ror.org/01stcbz02', 'en', 1, 'https://ror.org/01stcbz02 Los Angeles Mission College'),
(37820, 'https://ror.org/043z25g17', 'en', 1, 'https://ror.org/043z25g17 Louisiana State University of Alexandria Université d''État de Louisiane à Alexandria'),
(37821, 'https://ror.org/02rfxzc53', 'en', 1, 'https://ror.org/02rfxzc53 Louisville Presbyterian Theological Seminary'),
(37822, 'https://ror.org/03vp67w60', 'en', 1, 'https://ror.org/03vp67w60 Max Planck Institute for Social Law and Social Policy Max-Planck-Institut für Sozialrecht und Sozialpolitik'),
(37823, 'https://ror.org/053yb3j55', 'en', 1, 'https://ror.org/053yb3j55 Collège loyaliste Loyalist College'),
(37824, 'https://ror.org/033d6zz21', 'en', 1, 'https://ror.org/033d6zz21 McCormick Theological Seminary'),
(37825, 'https://ror.org/05nf32076', 'en', 1, 'https://ror.org/05nf32076 McLennan Community College'),
(37826, 'https://ror.org/04wrg1d30', 'en', 1, 'https://ror.org/04wrg1d30 Max Planck Research Unit for Enzymology of Protein Folding Max-Planck-Forschungsstelle für Enzymologie der Proteinfaltung'),
(37827, 'https://ror.org/01ffjs081', 'fr', 1, 'https://ror.org/01ffjs081 Ecologie & Evolution'),
(37828, 'https://ror.org/02ch3jz57', 'en', 1, 'https://ror.org/02ch3jz57 Memphis Theological Seminary'),
(37829, 'https://ror.org/016b0by26', 'en', 1, 'https://ror.org/016b0by26 Monroe County Community College'),
(37830, 'https://ror.org/005yz5976', 'en', 1, 'https://ror.org/005yz5976 Merced College'),
(37831, 'https://ror.org/05nd97262', 'en', 1, 'https://ror.org/05nd97262 Mercer County Community College'),
(37832, 'https://ror.org/00hmhc458', 'en', 1, 'https://ror.org/00hmhc458 Montcalm Community College'),
(37833, 'https://ror.org/00ea8xx02', 'en', 1, 'https://ror.org/00ea8xx02 Merritt College'),
(37834, 'https://ror.org/02hc4dw24', 'en', 1, 'https://ror.org/02hc4dw24 Montgomery High School'),
(37835, 'https://ror.org/01s26xz84', 'en', 1, 'https://ror.org/01s26xz84 Mesabi Range College'),
(37836, 'https://ror.org/01zzpyg63', 'en', 1, 'https://ror.org/01zzpyg63 Moreno Valley College'),
(37837, 'https://ror.org/045155251', 'en', 1, 'https://ror.org/045155251 Morgan Community College'),
(37838, 'https://ror.org/022wwx668', 'en', 1, 'https://ror.org/022wwx668 Morristown Beard School Morristown-Beard School'),
(37839, 'https://ror.org/03jfd4440', 'en', 1, 'https://ror.org/03jfd4440 Instituto Tecnológico de Mexitali Mexicali Institute of Technology'),
(37840, 'https://ror.org/00fvxtb73', 'en', 1, 'https://ror.org/00fvxtb73 Abbaye de mount angel Mount Angel Abbey'),
(37841, 'https://ror.org/053s50k72', 'en', 1, 'https://ror.org/053s50k72 Mid-America Baptist Theological Seminary'),
(37842, 'https://ror.org/04fh8an03', 'en', 1, 'https://ror.org/04fh8an03 Mountain View College'),
(37843, 'https://ror.org/01vdt8f48', 'en', 1, 'https://ror.org/01vdt8f48 MRC Mitochondrial Biology Unit'),
(37844, 'https://ror.org/051zva233', 'en', 1, 'https://ror.org/051zva233 National Library Board தேசிய நூலக வாரியம் 国家图书馆管理局'),
(37845, 'https://ror.org/018hvk597', 'en', 1, 'https://ror.org/018hvk597 Mt. San Jacinto College'),
(37846, 'https://ror.org/01arkg777', 'en', 1, 'https://ror.org/01arkg777 Midland College'),
(37847, 'https://ror.org/035ccrh61', 'en', 1, 'https://ror.org/035ccrh61 Midwestern Baptist Theological Seminary'),
(37848, 'https://ror.org/04hdgmg32', 'en', 1, 'https://ror.org/04hdgmg32 Bibliothèque nationale d''inde National Library of India राष्ट्रियः पुस्तकालयः राष्ट्रीय पुस्तकालय জাতীয় গ্রন্থাগার இந்திய தேசிய நூலகம் భారత జాతీయ గ్రంథాలయం ഭാരതീയ ദേശീയ ഗ്രന്ഥശാല'),
(37849, 'https://ror.org/0186tjy74', 'en', 1, 'https://ror.org/0186tjy74 Muscatine Community College'),
(37850, 'https://ror.org/011sf9664', 'de', 1, 'https://ror.org/011sf9664 Museum am Schölerberg'),
(37851, 'https://ror.org/035fpgr29', 'en', 1, 'https://ror.org/035fpgr29 Mission College'),
(37852, 'https://ror.org/04jzz0b06', 'en', 1, 'https://ror.org/04jzz0b06 National Research Centre on Equines'),
(37853, 'https://ror.org/058mfk884', 'de', 1, 'https://ror.org/058mfk884 Museumsdorf Cloppenburg Museumsdorf Cloppenburg – Niedersächsisches Freilichtmuseum'),
(37854, 'https://ror.org/00maat333', 'fr', 1, 'https://ror.org/00maat333 Palais de la Decouverte'),
(37855, 'https://ror.org/025kpm509', 'de', 1, 'https://ror.org/025kpm509 Museum Foundation Lüneburg Museumsstiftung Lüneburg'),
(37856, 'https://ror.org/03v4rcp75', 'en', 1, 'https://ror.org/03v4rcp75 Area Territoriale di Ricerca del CNR di Bologna Bologna Research Area'),
(37857, 'https://ror.org/0144edt49', 'en', 1, 'https://ror.org/0144edt49 Muskegon Community College'),
(37858, 'https://ror.org/00ygy3d85', 'it', 1, 'https://ror.org/00ygy3d85 Institute for Applied Mathematics Mauro Picone Istituto per le Applicazioni del Calcolo Mauro Picone'),
(37859, 'https://ror.org/04d5j6d22', 'en', 1, 'https://ror.org/04d5j6d22 Moberly Area Community College'),
(37860, 'https://ror.org/05kcf4918', 'en', 1, 'https://ror.org/05kcf4918 Myerscough College'),
(37861, 'https://ror.org/00j4sax34', 'en', 1, 'https://ror.org/00j4sax34 Newcastle-under-Lyme College'),
(37862, 'https://ror.org/01r45ka37', 'en', 1, 'https://ror.org/01r45ka37 Nanjing Library 南京图书馆'),
(37863, 'https://ror.org/03dsk4d59', 'no_lang_code', 1, 'https://ror.org/03dsk4d59 Springer Nature (United Kingdom)'),
(37864, 'https://ror.org/00042h977', 'en', 1, 'https://ror.org/00042h977 Napa Valley College'),
(37865, 'https://ror.org/02wbgn345', 'en', 1, 'https://ror.org/02wbgn345 Newman Theological College'),
(37866, 'https://ror.org/0306dg290', 'en', 1, 'https://ror.org/0306dg290 Nash Community College'),
(37867, 'https://ror.org/04yyprp21', 'en', 1, 'https://ror.org/04yyprp21 Nashua Community College'),
(37868, 'https://ror.org/02rx19412', 'en', 1, 'https://ror.org/02rx19412 National Academy of Agricultural Research Management'),
(37869, 'https://ror.org/02vj63597', 'en', 1, 'https://ror.org/02vj63597 Nicolet Area Technical College'),
(37870, 'https://ror.org/002kje223', 'no_lang_code', 1, 'https://ror.org/002kje223 iThemba Laboratory'),
(37871, 'https://ror.org/057wr4y62', 'en', 1, 'https://ror.org/057wr4y62 National Aerospace Laboratories भारतीयवैमानिकप्रयोगशाला(NAL) राष्ट्रीय एयरोस्पेस प्रयोगशाला ನ್ಯಾಷನಲ್ ಏರೋಸ್ಪೇಸ್ ಲ್ಯಾಬೋರೇಟರಿ നാഷണൽ ഏറോസ്പേസ് ലാബറട്ടറീസ്'),
(37872, 'https://ror.org/02t2raw56', 'en', 1, 'https://ror.org/02t2raw56 National Assembly Library 대한민국 국회도서관'),
(37873, 'https://ror.org/01hehsy63', 'en', 1, 'https://ror.org/01hehsy63 Naval War College'),
(37874, 'https://ror.org/014vxaz07', 'en', 1, 'https://ror.org/014vxaz07 Nazarene Theological College'),
(37875, 'https://ror.org/01h7y9k21', 'en', 1, 'https://ror.org/01h7y9k21 Nazareth Academy'),
(37876, 'https://ror.org/03z54xm22', 'en', 1, 'https://ror.org/03z54xm22 Near East School of Theology'),
(37877, 'https://ror.org/000cnwx98', 'en', 1, 'https://ror.org/000cnwx98 Norco College'),
(37878, 'https://ror.org/05n68xc32', 'en', 1, 'https://ror.org/05n68xc32 NorQuest College'),
(37879, 'https://ror.org/04zk97n46', 'en', 1, 'https://ror.org/04zk97n46 New College Durham'),
(37880, 'https://ror.org/02sx3vp22', 'en', 1, 'https://ror.org/02sx3vp22 North Central Missouri College'),
(37881, 'https://ror.org/04b6b6f76', 'en', 1, 'https://ror.org/04b6b6f76 North Central State College'),
(37882, 'https://ror.org/006w4kh46', 'en', 1, 'https://ror.org/006w4kh46 North Central Texas College'),
(37883, 'https://ror.org/05g617r34', 'en', 1, 'https://ror.org/05g617r34 New Hope Christian College'),
(37884, 'https://ror.org/041wtwq79', 'en', 1, 'https://ror.org/041wtwq79 New Jersey Turnpike Authority'),
(37885, 'https://ror.org/04v4h5886', 'en', 1, 'https://ror.org/04v4h5886 New Orleans Baptist Theological Seminary'),
(37886, 'https://ror.org/05eqkxh55', 'en', 1, 'https://ror.org/05eqkxh55 New River Community College'),
(37887, 'https://ror.org/01hbhjt03', 'en', 1, 'https://ror.org/01hbhjt03 North Florida Community College'),
(37888, 'https://ror.org/03y1zyv86', 'en', 1, 'https://ror.org/03y1zyv86 Oklahoma State University Oklahoma City Oklahoma State University–Oklahoma City'),
(37889, 'https://ror.org/055e3p039', 'en', 1, 'https://ror.org/055e3p039 North Iowa Area Community College'),
(37890, 'https://ror.org/05pbb8y14', 'en', 1, 'https://ror.org/05pbb8y14 Olympic College'),
(37891, 'https://ror.org/000jbwm32', 'no_lang_code', 1, 'https://ror.org/000jbwm32 National Sanatorium Ooshima Seishōen 国立療養所大島青松園'),
(37892, 'https://ror.org/05kd26g25', 'en', 1, 'https://ror.org/05kd26g25 Prairie Bible Institute'),
(37893, 'https://ror.org/041m1e551', 'en', 1, 'https://ror.org/041m1e551 Princeton Public Schools'),
(37894, 'https://ror.org/00wsjjq14', 'en', 1, 'https://ror.org/00wsjjq14 Providence Newberg Medical Center'),
(37895, 'https://ror.org/01v3sxv43', 'en', 1, 'https://ror.org/01v3sxv43 North Lake College'),
(37896, 'https://ror.org/01w9gvv59', 'en', 1, 'https://ror.org/01w9gvv59 Pueblo Community College'),
(37897, 'https://ror.org/00wdghj92', 'en', 1, 'https://ror.org/00wdghj92 North Shore Community College'),
(37898, 'https://ror.org/010dgsx92', 'en', 1, 'https://ror.org/010dgsx92 Pulaski Technical College'),
(37899, 'https://ror.org/018xpp991', 'en', 1, 'https://ror.org/018xpp991 Northeast Alabama Community College'),
(37900, 'https://ror.org/05m42bs81', 'en', 1, 'https://ror.org/05m42bs81 Northeast State Community College'),
(37901, 'https://ror.org/04wh0kc34', 'en', 1, 'https://ror.org/04wh0kc34 Northeast Texas Community College'),
(37902, 'https://ror.org/03k3rfc04', 'en', 1, 'https://ror.org/03k3rfc04 Oxnard College'),
(37903, 'https://ror.org/017kqpz20', 'en', 1, 'https://ror.org/017kqpz20 Northern (Arctic) Federal University Северный (Арктический) федеральный университет имени М. В. Ломоносова'),
(37904, 'https://ror.org/05ezpsg97', 'en', 1, 'https://ror.org/05ezpsg97 Ozark Christian College'),
(37905, 'https://ror.org/04bx29k51', 'en', 1, 'https://ror.org/04bx29k51 Northern Essex Community College'),
(37906, 'https://ror.org/05nqdns93', 'en', 1, 'https://ror.org/05nqdns93 Pacific States University'),
(37907, 'https://ror.org/0467tbj17', 'en', 1, 'https://ror.org/0467tbj17 Randolph Community College'),
(37908, 'https://ror.org/00x5wty96', 'en', 1, 'https://ror.org/00x5wty96 Redcar & Cleveland College'),
(37909, 'https://ror.org/04x450n10', 'en', 1, 'https://ror.org/04x450n10 Northwest Mississippi Community College'),
(37910, 'https://ror.org/00r1qza69', 'en', 1, 'https://ror.org/00r1qza69 Reedley College'),
(37911, 'https://ror.org/006ptez88', 'en', 1, 'https://ror.org/006ptez88 Northwest–Shoals Community College'),
(37912, 'https://ror.org/0420s7j63', 'en', 1, 'https://ror.org/0420s7j63 Northwestern Connecticut Community College'),
(37913, 'https://ror.org/0296fd765', 'en', 1, 'https://ror.org/0296fd765 Renton Technical College'),
(37914, 'https://ror.org/04nv2wh79', 'en', 1, 'https://ror.org/04nv2wh79 Novant Health'),
(37915, 'https://ror.org/01a9g8z61', 'en', 1, 'https://ror.org/01a9g8z61 Palo Verde College'),
(37916, 'https://ror.org/02xcgb468', 'en', 1, 'https://ror.org/02xcgb468 R.O.C Military Academy 中華民國陸軍軍官學校'),
(37917, 'https://ror.org/03b7h0n98', 'en', 1, 'https://ror.org/03b7h0n98 Panola College'),
(37918, 'https://ror.org/028mn7f31', 'en', 1, 'https://ror.org/028mn7f31 NYC Media'),
(37919, 'https://ror.org/04qf03327', 'en', 1, 'https://ror.org/04qf03327 Republic Polytechnic 共和理工學院'),
(37920, 'https://ror.org/0433rbd97', 'en', 1, 'https://ror.org/0433rbd97 Paradise Valley Community College'),
(37921, 'https://ror.org/03jcbwy51', 'en', 1, 'https://ror.org/03jcbwy51 Oblate School of Theology'),
(37922, 'https://ror.org/011mmzv10', 'en', 1, 'https://ror.org/011mmzv10 Odessa College'),
(37923, 'https://ror.org/02sf8e546', 'en', 1, 'https://ror.org/02sf8e546 Patrick Henry Community College'),
(37924, 'https://ror.org/03qvjfw18', 'en', 1, 'https://ror.org/03qvjfw18 Rio Hondo College'),
(37925, 'https://ror.org/00mpmjk72', 'en', 1, 'https://ror.org/00mpmjk72 Peddie School'),
(37926, 'https://ror.org/03w27x846', 'en', 1, 'https://ror.org/03w27x846 Sachverständigenrat deutscher Stiftungen für Integration und Migration The Expert Council of German Foundations on Integration and Migration'),
(37927, 'https://ror.org/004axh929', 'en', 1, 'https://ror.org/004axh929 RMIT Vietnam Đại học RMIT Việt Nam'),
(37928, 'https://ror.org/05a4fj080', 'en', 1, 'https://ror.org/05a4fj080 Rockingham Community College'),
(37929, 'https://ror.org/00f5afq73', 'en', 1, 'https://ror.org/00f5afq73 Rogue Community College'),
(37930, 'https://ror.org/05kc32532', 'en', 1, 'https://ror.org/05kc32532 Saint Joseph Seminary College'),
(37931, 'https://ror.org/01we8bn75', 'en', 1, 'https://ror.org/01we8bn75 PFH Private University of Applied Sciences Private Hochschule Göttingen'),
(37932, 'https://ror.org/03tyfrs48', 'en', 1, 'https://ror.org/03tyfrs48 Saint Paul College'),
(37933, 'https://ror.org/009syd513', 'en', 1, 'https://ror.org/009syd513 Phillips Theological Seminary'),
(37934, 'https://ror.org/038z1c623', 'en', 1, 'https://ror.org/038z1c623 Pikes Peak Community College'),
(37935, 'https://ror.org/057fg2a35', 'en', 1, 'https://ror.org/057fg2a35 Saint Vincent Health System'),
(37936, 'https://ror.org/01wm9rt41', 'en', 1, 'https://ror.org/01wm9rt41 Rowan-Cabarrus Community College Rowan–Cabarrus Community College'),
(37937, 'https://ror.org/027qksd74', 'no_lang_code', 1, 'https://ror.org/027qksd74 Pinsent Masons (United Kingdom)'),
(37938, 'https://ror.org/0428qkc73', 'en', 1, 'https://ror.org/0428qkc73 Saint Vladimir''s Orthodox Theological Seminary Séminaire saint-vladimir'),
(37939, 'https://ror.org/051cmzf26', 'en', 1, 'https://ror.org/051cmzf26 Roxbury Community College'),
(37940, 'https://ror.org/00k6vc568', 'en', 1, 'https://ror.org/00k6vc568 Dodowa Health Research Centre'),
(37941, 'https://ror.org/05v9c7616', 'en', 1, 'https://ror.org/05v9c7616 Pitt Community College'),
(37942, 'https://ror.org/04t1qep04', 'en', 1, 'https://ror.org/04t1qep04 San Bernardino Valley College'),
(37943, 'https://ror.org/03srzrr63', 'en', 1, 'https://ror.org/03srzrr63 Pittsburgh Theological Seminary'),
(37944, 'https://ror.org/03ht0cf17', 'en', 1, 'https://ror.org/03ht0cf17 Sher-e-Bangla Agricultural University শেরে বাংলা কৃষি বিশ্ববিদ্যালয়'),
(37945, 'https://ror.org/0132gqh60', 'en', 1, 'https://ror.org/0132gqh60 Southwestern Baptist Theological Seminary'),
(37946, 'https://ror.org/00v43qg93', 'en', 1, 'https://ror.org/00v43qg93 San Diego Christian College'),
(37947, 'https://ror.org/02zzkft25', 'no_lang_code', 1, 'https://ror.org/02zzkft25 Shigakukan University 志學館大学'),
(37948, 'https://ror.org/01kqyam71', 'en', 1, 'https://ror.org/01kqyam71 San Diego Miramar College'),
(37949, 'https://ror.org/013wq3j16', 'no_lang_code', 1, 'https://ror.org/013wq3j16 Shohoku College 湘北短期大学'),
(37950, 'https://ror.org/05a8r2n20', 'en', 1, 'https://ror.org/05a8r2n20 Sidley Austin'),
(37951, 'https://ror.org/0495w1157', 'en', 1, 'https://ror.org/0495w1157 San Joaquin Delta College'),
(37952, 'https://ror.org/00ekjkp43', 'en', 1, 'https://ror.org/00ekjkp43 Santa Ana College'),
(37953, 'https://ror.org/009t8dp88', 'no_lang_code', 1, 'https://ror.org/009t8dp88 Bluestar Silicones (France)'),
(37954, 'https://ror.org/028r3ke74', 'en', 1, 'https://ror.org/028r3ke74 Santa Barbara Business College'),
(37955, 'https://ror.org/03jb94x09', 'no_lang_code', 1, 'https://ror.org/03jb94x09 Brochier Technologies (France)'),
(37956, 'https://ror.org/05pd10v94', 'de', 1, 'https://ror.org/05pd10v94 Sigmund Freud Institut Sigmund Freud Institute'),
(37957, 'https://ror.org/0303pm905', 'en', 1, 'https://ror.org/0303pm905 Santa Clara County Library District'),
(37958, 'https://ror.org/051gp9n72', 'en', 1, 'https://ror.org/051gp9n72 Santiago Canyon College'),
(37959, 'https://ror.org/01kwczx50', 'en', 1, 'https://ror.org/01kwczx50 Skadden Arps Slate Meagher & Flom Skadden, Arps, Slate, Meagher & Flom Skadden, arps, slate, meagher & flom'),
(37960, 'https://ror.org/023knef74', 'en', 1, 'https://ror.org/023knef74 Skagit Valley College'),
(37961, 'https://ror.org/01vn5yf24', 'en', 1, 'https://ror.org/01vn5yf24 Solano Community College'),
(37962, 'https://ror.org/046zhvz32', 'fr', 1, 'https://ror.org/046zhvz32 Laboratoire de Recherches Vétérinaires et Zootechniques de Farcha'),
(37963, 'https://ror.org/01awqyw81', 'en', 1, 'https://ror.org/01awqyw81 St. Cloud Technical and Community College'),
(37964, 'https://ror.org/03hayrn10', 'en', 1, 'https://ror.org/03hayrn10 Sorbian Institute Sorbisches Institut'),
(37965, 'https://ror.org/04rxyz404', 'en', 1, 'https://ror.org/04rxyz404 St. John''s Seminary'),
(37966, 'https://ror.org/03sttqc46', 'en', 1, 'https://ror.org/03sttqc46 Centre Suisse de Recherches Scientifiques en Côte d''Ivoire Swiss Centre for Scientific Research'),
(37967, 'https://ror.org/03d61qr92', 'en', 1, 'https://ror.org/03d61qr92 South Arkansas Community College'),
(37968, 'https://ror.org/027b9hx20', 'en', 1, 'https://ror.org/027b9hx20 St. Thomas Aquinas College'),
(37969, 'https://ror.org/01fryje29', 'en', 1, 'https://ror.org/01fryje29 South College'),
(37970, 'https://ror.org/04kn1c182', 'no_lang_code', 1, 'https://ror.org/04kn1c182 Serampore College শ্রীরামপুর কলেজ'),
(37971, 'https://ror.org/04vpt1784', 'en', 1, 'https://ror.org/04vpt1784 Sha''arei Mishpat College מכללת שערי משפט'),
(37972, 'https://ror.org/03ae9x524', 'de', 1, 'https://ror.org/03ae9x524 Naturhistorisches Museum Staatliches Naturhistorisches Museum'),
(37973, 'https://ror.org/00f9c7v42', 'de', 1, 'https://ror.org/00f9c7v42 Staatsgalerie Stuttgart'),
(37974, 'https://ror.org/022d5rd48', 'en', 1, 'https://ror.org/022d5rd48 Shanghai Library 上海圖書館'),
(37975, 'https://ror.org/01d181m24', 'en', 1, 'https://ror.org/01d181m24 Shasta College'),
(37976, 'https://ror.org/018bksf75', 'en', 1, 'https://ror.org/018bksf75 Shawnee Mission Medical Center'),
(37977, 'https://ror.org/011gedn87', 'en', 1, 'https://ror.org/011gedn87 Sussex Downs College'),
(37978, 'https://ror.org/00fnqey70', 'de', 1, 'https://ror.org/00fnqey70 Stadtmuseum Penzberg'),
(37979, 'https://ror.org/02rpz4k59', 'no_lang_code', 1, 'https://ror.org/02rpz4k59 Swets & Zeitlinger Swets (Netherlands)'),
(37980, 'https://ror.org/04q89zk14', 'en', 1, 'https://ror.org/04q89zk14 Swindon College'),
(37981, 'https://ror.org/057k85v44', 'en', 1, 'https://ror.org/057k85v44 Swiss Hotel Management School'),
(37982, 'https://ror.org/03d8erd68', 'en', 1, 'https://ror.org/03d8erd68 South Tyneside College'),
(37983, 'https://ror.org/01rjfjt94', 'en', 1, 'https://ror.org/01rjfjt94 South University'),
(37984, 'https://ror.org/02e3vax31', 'en', 1, 'https://ror.org/02e3vax31 Sydney Missionary and Bible College'),
(37985, 'https://ror.org/016j33873', 'no_lang_code', 1, 'https://ror.org/016j33873 Crocus Technology (France)'),
(37986, 'https://ror.org/001yxxw51', 'en', 1, 'https://ror.org/001yxxw51 M.A.G. Osmani Medical College, Sylhet Sylhet MAG Osmani Medical College এম.এ.জি. ওসমানী মেডিকেল কলেজ'),
(37987, 'https://ror.org/030pa4076', 'en', 1, 'https://ror.org/030pa4076 Summit Pacific College'),
(37988, 'https://ror.org/01crwqf21', 'en', 1, 'https://ror.org/01crwqf21 Southeast Arkansas College'),
(37989, 'https://ror.org/05saacc29', 'en', 1, 'https://ror.org/05saacc29 T A Pai Management Institute'),
(37990, 'https://ror.org/05bqzy933', 'en', 1, 'https://ror.org/05bqzy933 Sunderland College'),
(37991, 'https://ror.org/00vc8ca13', 'en', 1, 'https://ror.org/00vc8ca13 Tabor College'),
(37992, 'https://ror.org/01gk62939', 'no_lang_code', 1, 'https://ror.org/01gk62939 Endocontrol (France)'),
(37993, 'https://ror.org/02p2cvb06', 'en', 1, 'https://ror.org/02p2cvb06 Taft College'),
(37994, 'https://ror.org/01b25wz12', 'en', 1, 'https://ror.org/01b25wz12 Southeastern University'),
(37995, 'https://ror.org/0335qtz31', 'en', 1, 'https://ror.org/0335qtz31 Instituto de Estudios Superiores de Tamaulipas Tamaulipas Institute of Higher Education'),
(37996, 'https://ror.org/02arv0f08', 'en', 1, 'https://ror.org/02arv0f08 Technological Educational Institute of the Ionian Islands Τεχνολογικό Εκπαιδευτικό Ίδρυμα'),
(37997, 'https://ror.org/01r9gn109', 'en', 1, 'https://ror.org/01r9gn109 Surry Community College'),
(37998, 'https://ror.org/04056ja87', 'en', 1, 'https://ror.org/04056ja87 Technological Educational Institute of Thessaly Τεχνολογικό Εκπαιδευτικό Ίδρυμα Λάρισας'),
(37999, 'https://ror.org/005he3989', 'en', 1, 'https://ror.org/005he3989 Trinity School for Ministry'),
(38000, 'https://ror.org/00gy7qs50', 'en', 1, 'https://ror.org/00gy7qs50 Southport College'),
(38001, 'https://ror.org/00ra8jw08', 'no_lang_code', 1, 'https://ror.org/00ra8jw08 Porsolt (France)'),
(38002, 'https://ror.org/03hegxg89', 'en', 1, 'https://ror.org/03hegxg89 Southwest Wisconsin Technical College'),
(38003, 'https://ror.org/01n7wr636', 'en', 1, 'https://ror.org/01n7wr636 Southwestern Adventist University Université adventiste du sud-ouest'),
(38004, 'https://ror.org/0485q2d74', 'en', 1, 'https://ror.org/0485q2d74 National Institute of Technology, Tsuyama College 津山工業高等専門学校'),
(38005, 'https://ror.org/05v5xnv04', 'en', 1, 'https://ror.org/05v5xnv04 Tung Fang Design Institute 東方設計學院'),
(38006, 'https://ror.org/04jfz0g97', 'zh', 1, 'https://ror.org/04jfz0g97 Tung Wah College 東華學院'),
(38007, 'https://ror.org/04fsb1973', 'en', 1, 'https://ror.org/04fsb1973 Texas College'),
(38008, 'https://ror.org/041621784', 'en', 1, 'https://ror.org/041621784 Texas College of Traditional Chinese Medicine Texas Health and Science University'),
(38009, 'https://ror.org/0207hvp23', 'en', 1, 'https://ror.org/0207hvp23 Tunxis Community College'),
(38010, 'https://ror.org/01k3cb610', 'en', 1, 'https://ror.org/01k3cb610 The American College'),
(38011, 'https://ror.org/02e7x8p39', 'en', 1, 'https://ror.org/02e7x8p39 The Asiatic Society of Mumbai'),
(38012, 'https://ror.org/01vga2998', 'en', 1, 'https://ror.org/01vga2998 Agincourt Health and Socio-Demographic Surveillance System'),
(38013, 'https://ror.org/00bcgjj54', 'en', 1, 'https://ror.org/00bcgjj54 The Culinary Institute of America'),
(38014, 'https://ror.org/02sqt9870', 'en', 1, 'https://ror.org/02sqt9870 University of Louisiana System'),
(38015, 'https://ror.org/023j5sb16', 'en', 1, 'https://ror.org/023j5sb16 International Institute for Strategic Studies'),
(38016, 'https://ror.org/015dhe595', 'en', 1, 'https://ror.org/015dhe595 Modibbo Adama University of Technology'),
(38017, 'https://ror.org/04g2mk116', 'no_lang_code', 1, 'https://ror.org/04g2mk116 Hemarina (France)'),
(38018, 'https://ror.org/03660jk02', 'en', 1, 'https://ror.org/03660jk02 The Master''s Seminary'),
(38019, 'https://ror.org/04625j688', 'en', 1, 'https://ror.org/04625j688 University of Maine School of Law'),
(38020, 'https://ror.org/0012pft53', 'en', 1, 'https://ror.org/0012pft53 Faculté de droit thomas jefferson Thomas Jefferson School of Law'),
(38021, 'https://ror.org/05s2h4a13', 'no_lang_code', 1, 'https://ror.org/05s2h4a13 Imagine Optic (France)'),
(38022, 'https://ror.org/008yyr230', 'de', 1, 'https://ror.org/008yyr230 Till-Eulenspiegel-Museum Schöppenstedt'),
(38023, 'https://ror.org/01h7g8502', 'en', 1, 'https://ror.org/01h7g8502 National Institute of Technology, Toba College 鳥羽商船高等専門学校'),
(38024, 'https://ror.org/01n51v443', 'en', 1, 'https://ror.org/01n51v443 University of North Texas at Dallas'),
(38025, 'https://ror.org/029trsn45', 'no_lang_code', 1, 'https://ror.org/029trsn45 TOKU-E (United States)'),
(38026, 'https://ror.org/05rgfz198', 'en', 1, 'https://ror.org/05rgfz198 United Nations Economic Commission for Africa'),
(38027, 'https://ror.org/019t2rq07', 'en', 1, 'https://ror.org/019t2rq07 University of Northwestern'),
(38028, 'https://ror.org/01nw25822', 'en', 1, 'https://ror.org/01nw25822 National Institute of Technology, Toyota College 国立豊田工業高等専門学校'),
(38029, 'https://ror.org/00c9gth79', 'en', 1, 'https://ror.org/00c9gth79 Astronomisches Observatorium Triest Observatoire astronomique de trieste Osservatorio Astronomico di Trieste Trieste Astronomical Observatory'),
(38030, 'https://ror.org/04ca1xj65', 'en', 1, 'https://ror.org/04ca1xj65 United Theological Seminary'),
(38031, 'https://ror.org/04ep6k202', 'en', 1, 'https://ror.org/04ep6k202 Trinity Medical Center'),
(38032, 'https://ror.org/025kf5q07', 'en', 1, 'https://ror.org/025kf5q07 United World College of South East Asia 東南亞聯合世界書院'),
(38033, 'https://ror.org/035zbbv42', 'en', 1, 'https://ror.org/035zbbv42 First Affiliated Hospital of Henan University of Science and Technology'),
(38034, 'https://ror.org/02arzh683', 'en', 1, 'https://ror.org/02arzh683 Aidjan-Lagos Corridor Organization Organisation du Corridor Abidjan-Lagos'),
(38035, 'https://ror.org/008t9m017', 'en', 1, 'https://ror.org/008t9m017 Wallace Community College'),
(38036, 'https://ror.org/041z20775', 'en', 1, 'https://ror.org/041z20775 Mvumi Hospital'),
(38037, 'https://ror.org/01nzz9r98', 'en', 1, 'https://ror.org/01nzz9r98 Victor Valley College'),
(38038, 'https://ror.org/01fszbh02', 'en', 1, 'https://ror.org/01fszbh02 Academy for Peace and Development Akaademiga Nabadda iyo Horumarka'),
(38039, 'https://ror.org/01ss10648', 'en', 1, 'https://ror.org/01ss10648 Northern University of Malaysia Universiti Utara Malaysia 馬來西亞北方大學'),
(38040, 'https://ror.org/04qs0rx25', 'en', 1, 'https://ror.org/04qs0rx25 Wallace State Community College'),
(38041, 'https://ror.org/01zys7518', 'en', 1, 'https://ror.org/01zys7518 Victoria College'),
(38042, 'https://ror.org/05r27jw59', 'en', 1, 'https://ror.org/05r27jw59 Warren County Community College'),
(38043, 'https://ror.org/02vxhys40', 'en', 1, 'https://ror.org/02vxhys40 Africa Groundwater Network'),
(38044, 'https://ror.org/03kv7mm58', 'en', 1, 'https://ror.org/03kv7mm58 Wartburg Theological Seminary'),
(38045, 'https://ror.org/04hbd7s79', 'en', 1, 'https://ror.org/04hbd7s79 Africa Harvest Biotech Foundation International'),
(38046, 'https://ror.org/02jf25180', 'en', 1, 'https://ror.org/02jf25180 Warwickshire College'),
(38047, 'https://ror.org/017cc7f02', 'en', 1, 'https://ror.org/017cc7f02 Achieving Health Nigeria Initiative'),
(38048, 'https://ror.org/03fs51t18', 'en', 1, 'https://ror.org/03fs51t18 Wayne Community College'),
(38049, 'https://ror.org/004pw1z78', 'en', 1, 'https://ror.org/004pw1z78 Africa Society for Blood Transfusion'),
(38050, 'https://ror.org/02xwsbr93', 'en', 1, 'https://ror.org/02xwsbr93 Weatherford College'),
(38051, 'https://ror.org/01hzrxx48', 'en', 1, 'https://ror.org/01hzrxx48 Wor-Wic Community College Wor–Wic Community College'),
(38052, 'https://ror.org/04pjzhr83', 'en', 1, 'https://ror.org/04pjzhr83 Wenatchee Valley College'),
(38053, 'https://ror.org/01mmzry04', 'en', 1, 'https://ror.org/01mmzry04 Vinson & Elkins'),
(38054, 'https://ror.org/00701pv42', 'fr', 1, 'https://ror.org/00701pv42 Wesford'),
(38055, 'https://ror.org/03cqs4n40', 'en', 1, 'https://ror.org/03cqs4n40 Organisation mondiale du commerce Organización Mundial del Comercio Organizzazione mondiale del commercio Welthandelsorganisation World Trade Organization'),
(38056, 'https://ror.org/04ht9zz88', 'en', 1, 'https://ror.org/04ht9zz88 Lone Star College Kingwood Lone Star College–Kingwood'),
(38057, 'https://ror.org/02m0pjb51', 'en', 1, 'https://ror.org/02m0pjb51 Wesley Biblical Seminary'),
(38058, 'https://ror.org/00ppxc472', 'no_lang_code', 1, 'https://ror.org/00ppxc472 ArcelorMittal (Poland)'),
(38059, 'https://ror.org/00s653717', 'en', 1, 'https://ror.org/00s653717 WorldWide Information Services'),
(38060, 'https://ror.org/04aqw2724', 'en', 1, 'https://ror.org/04aqw2724 African Association of Remote Sensing of the Environment'),
(38061, 'https://ror.org/0297egf66', 'en', 1, 'https://ror.org/0297egf66 Lone Star College–North Harris'),
(38062, 'https://ror.org/00s1ymf55', 'no_lang_code', 1, 'https://ror.org/00s1ymf55 ACRI-EC (Morocco)'),
(38063, 'https://ror.org/05wf9ss90', 'en', 1, 'https://ror.org/05wf9ss90 Virginia Highlands Community College'),
(38064, 'https://ror.org/0278s3c19', 'en', 1, 'https://ror.org/0278s3c19 Lone Star College–Tomball'),
(38065, 'https://ror.org/01wm6bg59', 'en', 1, 'https://ror.org/01wm6bg59 West Shore Community College'),
(38066, 'https://ror.org/05d97wj93', 'en', 1, 'https://ror.org/05d97wj93 West Suffolk College'),
(38067, 'https://ror.org/03777v328', 'en', 1, 'https://ror.org/03777v328 African Center of Meteorological Application for Development'),
(38068, 'https://ror.org/05pd35d11', 'en', 1, 'https://ror.org/05pd35d11 African Comprehensive HIV/AIDS Partnerships'),
(38069, 'https://ror.org/0167m9538', 'en', 1, 'https://ror.org/0167m9538 African Training and Research Centre in Administration for Development Centre Africain de Formation et de Recherche Administratives pour le Développement'),
(38070, 'https://ror.org/01ecv1b71', 'en', 1, 'https://ror.org/01ecv1b71 African Conservation Tillage Network'),
(38071, 'https://ror.org/01hr83286', 'en', 1, 'https://ror.org/01hr83286 African Center for Economic Transformation'),
(38072, 'https://ror.org/01hefnn22', 'en', 1, 'https://ror.org/01hefnn22 Western Nebraska Community College'),
(38073, 'https://ror.org/03gn3dp35', 'no_lang_code', 1, 'https://ror.org/03gn3dp35 Adamore (Nigeria)'),
(38074, 'https://ror.org/01jf9dm55', 'en', 1, 'https://ror.org/01jf9dm55 African Union Interafrican Bureau for Animal Resources'),
(38075, 'https://ror.org/05phe2d91', 'en', 1, 'https://ror.org/05phe2d91 Xavier School'),
(38076, 'https://ror.org/03pr1st25', 'no_lang_code', 1, 'https://ror.org/03pr1st25 African Explosives (South Africa)'),
(38077, 'https://ror.org/01dj44198', 'en', 1, 'https://ror.org/01dj44198 Western Texas College'),
(38078, 'https://ror.org/03anfvd83', 'en', 1, 'https://ror.org/03anfvd83 Western Theological Seminary'),
(38079, 'https://ror.org/05e0nrg39', 'no_lang_code', 1, 'https://ror.org/05e0nrg39 Africare'),
(38080, 'https://ror.org/014ty7t94', 'en', 1, 'https://ror.org/014ty7t94 African Forum for Agricultural Advisory Services'),
(38081, 'https://ror.org/04zt8qr11', 'en', 1, 'https://ror.org/04zt8qr11 Addis Ababa City Administration Health Bureau'),
(38082, 'https://ror.org/02nbqkk54', 'en', 1, 'https://ror.org/02nbqkk54 Western Wyoming Community College'),
(38083, 'https://ror.org/03ph2cv51', 'en', 1, 'https://ror.org/03ph2cv51 Westminster Kingsway College'),
(38084, 'https://ror.org/027n34442', 'en', 1, 'https://ror.org/027n34442 African Institute of Biomedical Science and Technology'),
(38085, 'https://ror.org/046vhnd58', 'en', 1, 'https://ror.org/046vhnd58 Xavier School of Management'),
(38086, 'https://ror.org/05gy3fg68', 'en', 1, 'https://ror.org/05gy3fg68 Séminaire théologique de westminster Westminster Theological Seminary'),
(38087, 'https://ror.org/041tbvj87', 'en', 1, 'https://ror.org/041tbvj87 Westmoreland County Community College'),
(38088, 'https://ror.org/0333mmt30', 'en', 1, 'https://ror.org/0333mmt30 Energy, Environment and Development Network for Africa'),
(38089, 'https://ror.org/05awzqc14', 'en', 1, 'https://ror.org/05awzqc14 Africa 2000 Network'),
(38090, 'https://ror.org/03w2dn060', 'en', 1, 'https://ror.org/03w2dn060 African Institute for Capacity Development'),
(38091, 'https://ror.org/0035bbx08', 'en', 1, 'https://ror.org/0035bbx08 Wharton County Junior College'),
(38092, 'https://ror.org/03c89jq84', 'en', 1, 'https://ror.org/03c89jq84 African Network Information Center'),
(38093, 'https://ror.org/05baq4a16', 'no_lang_code', 1, 'https://ror.org/05baq4a16 Yong-in Songdam College 용인송담대학교'),
(38094, 'https://ror.org/04vatt549', 'fr', 1, 'https://ror.org/04vatt549 Agence Nationale pour la Promotion des Petites et Moyennes Entreprises'),
(38095, 'https://ror.org/04cg1fd02', 'en', 1, 'https://ror.org/04cg1fd02 Wilkes Community College'),
(38096, 'https://ror.org/04rp2t677', 'en', 1, 'https://ror.org/04rp2t677 African Palliative Care Association'),
(38097, 'https://ror.org/04rqxx434', 'fr', 1, 'https://ror.org/04rqxx434 Agence Nationale pour la Promotion et la Rationalisation de l''Utilisation de l''Energie'),
(38098, 'https://ror.org/006j5kw87', 'en', 1, 'https://ror.org/006j5kw87 York County Community College'),
(38099, 'https://ror.org/03cv3dj55', 'en', 1, 'https://ror.org/03cv3dj55 Williams Baptist College'),
(38100, 'https://ror.org/044f89640', 'no_lang_code', 1, 'https://ror.org/044f89640 Agama Energy (South Africa)'),
(38101, 'https://ror.org/02j8mex09', 'en', 1, 'https://ror.org/02j8mex09 Wilson Community College'),
(38102, 'https://ror.org/00r614q54', 'en', 1, 'https://ror.org/00r614q54 Youngnam Theological University and Seminary 영남신학대학교'),
(38103, 'https://ror.org/043jwkg64', 'fr', 1, 'https://ror.org/043jwkg64 Agence pour le Développement et la Réhabilitation de la Ville de Fès'),
(38104, 'https://ror.org/01p4zf543', 'fr', 1, 'https://ror.org/01p4zf543 Agence du Bassin Hydraulique de Sebou'),
(38105, 'https://ror.org/00p0g8998', 'en', 1, 'https://ror.org/00p0g8998 Agence pour la sécurité de la Navigation Aérienne en Afrique et à Madagascar Agency for Aerial Navigation Safety in Africa and Madagascar'),
(38106, 'https://ror.org/011w0zz81', 'en', 1, 'https://ror.org/011w0zz81 African Technology Policy Studies Network'),
(38107, 'https://ror.org/01e46k667', 'no_lang_code', 1, 'https://ror.org/01e46k667 Red Stack Tech (Poland)'),
(38108, 'https://ror.org/00ed6fq07', 'en', 1, 'https://ror.org/00ed6fq07 AIDS Foundation of South Africa'),
(38109, 'https://ror.org/03fh39287', 'fr', 1, 'https://ror.org/03fh39287 Agence Nationale de l''Aviation Civile du Sénégal Agence Nationale de l''Aviation Civile et de la Météorologie'),
(38110, 'https://ror.org/04gm2r032', 'fr', 1, 'https://ror.org/04gm2r032 Agence de Bassin Hydrographique Constantinois-Seybousse-Mellegue'),
(38111, 'https://ror.org/02ec5p106', 'en', 1, 'https://ror.org/02ec5p106 AIDS Information Centre'),
(38112, 'https://ror.org/0590dv991', 'en', 1, 'https://ror.org/0590dv991 Agricultural Research Corporation هيئة البحوث الزراعية'),
(38113, 'https://ror.org/03kfyg105', 'no_lang_code', 1, 'https://ror.org/03kfyg105 Safran (Poland)'),
(38114, 'https://ror.org/0404w7c41', 'fr', 1, 'https://ror.org/0404w7c41 AFRICSanté'),
(38115, 'https://ror.org/009yat059', 'no_lang_code', 1, 'https://ror.org/009yat059 WADI Group (Egypt)'),
(38116, 'https://ror.org/05tm3gs98', 'en', 1, 'https://ror.org/05tm3gs98 Agence de Promotion de l’Industrie et de l''Innovation Agency for the Promotion of Industry and Innovation وكالة النهوض بالصناعة و التجديد'),
(38117, 'https://ror.org/03k31z678', 'en', 1, 'https://ror.org/03k31z678 Institute for Soil, Climate and Water'),
(38118, 'https://ror.org/0145r0q31', 'fr', 1, 'https://ror.org/0145r0q31 Agence de Protection et d''Aménagement du Littoral'),
(38119, 'https://ror.org/03n4gks22', 'en', 1, 'https://ror.org/03n4gks22 Abertine Rift Conservation Society'),
(38120, 'https://ror.org/051vmc086', 'fr', 1, 'https://ror.org/051vmc086 Agro PME Fondation'),
(38121, 'https://ror.org/03zbza087', 'fr', 1, 'https://ror.org/03zbza087 Association de Recherche de Communication et d’Accompagnement à Domicile de personnes Vivant avec le VIH'),
(38122, 'https://ror.org/053qgh778', 'en', 1, 'https://ror.org/053qgh778 Aid to Development of Traditional Medicine Aide au Développement de la Médecine Traditionnelle'),
(38123, 'https://ror.org/03ye1a762', 'en', 1, 'https://ror.org/03ye1a762 Alliance Nationale Contre le SIDA en Cote d''Ivoire Alliance of Health'),
(38124, 'https://ror.org/02n9a7a30', 'fr', 1, 'https://ror.org/02n9a7a30 Agence Nationale de l''Aviation Civile'),
(38125, 'https://ror.org/001r3g324', 'pt', 1, 'https://ror.org/001r3g324 Fundação Ariel Glaser Contra o SIDA Pediátrico'),
(38126, 'https://ror.org/02x9c2945', 'no_lang_code', 1, 'https://ror.org/02x9c2945 Alliance One Tobacco (Malawi)'),
(38127, 'https://ror.org/05mq34b10', 'en', 1, 'https://ror.org/05mq34b10 Bank of Mauritius'),
(38128, 'https://ror.org/049wv9211', 'en', 1, 'https://ror.org/049wv9211 Elizabeth Glaser Pediatric AIDS Foundation'),
(38129, 'https://ror.org/035y1v638', 'en', 1, 'https://ror.org/035y1v638 Baobab Health Trust'),
(38130, 'https://ror.org/022af9r61', 'no_lang_code', 1, 'https://ror.org/022af9r61 Alternative Energy Systems (Tunisia)'),
(38131, 'https://ror.org/03gjxrs28', 'en', 1, 'https://ror.org/03gjxrs28 National Art Gallery of Namibia'),
(38132, 'https://ror.org/00dqs1064', 'fr', 1, 'https://ror.org/00dqs1064 Centre Marocain de Production Propre'),
(38133, 'https://ror.org/02ggka625', 'en', 1, 'https://ror.org/02ggka625 Basel Convention Co-Ordinating Centre'),
(38134, 'https://ror.org/00hxcg109', 'en', 1, 'https://ror.org/00hxcg109 Association for Strengthening Agricultural Research in Eastern and Central Africa'),
(38135, 'https://ror.org/05exk7n54', 'en', 1, 'https://ror.org/05exk7n54 Arusha City Council'),
(38136, 'https://ror.org/020vej288', 'en', 1, 'https://ror.org/020vej288 Agence Nationale de la Promotion de la Recherche Scientifique National Agency for Promotion of Research and Innovation الوكالة الوطنية للنهوض بالبحث العلمي'),
(38137, 'https://ror.org/05pjrxm83', 'en', 1, 'https://ror.org/05pjrxm83 Association of Support in the Development of Activities of Population'),
(38138, 'https://ror.org/05a0bkt47', 'en', 1, 'https://ror.org/05a0bkt47 Amref Health Africa'),
(38139, 'https://ror.org/02bdw9258', 'no_lang_code', 1, 'https://ror.org/02bdw9258 Assore (South Africa)'),
(38140, 'https://ror.org/04f5fw921', 'en', 1, 'https://ror.org/04f5fw921 Sojagnon Association'),
(38141, 'https://ror.org/03navfe48', 'no_lang_code', 1, 'https://ror.org/03navfe48 ANADER'),
(38142, 'https://ror.org/003093432', 'en', 1, 'https://ror.org/003093432 International Centre for Reproductive Health'),
(38143, 'https://ror.org/04vpx0k46', 'fr', 1, 'https://ror.org/04vpx0k46 Anvredet'),
(38144, 'https://ror.org/03nvc8x46', 'no_lang_code', 1, 'https://ror.org/03nvc8x46 Anglo American (South Africa)'),
(38145, 'https://ror.org/03fyw2k76', 'en', 1, 'https://ror.org/03fyw2k76 Blood Transfusion Service of Namibia'),
(38146, 'https://ror.org/03fe8wt32', 'fr', 1, 'https://ror.org/03fe8wt32 Association Mitsinjo'),
(38147, 'https://ror.org/05tbdf588', 'en', 1, 'https://ror.org/05tbdf588 Association Africa AgroEXport'),
(38148, 'https://ror.org/00cn65j92', 'no_lang_code', 1, 'https://ror.org/00cn65j92 Bomarts Farms (Ghana)'),
(38149, 'https://ror.org/035dqf024', 'en', 1, 'https://ror.org/035dqf024 Agence Nationale pour la Maîtrise de l''Energie National Agency for Energy Management'),
(38150, 'https://ror.org/04m7jhx64', 'fr', 1, 'https://ror.org/04m7jhx64 Confédération Générale des Entreprises du Maroc'),
(38151, 'https://ror.org/05m4ewg24', 'en', 1, 'https://ror.org/05m4ewg24 Association of African Universities'),
(38152, 'https://ror.org/04tvwvh44', 'fr', 1, 'https://ror.org/04tvwvh44 Association Marocaine Pour la Recherche Développement'),
(38153, 'https://ror.org/053gd2580', 'en', 1, 'https://ror.org/053gd2580 Botswana-Baylor Children''s Clinical Center of Excellence'),
(38154, 'https://ror.org/03s1kd923', 'en', 1, 'https://ror.org/03s1kd923 Center for Health, Human Rights and Development'),
(38155, 'https://ror.org/03q82hy28', 'en', 1, 'https://ror.org/03q82hy28 Arab and African Research Center'),
(38156, 'https://ror.org/01zp8e713', 'en', 1, 'https://ror.org/01zp8e713 The Arab Institute of Navigation'),
(38157, 'https://ror.org/04dkqr510', 'no_lang_code', 1, 'https://ror.org/04dkqr510 Assystem (Morocco)'),
(38158, 'https://ror.org/03e9cyb52', 'en', 1, 'https://ror.org/03e9cyb52 Central Laboratory For Agricultural Expert Systems'),
(38159, 'https://ror.org/004wta052', 'en', 1, 'https://ror.org/004wta052 British Council Egypt'),
(38160, 'https://ror.org/01tanx198', 'fr', 1, 'https://ror.org/01tanx198 Centre Africain de Recherches sur Bananiers et Plantains Centre Régional de Recherches sur Bananiers et Plantains'),
(38161, 'https://ror.org/01j59hh13', 'no_lang_code', 1, 'https://ror.org/01j59hh13 Banco de Cabo Verde Bank of Cape Verde'),
(38162, 'https://ror.org/04zxzn882', 'fr', 1, 'https://ror.org/04zxzn882 Bureau National d''Études Techniques et de Développement'),
(38163, 'https://ror.org/025wyv967', 'en', 1, 'https://ror.org/025wyv967 Center of Arab Woman for Training and Research'),
(38164, 'https://ror.org/04y75dx46', 'en', 1, 'https://ror.org/04y75dx46 Institute of Medical Sciences'),
(38165, 'https://ror.org/03x8myy24', 'en', 1, 'https://ror.org/03x8myy24 Centre for Coordination of Agricultural Research and Development for Southern Africa'),
(38166, 'https://ror.org/0055szp73', 'fr', 1, 'https://ror.org/0055szp73 Centre d''Etude Regional pour l''Amelioration de l''Adaptation a la Secheresse'),
(38167, 'https://ror.org/05bxm0g51', 'fr', 1, 'https://ror.org/05bxm0g51 Centre Marocain des Techniques du Cuir'),
(38168, 'https://ror.org/020vyj412', 'en', 1, 'https://ror.org/020vyj412 Cairo Institute for Human Rights Studies'),
(38169, 'https://ror.org/01q2x5x62', 'en', 1, 'https://ror.org/01q2x5x62 Indian Institute of Social Welfare and Business Management ইন্ডিয়ান ইনস্টিটিউট অফ সোশ্যাল ওয়েলফেয়ার অ্যান্ড বিজনেস ম্যানেজমেন্ট'),
(38170, 'https://ror.org/00ga0xw04', 'en', 1, 'https://ror.org/00ga0xw04 Research and Studies Telecommunications Centre'),
(38171, 'https://ror.org/01k1bte55', 'fr', 1, 'https://ror.org/01k1bte55 Centre de Recherche sur l''Information Scientifique et Technique');
INSERT INTO `rors` VALUES
(38172, 'https://ror.org/025fpk195', 'en', 1, 'https://ror.org/025fpk195 Cameroon Baptist Convention Health Services'),
(38173, 'https://ror.org/00vcvxb53', 'en', 1, 'https://ror.org/00vcvxb53 Centre for Health Solutions'),
(38174, 'https://ror.org/04z3sd442', 'en', 1, 'https://ror.org/04z3sd442 Centre for Schistosomiasis & Parasitology'),
(38175, 'https://ror.org/02q7fkp22', 'en', 1, 'https://ror.org/02q7fkp22 Cameroon Academy of Sciences'),
(38176, 'https://ror.org/03jy4yd76', 'en', 1, 'https://ror.org/03jy4yd76 Uganda Carbon Bureau'),
(38177, 'https://ror.org/03j9ysw15', 'en', 1, 'https://ror.org/03j9ysw15 CareWorks'),
(38178, 'https://ror.org/041y4nv46', 'en', 1, 'https://ror.org/041y4nv46 Centre for Sexual Health and HIV AIDS Research'),
(38179, 'https://ror.org/04pks1p32', 'fr', 1, 'https://ror.org/04pks1p32 Centre National de Recherches Prehistoriques, Anthropologiques et Historiques'),
(38180, 'https://ror.org/009asrq67', 'fr', 1, 'https://ror.org/009asrq67 Centre de Calcul El-Khawarizmi'),
(38181, 'https://ror.org/00dyead60', 'en', 1, 'https://ror.org/00dyead60 Centre de Recherche et des Technologies de l''Energie Research and Technology Center of Energy'),
(38182, 'https://ror.org/04sdw4j56', 'en', 1, 'https://ror.org/04sdw4j56 Development Centre of the Tensift Region'),
(38183, 'https://ror.org/02ypmq936', 'en', 1, 'https://ror.org/02ypmq936 Caritas Nigeria'),
(38184, 'https://ror.org/01z1qnm06', 'en', 1, 'https://ror.org/01z1qnm06 Institute for Advanced Study in the Humanities Essen Kulturwissenschaftliches Institut Essen'),
(38185, 'https://ror.org/02rzek752', 'pt', 1, 'https://ror.org/02rzek752 Centro de Desenvolvimento Sustentável para as Zonas Costeiras'),
(38186, 'https://ror.org/04bwc3e35', 'en', 1, 'https://ror.org/04bwc3e35 Centre for the Study of Adolescence'),
(38187, 'https://ror.org/01ay87255', 'fr', 1, 'https://ror.org/01ay87255 Centre de Développement des Technologies Avancées'),
(38188, 'https://ror.org/01rmmj052', 'en', 1, 'https://ror.org/01rmmj052 Centre of Ticks and Tick-borne diseases'),
(38189, 'https://ror.org/03q098e53', 'fr', 1, 'https://ror.org/03q098e53 Centre de Recherche en Astronomie Astrophysique et Géophysique'),
(38190, 'https://ror.org/0100cvt49', 'en', 1, 'https://ror.org/0100cvt49 Centre national du cuir et de la chaussure National Center for Leather and Shoes المركز الوطني للجلود والأحذية'),
(38191, 'https://ror.org/04kq49p26', 'fr', 1, 'https://ror.org/04kq49p26 Centre des Techniques et Matériaux de Construction'),
(38192, 'https://ror.org/0040bha74', 'en', 1, 'https://ror.org/0040bha74 Milltown Institute of Theology and Philosophy'),
(38193, 'https://ror.org/03yz5ry83', 'en', 1, 'https://ror.org/03yz5ry83 Centre for Educational Development in Health Arusha'),
(38194, 'https://ror.org/04s8aes72', 'fr', 1, 'https://ror.org/04s8aes72 Chambre de Commerce et d''Industrie du Centre'),
(38195, 'https://ror.org/01bzv1j63', 'en', 1, 'https://ror.org/01bzv1j63 Chamber of Commerce and Industry of Tunis Chambre de Commerce et d''Industrie de Tunis'),
(38196, 'https://ror.org/02aa1n426', 'fr', 1, 'https://ror.org/02aa1n426 Centre pour l’Environnement et le Développement'),
(38197, 'https://ror.org/04fat9m09', 'fr', 1, 'https://ror.org/04fat9m09 Centre de Recherche & Développement de l''Électricité et du Gaz'),
(38198, 'https://ror.org/04dg1kd85', 'en', 1, 'https://ror.org/04dg1kd85 Department of Research and Specialist Services'),
(38199, 'https://ror.org/04aa9w798', 'fr', 1, 'https://ror.org/04aa9w798 Consortium pour la recherche économique et sociale'),
(38200, 'https://ror.org/01kywjn02', 'en', 1, 'https://ror.org/01kywjn02 Consumer Goods Council of South Africa'),
(38201, 'https://ror.org/00jvrbg23', 'en', 1, 'https://ror.org/00jvrbg23 Children''s AIDS Fund Uganda'),
(38202, 'https://ror.org/023abch36', 'en', 1, 'https://ror.org/023abch36 Center for National Health Development in Ethiopia'),
(38203, 'https://ror.org/01hpzjf11', 'en', 1, 'https://ror.org/01hpzjf11 Centre Royal de Télédétection Spatiale Royal Centre for Remote Sensing'),
(38204, 'https://ror.org/04vpza371', 'en', 1, 'https://ror.org/04vpza371 Cooperative Office for Voluntary Organizations'),
(38205, 'https://ror.org/00nqqde20', 'en', 1, 'https://ror.org/00nqqde20 Development Aid from People to People'),
(38206, 'https://ror.org/03dp8ay82', 'no_lang_code', 1, 'https://ror.org/03dp8ay82 Chitungwiza Municipality'),
(38207, 'https://ror.org/02p7rqa77', 'fr', 1, 'https://ror.org/02p7rqa77 Centre Technique de l''Agro-Alimentaire'),
(38208, 'https://ror.org/04946aj33', 'no_lang_code', 1, 'https://ror.org/04946aj33 De Beers (South Africa)'),
(38209, 'https://ror.org/01ppfgh80', 'en', 1, 'https://ror.org/01ppfgh80 Packaging Technical Centre'),
(38210, 'https://ror.org/041nsyx41', 'fr', 1, 'https://ror.org/041nsyx41 Coordination Nationale des Organisations Paysannes du Mali'),
(38211, 'https://ror.org/00byjv668', 'fr', 1, 'https://ror.org/00byjv668 Centre Technique des Industries Agroalimentaires'),
(38212, 'https://ror.org/04y7b4z29', 'en', 1, 'https://ror.org/04y7b4z29 Coordinating Office for Control of Trypanosomiasis in Uganda'),
(38213, 'https://ror.org/01frwjw20', 'en', 1, 'https://ror.org/01frwjw20 Chreso Ministries'),
(38214, 'https://ror.org/05fx0av92', 'en', 1, 'https://ror.org/05fx0av92 Centre technique du textile Textile Technical Center'),
(38215, 'https://ror.org/0308cf074', 'no_lang_code', 1, 'https://ror.org/0308cf074 Cosmos Limited'),
(38216, 'https://ror.org/00vxdmt81', 'en', 1, 'https://ror.org/00vxdmt81 Christian Council of Tanzania'),
(38217, 'https://ror.org/03b1zjt31', 'en', 1, 'https://ror.org/03b1zjt31 National Engineering School of Tunis École Nationale d''Ingénieurs de Tunis المدرسة الوطنية للمهندسين بتونس'),
(38218, 'https://ror.org/01bnv2160', 'no_lang_code', 1, 'https://ror.org/01bnv2160 Deltamune (South Africa)'),
(38219, 'https://ror.org/01fy5k372', 'fr', 1, 'https://ror.org/01fy5k372 École Nationale d''Ingénieurs de Gabès المدرسة الوطنية للمهندسين بقابس'),
(38220, 'https://ror.org/05xavft74', 'en', 1, 'https://ror.org/05xavft74 Ministry of Health and the Fight against AIDS Ministère de la Santé et de la Lutte contre le sida'),
(38221, 'https://ror.org/02t3sye10', 'en', 1, 'https://ror.org/02t3sye10 Excellence & Friends Management Care Centre'),
(38222, 'https://ror.org/0207t6t84', 'en', 1, 'https://ror.org/0207t6t84 Christian Health Association of Kenya'),
(38223, 'https://ror.org/046e8j462', 'en', 1, 'https://ror.org/046e8j462 Christian Health Association of Malawi'),
(38224, 'https://ror.org/04yxemm04', 'en', 1, 'https://ror.org/04yxemm04 e-Waste Association of South Africa'),
(38225, 'https://ror.org/0219f5c57', 'en', 1, 'https://ror.org/0219f5c57 Christian Health Association of Nigeria'),
(38226, 'https://ror.org/02e9x4k55', 'en', 1, 'https://ror.org/02e9x4k55 Christian Social Services Commission'),
(38227, 'https://ror.org/05s5km770', 'en', 1, 'https://ror.org/05s5km770 Churches Health Assoication Of Zambia'),
(38228, 'https://ror.org/03hbjhd85', 'en', 1, 'https://ror.org/03hbjhd85 National Registration, Passport and Citizenship Department'),
(38229, 'https://ror.org/01z3b4937', 'fr', 1, 'https://ror.org/01z3b4937 École Nationale Forestière d''Ingénieurs'),
(38230, 'https://ror.org/01xqt1a75', 'en', 1, 'https://ror.org/01xqt1a75 CIAM Public Health Research and Development Centre'),
(38231, 'https://ror.org/045w94e48', 'en', 1, 'https://ror.org/045w94e48 Desert Research Foundation of Namibia'),
(38232, 'https://ror.org/02asra118', 'en', 1, 'https://ror.org/02asra118 Desmond Tutu HIV Foundation'),
(38233, 'https://ror.org/00rs33k88', 'en', 1, 'https://ror.org/00rs33k88 Eastern Deanery AIDS Relief Program'),
(38234, 'https://ror.org/05t0zwy08', 'en', 1, 'https://ror.org/05t0zwy08 Polytechnic School of Algiers المدرسة الوطنية المتعددة التقنيات بالجزائر'),
(38235, 'https://ror.org/034sd6c34', 'en', 1, 'https://ror.org/034sd6c34 Development Aid from People to People in Zambia'),
(38236, 'https://ror.org/0323nsw79', 'en', 1, 'https://ror.org/0323nsw79 Citizens for Justice'),
(38237, 'https://ror.org/01zkyh967', 'fr', 1, 'https://ror.org/01zkyh967 Commune de Bobo-Dioulasso'),
(38238, 'https://ror.org/044pnzs23', 'fr', 1, 'https://ror.org/044pnzs23 Commune de Matam'),
(38239, 'https://ror.org/04qpqg969', 'pt', 1, 'https://ror.org/04qpqg969 Direcção Geral de Ensino Superior Ciencia'),
(38240, 'https://ror.org/00p5psh68', 'pt', 1, 'https://ror.org/00p5psh68 Ministério da Saúde e da Segurança Social'),
(38241, 'https://ror.org/00dse3307', 'en', 1, 'https://ror.org/00dse3307 Tunisia Polytechnic School École Polytechnique de Tunisie المدرسة التونسية للتقنيات'),
(38242, 'https://ror.org/041hbh421', 'en', 1, 'https://ror.org/041hbh421 Community Development Resource Network'),
(38243, 'https://ror.org/04wccky94', 'en', 1, 'https://ror.org/04wccky94 Climate Change, Agriculture and Food Security'),
(38244, 'https://ror.org/03fdtyj95', 'no_lang_code', 1, 'https://ror.org/03fdtyj95 Electra- Empresa de Electricidade e Água (Cape Verde)'),
(38245, 'https://ror.org/04mwj6r38', 'en', 1, 'https://ror.org/04mwj6r38 Community Media Trust'),
(38246, 'https://ror.org/05q1hvw61', 'pt', 1, 'https://ror.org/05q1hvw61 Clínica Sagrada Esperança'),
(38247, 'https://ror.org/04y0xnw59', 'fr', 1, 'https://ror.org/04y0xnw59 Enda Sahel et Afrique de l’Ouest'),
(38248, 'https://ror.org/030ks9p42', 'en', 1, 'https://ror.org/030ks9p42 National Directorate of Geology'),
(38249, 'https://ror.org/008mypn13', 'fr', 1, 'https://ror.org/008mypn13 Direction de l’Epidémiologie et de Lutte contre les Maladies'),
(38250, 'https://ror.org/031cmny56', 'en', 1, 'https://ror.org/031cmny56 Ethiopian Agricultural Transformation Agency'),
(38251, 'https://ror.org/00anh1e03', 'en', 1, 'https://ror.org/00anh1e03 Ethiopian Development Research Institute'),
(38252, 'https://ror.org/04zh58f23', 'no_lang_code', 1, 'https://ror.org/04zh58f23 Compagnie Africaine des Peintures'),
(38253, 'https://ror.org/05vhwn119', 'en', 1, 'https://ror.org/05vhwn119 Ethiopian Economic Association'),
(38254, 'https://ror.org/03080tp23', 'fr', 1, 'https://ror.org/03080tp23 Direction de la Météorologie Nationale'),
(38255, 'https://ror.org/00ss2rp50', 'fr', 1, 'https://ror.org/00ss2rp50 Direction de la Météorologie Nationale du Niger'),
(38256, 'https://ror.org/04320xd69', 'en', 1, 'https://ror.org/04320xd69 National Water Research Center'),
(38257, 'https://ror.org/00rwrmx36', 'en', 1, 'https://ror.org/00rwrmx36 Ethiopian Medical Association'),
(38258, 'https://ror.org/01vrhpc86', 'en', 1, 'https://ror.org/01vrhpc86 Ethiopian Society of Obstetricians and Gynecologists'),
(38259, 'https://ror.org/05v9kmg29', 'en', 1, 'https://ror.org/05v9kmg29 Environmental Alert'),
(38260, 'https://ror.org/041r43076', 'no_lang_code', 1, 'https://ror.org/041r43076 Etablissements Abdelmoula (Tunisia)'),
(38261, 'https://ror.org/02c3q7w36', 'en', 1, 'https://ror.org/02c3q7w36 Environmental Law Research Institute'),
(38262, 'https://ror.org/00hcr7c15', 'en', 1, 'https://ror.org/00hcr7c15 Conseil ouest et centre africain pour la recherche et le développement agricoles West and Central African Council for Agricultural Research and Development'),
(38263, 'https://ror.org/025rbpt60', 'no_lang_code', 1, 'https://ror.org/025rbpt60 Eurofilet (Morocco)'),
(38264, 'https://ror.org/05wfg5466', 'no_lang_code', 1, 'https://ror.org/05wfg5466 Environement Quality International (Egypt)'),
(38265, 'https://ror.org/00y8tpp02', 'fr', 1, 'https://ror.org/00y8tpp02 Laboratoire National de Santé Publique du Congo'),
(38266, 'https://ror.org/04n9x2190', 'fr', 1, 'https://ror.org/04n9x2190 Comité National de Télédétection et d''Information Géographique'),
(38267, 'https://ror.org/0077b7806', 'en', 1, 'https://ror.org/0077b7806 Ministry of National Education and Scientific Research'),
(38268, 'https://ror.org/01trzhx11', 'en', 1, 'https://ror.org/01trzhx11 Antelope Valley College'),
(38269, 'https://ror.org/0252d3t81', 'en', 1, 'https://ror.org/0252d3t81 Family Aids Caring Trust'),
(38270, 'https://ror.org/053y1tm43', 'en', 1, 'https://ror.org/053y1tm43 Mateur Higher School of Agriculture'),
(38271, 'https://ror.org/04hvenk37', 'en', 1, 'https://ror.org/04hvenk37 Family Guidance Association of Ethiopia'),
(38272, 'https://ror.org/01azc2m81', 'en', 1, 'https://ror.org/01azc2m81 Sub-Regional Fisheries Commission'),
(38273, 'https://ror.org/000ht5b74', 'fr', 1, 'https://ror.org/000ht5b74 Fondation du Roi Abdul-Aziz Al Saoud'),
(38274, 'https://ror.org/0157ysg68', 'no_lang_code', 1, 'https://ror.org/0157ysg68 ETC East Africa (Kenya)'),
(38275, 'https://ror.org/003ad2905', 'no_lang_code', 1, 'https://ror.org/003ad2905 Farm Africa Kenya'),
(38276, 'https://ror.org/05y723906', 'en', 1, 'https://ror.org/05y723906 Food, Agriculture and Natural Resources Policy Analysis Network'),
(38277, 'https://ror.org/03y6ab910', 'en', 1, 'https://ror.org/03y6ab910 Farm Africa Ethiopia'),
(38278, 'https://ror.org/058tmpm50', 'fr', 1, 'https://ror.org/058tmpm50 Groupe de Recherche et d’Action sur le Foncier'),
(38279, 'https://ror.org/04ak1vs79', 'fr', 1, 'https://ror.org/04ak1vs79 École Supérieure des Ingénieurs de l''Équipement Rural'),
(38280, 'https://ror.org/03ctxn313', 'en', 1, 'https://ror.org/03ctxn313 Federal HIV/AIDS Prevention and Control Office'),
(38281, 'https://ror.org/05nr28g03', 'en', 1, 'https://ror.org/05nr28g03 Assiniboine Community College'),
(38282, 'https://ror.org/03r3n5r63', 'en', 1, 'https://ror.org/03r3n5r63 Food, Agriculture and Natural Resources Policy Analysis Network'),
(38283, 'https://ror.org/05cy65c44', 'en', 1, 'https://ror.org/05cy65c44 Concern for Development Initiatives in Africa'),
(38284, 'https://ror.org/04gm0xc34', 'en', 1, 'https://ror.org/04gm0xc34 Group For Research and Technology Exchanges Groupe de Recherches et d''Echanges Technologiques'),
(38285, 'https://ror.org/00zagyr65', 'en', 1, 'https://ror.org/00zagyr65 Forestry Research Institute of Nigeria'),
(38286, 'https://ror.org/05tesye40', 'no_lang_code', 1, 'https://ror.org/05tesye40 EcoMetrix Africa'),
(38287, 'https://ror.org/04jqr6p02', 'en', 1, 'https://ror.org/04jqr6p02 Forestry Commission'),
(38288, 'https://ror.org/048308827', 'no_lang_code', 1, 'https://ror.org/048308827 Egyptian Consulting & Trading Co. Ltd'),
(38289, 'https://ror.org/018ewp664', 'no_lang_code', 1, 'https://ror.org/018ewp664 Grow More Seeds and Chemicals (Uganda)'),
(38290, 'https://ror.org/00347qn56', 'no_lang_code', 1, 'https://ror.org/00347qn56 Geoterra Image (South Africa)'),
(38291, 'https://ror.org/012hetj48', 'no_lang_code', 1, 'https://ror.org/012hetj48 Forum For Social Studies'),
(38292, 'https://ror.org/01606az08', 'en', 1, 'https://ror.org/01606az08 Education Labour Relations Council'),
(38293, 'https://ror.org/018hr1j41', 'en', 1, 'https://ror.org/018hr1j41 Ghana AIDS Commission'),
(38294, 'https://ror.org/00w07t135', 'en', 1, 'https://ror.org/00w07t135 Friends of the Earth-Ghana'),
(38295, 'https://ror.org/00vvdxm97', 'no_lang_code', 1, 'https://ror.org/00vvdxm97 Grupo João Ferreira dos Santos (Mozambique)'),
(38296, 'https://ror.org/00pz3sx52', 'en', 1, 'https://ror.org/00pz3sx52 Egypt Exploration Society'),
(38297, 'https://ror.org/02n5zea08', 'en', 1, 'https://ror.org/02n5zea08 Friends for Global Health Initiative Nigeria'),
(38298, 'https://ror.org/03ve8wd49', 'en', 1, 'https://ror.org/03ve8wd49 GS1 South Africa'),
(38299, 'https://ror.org/02dpn9096', 'no_lang_code', 1, 'https://ror.org/02dpn9096 Ghana-India Kofi Annan Centre of Excellence in ICT'),
(38300, 'https://ror.org/03jk3dn88', 'en', 1, 'https://ror.org/03jk3dn88 Egyptian Information Telecommunications Electronics and Software Alliance'),
(38301, 'https://ror.org/01047m564', 'en', 1, 'https://ror.org/01047m564 Flower Valley Conservation Trust'),
(38302, 'https://ror.org/011bq0640', 'en', 1, 'https://ror.org/011bq0640 Ecole Supérieure des Industries Alimentaires de Tunis Higher Institute of Food Industries of Tunis'),
(38303, 'https://ror.org/05m0qr140', 'en', 1, 'https://ror.org/05m0qr140 Ghana Meteorological Agency'),
(38304, 'https://ror.org/0504hx432', 'en', 1, 'https://ror.org/0504hx432 Egyptian Museum'),
(38305, 'https://ror.org/005wq4805', 'en', 1, 'https://ror.org/005wq4805 Fobang Foundation'),
(38306, 'https://ror.org/03nh6bz87', 'no_lang_code', 1, 'https://ror.org/03nh6bz87 Vacsera (Egypt)'),
(38307, 'https://ror.org/00471x271', 'fr', 1, 'https://ror.org/00471x271 Haut-Commissariat aux Eaux et Forêts et à la Lutte Contre la Désertification'),
(38308, 'https://ror.org/0536hv290', 'en', 1, 'https://ror.org/0536hv290 Elizabeth Glaser Pediatric AIDS Foundation'),
(38309, 'https://ror.org/04px8zq55', 'no_lang_code', 1, 'https://ror.org/04px8zq55 Egyptian Solar Research Center'),
(38310, 'https://ror.org/00e736r60', 'en', 1, 'https://ror.org/00e736r60 Hope Worldwide'),
(38311, 'https://ror.org/05qfxcq37', 'en', 1, 'https://ror.org/05qfxcq37 Hope Worldwide Kenya'),
(38312, 'https://ror.org/02czw2y48', 'en', 1, 'https://ror.org/02czw2y48 Egyptian Center for Public Policy Studies'),
(38313, 'https://ror.org/01azfny69', 'en', 1, 'https://ror.org/01azfny69 IHub'),
(38314, 'https://ror.org/03vk3dn23', 'en', 1, 'https://ror.org/03vk3dn23 Global Water Partnership'),
(38315, 'https://ror.org/03ya8jr27', 'no_lang_code', 1, 'https://ror.org/03ya8jr27 Health Science Academy (South Africa)'),
(38316, 'https://ror.org/02ekmsz98', 'en', 1, 'https://ror.org/02ekmsz98 Golden Valley Agricultural Research Trust'),
(38317, 'https://ror.org/04zpt4h82', 'no_lang_code', 1, 'https://ror.org/04zpt4h82 IBM (Egypt)'),
(38318, 'https://ror.org/03mngpd27', 'no_lang_code', 1, 'https://ror.org/03mngpd27 Health Strat (Kenya)'),
(38319, 'https://ror.org/00k255b93', 'no_lang_code', 1, 'https://ror.org/00k255b93 Golder Associates (South Africa)'),
(38320, 'https://ror.org/04qv8j179', 'en', 1, 'https://ror.org/04qv8j179 Government of Equatorial Guinea'),
(38321, 'https://ror.org/01g9qbv95', 'en', 1, 'https://ror.org/01g9qbv95 Government of Ethiopia'),
(38322, 'https://ror.org/009ayk582', 'en', 1, 'https://ror.org/009ayk582 ICLEI - Local Governments for Sustainability Africa'),
(38323, 'https://ror.org/02b90d314', 'en', 1, 'https://ror.org/02b90d314 Malawi Government'),
(38324, 'https://ror.org/04pxbhh58', 'pt', 1, 'https://ror.org/04pxbhh58 República de Moçambique'),
(38325, 'https://ror.org/04c4jf131', 'en', 1, 'https://ror.org/04c4jf131 Government of Uganda'),
(38326, 'https://ror.org/00jzq7445', 'en', 1, 'https://ror.org/00jzq7445 Ministry of Finance and Development Planning'),
(38327, 'https://ror.org/0360y2h46', 'no_lang_code', 1, 'https://ror.org/0360y2h46 Illovo Sugar (South Africa)'),
(38328, 'https://ror.org/05f9b5v38', 'en', 1, 'https://ror.org/05f9b5v38 Grand Egyptian Museum'),
(38329, 'https://ror.org/03c6tcr26', 'no_lang_code', 1, 'https://ror.org/03c6tcr26 Graphtech (Tunisia)'),
(38330, 'https://ror.org/00bvaaw52', 'no_lang_code', 1, 'https://ror.org/00bvaaw52 Infusion (South Africa)'),
(38331, 'https://ror.org/00rnmt205', 'fr', 1, 'https://ror.org/00rnmt205 Institut National de la Recherche Agronomique du Niger'),
(38332, 'https://ror.org/05kf9jb93', 'fr', 1, 'https://ror.org/05kf9jb93 Institut de Recherche Pour le Développement'),
(38333, 'https://ror.org/02ywnmf80', 'en', 1, 'https://ror.org/02ywnmf80 French Institute for Research in Africa'),
(38334, 'https://ror.org/023rvkh50', 'fr', 1, 'https://ror.org/023rvkh50 Institut Africain de Gestion Urbaine'),
(38335, 'https://ror.org/01c3h5z21', 'fr', 1, 'https://ror.org/01c3h5z21 Institut National de Recherche Forestière'),
(38336, 'https://ror.org/03whbx426', 'fr', 1, 'https://ror.org/03whbx426 Institut National de Santé Publique'),
(38337, 'https://ror.org/02t4zgr18', 'fr', 1, 'https://ror.org/02t4zgr18 Institut National de Nutrition et de Technologie Alimentaire'),
(38338, 'https://ror.org/044vzpb64', 'fr', 1, 'https://ror.org/044vzpb64 Institut de Recherche pour le Développement'),
(38339, 'https://ror.org/021ng2673', 'en', 1, 'https://ror.org/021ng2673 Institut Panos Afrique de l''Ouest Panos Institute West Africa'),
(38340, 'https://ror.org/05gvkv284', 'fr', 1, 'https://ror.org/05gvkv284 Institut de Recherche Agronomique de Guinée'),
(38341, 'https://ror.org/05dhgjm21', 'en', 1, 'https://ror.org/05dhgjm21 Institut Marocain des Relations Internationales MOROCCAN INSTITUTE OF INTERNATIONAL RELATIONS'),
(38342, 'https://ror.org/025xwwx95', 'no_lang_code', 1, 'https://ror.org/025xwwx95 International Consultants (Egypt)'),
(38343, 'https://ror.org/04xghb049', 'fr', 1, 'https://ror.org/04xghb049 Institut Mauritanien de Recherches Océanographiques et des Pêches'),
(38344, 'https://ror.org/04z91h293', 'pt', 1, 'https://ror.org/04z91h293 Instituto Nacional de Desenvolvimento das Pescas'),
(38345, 'https://ror.org/02g43d244', 'en', 1, 'https://ror.org/02g43d244 International Crops Research Institute for the Semi-Arid Tropics'),
(38346, 'https://ror.org/00c4ccg58', 'fr', 1, 'https://ror.org/00c4ccg58 Institut Polytechnique Rural de Formation et de Recherche Appliquée'),
(38347, 'https://ror.org/00946w275', 'pt', 1, 'https://ror.org/00946w275 Instituto Nacional de Estudos e Pesquisa'),
(38348, 'https://ror.org/05hza8t97', 'en', 1, 'https://ror.org/05hza8t97 Instituto Nacional de Gestão de Calamidades National Disasters Management Institute'),
(38349, 'https://ror.org/04c99m021', 'no_lang_code', 1, 'https://ror.org/04c99m021 International Drilling Services (Tunisia)'),
(38350, 'https://ror.org/01zqd7t66', 'en', 1, 'https://ror.org/01zqd7t66 Instituto Nacional de Meteorologia de Moçambique Mozambique National Institute of Meteorology'),
(38351, 'https://ror.org/00qrts576', 'en', 1, 'https://ror.org/00qrts576 Kara Counselling and Training Trust'),
(38352, 'https://ror.org/00qcy3519', 'en', 1, 'https://ror.org/00qcy3519 International Partnership for Human Development'),
(38353, 'https://ror.org/03fbg1b47', 'fr', 1, 'https://ror.org/03fbg1b47 Institut Supérieur de Gestion et de Planification'),
(38354, 'https://ror.org/02544k771', 'en', 1, 'https://ror.org/02544k771 Kasisi Agricultural Training Centre'),
(38355, 'https://ror.org/03gwh5v62', 'fr', 1, 'https://ror.org/03gwh5v62 Iskane Ingénierie'),
(38356, 'https://ror.org/02yxawe84', 'en', 1, 'https://ror.org/02yxawe84 Integrated Community Based Initiatives'),
(38357, 'https://ror.org/05rnhb415', 'no_lang_code', 1, 'https://ror.org/05rnhb415 ISS International (South Africa)'),
(38358, 'https://ror.org/042dgb341', 'fr', 1, 'https://ror.org/042dgb341 Institut Superieur Des Sciences De La Population'),
(38359, 'https://ror.org/00fa3cy95', 'en', 1, 'https://ror.org/00fa3cy95 Kenya AIDS NGOs Consortium'),
(38360, 'https://ror.org/041dvyp82', 'fr', 1, 'https://ror.org/041dvyp82 Institut Technique des Grandes Cultures'),
(38361, 'https://ror.org/00mbwxd54', 'en', 1, 'https://ror.org/00mbwxd54 Italian Institute of Culture'),
(38362, 'https://ror.org/02bqmev78', 'en', 1, 'https://ror.org/02bqmev78 Kenya AIDS Vaccine Initiative'),
(38363, 'https://ror.org/02yd7p033', 'fr', 1, 'https://ror.org/02yd7p033 Institut Togolais de Recherche Agronomique'),
(38364, 'https://ror.org/05db06c70', 'en', 1, 'https://ror.org/05db06c70 Kenya Coastal Development Project'),
(38365, 'https://ror.org/00r6rm584', 'en', 1, 'https://ror.org/00r6rm584 Institut Tunisien de la Competitivité et des Etudes Quantitatives Tunisian Institute of Competitiveness and Quantitative Studies'),
(38366, 'https://ror.org/03fntkd46', 'en', 1, 'https://ror.org/03fntkd46 Commission du Bassin du Lac Tchad Lake Chad Basin Commission'),
(38367, 'https://ror.org/03grty434', 'en', 1, 'https://ror.org/03grty434 Jembi Health Systems'),
(38368, 'https://ror.org/002wdx176', 'en', 1, 'https://ror.org/002wdx176 Practical Action'),
(38369, 'https://ror.org/00sb8wv57', 'en', 1, 'https://ror.org/00sb8wv57 Kenya Institute for Public Policy Research and Analysis'),
(38370, 'https://ror.org/04rew5e44', 'en', 1, 'https://ror.org/04rew5e44 Autorité du Lac Tanganyika Lake Tanganyika Authority'),
(38371, 'https://ror.org/01a304769', 'en', 1, 'https://ror.org/01a304769 Kenya Institute Of Organic Farming'),
(38372, 'https://ror.org/0232jr667', 'en', 1, 'https://ror.org/0232jr667 Practical Action'),
(38373, 'https://ror.org/00wsrxw08', 'en', 1, 'https://ror.org/00wsrxw08 Rwanda Meteorological Service'),
(38374, 'https://ror.org/05g795n60', 'en', 1, 'https://ror.org/05g795n60 Justice Development and Peace Caritas'),
(38375, 'https://ror.org/031awfc58', 'en', 1, 'https://ror.org/031awfc58 Lake Victoria Fisheries Organization'),
(38376, 'https://ror.org/055699s02', 'en', 1, 'https://ror.org/055699s02 Market Matters'),
(38377, 'https://ror.org/0440v7339', 'en', 1, 'https://ror.org/0440v7339 Kenya Plant Health Inspectorate Services'),
(38378, 'https://ror.org/00ddw9x26', 'fr', 1, 'https://ror.org/00ddw9x26 Direction Générale de la Météorologie'),
(38379, 'https://ror.org/05c8bms59', 'en', 1, 'https://ror.org/05c8bms59 Kenya Psychiatry Association'),
(38380, 'https://ror.org/03q98b746', 'en', 1, 'https://ror.org/03q98b746 Maroc Numeric Cluster'),
(38381, 'https://ror.org/054cccb97', 'en', 1, 'https://ror.org/054cccb97 Grounded Media'),
(38382, 'https://ror.org/00tm7y673', 'en', 1, 'https://ror.org/00tm7y673 Methodist Church in Zimbabwe'),
(38383, 'https://ror.org/010w5pd13', 'en', 1, 'https://ror.org/010w5pd13 Kalahari Conservation Society'),
(38384, 'https://ror.org/027z3vs57', 'en', 1, 'https://ror.org/027z3vs57 Kenya Sea Turtle Conservation Committee'),
(38385, 'https://ror.org/042e5sj03', 'no_lang_code', 1, 'https://ror.org/042e5sj03 mHealth (Kenya)'),
(38386, 'https://ror.org/047yw9a66', 'no_lang_code', 1, 'https://ror.org/047yw9a66 Kenya Seed Company (Kenya)'),
(38387, 'https://ror.org/04f3rva03', 'en', 1, 'https://ror.org/04f3rva03 MICAIA Foundation'),
(38388, 'https://ror.org/03h8x3k49', 'en', 1, 'https://ror.org/03h8x3k49 Kamiesberg Local Municipality'),
(38389, 'https://ror.org/036czv220', 'no_lang_code', 1, 'https://ror.org/036czv220 Microchem (South Africa)'),
(38390, 'https://ror.org/01tdr6x55', 'en', 1, 'https://ror.org/01tdr6x55 Kenyan Medical Women''s Association'),
(38391, 'https://ror.org/000xh7t03', 'no_lang_code', 1, 'https://ror.org/000xh7t03 Lesieur Cristal'),
(38392, 'https://ror.org/01e4tdn74', 'en', 1, 'https://ror.org/01e4tdn74 Ministry of Agriculture Livestock and Fisheries'),
(38393, 'https://ror.org/03tv0yw82', 'no_lang_code', 1, 'https://ror.org/03tv0yw82 Kheth’Impilo'),
(38394, 'https://ror.org/040xtna86', 'fr', 1, 'https://ror.org/040xtna86 Ministère de l''Agriculture, du Développement Rural et de la Pêche'),
(38395, 'https://ror.org/009wrgz05', 'en', 1, 'https://ror.org/009wrgz05 Lighthouse Trust'),
(38396, 'https://ror.org/04m6e6f10', 'en', 1, 'https://ror.org/04m6e6f10 Ministry of Agriculture and Fisheries Ministère de l''Agriculture et de la Pêche Maritime'),
(38397, 'https://ror.org/05awvfd69', 'en', 1, 'https://ror.org/05awvfd69 Kumi District Local Government'),
(38398, 'https://ror.org/05tkawa34', 'no_lang_code', 1, 'https://ror.org/05tkawa34 Mimar Engineering Consultancy (Egypt)'),
(38399, 'https://ror.org/00gfqem49', 'no_lang_code', 1, 'https://ror.org/00gfqem49 Kusamotu & Kusamotu'),
(38400, 'https://ror.org/04qwsbk34', 'en', 1, 'https://ror.org/04qwsbk34 Medical Access Uganda'),
(38401, 'https://ror.org/05gap9e81', 'fr', 1, 'https://ror.org/05gap9e81 Ministère de l’Enseignement Supérieur et de la Recherche Scientifique'),
(38402, 'https://ror.org/05et1sq07', 'en', 1, 'https://ror.org/05et1sq07 Medical Research Council of Zimbabwe'),
(38403, 'https://ror.org/023y3qd10', 'en', 1, 'https://ror.org/023y3qd10 Ministry of Livestock, Fisheries and Animal Industries Ministère de l''Elevage, des Pêches et des Industries Animales'),
(38404, 'https://ror.org/05dngsw26', 'fr', 1, 'https://ror.org/05dngsw26 Ministère de l''Équipement'),
(38405, 'https://ror.org/02353ej91', 'en', 1, 'https://ror.org/02353ej91 LVCT Health'),
(38406, 'https://ror.org/041dhrh62', 'en', 1, 'https://ror.org/041dhrh62 Ministry of Mines, Industry and Technological Development Ministère des Mines, de l''Industrie et du Développement Technologique'),
(38407, 'https://ror.org/00qgwdb66', 'en', 1, 'https://ror.org/00qgwdb66 Ministry of Agriculture, Food Security and Cooperatives Ministry of Agriculture, Food and Cooperatives Wizara ya Kilimo, Chakula na Ushirika'),
(38408, 'https://ror.org/04s51wj45', 'fr', 1, 'https://ror.org/04s51wj45 Ministère de l’Industrie, du Commerce, de l’Investissement et de l’Economie Numérique'),
(38409, 'https://ror.org/0328b5c57', 'fr', 1, 'https://ror.org/0328b5c57 Laboratoire d''Études et de Recherche sur les Dynamiques Sociales et le Développement Local'),
(38410, 'https://ror.org/04e3vbx44', 'fr', 1, 'https://ror.org/04e3vbx44 Ministère de la Culture'),
(38411, 'https://ror.org/04magp836', 'pt', 1, 'https://ror.org/04magp836 Centro Terra Viva'),
(38412, 'https://ror.org/020psrf40', 'fr', 1, 'https://ror.org/020psrf40 Laboratoire National d''Appui au Développement Agricole'),
(38413, 'https://ror.org/05msvkx71', 'fr', 1, 'https://ror.org/05msvkx71 Ministère de la Santé Publique'),
(38414, 'https://ror.org/01q07sy43', 'fr', 1, 'https://ror.org/01q07sy43 Ministre de la Santé'),
(38415, 'https://ror.org/00yrwkd81', 'fr', 1, 'https://ror.org/00yrwkd81 Ministère de la Santé'),
(38416, 'https://ror.org/00yv7s489', 'en', 1, 'https://ror.org/00yv7s489 Ministry of Health and Sanitation'),
(38417, 'https://ror.org/02hfjdw52', 'fr', 1, 'https://ror.org/02hfjdw52 Ministère de Environnement et de l''Assainissement du Mali'),
(38418, 'https://ror.org/022armd05', 'en', 1, 'https://ror.org/022armd05 Madagascar Biodiversity Partnership'),
(38419, 'https://ror.org/04t39kh72', 'fr', 1, 'https://ror.org/04t39kh72 Ministère de l’Environnement et du Développement Durable'),
(38420, 'https://ror.org/00j73mn11', 'fr', 1, 'https://ror.org/00j73mn11 Ministry of Public Health and Hygiene Ministère de la Santé et de l''Hygiène Publique'),
(38421, 'https://ror.org/04na2p952', 'en', 1, 'https://ror.org/04na2p952 Ministry of Information, Communications and Technology'),
(38422, 'https://ror.org/022gwv794', 'en', 1, 'https://ror.org/022gwv794 Ministry of Lands and Rural Resettlement'),
(38423, 'https://ror.org/01wk9js81', 'en', 1, 'https://ror.org/01wk9js81 Ministry of Environment Science Technology and Innovation'),
(38424, 'https://ror.org/04d94aw40', 'en', 1, 'https://ror.org/04d94aw40 Ministry of Lands, Housing & Urban Development'),
(38425, 'https://ror.org/05pkrbq13', 'no_lang_code', 1, 'https://ror.org/05pkrbq13 Maison Arabe de Software et de Hardware (Tunisia)'),
(38426, 'https://ror.org/05x0jxp48', 'fr', 1, 'https://ror.org/05x0jxp48 Ministère de l’Éducation Nationale et de l''Enseignement Technique'),
(38427, 'https://ror.org/01cd26272', 'no_lang_code', 1, 'https://ror.org/01cd26272 MultiMedia InnoVations (South Africa)'),
(38428, 'https://ror.org/05ma8ss29', 'en', 1, 'https://ror.org/05ma8ss29 Ministry of Sea Inland Waters and Fisheries Ministério do Mar, Águas Interiores e Pescas'),
(38429, 'https://ror.org/00d4y9q10', 'no_lang_code', 1, 'https://ror.org/00d4y9q10 MAKGABANENG'),
(38430, 'https://ror.org/01dnjhj88', 'en', 1, 'https://ror.org/01dnjhj88 Nakuru County Council'),
(38431, 'https://ror.org/03eeyzx69', 'en', 1, 'https://ror.org/03eeyzx69 Ministy of Fisheries and Marine Resources'),
(38432, 'https://ror.org/00ezwn594', 'en', 1, 'https://ror.org/00ezwn594 Ministry of Natural Resources and Tourism Wizara ya Maliasili na Utalii'),
(38433, 'https://ror.org/04hes6w33', 'en', 1, 'https://ror.org/04hes6w33 Nama Khoi Local Municipality'),
(38434, 'https://ror.org/041169e26', 'en', 1, 'https://ror.org/041169e26 Ministry of Water and Energy'),
(38435, 'https://ror.org/053ykx779', 'en', 1, 'https://ror.org/053ykx779 Ministry of Health'),
(38436, 'https://ror.org/01zyzqr72', 'en', 1, 'https://ror.org/01zyzqr72 Malawi Blood Transfusion Service'),
(38437, 'https://ror.org/05y2q9q81', 'en', 1, 'https://ror.org/05y2q9q81 Namibia Institute of Pathology'),
(38438, 'https://ror.org/056y2wm23', 'en', 1, 'https://ror.org/056y2wm23 Ministry of Water and Environment'),
(38439, 'https://ror.org/056e86068', 'en', 1, 'https://ror.org/056e86068 Ministry of Food and Agriculture'),
(38440, 'https://ror.org/04v70b898', 'no_lang_code', 1, 'https://ror.org/04v70b898 Nano Energy (South Africa)'),
(38441, 'https://ror.org/045jcv930', 'en', 1, 'https://ror.org/045jcv930 Mali Health'),
(38442, 'https://ror.org/05532cf37', 'en', 1, 'https://ror.org/05532cf37 National Smallholder Farmers Association of Malawi'),
(38443, 'https://ror.org/04ffdar46', 'en', 1, 'https://ror.org/04ffdar46 Ministry of Health and Social Welfare'),
(38444, 'https://ror.org/00cgdyn62', 'pt', 1, 'https://ror.org/00cgdyn62 Ministério da Administração Interna'),
(38445, 'https://ror.org/05ee4t010', 'en', 1, 'https://ror.org/05ee4t010 National AIDS Council'),
(38446, 'https://ror.org/04se07z51', 'no_lang_code', 1, 'https://ror.org/04se07z51 Misc (Egypt)'),
(38447, 'https://ror.org/03k3wrz84', 'pt', 1, 'https://ror.org/03k3wrz84 Ministério do Ensino Superior Ciência e Inovação'),
(38448, 'https://ror.org/034n9j029', 'en', 1, 'https://ror.org/034n9j029 National Blood Service Zimbabwe'),
(38449, 'https://ror.org/00sf50t55', 'en', 1, 'https://ror.org/00sf50t55 Kenya National Blood Transfusion Services'),
(38450, 'https://ror.org/014pn8930', 'en', 1, 'https://ror.org/014pn8930 National Blood Transfusion Service'),
(38451, 'https://ror.org/0422vxn54', 'en', 1, 'https://ror.org/0422vxn54 Ministry of Irrigation and Water Development'),
(38452, 'https://ror.org/004fggg55', 'en', 1, 'https://ror.org/004fggg55 Ministry of Agriculture, Animal Industry and Fisheries'),
(38453, 'https://ror.org/01tqmg467', 'en', 1, 'https://ror.org/01tqmg467 Ministry of Health and Social Services'),
(38454, 'https://ror.org/02e957z30', 'en', 1, 'https://ror.org/02e957z30 Ministry of Agriculture and Land Reclamation وزارة الزراعة واستصلاح الأراضي المصرية'),
(38455, 'https://ror.org/00fyzzw59', 'en', 1, 'https://ror.org/00fyzzw59 Ministry of Agriculture'),
(38456, 'https://ror.org/004adc024', 'en', 1, 'https://ror.org/004adc024 National Medical Stores'),
(38457, 'https://ror.org/0549pzy23', 'en', 1, 'https://ror.org/0549pzy23 National Veterinary Institute'),
(38458, 'https://ror.org/037qtfe97', 'en', 1, 'https://ror.org/037qtfe97 Department of Arts and Culture'),
(38459, 'https://ror.org/05f11bs74', 'en', 1, 'https://ror.org/05f11bs74 National Computer Board'),
(38460, 'https://ror.org/023zxqh11', 'en', 1, 'https://ror.org/023zxqh11 National Office for Technology Acquisition and Promotion'),
(38461, 'https://ror.org/02wrr2w36', 'en', 1, 'https://ror.org/02wrr2w36 Ministry of Community Development, Mother and Child Health'),
(38462, 'https://ror.org/025etn077', 'en', 1, 'https://ror.org/025etn077 Network of AIDS Researchers of Eastern and Southern Africa'),
(38463, 'https://ror.org/01434tj03', 'fr', 1, 'https://ror.org/01434tj03 Office National pour l''Environnement'),
(38464, 'https://ror.org/04xsfz394', 'en', 1, 'https://ror.org/04xsfz394 National Institute for Scientific and Industrial Research'),
(38465, 'https://ror.org/008js8n22', 'en', 1, 'https://ror.org/008js8n22 National Organization of Peer Educators'),
(38466, 'https://ror.org/058cd5p17', 'en', 1, 'https://ror.org/058cd5p17 Network of Networks of HIV Positives'),
(38467, 'https://ror.org/01855q607', 'en', 1, 'https://ror.org/01855q607 Ministry of Education and Vocation Training Ministry of Education and Vocational Training Wizara ya Elimu na Mafunzo ya Ufundi'),
(38468, 'https://ror.org/01camwr54', 'en', 1, 'https://ror.org/01camwr54 Tropical Pesticides Research Institute'),
(38469, 'https://ror.org/044aa1z42', 'en', 1, 'https://ror.org/044aa1z42 National Agricultural Research Institute'),
(38470, 'https://ror.org/03xmwfe88', 'en', 1, 'https://ror.org/03xmwfe88 National Wool Growers Associations of South Africa'),
(38471, 'https://ror.org/05j78sg27', 'en', 1, 'https://ror.org/05j78sg27 National Primary Health Care Development Agency'),
(38472, 'https://ror.org/00b3tsf98', 'en', 1, 'https://ror.org/00b3tsf98 Minisiteri y''Uburezi Ministry of Education Ministère de l''Éducation'),
(38473, 'https://ror.org/05vzn8153', 'en', 1, 'https://ror.org/05vzn8153 Department of Correctional Services Suid-Afrikaanse Departement van Korrektiewe Dienste'),
(38474, 'https://ror.org/00babnh83', 'en', 1, 'https://ror.org/00babnh83 Nature Conservation Research Centre'),
(38475, 'https://ror.org/00w6thw04', 'en', 1, 'https://ror.org/00w6thw04 Ministry of Environment and Natural Resources & Regional Development Authorities'),
(38476, 'https://ror.org/04hf31n78', 'en', 1, 'https://ror.org/04hf31n78 National Drought Management Authority'),
(38477, 'https://ror.org/00xwm9r16', 'en', 1, 'https://ror.org/00xwm9r16 Network for Water and Sanitation International'),
(38478, 'https://ror.org/00x4w7v32', 'en', 1, 'https://ror.org/00x4w7v32 Netwas Uganda'),
(38479, 'https://ror.org/00t5pe133', 'en', 1, 'https://ror.org/00t5pe133 National Environment Management Council'),
(38480, 'https://ror.org/00kz8zc32', 'no_lang_code', 1, 'https://ror.org/00kz8zc32 Philanjalo'),
(38481, 'https://ror.org/03kk24v11', 'fr', 1, 'https://ror.org/03kk24v11 PhotoTherme Toutes nos Energies Pour Economiser la Votre'),
(38482, 'https://ror.org/02hd4h748', 'en', 1, 'https://ror.org/02hd4h748 Phyto consulting'),
(38483, 'https://ror.org/034n3k032', 'no_lang_code', 1, 'https://ror.org/034n3k032 Pikitup'),
(38484, 'https://ror.org/05jqx2y43', 'fr', 1, 'https://ror.org/05jqx2y43 Observatoire Satellital des Forêts d’Afrique Centrale'),
(38485, 'https://ror.org/044d6xz07', 'en', 1, 'https://ror.org/044d6xz07 National HIV/AIDS/STI/TB Council'),
(38486, 'https://ror.org/041g2nn20', 'en', 1, 'https://ror.org/041g2nn20 Research on Poverty Alleviation'),
(38487, 'https://ror.org/038d9tx28', 'no_lang_code', 1, 'https://ror.org/038d9tx28 Nile Valley Engineering (Egypt)'),
(38488, 'https://ror.org/05sar2b82', 'no_lang_code', 1, 'https://ror.org/05sar2b82 Research Research (South Africa)'),
(38489, 'https://ror.org/034vwwk41', 'fr', 1, 'https://ror.org/034vwwk41 Goma Volcanological Observatory Observatoire Volcanologique de Goma'),
(38490, 'https://ror.org/01st86b26', 'no_lang_code', 1, 'https://ror.org/01st86b26 Energy Services in Sahelian Environment (Senegal) Service de l''énergie en milieu sahélien'),
(38491, 'https://ror.org/02db8ta43', 'no_lang_code', 1, 'https://ror.org/02db8ta43 Nobex Technology (Nigeria)'),
(38492, 'https://ror.org/04qmzfs71', 'no_lang_code', 1, 'https://ror.org/04qmzfs71 PRASAC Pôle Régional de Recherche Appliquée au Développement des Systèmes Agricoles d''Afrique Centrale'),
(38493, 'https://ror.org/01tzw5x87', 'fr', 1, 'https://ror.org/01tzw5x87 Réseau des Plateformess d’ONG d’Afrique de l’Ouest et du Centre'),
(38494, 'https://ror.org/04p9htb70', 'en', 1, 'https://ror.org/04p9htb70 Seychelles Fishing Authority'),
(38495, 'https://ror.org/020az2v11', 'no_lang_code', 1, 'https://ror.org/020az2v11 North South Consultants Exchange (Egypt)'),
(38496, 'https://ror.org/05jh6j253', 'en', 1, 'https://ror.org/05jh6j253 Resource Conflict Institute'),
(38497, 'https://ror.org/00p9yb286', 'en', 1, 'https://ror.org/00p9yb286 Moroccan National Railways Office Office National des Chemins de Fer du Maroc'),
(38498, 'https://ror.org/03m3r4n45', 'en', 1, 'https://ror.org/03m3r4n45 Shout It Now'),
(38499, 'https://ror.org/04827d323', 'no_lang_code', 1, 'https://ror.org/04827d323 Ressources Ingénierie (Morocco)'),
(38500, 'https://ror.org/02nmyab03', 'en', 1, 'https://ror.org/02nmyab03 Nyanza Reproductive Health Society'),
(38501, 'https://ror.org/002anhf82', 'en', 1, 'https://ror.org/002anhf82 Observatoire du Sahara et du Sahel Sahara and Sahel Observatory'),
(38502, 'https://ror.org/00qd3m987', 'no_lang_code', 1, 'https://ror.org/00qd3m987 Premiere'),
(38503, 'https://ror.org/05qx9ce83', 'fr', 1, 'https://ror.org/05qx9ce83 Observatoire National de la Jeunesse'),
(38504, 'https://ror.org/05e2y6e35', 'en', 1, 'https://ror.org/05e2y6e35 Social Development and Improvement Agency'),
(38505, 'https://ror.org/0026pwq79', 'fr', 1, 'https://ror.org/0026pwq79 Observatoire National des Droits de l''Enfant'),
(38506, 'https://ror.org/01jwndr62', 'fr', 1, 'https://ror.org/01jwndr62 National Society for Electricity and Gas Socièté Nationale de l''Electricité et du Gaz الشركة الوطنية للكهرباء والغاز أو سونلغاز'),
(38507, 'https://ror.org/01ew07e68', 'en', 1, 'https://ror.org/01ew07e68 National Sanitation Utility Office National de l''Assainissement'),
(38508, 'https://ror.org/016bssv73', 'en', 1, 'https://ror.org/016bssv73 Southern African Clothing & Textile Workers’ Union'),
(38509, 'https://ror.org/02bjqnd50', 'en', 1, 'https://ror.org/02bjqnd50 Pro Health International'),
(38510, 'https://ror.org/03mef6610', 'en', 1, 'https://ror.org/03mef6610 South African Weather Service'),
(38511, 'https://ror.org/029vq7v31', 'fr', 1, 'https://ror.org/029vq7v31 Société de Développement des Forêts'),
(38512, 'https://ror.org/040zy7h93', 'fr', 1, 'https://ror.org/040zy7h93 Société Générale des Travaux du Maroc'),
(38513, 'https://ror.org/00d7zep18', 'en', 1, 'https://ror.org/00d7zep18 Southern African NGO Network'),
(38514, 'https://ror.org/046vt0d34', 'en', 1, 'https://ror.org/046vt0d34 Programme for Accessible Health Communication and Education'),
(38515, 'https://ror.org/05nsgrk27', 'en', 1, 'https://ror.org/05nsgrk27 Sahel Eco'),
(38516, 'https://ror.org/05k9pq902', 'en', 1, 'https://ror.org/05k9pq902 Southern African Catholic Bishops Conference'),
(38517, 'https://ror.org/00xh26g31', 'fr', 1, 'https://ror.org/00xh26g31 Office National d''électricité Office National de l''Electricite et de l''Eau Potable'),
(38518, 'https://ror.org/0354a0368', 'en', 1, 'https://ror.org/0354a0368 Sahelian Solutions Foundation'),
(38519, 'https://ror.org/00hrx1t96', 'fr', 1, 'https://ror.org/00hrx1t96 Société Nationale d’Études du Détroit de Gibraltar'),
(38520, 'https://ror.org/042n52121', 'en', 1, 'https://ror.org/042n52121 Southern African Development Community'),
(38521, 'https://ror.org/00yqvs913', 'en', 1, 'https://ror.org/00yqvs913 Scripture Union'),
(38522, 'https://ror.org/02x5rws94', 'en', 1, 'https://ror.org/02x5rws94 Southern African Research and Innovation Management Association'),
(38523, 'https://ror.org/04g4v2334', 'no_lang_code', 1, 'https://ror.org/04g4v2334 Sakhr Software (Egypt)'),
(38524, 'https://ror.org/03x30pe27', 'fr', 1, 'https://ror.org/03x30pe27 Office National de la Météorologie'),
(38525, 'https://ror.org/029tggs59', 'en', 1, 'https://ror.org/029tggs59 South African Business Coalition'),
(38526, 'https://ror.org/05sdk4y29', 'fr', 1, 'https://ror.org/05sdk4y29 Progamme National Contre le Tuberculose'),
(38527, 'https://ror.org/02jd4k732', 'en', 1, 'https://ror.org/02jd4k732 National Office of Hydrocarbons and Mines Office National des Hydrocarbures et des Mines'),
(38528, 'https://ror.org/02fm1e093', 'no_lang_code', 1, 'https://ror.org/02fm1e093 Sanru'),
(38529, 'https://ror.org/019374v57', 'fr', 1, 'https://ror.org/019374v57 Santé Espoir Vie Côte d''Ivoire'),
(38530, 'https://ror.org/01jnt0x10', 'fr', 1, 'https://ror.org/01jnt0x10 Office Régional de Mise en Valeur Agricole de Ouarzazate'),
(38531, 'https://ror.org/03f8nwf60', 'no_lang_code', 1, 'https://ror.org/03f8nwf60 Solar23 Tunisie (Tunisia)'),
(38532, 'https://ror.org/03wb61205', 'no_lang_code', 1, 'https://ror.org/03wb61205 Sappi (South Africa)'),
(38533, 'https://ror.org/008zzz711', 'en', 1, 'https://ror.org/008zzz711 Somalia Water and Land Information'),
(38534, 'https://ror.org/05ya3va27', 'no_lang_code', 1, 'https://ror.org/05ya3va27 Sarost (Tunisia)'),
(38535, 'https://ror.org/05hen7093', 'no_lang_code', 1, 'https://ror.org/05hen7093 Sonatrach (Algeria) المؤسسة الوطنية للتنقيب, صناعة, نقل, تحويل و تسويق المحروقات'),
(38536, 'https://ror.org/026w1rh64', 'en', 1, 'https://ror.org/026w1rh64 Protecting Families against HIV AIDS'),
(38537, 'https://ror.org/041j39g66', 'en', 1, 'https://ror.org/041j39g66 St. Mary’s Hospital'),
(38538, 'https://ror.org/046y0et18', 'no_lang_code', 1, 'https://ror.org/046y0et18 OnApp (Gibraltar)'),
(38539, 'https://ror.org/02bvtqs16', 'en', 1, 'https://ror.org/02bvtqs16 Songhai Health Trust'),
(38540, 'https://ror.org/03pmbkw20', 'no_lang_code', 1, 'https://ror.org/03pmbkw20 Sophumelela Centre'),
(38541, 'https://ror.org/02x26d386', 'no_lang_code', 1, 'https://ror.org/02x26d386 Flora Pyramids Paper Mills'),
(38542, 'https://ror.org/057ec1n13', 'pt', 1, 'https://ror.org/057ec1n13 Radio Moçambique'),
(38543, 'https://ror.org/04mraae85', 'no_lang_code', 1, 'https://ror.org/04mraae85 SOS Sahel Ethiopia'),
(38544, 'https://ror.org/03f6y0160', 'en', 1, 'https://ror.org/03f6y0160 Ministry of Energy, Mines, Water and Environment Ministère de l''Energie, des Mines, de l''Eau et de l''Environnement'),
(38545, 'https://ror.org/03ps79624', 'en', 1, 'https://ror.org/03ps79624 Rainman Landcare Foundation'),
(38546, 'https://ror.org/05dnc4543', 'en', 1, 'https://ror.org/05dnc4543 Organisation Pour la Mise en Valeur du Fleuve Sénégal Senegal River Basin Development Authority'),
(38547, 'https://ror.org/03bt9y476', 'en', 1, 'https://ror.org/03bt9y476 South African Democratic Teachers Union'),
(38548, 'https://ror.org/05550md95', 'en', 1, 'https://ror.org/05550md95 Sudan Meteorological Authority'),
(38549, 'https://ror.org/02jp3w516', 'en', 1, 'https://ror.org/02jp3w516 Department of Agriculture, Land Reform and Rural Development'),
(38550, 'https://ror.org/04dxtny83', 'no_lang_code', 1, 'https://ror.org/04dxtny83 Section27'),
(38551, 'https://ror.org/04xc6a353', 'en', 1, 'https://ror.org/04xc6a353 Regional Alliance for Sustainable Development'),
(38552, 'https://ror.org/048w4ef35', 'en', 1, 'https://ror.org/048w4ef35 South African Institute of Tax Practitioners'),
(38553, 'https://ror.org/01p99tm60', 'no_lang_code', 1, 'https://ror.org/01p99tm60 Sekem'),
(38554, 'https://ror.org/00pbsg918', 'en', 1, 'https://ror.org/00pbsg918 Organization for Social Services for AIDS'),
(38555, 'https://ror.org/05cfwmz90', 'no_lang_code', 1, 'https://ror.org/05cfwmz90 REACH ETHIOPIA'),
(38556, 'https://ror.org/01hv65386', 'en', 1, 'https://ror.org/01hv65386 Southern African Aids Trust'),
(38557, 'https://ror.org/04p2zt755', 'en', 1, 'https://ror.org/04p2zt755 South African National Energy Development Institute'),
(38558, 'https://ror.org/01xes5j22', 'en', 1, 'https://ror.org/01xes5j22 Panos Eastern Africa'),
(38559, 'https://ror.org/021bpcw57', 'en', 1, 'https://ror.org/021bpcw57 Tea Research Foundation of Central Africa'),
(38560, 'https://ror.org/00p536462', 'en', 1, 'https://ror.org/00p536462 Re Action'),
(38561, 'https://ror.org/01vvpqc21', 'no_lang_code', 1, 'https://ror.org/01vvpqc21 Panos Institute Southern Africa'),
(38562, 'https://ror.org/04fbzd287', 'en', 1, 'https://ror.org/04fbzd287 Banc d''Arguin National Park Parc National du Banc d''Arguin'),
(38563, 'https://ror.org/05sw24q25', 'no_lang_code', 1, 'https://ror.org/05sw24q25 Technoscene (South Africa)'),
(38564, 'https://ror.org/05wa1wa97', 'en', 1, 'https://ror.org/05wa1wa97 Uganda Episcopal Conference'),
(38565, 'https://ror.org/01zvh5583', 'en', 1, 'https://ror.org/01zvh5583 Research for Equity And Community Health Trust'),
(38566, 'https://ror.org/05m906m06', 'fr', 1, 'https://ror.org/05m906m06 Régie Autonome Multi Services D''Agadir'),
(38567, 'https://ror.org/0508qa918', 'no_lang_code', 1, 'https://ror.org/0508qa918 Syngenta (Zimbabwe)'),
(38568, 'https://ror.org/01zg1t177', 'en', 1, 'https://ror.org/01zg1t177 Catholic Development Office'),
(38569, 'https://ror.org/00ksgqc53', 'en', 1, 'https://ror.org/00ksgqc53 Partners for Health and Development in Africa'),
(38570, 'https://ror.org/03mfa1h60', 'no_lang_code', 1, 'https://ror.org/03mfa1h60 Ungweru'),
(38571, 'https://ror.org/04yz1w831', 'en', 1, 'https://ror.org/04yz1w831 Partnership for Healthcare Improvement'),
(38572, 'https://ror.org/04ffrf281', 'no_lang_code', 1, 'https://ror.org/04ffrf281 Deutsche Telekom (South Africa)'),
(38573, 'https://ror.org/03j397k95', 'en', 1, 'https://ror.org/03j397k95 South African Holocaust and Genocide Foundation'),
(38574, 'https://ror.org/029eeye73', 'no_lang_code', 1, 'https://ror.org/029eeye73 Talbot & Talbot (South Africa)'),
(38575, 'https://ror.org/058vg7409', 'en', 1, 'https://ror.org/058vg7409 Christian Missionary Fellowship International'),
(38576, 'https://ror.org/05ecysg06', 'en', 1, 'https://ror.org/05ecysg06 Regional Commissioners Office'),
(38577, 'https://ror.org/04fr7ha98', 'no_lang_code', 1, 'https://ror.org/04fr7ha98 Pearl Seeds (Uganda)'),
(38578, 'https://ror.org/05vch7162', 'en', 1, 'https://ror.org/05vch7162 South African San Institute'),
(38579, 'https://ror.org/05tysfd19', 'en', 1, 'https://ror.org/05tysfd19 African Minerals and Geosciences Centre'),
(38580, 'https://ror.org/05n3fvh77', 'en', 1, 'https://ror.org/05n3fvh77 Nature Kenya The East Africa Natural History Society'),
(38581, 'https://ror.org/03m7k8v87', 'en', 1, 'https://ror.org/03m7k8v87 Tanzania Association of Foresters'),
(38582, 'https://ror.org/02v2jz242', 'no_lang_code', 1, 'https://ror.org/02v2jz242 Ssemwanga (Uganda)'),
(38583, 'https://ror.org/05q89dp90', 'en', 1, 'https://ror.org/05q89dp90 Pharmacy and Poisons Board'),
(38584, 'https://ror.org/003te8934', 'no_lang_code', 1, 'https://ror.org/003te8934 Umvoto Africa'),
(38585, 'https://ror.org/01j5adv11', 'en', 1, 'https://ror.org/01j5adv11 Authorised Association Consortium'),
(38586, 'https://ror.org/056v09p63', 'en', 1, 'https://ror.org/056v09p63 Surgical Society of Zambia'),
(38587, 'https://ror.org/02rw00q54', 'en', 1, 'https://ror.org/02rw00q54 Tanzania Commission for AIDS'),
(38588, 'https://ror.org/020qt9g11', 'en', 1, 'https://ror.org/020qt9g11 United Nations Human Settlements Programme'),
(38589, 'https://ror.org/018rk1f74', 'en', 1, 'https://ror.org/018rk1f74 Eastern and Southern Africa small scale Farmers’ Forum'),
(38590, 'https://ror.org/02bzmps39', 'en', 1, 'https://ror.org/02bzmps39 Egyptian Center for Public Opinion Research Baseera'),
(38591, 'https://ror.org/02h7w3c75', 'en', 1, 'https://ror.org/02h7w3c75 Tanzania Forestry Research Institute'),
(38592, 'https://ror.org/00v75kn09', 'no_lang_code', 1, 'https://ror.org/00v75kn09 TogaLabs (South Africa)');
INSERT INTO `rors` VALUES
(38593, 'https://ror.org/00xdt7j93', 'en', 1, 'https://ror.org/00xdt7j93 United Nations Children''s Fund Zambia'),
(38594, 'https://ror.org/007ggdv19', 'en', 1, 'https://ror.org/007ggdv19 Tanzania Industrial Research and Development Organization'),
(38595, 'https://ror.org/03wyye266', 'en', 1, 'https://ror.org/03wyye266 Townhouse Gallery'),
(38596, 'https://ror.org/0470p4z29', 'no_lang_code', 1, 'https://ror.org/0470p4z29 T-MARC'),
(38597, 'https://ror.org/0380sxs47', 'en', 1, 'https://ror.org/0380sxs47 African Union of Public Transport'),
(38598, 'https://ror.org/056d4e670', 'en', 1, 'https://ror.org/056d4e670 Ghana Center for Democratic Development'),
(38599, 'https://ror.org/028prp877', 'en', 1, 'https://ror.org/028prp877 Tanzania National Parks'),
(38600, 'https://ror.org/025byta18', 'en', 1, 'https://ror.org/025byta18 Tanzania Natural Resource Forum'),
(38601, 'https://ror.org/04xx6j115', 'fr', 1, 'https://ror.org/04xx6j115 Union Economique et Monétaire Ouest Africaine'),
(38602, 'https://ror.org/01vgq3930', 'en', 1, 'https://ror.org/01vgq3930 Tanzania Red Cross Society'),
(38603, 'https://ror.org/04vhk3x11', 'en', 1, 'https://ror.org/04vhk3x11 Information and Communication Technology Authority'),
(38604, 'https://ror.org/01y010s06', 'en', 1, 'https://ror.org/01y010s06 Tanzania Traditional Energy Development and Environment Organisation'),
(38605, 'https://ror.org/01t9czq80', 'en', 1, 'https://ror.org/01t9czq80 International University of Rabat Université Internationale de Rabat'),
(38606, 'https://ror.org/02fv6wk06', 'en', 1, 'https://ror.org/02fv6wk06 Tunisian Union of Agriculture and Fisheries Union Tunisienne de l''Agriculture et de la Pêche'),
(38607, 'https://ror.org/03pr7e672', 'fr', 1, 'https://ror.org/03pr7e672 Université des Sciences Juridiques et Politiques de Bamako'),
(38608, 'https://ror.org/05c48af58', 'sw', 1, 'https://ror.org/05c48af58 Twaweza'),
(38609, 'https://ror.org/02kt2ac46', 'en', 1, 'https://ror.org/02kt2ac46 Ubuntu Education Fund'),
(38610, 'https://ror.org/00z79gn62', 'en', 1, 'https://ror.org/00z79gn62 WaterAid'),
(38611, 'https://ror.org/05p432337', 'no_lang_code', 1, 'https://ror.org/05p432337 WaterAid'),
(38612, 'https://ror.org/00grm6006', 'en', 1, 'https://ror.org/00grm6006 Uganda Blood Transfusion Service'),
(38613, 'https://ror.org/028jh0y34', 'no_lang_code', 1, 'https://ror.org/028jh0y34 Zimbabwe AIDS Network'),
(38614, 'https://ror.org/04czq2g39', 'en', 1, 'https://ror.org/04czq2g39 Uganda National Association Of the Deaf'),
(38615, 'https://ror.org/00atw9e51', 'no_lang_code', 1, 'https://ror.org/00atw9e51 WaterNet Trust'),
(38616, 'https://ror.org/02zjd4750', 'en', 1, 'https://ror.org/02zjd4750 Zimbabwe National Water Authority'),
(38617, 'https://ror.org/0243g5v54', 'no_lang_code', 1, 'https://ror.org/0243g5v54 Zoomlion Domestic Services (Ghana)'),
(38618, 'https://ror.org/04ffyk186', 'en', 1, 'https://ror.org/04ffyk186 Veld Products Research & Development'),
(38619, 'https://ror.org/02kbxde97', 'en', 1, 'https://ror.org/02kbxde97 Uganda Wildlife Authority'),
(38620, 'https://ror.org/006rqpt26', 'en', 1, 'https://ror.org/006rqpt26 West and Central African Research and Education Network'),
(38621, 'https://ror.org/04m6m8q83', 'fr', 1, 'https://ror.org/04m6m8q83 Vétérinaires Sans Frontières Suisse'),
(38622, 'https://ror.org/03wgnjj45', 'en', 1, 'https://ror.org/03wgnjj45 Uganda National Meteorological Authority'),
(38623, 'https://ror.org/03rqcrq04', 'no_lang_code', 1, 'https://ror.org/03rqcrq04 Victoria Seeds (Uganda)'),
(38624, 'https://ror.org/038tkyd35', 'sw', 1, 'https://ror.org/038tkyd35 Chama Cha Uzazi na Malezi Bora Tanzania'),
(38625, 'https://ror.org/01w4c3c70', 'no_lang_code', 1, 'https://ror.org/01w4c3c70 WAM Technology (South Africa)'),
(38626, 'https://ror.org/03rt0fp67', 'en', 1, 'https://ror.org/03rt0fp67 WaterAid'),
(38627, 'https://ror.org/056y4tg97', 'en', 1, 'https://ror.org/056y4tg97 Water Resources Commission of Ghana'),
(38628, 'https://ror.org/04qw2cf87', 'no_lang_code', 1, 'https://ror.org/04qw2cf87 WESTERVELD CONSERVATION TRUST'),
(38629, 'https://ror.org/04rtx9382', 'en', 1, 'https://ror.org/04rtx9382 World Health Organization Regional Office for Africa'),
(38630, 'https://ror.org/05v3pgb06', 'no_lang_code', 1, 'https://ror.org/05v3pgb06 WR Nyabeze & Associates (South Africa)'),
(38631, 'https://ror.org/04d3cfv77', 'en', 1, 'https://ror.org/04d3cfv77 Writers Project of Ghana'),
(38632, 'https://ror.org/01b03vk69', 'no_lang_code', 1, 'https://ror.org/01b03vk69 Alfact Innovation (France)'),
(38633, 'https://ror.org/012xmyh22', 'no_lang_code', 1, 'https://ror.org/012xmyh22 31 Degrees (France)'),
(38634, 'https://ror.org/05vkc3y92', 'no_lang_code', 1, 'https://ror.org/05vkc3y92 Omnia (South Africa)'),
(38635, 'https://ror.org/003rgm223', 'no_lang_code', 1, 'https://ror.org/003rgm223 AB Science (France)'),
(38636, 'https://ror.org/02s4jq766', 'en', 1, 'https://ror.org/02s4jq766 Youth for Christ South Africa'),
(38637, 'https://ror.org/01rkw8w63', 'no_lang_code', 1, 'https://ror.org/01rkw8w63 Actia Group (France)'),
(38638, 'https://ror.org/013c7pz75', 'no_lang_code', 1, 'https://ror.org/013c7pz75 Givaudan (France)'),
(38639, 'https://ror.org/04ccjrt09', 'no_lang_code', 1, 'https://ror.org/04ccjrt09 AECpolymers (France)'),
(38640, 'https://ror.org/05f5ttq44', 'no_lang_code', 1, 'https://ror.org/05f5ttq44 Mauna Kea Technologies (France)'),
(38641, 'https://ror.org/056fctw89', 'no_lang_code', 1, 'https://ror.org/056fctw89 Nexter (France)'),
(38642, 'https://ror.org/041a9yj35', 'fr', 1, 'https://ror.org/041a9yj35 Société de Conseil et de Prospective Scientifique'),
(38643, 'https://ror.org/00k8b3640', 'no_lang_code', 1, 'https://ror.org/00k8b3640 AnyGenes (France)'),
(38644, 'https://ror.org/02wzm7472', 'no_lang_code', 1, 'https://ror.org/02wzm7472 APEX Technologies (France)'),
(38645, 'https://ror.org/02seyh617', 'no_lang_code', 1, 'https://ror.org/02seyh617 AriadNEXT (France)'),
(38646, 'https://ror.org/04fg92n70', 'no_lang_code', 1, 'https://ror.org/04fg92n70 Arion (France)'),
(38647, 'https://ror.org/03brhac83', 'fr', 1, 'https://ror.org/03brhac83 Fondation Internet Nouvelle Génération'),
(38648, 'https://ror.org/01edctc55', 'no_lang_code', 1, 'https://ror.org/01edctc55 ATLAB Pharma (France)'),
(38649, 'https://ror.org/05sagy566', 'no_lang_code', 1, 'https://ror.org/05sagy566 AudioGaming (France)'),
(38650, 'https://ror.org/00gvr0r24', 'no_lang_code', 1, 'https://ror.org/00gvr0r24 Audionamix (France)'),
(38651, 'https://ror.org/03ze2zr46', 'no_lang_code', 1, 'https://ror.org/03ze2zr46 AXO Science (France)'),
(38652, 'https://ror.org/03bx9gv58', 'no_lang_code', 1, 'https://ror.org/03bx9gv58 BA Systèmes (France)'),
(38653, 'https://ror.org/052a86v37', 'no_lang_code', 1, 'https://ror.org/052a86v37 Baikowski (France)'),
(38654, 'https://ror.org/05f9h4q47', 'no_lang_code', 1, 'https://ror.org/05f9h4q47 Exactech (France)'),
(38655, 'https://ror.org/0174qhh23', 'no_lang_code', 1, 'https://ror.org/0174qhh23 BoostHeat (France)'),
(38656, 'https://ror.org/0593f2f80', 'no_lang_code', 1, 'https://ror.org/0593f2f80 Byblos Group (France)'),
(38657, 'https://ror.org/022kpdg23', 'no_lang_code', 1, 'https://ror.org/022kpdg23 Groupe Up (France)'),
(38658, 'https://ror.org/022d8t961', 'no_lang_code', 1, 'https://ror.org/022d8t961 MASA Group (France)'),
(38659, 'https://ror.org/054b9rx02', 'no_lang_code', 1, 'https://ror.org/054b9rx02 Biospace Lab (France)'),
(38660, 'https://ror.org/031vfy029', 'fr', 1, 'https://ror.org/031vfy029 Centre de la Méditerranée Moderne et Contemporaine'),
(38661, 'https://ror.org/01d22yy79', 'fr', 1, 'https://ror.org/01d22yy79 Centre d’Expertise National en Stimulation Cognitive'),
(38662, 'https://ror.org/02hp9qz46', 'no_lang_code', 1, 'https://ror.org/02hp9qz46 Erytech Pharma (France)'),
(38663, 'https://ror.org/04kzzpx53', 'fr', 1, 'https://ror.org/04kzzpx53 Puce Muse / Espace Musical'),
(38664, 'https://ror.org/05m856m15', 'no_lang_code', 1, 'https://ror.org/05m856m15 Alcméon (France)'),
(38665, 'https://ror.org/02m5dy175', 'en', 1, 'https://ror.org/02m5dy175 Georgia Tech Lorraine'),
(38666, 'https://ror.org/01sn2ky05', 'no_lang_code', 1, 'https://ror.org/01sn2ky05 Genes''ink (France)'),
(38667, 'https://ror.org/03508em42', 'no_lang_code', 1, 'https://ror.org/03508em42 Graftys (France)'),
(38668, 'https://ror.org/043jbda17', 'fr', 1, 'https://ror.org/043jbda17 Groupe de Musique Electroacoustique d''Albi'),
(38669, 'https://ror.org/03q7p3t30', 'fr', 1, 'https://ror.org/03q7p3t30 Laboratoire de Chimie Moléculaire et Thioorganique'),
(38670, 'https://ror.org/04db3be62', 'fr', 1, 'https://ror.org/04db3be62 Laboratoire de Chimie Organique'),
(38671, 'https://ror.org/055wa9133', 'no_lang_code', 1, 'https://ror.org/055wa9133 Innate Pharma (France)'),
(38672, 'https://ror.org/03g38sn14', 'fr', 1, 'https://ror.org/03g38sn14 Laboratory Colloïdes et Matériaux Divisés'),
(38673, 'https://ror.org/028kzf059', 'no_lang_code', 1, 'https://ror.org/028kzf059 Huntsman (France)'),
(38674, 'https://ror.org/05cnwh310', 'no_lang_code', 1, 'https://ror.org/05cnwh310 Surys (France)'),
(38675, 'https://ror.org/04z4fen17', 'en', 1, 'https://ror.org/04z4fen17 Génétique Humaine des Maladies Infectieuses Human Genetic of Infectious Diseases'),
(38676, 'https://ror.org/053qdb191', 'fr', 1, 'https://ror.org/053qdb191 Laboratoire des Systèmes Macromoléculaires et Signalisation'),
(38677, 'https://ror.org/02ahzca76', 'fr', 1, 'https://ror.org/02ahzca76 Laboratoire d''Ingénierie Circulation Transports'),
(38678, 'https://ror.org/03af82z38', 'no_lang_code', 1, 'https://ror.org/03af82z38 LFB (France)'),
(38679, 'https://ror.org/03fd87035', 'fr', 1, 'https://ror.org/03fd87035 Laboratoire Motricité Humaine Éducation Sport Santé'),
(38680, 'https://ror.org/038716291', 'fr', 1, 'https://ror.org/038716291 Institut d''Urbanisme et d''Aménagement Régional'),
(38681, 'https://ror.org/03tkdcg84', 'no_lang_code', 1, 'https://ror.org/03tkdcg84 Magnisense (France)'),
(38682, 'https://ror.org/03v4wsf43', 'no_lang_code', 1, 'https://ror.org/03v4wsf43 Mecachrome (France)'),
(38683, 'https://ror.org/01f96et60', 'no_lang_code', 1, 'https://ror.org/01f96et60 MedinCell (France)'),
(38684, 'https://ror.org/026c6z776', 'no_lang_code', 1, 'https://ror.org/026c6z776 Chronos (France)'),
(38685, 'https://ror.org/050awh611', 'no_lang_code', 1, 'https://ror.org/050awh611 Montupet (France)'),
(38686, 'https://ror.org/00qt5he59', 'no_lang_code', 1, 'https://ror.org/00qt5he59 Oligovax (France)'),
(38687, 'https://ror.org/04pdjh730', 'no_lang_code', 1, 'https://ror.org/04pdjh730 MSA Gallet (France)'),
(38688, 'https://ror.org/0075b7k59', 'no_lang_code', 1, 'https://ror.org/0075b7k59 Mitsubishi Electric (France)'),
(38689, 'https://ror.org/05t7drw06', 'no_lang_code', 1, 'https://ror.org/05t7drw06 MNM Consulting (France)'),
(38690, 'https://ror.org/04zh6ks36', 'no_lang_code', 1, 'https://ror.org/04zh6ks36 Leroux & Lotz Technologies (France)'),
(38691, 'https://ror.org/04efjkk54', 'no_lang_code', 1, 'https://ror.org/04efjkk54 KMG Ultra Pure Chemicals (France)'),
(38692, 'https://ror.org/0051tvf03', 'no_lang_code', 1, 'https://ror.org/0051tvf03 Nagra (France)'),
(38693, 'https://ror.org/00dwde739', 'no_lang_code', 1, 'https://ror.org/00dwde739 OREGA Biotech (France)'),
(38694, 'https://ror.org/028q7hc55', 'no_lang_code', 1, 'https://ror.org/028q7hc55 Limagrain (France)'),
(38695, 'https://ror.org/047ts9g27', 'no_lang_code', 1, 'https://ror.org/047ts9g27 Nanobiotix (France)'),
(38696, 'https://ror.org/02xq6cs86', 'no_lang_code', 1, 'https://ror.org/02xq6cs86 Naskeo Environnement (France)'),
(38697, 'https://ror.org/04aznz088', 'no_lang_code', 1, 'https://ror.org/04aznz088 GroupeOPA (France)'),
(38698, 'https://ror.org/01gtbbz35', 'no_lang_code', 1, 'https://ror.org/01gtbbz35 OTR3 (France)'),
(38699, 'https://ror.org/00hcabt14', 'no_lang_code', 1, 'https://ror.org/00hcabt14 Light for Life Technologies (France)'),
(38700, 'https://ror.org/0425rfe30', 'no_lang_code', 1, 'https://ror.org/0425rfe30 Naturamole (France)'),
(38701, 'https://ror.org/00fd94531', 'no_lang_code', 1, 'https://ror.org/00fd94531 OsseoMatrix (France)'),
(38702, 'https://ror.org/00ws9ra62', 'no_lang_code', 1, 'https://ror.org/00ws9ra62 Netris Pharma (France)'),
(38703, 'https://ror.org/03emcx872', 'no_lang_code', 1, 'https://ror.org/03emcx872 PaxiTech (France)'),
(38704, 'https://ror.org/0437zex07', 'no_lang_code', 1, 'https://ror.org/0437zex07 Macopharma (France)'),
(38705, 'https://ror.org/05r2f2383', 'no_lang_code', 1, 'https://ror.org/05r2f2383 Magellium (France)'),
(38706, 'https://ror.org/01jdjet24', 'no_lang_code', 1, 'https://ror.org/01jdjet24 Pharmaleads (France)'),
(38707, 'https://ror.org/038vv7y77', 'no_lang_code', 1, 'https://ror.org/038vv7y77 SiaMed’Xpress (France)'),
(38708, 'https://ror.org/02c38jz43', 'en', 1, 'https://ror.org/02c38jz43 Relaxnews'),
(38709, 'https://ror.org/05wk0jx96', 'no_lang_code', 1, 'https://ror.org/05wk0jx96 Amdocs (France)'),
(38710, 'https://ror.org/01x1nsf94', 'no_lang_code', 1, 'https://ror.org/01x1nsf94 Smartesting (France)'),
(38711, 'https://ror.org/056mqdw19', 'no_lang_code', 1, 'https://ror.org/056mqdw19 ProtNeteomix (France)'),
(38712, 'https://ror.org/0481vq919', 'no_lang_code', 1, 'https://ror.org/0481vq919 Nicéphore Cité (France)'),
(38713, 'https://ror.org/03eraeg88', 'no_lang_code', 1, 'https://ror.org/03eraeg88 Medtronic (France)'),
(38714, 'https://ror.org/05p7erx10', 'no_lang_code', 1, 'https://ror.org/05p7erx10 QoS Design (France)'),
(38715, 'https://ror.org/01eyskv76', 'no_lang_code', 1, 'https://ror.org/01eyskv76 Quantum Genomics (France)'),
(38716, 'https://ror.org/053y21r38', 'no_lang_code', 1, 'https://ror.org/053y21r38 RSA Cosmos (France)'),
(38717, 'https://ror.org/0122jkj38', 'no_lang_code', 1, 'https://ror.org/0122jkj38 Radiall (France)'),
(38718, 'https://ror.org/04trbax61', 'no_lang_code', 1, 'https://ror.org/04trbax61 Roxel (France)'),
(38719, 'https://ror.org/04zyg9w69', 'no_lang_code', 1, 'https://ror.org/04zyg9w69 Sonic Emotion (France)'),
(38720, 'https://ror.org/03b0h6662', 'no_lang_code', 1, 'https://ror.org/03b0h6662 TAMI Industries (France) Technologie Avancée et Membranes Industrielles'),
(38721, 'https://ror.org/006kn4722', 'no_lang_code', 1, 'https://ror.org/006kn4722 Abilian (France)'),
(38722, 'https://ror.org/04yn1kj34', 'no_lang_code', 1, 'https://ror.org/04yn1kj34 Diafir (France)'),
(38723, 'https://ror.org/001edfm43', 'no_lang_code', 1, 'https://ror.org/001edfm43 Theravectys (France)'),
(38724, 'https://ror.org/029b48872', 'no_lang_code', 1, 'https://ror.org/029b48872 Asur Plant Breeding (France)'),
(38725, 'https://ror.org/02vb0gn74', 'fr', 1, 'https://ror.org/02vb0gn74 TL & Associés'),
(38726, 'https://ror.org/03nzw8376', 'no_lang_code', 1, 'https://ror.org/03nzw8376 Theranexus (France)'),
(38727, 'https://ror.org/05jc16005', 'no_lang_code', 1, 'https://ror.org/05jc16005 Atys Medical (France)'),
(38728, 'https://ror.org/04x4qbn15', 'no_lang_code', 1, 'https://ror.org/04x4qbn15 NEEL trimarans (France)'),
(38729, 'https://ror.org/03ex1m609', 'no_lang_code', 1, 'https://ror.org/03ex1m609 Satimo (France) Société d’Applications Technologiques de l’Imagerie Micro-Onde'),
(38730, 'https://ror.org/00attk912', 'no_lang_code', 1, 'https://ror.org/00attk912 Physiogenex (France)'),
(38731, 'https://ror.org/007ydnn26', 'no_lang_code', 1, 'https://ror.org/007ydnn26 R-Cost (France)'),
(38732, 'https://ror.org/05bt9es09', 'no_lang_code', 1, 'https://ror.org/05bt9es09 Nipson Technology (France)'),
(38733, 'https://ror.org/024wmk172', 'no_lang_code', 1, 'https://ror.org/024wmk172 VirtualDive (France)'),
(38734, 'https://ror.org/044kx9w86', 'no_lang_code', 1, 'https://ror.org/044kx9w86 Vision Objects (France)'),
(38735, 'https://ror.org/03etbp963', 'fr', 1, 'https://ror.org/03etbp963 Vizion’R'),
(38736, 'https://ror.org/00606js28', 'no_lang_code', 1, 'https://ror.org/00606js28 Vocapia Research (France)'),
(38737, 'https://ror.org/01dz5cg19', 'fr', 1, 'https://ror.org/01dz5cg19 Laboratoire de Virologie Moléculaire et Structurale'),
(38738, 'https://ror.org/009cywx30', 'no_lang_code', 1, 'https://ror.org/009cywx30 VectraWave (France)'),
(38739, 'https://ror.org/01e3p0233', 'no_lang_code', 1, 'https://ror.org/01e3p0233 Vesuvius (France)'),
(38740, 'https://ror.org/0440rnc27', 'no_lang_code', 1, 'https://ror.org/0440rnc27 Vilmorin & Cie (France)'),
(38741, 'https://ror.org/043b7ay30', 'no_lang_code', 1, 'https://ror.org/043b7ay30 Helion (France)'),
(38742, 'https://ror.org/007ym4t24', 'no_lang_code', 1, 'https://ror.org/007ym4t24 Tefal (France)'),
(38743, 'https://ror.org/01j3hs414', 'fr', 1, 'https://ror.org/01j3hs414 Union Coopération Forestière Française'),
(38744, 'https://ror.org/00pzdbj03', 'no_lang_code', 1, 'https://ror.org/00pzdbj03 Haption (France)'),
(38745, 'https://ror.org/05jyjaa40', 'no_lang_code', 1, 'https://ror.org/05jyjaa40 Keolis (France)'),
(38746, 'https://ror.org/05yjrbd39', 'no_lang_code', 1, 'https://ror.org/05yjrbd39 Sinequa (France)'),
(38747, 'https://ror.org/00qrrpx34', 'en', 1, 'https://ror.org/00qrrpx34 State Administration of Press, Publication, Radio, Film and Television 国家广播电影电视总局'),
(38748, 'https://ror.org/03j113172', 'en', 1, 'https://ror.org/03j113172 Biogas Institute of Ministry of Agriculture 农业部沼气科学研究所'),
(38749, 'https://ror.org/04tdh7519', 'en', 1, 'https://ror.org/04tdh7519 Jiangxi Province Forestry Survey Planning Institute 国家林业局调查规划设计院'),
(38750, 'https://ror.org/058x5eq06', 'en', 1, 'https://ror.org/058x5eq06 Beijing Haidian Hospital 北京市海淀医院'),
(38751, 'https://ror.org/05prw4m25', 'no_lang_code', 1, 'https://ror.org/05prw4m25 Chengdu Tool Research Institute (China) 成都工具研究所有限公司'),
(38752, 'https://ror.org/01z4nez64', 'en', 1, 'https://ror.org/01z4nez64 Academy of Broadcasting Science 国家广播电影电视总局广播科学研究院'),
(38753, 'https://ror.org/02mj1af40', 'en', 1, 'https://ror.org/02mj1af40 Children & Youth Science Center of CAST 中国科协青少年科技中心'),
(38754, 'https://ror.org/00q62zf58', 'en', 1, 'https://ror.org/00q62zf58 Agricultural Information Institute 中国农业科学院农业信息研究所'),
(38755, 'https://ror.org/03qg6cx04', 'en', 1, 'https://ror.org/03qg6cx04 China National Committee for Terms in Sciences and Technologies 全国科学技术名词审定委员会'),
(38756, 'https://ror.org/023zynq23', 'en', 1, 'https://ror.org/023zynq23 Chinese Academy of Civil Aviation Science and Technology 中国民航科学技术研究院'),
(38757, 'https://ror.org/04gpxrn68', 'no_lang_code', 1, 'https://ror.org/04gpxrn68 China Academy Of Machinery Science & Technology (China) 机械科学与技术研究院中国'),
(38758, 'https://ror.org/038e20a83', 'en', 1, 'https://ror.org/038e20a83 Agro-Environmental Protection Institute 农业部环境保护科研监测所'),
(38759, 'https://ror.org/01pwpsm46', 'en', 1, 'https://ror.org/01pwpsm46 China Academy of Safety Sciences and Technology 中国安全生产科学研究院'),
(38760, 'https://ror.org/026drga03', 'en', 1, 'https://ror.org/026drga03 China National Environmental Monitoring Center 中国环境监测总站'),
(38761, 'https://ror.org/02nbfcv58', 'en', 1, 'https://ror.org/02nbfcv58 China Nuclear Energy Association 核工业航测遥感中心'),
(38762, 'https://ror.org/05w1m1q56', 'en', 1, 'https://ror.org/05w1m1q56 Ministry of Education, Science and Technology Development Center 教育部科技发展中心'),
(38763, 'https://ror.org/0265jtk41', 'en', 1, 'https://ror.org/0265jtk41 China Academy of Urban Planning and Design 中国城市规划设计研究院'),
(38764, 'https://ror.org/05t4way13', 'en', 1, 'https://ror.org/05t4way13 Beijing Machine Tool Research Institute 北京机床研究所'),
(38765, 'https://ror.org/00kp7ts52', 'en', 1, 'https://ror.org/00kp7ts52 China Accounting Standards Committee 会计准则委员会'),
(38766, 'https://ror.org/059nf5421', 'en', 1, 'https://ror.org/059nf5421 China National Research Institute of Food and Fermentation 中国食品发酵工业研究院'),
(38767, 'https://ror.org/006cgkx15', 'en', 1, 'https://ror.org/006cgkx15 Chinese Academy of Governance 国家行政学院'),
(38768, 'https://ror.org/03wd9vk87', 'en', 1, 'https://ror.org/03wd9vk87 Beijing Meteorological Bureau 北京市气象局'),
(38769, 'https://ror.org/05dt7z971', 'en', 1, 'https://ror.org/05dt7z971 Changsha Medical University 长沙医学院'),
(38770, 'https://ror.org/00r5r6807', 'en', 1, 'https://ror.org/00r5r6807 China Automotive Technology and Research Center 中囯汽车技术硏究中心'),
(38771, 'https://ror.org/059hsy938', 'no_lang_code', 1, 'https://ror.org/059hsy938 China Minmetals (China) 长沙矿冶研究院有限责任公司'),
(38772, 'https://ror.org/01mbbxx50', 'en', 1, 'https://ror.org/01mbbxx50 China Electronic Information Industry Development 中国电子信息产业发展研究院'),
(38773, 'https://ror.org/00cwdhv97', 'no_lang_code', 1, 'https://ror.org/00cwdhv97 China North Industries Group Corporation (China) 中国北方工业公司'),
(38774, 'https://ror.org/05sstfv48', 'en', 1, 'https://ror.org/05sstfv48 Institute of Apiculture Research 中国农业科学院蜜蜂研究所'),
(38775, 'https://ror.org/02bjnsn63', 'en', 1, 'https://ror.org/02bjnsn63 Beijing Research Institute of Mechanical and Electrical Technology 北京机电研究所'),
(38776, 'https://ror.org/04gj4ky87', 'en', 1, 'https://ror.org/04gj4ky87 China Population and Development Research Center 中国人口与发展研究中心'),
(38777, 'https://ror.org/00bwfrq04', 'no_lang_code', 1, 'https://ror.org/00bwfrq04 Chengdu Institute of Information Technology (China) 中科院成都信息技术有限公司'),
(38778, 'https://ror.org/046qx3a23', 'en', 1, 'https://ror.org/046qx3a23 Beijing Research Institute of Uranium Geology 核工业北京地质研究院'),
(38779, 'https://ror.org/0424a8630', 'en', 1, 'https://ror.org/0424a8630 Beijing Botanical Garden 北京植物园'),
(38780, 'https://ror.org/01p6qdx15', 'en', 1, 'https://ror.org/01p6qdx15 Beijing Solar Energy Research Institute 北京市太阳能研究所有限公司'),
(38781, 'https://ror.org/01e2m0794', 'en', 1, 'https://ror.org/01e2m0794 China Earthquake Disaster Prevention Centre 中国地震灾害防御中心'),
(38782, 'https://ror.org/03cg9wt32', 'en', 1, 'https://ror.org/03cg9wt32 China Research Institute for Science Popularization 中国科普研究所'),
(38783, 'https://ror.org/03j803518', 'en', 1, 'https://ror.org/03j803518 China Institute of Daily Chemical Industry 中国日用化学工业研究院'),
(38784, 'https://ror.org/0305bn856', 'en', 1, 'https://ror.org/0305bn856 Changjiang Water Resources Commission 长江水利委员会水文局'),
(38785, 'https://ror.org/04a30tf85', 'en', 1, 'https://ror.org/04a30tf85 Beijing Vaccum Electronic Research Institute 北京真空电子技术研究所'),
(38786, 'https://ror.org/0490rfk07', 'en', 1, 'https://ror.org/0490rfk07 Feed Research Institute 中国农业科学院饲料研究所'),
(38787, 'https://ror.org/04brx9y30', 'en', 1, 'https://ror.org/04brx9y30 Beijing Water Science and Technology Institute 北京市水科学技术研究院'),
(38788, 'https://ror.org/00mc9zb90', 'en', 1, 'https://ror.org/00mc9zb90 Citrus Research Institute 中国农业科学院柑桔研究所'),
(38789, 'https://ror.org/02yjx5e75', 'en', 1, 'https://ror.org/02yjx5e75 Beijing Xuanwu Traditional Chinese Medicine Hospital 北京市宣武中医医院'),
(38790, 'https://ror.org/01xyb1v19', 'en', 1, 'https://ror.org/01xyb1v19 Civil Aviation Flight University of China 中国民用航空飞行学院'),
(38791, 'https://ror.org/03eh3c696', 'en', 1, 'https://ror.org/03eh3c696 Civil Aviation Management Institute of China 中国民航管理干部学院'),
(38792, 'https://ror.org/02egfyg20', 'en', 1, 'https://ror.org/02egfyg20 China Center of Advanced Science and Technology 中国高等科学技术中心'),
(38793, 'https://ror.org/05hxrpj87', 'en', 1, 'https://ror.org/05hxrpj87 China Electronics Standardization Institute 中国电子技术标准化研究院'),
(38794, 'https://ror.org/01k4abj61', 'en', 1, 'https://ror.org/01k4abj61 China Tourism Academy 中国旅游研究院'),
(38795, 'https://ror.org/059qzzv16', 'en', 1, 'https://ror.org/059qzzv16 Fujian Institute of Oceanography 福建海洋研究所'),
(38796, 'https://ror.org/00c3bg218', 'en', 1, 'https://ror.org/00c3bg218 China Europe International Business School 中欧国际工商学院'),
(38797, 'https://ror.org/02t573g91', 'en', 1, 'https://ror.org/02t573g91 China Executive Leadership Academy Pudong 中国浦东干部学院;'),
(38798, 'https://ror.org/0311w8j32', 'en', 1, 'https://ror.org/0311w8j32 Guangxi Academy of Fishery Sciences 广西水产科学研究院'),
(38799, 'https://ror.org/053cexp66', 'en', 1, 'https://ror.org/053cexp66 China Information Technology Security Evaluation Center 中国信息安全测评中心'),
(38800, 'https://ror.org/02jf7e446', 'en', 1, 'https://ror.org/02jf7e446 Gannan Normal University 赣南师範学院'),
(38801, 'https://ror.org/02baj1350', 'en', 1, 'https://ror.org/02baj1350 Chinese Academy for Environmental Planning 中国环境保护部环境规划院'),
(38802, 'https://ror.org/001tdwk28', 'en', 1, 'https://ror.org/001tdwk28 Gansu Academy of Agricultural Sciences 农业科学甘肃省科学院'),
(38803, 'https://ror.org/03ect3280', 'en', 1, 'https://ror.org/03ect3280 Gansu Desert Control Research Institute 甘肃省治沙研究所'),
(38804, 'https://ror.org/0570hy479', 'en', 1, 'https://ror.org/0570hy479 Shanxi Academy of Agricultural Sciences 山西省农业科学院生物技术研究中心'),
(38805, 'https://ror.org/03w5vx872', 'en', 1, 'https://ror.org/03w5vx872 Guangxi Mangrove Research Center 广西红树林研究中心'),
(38806, 'https://ror.org/05tdz0n30', 'en', 1, 'https://ror.org/05tdz0n30 China Institute of Geological Environmental Monitoring 中国地质环境监测院'),
(38807, 'https://ror.org/01z22gc86', 'en', 1, 'https://ror.org/01z22gc86 Chinese Academy of Cultural Heritage 中国文化遗产研究院'),
(38808, 'https://ror.org/00gkkv889', 'en', 1, 'https://ror.org/00gkkv889 Development Research Center of the State Council 国务院发展研究中心'),
(38809, 'https://ror.org/01e99ef13', 'no_lang_code', 1, 'https://ror.org/01e99ef13 Gansu Meteorological Bureau 甘肃省气象局'),
(38810, 'https://ror.org/01dqnej95', 'en', 1, 'https://ror.org/01dqnej95 China Land Surveying and Planning Institute 中国土地勘测规划院'),
(38811, 'https://ror.org/05j1pnm38', 'en', 1, 'https://ror.org/05j1pnm38 Dunhuang Research Academy 敦煌研究院'),
(38812, 'https://ror.org/045g90a87', 'en', 1, 'https://ror.org/045g90a87 China Leather and Footwear Industry Research Institute 中国皮革和制鞋工业研究院'),
(38813, 'https://ror.org/05jc4yc89', 'en', 1, 'https://ror.org/05jc4yc89 China Meat Research Centre 中国肉类食品研究中心'),
(38814, 'https://ror.org/04vmpjr08', 'en', 1, 'https://ror.org/04vmpjr08 Institute of Grassland Research 草原研究所'),
(38815, 'https://ror.org/04grzdh47', 'en', 1, 'https://ror.org/04grzdh47 Guangdong University of Finance 广东金融学院'),
(38816, 'https://ror.org/02wstxe29', 'en', 1, 'https://ror.org/02wstxe29 Chinese Academy of Personnel Science 中国人事科学研究院'),
(38817, 'https://ror.org/05cvbj479', 'en', 1, 'https://ror.org/05cvbj479 Guangzhou HKUST Fok Ying Tung Research Institute 霍英东研究院'),
(38818, 'https://ror.org/04gjmb875', 'en', 1, 'https://ror.org/04gjmb875 Guang’anmen Hospital 中国中医科学院广安门医院'),
(38819, 'https://ror.org/00s2dxs29', 'en', 1, 'https://ror.org/00s2dxs29 East China Mineral Exploration & Development Bureau 江苏省有色金属华东地质勘查局'),
(38820, 'https://ror.org/04qqd9793', 'en', 1, 'https://ror.org/04qqd9793 Chinese Academy of Science and Technology for Development 中国科学技术促进发展'),
(38821, 'https://ror.org/04vtbxw76', 'en', 1, 'https://ror.org/04vtbxw76 Guangdong Academy of Forestry 广东省林业科学研究院'),
(38822, 'https://ror.org/03tbxt129', 'en', 1, 'https://ror.org/03tbxt129 Guangzhou Institute of Geography 广州地理研究所'),
(38823, 'https://ror.org/02j693n47', 'en', 1, 'https://ror.org/02j693n47 Chinese Academy of Surveying and Mapping 中国测绘科学研究院'),
(38824, 'https://ror.org/02t1dzr71', 'en', 1, 'https://ror.org/02t1dzr71 China Machine Press 中国机械工业出版社'),
(38825, 'https://ror.org/00jaxam28', 'en', 1, 'https://ror.org/00jaxam28 Guangzhou Marine Geological Survey 广州海洋地质调查局'),
(38826, 'https://ror.org/00z0n4g71', 'en', 1, 'https://ror.org/00z0n4g71 PLA Electronic Engineering Institute 中国人民解放军电子工程学院'),
(38827, 'https://ror.org/017xz5989', 'en', 1, 'https://ror.org/017xz5989 Chinese National Human Genome Center at Shanghai 国家人类基因组南方研究中心'),
(38828, 'https://ror.org/03kzcrh59', 'en', 1, 'https://ror.org/03kzcrh59 Guangzhou Maritime College 广州航海高等专科学校'),
(38829, 'https://ror.org/01j9jcf33', 'en', 1, 'https://ror.org/01j9jcf33 Guangzhou Panyu Polytechnic 广州番禺职业技术学院'),
(38830, 'https://ror.org/031jzbb03', 'en', 1, 'https://ror.org/031jzbb03 Chinese People''s Armed Police Force Engineering University 中国人民武装警察部队工程大学'),
(38831, 'https://ror.org/023v1tr45', 'en', 1, 'https://ror.org/023v1tr45 Hangzhou Academy of Agricultural Sciences 杭州市农业科学研究院'),
(38832, 'https://ror.org/03j2cpb79', 'en', 1, 'https://ror.org/03j2cpb79 Farmland Irrigation Research Institute 中国农业科学院农田灌溉研究所'),
(38833, 'https://ror.org/03epp6210', 'en', 1, 'https://ror.org/03epp6210 Chongqing Institute of Geology and Mineral Resources 重庆地质矿产研究院'),
(38834, 'https://ror.org/02mxq6q49', 'en', 1, 'https://ror.org/02mxq6q49 Guangdong Laboratory Animals Monitoring Institute 广东省实验动物监测所'),
(38835, 'https://ror.org/05krxyw16', 'en', 1, 'https://ror.org/05krxyw16 Guangdong Police College 广东警官学院'),
(38836, 'https://ror.org/01bhp1y81', 'en', 1, 'https://ror.org/01bhp1y81 Hebei Chemical and Pharmaceutical College 河北化工医药职业技术学院 地址'),
(38837, 'https://ror.org/02bb8n686', 'en', 1, 'https://ror.org/02bb8n686 Guiyang College of Traditional Chinese Medicine 贵阳中医学院'),
(38838, 'https://ror.org/01s1s3g75', 'en', 1, 'https://ror.org/01s1s3g75 Hebei Meteorological Bureau 河北省气象局'),
(38839, 'https://ror.org/00xz0ff56', 'en', 1, 'https://ror.org/00xz0ff56 Institute of Agricultural Economics and Development 中国农业科学院农业经济与发展研究所'),
(38840, 'https://ror.org/01nrzdp21', 'en', 1, 'https://ror.org/01nrzdp21 Institute of Agricultural Resources and Regional Planning 中国农业科学院农业资源与农业区划研究所'),
(38841, 'https://ror.org/05ty2n298', 'en', 1, 'https://ror.org/05ty2n298 Guizhou Academy of Sciences 贵州科学院'),
(38842, 'https://ror.org/05bkrjx06', 'en', 1, 'https://ror.org/05bkrjx06 Institute of Hydroecology 水利部中国科学院水工程生态研究所'),
(38843, 'https://ror.org/027s8b340', 'no_lang_code', 1, 'https://ror.org/027s8b340 Henan Communication Science and Technology Research Institute (China) 河南省交通科学技术研究院有限公司'),
(38844, 'https://ror.org/039828v86', 'en', 1, 'https://ror.org/039828v86 Guizhou Academy of Environmental Science and Design 贵州省环境科学研究设计院'),
(38845, 'https://ror.org/036jj0x14', 'en', 1, 'https://ror.org/036jj0x14 Apiculture Science Institute of Jinlin province 吉林省养蜂科学研究所'),
(38846, 'https://ror.org/044ysd349', 'en', 1, 'https://ror.org/044ysd349 Hunan Institute of Science and Technology 湖南理工学院'),
(38847, 'https://ror.org/00ed0hz84', 'en', 1, 'https://ror.org/00ed0hz84 Henan Institute of Education 河南教育学院'),
(38848, 'https://ror.org/03zb1qq41', 'en', 1, 'https://ror.org/03zb1qq41 Guizhou Institute of Plant Protection 贵州省植物保护研究所'),
(38849, 'https://ror.org/02mt4s337', 'en', 1, 'https://ror.org/02mt4s337 Bank of China 中国银行股份有限公司'),
(38850, 'https://ror.org/00mzyf059', 'en', 1, 'https://ror.org/00mzyf059 Institute of Bast Fiber Crops 中国农业科学院麻类研究所'),
(38851, 'https://ror.org/026ktg130', 'en', 1, 'https://ror.org/026ktg130 Hainan Provincial Academy of Agricultural Sciences 海南省农业科学院'),
(38852, 'https://ror.org/026h9r553', 'no_lang_code', 1, 'https://ror.org/026h9r553 Hunan Haili Chemical Industry (China) 湖南化工研究院'),
(38853, 'https://ror.org/032bw1116', 'en', 1, 'https://ror.org/032bw1116 Hunan Women''S University 湖南女子学院'),
(38854, 'https://ror.org/01t2fht66', 'en', 1, 'https://ror.org/01t2fht66 Institute of Economic System and Management 国家发展和改革委员会经济体制与管理研究所'),
(38855, 'https://ror.org/048nm8g63', 'en', 1, 'https://ror.org/048nm8g63 Institute of Environment and Sustainable Development in Agriculture 农业环境与可持续发展研究所'),
(38856, 'https://ror.org/05qh2mm74', 'en', 1, 'https://ror.org/05qh2mm74 Land Consolidation and Rehabilitation Center 中国国土整治网'),
(38857, 'https://ror.org/02fnpjd08', 'en', 1, 'https://ror.org/02fnpjd08 Institute of Vegetables and Flowers 中国农业科学院蔬菜花卉研究所'),
(38858, 'https://ror.org/04k1m2t10', 'en', 1, 'https://ror.org/04k1m2t10 Jiangsu Police Officer College 江苏警官学院'),
(38859, 'https://ror.org/05khqm878', 'en', 1, 'https://ror.org/05khqm878 Institute of Quality Standards and Testing Technology for Agro Products 中国农科院科学院农科院质量标准与检测技术研究所'),
(38860, 'https://ror.org/013s90815', 'en', 1, 'https://ror.org/013s90815 Lanzhou Institute of Husbandry and Pharmaceutical Sciences 中国农业科学院兰州畜牧与兽药研究所'),
(38861, 'https://ror.org/04ry60e05', 'en', 1, 'https://ror.org/04ry60e05 Institute of Forensic Science 司法部司法鉴定科学技术研究所'),
(38862, 'https://ror.org/051p3cy55', 'en', 1, 'https://ror.org/051p3cy55 Hebei Academy of Agriculture and Forestry Sciences 河北省农林科学院遗传生理研究所'),
(38863, 'https://ror.org/01b2av652', 'en', 1, 'https://ror.org/01b2av652 Institute of Scientific and Technical Information of China 中国科学技术信息研究所'),
(38864, 'https://ror.org/01raxej33', 'en', 1, 'https://ror.org/01raxej33 Jiangsu Provincial Party School 江苏省行政学院'),
(38865, 'https://ror.org/05hxfvg04', 'en', 1, 'https://ror.org/05hxfvg04 Liaoning Ocean and Fisheries Research Institute 辽宁省海洋水产科学研究院'),
(38866, 'https://ror.org/00zjgt856', 'en', 1, 'https://ror.org/00zjgt856 Guangxi Zhuang Autonomous Region Museum 广西壮族自治区自然博物馆'),
(38867, 'https://ror.org/03y33h821', 'en', 1, 'https://ror.org/03y33h821 Jiangsu Institute of Meteorological Sciences 江苏省气象科学研究所'),
(38868, 'https://ror.org/04c0a2034', 'en', 1, 'https://ror.org/04c0a2034 Institute of Special Animal and Plant Sciences 中国农业科学院特产研究所'),
(38869, 'https://ror.org/05ycd7562', 'en', 1, 'https://ror.org/05ycd7562 Nanjing Institute of Environmental Sciences 环境保护部南京环境科学研究所'),
(38870, 'https://ror.org/00t1yh273', 'en', 1, 'https://ror.org/00t1yh273 Jiangsu Provincial Meteorological Bureau 江苏省气象台'),
(38871, 'https://ror.org/05xgaq910', 'en', 1, 'https://ror.org/05xgaq910 Nanjing Institute of Agricultural Mechanization 农业部南京农业机械化研究所'),
(38872, 'https://ror.org/01ngb3r97', 'en', 1, 'https://ror.org/01ngb3r97 Ningbo Academy of Agricultural Sciences 宁波市农业科学研究院'),
(38873, 'https://ror.org/03jmw7514', 'en', 1, 'https://ror.org/03jmw7514 Qinghai Meteorological Institute 青海省气象局'),
(38874, 'https://ror.org/0088q3d19', 'en', 1, 'https://ror.org/0088q3d19 Shaanxi Provincial Meteorological Bureau 陕西省气象局'),
(38875, 'https://ror.org/05kfmjk33', 'en', 1, 'https://ror.org/05kfmjk33 Jiangxi Academy of Environmental Sciences 江西省环境保护科学研究院'),
(38876, 'https://ror.org/03s130c71', 'en', 1, 'https://ror.org/03s130c71 State Council Leading Group of Poverty Alleviation and Development 国务院扶贫与发展集团'),
(38877, 'https://ror.org/01jwsqs03', 'en', 1, 'https://ror.org/01jwsqs03 Jilin Meteorological Bureau 吉林省气象科学研究所'),
(38878, 'https://ror.org/0576c1v48', 'en', 1, 'https://ror.org/0576c1v48 People''s Liberation Army 411 Hospital 中国人民解放军第四一一医院'),
(38879, 'https://ror.org/0523x4410', 'en', 1, 'https://ror.org/0523x4410 Jilin Academy of Traditional Chinese Medicine 吉林省中医药科学院'),
(38880, 'https://ror.org/029j8j127', 'en', 1, 'https://ror.org/029j8j127 China National Commission for Disaster Reduction 国家减灾委员会办公室 技术支持'),
(38881, 'https://ror.org/01kn5gg54', 'en', 1, 'https://ror.org/01kn5gg54 Shandong Province Meteorological Bureau 山东省气象局 所有'),
(38882, 'https://ror.org/04n0f2b96', 'no_lang_code', 1, 'https://ror.org/04n0f2b96 China South Industries Group (China) 中国兵器工业第五九研究所'),
(38883, 'https://ror.org/056js0g95', 'en', 1, 'https://ror.org/056js0g95 Jilin Weather Modification Office 吉林省人工影响天气办公室'),
(38884, 'https://ror.org/04sbk5k46', 'en', 1, 'https://ror.org/04sbk5k46 North China Research Institute of Electro-optics 华北光电技术研究所'),
(38885, 'https://ror.org/04caq8026', 'en', 1, 'https://ror.org/04caq8026 Qinghai Meteorological Bureau 青海省气象局'),
(38886, 'https://ror.org/04ndr7251', 'en', 1, 'https://ror.org/04ndr7251 Shandong Provincial Water Resources Research Institute 山东省水科院'),
(38887, 'https://ror.org/02gzvm828', 'en', 1, 'https://ror.org/02gzvm828 National Earthquake Response Support Service 中国地震应急搜救中心'),
(38888, 'https://ror.org/04dpx8b39', 'no_lang_code', 1, 'https://ror.org/04dpx8b39 Shanghai Supercomputer Center (China) 上海超级计算中心'),
(38889, 'https://ror.org/002e3sm06', 'en', 1, 'https://ror.org/002e3sm06 Academic Degrees & Graduate Education 学位与研究生教育杂志社'),
(38890, 'https://ror.org/01nj0wq75', 'en', 1, 'https://ror.org/01nj0wq75 Shanghai Academy of Quality Management 上海质量管理科学研究院于'),
(38891, 'https://ror.org/0354r6c10', 'en', 1, 'https://ror.org/0354r6c10 Oil Crops Research Institute 中国农业科学院油料作物研究所'),
(38892, 'https://ror.org/00vyqsz57', 'no_lang_code', 1, 'https://ror.org/00vyqsz57 Shanghai Genon Biological Products (China) 上海转基因研究中心'),
(38893, 'https://ror.org/02bakwe76', 'en', 1, 'https://ror.org/02bakwe76 Research Center for Rural Economy 农业部农村经济研究中心'),
(38894, 'https://ror.org/02d918b78', 'en', 1, 'https://ror.org/02d918b78 Shanghai Botanical Garden 上海植物园'),
(38895, 'https://ror.org/00yw25n09', 'en', 1, 'https://ror.org/00yw25n09 Shanghai Veterinary Research Institute 中国农业科学院上海兽医研究所'),
(38896, 'https://ror.org/0335kqk33', 'en', 1, 'https://ror.org/0335kqk33 Research Institute of Highway 交通运输部公路科学研究院'),
(38897, 'https://ror.org/00t1pfq43', 'no_lang_code', 1, 'https://ror.org/00t1pfq43 Shanghai CASB Biotechnology (China) 上海中科伍佰豪生物工程有限公司'),
(38898, 'https://ror.org/02zztqs66', 'en', 1, 'https://ror.org/02zztqs66 305 Hospital of People Liberation Army 中国人民解放军第三0五医院'),
(38899, 'https://ror.org/024qkwh22', 'en', 1, 'https://ror.org/024qkwh22 Shangrao Normal University 上饶师范学院'),
(38900, 'https://ror.org/0590ypp09', 'en', 1, 'https://ror.org/0590ypp09 Shanghai Estuarine & Coastal Science Research Center 上海河口海岸科学研究中心'),
(38901, 'https://ror.org/01gnagj68', 'en', 1, 'https://ror.org/01gnagj68 Shanghai Innovative Research Center of Traditional Chinese Medicine 上海中药创新研究中心'),
(38902, 'https://ror.org/04jfg7g12', 'en', 1, 'https://ror.org/04jfg7g12 Shanghai Institute of Disaster Prevention and Relief 上海防灾救灾研究所'),
(38903, 'https://ror.org/01ncz4303', 'no_lang_code', 1, 'https://ror.org/01ncz4303 Sinosteel (China) 中国中钢集团公司'),
(38904, 'https://ror.org/057ckzt47', 'en', 1, 'https://ror.org/057ckzt47 Shaanxi Provincial People''s Hospital 陕西省人民医院'),
(38905, 'https://ror.org/03x05n260', 'en', 1, 'https://ror.org/03x05n260 South China Institute Of Environmental Sciences 环境保护部华南环境科学研究所'),
(38906, 'https://ror.org/052cqax41', 'en', 1, 'https://ror.org/052cqax41 Chinese Society of Theoretical and Applied Mechanics 中国力学学会'),
(38907, 'https://ror.org/01924nm42', 'en', 1, 'https://ror.org/01924nm42 Fifth Tianjin Central Hospital 天津市第五中心医院'),
(38908, 'https://ror.org/05m9m3d82', 'en', 1, 'https://ror.org/05m9m3d82 Shenyang The Fourth Hospital of People 沈阳市第四人民医院'),
(38909, 'https://ror.org/05vrdx898', 'en', 1, 'https://ror.org/05vrdx898 Southwestern Institute of Physics 核工业西南物理研究院'),
(38910, 'https://ror.org/04ax2jp69', 'en', 1, 'https://ror.org/04ax2jp69 Geological Museum of China 中国地质博物馆'),
(38911, 'https://ror.org/011v81t74', 'en', 1, 'https://ror.org/011v81t74 Shenzhen Academy of Inspection and Quarantine 深圳市检验检疫科学研究院'),
(38912, 'https://ror.org/02tvx6482', 'en', 1, 'https://ror.org/02tvx6482 Key Laboratory of Chemistry for Natural Products of Guizhou Province and Chinese Academy of Sciences 贵州省中国科学院天然产物化学重点实验室'),
(38913, 'https://ror.org/05bdeef79', 'en', 1, 'https://ror.org/05bdeef79 Oil and Gas Center 国土资源部油气资源战略研究中心'),
(38914, 'https://ror.org/00qzhtm25', 'en', 1, 'https://ror.org/00qzhtm25 Fairy Lake Botanical Garden 仙湖植物园'),
(38915, 'https://ror.org/01mdqc612', 'en', 1, 'https://ror.org/01mdqc612 Institute of Sugar Beet 中国农业科学院甜菜研究所'),
(38916, 'https://ror.org/03wrf9427', 'en', 1, 'https://ror.org/03wrf9427 Shenzhen Institute of Information Technology 深圳信息职业技术学院'),
(38917, 'https://ror.org/012rwzc24', 'no_lang_code', 1, 'https://ror.org/012rwzc24 Shanghai Biomodel Organism 上海南方模式生物科技发展有限公司'),
(38918, 'https://ror.org/01jbc0c43', 'en', 1, 'https://ror.org/01jbc0c43 Shenzhen Center for Disease Control and Prevention 深圳市疾病预防控制中心'),
(38919, 'https://ror.org/02jhhh683', 'en', 1, 'https://ror.org/02jhhh683 Shanghai Science and Technology Museum 上海科技馆'),
(38920, 'https://ror.org/033ca2d23', 'en', 1, 'https://ror.org/033ca2d23 Institute of World Economics and Politics 中国社会科学院世界经济与政治研究所'),
(38921, 'https://ror.org/040f10867', 'en', 1, 'https://ror.org/040f10867 Taiyuan Central Hospital 太原市中心医院'),
(38922, 'https://ror.org/02p3rg563', 'en', 1, 'https://ror.org/02p3rg563 Shandong Academy of Social Sciences 山东社会科学院'),
(38923, 'https://ror.org/03ad74s15', 'en', 1, 'https://ror.org/03ad74s15 Institute of Industrial Economics 中国社会科学院工业经济研究所'),
(38924, 'https://ror.org/04xa4q582', 'en', 1, 'https://ror.org/04xa4q582 Shanghai Academy of Social Sciences 上海社会科学院'),
(38925, 'https://ror.org/04v31xa23', 'en', 1, 'https://ror.org/04v31xa23 Institute of Economics 中国社会科学院经济研究所'),
(38926, 'https://ror.org/056w1kd89', 'en', 1, 'https://ror.org/056w1kd89 Tea Research Institute 中国农业科学院茶叶研究所'),
(38927, 'https://ror.org/02nf1ky18', 'en', 1, 'https://ror.org/02nf1ky18 Institute of Quantitative and Technical Economics 中国社会科学院数量经济与技术经济研究所'),
(38928, 'https://ror.org/02bfkc760', 'en', 1, 'https://ror.org/02bfkc760 Sichuan Academy of Forestry 四川省林业科学研究院'),
(38929, 'https://ror.org/02fzzay98', 'en', 1, 'https://ror.org/02fzzay98 Xinjiang Entry-Exit Inspection and Quarantine Bureau 新疆出入境检验检疫局检验检疫技术中心'),
(38930, 'https://ror.org/02mkq9q94', 'en', 1, 'https://ror.org/02mkq9q94 Institute of Sociology 中国社会科学院社会学研究所'),
(38931, 'https://ror.org/00hagsh42', 'en', 1, 'https://ror.org/00hagsh42 Wuhan City Chinese Medicine Hospital 武汉市中国中医医院'),
(38932, 'https://ror.org/010h4ee55', 'en', 1, 'https://ror.org/010h4ee55 Institute for Urban and Environmental Studies 中国社会科学院城市发展与环境研究所'),
(38933, 'https://ror.org/04jgb8w65', 'en', 1, 'https://ror.org/04jgb8w65 Sino-Japan Friendship Center for Environmental Protection 中日友好环境保护中心'),
(38934, 'https://ror.org/02xfgyt86', 'no_lang_code', 1, 'https://ror.org/02xfgyt86 SinoGenoMax (China) 北京诺赛基因组研究中心有限公司'),
(38935, 'https://ror.org/0516wpz95', 'en', 1, 'https://ror.org/0516wpz95 Tianjin Academy of Agricultural Sciences 天津市农业科学院成立于'),
(38936, 'https://ror.org/04wtra345', 'en', 1, 'https://ror.org/04wtra345 Rural Development Institute 中国社会科学院农村发展研究所'),
(38937, 'https://ror.org/01h547a76', 'en', 1, 'https://ror.org/01h547a76 Tianjin Centers for Disease Control and Prevention 天津市疾病预防控制中心'),
(38938, 'https://ror.org/03ybgf406', 'en', 1, 'https://ror.org/03ybgf406 Urumqi General Hospital of PLA 兰州军区乌鲁木齐总医院'),
(38939, 'https://ror.org/036m22d48', 'en', 1, 'https://ror.org/036m22d48 Shandong Marine Resource and Environment Research Institute 山东省海洋资源与环境研究院'),
(38940, 'https://ror.org/013kb0k13', 'en', 1, 'https://ror.org/013kb0k13 China Waterborne Transport Research Institute 交通运输部水运科学研究所'),
(38941, 'https://ror.org/03xr30889', 'en', 1, 'https://ror.org/03xr30889 Tianjin Meteorological Bureau 天津市气象局 制作'),
(38942, 'https://ror.org/0506q7a98', 'en', 1, 'https://ror.org/0506q7a98 Yellow River Institute of Hydraulic Research 黄河水文水资源科学研究院'),
(38943, 'https://ror.org/0186w6z26', 'en', 1, 'https://ror.org/0186w6z26 Xinjiang Institute of Materia Medica 新疆维吾尔自治区药物研究所'),
(38944, 'https://ror.org/01wp3d509', 'en', 1, 'https://ror.org/01wp3d509 Academy of State Administration of Grain 国家粮食局科学研究院'),
(38945, 'https://ror.org/003sd7q02', 'en', 1, 'https://ror.org/003sd7q02 Tianjin Natural History Museum 天津自然博物馆始建于'),
(38946, 'https://ror.org/048fp0x47', 'en', 1, 'https://ror.org/048fp0x47 Yuxi Normal University 玉溪师范学院'),
(38947, 'https://ror.org/024d3p373', 'en', 1, 'https://ror.org/024d3p373 Tibet Academy of Agricultural and Animal Husbandry Sciences 西藏农牧科学院'),
(38948, 'https://ror.org/03pkfys17', 'en', 1, 'https://ror.org/03pkfys17 Zhejiang Institute of Hydraulics & Estuary 浙江省水利河口研究院'),
(38949, 'https://ror.org/010paq956', 'en', 1, 'https://ror.org/010paq956 Yunnan Animal Science and Veterinary Institute 云南省畜牧兽医科学院'),
(38950, 'https://ror.org/03ssr6t63', 'no_lang_code', 1, 'https://ror.org/03ssr6t63 Tiandi Science & Technology (China) 中煤科工集团西安研究院'),
(38951, 'https://ror.org/01jzst437', 'en', 1, 'https://ror.org/01jzst437 Jiangsu Vocational College of Medicine 江苏医药职业学院'),
(38952, 'https://ror.org/05rpf2x18', 'en', 1, 'https://ror.org/05rpf2x18 Yunnan Academy of Forestry 云南省林业科学院'),
(38953, 'https://ror.org/0099xbw16', 'en', 1, 'https://ror.org/0099xbw16 Tobacco Research Institute 院烟草研究所'),
(38954, 'https://ror.org/05qkx4t42', 'en', 1, 'https://ror.org/05qkx4t42 Zhejiang Academy of Forestry 浙江省林业科学研究院'),
(38955, 'https://ror.org/03c94t831', 'en', 1, 'https://ror.org/03c94t831 Zhejiang Meteorological Bureau 浙江省气象科学研究所'),
(38956, 'https://ror.org/05ygsee60', 'en', 1, 'https://ror.org/05ygsee60 Yunnan Institute of Endemic Diseases Control and Prevention 云南省地方病防治网'),
(38957, 'https://ror.org/04dw3t358', 'en', 1, 'https://ror.org/04dw3t358 Zhengzhou Fruit Research Institute 中国农业科学院郑州果树研究所'),
(38958, 'https://ror.org/03sasjr79', 'en', 1, 'https://ror.org/03sasjr79 Yunnan Institute of Parasitic Diseases 云南寄生虫病防治网'),
(38959, 'https://ror.org/03ngerk47', 'en', 1, 'https://ror.org/03ngerk47 Al-Farabi College'),
(38960, 'https://ror.org/018zase94', 'en', 1, 'https://ror.org/018zase94 All India Institute of Physical Medicine and Rehabilitation'),
(38961, 'https://ror.org/01khc4e56', 'en', 1, 'https://ror.org/01khc4e56 Yunnan Provincial Hospital of Traditional Chinese Medicine 云南省中医医院'),
(38962, 'https://ror.org/03mt6tt39', 'en', 1, 'https://ror.org/03mt6tt39 Asian Institute of Management'),
(38963, 'https://ror.org/03sgfhr82', 'es', 1, 'https://ror.org/03sgfhr82 Asociacion Para Evitar la Ceguera en México Hospital Dr. Luis Sánchez Bulnes'),
(38964, 'https://ror.org/04j0w0694', 'en', 1, 'https://ror.org/04j0w0694 Atlantic International University'),
(38965, 'https://ror.org/03a39dd69', 'en', 1, 'https://ror.org/03a39dd69 De La Salle University – Dasmariñas'),
(38966, 'https://ror.org/02srjxm46', 'en', 1, 'https://ror.org/02srjxm46 Brazosport College'),
(38967, 'https://ror.org/04z1g6718', 'en', 1, 'https://ror.org/04z1g6718 Brookhaven College'),
(38968, 'https://ror.org/0352adn16', 'en', 1, 'https://ror.org/0352adn16 American College of Dubai'),
(38969, 'https://ror.org/012sa7x09', 'en', 1, 'https://ror.org/012sa7x09 Eastfield College'),
(38970, 'https://ror.org/00mm8q321', 'en', 1, 'https://ror.org/00mm8q321 American Military University'),
(38971, 'https://ror.org/0417r6n29', 'en', 1, 'https://ror.org/0417r6n29 Richland College'),
(38972, 'https://ror.org/00kb9vf38', 'en', 1, 'https://ror.org/00kb9vf38 Australasian College for Emergency Medicine'),
(38973, 'https://ror.org/02hnxxp83', 'en', 1, 'https://ror.org/02hnxxp83 American University of the Caribbean School of Medicine'),
(38974, 'https://ror.org/03gjr0792', 'en', 1, 'https://ror.org/03gjr0792 Central Building Research Institute');
INSERT INTO `rors` VALUES
(38975, 'https://ror.org/045gxp391', 'en', 1, 'https://ror.org/045gxp391 Aneurin Bevan University Health Board'),
(38976, 'https://ror.org/03cbgzw80', 'en', 1, 'https://ror.org/03cbgzw80 Central Institute for Cotton Research'),
(38977, 'https://ror.org/026j5b854', 'en', 1, 'https://ror.org/026j5b854 Central Institute of Agricultural Engineering केन्द्रीय कृषि अभियांत्रिकी संस्थान'),
(38978, 'https://ror.org/05ccyns11', 'en', 1, 'https://ror.org/05ccyns11 Apollo Hospitals'),
(38979, 'https://ror.org/037rveh76', 'en', 1, 'https://ror.org/037rveh76 Bangladesh College of Physicians and Surgeons'),
(38980, 'https://ror.org/05e7sd388', 'en', 1, 'https://ror.org/05e7sd388 Central Institute of Brackishwater Aquaculture'),
(38981, 'https://ror.org/00hd92c69', 'en', 1, 'https://ror.org/00hd92c69 Central Institute of Plastics Engineering and Technology'),
(38982, 'https://ror.org/052afrt88', 'en', 1, 'https://ror.org/052afrt88 Central Plantation Crops Research Institute'),
(38983, 'https://ror.org/024h4jv51', 'en', 1, 'https://ror.org/024h4jv51 Central Sheep and Wool Research Institute केंद्रीय भेड़ और ऊन अनुसंधान संस्थान'),
(38984, 'https://ror.org/02mht3s70', 'en', 1, 'https://ror.org/02mht3s70 City of Westminster College'),
(38985, 'https://ror.org/05jdfze05', 'en', 1, 'https://ror.org/05jdfze05 Indian Institute of Soil and Water Conservation'),
(38986, 'https://ror.org/03er61e50', 'fr', 1, 'https://ror.org/03er61e50 Clinique Pasteur Pasteur Clinic'),
(38987, 'https://ror.org/0366v8040', 'en', 1, 'https://ror.org/0366v8040 Central Soil Salinity Research Institute'),
(38988, 'https://ror.org/014hmqv77', 'en', 1, 'https://ror.org/014hmqv77 Dudley Group NHS Foundation Trust'),
(38989, 'https://ror.org/033jaw121', 'en', 1, 'https://ror.org/033jaw121 College of Intensive Care Medicine'),
(38990, 'https://ror.org/04sgttv52', 'pt', 1, 'https://ror.org/04sgttv52 Centro Hospitalar Cova da Beira Hospital Center of Cova da Beira'),
(38991, 'https://ror.org/037gpje79', 'en', 1, 'https://ror.org/037gpje79 Colleges of Medicine of South Africa'),
(38992, 'https://ror.org/01t3g9a95', 'en', 1, 'https://ror.org/01t3g9a95 Community College of Beaver County'),
(38993, 'https://ror.org/00k51n564', 'en', 1, 'https://ror.org/00k51n564 Emmanuel Hospital Association'),
(38994, 'https://ror.org/02se5n791', 'en', 1, 'https://ror.org/02se5n791 Entrepreneurship Development Institute of India'),
(38995, 'https://ror.org/00cy2ef80', 'pt', 1, 'https://ror.org/00cy2ef80 Centro Universitário Metodista IPA'),
(38996, 'https://ror.org/02bjw4523', 'en', 1, 'https://ror.org/02bjw4523 Chartered Institute of Linguists'),
(38997, 'https://ror.org/0221k0h06', 'en', 1, 'https://ror.org/0221k0h06 European School of Molecular Medicine'),
(38998, 'https://ror.org/005j5qx09', 'no_lang_code', 1, 'https://ror.org/005j5qx09 FKUZ Stavropol Rospotrebnadzor Anti Institute ФКУЗ Ставропольский противочумный институт Роспотребнадзора'),
(38999, 'https://ror.org/05pkv9t98', 'en', 1, 'https://ror.org/05pkv9t98 Central Research Institute of Structural Materials Prometey ГНЦ ФГУП «ЦНИИ конструкционных материалов «Прометей»'),
(39000, 'https://ror.org/00tqkxb21', 'en', 1, 'https://ror.org/00tqkxb21 Forest Research Institute वन अनुसंधान संस्थान'),
(39001, 'https://ror.org/05w5n1x92', 'en', 1, 'https://ror.org/05w5n1x92 Organisation Ouest Africaine de la Santé West African Health Organisation'),
(39002, 'https://ror.org/04fhp7r51', 'en', 1, 'https://ror.org/04fhp7r51 Davao del Norte State College'),
(39003, 'https://ror.org/00cxqcr87', 'en', 1, 'https://ror.org/00cxqcr87 Christian Heritage College'),
(39004, 'https://ror.org/01dmnvb64', 'es', 1, 'https://ror.org/01dmnvb64 Fundación Hospital Manacor'),
(39005, 'https://ror.org/0432tev68', 'en', 1, 'https://ror.org/0432tev68 Davao Medical School Foundation'),
(39006, 'https://ror.org/021pyej66', 'en', 1, 'https://ror.org/021pyej66 Gandhi Medical College & Hospital గాంధీ వైద్య కళాశాల'),
(39007, 'https://ror.org/00f975e16', 'no_lang_code', 1, 'https://ror.org/00f975e16 Genesys (United States)'),
(39008, 'https://ror.org/04e72vw61', 'en', 1, 'https://ror.org/04e72vw61 Debre Berhan University'),
(39009, 'https://ror.org/009hwr222', 'no_lang_code', 1, 'https://ror.org/009hwr222 Pelum Association'),
(39010, 'https://ror.org/055fmxa32', 'en', 1, 'https://ror.org/055fmxa32 Dongnam Institute of Radiological & Medical Sciences'),
(39011, 'https://ror.org/03zt3va85', 'fr', 1, 'https://ror.org/03zt3va85 Institut de Paléontologie Humaine'),
(39012, 'https://ror.org/030ms0x66', 'es', 1, 'https://ror.org/030ms0x66 Hospital Universitario Dr José Eleuterio Gonzalez'),
(39013, 'https://ror.org/0387j8q89', 'pt', 1, 'https://ror.org/0387j8q89 Grupo Hospitalar Conceição'),
(39014, 'https://ror.org/006k05x61', 'pt', 1, 'https://ror.org/006k05x61 Complexo Hospitalar Universitário Professor Edgard Santos'),
(39015, 'https://ror.org/00v9zm431', 'es', 1, 'https://ror.org/00v9zm431 Hospital Vicente Corral Moscoso'),
(39016, 'https://ror.org/04pqf8583', 'es', 1, 'https://ror.org/04pqf8583 Institut Pere Mata'),
(39017, 'https://ror.org/04d3d5q14', 'en', 1, 'https://ror.org/04d3d5q14 Inspiration Innovation Synergy University'),
(39018, 'https://ror.org/03561p598', 'en', 1, 'https://ror.org/03561p598 Institute of Bio-Resources and Sustainable Development'),
(39019, 'https://ror.org/0561npm29', 'en', 1, 'https://ror.org/0561npm29 Indian Institute of Pulses Research भारतीय दलहन अनुसन्धान संस्थान'),
(39020, 'https://ror.org/030me6k41', 'es', 1, 'https://ror.org/030me6k41 Instituto Universitario General Gutiérrez Mellado'),
(39021, 'https://ror.org/05w47ap08', 'en', 1, 'https://ror.org/05w47ap08 Jawaharlal Nehru Tropical Botanic Garden and Research Institute'),
(39022, 'https://ror.org/0265k0q35', 'en', 1, 'https://ror.org/0265k0q35 Islamic Azad University Boroujerd Branch دانشگاه آزاد اسلامی واحد بروجرد'),
(39023, 'https://ror.org/007zpd132', 'en', 1, 'https://ror.org/007zpd132 Islamic Azad University of Hamedan دانشگاه آزاد اسلامی واحد همدان'),
(39024, 'https://ror.org/053s4kp50', 'en', 1, 'https://ror.org/053s4kp50 Islamic Azad University Saveh دانشگاه آزاد اسلامی واحد ساوه'),
(39025, 'https://ror.org/01abrxp85', 'en', 1, 'https://ror.org/01abrxp85 Islamic Azad University Semnan دانشگاه آزاد اسلامی واحد سمنان'),
(39026, 'https://ror.org/042heys49', 'no_lang_code', 1, 'https://ror.org/042heys49 Islamic Azad University Tonekabon'),
(39027, 'https://ror.org/02bqwx915', 'en', 1, 'https://ror.org/02bqwx915 Jubilee Mission Medical College and Research Institute'),
(39028, 'https://ror.org/03b49d241', 'en', 1, 'https://ror.org/03b49d241 Islamic Azad University Shabestar دانشگاه آزاد اسلامی واحد شبستر صفحه اصلی'),
(39029, 'https://ror.org/05813wx75', 'en', 1, 'https://ror.org/05813wx75 Institute for Research on Combustion Istituto di Ricerche sulla Combustione'),
(39030, 'https://ror.org/006qkqr45', 'en', 1, 'https://ror.org/006qkqr45 Institute for Coastal Marine Environment Istituto per l''Ambiente Marino Costiero'),
(39031, 'https://ror.org/0395sep02', 'fr', 1, 'https://ror.org/0395sep02 Lycée Louis-le-Grand'),
(39032, 'https://ror.org/00acd3d73', 'tr', 1, 'https://ror.org/00acd3d73 Konya Numune Hastanesi'),
(39033, 'https://ror.org/04zmybf18', 'en', 1, 'https://ror.org/04zmybf18 Korea Institute of Nuclear Safety 한국원자력안전기술원'),
(39034, 'https://ror.org/02bbqcn27', 'en', 1, 'https://ror.org/02bbqcn27 King''s College School'),
(39035, 'https://ror.org/034pbde03', 'en', 1, 'https://ror.org/034pbde03 Maharaja Engineering College'),
(39036, 'https://ror.org/05r1p5z75', 'en', 1, 'https://ror.org/05r1p5z75 KVG Dental College & Hospital'),
(39037, 'https://ror.org/04g4hjw43', 'en', 1, 'https://ror.org/04g4hjw43 A.V. Dumansky Institute of Colloid and Water Chemistry Інститут колоїдної хімії та хімії води ім. А.В. Думанського'),
(39038, 'https://ror.org/03t5hbz89', 'en', 1, 'https://ror.org/03t5hbz89 Institute of Organic Chemistry Інститут органічної хімії'),
(39039, 'https://ror.org/01tb4bh27', 'en', 1, 'https://ror.org/01tb4bh27 National Fisheries Research and Development Institute'),
(39040, 'https://ror.org/05edrtk54', 'hi', 1, 'https://ror.org/05edrtk54 Kadi Sarva Vishwavidyalaya'),
(39041, 'https://ror.org/04p9b6182', 'en', 1, 'https://ror.org/04p9b6182 National Institute of Pharmaceutical Education and Research ৰাষ্ট্ৰীয় ভেষজবিজ্ঞান শিক্ষা আৰু গৱেষণা প্ৰতিষ্ঠান, গুৱাহাটী'),
(39042, 'https://ror.org/030ag6b74', 'en', 1, 'https://ror.org/030ag6b74 Meenakshi Medical College Hospital and Research Institute'),
(39043, 'https://ror.org/040dgqr26', 'en', 1, 'https://ror.org/040dgqr26 National Institute of Pharmaceutical Education and Research'),
(39044, 'https://ror.org/05qs80z63', 'en', 1, 'https://ror.org/05qs80z63 Institute of Finance and Banking 中国社会科学院金融研究所'),
(39045, 'https://ror.org/02apff255', 'en', 1, 'https://ror.org/02apff255 Institute of Finance and Trade Economics 中国社会科学院财政与贸易经济研究所'),
(39046, 'https://ror.org/02kr3gj55', 'en', 1, 'https://ror.org/02kr3gj55 Mid Cheshire Hospitals NHS Foundation Trust'),
(39047, 'https://ror.org/01337pb37', 'en', 1, 'https://ror.org/01337pb37 Military Technical College'),
(39048, 'https://ror.org/054ztz556', 'en', 1, 'https://ror.org/054ztz556 New York Chiropractic College'),
(39049, 'https://ror.org/03gvptg28', 'en', 1, 'https://ror.org/03gvptg28 Ludwig Cancer Research'),
(39050, 'https://ror.org/03ppgma52', 'en', 1, 'https://ror.org/03ppgma52 Project Management Institute'),
(39051, 'https://ror.org/000cvk368', 'en', 1, 'https://ror.org/000cvk368 Ohio Valley Medical Center'),
(39052, 'https://ror.org/04h4g6162', 'en', 1, 'https://ror.org/04h4g6162 Pt. Jawahar Lal Nehru Memorial Medical College'),
(39053, 'https://ror.org/05gm3yv92', 'en', 1, 'https://ror.org/05gm3yv92 North Eastern Indira Gandhi Regional Institute of Health and Medical Sciences'),
(39054, 'https://ror.org/00hqbvm92', 'en', 1, 'https://ror.org/00hqbvm92 Oxford Dental College and Hospital'),
(39055, 'https://ror.org/01vfwah22', 'en', 1, 'https://ror.org/01vfwah22 Pacific Dental College and Hospital'),
(39056, 'https://ror.org/0536t7y80', 'en', 1, 'https://ror.org/0536t7y80 North Khorasan University of Medical Sciences'),
(39057, 'https://ror.org/0088h4061', 'en', 1, 'https://ror.org/0088h4061 Dr. D. Y. Patil Medical College, Hospital and Research Centre'),
(39058, 'https://ror.org/03jjxkw75', 'en', 1, 'https://ror.org/03jjxkw75 Rajasthan University of Veterinary and Animal Sciences'),
(39059, 'https://ror.org/005tx0y19', 'en', 1, 'https://ror.org/005tx0y19 Research Institute of Industrial Science and Technology'),
(39060, 'https://ror.org/04yaxh485', 'en', 1, 'https://ror.org/04yaxh485 Raffles Institution'),
(39061, 'https://ror.org/05362bq16', 'en', 1, 'https://ror.org/05362bq16 Royal College of Anaesthetists'),
(39062, 'https://ror.org/05a1xb650', 'en', 1, 'https://ror.org/05a1xb650 Seema Dental College and Hospital'),
(39063, 'https://ror.org/01bzmq497', 'en', 1, 'https://ror.org/01bzmq497 Royal College of Obstetricians and Gynaecologists'),
(39064, 'https://ror.org/02nd9e057', 'en', 1, 'https://ror.org/02nd9e057 Ross University School of Medicine'),
(39065, 'https://ror.org/02xj62754', 'en', 1, 'https://ror.org/02xj62754 Seoul School of Integrated Sciences and Technologies 서울과학종합대학원대학교'),
(39066, 'https://ror.org/00s6kha82', 'en', 1, 'https://ror.org/00s6kha82 Seoul Women''s College of Nursing'),
(39067, 'https://ror.org/04ce87537', 'en', 1, 'https://ror.org/04ce87537 Sherwood Forest Hospitals NHS Foundation Trust'),
(39068, 'https://ror.org/05s86pb97', 'en', 1, 'https://ror.org/05s86pb97 Royal College of Ophthalmologists'),
(39069, 'https://ror.org/037n46f49', 'en', 1, 'https://ror.org/037n46f49 Royal College of Pathologists'),
(39070, 'https://ror.org/02evbg326', 'en', 1, 'https://ror.org/02evbg326 Royal College of Pathologists of Australasia'),
(39071, 'https://ror.org/03naw9h65', 'en', 1, 'https://ror.org/03naw9h65 Royal Australian and New Zealand College of Obstetricians and Gynaecologists'),
(39072, 'https://ror.org/02ay8t571', 'en', 1, 'https://ror.org/02ay8t571 Shriram Institute for Industrial Research'),
(39073, 'https://ror.org/053e6gh17', 'en', 1, 'https://ror.org/053e6gh17 Royal College of Radiologists'),
(39074, 'https://ror.org/00kn94t37', 'en', 1, 'https://ror.org/00kn94t37 Rubber Board'),
(39075, 'https://ror.org/00wcxq223', 'en', 1, 'https://ror.org/00wcxq223 Rajamangala University of Technology Krungthep'),
(39076, 'https://ror.org/0444zqa87', 'en', 1, 'https://ror.org/0444zqa87 Sri Devaraj Urs Academy of Higher Education and Research'),
(39077, 'https://ror.org/0001ke483', 'en', 1, 'https://ror.org/0001ke483 St George''s Hospital'),
(39078, 'https://ror.org/00we1pa83', 'pt', 1, 'https://ror.org/00we1pa83 Inov Inesc Inovação Instituto de Novas Tecnologias'),
(39079, 'https://ror.org/050r8mq79', 'en', 1, 'https://ror.org/050r8mq79 Thrombosis Research Institute'),
(39080, 'https://ror.org/040eytj64', 'en', 1, 'https://ror.org/040eytj64 St.Martha''s College Of Nursing'),
(39081, 'https://ror.org/02gcnpr25', 'en', 1, 'https://ror.org/02gcnpr25 Trinity College London'),
(39082, 'https://ror.org/01jj16t33', 'en', 1, 'https://ror.org/01jj16t33 Santosh University'),
(39083, 'https://ror.org/05sy8b013', 'en', 1, 'https://ror.org/05sy8b013 United World College of the Adriatic'),
(39084, 'https://ror.org/012wxwj57', 'es', 1, 'https://ror.org/012wxwj57 Universidad del Papaloapan'),
(39085, 'https://ror.org/053sycd29', 'en', 1, 'https://ror.org/053sycd29 Technological Institute for Superhard and Novel Carbon Materials Технологический институт сверхтвердых и новых углеродных материалов'),
(39086, 'https://ror.org/02p79p790', 'en', 1, 'https://ror.org/02p79p790 Technological Institute of the Philippines'),
(39087, 'https://ror.org/00vf1vw09', 'es', 1, 'https://ror.org/00vf1vw09 Universidad de La Salle Bajío'),
(39088, 'https://ror.org/04bhgg012', 'es', 1, 'https://ror.org/04bhgg012 Universidad Politécnica de Tulancingo'),
(39089, 'https://ror.org/04m34bn97', 'es', 1, 'https://ror.org/04m34bn97 Universidad Politecnica del Estado de Morelos'),
(39090, 'https://ror.org/02f72qf66', 'es', 1, 'https://ror.org/02f72qf66 Universidad Tecnológica del Sur de Sonora'),
(39091, 'https://ror.org/02xq98350', 'en', 1, 'https://ror.org/02xq98350 Coffee Research Institute'),
(39092, 'https://ror.org/04p18ec14', 'en', 1, 'https://ror.org/04p18ec14 Vinayaka Missions Medical College and Hospitals'),
(39093, 'https://ror.org/02qn0hf26', 'en', 1, 'https://ror.org/02qn0hf26 University of Agricultural Sciences, Dharwad'),
(39094, 'https://ror.org/056b4pm25', 'fr', 1, 'https://ror.org/056b4pm25 Hôpital Pasteur'),
(39095, 'https://ror.org/04v1jm771', 'en', 1, 'https://ror.org/04v1jm771 State Oil and Gas Board of Alabama'),
(39096, 'https://ror.org/05w3mye26', 'en', 1, 'https://ror.org/05w3mye26 Geological Survey of Alabama'),
(39097, 'https://ror.org/01p1h2017', 'no_lang_code', 1, 'https://ror.org/01p1h2017 Abhikram (India)'),
(39098, 'https://ror.org/021g6e774', 'no_lang_code', 1, 'https://ror.org/021g6e774 Caplin Point Laboratories (India)'),
(39099, 'https://ror.org/02xqs5h32', 'no_lang_code', 1, 'https://ror.org/02xqs5h32 Antrix Corporation (India)'),
(39100, 'https://ror.org/00cztqj29', 'en', 1, 'https://ror.org/00cztqj29 ACS Medical College and Hospital'),
(39101, 'https://ror.org/00edfym28', 'no_lang_code', 1, 'https://ror.org/00edfym28 Bharat Electronics (India) भारत इलेक्ट्रॉनिक लिमिटेड'),
(39102, 'https://ror.org/02wvzb321', 'en', 1, 'https://ror.org/02wvzb321 Action for Agricultural Renewal in Maharashtra'),
(39103, 'https://ror.org/04e57v876', 'en', 1, 'https://ror.org/04e57v876 Career Institute Of Medical & Dental Sciences and Hospital'),
(39104, 'https://ror.org/03pztks36', 'no_lang_code', 1, 'https://ror.org/03pztks36 Aditya Birla (India)'),
(39105, 'https://ror.org/02fq16441', 'no_lang_code', 1, 'https://ror.org/02fq16441 Kalyani Group (India)'),
(39106, 'https://ror.org/02skzpy58', 'en', 1, 'https://ror.org/02skzpy58 Centre for Environmental Management and Participatory Development'),
(39107, 'https://ror.org/03ky3pc21', 'no_lang_code', 1, 'https://ror.org/03ky3pc21 Bharat Heavy Electricals (India)'),
(39108, 'https://ror.org/01jdv2a57', 'no_lang_code', 1, 'https://ror.org/01jdv2a57 Agilent Technologies (India)'),
(39109, 'https://ror.org/02m8kpq64', 'en', 1, 'https://ror.org/02m8kpq64 Child In Need Institute'),
(39110, 'https://ror.org/01c8gte40', 'en', 1, 'https://ror.org/01c8gte40 Appropriate Rural Technology Institute'),
(39111, 'https://ror.org/00rqyj043', 'no_lang_code', 1, 'https://ror.org/00rqyj043 AquAgri Processing Private Limited (India)'),
(39112, 'https://ror.org/05s1apj20', 'no_lang_code', 1, 'https://ror.org/05s1apj20 Bharat Petroleum (India)'),
(39113, 'https://ror.org/04298em06', 'en', 1, 'https://ror.org/04298em06 Central Arid Zone Research Institute'),
(39114, 'https://ror.org/00h0gj516', 'en', 1, 'https://ror.org/00h0gj516 Agri Biotech Foundation'),
(39115, 'https://ror.org/03sv4ev21', 'en', 1, 'https://ror.org/03sv4ev21 Christian Institute of Health Sciences and Research Hospital'),
(39116, 'https://ror.org/04kaykv54', 'en', 1, 'https://ror.org/04kaykv54 Central Board of Secondary Education'),
(39117, 'https://ror.org/02bremz31', 'no_lang_code', 1, 'https://ror.org/02bremz31 Alembic Pharmaceuticals (India)'),
(39118, 'https://ror.org/02s7a2f24', 'en', 1, 'https://ror.org/02s7a2f24 Ali Yavar Jung National Institute for the Hearing Handicapped'),
(39119, 'https://ror.org/03zmqr331', 'no_lang_code', 1, 'https://ror.org/03zmqr331 Bristol-Myers Squibb (India)'),
(39120, 'https://ror.org/00s8w7498', 'en', 1, 'https://ror.org/00s8w7498 Aryavarta Space Organization'),
(39121, 'https://ror.org/00xv87230', 'en', 1, 'https://ror.org/00xv87230 Church of South India Hospital'),
(39122, 'https://ror.org/047kynf18', 'no_lang_code', 1, 'https://ror.org/047kynf18 Biocon (India)'),
(39123, 'https://ror.org/01x7r2e09', 'en', 1, 'https://ror.org/01x7r2e09 Central Ground Water Board'),
(39124, 'https://ror.org/05tbkpd69', 'en', 1, 'https://ror.org/05tbkpd69 All India Management Association'),
(39125, 'https://ror.org/050dfh454', 'no_lang_code', 1, 'https://ror.org/050dfh454 Ashok Leyland (India)'),
(39126, 'https://ror.org/02wmtxq23', 'en', 1, 'https://ror.org/02wmtxq23 Central Institute for Research on Buffaloes'),
(39127, 'https://ror.org/02e22ra24', 'en', 1, 'https://ror.org/02e22ra24 Ashoka Trust for Research in Ecology and the Environment'),
(39128, 'https://ror.org/00qxm3x60', 'no_lang_code', 1, 'https://ror.org/00qxm3x60 Biological E (India)'),
(39129, 'https://ror.org/013qy4n59', 'en', 1, 'https://ror.org/013qy4n59 Central Institute of Post-Harvest Engineering and Technology'),
(39130, 'https://ror.org/000rbze86', 'en', 1, 'https://ror.org/000rbze86 Asia Pacific Institute of Management'),
(39131, 'https://ror.org/03q1jsa36', 'en', 1, 'https://ror.org/03q1jsa36 Central Manufacturing Technology Institute'),
(39132, 'https://ror.org/00h3xj803', 'no_lang_code', 1, 'https://ror.org/00h3xj803 Coal India (India) कोल इंडिया लिमिटेड'),
(39133, 'https://ror.org/04dvrba58', 'en', 1, 'https://ror.org/04dvrba58 Anchorage'),
(39134, 'https://ror.org/01x51st25', 'no_lang_code', 1, 'https://ror.org/01x51st25 Cognizant (India)'),
(39135, 'https://ror.org/05dc3mt95', 'en', 1, 'https://ror.org/05dc3mt95 Asian Energy Institute'),
(39136, 'https://ror.org/04gevk212', 'no_lang_code', 1, 'https://ror.org/04gevk212 Asian Paints (India)'),
(39137, 'https://ror.org/00mwrav07', 'en', 1, 'https://ror.org/00mwrav07 Central Pollution Control Board'),
(39138, 'https://ror.org/023wx7g30', 'en', 1, 'https://ror.org/023wx7g30 Association for Intelligent Transport Systems'),
(39139, 'https://ror.org/014bdwq31', 'en', 1, 'https://ror.org/014bdwq31 DKTE Society''s Textile and Engineering Institute'),
(39140, 'https://ror.org/01z4x3k54', 'en', 1, 'https://ror.org/01z4x3k54 Association for Stimulating Know How'),
(39141, 'https://ror.org/04hrmb987', 'en', 1, 'https://ror.org/04hrmb987 Confederation of Indian Industry कॉन्फेडरेशन ऑफ इंडियन इंडस्ट्री'),
(39142, 'https://ror.org/01t067805', 'en', 1, 'https://ror.org/01t067805 Central Soil and Materials Research Station'),
(39143, 'https://ror.org/04rt7n757', 'en', 1, 'https://ror.org/04rt7n757 C. U. Shah University'),
(39144, 'https://ror.org/04bzq6109', 'en', 1, 'https://ror.org/04bzq6109 Central Tobacco Research Institute'),
(39145, 'https://ror.org/02g7a7139', 'en', 1, 'https://ror.org/02g7a7139 Critical Art and Media Practice'),
(39146, 'https://ror.org/059qtxz36', 'en', 1, 'https://ror.org/059qtxz36 Dr. B.L. Kapur Memorial Hospital'),
(39147, 'https://ror.org/03yq84q39', 'en', 1, 'https://ror.org/03yq84q39 Centre For Environment Architecture & Human Settlements'),
(39148, 'https://ror.org/016936j45', 'en', 1, 'https://ror.org/016936j45 Association of State Road Transport Undertakings'),
(39149, 'https://ror.org/026h9k063', 'en', 1, 'https://ror.org/026h9k063 Central Water and Power Research Station'),
(39150, 'https://ror.org/027w2gw37', 'no_lang_code', 1, 'https://ror.org/027w2gw37 Astonfield (India)'),
(39151, 'https://ror.org/043rj4j47', 'no_lang_code', 1, 'https://ror.org/043rj4j47 Avantha (India)'),
(39152, 'https://ror.org/00fvdng26', 'no_lang_code', 1, 'https://ror.org/00fvdng26 Vedanta Resources (India)'),
(39153, 'https://ror.org/040817k51', 'en', 1, 'https://ror.org/040817k51 Centre For Development Alternatives'),
(39154, 'https://ror.org/02kmd4c68', 'no_lang_code', 1, 'https://ror.org/02kmd4c68 Calyx (India)'),
(39155, 'https://ror.org/05xsgtz43', 'en', 1, 'https://ror.org/05xsgtz43 Atomic Energy Regulatory Board'),
(39156, 'https://ror.org/04s4kqd92', 'no_lang_code', 1, 'https://ror.org/04s4kqd92 Dabur Research Foundation (India)'),
(39157, 'https://ror.org/0004nq427', 'en', 1, 'https://ror.org/0004nq427 Data Security Council of India'),
(39158, 'https://ror.org/01w6rxw55', 'en', 1, 'https://ror.org/01w6rxw55 Atomic Minerals Directorate for Exploration and Research परमाणु खनिज अन्वेषण एवं अनुसंधान निदेशालय'),
(39159, 'https://ror.org/04s8jbf64', 'en', 1, 'https://ror.org/04s8jbf64 Centre for Development Economics'),
(39160, 'https://ror.org/012dywt31', 'en', 1, 'https://ror.org/012dywt31 Defence Laboratory Jodhpur रक्षा प्रयोगशाला जोधपुर'),
(39161, 'https://ror.org/01axjm922', 'no_lang_code', 1, 'https://ror.org/01axjm922 Fresenius Kabi (India)'),
(39162, 'https://ror.org/044cdgz67', 'en', 1, 'https://ror.org/044cdgz67 Delhi Integrated Multi-Modal Transit System'),
(39163, 'https://ror.org/00y5kz467', 'en', 1, 'https://ror.org/00y5kz467 Frontier Lifeline Hospital'),
(39164, 'https://ror.org/00x90x382', 'en', 1, 'https://ror.org/00x90x382 Euro-India Research Centre'),
(39165, 'https://ror.org/04n3mvx98', 'no_lang_code', 1, 'https://ror.org/04n3mvx98 Elder Pharmaceuticals (India)'),
(39166, 'https://ror.org/00tnh9n90', 'no_lang_code', 1, 'https://ror.org/00tnh9n90 Emami (India)'),
(39167, 'https://ror.org/04eqe6790', 'no_lang_code', 1, 'https://ror.org/04eqe6790 Danish Hydraulic Institute (India)'),
(39168, 'https://ror.org/00zkm9w64', 'no_lang_code', 1, 'https://ror.org/00zkm9w64 Emcure Pharmaceuticals (India)'),
(39169, 'https://ror.org/02v8a2f42', 'en', 1, 'https://ror.org/02v8a2f42 Automotive Research Association of India'),
(39170, 'https://ror.org/01d0r2q86', 'en', 1, 'https://ror.org/01d0r2q86 Centre for Internet and Society'),
(39171, 'https://ror.org/04dd9ss52', 'no_lang_code', 1, 'https://ror.org/04dd9ss52 General Electric (India)'),
(39172, 'https://ror.org/037mwns69', 'en', 1, 'https://ror.org/037mwns69 Centre for Operations Research and Training'),
(39173, 'https://ror.org/05wy2at76', 'no_lang_code', 1, 'https://ror.org/05wy2at76 Engineers India (India) इंजीनियर्स इंडिया लिमिटेड'),
(39174, 'https://ror.org/04were380', 'en', 1, 'https://ror.org/04were380 ESIC Hospital'),
(39175, 'https://ror.org/00wrwqa33', 'en', 1, 'https://ror.org/00wrwqa33 Indian Institute of Oilseeds Research भाकृअनुप - भारतीय तिलहन अनुसंधान संस्थान'),
(39176, 'https://ror.org/04jzegn30', 'en', 1, 'https://ror.org/04jzegn30 Centre for Policy Research'),
(39177, 'https://ror.org/05g5nrw43', 'no_lang_code', 1, 'https://ror.org/05g5nrw43 General Motors (India)'),
(39178, 'https://ror.org/04bxq2s19', 'no_lang_code', 1, 'https://ror.org/04bxq2s19 Evalueserve (India)'),
(39179, 'https://ror.org/02getqa45', 'no_lang_code', 1, 'https://ror.org/02getqa45 Avesthagen (India)'),
(39180, 'https://ror.org/0006f9a08', 'en', 1, 'https://ror.org/0006f9a08 Centre for Science, Development and Media Studies'),
(39181, 'https://ror.org/0209zky62', 'no_lang_code', 1, 'https://ror.org/0209zky62 Evolva (India)'),
(39182, 'https://ror.org/038m0zy23', 'no_lang_code', 1, 'https://ror.org/038m0zy23 Guavus (India)'),
(39183, 'https://ror.org/05ymegm05', 'en', 1, 'https://ror.org/05ymegm05 BAIF Development Research Foundation'),
(39184, 'https://ror.org/04xprjz26', 'no_lang_code', 1, 'https://ror.org/04xprjz26 Geometric (India)'),
(39185, 'https://ror.org/04sd34v05', 'en', 1, 'https://ror.org/04sd34v05 Centre for World Solidarity'),
(39186, 'https://ror.org/03mfv0751', 'en', 1, 'https://ror.org/03mfv0751 Flags of Honour Foundation'),
(39187, 'https://ror.org/00e261632', 'en', 1, 'https://ror.org/00e261632 Gujarat Institute of Development Research'),
(39188, 'https://ror.org/025jwmc29', 'en', 1, 'https://ror.org/025jwmc29 India International Centre'),
(39189, 'https://ror.org/05w034p46', 'no_lang_code', 1, 'https://ror.org/05w034p46 FLAME TAO Knoware (India)'),
(39190, 'https://ror.org/04ajtb593', 'en', 1, 'https://ror.org/04ajtb593 Indian Air Force भारतीय वायु सेना'),
(39191, 'https://ror.org/018596x49', 'en', 1, 'https://ror.org/018596x49 Fortis Healthcare'),
(39192, 'https://ror.org/04e5d6174', 'en', 1, 'https://ror.org/04e5d6174 Indian Army भारतीय थलसेना'),
(39193, 'https://ror.org/01h7phh70', 'en', 1, 'https://ror.org/01h7phh70 Fortis Memorial Research Institute'),
(39194, 'https://ror.org/0170vdc43', 'en', 1, 'https://ror.org/0170vdc43 Forum for Ethics Review Committees in India'),
(39195, 'https://ror.org/03s5w0e14', 'en', 1, 'https://ror.org/03s5w0e14 Indian Institute for Human Settlements'),
(39196, 'https://ror.org/04mze8a19', 'en', 1, 'https://ror.org/04mze8a19 Gian Sagar Medical College and Hospital'),
(39197, 'https://ror.org/0497mxq65', 'en', 1, 'https://ror.org/0497mxq65 Gian Sagar Dental College and Hospital'),
(39198, 'https://ror.org/01cey1344', 'en', 1, 'https://ror.org/01cey1344 Foundation for Research in Health Systems'),
(39199, 'https://ror.org/00ycj0006', 'en', 1, 'https://ror.org/00ycj0006 Institute of Economic Growth'),
(39200, 'https://ror.org/003tb8s84', 'en', 1, 'https://ror.org/003tb8s84 Global ICT Standardization Forum for India'),
(39201, 'https://ror.org/042vyea63', 'en', 1, 'https://ror.org/042vyea63 Institute of Environmental Studies & Wetland Management'),
(39202, 'https://ror.org/04hqtzh27', 'en', 1, 'https://ror.org/04hqtzh27 Indian Institute Of Bio social Research And Development'),
(39203, 'https://ror.org/02dhdwm14', 'en', 1, 'https://ror.org/02dhdwm14 Global Innovation and Technology Alliance'),
(39204, 'https://ror.org/00eqbn006', 'no_lang_code', 1, 'https://ror.org/00eqbn006 GVK (India)'),
(39205, 'https://ror.org/02gnt4v62', 'en', 1, 'https://ror.org/02gnt4v62 Indian Institute of Ecology and Environment'),
(39206, 'https://ror.org/039r0r789', 'en', 1, 'https://ror.org/039r0r789 Government Dental College and Hospital'),
(39207, 'https://ror.org/0370tyv92', 'no_lang_code', 1, 'https://ror.org/0370tyv92 Hardik Fintrade (India)'),
(39208, 'https://ror.org/01nssdz50', 'en', 1, 'https://ror.org/01nssdz50 Government Medical College'),
(39209, 'https://ror.org/04eb14s37', 'en', 1, 'https://ror.org/04eb14s37 Institute of Molecular Medicine'),
(39210, 'https://ror.org/050m92g92', 'en', 1, 'https://ror.org/050m92g92 Government Mohan Kumaramangalam Medical College'),
(39211, 'https://ror.org/02nbb5780', 'no_lang_code', 1, 'https://ror.org/02nbb5780 HCL Technologies (India)'),
(39212, 'https://ror.org/0039tsz33', 'en', 1, 'https://ror.org/0039tsz33 Indian Institute of Management Kashipur भारतीय प्रबंध संस्थान काशीपुर'),
(39213, 'https://ror.org/04esabr24', 'en', 1, 'https://ror.org/04esabr24 Institute of Nephro Urology'),
(39214, 'https://ror.org/01mx9t266', 'en', 1, 'https://ror.org/01mx9t266 Indian Institute of Plantation Management'),
(39215, 'https://ror.org/045mrnd19', 'en', 1, 'https://ror.org/045mrnd19 Government of Andhra Pradesh'),
(39216, 'https://ror.org/05pysk134', 'en', 1, 'https://ror.org/05pysk134 Health Action by People'),
(39217, 'https://ror.org/0384x6e13', 'no_lang_code', 1, 'https://ror.org/0384x6e13 Hetero Drugs (India)'),
(39218, 'https://ror.org/035dsh769', 'en', 1, 'https://ror.org/035dsh769 Government of Gujarat'),
(39219, 'https://ror.org/05j873a45', 'en', 1, 'https://ror.org/05j873a45 Indian Institute of Soil Science भाकृअनुप-भारतीय मृदा विज्ञान संस्थान'),
(39220, 'https://ror.org/02ffkja82', 'no_lang_code', 1, 'https://ror.org/02ffkja82 Hewlett-Packard (India)'),
(39221, 'https://ror.org/05n72ks39', 'en', 1, 'https://ror.org/05n72ks39 Institute of Urban Designers – India'),
(39222, 'https://ror.org/02qrj0f68', 'no_lang_code', 1, 'https://ror.org/02qrj0f68 Jaypee Group (India)'),
(39223, 'https://ror.org/0186jds22', 'en', 1, 'https://ror.org/0186jds22 Indian Jute Industries Research Association'),
(39224, 'https://ror.org/02mdak015', 'no_lang_code', 1, 'https://ror.org/02mdak015 Hilleman Laboratories (India)'),
(39225, 'https://ror.org/04xs1rp67', 'en', 1, 'https://ror.org/04xs1rp67 Institute of Wood Science and Technology'),
(39226, 'https://ror.org/02sxcbg21', 'en', 1, 'https://ror.org/02sxcbg21 Indian Navy भारतीय नौसेना'),
(39227, 'https://ror.org/01b891j88', 'en', 1, 'https://ror.org/01b891j88 Government of Haryana'),
(39228, 'https://ror.org/00ahnj653', 'no_lang_code', 1, 'https://ror.org/00ahnj653 Hindustan Aeronautics Limited (India) हिंदुस्तान एरोनॉटिक्स लिमिटेड'),
(39229, 'https://ror.org/05d89hd10', 'en', 1, 'https://ror.org/05d89hd10 Jesuit Madurai Province'),
(39230, 'https://ror.org/058npc379', 'en', 1, 'https://ror.org/058npc379 Institution of Electronics and Telecommunication Engineers'),
(39231, 'https://ror.org/00maf9573', 'en', 1, 'https://ror.org/00maf9573 Government of Karnataka ಕರ್ನಾಟಕ ಸರ್ಕಾರ'),
(39232, 'https://ror.org/00786fr54', 'en', 1, 'https://ror.org/00786fr54 Indian Register of Shipping'),
(39233, 'https://ror.org/02ac3as27', 'no_lang_code', 1, 'https://ror.org/02ac3as27 JK Agri Genetics (India)'),
(39234, 'https://ror.org/03xja9992', 'en', 1, 'https://ror.org/03xja9992 Hindustan Bible Institute & College'),
(39235, 'https://ror.org/03qw7bm31', 'en', 1, 'https://ror.org/03qw7bm31 Indian Society of International Law'),
(39236, 'https://ror.org/00r96e843', 'en', 1, 'https://ror.org/00r96e843 Government of Kerala കേരള സർക്കാർ'),
(39237, 'https://ror.org/00gyygy85', 'en', 1, 'https://ror.org/00gyygy85 JRE Group of Institutions'),
(39238, 'https://ror.org/057ykey20', 'en', 1, 'https://ror.org/057ykey20 Government of Maharashtra महाराष्ट्र.भारत'),
(39239, 'https://ror.org/03tpxt335', 'en', 1, 'https://ror.org/03tpxt335 Water Supply and Sanitation Department पाणी पुरवठा व स्वच्छता विभाग'),
(39240, 'https://ror.org/004kqsv83', 'en', 1, 'https://ror.org/004kqsv83 Government of Sikkim'),
(39241, 'https://ror.org/02yt5we53', 'no_lang_code', 1, 'https://ror.org/02yt5we53 Human Factors International (India)'),
(39242, 'https://ror.org/01gk6s768', 'no_lang_code', 1, 'https://ror.org/01gk6s768 HHV Solar Technologies (India)'),
(39243, 'https://ror.org/04f2n1245', 'no_lang_code', 1, 'https://ror.org/04f2n1245 Intel (India)'),
(39244, 'https://ror.org/03k722897', 'en', 1, 'https://ror.org/03k722897 Institute of Advanced Studies in Education'),
(39245, 'https://ror.org/04p93kz40', 'en', 1, 'https://ror.org/04p93kz40 G Pulla Reddy Dental College & Hospital'),
(39246, 'https://ror.org/018yj7q57', 'en', 1, 'https://ror.org/018yj7q57 International Collective in Support of Fishworkers'),
(39247, 'https://ror.org/015v04m58', 'en', 1, 'https://ror.org/015v04m58 ICFAI Business School'),
(39248, 'https://ror.org/013hg1t45', 'en', 1, 'https://ror.org/013hg1t45 Government of Tamil Nadu தமிழ்நாடு அரசு'),
(39249, 'https://ror.org/055x00f07', 'en', 1, 'https://ror.org/055x00f07 ICARE Institute of Medical Sciences and Research & Dr. Bidhan Chandra Roy Hospital'),
(39250, 'https://ror.org/05sfbd077', 'en', 1, 'https://ror.org/05sfbd077 Industrial Credit and Investment Corporation of India'),
(39251, 'https://ror.org/04r8ftk86', 'no_lang_code', 1, 'https://ror.org/04r8ftk86 ICICI Lombard (India)'),
(39252, 'https://ror.org/01hk19p23', 'no_lang_code', 1, 'https://ror.org/01hk19p23 INHS Asvini'),
(39253, 'https://ror.org/00y61sp67', 'no_lang_code', 1, 'https://ror.org/00y61sp67 JSW Group (India)'),
(39254, 'https://ror.org/00hx1yw75', 'en', 1, 'https://ror.org/00hx1yw75 Government of Uttar Pradesh उत्तर प्रदेश सरकार'),
(39255, 'https://ror.org/05sxgbh67', 'no_lang_code', 1, 'https://ror.org/05sxgbh67 Jubilant Life Sciences (India)'),
(39256, 'https://ror.org/00jatyx22', 'en', 1, 'https://ror.org/00jatyx22 International Management Institute'),
(39257, 'https://ror.org/04141fq07', 'no_lang_code', 1, 'https://ror.org/04141fq07 Lepra Society'),
(39258, 'https://ror.org/028x2z366', 'no_lang_code', 1, 'https://ror.org/028x2z366 Ion Exchange (India)'),
(39259, 'https://ror.org/02q4r4y12', 'en', 1, 'https://ror.org/02q4r4y12 Government Medical College Thoothukudi தூத்துக்குடி அரசு மருத்துவக் கல்லூரி'),
(39260, 'https://ror.org/0373m1z21', 'no_lang_code', 1, 'https://ror.org/0373m1z21 IIDC (India)'),
(39261, 'https://ror.org/02a7xs776', 'no_lang_code', 1, 'https://ror.org/02a7xs776 Jyotirmay Eye Clinic'),
(39262, 'https://ror.org/02ppykv54', 'no_lang_code', 1, 'https://ror.org/02ppykv54 Ipca Laboratories (India)'),
(39263, 'https://ror.org/05crd4c40', 'en', 1, 'https://ror.org/05crd4c40 International Life Sciences Institute India'),
(39264, 'https://ror.org/038339q73', 'en', 1, 'https://ror.org/038339q73 Krishak Bharati Cooperative'),
(39265, 'https://ror.org/038nxyh73', 'en', 1, 'https://ror.org/038nxyh73 Great Lakes Institute of Management'),
(39266, 'https://ror.org/04xxdsr80', 'en', 1, 'https://ror.org/04xxdsr80 IT for Change'),
(39267, 'https://ror.org/04wx2hz08', 'en', 1, 'https://ror.org/04wx2hz08 India China Economic and Cultural Council'),
(39268, 'https://ror.org/00cfqsr23', 'en', 1, 'https://ror.org/00cfqsr23 Karnataka Fisheries Development Corporation'),
(39269, 'https://ror.org/01pmnvq60', 'en', 1, 'https://ror.org/01pmnvq60 India HIV/AIDS Alliance'),
(39270, 'https://ror.org/04y5qg507', 'no_lang_code', 1, 'https://ror.org/04y5qg507 ITPEnergised Group (India)'),
(39271, 'https://ror.org/034rwyq63', 'en', 1, 'https://ror.org/034rwyq63 GSL Medical College & General Hospital'),
(39272, 'https://ror.org/04wdr7416', 'no_lang_code', 1, 'https://ror.org/04wdr7416 Lupin Pharmaceuticals (India)'),
(39273, 'https://ror.org/02tjbfx21', 'en', 1, 'https://ror.org/02tjbfx21 Kasturba Hospital'),
(39274, 'https://ror.org/02wjedj15', 'en', 1, 'https://ror.org/02wjedj15 Kerala School of Mathematics'),
(39275, 'https://ror.org/02h8pgc47', 'no_lang_code', 1, 'https://ror.org/02h8pgc47 Narayana Nethralaya'),
(39276, 'https://ror.org/02anh8x74', 'en', 1, 'https://ror.org/02anh8x74 M S Ramaiah University of Applied Sciences'),
(39277, 'https://ror.org/05xth1n37', 'no_lang_code', 1, 'https://ror.org/05xth1n37 Natco Pharma (India)'),
(39278, 'https://ror.org/04v719r80', 'en', 1, 'https://ror.org/04v719r80 National Board of Examinations राष्ट्रीय परीक्षा बोर्ड'),
(39279, 'https://ror.org/032k9nq85', 'no_lang_code', 1, 'https://ror.org/032k9nq85 Magbro Healthcare (India)'),
(39280, 'https://ror.org/0265znh70', 'no_lang_code', 1, 'https://ror.org/0265znh70 Mecpro Heavy Engineering (India)'),
(39281, 'https://ror.org/04ty11y53', 'no_lang_code', 1, 'https://ror.org/04ty11y53 Kirloskar Group (India)'),
(39282, 'https://ror.org/0433t4a66', 'en', 1, 'https://ror.org/0433t4a66 Netaji Subhas National Institute of Sports'),
(39283, 'https://ror.org/02pnvb171', 'en', 1, 'https://ror.org/02pnvb171 National Bureau of Agriculturally Important Microorganisms कृषि के लिए महत्वपूर्ण सूक्ष्मजीवों के राष्ट्रीय ब्यूरो'),
(39284, 'https://ror.org/03dgc0w76', 'en', 1, 'https://ror.org/03dgc0w76 Network for Preventive Environmental Management'),
(39285, 'https://ror.org/02sv2ex42', 'en', 1, 'https://ror.org/02sv2ex42 KLE Society Hospital'),
(39286, 'https://ror.org/04z9hqv51', 'no_lang_code', 1, 'https://ror.org/04z9hqv51 Nidan'),
(39287, 'https://ror.org/0188hng36', 'en', 1, 'https://ror.org/0188hng36 Mehrangarh Museum Trust'),
(39288, 'https://ror.org/017ycwt89', 'en', 1, 'https://ror.org/017ycwt89 KMCT Group of Educational Institutions'),
(39289, 'https://ror.org/05w6t8s34', 'no_lang_code', 1, 'https://ror.org/05w6t8s34 NIIT (India)'),
(39290, 'https://ror.org/00bvt4k03', 'no_lang_code', 1, 'https://ror.org/00bvt4k03 Niramaya Hospital'),
(39291, 'https://ror.org/02q5yp463', 'en', 1, 'https://ror.org/02q5yp463 KVG Medical College & Hospital'),
(39292, 'https://ror.org/021kzta69', 'en', 1, 'https://ror.org/021kzta69 National Centre for Medium Range Weather Forecasting राष्ट्रीय मधयम अवधि मौसम पूर्वानुमान केंद'),
(39293, 'https://ror.org/05pgn2b73', 'no_lang_code', 1, 'https://ror.org/05pgn2b73 Merck (India)'),
(39294, 'https://ror.org/02svt2f64', 'no_lang_code', 1, 'https://ror.org/02svt2f64 Maharashtra Hybrid Seeds (India)'),
(39295, 'https://ror.org/00wzvx415', 'en', 1, 'https://ror.org/00wzvx415 National Council for Cement and Building Materials'),
(39296, 'https://ror.org/00x8xyn30', 'no_lang_code', 1, 'https://ror.org/00x8xyn30 Lanco Solar (India)'),
(39297, 'https://ror.org/03af8h728', 'en', 1, 'https://ror.org/03af8h728 Maharashtra State Board of Technical Education'),
(39298, 'https://ror.org/02yj8av48', 'en', 1, 'https://ror.org/02yj8av48 National Dairy Development Board'),
(39299, 'https://ror.org/04s9fyw02', 'en', 1, 'https://ror.org/04s9fyw02 National Institute Of Veterinary Epidemiology And Disease Informatics'),
(39300, 'https://ror.org/021twv479', 'en', 1, 'https://ror.org/021twv479 National Defence Academy राष्ट्रीय रक्षा अकादमी'),
(39301, 'https://ror.org/029m2pd08', 'en', 1, 'https://ror.org/029m2pd08 Noorul Islam College of Dental Science'),
(39302, 'https://ror.org/01nxyxz54', 'en', 1, 'https://ror.org/01nxyxz54 Mahatma Gandhi Mission Institute of Health Sciences'),
(39303, 'https://ror.org/00gbrgx34', 'en', 1, 'https://ror.org/00gbrgx34 National Institute of Construction Management and Research'),
(39304, 'https://ror.org/00dhvr506', 'no_lang_code', 1, 'https://ror.org/00dhvr506 Novartis (India)'),
(39305, 'https://ror.org/01c5dd102', 'no_lang_code', 1, 'https://ror.org/01c5dd102 Mahindra and Mahindra Limited (India)'),
(39306, 'https://ror.org/04he9zv34', 'no_lang_code', 1, 'https://ror.org/04he9zv34 Phoenix Medical Systems (India)'),
(39307, 'https://ror.org/016aq6r42', 'en', 1, 'https://ror.org/016aq6r42 Mahindra United World College India'),
(39308, 'https://ror.org/02h6w3w70', 'no_lang_code', 1, 'https://ror.org/02h6w3w70 Malabar Cancer Centre'),
(39309, 'https://ror.org/00tnmk453', 'no_lang_code', 1, 'https://ror.org/00tnmk453 NTPC Consultancy (India)'),
(39310, 'https://ror.org/0198sv425', 'en', 1, 'https://ror.org/0198sv425 National Institute of Open Schooling राष्ट्रीय मुक्त विद्यालयी शिक्षा संस्थान'),
(39311, 'https://ror.org/052bjm215', 'en', 1, 'https://ror.org/052bjm215 MNR Medical College and Hospital'),
(39312, 'https://ror.org/00vj60w13', 'no_lang_code', 1, 'https://ror.org/00vj60w13 Piramal (India)'),
(39313, 'https://ror.org/01qzva589', 'no_lang_code', 1, 'https://ror.org/01qzva589 Monsanto (India)'),
(39314, 'https://ror.org/00vkpzj58', 'en', 1, 'https://ror.org/00vkpzj58 Malabar Medical College Hospital and Research Centre മലബാർ മെഡിക്കൽ കോളജ്'),
(39315, 'https://ror.org/036e9v691', 'en', 1, 'https://ror.org/036e9v691 National Institution for Transforming India Aayog राष्ट्रीय भारत परिवर्तन संस्था'),
(39316, 'https://ror.org/000t17x96', 'en', 1, 'https://ror.org/000t17x96 National Institute of Plant Health Management राष्ट्रीय वनस्पति स्वास्थ्य प्रबंधन संस्थान'),
(39317, 'https://ror.org/05jhdev04', 'en', 1, 'https://ror.org/05jhdev04 Office of the Registrar General & Census Commissioner'),
(39318, 'https://ror.org/0488nbv42', 'no_lang_code', 1, 'https://ror.org/0488nbv42 MTEL-KTEI Teleinfra (India)'),
(39319, 'https://ror.org/00sgtz890', 'no_lang_code', 1, 'https://ror.org/00sgtz890 Malladi Drugs and Pharmaceuticals Limited (India)'),
(39320, 'https://ror.org/0136vj189', 'no_lang_code', 1, 'https://ror.org/0136vj189 Power Grid Corporation (India)'),
(39321, 'https://ror.org/02zm5j810', 'en', 1, 'https://ror.org/02zm5j810 National Institute of Science, Technology and Development Studies राष्ट्रीय विज्ञान, प्रौद्योगिकी और विकास अध्ययन संस्थान'),
(39322, 'https://ror.org/05dd0pt55', 'no_lang_code', 1, 'https://ror.org/05dd0pt55 Oracle (India)'),
(39323, 'https://ror.org/03thb9733', 'en', 1, 'https://ror.org/03thb9733 Mudra Institute of Communications Ahmedabad'),
(39324, 'https://ror.org/04hef0n19', 'en', 1, 'https://ror.org/04hef0n19 Brihanmumbai Municipal Corporation बृहन्मुंबई महानगरपालिका'),
(39325, 'https://ror.org/020vd6n84', 'en', 1, 'https://ror.org/020vd6n84 National Institute of Technology Meghalaya राष्ट्रीय प्रौद्योगिकी संस्थान मेघालय'),
(39326, 'https://ror.org/011fyh806', 'en', 1, 'https://ror.org/011fyh806 Raipur Municipal Corporation रायपुर नगर निगम'),
(39327, 'https://ror.org/01ew11x49', 'no_lang_code', 1, 'https://ror.org/01ew11x49 Panacea Biotec (India)'),
(39328, 'https://ror.org/04ky50w21', 'no_lang_code', 1, 'https://ror.org/04ky50w21 Murugappa (India)'),
(39329, 'https://ror.org/00rq8ty33', 'en', 1, 'https://ror.org/00rq8ty33 National Research Centre for Banana'),
(39330, 'https://ror.org/02h44gz71', 'en', 1, 'https://ror.org/02h44gz71 Mysore Resettlement and Development Agency'),
(39331, 'https://ror.org/026695c98', 'en', 1, 'https://ror.org/026695c98 Project Directorate on Foot and Mouth Disease'),
(39332, 'https://ror.org/041yajy32', 'en', 1, 'https://ror.org/041yajy32 Nansen Environmental Research Centre India'),
(39333, 'https://ror.org/03abjmr84', 'no_lang_code', 1, 'https://ror.org/03abjmr84 Rashtreeya Sikshana Samithi Trust'),
(39334, 'https://ror.org/04y4dkp70', 'en', 1, 'https://ror.org/04y4dkp70 PSG Institute of Advanced Studies'),
(39335, 'https://ror.org/003709a13', 'en', 1, 'https://ror.org/003709a13 National Research Centre for Grapes भाकृअनुप-राष्ट्रीय अंगूर अनुसंधान केन्द्र'),
(39336, 'https://ror.org/01aae0427', 'no_lang_code', 1, 'https://ror.org/01aae0427 Sanmar Group (India)'),
(39337, 'https://ror.org/038rpb237', 'en', 1, 'https://ror.org/038rpb237 Directorate of Groundnut Research मूँगफली अनुसंधान निदेशालय'),
(39338, 'https://ror.org/008seds41', 'en', 1, 'https://ror.org/008seds41 Centre for the Study of Developing Societies'),
(39339, 'https://ror.org/034ffw198', 'no_lang_code', 1, 'https://ror.org/034ffw198 Rayat Shikshan Sanstha'),
(39340, 'https://ror.org/00z3ptn78', 'en', 1, 'https://ror.org/00z3ptn78 Micro Insurance Academy'),
(39341, 'https://ror.org/00600nd69', 'en', 1, 'https://ror.org/00600nd69 Regional Medical Research Centre'),
(39342, 'https://ror.org/02xh2ys40', 'en', 1, 'https://ror.org/02xh2ys40 National Research Centre on Camel राष्ट्रीय उष्ट्र अनुसंधान केन्द्र'),
(39343, 'https://ror.org/02wawqt17', 'no_lang_code', 1, 'https://ror.org/02wawqt17 Scope e-Knowledge Center (India)'),
(39344, 'https://ror.org/027sf5r98', 'en', 1, 'https://ror.org/027sf5r98 Peerless Hospital & B.K.Roy Research Centre'),
(39345, 'https://ror.org/05jwrfc26', 'en', 1, 'https://ror.org/05jwrfc26 Rajasthan Dental College and Hospital'),
(39346, 'https://ror.org/02x351n42', 'en', 1, 'https://ror.org/02x351n42 Advanced Materials and Processes Research Institute प्रगत पदार्थ तथा प्रक्रम अनुसन्धान संस्थान'),
(39347, 'https://ror.org/03xn8gh76', 'no_lang_code', 1, 'https://ror.org/03xn8gh76 Sipra Labs (India)'),
(39348, 'https://ror.org/04j6cfb03', 'no_lang_code', 1, 'https://ror.org/04j6cfb03 Reliance Industries (India)'),
(39349, 'https://ror.org/02fcamb19', 'en', 1, 'https://ror.org/02fcamb19 National Research Centre on Seed Spices'),
(39350, 'https://ror.org/003ssft94', 'no_lang_code', 1, 'https://ror.org/003ssft94 Seascape Learning (India)'),
(39351, 'https://ror.org/039wntw43', 'no_lang_code', 1, 'https://ror.org/039wntw43 Remidio Innovative Solutions (India)'),
(39352, 'https://ror.org/02x1t0474', 'en', 1, 'https://ror.org/02x1t0474 Seth Research Foundation'),
(39353, 'https://ror.org/03mj1nk45', 'en', 1, 'https://ror.org/03mj1nk45 National University of Educational Planning and Administration'),
(39354, 'https://ror.org/01d47cz35', 'en', 1, 'https://ror.org/01d47cz35 Research Design And Standards Organization अनुसंधान अभिकल्प एवं मानक संगठन'),
(39355, 'https://ror.org/02cnc0j97', 'en', 1, 'https://ror.org/02cnc0j97 Shadan Hospital and Institute of Medical Sciences'),
(39356, 'https://ror.org/006hdqg38', 'en', 1, 'https://ror.org/006hdqg38 Shanti Business School'),
(39357, 'https://ror.org/0417mky81', 'en', 1, 'https://ror.org/0417mky81 Resource Optimization Initiative'),
(39358, 'https://ror.org/05kks9g21', 'hi', 1, 'https://ror.org/05kks9g21 Shramik Bharti'),
(39359, 'https://ror.org/01bd1sf38', 'en', 1, 'https://ror.org/01bd1sf38 SRM Dental College'),
(39360, 'https://ror.org/059sbje92', 'en', 1, 'https://ror.org/059sbje92 Ayush & Health Sciences University Chhattisgarh पं. दीनदयाल उपाध्याय स्मृति स्वास्थ्य विज्ञान एवं आयुष विश्वविद्यालय छत्तीसगढ़'),
(39361, 'https://ror.org/02avh2k34', 'en', 1, 'https://ror.org/02avh2k34 Sri Balaji Vidyapeeth University'),
(39362, 'https://ror.org/01pv03m42', 'no_lang_code', 1, 'https://ror.org/01pv03m42 Strand Life Sciences (India)'),
(39363, 'https://ror.org/026c92t86', 'en', 1, 'https://ror.org/026c92t86 Subbaiah Medical College'),
(39364, 'https://ror.org/014jj9v53', 'en', 1, 'https://ror.org/014jj9v53 Society for Nutrition Education and Health Action'),
(39365, 'https://ror.org/00120ce61', 'en', 1, 'https://ror.org/00120ce61 Society for Participatory Research in Asia'),
(39366, 'https://ror.org/03r8r2789', 'no_lang_code', 1, 'https://ror.org/03r8r2789 Sify Technologies (India)'),
(39367, 'https://ror.org/01ea1bc11', 'en', 1, 'https://ror.org/01ea1bc11 Society for Research and Initiatives for Sustainable Technologies and Institutions'),
(39368, 'https://ror.org/026d1sx92', 'en', 1, 'https://ror.org/026d1sx92 Salim Ali Center for Ornithology and Natural History'),
(39369, 'https://ror.org/01cryga93', 'no_lang_code', 1, 'https://ror.org/01cryga93 Sami Labs (India)'),
(39370, 'https://ror.org/04bcrv494', 'en', 1, 'https://ror.org/04bcrv494 National Institute of Solar Energy'),
(39371, 'https://ror.org/05mxsz225', 'no_lang_code', 1, 'https://ror.org/05mxsz225 Mahindra Group (India)'),
(39372, 'https://ror.org/03ymf7q07', 'no_lang_code', 1, 'https://ror.org/03ymf7q07 Sun Pharma Advanced Research (India)'),
(39373, 'https://ror.org/03zx8g717', 'no_lang_code', 1, 'https://ror.org/03zx8g717 Techno India Group (India)'),
(39374, 'https://ror.org/04cpx2569', 'no_lang_code', 1, 'https://ror.org/04cpx2569 Samsung (India)'),
(39375, 'https://ror.org/056ant482', 'en', 1, 'https://ror.org/056ant482 State Council of Science and Technology for Sikkim'),
(39376, 'https://ror.org/01th09c42', 'no_lang_code', 1, 'https://ror.org/01th09c42 Suncon Engineers (India)'),
(39377, 'https://ror.org/00vtmxd94', 'en', 1, 'https://ror.org/00vtmxd94 Terna Dental College and Hospital'),
(39378, 'https://ror.org/04jc0pe38', 'no_lang_code', 1, 'https://ror.org/04jc0pe38 RenewSys (India)'),
(39379, 'https://ror.org/04shpes69', 'no_lang_code', 1, 'https://ror.org/04shpes69 Span Diagnostics (India)');
INSERT INTO `rors` VALUES
(39380, 'https://ror.org/03bq96v15', 'no_lang_code', 1, 'https://ror.org/03bq96v15 Sphaera Pharma (India)'),
(39381, 'https://ror.org/04nahdt84', 'en', 1, 'https://ror.org/04nahdt84 SVS Medical College'),
(39382, 'https://ror.org/029tz6g71', 'en', 1, 'https://ror.org/029tz6g71 India Foundation for the Arts'),
(39383, 'https://ror.org/00ztehj94', 'en', 1, 'https://ror.org/00ztehj94 Swami Ramanand Teerth Rural Medical College'),
(39384, 'https://ror.org/053e12g40', 'en', 1, 'https://ror.org/053e12g40 Centre for Science and Environment'),
(39385, 'https://ror.org/01crghz68', 'en', 1, 'https://ror.org/01crghz68 Foundation for Research in Community Health'),
(39386, 'https://ror.org/03f614z16', 'en', 1, 'https://ror.org/03f614z16 Humsafar Trust'),
(39387, 'https://ror.org/00r22sc21', 'en', 1, 'https://ror.org/00r22sc21 Vastu Shilpa Foundation'),
(39388, 'https://ror.org/01yp7wa04', 'no_lang_code', 1, 'https://ror.org/01yp7wa04 NovaLead Pharma (India)'),
(39389, 'https://ror.org/02apntt89', 'en', 1, 'https://ror.org/02apntt89 Nigerian Geological Survey Agency'),
(39390, 'https://ror.org/05rb06393', 'no_lang_code', 1, 'https://ror.org/05rb06393 Volkswagen Group (India)'),
(39391, 'https://ror.org/02es31f96', 'en', 1, 'https://ror.org/02es31f96 Tamil Nadu State AIDS Control Society'),
(39392, 'https://ror.org/00nezvm77', 'en', 1, 'https://ror.org/00nezvm77 Voluntary Health Association Of India'),
(39393, 'https://ror.org/0588z1342', 'no_lang_code', 1, 'https://ror.org/0588z1342 Thermax (India)'),
(39394, 'https://ror.org/05f7skt07', 'en', 1, 'https://ror.org/05f7skt07 Sri Guru Harkrishan Sahib Charitable Eye Hospital Trust'),
(39395, 'https://ror.org/01cphbs04', 'en', 1, 'https://ror.org/01cphbs04 Velammal Educational Trust'),
(39396, 'https://ror.org/01rfg1r50', 'en', 1, 'https://ror.org/01rfg1r50 Department of Higher Education'),
(39397, 'https://ror.org/03y350s17', 'no_lang_code', 1, 'https://ror.org/03y350s17 West Bengal Electronics Industry Development Corporation Limited (India) পশ্চিমবঙ্গ ইলেকট্রনিক্স শিল্প উন্নয়ন কর্পোরেশন লিমিটেড'),
(39398, 'https://ror.org/005dydw47', 'no_lang_code', 1, 'https://ror.org/005dydw47 West Bengal Green Energy Development Corporation (India)'),
(39399, 'https://ror.org/05e9s0v14', 'no_lang_code', 1, 'https://ror.org/05e9s0v14 Tata Power Solar (India)'),
(39400, 'https://ror.org/02fxe3b78', 'en', 1, 'https://ror.org/02fxe3b78 Sri Manakula Vinayagar Educational Trust'),
(39401, 'https://ror.org/05syv4032', 'no_lang_code', 1, 'https://ror.org/05syv4032 Whirlpool (India)'),
(39402, 'https://ror.org/010hxhm64', 'en', 1, 'https://ror.org/010hxhm64 Town Planning and Valuation Department'),
(39403, 'https://ror.org/03b6pnq25', 'no_lang_code', 1, 'https://ror.org/03b6pnq25 Tata Chemicals (India)'),
(39404, 'https://ror.org/03dyet424', 'no_lang_code', 1, 'https://ror.org/03dyet424 Tata Elxsi (India)'),
(39405, 'https://ror.org/04kq05542', 'no_lang_code', 1, 'https://ror.org/04kq05542 Veolia (India)'),
(39406, 'https://ror.org/023ha6621', 'no_lang_code', 1, 'https://ror.org/023ha6621 Unilever (India)'),
(39407, 'https://ror.org/0374spr83', 'en', 1, 'https://ror.org/0374spr83 Unit for Research and Development of Information Products'),
(39408, 'https://ror.org/01x1wr265', 'no_lang_code', 1, 'https://ror.org/01x1wr265 Tata Technologies (India)'),
(39409, 'https://ror.org/02tjcpt69', 'en', 1, 'https://ror.org/02tjcpt69 University of Agricultural Sciences Raichur ಕೃಷಿ ವಿಶ್ವವಿದ್ಯಾಲಯ, ರಾಯಚೂರು'),
(39410, 'https://ror.org/018m84039', 'no_lang_code', 1, 'https://ror.org/018m84039 Tata Teleservices (India)'),
(39411, 'https://ror.org/01d6n7b64', 'hi', 1, 'https://ror.org/01d6n7b64 Vidya Prathishthan'),
(39412, 'https://ror.org/05gvzz769', 'en', 1, 'https://ror.org/05gvzz769 UPASI Tea Research Foundation'),
(39413, 'https://ror.org/043v8bs69', 'en', 1, 'https://ror.org/043v8bs69 Urban Management Centre'),
(39414, 'https://ror.org/012ds9j70', 'no_lang_code', 1, 'https://ror.org/012ds9j70 ZMQ Software Systems (India)'),
(39415, 'https://ror.org/05ctqth87', 'no_lang_code', 1, 'https://ror.org/05ctqth87 Usha Martin (India)'),
(39416, 'https://ror.org/01v7v5m29', 'en', 1, 'https://ror.org/01v7v5m29 Uttarakhand Jal Sansthan'),
(39417, 'https://ror.org/01jbcx787', 'en', 1, 'https://ror.org/01jbcx787 Vijaya Medical and Educational Trust'),
(39418, 'https://ror.org/03ktyvw44', 'no_lang_code', 1, 'https://ror.org/03ktyvw44 Cadila Healthcare (India)'),
(39419, 'https://ror.org/035sbxw24', 'no_lang_code', 1, 'https://ror.org/035sbxw24 21st Century Technologies (United States)'),
(39420, 'https://ror.org/02pvvfc75', 'en', 1, 'https://ror.org/02pvvfc75 Vaatsalya Healthcare'),
(39421, 'https://ror.org/02p87ey03', 'no_lang_code', 1, 'https://ror.org/02p87ey03 Tech Mahindra (India)'),
(39422, 'https://ror.org/00enahz60', 'no_lang_code', 1, 'https://ror.org/00enahz60 Bharat Forge (India)'),
(39423, 'https://ror.org/05meah667', 'no_lang_code', 1, 'https://ror.org/05meah667 British Biocell International (United Kingdom)'),
(39424, 'https://ror.org/004y0w704', 'no_lang_code', 1, 'https://ror.org/004y0w704 AgriSense (United Kingdom)'),
(39425, 'https://ror.org/01yf3qn42', 'no_lang_code', 1, 'https://ror.org/01yf3qn42 Air Quality Consultants (United Kingdom)'),
(39426, 'https://ror.org/04t0epe82', 'no_lang_code', 1, 'https://ror.org/04t0epe82 3DT Holdings (United States)'),
(39427, 'https://ror.org/006bwjz47', 'no_lang_code', 1, 'https://ror.org/006bwjz47 490 BioTech (United States)'),
(39428, 'https://ror.org/004fbmp75', 'no_lang_code', 1, 'https://ror.org/004fbmp75 Benbria (Canada)'),
(39429, 'https://ror.org/05fmgwf75', 'no_lang_code', 1, 'https://ror.org/05fmgwf75 Associated British Ports (United Kingdom)'),
(39430, 'https://ror.org/04e1s8k93', 'no_lang_code', 1, 'https://ror.org/04e1s8k93 Allium & Brassica Centre (United Kingdom)'),
(39431, 'https://ror.org/04wz1mc47', 'en', 1, 'https://ror.org/04wz1mc47 Calliope Film Resources'),
(39432, 'https://ror.org/04excha61', 'no_lang_code', 1, 'https://ror.org/04excha61 Paion (United Kingdom)'),
(39433, 'https://ror.org/04j3mbq57', 'no_lang_code', 1, 'https://ror.org/04j3mbq57 A-Team (United States)'),
(39434, 'https://ror.org/00tp13k20', 'en', 1, 'https://ror.org/00tp13k20 Political Development Forum'),
(39435, 'https://ror.org/03pxsxg30', 'no_lang_code', 1, 'https://ror.org/03pxsxg30 Advanced Acoustic Concepts (United States)'),
(39436, 'https://ror.org/03tf2hn88', 'no_lang_code', 1, 'https://ror.org/03tf2hn88 Potentia (Namibia)'),
(39437, 'https://ror.org/05076r819', 'no_lang_code', 1, 'https://ror.org/05076r819 Biospyder (United States)'),
(39438, 'https://ror.org/006ewqz20', 'no_lang_code', 1, 'https://ror.org/006ewqz20 PNO Consultants (Italy)'),
(39439, 'https://ror.org/01xww0f05', 'no_lang_code', 1, 'https://ror.org/01xww0f05 Base4 Innovation (United Kingdom)'),
(39440, 'https://ror.org/00exxep57', 'no_lang_code', 1, 'https://ror.org/00exxep57 Claritas Genomics (United States)'),
(39441, 'https://ror.org/05tkyr506', 'no_lang_code', 1, 'https://ror.org/05tkyr506 Active Ethernet Passive Optical Networks Over λ MultipleXing (Canada)'),
(39442, 'https://ror.org/04ayxkk27', 'no_lang_code', 1, 'https://ror.org/04ayxkk27 Blackstar Amplification (United Kingdom)'),
(39443, 'https://ror.org/02fg4tx92', 'no_lang_code', 1, 'https://ror.org/02fg4tx92 Cleanergy (Sweden)'),
(39444, 'https://ror.org/05v091r53', 'no_lang_code', 1, 'https://ror.org/05v091r53 Climeon (Sweden)'),
(39445, 'https://ror.org/021wtx428', 'de', 1, 'https://ror.org/021wtx428 Staats- und Stadtbibliothek Augsburg'),
(39446, 'https://ror.org/043dpbz34', 'fr', 1, 'https://ror.org/043dpbz34 Programme National Multisectoriel de Lutte contre le sida'),
(39447, 'https://ror.org/047yavc84', 'en', 1, 'https://ror.org/047yavc84 Commission on Professionals in Science and Technology'),
(39448, 'https://ror.org/03k6e9943', 'no_lang_code', 1, 'https://ror.org/03k6e9943 Reliance (United Kingdom)'),
(39449, 'https://ror.org/024g9p727', 'no_lang_code', 1, 'https://ror.org/024g9p727 For farmers (United Kingdom)'),
(39450, 'https://ror.org/02p837k95', 'no_lang_code', 1, 'https://ror.org/02p837k95 Ebro Foods (Canada)'),
(39451, 'https://ror.org/03qvv9093', 'pt', 1, 'https://ror.org/03qvv9093 Colsan - Associação Beneficente de Coleta de Sangue'),
(39452, 'https://ror.org/03spzdh62', 'no_lang_code', 1, 'https://ror.org/03spzdh62 Computational Sciences (United States)'),
(39453, 'https://ror.org/018m8fh96', 'no_lang_code', 1, 'https://ror.org/018m8fh96 Britest (United Kingdom)'),
(39454, 'https://ror.org/03dafc138', 'no_lang_code', 1, 'https://ror.org/03dafc138 Defense Systems (United States)'),
(39455, 'https://ror.org/011vyws32', 'no_lang_code', 1, 'https://ror.org/011vyws32 Delta Information Systems (United States)'),
(39456, 'https://ror.org/019qf8a90', 'no_lang_code', 1, 'https://ror.org/019qf8a90 Deseret Laboratories (United States)'),
(39457, 'https://ror.org/00sr42d65', 'no_lang_code', 1, 'https://ror.org/00sr42d65 Conseillers en gestion et informatique Consultant To Government and Industry (United Kingdom)'),
(39458, 'https://ror.org/056j68a95', 'en', 1, 'https://ror.org/056j68a95 Consumers Union'),
(39459, 'https://ror.org/007phjt92', 'en', 1, 'https://ror.org/007phjt92 Deutsche Keramische Gesellschaft German Ceramic Society'),
(39460, 'https://ror.org/00gs59456', 'no_lang_code', 1, 'https://ror.org/00gs59456 CorticoMetrics (United States)'),
(39461, 'https://ror.org/05s96xm34', 'en', 1, 'https://ror.org/05s96xm34 Council on Foreign Relations'),
(39462, 'https://ror.org/02yd5qy74', 'no_lang_code', 1, 'https://ror.org/02yd5qy74 Encapson (Netherlands)'),
(39463, 'https://ror.org/058g3x876', 'no_lang_code', 1, 'https://ror.org/058g3x876 Grace Bio-Labs (United States)'),
(39464, 'https://ror.org/03fq8ts34', 'en', 1, 'https://ror.org/03fq8ts34 Countryside and Community Research Institute'),
(39465, 'https://ror.org/03ha3x766', 'no_lang_code', 1, 'https://ror.org/03ha3x766 Beijing Planetarium 北京天文馆/北京天文館'),
(39466, 'https://ror.org/051eg6511', 'no_lang_code', 1, 'https://ror.org/051eg6511 Energy International (United States)'),
(39467, 'https://ror.org/00cmss526', 'no_lang_code', 1, 'https://ror.org/00cmss526 Gmarketing (Pakistan)'),
(39468, 'https://ror.org/02b3gqy34', 'no_lang_code', 1, 'https://ror.org/02b3gqy34 Craft Engineering Associates (United States)'),
(39469, 'https://ror.org/0007gah74', 'en', 1, 'https://ror.org/0007gah74 Drew Associates'),
(39470, 'https://ror.org/04atrwr33', 'en', 1, 'https://ror.org/04atrwr33 Duchy College'),
(39471, 'https://ror.org/017f8n968', 'no_lang_code', 1, 'https://ror.org/017f8n968 Gencia (United States)'),
(39472, 'https://ror.org/05xntm622', 'no_lang_code', 1, 'https://ror.org/05xntm622 Exeger Sweden (Sweden)'),
(39473, 'https://ror.org/02760dr55', 'no_lang_code', 1, 'https://ror.org/02760dr55 Economics for the Environment Consultancy (United Kingdom)'),
(39474, 'https://ror.org/043sd6y04', 'no_lang_code', 1, 'https://ror.org/043sd6y04 Helios Global (United States)'),
(39475, 'https://ror.org/02q312y93', 'no_lang_code', 1, 'https://ror.org/02q312y93 Inova Design Solutions (United Kingdom)'),
(39476, 'https://ror.org/03j09xa79', 'es', 1, 'https://ror.org/03j09xa79 Genetaq'),
(39477, 'https://ror.org/02xmv6y90', 'no_lang_code', 1, 'https://ror.org/02xmv6y90 Genetech (Sri Lanka)'),
(39478, 'https://ror.org/00fy7kr67', 'en', 1, 'https://ror.org/00fy7kr67 Institut für Integrative und Experimentelle Genomik Institute for Integrative and Experimental Genomics'),
(39479, 'https://ror.org/02tc88d30', 'no_lang_code', 1, 'https://ror.org/02tc88d30 InfoBeyond Technology (United States)'),
(39480, 'https://ror.org/02n64v793', 'fr', 1, 'https://ror.org/02n64v793 Infor Jeunes Bruxelles'),
(39481, 'https://ror.org/01ysrdj89', 'no_lang_code', 1, 'https://ror.org/01ysrdj89 Medlog Systems (United States)'),
(39482, 'https://ror.org/04yjjyw09', 'fr', 1, 'https://ror.org/04yjjyw09 Institut pour Un Developpement Durable'),
(39483, 'https://ror.org/04hmgwg30', 'no_lang_code', 1, 'https://ror.org/04hmgwg30 Karolinska Institutet Innovations (Sweden)'),
(39484, 'https://ror.org/051ka9v26', 'no_lang_code', 1, 'https://ror.org/051ka9v26 Hybu Cig Cymru (United Kingdom)'),
(39485, 'https://ror.org/00rw4xa44', 'no_lang_code', 1, 'https://ror.org/00rw4xa44 Kemetco Research (Canada)'),
(39486, 'https://ror.org/0111cp837', 'en', 1, 'https://ror.org/0111cp837 Instytut Badań Systemowych Systems Research Institute'),
(39487, 'https://ror.org/044a15h91', 'no_lang_code', 1, 'https://ror.org/044a15h91 Knexus Research (United States)'),
(39488, 'https://ror.org/014m1ef46', 'no_lang_code', 1, 'https://ror.org/014m1ef46 Mitsubishi Corporation (Japan) 三菱商事株式会社'),
(39489, 'https://ror.org/00jm2j742', 'en', 1, 'https://ror.org/00jm2j742 International Society for Gastrointestinal Hereditary Tumours'),
(39490, 'https://ror.org/03q3jnq04', 'no_lang_code', 1, 'https://ror.org/03q3jnq04 China Nonferrous Metal Mining (China) 中国有色矿业集团有限公司'),
(39491, 'https://ror.org/031ypg304', 'en', 1, 'https://ror.org/031ypg304 International Space University'),
(39492, 'https://ror.org/05sw1c749', 'no_lang_code', 1, 'https://ror.org/05sw1c749 Labthermics Technologies (United States)'),
(39493, 'https://ror.org/005qgvp74', 'no_lang_code', 1, 'https://ror.org/005qgvp74 Alere (United Kingdom)'),
(39494, 'https://ror.org/023xwyz30', 'no_lang_code', 1, 'https://ror.org/023xwyz30 Land Use Consultants (United Kingdom)'),
(39495, 'https://ror.org/014ezhs73', 'no_lang_code', 1, 'https://ror.org/014ezhs73 Pacific Shipyards (United States)'),
(39496, 'https://ror.org/0451asy50', 'no_lang_code', 1, 'https://ror.org/0451asy50 L&E Research (United States)'),
(39497, 'https://ror.org/00e9s5n07', 'no_lang_code', 1, 'https://ror.org/00e9s5n07 Starmet Corporation (United States)'),
(39498, 'https://ror.org/00e43q278', 'no_lang_code', 1, 'https://ror.org/00e43q278 Just Ecology (United Kingdom)'),
(39499, 'https://ror.org/00xwxpw14', 'no_lang_code', 1, 'https://ror.org/00xwxpw14 FRAUDetect (United States)'),
(39500, 'https://ror.org/0094z6w96', 'no_lang_code', 1, 'https://ror.org/0094z6w96 MTG Research (United Kingdom)'),
(39501, 'https://ror.org/02qypfy05', 'no_lang_code', 1, 'https://ror.org/02qypfy05 Smiths Power (United States)'),
(39502, 'https://ror.org/04whcrx81', 'no_lang_code', 1, 'https://ror.org/04whcrx81 Linguagen (United States)'),
(39503, 'https://ror.org/00b9z5510', 'en', 1, 'https://ror.org/00b9z5510 Old Salem Museums and Gardens'),
(39504, 'https://ror.org/01w8np338', 'no_lang_code', 1, 'https://ror.org/01w8np338 Munin Corporation (United States)'),
(39505, 'https://ror.org/01n1cbn15', 'en', 1, 'https://ror.org/01n1cbn15 Institute of Porous Flow and Fluid Mechanics 渗流流体力学研究所'),
(39506, 'https://ror.org/0137z5x77', 'no_lang_code', 1, 'https://ror.org/0137z5x77 Broadcom (Canada)'),
(39507, 'https://ror.org/018mjrf43', 'en', 1, 'https://ror.org/018mjrf43 Open Rights Group'),
(39508, 'https://ror.org/004a7w818', 'en', 1, 'https://ror.org/004a7w818 M. Tuttle & Associates'),
(39509, 'https://ror.org/05f0php28', 'en', 1, 'https://ror.org/05f0php28 Sichuan Academy of Agricultural Sciences 四川省农业科学院作物研究所'),
(39510, 'https://ror.org/00b986q94', 'no_lang_code', 1, 'https://ror.org/00b986q94 Optigo Networks (Canada)'),
(39511, 'https://ror.org/03rafms67', 'en', 1, 'https://ror.org/03rafms67 Plant Gene Expression Center'),
(39512, 'https://ror.org/00k66f384', 'no_lang_code', 1, 'https://ror.org/00k66f384 Nickerson Ltd'),
(39513, 'https://ror.org/03dpkyr84', 'no_lang_code', 1, 'https://ror.org/03dpkyr84 Silicon Chemical (United States)'),
(39514, 'https://ror.org/02y7dq096', 'no_lang_code', 1, 'https://ror.org/02y7dq096 Mclean Media (United States)'),
(39515, 'https://ror.org/01sx88q57', 'en', 1, 'https://ror.org/01sx88q57 RenewableUK'),
(39516, 'https://ror.org/04cpebv17', 'no_lang_code', 1, 'https://ror.org/04cpebv17 Northernchem (Canada)'),
(39517, 'https://ror.org/03bhckb42', 'no_lang_code', 1, 'https://ror.org/03bhckb42 Primity Bio (United States)'),
(39518, 'https://ror.org/00gqx0331', 'en', 1, 'https://ror.org/00gqx0331 Research Complex at Harwell'),
(39519, 'https://ror.org/03bbh2s13', 'en', 1, 'https://ror.org/03bbh2s13 Northumberland County Council'),
(39520, 'https://ror.org/01ahys275', 'en', 1, 'https://ror.org/01ahys275 Parker Hughes Cancer Center'),
(39521, 'https://ror.org/02jz4rx70', 'en', 1, 'https://ror.org/02jz4rx70 Aarupadai Veedu Medical College & Hospital'),
(39522, 'https://ror.org/0521x3786', 'no_lang_code', 1, 'https://ror.org/0521x3786 Pathway Genomics (United States)'),
(39523, 'https://ror.org/03zb78h42', 'pt', 1, 'https://ror.org/03zb78h42 Mendelics'),
(39524, 'https://ror.org/007bss615', 'en', 1, 'https://ror.org/007bss615 Holland Chemistry'),
(39525, 'https://ror.org/004vbe783', 'no_lang_code', 1, 'https://ror.org/004vbe783 Satellite Applications Catapult (United Kingdom)'),
(39526, 'https://ror.org/02dyq9q38', 'no_lang_code', 1, 'https://ror.org/02dyq9q38 TERI'),
(39527, 'https://ror.org/0253rdk33', 'no_lang_code', 1, 'https://ror.org/0253rdk33 SNPedia'),
(39528, 'https://ror.org/01t8tyk97', 'sv', 1, 'https://ror.org/01t8tyk97 TransportForsK'),
(39529, 'https://ror.org/00p5mne09', 'en', 1, 'https://ror.org/00p5mne09 Institute of Seismological Research'),
(39530, 'https://ror.org/03r0qcr69', 'no_lang_code', 1, 'https://ror.org/03r0qcr69 Syngaschem (Netherlands)'),
(39531, 'https://ror.org/04p3y0q03', 'en', 1, 'https://ror.org/04p3y0q03 Bank of England'),
(39532, 'https://ror.org/00wm8m174', 'no_lang_code', 1, 'https://ror.org/00wm8m174 Synthomer (United Kingdom)'),
(39533, 'https://ror.org/055camg08', 'en', 1, 'https://ror.org/055camg08 Scintillon Institute'),
(39534, 'https://ror.org/04cqp5h60', 'en', 1, 'https://ror.org/04cqp5h60 The Independent Games Developers Association'),
(39535, 'https://ror.org/045zf1n87', 'no_lang_code', 1, 'https://ror.org/045zf1n87 Albany International (United States)'),
(39536, 'https://ror.org/05tv9ra42', 'no_lang_code', 1, 'https://ror.org/05tv9ra42 Sekab (Sweden) Svensk Etanolkemi'),
(39537, 'https://ror.org/04hwmbc03', 'sv', 1, 'https://ror.org/04hwmbc03 Växjö Kommun Växjö Municipality'),
(39538, 'https://ror.org/04kcf7d03', 'no_lang_code', 1, 'https://ror.org/04kcf7d03 SENSEYE LIMITED'),
(39539, 'https://ror.org/04k5pfq21', 'no_lang_code', 1, 'https://ror.org/04k5pfq21 Video Discovery (United States)'),
(39540, 'https://ror.org/054zz9x25', 'en', 1, 'https://ror.org/054zz9x25 Scientific Council for Government Policy Wetenschappelijke Raad voor het Regeringsbeleid'),
(39541, 'https://ror.org/00w7d0n34', 'no_lang_code', 1, 'https://ror.org/00w7d0n34 WITF (United States)'),
(39542, 'https://ror.org/05e3g0s87', 'de', 1, 'https://ror.org/05e3g0s87 Bibliotheca Augustiniana'),
(39543, 'https://ror.org/01prf6p66', 'no_lang_code', 1, 'https://ror.org/01prf6p66 Zaber Technologies (Canada)'),
(39544, 'https://ror.org/00brgvc50', 'en', 1, 'https://ror.org/00brgvc50 Standing Rock Indian Reservation'),
(39545, 'https://ror.org/005vq2n07', 'en', 1, 'https://ror.org/005vq2n07 Shyam Shah Medical College'),
(39546, 'https://ror.org/00ntq6s45', 'no_lang_code', 1, 'https://ror.org/00ntq6s45 Shell (India)'),
(39547, 'https://ror.org/03mw5cy89', 'en', 1, 'https://ror.org/03mw5cy89 Sree Gokulam Medical College and Research Foundation'),
(39548, 'https://ror.org/02e1eph40', 'en', 1, 'https://ror.org/02e1eph40 Institute of World History Институт всеобщей истории'),
(39549, 'https://ror.org/004dzkd51', 'en', 1, 'https://ror.org/004dzkd51 Frumkin Institute of Physical Chemistry and Electrochemistry Федеральное государственное бюджетное учреждение науки Институт физической химии и электрохимии им. А. Н. Фрумкина Российской академии наук'),
(39550, 'https://ror.org/055fe2s59', 'en', 1, 'https://ror.org/055fe2s59 Institute of High Current Electronics Институт сильноточной электроники'),
(39551, 'https://ror.org/01ds31v72', 'en', 1, 'https://ror.org/01ds31v72 V.S. Sobolev Institute of Geology and Mineralogy Федеральное государственное бюджетное учреждение науки Институт геологии и минералогии им. В.С.Соболева Сибирского отделения Российской академии наук (ИГМ СО РАН)'),
(39552, 'https://ror.org/00wfve797', 'en', 1, 'https://ror.org/00wfve797 Institute of Sociology Институт социологии РАН'),
(39553, 'https://ror.org/03hg8g849', 'en', 1, 'https://ror.org/03hg8g849 Timiryazev Institute of Plant Physiology Институт физиологии растений К.А. Тимирязева'),
(39554, 'https://ror.org/01rn72k05', 'en', 1, 'https://ror.org/01rn72k05 G.A. Razuvaev Institute of Organometallic Chemistry Институт металлоорганической химии имени Г. А. Разуваева'),
(39555, 'https://ror.org/02cd1dc23', 'en', 1, 'https://ror.org/02cd1dc23 Rheinisches Institut für Umweltforschung Rhenish Institute for Environmental Research'),
(39556, 'https://ror.org/00y0jw647', 'pt', 1, 'https://ror.org/00y0jw647 Hospital da Senhora da Oliveira Guimarães'),
(39557, 'https://ror.org/02dnes125', 'de', 1, 'https://ror.org/02dnes125 Knappschaftskrankenhaus Recklinghausen'),
(39558, 'https://ror.org/01srjfc50', 'de', 1, 'https://ror.org/01srjfc50 Landesarchiv'),
(39559, 'https://ror.org/029x1vn55', 'en', 1, 'https://ror.org/029x1vn55 CU Shah Medical College and Hospital'),
(39560, 'https://ror.org/00520ey40', 'en', 1, 'https://ror.org/00520ey40 Institute of Numerical Mathematics Федеральное государственное бюджетное учреждение науки Институт вычислительной математики Российской академии наук'),
(39561, 'https://ror.org/054xffa50', 'en', 1, 'https://ror.org/054xffa50 Institute of Geology of Ore Deposits Petrography Mineralogy and Geochemistry Институт геологии рудных месторождений петрографии минералогии и геохимии Российской академии наук'),
(39562, 'https://ror.org/02vtmt724', 'en', 1, 'https://ror.org/02vtmt724 Institute of Synthetic Polymeric Materials Федеральное государственное бюджетное учреждение науки Институт синтетических полимерных материалов им.Н.С.Ениколопова Российской академии наук'),
(39563, 'https://ror.org/05kvjc571', 'en', 1, 'https://ror.org/05kvjc571 Institute of Psychology Институт психологии'),
(39564, 'https://ror.org/029bjdf19', 'en', 1, 'https://ror.org/029bjdf19 Institute of Physics Федеральное государственное бюджетное учреждение науки Институт физики им. Л. В. Киренского'),
(39565, 'https://ror.org/02fsfnf94', 'en', 1, 'https://ror.org/02fsfnf94 Institute of Molecular and Cell Biology Институт молекулярной и клеточной биологии'),
(39566, 'https://ror.org/02n937p61', 'en', 1, 'https://ror.org/02n937p61 Central Economics and Mathematics Institute Центральный экономико-математический институт'),
(39567, 'https://ror.org/03ymmms77', 'en', 1, 'https://ror.org/03ymmms77 Institute of Continuous Media Mechanics Институт механики сплошных сред'),
(39568, 'https://ror.org/05nb4x016', 'en', 1, 'https://ror.org/05nb4x016 Institute of Linguistic Studies Институт лингвистических исследований'),
(39569, 'https://ror.org/04w1wsw24', 'en', 1, 'https://ror.org/04w1wsw24 Geophysical Center Федеральное государственное бюджетное учреждение науки Геофизический центр Российской академии наук'),
(39570, 'https://ror.org/00y1dzm96', 'en', 1, 'https://ror.org/00y1dzm96 Institute of Petroleum Geology and Geophysics Институт нефтегазовой геологии и геофизики имени А. А. Трофимука СО РАН'),
(39571, 'https://ror.org/029k7k053', 'en', 1, 'https://ror.org/029k7k053 Research Institute of Medical Genetics of Russian Academy of Medical Sciences Научно-исследовательский институт медицинской генетики'),
(39572, 'https://ror.org/0344x6030', 'en', 1, 'https://ror.org/0344x6030 Institute of Experimental Medicine Федеральное государственное бюджетное научное учреждение Институт экспериментальной медицины'),
(39573, 'https://ror.org/026c02f25', 'en', 1, 'https://ror.org/026c02f25 Kazan E. K. Zavoisky Physical-Technical Institute Казанский физико-технический институт им. Е. К. Завойского РАН'),
(39574, 'https://ror.org/05s61gx60', 'en', 1, 'https://ror.org/05s61gx60 Photochemistry Center Центр фотохимии'),
(39575, 'https://ror.org/023r5tg35', 'en', 1, 'https://ror.org/023r5tg35 Federal Scientific Center of the East Asia Terrestrial Biodiversity FEB RAS Федеральное государственное бюджетное учреждение науки Биолого-почвенный институт Дальневосточного отделения Российской академии наук'),
(39576, 'https://ror.org/03k42gv86', 'en', 1, 'https://ror.org/03k42gv86 Institute of Machines Science Институт машиноведения имени А. А. Благонравова РАН'),
(39577, 'https://ror.org/012a18r91', 'en', 1, 'https://ror.org/012a18r91 Sukachev Institute of Forest Института леса им. В. Н. Сукачева Сибирского отделения Российской академии наук'),
(39578, 'https://ror.org/05gmwtd57', 'en', 1, 'https://ror.org/05gmwtd57 Institute of History and Archaeology Институт истории и археологии УрО РАН'),
(39579, 'https://ror.org/046msd355', 'en', 1, 'https://ror.org/046msd355 Institute of Complex Development of Bowels Институт проблем комплексного освоения недр РАН'),
(39580, 'https://ror.org/01nmpe263', 'en', 1, 'https://ror.org/01nmpe263 Institute of Spectroscopy Институт спектроскопии Российской академии наук'),
(39581, 'https://ror.org/00hfszj21', 'en', 1, 'https://ror.org/00hfszj21 Institute of Catalysis and Petrochemistry Институт катализа и нефтехимии'),
(39582, 'https://ror.org/03vv7cm03', 'en', 1, 'https://ror.org/03vv7cm03 Institute of Mathematics with Computer Center Институт математики с вычислительным центром УНЦ РАН'),
(39583, 'https://ror.org/053nrfb18', 'en', 1, 'https://ror.org/053nrfb18 Southern Scientific Center Южный научный центр'),
(39584, 'https://ror.org/02zp2tc18', 'en', 1, 'https://ror.org/02zp2tc18 Institute of Solution Chemistry Институт химии растворов им. Г.А. Крестова Российской академии наук'),
(39585, 'https://ror.org/04wteqw51', 'en', 1, 'https://ror.org/04wteqw51 Institute for System Dynamics and Control Theory Институт динамики систем и теории управления имени В.М. Матросова'),
(39586, 'https://ror.org/02h8dsx08', 'en', 1, 'https://ror.org/02h8dsx08 Dmitry Rogachev National Research Center of Pediatric Hematology, Oncology and Immunology ДЕТСКОЙ ГЕМАТОЛОГИИ, ОНКОЛОГИИ И ИММУНОЛОГИИ им. Дмитрия Рогачева'),
(39587, 'https://ror.org/021kjh741', 'en', 1, 'https://ror.org/021kjh741 Institute of Biochemistry and Physiology of Plants and Microorganisms Федеральное государственное бюджетное учреждение науки Институт биохимии и физиологии растений и микроорганизмов Российской академии наук'),
(39588, 'https://ror.org/04rawk951', 'en', 1, 'https://ror.org/04rawk951 Chumakov Institute of Poliomyelitis and Viral Encephalitides Институт полиомиелита и вирусных энцефалитов'),
(39589, 'https://ror.org/01whksa54', 'en', 1, 'https://ror.org/01whksa54 Institute of Astronomy Институт астрономии РАН'),
(39590, 'https://ror.org/015vgt264', 'en', 1, 'https://ror.org/015vgt264 Institute of Chemistry of High-Purity Substances them. G.G.Devyatyh Институт химии высокочистых веществ им'),
(39591, 'https://ror.org/04f3vpm64', 'en', 1, 'https://ror.org/04f3vpm64 Institute of Anthropology and Ethnography Федеральное государственное бюджетное учреждение науки Ордена Дружбы народов Институт этнологии и антропологии им. Н.Н. Миклухо-Маклая Российской академии наук'),
(39592, 'https://ror.org/051f11n17', 'en', 1, 'https://ror.org/051f11n17 Institute of Molecular Biology and Biophysics Научно-исследовательский институт молекулярной биологии и биофизики'),
(39593, 'https://ror.org/05xw3yj26', 'en', 1, 'https://ror.org/05xw3yj26 Institute of Physiologically Active Compounds Институт физиологически активных веществ'),
(39594, 'https://ror.org/00verxq29', 'en', 1, 'https://ror.org/00verxq29 A.E. Favorsky Irkutsk Institute of Chemistry Иркутский институт химии им. А.Е.Фаворского Сибирского отделения Российской академии наук'),
(39595, 'https://ror.org/045xd0268', 'en', 1, 'https://ror.org/045xd0268 Institute of the Earth’s Crust Институт земной коры СО РАН'),
(39596, 'https://ror.org/00hgmwb30', 'en', 1, 'https://ror.org/00hgmwb30 Institute of Macromolecular Compounds Федеральное государственное бюджетное учреждение науки Институт высокомолекулярных соединений Российской академии наук'),
(39597, 'https://ror.org/051jjt714', 'en', 1, 'https://ror.org/051jjt714 Institute of Electrophysics Институт электрофизики'),
(39598, 'https://ror.org/01k8ec266', 'en', 1, 'https://ror.org/01k8ec266 Ufa Institute of Chemistry Федеральное государственное бюджетное учреждение науки Уфимский Институт химии Российской академии наук'),
(39599, 'https://ror.org/01gk2wz65', 'en', 1, 'https://ror.org/01gk2wz65 Research Institute of Therapy and Preventive Medicine Федеральное государственное бюджетное научное учреждение Научно-исследовательский институт терапии и профилактической медицины'),
(39600, 'https://ror.org/005gbx671', 'en', 1, 'https://ror.org/005gbx671 Institute of Philosophy Институт философии'),
(39601, 'https://ror.org/00c6xwj41', 'en', 1, 'https://ror.org/00c6xwj41 Institute of Chemistry and Chemical Technology Институт химии и химической технологии'),
(39602, 'https://ror.org/01z686714', 'en', 1, 'https://ror.org/01z686714 Institute of Computational Mathematics and Mathematical Geophysics Федеральное государственное бюджетное учреждение науки Институт вычислительной математики и математической геофизики Сибирского отделения Российской академии наук'),
(39603, 'https://ror.org/006btmz82', 'en', 1, 'https://ror.org/006btmz82 Institute of Systematics and Ecology of Animals Федеральное государственное бюджетное учреждение науки Институт систематики и экологии животных Сибирского отделения Российской академии наук'),
(39604, 'https://ror.org/03jrs5v66', 'en', 1, 'https://ror.org/03jrs5v66 Institute of Geosphere Dynamics Федеральное государственное бюджетное учреждение науки Институт динамики геосфер Российской академии наук'),
(39605, 'https://ror.org/0121whw78', 'en', 1, 'https://ror.org/0121whw78 Sergeev Institute of Environmental Geoscience Федеральное государственное бюджетное учреждение науки Институт геоэкологии им.Е.М.Сергеева Российской академии наук'),
(39606, 'https://ror.org/029fxjk95', 'en', 1, 'https://ror.org/029fxjk95 Institute of History, Archaeology and Ethnography of the Peoples of Far-East Владивостоке Института истории, археологии и этнографии народов Дальнего Востока'),
(39607, 'https://ror.org/048amsp50', 'en', 1, 'https://ror.org/048amsp50 Institute for Computer Aided Design Федеральное государственное бюджетное учреждение науки Институт автоматизации проектирования Российской академии наук'),
(39608, 'https://ror.org/049pzbj60', 'en', 1, 'https://ror.org/049pzbj60 Institute of Mining Институт горного дела СО РАН'),
(39609, 'https://ror.org/03tx2pf91', 'en', 1, 'https://ror.org/03tx2pf91 Institute of Socio-Economic Development of Territories Институт социально-экономического развития территорий Российской академии наук'),
(39610, 'https://ror.org/04x7sgz22', 'en', 1, 'https://ror.org/04x7sgz22 Mining Institute Институт горного'),
(39611, 'https://ror.org/04rb38388', 'en', 1, 'https://ror.org/04rb38388 Institute of Metallurgy Институт металлургии УрО РАН'),
(39612, 'https://ror.org/00pwe8n55', 'en', 1, 'https://ror.org/00pwe8n55 Moscow School of Social and Economic Sciences Московская высшая школа социальных и экономических наук'),
(39613, 'https://ror.org/02x9fc857', 'en', 1, 'https://ror.org/02x9fc857 G Беляков Тихоокеанский институт биоорганической химии Pacific Institute of Bioorganic Chemistry. GB Elyakova Far Eastern Branch of the Russian Academy of Sciences'),
(39614, 'https://ror.org/01ska0903', 'en', 1, 'https://ror.org/01ska0903 Institute of the Human Brain Институт мозга человека РАН'),
(39615, 'https://ror.org/00h9jx107', 'en', 1, 'https://ror.org/00h9jx107 Institute of Applied Mathematics Институт прикладной математики ДВО РАН'),
(39616, 'https://ror.org/00ewbej21', 'en', 1, 'https://ror.org/00ewbej21 Gorbatov''s All-Russian Meat Research Institute Всероссийский научно-исследовательский институт мясной промышленности им. В.М. Горбатова'),
(39617, 'https://ror.org/056an8658', 'en', 1, 'https://ror.org/056an8658 Institute of Clinical and Experimental Lymphology Институт клинической и экспериментальной лимфологии'),
(39618, 'https://ror.org/00je00x55', 'en', 1, 'https://ror.org/00je00x55 Institute of Mongolian Buddhist and Tibetan Studies Институт монголоведения, буддологии и тибетологии СО РАН'),
(39619, 'https://ror.org/0261qw820', 'en', 1, 'https://ror.org/0261qw820 Institute of Steppe Институт степи УрО РАН'),
(39620, 'https://ror.org/03zeyg902', 'en', 1, 'https://ror.org/03zeyg902 Institute of Engineering Science Федеральное государственное бюджетное учреждение науки Институт машиноведения Уральского отделения Российской академии наук'),
(39621, 'https://ror.org/02r4ram30', 'en', 1, 'https://ror.org/02r4ram30 Institute of Economics Институт экономики УрО РАН'),
(39622, 'https://ror.org/05ea3hs66', 'en', 1, 'https://ror.org/05ea3hs66 National Research Institute for Veterinary Virology and Microbiology of Russia Всероссийский НИИ ветеринарной вирусологии и микробиологии'),
(39623, 'https://ror.org/019j3tz70', 'en', 1, 'https://ror.org/019j3tz70 Institute of Geophysics Институт геофизики'),
(39624, 'https://ror.org/05m3tag45', 'en', 1, 'https://ror.org/05m3tag45 Institute of Archaeology and Ethnography Института археологии и этнографии СО РАН'),
(39625, 'https://ror.org/04kh9f807', 'en', 1, 'https://ror.org/04kh9f807 Institute of Precambrian Geology and Geochronology Институт геологии и геохронологии докембрия'),
(39626, 'https://ror.org/02xv1yp72', 'en', 1, 'https://ror.org/02xv1yp72 All-Russian Scientific Research Institute of Radiology and AgroEcology All-русский научно-исследовательский институт радиологии и экологии'),
(39627, 'https://ror.org/04ef8pm25', 'en', 1, 'https://ror.org/04ef8pm25 Archive of the Russian Academy of Sciences Санкт-Петербургский филиал Архива РАН'),
(39628, 'https://ror.org/028a8bc58', 'en', 1, 'https://ror.org/028a8bc58 Institute of Russian Literature Институт русской литературы'),
(39629, 'https://ror.org/02jj4k517', 'en', 1, 'https://ror.org/02jj4k517 Physico-Technical Institute Физико-технический институт Уральского отделения Российской Академии наук'),
(39630, 'https://ror.org/0118vk431', 'no_lang_code', 1, 'https://ror.org/0118vk431 DYNAMICS Scientific and Production Center (Russia) Научно-производственный центр Динамика'),
(39631, 'https://ror.org/03f5ppt85', 'en', 1, 'https://ror.org/03f5ppt85 Pacific Institute of Geography, Far Eastern Branch of the Russian Academy of Sciences Тихоокеанский институт географи'),
(39632, 'https://ror.org/02e2pmn45', 'en', 1, 'https://ror.org/02e2pmn45 Institute of Slavic Studies Институт славяноведения'),
(39633, 'https://ror.org/044171329', 'en', 1, 'https://ror.org/044171329 Research Institute of Pharmacology and Regenerative Medicine named ED Goldberg Научно-исследовательский институт фармакологии и регенеративной медицины имени Е.Д. Гольдберга'),
(39634, 'https://ror.org/03vsjrm65', 'no_lang_code', 1, 'https://ror.org/03vsjrm65 Economic Expert Group (Russia) Экономическая экспертная группа'),
(39635, 'https://ror.org/02bc50c05', 'en', 1, 'https://ror.org/02bc50c05 Peter the Great''s Museum of Anthropology and Ethnography Петра Великого Музей антропологии и этнографии'),
(39636, 'https://ror.org/02ncvqp37', 'en', 1, 'https://ror.org/02ncvqp37 Center for Theoretical Problems of Physicochemical Pharmacology Центр теоретических проблем физико-химической фармакологии РАН'),
(39637, 'https://ror.org/018afr131', 'en', 1, 'https://ror.org/018afr131 Knipovich Polar Research Institute of Marine Fisheries and Oceanography Книпович Институт полярных исследований морского рыбного хозяйства и океанографии'),
(39638, 'https://ror.org/045v66z43', 'en', 1, 'https://ror.org/045v66z43 Institute of Physical Materials Science ИНСТИТУТ ФИЗИЧЕСКОГО МАТЕРИАЛОВЕДЕНИЯ'),
(39639, 'https://ror.org/016zjn618', 'en', 1, 'https://ror.org/016zjn618 Institute of Metal Superplasticity Problems Институт проблем сверхпластичности металлов РАН'),
(39640, 'https://ror.org/02j983531', 'no_lang_code', 1, 'https://ror.org/02j983531 Scientific Center of RAS in Chernogolovka Федеральное государственное бюджетное учреждение науки Научный центр Российской академии наук в Черноголовке'),
(39641, 'https://ror.org/02qpqb855', 'en', 1, 'https://ror.org/02qpqb855 Institute of History Институт истории СО РАН'),
(39642, 'https://ror.org/007mjr682', 'en', 1, 'https://ror.org/007mjr682 Fiber Optics Research Center Научный центр волоконной оптики Российской академии наук'),
(39643, 'https://ror.org/03vqakm84', 'en', 1, 'https://ror.org/03vqakm84 Institute of Mining Федеральное государственное бюджетное учреждение науки Горный институт Уральского отделения Российской академии наук'),
(39644, 'https://ror.org/02a5hqa58', 'en', 1, 'https://ror.org/02a5hqa58 Institute for African Studies науки Институт Африки Российской академии наук'),
(39645, 'https://ror.org/01831n272', 'en', 1, 'https://ror.org/01831n272 Institute of Experimental Mineralogy Институт экспериментальной минералогии'),
(39646, 'https://ror.org/0362x2g28', 'en', 1, 'https://ror.org/0362x2g28 Forestry Research Institute of Karelian Research Centre Институт леса КарНЦ'),
(39647, 'https://ror.org/047exzk05', 'en', 1, 'https://ror.org/047exzk05 Nuclear Safety Institute Институт ядерной безопасности'),
(39648, 'https://ror.org/01xq37c18', 'en', 1, 'https://ror.org/01xq37c18 V.I.Shumakov Federal Research Center of Transplantology and Artificial Organs Федеральный научный центр трансплантологии и искусственных органов имени академика В.И. Шумакова'),
(39649, 'https://ror.org/03ta4hv58', 'en', 1, 'https://ror.org/03ta4hv58 Russian Research Institute for Phytopathology Научно-исследовательский институт фитопатологии России'),
(39650, 'https://ror.org/035rr9c26', 'en', 1, 'https://ror.org/035rr9c26 Institute of Developmental Physiology Институт возрастной физиологии'),
(39651, 'https://ror.org/05anb3b46', 'no_lang_code', 1, 'https://ror.org/05anb3b46 3D Bioprinting Solutions (Russia) 3Д Биопринтинг Солюшенс'),
(39652, 'https://ror.org/03szme345', 'en', 1, 'https://ror.org/03szme345 Institute of Tectonics and Geophysics named after Y.A. Kosygin ДВО РАН Институт Тектоники и Геофизики им. Ю.А.Косыгина'),
(39653, 'https://ror.org/02726j593', 'en', 1, 'https://ror.org/02726j593 Melentiev Energy Systems Institute Мелентьев Институт систем энергетики'),
(39654, 'https://ror.org/04b581c27', 'en', 1, 'https://ror.org/04b581c27 Institute of Applied Astronomy Институт прикладной астрономии'),
(39655, 'https://ror.org/02wben378', 'no_lang_code', 1, 'https://ror.org/02wben378 Imtek (Russia) Имтек'),
(39656, 'https://ror.org/02zjtq409', 'en', 1, 'https://ror.org/02zjtq409 Russian Railways Российские железные дороги'),
(39657, 'https://ror.org/011nbgj79', 'en', 1, 'https://ror.org/011nbgj79 Institute of Coal of the Siberian Branch of the RAS Федеральное государственное бюджетное учреждение науки Институт угля Сибирского отделения Российской академии наук'),
(39658, 'https://ror.org/04850rm18', 'en', 1, 'https://ror.org/04850rm18 Baikal Institute of Nature Management природопользования Сибирского отделения Российской академии наук'),
(39659, 'https://ror.org/008cjy335', 'en', 1, 'https://ror.org/008cjy335 Scientific Research Institute of Experimental and Clinical Medicine ФЕДЕРАЛЬНОЕ ГОСУДАРСТВЕННОЕ БЮДЖЕТНОЕ НАУЧНОЕ УЧРЕЖДЕНИЕ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ЭКСПЕРИМЕНТАЛЬНОЙ И КЛИНИЧЕСКОЙ МЕДИЦИНЫ'),
(39660, 'https://ror.org/01avfbv46', 'no_lang_code', 1, 'https://ror.org/01avfbv46 Giredmet (Russia) Федеральное государственное научно-исследовательский и проектный институт редких металлургической промышленности'),
(39661, 'https://ror.org/04faa0n67', 'en', 1, 'https://ror.org/04faa0n67 Institute of Economics and Industrial Engineering Институт экономики и организации промышленного производства СО РАН'),
(39662, 'https://ror.org/0305m4448', 'en', 1, 'https://ror.org/0305m4448 Diamond and Precious Metal Geology Institute Институт геологии алмаза и благородных металлов СО РАН'),
(39663, 'https://ror.org/02cge6w61', 'en', 1, 'https://ror.org/02cge6w61 Central Siberian Botanical Garden Центральный сибирский ботанический сад'),
(39664, 'https://ror.org/059dmrc35', 'en', 1, 'https://ror.org/059dmrc35 Institute of Agrarian Problems Институт аграрных проблем'),
(39665, 'https://ror.org/02ygqdd77', 'en', 1, 'https://ror.org/02ygqdd77 Centre for Forest Ecology and Productivity Центр по проблемам экологии и продуктивности лесов РАН'),
(39666, 'https://ror.org/05pbm6778', 'en', 1, 'https://ror.org/05pbm6778 All-Russian Scientific Research Institute of Records Management and Archival Всероссийский научно-исследовательский институт документоведения и архивного дела'),
(39667, 'https://ror.org/05sbpak56', 'en', 1, 'https://ror.org/05sbpak56 Geophysical Survey Геофизическая служба Российской Академии Наук'),
(39668, 'https://ror.org/01j9c2p04', 'en', 1, 'https://ror.org/01j9c2p04 Research Institute of Emergency Care Научно-исследовательский институт скорой помощи им. Н.В. Склифосовского'),
(39669, 'https://ror.org/007ebp326', 'no_lang_code', 1, 'https://ror.org/007ebp326 Krasnoyarsk Scientific Center Красноярский научный центр'),
(39670, 'https://ror.org/030hk6x09', 'en', 1, 'https://ror.org/030hk6x09 Institute of Cosmophysical Research and Radio Wave Propagation Институт космофизических исследований и распространения радиоволн'),
(39671, 'https://ror.org/01zavqc64', 'en', 1, 'https://ror.org/01zavqc64 Institute of Petroleum Chemistry Институт Химии Нефти Со РАН'),
(39672, 'https://ror.org/00apb0c64', 'en', 1, 'https://ror.org/00apb0c64 All-Russian Research Institute Fisheries and Oceanography Научно-исследовательский институт рыбного хозяйства России и океанографии'),
(39673, 'https://ror.org/05tpxpz56', 'en', 1, 'https://ror.org/05tpxpz56 Institute of Mineralogy Институт минералогии'),
(39674, 'https://ror.org/0266a1t84', 'en', 1, 'https://ror.org/0266a1t84 Udmurt Institute of History, Language and Literature Удмуртский институт истории, языка и литературы УрО РАН'),
(39675, 'https://ror.org/02s6ww326', 'en', 1, 'https://ror.org/02s6ww326 Institute of Oriental Manuscripts Институт восточных рукописей Российской академии наук'),
(39676, 'https://ror.org/04rewz209', 'no_lang_code', 1, 'https://ror.org/04rewz209 Research Center for Surface and Vacuum (Russia) Научно-исследовательский центр по изучению свойств поверхности и вакуума'),
(39677, 'https://ror.org/00tnkbn59', 'en', 1, 'https://ror.org/00tnkbn59 Institute of Archaeology Федеральное государственное бюджетное учреждение науки Институт археологии Российской академии наук'),
(39678, 'https://ror.org/05ct5rw58', 'en', 1, 'https://ror.org/05ct5rw58 Saint-Petersburg Institute of History Санкт-Петербургский институт истории'),
(39679, 'https://ror.org/04a7dp661', 'no_lang_code', 1, 'https://ror.org/04a7dp661 SertiNK федеральное государственное автономное учреждение Научно-учебный центр Сварка и контроль при МГТУ им. Н.Э. Баумана'),
(39680, 'https://ror.org/040er0w10', 'en', 1, 'https://ror.org/040er0w10 All-Russian Scientific Research Institute of Food Biotechnology ВСЕРОССИЙСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ПИЩЕВОЙ БИОТЕХНОЛОГИИ');
INSERT INTO `rors` VALUES
(39681, 'https://ror.org/01ww2bg72', 'en', 1, 'https://ror.org/01ww2bg72 Oil and Gas Research Institute Институт проблем нефти и газа Российской академии наук'),
(39682, 'https://ror.org/027c96635', 'en', 1, 'https://ror.org/027c96635 GÁLDU Resource Centre for the Rights of Indigenous Peoples Gáldu-et Kompetansesenter for Urfolks Rettigheter'),
(39683, 'https://ror.org/025410268', 'en', 1, 'https://ror.org/025410268 Institute for Educational Development and Training Институт развития образования и повышения квалификации'),
(39684, 'https://ror.org/00z0g8n94', 'en', 1, 'https://ror.org/00z0g8n94 Kalmyk Institute for Humanities Research Калмыцкий институт гуманитарных исследований'),
(39685, 'https://ror.org/03a74kx83', 'en', 1, 'https://ror.org/03a74kx83 Research Institute of National Schools of the Republic of Sakha Научно-исследовательский институт национальных школ Республики Саха'),
(39686, 'https://ror.org/01c33mn06', 'en', 1, 'https://ror.org/01c33mn06 Institute of the North'),
(39687, 'https://ror.org/04ay6mm65', 'en', 1, 'https://ror.org/04ay6mm65 International Centre for Reindeer Husbandry'),
(39688, 'https://ror.org/0023cym93', 'en', 1, 'https://ror.org/0023cym93 Stefansson Arctic Institute Stofnun Vilhjálms Stefánssonar'),
(39689, 'https://ror.org/05pp7qy10', 'en', 1, 'https://ror.org/05pp7qy10 Institute of Hydrocarbon Processing Институт проблем переработки углеводородов'),
(39690, 'https://ror.org/05f3gj938', 'en', 1, 'https://ror.org/05f3gj938 BTK - Hochschule für Kunst & Design BTK University of Arts & Design'),
(39691, 'https://ror.org/01w84qj32', 'en', 1, 'https://ror.org/01w84qj32 V.A. Negovsky Scientific Research Institute of General Reanimatology НИИ общей реаниматологии РАМН'),
(39692, 'https://ror.org/012s3vx96', 'en', 1, 'https://ror.org/012s3vx96 Saamelaisalueen Koulutuskeskus Sámi Education Institute'),
(39693, 'https://ror.org/0490cs563', 'sv', 1, 'https://ror.org/0490cs563 Samernas Utbildningscentrum Sámi Educational Centre'),
(39694, 'https://ror.org/028xr5559', 'en', 1, 'https://ror.org/028xr5559 Makivik Corporation Makivvik Kuapuriisat Société Makivik'),
(39695, 'https://ror.org/04p6zf087', 'no_lang_code', 1, 'https://ror.org/04p6zf087 Mekhanobr Appliances (Russia) Механобр-техника'),
(39696, 'https://ror.org/01h6epf62', 'no_lang_code', 1, 'https://ror.org/01h6epf62 Taimyr College Таймырский колледж'),
(39697, 'https://ror.org/00gprdj76', 'en', 1, 'https://ror.org/00gprdj76 Latin American Institute Институт Латинской Америки'),
(39698, 'https://ror.org/01nk7a404', 'en', 1, 'https://ror.org/01nk7a404 Naryan-Mar Social and Humanitarian College Нарьян-Марский социально-гуманитарный колледж имени И.П. Выучейского'),
(39699, 'https://ror.org/04pv4k943', 'en', 1, 'https://ror.org/04pv4k943 Hydrometeorological Research Centre of Russian Federation федеральное государственное бюджетное учреждение Гидрометеорологический научно-исследовательский центр Российской Федерации'),
(39700, 'https://ror.org/03tv4yh49', 'en', 1, 'https://ror.org/03tv4yh49 Nenets Agro-Economic College'),
(39701, 'https://ror.org/01kzgc408', 'fr', 1, 'https://ror.org/01kzgc408 Wilp Wilxo’oskwhl Nisga’a Institute'),
(39702, 'https://ror.org/04jjns303', 'en', 1, 'https://ror.org/04jjns303 Institute of Applied Mechanics Институт прикладной механики'),
(39703, 'https://ror.org/050vepj62', 'en', 1, 'https://ror.org/050vepj62 Arctic College of the Peoples of the North АРКТИЧЕСКИЙ КОЛЛЕДЖ НАРОДОВ СЕВЕРА'),
(39704, 'https://ror.org/024k73h76', 'en', 1, 'https://ror.org/024k73h76 Yamal Multidisciplinary College ЯМАЛЬСКИЙ МНОГОПРОФИЛЬНЫЙ КОЛЛЕДЖ'),
(39705, 'https://ror.org/04n2vg926', 'en', 1, 'https://ror.org/04n2vg926 Yamal Polar Agro-Economic College Ямальский полярный агроэкономический техникум'),
(39706, 'https://ror.org/03vhd2n30', 'en', 1, 'https://ror.org/03vhd2n30 Circumpolar Agricultural Association'),
(39707, 'https://ror.org/02awrhk36', 'en', 1, 'https://ror.org/02awrhk36 Northern National College Северный Национальный колледж'),
(39708, 'https://ror.org/00zpk0t94', 'no_lang_code', 1, 'https://ror.org/00zpk0t94 Arctic Portal'),
(39709, 'https://ror.org/03bjaz271', 'en', 1, 'https://ror.org/03bjaz271 International Polar Foundation'),
(39710, 'https://ror.org/00pz6g905', 'en', 1, 'https://ror.org/00pz6g905 Association des Études canadiennes aux États-Unis Association for Canadian Studies in the United States'),
(39711, 'https://ror.org/00hpff311', 'en', 1, 'https://ror.org/00hpff311 Council of Yukon First Nations'),
(39712, 'https://ror.org/01nzfne16', 'en', 1, 'https://ror.org/01nzfne16 Northern Teacher Education Program'),
(39713, 'https://ror.org/0468ehz42', 'en', 1, 'https://ror.org/0468ehz42 Austrian Polar Research Institute'),
(39714, 'https://ror.org/05s2efz59', 'en', 1, 'https://ror.org/05s2efz59 Northlands College'),
(39715, 'https://ror.org/00ra6qr58', 'en', 1, 'https://ror.org/00ra6qr58 Greenland Government'),
(39716, 'https://ror.org/003k8c950', 'en', 1, 'https://ror.org/003k8c950 Norges Vitenskapsakademi for Polarforskning Norwegian Scientific Academy for Polar Research'),
(39717, 'https://ror.org/006g9a667', 'en', 1, 'https://ror.org/006g9a667 Center for Circumpolar Studies'),
(39718, 'https://ror.org/021j5fe33', 'iu', 1, 'https://ror.org/021j5fe33 Nunavut Sivuniksavut'),
(39719, 'https://ror.org/05pc7fv53', 'en', 1, 'https://ror.org/05pc7fv53 National Research Institute of Public Health named after N.A. Semashko Национальный научно-исследовательский институт общественного здоровья имени Н.А. Семашко'),
(39720, 'https://ror.org/04xnqnd94', 'en', 1, 'https://ror.org/04xnqnd94 Institute for Humanities Research and Indigenous Studies of the North Институт гуманитарных исследований и коренных народов Севера'),
(39721, 'https://ror.org/03k4btr05', 'en', 1, 'https://ror.org/03k4btr05 Center for Support of Indigenous Peoples of the North'),
(39722, 'https://ror.org/05twc1c66', 'en', 1, 'https://ror.org/05twc1c66 Cold Climate Housing Research Center'),
(39723, 'https://ror.org/04eqxyk73', 'en', 1, 'https://ror.org/04eqxyk73 Institute of Volcanology and Seismology Институт вулканологии и сейсмологии'),
(39724, 'https://ror.org/01j1yrs64', 'en', 1, 'https://ror.org/01j1yrs64 Gwich''in Council International'),
(39725, 'https://ror.org/02540ds77', 'en', 1, 'https://ror.org/02540ds77 Ministry of Education and Youth Policy of the Republic of Komi Министерство образования Республики Коми'),
(39726, 'https://ror.org/04n28sf88', 'en', 1, 'https://ror.org/04n28sf88 Icelandic Tourism Research Centre Rannsóknamiðstöð Ferðamála'),
(39727, 'https://ror.org/043zcks33', 'en', 1, 'https://ror.org/043zcks33 International Institute for Sustainable Development'),
(39728, 'https://ror.org/02ze2t980', 'en', 1, 'https://ror.org/02ze2t980 Russian Association of Indigenous Peoples of the North Ассоциация коренных, малочисленных народов Севера, Сибири и Дальнего Востока Российской Федерации'),
(39729, 'https://ror.org/00yjjd343', 'en', 1, 'https://ror.org/00yjjd343 Uummannaq Polar Institute'),
(39730, 'https://ror.org/01nhftj29', 'en', 1, 'https://ror.org/01nhftj29 Ministry of Natural Resources and Environmental Protection of the Komi Republic Министерство Природных Ресурсов И Охраны Окружающей Среды Республики Коми'),
(39731, 'https://ror.org/04863f219', 'en', 1, 'https://ror.org/04863f219 Council of State Valtioneuvosto statsrådet'),
(39732, 'https://ror.org/02wvb2a30', 'en', 1, 'https://ror.org/02wvb2a30 Nordland Research Institute Nordlandsforskning'),
(39733, 'https://ror.org/05gn8bd38', 'en', 1, 'https://ror.org/05gn8bd38 Yukon Agricultural Association'),
(39734, 'https://ror.org/00d4qwn05', 'no_lang_code', 1, 'https://ror.org/00d4qwn05 Meridian (Russia) Меридиан'),
(39735, 'https://ror.org/05v13xr40', 'en', 1, 'https://ror.org/05v13xr40 State Duma Госуда́рственная ду́ма'),
(39736, 'https://ror.org/03xscnc52', 'en', 1, 'https://ror.org/03xscnc52 Saami Council'),
(39737, 'https://ror.org/03h3f5845', 'en', 1, 'https://ror.org/03h3f5845 Murmansk Academy of Economics and Management Мурманская академия экономики и управления'),
(39738, 'https://ror.org/03wgj1374', 'en', 1, 'https://ror.org/03wgj1374 Legislative Assembly of Saskatchewan'),
(39739, 'https://ror.org/02r2mca20', 'no_lang_code', 1, 'https://ror.org/02r2mca20 Zabaykalsky National Park Забайкальский национальный парк'),
(39740, 'https://ror.org/04y726b94', 'en', 1, 'https://ror.org/04y726b94 National Museum of the Finnish Sámi'),
(39741, 'https://ror.org/01fe6wg83', 'en', 1, 'https://ror.org/01fe6wg83 All Russian Research Institute of Geology and Mineral Resources of the World Ocean ВНИИОкеангеология'),
(39742, 'https://ror.org/03w4wmy72', 'no_lang_code', 1, 'https://ror.org/03w4wmy72 Genomic Vision (France)'),
(39743, 'https://ror.org/00emv3338', 'de', 1, 'https://ror.org/00emv3338 Archiv der Hansestadt Wismar'),
(39744, 'https://ror.org/03yvf9v84', 'en', 1, 'https://ror.org/03yvf9v84 Father Muller Homoeopathic Medical College'),
(39745, 'https://ror.org/024j3hn90', 'de', 1, 'https://ror.org/024j3hn90 Universitätsklinikum Knappschaftskrankenhaus Bochum'),
(39746, 'https://ror.org/04py24056', 'en', 1, 'https://ror.org/04py24056 Bavarian State Painting Collections Bayerische Staatsgemäldesammlungen'),
(39747, 'https://ror.org/00jce1v14', 'en', 1, 'https://ror.org/00jce1v14 College of the Siskiyous'),
(39748, 'https://ror.org/02kc2j595', 'en', 1, 'https://ror.org/02kc2j595 Copiah-Lincoln Community College'),
(39749, 'https://ror.org/00gpmge60', 'en', 1, 'https://ror.org/00gpmge60 Cowley Community College'),
(39750, 'https://ror.org/02qz3vf90', 'en', 1, 'https://ror.org/02qz3vf90 Davidson County Community College'),
(39751, 'https://ror.org/051qrf195', 'en', 1, 'https://ror.org/051qrf195 Davis Applied Technology College'),
(39752, 'https://ror.org/03t1tgz69', 'en', 1, 'https://ror.org/03t1tgz69 Academy for Five Element Acupuncture'),
(39753, 'https://ror.org/00a264q56', 'en', 1, 'https://ror.org/00a264q56 Academy for Jewish Religion California'),
(39754, 'https://ror.org/04dy4th59', 'en', 1, 'https://ror.org/04dy4th59 Bon Secours Memorial College of Nursing'),
(39755, 'https://ror.org/03nb5d893', 'en', 1, 'https://ror.org/03nb5d893 Academy of Chinese Culture and Health Sciences'),
(39756, 'https://ror.org/03pq5wv02', 'en', 1, 'https://ror.org/03pq5wv02 Academy of Vocal Arts'),
(39757, 'https://ror.org/043xy0x82', 'en', 1, 'https://ror.org/043xy0x82 Boston Baptist College'),
(39758, 'https://ror.org/00b6wzg36', 'en', 1, 'https://ror.org/00b6wzg36 Acupuncture & Integrative Medicine College'),
(39759, 'https://ror.org/05kbrcy03', 'en', 1, 'https://ror.org/05kbrcy03 Episcopal Divinity School'),
(39760, 'https://ror.org/04tb1ww30', 'en', 1, 'https://ror.org/04tb1ww30 Adler Graduate School'),
(39761, 'https://ror.org/050khzd41', 'en', 1, 'https://ror.org/050khzd41 Peirce College'),
(39762, 'https://ror.org/05jhyr833', 'en', 1, 'https://ror.org/05jhyr833 Boston Graduate School of Psychoanalysis'),
(39763, 'https://ror.org/044x5g822', 'en', 1, 'https://ror.org/044x5g822 Pennsylvania College of Art and Design'),
(39764, 'https://ror.org/033e57h61', 'en', 1, 'https://ror.org/033e57h61 Manhattan School of Music'),
(39765, 'https://ror.org/057z2zh71', 'en', 1, 'https://ror.org/057z2zh71 Ex''pression College for Digital Arts'),
(39766, 'https://ror.org/045hvha55', 'no_lang_code', 1, 'https://ror.org/045hvha55 3-Sigma Research (United States)'),
(39767, 'https://ror.org/03bybmz71', 'en', 1, 'https://ror.org/03bybmz71 AIB College of Business'),
(39768, 'https://ror.org/049wrhp57', 'en', 1, 'https://ror.org/049wrhp57 Phoenix Institute of Herbal Medicine and Acupuncture'),
(39769, 'https://ror.org/026xy6j55', 'en', 1, 'https://ror.org/026xy6j55 Faith Evangelical College & Seminary'),
(39770, 'https://ror.org/02v65ck63', 'en', 1, 'https://ror.org/02v65ck63 Maple Springs Baptist Bible College and Seminary'),
(39771, 'https://ror.org/05gja2q95', 'en', 1, 'https://ror.org/05gja2q95 Phoenix Seminary'),
(39772, 'https://ror.org/0536wq444', 'en', 1, 'https://ror.org/0536wq444 Family of Faith College'),
(39773, 'https://ror.org/00tc79f78', 'en', 1, 'https://ror.org/00tc79f78 Platt College Aurora'),
(39774, 'https://ror.org/05pc4m625', 'en', 1, 'https://ror.org/05pc4m625 Martin Luther College'),
(39775, 'https://ror.org/03bnxc149', 'en', 1, 'https://ror.org/03bnxc149 Five Towns College'),
(39776, 'https://ror.org/05nkvn594', 'en', 1, 'https://ror.org/05nkvn594 American Academy of Acupuncture and Oriental Medicine'),
(39777, 'https://ror.org/05rvkm618', 'en', 1, 'https://ror.org/05rvkm618 Massachusetts School of Law'),
(39778, 'https://ror.org/02de22795', 'en', 1, 'https://ror.org/02de22795 Florida College of Integrative Medicine'),
(39779, 'https://ror.org/001gb1j79', 'en', 1, 'https://ror.org/001gb1j79 American Baptist College'),
(39780, 'https://ror.org/05db4h730', 'en', 1, 'https://ror.org/05db4h730 Bryan College of Health Sciences'),
(39781, 'https://ror.org/03j70bf39', 'en', 1, 'https://ror.org/03j70bf39 American College of Acupuncture & Oriental Medicine'),
(39782, 'https://ror.org/023kybh62', 'en', 1, 'https://ror.org/023kybh62 Polytechnic University of Puerto Rico Miami'),
(39783, 'https://ror.org/016j6dw22', 'en', 1, 'https://ror.org/016j6dw22 Burlington College'),
(39784, 'https://ror.org/05t4q5a05', 'en', 1, 'https://ror.org/05t4q5a05 McNally Smith College of Music'),
(39785, 'https://ror.org/03vqkag84', 'en', 1, 'https://ror.org/03vqkag84 American College of Education'),
(39786, 'https://ror.org/028thwc63', 'en', 1, 'https://ror.org/028thwc63 Polytechnic University of Puerto Rico Orlando'),
(39787, 'https://ror.org/03ja16q10', 'en', 1, 'https://ror.org/03ja16q10 Frank Lloyd Wright School of Architecture'),
(39788, 'https://ror.org/05xphj289', 'en', 1, 'https://ror.org/05xphj289 Pontifical John Paul II Institute for Studies on Marriage and Family'),
(39789, 'https://ror.org/04nap1310', 'en', 1, 'https://ror.org/04nap1310 American College of Financial Services'),
(39790, 'https://ror.org/0232n8553', 'en', 1, 'https://ror.org/0232n8553 American College of Traditional Chinese Medicine'),
(39791, 'https://ror.org/03b325x62', 'en', 1, 'https://ror.org/03b325x62 Pope St. John XXIII National Seminary'),
(39792, 'https://ror.org/03pvphy63', 'en', 1, 'https://ror.org/03pvphy63 Byzantine Catholic Seminary of Saints Cyril and Methodius'),
(39793, 'https://ror.org/03mv9kp97', 'en', 1, 'https://ror.org/03mv9kp97 AOMA Graduate School of Integrative Medicine'),
(39794, 'https://ror.org/05fmdkk55', 'en', 1, 'https://ror.org/05fmdkk55 Memphis College of Art'),
(39795, 'https://ror.org/00mvrmk84', 'en', 1, 'https://ror.org/00mvrmk84 Providence Christian College'),
(39796, 'https://ror.org/0530xcn78', 'en', 1, 'https://ror.org/0530xcn78 Apex School of Theology'),
(39797, 'https://ror.org/00ek1m439', 'en', 1, 'https://ror.org/00ek1m439 Utah College of Dental Hygiene'),
(39798, 'https://ror.org/00gs3en43', 'en', 1, 'https://ror.org/00gs3en43 Carolina Christian College'),
(39799, 'https://ror.org/04t25zj93', 'en', 1, 'https://ror.org/04t25zj93 God''s Bible School and College'),
(39800, 'https://ror.org/02gzrnr79', 'en', 1, 'https://ror.org/02gzrnr79 Rabbi Jacob Joseph School'),
(39801, 'https://ror.org/00cwxbd63', 'en', 1, 'https://ror.org/00cwxbd63 Arizona School of Acupuncture and Oriental Medicine'),
(39802, 'https://ror.org/01029e417', 'en', 1, 'https://ror.org/01029e417 Carver Bible College'),
(39803, 'https://ror.org/00q5x1a77', 'en', 1, 'https://ror.org/00q5x1a77 Messenger College'),
(39804, 'https://ror.org/03a942552', 'no_lang_code', 1, 'https://ror.org/03a942552 Adaptix (United Kingdom)'),
(39805, 'https://ror.org/00mej7b74', 'en', 1, 'https://ror.org/00mej7b74 Arizona Summit Law School'),
(39806, 'https://ror.org/015z60w50', 'en', 1, 'https://ror.org/015z60w50 Center for Advanced Legal Studies'),
(39807, 'https://ror.org/04fszdm13', 'en', 1, 'https://ror.org/04fszdm13 Art Academy of Cincinnati'),
(39808, 'https://ror.org/000z2fe63', 'en', 1, 'https://ror.org/000z2fe63 Grace Mission University'),
(39809, 'https://ror.org/03nmnmt74', 'en', 1, 'https://ror.org/03nmnmt74 Midwest College of Oriental Medicine'),
(39810, 'https://ror.org/0040q3862', 'en', 1, 'https://ror.org/0040q3862 Atlanta’s John Marshall Law School'),
(39811, 'https://ror.org/020t7f007', 'en', 1, 'https://ror.org/020t7f007 Rabbinical College of America'),
(39812, 'https://ror.org/00tqb5b32', 'en', 1, 'https://ror.org/00tqb5b32 Grace School of Theology'),
(39813, 'https://ror.org/04wpk4a30', 'en', 1, 'https://ror.org/04wpk4a30 Atlantic Institute of Oriental Medicine'),
(39814, 'https://ror.org/00a0y1f58', 'en', 1, 'https://ror.org/00a0y1f58 Hazelden Betty Ford Graduate School of Addiction Studies'),
(39815, 'https://ror.org/04czy3x31', 'en', 1, 'https://ror.org/04czy3x31 Heritage Bible College'),
(39816, 'https://ror.org/04j68nv27', 'en', 1, 'https://ror.org/04j68nv27 Millennia Atlantic University'),
(39817, 'https://ror.org/044abmm29', 'en', 1, 'https://ror.org/044abmm29 Hobe Sound Bible College'),
(39818, 'https://ror.org/007bxt841', 'no_lang_code', 1, 'https://ror.org/007bxt841 Bais HaMedrash and Mesivta of Baltimore'),
(39819, 'https://ror.org/031ew8w25', 'en', 1, 'https://ror.org/031ew8w25 Milwaukee Institute of Art & Design'),
(39820, 'https://ror.org/01yvchj11', 'en', 1, 'https://ror.org/01yvchj11 Horizon University'),
(39821, 'https://ror.org/04w4h5c56', 'en', 1, 'https://ror.org/04w4h5c56 Rabbinical College Ohr Yisroel'),
(39822, 'https://ror.org/035khbv71', 'en', 1, 'https://ror.org/035khbv71 Houston Graduate School of Theology'),
(39823, 'https://ror.org/04gdyqq92', 'en', 1, 'https://ror.org/04gdyqq92 Charlotte Christian College and Theological Seminary'),
(39824, 'https://ror.org/01qw1bz85', 'en', 1, 'https://ror.org/01qw1bz85 Humphreys College'),
(39825, 'https://ror.org/00e0p8s95', 'en', 1, 'https://ror.org/00e0p8s95 Charlotte School of Law'),
(39826, 'https://ror.org/01fk7em68', 'en', 1, 'https://ror.org/01fk7em68 Bais Medrash Toras Chesed'),
(39827, 'https://ror.org/001sfpp23', 'en', 1, 'https://ror.org/001sfpp23 Relay Graduate School of Education'),
(39828, 'https://ror.org/01yh59845', 'en', 1, 'https://ror.org/01yh59845 Montana Bible College'),
(39829, 'https://ror.org/00qc32430', 'en', 1, 'https://ror.org/00qc32430 Christie''s Education'),
(39830, 'https://ror.org/01jc8rs51', 'en', 1, 'https://ror.org/01jc8rs51 IGlobal University'),
(39831, 'https://ror.org/00yte8n94', 'en', 1, 'https://ror.org/00yte8n94 Church Divinity School of the Pacific'),
(39832, 'https://ror.org/04pqs5t46', 'en', 1, 'https://ror.org/04pqs5t46 Beacon College'),
(39833, 'https://ror.org/058vwqx43', 'en', 1, 'https://ror.org/058vwqx43 Institute for Doctoral Studies in the Visual Arts'),
(39834, 'https://ror.org/01x7teq58', 'en', 1, 'https://ror.org/01x7teq58 City Vision University'),
(39835, 'https://ror.org/00vn6kg36', 'en', 1, 'https://ror.org/00vn6kg36 Becker College'),
(39836, 'https://ror.org/052rpb648', 'en', 1, 'https://ror.org/052rpb648 Resurrection University'),
(39837, 'https://ror.org/03vkpnc84', 'en', 1, 'https://ror.org/03vkpnc84 Clarkson College'),
(39838, 'https://ror.org/04w93kd83', 'en', 1, 'https://ror.org/04w93kd83 Institute for the Psychological Sciences'),
(39839, 'https://ror.org/016a6js89', 'en', 1, 'https://ror.org/016a6js89 Richmont Graduate University'),
(39840, 'https://ror.org/00dfkrb12', 'en', 1, 'https://ror.org/00dfkrb12 Rio Grande Bible Institute'),
(39841, 'https://ror.org/013am1j13', 'en', 1, 'https://ror.org/013am1j13 Rocky Mountain College of Art and Design'),
(39842, 'https://ror.org/02tn5xc56', 'en', 1, 'https://ror.org/02tn5xc56 Colgate Rochester Crozer Divinity School'),
(39843, 'https://ror.org/01ahk4t18', 'en', 1, 'https://ror.org/01ahk4t18 Montessori Institute of Milwaukee'),
(39844, 'https://ror.org/042dg8338', 'en', 1, 'https://ror.org/042dg8338 Rudolf Steiner College'),
(39845, 'https://ror.org/03c9c1383', 'en', 1, 'https://ror.org/03c9c1383 Montserrat College of Art'),
(39846, 'https://ror.org/03rb26y64', 'en', 1, 'https://ror.org/03rb26y64 Collins College'),
(39847, 'https://ror.org/0457x4y88', 'en', 1, 'https://ror.org/0457x4y88 St. Catharine College'),
(39848, 'https://ror.org/007je0v50', 'en', 1, 'https://ror.org/007je0v50 Colorado School of Traditional Chinese Medicine'),
(39849, 'https://ror.org/01nh53a98', 'en', 1, 'https://ror.org/01nh53a98 Moore College of Art and Design'),
(39850, 'https://ror.org/01jh5hv18', 'en', 1, 'https://ror.org/01jh5hv18 Saint Charles Borromeo Seminary'),
(39851, 'https://ror.org/02sz4p320', 'en', 1, 'https://ror.org/02sz4p320 Institute of World Politics'),
(39852, 'https://ror.org/05v69pw95', 'en', 1, 'https://ror.org/05v69pw95 Bexley Hall'),
(39853, 'https://ror.org/0435dnz03', 'en', 1, 'https://ror.org/0435dnz03 Interdenominational Theological Center'),
(39854, 'https://ror.org/01g9cpz33', 'en', 1, 'https://ror.org/01g9cpz33 Morthland College'),
(39855, 'https://ror.org/01axtzy32', 'en', 1, 'https://ror.org/01axtzy32 Saint John Vianney College Seminary'),
(39856, 'https://ror.org/00bgbmf24', 'en', 1, 'https://ror.org/00bgbmf24 Birthingway College of Midwifery'),
(39857, 'https://ror.org/02tdd1e40', 'en', 1, 'https://ror.org/02tdd1e40 Saint Luke''s College of Health Sciences'),
(39858, 'https://ror.org/00c1pz865', 'en', 1, 'https://ror.org/00c1pz865 International Academy of Design & Technology'),
(39859, 'https://ror.org/00wqess70', 'en', 1, 'https://ror.org/00wqess70 St. Vincent de Paul Regional Seminary'),
(39860, 'https://ror.org/02vt55417', 'en', 1, 'https://ror.org/02vt55417 Blessing-Rieman College of Nursing'),
(39861, 'https://ror.org/05sbeh252', 'en', 1, 'https://ror.org/05sbeh252 Columbia College of Nursing'),
(39862, 'https://ror.org/02w9pf714', 'en', 1, 'https://ror.org/02w9pf714 Saint Vincent Seminary'),
(39863, 'https://ror.org/05e1bqk54', 'en', 1, 'https://ror.org/05e1bqk54 Boise Bible College'),
(39864, 'https://ror.org/0542f9556', 'en', 1, 'https://ror.org/0542f9556 International Academy of Design & Technology'),
(39865, 'https://ror.org/016gc3g35', 'en', 1, 'https://ror.org/016gc3g35 San Francisco Conservatory of Music'),
(39866, 'https://ror.org/04e02dg93', 'en', 1, 'https://ror.org/04e02dg93 Concordia College Alabama'),
(39867, 'https://ror.org/00qnd3z77', 'en', 1, 'https://ror.org/00qnd3z77 National American University'),
(39868, 'https://ror.org/007qc6d13', 'en', 1, 'https://ror.org/007qc6d13 International Baptist College and Seminary'),
(39869, 'https://ror.org/04p5ezw03', 'en', 1, 'https://ror.org/04p5ezw03 Cox College'),
(39870, 'https://ror.org/02ctkg564', 'en', 1, 'https://ror.org/02ctkg564 Nebraska Christian College'),
(39871, 'https://ror.org/03x131c97', 'en', 1, 'https://ror.org/03x131c97 International Institute for Restorative Practices'),
(39872, 'https://ror.org/05vb1qq28', 'en', 1, 'https://ror.org/05vb1qq28 Shiloh University'),
(39873, 'https://ror.org/02etj2579', 'en', 1, 'https://ror.org/02etj2579 Savannah Law School'),
(39874, 'https://ror.org/03v4jhb18', 'en', 1, 'https://ror.org/03v4jhb18 Cranbrook Academy of Art'),
(39875, 'https://ror.org/00n27t175', 'en', 1, 'https://ror.org/00n27t175 Seattle Institute of Oriental Medicine'),
(39876, 'https://ror.org/02sn4rb40', 'no_lang_code', 1, 'https://ror.org/02sn4rb40 Peregrine Power (United States)'),
(39877, 'https://ror.org/05c1b0415', 'en', 1, 'https://ror.org/05c1b0415 Sioux Falls Seminary'),
(39878, 'https://ror.org/03pgfye82', 'en', 1, 'https://ror.org/03pgfye82 New England College of Business'),
(39879, 'https://ror.org/00e0kg276', 'en', 1, 'https://ror.org/00e0kg276 Sentara College of Health Sciences'),
(39880, 'https://ror.org/00ymrc254', 'en', 1, 'https://ror.org/00ymrc254 Curtis Institute of Music'),
(39881, 'https://ror.org/04c581336', 'en', 1, 'https://ror.org/04c581336 Kenrick–Glennon Seminary'),
(39882, 'https://ror.org/043jtq828', 'en', 1, 'https://ror.org/043jtq828 Dallas Christian College'),
(39883, 'https://ror.org/02xbxcz59', 'en', 1, 'https://ror.org/02xbxcz59 New Hampshire Institute of Art'),
(39884, 'https://ror.org/04xxj4388', 'en', 1, 'https://ror.org/04xxj4388 Seattle School of Theology and Psychology'),
(39885, 'https://ror.org/05c686207', 'en', 1, 'https://ror.org/05c686207 Daoist Traditions College of Chinese Medical Arts'),
(39886, 'https://ror.org/03v16kr17', 'en', 1, 'https://ror.org/03v16kr17 Kentucky Mountain Bible College'),
(39887, 'https://ror.org/036y2y849', 'en', 1, 'https://ror.org/036y2y849 DellArte International School of Physical Theatre'),
(39888, 'https://ror.org/05c2gdy67', 'en', 1, 'https://ror.org/05c2gdy67 Reformed Episcopal Seminary'),
(39889, 'https://ror.org/012jge305', 'en', 1, 'https://ror.org/012jge305 Sotheby''s Institute of Art'),
(39890, 'https://ror.org/05x05k755', 'en', 1, 'https://ror.org/05x05k755 Laguna College of Art and Design'),
(39891, 'https://ror.org/00pnyyg32', 'en', 1, 'https://ror.org/00pnyyg32 Design Institute of San Diego'),
(39892, 'https://ror.org/03ccevd14', 'en', 1, 'https://ror.org/03ccevd14 New York College of Traditional Chinese Medicine'),
(39893, 'https://ror.org/014dwa961', 'en', 1, 'https://ror.org/014dwa961 South Florida Bible College & Theological Seminary'),
(39894, 'https://ror.org/02a1nbm25', 'en', 1, 'https://ror.org/02a1nbm25 New York School of Interior Design'),
(39895, 'https://ror.org/008f09676', 'en', 1, 'https://ror.org/008f09676 Thomas More College of Liberal Arts'),
(39896, 'https://ror.org/05vjege66', 'en', 1, 'https://ror.org/05vjege66 DeVry College'),
(39897, 'https://ror.org/028b5s745', 'en', 1, 'https://ror.org/028b5s745 Tri-State Bible College'),
(39898, 'https://ror.org/01g4a4162', 'en', 1, 'https://ror.org/01g4a4162 Newbury College'),
(39899, 'https://ror.org/04vgqtr26', 'en', 1, 'https://ror.org/04vgqtr26 Tri-State College of Acupuncture'),
(39900, 'https://ror.org/03nrq6f82', 'en', 1, 'https://ror.org/03nrq6f82 Northpoint Bible College'),
(39901, 'https://ror.org/02xhv2402', 'en', 1, 'https://ror.org/02xhv2402 Trinity Bible College'),
(39902, 'https://ror.org/005hdaw07', 'en', 1, 'https://ror.org/005hdaw07 Trinity Lutheran College'),
(39903, 'https://ror.org/02e6pdw39', 'en', 1, 'https://ror.org/02e6pdw39 Southern California Seminary'),
(39904, 'https://ror.org/0536m9756', 'en', 1, 'https://ror.org/0536m9756 Northwest Institute of Literary Arts'),
(39905, 'https://ror.org/03y3qvs38', 'en', 1, 'https://ror.org/03y3qvs38 Southwest Acupuncture College - Boulder'),
(39906, 'https://ror.org/05gb9fv74', 'en', 1, 'https://ror.org/05gb9fv74 Southwest Acupuncture College - Santa Fe'),
(39907, 'https://ror.org/03k94d886', 'en', 1, 'https://ror.org/03k94d886 Notre Dame Seminary'),
(39908, 'https://ror.org/05wc4jq58', 'en', 1, 'https://ror.org/05wc4jq58 Ecclesia College'),
(39909, 'https://ror.org/012fga139', 'en', 1, 'https://ror.org/012fga139 O''More College of Design'),
(39910, 'https://ror.org/00zbydh86', 'en', 1, 'https://ror.org/00zbydh86 Truett-McConnell College'),
(39911, 'https://ror.org/02fypjr73', 'en', 1, 'https://ror.org/02fypjr73 St. Bernard’s School of Theology and Ministry'),
(39912, 'https://ror.org/02jfyz617', 'en', 1, 'https://ror.org/02jfyz617 Union Presbyterian Seminary'),
(39913, 'https://ror.org/044txcp97', 'en', 1, 'https://ror.org/044txcp97 Emperors College'),
(39914, 'https://ror.org/02h6mhy16', 'en', 1, 'https://ror.org/02h6mhy16 Oak Hills Christian College'),
(39915, 'https://ror.org/03ezdk227', 'en', 1, 'https://ror.org/03ezdk227 Epic Bible College'),
(39916, 'https://ror.org/03cqnhx95', 'en', 1, 'https://ror.org/03cqnhx95 St. John''s College of Nursing'),
(39917, 'https://ror.org/01v41bc35', 'en', 1, 'https://ror.org/01v41bc35 Oregon College of Art and Craft'),
(39918, 'https://ror.org/03g9mpe61', 'en', 1, 'https://ror.org/03g9mpe61 Upper Valley Educators Institute'),
(39919, 'https://ror.org/03k9yfc35', 'en', 1, 'https://ror.org/03k9yfc35 University of Fort Lauderdale'),
(39920, 'https://ror.org/037ydwx27', 'en', 1, 'https://ror.org/037ydwx27 Urshan Graduate School of Theology'),
(39921, 'https://ror.org/0104aqe39', 'en', 1, 'https://ror.org/0104aqe39 Longy School of Music of Bard College'),
(39922, 'https://ror.org/0428azw09', 'en', 1, 'https://ror.org/0428azw09 Talmudic University'),
(39923, 'https://ror.org/051rq2a77', 'en', 1, 'https://ror.org/051rq2a77 Oxford Graduate School'),
(39924, 'https://ror.org/00sw9kj55', 'en', 1, 'https://ror.org/00sw9kj55 Paier College of Art Inc'),
(39925, 'https://ror.org/02kkj1692', 'en', 1, 'https://ror.org/02kkj1692 World Medicine Institute'),
(39926, 'https://ror.org/05c0t9w87', 'en', 1, 'https://ror.org/05c0t9w87 Vermont College of Fine Arts'),
(39927, 'https://ror.org/04wa2dm78', 'en', 1, 'https://ror.org/04wa2dm78 Virginia Baptist College'),
(39928, 'https://ror.org/02eneb966', 'en', 1, 'https://ror.org/02eneb966 World Mission University'),
(39929, 'https://ror.org/05g7f8997', 'en', 1, 'https://ror.org/05g7f8997 Talmudical Seminary Oholei Torah'),
(39930, 'https://ror.org/05r81c657', 'en', 1, 'https://ror.org/05r81c657 Yeshiva Toras Chaim Talmudic Seminary'),
(39931, 'https://ror.org/05k6xb467', 'en', 1, 'https://ror.org/05k6xb467 Visible Music College'),
(39932, 'https://ror.org/03thxbc14', 'en', 1, 'https://ror.org/03thxbc14 Western Seminary'),
(39933, 'https://ror.org/04vwgk321', 'en', 1, 'https://ror.org/04vwgk321 Art Institute of Atlanta'),
(39934, 'https://ror.org/00qkjnr71', 'en', 1, 'https://ror.org/00qkjnr71 Yeshiva of Greater Washington'),
(39935, 'https://ror.org/02cg6jf50', 'en', 1, 'https://ror.org/02cg6jf50 Lubavitch Educational Center'),
(39936, 'https://ror.org/02grghs20', 'en', 1, 'https://ror.org/02grghs20 Yeshiva and Kollel Be''er Yitzchok of Elizabeth'),
(39937, 'https://ror.org/02k8h2m07', 'en', 1, 'https://ror.org/02k8h2m07 Williamson College'),
(39938, 'https://ror.org/00mvdkr07', 'en', 1, 'https://ror.org/00mvdkr07 Yeshivat Mikdash Melech'),
(39939, 'https://ror.org/03hasam33', 'en', 1, 'https://ror.org/03hasam33 Wolford College'),
(39940, 'https://ror.org/01nsw9720', 'en', 1, 'https://ror.org/01nsw9720 Won Institute of Graduate Studies'),
(39941, 'https://ror.org/05hn31665', 'en', 1, 'https://ror.org/05hn31665 Young Harris College'),
(39942, 'https://ror.org/01pc4rp54', 'en', 1, 'https://ror.org/01pc4rp54 Art Institute of Houston'),
(39943, 'https://ror.org/04r030w90', 'en', 1, 'https://ror.org/04r030w90 Yeshiva of Nitra Rabbinical College'),
(39944, 'https://ror.org/051j50p12', 'en', 1, 'https://ror.org/051j50p12 The King''s College'),
(39945, 'https://ror.org/035h1xx45', 'en', 1, 'https://ror.org/035h1xx45 Yeshiva Ohr Elchonon Chabad West Coast Talmudical Seminary'),
(39946, 'https://ror.org/02nabw167', 'en', 1, 'https://ror.org/02nabw167 State Hospital'),
(39947, 'https://ror.org/00t2tkn41', 'no_lang_code', 1, 'https://ror.org/00t2tkn41 Cyber-Dynamics (United States)'),
(39948, 'https://ror.org/03mv3zz84', 'en', 1, 'https://ror.org/03mv3zz84 Brno International Business School'),
(39949, 'https://ror.org/013z3yn41', 'en', 1, 'https://ror.org/013z3yn41 Adana Bilim ve Teknloji Üniversitesi Adana Science and Technology University'),
(39950, 'https://ror.org/03xj8qc33', 'en', 1, 'https://ror.org/03xj8qc33 Dania Academy of Higher Education'),
(39951, 'https://ror.org/025t37b39', 'no_lang_code', 1, 'https://ror.org/025t37b39 B & B'),
(39952, 'https://ror.org/054ebrh70', 'en', 1, 'https://ror.org/054ebrh70 Danube Private University'),
(39953, 'https://ror.org/01ewgyc27', 'en', 1, 'https://ror.org/01ewgyc27 Academy of Cosmetics and Health Care in Warsaw Wyższa Szkoła Zawodowa Kosmetyki'),
(39954, 'https://ror.org/035dn9148', 'en', 1, 'https://ror.org/035dn9148 Baltic Methodist Theological Seminary'),
(39955, 'https://ror.org/00qabtj63', 'en', 1, 'https://ror.org/00qabtj63 Akcent International House Prague Jazyková škola AKCENT IH Prague'),
(39956, 'https://ror.org/0490tje89', 'en', 1, 'https://ror.org/0490tje89 Daugavpils Medical College Daugavpils medicinas koledza'),
(39957, 'https://ror.org/03yxw1t21', 'en', 1, 'https://ror.org/03yxw1t21 Academy of Fine Arts Nuremberg Akademie der Bildenden Künste Nürnberg'),
(39958, 'https://ror.org/04f0j5918', 'en', 1, 'https://ror.org/04f0j5918 Baptist Theological Academy'),
(39959, 'https://ror.org/03dy5jr56', 'en', 1, 'https://ror.org/03dy5jr56 Grāmatvedības un finanšu koledža Riga College of Accounting and Finance'),
(39960, 'https://ror.org/03afcx965', 'en', 1, 'https://ror.org/03afcx965 bbw Hochschule bbw University of Applied Sciences'),
(39961, 'https://ror.org/00382bg18', 'en', 1, 'https://ror.org/00382bg18 College of Applied Psychology Vysoká škola aplikované psychologie'),
(39962, 'https://ror.org/04rqr4m92', 'it', 1, 'https://ror.org/04rqr4m92 Academy of Fine Arts of Bologna Accademia di Belle Arti di Bologna'),
(39963, 'https://ror.org/000367g23', 'it', 1, 'https://ror.org/000367g23 Accademia di Belle Arti di Carrara'),
(39964, 'https://ror.org/02tr1pz26', 'en', 1, 'https://ror.org/02tr1pz26 Alberta College Alberta Koledža'),
(39965, 'https://ror.org/00amea583', 'en', 1, 'https://ror.org/00amea583 Alexander College'),
(39966, 'https://ror.org/0089aaq22', 'en', 1, 'https://ror.org/0089aaq22 College of Communications and Management in Poznan Wyższa Szkoła Komunikacji i Zarządzania w Poznaniu'),
(39967, 'https://ror.org/04h36ea57', 'en', 1, 'https://ror.org/04h36ea57 Alexander Technological Educational Institute of Thessaloniki Αλεξάνδρειο Τεχνολογικό Εκπαιδευτικό Ίδρυμα Θεσσαλονίκης'),
(39968, 'https://ror.org/01ym43775', 'it', 1, 'https://ror.org/01ym43775 Academy of Fine Arts of Florence Accademia di Belle Arti di Firenze'),
(39969, 'https://ror.org/03zsz9v82', 'it', 1, 'https://ror.org/03zsz9v82 Accademia di Belle Arti di Foggia'),
(39970, 'https://ror.org/02w2mvp24', 'en', 1, 'https://ror.org/02w2mvp24 Białystok Institute of Cosmetology and Healthcare Wyższa Szkoła Kosmetologii i Ochrony Zdrowia w Białymstoku'),
(39971, 'https://ror.org/03ekjqb98', 'it', 1, 'https://ror.org/03ekjqb98 Accademia di Belle Arti di Frosinone'),
(39972, 'https://ror.org/03jgxzm03', 'en', 1, 'https://ror.org/03jgxzm03 Američka Visoka Skola za Menadžment i Tehnologiju Rochester Institute of Technology Croatia'),
(39973, 'https://ror.org/03athrm05', 'en', 1, 'https://ror.org/03athrm05 University of Security and Economics Висше Училище по Сигурност и Икономика'),
(39974, 'https://ror.org/05fp0vp37', 'it', 1, 'https://ror.org/05fp0vp37 Accademia di Belle Arti di Lecce'),
(39975, 'https://ror.org/04w49ae90', 'de', 1, 'https://ror.org/04w49ae90 EBC Hochschule'),
(39976, 'https://ror.org/01kjvw753', 'en', 1, 'https://ror.org/01kjvw753 Biotechnical Educational Centre Ljubljana'),
(39977, 'https://ror.org/00vxar649', 'it', 1, 'https://ror.org/00vxar649 Accademia di Belle Arti di Macerata'),
(39978, 'https://ror.org/00rfy7667', 'en', 1, 'https://ror.org/00rfy7667 Accademia di Belle Arti di Brera Brera Academy'),
(39979, 'https://ror.org/018xbyb32', 'en', 1, 'https://ror.org/018xbyb32 College of Tourism'),
(39980, 'https://ror.org/01xk4y863', 'it', 1, 'https://ror.org/01xk4y863 Accademia di Belle Arti di Napoli Naples Academy of Fine Arts'),
(39981, 'https://ror.org/0286btk29', 'en', 1, 'https://ror.org/0286btk29 Architectural Institute in Prague'),
(39982, 'https://ror.org/03en4zh39', 'it', 1, 'https://ror.org/03en4zh39 Academy of Fine Arts of Palermo Accademia di Belle Arti di Palermo'),
(39983, 'https://ror.org/0282ezj14', 'it', 1, 'https://ror.org/0282ezj14 Accademia di Belle Arti di Reggio Calabria'),
(39984, 'https://ror.org/03e9akr35', 'en', 1, 'https://ror.org/03e9akr35 College for Management in Tourism and Informatics in Virovitica Visoka škola za menadžment u turizmu i informatici'),
(39985, 'https://ror.org/04a1nmz13', 'it', 1, 'https://ror.org/04a1nmz13 Accademia di Belle Arti di Roma'),
(39986, 'https://ror.org/029q6vx61', 'it', 1, 'https://ror.org/029q6vx61 Accademia di Belle Arti di Sassari'),
(39987, 'https://ror.org/011aefy29', 'en', 1, 'https://ror.org/011aefy29 College of Nursing in Celje Visoka zdravstvena šola v Celju'),
(39988, 'https://ror.org/017e2a614', 'en', 1, 'https://ror.org/017e2a614 College of Management “Edukacja” Wyższa Szkoła Zarządzania "Edukacja"'),
(39989, 'https://ror.org/018jcmk18', 'it', 1, 'https://ror.org/018jcmk18 Accademia di Belle Arti di Urbino'),
(39990, 'https://ror.org/009epmp89', 'en', 1, 'https://ror.org/009epmp89 College of Occupational Safety and Health Visoka škola za sigurnost'),
(39991, 'https://ror.org/01cf8y887', 'it', 1, 'https://ror.org/01cf8y887 Accademia di Belle Arti di Venezia'),
(39992, 'https://ror.org/05re2x545', 'en', 1, 'https://ror.org/05re2x545 Burg Giebichenstein Kunsthochschule Halle Burg Giebichenstein University of Art and Design Halle'),
(39993, 'https://ror.org/02a5sx544', 'en', 1, 'https://ror.org/02a5sx544 College of Physical Education and Sport Palestra Vysoká škola telesné výchovy a sportu Palestra'),
(39994, 'https://ror.org/058k9k832', 'en', 1, 'https://ror.org/058k9k832 European University Evropski Univerzitet'),
(39995, 'https://ror.org/055dvgm08', 'en', 1, 'https://ror.org/055dvgm08 Business Academy Aarhus'),
(39996, 'https://ror.org/03v7b8950', 'sl', 1, 'https://ror.org/03v7b8950 Izobraževalni Center Piramida Maribor'),
(39997, 'https://ror.org/045hatt54', 'en', 1, 'https://ror.org/045hatt54 College of Business and Hotel Management Vysoká škola obchodní a hotelová'),
(39998, 'https://ror.org/059hjkt43', 'hr', 1, 'https://ror.org/059hjkt43 Faculty for Business Management Fakultet za Poslovni Menadžment u Baru'),
(39999, 'https://ror.org/01mpgt112', 'cs', 1, 'https://ror.org/01mpgt112 Vysoká Škola Realitní Institut Franka Dysona'),
(40000, 'https://ror.org/00dnfj623', 'en', 1, 'https://ror.org/00dnfj623 Hanns Eisler College or Academy of Music Hochschule für Musik Hanns Eisler'),
(40001, 'https://ror.org/022gkxm60', 'en', 1, 'https://ror.org/022gkxm60 Collegium Varsoviense'),
(40002, 'https://ror.org/01k6gm036', 'hr', 1, 'https://ror.org/01k6gm036 Baltazar Zaprešić University of Applied Sciences'),
(40003, 'https://ror.org/00r6ym970', 'en', 1, 'https://ror.org/00r6ym970 Latvia Business College Latvijas Biznesa Koledža'),
(40004, 'https://ror.org/02zj71846', 'en', 1, 'https://ror.org/02zj71846 Holy Cross University'),
(40005, 'https://ror.org/028yp0d20', 'en', 1, 'https://ror.org/028yp0d20 Cracow School of Health Promotion Krakowska Wyższa Szkoła Promocji Zdrowia'),
(40006, 'https://ror.org/01hkc4630', 'en', 1, 'https://ror.org/01hkc4630 Fachhochschule Erfurt University of Applied Sciences Erfurt'),
(40007, 'https://ror.org/03jn6k846', 'en', 1, 'https://ror.org/03jn6k846 Visoka Poslovna Skola Zagreb Zagreb School of Business'),
(40008, 'https://ror.org/04ac3f410', 'pl', 1, 'https://ror.org/04ac3f410 Gliwicka Wyższa Szkoła Przedsiębiorczości'),
(40009, 'https://ror.org/03cjdzf13', 'en', 1, 'https://ror.org/03cjdzf13 Casa College'),
(40010, 'https://ror.org/00q24dt49', 'en', 1, 'https://ror.org/00q24dt49 Global College'),
(40011, 'https://ror.org/00jdhb158', 'cs', 1, 'https://ror.org/00jdhb158 Film Academy of Miroslav Ondříček Filmová Akademie Miroslava Ondříčka v Písku'),
(40012, 'https://ror.org/01svh8112', 'pl', 1, 'https://ror.org/01svh8112 Wyższa Szkoła Bezpieczeństwa i Securities Services w Warszawie'),
(40013, 'https://ror.org/05k8mpr32', 'no_lang_code', 1, 'https://ror.org/05k8mpr32 Smart Separations (United Kingdom)'),
(40014, 'https://ror.org/01esc8r67', 'en', 1, 'https://ror.org/01esc8r67 Hellenic Military Academy Στρατιωτική Σχολή Ευελπίδων'),
(40015, 'https://ror.org/05834nb68', 'en', 1, 'https://ror.org/05834nb68 University of Security in Poznań Wyższa Szkoła Bezpieczeństwa w Poznaniu'),
(40016, 'https://ror.org/00996c044', 'en', 1, 'https://ror.org/00996c044 Catholic University of Applied Social Sciences Katholische Hochschule für Sozialwesen Berlin'),
(40017, 'https://ror.org/04vd30725', 'en', 1, 'https://ror.org/04vd30725 Europejska Uczelnia Społeczno-Techniczna w Radomiu Radom Academy of Social and Technical Sciences'),
(40018, 'https://ror.org/053n55597', 'cs', 1, 'https://ror.org/053n55597 Evropský Polytechnický Institut Evropský polytechnický institut'),
(40019, 'https://ror.org/05gjxaj47', 'pl', 1, 'https://ror.org/05gjxaj47 Wyższa Szkoła Nauk Społecznych z Siedzibą w Lublinie'),
(40020, 'https://ror.org/054y8ka78', 'en', 1, 'https://ror.org/054y8ka78 European Polytechnical University Европейския политехнически университет'),
(40021, 'https://ror.org/00qz2zp29', 'pl', 1, 'https://ror.org/00qz2zp29 Wyższa Szkoła Planowania Strategicznego'),
(40022, 'https://ror.org/03jfnxv58', 'en', 1, 'https://ror.org/03jfnxv58 G. S. Rakovski National Defence College Военна академия Г. С. Раковски'),
(40023, 'https://ror.org/03rvrbb45', 'en', 1, 'https://ror.org/03rvrbb45 Higher Ecclesiastical Academy of Athens Ανώτατη Εκκλησιαστική Ακαδημία Αθήνας'),
(40024, 'https://ror.org/00gkm5b90', 'en', 1, 'https://ror.org/00gkm5b90 University College of Tourism and Ecology Wyższa Szkoła Turystyki i Ekologii w Suchej Beskidzkiej'),
(40025, 'https://ror.org/02em10776', 'en', 1, 'https://ror.org/02em10776 Gdansk School of Higher Education Gdańska Szkoła Wyższa'),
(40026, 'https://ror.org/01x1jeh78', 'en', 1, 'https://ror.org/01x1jeh78 International School of Law and Business Tarptautinė teisės ir verslo aukštoji mokykla'),
(40027, 'https://ror.org/054ywmw83', 'en', 1, 'https://ror.org/054ywmw83 Higher Vocational College for Hospitality and Tourism Bled Višja Strokovna Šola za Gostinstvo in Turizem Bled'),
(40028, 'https://ror.org/00fwg7016', 'pl', 1, 'https://ror.org/00fwg7016 Gdansk Management College Wyższa Szkoła Zarządzania w Gdańsku'),
(40029, 'https://ror.org/02412rh32', 'sl', 1, 'https://ror.org/02412rh32 Višja Strokovna Šola za Gostinstvo in Turizem Maribor'),
(40030, 'https://ror.org/05msvfx67', 'en', 1, 'https://ror.org/05msvfx67 Gedik University Gedik Üniversitesi'),
(40031, 'https://ror.org/02k7q2e66', 'pl', 1, 'https://ror.org/02k7q2e66 Uczelnia Zawodowa Zagłębia Miedziowego w Lubinie'),
(40032, 'https://ror.org/05649x844', 'lt', 1, 'https://ror.org/05649x844 Kauno Mišku ir Aplinkos Inžinerijos Kolegija'),
(40033, 'https://ror.org/055mc4536', 'en', 1, 'https://ror.org/055mc4536 Malopolska Higher Vocational School of J. Dietl in Kraków Małopolska Wyższa Szkoła im. Józefa Dietla'),
(40034, 'https://ror.org/05450rm96', 'en', 1, 'https://ror.org/05450rm96 Kaunas University of Applied Engineering Sciences Kauno technikos kolegijos'),
(40035, 'https://ror.org/01h7vw195', 'en', 1, 'https://ror.org/01h7vw195 Deutsche Hochschule der Polizei German Police University'),
(40036, 'https://ror.org/05fwp8t64', 'de', 1, 'https://ror.org/05fwp8t64 Hochschule der Deutschen Bundesbank'),
(40037, 'https://ror.org/01n3nvq33', 'en', 1, 'https://ror.org/01n3nvq33 Ipek University'),
(40038, 'https://ror.org/02kw9m715', 'pl', 1, 'https://ror.org/02kw9m715 Dolnośląska Wyższa Szkoła Przedsiębiorczości i Techniki w Polkowicach'),
(40039, 'https://ror.org/01nxdaw82', 'en', 1, 'https://ror.org/01nxdaw82 KES College Κολλέγιο ΚΕΣ'),
(40040, 'https://ror.org/00bav2821', 'en', 1, 'https://ror.org/00bav2821 University Ecclesiastical Academy of Thessaloniki Ανώτατη Εκκλησιαστική Ακαδημία Θεσσαλονίκης'),
(40041, 'https://ror.org/02gkfsf47', 'en', 1, 'https://ror.org/02gkfsf47 LUCA School of Arts'),
(40042, 'https://ror.org/03zfxaj88', 'pl', 1, 'https://ror.org/03zfxaj88 Higher School of Humanities in Leszno Wyższa Szkoła Humanistyczna'),
(40043, 'https://ror.org/01bx57d48', 'en', 1, 'https://ror.org/01bx57d48 Higher Institute for Artistic Industries Faenza Istituto Superiore per le Industrie Artistiche'),
(40044, 'https://ror.org/05xtce923', 'en', 1, 'https://ror.org/05xtce923 School of Administration in Bielsko-Biala Wyższa Szkoła Administracji w Bielsku-Białej'),
(40045, 'https://ror.org/01cb0p019', 'en', 1, 'https://ror.org/01cb0p019 Higher Institute for Artistic Industries Firenze Istituto Superiore per le Industrie Artistiche'),
(40046, 'https://ror.org/00gn1hm60', 'pl', 1, 'https://ror.org/00gn1hm60 Gnieźnieńska Szkoła Wyższa Milenium'),
(40047, 'https://ror.org/02ggy9z10', 'en', 1, 'https://ror.org/02ggy9z10 Higher Institute for Artistic Industries Urbino Istituto Superiore per le Industrie Artistiche'),
(40048, 'https://ror.org/0123m2387', 'en', 1, 'https://ror.org/0123m2387 Institute and Academy of Multimedia Inštitut in Akademija za Multimedije'),
(40049, 'https://ror.org/00vk6ps98', 'en', 1, 'https://ror.org/00vk6ps98 Theatre College Luben Groys Театрален колеж Любен Гройс'),
(40050, 'https://ror.org/01yms7j39', 'en', 1, 'https://ror.org/01yms7j39 Academy of Business and Health Sciences in Lodz Wyższa Szkoła Biznesu i Nauk o Zdrowiu'),
(40051, 'https://ror.org/02588qx62', 'pl', 1, 'https://ror.org/02588qx62 Wyższa Szkoła Biznesu w Gorzowie Wielkopolskim'),
(40052, 'https://ror.org/00a736592', 'en', 1, 'https://ror.org/00a736592 Design School Kolding Designskolen Kolding'),
(40053, 'https://ror.org/02re32a17', 'en', 1, 'https://ror.org/02re32a17 Hochschule Mainz University of Applied Sciences Mainz'),
(40054, 'https://ror.org/04gd58c86', 'en', 1, 'https://ror.org/04gd58c86 IBA Erhvervsakademi International Business Academy'),
(40055, 'https://ror.org/03jjt5g98', 'en', 1, 'https://ror.org/03jjt5g98 Kolping University of Applied Sciences'),
(40056, 'https://ror.org/000yekt70', 'lv', 1, 'https://ror.org/000yekt70 Malnavas koledža'),
(40057, 'https://ror.org/01n80c364', 'en', 1, 'https://ror.org/01n80c364 Sopocka Szkoła Wyższa Sopot University of Applied Science'),
(40058, 'https://ror.org/03y1x4f32', 'en', 1, 'https://ror.org/03y1x4f32 Music and Arts University of the City of Vienna Musik und Kunst Privatuniversität der Stadt Wien'),
(40059, 'https://ror.org/02vnvpc56', 'en', 1, 'https://ror.org/02vnvpc56 Jan Amos Komeński State School of Higher Vocational Education Państwowa Wyższa Szkoła Zawodowa im. Jana Amosa Komeńskiego w Lesznie'),
(40060, 'https://ror.org/01w09y597', 'en', 1, 'https://ror.org/01w09y597 Mannheim University of Music and Performing Arts Staatliche Hochschule für Musik und Darstellende Kunst Mannheim'),
(40061, 'https://ror.org/015qf5s17', 'en', 1, 'https://ror.org/015qf5s17 Radom College Radomska Szkoła Wyższa'),
(40062, 'https://ror.org/050khj261', 'en', 1, 'https://ror.org/050khj261 Marijampole College Marijampoles Kolejia'),
(40063, 'https://ror.org/04ejbez48', 'en', 1, 'https://ror.org/04ejbez48 Jēkabpils Agrobiznesa Koledža Jekabpils Agrobusiness College'),
(40064, 'https://ror.org/004481c75', 'pl', 1, 'https://ror.org/004481c75 Academy of Hotel Management and Catering Industry Wyższa Szkoła Hotelarstwa i Gastronomii'),
(40065, 'https://ror.org/01c9ma830', 'en', 1, 'https://ror.org/01c9ma830 Lääne-Viru College Lääne-Viru Rakenduskõrgkool'),
(40066, 'https://ror.org/053mnhb64', 'en', 1, 'https://ror.org/053mnhb64 University of Finance, Business and Entrepreneurship Висше училище по застраховане и финанси'),
(40067, 'https://ror.org/03xws5b35', 'nl', 1, 'https://ror.org/03xws5b35 Marnix Academie'),
(40068, 'https://ror.org/030bm8r25', 'pl', 1, 'https://ror.org/030bm8r25 Uczelnia Jańskiego w Łomży'),
(40069, 'https://ror.org/013cxrg50', 'en', 1, 'https://ror.org/013cxrg50 Larnaca College'),
(40070, 'https://ror.org/045t45114', 'pl', 1, 'https://ror.org/045t45114 Wyższa Szkoła Zarządzania Środowiskiem w Tucholi'),
(40071, 'https://ror.org/03aky0p13', 'de', 1, 'https://ror.org/03aky0p13 Media Design University for Design and Computer Science Mediadesign Hochschule für Design und Informatik'),
(40072, 'https://ror.org/024gf7f83', 'en', 1, 'https://ror.org/024gf7f83 Međimursko Veleučilište u Čakovcu Polytechnic of Međimurje in Čakovec'),
(40073, 'https://ror.org/016kfbw71', 'en', 1, 'https://ror.org/016kfbw71 MEF International School'),
(40074, 'https://ror.org/051fr2332', 'en', 1, 'https://ror.org/051fr2332 Institute of Structural Macrokinetics and Materials Science Институт структурной макрокинетики и проблем материаловедения Российской академии наук'),
(40075, 'https://ror.org/0379sy433', 'en', 1, 'https://ror.org/0379sy433 Energy Research Institute Федеральное государственное бюджетное учреждение науки Институт энергетических исследований Российской академии наук'),
(40076, 'https://ror.org/059hj0296', 'it', 1, 'https://ror.org/059hj0296 Conservatorio Statale di Musica Nicola Sala - Benevento'),
(40077, 'https://ror.org/0546v0856', 'cs', 1, 'https://ror.org/0546v0856 Karel Englis College Vysoká škola Karla Engliše'),
(40078, 'https://ror.org/04cdzwd37', 'en', 1, 'https://ror.org/04cdzwd37 Merchant Marine Academy Ακαδημίες Εμπορικού Ναυτικού'),
(40079, 'https://ror.org/05w57eq63', 'pl', 1, 'https://ror.org/05w57eq63 Kaszubsko-Pomorska Szkoła Wyższa'),
(40080, 'https://ror.org/02fnn6t22', 'it', 1, 'https://ror.org/02fnn6t22 Conservatorio di Musica "G.B. Martini"'),
(40081, 'https://ror.org/03pqf0084', 'en', 1, 'https://ror.org/03pqf0084 Geschichte des Internationalen Hochschulinstituts (IHI) Zittau International University Institute');
INSERT INTO `rors` VALUES
(40082, 'https://ror.org/00ewfne71', 'en', 1, 'https://ror.org/00ewfne71 Metropolitan University Univerzitet Metropolitan'),
(40083, 'https://ror.org/019yfxm71', 'it', 1, 'https://ror.org/019yfxm71 Conservatorio di Musica Nino Rota'),
(40084, 'https://ror.org/041ws6x07', 'it', 1, 'https://ror.org/041ws6x07 Istituto di Alta Formazione Musicale Conservatorio "Claudio Monteverdi"'),
(40085, 'https://ror.org/01pysaw17', 'it', 1, 'https://ror.org/01pysaw17 Conservatorio di Musica "Luca Marenzio"'),
(40086, 'https://ror.org/03ywbpv23', 'it', 1, 'https://ror.org/03ywbpv23 Conservatorio di Musica Pierluigi da Palestrina'),
(40087, 'https://ror.org/04jdsqj08', 'pl', 1, 'https://ror.org/04jdsqj08 Wyższa Szkoła Pedagogiki i Administracji im. Mieszka I w Poznaniu'),
(40088, 'https://ror.org/0286fq017', 'it', 1, 'https://ror.org/0286fq017 Conservatorio di Musica San Pietro a Majella'),
(40089, 'https://ror.org/03n0s6k02', 'it', 1, 'https://ror.org/03n0s6k02 Conservatorio di Musica Lorenzo Perosi'),
(40090, 'https://ror.org/049h22071', 'en', 1, 'https://ror.org/049h22071 Arte Institute'),
(40091, 'https://ror.org/01tqmsq19', 'en', 1, 'https://ror.org/01tqmsq19 Academia Tehnică Militară Military Technical Academy'),
(40092, 'https://ror.org/002vdk888', 'it', 1, 'https://ror.org/002vdk888 Conservatorio di Musica Agostino Steffani'),
(40093, 'https://ror.org/01azrym08', 'en', 1, 'https://ror.org/01azrym08 M.N. Mikheev Institute of Metal Physics Институт физики металлов имени М.Н. Михеева Уральского отделения РАН'),
(40094, 'https://ror.org/05hfa9864', 'it', 1, 'https://ror.org/05hfa9864 Conservatorio Guido Cantelli di Novara'),
(40095, 'https://ror.org/01ktrdf59', 'it', 1, 'https://ror.org/01ktrdf59 Conservatorio di Musica Cesare Pollini'),
(40096, 'https://ror.org/03pbxrn39', 'it', 1, 'https://ror.org/03pbxrn39 Conservatorio di Musica "Giuseppe Verdi"'),
(40097, 'https://ror.org/0149fbq67', 'it', 1, 'https://ror.org/0149fbq67 Conservatorio Statale di Musica A. Buzzolla'),
(40098, 'https://ror.org/03q8zdw85', 'en', 1, 'https://ror.org/03q8zdw85 Accademia Nazionale di Arte Drammatica Silvio DAmico Silvio d''Amico National Academy of Dramatic Arts'),
(40099, 'https://ror.org/05a3mms16', 'en', 1, 'https://ror.org/05a3mms16 Academia Naţională de Educaţie Fizică şi Sport Bucureşti National Academy of Physical Education and Sport'),
(40100, 'https://ror.org/05gd3g169', 'it', 1, 'https://ror.org/05gd3g169 Conservatorio di Musica Stanislao Giacomantonio'),
(40101, 'https://ror.org/00ermve21', 'en', 1, 'https://ror.org/00ermve21 Conservatorio Antonio Vivaldi Conservatorio Di Musica A. Vivaldi'),
(40102, 'https://ror.org/048mbp462', 'en', 1, 'https://ror.org/048mbp462 Community of Professional Sociologists Сообщество профессиональных социологов'),
(40103, 'https://ror.org/00ym2nt63', 'it', 1, 'https://ror.org/00ym2nt63 Conservatorio di Musica G.F. Ghedini'),
(40104, 'https://ror.org/03hmgxr98', 'en', 1, 'https://ror.org/03hmgxr98 Lietuvos aukstoji jureivystes mokykla Lithuanian Maritime Academy'),
(40105, 'https://ror.org/01p7e9s80', 'it', 1, 'https://ror.org/01p7e9s80 Conservatorio Statale di Musica Domenico Cimarosa di Avellino'),
(40106, 'https://ror.org/007hhp583', 'it', 1, 'https://ror.org/007hhp583 Conservatorio di Musica Arrigo Boito'),
(40107, 'https://ror.org/059gb4y29', 'it', 1, 'https://ror.org/059gb4y29 Conservatorio di Musica N. Piccinni Conservatory of Bari'),
(40108, 'https://ror.org/0022sh211', 'it', 1, 'https://ror.org/0022sh211 Conservatorio di Musica Giovambattista Pergolesi'),
(40109, 'https://ror.org/02zcvj403', 'it', 1, 'https://ror.org/02zcvj403 Conservatorio di Musica Girolamo Frescobaldi'),
(40110, 'https://ror.org/02zkr7r20', 'it', 1, 'https://ror.org/02zkr7r20 Conservatorio di Musica Luigi Cherubini'),
(40111, 'https://ror.org/05sxd9d78', 'it', 1, 'https://ror.org/05sxd9d78 Conservatorio di Musica di Perugia'),
(40112, 'https://ror.org/04r9pgh69', 'en', 1, 'https://ror.org/04r9pgh69 Private College of Economic Studies Znojmo Soukromá Vysoká Skola Ekonomická Znojmo'),
(40113, 'https://ror.org/0096pt020', 'it', 1, 'https://ror.org/0096pt020 Conservatorio Statale di Musica Gioachino Rossini'),
(40114, 'https://ror.org/01xtfrw48', 'it', 1, 'https://ror.org/01xtfrw48 Conservatorio di Musica Umberto Giordano'),
(40115, 'https://ror.org/00qghhw55', 'en', 1, 'https://ror.org/00qghhw55 Private University of Environmental Sciences in Radom Prywatna Wyższa Szkoła Ochrony Środowiska w Radomiu'),
(40116, 'https://ror.org/02exn6h14', 'it', 1, 'https://ror.org/02exn6h14 Conservatorio di Musica Licinio Refice'),
(40117, 'https://ror.org/033n2z030', 'it', 1, 'https://ror.org/033n2z030 Conservatorio di Musica Niccolò Paganini'),
(40118, 'https://ror.org/04p175r34', 'it', 1, 'https://ror.org/04p175r34 Conservatorio statale di Musica Alfredo Casella'),
(40119, 'https://ror.org/05j03hp45', 'en', 1, 'https://ror.org/05j03hp45 Panevėžys College'),
(40120, 'https://ror.org/031gd3q51', 'it', 1, 'https://ror.org/031gd3q51 Conservatorio di Musica Giacomo Puccini'),
(40121, 'https://ror.org/00r8emz85', 'it', 1, 'https://ror.org/00r8emz85 Conservatorio di Musica Carlo Gesualdo da Venosa Potenza'),
(40122, 'https://ror.org/045975y75', 'it', 1, 'https://ror.org/045975y75 Conservatorio di Musica Francesco Cilea'),
(40123, 'https://ror.org/04rkgm763', 'it', 1, 'https://ror.org/04rkgm763 Conservatorio di Musica Ottorino Respighi'),
(40124, 'https://ror.org/03mm0f366', 'da', 1, 'https://ror.org/03mm0f366 Kriminalforsorgen'),
(40125, 'https://ror.org/02z1v3h34', 'en', 1, 'https://ror.org/02z1v3h34 Pawel Wlodkowic University College in Płock Szkola Wyzsza im. Pawla Wlodkowica w Plocku'),
(40126, 'https://ror.org/03t9v7a05', 'it', 1, 'https://ror.org/03t9v7a05 Conservatorio di Musica Tito Schipa'),
(40127, 'https://ror.org/026hvzx79', 'it', 1, 'https://ror.org/026hvzx79 Conservatorio di Musica ''Francesco Venezze'' di Rovigo'),
(40128, 'https://ror.org/03ax4bc53', 'en', 1, 'https://ror.org/03ax4bc53 Conservatorio di Musica "Lucio Campiani" Music Conservatory of Mantova'),
(40129, 'https://ror.org/01h0gdq60', 'it', 1, 'https://ror.org/01h0gdq60 Conservatorio di Musica G. Martucci'),
(40130, 'https://ror.org/01etzjr60', 'it', 1, 'https://ror.org/01etzjr60 Conservatorio di Musica Luigi Canepa'),
(40131, 'https://ror.org/000bjk220', 'en', 1, 'https://ror.org/000bjk220 Państwowa Medyczna Wyższa Szkoła Zawodowa Public Higher Medical Professional School in Opole'),
(40132, 'https://ror.org/04er5hw95', 'it', 1, 'https://ror.org/04er5hw95 Conservatorio di Musica Egidio R. Duni'),
(40133, 'https://ror.org/05yamzm60', 'en', 1, 'https://ror.org/05yamzm60 Lietuvos Verslo Kolegija Lithuania Business University of Applied Science'),
(40134, 'https://ror.org/03pwnpf38', 'it', 1, 'https://ror.org/03pwnpf38 Conservatorio State Di Musica Giuseppe Verdi'),
(40135, 'https://ror.org/02jk0vd24', 'it', 1, 'https://ror.org/02jk0vd24 Conservatorio di Musica Giuseppe Verdi'),
(40136, 'https://ror.org/04ce52x58', 'it', 1, 'https://ror.org/04ce52x58 Conservatorio di Musica Antonio Scontrino Trapani'),
(40137, 'https://ror.org/02mfyea49', 'en', 1, 'https://ror.org/02mfyea49 Radom Academy of Economics Wyższa Szkoła Handlowa w Radomiu'),
(40138, 'https://ror.org/02bxn5a88', 'it', 1, 'https://ror.org/02bxn5a88 Conservatorio di Musica FA Bonporti Trento'),
(40139, 'https://ror.org/04wnmck86', 'sl', 1, 'https://ror.org/04wnmck86 Šolski Center za Pošto, Ekonomijo in Telekomunikacije'),
(40140, 'https://ror.org/030bz9353', 'sl', 1, 'https://ror.org/030bz9353 Šolski Center Postojna'),
(40141, 'https://ror.org/04yddv436', 'it', 1, 'https://ror.org/04yddv436 Conservatorio Statale di Musica Jacopo Tomadini Udine'),
(40142, 'https://ror.org/04mrtf838', 'pl', 1, 'https://ror.org/04mrtf838 Staropolska Szkoła Wyższa w Kielcach'),
(40143, 'https://ror.org/05y5g2a51', 'en', 1, 'https://ror.org/05y5g2a51 Northern Lithuania College Šiaurės Lietuvos kolegija'),
(40144, 'https://ror.org/05qej6276', 'en', 1, 'https://ror.org/05qej6276 Hellenic Police Academy Αστυνομική Ακαδημία'),
(40145, 'https://ror.org/02akkm420', 'en', 1, 'https://ror.org/02akkm420 Institute of Automation and Control Processes Институт автоматики и процессов управления'),
(40146, 'https://ror.org/03vz3qc29', 'en', 1, 'https://ror.org/03vz3qc29 Evangelische Hochschule Rheinland-Westfalen-Lippe Protestant University of Applied Sciences Rhineland-Westphalia-Lippe'),
(40147, 'https://ror.org/03p6h3k49', 'en', 1, 'https://ror.org/03p6h3k49 Police Academy Polis Akademisi'),
(40148, 'https://ror.org/05xgx1b08', 'en', 1, 'https://ror.org/05xgx1b08 Riga Building College Rīgas Celtniecības koledža'),
(40149, 'https://ror.org/04k70g465', 'it', 1, 'https://ror.org/04k70g465 Conservatorio di Musica Benedetto Marcello di Venezia'),
(40150, 'https://ror.org/01v59d868', 'sl', 1, 'https://ror.org/01v59d868 Šolski Center Šentjur'),
(40151, 'https://ror.org/00da5h096', 'sl', 1, 'https://ror.org/00da5h096 Šolski Center Škofja Loka'),
(40152, 'https://ror.org/03af57g89', 'it', 1, 'https://ror.org/03af57g89 Conservatorio di Verona Evaristo Felice Dall Abaco'),
(40153, 'https://ror.org/036zvka13', 'en', 1, 'https://ror.org/036zvka13 Riga Technical College Rigas Tehniska Koledza'),
(40154, 'https://ror.org/05b7xvc63', 'en', 1, 'https://ror.org/05b7xvc63 Hochschule für Musik Nürnberg Nuremberg University of Music'),
(40155, 'https://ror.org/00r1gaq76', 'it', 1, 'https://ror.org/00r1gaq76 Conservatorio Torrefranca Vibo Valentia'),
(40156, 'https://ror.org/020s1wt84', 'en', 1, 'https://ror.org/020s1wt84 Conservatorio Di Musica di Vicenza Conservatory of Vicenza'),
(40157, 'https://ror.org/05kknxr83', 'en', 1, 'https://ror.org/05kknxr83 Department of Energy, Engineering, Mechanics and Control Processes Федеральное государственное бюджетное учреждение науки Институт энергетических проблем химической физики'),
(40158, 'https://ror.org/059tqvg48', 'en', 1, 'https://ror.org/059tqvg48 Department of Chemistry and Material Sciences'),
(40159, 'https://ror.org/0218eta95', 'en', 1, 'https://ror.org/0218eta95 Department of Physiological Sciences'),
(40160, 'https://ror.org/01twn9665', 'en', 1, 'https://ror.org/01twn9665 Department of Social Sciences'),
(40161, 'https://ror.org/021eek248', 'en', 1, 'https://ror.org/021eek248 Department of Global Issues and International Relations'),
(40162, 'https://ror.org/02ae4g054', 'en', 1, 'https://ror.org/02ae4g054 Division of Historical and Philological Sciences'),
(40163, 'https://ror.org/05wtp9w08', 'en', 1, 'https://ror.org/05wtp9w08 Department of Agricultural Sciences'),
(40164, 'https://ror.org/030sdwr92', 'en', 1, 'https://ror.org/030sdwr92 Hochschule für Gestaltung Offenbach University of Art and Design Offenbach'),
(40165, 'https://ror.org/03z86v888', 'sl', 1, 'https://ror.org/03z86v888 Šolski center Slovenj Gradec'),
(40166, 'https://ror.org/02jr12631', 'sl', 1, 'https://ror.org/02jr12631 Šolski Center Velenje'),
(40167, 'https://ror.org/02b61re56', 'hr', 1, 'https://ror.org/02b61re56 Veleučilište "Nikola Tesla" u Gospiću'),
(40168, 'https://ror.org/02rwycx38', 'en', 1, 'https://ror.org/02rwycx38 San Raffaele University of Rome Università telematica San Raffaele'),
(40169, 'https://ror.org/03p5txy82', 'en', 1, 'https://ror.org/03p5txy82 Celje School of Economics Ekonomska Šola Celje'),
(40170, 'https://ror.org/02zxpkz02', 'sl', 1, 'https://ror.org/02zxpkz02 School Centre Celje Šolski center Celje'),
(40171, 'https://ror.org/04q2mdb48', 'sl', 1, 'https://ror.org/04q2mdb48 Ekonomska Šola Murska Sobota'),
(40172, 'https://ror.org/047ta5t95', 'en', 1, 'https://ror.org/047ta5t95 Państwowa Wyższa Szkoła Zawodowa w Chełmie State School of Higher Education in Chełm'),
(40173, 'https://ror.org/059qxwv46', 'en', 1, 'https://ror.org/059qxwv46 Kranj School Centre Šolski center Kranj'),
(40174, 'https://ror.org/002b21721', 'pl', 1, 'https://ror.org/002b21721 Państwowa Wyższa Szkoła Zawodowa w Ciechanowie'),
(40175, 'https://ror.org/053wngn77', 'sl', 1, 'https://ror.org/053wngn77 Tehniški Solski Center Maribor'),
(40176, 'https://ror.org/02dd2e850', 'en', 1, 'https://ror.org/02dd2e850 School Centre Nova Gorica Šolski center Nova Gorica'),
(40177, 'https://ror.org/04zkp0k73', 'en', 1, 'https://ror.org/04zkp0k73 State Police College Valsts Policijas Koledza'),
(40178, 'https://ror.org/038gsqt29', 'hr', 1, 'https://ror.org/038gsqt29 Visoka Škola za Informacijske Tehnologije Zagreb'),
(40179, 'https://ror.org/03cps2823', 'pl', 1, 'https://ror.org/03cps2823 Wielkopolska Wyższa Szkoła Społeczno-Ekonomiczna'),
(40180, 'https://ror.org/0582p5b89', 'en', 1, 'https://ror.org/0582p5b89 Academy of Tourism and Hotel Management in Gdansk Wyższa Szkoła Turystyki i Hotelarstwa w Gdańsku'),
(40181, 'https://ror.org/01w44h058', 'en', 1, 'https://ror.org/01w44h058 Tartu Academy of Theology Tartu Teoloogia Akadeemia'),
(40182, 'https://ror.org/049h8sz96', 'pl', 1, 'https://ror.org/049h8sz96 Wyższa Szkoła Humanistyczno-Przyrodnicza w Sandomierzu'),
(40183, 'https://ror.org/05hez5t42', 'en', 1, 'https://ror.org/05hez5t42 Süleyman Şah University Süleyman Şah Üniversitesi'),
(40184, 'https://ror.org/02vfz9j23', 'en', 1, 'https://ror.org/02vfz9j23 Forsvarets Høgskoler Norwegian Defence University College'),
(40185, 'https://ror.org/04z58j690', 'en', 1, 'https://ror.org/04z58j690 Polytechnic Pula'),
(40186, 'https://ror.org/02re25503', 'en', 1, 'https://ror.org/02re25503 Westerdals Oslo School of Arts, Communication and Technology'),
(40187, 'https://ror.org/03ed9w591', 'en', 1, 'https://ror.org/03ed9w591 Technological Educational Institute of Central Greece Τεχνολογικό Εκπαιδευτικό Ίδρυμα Στερεάς Ελλάδας'),
(40188, 'https://ror.org/017bbc354', 'de', 1, 'https://ror.org/017bbc354 Turkish-German University Türk-Alman Üniversitesi Türkisch-Deutsche Universität'),
(40189, 'https://ror.org/04fydbf11', 'en', 1, 'https://ror.org/04fydbf11 Instituto Superior de Gestão Bancária Portuguese School of Bank Management'),
(40190, 'https://ror.org/034qvhk73', 'en', 1, 'https://ror.org/034qvhk73 Social Integration State Agency Sociālās Integrācijas Valsts Aģentūrā'),
(40191, 'https://ror.org/04r0j3d36', 'en', 1, 'https://ror.org/04r0j3d36 Państwowa Wyższa Szkoła Zawodowa w Koninie State University of Applied Sciences in Konin'),
(40192, 'https://ror.org/01e2z0p13', 'cs', 1, 'https://ror.org/01e2z0p13 Vysoká Škola Sociálně Správní'),
(40193, 'https://ror.org/01mw24p94', 'en', 1, 'https://ror.org/01mw24p94 Technological Educational Institute of Central Macedonia εχνολογικό Εκπαιδευτικό Ίδρυμα Κεντρικής Μακεδονίας'),
(40194, 'https://ror.org/019w4be96', 'hr', 1, 'https://ror.org/019w4be96 Police Academy Policijska akademija'),
(40195, 'https://ror.org/01prjcc04', 'en', 1, 'https://ror.org/01prjcc04 SRH Hochschule Berlin SRH University Berlin'),
(40196, 'https://ror.org/00g07sz63', 'de', 1, 'https://ror.org/00g07sz63 SRH Hochschule Heidelberg'),
(40197, 'https://ror.org/026kenw55', 'de', 1, 'https://ror.org/026kenw55 SRH Hochschule für Gesundheit Gera'),
(40198, 'https://ror.org/04fxab197', 'en', 1, 'https://ror.org/04fxab197 Natural Science and Technical Academy Isny Naturwissenschaftlich-Technische Akademie Isny'),
(40199, 'https://ror.org/015455k47', 'en', 1, 'https://ror.org/015455k47 Kõrgem Usuteaduslik Seminar Tartu Theological Seminary'),
(40200, 'https://ror.org/04ffw0491', 'en', 1, 'https://ror.org/04ffw0491 Artevelde University College Ghent'),
(40201, 'https://ror.org/021f61w41', 'en', 1, 'https://ror.org/021f61w41 Lübeck Academy of Music Musikhochschule Lübeck'),
(40202, 'https://ror.org/01eajxh73', 'en', 1, 'https://ror.org/01eajxh73 Hochschule für Agrar- und Umweltpädagogik University College for Agrarian and Environmental Pedagogy'),
(40203, 'https://ror.org/029r33q13', 'de', 1, 'https://ror.org/029r33q13 Hochschule für Musik Saar'),
(40204, 'https://ror.org/04bgn1297', 'en', 1, 'https://ror.org/04bgn1297 Higher School of Agribusiness Wyższa Szkoła Agrobiznesu w Łomży Высшая Школа Агробизнеса в Ломже'),
(40205, 'https://ror.org/05m1pqv80', 'en', 1, 'https://ror.org/05m1pqv80 Hochschule für Musik Würzburg University of Music Würzburg'),
(40206, 'https://ror.org/03cmq3458', 'de', 1, 'https://ror.org/03cmq3458 Pädagogische Hochschule Viktor Frankl Hochschule University College of Teacher Education Carinthia'),
(40207, 'https://ror.org/00my0bv27', 'en', 1, 'https://ror.org/00my0bv27 Baltic Psychology and Management University College Baltijas Psiholoģijas un Menedžmenta Augstskola Балтийская Психология и институт менеджмента'),
(40208, 'https://ror.org/00g11es29', 'en', 1, 'https://ror.org/00g11es29 SMK University of Applied Social Sciences Socialiniu mokslu kolegija'),
(40209, 'https://ror.org/05nrjb178', 'nl', 1, 'https://ror.org/05nrjb178 Katholieke Pabo Zwolle University of Professional Teacher Education PABO Zwolle'),
(40210, 'https://ror.org/01wcw8667', 'pl', 1, 'https://ror.org/01wcw8667 Wyższa Szkoła Przedsiębiorczości i Marketingu w Chrzanowie'),
(40211, 'https://ror.org/02832sw36', 'en', 1, 'https://ror.org/02832sw36 Staatliche Hochschule für Musik Trossingen Trossingen University of Music'),
(40212, 'https://ror.org/01c4qa656', 'en', 1, 'https://ror.org/01c4qa656 Bydgoska Szkoła Wyższa University of Bydgoszcz'),
(40213, 'https://ror.org/02d89at43', 'en', 1, 'https://ror.org/02d89at43 Hochschule der Bundesagentur für Arbeit University of Applied Labour Studies of the Federal Employment Agency'),
(40214, 'https://ror.org/0203q4h88', 'en', 1, 'https://ror.org/0203q4h88 Georgia Christian University'),
(40215, 'https://ror.org/05973tj24', 'cs', 1, 'https://ror.org/05973tj24 Vysoká Skola Aplikovaného Práva'),
(40216, 'https://ror.org/040gs8e06', 'de', 1, 'https://ror.org/040gs8e06 Haute École Pédagogique du Valais Pädagogische Hochschule Wallis'),
(40217, 'https://ror.org/026c3xn33', 'en', 1, 'https://ror.org/026c3xn33 Hochschule der Wirtschaft für Management University of Applied Management Studies'),
(40218, 'https://ror.org/040zb1w28', 'en', 1, 'https://ror.org/040zb1w28 Eesti Infotehnoloogia Kolledž Estonian Information Technology College'),
(40219, 'https://ror.org/038fwdn76', 'en', 1, 'https://ror.org/038fwdn76 Hochschule für Angewandtes Management University of Applied Management'),
(40220, 'https://ror.org/01bvm0h13', 'fr', 1, 'https://ror.org/01bvm0h13 Haute École Pédagogique du Canton de Vaud'),
(40221, 'https://ror.org/0219t5m94', 'en', 1, 'https://ror.org/0219t5m94 Vilniaus Verslo Kolegija Vilnius Business College'),
(40222, 'https://ror.org/02hy76n39', 'en', 1, 'https://ror.org/02hy76n39 Vilniaus Kooperacijos Kolegija Vilnius Cooperative College'),
(40223, 'https://ror.org/004gnah66', 'en', 1, 'https://ror.org/004gnah66 Vilniaus Kolegija Vilnius University of Applied Sciences'),
(40224, 'https://ror.org/01wx0d888', 'de', 1, 'https://ror.org/01wx0d888 Fachhochschule für Management & Kommunikation'),
(40225, 'https://ror.org/052f72b28', 'en', 1, 'https://ror.org/052f72b28 Vilniaus Dizaino Kolegija Vilnius College of Design'),
(40226, 'https://ror.org/00tnby758', 'lt', 1, 'https://ror.org/00tnby758 V. A. Graičiūno Aukštoji Vadybos Mokykla'),
(40227, 'https://ror.org/020hkyk57', 'en', 1, 'https://ror.org/020hkyk57 Vilniaus technologijų ir dizaino kolegija Vilnius College of Technologies and Design'),
(40228, 'https://ror.org/02d290x88', 'de', 1, 'https://ror.org/02d290x88 Pädagogische Hochschule Burgenland University of Education in Burgenland'),
(40229, 'https://ror.org/019y81x83', 'pl', 1, 'https://ror.org/019y81x83 Szczecińska Szkoła Wyższa Collegium Balticum'),
(40230, 'https://ror.org/01k5x5w08', 'en', 1, 'https://ror.org/01k5x5w08 Võru County Vocational Training Centre Võrumaa Kutsehariduskeskus'),
(40231, 'https://ror.org/00vcnds94', 'de', 1, 'https://ror.org/00vcnds94 Philosophisch-Theologische Hochschule Benediktbeuern'),
(40232, 'https://ror.org/038svqn12', 'pl', 1, 'https://ror.org/038svqn12 Wyższa Szkoła Zarządzania i Przedsiębiorczości'),
(40233, 'https://ror.org/01ej3e061', 'de', 1, 'https://ror.org/01ej3e061 Philosophisch-Theologische Hochschule SVD St. Augustin'),
(40234, 'https://ror.org/01kdhhd16', 'en', 1, 'https://ror.org/01kdhhd16 Brussels Management School'),
(40235, 'https://ror.org/01v8nfs80', 'en', 1, 'https://ror.org/01v8nfs80 Warsaw Academy of Computer Science, Management and Administration Wyższa Szkoła Informatyki, Zarządzania i Administracji'),
(40236, 'https://ror.org/02hdve317', 'en', 1, 'https://ror.org/02hdve317 Academy of Fine Arts Karlsruhe Staatliche Akademie der Bildenden Künste Karlsruhe'),
(40237, 'https://ror.org/007cpvh39', 'fr', 1, 'https://ror.org/007cpvh39 Haute École en Hainaut'),
(40238, 'https://ror.org/04pjj9g71', 'en', 1, 'https://ror.org/04pjj9g71 Warsaw Management University Wyższa Szkoła Menedżerska'),
(40239, 'https://ror.org/05w9pqd22', 'en', 1, 'https://ror.org/05w9pqd22 Yeshiva Derech Chaim'),
(40240, 'https://ror.org/044rf5p19', 'en', 1, 'https://ror.org/044rf5p19 Academy of Fine Arts Munich Akademie der Bildenden Künste München'),
(40241, 'https://ror.org/03bthq143', 'en', 1, 'https://ror.org/03bthq143 Fachhochschule Westküste West Coast University of Applied Sciences'),
(40242, 'https://ror.org/00rmfhk22', 'en', 1, 'https://ror.org/00rmfhk22 Cuiavian University Kujawska Szkoła Wyższa we Włocławku'),
(40243, 'https://ror.org/03n0qtw28', 'cs', 1, 'https://ror.org/03n0qtw28 Westmoravian College Třebíč Západomoravská vysoká škola Třebíč'),
(40244, 'https://ror.org/00zbhen47', 'de', 1, 'https://ror.org/00zbhen47 Berlin-Weissensee Art Academy Kunsthochschule Berlin-Weißensee'),
(40245, 'https://ror.org/03py54049', 'en', 1, 'https://ror.org/03py54049 Ernst Busch Academy of Dramatic Arts Hochschule für Schauspielkunst Ernst Busch'),
(40246, 'https://ror.org/01rhp6n73', 'en', 1, 'https://ror.org/01rhp6n73 Erhvervsakademi Sjælland Zealand Institute of Business and Technology'),
(40247, 'https://ror.org/00a7fhh63', 'no_lang_code', 1, 'https://ror.org/00a7fhh63 Zlatarna Celje (Slovenia)'),
(40248, 'https://ror.org/03kmar131', 'fr', 1, 'https://ror.org/03kmar131 Haute École de la Province de Liège'),
(40249, 'https://ror.org/040dxjz28', 'de', 1, 'https://ror.org/040dxjz28 Fachhochschule für öffentliche Verwaltung, Polizei und Rechtspflege des Landes Mecklenburg-Vorpommern'),
(40250, 'https://ror.org/02h3vgm10', 'en', 1, 'https://ror.org/02h3vgm10 Zemaitija College Žemaitijos Kolegija'),
(40251, 'https://ror.org/02k7ygp86', 'fr', 1, 'https://ror.org/02k7ygp86 Académie des Beaux-Arts de Tournai'),
(40252, 'https://ror.org/05ghhx264', 'en', 1, 'https://ror.org/05ghhx264 Pädagogische Hochschule Zug University of Teacher Education Zug'),
(40253, 'https://ror.org/0200zrw72', 'fr', 1, 'https://ror.org/0200zrw72 Académie Royale des Beaux-Arts Koninklijke Academie voor Schone Kunsten van Brussel'),
(40254, 'https://ror.org/04z03cz64', 'de', 1, 'https://ror.org/04z03cz64 Hochschule der Bildenden Künste Saar'),
(40255, 'https://ror.org/02743t710', 'de', 1, 'https://ror.org/02743t710 Norddeutsche Hochschule für Rechtspflege'),
(40256, 'https://ror.org/01k0y5630', 'fr', 1, 'https://ror.org/01k0y5630 Académie Royale des Beaux-Arts de Liège'),
(40257, 'https://ror.org/02g11qe83', 'de', 1, 'https://ror.org/02g11qe83 Fachhochschule für Rechtspflege Nordrhein Westfalen'),
(40258, 'https://ror.org/0572yc306', 'de', 1, 'https://ror.org/0572yc306 SRH Hochschule für Wirtschaft und Medien Calw'),
(40259, 'https://ror.org/04tr4sk76', 'de', 1, 'https://ror.org/04tr4sk76 Fachhochschule für Finanzen Nordrhein Westfalen'),
(40260, 'https://ror.org/04j1sr579', 'de', 1, 'https://ror.org/04j1sr579 Hochschule für Gesundheit & Sport, Technik & Kunst'),
(40261, 'https://ror.org/01d4n6n22', 'de', 1, 'https://ror.org/01d4n6n22 Hochschule für Kunsttherapie Nürtingen'),
(40262, 'https://ror.org/01zb1m871', 'en', 1, 'https://ror.org/01zb1m871 Conservatoire Royal de Liège Koninklijk Conservatorium Luik Royal Conservatory of Liège'),
(40263, 'https://ror.org/035ckv436', 'hr', 1, 'https://ror.org/035ckv436 Fakultet za Mediteranske Poslovne Studije'),
(40264, 'https://ror.org/01jq1mc68', 'hr', 1, 'https://ror.org/01jq1mc68 Fakultet za menadžment Herceg Novi'),
(40265, 'https://ror.org/02qbcmz19', 'en', 1, 'https://ror.org/02qbcmz19 Fachhochschule für öffentliche Verwaltung Nordrhein-Westfalen University of Applied Sciences for Public Administration and Management'),
(40266, 'https://ror.org/03ba15j53', 'fr', 1, 'https://ror.org/03ba15j53 École de Recherche Graphique'),
(40267, 'https://ror.org/0530gbs37', 'de', 1, 'https://ror.org/0530gbs37 IB Hochschule'),
(40268, 'https://ror.org/05d6z1532', 'de', 1, 'https://ror.org/05d6z1532 Hochschule für Finanzen Rheinland Pfalz'),
(40269, 'https://ror.org/00y3r0391', 'fr', 1, 'https://ror.org/00y3r0391 La Cambre'),
(40270, 'https://ror.org/02e5n0e79', 'de', 1, 'https://ror.org/02e5n0e79 AMD Academy of Fashion and Design Akademie Mode & Design'),
(40271, 'https://ror.org/02a8wk986', 'en', 1, 'https://ror.org/02a8wk986 AKAD University'),
(40272, 'https://ror.org/05ez1q344', 'fr', 1, 'https://ror.org/05ez1q344 École Supérieure des Arts de l''Image Le 75'),
(40273, 'https://ror.org/0167r2g29', 'de', 1, 'https://ror.org/0167r2g29 Merz Akademie'),
(40274, 'https://ror.org/0243j3z07', 'de', 1, 'https://ror.org/0243j3z07 European Fernhochschule Hamburg Europäische Fernhochschule Hamburg'),
(40275, 'https://ror.org/04580fn28', 'de', 1, 'https://ror.org/04580fn28 Hamburger Fern-Hochschule'),
(40276, 'https://ror.org/02zwsc421', 'fr', 1, 'https://ror.org/02zwsc421 École Supérieure des Arts Saint-Luc de Liège'),
(40277, 'https://ror.org/033hftr56', 'pl', 1, 'https://ror.org/033hftr56 Wyższa Szkoła Zdrowia Urody i Edukacji'),
(40278, 'https://ror.org/05xxykr42', 'pl', 1, 'https://ror.org/05xxykr42 Toruńska Wyższa Szkoła Przedsiębiorczości'),
(40279, 'https://ror.org/01qhsr268', 'fr', 1, 'https://ror.org/01qhsr268 Institut des Arts de Diffusion'),
(40280, 'https://ror.org/01eyhzm47', 'de', 1, 'https://ror.org/01eyhzm47 Fachhochschule für Verwaltung des Saarlandes'),
(40281, 'https://ror.org/03waye253', 'de', 1, 'https://ror.org/03waye253 Fachhochschule der Sächsischen Verwaltung Meißen'),
(40282, 'https://ror.org/0578r5v59', 'fr', 1, 'https://ror.org/0578r5v59 Institut National Supérieur des Arts du Spectacle et des Techniques de Diffusion'),
(40283, 'https://ror.org/01hr7tp17', 'fr', 1, 'https://ror.org/01hr7tp17 Institut Supérieur de Musique et de Pédagogie'),
(40284, 'https://ror.org/01qjbb734', 'en', 1, 'https://ror.org/01qjbb734 Hochschule der Sächsischen Polizei Saxon Police Force'),
(40285, 'https://ror.org/015a98c38', 'de', 1, 'https://ror.org/015a98c38 Accadis Hochschule Bad Homburg'),
(40286, 'https://ror.org/03azwf096', 'fr', 1, 'https://ror.org/03azwf096 École d''Enseignement Supérieur d''Art de Bordeaux'),
(40287, 'https://ror.org/00tf9x563', 'en', 1, 'https://ror.org/00tf9x563 Arts²'),
(40288, 'https://ror.org/04bf6dq94', 'en', 1, 'https://ror.org/04bf6dq94 Pädagogische Hochschule Thurgau Thurgau University of Teacher Education'),
(40289, 'https://ror.org/00vkbtf98', 'de', 1, 'https://ror.org/00vkbtf98 Wilhelm Büchner Hochschule'),
(40290, 'https://ror.org/05aemnj50', 'ro', 1, 'https://ror.org/05aemnj50 Universitatea Avram Iancu'),
(40291, 'https://ror.org/01gm0md04', 'en', 1, 'https://ror.org/01gm0md04 Provadis Hochschule Provadis School of International Management and Technology'),
(40292, 'https://ror.org/04mvanw22', 'en', 1, 'https://ror.org/04mvanw22 Fachhochschule Polizei Sachsen-Anhalt University of Applied Police Sciences Saxony Anhalt'),
(40293, 'https://ror.org/051rc7j94', 'de', 1, 'https://ror.org/051rc7j94 Diploma Hochschule Diploma University'),
(40294, 'https://ror.org/003xt6d81', 'de', 1, 'https://ror.org/003xt6d81 Fachhochschule für Verwaltung und Dienstleistung'),
(40295, 'https://ror.org/04sv11p30', 'fr', 1, 'https://ror.org/04sv11p30 Haute École de la Province de Namur'),
(40296, 'https://ror.org/04eghjs57', 'fr', 1, 'https://ror.org/04eghjs57 École Nationale Supérieure d''Architecture de Bretagne'),
(40297, 'https://ror.org/03y37ca41', 'fr', 1, 'https://ror.org/03y37ca41 Haute École de la Ville de Liège'),
(40298, 'https://ror.org/035xrsk97', 'fr', 1, 'https://ror.org/035xrsk97 Institut Régional d’Administration de Lille'),
(40299, 'https://ror.org/05fj0ng27', 'fr', 1, 'https://ror.org/05fj0ng27 École Pratique des Hautes Études Commerciales'),
(40300, 'https://ror.org/027jqwm11', 'fr', 1, 'https://ror.org/027jqwm11 Haute École Francisco Ferrer'),
(40301, 'https://ror.org/04rw0w260', 'fr', 1, 'https://ror.org/04rw0w260 École Européenne Supérieure d''Art de Bretagne'),
(40302, 'https://ror.org/028rd3808', 'fr', 1, 'https://ror.org/028rd3808 Haute École Galilée'),
(40303, 'https://ror.org/05eyxqf74', 'de', 1, 'https://ror.org/05eyxqf74 Fachhochschule für Wirtschaft und Technik Private Hochschule für Wirtschaft und Technik'),
(40304, 'https://ror.org/00jbwpt44', 'en', 1, 'https://ror.org/00jbwpt44 Hochschule für Medien, Kommunikation und Wirtschaft University of Applied Sciences for Media Communication and Business'),
(40305, 'https://ror.org/02k7e9603', 'fr', 1, 'https://ror.org/02k7e9603 Haute École Libre de Bruxelles Ilya Prigogine'),
(40306, 'https://ror.org/03j4bgx95', 'fr', 1, 'https://ror.org/03j4bgx95 ECAM Rennes Louis de Broglie'),
(40307, 'https://ror.org/052x1x555', 'fr', 1, 'https://ror.org/052x1x555 Haute École Libre Mosane'),
(40308, 'https://ror.org/04m4shs41', 'de', 1, 'https://ror.org/04m4shs41 Dekra Hochschule für Medien'),
(40309, 'https://ror.org/00bpw1b12', 'fr', 1, 'https://ror.org/00bpw1b12 École des Avocats Nord-Ouest'),
(40310, 'https://ror.org/01f5b8367', 'de', 1, 'https://ror.org/01f5b8367 Fachhochschule des Mittelstands'),
(40311, 'https://ror.org/0167nty12', 'fr', 1, 'https://ror.org/0167nty12 École des Avocats du Grand Ouest'),
(40312, 'https://ror.org/051e52h07', 'fr', 1, 'https://ror.org/051e52h07 Haute École de Namur-Liège-Luxembourg'),
(40313, 'https://ror.org/00yw34h52', 'fr', 1, 'https://ror.org/00yw34h52 Institut Supérieur d''Électronique de Paris'),
(40314, 'https://ror.org/05dbw7b97', 'en', 1, 'https://ror.org/05dbw7b97 CVJM-Hochschule International YMCA University of Applied Sciences'),
(40315, 'https://ror.org/04sn8qj61', 'en', 1, 'https://ror.org/04sn8qj61 International School of Management'),
(40316, 'https://ror.org/0367m1n91', 'de', 1, 'https://ror.org/0367m1n91 Hochschule Weserbergland'),
(40317, 'https://ror.org/01k6xby62', 'de', 1, 'https://ror.org/01k6xby62 SRH Hochschule für Logistik und Wirtschaft'),
(40318, 'https://ror.org/01fss9e11', 'fr', 1, 'https://ror.org/01fss9e11 École Supérieure d''Art et Design de Saint-Étienne'),
(40319, 'https://ror.org/01crz4r71', 'fr', 1, 'https://ror.org/01crz4r71 École Supérieure d''Art des Pyrénées'),
(40320, 'https://ror.org/031ve8169', 'fr', 1, 'https://ror.org/031ve8169 École de Formation Professionnelle des Barreaux de la Cour d''Appel de Paris'),
(40321, 'https://ror.org/041w2kh96', 'en', 1, 'https://ror.org/041w2kh96 University of Applied Sciences Europe'),
(40322, 'https://ror.org/046ns5110', 'de', 1, 'https://ror.org/046ns5110 Fachhochschule der Wirtschaft'),
(40323, 'https://ror.org/00drbxw02', 'fr', 1, 'https://ror.org/00drbxw02 Pôle Supérieur d''Enseignement Artistique of Paris Boulogne-Billancourt'),
(40324, 'https://ror.org/02yqzaa38', 'fr', 1, 'https://ror.org/02yqzaa38 Haute École des Arts du Rhin'),
(40325, 'https://ror.org/03szbab20', 'fr', 1, 'https://ror.org/03szbab20 Institut Régional d''Administration'),
(40326, 'https://ror.org/047h65335', 'de', 1, 'https://ror.org/047h65335 Deutsche Hochschule für Prävention und Gesundheitsmanagement'),
(40327, 'https://ror.org/03t7d6q88', 'en', 1, 'https://ror.org/03t7d6q88 Federal University of Applied Administrative Sciences Hochschule des Bundes für öffentliche Verwaltung École supérieure fédérale d’administration publique'),
(40328, 'https://ror.org/05kqgwz20', 'fr', 1, 'https://ror.org/05kqgwz20 École des Officiers de la Gendarmerie Nationale'),
(40329, 'https://ror.org/05vg58c56', 'de', 1, 'https://ror.org/05vg58c56 Pädagogische Hochschule Niederösterreich'),
(40330, 'https://ror.org/03x8h1v05', 'fr', 1, 'https://ror.org/03x8h1v05 École Supérieure du Bois'),
(40331, 'https://ror.org/04kne2879', 'de', 1, 'https://ror.org/04kne2879 Kirchliche Pädagogische Hochschule Edith Stein'),
(40332, 'https://ror.org/05k9vmz93', 'de', 1, 'https://ror.org/05k9vmz93 Hochschule für Telekommunikation Leipzig'),
(40333, 'https://ror.org/02kbwgp44', 'fr', 1, 'https://ror.org/02kbwgp44 École Supérieure d''Art et de Design d''Orléans'),
(40334, 'https://ror.org/01c508b36', 'fr', 1, 'https://ror.org/01c508b36 Institut Régional d''Administration de Lyon'),
(40335, 'https://ror.org/047e48t34', 'fr', 1, 'https://ror.org/047e48t34 École Nationale d''Administration Pénitentiaire'),
(40336, 'https://ror.org/05x346678', 'fr', 1, 'https://ror.org/05x346678 École Supérieure d''Art et de Design Tours-Angers-Le Mans'),
(40337, 'https://ror.org/00c62es15', 'fr', 1, 'https://ror.org/00c62es15 École Supérieure d''Arts & Médias de Caen/Cherbourg'),
(40338, 'https://ror.org/058eyqd35', 'fr', 1, 'https://ror.org/058eyqd35 École Supérieure Angevine d''Informatique et de Productique'),
(40339, 'https://ror.org/05mv80p58', 'fr', 1, 'https://ror.org/05mv80p58 Institut Textile et Chimique'),
(40340, 'https://ror.org/04ch3k260', 'fr', 1, 'https://ror.org/04ch3k260 École Supérieure d''Art et de Design de Reims'),
(40341, 'https://ror.org/04d1ryd22', 'fr', 1, 'https://ror.org/04d1ryd22 École des Avocats Rhône-Alpes'),
(40342, 'https://ror.org/02hce4k71', 'fr', 1, 'https://ror.org/02hce4k71 École Nationale Supérieure d''Art et de Design de Nancy'),
(40343, 'https://ror.org/00aac9t94', 'fr', 1, 'https://ror.org/00aac9t94 Special Military School of Saint-Cyr École Spéciale Militaire de Saint-Cyr'),
(40344, 'https://ror.org/043w4dx82', 'fr', 1, 'https://ror.org/043w4dx82 École Militaire Interarmes'),
(40345, 'https://ror.org/02kgft750', 'fr', 1, 'https://ror.org/02kgft750 École Nationale Supérieure d''Art'),
(40346, 'https://ror.org/055s1wn27', 'de', 1, 'https://ror.org/055s1wn27 Hochschule für Polizei Baden-Württemberg'),
(40347, 'https://ror.org/00wrxrh45', 'fr', 1, 'https://ror.org/00wrxrh45 Institut Régional d''Administration de Metz'),
(40348, 'https://ror.org/05q4ybv44', 'en', 1, 'https://ror.org/05q4ybv44 International and European Law School'),
(40349, 'https://ror.org/01v7j8968', 'de', 1, 'https://ror.org/01v7j8968 Hochschule für den öffentlichen Dienst in Bayern'),
(40350, 'https://ror.org/00s13q694', 'fr', 1, 'https://ror.org/00s13q694 École Supérieure d''Ingénieurs des Travaux de la Construction de Metz'),
(40351, 'https://ror.org/01hbq4r90', 'fr', 1, 'https://ror.org/01hbq4r90 École Nationale Supérieure d''Architecture de Paris-Belleville'),
(40352, 'https://ror.org/01pcs0h38', 'fr', 1, 'https://ror.org/01pcs0h38 École Nationale des Greffes'),
(40353, 'https://ror.org/037mk9523', 'fr', 1, 'https://ror.org/037mk9523 École Supérieure d''Ingénieurs des Travaux de la Construction de Cachan'),
(40354, 'https://ror.org/047vv7q25', 'fr', 1, 'https://ror.org/047vv7q25 École Supérieure d''Art du Nord-Pas-de-Calais'),
(40355, 'https://ror.org/00jvbme10', 'de', 1, 'https://ror.org/00jvbme10 Fachhochschule für Finanzen Brandenburg'),
(40356, 'https://ror.org/03bavdz78', 'de', 1, 'https://ror.org/03bavdz78 Hochschule für Musik Freiburg'),
(40357, 'https://ror.org/027jws131', 'fr', 1, 'https://ror.org/027jws131 Institut Polytechnique Saint-Louis'),
(40358, 'https://ror.org/05q2pee13', 'de', 1, 'https://ror.org/05q2pee13 Hochschule für Öffentliche Verwaltung Bremen'),
(40359, 'https://ror.org/029rzwj76', 'fr', 1, 'https://ror.org/029rzwj76 École de Biologie Industrielle'),
(40360, 'https://ror.org/02k139m61', 'fr', 1, 'https://ror.org/02k139m61 Institut Régional d''Administration de Bastia'),
(40361, 'https://ror.org/05tn39y33', 'de', 1, 'https://ror.org/05tn39y33 Akademie der Polizei Hamburg'),
(40362, 'https://ror.org/018mbvt80', 'en', 1, 'https://ror.org/018mbvt80 German open Business School Hochschule für Wirtschaft und Verwaltung'),
(40363, 'https://ror.org/035jc1316', 'de', 1, 'https://ror.org/035jc1316 Hessische Hochschule für Finanzen und Rechtspflege'),
(40364, 'https://ror.org/00j9xkc07', 'en', 1, 'https://ror.org/00j9xkc07 European University of Applied Sciences Europäische Fachhochschule Rhein/Erft'),
(40365, 'https://ror.org/02kraxp86', 'de', 1, 'https://ror.org/02kraxp86 SRH Hochschule der Populären Künste'),
(40366, 'https://ror.org/05tev5412', 'en', 1, 'https://ror.org/05tev5412 Higher and Technical Education Department'),
(40367, 'https://ror.org/01f02ww36', 'en', 1, 'https://ror.org/01f02ww36 All-Russian Research Institute of Agricultural Microbiology'),
(40368, 'https://ror.org/00wp2bj27', 'en', 1, 'https://ror.org/00wp2bj27 Institute of Chemistry, Far Eastern Branch of the Russian Academy of Sciences'),
(40369, 'https://ror.org/03jmc9t23', 'en', 1, 'https://ror.org/03jmc9t23 Research Institute of General Pathology and Pathophysiology, the Russian Academy of Medical Sciences Научно-исследовательский Институт общей патологии и патофизиологии'),
(40370, 'https://ror.org/055csed06', 'en', 1, 'https://ror.org/055csed06 Mental Health Research Center of Russian Academy of Medical Sciences Научный Центр Психического Здоровья РАМН'),
(40371, 'https://ror.org/05c3bnw72', 'en', 1, 'https://ror.org/05c3bnw72 V.V. Dokuchaev Soil Science Institute'),
(40372, 'https://ror.org/01s15bz77', 'en', 1, 'https://ror.org/01s15bz77 All-Russian Scientific Research and Technological Institute of Poultry Russian Academy of Agricultural Sciences Всероссийский научно-исследовательский и технологический институт птицеводства Российской академии сельскохозяйственных наук'),
(40373, 'https://ror.org/01b3qhp76', 'en', 1, 'https://ror.org/01b3qhp76 Research Institute of Fundamental and Clinical Immunology Научно-исследовательский институт фундаментальной и клинической иммунологии'),
(40374, 'https://ror.org/04z8mkz77', 'en', 1, 'https://ror.org/04z8mkz77 Research Institute of Physiology and Fundamental Medicine of the Siberian Branch of the Russian Academy of Medical Sciences Федеральное государственное бюджетное учреждение «Научно-исследовательский институт физиологии и фундаментальной медицины»'),
(40375, 'https://ror.org/047swfp57', 'en', 1, 'https://ror.org/047swfp57 Russian Research Institute of Fruit Crop Breeding Всероссийского научно-исследовательского института селекции плодовых культур'),
(40376, 'https://ror.org/00et21g06', 'en', 1, 'https://ror.org/00et21g06 All-Russian Research Institute of Agricultural Biotechnology Russian Academy of Agricultural Sciences Всероссийский институт сельскохозяйственной биотехнологии [править | править вики-текст]'),
(40377, 'https://ror.org/05ssfag15', 'en', 1, 'https://ror.org/05ssfag15 Federal Research Centre of Nutrition and Biotechnology Федеральное государственное бюджетное научное учреждение Научно-исследовательский институт питания'),
(40378, 'https://ror.org/0522bga53', 'it', 1, 'https://ror.org/0522bga53 Academy of Music Vincenzo Bellini Conservatorio Vincenzo Bellini Conservatorio di Musica Vincenzo Bellini di Palermo'),
(40379, 'https://ror.org/01j1yd225', 'en', 1, 'https://ror.org/01j1yd225 North West Boroughs Healthcare NHS Foundation Trust'),
(40380, 'https://ror.org/048vved44', 'pt', 1, 'https://ror.org/048vved44 Associação Desportiva e Cultural da Escola Preparatória Diogo Cão'),
(40381, 'https://ror.org/00vwzpd62', 'no_lang_code', 1, 'https://ror.org/00vwzpd62 American Journal Experts (United States)'),
(40382, 'https://ror.org/02z1x9d19', 'no_lang_code', 1, 'https://ror.org/02z1x9d19 Celfinet (Portugal)'),
(40383, 'https://ror.org/00926c151', 'pl', 1, 'https://ror.org/00926c151 Śląska Wyższa Szkoła Informatyczno-Medyczna'),
(40384, 'https://ror.org/01gyh5y52', 'no_lang_code', 1, 'https://ror.org/01gyh5y52 Argos Cement (Colombia) Cementos Argos'),
(40385, 'https://ror.org/02gqw3a90', 'en', 1, 'https://ror.org/02gqw3a90 Austrian Archeological Institute Österreichisches Archäologisches Institut'),
(40386, 'https://ror.org/0255w3r50', 'no_lang_code', 1, 'https://ror.org/0255w3r50 Amway (United States)'),
(40387, 'https://ror.org/00s1xev78', 'en', 1, 'https://ror.org/00s1xev78 Biblioteca Nacional de Colombia National Library of Colombia'),
(40388, 'https://ror.org/01ep2z456', 'es', 1, 'https://ror.org/01ep2z456 Ayuntamiento De Tomelloso'),
(40389, 'https://ror.org/05wfehw39', 'it', 1, 'https://ror.org/05wfehw39 Accademia Nazionale dei Lincei'),
(40390, 'https://ror.org/04twsya26', 'en', 1, 'https://ror.org/04twsya26 B. V. Patel Pharmaceutical Education and Research Development Centre'),
(40391, 'https://ror.org/014ctt859', 'en', 1, 'https://ror.org/014ctt859 Birla Institute of Technology and Science - Hyderabad Campus'),
(40392, 'https://ror.org/0068yvd12', 'en', 1, 'https://ror.org/0068yvd12 Center for Global Development'),
(40393, 'https://ror.org/05jnbme07', 'en', 1, 'https://ror.org/05jnbme07 Birla Institute of Technology and Science, Pilani - Dubai Campus बिरला प्रौद्योगिकी एवं विज्ञान संस्थान, पिलानी-दुबई कैंपस'),
(40394, 'https://ror.org/018y7q663', 'en', 1, 'https://ror.org/018y7q663 Pure Earth'),
(40395, 'https://ror.org/04xcr6k92', 'no_lang_code', 1, 'https://ror.org/04xcr6k92 Accenture (Spain)'),
(40396, 'https://ror.org/01h7jse56', 'en', 1, 'https://ror.org/01h7jse56 Banco Central do Brasil Central Bank of Brazil'),
(40397, 'https://ror.org/01h4f0m46', 'en', 1, 'https://ror.org/01h4f0m46 Central Bank of the Republic of Turkey Türkiye Cumhuriyet Merkez Bankası'),
(40398, 'https://ror.org/0497xq319', 'en', 1, 'https://ror.org/0497xq319 Anna Freud Centre'),
(40399, 'https://ror.org/0208sdr22', 'pt', 1, 'https://ror.org/0208sdr22 Administração Regional de Saúde de Lisboa e Vale do Tejo'),
(40400, 'https://ror.org/05bb03e97', 'en', 1, 'https://ror.org/05bb03e97 Bodoland University बड''लेण्ड बुहुमफरायसालि'),
(40401, 'https://ror.org/05c3kvr55', 'en', 1, 'https://ror.org/05c3kvr55 Bangladesh Centre for Advanced Studies'),
(40402, 'https://ror.org/02t5vjx28', 'en', 1, 'https://ror.org/02t5vjx28 Central Mindanao Colleges'),
(40403, 'https://ror.org/03njdre41', 'en', 1, 'https://ror.org/03njdre41 Bangladesh Council of Scientific and Industrial Research বাংলাদেশ বিজ্ঞান ও শিল্প গবেষণা পরিষদ'),
(40404, 'https://ror.org/026xz9f02', 'en', 1, 'https://ror.org/026xz9f02 Bronx High School of Science'),
(40405, 'https://ror.org/03d0ft388', 'de', 1, 'https://ror.org/03d0ft388 Bank für Tirol und Vorarlberg'),
(40406, 'https://ror.org/04h5ys198', 'no_lang_code', 1, 'https://ror.org/04h5ys198 Cniitmash (Russia) цниитмаш'),
(40407, 'https://ror.org/0088v6m32', 'fr', 1, 'https://ror.org/0088v6m32 Banque de France'),
(40408, 'https://ror.org/04ateak98', 'en', 1, 'https://ror.org/04ateak98 Base Training'),
(40409, 'https://ror.org/01q1kj855', 'en', 1, 'https://ror.org/01q1kj855 Animal Health Training and Consultancy Service'),
(40410, 'https://ror.org/00r3dxy86', 'en', 1, 'https://ror.org/00r3dxy86 Busan Institute of Science and Technology 부산과학기술대학교'),
(40411, 'https://ror.org/02akg1305', 'en', 1, 'https://ror.org/02akg1305 Asian Institute of Public Health'),
(40412, 'https://ror.org/007gfpa47', 'pt', 1, 'https://ror.org/007gfpa47 Caixa Cultural'),
(40413, 'https://ror.org/00j0xx731', 'no_lang_code', 1, 'https://ror.org/00j0xx731 Centre d''Higiene Mental Les Corts (Spain)'),
(40414, 'https://ror.org/04xadt873', 'pt', 1, 'https://ror.org/04xadt873 Associação Cultural de Arte e Comunicação Oficinas do Convento'),
(40415, 'https://ror.org/04n30gn53', 'pt', 1, 'https://ror.org/04n30gn53 Associação Empresarial de Paços de Ferreira'),
(40416, 'https://ror.org/05ghbet76', 'en', 1, 'https://ror.org/05ghbet76 Associated Board of the Royal Schools of Music'),
(40417, 'https://ror.org/0348r9089', 'no_lang_code', 1, 'https://ror.org/0348r9089 Beginning (Bangladesh)'),
(40418, 'https://ror.org/01a27na53', 'ro', 1, 'https://ror.org/01a27na53 Universitatea Alma Mater Sibiu'),
(40419, 'https://ror.org/0226dpj06', 'en', 1, 'https://ror.org/0226dpj06 Association of Chartered Certified Accountants'),
(40420, 'https://ror.org/0232pe591', 'en', 1, 'https://ror.org/0232pe591 Association of Corporate Treasurers'),
(40421, 'https://ror.org/014zhhr61', 'en', 1, 'https://ror.org/014zhhr61 Belarusian Medical Academy of Post-Graduate Education Беларуская медыцынская акадэмія паслядыпломнай адукацыі'),
(40422, 'https://ror.org/03v05gb64', 'en', 1, 'https://ror.org/03v05gb64 Centre for the Rehabilitation of the Paralysed'),
(40423, 'https://ror.org/006k1pa70', 'en', 1, 'https://ror.org/006k1pa70 Cambridge School'),
(40424, 'https://ror.org/01ftvnv05', 'en', 1, 'https://ror.org/01ftvnv05 Royal Brisbane and Women''s Hospital Foundation'),
(40425, 'https://ror.org/00en31398', 'pt', 1, 'https://ror.org/00en31398 Centro Cultural Vila Flor'),
(40426, 'https://ror.org/0452sj958', 'ca', 1, 'https://ror.org/0452sj958 Unió Catalana de Centres de Desenvolupament Infantil i Atenció Precoç'),
(40427, 'https://ror.org/05gkhkw84', 'pt', 1, 'https://ror.org/05gkhkw84 Centro de Formação Profissional para a Indústria Cerâmica'),
(40428, 'https://ror.org/04kjbga23', 'en', 1, 'https://ror.org/04kjbga23 Chinese Students and Scholars Association of Ireland 爱尔兰中国学生学者联合谊会'),
(40429, 'https://ror.org/05efhq671', 'es', 1, 'https://ror.org/05efhq671 Centro de Análisis y Difusión de la Economía Paraguya'),
(40430, 'https://ror.org/01ktxpf34', 'pt', 1, 'https://ror.org/01ktxpf34 Colégio Pedro II'),
(40431, 'https://ror.org/042ryz918', 'pt', 1, 'https://ror.org/042ryz918 Colégio Teresiano de Braga'),
(40432, 'https://ror.org/050q0kv47', 'es', 1, 'https://ror.org/050q0kv47 Centro de Investigación Biomédica en Red de Epidemiología y Salud Pública'),
(40433, 'https://ror.org/00ve6e186', 'en', 1, 'https://ror.org/00ve6e186 Australian Bureau of Statistics'),
(40434, 'https://ror.org/04zkbxs23', 'en', 1, 'https://ror.org/04zkbxs23 Royal College of Emergency Medicine'),
(40435, 'https://ror.org/03y28aj90', 'no_lang_code', 1, 'https://ror.org/03y28aj90 Cummins (United States)'),
(40436, 'https://ror.org/05h7nhz20', 'en', 1, 'https://ror.org/05h7nhz20 Dong Thap University'),
(40437, 'https://ror.org/01t5p5h79', 'no_lang_code', 1, 'https://ror.org/01t5p5h79 Cedar Fair (United States)'),
(40438, 'https://ror.org/05a99n355', 'no_lang_code', 1, 'https://ror.org/05a99n355 Vale (Brazil)'),
(40439, 'https://ror.org/048fs3s61', 'pt', 1, 'https://ror.org/048fs3s61 Centro de Medicina de Reabilitacao do Alcoitão'),
(40440, 'https://ror.org/01ap78q14', 'pt', 1, 'https://ror.org/01ap78q14 Citeforma'),
(40441, 'https://ror.org/01cjdbz30', 'es', 1, 'https://ror.org/01cjdbz30 Davara & Davara Asesores Jurídicos'),
(40442, 'https://ror.org/04fqqys39', 'en', 1, 'https://ror.org/04fqqys39 Computational Intelligence and Information Systems Lab'),
(40443, 'https://ror.org/00x6h5n95', 'en', 1, 'https://ror.org/00x6h5n95 Dryad Digital Repository'),
(40444, 'https://ror.org/03wkfdc28', 'pt', 1, 'https://ror.org/03wkfdc28 Centro Dramático de Évora'),
(40445, 'https://ror.org/032xgdx47', 'en', 1, 'https://ror.org/032xgdx47 Citigroup'),
(40446, 'https://ror.org/006zwes74', 'no_lang_code', 1, 'https://ror.org/006zwes74 Dryas Arqueologia (Portugal)'),
(40447, 'https://ror.org/05b210c34', 'en', 1, 'https://ror.org/05b210c34 City of Cape Town IsiXeko SaseKapa Stad Kaapstad'),
(40448, 'https://ror.org/0246qj146', 'pt', 1, 'https://ror.org/0246qj146 Centro Hospitalar do Tâmega e Sousa'),
(40449, 'https://ror.org/05f5rab97', 'en', 1, 'https://ror.org/05f5rab97 Ear Science Institute Australia'),
(40450, 'https://ror.org/0314ecq26', 'es', 1, 'https://ror.org/0314ecq26 Centro Nacional de Investigación y Desarrollo Tecnológico'),
(40451, 'https://ror.org/00a9jcw35', 'en', 1, 'https://ror.org/00a9jcw35 East Avenue Medical Center'),
(40452, 'https://ror.org/0128xcr10', 'en', 1, 'https://ror.org/0128xcr10 Clear Passage Physical Therapy'),
(40453, 'https://ror.org/03rzfjh59', 'pt', 1, 'https://ror.org/03rzfjh59 Centro Universitário Cesmac'),
(40454, 'https://ror.org/0338hg181', 'pt', 1, 'https://ror.org/0338hg181 Confraria de Santa Luzia'),
(40455, 'https://ror.org/00n3vh666', 'en', 1, 'https://ror.org/00n3vh666 Deen Dayal Upadhyay Hospital'),
(40456, 'https://ror.org/02rejsj11', 'pt', 1, 'https://ror.org/02rejsj11 Conservatório de Música de Coimbra'),
(40457, 'https://ror.org/006p1zj23', 'no_lang_code', 1, 'https://ror.org/006p1zj23 Turner Broadcasting System (United States)'),
(40458, 'https://ror.org/03fbewc07', 'pt', 1, 'https://ror.org/03fbewc07 Conservatório de Música do Porto'),
(40459, 'https://ror.org/01xyx5098', 'en', 1, 'https://ror.org/01xyx5098 Defense Information Systems Agency'),
(40460, 'https://ror.org/00yh09097', 'en', 1, 'https://ror.org/00yh09097 Del Valle Independent School District'),
(40461, 'https://ror.org/0362ttz08', 'en', 1, 'https://ror.org/0362ttz08 Center for Economic Research and Graduate Education – Economics Institute');
INSERT INTO `rors` VALUES
(40462, 'https://ror.org/015jrdc82', 'en', 1, 'https://ror.org/015jrdc82 Consorci Sanitari del Maresme Maresme Health Consortium'),
(40463, 'https://ror.org/018rz4f73', 'en', 1, 'https://ror.org/018rz4f73 Cheetah Conservation Fund'),
(40464, 'https://ror.org/04h0czz41', 'no_lang_code', 1, 'https://ror.org/04h0czz41 Eesti Energia (Estonia)'),
(40465, 'https://ror.org/05nc0nk71', 'en', 1, 'https://ror.org/05nc0nk71 Cooperative Institute for Climate and Satellites'),
(40466, 'https://ror.org/02qvpgb95', 'tr', 1, 'https://ror.org/02qvpgb95 Denizli Special Provincial Administration Denizli Yatırım İzleme ve Koordinasyon Başkanlığı'),
(40467, 'https://ror.org/020sjp894', 'en', 1, 'https://ror.org/020sjp894 Chemistry and Chemical Engineering Research Center of Iran'),
(40468, 'https://ror.org/002qv2715', 'en', 1, 'https://ror.org/002qv2715 Statens jordbruksverk Swedish Board of Agriculture'),
(40469, 'https://ror.org/04eak0r73', 'en', 1, 'https://ror.org/04eak0r73 Child Health Research Foundation'),
(40470, 'https://ror.org/01frq5x38', 'en', 1, 'https://ror.org/01frq5x38 Department of Education Cagayan de Oro'),
(40471, 'https://ror.org/02fa3j397', 'es', 1, 'https://ror.org/02fa3j397 Confederación Estatal de Personas Sordas'),
(40472, 'https://ror.org/05r9gnf88', 'en', 1, 'https://ror.org/05r9gnf88 Department of Education Pagadian'),
(40473, 'https://ror.org/0347pb070', 'ro', 1, 'https://ror.org/0347pb070 Camera de Comerț Industrie și Agricultură Timișoara'),
(40474, 'https://ror.org/04dzf3m45', 'en', 1, 'https://ror.org/04dzf3m45 Desert Research Center'),
(40475, 'https://ror.org/02eeq5d55', 'no_lang_code', 1, 'https://ror.org/02eeq5d55 ESiOR Oy (Finland)'),
(40476, 'https://ror.org/022tm9w06', 'no_lang_code', 1, 'https://ror.org/022tm9w06 Companhia de Eletricidade do Estado da Bahia (Brazil)'),
(40477, 'https://ror.org/010dgs567', 'no_lang_code', 1, 'https://ror.org/010dgs567 Deurali Janta Pharmaceuticals (Nepal)'),
(40478, 'https://ror.org/05nmyph15', 'en', 1, 'https://ror.org/05nmyph15 Culham Centre for Fusion Energy'),
(40479, 'https://ror.org/03qwqnb95', 'no_lang_code', 1, 'https://ror.org/03qwqnb95 Deutsche Bank (Germany)'),
(40480, 'https://ror.org/00ajckn66', 'en', 1, 'https://ror.org/00ajckn66 European Central Bank Europäischen Zentralbank'),
(40481, 'https://ror.org/03fthvs97', 'pt', 1, 'https://ror.org/03fthvs97 Faculdade de Itaituba'),
(40482, 'https://ror.org/04g3mbv81', 'en', 1, 'https://ror.org/04g3mbv81 European Graduate School'),
(40483, 'https://ror.org/03ywskk07', 'pt', 1, 'https://ror.org/03ywskk07 Faculdade de Medicina de Jundiaí'),
(40484, 'https://ror.org/03rgtag81', 'no_lang_code', 1, 'https://ror.org/03rgtag81 Dhaka Regency Hotel and Resort (Bangladesh)'),
(40485, 'https://ror.org/058fj5k57', 'en', 1, 'https://ror.org/058fj5k57 European Parliament Europees Parlement Europäisches Parlament Parlement Européen'),
(40486, 'https://ror.org/05hwvzg47', 'en', 1, 'https://ror.org/05hwvzg47 Federal Reserve Bank of New York'),
(40487, 'https://ror.org/029z3g861', 'no_lang_code', 1, 'https://ror.org/029z3g861 Epic Systems (United States)'),
(40488, 'https://ror.org/016vvkz13', 'en', 1, 'https://ror.org/016vvkz13 European Patent Organisation'),
(40489, 'https://ror.org/00720xw25', 'pt', 1, 'https://ror.org/00720xw25 Faculdade Redentor'),
(40490, 'https://ror.org/00vcgxy32', 'pt', 1, 'https://ror.org/00vcgxy32 Faculdade Ruy Barbosa'),
(40491, 'https://ror.org/0056df569', 'pt', 1, 'https://ror.org/0056df569 Faculdade São Lucas'),
(40492, 'https://ror.org/0328trt29', 'pt', 1, 'https://ror.org/0328trt29 Faculdade Sumaré'),
(40493, 'https://ror.org/002an7w33', 'en', 1, 'https://ror.org/002an7w33 European Union of Medical Specialists Union Européenne des Médecins Spécialistes'),
(40494, 'https://ror.org/05jnejj89', 'pt', 1, 'https://ror.org/05jnejj89 Faculdades EST'),
(40495, 'https://ror.org/024b4v884', 'pt', 1, 'https://ror.org/024b4v884 Faculdades Integradas Aparício Carvalho'),
(40496, 'https://ror.org/01h153k55', 'pt', 1, 'https://ror.org/01h153k55 Faculdades Integradas de Cacoal'),
(40497, 'https://ror.org/0370acc92', 'en', 1, 'https://ror.org/0370acc92 Fidmag Germanes Hospitalàries Fidmag Hermanas Hospitalarias Fidmag Sisters Hospitallers'),
(40498, 'https://ror.org/03c3ct763', 'pt', 1, 'https://ror.org/03c3ct763 Faculdades Integradas de Taquara'),
(40499, 'https://ror.org/045w8cb33', 'pt', 1, 'https://ror.org/045w8cb33 Faculdades Integradas do Vale do Ivaí'),
(40500, 'https://ror.org/05ssnx856', 'pt', 1, 'https://ror.org/05ssnx856 Fundação Técnico Educacional Souza Marques'),
(40501, 'https://ror.org/04q9me654', 'no_lang_code', 1, 'https://ror.org/04q9me654 Fleury S.A. (Brazil)'),
(40502, 'https://ror.org/030n1xr75', 'pt', 1, 'https://ror.org/030n1xr75 Escola Básica Integrada da Horta'),
(40503, 'https://ror.org/02jbzdv43', 'pt', 1, 'https://ror.org/02jbzdv43 Fundo para a Protecção dos Animais Selvagens'),
(40504, 'https://ror.org/0387e6h74', 'no_lang_code', 1, 'https://ror.org/0387e6h74 Return on Intelligence (Latvia)'),
(40505, 'https://ror.org/03vr80018', 'en', 1, 'https://ror.org/03vr80018 Escola de Mar School of Sea'),
(40506, 'https://ror.org/04w0r6004', 'it', 1, 'https://ror.org/04w0r6004 Fondazione Antonio Ratti'),
(40507, 'https://ror.org/019tc7185', 'no_lang_code', 1, 'https://ror.org/019tc7185 Faculty of 1000 (United Kingdom)'),
(40508, 'https://ror.org/00endrs84', 'pt', 1, 'https://ror.org/00endrs84 Externato da Luz'),
(40509, 'https://ror.org/04wsxm558', 'pt', 1, 'https://ror.org/04wsxm558 Faculdade Cásper Líbero'),
(40510, 'https://ror.org/01zqv1s26', 'en', 1, 'https://ror.org/01zqv1s26 Faculty of Public Health'),
(40511, 'https://ror.org/0351a1c74', 'pt', 1, 'https://ror.org/0351a1c74 Faculdade Novos Horizontes'),
(40512, 'https://ror.org/01eqzn264', 'pt', 1, 'https://ror.org/01eqzn264 Faculdade da Serra Gaúcha'),
(40513, 'https://ror.org/04dh20q25', 'pt', 1, 'https://ror.org/04dh20q25 Escola Profissional Profitecla'),
(40514, 'https://ror.org/00nkq8a05', 'en', 1, 'https://ror.org/00nkq8a05 Fondazione Luigi Einaudi Luigi Einaudi Foundation'),
(40515, 'https://ror.org/00bvew379', 'pt', 1, 'https://ror.org/00bvew379 Faculdade de Administração Ciências Educação e Letras'),
(40516, 'https://ror.org/00gck2e56', 'pt', 1, 'https://ror.org/00gck2e56 Faculdade de Desenvolvimento do Rio Grande do Sul'),
(40517, 'https://ror.org/005cx3d93', 'pt', 1, 'https://ror.org/005cx3d93 Fundação João Pinheiro João Pinheiro Foundation'),
(40518, 'https://ror.org/01v58ha34', 'pt', 1, 'https://ror.org/01v58ha34 Agrupamento de Escolas Nuno Álvares'),
(40519, 'https://ror.org/00qmsd316', 'pt', 1, 'https://ror.org/00qmsd316 Faculdades Milton Campos'),
(40520, 'https://ror.org/04wfc2h84', 'pt', 1, 'https://ror.org/04wfc2h84 Escola Secundária Quinta do Marquês'),
(40521, 'https://ror.org/045xmas39', 'pt', 1, 'https://ror.org/045xmas39 Fundacao Joaquim Nabuco'),
(40522, 'https://ror.org/03skjap48', 'en', 1, 'https://ror.org/03skjap48 Académie de droit international de La Haye Hague Academy of International Law'),
(40523, 'https://ror.org/03a0gk952', 'pt', 1, 'https://ror.org/03a0gk952 Escola Superior Aberta do Brasil'),
(40524, 'https://ror.org/02tq21k19', 'pt', 1, 'https://ror.org/02tq21k19 For Mar Centro de Formação Profissional das Pescas e do Mar'),
(40525, 'https://ror.org/01d0few86', 'en', 1, 'https://ror.org/01d0few86 Ghana Education Service'),
(40526, 'https://ror.org/01qcg0c38', 'pt', 1, 'https://ror.org/01qcg0c38 Escola Superior de Ciências da Santa Casa de Misericórdia de Vitória'),
(40527, 'https://ror.org/02ffdpz25', 'en', 1, 'https://ror.org/02ffdpz25 Health Education North West'),
(40528, 'https://ror.org/05jjx9m04', 'es', 1, 'https://ror.org/05jjx9m04 Fundación Ciencias de la Documentación'),
(40529, 'https://ror.org/036nj8c41', 'en', 1, 'https://ror.org/036nj8c41 Healthcare in Sweden'),
(40530, 'https://ror.org/00ket8v10', 'en', 1, 'https://ror.org/00ket8v10 Gokula Krishna College of Pharmacy'),
(40531, 'https://ror.org/007xnkn32', 'eu', 1, 'https://ror.org/007xnkn32 Osasun Ikaskuntza Fundazioa'),
(40532, 'https://ror.org/02bx25k35', 'es', 1, 'https://ror.org/02bx25k35 Hospital Militar Central'),
(40533, 'https://ror.org/057gftg63', 'en', 1, 'https://ror.org/057gftg63 Government Medical College'),
(40534, 'https://ror.org/059b1px42', 'no_lang_code', 1, 'https://ror.org/059b1px42 Freelancer (Portugal)'),
(40535, 'https://ror.org/01z6kem44', 'no_lang_code', 1, 'https://ror.org/01z6kem44 Hiep Phuoc Power (Vietnam)'),
(40536, 'https://ror.org/023th6c34', 'no_lang_code', 1, 'https://ror.org/023th6c34 Hovione (Portugal)'),
(40537, 'https://ror.org/04zyfmb02', 'en', 1, 'https://ror.org/04zyfmb02 Government of Khyber Pakhtunkhwa حکومتِ خیبرپختونخوا دخیبر پښتونخواحکومت'),
(40538, 'https://ror.org/04ynw2g14', 'en', 1, 'https://ror.org/04ynw2g14 Information Technology Institute'),
(40539, 'https://ror.org/05gjrwv72', 'en', 1, 'https://ror.org/05gjrwv72 Government of Nepal नेपाल सरकार'),
(40540, 'https://ror.org/04ayk8723', 'en', 1, 'https://ror.org/04ayk8723 G.S. Science, Arts And Commerce College'),
(40541, 'https://ror.org/055afwm56', 'no_lang_code', 1, 'https://ror.org/055afwm56 Genelux (United States)'),
(40542, 'https://ror.org/043ncwv78', 'no_lang_code', 1, 'https://ror.org/043ncwv78 IBM (Denmark)'),
(40543, 'https://ror.org/03kv3z486', 'no_lang_code', 1, 'https://ror.org/03kv3z486 IBM (Portugal)'),
(40544, 'https://ror.org/05b4bk905', 'pt', 1, 'https://ror.org/05b4bk905 Governo do Estado de Mato Grosso'),
(40545, 'https://ror.org/05vs4r368', 'pt', 1, 'https://ror.org/05vs4r368 Instituto Cuiabano de Educação'),
(40546, 'https://ror.org/017eb5121', 'no_lang_code', 1, 'https://ror.org/017eb5121 Honeywell (India)'),
(40547, 'https://ror.org/04p3pp808', 'en', 1, 'https://ror.org/04p3pp808 ICFAI Foundation for Higher Education'),
(40548, 'https://ror.org/036b4vb45', 'en', 1, 'https://ror.org/036b4vb45 Hong Kong Academy of Medicine'),
(40549, 'https://ror.org/00qn2rd91', 'en', 1, 'https://ror.org/00qn2rd91 Institut National des Sciences Appliquées et de Technologie National Institute of Applied Science and Technology'),
(40550, 'https://ror.org/05cmcts66', 'no_lang_code', 1, 'https://ror.org/05cmcts66 Grameenphone (Bangladesh) গ্রামীণফোন'),
(40551, 'https://ror.org/0580grj78', 'en', 1, 'https://ror.org/0580grj78 Institute of Advanced Studies in Administration Instituto de Estudios Superiores de Administración'),
(40552, 'https://ror.org/01f2hnj65', 'es', 1, 'https://ror.org/01f2hnj65 Instituto Nacional de Cooperación Educativa Socialista'),
(40553, 'https://ror.org/02r140y61', 'pt', 1, 'https://ror.org/02r140y61 Instituição Toledo de Ensino'),
(40554, 'https://ror.org/04je48v27', 'pt', 1, 'https://ror.org/04je48v27 Instituto Federal do Rio Grande do Norte'),
(40555, 'https://ror.org/01r17ea31', 'pt', 1, 'https://ror.org/01r17ea31 Grupo Ibmec Educacional'),
(40556, 'https://ror.org/0424j7c73', 'en', 1, 'https://ror.org/0424j7c73 Institute for Scintillation Materials Інститут сцинтиляційних матеріалів'),
(40557, 'https://ror.org/05hxqvt36', 'en', 1, 'https://ror.org/05hxqvt36 Institut de Medicina Predictiva i Personalitzada del Cancer Institute of Predictive and Personalized Medicine of Cancer'),
(40558, 'https://ror.org/051eyp684', 'en', 1, 'https://ror.org/051eyp684 Institute for the International Education of Students'),
(40559, 'https://ror.org/02914ef02', 'en', 1, 'https://ror.org/02914ef02 International Centre for Education in Islamic Finance'),
(40560, 'https://ror.org/01r3pfw81', 'en', 1, 'https://ror.org/01r3pfw81 Institute of Animal Sciences'),
(40561, 'https://ror.org/01ajp8153', 'no_lang_code', 1, 'https://ror.org/01ajp8153 Genmab (Netherlands)'),
(40562, 'https://ror.org/04fg7fb49', 'en', 1, 'https://ror.org/04fg7fb49 Institute of Cell Biology'),
(40563, 'https://ror.org/00w7etd19', 'en', 1, 'https://ror.org/00w7etd19 Independent Dance'),
(40564, 'https://ror.org/04x3tm905', 'en', 1, 'https://ror.org/04x3tm905 Institute of Chartered Accountants of India'),
(40565, 'https://ror.org/02j8pmw82', 'en', 1, 'https://ror.org/02j8pmw82 Indian Institute of Management Indore भारतीय प्रबंध संस्थान इंदौर'),
(40566, 'https://ror.org/04e09qg36', 'en', 1, 'https://ror.org/04e09qg36 Institute of Ecology and Genetics of Microorganisms'),
(40567, 'https://ror.org/04hpd0e20', 'en', 1, 'https://ror.org/04hpd0e20 Institute of Magnetism'),
(40568, 'https://ror.org/04a39s417', 'en', 1, 'https://ror.org/04a39s417 Indian Institute of Remote Sensing'),
(40569, 'https://ror.org/02wzg6d13', 'en', 1, 'https://ror.org/02wzg6d13 Geological Survey of Japan 地質調査総合センター'),
(40570, 'https://ror.org/013spkf41', 'en', 1, 'https://ror.org/013spkf41 Instituto da Defesa Nacional National Defense Institute'),
(40571, 'https://ror.org/02s9tm513', 'no_lang_code', 1, 'https://ror.org/02s9tm513 Indian Oil Corporation (India)'),
(40572, 'https://ror.org/01dywy767', 'pt', 1, 'https://ror.org/01dywy767 Instituto de Ensinos Superiores da Amazônia'),
(40573, 'https://ror.org/01zg9j813', 'no_lang_code', 1, 'https://ror.org/01zg9j813 Thieme Medical Publishers (Germany)'),
(40574, 'https://ror.org/01qfgm256', 'en', 1, 'https://ror.org/01qfgm256 V.E. Lashkaryov Institute of Semiconductor Physics Інститут фізики напівпровідників ім. В.Є. Лашкарьов'),
(40575, 'https://ror.org/00qgtny50', 'en', 1, 'https://ror.org/00qgtny50 Institute of Solid State Physics and Semiconductors Інстытут фізікі цвёрдага цела і паўправаднікоў'),
(40576, 'https://ror.org/0080yzn09', 'en', 1, 'https://ror.org/0080yzn09 Institute of Technical Chemistry'),
(40577, 'https://ror.org/02qrt6d45', 'fr', 1, 'https://ror.org/02qrt6d45 Institut Préparatoire aux Études d''Ingénieurs de Monastir'),
(40578, 'https://ror.org/04bfba223', 'es', 1, 'https://ror.org/04bfba223 Instituto de Investigaciones Eléctricas'),
(40579, 'https://ror.org/054z67s11', 'en', 1, 'https://ror.org/054z67s11 Institute of Technology of Cambodia'),
(40580, 'https://ror.org/015w62071', 'no_lang_code', 1, 'https://ror.org/015w62071 Iran Khodro (Iran) ایران خودرو'),
(40581, 'https://ror.org/05hvcqy45', 'pt', 1, 'https://ror.org/05hvcqy45 Instituto Agronômico do Paraná'),
(40582, 'https://ror.org/04jtk0f19', 'es', 1, 'https://ror.org/04jtk0f19 Instituto Superior de Estudios Psicológicos'),
(40583, 'https://ror.org/04mgkhj33', 'pt', 1, 'https://ror.org/04mgkhj33 Instituto Alergoimuno de Americana'),
(40584, 'https://ror.org/01senny43', 'pt', 1, 'https://ror.org/01senny43 Instituto de Pesquisas Energéticas e Nucleares Nuclear Energy Research Institute'),
(40585, 'https://ror.org/04q32pk93', 'en', 1, 'https://ror.org/04q32pk93 Jawaharlal Nehru Medical College Hospital'),
(40586, 'https://ror.org/01p1xdv40', 'es', 1, 'https://ror.org/01p1xdv40 Instituto Andaluz del Patrimonio Histórico'),
(40587, 'https://ror.org/02r1j5t41', 'no_lang_code', 1, 'https://ror.org/02r1j5t41 ZOSP RP Wytwórnia Umundurowania Strażackiego (Poland)'),
(40588, 'https://ror.org/05mxmg050', 'pt', 1, 'https://ror.org/05mxmg050 Colégio Sinodal'),
(40589, 'https://ror.org/045etwd57', 'no_lang_code', 1, 'https://ror.org/045etwd57 Joaquim Peixoto Azevedo and Sons (Portugal)'),
(40590, 'https://ror.org/029pw4y06', 'pt', 1, 'https://ror.org/029pw4y06 Instituto Superior de Teologia Aplicada'),
(40591, 'https://ror.org/0087qvf80', 'pt', 1, 'https://ror.org/0087qvf80 Instituto Técnico Artístico e Profissional de Coimbra'),
(40592, 'https://ror.org/04ywz9252', 'en', 1, 'https://ror.org/04ywz9252 Islamic Azad University Kerman دانشگاه آزاد اسلامی واحد کرمان'),
(40593, 'https://ror.org/02ntrvb55', 'es', 1, 'https://ror.org/02ntrvb55 Instituto Católico Chileno de Migración'),
(40594, 'https://ror.org/01x3kkr08', 'no_lang_code', 1, 'https://ror.org/01x3kkr08 JPMorgan Chase & Co (United States)'),
(40595, 'https://ror.org/05km8ys10', 'en', 1, 'https://ror.org/05km8ys10 Islamic Azad University of Urmia دانشگاه آزاد اسلامی واحد ارومیه'),
(40596, 'https://ror.org/03tamv273', 'en', 1, 'https://ror.org/03tamv273 Instituto Tecnológico de Celaya Technological Institute of Celaya'),
(40597, 'https://ror.org/04mwvcn50', 'en', 1, 'https://ror.org/04mwvcn50 Islamic Azad University, Yazd دانشگاه آزاد اسلامی یزد'),
(40598, 'https://ror.org/01qg9m571', 'pt', 1, 'https://ror.org/01qg9m571 Jornal de Notícias'),
(40599, 'https://ror.org/0087m7494', 'es', 1, 'https://ror.org/0087m7494 Instituto Tecnológico de Culiacán'),
(40600, 'https://ror.org/02t6f2351', 'pt', 1, 'https://ror.org/02t6f2351 Instituto Federal de Educação, Ciência e Tecnologia de Mato Grosso'),
(40601, 'https://ror.org/0141xw169', 'en', 1, 'https://ror.org/0141xw169 Institute for Space Astrophysics and Planetology Istituto Di Astrofisica E Planetologia Spaziali'),
(40602, 'https://ror.org/00dqega85', 'en', 1, 'https://ror.org/00dqega85 Istituto di Fisica Applicata Nello Carrara Nello Carrara Institute of Applied Physics'),
(40603, 'https://ror.org/02ct1m089', 'en', 1, 'https://ror.org/02ct1m089 Kazan State Medical Academy'),
(40604, 'https://ror.org/05vpj2s72', 'es', 1, 'https://ror.org/05vpj2s72 Instituto Tecnologico de Orizaba'),
(40605, 'https://ror.org/02dqcqh19', 'en', 1, 'https://ror.org/02dqcqh19 Kamineni Institute of Dental Sciences'),
(40606, 'https://ror.org/0377f1g25', 'es', 1, 'https://ror.org/0377f1g25 Instituto Tecnológico de Tepic'),
(40607, 'https://ror.org/0207az548', 'no_lang_code', 1, 'https://ror.org/0207az548 Agtes (Poland)'),
(40608, 'https://ror.org/05s142056', 'es', 1, 'https://ror.org/05s142056 Instituto Tecnológico de Toluca'),
(40609, 'https://ror.org/05tdek150', 'en', 1, 'https://ror.org/05tdek150 Instituto Tecnológico de Tuxtla Gutiérrez Tuxtla Gutierrez Institute of Technology'),
(40610, 'https://ror.org/002tzev63', 'en', 1, 'https://ror.org/002tzev63 IMDEA Energy Institute Instituto IMDEA Energía'),
(40611, 'https://ror.org/05gwc3q21', 'es', 1, 'https://ror.org/05gwc3q21 Instituto Tecnologico de Veracruz'),
(40612, 'https://ror.org/04eyn1y36', 'de', 1, 'https://ror.org/04eyn1y36 Kantonsspital Baselland Standort Bruderholz'),
(40613, 'https://ror.org/04h3gcf69', 'es', 1, 'https://ror.org/04h3gcf69 Instituto Nacional de Investigaciones Agricolas'),
(40614, 'https://ror.org/02knnfm74', 'en', 1, 'https://ror.org/02knnfm74 Board of Intermediate Education Karachi'),
(40615, 'https://ror.org/01851c371', 'no_lang_code', 1, 'https://ror.org/01851c371 Itron (United States)'),
(40616, 'https://ror.org/033wswd35', 'en', 1, 'https://ror.org/033wswd35 Conservatoire royal de Bruxelles Royal Conservatory of Brussels'),
(40617, 'https://ror.org/03zjevq63', 'en', 1, 'https://ror.org/03zjevq63 Korea Air Force Academy 공군사관학교'),
(40618, 'https://ror.org/048jw1p35', 'no_lang_code', 1, 'https://ror.org/048jw1p35 Intel (Malaysia)'),
(40619, 'https://ror.org/015s51n07', 'en', 1, 'https://ror.org/015s51n07 International Advanced Research Centre for Powder Metallurgy and New Materials'),
(40620, 'https://ror.org/055r0va70', 'en', 1, 'https://ror.org/055r0va70 International Center for Biosaline Agriculture'),
(40621, 'https://ror.org/00yew9b22', 'en', 1, 'https://ror.org/00yew9b22 Fondo Internazionale per lo Sviluppo Agricolo Fonds International de Développement Agricole International Fund for Agricultural Development'),
(40622, 'https://ror.org/02v0ayw84', 'sv', 1, 'https://ror.org/02v0ayw84 Kungälvs Sjukhus'),
(40623, 'https://ror.org/010x33r48', 'en', 1, 'https://ror.org/010x33r48 London Postgraduate Medical and Dental Education'),
(40624, 'https://ror.org/00811aj93', 'en', 1, 'https://ror.org/00811aj93 International Humanitarian University Міжнародного гуманітарного університету'),
(40625, 'https://ror.org/05961na22', 'en', 1, 'https://ror.org/05961na22 Marine Hydrophysical Institute Морской Гидрофизический Институт'),
(40626, 'https://ror.org/02ypzv613', 'en', 1, 'https://ror.org/02ypzv613 Military Geographical Institute Vojnogeografski institut'),
(40627, 'https://ror.org/02tcs8g80', 'no_lang_code', 1, 'https://ror.org/02tcs8g80 Laboratório Edol (Portugal)'),
(40628, 'https://ror.org/008sszm38', 'en', 1, 'https://ror.org/008sszm38 M S Swaminathan Research Foundation'),
(40629, 'https://ror.org/03f856541', 'es', 1, 'https://ror.org/03f856541 Ministerio de Educación Pública'),
(40630, 'https://ror.org/01yykzy84', 'no_lang_code', 1, 'https://ror.org/01yykzy84 Mahle (Portugal)'),
(40631, 'https://ror.org/03zs93v51', 'en', 1, 'https://ror.org/03zs93v51 Ministry of Foreign Affairs Ministério dos Negócios Estrangeiros'),
(40632, 'https://ror.org/05s2p6w24', 'pt', 1, 'https://ror.org/05s2p6w24 Museu Nacional de Arte Contemporânea do Chiado'),
(40633, 'https://ror.org/04d68zn48', 'de', 1, 'https://ror.org/04d68zn48 Landesschulrat für Tirol'),
(40634, 'https://ror.org/028zdff86', 'en', 1, 'https://ror.org/028zdff86 Ministry of Education, Science, Technology and Sports'),
(40635, 'https://ror.org/01hw7wf62', 'en', 1, 'https://ror.org/01hw7wf62 Ministry of Education وزارت آموزش و پرورش ایران'),
(40636, 'https://ror.org/05cstvk27', 'en', 1, 'https://ror.org/05cstvk27 Management Development Institute'),
(40637, 'https://ror.org/03ftcjb67', 'en', 1, 'https://ror.org/03ftcjb67 Muséum d''Histoire Naturelle de Genève Natural History Museum of Geneva'),
(40638, 'https://ror.org/00fa9v295', 'en', 1, 'https://ror.org/00fa9v295 Medway School of Pharmacy'),
(40639, 'https://ror.org/0436hqh35', 'no_lang_code', 1, 'https://ror.org/0436hqh35 MAPNA Group (Iran)'),
(40640, 'https://ror.org/052jm1735', 'en', 1, 'https://ror.org/052jm1735 MOH Holdings'),
(40641, 'https://ror.org/04pqz1f73', 'sv', 1, 'https://ror.org/04pqz1f73 Lasarettet i Ystad'),
(40642, 'https://ror.org/03x4sv346', 'en', 1, 'https://ror.org/03x4sv346 Ministarstvo zdravstva Ministry of Health'),
(40643, 'https://ror.org/014p3qz82', 'en', 1, 'https://ror.org/014p3qz82 Ministry of Public Administration জনপ্রশাসন মন্ত্রণালয়'),
(40644, 'https://ror.org/047m0fb88', 'en', 1, 'https://ror.org/047m0fb88 Mental Health Services Region Hovedstadens psykiatriske hospital'),
(40645, 'https://ror.org/041j7s452', 'en', 1, 'https://ror.org/041j7s452 Thailand National Metal and Materials Technology Center ศูนย์เทคโนโลยีโลหะและวัสดุแห่งชาติ'),
(40646, 'https://ror.org/05tzkx710', 'no_lang_code', 1, 'https://ror.org/05tzkx710 Mir Technology Holdings (Turkey)'),
(40647, 'https://ror.org/00w793a39', 'en', 1, 'https://ror.org/00w793a39 Livestock Improvement Corporation'),
(40648, 'https://ror.org/01rk7mv85', 'no_lang_code', 1, 'https://ror.org/01rk7mv85 Siemens (Hungary)'),
(40649, 'https://ror.org/02z8rt196', 'en', 1, 'https://ror.org/02z8rt196 National Center for Technology Management'),
(40650, 'https://ror.org/053jnhe44', 'no_lang_code', 1, 'https://ror.org/053jnhe44 Mitsubishi Electric (United States)'),
(40651, 'https://ror.org/00ssjpk84', 'no_lang_code', 1, 'https://ror.org/00ssjpk84 L&S Consulting (South Africa)'),
(40652, 'https://ror.org/042k2b411', 'en', 1, 'https://ror.org/042k2b411 National Centre for Sustainable Coastal Management'),
(40653, 'https://ror.org/01vcn5r95', 'en', 1, 'https://ror.org/01vcn5r95 National Postgraduate Medical College of Nigeria'),
(40654, 'https://ror.org/01cch8797', 'no_lang_code', 1, 'https://ror.org/01cch8797 Mobica (Egypt)'),
(40655, 'https://ror.org/0101we292', 'en', 1, 'https://ror.org/0101we292 National Centre of Excellence in Analytical Chemistry'),
(40656, 'https://ror.org/02jxpdd90', 'en', 1, 'https://ror.org/02jxpdd90 Life Science Zurich'),
(40657, 'https://ror.org/04yt1rh21', 'en', 1, 'https://ror.org/04yt1rh21 Lifespan'),
(40658, 'https://ror.org/03zrrks14', 'no_lang_code', 1, 'https://ror.org/03zrrks14 Metav (Romania)'),
(40659, 'https://ror.org/00cq3cz72', 'en', 1, 'https://ror.org/00cq3cz72 National Research Centre on Plant Biotechnology राष्ट्रीय पादप जैवप्रौद्योगिकी अनुसंधान केन्द्र'),
(40660, 'https://ror.org/04kh65m59', 'en', 1, 'https://ror.org/04kh65m59 Moscow Institute of Energy and Energy Saving'),
(40661, 'https://ror.org/00bp00b85', 'es', 1, 'https://ror.org/00bp00b85 Instituto Geográfico Nacional'),
(40662, 'https://ror.org/03hdcb713', 'no_lang_code', 1, 'https://ror.org/03hdcb713 MicroMass Communications (United States)'),
(40663, 'https://ror.org/044vgd869', 'en', 1, 'https://ror.org/044vgd869 National Institute of Cardiovascular Diseases'),
(40664, 'https://ror.org/00rpc7w94', 'en', 1, 'https://ror.org/00rpc7w94 National Institute of Technical Teachers Training and Research'),
(40665, 'https://ror.org/02w7f3w92', 'no_lang_code', 1, 'https://ror.org/02w7f3w92 Microsoft Research (India)'),
(40666, 'https://ror.org/05n5mpz07', 'pt', 1, 'https://ror.org/05n5mpz07 Ordem dos Médicos'),
(40667, 'https://ror.org/01nks1c62', 'no_lang_code', 1, 'https://ror.org/01nks1c62 Nissan (Japan) 日産自動車株式会社'),
(40668, 'https://ror.org/033c4qc49', 'en', 1, 'https://ror.org/033c4qc49 Niuvanniemi Hospital Nuvanniemen Sairala'),
(40669, 'https://ror.org/02fwden70', 'en', 1, 'https://ror.org/02fwden70 Astronomical Observatory of Capodimonte Osservatorio Astronomico di Capodimonte'),
(40670, 'https://ror.org/02avcvc17', 'en', 1, 'https://ror.org/02avcvc17 National Trust for Nature Conservation राष्ट्रिय प्रकृति संरक्षण कोष'),
(40671, 'https://ror.org/02txwfx92', 'it', 1, 'https://ror.org/02txwfx92 Giuseppe Salvatore Vaiana Osservatorio Astronomico di Palermo'),
(40672, 'https://ror.org/00fhten74', 'en', 1, 'https://ror.org/00fhten74 Pukhov Institute for Modelling in Energy Engineering Інститут проблем моделювання в енергетиці ім. Г.Є. Пухова Институт проблем моделирования в энергетике им. Г.Е. Пухова'),
(40673, 'https://ror.org/029qq7963', 'no_lang_code', 1, 'https://ror.org/029qq7963 Novabase (Portugal)'),
(40674, 'https://ror.org/02d9wx511', 'en', 1, 'https://ror.org/02d9wx511 Observatório Político Political Observatory'),
(40675, 'https://ror.org/0310kd428', 'en', 1, 'https://ror.org/0310kd428 Pakistan Army پاک فوج'),
(40676, 'https://ror.org/017zhda45', 'en', 1, 'https://ror.org/017zhda45 Queensland Centre for Mental Health Research'),
(40677, 'https://ror.org/056fndr85', 'no_lang_code', 1, 'https://ror.org/056fndr85 Holtzbrinck Publishing Group (United States)'),
(40678, 'https://ror.org/042k6ee15', 'en', 1, 'https://ror.org/042k6ee15 Pakistan Space and Upper Atmosphere Research Commission خلائی و بالائی فضائی تحقیقاتی مأموریہ'),
(40679, 'https://ror.org/0091z1a80', 'no_lang_code', 1, 'https://ror.org/0091z1a80 Porto Editora (Portugal)'),
(40680, 'https://ror.org/0491qwe57', 'en', 1, 'https://ror.org/0491qwe57 Korea Naval Academy 해군사관학교'),
(40681, 'https://ror.org/03enm7r21', 'no_lang_code', 1, 'https://ror.org/03enm7r21 Pakistan Telecommunication Company (Pakistan) پی ٹی سی ایل'),
(40682, 'https://ror.org/025fq9n57', 'en', 1, 'https://ror.org/025fq9n57 Energy Services Regulatory Authority Entidade Reguladora dos Serviços Energéticos'),
(40683, 'https://ror.org/025csd220', 'en', 1, 'https://ror.org/025csd220 Odense Kommune Odense Municipality'),
(40684, 'https://ror.org/04n4r7e14', 'pt', 1, 'https://ror.org/04n4r7e14 Fundação Centro de Hematologia e Hemoterapia de Minas Gerais'),
(40685, 'https://ror.org/0121en785', 'pt', 1, 'https://ror.org/0121en785 Prefeitura do Município de São Paulo'),
(40686, 'https://ror.org/05k5nmp03', 'pt', 1, 'https://ror.org/05k5nmp03 Prefeitura Municipal de Belo Horizonte'),
(40687, 'https://ror.org/029mfc453', 'pl', 1, 'https://ror.org/029mfc453 Państwowa Wyższa Szkoła Zawodowa w Nysie University of Applied Sciences in Nysas'),
(40688, 'https://ror.org/0469ct910', 'pt', 1, 'https://ror.org/0469ct910 Prefeitura Municipal de Curitiba'),
(40689, 'https://ror.org/02x0mcx56', 'pt', 1, 'https://ror.org/02x0mcx56 Prefeitura Municipal do Natal'),
(40690, 'https://ror.org/04y4hcz67', 'en', 1, 'https://ror.org/04y4hcz67 Państwowa Wyższa Szkoła Zawodowa im. Szymona Szymonowica w Zamościu State Higher School of Vocational Education in Zamość'),
(40691, 'https://ror.org/052073c89', 'pt', 1, 'https://ror.org/052073c89 Prefeitura Municipal de Vitória'),
(40692, 'https://ror.org/005s20452', 'en', 1, 'https://ror.org/005s20452 Paichai Chinese Primary School'),
(40693, 'https://ror.org/046pgjy90', 'en', 1, 'https://ror.org/046pgjy90 Prevention Alzheimer International Foundation'),
(40694, 'https://ror.org/01t8gb397', 'en', 1, 'https://ror.org/01t8gb397 Scientific Centre for Aerospace Research of the Earth НАУЧНЫЙ ЦЕНТР АЭРОКОСМИЧЕСКИХ ИССЛЕДОВАНИЙ ЗЕМЛИ ИН-ТА ГЕОЛОГИЧЕСКИХ НАУК НАН УКРАИНЫ, ГУ'),
(40695, 'https://ror.org/00rx3ej27', 'en', 1, 'https://ror.org/00rx3ej27 Robert Kennedy College'),
(40696, 'https://ror.org/0397v9r66', 'en', 1, 'https://ror.org/0397v9r66 University of Economics and Management Vysoká škola ekonomie a managementu'),
(40697, 'https://ror.org/006ffhv52', 'en', 1, 'https://ror.org/006ffhv52 International School of Trieste Scuola Internazionale di Trieste'),
(40698, 'https://ror.org/049kydx29', 'en', 1, 'https://ror.org/049kydx29 Perpetual Succour Hospital'),
(40699, 'https://ror.org/01km55q65', 'en', 1, 'https://ror.org/01km55q65 Państwowa Wyższa Szkoła Zawodowa w Elblągu State University of Applied Sciences in Elbląg'),
(40700, 'https://ror.org/04wthrp69', 'en', 1, 'https://ror.org/04wthrp69 Państwowa Wyższa Szkoła Zawodowa w Głogowie State Higher Vocational School in Głogów'),
(40701, 'https://ror.org/03264me25', 'pt', 1, 'https://ror.org/03264me25 Associação de Municípios do Vale do Sousa'),
(40702, 'https://ror.org/04s4rcv05', 'en', 1, 'https://ror.org/04s4rcv05 Hipolit Cegielski State University of Applied Sciences in Gniezno Państwowa Wyższa Szkoła Zawodowa im. Hipolita Cegielskiego w Gnieźnie'),
(40703, 'https://ror.org/05t167j53', 'en', 1, 'https://ror.org/05t167j53 Państwowa Wyższa Szkoła Zawodowa w Koszalinie State Higher Vocational School in Koszalin'),
(40704, 'https://ror.org/0331rkj73', 'en', 1, 'https://ror.org/0331rkj73 Republic of Korea Army 대한민국 육군'),
(40705, 'https://ror.org/02d7xrh88', 'pt', 1, 'https://ror.org/02d7xrh88 Secretaria da Educação do Estado da Bahia'),
(40706, 'https://ror.org/01bvxnj28', 'en', 1, 'https://ror.org/01bvxnj28 Państwowa Wyższa Szkoła Zawodowa im. Stanisława Pigonia w Krośnie State Higher Vocational School in Krosno'),
(40707, 'https://ror.org/04gap2p44', 'en', 1, 'https://ror.org/04gap2p44 Society of Exploration Geophysicists'),
(40708, 'https://ror.org/04scnfc98', 'en', 1, 'https://ror.org/04scnfc98 Republican Scientific and Practical Center of Neurology and Neurosurgery Республиканский научно-практический центр неврологии и нейрохирургии Рэспубліканскі навукова-практычны цэнтр неўралогіі і нейрахірургіі'),
(40709, 'https://ror.org/0163kd003', 'en', 1, 'https://ror.org/0163kd003 Pastwowa Wysza Szkoa Zawodowa im. Witelona w Legnicy Witelon State University of Applied Sciences in Legnica'),
(40710, 'https://ror.org/01tq31x15', 'en', 1, 'https://ror.org/01tq31x15 Państwowa Wyższa Szkoła Zawodowa im. rotmistrza Witolda Pileckiego w Oświęcimiu State School of Higher Education in Oświęcim'),
(40711, 'https://ror.org/0066jc902', 'en', 1, 'https://ror.org/0066jc902 Soil Conservation and Watershed Management Research پژوهشکده حفاظت خاک و آبخیزداری'),
(40712, 'https://ror.org/05kp9g017', 'en', 1, 'https://ror.org/05kp9g017 Państwowa Wyższa Szkoła Zawodowa im. Stanisława Staszica w Pile Stanisław Staszic University of Applied Sciences in Piła'),
(40713, 'https://ror.org/02vksp793', 'es', 1, 'https://ror.org/02vksp793 Instituto de Investigaciones en Fruticultura Tropical'),
(40714, 'https://ror.org/036bh3761', 'no_lang_code', 1, 'https://ror.org/036bh3761 Sonae (Portugal)'),
(40715, 'https://ror.org/0070wyz29', 'es', 1, 'https://ror.org/0070wyz29 Secretaría de Salud de Jalisco'),
(40716, 'https://ror.org/05x8s5x77', 'en', 1, 'https://ror.org/05x8s5x77 Shamnur Shivashankarappa Institute of Medical Sciences & Research Centre ಶಾಮನೂರು ಶಿವಶಂಕರಪ್ಪ ವೈದ್ಯಕೀಯ ಮಹಾವಿದ್ಯಾಲಯ, ಸಂಶೋದನಾ ಕೇಂದ್ರ'),
(40717, 'https://ror.org/00c0gj024', 'no_lang_code', 1, 'https://ror.org/00c0gj024 Research Square (United States)'),
(40718, 'https://ror.org/01tg7a346', 'en', 1, 'https://ror.org/01tg7a346 SA Health'),
(40719, 'https://ror.org/04age2m32', 'pl', 1, 'https://ror.org/04age2m32 Państwowa Wyższa Szkoła Zawodowa w Raciborzu'),
(40720, 'https://ror.org/00avcrs60', 'es', 1, 'https://ror.org/00avcrs60 Revista Conamed'),
(40721, 'https://ror.org/02ach0e13', 'en', 1, 'https://ror.org/02ach0e13 Jan Grodek State Vocational Academy in Sanok Państwowa Wyższa Szkoła Zawodowa im. Jana Grodka w Sanoku'),
(40722, 'https://ror.org/01yz56j89', 'en', 1, 'https://ror.org/01yz56j89 National Training Service Servicio Nacional de Aprendizaje'),
(40723, 'https://ror.org/02svk5a52', 'en', 1, 'https://ror.org/02svk5a52 Państwowa Wyższa Szkoła Zawodowa w Skierniewicach State Higher Vocational School in Skierniewice'),
(40724, 'https://ror.org/00n5fv691', 'pl', 1, 'https://ror.org/00n5fv691 Państwowa Wyższa Szkoła Zawodowa w Sulechowie'),
(40725, 'https://ror.org/00jsbh426', 'en', 1, 'https://ror.org/00jsbh426 South Eastern Railway'),
(40726, 'https://ror.org/047njqg32', 'en', 1, 'https://ror.org/047njqg32 Edward F. Szczepanik State School of Higher Professional Education in Suwalki Państwowa Wyższa Szkoła Zawodowa im. prof. E. Szczepanika w Suwałkach'),
(40727, 'https://ror.org/001154j50', 'en', 1, 'https://ror.org/001154j50 Państwowa Wyższa Szkoła Zawodowa im. prof. Stanisława Tarnowskiego w Tarnobrzegu State Higher Vocational School Memorial of Prof. Stanislaw Tarnowski in Tarnobrzeg'),
(40728, 'https://ror.org/00wg8t158', 'no_lang_code', 1, 'https://ror.org/00wg8t158 Sugal Group (Portugal)'),
(40729, 'https://ror.org/044j2cm68', 'en', 1, 'https://ror.org/044j2cm68 South Tyneside and Sunderland NHS Foundation Trust'),
(40730, 'https://ror.org/053ya0s96', 'pl', 1, 'https://ror.org/053ya0s96 Państwowa Wyższa Szkoła Zawodowa we Włocławku'),
(40731, 'https://ror.org/0312xab44', 'es', 1, 'https://ror.org/0312xab44 Servicio Canario de la Salud'),
(40732, 'https://ror.org/05pv25483', 'no_lang_code', 1, 'https://ror.org/05pv25483 Sunrise Communications AG (Switzerland)'),
(40733, 'https://ror.org/02c5acs33', 'no_lang_code', 1, 'https://ror.org/02c5acs33 Sutol (Portugal)'),
(40734, 'https://ror.org/0311qq620', 'pt', 1, 'https://ror.org/0311qq620 Santa Casa da Misericórdia de Almeirim'),
(40735, 'https://ror.org/00m94dk17', 'en', 1, 'https://ror.org/00m94dk17 Podhalańska Państwowa Wyższa Szkoła Zawodowa w Nowym Targu Podhale State Higher Vocational School in Nowy Targ'),
(40736, 'https://ror.org/00g1a3p24', 'en', 1, 'https://ror.org/00g1a3p24 Saudi Commission for Health Specialties الهيئة السعودية للتخصصات الصحية'),
(40737, 'https://ror.org/03qesm017', 'en', 1, 'https://ror.org/03qesm017 Southern Health NHS Foundation Trust'),
(40738, 'https://ror.org/032sa1p36', 'pt', 1, 'https://ror.org/032sa1p36 Serviço Social da Indústria de Santa Catarina'),
(40739, 'https://ror.org/015zbz228', 'en', 1, 'https://ror.org/015zbz228 Space Research Institute Інститут космічних досліджень'),
(40740, 'https://ror.org/02phrtc32', 'no_lang_code', 1, 'https://ror.org/02phrtc32 SGS (Portugal) Sociedade Geral de Superintendência'),
(40741, 'https://ror.org/05evqj924', 'en', 1, 'https://ror.org/05evqj924 SPIE Europe'),
(40742, 'https://ror.org/00y7x8f51', 'no_lang_code', 1, 'https://ror.org/00y7x8f51 Vodafone (Portugal)'),
(40743, 'https://ror.org/032c96a22', 'en', 1, 'https://ror.org/032c96a22 Turk Silahli Kuvvetlerini Guclendirme Vakfi Turkish Armed Forces Foundation'),
(40744, 'https://ror.org/00daqep21', 'pt', 1, 'https://ror.org/00daqep21 Sporting Clube Vasco da Gama'),
(40745, 'https://ror.org/00v0vvh64', 'nl', 1, 'https://ror.org/00v0vvh64 Tactus Verslavingszorg'),
(40746, 'https://ror.org/03629ds51', 'no_lang_code', 1, 'https://ror.org/03629ds51 Springer Publishing Company (United States)'),
(40747, 'https://ror.org/05wg4vp92', 'en', 1, 'https://ror.org/05wg4vp92 Ternopil Institute for Social and Information Technologies'),
(40748, 'https://ror.org/05mtgrz63', 'en', 1, 'https://ror.org/05mtgrz63 Takestan Islamic Azad University'),
(40749, 'https://ror.org/04g96bg87', 'en', 1, 'https://ror.org/04g96bg87 TALLINNA ÄRIPANGA AS Tallinn Business Bank'),
(40750, 'https://ror.org/03cv6f983', 'en', 1, 'https://ror.org/03cv6f983 Texas A&M University School of Law'),
(40751, 'https://ror.org/015dfn538', 'en', 1, 'https://ror.org/015dfn538 Turkish Armed Forces Türk Silahlı Kuvvetleri'),
(40752, 'https://ror.org/04vv1c071', 'en', 1, 'https://ror.org/04vv1c071 Silsbee Independent School District'),
(40753, 'https://ror.org/00ar3n458', 'en', 1, 'https://ror.org/00ar3n458 College of Dental Surgeons of Hong Kong'),
(40754, 'https://ror.org/02fsnvs68', 'no_lang_code', 1, 'https://ror.org/02fsnvs68 Portuguese Air Transportations (Portugal) Transportes Aéreos Portugueses'),
(40755, 'https://ror.org/00wh1y768', 'en', 1, 'https://ror.org/00wh1y768 Department of Education Tasmania'),
(40756, 'https://ror.org/00snyqa86', 'pt', 1, 'https://ror.org/00snyqa86 Teledifusão de Macau 澳廣視'),
(40757, 'https://ror.org/033d2fn04', 'en', 1, 'https://ror.org/033d2fn04 Korean Society of Speech Sciences'),
(40758, 'https://ror.org/05a781r26', 'no_lang_code', 1, 'https://ror.org/05a781r26 Statisticon (Sweden)'),
(40759, 'https://ror.org/03bqw6m62', 'en', 1, 'https://ror.org/03bqw6m62 National Theatre D. Maria II Teatro Nacional D. Maria II'),
(40760, 'https://ror.org/02tzvz077', 'pt', 1, 'https://ror.org/02tzvz077 Teatro Nacional São João'),
(40761, 'https://ror.org/02ehp0f77', 'en', 1, 'https://ror.org/02ehp0f77 Umeå Plant Science Centre'),
(40762, 'https://ror.org/04a2pvv21', 'no_lang_code', 1, 'https://ror.org/04a2pvv21 Strathmore Company (United States)'),
(40763, 'https://ror.org/04d5f4w73', 'en', 1, 'https://ror.org/04d5f4w73 Stockholm Health Care Services Stockholms läns sjukvårdsområde'),
(40764, 'https://ror.org/023sjj642', 'pt', 1, 'https://ror.org/023sjj642 Municipal de Óbidos'),
(40765, 'https://ror.org/04t17dk82', 'pt', 1, 'https://ror.org/04t17dk82 União Dinâmica de Faculdades Cataratas'),
(40766, 'https://ror.org/01cbeee29', 'es', 1, 'https://ror.org/01cbeee29 Universidad Católica Cecilio Acosta'),
(40767, 'https://ror.org/029ghce65', 'en', 1, 'https://ror.org/029ghce65 Union Christian College'),
(40768, 'https://ror.org/05yk11s87', 'no_lang_code', 1, 'https://ror.org/05yk11s87 United Space Alliance (USA)'),
(40769, 'https://ror.org/040hdjp50', 'en', 1, 'https://ror.org/040hdjp50 United States Army Reserve'),
(40770, 'https://ror.org/04yts9m86', 'es', 1, 'https://ror.org/04yts9m86 Universidad Dr. José Gregorio Hernández'),
(40771, 'https://ror.org/01n0q6e38', 'en', 1, 'https://ror.org/01n0q6e38 Gause Institute of New Antibiotics Russian Academy of Medical Sciences Научно-исследовательский институт по изысканию новых антибиотиков им. Г. Ф. Гаузе'),
(40772, 'https://ror.org/05t5rc419', 'en', 1, 'https://ror.org/05t5rc419 Research Institute of Complex Problems of Cardiovascular Disease Russian Academy of Medical Sciences'),
(40773, 'https://ror.org/00f4mz521', 'en', 1, 'https://ror.org/00f4mz521 Institute of Strength Physics and Materials Science Институт физики прочности и материаловедения СО РАН'),
(40774, 'https://ror.org/03af2ad05', 'en', 1, 'https://ror.org/03af2ad05 Institute of Mechanics and Engineering Институт механики и машиностроения КазНЦ РАН'),
(40775, 'https://ror.org/009qtkb56', 'en', 1, 'https://ror.org/009qtkb56 Research Institute of Obstetrics and Gynecology named after D.O. Ott НИИ акушерства и гинекологии имени Д. О. Отта'),
(40776, 'https://ror.org/027n02r78', 'en', 1, 'https://ror.org/027n02r78 Scientific Center of Family Health Problems and Human Reproduction'),
(40777, 'https://ror.org/05bpnjz66', 'en', 1, 'https://ror.org/05bpnjz66 Institute of Pharmacology Russian Academy of Medical Sciences Научно-исследовательский институт фармакологии имени В.В.Закусова» ... Российской академии'),
(40778, 'https://ror.org/03z90hq89', 'en', 1, 'https://ror.org/03z90hq89 Central Scientific Research Institute of Tuberculosis Russian Academy of Medical Sciences Центральный научно-исследовательский институт туберкулеза Российской академии медицинских наук'),
(40779, 'https://ror.org/047ax2108', 'en', 1, 'https://ror.org/047ax2108 Federal Research Centre Coal and Coal Chemistry Федеральный исследовательский центр угля и углехимии СО РАН'),
(40780, 'https://ror.org/03c94bc04', 'en', 1, 'https://ror.org/03c94bc04 Bakulev Scientific Center for Cardiovascular Surgery Russian Academy of Medical Sciences Научный центр сердечно-сосудистой хирургии им. А.Н. Бакулева'),
(40781, 'https://ror.org/044037f11', 'en', 1, 'https://ror.org/044037f11 Saratov Research Center Федеральное государственное бюджетное учреждение науки Саратовский научный центр Российской академии наук'),
(40782, 'https://ror.org/00g4bcb66', 'en', 1, 'https://ror.org/00g4bcb66 Kazan Scientific Center Казанский научный центр РАН'),
(40783, 'https://ror.org/01ygw1452', 'en', 1, 'https://ror.org/01ygw1452 Institute of Ecological Problems of the North УрО РАН. Институт экологических проблем Севера УрО РАН в соответствии с приказом ФАНО'),
(40784, 'https://ror.org/00bbt0744', 'en', 1, 'https://ror.org/00bbt0744 Polar Geophysical Institute Полярный геофизический институт'),
(40785, 'https://ror.org/035y1ap70', 'en', 1, 'https://ror.org/035y1ap70 Institute of Biology of Karelian Research Centre Институт биологии КарНЦ РАН'),
(40786, 'https://ror.org/006byrq44', 'en', 1, 'https://ror.org/006byrq44 Far Eastern Scientific Centre of Physiology and Pathology of Respiration Russian Academy of Medical Sciences Дальневосточный научный центр физиологии и патологии дыхания'),
(40787, 'https://ror.org/0033hxy10', 'no_lang_code', 1, 'https://ror.org/0033hxy10 Vaisala (United States)'),
(40788, 'https://ror.org/0354taf69', 'en', 1, 'https://ror.org/0354taf69 West African College of Physicians'),
(40789, 'https://ror.org/01r134p51', 'en', 1, 'https://ror.org/01r134p51 Urban Unit'),
(40790, 'https://ror.org/03svd7w08', 'en', 1, 'https://ror.org/03svd7w08 West Midlands Deanery'),
(40791, 'https://ror.org/04anve402', 'en', 1, 'https://ror.org/04anve402 World Intellectual Property Organization'),
(40792, 'https://ror.org/037w3ea30', 'no_lang_code', 1, 'https://ror.org/037w3ea30 WSO2 (Sri Lanka)'),
(40793, 'https://ror.org/017c99632', 'en', 1, 'https://ror.org/017c99632 D.I. Mendeleyev All-Russian Institute for Metrology ВНИИ метрологии им. Д.И.Менделеева, ломоносовское отделение'),
(40794, 'https://ror.org/02nys7898', 'en', 1, 'https://ror.org/02nys7898 Western Cape Department of Health'),
(40795, 'https://ror.org/051qah137', 'no_lang_code', 1, 'https://ror.org/051qah137 VSL Korea (South Korea)'),
(40796, 'https://ror.org/04bqa9n74', 'en', 1, 'https://ror.org/04bqa9n74 United States Global Change Research Program'),
(40797, 'https://ror.org/00615jn62', 'no_lang_code', 1, 'https://ror.org/00615jn62 Walgreens (United States)'),
(40798, 'https://ror.org/000gm1k91', 'no_lang_code', 1, 'https://ror.org/000gm1k91 John Wiley & Sons (Germany)'),
(40799, 'https://ror.org/05xr5sw33', 'en', 1, 'https://ror.org/05xr5sw33 Virginia Tech Services'),
(40800, 'https://ror.org/05yg67b36', 'en', 1, 'https://ror.org/05yg67b36 Dr Maliso Mphele Hospital'),
(40801, 'https://ror.org/00182ep39', 'no_lang_code', 1, 'https://ror.org/00182ep39 Advanced Photon Sciences (United States)'),
(40802, 'https://ror.org/03fs7vk32', 'no_lang_code', 1, 'https://ror.org/03fs7vk32 American International Group (United States)'),
(40803, 'https://ror.org/04vxpm374', 'no_lang_code', 1, 'https://ror.org/04vxpm374 Aegon (Netherlands)'),
(40804, 'https://ror.org/0506h7130', 'en', 1, 'https://ror.org/0506h7130 Aaron Copland Fund for Music'),
(40805, 'https://ror.org/018axtd57', 'no_lang_code', 1, 'https://ror.org/018axtd57 Array BioPharma (United States)'),
(40806, 'https://ror.org/02mv4ab52', 'en', 1, 'https://ror.org/02mv4ab52 inVentiv Health Clinical'),
(40807, 'https://ror.org/01vd19x80', 'no_lang_code', 1, 'https://ror.org/01vd19x80 Arthrex (United States)'),
(40808, 'https://ror.org/00r7arj43', 'en', 1, 'https://ror.org/00r7arj43 Central Bank of Uzbekistan O''zbekiston Respublikasi Markaziy banki Ўзбекистон Республикаси Марказий Банки'),
(40809, 'https://ror.org/01gh6ja41', 'no_lang_code', 1, 'https://ror.org/01gh6ja41 Alltech (United States)'),
(40810, 'https://ror.org/024eb0f34', 'hu', 1, 'https://ror.org/024eb0f34 BM Központi Kórház'),
(40811, 'https://ror.org/0504sy495', 'no_lang_code', 1, 'https://ror.org/0504sy495 Arthrex (Germany)'),
(40812, 'https://ror.org/05pae1j85', 'no_lang_code', 1, 'https://ror.org/05pae1j85 AES (Brazil)'),
(40813, 'https://ror.org/04v748538', 'no_lang_code', 1, 'https://ror.org/04v748538 Abbott (Japan) アボット'),
(40814, 'https://ror.org/053evkn98', 'no_lang_code', 1, 'https://ror.org/053evkn98 Abbott (South Korea)'),
(40815, 'https://ror.org/03r5jfv76', 'no_lang_code', 1, 'https://ror.org/03r5jfv76 Amerisure Insurance (United States)'),
(40816, 'https://ror.org/03538jp08', 'no_lang_code', 1, 'https://ror.org/03538jp08 AbbVie (Germany)'),
(40817, 'https://ror.org/006nxzf98', 'no_lang_code', 1, 'https://ror.org/006nxzf98 Ashland (United States)'),
(40818, 'https://ror.org/05mqjj634', 'no_lang_code', 1, 'https://ror.org/05mqjj634 Aesculap (United States)'),
(40819, 'https://ror.org/03f5nqa05', 'no_lang_code', 1, 'https://ror.org/03f5nqa05 Aboca (Italy)'),
(40820, 'https://ror.org/03yfbaq97', 'no_lang_code', 1, 'https://ror.org/03yfbaq97 Harman (United States)'),
(40821, 'https://ror.org/02q017026', 'en', 1, 'https://ror.org/02q017026 Asian Center for Theological Studies and Mission 아세아연합신학대학교'),
(40822, 'https://ror.org/010e8pt90', 'no_lang_code', 1, 'https://ror.org/010e8pt90 Abu Dhabi National Oil (United Arab Emirates) شركة بترول أبوظبي الوطنية'),
(40823, 'https://ror.org/00vhvv548', 'no_lang_code', 1, 'https://ror.org/00vhvv548 Andersen (United States)'),
(40824, 'https://ror.org/00k672v31', 'no_lang_code', 1, 'https://ror.org/00k672v31 DuPont (Brazil)'),
(40825, 'https://ror.org/054p3p004', 'en', 1, 'https://ror.org/054p3p004 Academy of Medical Royal Colleges'),
(40826, 'https://ror.org/004nr3476', 'no_lang_code', 1, 'https://ror.org/004nr3476 Amdocs (United States)'),
(40827, 'https://ror.org/038xyrg49', 'no_lang_code', 1, 'https://ror.org/038xyrg49 Africagrowth Institute (South Africa)'),
(40828, 'https://ror.org/04xwqjy30', 'no_lang_code', 1, 'https://ror.org/04xwqjy30 Ameren (United States)'),
(40829, 'https://ror.org/02av6ek82', 'en', 1, 'https://ror.org/02av6ek82 American Academy in Berlin'),
(40830, 'https://ror.org/000dp5151', 'no_lang_code', 1, 'https://ror.org/000dp5151 Anecova (Switzerland)'),
(40831, 'https://ror.org/01ngwgb14', 'no_lang_code', 1, 'https://ror.org/01ngwgb14 AspenTech (United States)'),
(40832, 'https://ror.org/04k0x3905', 'en', 1, 'https://ror.org/04k0x3905 American Academy of Fixed Prosthodontics'),
(40833, 'https://ror.org/05raay295', 'en', 1, 'https://ror.org/05raay295 Agfa HealthCare'),
(40834, 'https://ror.org/0196eae03', 'en', 1, 'https://ror.org/0196eae03 American Academy of Nursing'),
(40835, 'https://ror.org/05bz49965', 'no_lang_code', 1, 'https://ror.org/05bz49965 Angelini Pharma (Italy)'),
(40836, 'https://ror.org/00amzdz67', 'no_lang_code', 1, 'https://ror.org/00amzdz67 ASSAB Pacific (Singapore)'),
(40837, 'https://ror.org/02h5zfy21', 'en', 1, 'https://ror.org/02h5zfy21 Accident Compensation Corporation Te Kaporeihana Āwhina Hunga Whara'),
(40838, 'https://ror.org/05b6ef038', 'en', 1, 'https://ror.org/05b6ef038 American Academy of Psychiatry and the Law'),
(40839, 'https://ror.org/01vctnd13', 'nl', 1, 'https://ror.org/01vctnd13 Vereniging Achmea'),
(40840, 'https://ror.org/01nxpwc48', 'en', 1, 'https://ror.org/01nxpwc48 American College of Neuropsychopharmacology'),
(40841, 'https://ror.org/04vmsnf37', 'no_lang_code', 1, 'https://ror.org/04vmsnf37 Assurant (United States)'),
(40842, 'https://ror.org/03v8gvx29', 'en', 1, 'https://ror.org/03v8gvx29 American College of Psychiatrists'),
(40843, 'https://ror.org/0461tyx67', 'no_lang_code', 1, 'https://ror.org/0461tyx67 Agram (Poland)'),
(40844, 'https://ror.org/02s995827', 'no_lang_code', 1, 'https://ror.org/02s995827 Allergan (Germany)'),
(40845, 'https://ror.org/051sg1a03', 'no_lang_code', 1, 'https://ror.org/051sg1a03 AOL (United States)'),
(40846, 'https://ror.org/04vdmc602', 'no_lang_code', 1, 'https://ror.org/04vdmc602 Honda (United States)'),
(40847, 'https://ror.org/03bs3bh63', 'no_lang_code', 1, 'https://ror.org/03bs3bh63 Actualis (France)');
INSERT INTO `rors` VALUES
(40848, 'https://ror.org/018nw3344', 'no_lang_code', 1, 'https://ror.org/018nw3344 AstraZeneca (Australia)'),
(40849, 'https://ror.org/04de57j78', 'no_lang_code', 1, 'https://ror.org/04de57j78 Apex Innovations (United States)'),
(40850, 'https://ror.org/00pv14226', 'no_lang_code', 1, 'https://ror.org/00pv14226 Acxiom (United States)'),
(40851, 'https://ror.org/02cm5rz95', 'no_lang_code', 1, 'https://ror.org/02cm5rz95 Koch Agronomic Services (United States)'),
(40852, 'https://ror.org/034bqzm84', 'no_lang_code', 1, 'https://ror.org/034bqzm84 Adecco (Switzerland)'),
(40853, 'https://ror.org/00h1xaa75', 'no_lang_code', 1, 'https://ror.org/00h1xaa75 AstraZeneca (South Korea) 한국아스트라제네카'),
(40854, 'https://ror.org/017kta585', 'no_lang_code', 1, 'https://ror.org/017kta585 Adivit (Spain)'),
(40855, 'https://ror.org/059tvcg64', 'no_lang_code', 1, 'https://ror.org/059tvcg64 Adobe Systems (United States)'),
(40856, 'https://ror.org/04q7j9m29', 'en', 1, 'https://ror.org/04q7j9m29 Arkansas Agricultural Experiment Station'),
(40857, 'https://ror.org/02hx58q14', 'no_lang_code', 1, 'https://ror.org/02hx58q14 Alabama Power (United States)'),
(40858, 'https://ror.org/03gxxv409', 'en', 1, 'https://ror.org/03gxxv409 Rama Dental College Hospital & Research Centre'),
(40859, 'https://ror.org/02w6yjb02', 'no_lang_code', 1, 'https://ror.org/02w6yjb02 Advanced Fiber Technologies (United States)'),
(40860, 'https://ror.org/05ts6js78', 'no_lang_code', 1, 'https://ror.org/05ts6js78 Baker Hughes (United States)'),
(40861, 'https://ror.org/02t5chg71', 'en', 1, 'https://ror.org/02t5chg71 Alberta Foundation for the Arts'),
(40862, 'https://ror.org/044wc7t32', 'en', 1, 'https://ror.org/044wc7t32 Australian College of Rural and Remote Medicine'),
(40863, 'https://ror.org/006twj174', 'no_lang_code', 1, 'https://ror.org/006twj174 Berthold (Australia)'),
(40864, 'https://ror.org/040ybj657', 'en', 1, 'https://ror.org/040ybj657 Banco Central de Venezuela Central Bank of Venezuela'),
(40865, 'https://ror.org/04gx7mb59', 'tr', 1, 'https://ror.org/04gx7mb59 Selçuk Üniversitesi Tıp Fakültesi Hastanesi'),
(40866, 'https://ror.org/00yn60108', 'en', 1, 'https://ror.org/00yn60108 Australian Mathematical Sciences Institute'),
(40867, 'https://ror.org/02pap8190', 'no_lang_code', 1, 'https://ror.org/02pap8190 Biognos (Sweden)'),
(40868, 'https://ror.org/006tvg625', 'en', 1, 'https://ror.org/006tvg625 Bank of America'),
(40869, 'https://ror.org/05arhrm06', 'en', 1, 'https://ror.org/05arhrm06 Shura Council'),
(40870, 'https://ror.org/013k56n15', 'no_lang_code', 1, 'https://ror.org/013k56n15 Australian Wool Innovation (Australia)'),
(40871, 'https://ror.org/03revcz59', 'en', 1, 'https://ror.org/03revcz59 Water and Power Development Authority واٹر اینڈ پاور ڈیولپمنٹ اتھارٹی'),
(40872, 'https://ror.org/018kq8f36', 'no_lang_code', 1, 'https://ror.org/018kq8f36 Borsa Istanbul (Turkey)'),
(40873, 'https://ror.org/041vyyf82', 'no_lang_code', 1, 'https://ror.org/041vyyf82 Avaya (United States)'),
(40874, 'https://ror.org/01xe6j451', 'no_lang_code', 1, 'https://ror.org/01xe6j451 Bupa'),
(40875, 'https://ror.org/04q0d9a06', 'no_lang_code', 1, 'https://ror.org/04q0d9a06 Avisonic (Taiwan)'),
(40876, 'https://ror.org/04p3h2z50', 'no_lang_code', 1, 'https://ror.org/04p3h2z50 Bank of New York Mellon'),
(40877, 'https://ror.org/019w40127', 'no_lang_code', 1, 'https://ror.org/019w40127 Barnes & Noble (United States)'),
(40878, 'https://ror.org/03wj7cn78', 'no_lang_code', 1, 'https://ror.org/03wj7cn78 AxisCades (India)'),
(40879, 'https://ror.org/043xe1r71', 'no_lang_code', 1, 'https://ror.org/043xe1r71 C-M Concrete Products (Australia)'),
(40880, 'https://ror.org/03q4sef08', 'no_lang_code', 1, 'https://ror.org/03q4sef08 BASIS International (United States)'),
(40881, 'https://ror.org/05gmmwe91', 'no_lang_code', 1, 'https://ror.org/05gmmwe91 Britannia University'),
(40882, 'https://ror.org/01zrkhb76', 'no_lang_code', 1, 'https://ror.org/01zrkhb76 Stanley Black & Decker (United States)'),
(40883, 'https://ror.org/02cpn5v29', 'no_lang_code', 1, 'https://ror.org/02cpn5v29 Bausch Health (Ireland)'),
(40884, 'https://ror.org/02arrmv90', 'en', 1, 'https://ror.org/02arrmv90 Islamic Azad University of Ayatollah Amoli دانشگاه آزاد اسلامی آیت الله آملی'),
(40885, 'https://ror.org/02v8s3859', 'en', 1, 'https://ror.org/02v8s3859 Azad University in Oxford'),
(40886, 'https://ror.org/00fw4m615', 'no_lang_code', 1, 'https://ror.org/00fw4m615 Cablevision (United States)'),
(40887, 'https://ror.org/040fqas51', 'no_lang_code', 1, 'https://ror.org/040fqas51 Baxalta (United States)'),
(40888, 'https://ror.org/02czsq936', 'en', 1, 'https://ror.org/02czsq936 British Institute for the Study of Iraq'),
(40889, 'https://ror.org/039x3s865', 'no_lang_code', 1, 'https://ror.org/039x3s865 B. Braun (United States)'),
(40890, 'https://ror.org/00bgchx11', 'en', 1, 'https://ror.org/00bgchx11 Blue Cross Blue Shield of Massachusetts'),
(40891, 'https://ror.org/0474dbm94', 'en', 1, 'https://ror.org/0474dbm94 British Institute of Persian Studies'),
(40892, 'https://ror.org/00ag9jk61', 'no_lang_code', 1, 'https://ror.org/00ag9jk61 Cabot (United States)'),
(40893, 'https://ror.org/02t1a0v32', 'no_lang_code', 1, 'https://ror.org/02t1a0v32 BMC Software (United States)'),
(40894, 'https://ror.org/013jp2d40', 'en', 1, 'https://ror.org/013jp2d40 British School at Athens Βρετανική Σχολή Αθηνών'),
(40895, 'https://ror.org/04w8xa018', 'no_lang_code', 1, 'https://ror.org/04w8xa018 Cadence Design Systems (United States)'),
(40896, 'https://ror.org/002em1b68', 'no_lang_code', 1, 'https://ror.org/002em1b68 Casappa (Italy)'),
(40897, 'https://ror.org/03djfm287', 'en', 1, 'https://ror.org/03djfm287 British Universities North America Club'),
(40898, 'https://ror.org/00e2fqy76', 'no_lang_code', 1, 'https://ror.org/00e2fqy76 BMW of North America (United States)'),
(40899, 'https://ror.org/03p9skh04', 'no_lang_code', 1, 'https://ror.org/03p9skh04 Brother International (United States)'),
(40900, 'https://ror.org/01gymhc20', 'no_lang_code', 1, 'https://ror.org/01gymhc20 Benteler (Germany)'),
(40901, 'https://ror.org/02v616z87', 'no_lang_code', 1, 'https://ror.org/02v616z87 BNP Paribas (France)'),
(40902, 'https://ror.org/05407ka75', 'en', 1, 'https://ror.org/05407ka75 Catholic Biblical Association'),
(40903, 'https://ror.org/02wtecw28', 'de', 1, 'https://ror.org/02wtecw28 Sparkassen-Finanzgruppe'),
(40904, 'https://ror.org/05w4b5488', 'no_lang_code', 1, 'https://ror.org/05w4b5488 CellGenix (Germany)'),
(40905, 'https://ror.org/02jv94566', 'no_lang_code', 1, 'https://ror.org/02jv94566 Canon (United States)'),
(40906, 'https://ror.org/00ycyk215', 'no_lang_code', 1, 'https://ror.org/00ycyk215 Chemtrix (Netherlands)'),
(40907, 'https://ror.org/02trn6p95', 'es', 1, 'https://ror.org/02trn6p95 Comisión Sectorial de Investigación Científica'),
(40908, 'https://ror.org/00svp7168', 'no_lang_code', 1, 'https://ror.org/00svp7168 Capital One (United States)'),
(40909, 'https://ror.org/0511bn634', 'no_lang_code', 1, 'https://ror.org/0511bn634 Chiesi (Italy)'),
(40910, 'https://ror.org/01zh8gn91', 'no_lang_code', 1, 'https://ror.org/01zh8gn91 Companhia Energética de Pernambuco'),
(40911, 'https://ror.org/02fv0rq89', 'no_lang_code', 1, 'https://ror.org/02fv0rq89 Computational Diagnostics (United States)'),
(40912, 'https://ror.org/028w99c90', 'no_lang_code', 1, 'https://ror.org/028w99c90 China United Network Communications Group (China) 中国联合网络通信集团有限公司'),
(40913, 'https://ror.org/01kr64963', 'no_lang_code', 1, 'https://ror.org/01kr64963 Xura (United States)'),
(40914, 'https://ror.org/04t59qd02', 'no_lang_code', 1, 'https://ror.org/04t59qd02 China Power Engineering Consulting Group (China)'),
(40915, 'https://ror.org/05rcqjk71', 'no_lang_code', 1, 'https://ror.org/05rcqjk71 Consolidated Contractors Company (Greece) شركة اتحاد المقاولين'),
(40916, 'https://ror.org/04c3ymz82', 'pt', 1, 'https://ror.org/04c3ymz82 Faculdade de Tecnologia e Ciências'),
(40917, 'https://ror.org/03qfn8998', 'no_lang_code', 1, 'https://ror.org/03qfn8998 Depomed (United States)'),
(40918, 'https://ror.org/0414wrz80', 'no_lang_code', 1, 'https://ror.org/0414wrz80 United Continental (United States)'),
(40919, 'https://ror.org/027m3jw27', 'no_lang_code', 1, 'https://ror.org/027m3jw27 Embraco (Brazil)'),
(40920, 'https://ror.org/05n06xd29', 'no_lang_code', 1, 'https://ror.org/05n06xd29 Groupe Artémis (France)'),
(40921, 'https://ror.org/05kdesr16', 'no_lang_code', 1, 'https://ror.org/05kdesr16 Convergys (United States)'),
(40922, 'https://ror.org/014mx8j54', 'no_lang_code', 1, 'https://ror.org/014mx8j54 Devon Energy (United States)'),
(40923, 'https://ror.org/05mzfgt17', 'en', 1, 'https://ror.org/05mzfgt17 Institute of Advanced Study in Science and Technology'),
(40924, 'https://ror.org/0423rx754', 'no_lang_code', 1, 'https://ror.org/0423rx754 Converse (United States)'),
(40925, 'https://ror.org/00gream49', 'no_lang_code', 1, 'https://ror.org/00gream49 DHL (United States)'),
(40926, 'https://ror.org/01x735t80', 'no_lang_code', 1, 'https://ror.org/01x735t80 CoreQuest (Switzerland)'),
(40927, 'https://ror.org/02n7mrn32', 'no_lang_code', 1, 'https://ror.org/02n7mrn32 Chubu Electric Power (Japan) 中部電力株式会社'),
(40928, 'https://ror.org/05awrb105', 'no_lang_code', 1, 'https://ror.org/05awrb105 Discovery Communications (United States)'),
(40929, 'https://ror.org/041e5xy86', 'no_lang_code', 1, 'https://ror.org/041e5xy86 Chugoku Marine Paints (Japan) 中国塗料株式会社'),
(40930, 'https://ror.org/008dyv188', 'no_lang_code', 1, 'https://ror.org/008dyv188 EMS (Canada)'),
(40931, 'https://ror.org/04e433w04', 'no_lang_code', 1, 'https://ror.org/04e433w04 Cornerstone Specialty Wood Products (United States)'),
(40932, 'https://ror.org/03rec7637', 'no_lang_code', 1, 'https://ror.org/03rec7637 Cigna (United States)'),
(40933, 'https://ror.org/03cm6ap49', 'no_lang_code', 1, 'https://ror.org/03cm6ap49 Endo (Ireland)'),
(40934, 'https://ror.org/013w40a11', 'no_lang_code', 1, 'https://ror.org/013w40a11 eNeura (United States)'),
(40935, 'https://ror.org/013pjny96', 'en', 1, 'https://ror.org/013pjny96 Council for British Research in the Levant'),
(40936, 'https://ror.org/03t89te61', 'no_lang_code', 1, 'https://ror.org/03t89te61 Mubadala (United Arab Emirates)'),
(40937, 'https://ror.org/04m514a38', 'en', 1, 'https://ror.org/04m514a38 Clarity Centre for Sensor Web Technologies'),
(40938, 'https://ror.org/04ps7x844', 'no_lang_code', 1, 'https://ror.org/04ps7x844 FedEx (United States)'),
(40939, 'https://ror.org/03k082032', 'no_lang_code', 1, 'https://ror.org/03k082032 News Corp (United States)'),
(40940, 'https://ror.org/00davj510', 'en', 1, 'https://ror.org/00davj510 Canadian Council of Professional Engineers Ingénieurs Canada'),
(40941, 'https://ror.org/029sxjy20', 'no_lang_code', 1, 'https://ror.org/029sxjy20 Ferrotec (United States)'),
(40942, 'https://ror.org/05253sv14', 'no_lang_code', 1, 'https://ror.org/05253sv14 Enreco 2000 (Spain)'),
(40943, 'https://ror.org/058ay4m70', 'en', 1, 'https://ror.org/058ay4m70 CRC Health Group'),
(40944, 'https://ror.org/05mztcw68', 'no_lang_code', 1, 'https://ror.org/05mztcw68 Clyde Bergemann Power Group'),
(40945, 'https://ror.org/04v8c9r98', 'no_lang_code', 1, 'https://ror.org/04v8c9r98 Fidelity Investments (United States)'),
(40946, 'https://ror.org/01bahfb02', 'en', 1, 'https://ror.org/01bahfb02 Enterprise Community Partners'),
(40947, 'https://ror.org/030r69d22', 'no_lang_code', 1, 'https://ror.org/030r69d22 Duke Energy (United States)'),
(40948, 'https://ror.org/0428exr50', 'no_lang_code', 1, 'https://ror.org/0428exr50 Environmental Systems Research Institute (United States)'),
(40949, 'https://ror.org/03bfyaa19', 'no_lang_code', 1, 'https://ror.org/03bfyaa19 Goodyear (United States)'),
(40950, 'https://ror.org/034y4c446', 'no_lang_code', 1, 'https://ror.org/034y4c446 Epistar (Taiwan)'),
(40951, 'https://ror.org/016rj7614', 'no_lang_code', 1, 'https://ror.org/016rj7614 Coffey International (Australia)'),
(40952, 'https://ror.org/036s7bw54', 'no_lang_code', 1, 'https://ror.org/036s7bw54 Cognizant (United States)'),
(40953, 'https://ror.org/00djdkd68', 'en', 1, 'https://ror.org/00djdkd68 Daejeon Theological University'),
(40954, 'https://ror.org/00kj48v07', 'no_lang_code', 1, 'https://ror.org/00kj48v07 Foxnum Technology (Taiwan)'),
(40955, 'https://ror.org/04hr2ce79', 'no_lang_code', 1, 'https://ror.org/04hr2ce79 Low & Bonar (Netherlands)'),
(40956, 'https://ror.org/0562x8a64', 'no_lang_code', 1, 'https://ror.org/0562x8a64 Daewoo Shipbuilding and Marine Engineering (South Korea) 대우조선해양'),
(40957, 'https://ror.org/020gja105', 'no_lang_code', 1, 'https://ror.org/020gja105 ERAS Labo (France)'),
(40958, 'https://ror.org/03x76j861', 'no_lang_code', 1, 'https://ror.org/03x76j861 Dynegy (United States)'),
(40959, 'https://ror.org/02029yx61', 'no_lang_code', 1, 'https://ror.org/02029yx61 Ecolab (United States)'),
(40960, 'https://ror.org/020kg3x12', 'no_lang_code', 1, 'https://ror.org/020kg3x12 Ernst & Young (United Kingdom)'),
(40961, 'https://ror.org/02ga7kh69', 'no_lang_code', 1, 'https://ror.org/02ga7kh69 Freddie Mac (United States)'),
(40962, 'https://ror.org/04jhyte11', 'no_lang_code', 1, 'https://ror.org/04jhyte11 Edwards Lifesciences (United States)'),
(40963, 'https://ror.org/020314m54', 'no_lang_code', 1, 'https://ror.org/020314m54 Effigis (Canada)'),
(40964, 'https://ror.org/043f79m81', 'no_lang_code', 1, 'https://ror.org/043f79m81 Neovii Biotech (Germany)'),
(40965, 'https://ror.org/01dmk9z19', 'no_lang_code', 1, 'https://ror.org/01dmk9z19 HollyFrontier (United States)'),
(40966, 'https://ror.org/03g9c1e75', 'no_lang_code', 1, 'https://ror.org/03g9c1e75 Delta Air Lines (United States)'),
(40967, 'https://ror.org/02z4faz68', 'no_lang_code', 1, 'https://ror.org/02z4faz68 Eisai (South Korea) 한국에자이'),
(40968, 'https://ror.org/03qt57y19', 'no_lang_code', 1, 'https://ror.org/03qt57y19 Perrigo (Ireland)'),
(40969, 'https://ror.org/04rbbpv92', 'no_lang_code', 1, 'https://ror.org/04rbbpv92 J-Power (Japan) 電源開発株式会社'),
(40970, 'https://ror.org/047nvfh18', 'no_lang_code', 1, 'https://ror.org/047nvfh18 Global Green Synergy (Malaysia)'),
(40971, 'https://ror.org/05qc7pm63', 'no_lang_code', 1, 'https://ror.org/05qc7pm63 Hannover Re (Germany) Hannover Rück'),
(40972, 'https://ror.org/034e5n787', 'no_lang_code', 1, 'https://ror.org/034e5n787 Volkswagen Group (United States)'),
(40973, 'https://ror.org/03p5mga34', 'no_lang_code', 1, 'https://ror.org/03p5mga34 Element Six (Luxembourg)'),
(40974, 'https://ror.org/017fwsj06', 'no_lang_code', 1, 'https://ror.org/017fwsj06 Fujifilm (United States)'),
(40975, 'https://ror.org/031rnv444', 'no_lang_code', 1, 'https://ror.org/031rnv444 Goldman Sachs (United States)'),
(40976, 'https://ror.org/00ed89w50', 'en', 1, 'https://ror.org/00ed89w50 Hanyoung Theological University 한영신학대학교'),
(40977, 'https://ror.org/036ddx961', 'no_lang_code', 1, 'https://ror.org/036ddx961 ELITech Group (France)'),
(40978, 'https://ror.org/05tkfe889', 'no_lang_code', 1, 'https://ror.org/05tkfe889 Evenflo (United States)'),
(40979, 'https://ror.org/020x0wx65', 'no_lang_code', 1, 'https://ror.org/020x0wx65 Caesars Entertainment (United States)'),
(40980, 'https://ror.org/04etgav66', 'no_lang_code', 1, 'https://ror.org/04etgav66 Colgate-Palmolive (Switzerland)'),
(40981, 'https://ror.org/059dt4t68', 'no_lang_code', 1, 'https://ror.org/059dt4t68 HistoGenetics (United States)'),
(40982, 'https://ror.org/007by2j19', 'no_lang_code', 1, 'https://ror.org/007by2j19 Histogenics (United States)'),
(40983, 'https://ror.org/0030s7a45', 'no_lang_code', 1, 'https://ror.org/0030s7a45 Grape King (Taiwan) 葡萄王生技股份有限公司'),
(40984, 'https://ror.org/04b0w1821', 'no_lang_code', 1, 'https://ror.org/04b0w1821 Hiwin Technologies (Taiwan)'),
(40985, 'https://ror.org/00k98ea94', 'no_lang_code', 1, 'https://ror.org/00k98ea94 Hokuriku Electric Power Company (Japan) 北陸電力'),
(40986, 'https://ror.org/01h5w6873', 'en', 1, 'https://ror.org/01h5w6873 Scandinavian Seminar'),
(40987, 'https://ror.org/03wnt7k73', 'no_lang_code', 1, 'https://ror.org/03wnt7k73 Hormel (United States)'),
(40988, 'https://ror.org/04zk59080', 'sv', 1, 'https://ror.org/04zk59080 Greta och Johan Kocks stiftelser'),
(40989, 'https://ror.org/02thwp314', 'no_lang_code', 1, 'https://ror.org/02thwp314 Helixor Heilmittel (Germany)'),
(40990, 'https://ror.org/00t2kp174', 'en', 1, 'https://ror.org/00t2kp174 HSBC'),
(40991, 'https://ror.org/03khvgd78', 'no_lang_code', 1, 'https://ror.org/03khvgd78 Imedex (United States)'),
(40992, 'https://ror.org/03f6f0r93', 'no_lang_code', 1, 'https://ror.org/03f6f0r93 Guardian Life Insurance Company of America (United States)'),
(40993, 'https://ror.org/024wrq886', 'en', 1, 'https://ror.org/024wrq886 Helpmann Academy'),
(40994, 'https://ror.org/01bkg3b56', 'no_lang_code', 1, 'https://ror.org/01bkg3b56 Gene Bridges (Germany)'),
(40995, 'https://ror.org/05j4m3n18', 'no_lang_code', 1, 'https://ror.org/05j4m3n18 Immediate Post Concussion Assessment and Cognitive Testing (United States)'),
(40996, 'https://ror.org/04gh7n706', 'no_lang_code', 1, 'https://ror.org/04gh7n706 HEB Grocery Company (United States)'),
(40997, 'https://ror.org/01kdzkq48', 'no_lang_code', 1, 'https://ror.org/01kdzkq48 Helsinn (Switzerland)'),
(40998, 'https://ror.org/05dw0xd38', 'no_lang_code', 1, 'https://ror.org/05dw0xd38 Huvepharma (Bulgaria)'),
(40999, 'https://ror.org/05xfrjs60', 'no_lang_code', 1, 'https://ror.org/05xfrjs60 Helsinn Therapeutics (United States)'),
(41000, 'https://ror.org/03kgyg741', 'no_lang_code', 1, 'https://ror.org/03kgyg741 General Mills (United States)'),
(41001, 'https://ror.org/02bwvpt98', 'no_lang_code', 1, 'https://ror.org/02bwvpt98 Hyosung Corporation (South Korea) 효성'),
(41002, 'https://ror.org/05dwsnj39', 'en', 1, 'https://ror.org/05dwsnj39 ING Direct'),
(41003, 'https://ror.org/04f1ha654', 'no_lang_code', 1, 'https://ror.org/04f1ha654 M S Jacovides (Greece)'),
(41004, 'https://ror.org/014y40p65', 'no_lang_code', 1, 'https://ror.org/014y40p65 H.B. Fuller (United States)'),
(41005, 'https://ror.org/00zbk1w77', 'no_lang_code', 1, 'https://ror.org/00zbk1w77 Hess (United States)'),
(41006, 'https://ror.org/028394g81', 'no_lang_code', 1, 'https://ror.org/028394g81 Hyundai Motors (United States)'),
(41007, 'https://ror.org/013s2jj70', 'no_lang_code', 1, 'https://ror.org/013s2jj70 Hill Holliday (United States)'),
(41008, 'https://ror.org/05njgh475', 'no_lang_code', 1, 'https://ror.org/05njgh475 Genomic Health (United States)'),
(41009, 'https://ror.org/00gwhv923', 'no_lang_code', 1, 'https://ror.org/00gwhv923 Hasbro (United States)'),
(41010, 'https://ror.org/05v5ypf73', 'no_lang_code', 1, 'https://ror.org/05v5ypf73 Cerberus Capital Management (United States)'),
(41011, 'https://ror.org/01fvgpx90', 'fr', 1, 'https://ror.org/01fvgpx90 Institut Français de Finlande'),
(41012, 'https://ror.org/005v57z85', 'en', 1, 'https://ror.org/005v57z85 IC Design Education Center 반도체설계 교육센터'),
(41013, 'https://ror.org/013gvmj95', 'no_lang_code', 1, 'https://ror.org/013gvmj95 Hallmark Cards (United States)'),
(41014, 'https://ror.org/01tw2tw87', 'no_lang_code', 1, 'https://ror.org/01tw2tw87 Gentronix (United Kingdom)'),
(41015, 'https://ror.org/05kgq6h80', 'no_lang_code', 1, 'https://ror.org/05kgq6h80 NBCUniversal (United States)'),
(41016, 'https://ror.org/00exehz38', 'no_lang_code', 1, 'https://ror.org/00exehz38 Handok (South Korea) 한독'),
(41017, 'https://ror.org/01h30nm18', 'no_lang_code', 1, 'https://ror.org/01h30nm18 JCPenney (United States)'),
(41018, 'https://ror.org/03xn5qt57', 'no_lang_code', 1, 'https://ror.org/03xn5qt57 Landsvirkjun (Iceland)'),
(41019, 'https://ror.org/02ra35s50', 'no_lang_code', 1, 'https://ror.org/02ra35s50 Georgia Power (United States)'),
(41020, 'https://ror.org/02hbw4f89', 'no_lang_code', 1, 'https://ror.org/02hbw4f89 Lantheus Medical Imaging (United States)'),
(41021, 'https://ror.org/05g9jck81', 'no_lang_code', 1, 'https://ror.org/05g9jck81 MediaTek (Taiwan) 聯發科技股份有限公司'),
(41022, 'https://ror.org/04xxqgb42', 'no_lang_code', 1, 'https://ror.org/04xxqgb42 Leco Corporation (United States)'),
(41023, 'https://ror.org/02qb40709', 'no_lang_code', 1, 'https://ror.org/02qb40709 Medical Insurance Group Australia'),
(41024, 'https://ror.org/02ewpfp83', 'no_lang_code', 1, 'https://ror.org/02ewpfp83 Medicure (Canada)'),
(41025, 'https://ror.org/02qj9w984', 'no_lang_code', 1, 'https://ror.org/02qj9w984 Getra (Italy)'),
(41026, 'https://ror.org/01pkcvt97', 'no_lang_code', 1, 'https://ror.org/01pkcvt97 JetBlue (United States)'),
(41027, 'https://ror.org/05ek3nq77', 'no_lang_code', 1, 'https://ror.org/05ek3nq77 Ghelfi Ondulati (Italy)'),
(41028, 'https://ror.org/00basdj35', 'no_lang_code', 1, 'https://ror.org/00basdj35 Lexmark (United States)'),
(41029, 'https://ror.org/00t625d81', 'no_lang_code', 1, 'https://ror.org/00t625d81 John Deere (United States)'),
(41030, 'https://ror.org/00mc4x834', 'no_lang_code', 1, 'https://ror.org/00mc4x834 Ahold Delhaize (United States)'),
(41031, 'https://ror.org/02ky6c719', 'no_lang_code', 1, 'https://ror.org/02ky6c719 Johnson Controls (United States)'),
(41032, 'https://ror.org/0539hqx70', 'en', 1, 'https://ror.org/0539hqx70 Millennium Challenge Corporation'),
(41033, 'https://ror.org/01tvfmc06', 'no_lang_code', 1, 'https://ror.org/01tvfmc06 Glasbau Hahn (Germany)'),
(41034, 'https://ror.org/001d3rx39', 'no_lang_code', 1, 'https://ror.org/001d3rx39 Milliman (United States)'),
(41035, 'https://ror.org/02sqcy831', 'en', 1, 'https://ror.org/02sqcy831 Global Cardiovascular Innovation Center'),
(41036, 'https://ror.org/00drp2z27', 'en', 1, 'https://ror.org/00drp2z27 LighterLife'),
(41037, 'https://ror.org/05tm9j755', 'no_lang_code', 1, 'https://ror.org/05tm9j755 Mitsui & Co (Japan) 三井物産'),
(41038, 'https://ror.org/045p8e908', 'no_lang_code', 1, 'https://ror.org/045p8e908 Mochida Pharmaceutical (Japan) 持田製薬株式会社'),
(41039, 'https://ror.org/042cj6q83', 'no_lang_code', 1, 'https://ror.org/042cj6q83 Nintendo (United States)'),
(41040, 'https://ror.org/00x7b5g69', 'no_lang_code', 1, 'https://ror.org/00x7b5g69 Moog (United States)'),
(41041, 'https://ror.org/045by4v54', 'en', 1, 'https://ror.org/045by4v54 Louisiana Sea Grant'),
(41042, 'https://ror.org/03rxtcd18', 'no_lang_code', 1, 'https://ror.org/03rxtcd18 Kalgoorlie Consolidated Gold Mines (Australia)'),
(41043, 'https://ror.org/02zjyrw66', 'en', 1, 'https://ror.org/02zjyrw66 Niskamoon Corporation'),
(41044, 'https://ror.org/00387ef87', 'no_lang_code', 1, 'https://ror.org/00387ef87 Motley Fool (United States)'),
(41045, 'https://ror.org/05k7s2p27', 'no_lang_code', 1, 'https://ror.org/05k7s2p27 Nonin Medical (United States)'),
(41046, 'https://ror.org/01hafxd32', 'no_lang_code', 1, 'https://ror.org/01hafxd32 Motorola (United States)'),
(41047, 'https://ror.org/05mv9af24', 'no_lang_code', 1, 'https://ror.org/05mv9af24 M&T Bank (United States)'),
(41048, 'https://ror.org/01wff4j64', 'no_lang_code', 1, 'https://ror.org/01wff4j64 Macy''s (United States)'),
(41049, 'https://ror.org/011k8d702', 'no_lang_code', 1, 'https://ror.org/011k8d702 Mount Sylvia Diatomite (Australia)'),
(41050, 'https://ror.org/00hbzbs53', 'no_lang_code', 1, 'https://ror.org/00hbzbs53 MTS Systems (United States)'),
(41051, 'https://ror.org/00c70d758', 'en', 1, 'https://ror.org/00c70d758 Instituto Nacional de Ciência e Tecnologia para Engenharia de Software National Institute of Science and Technology for Software Engineering'),
(41052, 'https://ror.org/01nvzzy80', 'no_lang_code', 1, 'https://ror.org/01nvzzy80 China Energy Engineering Corporation (China) 中国能源建设股份有限公司'),
(41053, 'https://ror.org/04g3ykc66', 'en', 1, 'https://ror.org/04g3ykc66 Maine Sea Grant'),
(41054, 'https://ror.org/01b2bzj52', 'no_lang_code', 1, 'https://ror.org/01b2bzj52 Kellogg''s (United States)'),
(41055, 'https://ror.org/05ff6z697', 'en', 1, 'https://ror.org/05ff6z697 Major League Baseball'),
(41056, 'https://ror.org/021q58r72', 'no_lang_code', 1, 'https://ror.org/021q58r72 Kiadis Pharma (Netherlands)'),
(41057, 'https://ror.org/05phbf047', 'no_lang_code', 1, 'https://ror.org/05phbf047 Micro Focus (United States)'),
(41058, 'https://ror.org/02gyqgr85', 'no_lang_code', 1, 'https://ror.org/02gyqgr85 NanoFlex Power (United States)'),
(41059, 'https://ror.org/036dqy506', 'no_lang_code', 1, 'https://ror.org/036dqy506 NuVasive (United States)'),
(41060, 'https://ror.org/01xcsye48', 'en', 1, 'https://ror.org/01xcsye48 Kings Health Partners'),
(41061, 'https://ror.org/01e01nd60', 'en', 1, 'https://ror.org/01e01nd60 National Academy of Social Insurance'),
(41062, 'https://ror.org/02x50w080', 'no_lang_code', 1, 'https://ror.org/02x50w080 Interacoustics (Denmark)'),
(41063, 'https://ror.org/00s7bz409', 'no_lang_code', 1, 'https://ror.org/00s7bz409 Oerlikon (Switzerland)'),
(41064, 'https://ror.org/009vsv572', 'no_lang_code', 1, 'https://ror.org/009vsv572 Kingston Technology (United States)'),
(41065, 'https://ror.org/000s6jb73', 'no_lang_code', 1, 'https://ror.org/000s6jb73 PNC Financial Services (United States)'),
(41066, 'https://ror.org/01rjsge60', 'no_lang_code', 1, 'https://ror.org/01rjsge60 Office Depot (United States)'),
(41067, 'https://ror.org/04nvtmr42', 'no_lang_code', 1, 'https://ror.org/04nvtmr42 Interface (United States)'),
(41068, 'https://ror.org/03q6w3828', 'no_lang_code', 1, 'https://ror.org/03q6w3828 International Paper (United States)'),
(41069, 'https://ror.org/04qf4wy02', 'no_lang_code', 1, 'https://ror.org/04qf4wy02 Omnitek Engineering (United States)'),
(41070, 'https://ror.org/00g5dc702', 'no_lang_code', 1, 'https://ror.org/00g5dc702 OncoMed (United States)'),
(41071, 'https://ror.org/043cxr310', 'no_lang_code', 1, 'https://ror.org/043cxr310 Mastercard (United States)'),
(41072, 'https://ror.org/01dhcr905', 'no_lang_code', 1, 'https://ror.org/01dhcr905 Nationwide Mutual Insurance Company (United States)'),
(41073, 'https://ror.org/04y8p8435', 'no_lang_code', 1, 'https://ror.org/04y8p8435 Kronotex (Germany)'),
(41074, 'https://ror.org/00863rv26', 'no_lang_code', 1, 'https://ror.org/00863rv26 Mattel (United States)'),
(41075, 'https://ror.org/039w3f025', 'no_lang_code', 1, 'https://ror.org/039w3f025 McDermott International (United States)'),
(41076, 'https://ror.org/03t0k7069', 'no_lang_code', 1, 'https://ror.org/03t0k7069 McDonald''s (United States)'),
(41077, 'https://ror.org/01gr09x64', 'no_lang_code', 1, 'https://ror.org/01gr09x64 Orica (Australia)'),
(41078, 'https://ror.org/056yt6m90', 'no_lang_code', 1, 'https://ror.org/056yt6m90 iRhythm (United States)'),
(41079, 'https://ror.org/04nbnrt83', 'no_lang_code', 1, 'https://ror.org/04nbnrt83 New Balance (United States)'),
(41080, 'https://ror.org/02fjxcw19', 'en', 1, 'https://ror.org/02fjxcw19 New South Wales Institute of Psychiatry'),
(41081, 'https://ror.org/050384c29', 'en', 1, 'https://ror.org/050384c29 Kyungwoon University 경운대학교'),
(41082, 'https://ror.org/05sxqt066', 'en', 1, 'https://ror.org/05sxqt066 McNeil Center for Early American Studies'),
(41083, 'https://ror.org/03a4nen96', 'no_lang_code', 1, 'https://ror.org/03a4nen96 New York Life Insurance Company (United States)'),
(41084, 'https://ror.org/01sn6ez28', 'en', 1, 'https://ror.org/01sn6ez28 Manpower Development Corporation'),
(41085, 'https://ror.org/05nb24p55', 'no_lang_code', 1, 'https://ror.org/05nb24p55 LF Driscoll'),
(41086, 'https://ror.org/02y85x967', 'no_lang_code', 1, 'https://ror.org/02y85x967 Otter Tail Corporation (United States)'),
(41087, 'https://ror.org/05p4pn188', 'no_lang_code', 1, 'https://ror.org/05p4pn188 Mead Johnson (United States)'),
(41088, 'https://ror.org/04gecbm52', 'no_lang_code', 1, 'https://ror.org/04gecbm52 Lam Research (United States)'),
(41089, 'https://ror.org/039yyjw43', 'en', 1, 'https://ror.org/039yyjw43 Royal Anthropological Institute'),
(41090, 'https://ror.org/02vv5t298', 'no_lang_code', 1, 'https://ror.org/02vv5t298 Newcrest Mining (Australia)'),
(41091, 'https://ror.org/02tbw3b35', 'en', 1, 'https://ror.org/02tbw3b35 Islamic Azad University of Shahrekord دانشگاه آزاد اسلامی واحد شهرکرد'),
(41092, 'https://ror.org/04wvs0518', 'en', 1, 'https://ror.org/04wvs0518 Porticus'),
(41093, 'https://ror.org/05mbtn536', 'no_lang_code', 1, 'https://ror.org/05mbtn536 Newsweek (United States)'),
(41094, 'https://ror.org/04qxsp544', 'no_lang_code', 1, 'https://ror.org/04qxsp544 Newman''s Own (United States)'),
(41095, 'https://ror.org/034yr0a74', 'no_lang_code', 1, 'https://ror.org/034yr0a74 Royal Caribbean Cruises (United States)'),
(41096, 'https://ror.org/03hagz796', 'no_lang_code', 1, 'https://ror.org/03hagz796 Pantarhei Bioscience (Netherlands)'),
(41097, 'https://ror.org/01swa5m73', 'en', 1, 'https://ror.org/01swa5m73 Royal College of Midwives'),
(41098, 'https://ror.org/03y0dv989', 'en', 1, 'https://ror.org/03y0dv989 Qaemshahr Islamic Azad University دانشگاه آزاد اسلامی واحد قائمشهر'),
(41099, 'https://ror.org/006023154', 'no_lang_code', 1, 'https://ror.org/006023154 Safeco Insurance'),
(41100, 'https://ror.org/01e8jps31', 'no_lang_code', 1, 'https://ror.org/01e8jps31 Israel Ports Development and Assets (Israel)'),
(41101, 'https://ror.org/040aqz944', 'no_lang_code', 1, 'https://ror.org/040aqz944 Cargill (Netherlands)'),
(41102, 'https://ror.org/05fy6my48', 'no_lang_code', 1, 'https://ror.org/05fy6my48 Prudential Financial (United States)'),
(41103, 'https://ror.org/04rxdpa15', 'no_lang_code', 1, 'https://ror.org/04rxdpa15 Sprint (United States)'),
(41104, 'https://ror.org/042pnza07', 'no_lang_code', 1, 'https://ror.org/042pnza07 Pfizer (Australia)'),
(41105, 'https://ror.org/03grdwb80', 'no_lang_code', 1, 'https://ror.org/03grdwb80 Sanofi (South Korea) 사노피-아벤티스 코리아'),
(41106, 'https://ror.org/00902tq54', 'no_lang_code', 1, 'https://ror.org/00902tq54 Stanvac Superon Group (India)'),
(41107, 'https://ror.org/02sx1y706', 'no_lang_code', 1, 'https://ror.org/02sx1y706 Sears Holdings (United States)'),
(41108, 'https://ror.org/03cp14g09', 'no_lang_code', 1, 'https://ror.org/03cp14g09 QuikTrip (United States)'),
(41109, 'https://ror.org/04vwfqp33', 'no_lang_code', 1, 'https://ror.org/04vwfqp33 Sanwa Hydrotech (Japan) 三和ハイドロテック株式会社'),
(41110, 'https://ror.org/00a3cy009', 'en', 1, 'https://ror.org/00a3cy009 Phi Beta Kappa Society'),
(41111, 'https://ror.org/02cwzn382', 'no_lang_code', 1, 'https://ror.org/02cwzn382 Senko Medical Instrument Manufacturing (Japan)'),
(41112, 'https://ror.org/03fs66f88', 'no_lang_code', 1, 'https://ror.org/03fs66f88 Pitney Bowes (United States)'),
(41113, 'https://ror.org/03f34pe19', 'no_lang_code', 1, 'https://ror.org/03f34pe19 Starbucks (United States)'),
(41114, 'https://ror.org/01gbhv690', 'no_lang_code', 1, 'https://ror.org/01gbhv690 Systems, Applications & Products in Data Processing (United States)'),
(41115, 'https://ror.org/05mkyac79', 'no_lang_code', 1, 'https://ror.org/05mkyac79 Target (United States)'),
(41116, 'https://ror.org/03nqwhd11', 'no_lang_code', 1, 'https://ror.org/03nqwhd11 Saudi Arabia Basic Industries (Saudi Arabia) الشركة السعودية للصناعات الأساسية ، سابك'),
(41117, 'https://ror.org/04sg05j02', 'no_lang_code', 1, 'https://ror.org/04sg05j02 Tarix Orphan (United States)'),
(41118, 'https://ror.org/04c2h1p08', 'no_lang_code', 1, 'https://ror.org/04c2h1p08 State Farm (United States)'),
(41119, 'https://ror.org/00tyghb97', 'no_lang_code', 1, 'https://ror.org/00tyghb97 RefleXion Medical (United States)'),
(41120, 'https://ror.org/034kb7s93', 'no_lang_code', 1, 'https://ror.org/034kb7s93 Tasly Holding Group (China)'),
(41121, 'https://ror.org/02x5pe091', 'no_lang_code', 1, 'https://ror.org/02x5pe091 SCG Chemicals (Thailand)'),
(41122, 'https://ror.org/03d8jhc95', 'no_lang_code', 1, 'https://ror.org/03d8jhc95 Steelcase (United States)'),
(41123, 'https://ror.org/01pf6nd13', 'no_lang_code', 1, 'https://ror.org/01pf6nd13 TD Bank'),
(41124, 'https://ror.org/018nbcn37', 'en', 1, 'https://ror.org/018nbcn37 Rhode Island Sea Grant'),
(41125, 'https://ror.org/00343m182', 'no_lang_code', 1, 'https://ror.org/00343m182 Subway (United States)'),
(41126, 'https://ror.org/00qeyvx79', 'en', 1, 'https://ror.org/00qeyvx79 Sino-Swedish Centre for Tree-Ring Research'),
(41127, 'https://ror.org/017q93w69', 'no_lang_code', 1, 'https://ror.org/017q93w69 Ricoh (United States)'),
(41128, 'https://ror.org/025pp6560', 'no_lang_code', 1, 'https://ror.org/025pp6560 WestRock (United States)'),
(41129, 'https://ror.org/00pxa0p67', 'no_lang_code', 1, 'https://ror.org/00pxa0p67 Slack Incorporated (United States)'),
(41130, 'https://ror.org/01y2r8f15', 'en', 1, 'https://ror.org/01y2r8f15 United States Institute for Theatre Technology'),
(41131, 'https://ror.org/03eqw9e29', 'en', 1, 'https://ror.org/03eqw9e29 Teachers Insurance and Annuity Association of America'),
(41132, 'https://ror.org/043kws463', 'no_lang_code', 1, 'https://ror.org/043kws463 Sun Nuclear (United States)'),
(41133, 'https://ror.org/012rn8104', 'no_lang_code', 1, 'https://ror.org/012rn8104 Tidewater (United States)'),
(41134, 'https://ror.org/045xx6g59', 'no_lang_code', 1, 'https://ror.org/045xx6g59 Time Warner (United States)'),
(41135, 'https://ror.org/04p3nq874', 'no_lang_code', 1, 'https://ror.org/04p3nq874 Sunoco (United States)'),
(41136, 'https://ror.org/01ncqna34', 'en', 1, 'https://ror.org/01ncqna34 Southern California Clinical and Translational Science Institute'),
(41137, 'https://ror.org/04p0q7p15', 'no_lang_code', 1, 'https://ror.org/04p0q7p15 SurveyMonkey (United States)'),
(41138, 'https://ror.org/02g9vj608', 'en', 1, 'https://ror.org/02g9vj608 University and College Union'),
(41139, 'https://ror.org/01c61x273', 'no_lang_code', 1, 'https://ror.org/01c61x273 Folha (Brazil)'),
(41140, 'https://ror.org/01aqjb686', 'no_lang_code', 1, 'https://ror.org/01aqjb686 Svenska Cellulosa (Sweden)'),
(41141, 'https://ror.org/04vqdec11', 'no_lang_code', 1, 'https://ror.org/04vqdec11 Southwest Airlines (United States)'),
(41142, 'https://ror.org/05rs18f71', 'no_lang_code', 1, 'https://ror.org/05rs18f71 Toagosei (Japan) 東亞合成株式会社'),
(41143, 'https://ror.org/00aa5f051', 'no_lang_code', 1, 'https://ror.org/00aa5f051 Unum Group (United States)'),
(41144, 'https://ror.org/04mekkx88', 'no_lang_code', 1, 'https://ror.org/04mekkx88 Spirit AeroSystems (United States)'),
(41145, 'https://ror.org/05jh79p16', 'no_lang_code', 1, 'https://ror.org/05jh79p16 American Airlines (United States)'),
(41146, 'https://ror.org/01gxb6382', 'no_lang_code', 1, 'https://ror.org/01gxb6382 Swisse (Australia)'),
(41147, 'https://ror.org/042dm9855', 'no_lang_code', 1, 'https://ror.org/042dm9855 Aegon (United States)'),
(41148, 'https://ror.org/03d2tka35', 'no_lang_code', 1, 'https://ror.org/03d2tka35 TransUnion (United States)'),
(41149, 'https://ror.org/00ymj2634', 'en', 1, 'https://ror.org/00ymj2634 United Services Automobile Association'),
(41150, 'https://ror.org/049aqs582', 'no_lang_code', 1, 'https://ror.org/049aqs582 Valley National Bank (United States)'),
(41151, 'https://ror.org/00wqj7c25', 'no_lang_code', 1, 'https://ror.org/00wqj7c25 Tupperware Brands (United States)'),
(41152, 'https://ror.org/005y87145', 'no_lang_code', 1, 'https://ror.org/005y87145 Vargön Alloys (Sweden)'),
(41153, 'https://ror.org/01f93vk95', 'no_lang_code', 1, 'https://ror.org/01f93vk95 Graham Holdings (United States)'),
(41154, 'https://ror.org/00ws8h732', 'no_lang_code', 1, 'https://ror.org/00ws8h732 Tyson Foods (United States)'),
(41155, 'https://ror.org/02gfwng46', 'no_lang_code', 1, 'https://ror.org/02gfwng46 Whirlpool (United States)'),
(41156, 'https://ror.org/0185z7g17', 'no_lang_code', 1, 'https://ror.org/0185z7g17 Vifor Pharma (Switzerland)'),
(41157, 'https://ror.org/01eac6f58', 'no_lang_code', 1, 'https://ror.org/01eac6f58 WD-40 (United States)'),
(41158, 'https://ror.org/03zhv0t98', 'no_lang_code', 1, 'https://ror.org/03zhv0t98 WSFS Financial Corporation (United States)'),
(41159, 'https://ror.org/03agewr40', 'no_lang_code', 1, 'https://ror.org/03agewr40 Webster Bank (United States)'),
(41160, 'https://ror.org/040rcm367', 'no_lang_code', 1, 'https://ror.org/040rcm367 Virtual Materials Group (Canada)'),
(41161, 'https://ror.org/015sfke75', 'no_lang_code', 1, 'https://ror.org/015sfke75 Vivus (United States)'),
(41162, 'https://ror.org/0398xv274', 'en', 1, 'https://ror.org/0398xv274 Daeshin University 대신대학교'),
(41163, 'https://ror.org/01geb0342', 'no_lang_code', 1, 'https://ror.org/01geb0342 Anthem (United States)'),
(41164, 'https://ror.org/00rr9fv20', 'no_lang_code', 1, 'https://ror.org/00rr9fv20 Vulcan (United States)'),
(41165, 'https://ror.org/00bj1nn86', 'en', 1, 'https://ror.org/00bj1nn86 National Science Digital Library'),
(41166, 'https://ror.org/0139q7h64', 'no_lang_code', 1, 'https://ror.org/0139q7h64 W.W Grainger (United States)'),
(41167, 'https://ror.org/00cty0112', 'no_lang_code', 1, 'https://ror.org/00cty0112 Takasago (Japan) 高砂香料工業株式会社'),
(41168, 'https://ror.org/050mv4p70', 'no_lang_code', 1, 'https://ror.org/050mv4p70 Yamaha (United States)'),
(41169, 'https://ror.org/037r2ff59', 'no_lang_code', 1, 'https://ror.org/037r2ff59 Wells Fargo (United States)'),
(41170, 'https://ror.org/03z9hh605', 'en', 1, 'https://ror.org/03z9hh605 Division of Antarctic Infrastructure and Logistics'),
(41171, 'https://ror.org/00rztgq82', 'no_lang_code', 1, 'https://ror.org/00rztgq82 Tampieri Financial Group (Italy)'),
(41172, 'https://ror.org/04ya3kq71', 'en', 1, 'https://ror.org/04ya3kq71 Polar Environment, Safety and Health Section'),
(41173, 'https://ror.org/04evh7y43', 'en', 1, 'https://ror.org/04evh7y43 Division of Acquisition and Cooperative Support'),
(41174, 'https://ror.org/02e3cth88', 'no_lang_code', 1, 'https://ror.org/02e3cth88 Zyvex (United States)'),
(41175, 'https://ror.org/025dabr11', 'en', 1, 'https://ror.org/025dabr11 Division of Institution and Award Support'),
(41176, 'https://ror.org/04vw0kz07', 'en', 1, 'https://ror.org/04vw0kz07 Division of Human Resource Management'),
(41177, 'https://ror.org/00h3byr70', 'en', 1, 'https://ror.org/00h3byr70 New Jersey Department of Labor and Workforce Development'),
(41178, 'https://ror.org/02fyqee34', 'en', 1, 'https://ror.org/02fyqee34 Dormitory Authority of the State of New York'),
(41179, 'https://ror.org/05baev169', 'en', 1, 'https://ror.org/05baev169 United States Commission of Fine Arts'),
(41180, 'https://ror.org/02h8s2s90', 'en', 1, 'https://ror.org/02h8s2s90 United States Election Assistance Commission'),
(41181, 'https://ror.org/00k4x4z35', 'en', 1, 'https://ror.org/00k4x4z35 State Justice Institute'),
(41182, 'https://ror.org/007mwgz28', 'en', 1, 'https://ror.org/007mwgz28 National Telecommunication Regulatory Authority'),
(41183, 'https://ror.org/04spzbf72', 'en', 1, 'https://ror.org/04spzbf72 Office of Public Health Genomics'),
(41184, 'https://ror.org/02e5dc168', 'en', 1, 'https://ror.org/02e5dc168 Center for Global Health'),
(41185, 'https://ror.org/05xhe5a74', 'en', 1, 'https://ror.org/05xhe5a74 Tertiary Education Commission'),
(41186, 'https://ror.org/01sharn77', 'en', 1, 'https://ror.org/01sharn77 Office of Multidisciplinary Activities'),
(41187, 'https://ror.org/04951hq16', 'en', 1, 'https://ror.org/04951hq16 An Roinn Fiontar, Trádála agus Fostaíochta Department of Enterprise, Trade and Employment'),
(41188, 'https://ror.org/0060a9610', 'en', 1, 'https://ror.org/0060a9610 Canadian Nuclear Safety Commission Commission Canadienne de Sûreté Nucléaire'),
(41189, 'https://ror.org/026z8zb87', 'en', 1, 'https://ror.org/026z8zb87 Nambucca Shire Council'),
(41190, 'https://ror.org/051475v86', 'en', 1, 'https://ror.org/051475v86 Indian National Science Academy'),
(41191, 'https://ror.org/0300bh485', 'en', 1, 'https://ror.org/0300bh485 Clarence Valley Council'),
(41192, 'https://ror.org/02ah1da87', 'en', 1, 'https://ror.org/02ah1da87 Office of Management'),
(41193, 'https://ror.org/01ny6q882', 'en', 1, 'https://ror.org/01ny6q882 National Academy of Agricultural Sciences'),
(41194, 'https://ror.org/03kyawa63', 'en', 1, 'https://ror.org/03kyawa63 An Roinn Gnóthaí Eachtracha agus Trádála Department of Foreign Affairs and Trade'),
(41195, 'https://ror.org/027xqjj19', 'en', 1, 'https://ror.org/027xqjj19 Confederated Tribes of Siletz Indians'),
(41196, 'https://ror.org/01kxhfp75', 'en', 1, 'https://ror.org/01kxhfp75 National Museum of American History'),
(41197, 'https://ror.org/01xsmwp79', 'no_lang_code', 1, 'https://ror.org/01xsmwp79 Springer Nature (United States)'),
(41198, 'https://ror.org/03bjn0010', 'en', 1, 'https://ror.org/03bjn0010 National Research Council'),
(41199, 'https://ror.org/03k2ghn57', 'en', 1, 'https://ror.org/03k2ghn57 Markedsmodningsfonden Market Development Fund'),
(41200, 'https://ror.org/01es48562', 'en', 1, 'https://ror.org/01es48562 Gerald R. Ford Presidential Library and Museum'),
(41201, 'https://ror.org/05hhm9a98', 'en', 1, 'https://ror.org/05hhm9a98 Savannah River Operations Office'),
(41202, 'https://ror.org/05hsv7e61', 'en', 1, 'https://ror.org/05hsv7e61 Office of Economic Impact and Diversity'),
(41203, 'https://ror.org/03ck0h361', 'en', 1, 'https://ror.org/03ck0h361 Ministry of Education and Science Կրթության և գիտության նախարարություն'),
(41204, 'https://ror.org/03bytya42', 'en', 1, 'https://ror.org/03bytya42 Pasukan Polis Singapura Singapore Police Force சிங்கப்பூர் காவல் துறை 新加坡警察部队'),
(41205, 'https://ror.org/00ddr8x91', 'en', 1, 'https://ror.org/00ddr8x91 Fund for Armenian Relief'),
(41206, 'https://ror.org/0013shd50', 'no_lang_code', 1, 'https://ror.org/0013shd50 Novartis (Germany)'),
(41207, 'https://ror.org/017dfq504', 'en', 1, 'https://ror.org/017dfq504 Creative New Zealand'),
(41208, 'https://ror.org/00sxn7a20', 'en', 1, 'https://ror.org/00sxn7a20 Korea Human Resource Development Institute for Health and Welfare'),
(41209, 'https://ror.org/00vhg8h29', 'en', 1, 'https://ror.org/00vhg8h29 Korea Health Personnel Licensing Examination Institute 한국보건의료인국가시험원'),
(41210, 'https://ror.org/00bhv3b03', 'en', 1, 'https://ror.org/00bhv3b03 Institute of Circulatory and Respiratory Health'),
(41211, 'https://ror.org/021j14906', 'en', 1, 'https://ror.org/021j14906 National Pension Service 국민연금공단'),
(41212, 'https://ror.org/05err5w18', 'en', 1, 'https://ror.org/05err5w18 Manatū Mō Te Taiao Ministry for the Environment'),
(41213, 'https://ror.org/05wdecy17', 'en', 1, 'https://ror.org/05wdecy17 Institute of Infection and Immunity'),
(41214, 'https://ror.org/01xwqek41', 'en', 1, 'https://ror.org/01xwqek41 Australian Federal Police'),
(41215, 'https://ror.org/05hp8wn67', 'en', 1, 'https://ror.org/05hp8wn67 Department of Internal Affairs Te Tari Taiwhenua'),
(41216, 'https://ror.org/054bxds61', 'en', 1, 'https://ror.org/054bxds61 Agência Nacional de Águas National Water Agency'),
(41217, 'https://ror.org/027k9sa32', 'en', 1, 'https://ror.org/027k9sa32 National Institute of Food and Drug Safety Evaluation'),
(41218, 'https://ror.org/02c8msm58', 'en', 1, 'https://ror.org/02c8msm58 Kaitohutohu Kaupapa Rawa New Zealand Treasury Treasury'),
(41219, 'https://ror.org/019cns802', 'en', 1, 'https://ror.org/019cns802 Jeju International University'),
(41220, 'https://ror.org/03vpfss84', 'en', 1, 'https://ror.org/03vpfss84 Institute of Musculoskeletal Health and Arthritis'),
(41221, 'https://ror.org/05nct1z71', 'en', 1, 'https://ror.org/05nct1z71 Institute of Nutrition, Metabolism and Diabetes'),
(41222, 'https://ror.org/04dh0w640', 'en', 1, 'https://ror.org/04dh0w640 Institute of Population and Public Health'),
(41223, 'https://ror.org/05y0c7g28', 'en', 1, 'https://ror.org/05y0c7g28 Reserve Bank of New Zealand'),
(41224, 'https://ror.org/02dd61a62', 'en', 1, 'https://ror.org/02dd61a62 An Chomhairle Ealaíon Arts Council'),
(41225, 'https://ror.org/03cbzve16', 'en', 1, 'https://ror.org/03cbzve16 An Roinn Oideachais agus Scileanna Department of Education and Skills'),
(41226, 'https://ror.org/01p777k66', 'en', 1, 'https://ror.org/01p777k66 FOD Buitenlandse Zaken, Buitenlandse Handel en Ontwikkelingssamenwerking FPS Foreign Affairs, Foreign Trade and Development Cooperation FÖD Auswärtige Angelegenheiten, Außenhandel und Entwicklungszusammenarbeit SPF Affaires étrangères, Commerce extérieur et Coopération au Développement'),
(41227, 'https://ror.org/0030qkm60', 'en', 1, 'https://ror.org/0030qkm60 National Academy of Sciences 대한민국학술원'),
(41228, 'https://ror.org/04d81ed36', 'en', 1, 'https://ror.org/04d81ed36 Technology Information, Forecasting and Assessment Council प्रौद्योगिकी सूचना, पूर्वानुमान एवं मूल्यांकन परिषद'),
(41229, 'https://ror.org/0250say61', 'en', 1, 'https://ror.org/0250say61 Taiwan Food and Drug Administration'),
(41230, 'https://ror.org/03reeve97', 'en', 1, 'https://ror.org/03reeve97 National Quarantine Station'),
(41231, 'https://ror.org/026g3rz20', 'pt', 1, 'https://ror.org/026g3rz20 Instituto Nacional de Ciência e Tecnologia em Toxinas'),
(41232, 'https://ror.org/021w6yj26', 'en', 1, 'https://ror.org/021w6yj26 Western Integrated Pest Management Center'),
(41233, 'https://ror.org/020v07z27', 'en', 1, 'https://ror.org/020v07z27 Direction Générale-Affaires économiques et financières Directorate-General for Economic and Financial Affairs General Direktion-Wirtschaft und Finanzen'),
(41234, 'https://ror.org/033d3q980', 'fr', 1, 'https://ror.org/033d3q980 Eurostat Eurostat – Statistiques européennes Statistische Amt der Europäischen Union'),
(41235, 'https://ror.org/03p9jms48', 'en', 1, 'https://ror.org/03p9jms48 Beijing Cultural Development Foundation 北京文化发展基金会'),
(41236, 'https://ror.org/03728bb41', 'en', 1, 'https://ror.org/03728bb41 Direction Générale de l’interprétation Directorate-General for Interpretation Generaldirektion Dolmetschen'),
(41237, 'https://ror.org/004xgw192', 'en', 1, 'https://ror.org/004xgw192 Air Navigation and Weather Services'),
(41238, 'https://ror.org/04h21q173', 'en', 1, 'https://ror.org/04h21q173 Ministarstvo kulture Ministry of Culture of the Republic of Croatia'),
(41239, 'https://ror.org/035e9j894', 'en', 1, 'https://ror.org/035e9j894 Teaching Learning & Research Initiative'),
(41240, 'https://ror.org/00fe7gj91', 'no_lang_code', 1, 'https://ror.org/00fe7gj91 Excellerate (Australia)'),
(41241, 'https://ror.org/04m4a9x26', 'en', 1, 'https://ror.org/04m4a9x26 Direction Générale Affaires maritimes et pêche Directorate-General for Maritime Affairs and Fisheries Generaldirektion Maritime Angelegenheiten und Fischerei'),
(41242, 'https://ror.org/008zm7t63', 'en', 1, 'https://ror.org/008zm7t63 National Bureau of Statistics of China 中华人民共和国国家统计局'),
(41243, 'https://ror.org/056frtj18', 'en', 1, 'https://ror.org/056frtj18 China Atomic Energy Authority 国家原子能机构'),
(41244, 'https://ror.org/03mkee371', 'en', 1, 'https://ror.org/03mkee371 General Organization for Social Insurance المؤسسة العامة للتأمينات الاجتماعية'),
(41245, 'https://ror.org/03zqvfs52', 'en', 1, 'https://ror.org/03zqvfs52 Israel National Road Safety Authority'),
(41246, 'https://ror.org/04ywhbc61', 'en', 1, 'https://ror.org/04ywhbc61 Australian e-Health Research Centre'),
(41247, 'https://ror.org/026rh8977', 'en', 1, 'https://ror.org/026rh8977 Direction Générale Fiscalité et union douanière Directorate-General for Taxation and Customs Union Generaldirektion Steuern und Zollunion'),
(41248, 'https://ror.org/01m909h91', 'en', 1, 'https://ror.org/01m909h91 Bureau of International Cooperation 国际合作局'),
(41249, 'https://ror.org/02vw5s254', 'en', 1, 'https://ror.org/02vw5s254 Ministry of Unification 통일부'),
(41250, 'https://ror.org/00941sb79', 'en', 1, 'https://ror.org/00941sb79 Directorate-General for Neighbourhood and Enlargement Negotiations Europäische Nachbarschaftspolitik und Erweiterungsverhandlungen Politique européenne de voisinage et négociations d''élargissement'),
(41251, 'https://ror.org/056r9ej12', 'en', 1, 'https://ror.org/056r9ej12 Ministry of Economic Development and Technology'),
(41252, 'https://ror.org/0113pfa64', 'en', 1, 'https://ror.org/0113pfa64 Ministry of Government Legislation 법제처'),
(41253, 'https://ror.org/00y19mj60', 'en', 1, 'https://ror.org/00y19mj60 Department of Environment and Conservation'),
(41254, 'https://ror.org/04h8m0888', 'en', 1, 'https://ror.org/04h8m0888 Direction Générale Commerce Directorate-General for Trade Generaldirektion Handel'),
(41255, 'https://ror.org/03a11m818', 'en', 1, 'https://ror.org/03a11m818 Islamic Azad University Central Tehran Branch دانشگاه آزاد اسلامی واحد تهران مرکزی'),
(41256, 'https://ror.org/00caave48', 'en', 1, 'https://ror.org/00caave48 National Intelligence Service 대한민국국가정보원'),
(41257, 'https://ror.org/03tajza86', 'fr', 1, 'https://ror.org/03tajza86 Agence de la Biomédecine'),
(41258, 'https://ror.org/04vctsm14', 'en', 1, 'https://ror.org/04vctsm14 Department of Social Services'),
(41259, 'https://ror.org/03bgts378', 'en', 1, 'https://ror.org/03bgts378 Board of Audit and Inspection 감사원'),
(41260, 'https://ror.org/01kjdwm51', 'en', 1, 'https://ror.org/01kjdwm51 Department of the Prime Minister and Cabinet'),
(41261, 'https://ror.org/00vgtfh11', 'en', 1, 'https://ror.org/00vgtfh11 National Human Rights Commission of Korea 국가인권위원회'),
(41262, 'https://ror.org/01zavdj36', 'en', 1, 'https://ror.org/01zavdj36 Ministry of Health and Social Affairs Socialdepartementet'),
(41263, 'https://ror.org/053bwq229', 'en', 1, 'https://ror.org/053bwq229 Centrum för Idrottsforskning Swedish Research Council for Sport Science'),
(41264, 'https://ror.org/04dpna982', 'en', 1, 'https://ror.org/04dpna982 Korea Fair Trade Commission 공정거래위원회'),
(41265, 'https://ror.org/03nvkc167', 'en', 1, 'https://ror.org/03nvkc167 Ministry of Foreign Affairs of Denmark Udenrigsministeriet'),
(41266, 'https://ror.org/02ywp9g98', 'fr', 1, 'https://ror.org/02ywp9g98 Commissariat Général à l''Investissement'),
(41267, 'https://ror.org/04p181a07', 'en', 1, 'https://ror.org/04p181a07 Beskæftigelsesministeriet Danish Ministry of Employment');
INSERT INTO `rors` VALUES
(41268, 'https://ror.org/046gt4s87', 'en', 1, 'https://ror.org/046gt4s87 Ministry of Infrastructure, Transport and Networks Υπουργείο Υποδομών, Μεταφορών και Δικτύων'),
(41269, 'https://ror.org/03wejsv15', 'en', 1, 'https://ror.org/03wejsv15 Ministry of Defence रक्षा मंत्रालय'),
(41270, 'https://ror.org/016d6bq56', 'en', 1, 'https://ror.org/016d6bq56 Aeronautical Development Agency'),
(41271, 'https://ror.org/01s9gyx13', 'en', 1, 'https://ror.org/01s9gyx13 Anti Corruption and Civil Rights Commission 국민권익위원회'),
(41272, 'https://ror.org/05wnef833', 'en', 1, 'https://ror.org/05wnef833 Saxon State Ministry for Science and the Arts Sächsisches Staatsministerium für Wissenschaft und Kunst'),
(41273, 'https://ror.org/01swt4h11', 'en', 1, 'https://ror.org/01swt4h11 Supreme Court of Korea 대한민국 대법원'),
(41274, 'https://ror.org/05t259f86', 'en', 1, 'https://ror.org/05t259f86 Bundesamt für Bevölkerungsschutz und Katastrophenhilfe Federal Office of Civil protection and Disaster Assistance'),
(41275, 'https://ror.org/01rkgg256', 'en', 1, 'https://ror.org/01rkgg256 Korea Customs Service 관세청'),
(41276, 'https://ror.org/04kk1a460', 'es', 1, 'https://ror.org/04kk1a460 Fundación Pablo García'),
(41277, 'https://ror.org/00nas8g50', 'de', 1, 'https://ror.org/00nas8g50 Fonds Gesundes Österreich'),
(41278, 'https://ror.org/04mq24005', 'en', 1, 'https://ror.org/04mq24005 Public Procurement Service 조달청'),
(41279, 'https://ror.org/01j5kpq29', 'en', 1, 'https://ror.org/01j5kpq29 Florida Sea Grant'),
(41280, 'https://ror.org/037yznf56', 'en', 1, 'https://ror.org/037yznf56 Kementerian Sumber Asli dan Alam Sekitar Ministry of Natural Resources and Environment'),
(41281, 'https://ror.org/05c2t0m16', 'pt', 1, 'https://ror.org/05c2t0m16 Fundação de Apoio à Pesquisa do Rio Grande do Norte'),
(41282, 'https://ror.org/004g7jm05', 'en', 1, 'https://ror.org/004g7jm05 Statistics Korea 통계청'),
(41283, 'https://ror.org/03cen2c33', 'pt', 1, 'https://ror.org/03cen2c33 Fundação de Amparo à Pesquisa do Espírito Santo'),
(41284, 'https://ror.org/038e03x62', 'en', 1, 'https://ror.org/038e03x62 Supreme Prosecutors Office of the Republic of Korea 검찰청'),
(41285, 'https://ror.org/04w9gdv63', 'en', 1, 'https://ror.org/04w9gdv63 Parliament of Australia'),
(41286, 'https://ror.org/05q25dx05', 'en', 1, 'https://ror.org/05q25dx05 Kementerian Tenaga, Teknologi Hijau dan Air Ministry of Energy Green Technology and Water'),
(41287, 'https://ror.org/01ckass20', 'en', 1, 'https://ror.org/01ckass20 Military Manpower Administration 병무청'),
(41288, 'https://ror.org/031a9h652', 'en', 1, 'https://ror.org/031a9h652 Kementerian Kebudayaan, Masyarakat dan Belia Ministry of Culture, Community and Youth கலாசார, சமூக, இளையர்துறை அமைச்சு 文化、社区及青年部'),
(41289, 'https://ror.org/03msax388', 'en', 1, 'https://ror.org/03msax388 Gauteng Department of Agriculture and Rural Development'),
(41290, 'https://ror.org/02tsh5b53', 'en', 1, 'https://ror.org/02tsh5b53 Majlis Kebudayaan Kebangsaan Singapura National Arts Council 国家艺术理事会'),
(41291, 'https://ror.org/02h77vn79', 'ro', 1, 'https://ror.org/02h77vn79 Ministerul Muncii, Familiei, Protecţiei Sociale şi Persoanelor Vârstnice'),
(41292, 'https://ror.org/00gw7hd69', 'fr', 1, 'https://ror.org/00gw7hd69 Observatoire National sur les Effets du Réchauffement Climatique'),
(41293, 'https://ror.org/05j2t3d29', 'en', 1, 'https://ror.org/05j2t3d29 Ministry for Foreign Affairs, Education and Culture'),
(41294, 'https://ror.org/05ft5aq05', 'en', 1, 'https://ror.org/05ft5aq05 JTC Corporation 裕廊集团'),
(41295, 'https://ror.org/00e0ttj68', 'en', 1, 'https://ror.org/00e0ttj68 Bundesministerium für wirtschaftliche Zusammenarbeit und Entwicklung Federal Ministry of Economic Cooperation and Development'),
(41296, 'https://ror.org/00rb16m44', 'en', 1, 'https://ror.org/00rb16m44 Emberi Erőforrások Minisztérium Ministry of Human Capacities'),
(41297, 'https://ror.org/05x57gp50', 'en', 1, 'https://ror.org/05x57gp50 Korean National Police Agency 경찰청'),
(41298, 'https://ror.org/01t8drk63', 'en', 1, 'https://ror.org/01t8drk63 Land Transport Authority Penguasa Pengangkutan Darat நிலப் போக்குவரத்து வாரியம் 陆路交通管理局'),
(41299, 'https://ror.org/01zbxna89', 'en', 1, 'https://ror.org/01zbxna89 Overseas Koreans Foundation'),
(41300, 'https://ror.org/02qs1a797', 'en', 1, 'https://ror.org/02qs1a797 Centro Nacional de Investigaciones Cardiovasculares Carlos III Spanish National Centre for Cardiovascular Research'),
(41301, 'https://ror.org/0551rpg58', 'en', 1, 'https://ror.org/0551rpg58 Kementerian Ehwal Dalam Negeri Ministry of Home Affairs உள்துறை அமைச்சு 内政部'),
(41302, 'https://ror.org/033sxkx41', 'en', 1, 'https://ror.org/033sxkx41 Office of the Civil Service Commission สำนักงานคณะกรรมการข้าราชการพลเรือน'),
(41303, 'https://ror.org/046qg1023', 'en', 1, 'https://ror.org/046qg1023 National Parks Board'),
(41304, 'https://ror.org/036vyg793', 'en', 1, 'https://ror.org/036vyg793 Korea Creative Content Agency'),
(41305, 'https://ror.org/04sxgk411', 'fr', 1, 'https://ror.org/04sxgk411 Ministry of Sports, Youth, Popular Education and Community Life Ministère de la Ville, de la Jeunesse et des Sports'),
(41306, 'https://ror.org/056c6e777', 'es', 1, 'https://ror.org/056c6e777 Secretaría de Educación Superior, Ciencia, Tecnología e Innovación'),
(41307, 'https://ror.org/01hygy214', 'en', 1, 'https://ror.org/01hygy214 Ministry of National Development Nemzeti Fejlesztési Minisztérium'),
(41308, 'https://ror.org/03672y868', 'en', 1, 'https://ror.org/03672y868 Ministry for Foreign Affairs of Iceland Utanríkisráðuneytið'),
(41309, 'https://ror.org/05dbsyw70', 'es', 1, 'https://ror.org/05dbsyw70 Ministerio de Ciencia, Tecnología y Telecomunicaciones'),
(41310, 'https://ror.org/00phthq42', 'en', 1, 'https://ror.org/00phthq42 Agência Nacional do Petróleo, Gás Natural e Biocombustíveis National Agency of Petroleum, Natural Gas and Biofuels'),
(41311, 'https://ror.org/00mt8kb26', 'en', 1, 'https://ror.org/00mt8kb26 National Agency for Administrative City Construction 행정중심복합도시건설청'),
(41312, 'https://ror.org/037m1gz55', 'en', 1, 'https://ror.org/037m1gz55 Icelandic International Development Agency Próunarsamvinnustofnun Íslands'),
(41313, 'https://ror.org/02339nw55', 'en', 1, 'https://ror.org/02339nw55 Academy of Sciences Malaysia Akademi Sains Malaysia'),
(41314, 'https://ror.org/03bzbv419', 'en', 1, 'https://ror.org/03bzbv419 Anhui Institute of Optics and Fine Mechanics 中国科学院安徽光学精密机械研究所'),
(41315, 'https://ror.org/01teyc394', 'en', 1, 'https://ror.org/01teyc394 Health Insurance Review and Assessment Service 건강 보험 심사 평가원'),
(41316, 'https://ror.org/02fn8ac40', 'en', 1, 'https://ror.org/02fn8ac40 Ministry of Economy משרד הכלכלה'),
(41317, 'https://ror.org/033cbzv42', 'en', 1, 'https://ror.org/033cbzv42 Institute of Plasma Physics 中国科学院等离子体物理研究所'),
(41318, 'https://ror.org/00zfh7f80', 'en', 1, 'https://ror.org/00zfh7f80 Korea Disabled People s Development Institute 한국장애인개발원'),
(41319, 'https://ror.org/05nyhnc56', 'pt', 1, 'https://ror.org/05nyhnc56 Secretaria de Desenvolvimento Econômico Ciência Tecnologia e Ensino Superior'),
(41320, 'https://ror.org/04j3eks61', 'en', 1, 'https://ror.org/04j3eks61 Institute of Solid State Physics 固体物理研究所'),
(41321, 'https://ror.org/00aak0969', 'en', 1, 'https://ror.org/00aak0969 Pennsylvania Office of Attorney General'),
(41322, 'https://ror.org/00w0qep84', 'en', 1, 'https://ror.org/00w0qep84 Institute of Intelligent Machines 中国科学院合肥智能机械研究所'),
(41323, 'https://ror.org/03x529519', 'en', 1, 'https://ror.org/03x529519 Ministry of Finance 財務省'),
(41324, 'https://ror.org/05c8v5d10', 'en', 1, 'https://ror.org/05c8v5d10 Pennsylvania Department of Labor and Industry'),
(41325, 'https://ror.org/01gh88804', 'en', 1, 'https://ror.org/01gh88804 High Magnetic Field Laboratory 中国科学院强磁场科学中心'),
(41326, 'https://ror.org/029jmvc96', 'en', 1, 'https://ror.org/029jmvc96 IDA Ireland'),
(41327, 'https://ror.org/05k70qf45', 'en', 1, 'https://ror.org/05k70qf45 Lake Champlain Sea Grant'),
(41328, 'https://ror.org/05rnev335', 'en', 1, 'https://ror.org/05rnev335 Pennsylvania Department of Aging'),
(41329, 'https://ror.org/02c1vmy63', 'en', 1, 'https://ror.org/02c1vmy63 Pennsylvania Department of Community and Economic Development'),
(41330, 'https://ror.org/01yy74248', 'en', 1, 'https://ror.org/01yy74248 Institute of Applied Technology 应用技术研究所'),
(41331, 'https://ror.org/00bbewq28', 'en', 1, 'https://ror.org/00bbewq28 Department of Economic and Community Development'),
(41332, 'https://ror.org/033r52n02', 'en', 1, 'https://ror.org/033r52n02 Pennsylvania Sea Grant'),
(41333, 'https://ror.org/03z5dpc36', 'en', 1, 'https://ror.org/03z5dpc36 Pennsylvania Department of Military and Veterans Affairs'),
(41334, 'https://ror.org/049sgh675', 'pt', 1, 'https://ror.org/049sgh675 Agência Nacional de Energia Elétrica'),
(41335, 'https://ror.org/04nr63k14', 'en', 1, 'https://ror.org/04nr63k14 Pennsylvania Higher Education Assistance Agency'),
(41336, 'https://ror.org/00fdv2038', 'en', 1, 'https://ror.org/00fdv2038 Pennsylvania Housing Finance Agency'),
(41337, 'https://ror.org/002a3ss66', 'pt', 1, 'https://ror.org/002a3ss66 Centro de Tecnologias Estratégicas do Nordeste'),
(41338, 'https://ror.org/04e2v9172', 'no_lang_code', 1, 'https://ror.org/04e2v9172 Vectec Solutions (United States)'),
(41339, 'https://ror.org/00zkesn06', 'en', 1, 'https://ror.org/00zkesn06 Connecticut Department of Agriculture'),
(41340, 'https://ror.org/05xjztb11', 'en', 1, 'https://ror.org/05xjztb11 Pennsylvania Public Utility Commission'),
(41341, 'https://ror.org/043n0m737', 'en', 1, 'https://ror.org/043n0m737 Virginia Economic Development Partnership'),
(41342, 'https://ror.org/04kpqhb39', 'ms', 1, 'https://ror.org/04kpqhb39 Jabatan Perkhidmatan Awam Malaysia Public Service Department'),
(41343, 'https://ror.org/05n9pp477', 'en', 1, 'https://ror.org/05n9pp477 Texas State Affordable Housing Corporation'),
(41344, 'https://ror.org/021vcge65', 'en', 1, 'https://ror.org/021vcge65 State Corporation Commission'),
(41345, 'https://ror.org/040s5rx17', 'en', 1, 'https://ror.org/040s5rx17 Texas Department of Aging and Disability Services'),
(41346, 'https://ror.org/04td2q443', 'en', 1, 'https://ror.org/04td2q443 Texas Animal Health Commission'),
(41347, 'https://ror.org/04cvyy414', 'en', 1, 'https://ror.org/04cvyy414 Connecticut Department of Labor'),
(41348, 'https://ror.org/01r9n3w70', 'en', 1, 'https://ror.org/01r9n3w70 Connecticut Department of Transportation'),
(41349, 'https://ror.org/03pg9x804', 'en', 1, 'https://ror.org/03pg9x804 Texas Commission on the Arts'),
(41350, 'https://ror.org/02wb4dv66', 'en', 1, 'https://ror.org/02wb4dv66 Ohio Arts Council'),
(41351, 'https://ror.org/04m2f2s83', 'en', 1, 'https://ror.org/04m2f2s83 Office of the Attorney General'),
(41352, 'https://ror.org/047ehxy71', 'en', 1, 'https://ror.org/047ehxy71 Office of Policy and Management'),
(41353, 'https://ror.org/046z1kv09', 'en', 1, 'https://ror.org/046z1kv09 Ohio Emergency Management Agency'),
(41354, 'https://ror.org/00cv86729', 'en', 1, 'https://ror.org/00cv86729 Council on Competitive Government'),
(41355, 'https://ror.org/03zqzpy75', 'en', 1, 'https://ror.org/03zqzpy75 Texas Council for Developmental Disabilities'),
(41356, 'https://ror.org/03wy2a142', 'en', 1, 'https://ror.org/03wy2a142 New Jersey Commission on Science, Innovation and Technology'),
(41357, 'https://ror.org/0340xvs51', 'en', 1, 'https://ror.org/0340xvs51 China National Administration of Coal Geology'),
(41358, 'https://ror.org/03d2te836', 'en', 1, 'https://ror.org/03d2te836 Texas Education Agency'),
(41359, 'https://ror.org/04w2e0b44', 'en', 1, 'https://ror.org/04w2e0b44 Department of Agriculture & Co-operation'),
(41360, 'https://ror.org/00wj0ge55', 'en', 1, 'https://ror.org/00wj0ge55 New Jersey Council on Developmental Disabilities'),
(41361, 'https://ror.org/02ty6ja84', 'en', 1, 'https://ror.org/02ty6ja84 Texas Department of Family and Protective Services'),
(41362, 'https://ror.org/011rbjx16', 'en', 1, 'https://ror.org/011rbjx16 New Jersey Department of Children and Families'),
(41363, 'https://ror.org/00kw0f604', 'en', 1, 'https://ror.org/00kw0f604 New Jersey Economic Development Authority'),
(41364, 'https://ror.org/02dywf273', 'en', 1, 'https://ror.org/02dywf273 Ohio Department of Education'),
(41365, 'https://ror.org/03ka08s53', 'en', 1, 'https://ror.org/03ka08s53 Ministry of Science and Environmental Protection Министарство науке и заштите животне средине'),
(41366, 'https://ror.org/00p14sn40', 'en', 1, 'https://ror.org/00p14sn40 New Jersey Department of Community Affairs'),
(41367, 'https://ror.org/02f62sy66', 'en', 1, 'https://ror.org/02f62sy66 Bio-oriented Technology Research Advancement Institution 生物系特定産業技術研究支援センタ'),
(41368, 'https://ror.org/02n9yc996', 'en', 1, 'https://ror.org/02n9yc996 Det kongelige Utenriksdepartement Ministry of Foreign Affairs'),
(41369, 'https://ror.org/03e1rva04', 'en', 1, 'https://ror.org/03e1rva04 Texas Groundwater Protection Committee'),
(41370, 'https://ror.org/01b1e4b88', 'no_lang_code', 1, 'https://ror.org/01b1e4b88 Mars (France)'),
(41371, 'https://ror.org/04qdwr166', 'en', 1, 'https://ror.org/04qdwr166 Texas Medical Board'),
(41372, 'https://ror.org/04nv8he75', 'en', 1, 'https://ror.org/04nv8he75 Arkansas Arts Council'),
(41373, 'https://ror.org/03qy49k44', 'en', 1, 'https://ror.org/03qy49k44 Agence Nationale des Parcs Nationaux National Agency for National Parks'),
(41374, 'https://ror.org/029rysr23', 'en', 1, 'https://ror.org/029rysr23 New Hampshire State Council on the Arts'),
(41375, 'https://ror.org/00vkyb445', 'en', 1, 'https://ror.org/00vkyb445 Texas Board of Nursing'),
(41376, 'https://ror.org/02rktmz08', 'en', 1, 'https://ror.org/02rktmz08 State Preservation Board'),
(41377, 'https://ror.org/0192y2p73', 'en', 1, 'https://ror.org/0192y2p73 New Jersey Department of Law and Public Safety'),
(41378, 'https://ror.org/01dyrk434', 'pt', 1, 'https://ror.org/01dyrk434 Centro de Excelência em Bioinformática'),
(41379, 'https://ror.org/02kreny85', 'en', 1, 'https://ror.org/02kreny85 Delaware Division of the Arts'),
(41380, 'https://ror.org/02wbs0d88', 'en', 1, 'https://ror.org/02wbs0d88 Texas Water Development Board'),
(41381, 'https://ror.org/039exzx30', 'en', 1, 'https://ror.org/039exzx30 New Mexico Legislature'),
(41382, 'https://ror.org/01251sa74', 'en', 1, 'https://ror.org/01251sa74 Ministry for Foreign Affairs Utrikesdepartementet'),
(41383, 'https://ror.org/0162ehq15', 'en', 1, 'https://ror.org/0162ehq15 Texas Juvenile Justice Department'),
(41384, 'https://ror.org/03fkcxa91', 'en', 1, 'https://ror.org/03fkcxa91 Environmental Protection Agency Miljøstyrelsen'),
(41385, 'https://ror.org/008d8ke16', 'en', 1, 'https://ror.org/008d8ke16 Office of the Attorney General'),
(41386, 'https://ror.org/05h8na936', 'en', 1, 'https://ror.org/05h8na936 New York State Council on the Arts'),
(41387, 'https://ror.org/05kxbax75', 'en', 1, 'https://ror.org/05kxbax75 Danish Ministry of Health Sundheds- og Ældreministeriet'),
(41388, 'https://ror.org/01knpsp07', 'en', 1, 'https://ror.org/01knpsp07 Michigan Community Service Commission'),
(41389, 'https://ror.org/02e38dy05', 'en', 1, 'https://ror.org/02e38dy05 Comissão Interministerial para os Recursos do Mar Interministerial Commission for Sea Resources'),
(41390, 'https://ror.org/04bbkwf42', 'en', 1, 'https://ror.org/04bbkwf42 New York State Department of Transportation'),
(41391, 'https://ror.org/03f3kev64', 'en', 1, 'https://ror.org/03f3kev64 Centre for Interdisciplinary Research in Music Media and Technology'),
(41392, 'https://ror.org/00bbdtr88', 'en', 1, 'https://ror.org/00bbdtr88 Texas Workforce Commission'),
(41393, 'https://ror.org/041s2dw89', 'pt', 1, 'https://ror.org/041s2dw89 Fundo para o Desenvolvimento Tecnológico das Telecomunicações'),
(41394, 'https://ror.org/012c35a11', 'en', 1, 'https://ror.org/012c35a11 Missouri Department of Transportation'),
(41395, 'https://ror.org/018zcf966', 'en', 1, 'https://ror.org/018zcf966 New York State Governor''s Traffic Safety Committee'),
(41396, 'https://ror.org/015ddf565', 'en', 1, 'https://ror.org/015ddf565 Michigan Department of Military and Veterans Affairs'),
(41397, 'https://ror.org/048966a50', 'en', 1, 'https://ror.org/048966a50 New York State Developmental Disabilities Planning Council'),
(41398, 'https://ror.org/01h6pwy85', 'en', 1, 'https://ror.org/01h6pwy85 Colorado Traumatic Brain Injury Trust Fund'),
(41399, 'https://ror.org/05xp7y466', 'no_lang_code', 1, 'https://ror.org/05xp7y466 Eni (Kazakhstan)'),
(41400, 'https://ror.org/032gm3e90', 'en', 1, 'https://ror.org/032gm3e90 Michigan State Housing Development Authority'),
(41401, 'https://ror.org/019grq336', 'en', 1, 'https://ror.org/019grq336 Mecklenburg County Government'),
(41402, 'https://ror.org/01jh9zw60', 'en', 1, 'https://ror.org/01jh9zw60 New York State Office of Temporary and Disability Assistance'),
(41403, 'https://ror.org/03tpyg842', 'en', 1, 'https://ror.org/03tpyg842 Michigan Department of Health and Human Services'),
(41404, 'https://ror.org/00ra7nj09', 'en', 1, 'https://ror.org/00ra7nj09 Minnesota Department of Commerce'),
(41405, 'https://ror.org/00s8v8467', 'en', 1, 'https://ror.org/00s8v8467 Arizona Department of Economic Security'),
(41406, 'https://ror.org/04p63s850', 'en', 1, 'https://ror.org/04p63s850 Minnesota Department of Transportation'),
(41407, 'https://ror.org/00ya5c561', 'de', 1, 'https://ror.org/00ya5c561 Bundesinstitut für Sportwissenschaft'),
(41408, 'https://ror.org/05kkmzc89', 'en', 1, 'https://ror.org/05kkmzc89 Nassau County Department of Social Services'),
(41409, 'https://ror.org/05mwe6667', 'en', 1, 'https://ror.org/05mwe6667 Minnesota Office of Higher Education'),
(41410, 'https://ror.org/01v5wyw51', 'en', 1, 'https://ror.org/01v5wyw51 Minnesota Housing Finance Agency'),
(41411, 'https://ror.org/03qq1s904', 'en', 1, 'https://ror.org/03qq1s904 Executive Office of Housing and Economic Development'),
(41412, 'https://ror.org/05w3wzj77', 'fr', 1, 'https://ror.org/05w3wzj77 Agence de l''eau Adour-Garonne'),
(41413, 'https://ror.org/04sjht826', 'en', 1, 'https://ror.org/04sjht826 Minnesota State Arts Board'),
(41414, 'https://ror.org/00h2bx184', 'en', 1, 'https://ror.org/00h2bx184 Forsvarsakademiet Royal Danish Defence College'),
(41415, 'https://ror.org/01ahwzz27', 'en', 1, 'https://ror.org/01ahwzz27 Saint Louis County Department of Health'),
(41416, 'https://ror.org/0543wbp89', 'en', 1, 'https://ror.org/0543wbp89 Maryland State Arts Council'),
(41417, 'https://ror.org/037fek297', 'en', 1, 'https://ror.org/037fek297 Illinois Department of Children and Family Services'),
(41418, 'https://ror.org/019vcrv78', 'en', 1, 'https://ror.org/019vcrv78 Maryland Historical Trust'),
(41419, 'https://ror.org/05jr3qk95', 'en', 1, 'https://ror.org/05jr3qk95 Mid Atlantic Arts Foundation'),
(41420, 'https://ror.org/03wjj7779', 'en', 1, 'https://ror.org/03wjj7779 Massachusetts Department of Agricultural Resources'),
(41421, 'https://ror.org/04spf1k23', 'en', 1, 'https://ror.org/04spf1k23 Massachusetts Department of Environmental Protection'),
(41422, 'https://ror.org/01nw8b729', 'en', 1, 'https://ror.org/01nw8b729 Virginia Commission for the Arts'),
(41423, 'https://ror.org/04517nj83', 'en', 1, 'https://ror.org/04517nj83 New York State Council on Graduate Medical Education'),
(41424, 'https://ror.org/021gr0q06', 'no_lang_code', 1, 'https://ror.org/021gr0q06 Bremerhaven Economic Development (Germany) Bremerhavener Gesellschaft für Investitionsförderung und Stadtentwicklung mbH'),
(41425, 'https://ror.org/041q18g77', 'en', 1, 'https://ror.org/041q18g77 Office of the Attorney General Virginia'),
(41426, 'https://ror.org/02h2say50', 'en', 1, 'https://ror.org/02h2say50 Virginia BioTechnology Research Park'),
(41427, 'https://ror.org/027h2h886', 'en', 1, 'https://ror.org/027h2h886 Regional Secretariat for the Sea, Science and Technology Secretário Regional do Mar, Ciência e Tecnologia'),
(41428, 'https://ror.org/04x4haa49', 'en', 1, 'https://ror.org/04x4haa49 Chesapeake Bay Program'),
(41429, 'https://ror.org/03dv5mp96', 'en', 1, 'https://ror.org/03dv5mp96 Virginia Department of Social Services'),
(41430, 'https://ror.org/00ktzqz45', 'en', 1, 'https://ror.org/00ktzqz45 Georgia Department of Transportation'),
(41431, 'https://ror.org/03aw4b617', 'en', 1, 'https://ror.org/03aw4b617 Virginia Commission on Youth'),
(41432, 'https://ror.org/04ded8w14', 'en', 1, 'https://ror.org/04ded8w14 Virginia Information Technologies Agency'),
(41433, 'https://ror.org/05vjz1d16', 'en', 1, 'https://ror.org/05vjz1d16 Heartland Center for Occupational Safety and Health'),
(41434, 'https://ror.org/032j6ge54', 'en', 1, 'https://ror.org/032j6ge54 Recycled Materials Resource Center'),
(41435, 'https://ror.org/03cg6qr34', 'en', 1, 'https://ror.org/03cg6qr34 Florida Department of Military Affairs'),
(41436, 'https://ror.org/05rnj0j91', 'en', 1, 'https://ror.org/05rnj0j91 Kungliga Fysiografiska Sällskapet i Lund Royal Physiographic Society of Lund'),
(41437, 'https://ror.org/03xh5a585', 'en', 1, 'https://ror.org/03xh5a585 Ministry of Agriculture'),
(41438, 'https://ror.org/053hkpw83', 'en', 1, 'https://ror.org/053hkpw83 Children''s Trust'),
(41439, 'https://ror.org/02qrynm70', 'en', 1, 'https://ror.org/02qrynm70 Research Manitoba'),
(41440, 'https://ror.org/02jfv6690', 'en', 1, 'https://ror.org/02jfv6690 Tennessee Wildlife Resources Agency'),
(41441, 'https://ror.org/01zzyg547', 'en', 1, 'https://ror.org/01zzyg547 Highlands and Islands Enterprise'),
(41442, 'https://ror.org/02g5xq267', 'en', 1, 'https://ror.org/02g5xq267 Saskatchewan Ministry of Agriculture'),
(41443, 'https://ror.org/05qej3r07', 'en', 1, 'https://ror.org/05qej3r07 British Columbia Arts Council'),
(41444, 'https://ror.org/02nfbzg04', 'en', 1, 'https://ror.org/02nfbzg04 Department of Local Government and Communities'),
(41445, 'https://ror.org/02yf3ey12', 'en', 1, 'https://ror.org/02yf3ey12 Department of Culture and the Arts'),
(41446, 'https://ror.org/01b047235', 'en', 1, 'https://ror.org/01b047235 Arkansas Economic Development Commission'),
(41447, 'https://ror.org/00420et70', 'en', 1, 'https://ror.org/00420et70 Department for Child Protection and Family Support'),
(41448, 'https://ror.org/02dprkj51', 'nl', 1, 'https://ror.org/02dprkj51 Bruxelles Environnemont Leefmilieu Brussel'),
(41449, 'https://ror.org/03jmcpx27', 'en', 1, 'https://ror.org/03jmcpx27 Agriculture Food and Rural Development'),
(41450, 'https://ror.org/054n9rz51', 'en', 1, 'https://ror.org/054n9rz51 South Dakota Board of Regents'),
(41451, 'https://ror.org/00s5ghb26', 'en', 1, 'https://ror.org/00s5ghb26 Municipality of Tai''an 泰安'),
(41452, 'https://ror.org/00ew5at92', 'en', 1, 'https://ror.org/00ew5at92 Department of the Premier and Cabinet'),
(41453, 'https://ror.org/04q01pf08', 'en', 1, 'https://ror.org/04q01pf08 Federation Wallonia-Brussels French Community of Belgium Fédération Wallonie-Bruxelles'),
(41454, 'https://ror.org/00zv0wd17', 'en', 1, 'https://ror.org/00zv0wd17 Center for Information Technology Research in the Interest of Society'),
(41455, 'https://ror.org/018ct7v08', 'en', 1, 'https://ror.org/018ct7v08 Department of Education'),
(41456, 'https://ror.org/003cq3m13', 'pt', 1, 'https://ror.org/003cq3m13 Empresa de Pesquisa Agropecuária do Rio Grande do Norte'),
(41457, 'https://ror.org/02xm1rf97', 'en', 1, 'https://ror.org/02xm1rf97 National Climate Change Adaptation Research Facility'),
(41458, 'https://ror.org/04tnw9626', 'en', 1, 'https://ror.org/04tnw9626 Queensland Academy of Sport'),
(41459, 'https://ror.org/00ys2za03', 'en', 1, 'https://ror.org/00ys2za03 Montana Department of Transportation'),
(41460, 'https://ror.org/055t3yk56', 'en', 1, 'https://ror.org/055t3yk56 ACT Department of Treasury'),
(41461, 'https://ror.org/05y9xcd05', 'en', 1, 'https://ror.org/05y9xcd05 Australian Water Recycling Centre of Excellence'),
(41462, 'https://ror.org/03pgxht93', 'en', 1, 'https://ror.org/03pgxht93 Foshan Municipal Government'),
(41463, 'https://ror.org/01qas6g18', 'en', 1, 'https://ror.org/01qas6g18 Södra Älvsborg Hospital Södra Älvsborgs Sjukhus'),
(41464, 'https://ror.org/04m57qg37', 'en', 1, 'https://ror.org/04m57qg37 Manitoba Labour and Immigration'),
(41465, 'https://ror.org/03ebs8975', 'en', 1, 'https://ror.org/03ebs8975 Department of State Growth'),
(41466, 'https://ror.org/02jexx044', 'de', 1, 'https://ror.org/02jexx044 Senatsverwaltung für Bildung, Jugend und Wissenschaft'),
(41467, 'https://ror.org/026emmr85', 'en', 1, 'https://ror.org/026emmr85 Ministry of Children, Community and Social Services Ministère des Services Sociaux et Communautaires'),
(41468, 'https://ror.org/01fz2q334', 'en', 1, 'https://ror.org/01fz2q334 National Insurance Institute of Israel המוסד לביטוח לאומי'),
(41469, 'https://ror.org/04e3z5r84', 'en', 1, 'https://ror.org/04e3z5r84 Islamic Development Bank البنك الإسلامي للتنمية'),
(41470, 'https://ror.org/00axrng91', 'en', 1, 'https://ror.org/00axrng91 Shetland Islands Council'),
(41471, 'https://ror.org/01cnenr61', 'fi', 1, 'https://ror.org/01cnenr61 Etelä-Pohjanmaan Sairaanhoitopiiri'),
(41472, 'https://ror.org/04ry1rt27', 'fr', 1, 'https://ror.org/04ry1rt27 Conseil Régional d''Île-de-France'),
(41473, 'https://ror.org/00wa9t836', 'en', 1, 'https://ror.org/00wa9t836 Chief Minister Treasury and Economic Development Directorate'),
(41474, 'https://ror.org/05xcjmm14', 'fr', 1, 'https://ror.org/05xcjmm14 Bibliothèque et Archives nationales du Québec National Library and Archives of Québec'),
(41475, 'https://ror.org/02agyqq59', 'en', 1, 'https://ror.org/02agyqq59 Department of Communities, Culture and Heritage'),
(41476, 'https://ror.org/05j137f13', 'en', 1, 'https://ror.org/05j137f13 Act Health'),
(41477, 'https://ror.org/022z3g211', 'en', 1, 'https://ror.org/022z3g211 Guangxi Zhuang Autonomous Region Health and Family Planning 广西壮族自治区卫生和计划生育委员会'),
(41478, 'https://ror.org/00y2ynd26', 'en', 1, 'https://ror.org/00y2ynd26 Saskatchewan Arts Board'),
(41479, 'https://ror.org/01rg6da32', 'en', 1, 'https://ror.org/01rg6da32 Bureau of Agriculture of Guangzhou Municipality 广州市农业局'),
(41480, 'https://ror.org/05skhck39', 'en', 1, 'https://ror.org/05skhck39 HealthForceOntario'),
(41481, 'https://ror.org/00d4h7g98', 'en', 1, 'https://ror.org/00d4h7g98 Research Institute for Astronomy and Astrophysics of Maragh'),
(41482, 'https://ror.org/029td0g71', 'en', 1, 'https://ror.org/029td0g71 Bugok National Hospital 국립부곡병원'),
(41483, 'https://ror.org/00znwdt50', 'en', 1, 'https://ror.org/00znwdt50 Newfoundland and Labrador Arts Council'),
(41484, 'https://ror.org/03tjm2p32', 'en', 1, 'https://ror.org/03tjm2p32 Chuncheon National Hospital 국립춘천병원'),
(41485, 'https://ror.org/01nfhtc03', 'en', 1, 'https://ror.org/01nfhtc03 Lowitja Institute'),
(41486, 'https://ror.org/03e6g8q57', 'en', 1, 'https://ror.org/03e6g8q57 Masan National Tuberculosis Hospital'),
(41487, 'https://ror.org/03mhba648', 'en', 1, 'https://ror.org/03mhba648 Conseil des arts de l''Ontario Ontario Arts Council'),
(41488, 'https://ror.org/00n0e2d34', 'en', 1, 'https://ror.org/00n0e2d34 Ministry of Advanced Education'),
(41489, 'https://ror.org/01r7sqp31', 'en', 1, 'https://ror.org/01r7sqp31 Melbourne Water'),
(41490, 'https://ror.org/00nxrj229', 'en', 1, 'https://ror.org/00nxrj229 Mokpo National Tuberculosis Hospital 국립목포병원'),
(41491, 'https://ror.org/03mz4hq51', 'en', 1, 'https://ror.org/03mz4hq51 Naju National Hospital 국립나주병원'),
(41492, 'https://ror.org/02vcjcj30', 'de', 1, 'https://ror.org/02vcjcj30 Ministerium für Wissenschaft, Forschung und Kultur'),
(41493, 'https://ror.org/03s26zd55', 'en', 1, 'https://ror.org/03s26zd55 Sorokdo National Hospital 국립소록도병원'),
(41494, 'https://ror.org/05pmc2b98', 'pt', 1, 'https://ror.org/05pmc2b98 Companhia Energética de São Paulo'),
(41495, 'https://ror.org/038qjap85', 'en', 1, 'https://ror.org/038qjap85 Gambling Awareness Nova Scotia'),
(41496, 'https://ror.org/04vghy880', 'en', 1, 'https://ror.org/04vghy880 Port of Melbourne Corporation'),
(41497, 'https://ror.org/05nap1d83', 'en', 1, 'https://ror.org/05nap1d83 Territory and Municipal Services'),
(41498, 'https://ror.org/03af0nw04', 'en', 1, 'https://ror.org/03af0nw04 Canadian Mental Health Association'),
(41499, 'https://ror.org/02ttd0n41', 'en', 1, 'https://ror.org/02ttd0n41 Wellington City Council'),
(41500, 'https://ror.org/0433t4193', 'en', 1, 'https://ror.org/0433t4193 Office of the First Minister and deputy First Minister'),
(41501, 'https://ror.org/00d7a9n23', 'es', 1, 'https://ror.org/00d7a9n23 Consejo Superior Universitario Centroamericano'),
(41502, 'https://ror.org/0326gsy75', 'en', 1, 'https://ror.org/0326gsy75 County Administrative Board Länsstyrelsen Östergötland'),
(41503, 'https://ror.org/02yk6f609', 'pt', 1, 'https://ror.org/02yk6f609 Secretaria de Estado da Ciência, Tecnologia e Inovação'),
(41504, 'https://ror.org/02g4n1614', 'no_lang_code', 1, 'https://ror.org/02g4n1614 Qatar Petroleum (Qatar) عمليات قطر للبترول'),
(41505, 'https://ror.org/04th3yy26', 'pt', 1, 'https://ror.org/04th3yy26 Secretaria de Estado de Ciência Tecnologia e Inovação'),
(41506, 'https://ror.org/04af9zr29', 'en', 1, 'https://ror.org/04af9zr29 Innoviris'),
(41507, 'https://ror.org/03ga33f34', 'en', 1, 'https://ror.org/03ga33f34 Department of Arts and Museums'),
(41508, 'https://ror.org/00r3ztb37', 'en', 1, 'https://ror.org/00r3ztb37 Drzavni zavod za zastitu prirode State Institute for Nature Protection'),
(41509, 'https://ror.org/050q16438', 'en', 1, 'https://ror.org/050q16438 Department of Sport and Recreation'),
(41510, 'https://ror.org/02fr0s482', 'no_lang_code', 1, 'https://ror.org/02fr0s482 Wenzhou Municipal Sci-Tech Bureau 温州市科学技术局'),
(41511, 'https://ror.org/04b3wz043', 'en', 1, 'https://ror.org/04b3wz043 Ministry of Technology, Innovation & Citizens'' Services'),
(41512, 'https://ror.org/056c0n883', 'en', 1, 'https://ror.org/056c0n883 Uttarakhand State Council for Science and Technology'),
(41513, 'https://ror.org/02sx0vk32', 'en', 1, 'https://ror.org/02sx0vk32 Department of Education and Training'),
(41514, 'https://ror.org/02j1fb913', 'es', 1, 'https://ror.org/02j1fb913 Secretaría de Investigación, Innovación y Educación Superior'),
(41515, 'https://ror.org/00rj4dg52', 'en', 1, 'https://ror.org/00rj4dg52 Cambridge–MIT Institute'),
(41516, 'https://ror.org/01jhjbg73', 'en', 1, 'https://ror.org/01jhjbg73 Nova Scotia Department of Health and Wellness'),
(41517, 'https://ror.org/04bz8f123', 'en', 1, 'https://ror.org/04bz8f123 Chhattisgarh Council of Science and Technology छत्तीसगढ़ विज्ञान एवं प्रौद्योगिकी परिषद'),
(41518, 'https://ror.org/04zs2z136', 'it', 1, 'https://ror.org/04zs2z136 Collegio Ghislieri'),
(41519, 'https://ror.org/057g0br29', 'en', 1, 'https://ror.org/057g0br29 Brazilian Institute of Environment and Renewable Natural Resources Instituto Brasileiro do Meio Ambiente e dos Recursos Naturais Renováveis'),
(41520, 'https://ror.org/00fzs3g26', 'no_lang_code', 1, 'https://ror.org/00fzs3g26 China Tobacco Guangxi Industrial (China) 广西中烟工业有限责任公司'),
(41521, 'https://ror.org/01hednr46', 'no_lang_code', 1, 'https://ror.org/01hednr46 Mechanics Electronics Computer Corporation (Japan) 株式会社メック'),
(41522, 'https://ror.org/018h60391', 'en', 1, 'https://ror.org/018h60391 Institut suisse de médecine équine Swiss Institute of Equine Medicine'),
(41523, 'https://ror.org/04mw3jj73', 'fr', 1, 'https://ror.org/04mw3jj73 Fondation Sciences et Technologies pour l''Aéronautique et l''Espace'),
(41524, 'https://ror.org/05gsxwg61', 'es', 1, 'https://ror.org/05gsxwg61 Oficina Regional de Coordinación de Salud Mental'),
(41525, 'https://ror.org/02npjmq89', 'pt', 1, 'https://ror.org/02npjmq89 Fundação de Estudo e Pesquisa em Medicina Veterinária e Zootecnia'),
(41526, 'https://ror.org/03bxybp61', 'en', 1, 'https://ror.org/03bxybp61 Competence Centre for Materials Science and Technology'),
(41527, 'https://ror.org/02nfh7608', 'fr', 1, 'https://ror.org/02nfh7608 Bayerisch-Französische Hochschulzentrum Centre de Coopération Universitaire Franco-Bavarois'),
(41528, 'https://ror.org/02vp8jr44', 'es', 1, 'https://ror.org/02vp8jr44 Ministerio de Ciencia y Tecnología'),
(41529, 'https://ror.org/02kbrsj34', 'no_lang_code', 1, 'https://ror.org/02kbrsj34 Companhia Energética de Minas Gerais (Brazil)'),
(41530, 'https://ror.org/03spd6n49', 'en', 1, 'https://ror.org/03spd6n49 Electricity Generating Authority of Thailand การไฟฟ้าฝ่ายผลิตแห่งประเทศไทย'),
(41531, 'https://ror.org/03s0fv852', 'en', 1, 'https://ror.org/03s0fv852 Einstein Foundation Einstein Stiftung'),
(41532, 'https://ror.org/04wtd6086', 'en', 1, 'https://ror.org/04wtd6086 Development Bank of Southern Africa'),
(41533, 'https://ror.org/02tdb1n52', 'en', 1, 'https://ror.org/02tdb1n52 Bellingen Shire Council'),
(41534, 'https://ror.org/02ge9fk48', 'es', 1, 'https://ror.org/02ge9fk48 Secretaría de Ciencia Tecnología e Innovación'),
(41535, 'https://ror.org/04ekv3k57', 'en', 1, 'https://ror.org/04ekv3k57 Development Bank of Saxony Sächsische Aufbaubank'),
(41536, 'https://ror.org/02nc61e46', 'en', 1, 'https://ror.org/02nc61e46 Community Research and Development Information Service Forschungs- und Entwicklungsinformationsdienst der Gemeinschaft Service communautaire d''information sur la recherche et le développement Servizio Comunitario di Informazione in materia di Ricerca e Sviluppo Wspólnotowy Serwis Informacyjny Badań i Rozwoju'),
(41537, 'https://ror.org/01egp1063', 'es', 1, 'https://ror.org/01egp1063 Ministerio de Producción, Ciencia y Tecnología'),
(41538, 'https://ror.org/03hc6ex92', 'es', 1, 'https://ror.org/03hc6ex92 Secretaría de Innovación, Ciencia y Educación Superior'),
(41539, 'https://ror.org/00k53p435', 'en', 1, 'https://ror.org/00k53p435 Agencia de Desarrollo Económico de La Rioja Economic Development Agency for La Rioja'),
(41540, 'https://ror.org/03sjyr749', 'en', 1, 'https://ror.org/03sjyr749 Mornington Peninsula Shire'),
(41541, 'https://ror.org/02schg286', 'es', 1, 'https://ror.org/02schg286 Dirección de Investigación y Desarrollo'),
(41542, 'https://ror.org/04dpszf19', 'en', 1, 'https://ror.org/04dpszf19 Pennsylvania Department Of State'),
(41543, 'https://ror.org/049ygtv97', 'sv', 1, 'https://ror.org/049ygtv97 Landstinget Dalarna'),
(41544, 'https://ror.org/03qp8ma69', 'en', 1, 'https://ror.org/03qp8ma69 Center for Clinical Research Dalarna Centrum för Klinisk Forskning'),
(41545, 'https://ror.org/03vsjrq56', 'no_lang_code', 1, 'https://ror.org/03vsjrq56 Abiant (United States)'),
(41546, 'https://ror.org/048m92c51', 'en', 1, 'https://ror.org/048m92c51 Foundation for Advancing Veterans Health Research'),
(41547, 'https://ror.org/04k4dpz50', 'en', 1, 'https://ror.org/04k4dpz50 Accelerated Cure Project for Multiple Sclerosis'),
(41548, 'https://ror.org/013t96v18', 'en', 1, 'https://ror.org/013t96v18 Biotechnology Research Center'),
(41549, 'https://ror.org/01skwee93', 'no_lang_code', 1, 'https://ror.org/01skwee93 AgeneBio (United States)'),
(41550, 'https://ror.org/00p9p2506', 'en', 1, 'https://ror.org/00p9p2506 Ministerstvo dopravy České republiky Ministry of Transport'),
(41551, 'https://ror.org/029bmv142', 'en', 1, 'https://ror.org/029bmv142 Boston Children''s at Waltham'),
(41552, 'https://ror.org/01ahkhm49', 'en', 1, 'https://ror.org/01ahkhm49 ALD Connect'),
(41553, 'https://ror.org/002qvaf96', 'no_lang_code', 1, 'https://ror.org/002qvaf96 Gliacure (United States)'),
(41554, 'https://ror.org/01htb3a72', 'en', 1, 'https://ror.org/01htb3a72 Global Healthy Living Foundation'),
(41555, 'https://ror.org/02mh1yk91', 'en', 1, 'https://ror.org/02mh1yk91 Dr. A. Ramachandran''s Diabetes Hospitals'),
(41556, 'https://ror.org/02t64n115', 'en', 1, 'https://ror.org/02t64n115 Polarforskningssekretariatet Swedish Polar Research Secretariat'),
(41557, 'https://ror.org/044zr9v92', 'no_lang_code', 1, 'https://ror.org/044zr9v92 Allegro Ophthalmics (United States)'),
(41558, 'https://ror.org/01bcwyc86', 'en', 1, 'https://ror.org/01bcwyc86 Southern Maine Health Care'),
(41559, 'https://ror.org/05dm44j82', 'no_lang_code', 1, 'https://ror.org/05dm44j82 Gramercy Research Group (United States)'),
(41560, 'https://ror.org/01e5ad164', 'no_lang_code', 1, 'https://ror.org/01e5ad164 DualAlign (United States)'),
(41561, 'https://ror.org/04afrdx88', 'en', 1, 'https://ror.org/04afrdx88 Agri-Food and Veterinary Authority of Singapore'),
(41562, 'https://ror.org/05h8yxf34', 'en', 1, 'https://ror.org/05h8yxf34 Hartford Food System'),
(41563, 'https://ror.org/001snd369', 'no_lang_code', 1, 'https://ror.org/001snd369 Rosa (United States)'),
(41564, 'https://ror.org/05tzn2b35', 'en', 1, 'https://ror.org/05tzn2b35 Headwaters Health Care Centre'),
(41565, 'https://ror.org/05hk82j82', 'en', 1, 'https://ror.org/05hk82j82 Anchor Center for Blind Children'),
(41566, 'https://ror.org/03t8n7w93', 'no_lang_code', 1, 'https://ror.org/03t8n7w93 Health Advances (United States)'),
(41567, 'https://ror.org/04cmdwv88', 'no_lang_code', 1, 'https://ror.org/04cmdwv88 Close Concerns (United States)'),
(41568, 'https://ror.org/04as4jd41', 'en', 1, 'https://ror.org/04as4jd41 Prevent Alzheimer’s Disease 2020'),
(41569, 'https://ror.org/03hz79v84', 'en', 1, 'https://ror.org/03hz79v84 Fair Haven Community Health Center'),
(41570, 'https://ror.org/01khd9w51', 'en', 1, 'https://ror.org/01khd9w51 Felton Institute'),
(41571, 'https://ror.org/000wamw23', 'no_lang_code', 1, 'https://ror.org/000wamw23 CohBar (United States)'),
(41572, 'https://ror.org/02sbchm13', 'no_lang_code', 1, 'https://ror.org/02sbchm13 Asceneuron (Switzerland)'),
(41573, 'https://ror.org/01ymr0y61', 'en', 1, 'https://ror.org/01ymr0y61 National Archives of Australia'),
(41574, 'https://ror.org/05w1crz90', 'en', 1, 'https://ror.org/05w1crz90 Arkansas Autism Resource & Outreach Center'),
(41575, 'https://ror.org/0579b5p03', 'en', 1, 'https://ror.org/0579b5p03 Communities for a Better Environment'),
(41576, 'https://ror.org/01bhk7372', 'en', 1, 'https://ror.org/01bhk7372 Dallas VA Research Corporation'),
(41577, 'https://ror.org/02z64ft38', 'no_lang_code', 1, 'https://ror.org/02z64ft38 Behavior Imaging Solutions (United States)'),
(41578, 'https://ror.org/02rppq041', 'de', 1, 'https://ror.org/02rppq041 Krankenhaus Nordwest'),
(41579, 'https://ror.org/03mjnxj17', 'no_lang_code', 1, 'https://ror.org/03mjnxj17 LEK Consulting (United States)'),
(41580, 'https://ror.org/0505yy418', 'en', 1, 'https://ror.org/0505yy418 Lakeridge Health'),
(41581, 'https://ror.org/00f21s284', 'en', 1, 'https://ror.org/00f21s284 Office of the Chief Scientist לשכת המדען הראשי'),
(41582, 'https://ror.org/0174nh398', 'en', 1, 'https://ror.org/0174nh398 Levine Cancer Institute'),
(41583, 'https://ror.org/01nacjv05', 'en', 1, 'https://ror.org/01nacjv05 Louisiana Public Health Institute'),
(41584, 'https://ror.org/032sm9x52', 'no_lang_code', 1, 'https://ror.org/032sm9x52 Osta Bio Technologies (Canada)'),
(41585, 'https://ror.org/056456402', 'no_lang_code', 1, 'https://ror.org/056456402 Kenes Group (Switzerland)'),
(41586, 'https://ror.org/0155ftp45', 'en', 1, 'https://ror.org/0155ftp45 Mid Michigan Autism Association'),
(41587, 'https://ror.org/03y1z8727', 'no_lang_code', 1, 'https://ror.org/03y1z8727 Remegenix (United States)'),
(41588, 'https://ror.org/0219v4961', 'no_lang_code', 1, 'https://ror.org/0219v4961 SGC Pharma (United States)'),
(41589, 'https://ror.org/02pcng468', 'en', 1, 'https://ror.org/02pcng468 Tanzania Public health Association'),
(41590, 'https://ror.org/0436b4p03', 'no_lang_code', 1, 'https://ror.org/0436b4p03 Madera BioSciences (United States)'),
(41591, 'https://ror.org/00m92qj63', 'no_lang_code', 1, 'https://ror.org/00m92qj63 Sharp Edge Labs (United States)'),
(41592, 'https://ror.org/03g5f5777', 'en', 1, 'https://ror.org/03g5f5777 Maine Medical Center'),
(41593, 'https://ror.org/0009ha653', 'en', 1, 'https://ror.org/0009ha653 Alliance for Clinical Trials in Oncology'),
(41594, 'https://ror.org/011shyd31', 'en', 1, 'https://ror.org/011shyd31 St. Helena Hospital Foundation'),
(41595, 'https://ror.org/00cmb1w67', 'no_lang_code', 1, 'https://ror.org/00cmb1w67 Rodin Therapeutics (United States)'),
(41596, 'https://ror.org/00zhwjs36', 'en', 1, 'https://ror.org/00zhwjs36 Center for Advancing Innovation'),
(41597, 'https://ror.org/01fcdd135', 'en', 1, 'https://ror.org/01fcdd135 Chicago Community Trust'),
(41598, 'https://ror.org/01h8dx481', 'en', 1, 'https://ror.org/01h8dx481 National Biomedical Research Ethics Council'),
(41599, 'https://ror.org/01hw0hc30', 'en', 1, 'https://ror.org/01hw0hc30 Third Sector New England'),
(41600, 'https://ror.org/02kd2sw87', 'en', 1, 'https://ror.org/02kd2sw87 Safe Kids Worldwide'),
(41601, 'https://ror.org/05v2jd533', 'en', 1, 'https://ror.org/05v2jd533 Tidepool'),
(41602, 'https://ror.org/02n9jjp67', 'en', 1, 'https://ror.org/02n9jjp67 Groden Network'),
(41603, 'https://ror.org/01wvxvm13', 'en', 1, 'https://ror.org/01wvxvm13 University of Iowa Foundation'),
(41604, 'https://ror.org/00fhbr831', 'en', 1, 'https://ror.org/00fhbr831 Triangle'),
(41605, 'https://ror.org/00cemh325', 'en', 1, 'https://ror.org/00cemh325 Sanford Consortium for Regenerative Medicine'),
(41606, 'https://ror.org/00sd8zf10', 'en', 1, 'https://ror.org/00sd8zf10 University of Cape Town Fund'),
(41607, 'https://ror.org/01sfnbz84', 'en', 1, 'https://ror.org/01sfnbz84 VisionTree'),
(41608, 'https://ror.org/03s01ed61', 'no_lang_code', 1, 'https://ror.org/03s01ed61 Yuma Therapeutics (United States)'),
(41609, 'https://ror.org/05mf79c96', 'en', 1, 'https://ror.org/05mf79c96 UPMC Center for High Value Health Care'),
(41610, 'https://ror.org/03x5adz07', 'en', 1, 'https://ror.org/03x5adz07 UsAgainstAlzheimer'),
(41611, 'https://ror.org/053efsj20', 'en', 1, 'https://ror.org/053efsj20 Instituto Nacional de Ciência e Tecnologia de Fármacos e Medicamentos National Institute of Science and Technology of Drugs and Medicines'),
(41612, 'https://ror.org/01c02p071', 'en', 1, 'https://ror.org/01c02p071 AACC International'),
(41613, 'https://ror.org/02x6jsy35', 'en', 1, 'https://ror.org/02x6jsy35 Instituto Nacional de Genética Médica Populacional National Institute on Population Medical Genetics'),
(41614, 'https://ror.org/04yt9wc05', 'no_lang_code', 1, 'https://ror.org/04yt9wc05 China Construction Eighth Engineering Division (China)'),
(41615, 'https://ror.org/040gxv777', 'en', 1, 'https://ror.org/040gxv777 Delaney AIDS Research Enterprise'),
(41616, 'https://ror.org/001c3w852', 'en', 1, 'https://ror.org/001c3w852 Instituto Nacional de Ciência e Tecnologia de Toxicologia Aquática National Institute of Aquatic Toxicology'),
(41617, 'https://ror.org/038ejm451', 'en', 1, 'https://ror.org/038ejm451 World Federation for Mental Health'),
(41618, 'https://ror.org/03cqmba17', 'pt', 1, 'https://ror.org/03cqmba17 Instituto Nacional de Ciência e Tecnologia de Neurociência Translacional'),
(41619, 'https://ror.org/03xnf5k89', 'en', 1, 'https://ror.org/03xnf5k89 Common Fund for Commodities'),
(41620, 'https://ror.org/03kgddd58', 'en', 1, 'https://ror.org/03kgddd58 MacDowell Colony'),
(41621, 'https://ror.org/02ccnn750', 'en', 1, 'https://ror.org/02ccnn750 United Way'),
(41622, 'https://ror.org/026n0rw09', 'pt', 1, 'https://ror.org/026n0rw09 Instituto Nacional de Ciência e Tecnologia de Obesidade e Diabetes'),
(41623, 'https://ror.org/00ps5mk11', 'pt', 1, 'https://ror.org/00ps5mk11 Instituto Nacional de Ciência e Tecnologia de Adaptações da Biota Aquática da Amazônia'),
(41624, 'https://ror.org/01xc6az48', 'en', 1, 'https://ror.org/01xc6az48 Fondazione Internazionale Balzan International Balzan Prize Foundation'),
(41625, 'https://ror.org/02z2wec49', 'pt', 1, 'https://ror.org/02z2wec49 Instituto Nacional de Ciência e Tecnologia em Eletrônica Orgânica'),
(41626, 'https://ror.org/049dnw004', 'en', 1, 'https://ror.org/049dnw004 Society of Environmental Toxicology and Chemistry'),
(41627, 'https://ror.org/03ca35056', 'en', 1, 'https://ror.org/03ca35056 Atlantic Philanthropies'),
(41628, 'https://ror.org/00dfjma76', 'en', 1, 'https://ror.org/00dfjma76 American Council on Germany'),
(41629, 'https://ror.org/02j95s845', 'en', 1, 'https://ror.org/02j95s845 International Association for Great Lakes Research'),
(41630, 'https://ror.org/00fszdj92', 'en', 1, 'https://ror.org/00fszdj92 Organization for Women in Science for the Developing World'),
(41631, 'https://ror.org/02zdrev82', 'pt', 1, 'https://ror.org/02zdrev82 Instituto Nacional de Ciência e Tecnologia de Processos Redox em Biomedicina'),
(41632, 'https://ror.org/01zr65j15', 'pt', 1, 'https://ror.org/01zr65j15 Instituto Nacional de Ciência e Tecnologia de Ciência Animal'),
(41633, 'https://ror.org/0385qa794', 'en', 1, 'https://ror.org/0385qa794 European Council of International Schools'),
(41634, 'https://ror.org/00d1x1168', 'en', 1, 'https://ror.org/00d1x1168 Eurasia Foundation'),
(41635, 'https://ror.org/03836vq90', 'en', 1, 'https://ror.org/03836vq90 International Tropical Timber Organization'),
(41636, 'https://ror.org/03tydf244', 'pt', 1, 'https://ror.org/03tydf244 Instituto Nacional de Ciência e Tecnologia em Excitotoxicidade e Neuroproteção'),
(41637, 'https://ror.org/024zavn56', 'en', 1, 'https://ror.org/024zavn56 Graduate Women International'),
(41638, 'https://ror.org/018788w33', 'no_lang_code', 1, 'https://ror.org/018788w33 Astellas Pharma (United Kingdom)'),
(41639, 'https://ror.org/00wrbf093', 'en', 1, 'https://ror.org/00wrbf093 OPEC Fund for International Development'),
(41640, 'https://ror.org/01n3xha27', 'en', 1, 'https://ror.org/01n3xha27 American Institute of Pakistan Studies'),
(41641, 'https://ror.org/05b233w53', 'en', 1, 'https://ror.org/05b233w53 Association of California Community College Administrators'),
(41642, 'https://ror.org/02jnewa08', 'en', 1, 'https://ror.org/02jnewa08 American Institute of Ultrasound in Medicine'),
(41643, 'https://ror.org/03zxry661', 'en', 1, 'https://ror.org/03zxry661 European Investment Bank'),
(41644, 'https://ror.org/0120w5678', 'en', 1, 'https://ror.org/0120w5678 European Observatory on Health Systems and Policies'),
(41645, 'https://ror.org/05xxn0r26', 'en', 1, 'https://ror.org/05xxn0r26 Americans for Medical Progress'),
(41646, 'https://ror.org/03xsk8f60', 'en', 1, 'https://ror.org/03xsk8f60 Architectural League of New York'),
(41647, 'https://ror.org/04bc8dn02', 'de', 1, 'https://ror.org/04bc8dn02 Christoffel Blinden Mission'),
(41648, 'https://ror.org/04beyjz13', 'en', 1, 'https://ror.org/04beyjz13 European Tropical Forest Research Network'),
(41649, 'https://ror.org/05ezcey15', 'no_lang_code', 1, 'https://ror.org/05ezcey15 Toa Pharmaceutical (Japan)'),
(41650, 'https://ror.org/021f23q27', 'en', 1, 'https://ror.org/021f23q27 Freedom House'),
(41651, 'https://ror.org/004565978', 'en', 1, 'https://ror.org/004565978 European Society for Sexual Medicine'),
(41652, 'https://ror.org/01bp1fj20', 'en', 1, 'https://ror.org/01bp1fj20 Wilbur and Hilda Glenn Family Foundation'),
(41653, 'https://ror.org/00derzd22', 'en', 1, 'https://ror.org/00derzd22 Instituto Nacional de Ciência e Tecnologia Fotônica para Comunicações Ópticas National Institute of Photonic Science and Technology for Optical Communication'),
(41654, 'https://ror.org/02rqftv84', 'en', 1, 'https://ror.org/02rqftv84 Organisation for the Prohibition of Chemical Weapons Organización para la Prohibición de Armas Químicas'),
(41655, 'https://ror.org/03mrwhf77', 'en', 1, 'https://ror.org/03mrwhf77 Commonwealth Forestry Association'),
(41656, 'https://ror.org/04rc6g352', 'en', 1, 'https://ror.org/04rc6g352 Granger Foundation'),
(41657, 'https://ror.org/04y63ab76', 'en', 1, 'https://ror.org/04y63ab76 Catching the Dream'),
(41658, 'https://ror.org/03tsm8967', 'en', 1, 'https://ror.org/03tsm8967 Arts Midwest'),
(41659, 'https://ror.org/040hfpx97', 'en', 1, 'https://ror.org/040hfpx97 CEC ArtsLink'),
(41660, 'https://ror.org/02g9hzn44', 'en', 1, 'https://ror.org/02g9hzn44 National Institute of Science and Mathematics Technology'),
(41661, 'https://ror.org/02sstxn62', 'en', 1, 'https://ror.org/02sstxn62 European Bank for Reconstruction and Development'),
(41662, 'https://ror.org/054zw2979', 'en', 1, 'https://ror.org/054zw2979 Arizona Space Grant Consortium'),
(41663, 'https://ror.org/01ah4r412', 'en', 1, 'https://ror.org/01ah4r412 Mary Baker Eddy Library'),
(41664, 'https://ror.org/02chwk660', 'en', 1, 'https://ror.org/02chwk660 Clay Mathematics Institute'),
(41665, 'https://ror.org/058ab6j52', 'en', 1, 'https://ror.org/058ab6j52 Bemis Center for Contemporary Arts'),
(41666, 'https://ror.org/050133s12', 'en', 1, 'https://ror.org/050133s12 Schott Foundation for Public Education'),
(41667, 'https://ror.org/04d357y30', 'pt', 1, 'https://ror.org/04d357y30 Instituto Nacional de Ciência e Tecnologia para o Controle das Intoxicações por Plantas'),
(41668, 'https://ror.org/058465397', 'en', 1, 'https://ror.org/058465397 North Carolina Space Grant Consortium'),
(41669, 'https://ror.org/013b2jw60', 'en', 1, 'https://ror.org/013b2jw60 Georgia Space Grant Consortium'),
(41670, 'https://ror.org/00kyqct09', 'en', 1, 'https://ror.org/00kyqct09 Schuler Scholar Program'),
(41671, 'https://ror.org/05rdptj07', 'en', 1, 'https://ror.org/05rdptj07 Josephine De Karman Fellowship Trust'),
(41672, 'https://ror.org/05fbb1126', 'pt', 1, 'https://ror.org/05fbb1126 Instituto Nacional de Ciência e Tecnologia de Doenças Tropicais'),
(41673, 'https://ror.org/011ze6662', 'en', 1, 'https://ror.org/011ze6662 Harry J. Lloyd Charitable Trust'),
(41674, 'https://ror.org/017mjs592', 'en', 1, 'https://ror.org/017mjs592 Illinois Space Grant Consortium'),
(41675, 'https://ror.org/01jaqtk55', 'en', 1, 'https://ror.org/01jaqtk55 Louisville Institute');
INSERT INTO `rors` VALUES
(41676, 'https://ror.org/006p7vb38', 'no_lang_code', 1, 'https://ror.org/006p7vb38 Armstrong World Industries (United States)'),
(41677, 'https://ror.org/02s2t6509', 'en', 1, 'https://ror.org/02s2t6509 MacPhail Center for Music'),
(41678, 'https://ror.org/03xnmzw54', 'en', 1, 'https://ror.org/03xnmzw54 Kansas Space Grant Consortium'),
(41679, 'https://ror.org/0416smw97', 'en', 1, 'https://ror.org/0416smw97 Ovarian Awareness Walk'),
(41680, 'https://ror.org/033becj92', 'en', 1, 'https://ror.org/033becj92 National Operating Committee on Standards for Athletic Equipment'),
(41681, 'https://ror.org/051ksdh55', 'en', 1, 'https://ror.org/051ksdh55 Kentucky Space Grant Consortium'),
(41682, 'https://ror.org/04wdzm653', 'en', 1, 'https://ror.org/04wdzm653 World Forestry Center'),
(41683, 'https://ror.org/01n2qjm43', 'en', 1, 'https://ror.org/01n2qjm43 Children’s Charities Foundation'),
(41684, 'https://ror.org/02k2r5455', 'en', 1, 'https://ror.org/02k2r5455 Maryland Space Grant Consortium'),
(41685, 'https://ror.org/05schts45', 'en', 1, 'https://ror.org/05schts45 Heart Failure Society of America'),
(41686, 'https://ror.org/027sz0n32', 'en', 1, 'https://ror.org/027sz0n32 Congressional Hispanic Caucus Institute'),
(41687, 'https://ror.org/03n10mx16', 'en', 1, 'https://ror.org/03n10mx16 Women''s Research & Education Institute'),
(41688, 'https://ror.org/05yd80n95', 'en', 1, 'https://ror.org/05yd80n95 Congressional Hunger Center'),
(41689, 'https://ror.org/04761rz89', 'en', 1, 'https://ror.org/04761rz89 Whatcom Museum'),
(41690, 'https://ror.org/05thvt304', 'en', 1, 'https://ror.org/05thvt304 Van Alen Institute'),
(41691, 'https://ror.org/00x0rjj17', 'en', 1, 'https://ror.org/00x0rjj17 Montana Space Grant Consortium'),
(41692, 'https://ror.org/0160f3285', 'en', 1, 'https://ror.org/0160f3285 Council of Independent Colleges'),
(41693, 'https://ror.org/02w20cr42', 'en', 1, 'https://ror.org/02w20cr42 Nebraska Space Grant Consortium'),
(41694, 'https://ror.org/032tek884', 'en', 1, 'https://ror.org/032tek884 Medical Letter'),
(41695, 'https://ror.org/038pzr527', 'en', 1, 'https://ror.org/038pzr527 Early Learning Coalition of Miami Dade Monroe'),
(41696, 'https://ror.org/04eehbt36', 'en', 1, 'https://ror.org/04eehbt36 Nevada Space Grant Consortium'),
(41697, 'https://ror.org/010jszw77', 'en', 1, 'https://ror.org/010jszw77 Delaware Space Grant Consortium'),
(41698, 'https://ror.org/020z8zc95', 'en', 1, 'https://ror.org/020z8zc95 American Institute for Economic Research'),
(41699, 'https://ror.org/03x467203', 'en', 1, 'https://ror.org/03x467203 Truman Library Institute'),
(41700, 'https://ror.org/04gm25w26', 'en', 1, 'https://ror.org/04gm25w26 United Way for Southeastern Michigan'),
(41701, 'https://ror.org/034xvnf25', 'en', 1, 'https://ror.org/034xvnf25 Eisenhower Fellowships'),
(41702, 'https://ror.org/02320dz84', 'en', 1, 'https://ror.org/02320dz84 Paul & Daisy Soros Fellowships for New Americans'),
(41703, 'https://ror.org/03ycy6g75', 'en', 1, 'https://ror.org/03ycy6g75 New York Space Grant Consortium'),
(41704, 'https://ror.org/045fdzr53', 'en', 1, 'https://ror.org/045fdzr53 North Dakota Space Grant Consortium'),
(41705, 'https://ror.org/04y65f081', 'en', 1, 'https://ror.org/04y65f081 Ohio Space Grant Consortium'),
(41706, 'https://ror.org/014vbqy29', 'en', 1, 'https://ror.org/014vbqy29 American Theatre Wing'),
(41707, 'https://ror.org/020xgge28', 'en', 1, 'https://ror.org/020xgge28 Oklahoma Space Grant Consortium'),
(41708, 'https://ror.org/0225cwm17', 'en', 1, 'https://ror.org/0225cwm17 Pennsylvania Space Grant Consortium'),
(41709, 'https://ror.org/00686bx53', 'en', 1, 'https://ror.org/00686bx53 PEN American Center'),
(41710, 'https://ror.org/05g9jvj02', 'en', 1, 'https://ror.org/05g9jvj02 Kosair Charities'),
(41711, 'https://ror.org/04jrbrj58', 'en', 1, 'https://ror.org/04jrbrj58 Rhode Island Space Grant Consortium'),
(41712, 'https://ror.org/002ew9g26', 'en', 1, 'https://ror.org/002ew9g26 Leonard Wood Institute'),
(41713, 'https://ror.org/050we9f15', 'en', 1, 'https://ror.org/050we9f15 South Carolina Space Grant Consortium'),
(41714, 'https://ror.org/0169ypx19', 'en', 1, 'https://ror.org/0169ypx19 South Dakota Space Grant Consortium'),
(41715, 'https://ror.org/03024dz78', 'en', 1, 'https://ror.org/03024dz78 Vermont Space Grant Consortium'),
(41716, 'https://ror.org/01zpqad83', 'en', 1, 'https://ror.org/01zpqad83 West Virginia Space Grant Consortium'),
(41717, 'https://ror.org/05a84rn81', 'en', 1, 'https://ror.org/05a84rn81 Long Island League to Abolish Cancer'),
(41718, 'https://ror.org/05ae2ng62', 'en', 1, 'https://ror.org/05ae2ng62 Wisconsin Space Grant Consortium'),
(41719, 'https://ror.org/0535kjm37', 'en', 1, 'https://ror.org/0535kjm37 Canadian Institute of Mining, Metallurgy and Petroleum Institut Canadien des Mines, de la Métallurgie et du Pétrole'),
(41720, 'https://ror.org/01j60q321', 'en', 1, 'https://ror.org/01j60q321 Denver Botanic Gardens'),
(41721, 'https://ror.org/04jaeeg73', 'en', 1, 'https://ror.org/04jaeeg73 Wyoming Space Grant Consortium'),
(41722, 'https://ror.org/01hvyf776', 'en', 1, 'https://ror.org/01hvyf776 New York City Economic Development Corporation'),
(41723, 'https://ror.org/042183v27', 'en', 1, 'https://ror.org/042183v27 Nick Kot Charity For TBI'),
(41724, 'https://ror.org/0536y0s22', 'en', 1, 'https://ror.org/0536y0s22 Daniels Fund'),
(41725, 'https://ror.org/00dt8xx11', 'en', 1, 'https://ror.org/00dt8xx11 International Center for Journalists'),
(41726, 'https://ror.org/04z65vq06', 'en', 1, 'https://ror.org/04z65vq06 Fine Arts Work Center'),
(41727, 'https://ror.org/04yx5fa32', 'no_lang_code', 1, 'https://ror.org/04yx5fa32 Nutricia Research (Netherlands)'),
(41728, 'https://ror.org/02psef266', 'en', 1, 'https://ror.org/02psef266 Friends for an Earlier Breast Cancer Test'),
(41729, 'https://ror.org/04x2e7745', 'en', 1, 'https://ror.org/04x2e7745 AlloSource'),
(41730, 'https://ror.org/03a300k41', 'en', 1, 'https://ror.org/03a300k41 Civitan International'),
(41731, 'https://ror.org/01mww5314', 'en', 1, 'https://ror.org/01mww5314 Health Volunteers Overseas'),
(41732, 'https://ror.org/052yxa807', 'en', 1, 'https://ror.org/052yxa807 Brotherhood of St Laurence'),
(41733, 'https://ror.org/03acf4h47', 'en', 1, 'https://ror.org/03acf4h47 Junior League of Des Moines'),
(41734, 'https://ror.org/01m2yw646', 'en', 1, 'https://ror.org/01m2yw646 Horticultural Research Institute'),
(41735, 'https://ror.org/030y35h40', 'en', 1, 'https://ror.org/030y35h40 Bowel and Cancer Research'),
(41736, 'https://ror.org/04edktq70', 'en', 1, 'https://ror.org/04edktq70 Royal British Legion'),
(41737, 'https://ror.org/014n3ck53', 'en', 1, 'https://ror.org/014n3ck53 Hudson Institute'),
(41738, 'https://ror.org/01tefzr55', 'en', 1, 'https://ror.org/01tefzr55 Great Bay Stewards'),
(41739, 'https://ror.org/01v5nrd60', 'en', 1, 'https://ror.org/01v5nrd60 Center for Health Design'),
(41740, 'https://ror.org/03fqqej38', 'en', 1, 'https://ror.org/03fqqej38 Johns Hopkins Children''s Center'),
(41741, 'https://ror.org/03mx5e235', 'en', 1, 'https://ror.org/03mx5e235 European Committee for Treatment and Research in Multiple Sclerosis'),
(41742, 'https://ror.org/0027wxf59', 'en', 1, 'https://ror.org/0027wxf59 Albert Ellis Institute'),
(41743, 'https://ror.org/031ypdv26', 'en', 1, 'https://ror.org/031ypdv26 Intercollegiate Studies Institute'),
(41744, 'https://ror.org/01ygh0g51', 'en', 1, 'https://ror.org/01ygh0g51 Welding Research Council'),
(41745, 'https://ror.org/04stt5k13', 'en', 1, 'https://ror.org/04stt5k13 Prairie Improvement Network'),
(41746, 'https://ror.org/03y14xz82', 'en', 1, 'https://ror.org/03y14xz82 Jewish Board of Family and Children''s Services'),
(41747, 'https://ror.org/00a78zp32', 'en', 1, 'https://ror.org/00a78zp32 Irish American Cultural Institute'),
(41748, 'https://ror.org/054xfjj29', 'en', 1, 'https://ror.org/054xfjj29 CRC for Rail Innovation'),
(41749, 'https://ror.org/040cw3796', 'en', 1, 'https://ror.org/040cw3796 British Ornithologists Union'),
(41750, 'https://ror.org/03jyeqg89', 'en', 1, 'https://ror.org/03jyeqg89 Jewish Child Care Association'),
(41751, 'https://ror.org/01abckz52', 'en', 1, 'https://ror.org/01abckz52 AdventHealth for Children'),
(41752, 'https://ror.org/00z2dj373', 'en', 1, 'https://ror.org/00z2dj373 A Night For Sight'),
(41753, 'https://ror.org/02n3ttt92', 'en', 1, 'https://ror.org/02n3ttt92 ALS Society of Canada'),
(41754, 'https://ror.org/01g621a78', 'en', 1, 'https://ror.org/01g621a78 Royal National Lifeboat Institution'),
(41755, 'https://ror.org/0065zqt33', 'en', 1, 'https://ror.org/0065zqt33 National Cancer Center'),
(41756, 'https://ror.org/04w49dw51', 'en', 1, 'https://ror.org/04w49dw51 Pacific Institute for the Mathematical Sciences'),
(41757, 'https://ror.org/02sx6dd34', 'en', 1, 'https://ror.org/02sx6dd34 Health Care Foundation'),
(41758, 'https://ror.org/0082jv665', 'en', 1, 'https://ror.org/0082jv665 Healthy Waterways'),
(41759, 'https://ror.org/03pydjx38', 'no_lang_code', 1, 'https://ror.org/03pydjx38 State Nuclear Power Technology Company (China)'),
(41760, 'https://ror.org/04pgv9784', 'en', 1, 'https://ror.org/04pgv9784 Energy Biosciences Institute'),
(41761, 'https://ror.org/01b5c2h26', 'en', 1, 'https://ror.org/01b5c2h26 Heart Kids'),
(41762, 'https://ror.org/00v3tjq70', 'en', 1, 'https://ror.org/00v3tjq70 Dairy Management'),
(41763, 'https://ror.org/023943s16', 'en', 1, 'https://ror.org/023943s16 American Partnership for Eosinophilic Disorders'),
(41764, 'https://ror.org/018qsef31', 'en', 1, 'https://ror.org/018qsef31 Northern Gulf Institute'),
(41765, 'https://ror.org/05cnkke79', 'en', 1, 'https://ror.org/05cnkke79 National Vulvodynia Association'),
(41766, 'https://ror.org/004jn1895', 'en', 1, 'https://ror.org/004jn1895 Buckminster Fuller Institute'),
(41767, 'https://ror.org/01y0eyq70', 'en', 1, 'https://ror.org/01y0eyq70 International Society for the Study of the Lumbar Spine'),
(41768, 'https://ror.org/02br4sp34', 'en', 1, 'https://ror.org/02br4sp34 Saskatchewan Flax Development Commission'),
(41769, 'https://ror.org/0149a7069', 'en', 1, 'https://ror.org/0149a7069 Advanced Foods and Materials Network'),
(41770, 'https://ror.org/031m3kw45', 'en', 1, 'https://ror.org/031m3kw45 Alexander Graham Bell Association for the Deaf and Hard of Hearing'),
(41771, 'https://ror.org/01n5qfh17', 'en', 1, 'https://ror.org/01n5qfh17 Centre for Biomedical Engineering and Physics'),
(41772, 'https://ror.org/050zhbw42', 'en', 1, 'https://ror.org/050zhbw42 American Institute of Bangladesh Studies'),
(41773, 'https://ror.org/00nj2y010', 'en', 1, 'https://ror.org/00nj2y010 African Safari Club Of Florida'),
(41774, 'https://ror.org/002y2c982', 'en', 1, 'https://ror.org/002y2c982 Centre d’Excellence de l’Ontario en Santé Mentale des Enfants et des Adolescents Ontario Centre of Excellence for Child and Youth Mental Health'),
(41775, 'https://ror.org/00z6sta78', 'en', 1, 'https://ror.org/00z6sta78 Citrus Growers Association'),
(41776, 'https://ror.org/04s3dsz85', 'en', 1, 'https://ror.org/04s3dsz85 Office of Diversity and Inclusion'),
(41777, 'https://ror.org/04bdeg508', 'en', 1, 'https://ror.org/04bdeg508 Petroleum Research Newfoundland and Labrador'),
(41778, 'https://ror.org/03cy6xx05', 'en', 1, 'https://ror.org/03cy6xx05 Cancer League of Colorado'),
(41779, 'https://ror.org/04qvn8b67', 'en', 1, 'https://ror.org/04qvn8b67 Association of British Paediatric Nurses'),
(41780, 'https://ror.org/01f6q3121', 'en', 1, 'https://ror.org/01f6q3121 Hyundai Hope On Wheels'),
(41781, 'https://ror.org/05c4jxb21', 'en', 1, 'https://ror.org/05c4jxb21 Workers Compensation Board of British Columbia'),
(41782, 'https://ror.org/033zy4a51', 'en', 1, 'https://ror.org/033zy4a51 Center for Enabling New Technologies Through Catalysis'),
(41783, 'https://ror.org/02x2rzn44', 'en', 1, 'https://ror.org/02x2rzn44 Playford Trust'),
(41784, 'https://ror.org/00evpm282', 'en', 1, 'https://ror.org/00evpm282 Workplace Health, Safety and Compensation Commission'),
(41785, 'https://ror.org/022jstb93', 'en', 1, 'https://ror.org/022jstb93 Design and Art Direction'),
(41786, 'https://ror.org/03yjs4n28', 'en', 1, 'https://ror.org/03yjs4n28 Commonwealth Education Trust'),
(41787, 'https://ror.org/00hyqw430', 'en', 1, 'https://ror.org/00hyqw430 Centre pour la santé des Inuits et les Changements Environnementaux Nasivvik Centre for Inuit Health and Changing Environments'),
(41788, 'https://ror.org/05fd6p289', 'en', 1, 'https://ror.org/05fd6p289 Australian Communications Consumer Action Network'),
(41789, 'https://ror.org/03nm76z82', 'en', 1, 'https://ror.org/03nm76z82 Australian Institute of Policy and Science'),
(41790, 'https://ror.org/037gnvs23', 'en', 1, 'https://ror.org/037gnvs23 English Speaking Union'),
(41791, 'https://ror.org/00q2kx914', 'en', 1, 'https://ror.org/00q2kx914 Fisheries Society of the British Isles'),
(41792, 'https://ror.org/04ymsr904', 'en', 1, 'https://ror.org/04ymsr904 Carclew Youth Arts'),
(41793, 'https://ror.org/02hger267', 'en', 1, 'https://ror.org/02hger267 Great Britain China Centre'),
(41794, 'https://ror.org/03cjaa329', 'en', 1, 'https://ror.org/03cjaa329 Migraine Trust'),
(41795, 'https://ror.org/00hc57b89', 'en', 1, 'https://ror.org/00hc57b89 Solid Wood Innovation'),
(41796, 'https://ror.org/00rvy3n84', 'en', 1, 'https://ror.org/00rvy3n84 Iolanthe Midwifery Trust'),
(41797, 'https://ror.org/037s01565', 'da', 1, 'https://ror.org/037s01565 Scleroseforeningen'),
(41798, 'https://ror.org/02mfknm62', 'en', 1, 'https://ror.org/02mfknm62 Hypertension Trust'),
(41799, 'https://ror.org/00w4m9556', 'en', 1, 'https://ror.org/00w4m9556 Human Resources Professionals Association'),
(41800, 'https://ror.org/02j37bn23', 'en', 1, 'https://ror.org/02j37bn23 Beatson Cancer Charity'),
(41801, 'https://ror.org/03z7hft29', 'en', 1, 'https://ror.org/03z7hft29 British Federation of Women Graduates'),
(41802, 'https://ror.org/02t3dz930', 'en', 1, 'https://ror.org/02t3dz930 European External Action Service Europese Dienst voor extern optreden Europäischer Auswärtiger Dienst Service européen pour l’action extérieure'),
(41803, 'https://ror.org/00y9yvc25', 'en', 1, 'https://ror.org/00y9yvc25 Action Duchenne'),
(41804, 'https://ror.org/05egkbh47', 'en', 1, 'https://ror.org/05egkbh47 National Anti-Vivisection Society'),
(41805, 'https://ror.org/01mf4te84', 'en', 1, 'https://ror.org/01mf4te84 Abbey Awards'),
(41806, 'https://ror.org/02aqppr80', 'en', 1, 'https://ror.org/02aqppr80 Boston Area Research Initiative'),
(41807, 'https://ror.org/02mf6dg38', 'en', 1, 'https://ror.org/02mf6dg38 Action Cancer'),
(41808, 'https://ror.org/03tyjmh67', 'en', 1, 'https://ror.org/03tyjmh67 Melissa Institute for Violence Prevention and Treatment'),
(41809, 'https://ror.org/01kpf2x84', 'en', 1, 'https://ror.org/01kpf2x84 Chartered Institute of Management Accountants'),
(41810, 'https://ror.org/05h4fcj88', 'no_lang_code', 1, 'https://ror.org/05h4fcj88 Mercers’ Company (United Kingdom)'),
(41811, 'https://ror.org/042404z19', 'en', 1, 'https://ror.org/042404z19 Coeliac UK'),
(41812, 'https://ror.org/00vtr6j87', 'en', 1, 'https://ror.org/00vtr6j87 Myotubular Trust'),
(41813, 'https://ror.org/042szwr56', 'en', 1, 'https://ror.org/042szwr56 Spinal Research'),
(41814, 'https://ror.org/003vffc21', 'en', 1, 'https://ror.org/003vffc21 Arts Council of Wales Cyngor Celfyddydau Cymru'),
(41815, 'https://ror.org/00xphjb32', 'en', 1, 'https://ror.org/00xphjb32 Queen’s Nursing Institute Scotland'),
(41816, 'https://ror.org/05qvbeb50', 'en', 1, 'https://ror.org/05qvbeb50 National Association of Social Workers'),
(41817, 'https://ror.org/03192vt15', 'en', 1, 'https://ror.org/03192vt15 Ataxia UK'),
(41818, 'https://ror.org/04c7vyz18', 'en', 1, 'https://ror.org/04c7vyz18 Breakthrough Institute'),
(41819, 'https://ror.org/00w1nhp77', 'en', 1, 'https://ror.org/00w1nhp77 Union of Arab Chemists إتحاد الكيميائيين العرب'),
(41820, 'https://ror.org/0207g4422', 'en', 1, 'https://ror.org/0207g4422 RCVS Knowledge'),
(41821, 'https://ror.org/05qrzv962', 'en', 1, 'https://ror.org/05qrzv962 Overseas Press Club of America'),
(41822, 'https://ror.org/04etqyp34', 'cy', 1, 'https://ror.org/04etqyp34 Remedi'),
(41823, 'https://ror.org/012xv3367', 'en', 1, 'https://ror.org/012xv3367 Scientific Committee on Antarctic Research'),
(41824, 'https://ror.org/0156dtt23', 'en', 1, 'https://ror.org/0156dtt23 Arts Council of Northern Ireland'),
(41825, 'https://ror.org/03tzsk589', 'en', 1, 'https://ror.org/03tzsk589 British Council For Prevention of Blindness'),
(41826, 'https://ror.org/01126vz29', 'en', 1, 'https://ror.org/01126vz29 Headley Trust'),
(41827, 'https://ror.org/00289h314', 'en', 1, 'https://ror.org/00289h314 American Egg Board'),
(41828, 'https://ror.org/00h6vxx49', 'en', 1, 'https://ror.org/00h6vxx49 U.S. Green Building Council'),
(41829, 'https://ror.org/05tpt3034', 'en', 1, 'https://ror.org/05tpt3034 Stapledon Memorial Trust'),
(41830, 'https://ror.org/01w336058', 'en', 1, 'https://ror.org/01w336058 Royal Norwegian Embassy in London'),
(41831, 'https://ror.org/00ppjep56', 'en', 1, 'https://ror.org/00ppjep56 Cancer Association of South Africa'),
(41832, 'https://ror.org/02swjdp46', 'en', 1, 'https://ror.org/02swjdp46 Children’s Discovery Institute'),
(41833, 'https://ror.org/04kknj623', 'en', 1, 'https://ror.org/04kknj623 EMF Biological Research Trust'),
(41834, 'https://ror.org/003p9wg45', 'en', 1, 'https://ror.org/003p9wg45 Henry Smith Charity'),
(41835, 'https://ror.org/04k6mn280', 'en', 1, 'https://ror.org/04k6mn280 Society for Endocrinology'),
(41836, 'https://ror.org/02ez1f997', 'en', 1, 'https://ror.org/02ez1f997 Sparks'),
(41837, 'https://ror.org/01smvzn14', 'en', 1, 'https://ror.org/01smvzn14 Winter Cereal Trust'),
(41838, 'https://ror.org/000bbgp24', 'en', 1, 'https://ror.org/000bbgp24 Centre for Transportation Engineering and Planning'),
(41839, 'https://ror.org/00t6bvs64', 'en', 1, 'https://ror.org/00t6bvs64 National Heritage Council'),
(41840, 'https://ror.org/014303d61', 'en', 1, 'https://ror.org/014303d61 Ohio Department of Transportation'),
(41841, 'https://ror.org/01deqjx32', 'en', 1, 'https://ror.org/01deqjx32 Entrust'),
(41842, 'https://ror.org/03m1r7z07', 'no_lang_code', 1, 'https://ror.org/03m1r7z07 Asian Civilisations Museum Muzium Tamadun Asia 亚洲文明博物馆'),
(41843, 'https://ror.org/0341wf912', 'en', 1, 'https://ror.org/0341wf912 Safari Club International'),
(41844, 'https://ror.org/02wcz1374', 'en', 1, 'https://ror.org/02wcz1374 Arthritis Australia'),
(41845, 'https://ror.org/024wrmf62', 'en', 1, 'https://ror.org/024wrmf62 Duchenne Research Fund'),
(41846, 'https://ror.org/00skrfj45', 'en', 1, 'https://ror.org/00skrfj45 China Youth Development Foundation 中国青少年发展基金会'),
(41847, 'https://ror.org/01cmzh619', 'en', 1, 'https://ror.org/01cmzh619 Mental Health Australia'),
(41848, 'https://ror.org/03vwp3588', 'en', 1, 'https://ror.org/03vwp3588 Arkleton Trust'),
(41849, 'https://ror.org/00yb6qh25', 'en', 1, 'https://ror.org/00yb6qh25 Beit Trust'),
(41850, 'https://ror.org/05b6yak03', 'en', 1, 'https://ror.org/05b6yak03 Community Arts Network'),
(41851, 'https://ror.org/04mhkhc08', 'en', 1, 'https://ror.org/04mhkhc08 Solve ME/CFS Initiative'),
(41852, 'https://ror.org/02wq22q69', 'en', 1, 'https://ror.org/02wq22q69 Nehru Trust'),
(41853, 'https://ror.org/04dh1cz78', 'en', 1, 'https://ror.org/04dh1cz78 Pasold Research Fund'),
(41854, 'https://ror.org/01rdbtj19', 'en', 1, 'https://ror.org/01rdbtj19 Australian Rotary Health'),
(41855, 'https://ror.org/00bv1cj87', 'en', 1, 'https://ror.org/00bv1cj87 Indian Council of Philosophical Research'),
(41856, 'https://ror.org/002827k23', 'en', 1, 'https://ror.org/002827k23 Frankfurt Zoological Society Zoologische Gesellschaft Frankfurt'),
(41857, 'https://ror.org/01dtghp88', 'en', 1, 'https://ror.org/01dtghp88 Australian American Fulbright Commission'),
(41858, 'https://ror.org/05jn2xb28', 'en', 1, 'https://ror.org/05jn2xb28 Kidney Health New Zealand'),
(41859, 'https://ror.org/03455j977', 'en', 1, 'https://ror.org/03455j977 Fraser Institute'),
(41860, 'https://ror.org/000feez16', 'en', 1, 'https://ror.org/000feez16 Social Policy Evaluation and Research Unit'),
(41861, 'https://ror.org/001t6pv65', 'en', 1, 'https://ror.org/001t6pv65 Grand Lodge of Western Australia'),
(41862, 'https://ror.org/02ptdck34', 'en', 1, 'https://ror.org/02ptdck34 Australian Housing and Urban Research Institute'),
(41863, 'https://ror.org/01abhta88', 'de', 1, 'https://ror.org/01abhta88 Aus- und Weiterbildungseinrichtung für Klinische Verhaltenstherapie'),
(41864, 'https://ror.org/05jdvx041', 'en', 1, 'https://ror.org/05jdvx041 New Zealand Council for Educational Research'),
(41865, 'https://ror.org/0462yrd97', 'en', 1, 'https://ror.org/0462yrd97 Leukemia & Lymphoma Society of Canada'),
(41866, 'https://ror.org/05nhx9b20', 'en', 1, 'https://ror.org/05nhx9b20 China Social Welfare Foundation 中国社会福利基金会'),
(41867, 'https://ror.org/0567eg765', 'en', 1, 'https://ror.org/0567eg765 Fulbright New Zealand'),
(41868, 'https://ror.org/01qhvn038', 'en', 1, 'https://ror.org/01qhvn038 Petplan Charitable Trust'),
(41869, 'https://ror.org/029cn2a76', 'nl', 1, 'https://ror.org/029cn2a76 GGZ Rivierduinen'),
(41870, 'https://ror.org/002c9wz60', 'en', 1, 'https://ror.org/002c9wz60 Centre for Ageing Research and Development in Ireland'),
(41871, 'https://ror.org/00pz6eg79', 'en', 1, 'https://ror.org/00pz6eg79 Ontario Stroke Network'),
(41872, 'https://ror.org/04rnenb96', 'en', 1, 'https://ror.org/04rnenb96 Australian War Memorial'),
(41873, 'https://ror.org/0053vns10', 'en', 1, 'https://ror.org/0053vns10 An Comhairle Oidhreachta Heritage Council'),
(41874, 'https://ror.org/01z4e0695', 'en', 1, 'https://ror.org/01z4e0695 Winston Churchill Memorial Trust'),
(41875, 'https://ror.org/00t93jm73', 'nl', 1, 'https://ror.org/00t93jm73 Lentis'),
(41876, 'https://ror.org/01wd8z492', 'fr', 1, 'https://ror.org/01wd8z492 Conseil Français de l''Énergie'),
(41877, 'https://ror.org/03c0kv729', 'nl', 1, 'https://ror.org/03c0kv729 GGZ Friesland'),
(41878, 'https://ror.org/03mxg5j39', 'en', 1, 'https://ror.org/03mxg5j39 Agricultural Adaptation Council'),
(41879, 'https://ror.org/01nkrwq24', 'en', 1, 'https://ror.org/01nkrwq24 Astronomical Society of Australia'),
(41880, 'https://ror.org/002rcdx19', 'en', 1, 'https://ror.org/002rcdx19 Institute and Faculty of Actuaries'),
(41881, 'https://ror.org/04akhbz72', 'en', 1, 'https://ror.org/04akhbz72 Hong Kong Institute of Surveyors 香港測量師學會'),
(41882, 'https://ror.org/05f6c0c45', 'en', 1, 'https://ror.org/05f6c0c45 Helse Nord RHF Northern Norway Regional Health Authority'),
(41883, 'https://ror.org/00xn8e010', 'es', 1, 'https://ror.org/00xn8e010 Asociación para la Conservación de la Cuenca Amazónica'),
(41884, 'https://ror.org/0571cj070', 'en', 1, 'https://ror.org/0571cj070 Fresh Science'),
(41885, 'https://ror.org/00a0cz818', 'en', 1, 'https://ror.org/00a0cz818 Irish Institute of Clinical Neuroscience'),
(41886, 'https://ror.org/0411p0k29', 'en', 1, 'https://ror.org/0411p0k29 Australian Institute of Physics'),
(41887, 'https://ror.org/02ag9qs60', 'es', 1, 'https://ror.org/02ag9qs60 MPS España'),
(41888, 'https://ror.org/05ewcwb21', 'en', 1, 'https://ror.org/05ewcwb21 Pharmaceutical and Medical Device Regulatory Science Society of Japan 医薬品医療機器レギュラトリーサイエンス財団'),
(41889, 'https://ror.org/006cprg57', 'en', 1, 'https://ror.org/006cprg57 Central Board of Irrgation and Power'),
(41890, 'https://ror.org/00tf2g326', 'en', 1, 'https://ror.org/00tf2g326 Bolton Sixth Form College'),
(41891, 'https://ror.org/00hf72d13', 'en', 1, 'https://ror.org/00hf72d13 Boonton Public Schools'),
(41892, 'https://ror.org/050af1664', 'en', 1, 'https://ror.org/050af1664 Bossier Parish Community College'),
(41893, 'https://ror.org/01e0fj447', 'en', 1, 'https://ror.org/01e0fj447 Assumption College San Lorenzo'),
(41894, 'https://ror.org/04sj6d461', 'en', 1, 'https://ror.org/04sj6d461 Chatfield College'),
(41895, 'https://ror.org/050nwww65', 'en', 1, 'https://ror.org/050nwww65 Botswana Accountancy College'),
(41896, 'https://ror.org/02nxvmx58', 'en', 1, 'https://ror.org/02nxvmx58 Accrington and Rossendale College'),
(41897, 'https://ror.org/03jvv3z84', 'en', 1, 'https://ror.org/03jvv3z84 Bournville College'),
(41898, 'https://ror.org/03fm9h746', 'en', 1, 'https://ror.org/03fm9h746 Acsenda School of Management'),
(41899, 'https://ror.org/02t9ezy32', 'en', 1, 'https://ror.org/02t9ezy32 Bracknell and Wokingham College'),
(41900, 'https://ror.org/00n900q40', 'en', 1, 'https://ror.org/00n900q40 Bradford School - Pittsburgh'),
(41901, 'https://ror.org/02dja5009', 'en', 1, 'https://ror.org/02dja5009 Bradford School - Columbus'),
(41902, 'https://ror.org/01yqkbc31', 'en', 1, 'https://ror.org/01yqkbc31 Chetham''s School of Music'),
(41903, 'https://ror.org/04ze84192', 'en', 1, 'https://ror.org/04ze84192 Australian College of Physical Education'),
(41904, 'https://ror.org/01cb10c90', 'en', 1, 'https://ror.org/01cb10c90 Cheung Kong Graduate School of Business 长江商学院'),
(41905, 'https://ror.org/00hm0mb83', 'en', 1, 'https://ror.org/00hm0mb83 Bramson ORT College'),
(41906, 'https://ror.org/02ffzw118', 'en', 1, 'https://ror.org/02ffzw118 Columbia College - California'),
(41907, 'https://ror.org/0207c0t18', 'en', 1, 'https://ror.org/0207c0t18 Admas University'),
(41908, 'https://ror.org/04gqe5s96', 'en', 1, 'https://ror.org/04gqe5s96 Chichester College'),
(41909, 'https://ror.org/00vnat122', 'en', 1, 'https://ror.org/00vnat122 China Graduate School of Theology 中國神學研究院'),
(41910, 'https://ror.org/006jnja70', 'en', 1, 'https://ror.org/006jnja70 Utah College of Applied Technology'),
(41911, 'https://ror.org/02rrsh045', 'en', 1, 'https://ror.org/02rrsh045 Aichi Konan College 愛知江南短期大学'),
(41912, 'https://ror.org/03y6m2j03', 'en', 1, 'https://ror.org/03y6m2j03 China University of Technology 中國科技大學'),
(41913, 'https://ror.org/01spfrk28', 'en', 1, 'https://ror.org/01spfrk28 Columbia College Hollywood'),
(41914, 'https://ror.org/01y5kcv82', 'en', 1, 'https://ror.org/01y5kcv82 BridgeValley Community and Technical College'),
(41915, 'https://ror.org/01wk6zs95', 'en', 1, 'https://ror.org/01wk6zs95 Aiken Technical College'),
(41916, 'https://ror.org/01kaw2b03', 'en', 1, 'https://ror.org/01kaw2b03 Australian Defence College'),
(41917, 'https://ror.org/05m4h2z49', 'en', 1, 'https://ror.org/05m4h2z49 Columbus Technical College'),
(41918, 'https://ror.org/03bkgak51', 'en', 1, 'https://ror.org/03bkgak51 Christ the King Sixth Form College'),
(41919, 'https://ror.org/04hpwpk22', 'en', 1, 'https://ror.org/04hpwpk22 Albany Technical College'),
(41920, 'https://ror.org/01mv04x52', 'en', 1, 'https://ror.org/01mv04x52 British College of Osteopathic Medicine'),
(41921, 'https://ror.org/03q8sfx86', 'en', 1, 'https://ror.org/03q8sfx86 Comilla Medical College কুমিল্লা মেডিকেল কলেজ'),
(41922, 'https://ror.org/02kjxc710', 'en', 1, 'https://ror.org/02kjxc710 Aventis School of Management'),
(41923, 'https://ror.org/05tnja216', 'en', 1, 'https://ror.org/05tnja216 University College of Osteopathy'),
(41924, 'https://ror.org/03fe85378', 'en', 1, 'https://ror.org/03fe85378 Cincinnati College of Mortuary Science'),
(41925, 'https://ror.org/004sqv102', 'en', 1, 'https://ror.org/004sqv102 Bromley College of Further and Higher Education'),
(41926, 'https://ror.org/05tn82m22', 'en', 1, 'https://ror.org/05tn82m22 Community Care College'),
(41927, 'https://ror.org/00fj6he94', 'en', 1, 'https://ror.org/00fj6he94 Alberta Bible College'),
(41928, 'https://ror.org/0186tvr04', 'en', 1, 'https://ror.org/0186tvr04 Circle in the Square Theatre School'),
(41929, 'https://ror.org/05tg57g61', 'en', 1, 'https://ror.org/05tg57g61 Azrieli College of Engineering Jerusalem עזריאלי-המכללה להנדסה ירושלים'),
(41930, 'https://ror.org/03q8jhh94', 'en', 1, 'https://ror.org/03q8jhh94 Allen Community College'),
(41931, 'https://ror.org/03gc7jk79', 'en', 1, 'https://ror.org/03gc7jk79 Cisco College'),
(41932, 'https://ror.org/00hvga705', 'en', 1, 'https://ror.org/00hvga705 Baki Ali Neft Məktəbi Baku Higher Oil School'),
(41933, 'https://ror.org/01nna8315', 'en', 1, 'https://ror.org/01nna8315 Community College of Vermont'),
(41934, 'https://ror.org/03bmbn692', 'en', 1, 'https://ror.org/03bmbn692 Allentown High School'),
(41935, 'https://ror.org/0437gna76', 'en', 1, 'https://ror.org/0437gna76 Concordia College - New York'),
(41936, 'https://ror.org/00h90tg62', 'en', 1, 'https://ror.org/00h90tg62 City College'),
(41937, 'https://ror.org/019n4sb32', 'en', 1, 'https://ror.org/019n4sb32 Connors State College'),
(41938, 'https://ror.org/02hxmqn30', 'en', 1, 'https://ror.org/02hxmqn30 Civil Service College'),
(41939, 'https://ror.org/00fdhj025', 'en', 1, 'https://ror.org/00fdhj025 Bangladesh Air Force Shaheen College বিএএফ শাহীন কলেজ ঢাকা'),
(41940, 'https://ror.org/02dwq5n29', 'en', 1, 'https://ror.org/02dwq5n29 Alliance College of Australia'),
(41941, 'https://ror.org/04c49cg83', 'en', 1, 'https://ror.org/04c49cg83 Clarendon College'),
(41942, 'https://ror.org/0028fee73', 'en', 1, 'https://ror.org/0028fee73 Butler County Community College'),
(41943, 'https://ror.org/016x6xx47', 'en', 1, 'https://ror.org/016x6xx47 Baptist Theological College of Southern Africa'),
(41944, 'https://ror.org/037pjhv41', 'en', 1, 'https://ror.org/037pjhv41 Craven College'),
(41945, 'https://ror.org/04mw0df78', 'en', 1, 'https://ror.org/04mw0df78 North Carolina Community College System'),
(41946, 'https://ror.org/05mg7fy05', 'en', 1, 'https://ror.org/05mg7fy05 Coastal Pines Technical College'),
(41947, 'https://ror.org/00qf0n903', 'en', 1, 'https://ror.org/00qf0n903 Clinton College'),
(41948, 'https://ror.org/00hqa1k37', 'en', 1, 'https://ror.org/00hqa1k37 California Christian College'),
(41949, 'https://ror.org/008e3px62', 'en', 1, 'https://ror.org/008e3px62 Cloud County Community College'),
(41950, 'https://ror.org/03c2stx68', 'en', 1, 'https://ror.org/03c2stx68 American Career College'),
(41951, 'https://ror.org/05t99sp05', 'en', 1, 'https://ror.org/05t99sp05 California Coast University'),
(41952, 'https://ror.org/04fdz6f52', 'en', 1, 'https://ror.org/04fdz6f52 Crossroads Bible College'),
(41953, 'https://ror.org/00vvhe852', 'en', 1, 'https://ror.org/00vvhe852 California College San Diego'),
(41954, 'https://ror.org/058jtxa41', 'en', 1, 'https://ror.org/058jtxa41 Craven Community College'),
(41955, 'https://ror.org/05t365n53', 'en', 1, 'https://ror.org/05t365n53 American River College'),
(41956, 'https://ror.org/03ehswj04', 'en', 1, 'https://ror.org/03ehswj04 Barstow Community College'),
(41957, 'https://ror.org/01262d760', 'en', 1, 'https://ror.org/01262d760 CNI College'),
(41958, 'https://ror.org/02ffbv447', 'en', 1, 'https://ror.org/02ffbv447 Crowleys Ridge College'),
(41959, 'https://ror.org/04rhvbz32', 'en', 1, 'https://ror.org/04rhvbz32 California Community Colleges System'),
(41960, 'https://ror.org/046hkwj59', 'en', 1, 'https://ror.org/046hkwj59 Coastal Bend College'),
(41961, 'https://ror.org/04phxq043', 'en', 1, 'https://ror.org/04phxq043 California Miramar University'),
(41962, 'https://ror.org/010dzxm21', 'en', 1, 'https://ror.org/010dzxm21 Barton Peveril College'),
(41963, 'https://ror.org/01gtdbh44', 'en', 1, 'https://ror.org/01gtdbh44 Cuyamaca College'),
(41964, 'https://ror.org/02cb4m248', 'en', 1, 'https://ror.org/02cb4m248 Coastal Carolina Community College'),
(41965, 'https://ror.org/02zpajz15', 'en', 1, 'https://ror.org/02zpajz15 Bates Technical College'),
(41966, 'https://ror.org/02gc32c47', 'en', 1, 'https://ror.org/02gc32c47 New College Lanarkshire'),
(41967, 'https://ror.org/03h37fs39', 'en', 1, 'https://ror.org/03h37fs39 Daegu Future College 大邱未來大學 대구미래대학'),
(41968, 'https://ror.org/00pbyj886', 'en', 1, 'https://ror.org/00pbyj886 Bath College'),
(41969, 'https://ror.org/01qqm4q52', 'en', 1, 'https://ror.org/01qqm4q52 Cañada College'),
(41970, 'https://ror.org/024eshr84', 'en', 1, 'https://ror.org/024eshr84 Coffeyville Community College'),
(41971, 'https://ror.org/03jpef473', 'en', 1, 'https://ror.org/03jpef473 Canton City School District'),
(41972, 'https://ror.org/01ym21515', 'en', 1, 'https://ror.org/01ym21515 Darton State College'),
(41973, 'https://ror.org/01k7shx94', 'en', 1, 'https://ror.org/01k7shx94 Andrew College'),
(41974, 'https://ror.org/00rxf7n07', 'en', 1, 'https://ror.org/00rxf7n07 Korea Agency for Infrastructure Technology Advancement'),
(41975, 'https://ror.org/014319z45', 'en', 1, 'https://ror.org/014319z45 Cardinal Tien College of Healthcare and Management 耕莘健康管理專科學校'),
(41976, 'https://ror.org/02g553740', 'en', 1, 'https://ror.org/02g553740 Beal College'),
(41977, 'https://ror.org/00h9jch39', 'en', 1, 'https://ror.org/00h9jch39 Carey Baptist College'),
(41978, 'https://ror.org/00tr1bg48', 'en', 1, 'https://ror.org/00tr1bg48 College of Business and Technology'),
(41979, 'https://ror.org/0062gvn89', 'en', 1, 'https://ror.org/0062gvn89 Angliss International Hotel School'),
(41980, 'https://ror.org/03eabnp32', 'en', 1, 'https://ror.org/03eabnp32 Carl Albert State College'),
(41981, 'https://ror.org/04vkgh027', 'en', 1, 'https://ror.org/04vkgh027 Berk Trade and Business School'),
(41982, 'https://ror.org/02zfe4c02', 'en', 1, 'https://ror.org/02zfe4c02 Dundee and Angus College'),
(41983, 'https://ror.org/03j9n1e36', 'en', 1, 'https://ror.org/03j9n1e36 Davis College - Ohio'),
(41984, 'https://ror.org/009xxkc85', 'en', 1, 'https://ror.org/009xxkc85 Carrington College'),
(41985, 'https://ror.org/01pnp3p28', 'en', 1, 'https://ror.org/01pnp3p28 College of Coastal Georgia'),
(41986, 'https://ror.org/006hpkx89', 'en', 1, 'https://ror.org/006hpkx89 Daymar College'),
(41987, 'https://ror.org/05nfte436', 'no_lang_code', 1, 'https://ror.org/05nfte436 Bermuda College'),
(41988, 'https://ror.org/01cf8hm38', 'en', 1, 'https://ror.org/01cf8hm38 Anoka Technical College'),
(41989, 'https://ror.org/03zc86h29', 'en', 1, 'https://ror.org/03zc86h29 Carteret Community College'),
(41990, 'https://ror.org/05eybs418', 'en', 1, 'https://ror.org/05eybs418 Anoka-Ramsey Community College'),
(41991, 'https://ror.org/0247acz73', 'en', 1, 'https://ror.org/0247acz73 Cavendish University Zambia'),
(41992, 'https://ror.org/04bjq2e40', 'en', 1, 'https://ror.org/04bjq2e40 College of North West London'),
(41993, 'https://ror.org/02pz3nt69', 'en', 1, 'https://ror.org/02pz3nt69 Truman Bodden Law School'),
(41994, 'https://ror.org/04t5yz624', 'en', 1, 'https://ror.org/04t5yz624 Defense Information School'),
(41995, 'https://ror.org/05b11sy48', 'en', 1, 'https://ror.org/05b11sy48 Antonelli College'),
(41996, 'https://ror.org/03gbfvb23', 'en', 1, 'https://ror.org/03gbfvb23 Central Ohio Technical College'),
(41997, 'https://ror.org/01gwn6z70', 'en', 1, 'https://ror.org/01gwn6z70 College of San Mateo'),
(41998, 'https://ror.org/053c08c15', 'en', 1, 'https://ror.org/053c08c15 Bicton College'),
(41999, 'https://ror.org/02wk65538', 'en', 1, 'https://ror.org/02wk65538 Delaware College of Art and Design'),
(42000, 'https://ror.org/01z61p797', 'en', 1, 'https://ror.org/01z61p797 Big Bend Community College'),
(42001, 'https://ror.org/04x9k0k55', 'en', 1, 'https://ror.org/04x9k0k55 Aquinas College - Tennessee'),
(42002, 'https://ror.org/0129nkm21', 'en', 1, 'https://ror.org/0129nkm21 Big Sandy Community and Technical College'),
(42003, 'https://ror.org/04x22kg34', 'en', 1, 'https://ror.org/04x22kg34 Delbarton School'),
(42004, 'https://ror.org/03fpzah45', 'en', 1, 'https://ror.org/03fpzah45 College of Southern Nevada'),
(42005, 'https://ror.org/01j8znm98', 'en', 1, 'https://ror.org/01j8znm98 Arizona Christian University'),
(42006, 'https://ror.org/03jcx4790', 'en', 1, 'https://ror.org/03jcx4790 College of St. Joseph'),
(42007, 'https://ror.org/01scq3556', 'en', 1, 'https://ror.org/01scq3556 Denmark Technical College'),
(42008, 'https://ror.org/009w3qm52', 'en', 1, 'https://ror.org/009w3qm52 Bishop Burton College'),
(42009, 'https://ror.org/057xgt263', 'pt', 1, 'https://ror.org/057xgt263 Fundação de Tecnologia do Estado do Acre'),
(42010, 'https://ror.org/03qhht705', 'en', 1, 'https://ror.org/03qhht705 National Institute of Technology, Matsue College 松江工業高等専門学校'),
(42011, 'https://ror.org/00zh1bv32', 'en', 1, 'https://ror.org/00zh1bv32 DuBois Business College'),
(42012, 'https://ror.org/01shp5e75', 'en', 1, 'https://ror.org/01shp5e75 Black River Technical College'),
(42013, 'https://ror.org/040vj3n59', 'en', 1, 'https://ror.org/040vj3n59 Dunwoody College of Technology'),
(42014, 'https://ror.org/00pvcan36', 'en', 1, 'https://ror.org/00pvcan36 Arkansas Baptist College'),
(42015, 'https://ror.org/04d9y9m22', 'en', 1, 'https://ror.org/04d9y9m22 National Institute of Technology, Miyakonojo College 都城工業高等専門学校'),
(42016, 'https://ror.org/0215jzs21', 'en', 1, 'https://ror.org/0215jzs21 Arkansas State University Mountain Home'),
(42017, 'https://ror.org/037r51j35', 'en', 1, 'https://ror.org/037r51j35 Blue Ridge Community and Technical College'),
(42018, 'https://ror.org/04hs3y322', 'en', 1, 'https://ror.org/04hs3y322 Eagle Gate College'),
(42019, 'https://ror.org/02gn4kd94', 'en', 1, 'https://ror.org/02gn4kd94 National Institute of Technology, Numazu College 沼津高専'),
(42020, 'https://ror.org/0448r9386', 'en', 1, 'https://ror.org/0448r9386 Divine Word College'),
(42021, 'https://ror.org/04xrsnf23', 'en', 1, 'https://ror.org/04xrsnf23 Bolton College'),
(42022, 'https://ror.org/0583vk835', 'en', 1, 'https://ror.org/0583vk835 East Arkansas Community College'),
(42023, 'https://ror.org/03w2ae733', 'en', 1, 'https://ror.org/03w2ae733 Armed Forces Academies Preparatory School โรงเรียนเตรียมทหาร'),
(42024, 'https://ror.org/0415ygs14', 'en', 1, 'https://ror.org/0415ygs14 National Institute of Technology, Tomakomai College 苫小牧工業高等専門学校'),
(42025, 'https://ror.org/03em6r869', 'en', 1, 'https://ror.org/03em6r869 Armed Forces Medical College জ্ঞানই শক্তি,সেবাই ধর্ম'),
(42026, 'https://ror.org/04mnf7j68', 'en', 1, 'https://ror.org/04mnf7j68 Dongnam Health University 東南保健大學 동남보건대학'),
(42027, 'https://ror.org/02wn2b621', 'en', 1, 'https://ror.org/02wn2b621 College of the Resurrection'),
(42028, 'https://ror.org/039h3aa75', 'en', 1, 'https://ror.org/039h3aa75 ASA College'),
(42029, 'https://ror.org/03qa0dm98', 'en', 1, 'https://ror.org/03qa0dm98 East Central Community College'),
(42030, 'https://ror.org/00sfwx025', 'en', 1, 'https://ror.org/00sfwx025 Ashkelon Academic College המכללה האקדמית אשקלון'),
(42031, 'https://ror.org/02q0t9634', 'hi', 1, 'https://ror.org/02q0t9634 Chhattisgarh Kamdhenu Vishwavidyalaya छत्तीसगढ़ कामधेनु विश्वविद्यालय'),
(42032, 'https://ror.org/00ck0vh11', 'en', 1, 'https://ror.org/00ck0vh11 College of Westchester'),
(42033, 'https://ror.org/050p5ky47', 'en', 1, 'https://ror.org/050p5ky47 CollegeAmerica'),
(42034, 'https://ror.org/03fcyyh75', 'en', 1, 'https://ror.org/03fcyyh75 Eastern Arizona College'),
(42035, 'https://ror.org/01ft2as73', 'en', 1, 'https://ror.org/01ft2as73 Eastern Medical College and Hospital ইস্টার্ন মেডিকেল কলেজ'),
(42036, 'https://ror.org/035fw1666', 'en', 1, 'https://ror.org/035fw1666 Good Shepherd College'),
(42037, 'https://ror.org/034fab991', 'en', 1, 'https://ror.org/034fab991 Eastern West Virginia Community and Technical College'),
(42038, 'https://ror.org/00vzha967', 'en', 1, 'https://ror.org/00vzha967 Henderson Community College'),
(42039, 'https://ror.org/03ye76s02', 'en', 1, 'https://ror.org/03ye76s02 Eastern Wyoming College'),
(42040, 'https://ror.org/03wzvrw53', 'en', 1, 'https://ror.org/03wzvrw53 Feather River College'),
(42041, 'https://ror.org/04nje3391', 'en', 1, 'https://ror.org/04nje3391 Goodenough College'),
(42042, 'https://ror.org/00qbqm161', 'en', 1, 'https://ror.org/00qbqm161 International Business College - Fort Wayne'),
(42043, 'https://ror.org/01j1caa04', 'en', 1, 'https://ror.org/01j1caa04 Henley College'),
(42044, 'https://ror.org/00e3ms285', 'en', 1, 'https://ror.org/00e3ms285 Paterson Public Schools'),
(42045, 'https://ror.org/00m41wh60', 'en', 1, 'https://ror.org/00m41wh60 Hennepin Technical College'),
(42046, 'https://ror.org/03w077619', 'en', 1, 'https://ror.org/03w077619 Federal College of Fisheries and Marine Technology'),
(42047, 'https://ror.org/02fa80e12', 'en', 1, 'https://ror.org/02fa80e12 Eastwick College and the HoHoKus Schools'),
(42048, 'https://ror.org/0182rkr07', 'en', 1, 'https://ror.org/0182rkr07 Edison Community College'),
(42049, 'https://ror.org/0343ncx27', 'en', 1, 'https://ror.org/0343ncx27 Scottish School of Christian Mission'),
(42050, 'https://ror.org/02a3j1p21', 'en', 1, 'https://ror.org/02a3j1p21 Fisher College'),
(42051, 'https://ror.org/02yrcbg49', 'en', 1, 'https://ror.org/02yrcbg49 Government College for Women Anantnag گورنمنٹ کالج خواتین اننت ناگ'),
(42052, 'https://ror.org/037saaz25', 'en', 1, 'https://ror.org/037saaz25 Hibbing Community College'),
(42053, 'https://ror.org/013f0nb72', 'en', 1, 'https://ror.org/013f0nb72 Compton Community College District'),
(42054, 'https://ror.org/01bkbkc06', 'en', 1, 'https://ror.org/01bkbkc06 Hickey College'),
(42055, 'https://ror.org/02sj9qn07', 'en', 1, 'https://ror.org/02sj9qn07 Flint Hills Technical College'),
(42056, 'https://ror.org/02d1vh520', 'en', 1, 'https://ror.org/02d1vh520 Government College of Science'),
(42057, 'https://ror.org/0181xpd52', 'en', 1, 'https://ror.org/0181xpd52 International Graduate School of English 국제영어대학원대학교'),
(42058, 'https://ror.org/00x6zfm71', 'en', 1, 'https://ror.org/00x6zfm71 Florida Gateway College'),
(42059, 'https://ror.org/02ahpq120', 'en', 1, 'https://ror.org/02ahpq120 El Centro College'),
(42060, 'https://ror.org/01hssw521', 'en', 1, 'https://ror.org/01hssw521 International Islamic College الكلية لإسلامية العالمية'),
(42061, 'https://ror.org/04p2bt406', 'no_lang_code', 1, 'https://ror.org/04p2bt406 Maharaja Chhatrasal Bundelkhand University महाराजा छत्रसाल बुंदेलखंड विश्वविद्यालय'),
(42062, 'https://ror.org/021dwa633', 'en', 1, 'https://ror.org/021dwa633 Elizabethtown Community and Technical College'),
(42063, 'https://ror.org/04aa84x73', 'en', 1, 'https://ror.org/04aa84x73 National Institute of Technology, Hiroshima College 広島商船高等専門学校'),
(42064, 'https://ror.org/01d22jf15', 'en', 1, 'https://ror.org/01d22jf15 Ellsworth Community College'),
(42065, 'https://ror.org/00b2pbe02', 'en', 1, 'https://ror.org/00b2pbe02 Florida Keys Community College'),
(42066, 'https://ror.org/03jab8886', 'en', 1, 'https://ror.org/03jab8886 International School of Management'),
(42067, 'https://ror.org/00qp50z66', 'en', 1, 'https://ror.org/00qp50z66 Hiwassee College'),
(42068, 'https://ror.org/004kvr873', 'en', 1, 'https://ror.org/004kvr873 Emerson School District'),
(42069, 'https://ror.org/0084ktm65', 'en', 1, 'https://ror.org/0084ktm65 Fort Scott Community College'),
(42070, 'https://ror.org/02s28hw54', 'en', 1, 'https://ror.org/02s28hw54 Emily Griffith Technical College'),
(42071, 'https://ror.org/05axake65', 'en', 1, 'https://ror.org/05axake65 International Yacht Restoration School'),
(42072, 'https://ror.org/019x00e11', 'en', 1, 'https://ror.org/019x00e11 Emmanuel Bible College'),
(42073, 'https://ror.org/04f6gef75', 'en', 1, 'https://ror.org/04f6gef75 Government Medical College and Hospital'),
(42074, 'https://ror.org/02a503x19', 'en', 1, 'https://ror.org/02a503x19 Fox College'),
(42075, 'https://ror.org/02mabj369', 'en', 1, 'https://ror.org/02mabj369 Nurses'' Training College, Ho'),
(42076, 'https://ror.org/02qqa1p29', 'en', 1, 'https://ror.org/02qqa1p29 Emmanuel College - Georgia'),
(42077, 'https://ror.org/04gx27k56', 'en', 1, 'https://ror.org/04gx27k56 Iowa Western Community College'),
(42078, 'https://ror.org/01drfa298', 'en', 1, 'https://ror.org/01drfa298 Emmaus Bible College'),
(42079, 'https://ror.org/011xh8y77', 'en', 1, 'https://ror.org/011xh8y77 Government Vellore Medical College'),
(42080, 'https://ror.org/00jhy6397', 'en', 1, 'https://ror.org/00jhy6397 Empire College'),
(42081, 'https://ror.org/007ew5756', 'en', 1, 'https://ror.org/007ew5756 Irish Baptist College'),
(42082, 'https://ror.org/001hjc616', 'en', 1, 'https://ror.org/001hjc616 Venerable English College'),
(42083, 'https://ror.org/02d2b9s76', 'en', 1, 'https://ror.org/02d2b9s76 Holy Spirit High School'),
(42084, 'https://ror.org/04cas5j33', 'en', 1, 'https://ror.org/04cas5j33 Grace Bible College'),
(42085, 'https://ror.org/02fzvr850', 'en', 1, 'https://ror.org/02fzvr850 French School at Athens École française d’Athènes Γαλλική Σχολή Αθηνών'),
(42086, 'https://ror.org/02y5xdy12', 'en', 1, 'https://ror.org/02y5xdy12 Graduate School for the Creation of New Photonics Industries 光産業創成大学院大学'),
(42087, 'https://ror.org/05cy9p581', 'en', 1, 'https://ror.org/05cy9p581 Estrella Mountain Community College'),
(42088, 'https://ror.org/014w0p014', 'en', 1, 'https://ror.org/014w0p014 Hong Kong College of Technology 香港專業進修學校'),
(42089, 'https://ror.org/03njnhv57', 'en', 1, 'https://ror.org/03njnhv57 Etobicoke School of the Arts'),
(42090, 'https://ror.org/04040wx85', 'no_lang_code', 1, 'https://ror.org/04040wx85 Fukushima College 福島学院大学'),
(42091, 'https://ror.org/011srkg41', 'en', 1, 'https://ror.org/011srkg41 National Institute Of Technology, Ishikawa College 石川工業高等専門学校'),
(42092, 'https://ror.org/02ms60710', 'en', 1, 'https://ror.org/02ms60710 Fukuyama City University 福山市立大学'),
(42093, 'https://ror.org/01zc1f144', 'es', 1, 'https://ror.org/01zc1f144 Hospital Universitario Araba'),
(42094, 'https://ror.org/042k9q065', 'en', 1, 'https://ror.org/042k9q065 European Business School Paris'),
(42095, 'https://ror.org/015j7c446', 'en', 1, 'https://ror.org/015j7c446 Islamic Azad University of Najafabad دانشگاه آزاد اسلامی واحد نجفآباد'),
(42096, 'https://ror.org/00shj8q14', 'en', 1, 'https://ror.org/00shj8q14 European College of Business and Management'),
(42097, 'https://ror.org/02aafyx20', 'en', 1, 'https://ror.org/02aafyx20 Furness College'),
(42098, 'https://ror.org/0400m9h41', 'en', 1, 'https://ror.org/0400m9h41 Grays Harbor College'),
(42099, 'https://ror.org/00e477a69', 'en', 1, 'https://ror.org/00e477a69 Hsin Sheng College of Medical Care and Management 新生醫護管理專科學校'),
(42100, 'https://ror.org/03y13mg86', 'en', 1, 'https://ror.org/03y13mg86 Grayson College'),
(42101, 'https://ror.org/01zk54j03', 'en', 1, 'https://ror.org/01zk54j03 Evelyn Hone College'),
(42102, 'https://ror.org/00vh6ck95', 'en', 1, 'https://ror.org/00vh6ck95 J F Ingram State Technical College'),
(42103, 'https://ror.org/04ac17w60', 'en', 1, 'https://ror.org/04ac17w60 Garden City Community College'),
(42104, 'https://ror.org/04j06r887', 'en', 1, 'https://ror.org/04j06r887 Garrett College'),
(42105, 'https://ror.org/00srhem84', 'en', 1, 'https://ror.org/00srhem84 Hugh Wooding Law School'),
(42106, 'https://ror.org/03a9t7g49', 'en', 1, 'https://ror.org/03a9t7g49 Jacksonville College'),
(42107, 'https://ror.org/01nzgtr23', 'en', 1, 'https://ror.org/01nzgtr23 Grossmont College'),
(42108, 'https://ror.org/022f44628', 'en', 1, 'https://ror.org/022f44628 King''s College - North Carolina'),
(42109, 'https://ror.org/05b7jac82', 'en', 1, 'https://ror.org/05b7jac82 Hussian College'),
(42110, 'https://ror.org/037tw3m02', 'en', 1, 'https://ror.org/037tw3m02 Montpellier Business School École Supérieure de Commerce de Montpellier'),
(42111, 'https://ror.org/0511q3e85', 'en', 1, 'https://ror.org/0511q3e85 Gateway Community College'),
(42112, 'https://ror.org/037tapg39', 'en', 1, 'https://ror.org/037tapg39 Kingston College'),
(42113, 'https://ror.org/01z524369', 'en', 1, 'https://ror.org/01z524369 Jamestown Business College'),
(42114, 'https://ror.org/04d8byx33', 'en', 1, 'https://ror.org/04d8byx33 Georgia Highlands College'),
(42115, 'https://ror.org/058psnj96', 'en', 1, 'https://ror.org/058psnj96 Japanese Red Cross Hokkaido College of Nursing 日本赤十字北海道看護大学'),
(42116, 'https://ror.org/03sfs6n55', 'en', 1, 'https://ror.org/03sfs6n55 Klamath Community College'),
(42117, 'https://ror.org/02evmt624', 'en', 1, 'https://ror.org/02evmt624 Guntur Medical College'),
(42118, 'https://ror.org/05xwhfa95', 'en', 1, 'https://ror.org/05xwhfa95 Guyana School of Agriculture'),
(42119, 'https://ror.org/020h4j786', 'en', 1, 'https://ror.org/020h4j786 Kobe Women''s Junior College 神戸女子短期大学'),
(42120, 'https://ror.org/05sfx8f21', 'en', 1, 'https://ror.org/05sfx8f21 Georgia Northwestern Technical College'),
(42121, 'https://ror.org/01s3vfp47', 'en', 1, 'https://ror.org/01s3vfp47 Atlanta Technical College'),
(42122, 'https://ror.org/01f42aa94', 'en', 1, 'https://ror.org/01f42aa94 Koran Women''s Junior College 香蘭女子短期大学'),
(42123, 'https://ror.org/04mxf4066', 'en', 1, 'https://ror.org/04mxf4066 Gwinnett Technical College'),
(42124, 'https://ror.org/059esw871', 'en', 1, 'https://ror.org/059esw871 Augusta Technical College'),
(42125, 'https://ror.org/05remtc15', 'en', 1, 'https://ror.org/05remtc15 Georgia Piedmont Technical College'),
(42126, 'https://ror.org/04586n774', 'en', 1, 'https://ror.org/04586n774 Kunming Metallurgy College 昆明冶金高等专科学校'),
(42127, 'https://ror.org/040ykgb05', 'en', 1, 'https://ror.org/040ykgb05 Halifax Community College'),
(42128, 'https://ror.org/01bktqd02', 'en', 1, 'https://ror.org/01bktqd02 John A Gupton College'),
(42129, 'https://ror.org/05jysw312', 'en', 1, 'https://ror.org/05jysw312 Hamilton Technical College'),
(42130, 'https://ror.org/023fvqr32', 'en', 1, 'https://ror.org/023fvqr32 Immanuel Lutheran College'),
(42131, 'https://ror.org/04w0qkc46', 'en', 1, 'https://ror.org/04w0qkc46 Labette Community College'),
(42132, 'https://ror.org/04564ag58', 'en', 1, 'https://ror.org/04564ag58 Glen Oaks Community College'),
(42133, 'https://ror.org/03myaza48', 'en', 1, 'https://ror.org/03myaza48 Defence Academy of the United Kingdom'),
(42134, 'https://ror.org/0488f2s41', 'en', 1, 'https://ror.org/0488f2s41 Lakes College'),
(42135, 'https://ror.org/02r321f54', 'en', 1, 'https://ror.org/02r321f54 Lamar Community College'),
(42136, 'https://ror.org/01nsvzv47', 'en', 1, 'https://ror.org/01nsvzv47 Lamar State College–Port Arthur');
INSERT INTO `rors` VALUES
(42137, 'https://ror.org/0195rjn62', 'en', 1, 'https://ror.org/0195rjn62 Lambeth College'),
(42138, 'https://ror.org/030dn1w49', 'en', 1, 'https://ror.org/030dn1w49 Hartlepool College of Further Education'),
(42139, 'https://ror.org/01atycn06', 'no_lang_code', 1, 'https://ror.org/01atycn06 Infonet College'),
(42140, 'https://ror.org/02wtdws21', 'en', 1, 'https://ror.org/02wtdws21 Kagawa Junior College 香川短期大学'),
(42141, 'https://ror.org/05tc6tx51', 'en', 1, 'https://ror.org/05tc6tx51 Kagoshima Prefectural College 鹿児島県立短期大学'),
(42142, 'https://ror.org/02kxkqy32', 'en', 1, 'https://ror.org/02kxkqy32 Hawaii Community College'),
(42143, 'https://ror.org/00y0xzp63', 'en', 1, 'https://ror.org/00y0xzp63 Lassen Community College'),
(42144, 'https://ror.org/04n0t4871', 'en', 1, 'https://ror.org/04n0t4871 LDS Business College'),
(42145, 'https://ror.org/05njab859', 'en', 1, 'https://ror.org/05njab859 Mineral Area College'),
(42146, 'https://ror.org/048nw8b43', 'en', 1, 'https://ror.org/048nw8b43 Haywood Community College'),
(42147, 'https://ror.org/039mh4d88', 'en', 1, 'https://ror.org/039mh4d88 Madisonville Community College'),
(42148, 'https://ror.org/014fm3f82', 'en', 1, 'https://ror.org/014fm3f82 Kanawha County Schools'),
(42149, 'https://ror.org/00cpstt72', 'en', 1, 'https://ror.org/00cpstt72 Kanyakumari Government Medical College கன்னியாகுமரி அரசு மருத்துவக்கல்லூரி'),
(42150, 'https://ror.org/01pfpr664', 'en', 1, 'https://ror.org/01pfpr664 Le Cordon Bleu College of Culinary Arts The Blue Ribbon'),
(42151, 'https://ror.org/013rsnt52', 'en', 1, 'https://ror.org/013rsnt52 Hazard Community and Technical College'),
(42152, 'https://ror.org/01422c992', 'en', 1, 'https://ror.org/01422c992 Minnesota State College-Southeast Technical'),
(42153, 'https://ror.org/01fbwnx94', 'en', 1, 'https://ror.org/01fbwnx94 Minnesota West Community & Technical College'),
(42154, 'https://ror.org/02945ys85', 'en', 1, 'https://ror.org/02945ys85 Karachi School for Business and Leadership'),
(42155, 'https://ror.org/05cxb7m31', 'en', 1, 'https://ror.org/05cxb7m31 Heartland Baptist Bible College'),
(42156, 'https://ror.org/044weqf48', 'en', 1, 'https://ror.org/044weqf48 Dalubhasaang Miriam Miriam College'),
(42157, 'https://ror.org/032e4ps38', 'en', 1, 'https://ror.org/032e4ps38 Kathmandu College of Management'),
(42158, 'https://ror.org/01avf0w32', 'en', 1, 'https://ror.org/01avf0w32 Lenoir Community College'),
(42159, 'https://ror.org/01zmrev66', 'en', 1, 'https://ror.org/01zmrev66 Mississippi Delta Community College'),
(42160, 'https://ror.org/04k66wn67', 'en', 1, 'https://ror.org/04k66wn67 Leo Baeck College'),
(42161, 'https://ror.org/01c9nq002', 'en', 1, 'https://ror.org/01c9nq002 Missouri College'),
(42162, 'https://ror.org/011vtgm04', 'en', 1, 'https://ror.org/011vtgm04 Missouri State University–West Plains'),
(42163, 'https://ror.org/02pv2je48', 'en', 1, 'https://ror.org/02pv2je48 Queen of the Valley Medical Center'),
(42164, 'https://ror.org/03yk5sc72', 'en', 1, 'https://ror.org/03yk5sc72 Manhattan Area Technical College'),
(42165, 'https://ror.org/04nvfwd22', 'en', 1, 'https://ror.org/04nvfwd22 LIM College'),
(42166, 'https://ror.org/02e71t779', 'no_lang_code', 1, 'https://ror.org/02e71t779 Osaka Chiyoda Junior College 大阪千代田短期大学'),
(42167, 'https://ror.org/00awpt414', 'en', 1, 'https://ror.org/00awpt414 Mitchell Community College'),
(42168, 'https://ror.org/05rmmzm29', 'en', 1, 'https://ror.org/05rmmzm29 Marion Technical College'),
(42169, 'https://ror.org/014tm6y52', 'en', 1, 'https://ror.org/014tm6y52 Osaka Jonan Womens Junior College 大阪城南女子短期大学'),
(42170, 'https://ror.org/04608tw18', 'en', 1, 'https://ror.org/04608tw18 Lincoln College of New England'),
(42171, 'https://ror.org/01bf51295', 'en', 1, 'https://ror.org/01bf51295 Martin College'),
(42172, 'https://ror.org/03vemr371', 'en', 1, 'https://ror.org/03vemr371 Modesto Junior College'),
(42173, 'https://ror.org/003cmjc53', 'en', 1, 'https://ror.org/003cmjc53 Nipawin Bible College'),
(42174, 'https://ror.org/00ef10m46', 'en', 1, 'https://ror.org/00ef10m46 Lincoln University - California'),
(42175, 'https://ror.org/05cz6d336', 'no_lang_code', 1, 'https://ror.org/05cz6d336 Otemae College 大手前短期大学'),
(42176, 'https://ror.org/027wk9464', 'en', 1, 'https://ror.org/027wk9464 Little Priest Tribal College'),
(42177, 'https://ror.org/00ec74h89', 'en', 1, 'https://ror.org/00ec74h89 Mater Dei High School'),
(42178, 'https://ror.org/04b4b5885', 'no_lang_code', 1, 'https://ror.org/04b4b5885 Moneague College'),
(42179, 'https://ror.org/02svqj611', 'en', 1, 'https://ror.org/02svqj611 London School of Business and Finance'),
(42180, 'https://ror.org/01tx99335', 'en', 1, 'https://ror.org/01tx99335 Maysville Community and Technical College'),
(42181, 'https://ror.org/00c27rz48', 'en', 1, 'https://ror.org/00c27rz48 London School of Commerce'),
(42182, 'https://ror.org/01pe8g251', 'en', 1, 'https://ror.org/01pe8g251 North Bennet Street School'),
(42183, 'https://ror.org/00dv5qk90', 'en', 1, 'https://ror.org/00dv5qk90 Morristown High School'),
(42184, 'https://ror.org/05egk1864', 'en', 1, 'https://ror.org/05egk1864 North Central Michigan College'),
(42185, 'https://ror.org/05mm5nv75', 'en', 1, 'https://ror.org/05mm5nv75 Ozarka College'),
(42186, 'https://ror.org/01ysc1e93', 'en', 1, 'https://ror.org/01ysc1e93 Lower Columbia College'),
(42187, 'https://ror.org/03163vt79', 'en', 1, 'https://ror.org/03163vt79 Moultrie Technical College'),
(42188, 'https://ror.org/05kdkdw55', 'en', 1, 'https://ror.org/05kdkdw55 Melbourne School of Theology'),
(42189, 'https://ror.org/05qendg40', 'en', 1, 'https://ror.org/05qendg40 Queensland Theological College'),
(42190, 'https://ror.org/05sgnj165', 'en', 1, 'https://ror.org/05sgnj165 Palo Alto College'),
(42191, 'https://ror.org/01e75de70', 'en', 1, 'https://ror.org/01e75de70 Raffles College of Design and Commerce'),
(42192, 'https://ror.org/00m9b5484', 'en', 1, 'https://ror.org/00m9b5484 Mountain Lakes High School'),
(42193, 'https://ror.org/05kwakw98', 'en', 1, 'https://ror.org/05kwakw98 Rainy River Community College'),
(42194, 'https://ror.org/042bcp892', 'en', 1, 'https://ror.org/042bcp892 MTI College'),
(42195, 'https://ror.org/031xz8a15', 'en', 1, 'https://ror.org/031xz8a15 West New York School District'),
(42196, 'https://ror.org/008evvy56', 'en', 1, 'https://ror.org/008evvy56 Paris Junior College'),
(42197, 'https://ror.org/04s5ed403', 'en', 1, 'https://ror.org/04s5ed403 Randolph Township Schools'),
(42198, 'https://ror.org/01zb3pc28', 'en', 1, 'https://ror.org/01zb3pc28 North Kent College'),
(42199, 'https://ror.org/056yn4g37', 'en', 1, 'https://ror.org/056yn4g37 Ranger College'),
(42200, 'https://ror.org/0026drc14', 'en', 1, 'https://ror.org/0026drc14 Mendocino College'),
(42201, 'https://ror.org/03thf4080', 'en', 1, 'https://ror.org/03thf4080 Ranney School'),
(42202, 'https://ror.org/03etbcx90', 'en', 1, 'https://ror.org/03etbcx90 Pasco–Hernando State College'),
(42203, 'https://ror.org/03afrdr97', 'en', 1, 'https://ror.org/03afrdr97 Mesalands Community College'),
(42204, 'https://ror.org/017qk3p19', 'en', 1, 'https://ror.org/017qk3p19 Redcliffe College'),
(42205, 'https://ror.org/04bd4jp27', 'en', 1, 'https://ror.org/04bd4jp27 Redlands Community College'),
(42206, 'https://ror.org/002kf8b88', 'en', 1, 'https://ror.org/002kf8b88 Paul D. Camp Community College'),
(42207, 'https://ror.org/03w7tfy68', 'en', 1, 'https://ror.org/03w7tfy68 Reformed Theological College'),
(42208, 'https://ror.org/02bdat184', 'en', 1, 'https://ror.org/02bdat184 Metropolitan Community College - Kansas City'),
(42209, 'https://ror.org/015tw5088', 'en', 1, 'https://ror.org/015tw5088 Regents Theological College'),
(42210, 'https://ror.org/04qk6hk13', 'en', 1, 'https://ror.org/04qk6hk13 North Warwickshire and Hinckley College'),
(42211, 'https://ror.org/00zhf6p05', 'en', 1, 'https://ror.org/00zhf6p05 Reid State Technical College'),
(42212, 'https://ror.org/024zd0r19', 'en', 1, 'https://ror.org/024zd0r19 Miami Ad School'),
(42213, 'https://ror.org/0403qeq92', 'en', 1, 'https://ror.org/0403qeq92 Pearl River Community College'),
(42214, 'https://ror.org/03sz2k744', 'en', 1, 'https://ror.org/03sz2k744 National Law University, Delhi'),
(42215, 'https://ror.org/03c174j31', 'en', 1, 'https://ror.org/03c174j31 Michigan School of Professional Psychology'),
(42216, 'https://ror.org/02vvfyx50', 'en', 1, 'https://ror.org/02vvfyx50 Rich Mountain Community College'),
(42217, 'https://ror.org/02gdmq314', 'en', 1, 'https://ror.org/02gdmq314 Ridley College'),
(42218, 'https://ror.org/03f3r3r28', 'en', 1, 'https://ror.org/03f3r3r28 Mid Michigan Community College'),
(42219, 'https://ror.org/03e8e5846', 'en', 1, 'https://ror.org/03e8e5846 Rio Salado College'),
(42220, 'https://ror.org/0525aen51', 'en', 1, 'https://ror.org/0525aen51 National Park College'),
(42221, 'https://ror.org/009p87514', 'en', 1, 'https://ror.org/009p87514 Mid-Atlantic Christian University'),
(42222, 'https://ror.org/03enn8902', 'en', 1, 'https://ror.org/03enn8902 Northeast Mississippi Community College'),
(42223, 'https://ror.org/00ybkrr33', 'en', 1, 'https://ror.org/00ybkrr33 Ripon College Cuddesdon'),
(42224, 'https://ror.org/00xp6a578', 'en', 1, 'https://ror.org/00xp6a578 Northeastern Junior College'),
(42225, 'https://ror.org/01qgfpv05', 'en', 1, 'https://ror.org/01qgfpv05 Pennsylvania Highlands Community College'),
(42226, 'https://ror.org/02gdp5e27', 'en', 1, 'https://ror.org/02gdp5e27 Joseph Rowntree Charitable Trust'),
(42227, 'https://ror.org/05xtmhv34', 'en', 1, 'https://ror.org/05xtmhv34 National School of Leadership'),
(42228, 'https://ror.org/01g39s097', 'en', 1, 'https://ror.org/01g39s097 River Parishes Community College'),
(42229, 'https://ror.org/055j5q029', 'en', 1, 'https://ror.org/055j5q029 Midwives College of Utah'),
(42230, 'https://ror.org/051kxxw69', 'en', 1, 'https://ror.org/051kxxw69 Pensacola State College'),
(42231, 'https://ror.org/041kv9d24', 'en', 1, 'https://ror.org/041kv9d24 Miles Community College'),
(42232, 'https://ror.org/03x6axv89', 'en', 1, 'https://ror.org/03x6axv89 Riverside City College'),
(42233, 'https://ror.org/01fazs130', 'en', 1, 'https://ror.org/01fazs130 Millar College of the Bible'),
(42234, 'https://ror.org/01v7zwf98', 'en', 1, 'https://ror.org/01v7zwf98 National Tainan Institute of Nursing 國立臺南護理專科學校'),
(42235, 'https://ror.org/02zzvms95', 'en', 1, 'https://ror.org/02zzvms95 Northern Lakes College'),
(42236, 'https://ror.org/013r05090', 'en', 1, 'https://ror.org/013r05090 Riverside College'),
(42237, 'https://ror.org/03e29r284', 'en', 1, 'https://ror.org/03e29r284 National Taipei University 國立臺北大學'),
(42238, 'https://ror.org/00pctvz49', 'en', 1, 'https://ror.org/00pctvz49 Miller College'),
(42239, 'https://ror.org/05ka3vy68', 'en', 1, 'https://ror.org/05ka3vy68 Roberto-Venn School of Luthiery'),
(42240, 'https://ror.org/013hjj010', 'en', 1, 'https://ror.org/013hjj010 Phillips Community College of the University of Arkansas'),
(42241, 'https://ror.org/004ms0k06', 'en', 1, 'https://ror.org/004ms0k06 Northern Oklahoma College'),
(42242, 'https://ror.org/0158z1f36', 'en', 1, 'https://ror.org/0158z1f36 Pierce College'),
(42243, 'https://ror.org/0263c5456', 'no_lang_code', 1, 'https://ror.org/0263c5456 Saniku Gakuin College 三育学院大学'),
(42244, 'https://ror.org/0555c8894', 'en', 1, 'https://ror.org/0555c8894 Rocky Mountain College'),
(42245, 'https://ror.org/05b5ahr77', 'en', 1, 'https://ror.org/05b5ahr77 Pine Technical and Community College'),
(42246, 'https://ror.org/04d5ffq02', 'en', 1, 'https://ror.org/04d5ffq02 Pingry School'),
(42247, 'https://ror.org/05bxwd659', 'en', 1, 'https://ror.org/05bxwd659 Rome International School'),
(42248, 'https://ror.org/00xx4s907', 'en', 1, 'https://ror.org/00xx4s907 Sarum College'),
(42249, 'https://ror.org/049s3yd39', 'en', 1, 'https://ror.org/049s3yd39 Native American Bible College'),
(42250, 'https://ror.org/026s2hr03', 'en', 1, 'https://ror.org/026s2hr03 Pioneer Pacific College'),
(42251, 'https://ror.org/04819nb17', 'no_lang_code', 1, 'https://ror.org/04819nb17 Satriwitthaya 2 School โรงเรียนสตรีวิทยา 2 ในพระราชูปถัมภ์สมเด็จพระศรีนครินทราบรมราชชนนี'),
(42252, 'https://ror.org/04pf8en64', 'en', 1, 'https://ror.org/04pf8en64 Rosedale Bible College'),
(42253, 'https://ror.org/02r0rw765', 'en', 1, 'https://ror.org/02r0rw765 Sault College'),
(42254, 'https://ror.org/04r4z2512', 'en', 1, 'https://ror.org/04r4z2512 Northwest Iowa Community College'),
(42255, 'https://ror.org/01g0pjd14', 'en', 1, 'https://ror.org/01g0pjd14 Royal Air Force College Cranwell'),
(42256, 'https://ror.org/047bx2p96', 'en', 1, 'https://ror.org/047bx2p96 Neath Port Talbot College'),
(42257, 'https://ror.org/05npcpv02', 'en', 1, 'https://ror.org/05npcpv02 School of Advertising Art'),
(42258, 'https://ror.org/03taxx854', 'en', 1, 'https://ror.org/03taxx854 Northwest Technical College'),
(42259, 'https://ror.org/03wp7b065', 'en', 1, 'https://ror.org/03wp7b065 Neighborhood Playhouse School of the Theatre'),
(42260, 'https://ror.org/015b60b88', 'en', 1, 'https://ror.org/015b60b88 Porterville College'),
(42261, 'https://ror.org/008s6wa39', 'en', 1, 'https://ror.org/008s6wa39 Neosho County Community College'),
(42262, 'https://ror.org/051sxdw86', 'en', 1, 'https://ror.org/051sxdw86 Royal Drawing School'),
(42263, 'https://ror.org/05e8kce13', 'en', 1, 'https://ror.org/05e8kce13 Presbyterian Theological College'),
(42264, 'https://ror.org/003wb2x77', 'en', 1, 'https://ror.org/003wb2x77 Northeast Lakeview College'),
(42265, 'https://ror.org/02mr7vz40', 'en', 1, 'https://ror.org/02mr7vz40 Northwestern Oklahoma State University'),
(42266, 'https://ror.org/00y3pb435', 'en', 1, 'https://ror.org/00y3pb435 Provo College'),
(42267, 'https://ror.org/05wn69s11', 'en', 1, 'https://ror.org/05wn69s11 Northwestern Polytechnic University'),
(42268, 'https://ror.org/04mqwrw94', 'en', 1, 'https://ror.org/04mqwrw94 New England Bible College'),
(42269, 'https://ror.org/05b2mj890', 'en', 1, 'https://ror.org/05b2mj890 Scott Community College'),
(42270, 'https://ror.org/016q7rz35', 'en', 1, 'https://ror.org/016q7rz35 Notre Dame High School'),
(42271, 'https://ror.org/011na1r14', 'en', 1, 'https://ror.org/011na1r14 New England School of Photography'),
(42272, 'https://ror.org/01myxx963', 'en', 1, 'https://ror.org/01myxx963 Sacramento City College'),
(42273, 'https://ror.org/05y6zxn94', 'en', 1, 'https://ror.org/05y6zxn94 New Mexico Junior College'),
(42274, 'https://ror.org/01048jt31', 'en', 1, 'https://ror.org/01048jt31 Seacoast Career Schools'),
(42275, 'https://ror.org/02gvasz77', 'en', 1, 'https://ror.org/02gvasz77 South Georgia Technical College'),
(42276, 'https://ror.org/02vmd6f14', 'en', 1, 'https://ror.org/02vmd6f14 Saint John''s School'),
(42277, 'https://ror.org/03ew7wh25', 'en', 1, 'https://ror.org/03ew7wh25 Seevic College'),
(42278, 'https://ror.org/00agvd592', 'en', 1, 'https://ror.org/00agvd592 Salem Community College'),
(42279, 'https://ror.org/03d4eey82', 'en', 1, 'https://ror.org/03d4eey82 South Louisiana Community College'),
(42280, 'https://ror.org/00br84389', 'en', 1, 'https://ror.org/00br84389 Salter School'),
(42281, 'https://ror.org/04kxhvh23', 'en', 1, 'https://ror.org/04kxhvh23 Oconee Fall Line Technical College'),
(42282, 'https://ror.org/01t0hvx23', 'en', 1, 'https://ror.org/01t0hvx23 Stanly Community College'),
(42283, 'https://ror.org/0045vmg65', 'no_lang_code', 1, 'https://ror.org/0045vmg65 Seiwa Gakuen College 聖和学園短期大学'),
(42284, 'https://ror.org/01vja6y50', 'en', 1, 'https://ror.org/01vja6y50 South Mountain Community College'),
(42285, 'https://ror.org/01dhkk736', 'en', 1, 'https://ror.org/01dhkk736 Ogden–Weber Applied Technology College'),
(42286, 'https://ror.org/01cy4tw26', 'en', 1, 'https://ror.org/01cy4tw26 South Orange County Community College District'),
(42287, 'https://ror.org/05kb3r694', 'en', 1, 'https://ror.org/05kb3r694 Stanmore College'),
(42288, 'https://ror.org/02fs6pb13', 'en', 1, 'https://ror.org/02fs6pb13 South Piedmont Community College'),
(42289, 'https://ror.org/046j50r07', 'en', 1, 'https://ror.org/046j50r07 San Bernardino Community College District'),
(42290, 'https://ror.org/04rkf8c04', 'en', 1, 'https://ror.org/04rkf8c04 San Joaquin Valley College'),
(42291, 'https://ror.org/033nebn40', 'en', 1, 'https://ror.org/033nebn40 Lenape Regional High School District'),
(42292, 'https://ror.org/04f00y561', 'en', 1, 'https://ror.org/04f00y561 Seton Hall Preparatory School'),
(42293, 'https://ror.org/02bmrs815', 'en', 1, 'https://ror.org/02bmrs815 South Seattle College'),
(42294, 'https://ror.org/000gkvw58', 'en', 1, 'https://ror.org/000gkvw58 Steinbach Bible College'),
(42295, 'https://ror.org/03038ad20', 'en', 1, 'https://ror.org/03038ad20 South Texas College'),
(42296, 'https://ror.org/02zndy744', 'en', 1, 'https://ror.org/02zndy744 Ohio Business College'),
(42297, 'https://ror.org/05t6em937', 'en', 1, 'https://ror.org/05t6em937 Three Rivers College'),
(42298, 'https://ror.org/01961aj60', 'en', 1, 'https://ror.org/01961aj60 Stella Mann College of Performing Arts'),
(42299, 'https://ror.org/02rey2c02', 'en', 1, 'https://ror.org/02rey2c02 Sterling College - Kansas'),
(42300, 'https://ror.org/01ad74h27', 'en', 1, 'https://ror.org/01ad74h27 Tillamook Bay Community College'),
(42301, 'https://ror.org/0522dg826', 'en', 1, 'https://ror.org/0522dg826 Shanxi University of Traditional Chinese Medicine 山西中医学院'),
(42302, 'https://ror.org/04yyexg79', 'en', 1, 'https://ror.org/04yyexg79 Southcentral Kentucky Community and Technical College'),
(42303, 'https://ror.org/01c4srk95', 'no_lang_code', 1, 'https://ror.org/01c4srk95 Tirunelveli Medical College திருநெல்வேலி மருத்துவக்கல்லூரி'),
(42304, 'https://ror.org/026mf8794', 'en', 1, 'https://ror.org/026mf8794 Sterling High School'),
(42305, 'https://ror.org/03hr48p12', 'en', 1, 'https://ror.org/03hr48p12 Tohono O''odham Community College'),
(42306, 'https://ror.org/04t4ty441', 'en', 1, 'https://ror.org/04t4ty441 Southeast Kentucky Community and Technical College'),
(42307, 'https://ror.org/048x0xw34', 'en', 1, 'https://ror.org/048x0xw34 Toronto Baptist Seminary and Bible College'),
(42308, 'https://ror.org/050ggte33', 'en', 1, 'https://ror.org/050ggte33 Stockholm School of Economics in Russia Стокгольмская школа экономики в России'),
(42309, 'https://ror.org/02f5k2623', 'en', 1, 'https://ror.org/02f5k2623 Southeastern Baptist College'),
(42310, 'https://ror.org/049ref070', 'en', 1, 'https://ror.org/049ref070 Southeastern Technical College'),
(42311, 'https://ror.org/045zgf584', 'en', 1, 'https://ror.org/045zgf584 Oklahoma State University at Tulsa'),
(42312, 'https://ror.org/01vq5dj09', 'en', 1, 'https://ror.org/01vq5dj09 Shrewsbury College'),
(42313, 'https://ror.org/03be58a36', 'en', 1, 'https://ror.org/03be58a36 Southern Arkansas University Tech'),
(42314, 'https://ror.org/0302gfc36', 'en', 1, 'https://ror.org/0302gfc36 Southern Crescent Technical College'),
(42315, 'https://ror.org/01aywcp58', 'en', 1, 'https://ror.org/01aywcp58 Southern Maine Community College'),
(42316, 'https://ror.org/00fdnsr88', 'en', 1, 'https://ror.org/00fdnsr88 Strayer University'),
(42317, 'https://ror.org/058pt1w78', 'en', 1, 'https://ror.org/058pt1w78 Siddhartha Medical College'),
(42318, 'https://ror.org/020kb9915', 'en', 1, 'https://ror.org/020kb9915 Southern Regional Technical College'),
(42319, 'https://ror.org/05sqdn872', 'en', 1, 'https://ror.org/05sqdn872 Strode College'),
(42320, 'https://ror.org/055afmj54', 'en', 1, 'https://ror.org/055afmj54 Trinidad State Junior College'),
(42321, 'https://ror.org/01b0j0m34', 'en', 1, 'https://ror.org/01b0j0m34 Southern States University'),
(42322, 'https://ror.org/04yhxmc54', 'en', 1, 'https://ror.org/04yhxmc54 Southern Union State Community College'),
(42323, 'https://ror.org/01pxzvy69', 'en', 1, 'https://ror.org/01pxzvy69 Orangeburg–Calhoun Technical College'),
(42324, 'https://ror.org/03a7v0208', 'en', 1, 'https://ror.org/03a7v0208 Southern Virginia University'),
(42325, 'https://ror.org/05mk08g75', 'en', 1, 'https://ror.org/05mk08g75 Sir John Deane''s College'),
(42326, 'https://ror.org/02nm6nb22', 'en', 1, 'https://ror.org/02nm6nb22 Sullivan College of Technology and Design'),
(42327, 'https://ror.org/01cyqzg93', 'en', 1, 'https://ror.org/01cyqzg93 Southern West Virginia Community and Technical College'),
(42328, 'https://ror.org/01z1rpp33', 'en', 1, 'https://ror.org/01z1rpp33 SKANS School of Accountancy'),
(42329, 'https://ror.org/05h4smh31', 'en', 1, 'https://ror.org/05h4smh31 Summit Christian College'),
(42330, 'https://ror.org/04wz0k923', 'en', 1, 'https://ror.org/04wz0k923 Trinity Theological College 三一神学院'),
(42331, 'https://ror.org/04z9fas77', 'en', 1, 'https://ror.org/04z9fas77 Skolkovo Moscow School of Management Московская школа управления Сколково'),
(42332, 'https://ror.org/05v556078', 'en', 1, 'https://ror.org/05v556078 Southside Virginia Community College'),
(42333, 'https://ror.org/0371xpz28', 'en', 1, 'https://ror.org/0371xpz28 Trinity Theological College'),
(42334, 'https://ror.org/00hh4c656', 'en', 1, 'https://ror.org/00hh4c656 Southwest Mississippi Community College'),
(42335, 'https://ror.org/0584ana26', 'en', 1, 'https://ror.org/0584ana26 Summit Public Schools'),
(42336, 'https://ror.org/00vhmxj78', 'en', 1, 'https://ror.org/00vhmxj78 Trocaire College'),
(42337, 'https://ror.org/05nw06c68', 'en', 1, 'https://ror.org/05nw06c68 Snead State Community College'),
(42338, 'https://ror.org/03njb3j41', 'en', 1, 'https://ror.org/03njb3j41 Southwestern College - New Mexico'),
(42339, 'https://ror.org/00twbjb24', 'en', 1, 'https://ror.org/00twbjb24 Sowela Technical Community College'),
(42340, 'https://ror.org/03mcws937', 'en', 1, 'https://ror.org/03mcws937 University of Arkansas Community College at Hope'),
(42341, 'https://ror.org/04mg21y19', 'en', 1, 'https://ror.org/04mg21y19 Tyler Junior College'),
(42342, 'https://ror.org/002m0wj49', 'en', 1, 'https://ror.org/002m0wj49 Spartan College of Aeronautics and Technology'),
(42343, 'https://ror.org/03jqk9681', 'en', 1, 'https://ror.org/03jqk9681 Spartanburg Community College'),
(42344, 'https://ror.org/01dzc7q23', 'en', 1, 'https://ror.org/01dzc7q23 Somerset Community College'),
(42345, 'https://ror.org/01vpg0r82', 'en', 1, 'https://ror.org/01vpg0r82 Uintah Basin Applied Technology College'),
(42346, 'https://ror.org/02fd5ff90', 'en', 1, 'https://ror.org/02fd5ff90 Specs Howard School of Media Arts'),
(42347, 'https://ror.org/01mat8t76', 'en', 1, 'https://ror.org/01mat8t76 Tainan Theological College and Seminary 台南神學院'),
(42348, 'https://ror.org/003chwa70', 'en', 1, 'https://ror.org/003chwa70 South and City College Birmingham'),
(42349, 'https://ror.org/02tec3785', 'en', 1, 'https://ror.org/02tec3785 Ulsan College 울산과학대학교'),
(42350, 'https://ror.org/058er5w71', 'en', 1, 'https://ror.org/058er5w71 Spurgeons College'),
(42351, 'https://ror.org/037yxaz30', 'en', 1, 'https://ror.org/037yxaz30 South Central College'),
(42352, 'https://ror.org/01184z192', 'en', 1, 'https://ror.org/01184z192 University of Dental Medicine at Mandalay'),
(42353, 'https://ror.org/01h10d932', 'en', 1, 'https://ror.org/01h10d932 Union Catholic Regional High School'),
(42354, 'https://ror.org/03er7bd95', 'en', 1, 'https://ror.org/03er7bd95 Taylor College and Seminary'),
(42355, 'https://ror.org/04n6a5g54', 'en', 1, 'https://ror.org/04n6a5g54 South Coast College'),
(42356, 'https://ror.org/01qw4gv04', 'en', 1, 'https://ror.org/01qw4gv04 Sri Lanka Law College'),
(42357, 'https://ror.org/0465ncg47', 'en', 1, 'https://ror.org/0465ncg47 South Country Central School District'),
(42358, 'https://ror.org/02mvc1a11', 'en', 1, 'https://ror.org/02mvc1a11 TCA College'),
(42359, 'https://ror.org/0064w0326', 'en', 1, 'https://ror.org/0064w0326 TCI College of Technology'),
(42360, 'https://ror.org/002e14v94', 'en', 1, 'https://ror.org/002e14v94 Union Theological College'),
(42361, 'https://ror.org/03w6f4808', 'en', 1, 'https://ror.org/03w6f4808 Technical College of the Lowcountry'),
(42362, 'https://ror.org/05g5fwv52', 'en', 1, 'https://ror.org/05g5fwv52 North Carolina Exploring Cultural Heritage Online'),
(42363, 'https://ror.org/04zzmzt85', 'en', 1, 'https://ror.org/04zzmzt85 Temple University Ambler'),
(42364, 'https://ror.org/0306bn619', 'en', 1, 'https://ror.org/0306bn619 South Downs College'),
(42365, 'https://ror.org/038ta1n82', 'en', 1, 'https://ror.org/038ta1n82 South Essex College'),
(42366, 'https://ror.org/02ase7r14', 'en', 1, 'https://ror.org/02ase7r14 St Anthonys Senior Secondary School'),
(42367, 'https://ror.org/04m63t111', 'en', 1, 'https://ror.org/04m63t111 Tennessee College of Applied Technology'),
(42368, 'https://ror.org/05ta7wm04', 'en', 1, 'https://ror.org/05ta7wm04 South Florida State College'),
(42369, 'https://ror.org/05jwx8118', 'en', 1, 'https://ror.org/05jwx8118 Tennessee College of Applied Technology - Pulaski'),
(42370, 'https://ror.org/05s1k4z57', 'en', 1, 'https://ror.org/05s1k4z57 South Georgia State College'),
(42371, 'https://ror.org/02gbq8p27', 'en', 1, 'https://ror.org/02gbq8p27 University College of Estate Management'),
(42372, 'https://ror.org/02x2gpf88', 'en', 1, 'https://ror.org/02x2gpf88 University of Northwestern Ohio'),
(42373, 'https://ror.org/01bfgxb60', 'en', 1, 'https://ror.org/01bfgxb60 St Johns River State College'),
(42374, 'https://ror.org/01sygwk11', 'en', 1, 'https://ror.org/01sygwk11 Tennessee College of Applied Technology - Shelbyville'),
(42375, 'https://ror.org/00ydy7x73', 'en', 1, 'https://ror.org/00ydy7x73 University of the Southwest'),
(42376, 'https://ror.org/04b0jpj80', 'en', 1, 'https://ror.org/04b0jpj80 Texarkana College'),
(42377, 'https://ror.org/00sqv6z18', 'en', 1, 'https://ror.org/00sqv6z18 Virginia College'),
(42378, 'https://ror.org/01frp7483', 'no_lang_code', 1, 'https://ror.org/01frp7483 Weifang University 潍坊学院'),
(42379, 'https://ror.org/02yec8h85', 'en', 1, 'https://ror.org/02yec8h85 Urban College of Boston'),
(42380, 'https://ror.org/02txa2075', 'en', 1, 'https://ror.org/02txa2075 Vision West Nottinghamshire College'),
(42381, 'https://ror.org/045sx7862', 'en', 1, 'https://ror.org/045sx7862 Wentworth Military Academy and College'),
(42382, 'https://ror.org/03awsbx38', 'en', 1, 'https://ror.org/03awsbx38 Thaddeus Stevens College of Technology'),
(42383, 'https://ror.org/055x7ey06', 'en', 1, 'https://ror.org/055x7ey06 Wabash Valley College'),
(42384, 'https://ror.org/04rvw0k47', 'en', 1, 'https://ror.org/04rvw0k47 University of Shizuoka 静岡県立大学'),
(42385, 'https://ror.org/014vrtf08', 'en', 1, 'https://ror.org/014vrtf08 Wade College'),
(42386, 'https://ror.org/031dhd775', 'en', 1, 'https://ror.org/031dhd775 Utica School of Commerce'),
(42387, 'https://ror.org/04p549618', 'en', 1, 'https://ror.org/04p549618 University of South Carolina Union'),
(42388, 'https://ror.org/04sdh5f05', 'en', 1, 'https://ror.org/04sdh5f05 Vance-Granville Community College'),
(42389, 'https://ror.org/0590p8j42', 'en', 1, 'https://ror.org/0590p8j42 West Cheshire College'),
(42390, 'https://ror.org/01dg8c226', 'en', 1, 'https://ror.org/01dg8c226 North Shropshire College'),
(42391, 'https://ror.org/02p58en94', 'en', 1, 'https://ror.org/02p58en94 The Restaurant School at Walnut Hill College'),
(42392, 'https://ror.org/00hgavv49', 'en', 1, 'https://ror.org/00hgavv49 Wallace Community College Selma'),
(42393, 'https://ror.org/02qxe8g21', 'en', 1, 'https://ror.org/02qxe8g21 Vanguard College'),
(42394, 'https://ror.org/025caaq56', 'en', 1, 'https://ror.org/025caaq56 Walters State Community College'),
(42395, 'https://ror.org/02xkgba40', 'en', 1, 'https://ror.org/02xkgba40 Theodore Roosevelt High School'),
(42396, 'https://ror.org/05g89q777', 'no_lang_code', 1, 'https://ror.org/05g89q777 Vatterott College'),
(42397, 'https://ror.org/01mtwad75', 'en', 1, 'https://ror.org/01mtwad75 Washington County Community College'),
(42398, 'https://ror.org/05nfx1325', 'en', 1, 'https://ror.org/05nfx1325 University of the Philippines Cebu'),
(42399, 'https://ror.org/02c6nb222', 'en', 1, 'https://ror.org/02c6nb222 Vermilion Community College'),
(42400, 'https://ror.org/02e6y4370', 'en', 1, 'https://ror.org/02e6y4370 William Booth College'),
(42401, 'https://ror.org/03q9jd971', 'en', 1, 'https://ror.org/03q9jd971 Vernon College'),
(42402, 'https://ror.org/018546558', 'en', 1, 'https://ror.org/018546558 Yamano College of Aesthetics 山野美容芸術短期大学'),
(42403, 'https://ror.org/03sv4d295', 'en', 1, 'https://ror.org/03sv4d295 Williamson College of the Trades'),
(42404, 'https://ror.org/03t730d83', 'en', 1, 'https://ror.org/03t730d83 Yellowstone Christian College'),
(42405, 'https://ror.org/052zj9g72', 'en', 1, 'https://ror.org/052zj9g72 Williston State College'),
(42406, 'https://ror.org/01j933b41', 'en', 1, 'https://ror.org/01j933b41 Wichita Area Technical College'),
(42407, 'https://ror.org/00dzptj80', 'en', 1, 'https://ror.org/00dzptj80 Yokohama Soei University 横浜創英短期大学'),
(42408, 'https://ror.org/0421aqz02', 'en', 1, 'https://ror.org/0421aqz02 Westminster College - Missouri'),
(42409, 'https://ror.org/01xf7jb19', 'en', 1, 'https://ror.org/01xf7jb19 Zanjan University of Medical Sciences دانشگاه علوم پزشکی زنجان'),
(42410, 'https://ror.org/04da1m383', 'en', 1, 'https://ror.org/04da1m383 University of Garden City'),
(42411, 'https://ror.org/03re0h651', 'no_lang_code', 1, 'https://ror.org/03re0h651 Zaytuna College'),
(42412, 'https://ror.org/03pvm4464', 'en', 1, 'https://ror.org/03pvm4464 Wiregrass Georgia Technical College'),
(42413, 'https://ror.org/00stpsa05', 'en', 1, 'https://ror.org/00stpsa05 Wisconsin School of Professional Psychology'),
(42414, 'https://ror.org/005majy75', 'en', 1, 'https://ror.org/005majy75 Yuba College'),
(42415, 'https://ror.org/00ts6eq50', 'en', 1, 'https://ror.org/00ts6eq50 Duval County Public Schools'),
(42416, 'https://ror.org/0087v5134', 'en', 1, 'https://ror.org/0087v5134 National Centre for Groundwater Research and Training'),
(42417, 'https://ror.org/02825cc16', 'en', 1, 'https://ror.org/02825cc16 Wood Tobé-Coburn School'),
(42418, 'https://ror.org/03p5wj904', 'en', 1, 'https://ror.org/03p5wj904 Japan Center for Economic Research 日本経済研究センター'),
(42419, 'https://ror.org/05mx0wr29', 'en', 1, 'https://ror.org/05mx0wr29 Zhejiang University of Science and Technology 浙江科技学院'),
(42420, 'https://ror.org/00d7hze96', 'en', 1, 'https://ror.org/00d7hze96 Comité international olympique International Olympic Committee'),
(42421, 'https://ror.org/03q22e955', 'en', 1, 'https://ror.org/03q22e955 Xaverian College'),
(42422, 'https://ror.org/02rs18x11', 'en', 1, 'https://ror.org/02rs18x11 Conseil pour le développement de la recherche en sciences sociales en Afrique Conselho para o Desenvolvimento da Pesquisa em Ciências Sociais em África Council for the Development of Social Science Research in Africa مجلس تنمية البحوث الإجتماعية في أفريقي'),
(42423, 'https://ror.org/01jd81545', 'en', 1, 'https://ror.org/01jd81545 AAIR Charity'),
(42424, 'https://ror.org/0569v7v35', 'en', 1, 'https://ror.org/0569v7v35 Action for ME'),
(42425, 'https://ror.org/04cy3kb56', 'en', 1, 'https://ror.org/04cy3kb56 Indian National Trust for Art and Cultural Heritage'),
(42426, 'https://ror.org/05v5ag345', 'de', 1, 'https://ror.org/05v5ag345 Krebsliga Beider Basel'),
(42427, 'https://ror.org/042618t81', 'en', 1, 'https://ror.org/042618t81 Medical Advances Without Animals Trust'),
(42428, 'https://ror.org/03mjd0271', 'en', 1, 'https://ror.org/03mjd0271 Construction Research Institute of Malaysia'),
(42429, 'https://ror.org/03zhqjb33', 'en', 1, 'https://ror.org/03zhqjb33 Ceramic Society of Japan 日本セラミックス協会'),
(42430, 'https://ror.org/01q29tm52', 'en', 1, 'https://ror.org/01q29tm52 Smart Water Fund'),
(42431, 'https://ror.org/054zftm42', 'en', 1, 'https://ror.org/054zftm42 Shaheed Rajaei Cardiovascular Medical and Research Center'),
(42432, 'https://ror.org/023nwkm08', 'en', 1, 'https://ror.org/023nwkm08 International Association for the Study of Lung Cancer'),
(42433, 'https://ror.org/01ghar981', 'en', 1, 'https://ror.org/01ghar981 Koninklijke Hollandsche Maatschappij der Wetenschappen Royal Holland Society of Sciences and Humanities'),
(42434, 'https://ror.org/05dx8t190', 'en', 1, 'https://ror.org/05dx8t190 International Association for the Study of Pain'),
(42435, 'https://ror.org/0427xec12', 'en', 1, 'https://ror.org/0427xec12 Islamic Society of North America'),
(42436, 'https://ror.org/03ve5gp11', 'en', 1, 'https://ror.org/03ve5gp11 International Trauma Anesthesia and Critical Care Society'),
(42437, 'https://ror.org/05w90jm68', 'en', 1, 'https://ror.org/05w90jm68 Korea Society'),
(42438, 'https://ror.org/033sn5p83', 'en', 1, 'https://ror.org/033sn5p83 Gates Cambridge Trust'),
(42439, 'https://ror.org/0203yhg37', 'en', 1, 'https://ror.org/0203yhg37 Birla Institute of Scientific Research'),
(42440, 'https://ror.org/02n67pd69', 'de', 1, 'https://ror.org/02n67pd69 Fördergemeinschaft Kinderkrebs-Zentrum Hamburg'),
(42441, 'https://ror.org/00qbzpp62', 'en', 1, 'https://ror.org/00qbzpp62 Center for Massive Data Algorithmics'),
(42442, 'https://ror.org/0099s0h07', 'pt', 1, 'https://ror.org/0099s0h07 Instituto de Tecnologia de Alimentos'),
(42443, 'https://ror.org/03dw6jp83', 'en', 1, 'https://ror.org/03dw6jp83 San Pedro College'),
(42444, 'https://ror.org/01svz3w83', 'en', 1, 'https://ror.org/01svz3w83 United States Indonesia Society'),
(42445, 'https://ror.org/014matr28', 'en', 1, 'https://ror.org/014matr28 United States Golf Association'),
(42446, 'https://ror.org/034e1cb35', 'en', 1, 'https://ror.org/034e1cb35 Information-Technology Promotion Agency 独立行政法人情報処理推進機構'),
(42447, 'https://ror.org/04etshx64', 'en', 1, 'https://ror.org/04etshx64 United States Capitol Historical Society'),
(42448, 'https://ror.org/01t56m506', 'no_lang_code', 1, 'https://ror.org/01t56m506 Caisse nationale suisse d''assurance en cas d''accidents Istituto nazionale svizzero di assicurazione contro gli infortuni Schweizerische Unfallversicherungsanstalt Suva'),
(42449, 'https://ror.org/050a3p398', 'en', 1, 'https://ror.org/050a3p398 Asian American Journalists Association'),
(42450, 'https://ror.org/004fb1r50', 'en', 1, 'https://ror.org/004fb1r50 Indonesian Coral Reef Foundation Yayasan Terumbu Karang Indonesia'),
(42451, 'https://ror.org/0406h9r54', 'en', 1, 'https://ror.org/0406h9r54 Korea Green Promotion Agency'),
(42452, 'https://ror.org/03w6ebm44', 'en', 1, 'https://ror.org/03w6ebm44 South Arts'),
(42453, 'https://ror.org/01ccv1722', 'en', 1, 'https://ror.org/01ccv1722 Society of Teachers of Family Medicine'),
(42454, 'https://ror.org/01f8mva30', 'en', 1, 'https://ror.org/01f8mva30 Panchajanya Vidya Peetha Welfare Trust'),
(42455, 'https://ror.org/05bcewb51', 'en', 1, 'https://ror.org/05bcewb51 Instituto Millenium Millennium Institute'),
(42456, 'https://ror.org/01gfs0a38', 'de', 1, 'https://ror.org/01gfs0a38 Akademie für Tiergesundheit'),
(42457, 'https://ror.org/05q77p435', 'en', 1, 'https://ror.org/05q77p435 Austin Graduate School of Theology'),
(42458, 'https://ror.org/04ktct527', 'en', 1, 'https://ror.org/04ktct527 Cure Childhood Cancer Association'),
(42459, 'https://ror.org/014wxtx83', 'en', 1, 'https://ror.org/014wxtx83 Sightsavers'),
(42460, 'https://ror.org/04qd7ym22', 'en', 1, 'https://ror.org/04qd7ym22 HOPE Cape Town Trust'),
(42461, 'https://ror.org/05cemnq96', 'en', 1, 'https://ror.org/05cemnq96 Society of Gastroenterology Nurses and Associates'),
(42462, 'https://ror.org/05dd3bg73', 'no_lang_code', 1, 'https://ror.org/05dd3bg73 Structural Timber Innovation Company (New Zealand)'),
(42463, 'https://ror.org/048j1zc07', 'en', 1, 'https://ror.org/048j1zc07 Bexley College'),
(42464, 'https://ror.org/04dyam975', 'it', 1, 'https://ror.org/04dyam975 Sistema Bibliotecario di Udine e dell''Hinterland Udinese'),
(42465, 'https://ror.org/02ds88v51', 'en', 1, 'https://ror.org/02ds88v51 Camera dei Deputati Chamber of Deputies'),
(42466, 'https://ror.org/001cf8537', 'en', 1, 'https://ror.org/001cf8537 Baltimore County Public Schools'),
(42467, 'https://ror.org/02pnpa204', 'it', 1, 'https://ror.org/02pnpa204 Istituzione Bologna Musei'),
(42468, 'https://ror.org/02z493v75', 'en', 1, 'https://ror.org/02z493v75 Owensboro Community and Technical College'),
(42469, 'https://ror.org/02a4rdf09', 'de', 1, 'https://ror.org/02a4rdf09 Fondation Bodmer Fondation Martin Bodmer'),
(42470, 'https://ror.org/05t8ffp36', 'es', 1, 'https://ror.org/05t8ffp36 Real Academia Española Royal Spanish Academy'),
(42471, 'https://ror.org/02qjrvm45', 'fr', 1, 'https://ror.org/02qjrvm45 Centre de Recherche sur l''Environnement Alpin'),
(42472, 'https://ror.org/02bf3a828', 'fr', 1, 'https://ror.org/02bf3a828 Hôpital Cardiologique du Haut-Lévêque'),
(42473, 'https://ror.org/030dhdf69', 'en', 1, 'https://ror.org/030dhdf69 Biotechnologie Institut Thurgau Biotechnology Institute Thurgau'),
(42474, 'https://ror.org/05b9pe067', 'en', 1, 'https://ror.org/05b9pe067 Malayan Colleges Laguna'),
(42475, 'https://ror.org/05y92qc28', 'en', 1, 'https://ror.org/05y92qc28 Sandhills Community College'),
(42476, 'https://ror.org/00gm3kb02', 'en', 1, 'https://ror.org/00gm3kb02 North Georgia Technical College'),
(42477, 'https://ror.org/05yc7zr31', 'en', 1, 'https://ror.org/05yc7zr31 Cossatot Community College'),
(42478, 'https://ror.org/03r2s9s41', 'en', 1, 'https://ror.org/03r2s9s41 Skyline College'),
(42479, 'https://ror.org/01xddfn70', 'en', 1, 'https://ror.org/01xddfn70 Fairview School District'),
(42480, 'https://ror.org/05je8kx69', 'en', 1, 'https://ror.org/05je8kx69 St Patrick''s College'),
(42481, 'https://ror.org/0352dma55', 'en', 1, 'https://ror.org/0352dma55 West Kentucky Community and Technical College'),
(42482, 'https://ror.org/00cdwva22', 'en', 1, 'https://ror.org/00cdwva22 All Nations University'),
(42483, 'https://ror.org/05r8zkn09', 'it', 1, 'https://ror.org/05r8zkn09 Dipartimento dell Educazione della Cultura e dello Sport'),
(42484, 'https://ror.org/027dan833', 'fr', 1, 'https://ror.org/027dan833 École Biblique et Archéologique Française de Jérusalem'),
(42485, 'https://ror.org/047y9vj34', 'en', 1, 'https://ror.org/047y9vj34 Gwinnett College'),
(42486, 'https://ror.org/04a5x3y83', 'en', 1, 'https://ror.org/04a5x3y83 Caldwell Community College & Technical Institute'),
(42487, 'https://ror.org/03nzct076', 'en', 1, 'https://ror.org/03nzct076 Platt College'),
(42488, 'https://ror.org/0484fme70', 'en', 1, 'https://ror.org/0484fme70 Northeastern Technical College'),
(42489, 'https://ror.org/02gxkme34', 'en', 1, 'https://ror.org/02gxkme34 University of Arkansas Community College at Morrilton'),
(42490, 'https://ror.org/00gyf5557', 'en', 1, 'https://ror.org/00gyf5557 Swiss School of Archaeology in Greece Ελβετική Αρχαιολογική Σχολή στην Ελλάδα'),
(42491, 'https://ror.org/01064v583', 'en', 1, 'https://ror.org/01064v583 Gemological Institute of America'),
(42492, 'https://ror.org/0297tch52', 'fr', 1, 'https://ror.org/0297tch52 Fondation Hardt'),
(42493, 'https://ror.org/04ewkgj12', 'fr', 1, 'https://ror.org/04ewkgj12 Fondation Le Corbusier'),
(42494, 'https://ror.org/015pmkr43', 'fr', 1, 'https://ror.org/015pmkr43 Haute École Pédagogique BEJUNE'),
(42495, 'https://ror.org/036kj7q93', 'it', 1, 'https://ror.org/036kj7q93 Fondazione Lanza'),
(42496, 'https://ror.org/048gre751', 'fr', 1, 'https://ror.org/048gre751 Haute École Pédagogique Fribourg'),
(42497, 'https://ror.org/00bf78a39', 'en', 1, 'https://ror.org/00bf78a39 Bancroft School of Massage Therapy'),
(42498, 'https://ror.org/05a8hvs03', 'it', 1, 'https://ror.org/05a8hvs03 Istituto Ricerche Solari Locarno'),
(42499, 'https://ror.org/02gf2m037', 'it', 1, 'https://ror.org/02gf2m037 Istituto Svizzero di Roma'),
(42500, 'https://ror.org/05ynf4333', 'fr', 1, 'https://ror.org/05ynf4333 INSEAD Institut Européen d''Administration des Affaires'),
(42501, 'https://ror.org/05ke8x342', 'it', 1, 'https://ror.org/05ke8x342 Institut international pour l''unification du droit privé UNIDROIT'),
(42502, 'https://ror.org/00saqbg14', 'de', 1, 'https://ror.org/00saqbg14 Kunstmuseum Basel'),
(42503, 'https://ror.org/00bsqmj12', 'en', 1, 'https://ror.org/00bsqmj12 Marshalltown Community College'),
(42504, 'https://ror.org/02rtq1r98', 'en', 1, 'https://ror.org/02rtq1r98 Kunstmuseum Bern Museum of Fine Arts Bern'),
(42505, 'https://ror.org/02s52y897', 'de', 1, 'https://ror.org/02s52y897 Institut für Kulturforschung Graubünden'),
(42506, 'https://ror.org/054h1gp83', 'fr', 1, 'https://ror.org/054h1gp83 Institut Suisse de Spéléologie et de Karstologie'),
(42507, 'https://ror.org/04szen554', 'de', 1, 'https://ror.org/04szen554 Marie Meierhofer Institut für das Kind'),
(42508, 'https://ror.org/01xfcjr43', 'en', 1, 'https://ror.org/01xfcjr43 Sanyo-Onoda City University 山口東京理科大学'),
(42509, 'https://ror.org/00pn5nj90', 'en', 1, 'https://ror.org/00pn5nj90 Ventura College'),
(42510, 'https://ror.org/04c2j1p40', 'en', 1, 'https://ror.org/04c2j1p40 Dabney S Lancaster Community College'),
(42511, 'https://ror.org/04vs0xj88', 'en', 1, 'https://ror.org/04vs0xj88 International Business College - Indianapolis'),
(42512, 'https://ror.org/01qecd649', 'en', 1, 'https://ror.org/01qecd649 Max Planck Unit for Structural Molecular Biology Max-Planck-Arbeitsgruppen für Strukturelle Molekularbiologie'),
(42513, 'https://ror.org/04cxnv425', 'it', 1, 'https://ror.org/04cxnv425 Pro Grigioni Italiano'),
(42514, 'https://ror.org/033198s46', 'en', 1, 'https://ror.org/033198s46 Max Planck Institut für Innovation und Wettbewerb Max Planck Institute for Innovation and Competition'),
(42515, 'https://ror.org/04qw2v147', 'en', 1, 'https://ror.org/04qw2v147 Spokane Falls Community College'),
(42516, 'https://ror.org/00znqyv98', 'it', 1, 'https://ror.org/00znqyv98 Museo Cantonale di Storia Naturale di Lugano'),
(42517, 'https://ror.org/024cb5849', 'de', 1, 'https://ror.org/024cb5849 Schweizerisches Idiotikon Swiss idioticon'),
(42518, 'https://ror.org/000p2wp51', 'en', 1, 'https://ror.org/000p2wp51 Lambeth Palace Library'),
(42519, 'https://ror.org/01pycny91', 'de', 1, 'https://ror.org/01pycny91 Staatsunabhängige Theologische Hochschule Basel'),
(42520, 'https://ror.org/00t6xza10', 'en', 1, 'https://ror.org/00t6xza10 Archiv Federal Svizzer Archives Fédérales Suisses Archivio Federale Svizzero Schweizerischen Bundesarchiv Swiss Federal Archives'),
(42521, 'https://ror.org/00ytxqz74', 'en', 1, 'https://ror.org/00ytxqz74 Addiction Switzerland Sucht Schweiz'),
(42522, 'https://ror.org/038km2573', 'no_lang_code', 1, 'https://ror.org/038km2573 Nokia (United States)'),
(42523, 'https://ror.org/02maxav80', 'en', 1, 'https://ror.org/02maxav80 Open University of China 国家开放大学'),
(42524, 'https://ror.org/04eca0d23', 'en', 1, 'https://ror.org/04eca0d23 Academic Swiss Caucasus Net'),
(42525, 'https://ror.org/050f4mc80', 'en', 1, 'https://ror.org/050f4mc80 Carinthian Economic Promotion Fund Kärntner Wirtschaftsförderungs Fonds'),
(42526, 'https://ror.org/00y6gpw41', 'en', 1, 'https://ror.org/00y6gpw41 Association for Library and Information Science Education'),
(42527, 'https://ror.org/03zan4871', 'en', 1, 'https://ror.org/03zan4871 Collaborative Centre for Applied Nanotechnology'),
(42528, 'https://ror.org/01k789405', 'en', 1, 'https://ror.org/01k789405 Schweizerische Herzstiftung Swiss Heart Foundation'),
(42529, 'https://ror.org/049e4we54', 'en', 1, 'https://ror.org/049e4we54 Acoustical Society of America'),
(42530, 'https://ror.org/04j7hdv70', 'en', 1, 'https://ror.org/04j7hdv70 Society for the Advancement of Scandinavian Study'),
(42531, 'https://ror.org/05tcdh256', 'en', 1, 'https://ror.org/05tcdh256 Division of Parasitic Diseases and Malaria'),
(42532, 'https://ror.org/03q2wez45', 'fr', 1, 'https://ror.org/03q2wez45 Instituts Français de Recherche à L''Étranger'),
(42533, 'https://ror.org/04gpgk389', 'fr', 1, 'https://ror.org/04gpgk389 Centre Jacques Berque pour le Développement des Sciences Humaines et Sociales'),
(42534, 'https://ror.org/043bqfp86', 'de', 1, 'https://ror.org/043bqfp86 Centre Marc Bloch'),
(42535, 'https://ror.org/04jg63q12', 'en', 1, 'https://ror.org/04jg63q12 Northwest Vista College'),
(42536, 'https://ror.org/03a8g0p38', 'en', 1, 'https://ror.org/03a8g0p38 Hangzhou Hospital of Traditional Chinese Medicine'),
(42537, 'https://ror.org/02cydx698', 'en', 1, 'https://ror.org/02cydx698 Jiaxing Vocational Technical College 嘉兴职业技术学院'),
(42538, 'https://ror.org/00e8jms23', 'en', 1, 'https://ror.org/00e8jms23 Hubei Academy of Forestry 湖北省林业科学研究院'),
(42539, 'https://ror.org/036metx20', 'en', 1, 'https://ror.org/036metx20 Chinese People''s Armed Police General Hospital 武警总医院'),
(42540, 'https://ror.org/05jfw1444', 'en', 1, 'https://ror.org/05jfw1444 Jilin Provincial Academy of Forestry Science 吉林省林业科学研究院'),
(42541, 'https://ror.org/03sct1f35', 'no_lang_code', 1, 'https://ror.org/03sct1f35 Aluminum Corporation of China (China) 中国铝业公司'),
(42542, 'https://ror.org/01g8cdp94', 'en', 1, 'https://ror.org/01g8cdp94 Ningxia Hui Autonomous Region Peoples Hospital 宁夏回族自治区人民医院'),
(42543, 'https://ror.org/049pz8m51', 'en', 1, 'https://ror.org/049pz8m51 Chongqing Academy of Chinese Materia Medica 重庆市中药研究院'),
(42544, 'https://ror.org/0347g4065', 'en', 1, 'https://ror.org/0347g4065 Jinhua Municipal Science and Technology Bureau 金华市科技局'),
(42545, 'https://ror.org/04c14yn55', 'en', 1, 'https://ror.org/04c14yn55 Chuxiong Normal University 楚雄师范学院'),
(42546, 'https://ror.org/04zrrk968', 'en', 1, 'https://ror.org/04zrrk968 Anhui Provincial Meteorological Bureau 安徽省气象局'),
(42547, 'https://ror.org/04s5wwh39', 'en', 1, 'https://ror.org/04s5wwh39 Anshan Normal University 鞍山师范学院'),
(42548, 'https://ror.org/01g2vd413', 'no_lang_code', 1, 'https://ror.org/01g2vd413 Hunan Mawangdui Hospital'),
(42549, 'https://ror.org/00d9m6s48', 'en', 1, 'https://ror.org/00d9m6s48 Guangdong Provincial Occupational Disease Prevention Hospital 广东省职业病防治院'),
(42550, 'https://ror.org/002hfez23', 'en', 1, 'https://ror.org/002hfez23 Huzhou Vocational and Technical College'),
(42551, 'https://ror.org/01ae4qf10', 'en', 1, 'https://ror.org/01ae4qf10 CPC Heilongjiang Provincial Committee Party School 中共黑龙江省委党校'),
(42552, 'https://ror.org/03ae5ty12', 'en', 1, 'https://ror.org/03ae5ty12 Inner Mongolia Institute of Hydraulic Research 内蒙古自治区水利科学研究院'),
(42553, 'https://ror.org/03wtdg769', 'en', 1, 'https://ror.org/03wtdg769 Liaoning Jianzhu Vocational University 辽宁信息职业技术学院'),
(42554, 'https://ror.org/00rvyvv90', 'en', 1, 'https://ror.org/00rvyvv90 Zhejiang Party School 浙江省委党校'),
(42555, 'https://ror.org/01ftq2j79', 'en', 1, 'https://ror.org/01ftq2j79 Liaoning Provincial Food and Drug Administration 辽宁省食品药品监督管理局'),
(42556, 'https://ror.org/05rnyty77', 'en', 1, 'https://ror.org/05rnyty77 Institute of Archaeology 中国社会科学院考古研究所是'),
(42557, 'https://ror.org/023e72x78', 'no_lang_code', 1, 'https://ror.org/023e72x78 Lishui Central Hospital 丽水市中心医院'),
(42558, 'https://ror.org/022nyzy72', 'en', 1, 'https://ror.org/022nyzy72 Qinghai Institute for Endemic Diease Prevention and Control'),
(42559, 'https://ror.org/04199wj76', 'en', 1, 'https://ror.org/04199wj76 Entry Exit Inspection and Quarantine Bureau 广东出入境检验检疫局'),
(42560, 'https://ror.org/05p2fxt77', 'en', 1, 'https://ror.org/05p2fxt77 Lishui Vocational and Technical College 丽水职业技术学院'),
(42561, 'https://ror.org/05m762g98', 'en', 1, 'https://ror.org/05m762g98 Lishui Academy of Forestry 丽水市林业科学研究院'),
(42562, 'https://ror.org/04hsa3c95', 'en', 1, 'https://ror.org/04hsa3c95 Bureau of Hydrology Tibet 西藏自治区水文水资源勘测局'),
(42563, 'https://ror.org/02cbhvc53', 'no_lang_code', 1, 'https://ror.org/02cbhvc53 China National Chemical Corporation (China) 中国化工集团公司'),
(42564, 'https://ror.org/04wjkw450', 'en', 1, 'https://ror.org/04wjkw450 Institute of Endemic Disease Control in Shandong Province 山东省地方病防治研究所'),
(42565, 'https://ror.org/01sengv47', 'en', 1, 'https://ror.org/01sengv47 Institute of Ethnology and Anthropology 中国社会科学院民族学与人类学研究所'),
(42566, 'https://ror.org/049en1e86', 'en', 1, 'https://ror.org/049en1e86 Fujian Institute of Subtropical Botany 福建省亚热带植物研究所'),
(42567, 'https://ror.org/02mrea437', 'en', 1, 'https://ror.org/02mrea437 Institute of Linguistics 中国社会科学院语言研究所'),
(42568, 'https://ror.org/00xphjh14', 'en', 1, 'https://ror.org/00xphjh14 Fujian Research Institute of Light Industry 福建省轻工业研究所'),
(42569, 'https://ror.org/03sn26h43', 'en', 1, 'https://ror.org/03sn26h43 Institute of Population and Labor Economics 中国社会科学院人口与劳动经济研究所'),
(42570, 'https://ror.org/00szjvn19', 'en', 1, 'https://ror.org/00szjvn19 Poultry Research Institute 中国农业科学院家禽研究所'),
(42571, 'https://ror.org/04ez8hs93', 'en', 1, 'https://ror.org/04ez8hs93 Qingdao Municipal Center for Disease Control and Prevention 青岛市疾病预防控制中心'),
(42572, 'https://ror.org/056kzfb80', 'en', 1, 'https://ror.org/056kzfb80 Guangdong Provincial Family Planning Hospital 广东省计划生育科学技术研究所'),
(42573, 'https://ror.org/02egn3136', 'en', 1, 'https://ror.org/02egn3136 NARI Group (China) 南京自动化研究所'),
(42574, 'https://ror.org/04x5anb81', 'en', 1, 'https://ror.org/04x5anb81 China Academy of Traditional Chinese Medicine Hospital of Ophthalmology 中国中医科学院眼科医院'),
(42575, 'https://ror.org/00ff97g12', 'no_lang_code', 1, 'https://ror.org/00ff97g12 Guangxi Institute of Botany 中科院广西植物研究所'),
(42576, 'https://ror.org/02ag25v06', 'en', 1, 'https://ror.org/02ag25v06 Chinese Academy of Agricultural Engineering 中国农业科学院农业工程');
INSERT INTO `rors` VALUES
(42577, 'https://ror.org/01k56kn83', 'en', 1, 'https://ror.org/01k56kn83 Guangxi Subtropical Crops Research Institute 广西亚热带作物研究所'),
(42578, 'https://ror.org/029051y19', 'en', 1, 'https://ror.org/029051y19 Jiangsu Provincial Seismological Bureau 江苏省地震局'),
(42579, 'https://ror.org/04vtzbx16', 'en', 1, 'https://ror.org/04vtzbx16 Qinghai Provincial Peoples Hospital 青海省人民医院'),
(42580, 'https://ror.org/05ex0md65', 'en', 1, 'https://ror.org/05ex0md65 Sweet Potato Research Institute'),
(42581, 'https://ror.org/05knyt645', 'en', 1, 'https://ror.org/05knyt645 China Federation of Supply and Marketing Cooperatives 中华全国供销合作总社'),
(42582, 'https://ror.org/02rgkd872', 'en', 1, 'https://ror.org/02rgkd872 Guangzhou Municipal Engineering Design and Research Institute 广州市政工程设计研究院'),
(42583, 'https://ror.org/00wdfeq42', 'en', 1, 'https://ror.org/00wdfeq42 National Engineering Research Center for Compounding and Modification of Polymer Materials 国家复合改性聚合物材料工程技术研究中心'),
(42584, 'https://ror.org/01etfxm56', 'en', 1, 'https://ror.org/01etfxm56 China National Bamboo Research Center 国家林业局竹子研究开发中心'),
(42585, 'https://ror.org/01hbm5940', 'en', 1, 'https://ror.org/01hbm5940 Jiangxi Maternal and Child Health Hospital 江西省妇幼保健院'),
(42586, 'https://ror.org/03mmka096', 'en', 1, 'https://ror.org/03mmka096 Qinghai Tibetan Hospital 青海省藏医院'),
(42587, 'https://ror.org/01dfm1a30', 'en', 1, 'https://ror.org/01dfm1a30 National Institute of Education Sciences 中国教育科学研究院'),
(42588, 'https://ror.org/02xr9bp50', 'en', 1, 'https://ror.org/02xr9bp50 Lushan Botanical Garden 江西省中国科学院庐山植物园'),
(42589, 'https://ror.org/040c53642', 'en', 1, 'https://ror.org/040c53642 Guizhou Provincial Meteorological Bureau 贵州气象在线'),
(42590, 'https://ror.org/00av6fw44', 'en', 1, 'https://ror.org/00av6fw44 Shandong Geological Sciences Institute 山东省地质科学实验研究院'),
(42591, 'https://ror.org/02a1tyz74', 'en', 1, 'https://ror.org/02a1tyz74 National Engineering Research Center for Wheat 国家小麦工程技术研究中心'),
(42592, 'https://ror.org/024nfx323', 'no_lang_code', 1, 'https://ror.org/024nfx323 Quzhou University 衢州学院'),
(42593, 'https://ror.org/03jjm4b17', 'en', 1, 'https://ror.org/03jjm4b17 Hangzhou Vocational and Technical College 杭州职业技术学院'),
(42594, 'https://ror.org/058dmkn21', 'en', 1, 'https://ror.org/058dmkn21 Chinese Academy of International Trade and Economic Cooperation 商务部国际贸易经济合作研究院'),
(42595, 'https://ror.org/042v7vy56', 'en', 1, 'https://ror.org/042v7vy56 Shanghai Institute of Landscape Gardening 上海市园林科学规划研究院'),
(42596, 'https://ror.org/04hqsgm68', 'en', 1, 'https://ror.org/04hqsgm68 China Banking Regulatory Commission 中国银行业监督管理委员会'),
(42597, 'https://ror.org/05hk7qq56', 'en', 1, 'https://ror.org/05hk7qq56 Tibetan Traditional Medical College 西藏传统医学院'),
(42598, 'https://ror.org/03tx9ed22', 'en', 1, 'https://ror.org/03tx9ed22 Institute of Pomology 果树研究所'),
(42599, 'https://ror.org/01c5khf59', 'en', 1, 'https://ror.org/01c5khf59 Tourism College of Zhejiang 浙江旅游职业学院'),
(42600, 'https://ror.org/01hvjym56', 'en', 1, 'https://ror.org/01hvjym56 Shaoxing City Women and Children Hospital 绍兴市妇幼保健院'),
(42601, 'https://ror.org/04tans503', 'en', 1, 'https://ror.org/04tans503 Shenzhen Blood Center 深圳市血液中心'),
(42602, 'https://ror.org/02pzr0022', 'en', 1, 'https://ror.org/02pzr0022 National Center for Science and Technology Evaluation 国家中心的科学技术评价'),
(42603, 'https://ror.org/03j8e1479', 'en', 1, 'https://ror.org/03j8e1479 Gansu Provincial Hospital of TCM 甘肃省中医院'),
(42604, 'https://ror.org/01me2d674', 'en', 1, 'https://ror.org/01me2d674 Shenzhen Maternity and Child Healthcare Hospital 深圳市妇幼保健院'),
(42605, 'https://ror.org/05x3qxg97', 'en', 1, 'https://ror.org/05x3qxg97 Chinese Society for Tropical Crops 中国热带作物学会'),
(42606, 'https://ror.org/03hm7k454', 'en', 1, 'https://ror.org/03hm7k454 Twelfth Guangzhou City People''s Hospital 广州市第十二人民医院'),
(42607, 'https://ror.org/04g9b5w11', 'en', 1, 'https://ror.org/04g9b5w11 Seismological Bureau of Shanghai 上海市地震局'),
(42608, 'https://ror.org/04c154n61', 'en', 1, 'https://ror.org/04c154n61 Ningbo Polytechnic 宁波职业技术学院'),
(42609, 'https://ror.org/04jmysw33', 'en', 1, 'https://ror.org/04jmysw33 Wenzhou City People''s Hospital 温州市人民医院'),
(42610, 'https://ror.org/05j8wgh30', 'en', 1, 'https://ror.org/05j8wgh30 Wenzhou Institute of Industrial Science 温州市工业科学研究院'),
(42611, 'https://ror.org/04jyt7608', 'en', 1, 'https://ror.org/04jyt7608 Taizhou First People''s Hospital 台州市第一人民医院'),
(42612, 'https://ror.org/05pt0p091', 'en', 1, 'https://ror.org/05pt0p091 Taizhou Vocational and Technical College 台州职业技术学院'),
(42613, 'https://ror.org/0310dsa24', 'en', 1, 'https://ror.org/0310dsa24 Hangzhou Seventh Peoples Hospital 杭州市第七人民医院'),
(42614, 'https://ror.org/03tebsy12', 'en', 1, 'https://ror.org/03tebsy12 Zhejiang Academy of Medical Sciences 浙江省医学科学院'),
(42615, 'https://ror.org/05d5nhn14', 'en', 1, 'https://ror.org/05d5nhn14 Shaanxi Institute of Zoology 陕西省动物研究所'),
(42616, 'https://ror.org/03yh3e798', 'en', 1, 'https://ror.org/03yh3e798 Zhejiang Business Technology Institute 浙江工商职业技术学院'),
(42617, 'https://ror.org/05nm40v04', 'en', 1, 'https://ror.org/05nm40v04 Academy of Military Transportation 军事交通学院'),
(42618, 'https://ror.org/019dkz313', 'en', 1, 'https://ror.org/019dkz313 Ningxia Academy of Agriculture and Forestry Sciences 农林科学院宁夏科学院'),
(42619, 'https://ror.org/02wt4jg41', 'en', 1, 'https://ror.org/02wt4jg41 Microbiology Institute of Shaanxi 陕西省微生物研究所'),
(42620, 'https://ror.org/00e58e871', 'no_lang_code', 1, 'https://ror.org/00e58e871 Zhejiang Zanyu Technology (China) 浙江赞宇科技'),
(42621, 'https://ror.org/01x3vfv57', 'en', 1, 'https://ror.org/01x3vfv57 Zhejiang Changzheng Vocational and Technical College 浙江长征职业技术学院'),
(42622, 'https://ror.org/04sbhjg04', 'no_lang_code', 1, 'https://ror.org/04sbhjg04 Zhejiang Chem-tech Group (China) 浙江化工科技集团有限公司精细化工厂'),
(42623, 'https://ror.org/05mmjqp23', 'en', 1, 'https://ror.org/05mmjqp23 Shandong Academy of Chinese Medicine 山东省中医药研究院'),
(42624, 'https://ror.org/01vwvvq12', 'en', 1, 'https://ror.org/01vwvvq12 Zhejiang International Studies University 浙江外国语学院'),
(42625, 'https://ror.org/03npsbw04', 'en', 1, 'https://ror.org/03npsbw04 Zhejiang Entry-Exit Inspection and Quarantine Bureau 杭州出入境检验检疫局'),
(42626, 'https://ror.org/02wt5t905', 'en', 1, 'https://ror.org/02wt5t905 Zhejiang Marine Fisheries Research Institute 浙江省海洋水产研究所'),
(42627, 'https://ror.org/01psdst63', 'en', 1, 'https://ror.org/01psdst63 Xinjiang Academy of Agricultural and Reclamation Science 新疆农垦科学院'),
(42628, 'https://ror.org/05eq10h32', 'en', 1, 'https://ror.org/05eq10h32 Zhejiang Mariculture Research Institute 浙江省海洋水产养殖研究所'),
(42629, 'https://ror.org/046fb4113', 'en', 1, 'https://ror.org/046fb4113 ZheJiang Economic and Trade Polytechnic 浙江经贸职业技术学院'),
(42630, 'https://ror.org/02wrg9q93', 'en', 1, 'https://ror.org/02wrg9q93 Zhejiang Museum of Natural History 浙江自然博物馆'),
(42631, 'https://ror.org/055gyn525', 'en', 1, 'https://ror.org/055gyn525 Zhejiang Institute of Mechanical and Electrical Engineering 浙江机电职业技术学院'),
(42632, 'https://ror.org/02n2ntt72', 'en', 1, 'https://ror.org/02n2ntt72 Zhejiang Environmental Monitoring Center 浙江省环境监测中心'),
(42633, 'https://ror.org/0227dek49', 'en', 1, 'https://ror.org/0227dek49 Zhejiang Provincial Environmental Protection Scientific Research Institute 浙江省环境保护科学设计研究院'),
(42634, 'https://ror.org/03cq0qg50', 'en', 1, 'https://ror.org/03cq0qg50 Zhejiang Ocean Development Institute 浙江省海洋开发研究院'),
(42635, 'https://ror.org/00deghz86', 'en', 1, 'https://ror.org/00deghz86 Zhejiang Financial College 浙江金融职业学院'),
(42636, 'https://ror.org/02bt6bb31', 'en', 1, 'https://ror.org/02bt6bb31 Zhejiang Institute of Metrology 计量浙江理工大学'),
(42637, 'https://ror.org/04s9pf004', 'en', 1, 'https://ror.org/04s9pf004 Zhejiang Pharmaceutical College 浙江医药高等专科学校'),
(42638, 'https://ror.org/045c2a851', 'en', 1, 'https://ror.org/045c2a851 ZheJiang Institute For Food and Drug Control 浙江省食品药品检验所'),
(42639, 'https://ror.org/02f6v4t81', 'en', 1, 'https://ror.org/02f6v4t81 Xinjiang Institute of Water Resources and Hydropower Research 新疆水利水电科学研究院'),
(42640, 'https://ror.org/007eyd925', 'en', 1, 'https://ror.org/007eyd925 Tianjin University of Sport 天津体育学院'),
(42641, 'https://ror.org/05m0wv206', 'en', 1, 'https://ror.org/05m0wv206 Zhejiang Taizhou Hospital 浙江省台州医院'),
(42642, 'https://ror.org/048seqj96', 'en', 1, 'https://ror.org/048seqj96 Zhejiang Provincial Health Information Center 浙江省卫生信息中心'),
(42643, 'https://ror.org/02kwn0g61', 'en', 1, 'https://ror.org/02kwn0g61 Zhoushan Institute of Calibration for Quality and Technology Supervision'),
(42644, 'https://ror.org/04p4ra235', 'en', 1, 'https://ror.org/04p4ra235 Zhejiang Tongji Vocational College of Science and Technology 科技的同济大学浙江职业技术学院'),
(42645, 'https://ror.org/018ha0a04', 'en', 1, 'https://ror.org/018ha0a04 Tianjin Research Institute of Water Transport Engineering 天科院官方网站'),
(42646, 'https://ror.org/00335tx14', 'en', 1, 'https://ror.org/00335tx14 North Carolina Soybean Association'),
(42647, 'https://ror.org/04nz9a261', 'en', 1, 'https://ror.org/04nz9a261 Mushroom Council'),
(42648, 'https://ror.org/05nyr7981', 'en', 1, 'https://ror.org/05nyr7981 Institute of General and Experimental Biology Институт общей и экспериментальной биологии СО РАН'),
(42649, 'https://ror.org/03zn93s35', 'en', 1, 'https://ror.org/03zn93s35 Swiss Museum of Transport Verkehrshaus der Schweiz'),
(42650, 'https://ror.org/02rzte064', 'en', 1, 'https://ror.org/02rzte064 Zhejiang Science and Technology Information Institute 浙江省科技信息研究院'),
(42651, 'https://ror.org/00d8hgw93', 'en', 1, 'https://ror.org/00d8hgw93 Global Environmental Outreach Centre'),
(42652, 'https://ror.org/02pzhxb85', 'en', 1, 'https://ror.org/02pzhxb85 Vitamin D Society'),
(42653, 'https://ror.org/05ancaf73', 'en', 1, 'https://ror.org/05ancaf73 American Association of Family and Consumer Sciences'),
(42654, 'https://ror.org/04fqtzv33', 'en', 1, 'https://ror.org/04fqtzv33 American Association of Law Libraries'),
(42655, 'https://ror.org/02yr31a60', 'fr', 1, 'https://ror.org/02yr31a60 Association Belge Contre les Maladies Neuro-Musculaires'),
(42656, 'https://ror.org/003c45k89', 'en', 1, 'https://ror.org/003c45k89 Korea Foundation Of Nuclear Safety 한국원자력안전재단'),
(42657, 'https://ror.org/04s9bdj81', 'en', 1, 'https://ror.org/04s9bdj81 Danish Energy Association Dansk Energi'),
(42658, 'https://ror.org/030cpmq61', 'en', 1, 'https://ror.org/030cpmq61 Society for Surgery of the Alimentary Tract'),
(42659, 'https://ror.org/02n219t94', 'en', 1, 'https://ror.org/02n219t94 Association for Geographic Information'),
(42660, 'https://ror.org/057q9nn35', 'en', 1, 'https://ror.org/057q9nn35 Alpha Omega Alpha Medical Honor Society'),
(42661, 'https://ror.org/048f8az88', 'en', 1, 'https://ror.org/048f8az88 American Association for Thoracic Surgery'),
(42662, 'https://ror.org/02ean8c72', 'it', 1, 'https://ror.org/02ean8c72 Associazione Italiana Di Oncologia Medica'),
(42663, 'https://ror.org/031v2vc59', 'en', 1, 'https://ror.org/031v2vc59 American Association of Colleges of Pharmacy'),
(42664, 'https://ror.org/03fjjmv72', 'en', 1, 'https://ror.org/03fjjmv72 Association for Surgical Education'),
(42665, 'https://ror.org/05we5kc38', 'da', 1, 'https://ror.org/05we5kc38 Tandlægeforeningen'),
(42666, 'https://ror.org/04sedwh45', 'en', 1, 'https://ror.org/04sedwh45 American Parkinson Disease Association'),
(42667, 'https://ror.org/0351th250', 'en', 1, 'https://ror.org/0351th250 Danish Lung Association Lungeforening'),
(42668, 'https://ror.org/02pf53x18', 'en', 1, 'https://ror.org/02pf53x18 Association for Academic Surgery'),
(42669, 'https://ror.org/009byq155', 'es', 1, 'https://ror.org/009byq155 Centro de Investigación Biomédica en Red de Salud Mental'),
(42670, 'https://ror.org/00m1bnc32', 'en', 1, 'https://ror.org/00m1bnc32 Council for Christian Colleges and Universities'),
(42671, 'https://ror.org/058pb5559', 'en', 1, 'https://ror.org/058pb5559 Association for Public Policy Analysis and Management'),
(42672, 'https://ror.org/022c5tm72', 'en', 1, 'https://ror.org/022c5tm72 American Association of Directors of Psychiatric Residency Training'),
(42673, 'https://ror.org/04k620071', 'en', 1, 'https://ror.org/04k620071 American Society for Quality'),
(42674, 'https://ror.org/03m80tg69', 'en', 1, 'https://ror.org/03m80tg69 International Parkinson and Movement Disorder Society'),
(42675, 'https://ror.org/02jcrd051', 'en', 1, 'https://ror.org/02jcrd051 Blue Cross Blue Shield Association'),
(42676, 'https://ror.org/02j2s7216', 'en', 1, 'https://ror.org/02j2s7216 American Association for Geriatric Psychiatry'),
(42677, 'https://ror.org/041f67531', 'en', 1, 'https://ror.org/041f67531 American Psychoanalytic Association'),
(42678, 'https://ror.org/012wc2h72', 'en', 1, 'https://ror.org/012wc2h72 American Psychosomatic Society'),
(42679, 'https://ror.org/00wgk5w17', 'en', 1, 'https://ror.org/00wgk5w17 Changzhou Science and Technology Bureau 常州市科学技术局'),
(42680, 'https://ror.org/02g4qga81', 'en', 1, 'https://ror.org/02g4qga81 Western History Association'),
(42681, 'https://ror.org/02azaez02', 'en', 1, 'https://ror.org/02azaez02 American Society for Surgery of the Hand'),
(42682, 'https://ror.org/010nq4b05', 'en', 1, 'https://ror.org/010nq4b05 Illinois School Psychologists Association'),
(42683, 'https://ror.org/04hrrvw77', 'en', 1, 'https://ror.org/04hrrvw77 American Society of Maxillofacial Surgeons'),
(42684, 'https://ror.org/04h7w4h73', 'en', 1, 'https://ror.org/04h7w4h73 Pskov State University'),
(42685, 'https://ror.org/00zst6w92', 'en', 1, 'https://ror.org/00zst6w92 Swedish Movement Disorder Society'),
(42686, 'https://ror.org/00xb58j90', 'en', 1, 'https://ror.org/00xb58j90 Bundesverband der Deutschen Industrie Federation of German Industries'),
(42687, 'https://ror.org/030rn8443', 'en', 1, 'https://ror.org/030rn8443 Alberta Conservation Association'),
(42688, 'https://ror.org/039573m03', 'sv', 1, 'https://ror.org/039573m03 ParkinsonFörbundet'),
(42689, 'https://ror.org/022rxf761', 'da', 1, 'https://ror.org/022rxf761 Parkinsonforeningen'),
(42690, 'https://ror.org/01r3q4477', 'en', 1, 'https://ror.org/01r3q4477 Society of American Gastrointestinal and Endoscopic Surgeons'),
(42691, 'https://ror.org/01aj50m26', 'en', 1, 'https://ror.org/01aj50m26 Copper Development Association'),
(42692, 'https://ror.org/02gtar309', 'en', 1, 'https://ror.org/02gtar309 Association for the Advancement of Baltic Studies'),
(42693, 'https://ror.org/05jd9bf81', 'en', 1, 'https://ror.org/05jd9bf81 Canadian Association of Radiation Oncology'),
(42694, 'https://ror.org/01r43ed56', 'en', 1, 'https://ror.org/01r43ed56 Canadian Urological Association'),
(42695, 'https://ror.org/01x6e4x77', 'en', 1, 'https://ror.org/01x6e4x77 American Orthopsychiatric Association'),
(42696, 'https://ror.org/03ezg7602', 'en', 1, 'https://ror.org/03ezg7602 Association for Women Geoscientists'),
(42697, 'https://ror.org/01sb82c82', 'en', 1, 'https://ror.org/01sb82c82 American Rhododendron Society'),
(42698, 'https://ror.org/04sggj290', 'en', 1, 'https://ror.org/04sggj290 Mental Health Association of Westchester County'),
(42699, 'https://ror.org/00cc7y784', 'en', 1, 'https://ror.org/00cc7y784 American Urogynecologic Society'),
(42700, 'https://ror.org/03snppx81', 'en', 1, 'https://ror.org/03snppx81 California Women Lawyers'),
(42701, 'https://ror.org/00syxh370', 'en', 1, 'https://ror.org/00syxh370 American Welding Society'),
(42702, 'https://ror.org/029q31q54', 'en', 1, 'https://ror.org/029q31q54 Canadian Friends Of Tel-Aviv University'),
(42703, 'https://ror.org/03jjkbg74', 'en', 1, 'https://ror.org/03jjkbg74 American Society for Public Administration'),
(42704, 'https://ror.org/0345bxe71', 'en', 1, 'https://ror.org/0345bxe71 Society of Critical Care Medicine'),
(42705, 'https://ror.org/0592g7p42', 'en', 1, 'https://ror.org/0592g7p42 Academy of Osseointegration'),
(42706, 'https://ror.org/032mwpc05', 'no_lang_code', 1, 'https://ror.org/032mwpc05 Halogenated Solvents Industry Alliance (United States)'),
(42707, 'https://ror.org/01atcss13', 'en', 1, 'https://ror.org/01atcss13 American Association of Neurological Surgeons'),
(42708, 'https://ror.org/01scjps49', 'en', 1, 'https://ror.org/01scjps49 Arthroscopy Association of North America'),
(42709, 'https://ror.org/05fp1z527', 'en', 1, 'https://ror.org/05fp1z527 Association of Zoo Veterinary Technicians'),
(42710, 'https://ror.org/052tv0w45', 'en', 1, 'https://ror.org/052tv0w45 Almond Board of California'),
(42711, 'https://ror.org/04tqjn232', 'fr', 1, 'https://ror.org/04tqjn232 Association des Médecins Vétérinaires du Québec'),
(42712, 'https://ror.org/04hcr0j14', 'en', 1, 'https://ror.org/04hcr0j14 Nebraska Bankers Association'),
(42713, 'https://ror.org/048saf111', 'en', 1, 'https://ror.org/048saf111 California Library Association'),
(42714, 'https://ror.org/05hk0hn26', 'en', 1, 'https://ror.org/05hk0hn26 European Hematology Association'),
(42715, 'https://ror.org/028ds0f65', 'en', 1, 'https://ror.org/028ds0f65 American Society of Heating, Refrigerating, and Air-Conditioning Engineers'),
(42716, 'https://ror.org/04j0s0m53', 'en', 1, 'https://ror.org/04j0s0m53 American Society of Primatologists'),
(42717, 'https://ror.org/02ht8gz29', 'en', 1, 'https://ror.org/02ht8gz29 American College of Veterinary Internal Medicine'),
(42718, 'https://ror.org/04bam1s60', 'en', 1, 'https://ror.org/04bam1s60 Illinois Ornithological Society'),
(42719, 'https://ror.org/01jtx4m19', 'en', 1, 'https://ror.org/01jtx4m19 Central Society for Clinical and Translational Research'),
(42720, 'https://ror.org/05n4r9n98', 'en', 1, 'https://ror.org/05n4r9n98 St. Louis American Parkinson Disease Association'),
(42721, 'https://ror.org/05a8c4g41', 'en', 1, 'https://ror.org/05a8c4g41 American Nephrology Nurses Association'),
(42722, 'https://ror.org/03wa5t726', 'en', 1, 'https://ror.org/03wa5t726 Kansas Grain Sorghum Commission and Producers Association'),
(42723, 'https://ror.org/03b44vb62', 'en', 1, 'https://ror.org/03b44vb62 Regional Studies Association'),
(42724, 'https://ror.org/043td6439', 'en', 1, 'https://ror.org/043td6439 American Association of University Professors'),
(42725, 'https://ror.org/04pb25098', 'en', 1, 'https://ror.org/04pb25098 Progressive Osseous Heteroplasia Association'),
(42726, 'https://ror.org/03pjj5012', 'en', 1, 'https://ror.org/03pjj5012 National Association of Broadcasters'),
(42727, 'https://ror.org/01wqc8n07', 'en', 1, 'https://ror.org/01wqc8n07 British Orthopaedic Association'),
(42728, 'https://ror.org/02h5yd368', 'en', 1, 'https://ror.org/02h5yd368 Sexual Medicine Society of North America'),
(42729, 'https://ror.org/02chfyt80', 'en', 1, 'https://ror.org/02chfyt80 Canadian Society for Vascular Surgery'),
(42730, 'https://ror.org/03zn9xn73', 'en', 1, 'https://ror.org/03zn9xn73 Society of Actuaries'),
(42731, 'https://ror.org/0400j8512', 'en', 1, 'https://ror.org/0400j8512 Eye Bank Association of America'),
(42732, 'https://ror.org/03xxbcc33', 'en', 1, 'https://ror.org/03xxbcc33 Essex Disabled People''s Association'),
(42733, 'https://ror.org/043cb6104', 'en', 1, 'https://ror.org/043cb6104 Oklahoma Biological Survey'),
(42734, 'https://ror.org/03ksx7604', 'en', 1, 'https://ror.org/03ksx7604 Association of Academic Physiatrists'),
(42735, 'https://ror.org/03abgds10', 'en', 1, 'https://ror.org/03abgds10 Administrative Sciences Association of Canada Association des sciences administratives du Canada'),
(42736, 'https://ror.org/02reep516', 'en', 1, 'https://ror.org/02reep516 Association of Military Surgeons of the United States'),
(42737, 'https://ror.org/01mcq6w80', 'en', 1, 'https://ror.org/01mcq6w80 Society for Marine Mammalogy'),
(42738, 'https://ror.org/01w7zp119', 'en', 1, 'https://ror.org/01w7zp119 New York State Psychological Association'),
(42739, 'https://ror.org/00y3fw422', 'en', 1, 'https://ror.org/00y3fw422 Boston Society of Architects'),
(42740, 'https://ror.org/02zwd6322', 'en', 1, 'https://ror.org/02zwd6322 Australian Acoustical Society'),
(42741, 'https://ror.org/04e5cyn06', 'en', 1, 'https://ror.org/04e5cyn06 Agricultural & Applied Economics Association'),
(42742, 'https://ror.org/026p0h140', 'en', 1, 'https://ror.org/026p0h140 Australian Society of Orthodontists'),
(42743, 'https://ror.org/0486xr381', 'en', 1, 'https://ror.org/0486xr381 Filson Historical Society'),
(42744, 'https://ror.org/027w9yg20', 'en', 1, 'https://ror.org/027w9yg20 Society for Human Resource Management'),
(42745, 'https://ror.org/04rwyne07', 'en', 1, 'https://ror.org/04rwyne07 Saving Tiny Hearts Society'),
(42746, 'https://ror.org/039tpj237', 'en', 1, 'https://ror.org/039tpj237 ACT Herpetological Association'),
(42747, 'https://ror.org/037ar5g91', 'en', 1, 'https://ror.org/037ar5g91 American Cleft Palate-Craniofacial Association'),
(42748, 'https://ror.org/00gm6mv51', 'en', 1, 'https://ror.org/00gm6mv51 Sleep Research Society'),
(42749, 'https://ror.org/01f0mje62', 'en', 1, 'https://ror.org/01f0mje62 American Medical Women''s Association'),
(42750, 'https://ror.org/00kbped59', 'es', 1, 'https://ror.org/00kbped59 Asociación Española para el Estudio del Hígado'),
(42751, 'https://ror.org/035m9ft70', 'en', 1, 'https://ror.org/035m9ft70 Heart Rhythm Society'),
(42752, 'https://ror.org/03vezy923', 'en', 1, 'https://ror.org/03vezy923 American Society for Theatre Research'),
(42753, 'https://ror.org/035mcxx74', 'en', 1, 'https://ror.org/035mcxx74 Kungl. Vetenskaps- och Vitterhets-samhället i Göteborg Royal Society of Sciences and Letters in Gothenburg'),
(42754, 'https://ror.org/00wxsmn74', 'en', 1, 'https://ror.org/00wxsmn74 Canadian Library Association'),
(42755, 'https://ror.org/03fkqty89', 'en', 1, 'https://ror.org/03fkqty89 Japanese Society of Clinical Neuropsychopharmacology 日本臨床精神神経薬理学会'),
(42756, 'https://ror.org/02zn32y15', 'it', 1, 'https://ror.org/02zn32y15 Associazione Italiana Lotta al Neuroblastoma'),
(42757, 'https://ror.org/04z6q9z55', 'fr', 1, 'https://ror.org/04z6q9z55 Sidaction'),
(42758, 'https://ror.org/03atav620', 'en', 1, 'https://ror.org/03atav620 Canadian Association of University Teachers'),
(42759, 'https://ror.org/02cbrh206', 'en', 1, 'https://ror.org/02cbrh206 American Pharmacists Association'),
(42760, 'https://ror.org/01fmd5559', 'en', 1, 'https://ror.org/01fmd5559 British Deer Society'),
(42761, 'https://ror.org/036jhjy94', 'en', 1, 'https://ror.org/036jhjy94 Australasian Speech Science and Technology Association'),
(42762, 'https://ror.org/05wt8ay40', 'en', 1, 'https://ror.org/05wt8ay40 Canadian Society of Petroleum Geologists'),
(42763, 'https://ror.org/00zevg885', 'en', 1, 'https://ror.org/00zevg885 International Bone Research Association'),
(42764, 'https://ror.org/05w3e2p73', 'en', 1, 'https://ror.org/05w3e2p73 Manuscript Society'),
(42765, 'https://ror.org/008421332', 'en', 1, 'https://ror.org/008421332 NBIA Disorders Association'),
(42766, 'https://ror.org/04gv4zs18', 'en', 1, 'https://ror.org/04gv4zs18 Anglo-Israel Association'),
(42767, 'https://ror.org/0490fjq98', 'sv', 1, 'https://ror.org/0490fjq98 Svenska Jägareförbundet'),
(42768, 'https://ror.org/00bpw5437', 'en', 1, 'https://ror.org/00bpw5437 Arthritis Society'),
(42769, 'https://ror.org/00zm1cx92', 'en', 1, 'https://ror.org/00zm1cx92 Jamestowne Society'),
(42770, 'https://ror.org/05h0qwt23', 'en', 1, 'https://ror.org/05h0qwt23 Art Libraries Society'),
(42771, 'https://ror.org/01vekj030', 'en', 1, 'https://ror.org/01vekj030 North Carolina Nursery and Landscape Association'),
(42772, 'https://ror.org/05h8amp43', 'en', 1, 'https://ror.org/05h8amp43 Japan China Medical Association 日本中国医学協会'),
(42773, 'https://ror.org/00cdwab02', 'en', 1, 'https://ror.org/00cdwab02 Children’s Literature Association'),
(42774, 'https://ror.org/032hv5121', 'en', 1, 'https://ror.org/032hv5121 Association for the Study of Animal Behaviour'),
(42775, 'https://ror.org/027q4m113', 'en', 1, 'https://ror.org/027q4m113 National Association for Armenian Studies and Research'),
(42776, 'https://ror.org/009bczc36', 'ca', 1, 'https://ror.org/009bczc36 Societat Catalana d''Oftalmologia'),
(42777, 'https://ror.org/05n4fyj34', 'en', 1, 'https://ror.org/05n4fyj34 Pi Gamma Mu'),
(42778, 'https://ror.org/03bm7y961', 'en', 1, 'https://ror.org/03bm7y961 Association of Medical Research Charities'),
(42779, 'https://ror.org/0500gae26', 'en', 1, 'https://ror.org/0500gae26 La Société géographique royale du Canada Royal Canadian Geographical Society'),
(42780, 'https://ror.org/05az4xw46', 'en', 1, 'https://ror.org/05az4xw46 Bibliographical Society'),
(42781, 'https://ror.org/051mryw61', 'en', 1, 'https://ror.org/051mryw61 Entomological Society of Canada Société d’Entomologie du Canada'),
(42782, 'https://ror.org/003kz5h76', 'en', 1, 'https://ror.org/003kz5h76 Association of Management Consulting Firms'),
(42783, 'https://ror.org/05f73a827', 'en', 1, 'https://ror.org/05f73a827 Canadian Pain Society'),
(42784, 'https://ror.org/00cq3qn16', 'en', 1, 'https://ror.org/00cq3qn16 Beijing Institute of Geology for Mineral Resources 北京矿产地质研究院 京I'),
(42785, 'https://ror.org/01rd01t06', 'en', 1, 'https://ror.org/01rd01t06 Academy of Sciences and Humanities in Hamburg Akademie der Wissenschaften in Hamburg'),
(42786, 'https://ror.org/02hdxnq28', 'de', 1, 'https://ror.org/02hdxnq28 Deutsches Schiffahrtsmuseum German Maritime Museum'),
(42787, 'https://ror.org/04gmcat66', 'no_lang_code', 1, 'https://ror.org/04gmcat66 BioTez (Germany)'),
(42788, 'https://ror.org/03t47sr41', 'en', 1, 'https://ror.org/03t47sr41 Xinjiang Uygur Autonomous Region Uygur Medicine Hospital 新疆维吾尔自治区维吾尔医医院'),
(42789, 'https://ror.org/031kyph18', 'de', 1, 'https://ror.org/031kyph18 Gottfried-Wilhelm-Leibniz-Gesellschaft'),
(42790, 'https://ror.org/0192j7z55', 'en', 1, 'https://ror.org/0192j7z55 Zhejiang Industry Polytechnic College 浙江工业职业技术学院'),
(42791, 'https://ror.org/03gjpvv92', 'en', 1, 'https://ror.org/03gjpvv92 Halle Institute for Economic Research Leibniz-Institut für Wirtschaftsforschung Halle'),
(42792, 'https://ror.org/03w9z9x42', 'en', 1, 'https://ror.org/03w9z9x42 Ashland Community and Technical College'),
(42793, 'https://ror.org/00z6n3z58', 'en', 1, 'https://ror.org/00z6n3z58 Maricopa Community Colleges - Glendale Community College'),
(42794, 'https://ror.org/01r4sa504', 'en', 1, 'https://ror.org/01r4sa504 Institut für Lebensmittel- und Umweltforschung Institute for Food and Environmental Research'),
(42795, 'https://ror.org/00s5yp124', 'en', 1, 'https://ror.org/00s5yp124 Fraunhofer Institute for Integrated Circuits IIS, Division Engineering of Adaptive Systems EAS Fraunhofer-Institut für Integrierte Schaltungen IIS, Institutsteil Entwicklung Adaptiver Systeme EAS'),
(42796, 'https://ror.org/01351nn19', 'en', 1, 'https://ror.org/01351nn19 Hunan Sports Bureau 湖南省体育局'),
(42797, 'https://ror.org/04bvdz568', 'en', 1, 'https://ror.org/04bvdz568 Union der deutschen Akademien der Wissenschaften Union of the German Academies of Sciences and Humanities'),
(42798, 'https://ror.org/04mdy6t91', 'no_lang_code', 1, 'https://ror.org/04mdy6t91 OAO VNIPIneft (Russia) Научно-исследовательский и проектный институт нефтеперерабатывающей и нефтехимической промышленности ОАО "ВНИПИнефть"'),
(42799, 'https://ror.org/00nj92d70', 'en', 1, 'https://ror.org/00nj92d70 Aaron Marcus and Associates'),
(42800, 'https://ror.org/05s2dce75', 'no_lang_code', 1, 'https://ror.org/05s2dce75 Center for Information and Numerical Data Analysis and Synthesis (United States)'),
(42801, 'https://ror.org/04jc92q85', 'en', 1, 'https://ror.org/04jc92q85 Academy of Marketing Science'),
(42802, 'https://ror.org/0563dqj82', 'no_lang_code', 1, 'https://ror.org/0563dqj82 Landesgewerbeanstalt Bayern (Germany)'),
(42803, 'https://ror.org/01gq10q51', 'de', 1, 'https://ror.org/01gq10q51 Akademie für Technikfolgenabschätzung'),
(42804, 'https://ror.org/02kzqwr97', 'no_lang_code', 1, 'https://ror.org/02kzqwr97 Becton Dickinson (Germany)'),
(42805, 'https://ror.org/05fe3fx56', 'de', 1, 'https://ror.org/05fe3fx56 Chirurgische Universitätsklinik Heidelberg'),
(42806, 'https://ror.org/011ts7939', 'de', 1, 'https://ror.org/011ts7939 Berufsgenossenschaft Rohstoffe und chemische Industrie'),
(42807, 'https://ror.org/03zqxr976', 'en', 1, 'https://ror.org/03zqxr976 Jiangsu Provincial Institute of Geological Survey 江苏省地质调查研究院'),
(42808, 'https://ror.org/00gcbxk06', 'en', 1, 'https://ror.org/00gcbxk06 All-Russian Electrotechnical Institute named after V.I.Lenin Всероссийский электротехнический институт им. В.И. Ленина'),
(42809, 'https://ror.org/0044cjb29', 'no_lang_code', 1, 'https://ror.org/0044cjb29 Clinical Investigation Support (Austria)'),
(42810, 'https://ror.org/03g38jf25', 'en', 1, 'https://ror.org/03g38jf25 All-Russian Research Institute for Optical and Physical Measurements Всероссийский научно-исследовательский институт оптико-физических измерений'),
(42811, 'https://ror.org/00kbwx014', 'en', 1, 'https://ror.org/00kbwx014 Blended Solutions'),
(42812, 'https://ror.org/022hg5v70', 'en', 1, 'https://ror.org/022hg5v70 Chicago Neuropsychology Group'),
(42813, 'https://ror.org/05prsqx18', 'no_lang_code', 1, 'https://ror.org/05prsqx18 Bohn Stafleu van Loghum (Netherlands)'),
(42814, 'https://ror.org/03a5vm896', 'en', 1, 'https://ror.org/03a5vm896 All-Russia Thermal Engineering Institute Всероссийский Теплотехнический Институт'),
(42815, 'https://ror.org/01r10sk82', 'en', 1, 'https://ror.org/01r10sk82 China Academy of Printing Technology 中国印刷科学技术研究所'),
(42816, 'https://ror.org/05s44bn67', 'en', 1, 'https://ror.org/05s44bn67 Cook County Sheriff''s Office'),
(42817, 'https://ror.org/02phsd572', 'no_lang_code', 1, 'https://ror.org/02phsd572 Covance (Germany)'),
(42818, 'https://ror.org/047456960', 'en', 1, 'https://ror.org/047456960 Broome County Health Department'),
(42819, 'https://ror.org/05y8c9413', 'no_lang_code', 1, 'https://ror.org/05y8c9413 SK Communications (South Korea) 에스케이커뮤니케이션즈'),
(42820, 'https://ror.org/00cwr8424', 'no_lang_code', 1, 'https://ror.org/00cwr8424 Gad Consulting Services (United States)'),
(42821, 'https://ror.org/03z8jm198', 'en', 1, 'https://ror.org/03z8jm198 Herzberg Institute of Astrophysics'),
(42822, 'https://ror.org/00ew91p29', 'en', 1, 'https://ror.org/00ew91p29 Deutsche Gesellschaft für Chirurgie German Society of Surgery'),
(42823, 'https://ror.org/03220m208', 'en', 1, 'https://ror.org/03220m208 German Informatics Society Gesellschaft für Informatik'),
(42824, 'https://ror.org/04rtn5y32', 'en', 1, 'https://ror.org/04rtn5y32 Forschungsinstitut für Kraftfahrwesen und Fahrzeugmotoren Stuttgart Research Institute of Automotive Engineering and Vehicle Engines Stuttgart'),
(42825, 'https://ror.org/02g7va395', 'en', 1, 'https://ror.org/02g7va395 European Space Policy Institute Europäisches Institut für Weltraumpolitik'),
(42826, 'https://ror.org/032khhz22', 'no_lang_code', 1, 'https://ror.org/032khhz22 Exascale (United Kingdom)'),
(42827, 'https://ror.org/02srvrw14', 'no_lang_code', 1, 'https://ror.org/02srvrw14 Galapagos (Croatia)'),
(42828, 'https://ror.org/05knq2v25', 'no_lang_code', 1, 'https://ror.org/05knq2v25 Francotyp Postalia (Germany)'),
(42829, 'https://ror.org/045skzd42', 'en', 1, 'https://ror.org/045skzd42 Fujian Provincial Administration of Press, Publication, Radio, Film and Television 福建省新闻出版广电'),
(42830, 'https://ror.org/04exgek62', 'en', 1, 'https://ror.org/04exgek62 International Training Centre of the ILO'),
(42831, 'https://ror.org/000jzpp78', 'en', 1, 'https://ror.org/000jzpp78 International University in Germany'),
(42832, 'https://ror.org/05b9xma73', 'de', 1, 'https://ror.org/05b9xma73 Bergmann und Partner Rechtsanwälte'),
(42833, 'https://ror.org/01a58zy03', 'de', 1, 'https://ror.org/01a58zy03 Blanke Meier Evers Rechtsanwälte in Partnerschaft'),
(42834, 'https://ror.org/03dhqyc75', 'en', 1, 'https://ror.org/03dhqyc75 Islamic Azad University, Lahijan Branch دانشگاه آزاد اسلامي واحد لاهيجان'),
(42835, 'https://ror.org/01wzyqj69', 'no_lang_code', 1, 'https://ror.org/01wzyqj69 Kerkhoff Consulting (Germany)'),
(42836, 'https://ror.org/0394aqe83', 'en', 1, 'https://ror.org/0394aqe83 KES International'),
(42837, 'https://ror.org/03cxf6q40', 'no_lang_code', 1, 'https://ror.org/03cxf6q40 Jain PharmaBiotech (Switzerland)'),
(42838, 'https://ror.org/00qrfm413', 'en', 1, 'https://ror.org/00qrfm413 Institute for Expressive Analysis'),
(42839, 'https://ror.org/00gh9ef15', 'en', 1, 'https://ror.org/00gh9ef15 Japan Association for International Chemical Information 化学情報協会'),
(42840, 'https://ror.org/00x2kxt49', 'en', 1, 'https://ror.org/00x2kxt49 Institute for Futures Studies Institutet för Framtidsstudier'),
(42841, 'https://ror.org/03asesc74', 'en', 1, 'https://ror.org/03asesc74 International Association of Engineers'),
(42842, 'https://ror.org/02wqfz680', 'nl', 1, 'https://ror.org/02wqfz680 Maatschappij tot Redding van Drenkelingen'),
(42843, 'https://ror.org/013kgb629', 'en', 1, 'https://ror.org/013kgb629 Machine Intelligence Research Labs'),
(42844, 'https://ror.org/00c8rjz37', 'en', 1, 'https://ror.org/00c8rjz37 Mansoura University Hospital'),
(42845, 'https://ror.org/01s0p2f24', 'en', 1, 'https://ror.org/01s0p2f24 Michalski Huettermann and Partner Michalski Hüttermann & Partner Patentanwälte'),
(42846, 'https://ror.org/05k6zrs81', 'no_lang_code', 1, 'https://ror.org/05k6zrs81 Metallurgical Corporation of China (China) 中国冶金科工股份有限公司'),
(42847, 'https://ror.org/03fj5w909', 'en', 1, 'https://ror.org/03fj5w909 International Laboratory of High Magnetic Fields and Low Temperatures Międzynarodowego Laboratorium Silnych Pól Magnetycznych i Niskich Temperatur'),
(42848, 'https://ror.org/03mxqcg82', 'en', 1, 'https://ror.org/03mxqcg82 Flughafen Leipzig/Halle Leipzig/Halle Airport'),
(42849, 'https://ror.org/007h0zf03', 'en', 1, 'https://ror.org/007h0zf03 National Institute for Educational Policy Research 国立教育政策研究所'),
(42850, 'https://ror.org/03fyf9c76', 'no_lang_code', 1, 'https://ror.org/03fyf9c76 McKinsey & Company (Germany)'),
(42851, 'https://ror.org/0579a8137', 'en', 1, 'https://ror.org/0579a8137 National Institute for the Psychotherapies'),
(42852, 'https://ror.org/00b65kj58', 'no_lang_code', 1, 'https://ror.org/00b65kj58 MPDV Mikrolab (Germany)'),
(42853, 'https://ror.org/023kbw492', 'en', 1, 'https://ror.org/023kbw492 Pittsburgh Psychoanalytic Center'),
(42854, 'https://ror.org/04hbnm423', 'en', 1, 'https://ror.org/04hbnm423 MUFG Union Bank'),
(42855, 'https://ror.org/02168y314', 'no_lang_code', 1, 'https://ror.org/02168y314 Rail Vision (United Kingdom)'),
(42856, 'https://ror.org/026t6sy78', 'no_lang_code', 1, 'https://ror.org/026t6sy78 GlaxoSmithKline (Croatia)'),
(42857, 'https://ror.org/04cx2cg45', 'no_lang_code', 1, 'https://ror.org/04cx2cg45 Neoanalysis (Greece) ΝΕΟΑΝΑΛΥΣΙΣ'),
(42858, 'https://ror.org/03tre1g84', 'en', 1, 'https://ror.org/03tre1g84 Arbeitsgruppe Friedensforschung und Europäische Sicherheitspolitik Peace Research and European Security Studies'),
(42859, 'https://ror.org/03ext6r62', 'en', 1, 'https://ror.org/03ext6r62 All-Russian Research Institute for Oil Refining Всероссийский научно-исследовательский институт по переработке нефти'),
(42860, 'https://ror.org/03m823837', 'no_lang_code', 1, 'https://ror.org/03m823837 Magnezit (Russia) Магнезита'),
(42861, 'https://ror.org/05c9p5b07', 'no_lang_code', 1, 'https://ror.org/05c9p5b07 East Institute Refractories (Russia) Восточный институт огнеупоров'),
(42862, 'https://ror.org/05515rj28', 'en', 1, 'https://ror.org/05515rj28 C.Yu.Yunusov Nomidagi O’simlik Moddalari Kimyosi Instituti Yunusov Institute of the Chemistry of Plant Substances Институт химии растительных веществ им. акад. С.Ю. Юнусова Академии Наук Республики Узбекистан'),
(42863, 'https://ror.org/05cfz8m13', 'en', 1, 'https://ror.org/05cfz8m13 L.V. Pisarzhevskii Institute of Physical Chemistry ІНСТИТУТ ФІЗИЧНОЇ ХІМІЇ ІМЕНІ Л. В. ПИСАРЖЕВСЬКОГО НАЦІОНАЛЬНОЇ АКАДЕМІЇ НАУК УКРАЇНИ'),
(42864, 'https://ror.org/003agka18', 'en', 1, 'https://ror.org/003agka18 Search Institute'),
(42865, 'https://ror.org/02pbw9e07', 'no_lang_code', 1, 'https://ror.org/02pbw9e07 Nomad Bioscience (Germany)'),
(42866, 'https://ror.org/046m94028', 'it', 1, 'https://ror.org/046m94028 Associazione Italiana Arbitri'),
(42867, 'https://ror.org/03efa9j76', 'en', 1, 'https://ror.org/03efa9j76 Solid State Physics Laboratory ठोसावस्था भौतिकी प्रयोगशाला'),
(42868, 'https://ror.org/01gb59s19', 'no_lang_code', 1, 'https://ror.org/01gb59s19 SGS (China)'),
(42869, 'https://ror.org/0313mbq66', 'de', 1, 'https://ror.org/0313mbq66 Sukkulenten-Sammlung Zürich'),
(42870, 'https://ror.org/053ae3r23', 'en', 1, 'https://ror.org/053ae3r23 Schweizerischer Versicherungsverband Swiss Insurance Association'),
(42871, 'https://ror.org/01vj25w90', 'en', 1, 'https://ror.org/01vj25w90 Indian Institute of Metals'),
(42872, 'https://ror.org/03ftwc024', 'en', 1, 'https://ror.org/03ftwc024 Marienhospital Arnsberg'),
(42873, 'https://ror.org/02vfzhm25', 'de', 1, 'https://ror.org/02vfzhm25 Barmherzige Schwestern vom heiligen Kreuz'),
(42874, 'https://ror.org/03646q924', 'en', 1, 'https://ror.org/03646q924 The Ohio State University at Marion'),
(42875, 'https://ror.org/00gw6fh23', 'de', 1, 'https://ror.org/00gw6fh23 Klinikum Hanau'),
(42876, 'https://ror.org/05sw6n724', 'no_lang_code', 1, 'https://ror.org/05sw6n724 Right Way (Germany)'),
(42877, 'https://ror.org/04p57n726', 'en', 1, 'https://ror.org/04p57n726 Research Institute of Ceramics НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ КЕРАМИКИ'),
(42878, 'https://ror.org/055j23398', 'en', 1, 'https://ror.org/055j23398 Gersevanov Research Institute of Bases and Underground Structures Научно-исследовательский, проектно-изыскательский и конструкторско-технологический институт оснований и подземных сооружений'),
(42879, 'https://ror.org/001g9ww12', 'no_lang_code', 1, 'https://ror.org/001g9ww12 NIIGrafit НИИграфит'),
(42880, 'https://ror.org/00rs5qv51', 'en', 1, 'https://ror.org/00rs5qv51 Institut de Recherche des Nations Unies pour le Développement Social United Nations Research Institute for Social Development'),
(42881, 'https://ror.org/01t6wa381', 'en', 1, 'https://ror.org/01t6wa381 State Research Institute of Organic Chemistry and Technology Федеральное государственное унитарное предприятие «Государственный научно-исследовательский институт органической химии и технологии»'),
(42882, 'https://ror.org/016myq798', 'en', 1, 'https://ror.org/016myq798 American Committee for the Weizmann Institute of Science'),
(42883, 'https://ror.org/059q0y753', 'no_lang_code', 1, 'https://ror.org/059q0y753 Beijing Seismological Bureau 北京市地震局'),
(42884, 'https://ror.org/05yk66715', 'en', 1, 'https://ror.org/05yk66715 World Phenomenology Institute'),
(42885, 'https://ror.org/005j0cx32', 'de', 1, 'https://ror.org/005j0cx32 Augenklinik Heidelberg'),
(42886, 'https://ror.org/00f6d9d53', 'en', 1, 'https://ror.org/00f6d9d53 House of Representatives Tweede Kamer der Staten-Generaal'),
(42887, 'https://ror.org/01en4s460', 'en', 1, 'https://ror.org/01en4s460 Twin Cities Orthopedics'),
(42888, 'https://ror.org/02js38076', 'de', 1, 'https://ror.org/02js38076 Frauenklinik Heidelberg'),
(42889, 'https://ror.org/023m9rp24', 'de', 1, 'https://ror.org/023m9rp24 Hautklinik Heidelberg'),
(42890, 'https://ror.org/0246zee65', 'de', 1, 'https://ror.org/0246zee65 Hals- Nasen- und Ohrenklinik Gießen'),
(42891, 'https://ror.org/0573nm953', 'en', 1, 'https://ror.org/0573nm953 Ukrainian Research Institute of Refractories named after A.S. Berezhnoy Український науково-дослідний інститут вогнетривів'),
(42892, 'https://ror.org/037tkh273', 'de', 1, 'https://ror.org/037tkh273 Universitätsklinik für Hals-, Nasen- und Ohrenheilkunde'),
(42893, 'https://ror.org/04qfsp079', 'en', 1, 'https://ror.org/04qfsp079 Universal Management Services'),
(42894, 'https://ror.org/0342jc255', 'en', 1, 'https://ror.org/0342jc255 Volgograd Institute of Business Волгоградский институт бизнеса'),
(42895, 'https://ror.org/03941w909', 'de', 1, 'https://ror.org/03941w909 Zentrum für Kinderheilkunde'),
(42896, 'https://ror.org/009nhnc47', 'de', 1, 'https://ror.org/009nhnc47 Klinik und Poliklinik für Hals-, Nasen-, Ohrenheilkunde'),
(42897, 'https://ror.org/03vc23h03', 'no_lang_code', 1, 'https://ror.org/03vc23h03 Wireilla Scientific Publications (Australia)'),
(42898, 'https://ror.org/00zfe1b87', 'de', 1, 'https://ror.org/00zfe1b87 Zentralklinik Bad Berka'),
(42899, 'https://ror.org/01wcyhn95', 'en', 1, 'https://ror.org/01wcyhn95 NRAD Medical Associates'),
(42900, 'https://ror.org/03v7d3233', 'de', 1, 'https://ror.org/03v7d3233 Tumor- und Brustzentrum ZeTuP Silberturm'),
(42901, 'https://ror.org/038dfxb83', 'en', 1, 'https://ror.org/038dfxb83 Traditional Chinese Medicine Hospital of Kunshan'),
(42902, 'https://ror.org/005b4rt94', 'en', 1, 'https://ror.org/005b4rt94 Jung Tao School of Classical Chinese Medicine'),
(42903, 'https://ror.org/022598c22', 'en', 1, 'https://ror.org/022598c22 University of Maryland University College Europe'),
(42904, 'https://ror.org/01m5tj961', 'en', 1, 'https://ror.org/01m5tj961 Villa Maria College'),
(42905, 'https://ror.org/02m5vr132', 'en', 1, 'https://ror.org/02m5vr132 Philips College'),
(42906, 'https://ror.org/01fbc7819', 'fr', 1, 'https://ror.org/01fbc7819 Centre Hospitalier de Lens'),
(42907, 'https://ror.org/03e8zd719', 'en', 1, 'https://ror.org/03e8zd719 Sh''or Yoshuv Institute'),
(42908, 'https://ror.org/02j1xaz06', 'en', 1, 'https://ror.org/02j1xaz06 Hospital Agioi Anargyroi'),
(42909, 'https://ror.org/04yrcjm56', 'en', 1, 'https://ror.org/04yrcjm56 Second Affiliated Hospital of Xuzhou Medical College 徐州医学院第二附属医院'),
(42910, 'https://ror.org/04d951341', 'en', 1, 'https://ror.org/04d951341 International Cosmetology College Starptautiskā Kosmetoloģijas koledža'),
(42911, 'https://ror.org/045mf8339', 'en', 1, 'https://ror.org/045mf8339 Southwestern Christian College'),
(42912, 'https://ror.org/01m06ya33', 'en', 1, 'https://ror.org/01m06ya33 Shanxi Province Hospital of Traditional Chinese Medicine'),
(42913, 'https://ror.org/010z8j306', 'en', 1, 'https://ror.org/010z8j306 Daqing City People''s Hospital'),
(42914, 'https://ror.org/055t9t204', 'et', 1, 'https://ror.org/055t9t204 Informaatika ja Arvutustehnika Instituut Институт информатики и вычислительной техники'),
(42915, 'https://ror.org/052ay7p78', 'en', 1, 'https://ror.org/052ay7p78 Bệnh viện Phổi HàNội Hanoi Lung Hospital'),
(42916, 'https://ror.org/02sx09p05', 'en', 1, 'https://ror.org/02sx09p05 Hegang People''s Hospital 鹤岗市人民医院'),
(42917, 'https://ror.org/01fy36683', 'no', 1, 'https://ror.org/01fy36683 Revmatismesykehuset'),
(42918, 'https://ror.org/021jj0v07', 'pl', 1, 'https://ror.org/021jj0v07 The School of Higher Education in Humanities of the Association for Adult Education Wyższa Szkoła Humanistyczna Towarzystwa Wiedzy Powszechnej'),
(42919, 'https://ror.org/007r42p71', 'en', 1, 'https://ror.org/007r42p71 Rabindranath Tagore Medical College'),
(42920, 'https://ror.org/03tkypj50', 'en', 1, 'https://ror.org/03tkypj50 Gyeongsan Science High School 경산과학고등학교'),
(42921, 'https://ror.org/01tkb3y54', 'en', 1, 'https://ror.org/01tkb3y54 GISMA Business School'),
(42922, 'https://ror.org/00g6dr962', 'lt', 1, 'https://ror.org/00g6dr962 Klaipėdos Verslo Aukštoji Mokykla'),
(42923, 'https://ror.org/005mjtj84', 'pl', 1, 'https://ror.org/005mjtj84 Niepubliczna Wyższa Szkoła Medyczna'),
(42924, 'https://ror.org/00y1a8425', 'en', 1, 'https://ror.org/00y1a8425 Zhukovsky Air Force Engineering Academy Военно-воздушная инженерная академия имени профессора Н. Е. Жуковского'),
(42925, 'https://ror.org/02neh0644', 'en', 1, 'https://ror.org/02neh0644 Union School of Theology'),
(42926, 'https://ror.org/0321nq926', 'en', 1, 'https://ror.org/0321nq926 Association of University Centers on Disabilities'),
(42927, 'https://ror.org/00vy7ed73', 'en', 1, 'https://ror.org/00vy7ed73 Turku Centre for Computer Science Turun tietotekniikan tutkimus- ja koulutuskeskus Åbo datatekniska forsknings- och utbildningscentrum'),
(42928, 'https://ror.org/03fkb6t85', 'en', 1, 'https://ror.org/03fkb6t85 GrAT - Center for Appropriate Technology Gruppe zur Förderung der Angepasste Technologie'),
(42929, 'https://ror.org/02z1v6961', 'it', 1, 'https://ror.org/02z1v6961 Consorzio per il Centro Interuniversitario di Biologia Marina ed Ecologia Applicata G. Bacci'),
(42930, 'https://ror.org/03x43h020', 'en', 1, 'https://ror.org/03x43h020 Changchun Children''s Hospital 长春市儿童医院'),
(42931, 'https://ror.org/03jzx6k15', 'tr', 1, 'https://ror.org/03jzx6k15 Manisa Celal Bayar Üniversitesi Hafsa Sultan Hastanesi'),
(42932, 'https://ror.org/03wm7z656', 'en', 1, 'https://ror.org/03wm7z656 Commission géologique du Canada Geological Survey of Canada'),
(42933, 'https://ror.org/04z1myv13', 'es', 1, 'https://ror.org/04z1myv13 Comfenalco Technological University Foundation Fundación Universitaria Tecnológico Comfenalco Cartagena'),
(42934, 'https://ror.org/042662w35', 'es', 1, 'https://ror.org/042662w35 Instituto Nicaragüense de Estudios Territoriales'),
(42935, 'https://ror.org/012set728', 'en', 1, 'https://ror.org/012set728 Kandilli Observatory and Earthquake Research Institute Kandilli Rasathanesi ve Deprem Araştırma Enstitüsü'),
(42936, 'https://ror.org/00h8b7583', 'en', 1, 'https://ror.org/00h8b7583 National Tsunami Warning Center'),
(42937, 'https://ror.org/04mjv5x61', 'de', 1, 'https://ror.org/04mjv5x61 Oberlandesgericht Stuttgart'),
(42938, 'https://ror.org/01ze6tn69', 'no_lang_code', 1, 'https://ror.org/01ze6tn69 Maharaj Nakorn Chiang Mai Hospital โรงพยาบาลมหาราชนครเชียงใหม่'),
(42939, 'https://ror.org/002degh13', 'en', 1, 'https://ror.org/002degh13 Fatih University Medical Faculty Hospital Fatih Üniversitesi Tıp Fakültesi Hastanesi'),
(42940, 'https://ror.org/05s3b4196', 'en', 1, 'https://ror.org/05s3b4196 Hirosaki University Hospital 弘前大学医学部附属病院'),
(42941, 'https://ror.org/038dg9e86', 'en', 1, 'https://ror.org/038dg9e86 Hiroshima University Hospital 広島大学病院'),
(42942, 'https://ror.org/03zkbs573', 'en', 1, 'https://ror.org/03zkbs573 Seismological Society of America'),
(42943, 'https://ror.org/04wyk9691', 'en', 1, 'https://ror.org/04wyk9691 Cascades Volcano Observatory'),
(42944, 'https://ror.org/02czd3h93', 'en', 1, 'https://ror.org/02czd3h93 The Jikei University Hospital 東京慈恵会医科大学附属病院'),
(42945, 'https://ror.org/02qhp8q93', 'tr', 1, 'https://ror.org/02qhp8q93 Gazi Hastanesi'),
(42946, 'https://ror.org/00vxbe865', 'en', 1, 'https://ror.org/00vxbe865 Northern Maine Community College'),
(42947, 'https://ror.org/02a7zgk95', 'en', 1, 'https://ror.org/02a7zgk95 Sapporo Medical University Hospital 札幌医科大学附属病院'),
(42948, 'https://ror.org/038231w93', 'en', 1, 'https://ror.org/038231w93 Stanground Academy'),
(42949, 'https://ror.org/02bf6bf07', 'en', 1, 'https://ror.org/02bf6bf07 Nippon Dental University Hospital 日本歯科大学附属病院'),
(42950, 'https://ror.org/01nnwyz44', 'en', 1, 'https://ror.org/01nnwyz44 Shanghai Public Health Clinical Center 公共卫生临床中心'),
(42951, 'https://ror.org/041q3q398', 'en', 1, 'https://ror.org/041q3q398 Nnamdi Azikiwe University Teaching Hospital'),
(42952, 'https://ror.org/01xmeqq94', 'no_lang_code', 1, 'https://ror.org/01xmeqq94 Kowsar Hospital کوثر شیراز'),
(42953, 'https://ror.org/00mre2126', 'en', 1, 'https://ror.org/00mre2126 Toho University Ohashi Medical Center 東邦大学医療センター大橋病院'),
(42954, 'https://ror.org/02xrm8w90', 'en', 1, 'https://ror.org/02xrm8w90 Toho University Medical Center Sakura Hospital 東邦大学医療センター佐倉病院'),
(42955, 'https://ror.org/05tc61k56', 'en', 1, 'https://ror.org/05tc61k56 Pushchino State Institute of Natural Sciences Пущинский Государственный Университет'),
(42956, 'https://ror.org/059yvz347', 'en', 1, 'https://ror.org/059yvz347 Drammen Hospital Drammen Sykehus'),
(42957, 'https://ror.org/00jjq6q61', 'en', 1, 'https://ror.org/00jjq6q61 Rockefeller University Hospital');
INSERT INTO `rors` VALUES
(42958, 'https://ror.org/03qx6b307', 'en', 1, 'https://ror.org/03qx6b307 Maputo Central Hospital'),
(42959, 'https://ror.org/0263gzc89', 'en', 1, 'https://ror.org/0263gzc89 Hara Eye Hospital 原眼科病院'),
(42960, 'https://ror.org/05tp4xj78', 'en', 1, 'https://ror.org/05tp4xj78 State Optical Institute named after SI Vavilov Государственный оптический институт имени С.И. Вавилова'),
(42961, 'https://ror.org/00z0j0d77', 'en', 1, 'https://ror.org/00z0j0d77 First Affiliated Hospital of Guangzhou Medical University 广州医科大学附属第一医院'),
(42962, 'https://ror.org/02zrb2v54', 'en', 1, 'https://ror.org/02zrb2v54 University Medical Center New Orleans'),
(42963, 'https://ror.org/00vjxjf30', 'en', 1, 'https://ror.org/00vjxjf30 Kurume University Hospital 久留米大学病院'),
(42964, 'https://ror.org/00srtbf93', 'en', 1, 'https://ror.org/00srtbf93 Kurume University Medical Center 久留米大学医療センター'),
(42965, 'https://ror.org/00k4nrj32', 'en', 1, 'https://ror.org/00k4nrj32 Essex County Hospital'),
(42966, 'https://ror.org/00teeat87', 'pt', 1, 'https://ror.org/00teeat87 Hospital de Magalhães Lemos'),
(42967, 'https://ror.org/022dg8423', 'no_lang_code', 1, 'https://ror.org/022dg8423 Danone (Morocco)'),
(42968, 'https://ror.org/02sqxcg48', 'en', 1, 'https://ror.org/02sqxcg48 Second People’s Hospital of Huai’an 淮安市第二人民医院'),
(42969, 'https://ror.org/00505z102', 'no_lang_code', 1, 'https://ror.org/00505z102 Johnson & Johnson (Switzerland)'),
(42970, 'https://ror.org/040aqvh16', 'en', 1, 'https://ror.org/040aqvh16 United Nations University Universität der Vereinten Nationen'),
(42971, 'https://ror.org/003zfh275', 'pt', 1, 'https://ror.org/003zfh275 Hospital Padre Américo'),
(42972, 'https://ror.org/04v84qq53', 'tr', 1, 'https://ror.org/04v84qq53 Aydın Adnan Menderes Üniversitesi Uygulama ve Araştırma Hastanesi'),
(42973, 'https://ror.org/034d9x869', 'en', 1, 'https://ror.org/034d9x869 Jintan People''s Hospital 金坛市人民医院'),
(42974, 'https://ror.org/03as2w117', 'en', 1, 'https://ror.org/03as2w117 Columbia St. Mary''s Hospital'),
(42975, 'https://ror.org/05exqw945', 'en', 1, 'https://ror.org/05exqw945 Fukuoka City Hospital 福岡市民病院'),
(42976, 'https://ror.org/00zda5q13', 'no_lang_code', 1, 'https://ror.org/00zda5q13 Misato Junshin General Hospital 三郷中央総合病院'),
(42977, 'https://ror.org/056c72797', 'en', 1, 'https://ror.org/056c72797 Air Force Institute of Aviation Medicine Affiliated Hospital 航空医学研究所附属医院'),
(42978, 'https://ror.org/049sr1d03', 'en', 1, 'https://ror.org/049sr1d03 Velindre Cancer Centre'),
(42979, 'https://ror.org/02y931541', 'en', 1, 'https://ror.org/02y931541 Semmelweis Museum Semmelweis Orvostörténeti Múzeum'),
(42980, 'https://ror.org/03bm3h723', 'no_lang_code', 1, 'https://ror.org/03bm3h723 Bristol Laboratories (United Kingdom)'),
(42981, 'https://ror.org/003xdw211', 'en', 1, 'https://ror.org/003xdw211 National Yang Ming University Hospital 国立阳明大学附设医院'),
(42982, 'https://ror.org/007b1tt61', 'en', 1, 'https://ror.org/007b1tt61 Murmansk Regional Clinical Hospital Мурманская область больнице P.A.Bayandina'),
(42983, 'https://ror.org/028ewej26', 'en', 1, 'https://ror.org/028ewej26 Whiteville City Schools'),
(42984, 'https://ror.org/042syqv10', 'en', 1, 'https://ror.org/042syqv10 Dryden Road Clinic'),
(42985, 'https://ror.org/02asepr29', 'en', 1, 'https://ror.org/02asepr29 Priory Hospital Chelmsford'),
(42986, 'https://ror.org/04dmzp333', 'en', 1, 'https://ror.org/04dmzp333 The Duchy Hospital'),
(42987, 'https://ror.org/02xnck737', 'en', 1, 'https://ror.org/02xnck737 Ashurst Hospital'),
(42988, 'https://ror.org/05ppep808', 'en', 1, 'https://ror.org/05ppep808 Avenue Day Hospital'),
(42989, 'https://ror.org/01nbpkh22', 'en', 1, 'https://ror.org/01nbpkh22 Guildford Hospital'),
(42990, 'https://ror.org/0526yv239', 'en', 1, 'https://ror.org/0526yv239 Beeches Hospital'),
(42991, 'https://ror.org/001t6ze16', 'en', 1, 'https://ror.org/001t6ze16 Bickley Day Hospital'),
(42992, 'https://ror.org/029vpma63', 'en', 1, 'https://ror.org/029vpma63 Bronllys Hospital'),
(42993, 'https://ror.org/05ngke848', 'en', 1, 'https://ror.org/05ngke848 Assumption Parish Public Library'),
(42994, 'https://ror.org/0193wvd18', 'en', 1, 'https://ror.org/0193wvd18 Ilkley Coronation Hospital'),
(42995, 'https://ror.org/00x9ph686', 'en', 1, 'https://ror.org/00x9ph686 Jawaharlal Nehru Cancer Hospital and Research Centre'),
(42996, 'https://ror.org/004046r88', 'en', 1, 'https://ror.org/004046r88 Cw Private Hospital'),
(42997, 'https://ror.org/03gpasn37', 'en', 1, 'https://ror.org/03gpasn37 Walkergate Park Hospital'),
(42998, 'https://ror.org/02ctpf853', 'en', 1, 'https://ror.org/02ctpf853 Children''s Hospital of Oklahoma'),
(42999, 'https://ror.org/03xj60w92', 'en', 1, 'https://ror.org/03xj60w92 St Michael’s Hospital'),
(43000, 'https://ror.org/04fctr677', 'en', 1, 'https://ror.org/04fctr677 Phillips University'),
(43001, 'https://ror.org/05khe3282', 'en', 1, 'https://ror.org/05khe3282 Chongqing Dazu District People''s Hospital 大足区人民医院'),
(43002, 'https://ror.org/030d7rf51', 'en', 1, 'https://ror.org/030d7rf51 National Specialized Hospital for Active Treatment of Hematologic Diseases Национална специализирана болница за активно лечение на хематологични заболявания'),
(43003, 'https://ror.org/010b6ag76', 'en', 1, 'https://ror.org/010b6ag76 ARL – Academy for Territorial Development in the Leibniz Association ARL – Akademie für Raumentwicklung in der Leibniz-Gemeinschaft'),
(43004, 'https://ror.org/02mktny84', 'en', 1, 'https://ror.org/02mktny84 Bayburt Devlet Hastanesi Bayburt State Hospital'),
(43005, 'https://ror.org/0165gz615', 'en', 1, 'https://ror.org/0165gz615 Leibniz Institute for Psychology Leibniz-Institut für Psychologie'),
(43006, 'https://ror.org/04vpecq51', 'en', 1, 'https://ror.org/04vpecq51 Bharti Hospital'),
(43007, 'https://ror.org/01eagw932', 'tr', 1, 'https://ror.org/01eagw932 Çamlıca Erdem Hastahanesi'),
(43008, 'https://ror.org/014hy9c40', 'en', 1, 'https://ror.org/014hy9c40 Firoozgar General Hospital بیمارستان آموزشی و درمانی فیروزگر'),
(43009, 'https://ror.org/02s8x1148', 'en', 1, 'https://ror.org/02s8x1148 First Hospital of Shijiazhuang 石家庄市第一医院'),
(43010, 'https://ror.org/01cnyad13', 'en', 1, 'https://ror.org/01cnyad13 People''s Liberation Army 401 Hospital 中国人民解放军第401医院'),
(43011, 'https://ror.org/0369xz580', 'no_lang_code', 1, 'https://ror.org/0369xz580 Amfissa General Hospital Γενικό Νοσοκομείο ''Αμφισσας'),
(43012, 'https://ror.org/02ec9na09', 'en', 1, 'https://ror.org/02ec9na09 Guang Fu Hospital 浙江金华广福医院'),
(43013, 'https://ror.org/0005eqq91', 'en', 1, 'https://ror.org/0005eqq91 Colombo North Teaching Hospital'),
(43014, 'https://ror.org/04bb3h146', 'en', 1, 'https://ror.org/04bb3h146 Changchun 208 Hospital 吉林长春208医院'),
(43015, 'https://ror.org/05kgcmp18', 'en', 1, 'https://ror.org/05kgcmp18 Gunma Chuo Hospital 群馬中央病院'),
(43016, 'https://ror.org/05nq3xc14', 'en', 1, 'https://ror.org/05nq3xc14 Fraunhofer USA Center for Manufacturing Innovation'),
(43017, 'https://ror.org/02zvhxb95', 'en', 1, 'https://ror.org/02zvhxb95 Puer University 普洱学院'),
(43018, 'https://ror.org/01m6k8878', 'en', 1, 'https://ror.org/01m6k8878 Queen Elizabeth Hospital King''s Lynn NHS Foundation Trust'),
(43019, 'https://ror.org/04fx38p98', 'en', 1, 'https://ror.org/04fx38p98 Max Planck Research Unit for Neurogenetics Max-Planck-Forschungsstelle für Neurogenetik'),
(43020, 'https://ror.org/0000yrh61', 'en', 1, 'https://ror.org/0000yrh61 Hospital of Hebei Province 河北省中医院'),
(43021, 'https://ror.org/0453fgm48', 'no_lang_code', 1, 'https://ror.org/0453fgm48 Kensei Hospital 健生病院'),
(43022, 'https://ror.org/01zbsrk34', 'es', 1, 'https://ror.org/01zbsrk34 Hospital General de Tomelloso'),
(43023, 'https://ror.org/00j9tzw69', 'cy', 1, 'https://ror.org/00j9tzw69 Large Vale Hospital Ysbyty Ystrad Fawr'),
(43024, 'https://ror.org/04ppv2c95', 'en', 1, 'https://ror.org/04ppv2c95 Shenzhen Pingle Orthopedic Hospital 深圳平乐骨伤科医院'),
(43025, 'https://ror.org/05br7cm44', 'en', 1, 'https://ror.org/05br7cm44 Luoyang Orthopedic-Traumatological Hospital of Henan Province 河南省洛阳正骨医院'),
(43026, 'https://ror.org/004fan886', 'es', 1, 'https://ror.org/004fan886 Universidad Autónoma Monterrey'),
(43027, 'https://ror.org/00edpzw35', 'fr', 1, 'https://ror.org/00edpzw35 Centre Hospitalo-Universitaire Dr Benbadis Constantine'),
(43028, 'https://ror.org/02vvp3528', 'es', 1, 'https://ror.org/02vvp3528 Universidad de Matamoros'),
(43029, 'https://ror.org/05rdf3493', 'es', 1, 'https://ror.org/05rdf3493 Universidad Abierta y a Distancia'),
(43030, 'https://ror.org/03tavcq25', 'no_lang_code', 1, 'https://ror.org/03tavcq25 Eboo Pharmaceuticals (United States)'),
(43031, 'https://ror.org/016e8pb27', 'no_lang_code', 1, 'https://ror.org/016e8pb27 CisThera (United States)'),
(43032, 'https://ror.org/02q248z41', 'no_lang_code', 1, 'https://ror.org/02q248z41 Advisory Board Company (United States)'),
(43033, 'https://ror.org/0168t8783', 'en', 1, 'https://ror.org/0168t8783 Bent Creek Institute'),
(43034, 'https://ror.org/04wts6j28', 'no_lang_code', 1, 'https://ror.org/04wts6j28 Empire Genomics (United States)'),
(43035, 'https://ror.org/040cv5a57', 'no_lang_code', 1, 'https://ror.org/040cv5a57 Imbio (United States)'),
(43036, 'https://ror.org/02wqahk61', 'no_lang_code', 1, 'https://ror.org/02wqahk61 CivaTech Oncology (United States)'),
(43037, 'https://ror.org/04y72kg92', 'no_lang_code', 1, 'https://ror.org/04y72kg92 BioChain Institute (United States)'),
(43038, 'https://ror.org/00qfejz91', 'no_lang_code', 1, 'https://ror.org/00qfejz91 3D Biomatrix (United States)'),
(43039, 'https://ror.org/051k56n75', 'no_lang_code', 1, 'https://ror.org/051k56n75 CiVentiChem (United States)'),
(43040, 'https://ror.org/049nhvm53', 'no_lang_code', 1, 'https://ror.org/049nhvm53 ImmunoChemistry Technologies (United States)'),
(43041, 'https://ror.org/03q8xbd64', 'no_lang_code', 1, 'https://ror.org/03q8xbd64 EntoGenetics (United States)'),
(43042, 'https://ror.org/00ss2b006', 'no_lang_code', 1, 'https://ror.org/00ss2b006 ClariTrac (United States)'),
(43043, 'https://ror.org/035va9t86', 'no_lang_code', 1, 'https://ror.org/035va9t86 Epiphany Biosciences (United States)'),
(43044, 'https://ror.org/0250cw529', 'no_lang_code', 1, 'https://ror.org/0250cw529 Clearside Biomedical (United States)'),
(43045, 'https://ror.org/03880e418', 'no_lang_code', 1, 'https://ror.org/03880e418 Aadi (United States)'),
(43046, 'https://ror.org/00rm4jt38', 'no_lang_code', 1, 'https://ror.org/00rm4jt38 Clinacuity (United States)'),
(43047, 'https://ror.org/051n1ac86', 'no_lang_code', 1, 'https://ror.org/051n1ac86 BioFortis (United States)'),
(43048, 'https://ror.org/04bkq2x49', 'no_lang_code', 1, 'https://ror.org/04bkq2x49 Clinical Sensors (United States)'),
(43049, 'https://ror.org/00rracm70', 'no_lang_code', 1, 'https://ror.org/00rracm70 BioKier (United States)'),
(43050, 'https://ror.org/04p62ev47', 'no_lang_code', 1, 'https://ror.org/04p62ev47 Eppin Pharma (United States)'),
(43051, 'https://ror.org/01jz2q474', 'no_lang_code', 1, 'https://ror.org/01jz2q474 bioMASON (United States)'),
(43052, 'https://ror.org/05kv9m582', 'no_lang_code', 1, 'https://ror.org/05kv9m582 Exmoor Plastics (United Kingdom)'),
(43053, 'https://ror.org/01z7a2p83', 'no_lang_code', 1, 'https://ror.org/01z7a2p83 Accium Biosciences (United States)'),
(43054, 'https://ror.org/02gzgaq09', 'no_lang_code', 1, 'https://ror.org/02gzgaq09 Extend Biosciences (United States)'),
(43055, 'https://ror.org/001dmcq07', 'no_lang_code', 1, 'https://ror.org/001dmcq07 Achelios Therapeutics (United States)'),
(43056, 'https://ror.org/014pv7733', 'no_lang_code', 1, 'https://ror.org/014pv7733 BioNano Genomics (United States)'),
(43057, 'https://ror.org/055knhp38', 'no_lang_code', 1, 'https://ror.org/055knhp38 Bionix Development (United States)'),
(43058, 'https://ror.org/05w2g7m94', 'no_lang_code', 1, 'https://ror.org/05w2g7m94 Coare Biotechnology (United States)'),
(43059, 'https://ror.org/0135jsc12', 'no_lang_code', 1, 'https://ror.org/0135jsc12 Actinobac Biomed (United States)'),
(43060, 'https://ror.org/059rfxn59', 'no_lang_code', 1, 'https://ror.org/059rfxn59 Colby Pharmaceutical (United States)'),
(43061, 'https://ror.org/00y024m51', 'en', 1, 'https://ror.org/00y024m51 First Flight Venture Center'),
(43062, 'https://ror.org/05t5znx80', 'no_lang_code', 1, 'https://ror.org/05t5znx80 Biosettia (United States)'),
(43063, 'https://ror.org/0117wrn60', 'no_lang_code', 1, 'https://ror.org/0117wrn60 Flag Therapeutics (United States)'),
(43064, 'https://ror.org/05e7vgz71', 'no_lang_code', 1, 'https://ror.org/05e7vgz71 Integrated Technologies & Services International (United States)'),
(43065, 'https://ror.org/022qq1986', 'en', 1, 'https://ror.org/022qq1986 Action on Smoking and Health'),
(43066, 'https://ror.org/036vg8r71', 'en', 1, 'https://ror.org/036vg8r71 Colorado Cancer Research Program'),
(43067, 'https://ror.org/03v1z6488', 'en', 1, 'https://ror.org/03v1z6488 Inter Tribal Council of Arizona'),
(43068, 'https://ror.org/044gxyt48', 'en', 1, 'https://ror.org/044gxyt48 InterAmerican Heart Foundation'),
(43069, 'https://ror.org/02pyz9n41', 'no_lang_code', 1, 'https://ror.org/02pyz9n41 AcuityBio (United States)'),
(43070, 'https://ror.org/05e3dgn19', 'no_lang_code', 1, 'https://ror.org/05e3dgn19 Confluence Life Sciences (United States)'),
(43071, 'https://ror.org/04e0thc04', 'no_lang_code', 1, 'https://ror.org/04e0thc04 BioTheryX (United States)'),
(43072, 'https://ror.org/0210ykj47', 'no_lang_code', 1, 'https://ror.org/0210ykj47 Contego Medical (United States)'),
(43073, 'https://ror.org/05kncqf21', 'no_lang_code', 1, 'https://ror.org/05kncqf21 Adheren (United States)'),
(43074, 'https://ror.org/03n8qgc13', 'hu', 1, 'https://ror.org/03n8qgc13 Bajai Obszervatórium Bács-Kiskun Megyei Csillagvizsgáló Intézet'),
(43075, 'https://ror.org/00yq70636', 'no_lang_code', 1, 'https://ror.org/00yq70636 BioZyme (United States)'),
(43076, 'https://ror.org/05yhf9c86', 'no_lang_code', 1, 'https://ror.org/05yhf9c86 Gabriel Entertainment (United States)'),
(43077, 'https://ror.org/01tp7kw13', 'no_lang_code', 1, 'https://ror.org/01tp7kw13 Advanced Animal Diagnostics (United States)'),
(43078, 'https://ror.org/04nvdwx07', 'no_lang_code', 1, 'https://ror.org/04nvdwx07 Galaxy Diagnostics (United States)'),
(43079, 'https://ror.org/03wny3351', 'no_lang_code', 1, 'https://ror.org/03wny3351 Bluegrass Advanced Materials (United States)'),
(43080, 'https://ror.org/05wfxya04', 'no_lang_code', 1, 'https://ror.org/05wfxya04 Invivo Sciences (United States)'),
(43081, 'https://ror.org/02pj4bp80', 'en', 1, 'https://ror.org/02pj4bp80 Faringdon Day Hospital'),
(43082, 'https://ror.org/01ktvbq32', 'en', 1, 'https://ror.org/01ktvbq32 Cook Children''s Health Care System'),
(43083, 'https://ror.org/029z3va66', 'en', 1, 'https://ror.org/029z3va66 Iowa Oncology Research Association'),
(43084, 'https://ror.org/02prd1m09', 'no_lang_code', 1, 'https://ror.org/02prd1m09 Mi Corporation (United States)'),
(43085, 'https://ror.org/00hz0qn68', 'no_lang_code', 1, 'https://ror.org/00hz0qn68 IsoTherapeutics Group (United States)'),
(43086, 'https://ror.org/05v74eq93', 'en', 1, 'https://ror.org/05v74eq93 Gaston Day School'),
(43087, 'https://ror.org/03qxptw71', 'en', 1, 'https://ror.org/03qxptw71 Cancer Research UK Clinical Trials Unit'),
(43088, 'https://ror.org/03k08vb24', 'en', 1, 'https://ror.org/03k08vb24 Breast Cancer Over Time'),
(43089, 'https://ror.org/01561s686', 'en', 1, 'https://ror.org/01561s686 Creative Research'),
(43090, 'https://ror.org/02ys6e350', 'no_lang_code', 1, 'https://ror.org/02ys6e350 Advanced Immune Therapeutics (United States)'),
(43091, 'https://ror.org/058bdpk86', 'en', 1, 'https://ror.org/058bdpk86 Breastscreen Victoria'),
(43092, 'https://ror.org/01exnz278', 'no_lang_code', 1, 'https://ror.org/01exnz278 GEM Tox Consultants & Labs (United States)'),
(43093, 'https://ror.org/00dsd1564', 'no_lang_code', 1, 'https://ror.org/00dsd1564 Creo Medical (United Kingdom)'),
(43094, 'https://ror.org/00qa0qd14', 'no_lang_code', 1, 'https://ror.org/00qa0qd14 Advanced Radiation Therapy (United States)'),
(43095, 'https://ror.org/00qpgkq73', 'no_lang_code', 1, 'https://ror.org/00qpgkq73 Everist Health (United States)'),
(43096, 'https://ror.org/033xpbd73', 'no_lang_code', 1, 'https://ror.org/033xpbd73 IVDiagnostics (United States)'),
(43097, 'https://ror.org/02x41bc05', 'no_lang_code', 1, 'https://ror.org/02x41bc05 C4 Imaging (United States)'),
(43098, 'https://ror.org/056mhwf75', 'no_lang_code', 1, 'https://ror.org/056mhwf75 Genus Oncology (United States)'),
(43099, 'https://ror.org/03zm7w502', 'no_lang_code', 1, 'https://ror.org/03zm7w502 Concept Life Sciences (United Kingdom)'),
(43100, 'https://ror.org/034gz9s88', 'no_lang_code', 1, 'https://ror.org/034gz9s88 J&J Solutions (United States)'),
(43101, 'https://ror.org/04jm5sq24', 'en', 1, 'https://ror.org/04jm5sq24 Cambridge Memorial Hospital'),
(43102, 'https://ror.org/05hhwah43', 'no_lang_code', 1, 'https://ror.org/05hhwah43 CytImmune (United States)'),
(43103, 'https://ror.org/012ky5f74', 'no_lang_code', 1, 'https://ror.org/012ky5f74 EG Gilero (United States)'),
(43104, 'https://ror.org/022gbr829', 'no_lang_code', 1, 'https://ror.org/022gbr829 Aerial BioPharma'),
(43105, 'https://ror.org/05bw3yd74', 'en', 1, 'https://ror.org/05bw3yd74 Canadian Urology Research Consortium'),
(43106, 'https://ror.org/03ga2w460', 'en', 1, 'https://ror.org/03ga2w460 Cancer Care Nova Scotia'),
(43107, 'https://ror.org/029ha5706', 'no_lang_code', 1, 'https://ror.org/029ha5706 Gravity Bio (United States)'),
(43108, 'https://ror.org/03syafb36', 'no_lang_code', 1, 'https://ror.org/03syafb36 Kaio Therapy (United States)'),
(43109, 'https://ror.org/01qcwgw02', 'en', 1, 'https://ror.org/01qcwgw02 David H. Murdock Research Institute'),
(43110, 'https://ror.org/01sqn6v38', 'en', 1, 'https://ror.org/01sqn6v38 Sault Area Hospital'),
(43111, 'https://ror.org/00y2td026', 'en', 1, 'https://ror.org/00y2td026 Winston-Salem Chamber of Commerce'),
(43112, 'https://ror.org/01f3a0g74', 'en', 1, 'https://ror.org/01f3a0g74 Dayton Clinical Oncology Program'),
(43113, 'https://ror.org/04mc0ma12', 'no_lang_code', 1, 'https://ror.org/04mc0ma12 Almen Laboratories (United States)'),
(43114, 'https://ror.org/028m8dj97', 'no_lang_code', 1, 'https://ror.org/028m8dj97 Kentucky imaging Technologies (United States)'),
(43115, 'https://ror.org/049x12g57', 'no_lang_code', 1, 'https://ror.org/049x12g57 American BioOptics (United States)'),
(43116, 'https://ror.org/000n78v25', 'no_lang_code', 1, 'https://ror.org/000n78v25 KindHeart (United States)'),
(43117, 'https://ror.org/03mza7j54', 'no_lang_code', 1, 'https://ror.org/03mza7j54 Cascade Thermal Solutions (United States)'),
(43118, 'https://ror.org/05xr89294', 'en', 1, 'https://ror.org/05xr89294 American Physician Scientists Association'),
(43119, 'https://ror.org/034rmsp96', 'no_lang_code', 1, 'https://ror.org/034rmsp96 High Precision Devices (United States)'),
(43120, 'https://ror.org/058t5en44', 'en', 1, 'https://ror.org/058t5en44 American Society For Nanomedicine'),
(43121, 'https://ror.org/04p0kmp94', 'no_lang_code', 1, 'https://ror.org/04p0kmp94 Diagnologix (United States)'),
(43122, 'https://ror.org/037bvs115', 'no_lang_code', 1, 'https://ror.org/037bvs115 Celula (United States)'),
(43123, 'https://ror.org/00xes3s90', 'no_lang_code', 1, 'https://ror.org/00xes3s90 Cempra Pharmaceuticals (United States)'),
(43124, 'https://ror.org/04m0rsq98', 'no_lang_code', 1, 'https://ror.org/04m0rsq98 Lexitek (United States)'),
(43125, 'https://ror.org/04jtwax81', 'no_lang_code', 1, 'https://ror.org/04jtwax81 Liquidia Technologies (United States)'),
(43126, 'https://ror.org/04xrvke88', 'no_lang_code', 1, 'https://ror.org/04xrvke88 Optimisa Research (United Kingdom)'),
(43127, 'https://ror.org/04nhss420', 'en', 1, 'https://ror.org/04nhss420 Dr. H. Bliss Murphy Cancer Centre'),
(43128, 'https://ror.org/05ja7s884', 'no_lang_code', 1, 'https://ror.org/05ja7s884 Lucerno Dynamics (United States)'),
(43129, 'https://ror.org/00xvbmj91', 'no_lang_code', 1, 'https://ror.org/00xvbmj91 Fluidigm (Canada)'),
(43130, 'https://ror.org/001p7q739', 'no_lang_code', 1, 'https://ror.org/001p7q739 Apoplogic Pharmaceuticals (United States)'),
(43131, 'https://ror.org/00yxnm167', 'en', 1, 'https://ror.org/00yxnm167 Eastern North American Region International Biometric Society'),
(43132, 'https://ror.org/038a0a037', 'en', 1, 'https://ror.org/038a0a037 Comprehensive Oncological Center – Veliko Turnovo Комплексен онкологичен център – Велико Търново'),
(43133, 'https://ror.org/045ay0h26', 'no_lang_code', 1, 'https://ror.org/045ay0h26 LumaMed (United States)'),
(43134, 'https://ror.org/0279hpp97', 'no_lang_code', 1, 'https://ror.org/0279hpp97 Oakwood Laboratories (United States)'),
(43135, 'https://ror.org/00mce9b34', 'en', 1, 'https://ror.org/00mce9b34 National Hospital Organization Kyushu Cancer Center 国立病院機構九州がんセンター'),
(43136, 'https://ror.org/008ze5r69', 'no_lang_code', 1, 'https://ror.org/008ze5r69 Cernostics (United States)'),
(43137, 'https://ror.org/02ws3jn37', 'en', 1, 'https://ror.org/02ws3jn37 National Lymphedema Network'),
(43138, 'https://ror.org/00eykv937', 'no_lang_code', 1, 'https://ror.org/00eykv937 CertiRx (United States)'),
(43139, 'https://ror.org/04pv7qx83', 'en', 1, 'https://ror.org/04pv7qx83 Battle Creek Public Schools'),
(43140, 'https://ror.org/0089qm711', 'no_lang_code', 1, 'https://ror.org/0089qm711 OCT Medical Imaging (United States)'),
(43141, 'https://ror.org/052dn5m53', 'no_lang_code', 1, 'https://ror.org/052dn5m53 ArcticDx (Canada)'),
(43142, 'https://ror.org/029sfp345', 'en', 1, 'https://ror.org/029sfp345 North Carolina Biosciences Organization'),
(43143, 'https://ror.org/034k5be35', 'en', 1, 'https://ror.org/034k5be35 Provata Health'),
(43144, 'https://ror.org/002dzyh86', 'en', 1, 'https://ror.org/002dzyh86 Marine Bio-Technologies Center of Innovation'),
(43145, 'https://ror.org/00nfw5c37', 'it', 1, 'https://ror.org/00nfw5c37 Istituto Ramazzini'),
(43146, 'https://ror.org/039chvj52', 'no_lang_code', 1, 'https://ror.org/039chvj52 Ardent Sound (United States)'),
(43147, 'https://ror.org/00r4ss513', 'en', 1, 'https://ror.org/00r4ss513 NCEast Alliance'),
(43148, 'https://ror.org/003470t18', 'no_lang_code', 1, 'https://ror.org/003470t18 Ohmx (United States)'),
(43149, 'https://ror.org/00sqyzq66', 'no_lang_code', 1, 'https://ror.org/00sqyzq66 NĒRx BioSciences (United States)'),
(43150, 'https://ror.org/037dejx04', 'no_lang_code', 1, 'https://ror.org/037dejx04 Chiesi (United States)'),
(43151, 'https://ror.org/05qer3y84', 'en', 1, 'https://ror.org/05qer3y84 Research Institute in Oncology and Hematology'),
(43152, 'https://ror.org/01jse7033', 'en', 1, 'https://ror.org/01jse7033 Asbestos Diseases Research Institute'),
(43153, 'https://ror.org/02s6qa536', 'no_lang_code', 1, 'https://ror.org/02s6qa536 Onconome (United States)'),
(43154, 'https://ror.org/00fqwsq79', 'no_lang_code', 1, 'https://ror.org/00fqwsq79 Spectra Science (United States)'),
(43155, 'https://ror.org/01vpcr438', 'en', 1, 'https://ror.org/01vpcr438 Chordoma Foundation'),
(43156, 'https://ror.org/02bf51786', 'no_lang_code', 1, 'https://ror.org/02bf51786 OncoTab (United States)'),
(43157, 'https://ror.org/034batm51', 'en', 1, 'https://ror.org/034batm51 Nevus Outreach'),
(43158, 'https://ror.org/02k46hk39', 'en', 1, 'https://ror.org/02k46hk39 Association of Clinical Research Professionals'),
(43159, 'https://ror.org/05tdqzj08', 'no_lang_code', 1, 'https://ror.org/05tdqzj08 New Horizons Diagnostics (United States)'),
(43160, 'https://ror.org/00aptaa75', 'en', 1, 'https://ror.org/00aptaa75 Alliance pour le Prévention des maladies Chroniques au Canada Chronic Disease Prevention Alliance of Canada'),
(43161, 'https://ror.org/02y4x8722', 'no_lang_code', 1, 'https://ror.org/02y4x8722 Chrono Therapeutics (United States)'),
(43162, 'https://ror.org/04ptztc75', 'en', 1, 'https://ror.org/04ptztc75 Opinion Leader Research'),
(43163, 'https://ror.org/02c13hn95', 'no_lang_code', 1, 'https://ror.org/02c13hn95 Quanterix (United States)'),
(43164, 'https://ror.org/04ny3af67', 'en', 1, 'https://ror.org/04ny3af67 Central Manchester Clinical Commissioning Group'),
(43165, 'https://ror.org/04avd7t96', 'no_lang_code', 1, 'https://ror.org/04avd7t96 Medgene Labs (United States)'),
(43166, 'https://ror.org/0347t4482', 'en', 1, 'https://ror.org/0347t4482 Avery County Schools'),
(43167, 'https://ror.org/03hc02072', 'no_lang_code', 1, 'https://ror.org/03hc02072 QuantuMDx (United Kingdom)'),
(43168, 'https://ror.org/05kgg0s20', 'en', 1, 'https://ror.org/05kgg0s20 Cancer Research UK Oxford Centre'),
(43169, 'https://ror.org/04f71fj29', 'no_lang_code', 1, 'https://ror.org/04f71fj29 Nirvana Sciences (United States)'),
(43170, 'https://ror.org/034vkhg42', 'no_lang_code', 1, 'https://ror.org/034vkhg42 Nonagen Bioscience (United States)'),
(43171, 'https://ror.org/02necds34', 'no_lang_code', 1, 'https://ror.org/02necds34 Huntsworth Health (United States)'),
(43172, 'https://ror.org/01efw7g62', 'en', 1, 'https://ror.org/01efw7g62 North Carolina Association for Biomedical Research'),
(43173, 'https://ror.org/03myafa32', 'en', 1, 'https://ror.org/03myafa32 Oxford Centre for Diabetes, Endocrinology and Metabolism'),
(43174, 'https://ror.org/05c5a2504', 'no_lang_code', 1, 'https://ror.org/05c5a2504 Radar (United States)'),
(43175, 'https://ror.org/02qr6qm80', 'en', 1, 'https://ror.org/02qr6qm80 North Carolina Center of Innovation Network'),
(43176, 'https://ror.org/0176acm89', 'en', 1, 'https://ror.org/0176acm89 Cancer Research for the Ozarks'),
(43177, 'https://ror.org/05bpym449', 'no_lang_code', 1, 'https://ror.org/05bpym449 Medical Cyberworlds (United States)'),
(43178, 'https://ror.org/00yp48s31', 'no_lang_code', 1, 'https://ror.org/00yp48s31 ReacTech (United States)'),
(43179, 'https://ror.org/02wec8948', 'no_lang_code', 1, 'https://ror.org/02wec8948 Medical Device Innovations (United Kingdom)'),
(43180, 'https://ror.org/0354d3c43', 'no_lang_code', 1, 'https://ror.org/0354d3c43 Medomics (United States)'),
(43181, 'https://ror.org/023bk1n32', 'no_lang_code', 1, 'https://ror.org/023bk1n32 Research Triangle Environmental Health Collaborative (United States)'),
(43182, 'https://ror.org/01vs14k74', 'no_lang_code', 1, 'https://ror.org/01vs14k74 Banner Life Sciences (United States)'),
(43183, 'https://ror.org/04hw1e986', 'no_lang_code', 1, 'https://ror.org/04hw1e986 BaseTrace (United States)'),
(43184, 'https://ror.org/04n6ytd45', 'en', 1, 'https://ror.org/04n6ytd45 Pharmatech (United States)'),
(43185, 'https://ror.org/05jjd1m66', 'no_lang_code', 1, 'https://ror.org/05jjd1m66 Benson Hill Biosystems (United States)'),
(43186, 'https://ror.org/04409v947', 'no_lang_code', 1, 'https://ror.org/04409v947 RG Biopharma (United States)'),
(43187, 'https://ror.org/00425vc91', 'no_lang_code', 1, 'https://ror.org/00425vc91 Rheomics (United States)'),
(43188, 'https://ror.org/04stsnh03', 'no_lang_code', 1, 'https://ror.org/04stsnh03 Photolitec (United States)'),
(43189, 'https://ror.org/01dwc1797', 'en', 1, 'https://ror.org/01dwc1797 Northern Ireland Hospice'),
(43190, 'https://ror.org/04jfp7737', 'no_lang_code', 1, 'https://ror.org/04jfp7737 Ringful Health (United States)'),
(43191, 'https://ror.org/001mbm465', 'no_lang_code', 1, 'https://ror.org/001mbm465 MicroDysis (United States)'),
(43192, 'https://ror.org/0111gv970', 'no_lang_code', 1, 'https://ror.org/0111gv970 Phusis Therapeutics (United States)'),
(43193, 'https://ror.org/00r1d6p76', 'no_lang_code', 1, 'https://ror.org/00r1d6p76 Physcient (United States)'),
(43194, 'https://ror.org/003ns4430', 'no_lang_code', 1, 'https://ror.org/003ns4430 Rogers Sciences (United States)'),
(43195, 'https://ror.org/02kx36h27', 'no_lang_code', 1, 'https://ror.org/02kx36h27 NovaRx (United States)'),
(43196, 'https://ror.org/04g3bhm14', 'no_lang_code', 1, 'https://ror.org/04g3bhm14 Russell Biotech (United States)'),
(43197, 'https://ror.org/024j7f958', 'en', 1, 'https://ror.org/024j7f958 Southeast Clinical Oncology Research Consortium'),
(43198, 'https://ror.org/04azs9g49', 'en', 1, 'https://ror.org/04azs9g49 Loyola Medicine'),
(43199, 'https://ror.org/04mag9a17', 'no_lang_code', 1, 'https://ror.org/04mag9a17 SafeRay Spine (United States)'),
(43200, 'https://ror.org/04kq9kz72', 'no_lang_code', 1, 'https://ror.org/04kq9kz72 Cellectar Biosciences (United States)'),
(43201, 'https://ror.org/009dch554', 'en', 1, 'https://ror.org/009dch554 Missouri Valley Cancer Consortium'),
(43202, 'https://ror.org/018z5vy82', 'no_lang_code', 1, 'https://ror.org/018z5vy82 Sage Science (United States)'),
(43203, 'https://ror.org/00n1w2a60', 'no_lang_code', 1, 'https://ror.org/00n1w2a60 Novocor Medical Systems (United States)'),
(43204, 'https://ror.org/00fwkdt40', 'no_lang_code', 1, 'https://ror.org/00fwkdt40 Specific Technologies (United States)'),
(43205, 'https://ror.org/01fq4h057', 'no_lang_code', 1, 'https://ror.org/01fq4h057 NuVue Therapeutics (United States)'),
(43206, 'https://ror.org/001z5b761', 'en', 1, 'https://ror.org/001z5b761 Pitt County Development Commission'),
(43207, 'https://ror.org/045s0p143', 'no_lang_code', 1, 'https://ror.org/045s0p143 Salgomed (United States)'),
(43208, 'https://ror.org/03a10hv23', 'no_lang_code', 1, 'https://ror.org/03a10hv23 Nvigen (United States)'),
(43209, 'https://ror.org/03j2b0f13', 'no_lang_code', 1, 'https://ror.org/03j2b0f13 SphingoGene (United States)'),
(43210, 'https://ror.org/00kqvg908', 'en', 1, 'https://ror.org/00kqvg908 Rowan Works Economic Development'),
(43211, 'https://ror.org/04tatke33', 'no_lang_code', 1, 'https://ror.org/04tatke33 Spyryx Biosciences (United States)'),
(43212, 'https://ror.org/03t5zv452', 'no_lang_code', 1, 'https://ror.org/03t5zv452 Presage Biosciences (United States)'),
(43213, 'https://ror.org/00q06r288', 'no_lang_code', 1, 'https://ror.org/00q06r288 Privacy Analytics (Canada)'),
(43214, 'https://ror.org/00541hg31', 'en', 1, 'https://ror.org/00541hg31 San Francisco Fire Department'),
(43215, 'https://ror.org/00atp6h41', 'no_lang_code', 1, 'https://ror.org/00atp6h41 Standard Imaging (United States)'),
(43216, 'https://ror.org/05q90cj61', 'en', 1, 'https://ror.org/05q90cj61 Health PEI'),
(43217, 'https://ror.org/054h41036', 'en', 1, 'https://ror.org/054h41036 Santa Rosa Memorial Hospital'),
(43218, 'https://ror.org/00zt1nh73', 'no_lang_code', 1, 'https://ror.org/00zt1nh73 ProKyma Technologies (United Kingdom)'),
(43219, 'https://ror.org/057m2mx12', 'no_lang_code', 1, 'https://ror.org/057m2mx12 Protec Laboratories (United States)'),
(43220, 'https://ror.org/012yjj245', 'no_lang_code', 1, 'https://ror.org/012yjj245 CritiTech (United States)'),
(43221, 'https://ror.org/04tw81938', 'no_lang_code', 1, 'https://ror.org/04tw81938 Transtria (United States)'),
(43222, 'https://ror.org/042mxcp03', 'no_lang_code', 1, 'https://ror.org/042mxcp03 Quadriga Biosciences (United States)'),
(43223, 'https://ror.org/02d3zqf38', 'en', 1, 'https://ror.org/02d3zqf38 Montana Cancer Consortium'),
(43224, 'https://ror.org/04s8pbj86', 'no_lang_code', 1, 'https://ror.org/04s8pbj86 SciKon Innovation (United States)'),
(43225, 'https://ror.org/027ge9s66', 'no_lang_code', 1, 'https://ror.org/027ge9s66 Shure Foods (United States)'),
(43226, 'https://ror.org/03g7x9g28', 'no_lang_code', 1, 'https://ror.org/03g7x9g28 Signosis (United States)'),
(43227, 'https://ror.org/00r6j0178', 'no_lang_code', 1, 'https://ror.org/00r6j0178 SilaGene (United States)'),
(43228, 'https://ror.org/04x12dp53', 'no_lang_code', 1, 'https://ror.org/04x12dp53 Motility (United States)'),
(43229, 'https://ror.org/05tmzdb63', 'no_lang_code', 1, 'https://ror.org/05tmzdb63 T3D Therapeutics (United States)'),
(43230, 'https://ror.org/05bs9ys68', 'no_lang_code', 1, 'https://ror.org/05bs9ys68 SimulTel (United States)'),
(43231, 'https://ror.org/052h22p40', 'en', 1, 'https://ror.org/052h22p40 Singing River Health System'),
(43232, 'https://ror.org/00db1z327', 'no_lang_code', 1, 'https://ror.org/00db1z327 SixOne Solutions (United States)'),
(43233, 'https://ror.org/02401yq31', 'no_lang_code', 1, 'https://ror.org/02401yq31 Tartis (United States)'),
(43234, 'https://ror.org/04k296d46', 'en', 1, 'https://ror.org/04k296d46 Vancouver Native Health Society'),
(43235, 'https://ror.org/02bjgf441', 'no_lang_code', 1, 'https://ror.org/02bjgf441 Aratana Therapeutics (United States)'),
(43236, 'https://ror.org/018m4ac75', 'en', 1, 'https://ror.org/018m4ac75 Technology Partnership of Nagoya University'),
(43237, 'https://ror.org/05scqcm44', 'no_lang_code', 1, 'https://ror.org/05scqcm44 Solers (United States)'),
(43238, 'https://ror.org/007eeyb09', 'no_lang_code', 1, 'https://ror.org/007eeyb09 MRI Robotics (United States)'),
(43239, 'https://ror.org/02ft82f02', 'tr', 1, 'https://ror.org/02ft82f02 Korgan Devlet Hastanesi'),
(43240, 'https://ror.org/00x8gws85', 'no_lang_code', 1, 'https://ror.org/00x8gws85 BioTelemetry (United States)'),
(43241, 'https://ror.org/05ewch819', 'no_lang_code', 1, 'https://ror.org/05ewch819 XLV Diagnostics (Canada)'),
(43242, 'https://ror.org/02rcxmd71', 'en', 1, 'https://ror.org/02rcxmd71 Yukon Health and Social Services'),
(43243, 'https://ror.org/01c00xz18', 'no_lang_code', 1, 'https://ror.org/01c00xz18 Visiscience (United States)'),
(43244, 'https://ror.org/00medbt67', 'no_lang_code', 1, 'https://ror.org/00medbt67 Cloud Pharmaceuticals (United States)'),
(43245, 'https://ror.org/02ye03m75', 'en', 1, 'https://ror.org/02ye03m75 Women Of Color Salon'),
(43246, 'https://ror.org/00497ac31', 'no_lang_code', 1, 'https://ror.org/00497ac31 Umlaut Software (United States)'),
(43247, 'https://ror.org/038ey9s70', 'no_lang_code', 1, 'https://ror.org/038ey9s70 Imam Reza Hospital'),
(43248, 'https://ror.org/01y65bn93', 'no_lang_code', 1, 'https://ror.org/01y65bn93 Vital Access (United States)'),
(43249, 'https://ror.org/00m0wef21', 'en', 1, 'https://ror.org/00m0wef21 Woodlawn School'),
(43250, 'https://ror.org/00ke0d331', 'en', 1, 'https://ror.org/00ke0d331 Marie Curie Palliative Care Institute Liverpool'),
(43251, 'https://ror.org/04a3v4a69', 'no_lang_code', 1, 'https://ror.org/04a3v4a69 Multivariate Software (United States)'),
(43252, 'https://ror.org/00w7z4k38', 'no_lang_code', 1, 'https://ror.org/00w7z4k38 Vivonoetics (United States)'),
(43253, 'https://ror.org/0107xy373', 'no_lang_code', 1, 'https://ror.org/0107xy373 Muzzy Lane Software (United States)'),
(43254, 'https://ror.org/05nf5cj96', 'no_lang_code', 1, 'https://ror.org/05nf5cj96 Xcision Medical Systems (United States)'),
(43255, 'https://ror.org/038h4pp04', 'no_lang_code', 1, 'https://ror.org/038h4pp04 Thermal Gradient (United States)'),
(43256, 'https://ror.org/053t9n332', 'no_lang_code', 1, 'https://ror.org/053t9n332 Xfibra (United States)'),
(43257, 'https://ror.org/058xxya53', 'no_lang_code', 1, 'https://ror.org/058xxya53 NanoCytomics (United States)'),
(43258, 'https://ror.org/04aj97045', 'en', 1, 'https://ror.org/04aj97045 Watauga County Office of Economic Development'),
(43259, 'https://ror.org/0238v4968', 'no_lang_code', 1, 'https://ror.org/0238v4968 NanoMedica (United States)'),
(43260, 'https://ror.org/03rzr6095', 'no_lang_code', 1, 'https://ror.org/03rzr6095 Oxonica (United States)'),
(43261, 'https://ror.org/05qzegn43', 'no_lang_code', 1, 'https://ror.org/05qzegn43 Wellspring Biosciences (United States)'),
(43262, 'https://ror.org/041zaaf26', 'es', 1, 'https://ror.org/041zaaf26 Universidad Braulio Carrillo'),
(43263, 'https://ror.org/043xksz40', 'en', 1, 'https://ror.org/043xksz40 International Christian University Universidad Cristiana Internacional'),
(43264, 'https://ror.org/01zv98a09', 'en', 1, 'https://ror.org/01zv98a09 Aga Khan University Nairobi'),
(43265, 'https://ror.org/02tztn617', 'no_lang_code', 1, 'https://ror.org/02tztn617 Wilex (Germany)'),
(43266, 'https://ror.org/053gd5s23', 'en', 1, 'https://ror.org/053gd5s23 Willow Breast and Hereditary Cancer Support'),
(43267, 'https://ror.org/051anhc42', 'pl', 1, 'https://ror.org/051anhc42 Samodzielny Publiczny Wojewódzki Szpital Zespolony im. Marii Skłodowskiej – Curie'),
(43268, 'https://ror.org/042ep7486', 'es', 1, 'https://ror.org/042ep7486 Universidad Motolinía del Pedregal'),
(43269, 'https://ror.org/03r0qzh12', 'fr', 1, 'https://ror.org/03r0qzh12 Université Jean Price Mars'),
(43270, 'https://ror.org/023zkew37', 'es', 1, 'https://ror.org/023zkew37 Universidad Español'),
(43271, 'https://ror.org/04800nb63', 'es', 1, 'https://ror.org/04800nb63 Universidad del Pacífico de Chiapas'),
(43272, 'https://ror.org/02zmaz789', 'es', 1, 'https://ror.org/02zmaz789 Universidad Particular de Iquitos'),
(43273, 'https://ror.org/03c8pv287', 'es', 1, 'https://ror.org/03c8pv287 Centro Cultural Universitario de Ciudad Juarez'),
(43274, 'https://ror.org/04kfb1d31', 'es', 1, 'https://ror.org/04kfb1d31 Universidad Angelópolis'),
(43275, 'https://ror.org/03xbgnq70', 'en', 1, 'https://ror.org/03xbgnq70 Bethany University'),
(43276, 'https://ror.org/03qnbmn78', 'es', 1, 'https://ror.org/03qnbmn78 Centro Universitario de Educación Física'),
(43277, 'https://ror.org/02zdjth29', 'fr', 1, 'https://ror.org/02zdjth29 African University of Technology and Management Université Africaine de Technologie et de Management'),
(43278, 'https://ror.org/02t86cp18', 'es', 1, 'https://ror.org/02t86cp18 Universidad Bancaria de México'),
(43279, 'https://ror.org/01g8tqt55', 'es', 1, 'https://ror.org/01g8tqt55 Universidad del Sol'),
(43280, 'https://ror.org/001pthy87', 'es', 1, 'https://ror.org/001pthy87 Universidad Privada del Estado de Morelos'),
(43281, 'https://ror.org/02dc9q641', 'en', 1, 'https://ror.org/02dc9q641 DMC University Laboratories'),
(43282, 'https://ror.org/04brc3a25', 'id', 1, 'https://ror.org/04brc3a25 Universitas Indonesia Timur'),
(43283, 'https://ror.org/00fp9k450', 'en', 1, 'https://ror.org/00fp9k450 Arab Open University الجامعة العربية المفتوحة'),
(43284, 'https://ror.org/00p954r86', 'en', 1, 'https://ror.org/00p954r86 Universite Laique Adventiste de Kigali University of Lay Adventists of Kigali'),
(43285, 'https://ror.org/04dfxm579', 'id', 1, 'https://ror.org/04dfxm579 Universitas Nahdlatul Wathan Mataram'),
(43286, 'https://ror.org/0166b9n36', 'id', 1, 'https://ror.org/0166b9n36 Universitas Amir Hamzah'),
(43287, 'https://ror.org/002nr2s48', 'no_lang_code', 1, 'https://ror.org/002nr2s48 Agile EndoSurgery (United States)'),
(43288, 'https://ror.org/002783g69', 'no_lang_code', 1, 'https://ror.org/002783g69 Cim Systems (United States)'),
(43289, 'https://ror.org/03x212m64', 'no_lang_code', 1, 'https://ror.org/03x212m64 Eles (Slovenia)'),
(43290, 'https://ror.org/01q1dy966', 'no_lang_code', 1, 'https://ror.org/01q1dy966 HeidelbergCement (Germany)'),
(43291, 'https://ror.org/001hybq57', 'no_lang_code', 1, 'https://ror.org/001hybq57 Atlas Scientific (United States)'),
(43292, 'https://ror.org/05y09nm31', 'no_lang_code', 1, 'https://ror.org/05y09nm31 Engineered Coatings (United States)'),
(43293, 'https://ror.org/0085d1p90', 'no_lang_code', 1, 'https://ror.org/0085d1p90 Atmospheric Plasma Solutions (United States)'),
(43294, 'https://ror.org/04wnc5n11', 'no_lang_code', 1, 'https://ror.org/04wnc5n11 Envergex (United States)'),
(43295, 'https://ror.org/00w8byr45', 'no_lang_code', 1, 'https://ror.org/00w8byr45 Integrated Oncology (United States)'),
(43296, 'https://ror.org/05nkabx50', 'no_lang_code', 1, 'https://ror.org/05nkabx50 Advanced Composite Products (United States)'),
(43297, 'https://ror.org/00wvqmj08', 'no_lang_code', 1, 'https://ror.org/00wvqmj08 QT Ultrasound (United States)'),
(43298, 'https://ror.org/021skqj79', 'no_lang_code', 1, 'https://ror.org/021skqj79 EpiCypher (United States)'),
(43299, 'https://ror.org/01fwca479', 'en', 1, 'https://ror.org/01fwca479 Consortium of European Research Libraries'),
(43300, 'https://ror.org/04fhkjd96', 'no_lang_code', 1, 'https://ror.org/04fhkjd96 Arizona Cancer Therapeutics (United States)'),
(43301, 'https://ror.org/01txvbn74', 'en', 1, 'https://ror.org/01txvbn74 European Crowdfunding Network'),
(43302, 'https://ror.org/02ar00159', 'no_lang_code', 1, 'https://ror.org/02ar00159 Myocardial Solutions (United States)'),
(43303, 'https://ror.org/03fm7wh60', 'en', 1, 'https://ror.org/03fm7wh60 Durham Technical Community College'),
(43304, 'https://ror.org/01fjnma13', 'no_lang_code', 1, 'https://ror.org/01fjnma13 Advanced Materials Corporation (United States)'),
(43305, 'https://ror.org/02wbb9367', 'en', 1, 'https://ror.org/02wbb9367 European Regions Research and Innovation Network'),
(43306, 'https://ror.org/011cyyg27', 'no_lang_code', 1, 'https://ror.org/011cyyg27 i2C Solutions (United States)'),
(43307, 'https://ror.org/02tcsd812', 'no_lang_code', 1, 'https://ror.org/02tcsd812 Faradion (United Kingdom)'),
(43308, 'https://ror.org/03ayjfd71', 'en', 1, 'https://ror.org/03ayjfd71 Marie Curie Hospice'),
(43309, 'https://ror.org/05879ed43', 'no_lang_code', 1, 'https://ror.org/05879ed43 Fastman (United States)'),
(43310, 'https://ror.org/049g0jw79', 'no_lang_code', 1, 'https://ror.org/049g0jw79 Agile RF (United States)'),
(43311, 'https://ror.org/0030xrh72', 'no_lang_code', 1, 'https://ror.org/0030xrh72 CryptoExperts (France)'),
(43312, 'https://ror.org/03wqdw813', 'no_lang_code', 1, 'https://ror.org/03wqdw813 Mind Matters Research (United States)'),
(43313, 'https://ror.org/00jqtf796', 'en', 1, 'https://ror.org/00jqtf796 IEEE France section'),
(43314, 'https://ror.org/02pwxft54', 'en', 1, 'https://ror.org/02pwxft54 Mobile Infirmary'),
(43315, 'https://ror.org/00df6sb82', 'no_lang_code', 1, 'https://ror.org/00df6sb82 Catalan Government Railways Ferrocarrils de la Generalitat de Catalunya (Spain)'),
(43316, 'https://ror.org/00y761129', 'no_lang_code', 1, 'https://ror.org/00y761129 Fincons Group (Italy)'),
(43317, 'https://ror.org/03wyfav89', 'no_lang_code', 1, 'https://ror.org/03wyfav89 Datapixel (Spain)'),
(43318, 'https://ror.org/041wrj753', 'no_lang_code', 1, 'https://ror.org/041wrj753 Aero Corporation (United States)'),
(43319, 'https://ror.org/022h9xz52', 'no_lang_code', 1, 'https://ror.org/022h9xz52 Fon (United Kingdom)'),
(43320, 'https://ror.org/05ksj8h20', 'no_lang_code', 1, 'https://ror.org/05ksj8h20 Infraestruturas de Portugal (Portugal)'),
(43321, 'https://ror.org/01t763t34', 'no_lang_code', 1, 'https://ror.org/01t763t34 Brainlike (United States)'),
(43322, 'https://ror.org/05hjgch06', 'no_lang_code', 1, 'https://ror.org/05hjgch06 Synthomics (United States)'),
(43323, 'https://ror.org/04p5eag18', 'no_lang_code', 1, 'https://ror.org/04p5eag18 Brembo (Italy)'),
(43324, 'https://ror.org/015gd1034', 'no_lang_code', 1, 'https://ror.org/015gd1034 Applied Research in Acoustics (United States)'),
(43325, 'https://ror.org/04t69kx04', 'no_lang_code', 1, 'https://ror.org/04t69kx04 Insero E-Mobility (Denmark)'),
(43326, 'https://ror.org/05embt267', 'no_lang_code', 1, 'https://ror.org/05embt267 Archarithms (United States)'),
(43327, 'https://ror.org/05d088255', 'en', 1, 'https://ror.org/05d088255 Fundacion Instituto de Investigacion Innaxis Innaxis Foundation & Research Institute'),
(43328, 'https://ror.org/02wwbem66', 'en', 1, 'https://ror.org/02wwbem66 Aarhus Kommune Aarhus Municipality'),
(43329, 'https://ror.org/04nzat794', 'no_lang_code', 1, 'https://ror.org/04nzat794 Arizona Optical Systems (United States)'),
(43330, 'https://ror.org/00ax8r212', 'no_lang_code', 1, 'https://ror.org/00ax8r212 DfR Solutions (United States)'),
(43331, 'https://ror.org/05ygj1d20', 'no_lang_code', 1, 'https://ror.org/05ygj1d20 Gaertner (United States)'),
(43332, 'https://ror.org/04mnaqe33', 'no_lang_code', 1, 'https://ror.org/04mnaqe33 Arquimea (Spain)'),
(43333, 'https://ror.org/02n2pxk31', 'no_lang_code', 1, 'https://ror.org/02n2pxk31 Aspire Solutions (United States)'),
(43334, 'https://ror.org/049exe397', 'no_lang_code', 1, 'https://ror.org/049exe397 Distributed Infinity (United States)'),
(43335, 'https://ror.org/02gcjrk43', 'en', 1, 'https://ror.org/02gcjrk43 Institute of Clinical Research'),
(43336, 'https://ror.org/03bfwzz10', 'no_lang_code', 1, 'https://ror.org/03bfwzz10 Gavin and Doherty Geosolutions (Ireland)'),
(43337, 'https://ror.org/0514gnk26', 'no_lang_code', 1, 'https://ror.org/0514gnk26 Panacea Solution (United States)'),
(43338, 'https://ror.org/05tj5za17', 'no_lang_code', 1, 'https://ror.org/05tj5za17 General Electric (Switzerland)'),
(43339, 'https://ror.org/053hax662', 'en', 1, 'https://ror.org/053hax662 Padres Contra El Cáncer'),
(43340, 'https://ror.org/05sfq4m04', 'no_lang_code', 1, 'https://ror.org/05sfq4m04 Draxis Environmental Technologies (Greece) ΔΡΑΞΙΣ ΤΕΧΝΟΛΟΓΙΕΣ ΠΕΡΙΒΑΛΛΟΝΤΟΣ'),
(43341, 'https://ror.org/01nvq0b44', 'no_lang_code', 1, 'https://ror.org/01nvq0b44 Cemex (Switzerland)'),
(43342, 'https://ror.org/03p1xd909', 'no_lang_code', 1, 'https://ror.org/03p1xd909 ATG Europe (Netherlands)'),
(43343, 'https://ror.org/02ddxrd36', 'no_lang_code', 1, 'https://ror.org/02ddxrd36 e-Therapeutics (United Kingdom)'),
(43344, 'https://ror.org/01hdqf863', 'no_lang_code', 1, 'https://ror.org/01hdqf863 ProTechSure Scientific (United States)'),
(43345, 'https://ror.org/00zs99993', 'no_lang_code', 1, 'https://ror.org/00zs99993 Intelligent Software Solutions (United States)'),
(43346, 'https://ror.org/02hjcc687', 'no_lang_code', 1, 'https://ror.org/02hjcc687 Intelligent Fusion Technology (United States)'),
(43347, 'https://ror.org/01zcxfd31', 'no_lang_code', 1, 'https://ror.org/01zcxfd31 Eden Park Illumination (United States)'),
(43348, 'https://ror.org/05dz1qg23', 'de', 1, 'https://ror.org/05dz1qg23 Internationales Institut für Wald und Holz'),
(43349, 'https://ror.org/00ep5zh10', 'en', 1, 'https://ror.org/00ep5zh10 Edisto Island Historic Preservation Society'),
(43350, 'https://ror.org/0543g9v76', 'en', 1, 'https://ror.org/0543g9v76 Centre for Regional and International STI Studies and Support'),
(43351, 'https://ror.org/023q39239', 'no_lang_code', 1, 'https://ror.org/023q39239 Eijkelkamp SonicSampDrill (Netherlands)'),
(43352, 'https://ror.org/00gve2f24', 'no_lang_code', 1, 'https://ror.org/00gve2f24 Great Lakes Sound and Vibration (United States)'),
(43353, 'https://ror.org/03z6tkz58', 'no_lang_code', 1, 'https://ror.org/03z6tkz58 Element Six (United States)'),
(43354, 'https://ror.org/02zvazz07', 'no_lang_code', 1, 'https://ror.org/02zvazz07 Scio Diamond Technology Corporation (United States)'),
(43355, 'https://ror.org/01y1mwf47', 'no_lang_code', 1, 'https://ror.org/01y1mwf47 Liquifer Systems Group (Austria)'),
(43356, 'https://ror.org/05hpj2e91', 'no_lang_code', 1, 'https://ror.org/05hpj2e91 Moai Technologies (United States)'),
(43357, 'https://ror.org/046ybeq88', 'no_lang_code', 1, 'https://ror.org/046ybeq88 Proprs (United Kingdom)'),
(43358, 'https://ror.org/05338hh70', 'no_lang_code', 1, 'https://ror.org/05338hh70 Prozomix (United Kingdom)'),
(43359, 'https://ror.org/05pjhbt17', 'en', 1, 'https://ror.org/05pjhbt17 Montana Department of Environmental Quality'),
(43360, 'https://ror.org/020eyah39', 'no_lang_code', 1, 'https://ror.org/020eyah39 Przedsiębiorstwo Robót Elewacyjnych (Poland)'),
(43361, 'https://ror.org/05g95ne77', 'no_lang_code', 1, 'https://ror.org/05g95ne77 Kestrel Technology (United States)'),
(43362, 'https://ror.org/05309p384', 'en', 1, 'https://ror.org/05309p384 Montgomery Museum & Lewis Miller Regional Art Center'),
(43363, 'https://ror.org/02cfy3z22', 'de', 1, 'https://ror.org/02cfy3z22 Open Knowledge Foundation Deutschland'),
(43364, 'https://ror.org/0237ckc25', 'no_lang_code', 1, 'https://ror.org/0237ckc25 Kuehne + Nagel (Greece)'),
(43365, 'https://ror.org/04yaf9a96', 'no_lang_code', 1, 'https://ror.org/04yaf9a96 Accenture (Luxembourg)'),
(43366, 'https://ror.org/046qf2m29', 'no_lang_code', 1, 'https://ror.org/046qf2m29 RadiaSoft (United States)'),
(43367, 'https://ror.org/00zy64e53', 'no_lang_code', 1, 'https://ror.org/00zy64e53 Radiation Detection Technologies (United States)'),
(43368, 'https://ror.org/01zsbv887', 'no_lang_code', 1, 'https://ror.org/01zsbv887 Optosignal (United Kingdom)'),
(43369, 'https://ror.org/00ztcbk21', 'it', 1, 'https://ror.org/00ztcbk21 Ospedale S. Matteo degli Infermi Ospedale di Spoleto'),
(43370, 'https://ror.org/0564jxa35', 'no_lang_code', 1, 'https://ror.org/0564jxa35 Ottobock (Austria)'),
(43371, 'https://ror.org/02h2pj634', 'no_lang_code', 1, 'https://ror.org/02h2pj634 Seascape Consultants (United Kingdom)'),
(43372, 'https://ror.org/0279ghc90', 'en', 1, 'https://ror.org/0279ghc90 Pohang SeMyeong Christianity Hospital'),
(43373, 'https://ror.org/026bbbm26', 'en', 1, 'https://ror.org/026bbbm26 Museum of African American History'),
(43374, 'https://ror.org/00vgcn396', 'no_lang_code', 1, 'https://ror.org/00vgcn396 Quorn (United Kingdom)'),
(43375, 'https://ror.org/031da7s82', 'en', 1, 'https://ror.org/031da7s82 Marquette Regional History Center'),
(43376, 'https://ror.org/059g2r627', 'no_lang_code', 1, 'https://ror.org/059g2r627 Mars Space (United Kingdom)'),
(43377, 'https://ror.org/01cxpkg92', 'no_lang_code', 1, 'https://ror.org/01cxpkg92 Percuros (Netherlands)'),
(43378, 'https://ror.org/024acas24', 'en', 1, 'https://ror.org/024acas24 Research in Advanced Medical Informatics and Telematics'),
(43379, 'https://ror.org/05ksc2940', 'en', 1, 'https://ror.org/05ksc2940 Mayor''s Office for Policing and Crime'),
(43380, 'https://ror.org/02z82e935', 'no_lang_code', 1, 'https://ror.org/02z82e935 Media Deals (France)'),
(43381, 'https://ror.org/04mfd9b91', 'id', 1, 'https://ror.org/04mfd9b91 Universitas Teknologi Nusantara'),
(43382, 'https://ror.org/053cvy840', 'no_lang_code', 1, 'https://ror.org/053cvy840 SimPlan (Germany)'),
(43383, 'https://ror.org/002d67284', 'id', 1, 'https://ror.org/002d67284 Universitas Sutomo'),
(43384, 'https://ror.org/03305dv57', 'no_lang_code', 1, 'https://ror.org/03305dv57 Metrarc (United Kingdom)'),
(43385, 'https://ror.org/02yp1e416', 'es', 1, 'https://ror.org/02yp1e416 Hospital General Universitari de Castelló'),
(43386, 'https://ror.org/05td6db49', 'no_lang_code', 1, 'https://ror.org/05td6db49 Smart Component Technologies (United Kingdom)'),
(43387, 'https://ror.org/005mn0111', 'no_lang_code', 1, 'https://ror.org/005mn0111 Sciaky (United States)');
INSERT INTO `rors` VALUES
(43388, 'https://ror.org/01197h425', 'en', 1, 'https://ror.org/01197h425 Police and Crime Commissioner for West Yorkshire'),
(43389, 'https://ror.org/03mvhz334', 'no_lang_code', 1, 'https://ror.org/03mvhz334 SolMateS (Netherlands)'),
(43390, 'https://ror.org/04kw81y04', 'no_lang_code', 1, 'https://ror.org/04kw81y04 Sandia Research (United States)'),
(43391, 'https://ror.org/0412jyn76', 'no_lang_code', 1, 'https://ror.org/0412jyn76 Prodevelop (Spain)'),
(43392, 'https://ror.org/0216x8g43', 'no_lang_code', 1, 'https://ror.org/0216x8g43 TeraSys Technologies (United States)'),
(43393, 'https://ror.org/04xf9hg85', 'no_lang_code', 1, 'https://ror.org/04xf9hg85 Spectral Labs (United States)'),
(43394, 'https://ror.org/01zfcnf37', 'no_lang_code', 1, 'https://ror.org/01zfcnf37 N.Bazigos (Greece)'),
(43395, 'https://ror.org/0018f1k63', 'no_lang_code', 1, 'https://ror.org/0018f1k63 Texas High Energy Materials (United States)'),
(43396, 'https://ror.org/04p1gbs34', 'no_lang_code', 1, 'https://ror.org/04p1gbs34 Sydor Technologies (United States)'),
(43397, 'https://ror.org/01xqtc407', 'no_lang_code', 1, 'https://ror.org/01xqtc407 Nanocomp Technologies (United States)'),
(43398, 'https://ror.org/05gxk4854', 'no_lang_code', 1, 'https://ror.org/05gxk4854 nanoPrecision Products (United States)'),
(43399, 'https://ror.org/01n2j8127', 'en', 1, 'https://ror.org/01n2j8127 United Nations Institute for Training and Research'),
(43400, 'https://ror.org/01qqwja70', 'en', 1, 'https://ror.org/01qqwja70 Netherlands Maritime Technology'),
(43401, 'https://ror.org/0120w9t22', 'no_lang_code', 1, 'https://ror.org/0120w9t22 NanoSynTex (United States)'),
(43402, 'https://ror.org/05sgy1v64', 'en', 1, 'https://ror.org/05sgy1v64 Brussels Office of Helmholtz Association'),
(43403, 'https://ror.org/02hcnd264', 'no_lang_code', 1, 'https://ror.org/02hcnd264 Irida Labs (Greece)'),
(43404, 'https://ror.org/00yj1g869', 'no_lang_code', 1, 'https://ror.org/00yj1g869 Subsurface Insights (United States)'),
(43405, 'https://ror.org/01d186671', 'no_lang_code', 1, 'https://ror.org/01d186671 Tecnic (Italy)'),
(43406, 'https://ror.org/00nz8kv36', 'en', 1, 'https://ror.org/00nz8kv36 Black Archives of Mid-America'),
(43407, 'https://ror.org/01yh1st73', 'no_lang_code', 1, 'https://ror.org/01yh1st73 Unparallel Innovation (Portugal)'),
(43408, 'https://ror.org/05tx5hy52', 'no_lang_code', 1, 'https://ror.org/05tx5hy52 Tech4Imaging (United States)'),
(43409, 'https://ror.org/05nw0ka87', 'en', 1, 'https://ror.org/05nw0ka87 Vienna Centre for Societal Security Wiener Zentrum für sozialwissenschaftliche Sicherheitsforschung'),
(43410, 'https://ror.org/00b8kmt09', 'no_lang_code', 1, 'https://ror.org/00b8kmt09 Virtual Power Solutions (Portugal)'),
(43411, 'https://ror.org/02fkr9p25', 'no_lang_code', 1, 'https://ror.org/02fkr9p25 WFS Technologies (United Kingdom)'),
(43412, 'https://ror.org/00cz1kp86', 'en', 1, 'https://ror.org/00cz1kp86 Vishwamitra Research Institute'),
(43413, 'https://ror.org/00n0yrk65', 'no_lang_code', 1, 'https://ror.org/00n0yrk65 WHYY (United States)'),
(43414, 'https://ror.org/04xcafs23', 'en', 1, 'https://ror.org/04xcafs23 Wichita-Sedgwick County Historical Museum'),
(43415, 'https://ror.org/05sz2wg38', 'no_lang_code', 1, 'https://ror.org/05sz2wg38 Technical Solutions (United States)'),
(43416, 'https://ror.org/05629zc23', 'no_lang_code', 1, 'https://ror.org/05629zc23 Xdot Engineering and Analysis (United States)'),
(43417, 'https://ror.org/04sg72471', 'en', 1, 'https://ror.org/04sg72471 University of Battambang'),
(43418, 'https://ror.org/00t7s3z39', 'en', 1, 'https://ror.org/00t7s3z39 Chea Sim University of Kamchaymear'),
(43419, 'https://ror.org/00yydfg09', 'id', 1, 'https://ror.org/00yydfg09 Universitas Pekalongan'),
(43420, 'https://ror.org/02e1g6m79', 'id', 1, 'https://ror.org/02e1g6m79 Universitas Panca Marga'),
(43421, 'https://ror.org/038fg0e88', 'es', 1, 'https://ror.org/038fg0e88 Centro Universitario Didaskalos'),
(43422, 'https://ror.org/039t7kh95', 'id', 1, 'https://ror.org/039t7kh95 Universitas Victory Sorong'),
(43423, 'https://ror.org/01pqwjq49', 'id', 1, 'https://ror.org/01pqwjq49 Universitas Merdeka Surabaya'),
(43424, 'https://ror.org/001mzze07', 'id', 1, 'https://ror.org/001mzze07 Universitas Tabanan'),
(43425, 'https://ror.org/046s04e65', 'en', 1, 'https://ror.org/046s04e65 National University الجامعة الوطنية'),
(43426, 'https://ror.org/02t6k0v08', 'en', 1, 'https://ror.org/02t6k0v08 Katanga Methodist University Université Méthodiste au Katanga'),
(43427, 'https://ror.org/025eq1v74', 'id', 1, 'https://ror.org/025eq1v74 Universitas Gajah Putih'),
(43428, 'https://ror.org/036n40n43', 'en', 1, 'https://ror.org/036n40n43 American Society of Naval Engineers'),
(43429, 'https://ror.org/02wh2qn63', 'en', 1, 'https://ror.org/02wh2qn63 Association of Clinical Pathologists'),
(43430, 'https://ror.org/04s0zae50', 'en', 1, 'https://ror.org/04s0zae50 American Association of Critical-Care Nurses'),
(43431, 'https://ror.org/03c39qe40', 'en', 1, 'https://ror.org/03c39qe40 Canadian Astronomical Society Société Canadienne d’Astronomie'),
(43432, 'https://ror.org/03gzy4429', 'en', 1, 'https://ror.org/03gzy4429 British Society of Periodontology'),
(43433, 'https://ror.org/03q0a5512', 'en', 1, 'https://ror.org/03q0a5512 Association du Barreau Canadien Canadian Bar Association'),
(43434, 'https://ror.org/008124755', 'en', 1, 'https://ror.org/008124755 British Toxicology Society'),
(43435, 'https://ror.org/02nkqdh98', 'en', 1, 'https://ror.org/02nkqdh98 RP Fighting Blindness'),
(43436, 'https://ror.org/04vxve916', 'en', 1, 'https://ror.org/04vxve916 British Society for Oral and Dental Research'),
(43437, 'https://ror.org/0306fdh09', 'en', 1, 'https://ror.org/0306fdh09 Tuberous Sclerosis Association'),
(43438, 'https://ror.org/05qjkt447', 'en', 1, 'https://ror.org/05qjkt447 Economic History Society'),
(43439, 'https://ror.org/04yw9eb05', 'en', 1, 'https://ror.org/04yw9eb05 British Society for Antimicrobial Chemotherapy'),
(43440, 'https://ror.org/02ybwq307', 'en', 1, 'https://ror.org/02ybwq307 British Association for Japanese Studies'),
(43441, 'https://ror.org/00m5fcs37', 'en', 1, 'https://ror.org/00m5fcs37 Humane Slaughter Association'),
(43442, 'https://ror.org/001hpw566', 'pt', 1, 'https://ror.org/001hpw566 Sociedade Brasileira de Ortopedia e Traumatologia'),
(43443, 'https://ror.org/042p4aa24', 'en', 1, 'https://ror.org/042p4aa24 Chartered Institute of Library and Information Professionals'),
(43444, 'https://ror.org/01dfmhm16', 'en', 1, 'https://ror.org/01dfmhm16 British Blood Transfusion Society'),
(43445, 'https://ror.org/05e7jqk20', 'en', 1, 'https://ror.org/05e7jqk20 Institute of Materials, Minerals and Mining'),
(43446, 'https://ror.org/00qyaft09', 'en', 1, 'https://ror.org/00qyaft09 Healthcare Infection Society'),
(43447, 'https://ror.org/04c5amq59', 'en', 1, 'https://ror.org/04c5amq59 Association of Surgeons of Great Britain and Ireland'),
(43448, 'https://ror.org/005891v66', 'en', 1, 'https://ror.org/005891v66 Cardiac Society of Australia and New Zealand'),
(43449, 'https://ror.org/058sh5428', 'en', 1, 'https://ror.org/058sh5428 BCS — The Chartered Institute for IT'),
(43450, 'https://ror.org/00147ek89', 'en', 1, 'https://ror.org/00147ek89 Australian Orthopaedic Association'),
(43451, 'https://ror.org/041jyes35', 'en', 1, 'https://ror.org/041jyes35 Obstetric Anaesthetists'' Association'),
(43452, 'https://ror.org/00b5zg596', 'en', 1, 'https://ror.org/00b5zg596 British Educational Research Association'),
(43453, 'https://ror.org/02e4cg183', 'en', 1, 'https://ror.org/02e4cg183 Chest Heart and Stroke Scotland'),
(43454, 'https://ror.org/020tbzb21', 'en', 1, 'https://ror.org/020tbzb21 Egyptian College of Critical Care Physicians'),
(43455, 'https://ror.org/03f0m8k49', 'en', 1, 'https://ror.org/03f0m8k49 British Association for Cancer Research'),
(43456, 'https://ror.org/0128ps453', 'en', 1, 'https://ror.org/0128ps453 Egyptian German Society of Zoology'),
(43457, 'https://ror.org/04n9gs185', 'en', 1, 'https://ror.org/04n9gs185 Royal Australian Chemical Institute'),
(43458, 'https://ror.org/03bexps94', 'es', 1, 'https://ror.org/03bexps94 Universidad Pedagógica de Durango'),
(43459, 'https://ror.org/05s8mns17', 'en', 1, 'https://ror.org/05s8mns17 Association for Clinical Biochemistry and Laboratory Medicine'),
(43460, 'https://ror.org/00xqj7528', 'en', 1, 'https://ror.org/00xqj7528 British Nuclear Medicine Society'),
(43461, 'https://ror.org/02f0r3n63', 'de', 1, 'https://ror.org/02f0r3n63 BUND Naturschutz'),
(43462, 'https://ror.org/03awvgn34', 'en', 1, 'https://ror.org/03awvgn34 Society for Endocrinology, Metabolism and Diabetes of South Africa'),
(43463, 'https://ror.org/0307qjf39', 'en', 1, 'https://ror.org/0307qjf39 Egyptian Society of Radiology and Nuclear Medicine'),
(43464, 'https://ror.org/030ewbq61', 'en', 1, 'https://ror.org/030ewbq61 Prehistoric Society'),
(43465, 'https://ror.org/04srze519', 'en', 1, 'https://ror.org/04srze519 Mitutoyo Association for Science and Technology 公益財団法人 三豊科学技術振興協会'),
(43466, 'https://ror.org/014n3px33', 'en', 1, 'https://ror.org/014n3px33 South African Association of Women Graduates'),
(43467, 'https://ror.org/03wkeky45', 'en', 1, 'https://ror.org/03wkeky45 Australian Society of Anaesthetists'),
(43468, 'https://ror.org/036rr6h87', 'en', 1, 'https://ror.org/036rr6h87 Saudi Chemical Society الجمعية الكيميائية السعودية'),
(43469, 'https://ror.org/01nwqqg09', 'en', 1, 'https://ror.org/01nwqqg09 Egyptian Society of Chest Diseases and Tuberculosis'),
(43470, 'https://ror.org/02xxmjs88', 'en', 1, 'https://ror.org/02xxmjs88 British Association for Slavonic and East European Studies'),
(43471, 'https://ror.org/00b5k3781', 'en', 1, 'https://ror.org/00b5k3781 Southern Africa Association for the Advancement of Science'),
(43472, 'https://ror.org/05wvdt748', 'en', 1, 'https://ror.org/05wvdt748 Association of universities in the Netherlands Vereniging van Samenwerkende Nederlandse Universiteiten'),
(43473, 'https://ror.org/0248jkv14', 'en', 1, 'https://ror.org/0248jkv14 British Psychological Society'),
(43474, 'https://ror.org/04y8cm806', 'en', 1, 'https://ror.org/04y8cm806 Japanese Circulation Society 日本循環器学会'),
(43475, 'https://ror.org/00jcwff27', 'en', 1, 'https://ror.org/00jcwff27 Society for Experimental Biology'),
(43476, 'https://ror.org/00z4gpq27', 'en', 1, 'https://ror.org/00z4gpq27 Association Canadienne de Chirurgie Thoracique Canadian Association of Thoracic Surgeons'),
(43477, 'https://ror.org/03a4te222', 'en', 1, 'https://ror.org/03a4te222 British Society for Middle Eastern Studies'),
(43478, 'https://ror.org/05bc46c94', 'en', 1, 'https://ror.org/05bc46c94 New Zealand Educational Administration and Leadership Society'),
(43479, 'https://ror.org/04zj17j36', 'en', 1, 'https://ror.org/04zj17j36 British Society for Plant Pathology'),
(43480, 'https://ror.org/048psdj82', 'en', 1, 'https://ror.org/048psdj82 Accounting and Finance Association of Australia and New Zealand'),
(43481, 'https://ror.org/04epxrt89', 'en', 1, 'https://ror.org/04epxrt89 Japanese Physical Therapy Association 日本理学療法士協会'),
(43482, 'https://ror.org/00w5rdf18', 'en', 1, 'https://ror.org/00w5rdf18 Society for the Promotion of Roman Studies'),
(43483, 'https://ror.org/014c6rd81', 'en', 1, 'https://ror.org/014c6rd81 Japanese Society of Nephrology 一般社団法人 日本腎臓学会'),
(43484, 'https://ror.org/05qfkt964', 'de', 1, 'https://ror.org/05qfkt964 Fördergemeinschaft Deutsche Kinderherzzentren'),
(43485, 'https://ror.org/0570s7p64', 'sv', 1, 'https://ror.org/0570s7p64 Göteborgs Tandläkare Sällskap'),
(43486, 'https://ror.org/05ezak240', 'en', 1, 'https://ror.org/05ezak240 Society for Theatre Research'),
(43487, 'https://ror.org/02ns3pe91', 'en', 1, 'https://ror.org/02ns3pe91 Engineering Advancement Association of Japan 般財団法人エンジニアリング協会'),
(43488, 'https://ror.org/01skh6n03', 'en', 1, 'https://ror.org/01skh6n03 Sveriges Tandläkarförbund Swedish Dental Association'),
(43489, 'https://ror.org/02njsf937', 'en', 1, 'https://ror.org/02njsf937 New Zealand Plant Protection Society'),
(43490, 'https://ror.org/02prq1a68', 'en', 1, 'https://ror.org/02prq1a68 Forschungsvereinigung Verbrennungskraftmaschinen Research Association for Combustion Engines'),
(43491, 'https://ror.org/00mv8h305', 'en', 1, 'https://ror.org/00mv8h305 Christian Doppler Forschungsgesellschaft Christian Doppler Research Association'),
(43492, 'https://ror.org/03argrj65', 'en', 1, 'https://ror.org/03argrj65 Royal Dublin Society'),
(43493, 'https://ror.org/02b2fc027', 'en', 1, 'https://ror.org/02b2fc027 World Veterinary Poultry Association'),
(43494, 'https://ror.org/01crbhp32', 'fi', 1, 'https://ror.org/01crbhp32 Lounais-Suomen Syöpäyhdistys'),
(43495, 'https://ror.org/05t77d857', 'en', 1, 'https://ror.org/05t77d857 Institute of Biomedical Science'),
(43496, 'https://ror.org/02r9ctp23', 'fr', 1, 'https://ror.org/02r9ctp23 Société Française d''Exportation des Ressources Éducatives'),
(43497, 'https://ror.org/04hm9pd03', 'en', 1, 'https://ror.org/04hm9pd03 Association of Anaesthetists of Great Britain and Ireland'),
(43498, 'https://ror.org/03wjq7x76', 'de', 1, 'https://ror.org/03wjq7x76 Deutsche Ophthalmologische Gesellschaft'),
(43499, 'https://ror.org/02q486a47', 'en', 1, 'https://ror.org/02q486a47 Japanese Association of University Women パトリシア信濃町テラス'),
(43500, 'https://ror.org/01mzyze39', 'en', 1, 'https://ror.org/01mzyze39 British HIV Association'),
(43501, 'https://ror.org/05257ys56', 'en', 1, 'https://ror.org/05257ys56 British Transplantation Society'),
(43502, 'https://ror.org/04bda4853', 'en', 1, 'https://ror.org/04bda4853 Wildlife Preservation Society of Australia'),
(43503, 'https://ror.org/02z0zbb37', 'en', 1, 'https://ror.org/02z0zbb37 Australian Rheumatology Association'),
(43504, 'https://ror.org/03z4zm883', 'en', 1, 'https://ror.org/03z4zm883 Speech Pathology Australia'),
(43505, 'https://ror.org/023sa9n23', 'en', 1, 'https://ror.org/023sa9n23 Australian Society for Medical Research'),
(43506, 'https://ror.org/037dn9q43', 'de', 1, 'https://ror.org/037dn9q43 Deutsche Gesellschaft für Urologie'),
(43507, 'https://ror.org/02mmcvz81', 'en', 1, 'https://ror.org/02mmcvz81 Göteborg Medical Society Göteborgs Läkaresällskap'),
(43508, 'https://ror.org/020r1b091', 'en', 1, 'https://ror.org/020r1b091 Hellenic Cardiological Society Ελληνική Καρδιολογική Εταιρεία'),
(43509, 'https://ror.org/03m4xpg98', 'en', 1, 'https://ror.org/03m4xpg98 Hellenic Society for the Study of Bone Metabolism Ελληνική Εταιρεία Μελέτης Μεταβολισμού των Οστών'),
(43510, 'https://ror.org/04wvr3489', 'en', 1, 'https://ror.org/04wvr3489 Australian Federation of University Women – South Australia'),
(43511, 'https://ror.org/03fpgta87', 'en', 1, 'https://ror.org/03fpgta87 Service Science Society of Taiwan 台灣服務科學學會'),
(43512, 'https://ror.org/024jp7r97', 'pt', 1, 'https://ror.org/024jp7r97 Associação Brasileira de Metalurgia, Materiais e Mineração'),
(43513, 'https://ror.org/03gck1m55', 'fr', 1, 'https://ror.org/03gck1m55 Société Française de Dermatologie et de Pathologie Sexuellement Transmissible'),
(43514, 'https://ror.org/038htga59', 'en', 1, 'https://ror.org/038htga59 Australian Psychological Society'),
(43515, 'https://ror.org/01jatd098', 'fr', 1, 'https://ror.org/01jatd098 Société Française de Médecine Vasculaire'),
(43516, 'https://ror.org/0425vqx89', 'en', 1, 'https://ror.org/0425vqx89 Cumann Lúthchleas Gael Gaelic Athletic Association'),
(43517, 'https://ror.org/04r3js259', 'en', 1, 'https://ror.org/04r3js259 Asian Transportation Research Society'),
(43518, 'https://ror.org/038hdcm94', 'en', 1, 'https://ror.org/038hdcm94 Australian Dental Association'),
(43519, 'https://ror.org/02yrvm198', 'pt', 1, 'https://ror.org/02yrvm198 Sociedade Brasileira de Anestesiologia'),
(43520, 'https://ror.org/02y1ra305', 'en', 1, 'https://ror.org/02y1ra305 Association for Progressive Communications'),
(43521, 'https://ror.org/00hw70n10', 'en', 1, 'https://ror.org/00hw70n10 Korea International Trade Association 한국무역협회'),
(43522, 'https://ror.org/04h7bb169', 'en', 1, 'https://ror.org/04h7bb169 Hong Kong Health Care Association'),
(43523, 'https://ror.org/009mmq515', 'en', 1, 'https://ror.org/009mmq515 Australian Diabetes Society'),
(43524, 'https://ror.org/019662654', 'en', 1, 'https://ror.org/019662654 Chinese Materials Research Society 中国材料研究学会'),
(43525, 'https://ror.org/03gffcv79', 'en', 1, 'https://ror.org/03gffcv79 Society of Hong Kong Scholars'),
(43526, 'https://ror.org/00gp9bw49', 'fr', 1, 'https://ror.org/00gp9bw49 Vaincre la Mucoviscidose'),
(43527, 'https://ror.org/03aq6c412', 'en', 1, 'https://ror.org/03aq6c412 Australian Association for Academic Primary Care'),
(43528, 'https://ror.org/00srr1743', 'sv', 1, 'https://ror.org/00srr1743 Stiftelsen Bergteknisk Forskning'),
(43529, 'https://ror.org/051xcjm78', 'en', 1, 'https://ror.org/051xcjm78 Pharmacy Guild of Australia'),
(43530, 'https://ror.org/02ke6ab14', 'en', 1, 'https://ror.org/02ke6ab14 Koninklijke Nederlandse Voetbalbond Royal Dutch Football Association'),
(43531, 'https://ror.org/032dbm087', 'en', 1, 'https://ror.org/032dbm087 Clinical Oncological Society of Australia'),
(43532, 'https://ror.org/00rzr9371', 'es', 1, 'https://ror.org/00rzr9371 Asociación Universitaria Iberoamericana de Postgrado'),
(43533, 'https://ror.org/02pehm937', 'en', 1, 'https://ror.org/02pehm937 Australian Physiotherapy Association'),
(43534, 'https://ror.org/05db98w21', 'en', 1, 'https://ror.org/05db98w21 World Association of Zoos and Aquariums'),
(43535, 'https://ror.org/04sksc249', 'en', 1, 'https://ror.org/04sksc249 Society of Instrument and Control Engineers 計測自動制御学会'),
(43536, 'https://ror.org/02dprvv32', 'en', 1, 'https://ror.org/02dprvv32 Association for Canadian Studies in Australia and New Zealand'),
(43537, 'https://ror.org/04fh21g11', 'fr', 1, 'https://ror.org/04fh21g11 Association Française pour l''Etude du Foie'),
(43538, 'https://ror.org/02bn2qg18', 'sv', 1, 'https://ror.org/02bn2qg18 Svensk Förening för Sömnforskning och Sömnmedicin'),
(43539, 'https://ror.org/04yppq721', 'en', 1, 'https://ror.org/04yppq721 Australasian Institute of Mining and Metallurgy'),
(43540, 'https://ror.org/01nrq5w30', 'en', 1, 'https://ror.org/01nrq5w30 Saudi Heart Association'),
(43541, 'https://ror.org/03feyjt47', 'en', 1, 'https://ror.org/03feyjt47 Saudi Ophthalmological Society الجمعية السعودية لطب العيون'),
(43542, 'https://ror.org/02rhzx356', 'en', 1, 'https://ror.org/02rhzx356 Australasian Sleep Association'),
(43543, 'https://ror.org/05pps5s98', 'en', 1, 'https://ror.org/05pps5s98 Saudi Pharmaceutical Society'),
(43544, 'https://ror.org/054mxgp74', 'fr', 1, 'https://ror.org/054mxgp74 Association pour la recherche sur la Sclérose Latérale Amyotrophique'),
(43545, 'https://ror.org/04a3psa27', 'en', 1, 'https://ror.org/04a3psa27 Saudi Society of Dermatology and Dermatologic Surgery الجمعية السعودية لأمراض وجراحة الجلد'),
(43546, 'https://ror.org/04bstw291', 'en', 1, 'https://ror.org/04bstw291 Austrian Society of Dermatology and Venereology Österreichischen Gesellschaft für Dermatologie und Venerologie'),
(43547, 'https://ror.org/04rszyv41', 'en', 1, 'https://ror.org/04rszyv41 Australian Library and Information Association'),
(43548, 'https://ror.org/012zhga41', 'en', 1, 'https://ror.org/012zhga41 Shine'),
(43549, 'https://ror.org/05ba5xv93', 'no_lang_code', 1, 'https://ror.org/05ba5xv93 Karachaevo-Cherkessk State University Карачаево-Черкесский государственный университет'),
(43550, 'https://ror.org/05dxj6c66', 'no_lang_code', 1, 'https://ror.org/05dxj6c66 Toho Gakuen'),
(43551, 'https://ror.org/02tggea32', 'es', 1, 'https://ror.org/02tggea32 Universidad Indígena Boliviana Aymara Tupak Katari'),
(43552, 'https://ror.org/04myfn622', 'no_lang_code', 1, 'https://ror.org/04myfn622 Rubicon Labs (United States)'),
(43553, 'https://ror.org/03eq6a532', 'en', 1, 'https://ror.org/03eq6a532 Turkish Society of Nephrology Türk Nefroloji Derneği'),
(43554, 'https://ror.org/02dmnrr28', 'en', 1, 'https://ror.org/02dmnrr28 Fachgruppe für Untertagbau Swiss Tunnelling Society'),
(43555, 'https://ror.org/05h6j7923', 'en', 1, 'https://ror.org/05h6j7923 Society for Mental Health Research'),
(43556, 'https://ror.org/010k7sz25', 'de', 1, 'https://ror.org/010k7sz25 Arbeitsgemeinschaft Dermatologische Forschung'),
(43557, 'https://ror.org/01vek0a79', 'it', 1, 'https://ror.org/01vek0a79 Associazione Cristina Bassi Onlus'),
(43558, 'https://ror.org/023q20n38', 'en', 1, 'https://ror.org/023q20n38 Chinese Pharmaceutical Association 中国药学会'),
(43559, 'https://ror.org/04hdh0n29', 'en', 1, 'https://ror.org/04hdh0n29 Sveriges Läkarförbund Swedish Medical Association'),
(43560, 'https://ror.org/02ejpdc56', 'en', 1, 'https://ror.org/02ejpdc56 Agri-Futures Nova Scotia Association'),
(43561, 'https://ror.org/02st2pm23', 'it', 1, 'https://ror.org/02st2pm23 Associazione Italiana Contro le Leucemie Linfomi e Mieloma'),
(43562, 'https://ror.org/03fz8dh89', 'en', 1, 'https://ror.org/03fz8dh89 Japanese Society of Medical Oncology 腫瘍内科学会'),
(43563, 'https://ror.org/03jrxdc53', 'en', 1, 'https://ror.org/03jrxdc53 Japanese Urological Association 日本泌尿器科学会'),
(43564, 'https://ror.org/01a0fby34', 'en', 1, 'https://ror.org/01a0fby34 Advanced Machining Technology and Development Association 先端加工機械技術振興協会'),
(43565, 'https://ror.org/05syq9r31', 'de', 1, 'https://ror.org/05syq9r31 Forschungsvereinigung für Luft- und Trocknungstechnik'),
(43566, 'https://ror.org/03xvcy884', 'pt', 1, 'https://ror.org/03xvcy884 Sociedade Portuguesa de Nefrologia'),
(43567, 'https://ror.org/005535379', 'en', 1, 'https://ror.org/005535379 Blanchette Rockefeller Neurosciences Institute'),
(43568, 'https://ror.org/01vfzqe43', 'en', 1, 'https://ror.org/01vfzqe43 Korean Society of Neurogastroenterology and Motility 대한소화기기능성질환·운동학회'),
(43569, 'https://ror.org/03q170s02', 'it', 1, 'https://ror.org/03q170s02 Associazione Malattie Autoimmuni Mario Rossi'),
(43570, 'https://ror.org/02jdjf497', 'en', 1, 'https://ror.org/02jdjf497 European Association of Environmental and Resource Economists'),
(43571, 'https://ror.org/014xpbn19', 'fr', 1, 'https://ror.org/014xpbn19 Entretiens de Rééducation et Réadaptation Fonctionnelles'),
(43572, 'https://ror.org/01w0j5472', 'en', 1, 'https://ror.org/01w0j5472 Schweizerische Gesellschaft für Radiologie Swiss Society of Radiology'),
(43573, 'https://ror.org/017a3va29', 'de', 1, 'https://ror.org/017a3va29 Elternverein für Leukämie- und Krebskranke Kinder Gießen'),
(43574, 'https://ror.org/03zta3k64', 'da', 1, 'https://ror.org/03zta3k64 Nyreforeningen'),
(43575, 'https://ror.org/01hx09q43', 'en', 1, 'https://ror.org/01hx09q43 Alberta Medical Association'),
(43576, 'https://ror.org/047gams58', 'no_lang_code', 1, 'https://ror.org/047gams58 CNH Industrial (Italy)'),
(43577, 'https://ror.org/03aewyp97', 'en', 1, 'https://ror.org/03aewyp97 Association of Danish Physiotherapists Danske Fysioterapeuter'),
(43578, 'https://ror.org/00e6q5h84', 'en', 1, 'https://ror.org/00e6q5h84 Central Coast Orthopedic Medical Group'),
(43579, 'https://ror.org/03w3k6x10', 'de', 1, 'https://ror.org/03w3k6x10 Österreichische Gesellschaft für Hämatologie & Medizinische Onkologie'),
(43580, 'https://ror.org/01f01fm15', 'fr', 1, 'https://ror.org/01f01fm15 NephroCare Tassin-Charcot'),
(43581, 'https://ror.org/040nt5929', 'en', 1, 'https://ror.org/040nt5929 Abramson Center for Jewish Life'),
(43582, 'https://ror.org/031krgy72', 'en', 1, 'https://ror.org/031krgy72 Center for Advancing Health'),
(43583, 'https://ror.org/04s147q83', 'en', 1, 'https://ror.org/04s147q83 Dawkins Dermatology'),
(43584, 'https://ror.org/033hv9q38', 'en', 1, 'https://ror.org/033hv9q38 Australian Marine Sciences Association'),
(43585, 'https://ror.org/03fjn6n75', 'en', 1, 'https://ror.org/03fjn6n75 Australian Publishers Association'),
(43586, 'https://ror.org/00pj6vp51', 'en', 1, 'https://ror.org/00pj6vp51 Australian Society for Biochemistry and Molecular Biology'),
(43587, 'https://ror.org/000y15785', 'en', 1, 'https://ror.org/000y15785 Australian Society For Fish Biology'),
(43588, 'https://ror.org/01thczn33', 'en', 1, 'https://ror.org/01thczn33 Australian Society for Microbiology'),
(43589, 'https://ror.org/05wcr1b38', 'en', 1, 'https://ror.org/05wcr1b38 Centre for Inflammation Research'),
(43590, 'https://ror.org/03d5a9t15', 'en', 1, 'https://ror.org/03d5a9t15 Department of Medical Sciences กรมวิทยาศาสตร์การแพทย์'),
(43591, 'https://ror.org/020209y40', 'no_lang_code', 1, 'https://ror.org/020209y40 Donawa Lifescience Consulting (Italy)'),
(43592, 'https://ror.org/05pqwek81', 'no_lang_code', 1, 'https://ror.org/05pqwek81 Alliance Protein Laboratories (United States)'),
(43593, 'https://ror.org/0394z0v14', 'en', 1, 'https://ror.org/0394z0v14 Harborview Injury Prevention and Research Center'),
(43594, 'https://ror.org/04js6xx21', 'en', 1, 'https://ror.org/04js6xx21 McGowan Institute for Regenerative Medicine'),
(43595, 'https://ror.org/008htsm20', 'de', 1, 'https://ror.org/008htsm20 Sana Kliniken Duisburg'),
(43596, 'https://ror.org/035ect513', 'en', 1, 'https://ror.org/035ect513 Miami Heart Research Institute'),
(43597, 'https://ror.org/03jtajd40', 'fr', 1, 'https://ror.org/03jtajd40 Programme PAC-CI'),
(43598, 'https://ror.org/01761e930', 'en', 1, 'https://ror.org/01761e930 Turku PET Centre'),
(43599, 'https://ror.org/0483xzg81', 'no_lang_code', 1, 'https://ror.org/0483xzg81 Paion (United States)'),
(43600, 'https://ror.org/01qk1b565', 'no_lang_code', 1, 'https://ror.org/01qk1b565 Pure Protein (United States)'),
(43601, 'https://ror.org/0264dxb48', 'en', 1, 'https://ror.org/0264dxb48 Wellcome/MRC Institute of Metabolic Science'),
(43602, 'https://ror.org/02dm76w35', 'en', 1, 'https://ror.org/02dm76w35 Minnesota Institute of Public Health'),
(43603, 'https://ror.org/02qwkrw10', 'en', 1, 'https://ror.org/02qwkrw10 National Institute of Health ՀՀ ԱՆ Առողջապահության Ազգային Ինստիտուտ'),
(43604, 'https://ror.org/02drfng73', 'en', 1, 'https://ror.org/02drfng73 Middle Tennessee Research Institute'),
(43605, 'https://ror.org/02ckq3786', 'en', 1, 'https://ror.org/02ckq3786 New York Child Learning Institute'),
(43606, 'https://ror.org/04ghh8334', 'en', 1, 'https://ror.org/04ghh8334 Central Sericultural Research and Training Institute केंद्रीय रेशम उत्पादन अनुसंधान एवं प्रशिक्षण संस्थान'),
(43607, 'https://ror.org/04ekfdy38', 'en', 1, 'https://ror.org/04ekfdy38 Galveston Island Research Community Research Advisory Committee'),
(43608, 'https://ror.org/05kznsx33', 'no_lang_code', 1, 'https://ror.org/05kznsx33 Antibiotic (Bulgaria)'),
(43609, 'https://ror.org/04b3f3k27', 'en', 1, 'https://ror.org/04b3f3k27 Global Viral'),
(43610, 'https://ror.org/02hp8vh60', 'en', 1, 'https://ror.org/02hp8vh60 Institute of Applied Physiology & Medicine'),
(43611, 'https://ror.org/04btxqd09', 'en', 1, 'https://ror.org/04btxqd09 Institute for the Advanced Study of Black Family Life and Culture'),
(43612, 'https://ror.org/00nekn329', 'en', 1, 'https://ror.org/00nekn329 Higher Institute of Advanced Studies'),
(43613, 'https://ror.org/05axsx403', 'en', 1, 'https://ror.org/05axsx403 Institute of Water and Sanitation Development'),
(43614, 'https://ror.org/0230wyg61', 'en', 1, 'https://ror.org/0230wyg61 Cardiovascular Innovation Institute'),
(43615, 'https://ror.org/05hfnvf25', 'en', 1, 'https://ror.org/05hfnvf25 High Institute For Computers and Management Information Systems'),
(43616, 'https://ror.org/007y22n43', 'de', 1, 'https://ror.org/007y22n43 Gesundheitszentrum Bitterfeld'),
(43617, 'https://ror.org/02rzd6x38', 'en', 1, 'https://ror.org/02rzd6x38 National College'),
(43618, 'https://ror.org/05s3r6j75', 'en', 1, 'https://ror.org/05s3r6j75 Southwestern Community College - Iowa'),
(43619, 'https://ror.org/00x3xqj53', 'en', 1, 'https://ror.org/00x3xqj53 Canadian University Music Society Société de musique des universités canadiennes'),
(43620, 'https://ror.org/05vhh0619', 'en', 1, 'https://ror.org/05vhh0619 Trinity Valley Community College'),
(43621, 'https://ror.org/01ye08k77', 'en', 1, 'https://ror.org/01ye08k77 The 180th Hospital of PLA 中国人民解放军第180医院'),
(43622, 'https://ror.org/04ed8jn07', 'en', 1, 'https://ror.org/04ed8jn07 Zhenjiang City Fourth People''s Hospital 镇江市第四人民医院'),
(43623, 'https://ror.org/02djvk664', 'en', 1, 'https://ror.org/02djvk664 Shaoxing No.6 People''s Hospital 绍兴市立医院'),
(43624, 'https://ror.org/004debr48', 'it', 1, 'https://ror.org/004debr48 Ospedale Santa Maria di Loreto Nuovo'),
(43625, 'https://ror.org/04a5h3b47', 'en', 1, 'https://ror.org/04a5h3b47 Eastern Gateway Community College'),
(43626, 'https://ror.org/05avt0b71', 'en', 1, 'https://ror.org/05avt0b71 Sanya City Women and Children Hospital'),
(43627, 'https://ror.org/00z7vk025', 'no_lang_code', 1, 'https://ror.org/00z7vk025 Electronic Sensor Technology (United States)'),
(43628, 'https://ror.org/03cg5ap92', 'en', 1, 'https://ror.org/03cg5ap92 Luoyang Central Hospital Affiliated to Zhengzhou University'),
(43629, 'https://ror.org/02dzrb971', 'no_lang_code', 1, 'https://ror.org/02dzrb971 MSP Analytics (United States)'),
(43630, 'https://ror.org/04z2tt918', 'en', 1, 'https://ror.org/04z2tt918 Walker County Red Cross Hospital 获嘉县红十字医院'),
(43631, 'https://ror.org/0452rtt80', 'fr', 1, 'https://ror.org/0452rtt80 Laboratoire de Neurobiologie Cellulaire et Moléculaire'),
(43632, 'https://ror.org/03zrj3m15', 'en', 1, 'https://ror.org/03zrj3m15 Riverside Hospital of Guangxi Zhuang Autonomous Region 广西壮族自治区江滨医院'),
(43633, 'https://ror.org/01ypty838', 'no_lang_code', 1, 'https://ror.org/01ypty838 Megara Resins (Greece)'),
(43634, 'https://ror.org/014nsap67', 'en', 1, 'https://ror.org/014nsap67 People''s Liberation Army No. 150 Hospital'),
(43635, 'https://ror.org/01kr9ze74', 'en', 1, 'https://ror.org/01kr9ze74 The Third People''s Hospital of Dalian City 大连市第三人民医院'),
(43636, 'https://ror.org/030xn5j74', 'en', 1, 'https://ror.org/030xn5j74 TCM-Intigrated Cancer Center of Southern Medical University 南方医科大学中西医结合医院'),
(43637, 'https://ror.org/0183mt691', 'en', 1, 'https://ror.org/0183mt691 Hajera Taju University College'),
(43638, 'https://ror.org/01459d894', 'en', 1, 'https://ror.org/01459d894 Virginia Intermont College'),
(43639, 'https://ror.org/05bc06n36', 'en', 1, 'https://ror.org/05bc06n36 North Orange County Community College District'),
(43640, 'https://ror.org/04d83ph96', 'en', 1, 'https://ror.org/04d83ph96 City Clinical Hospital No 31 Городская клиническая больница № 31 (Санкт-Петербург)'),
(43641, 'https://ror.org/01qfhxr31', 'en', 1, 'https://ror.org/01qfhxr31 University of Kivu Université du Kivu'),
(43642, 'https://ror.org/05x0zqa09', 'en', 1, 'https://ror.org/05x0zqa09 Northeast Community College'),
(43643, 'https://ror.org/00tmt0k30', 'en', 1, 'https://ror.org/00tmt0k30 West Virginia Northern Community College'),
(43644, 'https://ror.org/02qwxva96', 'en', 1, 'https://ror.org/02qwxva96 Colorado Northwestern Community College'),
(43645, 'https://ror.org/006ejbv88', 'en', 1, 'https://ror.org/006ejbv88 Kampala International University'),
(43646, 'https://ror.org/02cq3zx12', 'en', 1, 'https://ror.org/02cq3zx12 Višja prometna šola Maribor Vocational College of Traffic and Transport'),
(43647, 'https://ror.org/03nwf3f39', 'en', 1, 'https://ror.org/03nwf3f39 Highland Community College - Kansas'),
(43648, 'https://ror.org/03xbe8838', 'en', 1, 'https://ror.org/03xbe8838 Tianjin Fourth Hospital 天津市第四医院'),
(43649, 'https://ror.org/04vpw9274', 'en', 1, 'https://ror.org/04vpw9274 Björneborgs universitetscenter Porin yliopistokeskus University Consortium of Pori'),
(43650, 'https://ror.org/032eg6t15', 'is', 1, 'https://ror.org/032eg6t15 Barnaspítali'),
(43651, 'https://ror.org/04tshhm50', 'en', 1, 'https://ror.org/04tshhm50 Shanxi Academy of Medical Sciences 医学科学研究院山西'),
(43652, 'https://ror.org/00n55wf36', 'en', 1, 'https://ror.org/00n55wf36 University of Iranians دانشگاه جامع بینالمللی ایرانیان'),
(43653, 'https://ror.org/02vxh1k29', 'no_lang_code', 1, 'https://ror.org/02vxh1k29 Aurobindo Pharma (United States)'),
(43654, 'https://ror.org/00se3rd97', 'en', 1, 'https://ror.org/00se3rd97 Yingkou Institute of Technology 营口理工学院'),
(43655, 'https://ror.org/02gzmhs41', 'en', 1, 'https://ror.org/02gzmhs41 Russian Scientific Research Institute Microbe'),
(43656, 'https://ror.org/038t6jw47', 'en', 1, 'https://ror.org/038t6jw47 Association Canadienne des Études Asiatiques Canadian Asian Studies Association'),
(43657, 'https://ror.org/03wsgwc11', 'en', 1, 'https://ror.org/03wsgwc11 Scleroderma and Raynaud''s UK'),
(43658, 'https://ror.org/04e6gmj90', 'en', 1, 'https://ror.org/04e6gmj90 British Thoracic Society'),
(43659, 'https://ror.org/01t8f4d28', 'en', 1, 'https://ror.org/01t8f4d28 South African Heart Association'),
(43660, 'https://ror.org/00j9w3k35', 'en', 1, 'https://ror.org/00j9w3k35 Cultural Relics Institute Hebei Province 河北省文物研究所'),
(43661, 'https://ror.org/04vfs5h36', 'en', 1, 'https://ror.org/04vfs5h36 Washington State University Spokane'),
(43662, 'https://ror.org/02sjef319', 'en', 1, 'https://ror.org/02sjef319 Washington State University Tri-Cities'),
(43663, 'https://ror.org/03c50g186', 'en', 1, 'https://ror.org/03c50g186 Linyi City Chinese Medicine Hospital'),
(43664, 'https://ror.org/01cyx8116', 'en', 1, 'https://ror.org/01cyx8116 West Georgia Technical College'),
(43665, 'https://ror.org/0127fwn18', 'en', 1, 'https://ror.org/0127fwn18 Institut für Bioinformatik und Systembiologie Institute of Bioinformatics and Systems Biology'),
(43666, 'https://ror.org/02hzmab58', 'en', 1, 'https://ror.org/02hzmab58 St. Mary''s University ቅድስት ማርያም ዩኒቨርስቲ'),
(43667, 'https://ror.org/042302r81', 'no_lang_code', 1, 'https://ror.org/042302r81 Anzai (Japan) 株式会社安西製作所'),
(43668, 'https://ror.org/057mcc411', 'no_lang_code', 1, 'https://ror.org/057mcc411 Universal Alloy (United States)'),
(43669, 'https://ror.org/055xjpt87', 'no_lang_code', 1, 'https://ror.org/055xjpt87 Universal Trim Supply (Taiwan)'),
(43670, 'https://ror.org/01r5syv12', 'no_lang_code', 1, 'https://ror.org/01r5syv12 Columbus McKinnon (United States)'),
(43671, 'https://ror.org/04apy5543', 'no_lang_code', 1, 'https://ror.org/04apy5543 Luye Pharma (China) 绿叶制药'),
(43672, 'https://ror.org/04xjxdt77', 'no_lang_code', 1, 'https://ror.org/04xjxdt77 Universal Beauty Products (United States)'),
(43673, 'https://ror.org/056dwm086', 'no_lang_code', 1, 'https://ror.org/056dwm086 Universal Biologics (United States)'),
(43674, 'https://ror.org/0007sdx38', 'no_lang_code', 1, 'https://ror.org/0007sdx38 BMG (Japan) 株式会社ビーエムジー'),
(43675, 'https://ror.org/012ghgg86', 'no_lang_code', 1, 'https://ror.org/012ghgg86 Matsui Universal Joint Corporation (Japan) 株式会社松井製作所'),
(43676, 'https://ror.org/03245q673', 'no_lang_code', 1, 'https://ror.org/03245q673 Universal Biosensors (Australia)'),
(43677, 'https://ror.org/05ehpsf23', 'no_lang_code', 1, 'https://ror.org/05ehpsf23 Universal Woods (United States)'),
(43678, 'https://ror.org/05fh5ny91', 'no_lang_code', 1, 'https://ror.org/05fh5ny91 Comar (United States)'),
(43679, 'https://ror.org/051jh8373', 'no_lang_code', 1, 'https://ror.org/051jh8373 Piovan (Canada)'),
(43680, 'https://ror.org/03yvav120', 'no_lang_code', 1, 'https://ror.org/03yvav120 Nikki-Universal (Japan) 日揮ユニバーサル株式会社は'),
(43681, 'https://ror.org/00mvrwh98', 'no_lang_code', 1, 'https://ror.org/00mvrwh98 Universal Engraving (United States)'),
(43682, 'https://ror.org/0154rgv60', 'no_lang_code', 1, 'https://ror.org/0154rgv60 Prima Alloy Steel Universal (Indonesia)'),
(43683, 'https://ror.org/00mvbdj52', 'no_lang_code', 1, 'https://ror.org/00mvbdj52 Universal Entertainment (Japan) ユニバーサルエンターテインメント'),
(43684, 'https://ror.org/00b4fbe80', 'no_lang_code', 1, 'https://ror.org/00b4fbe80 Universal Environmental Technologies (United States)'),
(43685, 'https://ror.org/00y3z1g83', 'no_lang_code', 1, 'https://ror.org/00y3z1g83 Sangath'),
(43686, 'https://ror.org/001jk8698', 'en', 1, 'https://ror.org/001jk8698 Stofnun Árna Magnússonar í íslenskum fræðum Árni Magnússon Institute for Icelandic Studies'),
(43687, 'https://ror.org/05xqh8n76', 'no_lang_code', 1, 'https://ror.org/05xqh8n76 UFI Filters (Italy)'),
(43688, 'https://ror.org/05kc3f351', 'en', 1, 'https://ror.org/05kc3f351 INCLEN Trust International'),
(43689, 'https://ror.org/00s9pac36', 'en', 1, 'https://ror.org/00s9pac36 May Institute'),
(43690, 'https://ror.org/03110kp08', 'no_lang_code', 1, 'https://ror.org/03110kp08 Universal Fibers (United States)'),
(43691, 'https://ror.org/027bhx472', 'no_lang_code', 1, 'https://ror.org/027bhx472 Univar (United States)'),
(43692, 'https://ror.org/00vn8ss79', 'no_lang_code', 1, 'https://ror.org/00vn8ss79 Universal Photonics (United States)'),
(43693, 'https://ror.org/05b8n5j15', 'en', 1, 'https://ror.org/05b8n5j15 Nordic Centre for Welfare and Social Issues Nordic Centre for Welfare ja sosiaaliset kysymykset'),
(43694, 'https://ror.org/047mk7b09', 'no_lang_code', 1, 'https://ror.org/047mk7b09 Sensient Technologies (United States)'),
(43695, 'https://ror.org/0032h6p54', 'no_lang_code', 1, 'https://ror.org/0032h6p54 Universal Scientific Industrial (China) 环旭电子股份有限公司'),
(43696, 'https://ror.org/00r8m9k11', 'no_lang_code', 1, 'https://ror.org/00r8m9k11 Avnet (United States)'),
(43697, 'https://ror.org/04e9gsd78', 'no_lang_code', 1, 'https://ror.org/04e9gsd78 United Shield (United Kingdom)'),
(43698, 'https://ror.org/005kpb876', 'en', 1, 'https://ror.org/005kpb876 London Cancer'),
(43699, 'https://ror.org/04rgq7p67', 'no_lang_code', 1, 'https://ror.org/04rgq7p67 Foremost (Canada)'),
(43700, 'https://ror.org/05hawnt37', 'no_lang_code', 1, 'https://ror.org/05hawnt37 Universal Instruments (United States)'),
(43701, 'https://ror.org/02mn80m13', 'no_lang_code', 1, 'https://ror.org/02mn80m13 Universal Master Products (United Kingdom)'),
(43702, 'https://ror.org/029ve2p44', 'no_lang_code', 1, 'https://ror.org/029ve2p44 Johnson Matthey (France)'),
(43703, 'https://ror.org/01hdj9e73', 'no_lang_code', 1, 'https://ror.org/01hdj9e73 Universal Filters (United States)'),
(43704, 'https://ror.org/036b9em68', 'no_lang_code', 1, 'https://ror.org/036b9em68 Sonitu Pharmaceuticals (United States)'),
(43705, 'https://ror.org/030v8r787', 'no_lang_code', 1, 'https://ror.org/030v8r787 Tecan (United States)'),
(43706, 'https://ror.org/038gjp852', 'no_lang_code', 1, 'https://ror.org/038gjp852 Univera (United States)'),
(43707, 'https://ror.org/000963779', 'no_lang_code', 1, 'https://ror.org/000963779 Universal Products (United States)'),
(43708, 'https://ror.org/03mp9xr25', 'no_lang_code', 1, 'https://ror.org/03mp9xr25 SmartSkim (United States)'),
(43709, 'https://ror.org/04e2byh18', 'no_lang_code', 1, 'https://ror.org/04e2byh18 Them (United States)'),
(43710, 'https://ror.org/01qfa5t68', 'no_lang_code', 1, 'https://ror.org/01qfa5t68 Hitachi Maxell (Japan) 日立マクセル株式会社'),
(43711, 'https://ror.org/00hmyb194', 'no_lang_code', 1, 'https://ror.org/00hmyb194 Accenture (Ireland)'),
(43712, 'https://ror.org/05cnabr44', 'no_lang_code', 1, 'https://ror.org/05cnabr44 eBay (United States)'),
(43713, 'https://ror.org/03xajsx66', 'no_lang_code', 1, 'https://ror.org/03xajsx66 Acer (Taiwan) 宏碁'),
(43714, 'https://ror.org/01jfy6x14', 'no_lang_code', 1, 'https://ror.org/01jfy6x14 Canon Anelva (Japan) キヤノンアネルバ'),
(43715, 'https://ror.org/044r0st32', 'no_lang_code', 1, 'https://ror.org/044r0st32 EchoStar (United States)'),
(43716, 'https://ror.org/04y2bnd24', 'no_lang_code', 1, 'https://ror.org/04y2bnd24 Lincoln Electric (United States)'),
(43717, 'https://ror.org/01v3aym70', 'no_lang_code', 1, 'https://ror.org/01v3aym70 Foxconn (Taiwan) 鴻海科技集團'),
(43718, 'https://ror.org/04qrdn471', 'no_lang_code', 1, 'https://ror.org/04qrdn471 Lintec Corporation (Japan) リンテック'),
(43719, 'https://ror.org/01bvpmp82', 'no_lang_code', 1, 'https://ror.org/01bvpmp82 Advantest (Japan) 株式会社アドバンテスト'),
(43720, 'https://ror.org/03jzay846', 'no_lang_code', 1, 'https://ror.org/03jzay846 Honda (Japan) 本田技研工業株式会社'),
(43721, 'https://ror.org/02eqd9a40', 'no_lang_code', 1, 'https://ror.org/02eqd9a40 Lite-On Technology Corporation (Taiwan) 建兴科技公司'),
(43722, 'https://ror.org/037ddaj94', 'no_lang_code', 1, 'https://ror.org/037ddaj94 Los Alamos National Security (United States)'),
(43723, 'https://ror.org/049vpfq31', 'no_lang_code', 1, 'https://ror.org/049vpfq31 Hoya (Japan) Hoya株式会社'),
(43724, 'https://ror.org/02nfvrd33', 'no_lang_code', 1, 'https://ror.org/02nfvrd33 HTC (Taiwan) 宏達國際電子股份有限公司'),
(43725, 'https://ror.org/001vbm067', 'no_lang_code', 1, 'https://ror.org/001vbm067 Empire Technical Development (United States)'),
(43726, 'https://ror.org/01vaekj86', 'no_lang_code', 1, 'https://ror.org/01vaekj86 Agfa-Gevaert (Germany)'),
(43727, 'https://ror.org/03v1bhv69', 'no_lang_code', 1, 'https://ror.org/03v1bhv69 LSIS (South Korea) 산전'),
(43728, 'https://ror.org/027sr5070', 'no_lang_code', 1, 'https://ror.org/027sr5070 Hubbell (United States)'),
(43729, 'https://ror.org/03cbkmv71', 'no_lang_code', 1, 'https://ror.org/03cbkmv71 TDK-EPC (Germany)'),
(43730, 'https://ror.org/02hwyte29', 'no_lang_code', 1, 'https://ror.org/02hwyte29 Albemarle (United States)'),
(43731, 'https://ror.org/03q1pf281', 'no_lang_code', 1, 'https://ror.org/03q1pf281 Central Glass (Japan) セントラル硝子株式会社'),
(43732, 'https://ror.org/02a8zpt37', 'no_lang_code', 1, 'https://ror.org/02a8zpt37 Essilor (France)'),
(43733, 'https://ror.org/01g571893', 'no_lang_code', 1, 'https://ror.org/01g571893 LuK Lamellen und Kupplungsbau (Germany)'),
(43734, 'https://ror.org/01e55bn36', 'no_lang_code', 1, 'https://ror.org/01e55bn36 Lutron Electronics (United States)'),
(43735, 'https://ror.org/038b1qn73', 'no_lang_code', 1, 'https://ror.org/038b1qn73 Hyundai Mobis (South Korea) 현대모비스 주식회사'),
(43736, 'https://ror.org/02njhsx22', 'no_lang_code', 1, 'https://ror.org/02njhsx22 Alps Electric (Japan) アルプス電気株式会社'),
(43737, 'https://ror.org/01bggjn73', 'no_lang_code', 1, 'https://ror.org/01bggjn73 Macronix International (Taiwan)'),
(43738, 'https://ror.org/04343ty25', 'no_lang_code', 1, 'https://ror.org/04343ty25 Ibiden (Japan) イビデン株式会社'),
(43739, 'https://ror.org/028pp3w31', 'no_lang_code', 1, 'https://ror.org/028pp3w31 Foxlink (Taiwan) 正崴精密工业'),
(43740, 'https://ror.org/03256ej17', 'no_lang_code', 1, 'https://ror.org/03256ej17 Energizer (United States)'),
(43741, 'https://ror.org/05w5shm69', 'no_lang_code', 1, 'https://ror.org/05w5shm69 Chevron Phillips Chemical (United States)'),
(43742, 'https://ror.org/03f1f6f50', 'no_lang_code', 1, 'https://ror.org/03f1f6f50 Makita Corporation (Japan) 株式会社マキタ'),
(43743, 'https://ror.org/01hf9n917', 'no_lang_code', 1, 'https://ror.org/01hf9n917 International Game Technology (United States)'),
(43744, 'https://ror.org/00g702m33', 'no_lang_code', 1, 'https://ror.org/00g702m33 Stihl (Germany)'),
(43745, 'https://ror.org/039snsq89', 'no_lang_code', 1, 'https://ror.org/039snsq89 Chi Mei Communication Systems (Taiwan) 奇美通訊'),
(43746, 'https://ror.org/051v3pe92', 'no_lang_code', 1, 'https://ror.org/051v3pe92 Mando Corporation (South Korea) 만도'),
(43747, 'https://ror.org/05daj2k82', 'no_lang_code', 1, 'https://ror.org/05daj2k82 Mann+Hummel (Germany)'),
(43748, 'https://ror.org/03yca1933', 'no_lang_code', 1, 'https://ror.org/03yca1933 Fairchild Semiconductor (United States)'),
(43749, 'https://ror.org/01bcadh60', 'no_lang_code', 1, 'https://ror.org/01bcadh60 Manroland (Germany)'),
(43750, 'https://ror.org/03mc1nw82', 'no_lang_code', 1, 'https://ror.org/03mc1nw82 Aristocrat (Australia)'),
(43751, 'https://ror.org/05c5cxq41', 'no_lang_code', 1, 'https://ror.org/05c5cxq41 Husky Injection Molding Systems (Canada)'),
(43752, 'https://ror.org/00hjm9t74', 'no_lang_code', 1, 'https://ror.org/00hjm9t74 Marvell (Bermuda)'),
(43753, 'https://ror.org/05t96az61', 'no_lang_code', 1, 'https://ror.org/05t96az61 Cirrus Logic (United States)'),
(43754, 'https://ror.org/00mwp7g70', 'no_lang_code', 1, 'https://ror.org/00mwp7g70 Soft99 (Japan) ソフト99コーポレーション'),
(43755, 'https://ror.org/006s9y688', 'no_lang_code', 1, 'https://ror.org/006s9y688 Ingersoll Rand (United States)'),
(43756, 'https://ror.org/00zdzyj46', 'no_lang_code', 1, 'https://ror.org/00zdzyj46 Citizen (Japan) シチズンホールディングス株式会社'),
(43757, 'https://ror.org/056c8b450', 'no_lang_code', 1, 'https://ror.org/056c8b450 Maxim Integrated (United States)'),
(43758, 'https://ror.org/05evsnd79', 'no_lang_code', 1, 'https://ror.org/05evsnd79 Intellectual Ventures (United States)'),
(43759, 'https://ror.org/00bxkz165', 'no_lang_code', 1, 'https://ror.org/00bxkz165 Asus (Taiwan) 華碩電腦股份有限公司'),
(43760, 'https://ror.org/01jqh6j63', 'no_lang_code', 1, 'https://ror.org/01jqh6j63 Finisar (United States)'),
(43761, 'https://ror.org/047q85d05', 'no_lang_code', 1, 'https://ror.org/047q85d05 First Data (United States)'),
(43762, 'https://ror.org/040vg0k95', 'no_lang_code', 1, 'https://ror.org/040vg0k95 CNH Industrial (United States)'),
(43763, 'https://ror.org/05hk1wv51', 'no_lang_code', 1, 'https://ror.org/05hk1wv51 Mazda Motor Corporation (Japan) マツダ株式会社'),
(43764, 'https://ror.org/02yh0k313', 'no_lang_code', 1, 'https://ror.org/02yh0k313 Advanced Micro Devices (Canada)'),
(43765, 'https://ror.org/03grvh841', 'no_lang_code', 1, 'https://ror.org/03grvh841 Intermolecular (United States)'),
(43766, 'https://ror.org/02nma1c30', 'no_lang_code', 1, 'https://ror.org/02nma1c30 International Flavors & Fragrances (United States)'),
(43767, 'https://ror.org/05011pz46', 'no_lang_code', 1, 'https://ror.org/05011pz46 Commvault (United States)'),
(43768, 'https://ror.org/054fc6480', 'no_lang_code', 1, 'https://ror.org/054fc6480 NXP (United States)'),
(43769, 'https://ror.org/04hbev594', 'no_lang_code', 1, 'https://ror.org/04hbev594 Infineon Technologies (Canada)'),
(43770, 'https://ror.org/01rn9qa20', 'no_lang_code', 1, 'https://ror.org/01rn9qa20 AutoNetworks Technologies (Japan) 株式会社オートネットワーク技術研究所'),
(43771, 'https://ror.org/03zvyfv67', 'no_lang_code', 1, 'https://ror.org/03zvyfv67 Broadcom (Singapore)'),
(43772, 'https://ror.org/05ttt5a28', 'no_lang_code', 1, 'https://ror.org/05ttt5a28 Intersil (United States)'),
(43773, 'https://ror.org/00jb92367', 'no_lang_code', 1, 'https://ror.org/00jb92367 Foxconn (China) 鴻海科技集團'),
(43774, 'https://ror.org/04sj13f52', 'no_lang_code', 1, 'https://ror.org/04sj13f52 Avery Dennison (United States)'),
(43775, 'https://ror.org/049mrbr98', 'no_lang_code', 1, 'https://ror.org/049mrbr98 Intuit (United States)'),
(43776, 'https://ror.org/05byphg89', 'no_lang_code', 1, 'https://ror.org/05byphg89 Michelin (Switzerland)'),
(43777, 'https://ror.org/03de5n431', 'no_lang_code', 1, 'https://ror.org/03de5n431 Scientific Games (United States)'),
(43778, 'https://ror.org/00x39dd97', 'no_lang_code', 1, 'https://ror.org/00x39dd97 Schneider Electric (United States)'),
(43779, 'https://ror.org/00n3fv874', 'no_lang_code', 1, 'https://ror.org/00n3fv874 Unilever (United States)'),
(43780, 'https://ror.org/03r46a684', 'no_lang_code', 1, 'https://ror.org/03r46a684 Inventec (Taiwan) 英業達公司'),
(43781, 'https://ror.org/056701b75', 'no_lang_code', 1, 'https://ror.org/056701b75 Fuji Electric (Japan) 富士電機株式会社'),
(43782, 'https://ror.org/05vqnxk73', 'de', 1, 'https://ror.org/05vqnxk73 Battelle'),
(43783, 'https://ror.org/00kvz1558', 'no_lang_code', 1, 'https://ror.org/00kvz1558 Microchip Technology (United States)'),
(43784, 'https://ror.org/04kwz3444', 'no_lang_code', 1, 'https://ror.org/04kwz3444 Schindler (Switzerland)'),
(43785, 'https://ror.org/052wab383', 'no_lang_code', 1, 'https://ror.org/052wab383 Baxter (Switzerland)'),
(43786, 'https://ror.org/01kmf8n06', 'no_lang_code', 1, 'https://ror.org/01kmf8n06 Conversant (Canada)'),
(43787, 'https://ror.org/03x705365', 'no_lang_code', 1, 'https://ror.org/03x705365 Cook Medical (United States)'),
(43788, 'https://ror.org/04gkxrj12', 'no_lang_code', 1, 'https://ror.org/04gkxrj12 MinebeaMitsumi (Japan) ミネベアミツミ株式会社'),
(43789, 'https://ror.org/000ycsz94', 'no_lang_code', 1, 'https://ror.org/000ycsz94 Isuzu Motors (Japan) いすゞ自動車株式会社'),
(43790, 'https://ror.org/02w528w58', 'no_lang_code', 1, 'https://ror.org/02w528w58 Fuji Xerox (Japan) 富士ゼロックス株式会社'),
(43791, 'https://ror.org/01cwwvj38', 'no_lang_code', 1, 'https://ror.org/01cwwvj38 BOE Technology Group (China)'),
(43792, 'https://ror.org/04vz9vy80', 'no_lang_code', 1, 'https://ror.org/04vz9vy80 Japan Display (Japan) 株式会社ジャパンディスプレイ'),
(43793, 'https://ror.org/0123ma395', 'no_lang_code', 1, 'https://ror.org/0123ma395 Fujikura (Japan) 株式会社フジクラ'),
(43794, 'https://ror.org/0289e7422', 'no_lang_code', 1, 'https://ror.org/0289e7422 JFE Holdings (Japan) ホールディングス株式会社'),
(43795, 'https://ror.org/025y1g718', 'no_lang_code', 1, 'https://ror.org/025y1g718 Kyocera (Japan) 京セラ株式会社'),
(43796, 'https://ror.org/00jjgc591', 'no_lang_code', 1, 'https://ror.org/00jjgc591 Fujitsu Ten (Japan) 富士通テン株式会社'),
(43797, 'https://ror.org/05j1xsk75', 'no_lang_code', 1, 'https://ror.org/05j1xsk75 SC Johnson (United States)'),
(43798, 'https://ror.org/00mhg9s35', 'no_lang_code', 1, 'https://ror.org/00mhg9s35 Mitsubishi Gas Chemical (Japan) 三菱ガス化学');
INSERT INTO `rors` VALUES
(43799, 'https://ror.org/04jy08y75', 'no_lang_code', 1, 'https://ror.org/04jy08y75 Qisda (Taiwan) 佳世达公司'),
(43800, 'https://ror.org/03gbxs308', 'no_lang_code', 1, 'https://ror.org/03gbxs308 Funai Electric (Japan) 船井電機株式会社'),
(43801, 'https://ror.org/00w91z143', 'no_lang_code', 1, 'https://ror.org/00w91z143 JTEKT (Japan) 株式会社ジェイテクト'),
(43802, 'https://ror.org/02pwct569', 'no_lang_code', 1, 'https://ror.org/02pwct569 Juniper Networks (United States)'),
(43803, 'https://ror.org/02c6kb837', 'no_lang_code', 1, 'https://ror.org/02c6kb837 BorgWarner (United States)'),
(43804, 'https://ror.org/03p5evc41', 'no_lang_code', 1, 'https://ror.org/03p5evc41 Mitsubishi Materials (Japan) 三菱マテリアル株式会社'),
(43805, 'https://ror.org/022tpcx70', 'no_lang_code', 1, 'https://ror.org/022tpcx70 JVC Kenwood (Japan) 株式会社 JVCケンウッド'),
(43806, 'https://ror.org/03jyqk712', 'no_lang_code', 1, 'https://ror.org/03jyqk712 Huawei Technologies (United States)'),
(43807, 'https://ror.org/02ztkac83', 'no_lang_code', 1, 'https://ror.org/02ztkac83 Robert Bosch (Japan) ボッシュ(株)'),
(43808, 'https://ror.org/02y5x0w05', 'no_lang_code', 1, 'https://ror.org/02y5x0w05 Kansai Paint (Japan) 関西ペイント株式会社'),
(43809, 'https://ror.org/0427k1a73', 'no_lang_code', 1, 'https://ror.org/0427k1a73 Bose (United States)'),
(43810, 'https://ror.org/040wmvn07', 'no_lang_code', 1, 'https://ror.org/040wmvn07 Ping (United States)'),
(43811, 'https://ror.org/043epsf53', 'no_lang_code', 1, 'https://ror.org/043epsf53 Arris (United States)'),
(43812, 'https://ror.org/016t76z82', 'no_lang_code', 1, 'https://ror.org/016t76z82 Mitsubishi Motors (Japan) 三菱自動車工業株式会社'),
(43813, 'https://ror.org/059tqws22', 'no_lang_code', 1, 'https://ror.org/059tqws22 Cypress Semiconductor Corporation (Belgium)'),
(43814, 'https://ror.org/02t2pyr24', 'no_lang_code', 1, 'https://ror.org/02t2pyr24 Procter & Gamble (Germany)'),
(43815, 'https://ror.org/01sggg367', 'no_lang_code', 1, 'https://ror.org/01sggg367 Kawasaki Heavy Industries (Japan) 川崎重工業株式会社'),
(43816, 'https://ror.org/027kpf759', 'no_lang_code', 1, 'https://ror.org/027kpf759 Mitsui Mining & Smelting (Japan) 三井金属鉱業株式会社'),
(43817, 'https://ror.org/04trbvb35', 'no_lang_code', 1, 'https://ror.org/04trbvb35 Bridgestone (Japan) 株式会社ブリヂストン'),
(43818, 'https://ror.org/05rv8ev82', 'no_lang_code', 1, 'https://ror.org/05rv8ev82 Kia Motors (South Korea) 기아자동차'),
(43819, 'https://ror.org/01be2k939', 'no_lang_code', 1, 'https://ror.org/01be2k939 Dai Nippon Printing (Japan) 大日本印刷'),
(43820, 'https://ror.org/03jty5027', 'no_lang_code', 1, 'https://ror.org/03jty5027 Brocade (United States)'),
(43821, 'https://ror.org/019e98t43', 'no_lang_code', 1, 'https://ror.org/019e98t43 Brother Industries (Japan) ブラザー工業株式会社'),
(43822, 'https://ror.org/013p9v583', 'no_lang_code', 1, 'https://ror.org/013p9v583 Daikin (Japan) ダイキン工業株式会社'),
(43823, 'https://ror.org/054bpg497', 'no_lang_code', 1, 'https://ror.org/054bpg497 GlobalFoundries (United Kingdom)'),
(43824, 'https://ror.org/03nwpr620', 'no_lang_code', 1, 'https://ror.org/03nwpr620 Brunswick (United States)'),
(43825, 'https://ror.org/01d36yb27', 'no_lang_code', 1, 'https://ror.org/01d36yb27 Kobe Steel (Japan) 株式会社神戸製鋼所'),
(43826, 'https://ror.org/0288c6p43', 'no_lang_code', 1, 'https://ror.org/0288c6p43 Dana (United States)'),
(43827, 'https://ror.org/00b43n621', 'no_lang_code', 1, 'https://ror.org/00b43n621 Mitutoyo Corporation (Japan) 株式会社ミツトヨ'),
(43828, 'https://ror.org/03n2emr48', 'no_lang_code', 1, 'https://ror.org/03n2emr48 Kohler (United States)'),
(43829, 'https://ror.org/00nafdb41', 'no_lang_code', 1, 'https://ror.org/00nafdb41 Callaway Golf (United States)'),
(43830, 'https://ror.org/05sqx9s36', 'no_lang_code', 1, 'https://ror.org/05sqx9s36 Acushnet (United States)'),
(43831, 'https://ror.org/01grxsm65', 'no_lang_code', 1, 'https://ror.org/01grxsm65 ExxonMobil (Norway)'),
(43832, 'https://ror.org/00pscny09', 'no_lang_code', 1, 'https://ror.org/00pscny09 Nintendo (Japan) 任天堂株式会社'),
(43833, 'https://ror.org/03k4vk194', 'no_lang_code', 1, 'https://ror.org/03k4vk194 Grace (United States)'),
(43834, 'https://ror.org/02n1mtw77', 'no_lang_code', 1, 'https://ror.org/02n1mtw77 Murata Machinery (Japan) 村田機械株式会社'),
(43835, 'https://ror.org/01t782854', 'no_lang_code', 1, 'https://ror.org/01t782854 Nippon Paint (Japan) 日本ペイントホールディングス株式会社'),
(43836, 'https://ror.org/02wb6zh81', 'no_lang_code', 1, 'https://ror.org/02wb6zh81 Graphic Packaging (United States)'),
(43837, 'https://ror.org/04hd8bd67', 'no_lang_code', 1, 'https://ror.org/04hd8bd67 Murata (Japan) 株式会社村田製作所'),
(43838, 'https://ror.org/04ecrg623', 'no_lang_code', 1, 'https://ror.org/04ecrg623 Nippon Sheet Glass (Japan) 日本板硝子株式会社'),
(43839, 'https://ror.org/00c93aj32', 'no_lang_code', 1, 'https://ror.org/00c93aj32 DIC (Japan) ディーアイシー'),
(43840, 'https://ror.org/036krca38', 'no_lang_code', 1, 'https://ror.org/036krca38 Kubota (Japan) 株式会社クボタ'),
(43841, 'https://ror.org/029rcz204', 'no_lang_code', 1, 'https://ror.org/029rcz204 Nanya Technology (Taiwan) 南亞科技'),
(43842, 'https://ror.org/01yk36x23', 'no_lang_code', 1, 'https://ror.org/01yk36x23 Nippon Soken (Japan) 日本総研'),
(43843, 'https://ror.org/023x6j183', 'no_lang_code', 1, 'https://ror.org/023x6j183 Guardian Industries (United States)'),
(43844, 'https://ror.org/03t94kt09', 'no_lang_code', 1, 'https://ror.org/03t94kt09 Diebold Nixdorf (United States)'),
(43845, 'https://ror.org/01kq4az79', 'no_lang_code', 1, 'https://ror.org/01kq4az79 Nitto (Japan) 日東電工株式会社'),
(43846, 'https://ror.org/03z5xry11', 'no_lang_code', 1, 'https://ror.org/03z5xry11 HannStar Display (Taiwan) 瀚宇彩晶股份有限公司'),
(43847, 'https://ror.org/05km1vk92', 'no_lang_code', 1, 'https://ror.org/05km1vk92 Kuraray (Japan) 株式会社クラレ'),
(43848, 'https://ror.org/00j460570', 'no_lang_code', 1, 'https://ror.org/00j460570 Digimarc (United States)'),
(43849, 'https://ror.org/02vq92e47', 'no_lang_code', 1, 'https://ror.org/02vq92e47 Nordson (United States)'),
(43850, 'https://ror.org/02s6rdg38', 'no_lang_code', 1, 'https://ror.org/02s6rdg38 Novatek Microelectronics (Taiwan) 聯詠科技股份有限公司'),
(43851, 'https://ror.org/00zs5ew10', 'no_lang_code', 1, 'https://ror.org/00zs5ew10 NGK Spark Plug (Japan) 日本特殊陶業株式会社'),
(43852, 'https://ror.org/03erscp63', 'no_lang_code', 1, 'https://ror.org/03erscp63 Heidelberg Printing Machines AG Heidelberger Druckmaschinen (Germany)'),
(43853, 'https://ror.org/00vse3055', 'no_lang_code', 1, 'https://ror.org/00vse3055 NHK Spring (Japan) 日本発条株式会社'),
(43854, 'https://ror.org/01hght844', 'no_lang_code', 1, 'https://ror.org/01hght844 Lattice Semiconductor (United States)'),
(43855, 'https://ror.org/01fp77380', 'no_lang_code', 1, 'https://ror.org/01fp77380 Nichia Corporation (Japan) 日亜化学工業株式会社'),
(43856, 'https://ror.org/05nm3qe34', 'no_lang_code', 1, 'https://ror.org/05nm3qe34 NSK (Japan) 日本精工株式会社'),
(43857, 'https://ror.org/04htqgq60', 'no_lang_code', 1, 'https://ror.org/04htqgq60 Heidenhain (Germany)'),
(43858, 'https://ror.org/04g2bja88', 'no_lang_code', 1, 'https://ror.org/04g2bja88 DirecTV (United States)'),
(43859, 'https://ror.org/01f10xn48', 'no_lang_code', 1, 'https://ror.org/01f10xn48 NTN (Japan) NTN株式会社'),
(43860, 'https://ror.org/05xmzbk80', 'no_lang_code', 1, 'https://ror.org/05xmzbk80 Nidec (Japan) 日本電産株式会社'),
(43861, 'https://ror.org/01h0eq657', 'no_lang_code', 1, 'https://ror.org/01h0eq657 Henkel (United States)'),
(43862, 'https://ror.org/003ns5237', 'no_lang_code', 1, 'https://ror.org/003ns5237 Lear (Germany)'),
(43863, 'https://ror.org/01qx5df26', 'no_lang_code', 1, 'https://ror.org/01qx5df26 Disco (japan) 株式会社ディスコ'),
(43864, 'https://ror.org/0503rt987', 'no_lang_code', 1, 'https://ror.org/0503rt987 Oki Electric Industry (Japan) 沖電気工業株式会社'),
(43865, 'https://ror.org/0282x2n68', 'no_lang_code', 1, 'https://ror.org/0282x2n68 Nidek (Japan) 株式会社ニデック'),
(43866, 'https://ror.org/00mhktq57', 'no_lang_code', 1, 'https://ror.org/00mhktq57 Lenovo (Singapore)'),
(43867, 'https://ror.org/01eyenr26', 'no_lang_code', 1, 'https://ror.org/01eyenr26 Dolby (United States)'),
(43868, 'https://ror.org/04pe8fr02', 'no_lang_code', 1, 'https://ror.org/04pe8fr02 Leviton (United States)'),
(43869, 'https://ror.org/01j88m682', 'no_lang_code', 1, 'https://ror.org/01j88m682 Nifco (Japan) ニフコ'),
(43870, 'https://ror.org/054aj1x19', 'no_lang_code', 1, 'https://ror.org/054aj1x19 Nihon Dempa Kogyo (Japan) 日本電波工業株式会社'),
(43871, 'https://ror.org/05f4fbs05', 'no_lang_code', 1, 'https://ror.org/05f4fbs05 Western Digital (Netherlands)'),
(43872, 'https://ror.org/01bvqg661', 'no_lang_code', 1, 'https://ror.org/01bvqg661 Nikon (Japan) 株式会社ニコン'),
(43873, 'https://ror.org/045d0h266', 'no_lang_code', 1, 'https://ror.org/045d0h266 OSRAM (United States)'),
(43874, 'https://ror.org/04dvebt78', 'no_lang_code', 1, 'https://ror.org/04dvebt78 ResMed (Australia)'),
(43875, 'https://ror.org/018z3cr21', 'no_lang_code', 1, 'https://ror.org/018z3cr21 Dongbu HiTek (South Korea) 동부 하이텍'),
(43876, 'https://ror.org/00xk9wg94', 'no_lang_code', 1, 'https://ror.org/00xk9wg94 Himax (Taiwan) 奇景光電'),
(43877, 'https://ror.org/02dyqfb80', 'no_lang_code', 1, 'https://ror.org/02dyqfb80 Silicon Labs (United States)'),
(43878, 'https://ror.org/03amcs261', 'no_lang_code', 1, 'https://ror.org/03amcs261 Qorvo (United States)'),
(43879, 'https://ror.org/010fp8b41', 'no_lang_code', 1, 'https://ror.org/010fp8b41 Siliconware Precision Industries (Taiwan) 歡迎來到矽品'),
(43880, 'https://ror.org/034zsq795', 'no_lang_code', 1, 'https://ror.org/034zsq795 Magna International (United States)'),
(43881, 'https://ror.org/00593cw33', 'no_lang_code', 1, 'https://ror.org/00593cw33 Richtek Technology (Taiwan) 立錡科技'),
(43882, 'https://ror.org/04g4dtf59', 'no_lang_code', 1, 'https://ror.org/04g4dtf59 Panduit (United States)'),
(43883, 'https://ror.org/02h4myp42', 'no_lang_code', 1, 'https://ror.org/02h4myp42 Ricoh (Japan) 株式会社リコー'),
(43884, 'https://ror.org/03brafa64', 'no_lang_code', 1, 'https://ror.org/03brafa64 Solid (South Korea) 주식회사 쏠리테크 설립'),
(43885, 'https://ror.org/02jymes45', 'no_lang_code', 1, 'https://ror.org/02jymes45 Skyworks Solutions (United States)'),
(43886, 'https://ror.org/03gfc4s78', 'no_lang_code', 1, 'https://ror.org/03gfc4s78 SMC Corporation (Japan) SMC 株式会社'),
(43887, 'https://ror.org/00zrr9158', 'no_lang_code', 1, 'https://ror.org/00zrr9158 Tokyo Ohka Kogyo (Japan) 東京応化工業株式会社'),
(43888, 'https://ror.org/00reyx053', 'no_lang_code', 1, 'https://ror.org/00reyx053 Smith & Nephew (United States)'),
(43889, 'https://ror.org/0102ss455', 'no_lang_code', 1, 'https://ror.org/0102ss455 Round Rock Research (United States)'),
(43890, 'https://ror.org/03fevzd03', 'no_lang_code', 1, 'https://ror.org/03fevzd03 Topcon (Japan) 株式会社トプコン'),
(43891, 'https://ror.org/02j701e26', 'no_lang_code', 1, 'https://ror.org/02j701e26 RPX (United States)'),
(43892, 'https://ror.org/014kzp326', 'no_lang_code', 1, 'https://ror.org/014kzp326 Pioneer (Japan) パイオニア株式会社'),
(43893, 'https://ror.org/05dwcwc36', 'no_lang_code', 1, 'https://ror.org/05dwcwc36 Toshiba Machine (Japan) 東芝機械'),
(43894, 'https://ror.org/04ra3cs69', 'no_lang_code', 1, 'https://ror.org/04ra3cs69 Saudi Arabia Basic Industries (Netherlands)'),
(43895, 'https://ror.org/02wpc5d77', 'no_lang_code', 1, 'https://ror.org/02wpc5d77 Cypress Semiconductor Corporation (United States)'),
(43896, 'https://ror.org/03t1q5m92', 'no_lang_code', 1, 'https://ror.org/03t1q5m92 PixArt (Taiwan) 原相成像公司'),
(43897, 'https://ror.org/02jszzb89', 'no_lang_code', 1, 'https://ror.org/02jszzb89 TDK (China) TDK株式会社'),
(43898, 'https://ror.org/039qfhr69', 'no_lang_code', 1, 'https://ror.org/039qfhr69 Polaroid (United States)'),
(43899, 'https://ror.org/04e5zt867', 'no_lang_code', 1, 'https://ror.org/04e5zt867 Amer Sports (France)'),
(43900, 'https://ror.org/02zwv8f48', 'no_lang_code', 1, 'https://ror.org/02zwv8f48 SPX Corporation (United States)'),
(43901, 'https://ror.org/0162qed39', 'no_lang_code', 1, 'https://ror.org/0162qed39 Toyo Tire and Rubber (Japan) 東洋ゴム工業株式会社'),
(43902, 'https://ror.org/058d8a952', 'no_lang_code', 1, 'https://ror.org/058d8a952 Power Integrations (United States)'),
(43903, 'https://ror.org/00zqddg96', 'no_lang_code', 1, 'https://ror.org/00zqddg96 Sanden (Japan) サンデン株式会社'),
(43904, 'https://ror.org/04b0q3m21', 'no_lang_code', 1, 'https://ror.org/04b0q3m21 Victor (Japan) 日本ビクター株式会社'),
(43905, 'https://ror.org/02p49vj94', 'no_lang_code', 1, 'https://ror.org/02p49vj94 Primax Electronics (Taiwan)'),
(43906, 'https://ror.org/0370d1z23', 'no_lang_code', 1, 'https://ror.org/0370d1z23 Toyoda Gosei (Japan) 豊田合成'),
(43907, 'https://ror.org/00qabvy28', 'no_lang_code', 1, 'https://ror.org/00qabvy28 Visteon (United States)'),
(43908, 'https://ror.org/00pn5a327', 'no_lang_code', 1, 'https://ror.org/00pn5a327 Rambus (United States)'),
(43909, 'https://ror.org/0503v4y98', 'no_lang_code', 1, 'https://ror.org/0503v4y98 Toyota Industries (Japan) 株式会社豊田自動織機,'),
(43910, 'https://ror.org/041h6pr97', 'no_lang_code', 1, 'https://ror.org/041h6pr97 Voith (Germany)'),
(43911, 'https://ror.org/01af58f81', 'no_lang_code', 1, 'https://ror.org/01af58f81 Stanley Electric (Japan) スタンレー電気株式会社'),
(43912, 'https://ror.org/010k8n340', 'no_lang_code', 1, 'https://ror.org/010k8n340 RCA (United States)'),
(43913, 'https://ror.org/05x1ffr83', 'no_lang_code', 1, 'https://ror.org/05x1ffr83 Realtek (Taiwan) 瑞昱半導體股份有限公司'),
(43914, 'https://ror.org/046ct7v62', 'no_lang_code', 1, 'https://ror.org/046ct7v62 STATS ChipPAC (Singapore)'),
(43915, 'https://ror.org/051gpmw62', 'no_lang_code', 1, 'https://ror.org/051gpmw62 Trading Technologies (United States)'),
(43916, 'https://ror.org/04qy22d94', 'no_lang_code', 1, 'https://ror.org/04qy22d94 Trimble (United States)'),
(43917, 'https://ror.org/033efjf10', 'no_lang_code', 1, 'https://ror.org/033efjf10 Stine Seed (United States)'),
(43918, 'https://ror.org/00ba1ja72', 'no_lang_code', 1, 'https://ror.org/00ba1ja72 STMicroelectronics (Netherlands)'),
(43919, 'https://ror.org/05ttfy022', 'no_lang_code', 1, 'https://ror.org/05ttfy022 Tsubakimoto Chain (Japan) 株式会社椿本チエイン'),
(43920, 'https://ror.org/01f8c3y78', 'no_lang_code', 1, 'https://ror.org/01f8c3y78 STMicroelectronics (United States)'),
(43921, 'https://ror.org/03tam1j96', 'no_lang_code', 1, 'https://ror.org/03tam1j96 Adidas (United States)'),
(43922, 'https://ror.org/01yp72g57', 'no_lang_code', 1, 'https://ror.org/01yp72g57 Sumco Corporation (Japan) 株式会社SUMCO'),
(43923, 'https://ror.org/045100v05', 'no_lang_code', 1, 'https://ror.org/045100v05 Winbond (Taiwan) 華邦電子公司'),
(43924, 'https://ror.org/03yskk486', 'no_lang_code', 1, 'https://ror.org/03yskk486 Sumitomo Heavy Industries (Japan) 住友重機械工業株式会社'),
(43925, 'https://ror.org/03vbj6030', 'no_lang_code', 1, 'https://ror.org/03vbj6030 Whitaker House'),
(43926, 'https://ror.org/00ker7c87', 'no_lang_code', 1, 'https://ror.org/00ker7c87 TDK (Japan) TDK株式会社'),
(43927, 'https://ror.org/03nw6pt28', 'no_lang_code', 1, 'https://ror.org/03nw6pt28 ON Semiconductor (United States)'),
(43928, 'https://ror.org/04qxh5x87', 'no_lang_code', 1, 'https://ror.org/04qxh5x87 Unicharm (Japan) ユニ·チャーム株式会社'),
(43929, 'https://ror.org/01azggh38', 'no_lang_code', 1, 'https://ror.org/01azggh38 Sumitomo Riko (Japan) 住友理工株式会社'),
(43930, 'https://ror.org/02knfsk89', 'no_lang_code', 1, 'https://ror.org/02knfsk89 Wistron (Taiwan) 緯創資通股份有限公司'),
(43931, 'https://ror.org/00yzwhc72', 'no_lang_code', 1, 'https://ror.org/00yzwhc72 TEAC (Japan) ティアック株式会社'),
(43932, 'https://ror.org/02vszc135', 'no_lang_code', 1, 'https://ror.org/02vszc135 Semiconductor Energy Laboratory (Japan) 株式会社半導体エネルギー研究所'),
(43933, 'https://ror.org/040dkzz12', 'no_lang_code', 1, 'https://ror.org/040dkzz12 Yahoo (United States)'),
(43934, 'https://ror.org/03tf9y485', 'no_lang_code', 1, 'https://ror.org/03tf9y485 Semiconductor Manufacturing International (China) 中芯国际集成电路制造有限公司'),
(43935, 'https://ror.org/048bwmz37', 'no_lang_code', 1, 'https://ror.org/048bwmz37 Fortive (United States)'),
(43936, 'https://ror.org/05s7fvh27', 'no_lang_code', 1, 'https://ror.org/05s7fvh27 Yamaha (Japan) ヤマハ株式会社'),
(43937, 'https://ror.org/01he2y745', 'no_lang_code', 1, 'https://ror.org/01he2y745 Suzuki (Japan) スズキ株式会社'),
(43938, 'https://ror.org/0580qje17', 'no_lang_code', 1, 'https://ror.org/0580qje17 United Microelectronics (Taiwan) 聯華電子'),
(43939, 'https://ror.org/037qwc103', 'no_lang_code', 1, 'https://ror.org/037qwc103 Yaskawa Electric (Japan) 安川電機'),
(43940, 'https://ror.org/001m9wh67', 'no_lang_code', 1, 'https://ror.org/001m9wh67 Taiyo Yuden (Japan) 太陽誘電株式会社'),
(43941, 'https://ror.org/04dgpsg75', 'no_lang_code', 1, 'https://ror.org/04dgpsg75 Yazaki (Japan) 矢崎総業株式会社'),
(43942, 'https://ror.org/02s50ft61', 'no_lang_code', 1, 'https://ror.org/02s50ft61 Yeda Research and Development (Israel) ידע חברה למחקר ופתוח'),
(43943, 'https://ror.org/04dzjva98', 'no_lang_code', 1, 'https://ror.org/04dzjva98 TCL (China) TCL科技集团'),
(43944, 'https://ror.org/04rb4b520', 'no_lang_code', 1, 'https://ror.org/04rb4b520 Tetra Laval (Switzerland)'),
(43945, 'https://ror.org/04ftb9f20', 'no_lang_code', 1, 'https://ror.org/04ftb9f20 YKK (Japan) 吉田工業株式会社'),
(43946, 'https://ror.org/03wkqfb95', 'no_lang_code', 1, 'https://ror.org/03wkqfb95 Shimano (Japan) 株式会社シマノ'),
(43947, 'https://ror.org/05tq4a167', 'no_lang_code', 1, 'https://ror.org/05tq4a167 ShinEtsu Chemical (Japan) 信越化学工業株式会社'),
(43948, 'https://ror.org/04bdy7914', 'no_lang_code', 1, 'https://ror.org/04bdy7914 Yokogawa Electric (Japan) 横河電機株式会社'),
(43949, 'https://ror.org/02pz14q94', 'no_lang_code', 1, 'https://ror.org/02pz14q94 Shinko Electric Industries (Japan) 新光電気工業'),
(43950, 'https://ror.org/00f96dc95', 'en', 1, 'https://ror.org/00f96dc95 Kamehameha Schools'),
(43951, 'https://ror.org/041zrej81', 'no_lang_code', 1, 'https://ror.org/041zrej81 AccessTR'),
(43952, 'https://ror.org/02psd9a04', 'no_lang_code', 1, 'https://ror.org/02psd9a04 Advocates for Human Potential (United States)'),
(43953, 'https://ror.org/045bds194', 'no_lang_code', 1, 'https://ror.org/045bds194 KRA (United States)'),
(43954, 'https://ror.org/00rmkq989', 'en', 1, 'https://ror.org/00rmkq989 American School for the Deaf'),
(43955, 'https://ror.org/04kre2459', 'en', 1, 'https://ror.org/04kre2459 Lee Countys Department of Public Safety'),
(43956, 'https://ror.org/04rfpye28', 'no_lang_code', 1, 'https://ror.org/04rfpye28 Applied Sciences Laboratory (United States)'),
(43957, 'https://ror.org/04kfhcd40', 'no_lang_code', 1, 'https://ror.org/04kfhcd40 Aspen Professional Services (United States)'),
(43958, 'https://ror.org/028t9cg70', 'en', 1, 'https://ror.org/028t9cg70 Baylor Institute for Rehabilitation'),
(43959, 'https://ror.org/046xcaf86', 'no_lang_code', 1, 'https://ror.org/046xcaf86 FIH Mobile (China)'),
(43960, 'https://ror.org/04zq76066', 'en', 1, 'https://ror.org/04zq76066 San Diego Association of Governments'),
(43961, 'https://ror.org/05e2svc96', 'en', 1, 'https://ror.org/05e2svc96 Connecticut Department of Rehabilitation Services'),
(43962, 'https://ror.org/057gq2q80', 'en', 1, 'https://ror.org/057gq2q80 Mississippi Youth Wheelchair League'),
(43963, 'https://ror.org/04ftr6m30', 'en', 1, 'https://ror.org/04ftr6m30 Center for Independent Living'),
(43964, 'https://ror.org/00pzmcd49', 'en', 1, 'https://ror.org/00pzmcd49 Missouri Assistive Technology'),
(43965, 'https://ror.org/04k7gbj45', 'en', 1, 'https://ror.org/04k7gbj45 Center for Career and Community Research'),
(43966, 'https://ror.org/02f7yzh91', 'no_lang_code', 1, 'https://ror.org/02f7yzh91 GlobalFoundries (Cayman Islands)'),
(43967, 'https://ror.org/01742jq13', 'en', 1, 'https://ror.org/01742jq13 Mount Sinai Beth Israel'),
(43968, 'https://ror.org/02nx94911', 'en', 1, 'https://ror.org/02nx94911 Southwest Educational Development Center'),
(43969, 'https://ror.org/0320ccm28', 'en', 1, 'https://ror.org/0320ccm28 National Council on Rehabilitation Education'),
(43970, 'https://ror.org/048k12m08', 'en', 1, 'https://ror.org/048k12m08 Spinal Cord Injury Association'),
(43971, 'https://ror.org/050qk7w58', 'no_lang_code', 1, 'https://ror.org/050qk7w58 Garrett Technologies (United States)'),
(43972, 'https://ror.org/004nj3f45', 'en', 1, 'https://ror.org/004nj3f45 Virginia Assistive Technology System'),
(43973, 'https://ror.org/00zhmx351', 'en', 1, 'https://ror.org/00zhmx351 Brain Injury Association of New York State'),
(43974, 'https://ror.org/046sp4t54', 'en', 1, 'https://ror.org/046sp4t54 Institute for Community Inclusion'),
(43975, 'https://ror.org/01d6dvg07', 'en', 1, 'https://ror.org/01d6dvg07 North Dakota Protection and Advocacy Project'),
(43976, 'https://ror.org/00wj3fx08', 'en', 1, 'https://ror.org/00wj3fx08 Disability Rights New Jersey'),
(43977, 'https://ror.org/05vjf0e82', 'en', 1, 'https://ror.org/05vjf0e82 Georgia Tech Tools for Life'),
(43978, 'https://ror.org/005scs312', 'en', 1, 'https://ror.org/005scs312 World Rehabilitation Fund'),
(43979, 'https://ror.org/002f4wy65', 'en', 1, 'https://ror.org/002f4wy65 Advocado Press'),
(43980, 'https://ror.org/01h1v4623', 'en', 1, 'https://ror.org/01h1v4623 Association for the Severely Handicapped'),
(43981, 'https://ror.org/02yd61q08', 'en', 1, 'https://ror.org/02yd61q08 Western New York Independent Living'),
(43982, 'https://ror.org/04v9jks60', 'en', 1, 'https://ror.org/04v9jks60 Boston Center for Independent Living'),
(43983, 'https://ror.org/042nxhq59', 'no_lang_code', 1, 'https://ror.org/042nxhq59 Alpha and Omega Semiconductor (Bermuda)'),
(43984, 'https://ror.org/002qxpg72', 'no_lang_code', 1, 'https://ror.org/002qxpg72 ON Semiconductor (United Kingdom)'),
(43985, 'https://ror.org/031kj1n86', 'en', 1, 'https://ror.org/031kj1n86 National Association of the Deaf'),
(43986, 'https://ror.org/02sfkc120', 'en', 1, 'https://ror.org/02sfkc120 Emory Rehabilitation Hospital'),
(43987, 'https://ror.org/02fs1zk32', 'no_lang_code', 1, 'https://ror.org/02fs1zk32 Farus (United States)'),
(43988, 'https://ror.org/056qtgk16', 'no_lang_code', 1, 'https://ror.org/056qtgk16 PureTech (United States)'),
(43989, 'https://ror.org/0428qxx32', 'no_lang_code', 1, 'https://ror.org/0428qxx32 Akikusa Gakuen Junior College 秋草学園短期大学'),
(43990, 'https://ror.org/00tsc8d72', 'en', 1, 'https://ror.org/00tsc8d72 Akita Nutrition Junior College 秋田栄養短期大学'),
(43991, 'https://ror.org/0124nkn39', 'en', 1, 'https://ror.org/0124nkn39 Uwajima Fisheries High school 愛媛県立宇和島水産高等学校'),
(43992, 'https://ror.org/03x159f63', 'en', 1, 'https://ror.org/03x159f63 Ehime Prefectural Education Center 愛媛県総合教育センター'),
(43993, 'https://ror.org/045nchz19', 'en', 1, 'https://ror.org/045nchz19 Asia Center for Air Pollution Research アジア大気汚染研究センター'),
(43994, 'https://ror.org/03p5s8507', 'en', 1, 'https://ror.org/03p5s8507 Niihama City Sumino Elementary School 新居浜市立角野小学校'),
(43995, 'https://ror.org/035739v40', 'no_lang_code', 1, 'https://ror.org/035739v40 Chiba Keiai Junior College 千葉敬愛短期大学'),
(43996, 'https://ror.org/00ryrev47', 'en', 1, 'https://ror.org/00ryrev47 Advanced Science, Technology & Management Research Institute of Kyoto 京都高度技術研究所'),
(43997, 'https://ror.org/015bg7p91', 'en', 1, 'https://ror.org/015bg7p91 International Pacific University Women''s College 環太平洋大学短期大学部'),
(43998, 'https://ror.org/0171gx961', 'en', 1, 'https://ror.org/0171gx961 Chiba Museum of Science and Industry 千葉県立現代産業科学館'),
(43999, 'https://ror.org/05nt41p53', 'no_lang_code', 1, 'https://ror.org/05nt41p53 Akita Prefectural Museum 秋田県立博物館'),
(44000, 'https://ror.org/04hnxg730', 'en', 1, 'https://ror.org/04hnxg730 Chiba Prefectural Education Center 千葉県総合教育センター'),
(44001, 'https://ror.org/00145nn26', 'en', 1, 'https://ror.org/00145nn26 Agency for Cultural Affairs 文化庁'),
(44002, 'https://ror.org/027y5ew45', 'en', 1, 'https://ror.org/027y5ew45 Research Institute of Environment, Agriculture and Fisheries, Osaka Prefecture 大阪府立環境農林水産総合研究所'),
(44003, 'https://ror.org/00xx28w63', 'en', 1, 'https://ror.org/00xx28w63 Akita Prefectural Education Center 秋田県総合教育センター'),
(44004, 'https://ror.org/00wj54d12', 'en', 1, 'https://ror.org/00wj54d12 Funabashi Keimei High School 千葉県立船橋啓明高等学校'),
(44005, 'https://ror.org/04s6age96', 'en', 1, 'https://ror.org/04s6age96 Aichi Bunkyo Women''s College 愛知文教女子短期大学'),
(44006, 'https://ror.org/01m2xfd77', 'en', 1, 'https://ror.org/01m2xfd77 Akita Research Institute for Food and Brewing 秋田県総合食品研究センター'),
(44007, 'https://ror.org/0271q3486', 'en', 1, 'https://ror.org/0271q3486 Foundation Diamond Aging Society Research Foundation ダイヤ高齢社会研究財団'),
(44008, 'https://ror.org/01sp6nj31', 'en', 1, 'https://ror.org/01sp6nj31 Chiba prefectural Matsudo international high school 松戸国際高等学校'),
(44009, 'https://ror.org/04rfpd926', 'no_lang_code', 1, 'https://ror.org/04rfpd926 Aichi Gakusen College 愛知学泉短期大学'),
(44010, 'https://ror.org/03vg8tm37', 'en', 1, 'https://ror.org/03vg8tm37 Akita Industrial Technology Center 秋田県産業技術センター'),
(44011, 'https://ror.org/02akbc835', 'en', 1, 'https://ror.org/02akbc835 Chiba Prefectural Sawara High School 千葉県立佐原高等学校'),
(44012, 'https://ror.org/0010e1p75', 'en', 1, 'https://ror.org/0010e1p75 Chiba Prefectural Institute of Public Health 千葉県衛生研究所'),
(44013, 'https://ror.org/0540dg488', 'en', 1, 'https://ror.org/0540dg488 Aichi Prefectural Higashiura High School 愛知県立東浦高等学校'),
(44014, 'https://ror.org/00eqr6v35', 'en', 1, 'https://ror.org/00eqr6v35 Katori City Higashiodo Elementary School 香取市立東大戸小学校'),
(44015, 'https://ror.org/04wyrwx07', 'en', 1, 'https://ror.org/04wyrwx07 Chiba Prefectural Kimitsu Aoba High School 千葉県立君津青葉高等学校'),
(44016, 'https://ror.org/01rqxmc80', 'en', 1, 'https://ror.org/01rqxmc80 Aichi Medical College for Physical and Occupational Therapy 愛知医療学院短期大学'),
(44017, 'https://ror.org/04ecxrz19', 'en', 1, 'https://ror.org/04ecxrz19 Japan Chemical Analysis Center 日本分析センター'),
(44018, 'https://ror.org/018ycpa16', 'en', 1, 'https://ror.org/018ycpa16 Ancient Orient Museum 古代オリエント博物館'),
(44019, 'https://ror.org/051scxa97', 'en', 1, 'https://ror.org/051scxa97 Makino Botanical Garden 高知県立牧野植物園'),
(44020, 'https://ror.org/05nz1qp55', 'en', 1, 'https://ror.org/05nz1qp55 Aomori Akenohoshi Junior College 青森明の星短期大学'),
(44021, 'https://ror.org/003hspx48', 'en', 1, 'https://ror.org/003hspx48 Aichi Prefectural Nisshin West High School 愛知県立日進西高等学校'),
(44022, 'https://ror.org/04j4pme17', 'en', 1, 'https://ror.org/04j4pme17 Institute of Systems, Information Technologies and Nanotechnologies 九州先端科学技術研究所'),
(44023, 'https://ror.org/01q62y884', 'en', 1, 'https://ror.org/01q62y884 Aomori Chuo Junior College 青森中央短期大学'),
(44024, 'https://ror.org/054yya609', 'en', 1, 'https://ror.org/054yya609 Okazaki Senior High School 愛知県立岡崎高等学校'),
(44025, 'https://ror.org/02jsn4551', 'en', 1, 'https://ror.org/02jsn4551 Foundation Learning Software Information Research Center 公益財団法人 学習ソフトウェア情報研究センター'),
(44026, 'https://ror.org/04mrer463', 'en', 1, 'https://ror.org/04mrer463 Aomori High School 青森県立青森高等学校'),
(44027, 'https://ror.org/007zab522', 'en', 1, 'https://ror.org/007zab522 Fukuoka Women''s Junior College 福岡女子短期大学'),
(44028, 'https://ror.org/05ryaaw10', 'en', 1, 'https://ror.org/05ryaaw10 College of Healthcare Management 保健医療経営大学'),
(44029, 'https://ror.org/03q8prw02', 'no_lang_code', 1, 'https://ror.org/03q8prw02 Mitsui Bunko 公益財団法人 三井文庫'),
(44030, 'https://ror.org/03e0ttw56', 'en', 1, 'https://ror.org/03e0ttw56 Aomori Prefectural Industrial Technology Center 青森県産業技術センター'),
(44031, 'https://ror.org/040g6sv55', 'en', 1, 'https://ror.org/040g6sv55 Fukushima Prefectural Aizu Technical High School 福島県立会津工業高等学校'),
(44032, 'https://ror.org/024rpvq56', 'en', 1, 'https://ror.org/024rpvq56 Foundation Nerve Institute 公益財団法人神経研究所'),
(44033, 'https://ror.org/01xzqee24', 'en', 1, 'https://ror.org/01xzqee24 Aichi Prefectural Chiryu East Koto School 愛知県立知立東高等学校'),
(44034, 'https://ror.org/013ch2r08', 'en', 1, 'https://ror.org/013ch2r08 Fukushima Prefectural Asaka High School 福島県立安積高等学校'),
(44035, 'https://ror.org/048301432', 'en', 1, 'https://ror.org/048301432 Sendai Municipal Sendai Commercial High School 仙台商業高等学校'),
(44036, 'https://ror.org/02qy0m851', 'en', 1, 'https://ror.org/02qy0m851 Aomori Prefectural Local Museum 青森県立郷土館'),
(44037, 'https://ror.org/04em49j63', 'en', 1, 'https://ror.org/04em49j63 Kyoto Human Rights Research Institute 公益財団法人 世界人権問題研究センター'),
(44038, 'https://ror.org/048fx3n07', 'en', 1, 'https://ror.org/048fx3n07 Fukushima Medical University Hospital 福島県立医科大学附属病院'),
(44039, 'https://ror.org/0282pkr46', 'en', 1, 'https://ror.org/0282pkr46 Fukuoka Junior College for Kindergarten Teachers 福岡こども短期大学'),
(44040, 'https://ror.org/01h9gbf83', 'en', 1, 'https://ror.org/01h9gbf83 Fukushima Prefectural Museum of Art 福島県立美術館'),
(44041, 'https://ror.org/0044zd471', 'en', 1, 'https://ror.org/0044zd471 Foundation Osaka City Museum Association 公益財団法人大阪市博物館協会'),
(44042, 'https://ror.org/02rfh6m08', 'en', 1, 'https://ror.org/02rfh6m08 Fukushima Prefectural Police 福島県警察本部'),
(44043, 'https://ror.org/05dmz1027', 'en', 1, 'https://ror.org/05dmz1027 Institute of Politics and Economy 公益財団法人 政治経済研究所'),
(44044, 'https://ror.org/03yrr7p29', 'en', 1, 'https://ror.org/03yrr7p29 Aichi Prefectural Education Center 愛知県総合教育センター'),
(44045, 'https://ror.org/036vt3264', 'en', 1, 'https://ror.org/036vt3264 Railway Technical Research Institute 鉄道総合技術研究所'),
(44046, 'https://ror.org/02j2kkr61', 'en', 1, 'https://ror.org/02j2kkr61 Fukushima Prefectural Culture Center 福島県文化センター'),
(44047, 'https://ror.org/03m02qa07', 'en', 1, 'https://ror.org/03m02qa07 Aoyama Gakuin Women''s Junior College 青山学院女子短期大学'),
(44048, 'https://ror.org/04r1zyg39', 'en', 1, 'https://ror.org/04r1zyg39 Denenchofu Lutheran Kindergarten'),
(44049, 'https://ror.org/033prtz11', 'en', 1, 'https://ror.org/033prtz11 Architectural Institute of Japan 日本建築学会'),
(44050, 'https://ror.org/023yn4412', 'en', 1, 'https://ror.org/023yn4412 Hekinan Technical High School 愛知県立碧南工業高等学校'),
(44051, 'https://ror.org/03tz3ps07', 'en', 1, 'https://ror.org/03tz3ps07 Japan Economic Research Institute'),
(44052, 'https://ror.org/02avm0p22', 'en', 1, 'https://ror.org/02avm0p22 Aichi Prefectural Narumi High School 愛知県立鳴海高等学校'),
(44053, 'https://ror.org/037q1ds38', 'en', 1, 'https://ror.org/037q1ds38 Fukushima Prefecture History Museum 福島県歴史資料館は'),
(44054, 'https://ror.org/05fdzaf62', 'en', 1, 'https://ror.org/05fdzaf62 Statistical Information Institute for Consulting Analysis 統計情報研究開発センター'),
(44055, 'https://ror.org/01xq72953', 'en', 1, 'https://ror.org/01xq72953 Doshisha International Junior and Senior High School'),
(44056, 'https://ror.org/00wnbwz45', 'no_lang_code', 1, 'https://ror.org/00wnbwz45 Fukushima Technology Centre (Japan) 福島県ハイテクプラザ'),
(44057, 'https://ror.org/004np3m61', 'en', 1, 'https://ror.org/004np3m61 National Institute of Technology, Ariake College 有明工業高等専門学校'),
(44058, 'https://ror.org/03b9b5x92', 'en', 1, 'https://ror.org/03b9b5x92 Foundation Wakasa Wan Energy Research Center 公益財団法人 若狭湾エネルギー研究センター'),
(44059, 'https://ror.org/0140zan98', 'en', 1, 'https://ror.org/0140zan98 Gunma Prefectural Museum of History'),
(44060, 'https://ror.org/0451fwt31', 'en', 1, 'https://ror.org/0451fwt31 Doshisha Kaori Junior and Senior High School'),
(44061, 'https://ror.org/04bcz8b84', 'en', 1, 'https://ror.org/04bcz8b84 Osaka City Cultural Properties Association 大阪文化財研究所'),
(44062, 'https://ror.org/01pmhfw02', 'en', 1, 'https://ror.org/01pmhfw02 Asahi City Board of Education 旭市教育委員会'),
(44063, 'https://ror.org/02mvc4m81', 'en', 1, 'https://ror.org/02mvc4m81 Aichi Prefectural Ichinomiya Nishi High School 愛知県立一宮西高等学校'),
(44064, 'https://ror.org/01ykj2t23', 'en', 1, 'https://ror.org/01ykj2t23 Fuzzy Systems Institute ファジィシステム研究所'),
(44065, 'https://ror.org/03shw7f84', 'en', 1, 'https://ror.org/03shw7f84 Aicihi Prefectural Kariya High School 愛知県立刈谷高等学校'),
(44066, 'https://ror.org/03raj9g82', 'en', 1, 'https://ror.org/03raj9g82 Asahikawa Museum of Sculpture 中原悌二郎記念旭川市彫刻美術館'),
(44067, 'https://ror.org/01fp49n29', 'en', 1, 'https://ror.org/01fp49n29 Gakushuin Primary School 学習院初等科'),
(44068, 'https://ror.org/02bcq9e02', 'en', 1, 'https://ror.org/02bcq9e02 Ehime Prefectural Matsuyama Technical High School 愛媛県立松山工業高等学校'),
(44069, 'https://ror.org/01e6m8g97', 'en', 1, 'https://ror.org/01e6m8g97 Fukui City Museum of Natural History'),
(44070, 'https://ror.org/028m7n806', 'en', 1, 'https://ror.org/028m7n806 Aichi Prefectural Mitsu High School 愛知県立御津高等学校'),
(44071, 'https://ror.org/00br1x675', 'en', 1, 'https://ror.org/00br1x675 Gangoji Institute for Research of Cultural Property 元興寺文化財研究所'),
(44072, 'https://ror.org/00wgz8973', 'en', 1, 'https://ror.org/00wgz8973 Asahikawa, Hokkaido Nishi High School 北海道旭川西高等学校'),
(44073, 'https://ror.org/01cm93p29', 'en', 1, 'https://ror.org/01cm93p29 Fukui Prefectural Dinosaur Museum 福井県立恐竜博物館'),
(44074, 'https://ror.org/03et3bc78', 'en', 1, 'https://ror.org/03et3bc78 Hachinohe Technical High School 青森県立八戸工業高等学校'),
(44075, 'https://ror.org/00jh11v62', 'en', 1, 'https://ror.org/00jh11v62 Okazaki Higashi High School 愛知県立岡崎東高等学校'),
(44076, 'https://ror.org/025pkgg38', 'en', 1, 'https://ror.org/025pkgg38 Fukui Prefectural Fujishima High School 福井県立藤島高等学校'),
(44077, 'https://ror.org/00x49t688', 'en', 1, 'https://ror.org/00x49t688 Fukui Prefectural Maruoka High School 福井県立丸岡高等学校'),
(44078, 'https://ror.org/04qbzaj86', 'en', 1, 'https://ror.org/04qbzaj86 Hakodate Junior College 函館短期大学'),
(44079, 'https://ror.org/05hjnjp60', 'en', 1, 'https://ror.org/05hjnjp60 Ashikaga Junior College 足利短期大学'),
(44080, 'https://ror.org/042gfy005', 'en', 1, 'https://ror.org/042gfy005 Geospatial Information Authority of Japan 国土地理院'),
(44081, 'https://ror.org/05ns6w738', 'en', 1, 'https://ror.org/05ns6w738 Hakodate Otani College 函館大谷短期大学'),
(44082, 'https://ror.org/01ge2tp14', 'en', 1, 'https://ror.org/01ge2tp14 Fukui Prefecture Special Education Center 福井県特別支援教育センター'),
(44083, 'https://ror.org/04sq30h86', 'en', 1, 'https://ror.org/04sq30h86 Fukuoka College of Health Sciences 福岡医療短期大学'),
(44084, 'https://ror.org/0495n4t52', 'en', 1, 'https://ror.org/0495n4t52 Hakuho Women''s College 白鳳女子短期大学'),
(44085, 'https://ror.org/005a4h693', 'en', 1, 'https://ror.org/005a4h693 Aichi Prefectural Kasugai Higashi High School 愛知県立春日井東高等学校'),
(44086, 'https://ror.org/03e0zx788', 'en', 1, 'https://ror.org/03e0zx788 Fukuoka Institute of Technology Junior College 福岡工業大学短期大学部'),
(44087, 'https://ror.org/01tyesb47', 'no_lang_code', 1, 'https://ror.org/01tyesb47 Fukuoka Jo Gakuin Nursing University 福岡女学院看護大学'),
(44088, 'https://ror.org/00bveh077', 'en', 1, 'https://ror.org/00bveh077 Kanagawa Institute of Technology Atsugi Children''s Science Museum 厚木市子ども科学館'),
(44089, 'https://ror.org/00djzv109', 'en', 1, 'https://ror.org/00djzv109 Komaki Technical High School 愛知県立小牧工業高等学校'),
(44090, 'https://ror.org/0465np396', 'en', 1, 'https://ror.org/0465np396 Fukuoka Technical High School 福岡県立福岡工業高等学校'),
(44091, 'https://ror.org/00t01zk24', 'en', 1, 'https://ror.org/00t01zk24 Meiwa High School 愛知県立明和高等学校'),
(44092, 'https://ror.org/025b2hx26', 'en', 1, 'https://ror.org/025b2hx26 National Institute of Technology, Gifu College 岐阜工業高等専門学校'),
(44093, 'https://ror.org/03b00jm70', 'en', 1, 'https://ror.org/03b00jm70 Fukuoka Prefectural Kokura High School 福岡県立小倉高等学校'),
(44094, 'https://ror.org/00z8pd398', 'en', 1, 'https://ror.org/00z8pd398 Hamamatsu University Hospital 浜松大学 病院'),
(44095, 'https://ror.org/02v2hb481', 'en', 1, 'https://ror.org/02v2hb481 Fukuoka Prefectural Board of Education 教育の福岡県事務所'),
(44096, 'https://ror.org/02vw9t771', 'en', 1, 'https://ror.org/02vw9t771 Akita Prefectural Akita High School 秋田県立秋田高等学校'),
(44097, 'https://ror.org/00f31yh98', 'en', 1, 'https://ror.org/00f31yh98 Gifu Prefectural Research Institute for Fisheries and Aquatic Environments 岐阜県水産研究所'),
(44098, 'https://ror.org/05jna2v15', 'en', 1, 'https://ror.org/05jna2v15 Yabe Junior High School 矢部中学校'),
(44099, 'https://ror.org/01qxfbw14', 'en', 1, 'https://ror.org/01qxfbw14 Aichi Prefectural Okazaki School for the Deaf 愛知県立岡崎聾学校'),
(44100, 'https://ror.org/02wp0mx48', 'en', 1, 'https://ror.org/02wp0mx48 Gifu Prefectural Gifu Technical High School 岐阜県立岐阜工業高等学校'),
(44101, 'https://ror.org/02r5rm445', 'en', 1, 'https://ror.org/02r5rm445 Benesse Educational Research and Development Institute ベネッセ教育総合研究所'),
(44102, 'https://ror.org/03xtkzq16', 'no_lang_code', 1, 'https://ror.org/03xtkzq16 Beppu Mizobe Gakuen College 別府溝部学園短期大学'),
(44103, 'https://ror.org/02h7nc187', 'en', 1, 'https://ror.org/02h7nc187 Aichi Prefectural Tsurugi hill high school 愛知県立鶴城丘高等学校'),
(44104, 'https://ror.org/001mpte05', 'en', 1, 'https://ror.org/001mpte05 Hiroshima Prefectural Police 広島県警察'),
(44105, 'https://ror.org/012msr517', 'en', 1, 'https://ror.org/012msr517 Hattori Botanical Laboratory 服部植物研究所'),
(44106, 'https://ror.org/03ppgxn28', 'en', 1, 'https://ror.org/03ppgxn28 Aichi Prefectural Jishukan Senior High School 愛知県立時習館高等学校'),
(44107, 'https://ror.org/03q8m4c63', 'en', 1, 'https://ror.org/03q8m4c63 Hiroshima Prefectural Education Center 広島県立教育センター'),
(44108, 'https://ror.org/04cadt597', 'en', 1, 'https://ror.org/04cadt597 Heisei College of Health Sciences 平成医療短期大学'),
(44109, 'https://ror.org/05xfayp21', 'en', 1, 'https://ror.org/05xfayp21 Higashi Chikushi Junior College 東筑紫短期大学'),
(44110, 'https://ror.org/042v20e14', 'en', 1, 'https://ror.org/042v20e14 Gifu Prefectural Research Institute for Forests 岐阜県森林研究所'),
(44111, 'https://ror.org/02rqdr293', 'en', 1, 'https://ror.org/02rqdr293 Building Research Institute 筑波研究学園都市交流協議会'),
(44112, 'https://ror.org/03gd0xf29', 'en', 1, 'https://ror.org/03gd0xf29 Gifu Prefectural Yaotsu High School 岐阜県立八百津高等学校'),
(44113, 'https://ror.org/04xt43068', 'no_lang_code', 1, 'https://ror.org/04xt43068 Hokkaido Museum 北海道博物館'),
(44114, 'https://ror.org/05makdb23', 'en', 1, 'https://ror.org/05makdb23 Gifu Prefecture General Education Center 岐阜県総合教育センター'),
(44115, 'https://ror.org/025v7m073', 'en', 1, 'https://ror.org/025v7m073 Hokkaido Ainu Culture Research Center 北海道庁北海道立アイヌ民族文化研究センター'),
(44116, 'https://ror.org/053sbg434', 'en', 1, 'https://ror.org/053sbg434 Aomori Prefectural Mito High School 青森県立三戸高等学校'),
(44117, 'https://ror.org/05kyej320', 'en', 1, 'https://ror.org/05kyej320 Hokkaido Archaeological Center 北海道埋蔵文化財センター'),
(44118, 'https://ror.org/00gk1rp50', 'en', 1, 'https://ror.org/00gk1rp50 Aoyama Gakuin Senior High School 青山学院中等部・高等部'),
(44119, 'https://ror.org/01brtaa74', 'en', 1, 'https://ror.org/01brtaa74 Kani City Sunan Junior High School 蘇南中学校'),
(44120, 'https://ror.org/05cbzw944', 'en', 1, 'https://ror.org/05cbzw944 Tokyo Metropolitan Aoyama High School 東京都立青山高等学校'),
(44121, 'https://ror.org/03jgdxs56', 'en', 1, 'https://ror.org/03jgdxs56 Hokkaido Dental Technical College 北海道歯科技術専門学校'),
(44122, 'https://ror.org/0088z0796', 'en', 1, 'https://ror.org/0088z0796 Museum of Fine Arts, Gifu 岐阜県美術館'),
(44123, 'https://ror.org/03nbg4460', 'en', 1, 'https://ror.org/03nbg4460 Center for Environmental Science in Saitama 埼玉県環境科学国際センター'),
(44124, 'https://ror.org/00wmxv853', 'no_lang_code', 1, 'https://ror.org/00wmxv853 Hokuriku Gakuin University 北陸学院大学'),
(44125, 'https://ror.org/00k9rsb32', 'en', 1, 'https://ror.org/00k9rsb32 Imakane Board of Education 今金町教育委員会'),
(44126, 'https://ror.org/013shsh75', 'en', 1, 'https://ror.org/013shsh75 Center for National University Finance and Management 国立大学財務・経営センター'),
(44127, 'https://ror.org/00geks132', 'no_lang_code', 1, 'https://ror.org/00geks132 Motosu Shoyo High School 岐阜県立本巣松陽高等学校'),
(44128, 'https://ror.org/04d32wy52', 'en', 1, 'https://ror.org/04d32wy52 Hokkaido Musashi Women''s Junior College 北海道武蔵女子短期大学'),
(44129, 'https://ror.org/015wmee04', 'en', 1, 'https://ror.org/015wmee04 Hollywood Graduate School Of Beauty Business 美容事業のハリウッド大学院'),
(44130, 'https://ror.org/03h2dv749', 'en', 1, 'https://ror.org/03h2dv749 Hokkaido Museum of Northern Peoples 北海道立北方民族博物館'),
(44131, 'https://ror.org/031q06g37', 'en', 1, 'https://ror.org/031q06g37 Himeji University 姫路大学'),
(44132, 'https://ror.org/01md05p94', 'en', 1, 'https://ror.org/01md05p94 National Heavy Snow Youth Exchange House 国立大雪青少年交流の家'),
(44133, 'https://ror.org/03btcby75', 'en', 1, 'https://ror.org/03btcby75 Hokkaido Board of Education 北海道教育委員会'),
(44134, 'https://ror.org/03mxwtc74', 'en', 1, 'https://ror.org/03mxwtc74 Hosen College of Childhood Education こども教育宝仙大学'),
(44135, 'https://ror.org/048ndxt24', 'no_lang_code', 1, 'https://ror.org/048ndxt24 Himeji Hinomoto College 姫路日ノ本短期大学'),
(44136, 'https://ror.org/02ms1t188', 'en', 1, 'https://ror.org/02ms1t188 Hokkaido Education Research Institute 北海道立教育研究所'),
(44137, 'https://ror.org/00c33pd26', 'en', 1, 'https://ror.org/00c33pd26 Hokkaido Sapporo Kaisei High School 北海道札幌開成高等学校'),
(44138, 'https://ror.org/026yc8074', 'en', 1, 'https://ror.org/026yc8074 Hot Springs Research Institute of Kanagawa Prefecture 神奈川県温泉地学研究所'),
(44139, 'https://ror.org/008jqbh70', 'en', 1, 'https://ror.org/008jqbh70 Himeji High School 姫路市立姫路高等学校'),
(44140, 'https://ror.org/05saknr96', 'en', 1, 'https://ror.org/05saknr96 Takezono Higashi Elementary School つくば市立竹園東小学校'),
(44141, 'https://ror.org/03n4s8g35', 'en', 1, 'https://ror.org/03n4s8g35 Hokkaido Sapporo Kita High School 北海道札幌北高等学校'),
(44142, 'https://ror.org/05gx9az59', 'no_lang_code', 1, 'https://ror.org/05gx9az59 Gumma Paz College 群馬パース大学'),
(44143, 'https://ror.org/00chnh519', 'en', 1, 'https://ror.org/00chnh519 Hokkaido Sapporo Kiyota High School 北海道札幌清田高等学校'),
(44144, 'https://ror.org/02357hp16', 'en', 1, 'https://ror.org/02357hp16 Gunma Museum of Natural History 群馬県立自然史博物館'),
(44145, 'https://ror.org/05qxfse94', 'en', 1, 'https://ror.org/05qxfse94 Ibaraki Womens Junior College 茨城女子短期大学'),
(44146, 'https://ror.org/02wjty955', 'en', 1, 'https://ror.org/02wjty955 Hokkaido Sapporo Shinkawa High School 北海道札幌新川高等学校'),
(44147, 'https://ror.org/01g6rdp79', 'en', 1, 'https://ror.org/01g6rdp79 Gunma Nikken Polytechnic College 群馬日建工科専門学校'),
(44148, 'https://ror.org/009cg4615', 'en', 1, 'https://ror.org/009cg4615 Hyogo Prefectural Police 兵庫県警察'),
(44149, 'https://ror.org/05sgyt558', 'en', 1, 'https://ror.org/05sgyt558 Gunma Prefectural Institute of Agriculture and Forestry 群馬県立農林大学校'),
(44150, 'https://ror.org/041bad643', 'en', 1, 'https://ror.org/041bad643 Gunma Prefectural Board of Education 群馬県教育委員会ホ'),
(44151, 'https://ror.org/0284mr070', 'no_lang_code', 1, 'https://ror.org/0284mr070 Hiroshima Cosmopolitan University 広島都市学園大学'),
(44152, 'https://ror.org/03qyehc05', 'en', 1, 'https://ror.org/03qyehc05 Ikenobo Junior College 池坊短期大学'),
(44153, 'https://ror.org/04ars9107', 'en', 1, 'https://ror.org/04ars9107 Gunma Prefectural Fisheries Experimental Station 群馬県 - 水産試験場'),
(44154, 'https://ror.org/045k6ff56', 'en', 1, 'https://ror.org/045k6ff56 Ikuei Junior College 育英短期大学'),
(44155, 'https://ror.org/01g4z8x72', 'en', 1, 'https://ror.org/01g4z8x72 Gunma Industrial Technology Center 群馬県立産業技術センター'),
(44156, 'https://ror.org/00v2ys705', 'en', 1, 'https://ror.org/00v2ys705 Hyogo Prefectural Institute of Technology 兵庫県立工業技術センター'),
(44157, 'https://ror.org/02ffb7k79', 'no_lang_code', 1, 'https://ror.org/02ffb7k79 Imabari Meitoku Junior College 今治明徳短期大学'),
(44158, 'https://ror.org/02wmqzm35', 'en', 1, 'https://ror.org/02wmqzm35 Hiroshima Minami High School 広島県立広島皆実高等学校'),
(44159, 'https://ror.org/035b4az83', 'no_lang_code', 1, 'https://ror.org/035b4az83 Imagineering (Japan) イマジニアリング株式会社'),
(44160, 'https://ror.org/02k37gc37', 'en', 1, 'https://ror.org/02k37gc37 Gunma Archaeological Research Foundation 公益財団法人 群馬県埋蔵文化財調査事業団'),
(44161, 'https://ror.org/00yv9a247', 'en', 1, 'https://ror.org/00yv9a247 Imperial Household Agency 宮内庁'),
(44162, 'https://ror.org/03bmyaj71', 'en', 1, 'https://ror.org/03bmyaj71 Japan Transport Research Institute 一般財団法人 運輸総合研究所'),
(44163, 'https://ror.org/0252kcx79', 'en', 1, 'https://ror.org/0252kcx79 Japan Color Research Institute 日本色彩研究所'),
(44164, 'https://ror.org/0477qq163', 'en', 1, 'https://ror.org/0477qq163 Civil Engineering Research Institute for Cold Region 寒地土木研究所'),
(44165, 'https://ror.org/02fe5bq19', 'en', 1, 'https://ror.org/02fe5bq19 Japan Private School Education Research Institute 日本私学教育研究所'),
(44166, 'https://ror.org/0480zh114', 'en', 1, 'https://ror.org/0480zh114 Japan External Trade Organization 日本貿易振興機構'),
(44167, 'https://ror.org/05807ba92', 'en', 1, 'https://ror.org/05807ba92 National Institutes for Cultural Heritage 独立行政法人国立文化財'),
(44168, 'https://ror.org/05r26zf79', 'en', 1, 'https://ror.org/05r26zf79 Port and Airport Research Institute 港湾空港技術研究所'),
(44169, 'https://ror.org/05wcy9v93', 'en', 1, 'https://ror.org/05wcy9v93 Japan Society for Occupational Health 日本産業衛生学会'),
(44170, 'https://ror.org/041bes686', 'en', 1, 'https://ror.org/041bes686 The Kagawa Museum 香川県立ミュージアム'),
(44171, 'https://ror.org/03bvwa633', 'en', 1, 'https://ror.org/03bvwa633 Ibaraki National College of Technology 茨城工業高等専門学校'),
(44172, 'https://ror.org/01pm5dp22', 'en', 1, 'https://ror.org/01pm5dp22 Ishikawa Prefectural Technical High School 石川県立工業高等学校'),
(44173, 'https://ror.org/01q888968', 'en', 1, 'https://ror.org/01q888968 Takamatsu High School 香川県立高松高等学校'),
(44174, 'https://ror.org/05cpzfy77', 'en', 1, 'https://ror.org/05cpzfy77 Ishikawa Prefectural Nursing School 石川県立総合看護専門学校'),
(44175, 'https://ror.org/02qraea35', 'en', 1, 'https://ror.org/02qraea35 Ishikawa Prefectural Police 石川県警察本部'),
(44176, 'https://ror.org/01fdhar48', 'en', 1, 'https://ror.org/01fdhar48 Ibaraki Nature Museum 茨城県自然博物館'),
(44177, 'https://ror.org/02r3gag23', 'en', 1, 'https://ror.org/02r3gag23 Japan Kinoko Research Center Foundation 日本きのこセンタ'),
(44178, 'https://ror.org/01rtne307', 'en', 1, 'https://ror.org/01rtne307 Japan Monkey Centre 日本モンキーパーク'),
(44179, 'https://ror.org/0262wpz62', 'no_lang_code', 1, 'https://ror.org/0262wpz62 Education software (Japan) 教育ソフトウェア'),
(44180, 'https://ror.org/039jbwk85', 'en', 1, 'https://ror.org/039jbwk85 Ibaraki Prefecture Education Training Center 茨城県教育研修センター');
INSERT INTO `rors` VALUES
(44181, 'https://ror.org/003vha698', 'en', 1, 'https://ror.org/003vha698 Japan Spaceguard Association 日本スペースガード協会'),
(44182, 'https://ror.org/05q9b8948', 'en', 1, 'https://ror.org/05q9b8948 Ishikawa Prefectural Institute for Educational Research and In-Service Training 石川県教育センター'),
(44183, 'https://ror.org/04a467s88', 'en', 1, 'https://ror.org/04a467s88 Ibaraki Prefectural Museum of History ナチュラル茨城県立歴史館'),
(44184, 'https://ror.org/02xm6sp43', 'en', 1, 'https://ror.org/02xm6sp43 National Institute of Technology, Kagoshima College 鹿児島工業高等専門学校'),
(44185, 'https://ror.org/04g3x6p88', 'en', 1, 'https://ror.org/04g3x6p88 Ibaraki Prefectural Police 茨城県警察本部'),
(44186, 'https://ror.org/00rxj0v78', 'en', 1, 'https://ror.org/00rxj0v78 Institute of Brain and Blood Vessels 公益財団法人 脳血管研究所'),
(44187, 'https://ror.org/01cjj0660', 'en', 1, 'https://ror.org/01cjj0660 Institute of Environment and Resource System 環境資源システム総合研究所'),
(44188, 'https://ror.org/03q6yg517', 'en', 1, 'https://ror.org/03q6yg517 Ibaraki Prefectural Mito First High School 茨城県立水戸第一高等学校'),
(44189, 'https://ror.org/015b17453', 'en', 1, 'https://ror.org/015b17453 Kagoshima Prefectural Institute For Education Research 鹿児島県総合教育センター'),
(44190, 'https://ror.org/04raysj94', 'en', 1, 'https://ror.org/04raysj94 Kagoshima Women''s Junior College 鹿児島女子短期大学'),
(44191, 'https://ror.org/04gmk9p10', 'en', 1, 'https://ror.org/04gmk9p10 Ibaraki Prefecture Joso City Sugawara Elementary School 常総市立菅原小学校'),
(44192, 'https://ror.org/034r3x204', 'en', 1, 'https://ror.org/034r3x204 Pearl Science Laboratory 真珠科学研究所'),
(44193, 'https://ror.org/051bey794', 'en', 1, 'https://ror.org/051bey794 Kanagawa Prefectural Shonan High School 神奈川県立湘南高等学校'),
(44194, 'https://ror.org/05p1cse56', 'en', 1, 'https://ror.org/05p1cse56 Kanagawa Prefectural Yokohama Hiranuma High School 神奈川県立横浜平沼高等学校'),
(44195, 'https://ror.org/0028edj28', 'en', 1, 'https://ror.org/0028edj28 Japan University of Health Sciences 日本保健医療大学'),
(44196, 'https://ror.org/029210p22', 'en', 1, 'https://ror.org/029210p22 Kanagawa Prefectural Youth Center 神奈川県立青少年センター'),
(44197, 'https://ror.org/00dwzq257', 'en', 1, 'https://ror.org/00dwzq257 Japanese Center for International Studies in Ecology 国際生態学センター'),
(44198, 'https://ror.org/048gksa87', 'no_lang_code', 1, 'https://ror.org/048gksa87 Kajima Corporation (Japan) 鹿島建設株式会社'),
(44199, 'https://ror.org/02hdsjf18', 'en', 1, 'https://ror.org/02hdsjf18 Iwakuni Junior College 岩国短期大学'),
(44200, 'https://ror.org/03vr02c19', 'en', 1, 'https://ror.org/03vr02c19 Kanagawa Prefecture Education Center 神奈川県立総合教育センター'),
(44201, 'https://ror.org/05fktbs03', 'en', 1, 'https://ror.org/05fktbs03 Jin-ai Women''s College 仁愛女子短期大学'),
(44202, 'https://ror.org/05q4caq61', 'en', 1, 'https://ror.org/05q4caq61 General Education Center of Iwate 岩手県立総合教育センター'),
(44203, 'https://ror.org/03hdkcc29', 'en', 1, 'https://ror.org/03hdkcc29 Kameda College of Health Sciences 亀田医療大学'),
(44204, 'https://ror.org/02xwb7a71', 'en', 1, 'https://ror.org/02xwb7a71 Kanagawa Prefectural Miura Seaside High School 神奈川県立三浦臨海高等学校'),
(44205, 'https://ror.org/007hwje16', 'en', 1, 'https://ror.org/007hwje16 Kihara Institute for Biological Research 横浜市立大学木原生物学研究所'),
(44206, 'https://ror.org/03znyqq54', 'en', 1, 'https://ror.org/03znyqq54 Ichinohe High School 岩手県立一戸高等学校'),
(44207, 'https://ror.org/04j6f8w41', 'en', 1, 'https://ror.org/04j6f8w41 Kanagawa Prefectural Kanagawa Comprehensive Industry High School 神奈川県立神奈川総合産業高等学校'),
(44208, 'https://ror.org/05q9cvq57', 'en', 1, 'https://ror.org/05q9cvq57 Ichinoseki Daiichi Senior High School 岩手県立一関第一高等学校・附属中学校'),
(44209, 'https://ror.org/04t760j73', 'en', 1, 'https://ror.org/04t760j73 Kanazawa Municipal Technical High School 金沢市立工業高等学校'),
(44210, 'https://ror.org/04912ew08', 'en', 1, 'https://ror.org/04912ew08 Iwate Agricultural Junior College 岩手県立農業大学校'),
(44211, 'https://ror.org/01t887w53', 'en', 1, 'https://ror.org/01t887w53 Morioka First High School 岩手県立盛岡第一高等学校'),
(44212, 'https://ror.org/052fvq722', 'en', 1, 'https://ror.org/052fvq722 Kanagawa Industrial Technology Center 神奈川県産業技術センター'),
(44213, 'https://ror.org/01kgebd76', 'en', 1, 'https://ror.org/01kgebd76 Iwate Museum of Art 岩手県立美術館'),
(44214, 'https://ror.org/010vp6v57', 'en', 1, 'https://ror.org/010vp6v57 Iwate Prefectural Shizukuishi High School 岩手県立雫石高等学校'),
(44215, 'https://ror.org/03bf0mp03', 'en', 1, 'https://ror.org/03bf0mp03 Kitakyushu Museum of Natural History and Human History 北九州市立いのちのたび博物館[自然史・歴史博物館'),
(44216, 'https://ror.org/02dnedb80', 'en', 1, 'https://ror.org/02dnedb80 Kansai High School 関西高等学校'),
(44217, 'https://ror.org/05jja7t55', 'en', 1, 'https://ror.org/05jja7t55 Iwate Prefectural Taneichi High School 岩手県立種市高等学校'),
(44218, 'https://ror.org/01rm2f249', 'en', 1, 'https://ror.org/01rm2f249 Junshin Junior College 純真短期大学'),
(44219, 'https://ror.org/034k6e791', 'ja', 1, 'https://ror.org/034k6e791 Hakodate Shirayuri Gakuen 函館白百合学園中学高等学校'),
(44220, 'https://ror.org/05nccdy26', 'en', 1, 'https://ror.org/05nccdy26 Kanagawa prefectural Atsugi high school 神奈川県立厚木高等学校'),
(44221, 'https://ror.org/03dm2vs08', 'en', 1, 'https://ror.org/03dm2vs08 Kacho College 華頂短期大学'),
(44222, 'https://ror.org/04m7w1g19', 'en', 1, 'https://ror.org/04m7w1g19 Ehime Prefecture Iyo Agricultural High School 愛媛県立伊予農業高等学校'),
(44223, 'https://ror.org/0029h8b97', 'en', 1, 'https://ror.org/0029h8b97 Kansai Women''s College 関西女子短期大学'),
(44224, 'https://ror.org/04etxjg38', 'en', 1, 'https://ror.org/04etxjg38 Kanagawa Prefectural Ayase High School 神奈川県立綾瀬高等学校'),
(44225, 'https://ror.org/0210xhm07', 'en', 1, 'https://ror.org/0210xhm07 Izumi Junior College 和泉短期大学'),
(44226, 'https://ror.org/05x01yd17', 'en', 1, 'https://ror.org/05x01yd17 Ability Development Training Center 能力開発研修センター'),
(44227, 'https://ror.org/03n7n4r41', 'en', 1, 'https://ror.org/03n7n4r41 Kanto Junior College 関東短期大学'),
(44228, 'https://ror.org/04xfwhf17', 'en', 1, 'https://ror.org/04xfwhf17 National Institute of Technology, Kagawa College 香川高等専門学校'),
(44229, 'https://ror.org/050bz3844', 'en', 1, 'https://ror.org/050bz3844 Archaeological Institute of Kashihara 奈良県立橿原考古学研究所'),
(44230, 'https://ror.org/00cqcft87', 'en', 1, 'https://ror.org/00cqcft87 Koganei Daiichi Elementary School 小金井市立小金井第一小学校'),
(44231, 'https://ror.org/05gqyvx42', 'en', 1, 'https://ror.org/05gqyvx42 Tokyo Metropolitan Koishikawa Secondary Education School 東京都立小石川中等教育学校'),
(44232, 'https://ror.org/04hs3m603', 'en', 1, 'https://ror.org/04hs3m603 Isogo Technical High School 神奈川県立磯子工業高等学校'),
(44233, 'https://ror.org/02dn7km29', 'no_lang_code', 1, 'https://ror.org/02dn7km29 Kashihara Insectarium 橿原市昆虫館'),
(44234, 'https://ror.org/0120b7z43', 'no_lang_code', 1, 'https://ror.org/0120b7z43 Kokugakuin Junior College 國學院大學北海道短期大学部'),
(44235, 'https://ror.org/040rkxg67', 'en', 1, 'https://ror.org/040rkxg67 Kanagawa prefectural Kanagawa Technical High School 神奈川県立神奈川工業高等学校'),
(44236, 'https://ror.org/01pbhqq24', 'no_lang_code', 1, 'https://ror.org/01pbhqq24 Kokusai Gakuin Saitama Junior College 国際学院埼玉短期大学'),
(44237, 'https://ror.org/042newy54', 'en', 1, 'https://ror.org/042newy54 Kokusai Junior College 国際短期大学'),
(44238, 'https://ror.org/02hjgfh88', 'en', 1, 'https://ror.org/02hjgfh88 Niigata Prefectural Kashiwazaki Technical High School 新潟県立柏崎工業高等学校'),
(44239, 'https://ror.org/0237h9n51', 'en', 1, 'https://ror.org/0237h9n51 Kagawa Prefectural School for the Blind 香川県立盲学校'),
(44240, 'https://ror.org/01qx14d89', 'en', 1, 'https://ror.org/01qx14d89 Komatsu College 小松短期大学'),
(44241, 'https://ror.org/00b80p354', 'en', 1, 'https://ror.org/00b80p354 Kanagawa Prefectural Kanazawa-Bunko Museum 神奈川県立金沢文庫'),
(44242, 'https://ror.org/00ssg0g07', 'en', 1, 'https://ror.org/00ssg0g07 Kawagoe Technical High School 埼玉県立川越工業高等学校'),
(44243, 'https://ror.org/01zv3yh12', 'no_lang_code', 1, 'https://ror.org/01zv3yh12 Hachinohe Gakuin Junior College 八戸学院短期大学'),
(44244, 'https://ror.org/016yfhd37', 'en', 1, 'https://ror.org/016yfhd37 Kawaguchi Junior College 川口短期大学'),
(44245, 'https://ror.org/01crm2177', 'en', 1, 'https://ror.org/01crm2177 Koshien Junior College 甲子園短期大学'),
(44246, 'https://ror.org/04dpcyn69', 'en', 1, 'https://ror.org/04dpcyn69 Kanagawa Prefectural Museum of Cultural History 神奈川県立歴史博物館'),
(44247, 'https://ror.org/01qwv9523', 'en', 1, 'https://ror.org/01qwv9523 Kanagawa Prefectural Museum of Natural History 神奈川県立生命の星'),
(44248, 'https://ror.org/02ypkn805', 'en', 1, 'https://ror.org/02ypkn805 Kanagawa Prefecture Natural Environment Conservation Center 神奈川県自然環境保全センター'),
(44249, 'https://ror.org/02kk7cr85', 'en', 1, 'https://ror.org/02kk7cr85 Kawasaki City College of Nursing 川崎市立看護短期大学'),
(44250, 'https://ror.org/03hq2ba30', 'en', 1, 'https://ror.org/03hq2ba30 Kyoto Bunkyo Junior College 京都文教短期大学'),
(44251, 'https://ror.org/00w83n434', 'en', 1, 'https://ror.org/00w83n434 Kanagawa Prefectural Odawara Johoku Technical High School 神奈川県立小田原城北工業高等学校'),
(44252, 'https://ror.org/02ay7p923', 'en', 1, 'https://ror.org/02ay7p923 Kyoto Municipal Fushimi Technical High School 京都市立伏見工業高等学校'),
(44253, 'https://ror.org/055277280', 'en', 1, 'https://ror.org/055277280 Kumamoto Industrial Research Institute 熊本県産業技術センター'),
(44254, 'https://ror.org/05tgc6914', 'en', 1, 'https://ror.org/05tgc6914 Kawasaki College of Allied Health Professions 川崎医療短期大学'),
(44255, 'https://ror.org/0005ck383', 'en', 1, 'https://ror.org/0005ck383 Kanagawa Prefectural Police Department 神奈川県警察本部'),
(44256, 'https://ror.org/027q26r60', 'en', 1, 'https://ror.org/027q26r60 Kyoto Municipal Uzumasa Elementary School 京都市立太秦小学校'),
(44257, 'https://ror.org/018yv5e79', 'en', 1, 'https://ror.org/018yv5e79 Kochi Gakuen College 高知学園短期大学'),
(44258, 'https://ror.org/007vmg243', 'en', 1, 'https://ror.org/007vmg243 Kyushu Economic Research Center 公益財団法人 九州経済調査協会'),
(44259, 'https://ror.org/01c697313', 'en', 1, 'https://ror.org/01c697313 National Institute of Technology, Kumamoto College 熊本高等専門学校'),
(44260, 'https://ror.org/05h5w5t42', 'en', 1, 'https://ror.org/05h5w5t42 Kawasaki Municipal Kawasaki Science High School 川崎市立川崎総合科学高等学校'),
(44261, 'https://ror.org/04t8h6g06', 'en', 1, 'https://ror.org/04t8h6g06 Kochi Technical High School 高知県立高知工業高等学校'),
(44262, 'https://ror.org/0222gjv49', 'en', 1, 'https://ror.org/0222gjv49 Kumamoto Prefectural Arao High School 熊本県立荒尾高等学校'),
(44263, 'https://ror.org/0322q1246', 'en', 1, 'https://ror.org/0322q1246 Kyushu Historical Museum 九州歴史資料館'),
(44264, 'https://ror.org/01prd6q96', 'en', 1, 'https://ror.org/01prd6q96 Kyoto City Zoo 京都市動物園'),
(44265, 'https://ror.org/02d93xc63', 'en', 1, 'https://ror.org/02d93xc63 Keio Shiki Senior High School 慶應義塾志木高等学校'),
(44266, 'https://ror.org/007mfjf50', 'en', 1, 'https://ror.org/007mfjf50 Kyushu National Museum 九州国立博物館'),
(44267, 'https://ror.org/05debqe13', 'en', 1, 'https://ror.org/05debqe13 Kumamoto Prefectural Police 熊本県警察'),
(44268, 'https://ror.org/02kedpm29', 'en', 1, 'https://ror.org/02kedpm29 Kyushu Otani Junior College 九州大谷短期大学'),
(44269, 'https://ror.org/030dxd692', 'en', 1, 'https://ror.org/030dxd692 Kumamoto Prefectural Matsubase High School 熊本県立松橋高等学校'),
(44270, 'https://ror.org/03azxbd85', 'en', 1, 'https://ror.org/03azxbd85 Kyushu Ryukoku Junior College 九州龍谷短期大学'),
(44271, 'https://ror.org/05c21mq03', 'en', 1, 'https://ror.org/05c21mq03 Kurashiki City College 倉敷市立短期大学'),
(44272, 'https://ror.org/00w2erz81', 'en', 1, 'https://ror.org/00w2erz81 Kyoto Architecture University 京都建築大学校'),
(44273, 'https://ror.org/05wq09n36', 'en', 1, 'https://ror.org/05wq09n36 Okayama Prefectural Kurashiki Chuo High School 岡山県立倉敷中央高等学校'),
(44274, 'https://ror.org/02846qn43', 'en', 1, 'https://ror.org/02846qn43 Japanese La Salle Academy ラ・サール中学校・高等学校'),
(44275, 'https://ror.org/02vj2d285', 'en', 1, 'https://ror.org/02vj2d285 Minatogawa College 湊川短期大学'),
(44276, 'https://ror.org/02mqxmc61', 'en', 1, 'https://ror.org/02mqxmc61 Kyoto City Youth Science Center 京都市青少年科学センター'),
(44277, 'https://ror.org/050bkqc56', 'no_lang_code', 1, 'https://ror.org/050bkqc56 Meguro Parasitological Museum 目黒寄生虫館'),
(44278, 'https://ror.org/00zj9hj84', 'no_lang_code', 1, 'https://ror.org/00zj9hj84 Minerva Light lab (Japan) ミネルバライトラボ'),
(44279, 'https://ror.org/00xefvv79', 'en', 1, 'https://ror.org/00xefvv79 National Institute of Technology, Kurume College 久留米工業高等専門学校'),
(44280, 'https://ror.org/038vb6915', 'en', 1, 'https://ror.org/038vb6915 Kyoto National Museum 京都国立博物館'),
(44281, 'https://ror.org/02frcze54', 'no_lang_code', 1, 'https://ror.org/02frcze54 Software Research Associates (Japan) えすあーるえー'),
(44282, 'https://ror.org/015kqsb22', 'en', 1, 'https://ror.org/015kqsb22 Fukuoka College of Agriculture 福岡県農業大学校'),
(44283, 'https://ror.org/02vjb7q13', 'en', 1, 'https://ror.org/02vjb7q13 Kyoto Prefectural Suzaku High School 京都府立朱雀高等学校'),
(44284, 'https://ror.org/00b2e6559', 'en', 1, 'https://ror.org/00b2e6559 National Institute of Technology, Maizuru College 舞鶴工業高等専門学校'),
(44285, 'https://ror.org/05nptd037', 'en', 1, 'https://ror.org/05nptd037 Meirin College 明倫短期大学'),
(44286, 'https://ror.org/03twzfb97', 'en', 1, 'https://ror.org/03twzfb97 National Institute of Technology, Kushiro College 釧路工業高等専門学校'),
(44287, 'https://ror.org/04zt5qa54', 'en', 1, 'https://ror.org/04zt5qa54 Kyoto Prefectural Institute of Public Health and Environment 京都府保健環境研究所'),
(44288, 'https://ror.org/027zhhk28', 'en', 1, 'https://ror.org/027zhhk28 Meiwa Gakuen Junior College 明和学園短期大学'),
(44289, 'https://ror.org/03jzc4108', 'no_lang_code', 1, 'https://ror.org/03jzc4108 PLUX - Wireless Biosignals (Portugal)'),
(44290, 'https://ror.org/04xatxv47', 'en', 1, 'https://ror.org/04xatxv47 Aichi Prefectural Xincheng East High School 愛知県立新城東高等学校'),
(44291, 'https://ror.org/05mvc7n02', 'en', 1, 'https://ror.org/05mvc7n02 Gunma Prefectural Isesaki Koyokotogakko 群馬県立伊勢崎興陽高等学校'),
(44292, 'https://ror.org/00ktxha38', 'en', 1, 'https://ror.org/00ktxha38 Anjo Chubu Elementary School 安城市立安城中部小学校'),
(44293, 'https://ror.org/03gbnem78', 'en', 1, 'https://ror.org/03gbnem78 Shimane Prefectural Matsue Technical High School 島根県立松江工業高等学校'),
(44294, 'https://ror.org/01ezqah87', 'en', 1, 'https://ror.org/01ezqah87 Kitakyushu National College of Technology 北九州工業高等専門学校'),
(44295, 'https://ror.org/016mfhr46', 'en', 1, 'https://ror.org/016mfhr46 Kobe Rokko Island High School 神戸市立六甲アイランド高等学校'),
(44296, 'https://ror.org/02vdxz509', 'en', 1, 'https://ror.org/02vdxz509 Fukushima Iwaki Agricultural High School 福島県立磐城農業高等学校'),
(44297, 'https://ror.org/01m41n304', 'en', 1, 'https://ror.org/01m41n304 Kanagawa Prefectural Atsugi Kiyoshiminami High School 神奈川県立厚木清南高校'),
(44298, 'https://ror.org/01t36fb69', 'en', 1, 'https://ror.org/01t36fb69 Kobe Municipal Nishiwaki Elementary School'),
(44299, 'https://ror.org/05qessq62', 'en', 1, 'https://ror.org/05qessq62 Kyoto Municipal Saikyokotogakko-Junior High School'),
(44300, 'https://ror.org/03a6vay74', 'en', 1, 'https://ror.org/03a6vay74 Japan Graduate School of Education University 日本教育大学院大学'),
(44301, 'https://ror.org/011qgx996', 'no_lang_code', 1, 'https://ror.org/011qgx996 Mitsubishi Chemical Group Science and Technology Research Center (Japan) 株式会社三菱化学科学技術研究センター'),
(44302, 'https://ror.org/01tk70e68', 'en', 1, 'https://ror.org/01tk70e68 Kyoto Kacho University 京都華頂大学'),
(44303, 'https://ror.org/01t703b81', 'en', 1, 'https://ror.org/01t703b81 Mathematical Assist Design Laboratory 株式会社数理設計研究所'),
(44304, 'https://ror.org/01c9fx689', 'no_lang_code', 1, 'https://ror.org/01c9fx689 Tsutsujigaoka Elementary School 名張市つつじがおか小学校'),
(44305, 'https://ror.org/01qc2w333', 'no_lang_code', 1, 'https://ror.org/01qc2w333 Matsudo Museum 松戸市立博物館'),
(44306, 'https://ror.org/04sm16305', 'no_lang_code', 1, 'https://ror.org/04sm16305 Mitsui Engineering and Shipbuilding (Japan) 三井造船'),
(44307, 'https://ror.org/013947m29', 'en', 1, 'https://ror.org/013947m29 Nagasaki Prefectural Education Center 長崎県教育センター'),
(44308, 'https://ror.org/00c3hvv49', 'en', 1, 'https://ror.org/00c3hvv49 Matsumoto Junior College 松本短期大学'),
(44309, 'https://ror.org/00hg48986', 'en', 1, 'https://ror.org/00hg48986 Ibaraki Prefectural Mitsukaido First High School 茨城県立太田第二高等学校'),
(44310, 'https://ror.org/01kgg9w93', 'en', 1, 'https://ror.org/01kgg9w93 Ibaraki Prefectural Ota second high school 茨城県立太田第二高等学校'),
(44311, 'https://ror.org/05ge30g62', 'en', 1, 'https://ror.org/05ge30g62 International Institute for Childrens Literature Osaka 大阪府立国際児童文学館'),
(44312, 'https://ror.org/01v3xbm77', 'en', 1, 'https://ror.org/01v3xbm77 Museum of Kyoto'),
(44313, 'https://ror.org/056dke471', 'en', 1, 'https://ror.org/056dke471 Tokyo Metropolitan Fuchu High School 東京都立府中高等学校'),
(44314, 'https://ror.org/0513ngw03', 'en', 1, 'https://ror.org/0513ngw03 Matsumoto Meat Hygienic Inspection Center of Nagano Prefecture 長野県松本食肉衛生検査所'),
(44315, 'https://ror.org/00hht4y98', 'en', 1, 'https://ror.org/00hht4y98 Koyo Schools 向陽学園'),
(44316, 'https://ror.org/03qks6h28', 'en', 1, 'https://ror.org/03qks6h28 Syusaku Endo Literature Museum 遠藤周作文学館'),
(44317, 'https://ror.org/01195rc41', 'en', 1, 'https://ror.org/01195rc41 Tokyo Metropolitan Nerima High School 東京都立練馬高等学校'),
(44318, 'https://ror.org/03296kr26', 'en', 1, 'https://ror.org/03296kr26 Nagasaki Women''s Junior College 長崎女子短期大学'),
(44319, 'https://ror.org/05rwf2d02', 'en', 1, 'https://ror.org/05rwf2d02 Ryogoku High School 東京都立両国高等学校・附属中学校'),
(44320, 'https://ror.org/04wa64s85', 'no_lang_code', 1, 'https://ror.org/04wa64s85 Nagoya College 名古屋短期大学'),
(44321, 'https://ror.org/01vagq208', 'no_lang_code', 1, 'https://ror.org/01vagq208 Nagashima Hospital 医療法人長光会 長島病院'),
(44322, 'https://ror.org/03t2d8h32', 'en', 1, 'https://ror.org/03t2d8h32 Tokyo Metropolitan Shakujii High School 東京都立石神井高等学校'),
(44323, 'https://ror.org/02xkqh785', 'en', 1, 'https://ror.org/02xkqh785 Nagoya Industrial Science Research Institute 名古屋産業科学研究所'),
(44324, 'https://ror.org/04tr5bk94', 'en', 1, 'https://ror.org/04tr5bk94 Tokyo Metropolitan Tachikawa High School 東京都立立川高等学校'),
(44325, 'https://ror.org/00kh5vs10', 'en', 1, 'https://ror.org/00kh5vs10 Mie Prefectural School for the Blind 三重県立盲学校'),
(44326, 'https://ror.org/03xee0x32', 'en', 1, 'https://ror.org/03xee0x32 Nagoya Management Junior College 名古屋経営短期大学'),
(44327, 'https://ror.org/01fht1s55', 'en', 1, 'https://ror.org/01fht1s55 Kyoto Prefectural Nishimaizuru High School 京都府立西舞鶴高等学校'),
(44328, 'https://ror.org/00rjqd126', 'en', 1, 'https://ror.org/00rjqd126 Mie Prefectural Education Center 三重県総合教育センター'),
(44329, 'https://ror.org/043vzcd66', 'en', 1, 'https://ror.org/043vzcd66 Miyagi Advanced Dental Hygienist College 宮城高等歯科衛生士学院'),
(44330, 'https://ror.org/02fnvw217', 'en', 1, 'https://ror.org/02fnvw217 Kyoto Prefectural Sagano High School 嵯峨野高等学校'),
(44331, 'https://ror.org/05nnsck87', 'en', 1, 'https://ror.org/05nnsck87 Mie Prefectural Hisai High School 三重県立久居高等学校'),
(44332, 'https://ror.org/033sspj46', 'en', 1, 'https://ror.org/033sspj46 Kagawa University Hospital 香川大学医学部附属病院'),
(44333, 'https://ror.org/04e4q3922', 'en', 1, 'https://ror.org/04e4q3922 Hyogo Prefectural Hyogo Agricultural University 兵庫県立農業大学'),
(44334, 'https://ror.org/00hn0nx84', 'en', 1, 'https://ror.org/00hn0nx84 Mie Prefectural Kobe High School 三重県立神戸高校'),
(44335, 'https://ror.org/03ssr0e93', 'en', 1, 'https://ror.org/03ssr0e93 Kyoto Prefectural Tanabe High School 京都府立田辺高等学校'),
(44336, 'https://ror.org/02k5ra816', 'en', 1, 'https://ror.org/02k5ra816 Kyoto Prefectural Rakuhoku High School 京都府立洛北高等学校'),
(44337, 'https://ror.org/01rhkah90', 'en', 1, 'https://ror.org/01rhkah90 Nagano City Museum 長野市立博物館'),
(44338, 'https://ror.org/03egh3k54', 'en', 1, 'https://ror.org/03egh3k54 Miyagi Prefectural Fisheries High School 宮城県水産高等学校'),
(44339, 'https://ror.org/03azq1a86', 'en', 1, 'https://ror.org/03azq1a86 Mie prefectural Matsusaka Technical High School 三重県立松阪工業高等学校'),
(44340, 'https://ror.org/00jkmqv24', 'en', 1, 'https://ror.org/00jkmqv24 Nagano Prefectural Board of Education 長野県教育委員会'),
(44341, 'https://ror.org/03pwtnm85', 'en', 1, 'https://ror.org/03pwtnm85 Mie Prefectural Police 三重県警察'),
(44342, 'https://ror.org/01dxqnh08', 'en', 1, 'https://ror.org/01dxqnh08 Mie Prefecture TatsuTsu Commercial High School 三重県立津商業高等学校'),
(44343, 'https://ror.org/05nwzgq67', 'en', 1, 'https://ror.org/05nwzgq67 Nagano Prefectural Comprehensive Education Center 長野県総合教育センター'),
(44344, 'https://ror.org/04kze4f18', 'en', 1, 'https://ror.org/04kze4f18 Miyagi Prefectural Police Forensic Science Laboratory 宮城県警察 科学捜査研究所'),
(44345, 'https://ror.org/04pp5k026', 'en', 1, 'https://ror.org/04pp5k026 Mie Prefectural Yokkaichi Technical High School 三重県立四日市工業高等学校'),
(44346, 'https://ror.org/02bknwg38', 'en', 1, 'https://ror.org/02bknwg38 Nagano Prefecture Forestry Research Center 長野県林業総合センター'),
(44347, 'https://ror.org/04aqqcm29', 'en', 1, 'https://ror.org/04aqqcm29 Miyagi Prefectural visual support school 宮城県立視覚支援学校'),
(44348, 'https://ror.org/0226q0843', 'no_lang_code', 1, 'https://ror.org/0226q0843 Horyuji Kokusai High School 奈良県立法隆寺国際高等学校'),
(44349, 'https://ror.org/02cd6ga95', 'en', 1, 'https://ror.org/02cd6ga95 Nagano Prefecture Inariyama Nursing School 稲荷山養護学校'),
(44350, 'https://ror.org/01pw09h14', 'en', 1, 'https://ror.org/01pw09h14 Mie Prefectural Yokkaichi Nishi High School 三重県立四日市西高等学校'),
(44351, 'https://ror.org/04n8wkx34', 'en', 1, 'https://ror.org/04n8wkx34 Miyagi Prefectural Hearing Support School 宮城県立聴覚支援学校'),
(44352, 'https://ror.org/03g6saz93', 'en', 1, 'https://ror.org/03g6saz93 Nara Prefectural Nara High School 奈良県立奈良北高等学校'),
(44353, 'https://ror.org/04hyzjc82', 'en', 1, 'https://ror.org/04hyzjc82 Miyagi Prefectural General Education Center 宮城県総合教育センター'),
(44354, 'https://ror.org/00x8yzg78', 'en', 1, 'https://ror.org/00x8yzg78 Nara Prefectural Takada Senior High School 奈良県立高田高等学校'),
(44355, 'https://ror.org/05mj57325', 'en', 1, 'https://ror.org/05mj57325 Nara Prefectural Unebi Senior High School 奈良県立畝傍高等学校'),
(44356, 'https://ror.org/0358jb366', 'en', 1, 'https://ror.org/0358jb366 Nara Saho College 奈良佐保短期大学'),
(44357, 'https://ror.org/0446skw42', 'en', 1, 'https://ror.org/0446skw42 Miyagi Prefecture Furukawa Technical High School 宮城県古川工業高等学校'),
(44358, 'https://ror.org/00bvfhz16', 'en', 1, 'https://ror.org/00bvfhz16 Mie Prefecture Board of Education 教育の三重県委員会'),
(44359, 'https://ror.org/04xh6km87', 'en', 1, 'https://ror.org/04xh6km87 Toyoshina High School 豊科高等学校'),
(44360, 'https://ror.org/053rqrs18', 'en', 1, 'https://ror.org/053rqrs18 Narashino Municipal Narashino High School 習志野市立習志野高等学校'),
(44361, 'https://ror.org/01kqfrx63', 'en', 1, 'https://ror.org/01kqfrx63 Miyagi Prefecture Furukawa dawn High School 宮城県古川黎明中学校'),
(44362, 'https://ror.org/0006j5k73', 'en', 1, 'https://ror.org/0006j5k73 Nagano Prefectural Ueda Senior High School 長野県上田高等学校'),
(44363, 'https://ror.org/01twzvd91', 'no_lang_code', 1, 'https://ror.org/01twzvd91 NasunokeHara Animal Clinic 那須野ヶ原アニマルクリニック'),
(44364, 'https://ror.org/00s301684', 'en', 1, 'https://ror.org/00s301684 Nakakyusyu Junior College 中九州短期大学'),
(44365, 'https://ror.org/02brzrx03', 'en', 1, 'https://ror.org/02brzrx03 Nagano Technical High School 長野工業高等学校'),
(44366, 'https://ror.org/049rjvf68', 'en', 1, 'https://ror.org/049rjvf68 Nakanihon Automotive College 中日本自動車短期大学'),
(44367, 'https://ror.org/010356m81', 'en', 1, 'https://ror.org/010356m81 Miyagi Prefecture Natori High School 宮城県名取高等学校'),
(44368, 'https://ror.org/02h443151', 'en', 1, 'https://ror.org/02h443151 National Akagi of Youth Exchange House 国立赤城青少年交流の家'),
(44369, 'https://ror.org/0100sjs71', 'en', 1, 'https://ror.org/0100sjs71 Nagaoka Institute of Design 長岡造形大学'),
(44370, 'https://ror.org/008rq7v69', 'en', 1, 'https://ror.org/008rq7v69 Miyagi Prefecture Ishinomaki Technical High School 宮城県石巻工業高等学校'),
(44371, 'https://ror.org/04qzp1e08', 'en', 1, 'https://ror.org/04qzp1e08 Miyagi Prefecture Sendai Higashi High School 宮城県仙台東高等学校'),
(44372, 'https://ror.org/0584q3n03', 'en', 1, 'https://ror.org/0584q3n03 Nagasaki Prefectural Nagasaki Technical High School 長崎県立長崎工業高等学校'),
(44373, 'https://ror.org/049y0k629', 'en', 1, 'https://ror.org/049y0k629 Miyagi Seishin Junior College 宮城誠真短期大学'),
(44374, 'https://ror.org/045sskv83', 'en', 1, 'https://ror.org/045sskv83 Nagasaki Junior College 長崎短期大学'),
(44375, 'https://ror.org/033ncz059', 'en', 1, 'https://ror.org/033ncz059 Nara City Board of Education 奈良市教育委員会'),
(44376, 'https://ror.org/02tjrsf04', 'no_lang_code', 1, 'https://ror.org/02tjrsf04 Mikasa City Museum 三笠市立博物館'),
(44377, 'https://ror.org/02jf0r135', 'en', 1, 'https://ror.org/02jf0r135 Miyazaki Prefectural Wood Utilization Research Center 宮崎県木材利用技術センター'),
(44378, 'https://ror.org/05agrj919', 'en', 1, 'https://ror.org/05agrj919 Nara National Research Institute for Cultural Properties 奈良文化財研究所'),
(44379, 'https://ror.org/009be3496', 'en', 1, 'https://ror.org/009be3496 Nagasaki Prefectural Shimabara High School 長崎県立島原高等学校'),
(44380, 'https://ror.org/002vrhd35', 'en', 1, 'https://ror.org/002vrhd35 Nara National Museum 奈良国立博物館'),
(44381, 'https://ror.org/01z2g2m11', 'en', 1, 'https://ror.org/01z2g2m11 Miyazaki Gakuen Junior College 宮崎学園短期大学'),
(44382, 'https://ror.org/006vpev48', 'en', 1, 'https://ror.org/006vpev48 Kumamoto Prefectural Minamata Technical High School 熊本県立水俣工業高等学校'),
(44383, 'https://ror.org/0375k5p31', 'en', 1, 'https://ror.org/0375k5p31 Mizunami Fossil Museum 瑞浪市化石博物館'),
(44384, 'https://ror.org/0103wwz30', 'en', 1, 'https://ror.org/0103wwz30 Minami Kyushu Junior College 南九州短期大学'),
(44385, 'https://ror.org/051jdqz70', 'en', 1, 'https://ror.org/051jdqz70 Hakodate National Hospital 国立病院機構函館病院'),
(44386, 'https://ror.org/015kxhg94', 'en', 1, 'https://ror.org/015kxhg94 Niijima Gakuen Junior College 新島学園短期大学'),
(44387, 'https://ror.org/056ypt721', 'en', 1, 'https://ror.org/056ypt721 Nagano Prefecural Nagano Senior High School 長野県長野高等学校'),
(44388, 'https://ror.org/00z2xnx25', 'en', 1, 'https://ror.org/00z2xnx25 Niimi College 新見公立短期大学'),
(44389, 'https://ror.org/03d6stm02', 'en', 1, 'https://ror.org/03d6stm02 National Hospital Organization Hanamaki Hospital 国立病院機構花巻病院'),
(44390, 'https://ror.org/044bxz342', 'en', 1, 'https://ror.org/044bxz342 National Institute for Land and Infrastructure Management 国土交通省国土技術政策総合研究所'),
(44391, 'https://ror.org/02j18km55', 'en', 1, 'https://ror.org/02j18km55 Independent Administrative Institution National Research Institute for Cultural Properties 文化財研究所'),
(44392, 'https://ror.org/03r5mvm76', 'en', 1, 'https://ror.org/03r5mvm76 Iwate Prefectural Morioka Agricultural High School 岩手県立盛岡農業高等学校'),
(44393, 'https://ror.org/00arw9a52', 'en', 1, 'https://ror.org/00arw9a52 National Research Institute of Fire and Disaster 消防庁 消防大学校 消防研究センター'),
(44394, 'https://ror.org/03sqx5r23', 'en', 1, 'https://ror.org/03sqx5r23 Nishi-Nippon Junior College 西日本短期大学'),
(44395, 'https://ror.org/04csbgr97', 'en', 1, 'https://ror.org/04csbgr97 Musashi Junior and Senior High School 武蔵高等学校 中学校'),
(44396, 'https://ror.org/04fdy3s84', 'en', 1, 'https://ror.org/04fdy3s84 Nishinomiya Municipal Takagi Elementary School 西宮市立高木小学校'),
(44397, 'https://ror.org/02k3rdd90', 'no_lang_code', 1, 'https://ror.org/02k3rdd90 Osaka Minami Medical Center 国立病院機構大阪南医療センター'),
(44398, 'https://ror.org/02x9b2s62', 'no_lang_code', 1, 'https://ror.org/02x9b2s62 Musashigaoka College 武蔵丘短期大学'),
(44399, 'https://ror.org/05nsenn51', 'en', 1, 'https://ror.org/05nsenn51 National Traffic Safety and Environment Laboratory 交通安全環境研究所'),
(44400, 'https://ror.org/05s5g6369', 'no_lang_code', 1, 'https://ror.org/05s5g6369 Tokushima Hospital 国立病院機構徳島病院'),
(44401, 'https://ror.org/0020pt210', 'en', 1, 'https://ror.org/0020pt210 Noma Institute Of Educational Reserch 野間教育研究所'),
(44402, 'https://ror.org/034xz1x91', 'en', 1, 'https://ror.org/034xz1x91 Okayama Prefectural Mizushima Technical High School 岡山県立水島工業高等学校'),
(44403, 'https://ror.org/008437370', 'en', 1, 'https://ror.org/008437370 National Institute of Population and Social Security Research 国立社会保障・人口問題研究所'),
(44404, 'https://ror.org/02py1vz39', 'en', 1, 'https://ror.org/02py1vz39 Okayama Prefectural Okayama Asahi High School 岡山県立岡山朝日高等学校'),
(44405, 'https://ror.org/01vqdnj79', 'en', 1, 'https://ror.org/01vqdnj79 National Institute of Special Education 独立行政法人 国立特別支援教育総合研究所'),
(44406, 'https://ror.org/03pdvnb13', 'en', 1, 'https://ror.org/03pdvnb13 Okayama Prefectural Katsumata High School 岡山県立勝間田高等学校'),
(44407, 'https://ror.org/04q5ghr47', 'no_lang_code', 1, 'https://ror.org/04q5ghr47 Osaka Yuhigaoka Gakuen Junior College 大阪夕陽丘学園短期大学'),
(44408, 'https://ror.org/01r0qpc06', 'en', 1, 'https://ror.org/01r0qpc06 Okayama Prefectural Okayama Technical High School 岡山県立岡山工業高等学校'),
(44409, 'https://ror.org/04134ed78', 'en', 1, 'https://ror.org/04134ed78 Okayama Prefectural Police 岡山県警察'),
(44410, 'https://ror.org/046a7j408', 'en', 1, 'https://ror.org/046a7j408 Osaka College of Social Health and Welfare 大阪健康福祉短期大学'),
(44411, 'https://ror.org/05ax69r91', 'en', 1, 'https://ror.org/05ax69r91 Okayama Prefecture Education Center 岡山県総合教育センター'),
(44412, 'https://ror.org/05een9q80', 'en', 1, 'https://ror.org/05een9q80 National Livestock Breeding Center 独立行政法人 家畜改良センター'),
(44413, 'https://ror.org/05kjy5h23', 'no_lang_code', 1, 'https://ror.org/05kjy5h23 Neyagawa High School 大阪府立寝屋川高等学校'),
(44414, 'https://ror.org/04wsndj47', 'en', 1, 'https://ror.org/04wsndj47 Okayama City Ishii Elementary School 岡山市立石井小学校'),
(44415, 'https://ror.org/02wxcdf69', 'en', 1, 'https://ror.org/02wxcdf69 National Maritime Research Institute 海上技術安全研究所は'),
(44416, 'https://ror.org/01hdz2136', 'en', 1, 'https://ror.org/01hdz2136 Okayama Prefectural Tsuyama High School 岡山県立津山中学校・高等学校'),
(44417, 'https://ror.org/01vrr3d94', 'no_lang_code', 1, 'https://ror.org/01vrr3d94 Osaka Science Museum 大阪市立科学館'),
(44418, 'https://ror.org/053se7r61', 'en', 1, 'https://ror.org/053se7r61 Natural History Museum and Institute 千葉県立中央博物館'),
(44419, 'https://ror.org/02v953j25', 'en', 1, 'https://ror.org/02v953j25 National Muroto Youth Outdoor Learning Center 国立室戸青少年自然の家'),
(44420, 'https://ror.org/01hesjx24', 'en', 1, 'https://ror.org/01hesjx24 Osaka City Museum of Fine Arts 大阪市立美術館'),
(44421, 'https://ror.org/0110jzw27', 'en', 1, 'https://ror.org/0110jzw27 Osaka Municipal Toyosaki Junior High School 大阪市立豊崎中学校'),
(44422, 'https://ror.org/00pbd7j83', 'en', 1, 'https://ror.org/00pbd7j83 Osaka Museum of Natural History 大阪市立自然史博物館'),
(44423, 'https://ror.org/05tgpyh43', 'en', 1, 'https://ror.org/05tgpyh43 Oita Industrial Research Institute 大分県産業科学技術センター'),
(44424, 'https://ror.org/027x43420', 'en', 1, 'https://ror.org/027x43420 Nihon Institute of Medical Science 日本医療科学大学'),
(44425, 'https://ror.org/0576n6b98', 'en', 1, 'https://ror.org/0576n6b98 Niigata Prefectural Niigata Central High School 新潟県立新潟中央高等学校'),
(44426, 'https://ror.org/0354gw976', 'en', 1, 'https://ror.org/0354gw976 Osaka Prefecture Hannan Visual Support School 大阪府立大阪南視覚支援学校'),
(44427, 'https://ror.org/00mmzyj40', 'en', 1, 'https://ror.org/00mmzyj40 National Institution For Youth Education 国立青少年教育振興機構'),
(44428, 'https://ror.org/05gaya574', 'en', 1, 'https://ror.org/05gaya574 Okazaki Womens Junior College 岡崎女子短期大学'),
(44429, 'https://ror.org/00j4x4e07', 'no_lang_code', 1, 'https://ror.org/00j4x4e07 Niigata Chuoh Junior College 新潟中央短期大学'),
(44430, 'https://ror.org/037rrfx42', 'en', 1, 'https://ror.org/037rrfx42 Osaka Prefectural Board of Education 大阪府教育委員会'),
(44431, 'https://ror.org/05dj5ck11', 'en', 1, 'https://ror.org/05dj5ck11 Niigata College of Technology 新潟工業短期大学'),
(44432, 'https://ror.org/027qqvd10', 'no_lang_code', 1, 'https://ror.org/027qqvd10 Obayashi (Japan) 株式会社大林組'),
(44433, 'https://ror.org/01p3pd878', 'en', 1, 'https://ror.org/01p3pd878 Okazaki Womens University 岡崎女子大学'),
(44434, 'https://ror.org/0225zey96', 'en', 1, 'https://ror.org/0225zey96 Obihiro Otani Junior College 帯広大谷短期大学'),
(44435, 'https://ror.org/04b5t6e20', 'en', 1, 'https://ror.org/04b5t6e20 Niigata Prefectural Niigata MidoriKo High School 新潟県立新潟翠江高等学校'),
(44436, 'https://ror.org/0282p8n44', 'en', 1, 'https://ror.org/0282p8n44 Osaka Prefectural Education Center 大阪府教育センター'),
(44437, 'https://ror.org/04n820n80', 'en', 1, 'https://ror.org/04n820n80 Niigata Medical Technology Specialist School 新潟医療技術専門学校'),
(44438, 'https://ror.org/030dc5p74', 'en', 1, 'https://ror.org/030dc5p74 Odawara Women''s Junior College 小田原女子短期大学'),
(44439, 'https://ror.org/031pw2y57', 'en', 1, 'https://ror.org/031pw2y57 Osaka Prefectural Hirakata High School 大阪府立枚方高等学校'),
(44440, 'https://ror.org/026vq2355', 'en', 1, 'https://ror.org/026vq2355 Niigata Prefectural Niigata Minami High School 新潟県立新潟南高等学校'),
(44441, 'https://ror.org/03mxb1d84', 'en', 1, 'https://ror.org/03mxb1d84 Ogaki Women''s College 大垣女子短期大学'),
(44442, 'https://ror.org/02zbycv67', 'no_lang_code', 1, 'https://ror.org/02zbycv67 Osaka Ibaraki High School 大阪府立茨木高等学校'),
(44443, 'https://ror.org/01wegjf65', 'en', 1, 'https://ror.org/01wegjf65 Ogori City Board of Education 小郡市 教育委員会'),
(44444, 'https://ror.org/00fss9n81', 'en', 1, 'https://ror.org/00fss9n81 Niigata Prefectural Education Center 新潟県立教育センター'),
(44445, 'https://ror.org/04t53ag79', 'en', 1, 'https://ror.org/04t53ag79 Niigata Prefectural Naoetsu Secondary School 新潟県立直江津高等学校'),
(44446, 'https://ror.org/05tycwb10', 'en', 1, 'https://ror.org/05tycwb10 Niigata Prefectural Nagaoka High School 新潟県立長岡高等学校'),
(44447, 'https://ror.org/02q9dpj81', 'en', 1, 'https://ror.org/02q9dpj81 National Institute of Technology Okinawa College 沖縄工業高等専門学校'),
(44448, 'https://ror.org/05kykca56', 'en', 1, 'https://ror.org/05kykca56 Ohtsuki City College 大月短期大学'),
(44449, 'https://ror.org/03gxw2643', 'en', 1, 'https://ror.org/03gxw2643 Niigata Prefectural Niigata High School 新潟県立新潟高等学校'),
(44450, 'https://ror.org/01h18yg90', 'en', 1, 'https://ror.org/01h18yg90 Oita Prefectural Board of Education 大分県教育委員会'),
(44451, 'https://ror.org/02r6wnk86', 'en', 1, 'https://ror.org/02r6wnk86 Okinawa Prefectural Education Center 沖縄県立総合教育センター'),
(44452, 'https://ror.org/04rdyj788', 'en', 1, 'https://ror.org/04rdyj788 Sakai Technology High School 大阪府立堺工科高等学校'),
(44453, 'https://ror.org/025wz5n41', 'en', 1, 'https://ror.org/025wz5n41 Osaka Prefectural Kitano High School 大阪府立北野高等学校'),
(44454, 'https://ror.org/05ye2w436', 'en', 1, 'https://ror.org/05ye2w436 Oita Junior College 大分短期大学'),
(44455, 'https://ror.org/04qzk5f10', 'en', 1, 'https://ror.org/04qzk5f10 Osaka Prefectural Makino high school 大阪府立牧野高等学校'),
(44456, 'https://ror.org/00enjfk59', 'en', 1, 'https://ror.org/00enjfk59 Oita Prefectural College of Arts and Culture 大分県立芸術文化短期大学'),
(44457, 'https://ror.org/02b005b78', 'en', 1, 'https://ror.org/02b005b78 Niigata Prefectural Kamo Agriculture and Forestry High School 新潟県立加茂農林高等学校'),
(44458, 'https://ror.org/00j09dc39', 'en', 1, 'https://ror.org/00j09dc39 Okinawa Prefectural Koroku High School 沖縄県立小禄高等学校'),
(44459, 'https://ror.org/05b4rrz69', 'en', 1, 'https://ror.org/05b4rrz69 Niigata Prefectural Ojiya Nishi High School 新潟県立小千谷西高等学校'),
(44460, 'https://ror.org/04rn6qc33', 'en', 1, 'https://ror.org/04rn6qc33 Okinawa Prefectural Museum 沖縄県立博物館・美術館'),
(44461, 'https://ror.org/02vx5xr46', 'en', 1, 'https://ror.org/02vx5xr46 Osaka Prefectural Police Department 大阪府警察'),
(44462, 'https://ror.org/01afrat76', 'en', 1, 'https://ror.org/01afrat76 Oita Prefectural Hiji support school 大分県立日出支援学校'),
(44463, 'https://ror.org/02c3wh872', 'en', 1, 'https://ror.org/02c3wh872 Ōita Prefectural Museum of History 大分県立歴史博物館'),
(44464, 'https://ror.org/03j5mnr69', 'en', 1, 'https://ror.org/03j5mnr69 Niigata City Kohshi Secondary School 新潟市立高志中等教育学校'),
(44465, 'https://ror.org/03v9g5m88', 'en', 1, 'https://ror.org/03v9g5m88 Seibi High School 大阪府立成美高等学校'),
(44466, 'https://ror.org/04cafpa45', 'en', 1, 'https://ror.org/04cafpa45 Okinawa Womens Junior College 沖縄女子短期大学'),
(44467, 'https://ror.org/04zv7sm47', 'en', 1, 'https://ror.org/04zv7sm47 Osaka Prefectural Sano Polytechnic High School 大阪府立佐野工科高等学校'),
(44468, 'https://ror.org/02r4fh585', 'en', 1, 'https://ror.org/02r4fh585 Oita Prefectural School for the Blind 大分県立盲学校'),
(44469, 'https://ror.org/0359zqq03', 'en', 1, 'https://ror.org/0359zqq03 Osaka Prefectural Toyonaka Support School 大阪府立豊中支援学校'),
(44470, 'https://ror.org/02ypyf569', 'en', 1, 'https://ror.org/02ypyf569 Osaka Yukioka Medical University 大阪行岡医療大学'),
(44471, 'https://ror.org/037kbz526', 'en', 1, 'https://ror.org/037kbz526 National Institute of Technology, Oshima College 大島商船高等専門学校'),
(44472, 'https://ror.org/00k02x334', 'en', 1, 'https://ror.org/00k02x334 Osaka Prefectural Agricultural High School 大阪府立農芸高等学校'),
(44473, 'https://ror.org/05qjhbz81', 'en', 1, 'https://ror.org/05qjhbz81 Sugayadai Elementary School 菅谷台小学校'),
(44474, 'https://ror.org/031jpet61', 'no_lang_code', 1, 'https://ror.org/031jpet61 Osaka Aoyama University 大阪青山大学'),
(44475, 'https://ror.org/05e58gr55', 'en', 1, 'https://ror.org/05e58gr55 Osaka Center For Cultural Heritage 大阪府文化財センター'),
(44476, 'https://ror.org/00bkzza76', 'en', 1, 'https://ror.org/00bkzza76 Fujiidera Technical High School 大阪府立藤井寺工科高等学校'),
(44477, 'https://ror.org/04h081c37', 'en', 1, 'https://ror.org/04h081c37 Okayama Prefectural Kurashiki Technical High School 岡山県立倉敷工業高等学校'),
(44478, 'https://ror.org/00r76tg20', 'no_lang_code', 1, 'https://ror.org/00r76tg20 Osaka Christian College 大阪キリスト教短期大学'),
(44479, 'https://ror.org/01g3szs55', 'no_lang_code', 1, 'https://ror.org/01g3szs55 Osaka Prefectural Shiroyama High School 大阪府立城山高等学校'),
(44480, 'https://ror.org/04ar6mt14', 'en', 1, 'https://ror.org/04ar6mt14 Saitama Cultural Deposits Research Corporation 公益財団法人 埼玉県埋蔵文化財調査事業団'),
(44481, 'https://ror.org/02emtct55', 'en', 1, 'https://ror.org/02emtct55 Takaishi High School 大阪府立高石高等学校'),
(44482, 'https://ror.org/01ab9mk90', 'en', 1, 'https://ror.org/01ab9mk90 Ritsumeikan Junior and Senior High School 立命館中学校・高等学校'),
(44483, 'https://ror.org/00k427y50', 'en', 1, 'https://ror.org/00k427y50 Osaka Municipal College of Design 大阪市立デザイン教育研究所'),
(44484, 'https://ror.org/05nf0wq34', 'en', 1, 'https://ror.org/05nf0wq34 Saitama Prefectural Education Center 埼玉県立総合教育センター'),
(44485, 'https://ror.org/02d90d472', 'en', 1, 'https://ror.org/02d90d472 Osaka Municipal Nishi High School 大阪市立西高等学校'),
(44486, 'https://ror.org/04cf91p66', 'en', 1, 'https://ror.org/04cf91p66 Our Lady Academy of Sakura 私立桜の聖母学院高校'),
(44487, 'https://ror.org/040mta007', 'en', 1, 'https://ror.org/040mta007 National Institute of Technology, Oyama College 小山工業高等専門学校'),
(44488, 'https://ror.org/0402q0384', 'no_lang_code', 1, 'https://ror.org/0402q0384 Osaka Shin-ai College 大阪信愛女学院短期大学'),
(44489, 'https://ror.org/05nts6117', 'en', 1, 'https://ror.org/05nts6117 Saitama Women''s Junior College 埼玉女子短期大学'),
(44490, 'https://ror.org/0006kcg24', 'en', 1, 'https://ror.org/0006kcg24 Osaka Municipal Miyakojima Technical High School 大阪市立都島工業高等学校'),
(44491, 'https://ror.org/052zcxp76', 'en', 1, 'https://ror.org/052zcxp76 Seika Women''s Junior College 精華女子短期大学'),
(44492, 'https://ror.org/04ev1v417', 'en', 1, 'https://ror.org/04ev1v417 Seirei Women''s Junior College 聖霊女子短期大学'),
(44493, 'https://ror.org/01dx0e286', 'en', 1, 'https://ror.org/01dx0e286 Osaka Prefectural Horticulture High School 大阪府立園芸高等学校'),
(44494, 'https://ror.org/02eq7mb50', 'en', 1, 'https://ror.org/02eq7mb50 Sakai Women''s Junior College 堺女子短期大学'),
(44495, 'https://ror.org/029m89a02', 'en', 1, 'https://ror.org/029m89a02 Saga Prefectural Imari Agriculture and Forestry High School 佐賀県立伊万里農林高等学校'),
(44496, 'https://ror.org/04j5m9426', 'no_lang_code', 1, 'https://ror.org/04j5m9426 Tokyo Seiei College 東京聖栄大学'),
(44497, 'https://ror.org/03fa8j757', 'en', 1, 'https://ror.org/03fa8j757 Parks and Recreation Foundation 般財団法人 公園財団'),
(44498, 'https://ror.org/00rz19f75', 'en', 1, 'https://ror.org/00rz19f75 Sakura no Seibo Junior College 桜の聖母短期大学'),
(44499, 'https://ror.org/0400cp237', 'en', 1, 'https://ror.org/0400cp237 Saga Prefectural Education Center 佐賀県教育センター'),
(44500, 'https://ror.org/02q2axs78', 'en', 1, 'https://ror.org/02q2axs78 Kyoto Seizan College 京都西山短期大学'),
(44501, 'https://ror.org/033tqss18', 'en', 1, 'https://ror.org/033tqss18 Philatelic Museum 切手の博物館'),
(44502, 'https://ror.org/01kp51d05', 'en', 1, 'https://ror.org/01kp51d05 Osaka Municipal Ikuno Technical High School 大阪市立生野工業高等学校'),
(44503, 'https://ror.org/03425vk88', 'en', 1, 'https://ror.org/03425vk88 Salesian Polytechnic サレジオ高専 ホ'),
(44504, 'https://ror.org/04ztf2c56', 'en', 1, 'https://ror.org/04ztf2c56 Sanjo Municipal Tsukioka Elementary School 三条市立月岡小学校'),
(44505, 'https://ror.org/03e1t0653', 'no_lang_code', 1, 'https://ror.org/03e1t0653 Sendai Seiyo Gakuin College 仙台青葉学院短期大学'),
(44506, 'https://ror.org/04qtyk830', 'no_lang_code', 1, 'https://ror.org/04qtyk830 Sendai Tateyama Tanaka School 仙台市立山田中学校'),
(44507, 'https://ror.org/04frnf283', 'en', 1, 'https://ror.org/04frnf283 Sanyo Women''s College 山陽女子短期大学'),
(44508, 'https://ror.org/016qrrn27', 'en', 1, 'https://ror.org/016qrrn27 Shizuoka Prefectural Science and Technology High School 静岡県立科学技術高等学校'),
(44509, 'https://ror.org/02vtn5444', 'en', 1, 'https://ror.org/02vtn5444 Saitama Junshin Junior College 埼玉純真短期大学'),
(44510, 'https://ror.org/03zkxdc34', 'en', 1, 'https://ror.org/03zkxdc34 Shizuoka Prefectural Central Library 静岡県立中央図書館'),
(44511, 'https://ror.org/05tee1f44', 'en', 1, 'https://ror.org/05tee1f44 Shizuoka Prefectural Education Center 静岡県総合教育センター'),
(44512, 'https://ror.org/00bkhev45', 'en', 1, 'https://ror.org/00bkhev45 Saitama Prefectural Omiya Chuo Senior High School 埼玉県立大宮中央高等学校'),
(44513, 'https://ror.org/03ta8v762', 'en', 1, 'https://ror.org/03ta8v762 Saitama Prefectural Omiya High School 埼玉県立大宮高等学校'),
(44514, 'https://ror.org/01ee8e975', 'no_lang_code', 1, 'https://ror.org/01ee8e975 Showagakuin Junior College 昭和学院短期大学'),
(44515, 'https://ror.org/03zr6cm28', 'no_lang_code', 1, 'https://ror.org/03zr6cm28 Shizuoka Prefectural Gotemba Minami High School 静岡県立御殿場南高等学校'),
(44516, 'https://ror.org/0382x3a11', 'no_lang_code', 1, 'https://ror.org/0382x3a11 Shiretoko Museum 斜里町立知床博物館'),
(44517, 'https://ror.org/05ym5q463', 'en', 1, 'https://ror.org/05ym5q463 Industrial Research Institute of Shizuoka Prefecture 静岡県工業技術研究所'),
(44518, 'https://ror.org/02edrwa65', 'en', 1, 'https://ror.org/02edrwa65 Shuko Junior College 修紅短期大学'),
(44519, 'https://ror.org/05xwnaa24', 'en', 1, 'https://ror.org/05xwnaa24 Ohara Memorial Institute for Science of Labour 大原記念労働科学研究所'),
(44520, 'https://ror.org/034f1bj67', 'en', 1, 'https://ror.org/034f1bj67 Shizuoka Prefectural Kakegawanishi High School 静岡県立掛川西高等学校'),
(44521, 'https://ror.org/01baw3d45', 'no_lang_code', 1, 'https://ror.org/01baw3d45 Shukutoku Junior College 淑徳短期大学'),
(44522, 'https://ror.org/02zq3rg90', 'en', 1, 'https://ror.org/02zq3rg90 Saitama Prefectural Miyashiro High School 埼玉県宮代高等学校'),
(44523, 'https://ror.org/00ckqw993', 'en', 1, 'https://ror.org/00ckqw993 Shiga Bunkyo Junior College 滋賀文教短期大学'),
(44524, 'https://ror.org/04vr3n661', 'en', 1, 'https://ror.org/04vr3n661 Shizuoka Prefectural Police 静岡県警察'),
(44525, 'https://ror.org/007qf4q77', 'en', 1, 'https://ror.org/007qf4q77 Lion Foundation for Dental Health ライオン歯科衛生研究所'),
(44526, 'https://ror.org/05q3m8e94', 'no_lang_code', 1, 'https://ror.org/05q3m8e94 Fuchu Hospital 府中病院'),
(44527, 'https://ror.org/04ny33f60', 'en', 1, 'https://ror.org/04ny33f60 Shiga Junior College 滋賀短期大学'),
(44528, 'https://ror.org/024285019', 'en', 1, 'https://ror.org/024285019 Shizuoka Prefecture Agricultural and Forestry Research Institute 静岡県/農林技術研究所'),
(44529, 'https://ror.org/02djjwk37', 'en', 1, 'https://ror.org/02djjwk37 Inagakuen Public High School 埼玉県伊奈学園総合高校'),
(44530, 'https://ror.org/01rtzrs77', 'en', 1, 'https://ror.org/01rtzrs77 Saitama Prefectural Industrial Technology Center 埼玉県産業技術センター'),
(44531, 'https://ror.org/02mfchx98', 'en', 1, 'https://ror.org/02mfchx98 Shiga Prefectural Education Center 滋賀県総合教育センター'),
(44532, 'https://ror.org/01qb47q59', 'en', 1, 'https://ror.org/01qb47q59 Saitama Prefectural Kodama High School 埼玉県児玉高校');
INSERT INTO `rors` VALUES
(44533, 'https://ror.org/057gzv333', 'en', 1, 'https://ror.org/057gzv333 Sophia School of Social Welfare 社会福祉のソフィア・スクール'),
(44534, 'https://ror.org/03m8w6896', 'en', 1, 'https://ror.org/03m8w6896 Quantum Chemistry Research Institute 特定非営利活動法人 量子化学研究協会研究所'),
(44535, 'https://ror.org/0063pqn40', 'en', 1, 'https://ror.org/0063pqn40 Saitama Prefectural Kumagaya Girls High School 埼玉県立熊谷女子高等学校'),
(44536, 'https://ror.org/04sgkrh50', 'en', 1, 'https://ror.org/04sgkrh50 Shizuoka Prefectural Board of Education 静岡県教育委員会'),
(44537, 'https://ror.org/05sm0qs27', 'en', 1, 'https://ror.org/05sm0qs27 Saitama Prefectural Museum of History and Folklore 埼玉県立歴史と民俗の博物館'),
(44538, 'https://ror.org/02y5ftz59', 'en', 1, 'https://ror.org/02y5ftz59 St. Cecilia Women''s Junior College 聖セシリア短期大学'),
(44539, 'https://ror.org/04fc53j27', 'no_lang_code', 1, 'https://ror.org/04fc53j27 Nippon Koei (Japan) 日本工営'),
(44540, 'https://ror.org/0492z4191', 'en', 1, 'https://ror.org/0492z4191 Saitama Prefectural Museum of Natural History 自然史の埼玉県立美術館'),
(44541, 'https://ror.org/0117r4k15', 'en', 1, 'https://ror.org/0117r4k15 Okinawa Prefectural Board of Education 沖縄県教育委員会'),
(44542, 'https://ror.org/02pbc3p47', 'en', 1, 'https://ror.org/02pbc3p47 Saitama Prefectural Tokorozawa Nishi High School 埼玉県立所沢西高等学校'),
(44543, 'https://ror.org/05nm21507', 'en', 1, 'https://ror.org/05nm21507 Ohda High School 島根県立大田高等学校'),
(44544, 'https://ror.org/021r8rp50', 'en', 1, 'https://ror.org/021r8rp50 St. Margaret''s Junior College 立教女学院短期大学'),
(44545, 'https://ror.org/00fgym023', 'en', 1, 'https://ror.org/00fgym023 Hamamatsu City High School 浜松市高等学校'),
(44546, 'https://ror.org/04v65wy58', 'en', 1, 'https://ror.org/04v65wy58 Saitama Prefectural Toyooka High School 埼玉県立豊岡高等学校'),
(44547, 'https://ror.org/02306qr05', 'en', 1, 'https://ror.org/02306qr05 St. Mary''s College 名古屋柳城短期大学'),
(44548, 'https://ror.org/032trmw54', 'en', 1, 'https://ror.org/032trmw54 Saitama Prefectural Urawa first Girls'' High School 埼玉県立浦和第一女子高等学校'),
(44549, 'https://ror.org/01sy8w588', 'en', 1, 'https://ror.org/01sy8w588 Shimane Prefectural Daito High School 島根県立大東高等学校'),
(44550, 'https://ror.org/05adg0580', 'en', 1, 'https://ror.org/05adg0580 Saitama Prefectural Urawa High School 埼玉県立浦和高校'),
(44551, 'https://ror.org/0172njy07', 'en', 1, 'https://ror.org/0172njy07 Research Institute for Electromagnetic Materials 電磁材料研究所'),
(44552, 'https://ror.org/03pngf508', 'en', 1, 'https://ror.org/03pngf508 National Institute of Technology, Suzuka College 鈴鹿工業高等専門学校'),
(44553, 'https://ror.org/01y16qn61', 'en', 1, 'https://ror.org/01y16qn61 Research Institute for Environmental Sciences and Public Health of Iwate Prefecture 岩手県環境保健研究センター'),
(44554, 'https://ror.org/03kgj1y58', 'no_lang_code', 1, 'https://ror.org/03kgj1y58 Takada Junior College 高田短期大学'),
(44555, 'https://ror.org/03m2n7z62', 'en', 1, 'https://ror.org/03m2n7z62 Shoei Junior College 頌栄短期大学'),
(44556, 'https://ror.org/04efpm434', 'en', 1, 'https://ror.org/04efpm434 Research Institute for Peace and Security 一般財団法人平和・安全保障研究所'),
(44557, 'https://ror.org/01rrjpm51', 'en', 1, 'https://ror.org/01rrjpm51 Miyazaki Prefecture Takanabe Agricultural High School 宮崎県立高鍋農業高等学校'),
(44558, 'https://ror.org/005xj6w35', 'en', 1, 'https://ror.org/005xj6w35 Shogen Junior College 正眼短期大学'),
(44559, 'https://ror.org/05vp7sn46', 'en', 1, 'https://ror.org/05vp7sn46 Shiminkatsudou Information Center'),
(44560, 'https://ror.org/03vn74a89', 'en', 1, 'https://ror.org/03vn74a89 Takarazuka University of Medical and Health Care 宝塚医療大学'),
(44561, 'https://ror.org/03jgff472', 'en', 1, 'https://ror.org/03jgff472 Takayama College of Car Technology 高山自動車短期大学'),
(44562, 'https://ror.org/016qc0h19', 'en', 1, 'https://ror.org/016qc0h19 Shinshu Honan Junior College 信州豊南短期大学'),
(44563, 'https://ror.org/02zs45744', 'no_lang_code', 1, 'https://ror.org/02zs45744 Takenaka (Japan) 株式会社竹中工務店'),
(44564, 'https://ror.org/04a2v9v66', 'en', 1, 'https://ror.org/04a2v9v66 Osaka Municipal Museum of Oriental Ceramics'),
(44565, 'https://ror.org/04a58ge54', 'no_lang_code', 1, 'https://ror.org/04a58ge54 Yokosuka City Museum 横須賀市自然・人文博物館'),
(44566, 'https://ror.org/01vex9c14', 'en', 1, 'https://ror.org/01vex9c14 Tobu College of Medical Technology 東武医学技術専門学校'),
(44567, 'https://ror.org/03pr7r585', 'en', 1, 'https://ror.org/03pr7r585 Disaster Reduction and Human Renovation Institution 阪神・淡路大震災記念 人と防災未来センター'),
(44568, 'https://ror.org/03hacry86', 'en', 1, 'https://ror.org/03hacry86 Tokyo Metropolitan Saginomiya High School 東京都立鷺宮高等学校'),
(44569, 'https://ror.org/04eynnv65', 'en', 1, 'https://ror.org/04eynnv65 Tochigi Prefectural Utsunomiya Commercial and Business High School 栃木県立宇都宮商業高等学校'),
(44570, 'https://ror.org/01etv2861', 'no_lang_code', 1, 'https://ror.org/01etv2861 Tokyo Metropolitan Musashigaoka High School 東京都立武蔵丘高等学校'),
(44571, 'https://ror.org/04p1vet95', 'en', 1, 'https://ror.org/04p1vet95 Institute for Future Engineering 未来工学研究所'),
(44572, 'https://ror.org/01ar5kd02', 'en', 1, 'https://ror.org/01ar5kd02 Tochigi Prefectural Museum of Fine Arts 栃木県立美術館'),
(44573, 'https://ror.org/05rdhpk34', 'en', 1, 'https://ror.org/05rdhpk34 Tokyo Hygiene Gakuen College 東京衛生学園専門学校'),
(44574, 'https://ror.org/05s0mht63', 'en', 1, 'https://ror.org/05s0mht63 Tokyo Metropolitan Board of Education 東京都教育事務所'),
(44575, 'https://ror.org/043hk8147', 'en', 1, 'https://ror.org/043hk8147 Tokyo Metropolitan Police Department 警視庁'),
(44576, 'https://ror.org/04vqpq732', 'en', 1, 'https://ror.org/04vqpq732 Institute for Research on Household Economics 家計経済研究所'),
(44577, 'https://ror.org/01z3sws73', 'no_lang_code', 1, 'https://ror.org/01z3sws73 Shinjuku Yamabuki High School 東京都立新宿山吹高等学校'),
(44578, 'https://ror.org/01vwnst03', 'en', 1, 'https://ror.org/01vwnst03 Toyama Prefectural Education Center 富山県総合教育センター'),
(44579, 'https://ror.org/00zbfm731', 'en', 1, 'https://ror.org/00zbfm731 Tokyo College of Transport Studies 東京交通短期大学'),
(44580, 'https://ror.org/02gbdr274', 'en', 1, 'https://ror.org/02gbdr274 Tateyama Elementary School 立山小学校'),
(44581, 'https://ror.org/01r5php15', 'en', 1, 'https://ror.org/01r5php15 The Institute of Buraku Problem 部落問題研究所'),
(44582, 'https://ror.org/02cac9f06', 'en', 1, 'https://ror.org/02cac9f06 Tokyo Metropolitan Musashi High School 東京都立武蔵高等学校'),
(44583, 'https://ror.org/01n0ntp67', 'en', 1, 'https://ror.org/01n0ntp67 Toyo College of Food Technology 東洋食品工業短期大学'),
(44584, 'https://ror.org/002k06d85', 'en', 1, 'https://ror.org/002k06d85 National Institute of Technology, Tokyo College 国立東京工業高等専門学校'),
(44585, 'https://ror.org/03e27sm64', 'en', 1, 'https://ror.org/03e27sm64 Tokyo Metropolitan Kuramae Technical High School 東京都立蔵前工業高等学校'),
(44586, 'https://ror.org/03ygwqt20', 'en', 1, 'https://ror.org/03ygwqt20 Toita Women''s College 戸板女子短期大学'),
(44587, 'https://ror.org/050hkx325', 'en', 1, 'https://ror.org/050hkx325 Tokyo National Museum 東京国立博物館'),
(44588, 'https://ror.org/05d78p162', 'en', 1, 'https://ror.org/05d78p162 Foundation of Global Life Learning Center 一般財団法人 生涯学習開発財団 事務局'),
(44589, 'https://ror.org/03mrh9y60', 'en', 1, 'https://ror.org/03mrh9y60 Japan Snake Institute 日本スネーク研究所'),
(44590, 'https://ror.org/01067b760', 'en', 1, 'https://ror.org/01067b760 Tokyo Management College 東京経営短期大学'),
(44591, 'https://ror.org/04wfh0972', 'en', 1, 'https://ror.org/04wfh0972 Tokyo Rissho Junior College 東京立正短期大学'),
(44592, 'https://ror.org/04mhtp952', 'en', 1, 'https://ror.org/04mhtp952 Japanese Red Cross Akita College of Nursing 日本赤十字秋田看護大学'),
(44593, 'https://ror.org/04fr3ga66', 'en', 1, 'https://ror.org/04fr3ga66 Japanese Red Cross Hiroshima College of Nursing 日本赤十字広島看護大学'),
(44594, 'https://ror.org/00z7gjv76', 'en', 1, 'https://ror.org/00z7gjv76 Toyota Transportation Research Institute 公益財団法人豊田都市交通研究所'),
(44595, 'https://ror.org/02faq1w63', 'en', 1, 'https://ror.org/02faq1w63 Tokyo Metropolitan Nogyo High School'),
(44596, 'https://ror.org/05fkrca82', 'en', 1, 'https://ror.org/05fkrca82 Gifu Prefectural Toki Commercial High School 岐阜県立土岐商業高等学校'),
(44597, 'https://ror.org/04y4mb158', 'en', 1, 'https://ror.org/04y4mb158 Tokyo Union Theological Seminary 東京神学大学'),
(44598, 'https://ror.org/00ge9bp23', 'en', 1, 'https://ror.org/00ge9bp23 Tokyo Metropolitan Agriculture and Forestry Research Center 東京都農林総合研究センター'),
(44599, 'https://ror.org/01gjxh181', 'en', 1, 'https://ror.org/01gjxh181 Tsu City College 三重短期大学'),
(44600, 'https://ror.org/01k7bd990', 'en', 1, 'https://ror.org/01k7bd990 Nishigaoka Elementary School 津市立西が丘小学校'),
(44601, 'https://ror.org/02rhb5h29', 'no_lang_code', 1, 'https://ror.org/02rhb5h29 Tokyo Metropolitan Archives 東京都公文書館'),
(44602, 'https://ror.org/02vrrwa37', 'en', 1, 'https://ror.org/02vrrwa37 Middle Eastern Culture Center in Japan 日本では中近東文化センター'),
(44603, 'https://ror.org/0567nxn66', 'no_lang_code', 1, 'https://ror.org/0567nxn66 Toyama Prefectural Takaoka High School 富山県立高岡高等学校'),
(44604, 'https://ror.org/04fs8gp50', 'en', 1, 'https://ror.org/04fs8gp50 Mitsubishi Economic Research Institute 三菱経済研究所'),
(44605, 'https://ror.org/00v53am25', 'en', 1, 'https://ror.org/00v53am25 Tokyo Metropolitan Bunkyo High School 東京都立文京高等学校'),
(44606, 'https://ror.org/03vrane61', 'no_lang_code', 1, 'https://ror.org/03vrane61 Museum of Modern Art Kamakura and Hayama 神奈川県立近代美術館葉山'),
(44607, 'https://ror.org/057kfzw97', 'no_lang_code', 1, 'https://ror.org/057kfzw97 Tottori College 鳥取短期大学'),
(44608, 'https://ror.org/011wm9695', 'en', 1, 'https://ror.org/011wm9695 Tottori Prefectural Museum 鳥取県立博物館'),
(44609, 'https://ror.org/01dwwtp07', 'en', 1, 'https://ror.org/01dwwtp07 Tokyo Metropolitan East High School 東京都立東高等学校'),
(44610, 'https://ror.org/008f7aw41', 'en', 1, 'https://ror.org/008f7aw41 Paleological Association of Japan 公益財団法人古代学協会'),
(44611, 'https://ror.org/05qszhe91', 'en', 1, 'https://ror.org/05qszhe91 Museum of Nature and Human Activities Hyogo 自然の博物館と人間活動兵庫'),
(44612, 'https://ror.org/05sb2p455', 'en', 1, 'https://ror.org/05sb2p455 Tottori Prefectural Chizu Agriculture and Forestry High School 鳥取県立智頭農林高等学校'),
(44613, 'https://ror.org/037nf4x66', 'en', 1, 'https://ror.org/037nf4x66 Tokushima College of Technology 徳島工業短期大学'),
(44614, 'https://ror.org/04k7d8776', 'en', 1, 'https://ror.org/04k7d8776 Tsukuba Municipal Azuma Elementary School つくば市立吾妻小学校'),
(44615, 'https://ror.org/00ttq5z33', 'en', 1, 'https://ror.org/00ttq5z33 Toyama Industrial Technology Center 富山県工業技術センター'),
(44616, 'https://ror.org/04cnkg888', 'en', 1, 'https://ror.org/04cnkg888 Museum of Japanese Art Yamato Bunkakan 大和文華館'),
(44617, 'https://ror.org/00ftn9c34', 'en', 1, 'https://ror.org/00ftn9c34 Toyama Prefectural Toyama Minami High School 富山県立富山南高等学校'),
(44618, 'https://ror.org/00th7y414', 'en', 1, 'https://ror.org/00th7y414 Tokushima Prefectural Museum 徳島県立博物館'),
(44619, 'https://ror.org/03ym6nw09', 'en', 1, 'https://ror.org/03ym6nw09 Tsuruoka Technical High School 山形県立鶴岡工業高等学校'),
(44620, 'https://ror.org/01ffrrm18', 'en', 1, 'https://ror.org/01ffrrm18 Tokushima Prefectural Police 徳島県警察本部'),
(44621, 'https://ror.org/01w6k3w63', 'no_lang_code', 1, 'https://ror.org/01w6k3w63 Toyama College 富山短期大学'),
(44622, 'https://ror.org/00pjwdc92', 'en', 1, 'https://ror.org/00pjwdc92 National Institute of Technology, Ube College 宇部工業高等専門学校'),
(44623, 'https://ror.org/00d68k463', 'en', 1, 'https://ror.org/00d68k463 Toyama Prefectural Institute for Pharmaceutical Research 富山県薬事総合研究開発センター'),
(44624, 'https://ror.org/00sc3fz23', 'en', 1, 'https://ror.org/00sc3fz23 Tokushima Prefectural General Education Center 徳島県立総合教育センター'),
(44625, 'https://ror.org/019tpnt53', 'en', 1, 'https://ror.org/019tpnt53 National Museum of Art Osaka 国立国際美術館'),
(44626, 'https://ror.org/02abk3844', 'en', 1, 'https://ror.org/02abk3844 Ueda Womens Junior College 上田女子短期大学'),
(44627, 'https://ror.org/027906p22', 'en', 1, 'https://ror.org/027906p22 Toyama Prefectural Namerikawa High School 富山県立滑川高等学校'),
(44628, 'https://ror.org/02vft6f63', 'en', 1, 'https://ror.org/02vft6f63 Tokyo Metropolitan Hiroo High School 東京都立広尾高等学校'),
(44629, 'https://ror.org/04hr38d13', 'en', 1, 'https://ror.org/04hr38d13 Toyama Prefectural Sakurai High School 富山県立桜井高等学校'),
(44630, 'https://ror.org/046jx2h22', 'en', 1, 'https://ror.org/046jx2h22 National Institute of Technology, Tokuyama College 徳山工業高等専門学校'),
(44631, 'https://ror.org/03ez0jn38', 'en', 1, 'https://ror.org/03ez0jn38 National Museum of Modern Art Kyoto 京都国立近代美術館'),
(44632, 'https://ror.org/05sa4da38', 'en', 1, 'https://ror.org/05sa4da38 Tokyo Metropolitan Industrial Technology Research Institute 東京都立産業技術研究センター'),
(44633, 'https://ror.org/05j53fm28', 'en', 1, 'https://ror.org/05j53fm28 Tokyo Sport Benefits Corporation 公益財団法人 東京都スポーツ文化事業団'),
(44634, 'https://ror.org/02g6as782', 'en', 1, 'https://ror.org/02g6as782 National Museum of Modern Art Tokyo 東京国立近代美術館'),
(44635, 'https://ror.org/03ys00e11', 'en', 1, 'https://ror.org/03ys00e11 Tokyo High School 東京高等学校'),
(44636, 'https://ror.org/012spbn33', 'en', 1, 'https://ror.org/012spbn33 National Museum of Western Art 国立西洋美術館'),
(44637, 'https://ror.org/05n3bsa65', 'en', 1, 'https://ror.org/05n3bsa65 Tokyo Metropolitan Koganei Industrial High School 東京都立小金井工業高等学校'),
(44638, 'https://ror.org/02vg5vv12', 'en', 1, 'https://ror.org/02vg5vv12 Noguchi Institute 財団法人野口研究所'),
(44639, 'https://ror.org/01f9db456', 'en', 1, 'https://ror.org/01f9db456 Nitobe Bunka College 新渡戸文化短期大学'),
(44640, 'https://ror.org/01v7eqs04', 'en', 1, 'https://ror.org/01v7eqs04 Kyoto Prefecture Archaeological Research Center 京都府埋蔵文化財調査研究センター'),
(44641, 'https://ror.org/048a7w867', 'en', 1, 'https://ror.org/048a7w867 Tokyo Metropolitan Komaba High School 東京都立駒場高等学校'),
(44642, 'https://ror.org/03jjvt296', 'en', 1, 'https://ror.org/03jjvt296 Wakayama Prefectural Board of Education 和歌山県教育委員会'),
(44643, 'https://ror.org/04bq84m08', 'en', 1, 'https://ror.org/04bq84m08 Foundation Wakayama Prefecture Cultural Property Center 公益財団法人和歌山県文化財センター'),
(44644, 'https://ror.org/04jzeda60', 'en', 1, 'https://ror.org/04jzeda60 Wakayama Prefectural Educational Center 和歌山県教育センター学びの丘'),
(44645, 'https://ror.org/04abdh096', 'en', 1, 'https://ror.org/04abdh096 Research Institutue of Evolutionary Biology 進化生物学研究所'),
(44646, 'https://ror.org/045mrxn03', 'en', 1, 'https://ror.org/045mrxn03 Wakayama Shin-Ai Women''s Junior College 和歌山信愛女子短期大学'),
(44647, 'https://ror.org/03dywws23', 'en', 1, 'https://ror.org/03dywws23 Wakayama Prefectural Tanabe High School 和歌山県立 田辺高等学校'),
(44648, 'https://ror.org/040vema78', 'en', 1, 'https://ror.org/040vema78 Japan Society of Chemotherapy 化学療法学会'),
(44649, 'https://ror.org/03mfwnv44', 'no_lang_code', 1, 'https://ror.org/03mfwnv44 Yamamura Gakuen College 山村学園短期大学'),
(44650, 'https://ror.org/03w09vt43', 'en', 1, 'https://ror.org/03w09vt43 Minabe Senior High School 和歌山県立南部高等学校'),
(44651, 'https://ror.org/00gnxy932', 'en', 1, 'https://ror.org/00gnxy932 Tohoku Bunkyo University 東北文教大学'),
(44652, 'https://ror.org/03111mv26', 'en', 1, 'https://ror.org/03111mv26 Yamanashi Prefecture Forestry and Forest Products Research Institute 山梨県森林総合研究所 森林保護科'),
(44653, 'https://ror.org/04cqva373', 'en', 1, 'https://ror.org/04cqva373 Yamagata Prefectural Sagae High School 山形県立寒河江高等学校'),
(44654, 'https://ror.org/05j02vt11', 'en', 1, 'https://ror.org/05j02vt11 Yamagata Prefectural Mamurogawa High School 山形県立新庄神室産業高等学校真室川校'),
(44655, 'https://ror.org/02ppzn363', 'no_lang_code', 1, 'https://ror.org/02ppzn363 Yamagata Prefectural Police 山形県警察'),
(44656, 'https://ror.org/022tqjv17', 'en', 1, 'https://ror.org/022tqjv17 University of Yamanashi Hospital 山梨大学医学部附属病院'),
(44657, 'https://ror.org/002bhvh12', 'en', 1, 'https://ror.org/002bhvh12 Yokohama College of Art and Design 横浜美術短期大学'),
(44658, 'https://ror.org/03zet0z83', 'en', 1, 'https://ror.org/03zet0z83 Norin High School 山梨県立農林高等学校'),
(44659, 'https://ror.org/02j2fpc69', 'en', 1, 'https://ror.org/02j2fpc69 Yamanashi Prefectural School for the Visually Impaired 山梨県立盲学校'),
(44660, 'https://ror.org/039sp3459', 'en', 1, 'https://ror.org/039sp3459 Yamaguchi Junior College 山口短期大学'),
(44661, 'https://ror.org/04rqf3930', 'en', 1, 'https://ror.org/04rqf3930 Yamanashi Prefectural Education Center 山梨県総合教育センター'),
(44662, 'https://ror.org/02031rv53', 'en', 1, 'https://ror.org/02031rv53 National Institute of Technology, Yonago College 国立米子工業高等専門学校'),
(44663, 'https://ror.org/003rkqt50', 'en', 1, 'https://ror.org/003rkqt50 Yamagata Prefectural Education Institute 山形県教育センター'),
(44664, 'https://ror.org/01zccfn45', 'en', 1, 'https://ror.org/01zccfn45 Yamaguchi Prefectural Asa High School 山口県立厚狭高等学校'),
(44665, 'https://ror.org/010gkrj91', 'en', 1, 'https://ror.org/010gkrj91 Yamanashi Prefectural Fisheries Technology Center 水産技術センター'),
(44666, 'https://ror.org/04tqxjj42', 'en', 1, 'https://ror.org/04tqxjj42 Tottori Prefectural Yonago High School 鳥取県立米子高等学校'),
(44667, 'https://ror.org/02et0jb83', 'en', 1, 'https://ror.org/02et0jb83 Yamanashi Prefectural Museum 山梨県立博物館'),
(44668, 'https://ror.org/03zn2pc63', 'en', 1, 'https://ror.org/03zn2pc63 Yamanashi Prefectural Museum of Archaeology 山梨県立考古博物館'),
(44669, 'https://ror.org/05bg37315', 'en', 1, 'https://ror.org/05bg37315 Yamaguchi Prefecture Archives 山口県文書館'),
(44670, 'https://ror.org/05w1vm756', 'en', 1, 'https://ror.org/05w1vm756 Yonezawa Chuo Senior High School 米沢中央高等学校'),
(44671, 'https://ror.org/03smpvb86', 'en', 1, 'https://ror.org/03smpvb86 Yamaguchi Education Support Center やまぐち総合教育支援センター'),
(44672, 'https://ror.org/0332cpc55', 'en', 1, 'https://ror.org/0332cpc55 Yonezawa Technical High School 米沢工業高等学校'),
(44673, 'https://ror.org/037bvk594', 'en', 1, 'https://ror.org/037bvk594 Yonezawa Women''s Junior College 山形県立米沢女子短期大学'),
(44674, 'https://ror.org/00wwj8r66', 'en', 1, 'https://ror.org/00wwj8r66 Yamato University 大和大学'),
(44675, 'https://ror.org/00avape27', 'en', 1, 'https://ror.org/00avape27 Yoshida Biological Laboratry 吉田生物学研究所'),
(44676, 'https://ror.org/008mems69', 'en', 1, 'https://ror.org/008mems69 National Institute of Technology, Yuge College 弓削商船高等専門学校'),
(44677, 'https://ror.org/01b7rff52', 'en', 1, 'https://ror.org/01b7rff52 Yamaguchi Prefectural Shimonoseki Industrial School 山口県立下関工業高等学校'),
(44678, 'https://ror.org/03zyyep49', 'en', 1, 'https://ror.org/03zyyep49 Kanagawa Prefectural Zushi High School 神奈川県立逗子高等学校'),
(44679, 'https://ror.org/02qh3e530', 'en', 1, 'https://ror.org/02qh3e530 Hokkaido Pharmaceutical University 北海道薬科大学'),
(44680, 'https://ror.org/03e9gte70', 'de', 1, 'https://ror.org/03e9gte70 Wikimedia Deutschland'),
(44681, 'https://ror.org/02t2b1f58', 'no_lang_code', 1, 'https://ror.org/02t2b1f58 Wikimedia Israel ויקימדיה ישראל'),
(44682, 'https://ror.org/026ghdj11', 'en', 1, 'https://ror.org/026ghdj11 Wikimedia Belgium Wikimédia Belgique'),
(44683, 'https://ror.org/03kky3p48', 'en', 1, 'https://ror.org/03kky3p48 Wikimedia Argentina'),
(44684, 'https://ror.org/01atqs537', 'no_lang_code', 1, 'https://ror.org/01atqs537 Wikimedia Ukraine Вікімедіа Україна'),
(44685, 'https://ror.org/00xzhyb45', 'en', 1, 'https://ror.org/00xzhyb45 Wikimedia Australia'),
(44686, 'https://ror.org/05bendy20', 'en', 1, 'https://ror.org/05bendy20 Wikimedia Österreich'),
(44687, 'https://ror.org/05k27r045', 'no_lang_code', 1, 'https://ror.org/05k27r045 Wikimedia Hong Kong 香港維基媒體協會'),
(44688, 'https://ror.org/0535mbq53', 'no_lang_code', 1, 'https://ror.org/0535mbq53 Wikimedia Bangladesh উইকিমিডিয়া বাংলাদেশ'),
(44689, 'https://ror.org/03xg0ta66', 'en', 1, 'https://ror.org/03xg0ta66 Wikimedia UK'),
(44690, 'https://ror.org/021pdqz74', 'fr', 1, 'https://ror.org/021pdqz74 Wikimédia France'),
(44691, 'https://ror.org/00c3ma888', 'pl', 1, 'https://ror.org/00c3ma888 Wikimedia Polska'),
(44692, 'https://ror.org/004dpkc57', 'es', 1, 'https://ror.org/004dpkc57 Wikimedia Chile'),
(44693, 'https://ror.org/013dk1391', 'no_lang_code', 1, 'https://ror.org/013dk1391 Wikimedia District of Columbia'),
(44694, 'https://ror.org/04tg4wv11', 'pt', 1, 'https://ror.org/04tg4wv11 Wikimedia Portugal'),
(44695, 'https://ror.org/058a1xy10', 'da', 1, 'https://ror.org/058a1xy10 Wikimedia Danmark'),
(44696, 'https://ror.org/04cqvnd54', 'no_lang_code', 1, 'https://ror.org/04cqvnd54 Wikimedia Taiwan 中華民國維基媒體協會'),
(44697, 'https://ror.org/05km15e85', 'et', 1, 'https://ror.org/05km15e85 Wikimedia Eesti'),
(44698, 'https://ror.org/05qv2mm32', 'en', 1, 'https://ror.org/05qv2mm32 Wikimedia Macedonia Викимедија Македонија'),
(44699, 'https://ror.org/02te08018', 'no_lang_code', 1, 'https://ror.org/02te08018 Wikimedia India'),
(44700, 'https://ror.org/005263a87', 'id', 1, 'https://ror.org/005263a87 Wikimedia Indonesia'),
(44701, 'https://ror.org/05g7tqd64', 'no_lang_code', 1, 'https://ror.org/05g7tqd64 Wikimedia Hungary Wikimédia Magyarország Egyesület'),
(44702, 'https://ror.org/014mq3e63', 'es', 1, 'https://ror.org/014mq3e63 Wikimedia México'),
(44703, 'https://ror.org/00qvkvn65', 'en', 1, 'https://ror.org/00qvkvn65 Wikimedia Philippines'),
(44704, 'https://ror.org/04tdwrj58', 'it', 1, 'https://ror.org/04tdwrj58 Wikimedia Italia'),
(44705, 'https://ror.org/01b7dk816', 'no_lang_code', 1, 'https://ror.org/01b7dk816 Wikimedia Serbia Викимедија Србије'),
(44706, 'https://ror.org/05kr4wg26', 'de', 1, 'https://ror.org/05kr4wg26 Wikimedia CH'),
(44707, 'https://ror.org/02v5zjv47', 'sv', 1, 'https://ror.org/02v5zjv47 Wikimedia Sverige'),
(44708, 'https://ror.org/056b3q733', 'no_lang_code', 1, 'https://ror.org/056b3q733 Wikimedia ZA'),
(44709, 'https://ror.org/05qzw2346', 'fr', 1, 'https://ror.org/05qzw2346 Wikimedia Canada'),
(44710, 'https://ror.org/021367g17', 'cs', 1, 'https://ror.org/021367g17 Wikimedia Czech Republic'),
(44711, 'https://ror.org/01c7g8398', 'fi', 1, 'https://ror.org/01c7g8398 Wikimedia Suomi'),
(44712, 'https://ror.org/04bh4bw24', 'es', 1, 'https://ror.org/04bh4bw24 Wikimedia Uruguay'),
(44713, 'https://ror.org/05cxtem33', 'es', 1, 'https://ror.org/05cxtem33 Wikimedia Venezuela'),
(44714, 'https://ror.org/010gr2865', 'en', 1, 'https://ror.org/010gr2865 Wikimedia New York City'),
(44715, 'https://ror.org/02cm5rg43', 'no_lang_code', 1, 'https://ror.org/02cm5rg43 Wikimedia Armenia Վիքիմեդիա Հայաստան'),
(44716, 'https://ror.org/000nfen14', 'en', 1, 'https://ror.org/000nfen14 Shizuoka Prefectural Numazu Technical High School 静岡県立沼津工業高等学校'),
(44717, 'https://ror.org/05cttts62', 'no_lang_code', 1, 'https://ror.org/05cttts62 Tokugawa Reimeikai Foundation 徳川黎明会'),
(44718, 'https://ror.org/0441wpd13', 'en', 1, 'https://ror.org/0441wpd13 Tokushima Municipal High School 徳島市立高等学校'),
(44719, 'https://ror.org/03t4z6b53', 'en', 1, 'https://ror.org/03t4z6b53 Oita Prefectural Oita Technical High School 大分県立大分工業高等学校'),
(44720, 'https://ror.org/05jreb977', 'en', 1, 'https://ror.org/05jreb977 Shikoku Medical Center for Children and Adults 四国こどもとおとなの医療センター'),
(44721, 'https://ror.org/00q15w993', 'en', 1, 'https://ror.org/00q15w993 Bircham International University'),
(44722, 'https://ror.org/03vs1ak92', 'en', 1, 'https://ror.org/03vs1ak92 ABM University College'),
(44723, 'https://ror.org/00nfn7821', 'en', 1, 'https://ror.org/00nfn7821 Botho University'),
(44724, 'https://ror.org/04dqhen73', 'en', 1, 'https://ror.org/04dqhen73 Arab Open University الجامعة العربية المفتوحة'),
(44725, 'https://ror.org/02ktf7592', 'en', 1, 'https://ror.org/02ktf7592 City University College of Science and Technology'),
(44726, 'https://ror.org/02psd9228', 'en', 1, 'https://ror.org/02psd9228 Addis Ababa Science and Technology University የአዲስ አበባ ሳይንስና ቴክኖሎጂ ዩኒቨርስቲ'),
(44727, 'https://ror.org/05kdv3094', 'en', 1, 'https://ror.org/05kdv3094 British Royal University الجامعة الملكية البريطانية'),
(44728, 'https://ror.org/00fbm6g50', 'en', 1, 'https://ror.org/00fbm6g50 Central America Health Sciences University'),
(44729, 'https://ror.org/02nkn4852', 'en', 1, 'https://ror.org/02nkn4852 Asossa University አሶሳ ዩኒቨርሲቲ'),
(44730, 'https://ror.org/011jv2x91', 'en', 1, 'https://ror.org/011jv2x91 Espam Formation University'),
(44731, 'https://ror.org/022kamm22', 'en', 1, 'https://ror.org/022kamm22 Al Mamon University College كلية المأمون الجامعة'),
(44732, 'https://ror.org/02s6pzw53', 'no_lang_code', 1, 'https://ror.org/02s6pzw53 Cubidor (Switzerland)'),
(44733, 'https://ror.org/01ve76a89', 'en', 1, 'https://ror.org/01ve76a89 Middlemore Clinical Trials'),
(44734, 'https://ror.org/02d2pe314', 'en', 1, 'https://ror.org/02d2pe314 Carolus Magnus University'),
(44735, 'https://ror.org/02v3fc375', 'no_lang_code', 1, 'https://ror.org/02v3fc375 Auckland UniServices (New Zealand)'),
(44736, 'https://ror.org/024596r45', 'en', 1, 'https://ror.org/024596r45 Euclid University'),
(44737, 'https://ror.org/040wrjh41', 'en', 1, 'https://ror.org/040wrjh41 Al-Buraimi University College كلية جامعة البريمي'),
(44738, 'https://ror.org/00vja3713', 'fr', 1, 'https://ror.org/00vja3713 Lebanese-French University of Technology and Applied Sciences Université de Technologie et de Sciences Appliquées Libano-Française جامعة التكنولوجيا والعلوم التطبيقية اللبنانية الفرنسية'),
(44739, 'https://ror.org/0192k3w92', 'es', 1, 'https://ror.org/0192k3w92 Centro Universitario Ciudad Vieja'),
(44740, 'https://ror.org/03z1phr67', 'en', 1, 'https://ror.org/03z1phr67 Charisma University'),
(44741, 'https://ror.org/05v7khz67', 'en', 1, 'https://ror.org/05v7khz67 Bakhtar University پوهنتون باختر'),
(44742, 'https://ror.org/04dynqd30', 'en', 1, 'https://ror.org/04dynqd30 Alhamd Islamic University'),
(44743, 'https://ror.org/01erb2j90', 'en', 1, 'https://ror.org/01erb2j90 Baku Business University Bakı Biznes Universiteti Бакинский Университет Бизнеса'),
(44744, 'https://ror.org/03g58rv06', 'en', 1, 'https://ror.org/03g58rv06 Donald Beasley Institute'),
(44745, 'https://ror.org/0472sp635', 'en', 1, 'https://ror.org/0472sp635 Ballsbridge University'),
(44746, 'https://ror.org/04rvh3240', 'en', 1, 'https://ror.org/04rvh3240 Al-Mustafa Open University المصطفی دانشگاه آزاد'),
(44747, 'https://ror.org/005et7b18', 'en', 1, 'https://ror.org/005et7b18 Bamenda University of Science and Technology'),
(44748, 'https://ror.org/01x2j0a42', 'en', 1, 'https://ror.org/01x2j0a42 Huaihua Radio and Television University 怀化广播电视大学'),
(44749, 'https://ror.org/04fkrbf60', 'en', 1, 'https://ror.org/04fkrbf60 Dutch University Institute for Art History Istituto Universitario Olandese di Storia dell’Arte'),
(44750, 'https://ror.org/025a27r74', 'en', 1, 'https://ror.org/025a27r74 Hue University of Agriculture and Forestry Trường Đại học Nông Lâm – Đại học Huế'),
(44751, 'https://ror.org/00b9m5f16', 'en', 1, 'https://ror.org/00b9m5f16 Gaborone University College Of Law and Professional Studies'),
(44752, 'https://ror.org/01jtz8t69', 'en', 1, 'https://ror.org/01jtz8t69 Gemsville Technical University'),
(44753, 'https://ror.org/03hw0dp08', 'en', 1, 'https://ror.org/03hw0dp08 Internacionalni univerzitet Travnik International University of Travnik'),
(44754, 'https://ror.org/054fysp39', 'en', 1, 'https://ror.org/054fysp39 Guangdong Open University 广东开放大学'),
(44755, 'https://ror.org/021817660', 'en', 1, 'https://ror.org/021817660 Iraq University College دانشگاه کالج عراق'),
(44756, 'https://ror.org/0427t6n75', 'en', 1, 'https://ror.org/0427t6n75 Ittihad Private University جامعة الاتحاد الخاصة'),
(44757, 'https://ror.org/057cchs06', 'en', 1, 'https://ror.org/057cchs06 Isles International University Isles Ollscoil Idirnáisiúnta'),
(44758, 'https://ror.org/00tnfjj44', 'pt', 1, 'https://ror.org/00tnfjj44 Universidade Politecnica'),
(44759, 'https://ror.org/02b9zqw68', 'en', 1, 'https://ror.org/02b9zqw68 Bình Dương University Đại học Bình Dương'),
(44760, 'https://ror.org/00x1fdr51', 'no_lang_code', 1, 'https://ror.org/00x1fdr51 Rafik Hariri University مؤسسة رفيق الحريري'),
(44761, 'https://ror.org/058np3c43', 'en', 1, 'https://ror.org/058np3c43 Islamic Azad University Ardabil دانشگاه آزاد اسلامی واحد اردبیل'),
(44762, 'https://ror.org/02r00ef35', 'en', 1, 'https://ror.org/02r00ef35 Jewish University in Moscow Высшая гуманитарная школа имени С. Дубнова'),
(44763, 'https://ror.org/03cxjvr57', 'en', 1, 'https://ror.org/03cxjvr57 كلية الجبيل الجامعية Jubail University College'),
(44764, 'https://ror.org/01q7qty61', 'en', 1, 'https://ror.org/01q7qty61 Islamic Azad University Bandar Abbas ساختمان ادارى دانشگاه آزاد اسلامی بندرعباس'),
(44765, 'https://ror.org/02dezs485', 'en', 1, 'https://ror.org/02dezs485 Trường Đại học Hải Dương University of Hai Duong'),
(44766, 'https://ror.org/00ejh1102', 'en', 1, 'https://ror.org/00ejh1102 Islamic Azad University, Boukan دانشگاه آزاد اسلامی واحد بوکان'),
(44767, 'https://ror.org/01b7ggh82', 'en', 1, 'https://ror.org/01b7ggh82 Kolej Universiti Islam Melaka University College of Islam Melaka'),
(44768, 'https://ror.org/01bzz5b22', 'en', 1, 'https://ror.org/01bzz5b22 Islamic Azad University Dehaghan دانشگاه آزاد دهاقان اسلامی'),
(44769, 'https://ror.org/00pj60478', 'en', 1, 'https://ror.org/00pj60478 Duraspace'),
(44770, 'https://ror.org/030de3d66', 'en', 1, 'https://ror.org/030de3d66 Merrell University of Beauty Arts and Science'),
(44771, 'https://ror.org/03rn1m191', 'en', 1, 'https://ror.org/03rn1m191 Mid-Continent University'),
(44772, 'https://ror.org/01v4fge94', 'no_lang_code', 1, 'https://ror.org/01v4fge94 Yamagata Prefectural Yonezawa Kojokan High School 山形県立米沢興譲館高等学校'),
(44773, 'https://ror.org/01157qb85', 'fr', 1, 'https://ror.org/01157qb85 Groupe AFI'),
(44774, 'https://ror.org/04mv68k05', 'en', 1, 'https://ror.org/04mv68k05 Karelian State Pedagogical Academy Карельская государственная педагогическая академия'),
(44775, 'https://ror.org/00wws3648', 'en', 1, 'https://ror.org/00wws3648 International Culture University'),
(44776, 'https://ror.org/057f4mk30', 'en', 1, 'https://ror.org/057f4mk30 Islamic Azad University Janah اسلامی یانا دانشگاه آزاد'),
(44777, 'https://ror.org/05ge5q197', 'en', 1, 'https://ror.org/05ge5q197 International East-European University Международный Восточно-Европейский университет'),
(44778, 'https://ror.org/01g3dya06', 'en', 1, 'https://ror.org/01g3dya06 Lancaster University Ghana'),
(44779, 'https://ror.org/02ytn4d59', 'en', 1, 'https://ror.org/02ytn4d59 Islamic Azad University Kazeron دانشگاه آزاد اسلامی، کازرون'),
(44780, 'https://ror.org/05s3gkw93', 'en', 1, 'https://ror.org/05s3gkw93 International University for Graduate Studies'),
(44781, 'https://ror.org/00eykd632', 'en', 1, 'https://ror.org/00eykd632 International University of Fundamental Studies Международный Университет Фундаментального Обучения'),
(44782, 'https://ror.org/04q7e9e16', 'en', 1, 'https://ror.org/04q7e9e16 Islamic Azad University Maybod دانشگاه آزاد اسلامی واحد میبد یزد'),
(44783, 'https://ror.org/00z0c0y28', 'en', 1, 'https://ror.org/00z0c0y28 Islamic Azad University Mehriz دانشگاه آزاد اسلامی واحد مهریز'),
(44784, 'https://ror.org/01a3xr262', 'en', 1, 'https://ror.org/01a3xr262 Islamic Azad University Mobarakeh دانشگاه آزاد اسلامی واحد مبارکه'),
(44785, 'https://ror.org/025gshh98', 'en', 1, 'https://ror.org/025gshh98 NTI University'),
(44786, 'https://ror.org/051t3nd40', 'en', 1, 'https://ror.org/051t3nd40 Islamic Azad University Bostanabad دانشگاه آزاد اسلامی، بستان آباد'),
(44787, 'https://ror.org/04tc04306', 'en', 1, 'https://ror.org/04tc04306 Islamic Azad University Quchan دانشگاه آزاد اسلامی واحد قوچان'),
(44788, 'https://ror.org/04gp75d48', 'en', 1, 'https://ror.org/04gp75d48 Nawroz University جامعة نوروز زانکۆی نەورۆز'),
(44789, 'https://ror.org/05qgm9a33', 'en', 1, 'https://ror.org/05qgm9a33 New World University'),
(44790, 'https://ror.org/03t25y916', 'en', 1, 'https://ror.org/03t25y916 Open International University for Alternative Medicines'),
(44791, 'https://ror.org/01szshg60', 'en', 1, 'https://ror.org/01szshg60 Proactive Molecular Research'),
(44792, 'https://ror.org/02zq8hg49', 'en', 1, 'https://ror.org/02zq8hg49 Busan Women''s College 부산여자대학교'),
(44793, 'https://ror.org/012jgbk51', 'en', 1, 'https://ror.org/012jgbk51 Oriental University Восточный университет'),
(44794, 'https://ror.org/02wenm763', 'en', 1, 'https://ror.org/02wenm763 Islamic Azad University Shirvan Branch دانشگاه آزاد اسلامی واحد شیروان'),
(44795, 'https://ror.org/00eaebe27', 'en', 1, 'https://ror.org/00eaebe27 Islamic Azad University Medical Branch of Tehran دانشگاه آزاد اسلامی واحد پزشکی تهران'),
(44796, 'https://ror.org/00h4cmb88', 'en', 1, 'https://ror.org/00h4cmb88 New Covenant International'),
(44797, 'https://ror.org/01t11z141', 'no_lang_code', 1, 'https://ror.org/01t11z141 Quigley and Watts (New Zealand)'),
(44798, 'https://ror.org/02brczk14', 'en', 1, 'https://ror.org/02brczk14 Orkhon University'),
(44799, 'https://ror.org/009e9eq52', 'en', 1, 'https://ror.org/009e9eq52 Newcastle University Medicine Malaysia'),
(44800, 'https://ror.org/02nd88213', 'en', 1, 'https://ror.org/02nd88213 Raffles University Iskandar'),
(44801, 'https://ror.org/02x44xg10', 'no_lang_code', 1, 'https://ror.org/02x44xg10 Ragheb Esfahani Institute موسسه آموزش عالی راغب اصفهانی'),
(44802, 'https://ror.org/01px8ca57', 'en', 1, 'https://ror.org/01px8ca57 Islamic Azad University of Varamin دانشگاه آزاد اسلامی واحد ورامین'),
(44803, 'https://ror.org/04f4hdq71', 'en', 1, 'https://ror.org/04f4hdq71 Pan African Christian University College'),
(44804, 'https://ror.org/02552gk22', 'en', 1, 'https://ror.org/02552gk22 Islamic University of Rotterdam Islamitische Universiteit Rotterdam'),
(44805, 'https://ror.org/02evj4e11', 'en', 1, 'https://ror.org/02evj4e11 Universal Technical Institute of Illinois'),
(44806, 'https://ror.org/00f6qhc93', 'en', 1, 'https://ror.org/00f6qhc93 Universal Technical Institute Dallas-Fort Worth'),
(44807, 'https://ror.org/04cnffe38', 'en', 1, 'https://ror.org/04cnffe38 Pioneer International University'),
(44808, 'https://ror.org/03zta4r50', 'en', 1, 'https://ror.org/03zta4r50 Bangladesh University বাংলাদেশ বিশ্ববিদ্যালয়'),
(44809, 'https://ror.org/01rfr0p20', 'en', 1, 'https://ror.org/01rfr0p20 RKDF University'),
(44810, 'https://ror.org/01x6c3x12', 'en', 1, 'https://ror.org/01x6c3x12 Universal Therapeutic Massage Institute'),
(44811, 'https://ror.org/010m5yq44', 'no_lang_code', 1, 'https://ror.org/010m5yq44 Planwel'),
(44812, 'https://ror.org/03n7xzj51', 'en', 1, 'https://ror.org/03n7xzj51 Shridhar University'),
(44813, 'https://ror.org/040wknf84', 'en', 1, 'https://ror.org/040wknf84 Technological University Kyaing Tong နည်းပညာတက္ကသိုလ်(ကျိုင်းတုံ)'),
(44814, 'https://ror.org/04k5dj193', 'en', 1, 'https://ror.org/04k5dj193 Russian State Geological Prospecting University Российский государственный геологоразведочный университет'),
(44815, 'https://ror.org/02sw73p72', 'en', 1, 'https://ror.org/02sw73p72 Technological University Mawlamyaing နည်းပညာ တက္ကသိုလ် (မော်လမြိုင်)'),
(44816, 'https://ror.org/0474tc765', 'en', 1, 'https://ror.org/0474tc765 International Prague University'),
(44817, 'https://ror.org/004g74051', 'en', 1, 'https://ror.org/004g74051 Technological University Panglong နည်းပညာတက္ကသိုလ်(ပင်လုံ)'),
(44818, 'https://ror.org/02x2x2y51', 'no_lang_code', 1, 'https://ror.org/02x2x2y51 Smolny University Смольный университет'),
(44819, 'https://ror.org/03wkb8h74', 'es', 1, 'https://ror.org/03wkb8h74 Universidad Albert Einstein'),
(44820, 'https://ror.org/01r4svf88', 'en', 1, 'https://ror.org/01r4svf88 Sadra Institute Of Higher Education دانشگاه صدرا'),
(44821, 'https://ror.org/04w8dt298', 'en', 1, 'https://ror.org/04w8dt298 Quest International University Perak'),
(44822, 'https://ror.org/0467sym95', 'en', 1, 'https://ror.org/0467sym95 Thanlyin Technological University နည်းပညာ တက္ကသိုလ် (သန်လျင်)'),
(44823, 'https://ror.org/01yj78e47', 'en', 1, 'https://ror.org/01yj78e47 Southeast Asia University มหาวิทยาลัยเอเชียตะวันออกเฉียงใต้'),
(44824, 'https://ror.org/028zxrr95', 'en', 1, 'https://ror.org/028zxrr95 Thai Nguyen University of Agriculture and Forestry Trường Đại học Nông lâm, Đại học Thái Nguyên'),
(44825, 'https://ror.org/01cm06k44', 'en', 1, 'https://ror.org/01cm06k44 American University in London'),
(44826, 'https://ror.org/04j0ryd72', 'es', 1, 'https://ror.org/04j0ryd72 Universidad Franciscana de México'),
(44827, 'https://ror.org/01zp49f50', 'en', 1, 'https://ror.org/01zp49f50 Government Sadiq College Women University گورنمنٹ صادق کالج وؤمن یونیورسٹی بہاولپور'),
(44828, 'https://ror.org/04wh4y985', 'en', 1, 'https://ror.org/04wh4y985 St Clements University Higher Education School'),
(44829, 'https://ror.org/00apjgf04', 'en', 1, 'https://ror.org/00apjgf04 Schiller International University'),
(44830, 'https://ror.org/04mtyr016', 'en', 1, 'https://ror.org/04mtyr016 Schiller International University'),
(44831, 'https://ror.org/05mmkpa90', 'en', 1, 'https://ror.org/05mmkpa90 Schiller International University'),
(44832, 'https://ror.org/003tmp461', 'en', 1, 'https://ror.org/003tmp461 Schiller International University'),
(44833, 'https://ror.org/03mf7fw42', 'en', 1, 'https://ror.org/03mf7fw42 Tiffin University Prague'),
(44834, 'https://ror.org/05h3txc33', 'es', 1, 'https://ror.org/05h3txc33 Universidad La Concordia'),
(44835, 'https://ror.org/00jvm9038', 'en', 1, 'https://ror.org/00jvm9038 Tricoci University of Beauty Culture'),
(44836, 'https://ror.org/024wr7x07', 'es', 1, 'https://ror.org/024wr7x07 Universidad Los Leones'),
(44837, 'https://ror.org/03av5bg62', 'en', 1, 'https://ror.org/03av5bg62 Sunrise University'),
(44838, 'https://ror.org/00j1faf79', 'es', 1, 'https://ror.org/00j1faf79 Universidad Cristiana de las Asambleas de Dios'),
(44839, 'https://ror.org/00z50t224', 'en', 1, 'https://ror.org/00z50t224 Trinity School of Medicine'),
(44840, 'https://ror.org/0343mwx11', 'en', 1, 'https://ror.org/0343mwx11 Mexico International University'),
(44841, 'https://ror.org/042xrxv40', 'en', 1, 'https://ror.org/042xrxv40 Turin Polytechnic University Туринский политехнический университет'),
(44842, 'https://ror.org/05akw7810', 'es', 1, 'https://ror.org/05akw7810 Universidad de Lambayeque'),
(44843, 'https://ror.org/01h43q230', 'es', 1, 'https://ror.org/01h43q230 Universidad Modular Abierta'),
(44844, 'https://ror.org/01jmr1174', 'es', 1, 'https://ror.org/01jmr1174 Universidad Tecnológica de El Salvador'),
(44845, 'https://ror.org/04gqc0005', 'en', 1, 'https://ror.org/04gqc0005 Universal Barber College'),
(44846, 'https://ror.org/031yk8297', 'es', 1, 'https://ror.org/031yk8297 Universidad Monseñor Oscar Arnulfo Romero'),
(44847, 'https://ror.org/00yckme16', 'en', 1, 'https://ror.org/00yckme16 Universal College of Healing Arts'),
(44848, 'https://ror.org/01d809t39', 'es', 1, 'https://ror.org/01d809t39 Universidad de Sonsonate'),
(44849, 'https://ror.org/05bh8tx73', 'es', 1, 'https://ror.org/05bh8tx73 Universidad Tecnológica de Nezahualcóyotl'),
(44850, 'https://ror.org/032qr1v70', 'en', 1, 'https://ror.org/032qr1v70 Daejeon Institute of Science and Technology 기술 대전 대학교'),
(44851, 'https://ror.org/01k8z5j70', 'es', 1, 'https://ror.org/01k8z5j70 Universidad Don Bosco'),
(44852, 'https://ror.org/00vfjs247', 'es', 1, 'https://ror.org/00vfjs247 Universidad Nueva San Salvador'),
(44853, 'https://ror.org/05ke4zy29', 'es', 1, 'https://ror.org/05ke4zy29 Universidad Dr. Andrés Bello'),
(44854, 'https://ror.org/02mejn521', 'en', 1, 'https://ror.org/02mejn521 Taft University System'),
(44855, 'https://ror.org/003mv3827', 'es', 1, 'https://ror.org/003mv3827 Universidad Obrera de Mexico'),
(44856, 'https://ror.org/019njds38', 'en', 1, 'https://ror.org/019njds38 Universal Technical Institute'),
(44857, 'https://ror.org/012nfzy71', 'es', 1, 'https://ror.org/012nfzy71 Universidad Panamericana de El Salvador'),
(44858, 'https://ror.org/040gj5g64', 'es', 1, 'https://ror.org/040gj5g64 Universidad Politécnica de El Salvador'),
(44859, 'https://ror.org/03asas176', 'es', 1, 'https://ror.org/03asas176 Universidad Regional Miguel Hidalgo'),
(44860, 'https://ror.org/05hx26488', 'pt', 1, 'https://ror.org/05hx26488 Universidade Lusíada de Angola'),
(44861, 'https://ror.org/038b5pt88', 'pt', 1, 'https://ror.org/038b5pt88 Instituto Superior Politécnico Metropolitano de Angola'),
(44862, 'https://ror.org/0532w7m55', 'es', 1, 'https://ror.org/0532w7m55 Universidad Técnica Latinoamericana'),
(44863, 'https://ror.org/038n8fg68', 'en', 1, 'https://ror.org/038n8fg68 Bule Hora University'),
(44864, 'https://ror.org/044jx8018', 'en', 1, 'https://ror.org/044jx8018 Islamic Azad University of Malard دانشگاه آزاد اسلامي واحد ملارد'),
(44865, 'https://ror.org/04sssnv16', 'en', 1, 'https://ror.org/04sssnv16 Islamic Azad University Pharmaceutical Sciences Branch دانشگاه آزاد اسلامی واحد علوم دارویی'),
(44866, 'https://ror.org/01qskrs45', 'en', 1, 'https://ror.org/01qskrs45 Islamic Azad University of Khomeynishahr دانشگاه آزاد اسلامی واحد خمینی شهر'),
(44867, 'https://ror.org/00sb1nr29', 'en', 1, 'https://ror.org/00sb1nr29 Islamic Azad University North Tehran Branch دانشگاه آزاد اسلامی, واحد تهران شمال'),
(44868, 'https://ror.org/02xc21a77', 'en', 1, 'https://ror.org/02xc21a77 Islamic Azad University South Tehran Branch دانشگاه آزاد اسلامی واحد تهران شمال'),
(44869, 'https://ror.org/05m5wey82', 'en', 1, 'https://ror.org/05m5wey82 Islamic Azad University Dental Branch of Tehran دانشگاه آزاد اسلامی واحد دندانپزشکی تهران'),
(44870, 'https://ror.org/047thv031', 'fr', 1, 'https://ror.org/047thv031 Université Épiscopale d''Haiti'),
(44871, 'https://ror.org/024ntr864', 'fr', 1, 'https://ror.org/024ntr864 Université Euro-Afrique'),
(44872, 'https://ror.org/03jewb194', 'fr', 1, 'https://ror.org/03jewb194 Université Kofi Annan de Guinée'),
(44873, 'https://ror.org/0346q5236', 'fr', 1, 'https://ror.org/0346q5236 Université Shalom de Bunia'),
(44874, 'https://ror.org/05kmekg24', 'en', 1, 'https://ror.org/05kmekg24 Urumqi Vocational University'),
(44875, 'https://ror.org/02x93ka62', 'en', 1, 'https://ror.org/02x93ka62 Trilogi University Universitas Trilogi'),
(44876, 'https://ror.org/01rvqzw67', 'en', 1, 'https://ror.org/01rvqzw67 University of International Business Халықаралық бизнес университеті'),
(44877, 'https://ror.org/01m4mdb95', 'en', 1, 'https://ror.org/01m4mdb95 Uzima University College'),
(44878, 'https://ror.org/002mja273', 'en', 1, 'https://ror.org/002mja273 University of Jazeera'),
(44879, 'https://ror.org/01zxwpb57', 'en', 1, 'https://ror.org/01zxwpb57 Victoria International University'),
(44880, 'https://ror.org/000j1d533', 'fr', 1, 'https://ror.org/000j1d533 Université Amadou Hampaté Ba'),
(44881, 'https://ror.org/024cft222', 'no_lang_code', 1, 'https://ror.org/024cft222 Wellington UniVentures (New Zealand)'),
(44882, 'https://ror.org/0049gd358', 'en', 1, 'https://ror.org/0049gd358 University of Science, Art and Technology'),
(44883, 'https://ror.org/01emdt307', 'fr', 1, 'https://ror.org/01emdt307 Université de Fianarantsoa'),
(44884, 'https://ror.org/030g4zt91', 'en', 1, 'https://ror.org/030g4zt91 Waikato-Tainui College for Research and Development'),
(44885, 'https://ror.org/04saf2403', 'en', 1, 'https://ror.org/04saf2403 Asian Academy of Film and Television'),
(44886, 'https://ror.org/01crf4k59', 'en', 1, 'https://ror.org/01crf4k59 University of Modern Sciences جامعة العلوم الحديثة'),
(44887, 'https://ror.org/03dcjsm04', 'en', 1, 'https://ror.org/03dcjsm04 Jaamacada Soomaaliya University of Somalia جامعة الصومال'),
(44888, 'https://ror.org/05bw7y144', 'no_lang_code', 1, 'https://ror.org/05bw7y144 Whakauae Research (New Zealand)'),
(44889, 'https://ror.org/01r21e311', 'en', 1, 'https://ror.org/01r21e311 University of Cagayan Valley'),
(44890, 'https://ror.org/05qh0gq94', 'en', 1, 'https://ror.org/05qh0gq94 Windsor University School of Medicine'),
(44891, 'https://ror.org/0147hmw17', 'en', 1, 'https://ror.org/0147hmw17 Yarmouk Private University جامعة اليرموك الخاصة'),
(44892, 'https://ror.org/03187yj51', 'en', 1, 'https://ror.org/03187yj51 Islamic Azad University, Science and Research Branch دانشگاه آزاد اسلامی واحد علوم و تحقيقات'),
(44893, 'https://ror.org/01cywgd53', 'en', 1, 'https://ror.org/01cywgd53 American College of Radiology Imaging Network'),
(44894, 'https://ror.org/00kgqwj69', 'en', 1, 'https://ror.org/00kgqwj69 American University of Integrative Sciences'),
(44895, 'https://ror.org/04zh6m791', 'es', 1, 'https://ror.org/04zh6m791 Universidad José Vasconcelos'),
(44896, 'https://ror.org/02d9c9c40', 'es', 1, 'https://ror.org/02d9c9c40 Instituto Universitario BIOS'),
(44897, 'https://ror.org/03dn3wf28', 'en', 1, 'https://ror.org/03dn3wf28 Coimbatore Medical College and Hospital'),
(44898, 'https://ror.org/05yd3zv45', 'en', 1, 'https://ror.org/05yd3zv45 Clock View Hospital'),
(44899, 'https://ror.org/02k5q6a71', 'es', 1, 'https://ror.org/02k5q6a71 Academia Politécnica Aeronáutica'),
(44900, 'https://ror.org/03akq4247', 'no_lang_code', 1, 'https://ror.org/03akq4247 Dassault Systèmes (United Kingdom)'),
(44901, 'https://ror.org/04ye8xg90', 'en', 1, 'https://ror.org/04ye8xg90 Central Florida Regional Planning Council'),
(44902, 'https://ror.org/05mrd3w41', 'en', 1, 'https://ror.org/05mrd3w41 Central Kitsap School District'),
(44903, 'https://ror.org/05svcq088', 'en', 1, 'https://ror.org/05svcq088 Engineering and Science University Magnet School'),
(44904, 'https://ror.org/05s4ea934', 'en', 1, 'https://ror.org/05s4ea934 Central Visayan Institute Foundation'),
(44905, 'https://ror.org/040ps8760', 'en', 1, 'https://ror.org/040ps8760 Insurance Claims Auditing and Professional Services'),
(44906, 'https://ror.org/02hwbev49', 'en', 1, 'https://ror.org/02hwbev49 Erich Schmid Institut für Materialwissenschaft Erich Schmid Institute of Materials Science'),
(44907, 'https://ror.org/01zppzz18', 'en', 1, 'https://ror.org/01zppzz18 Centre for Theoretical Physics and Astrophysics Центр теоретической физики и астрофизики'),
(44908, 'https://ror.org/01rx4ed80', 'en', 1, 'https://ror.org/01rx4ed80 IEEE OES Japan Chapter');
INSERT INTO `rors` VALUES
(44909, 'https://ror.org/04vdcpp96', 'en', 1, 'https://ror.org/04vdcpp96 Academy of Sciences of the Republic of Bashkortostan Академия Наук Республики Башкортостан'),
(44910, 'https://ror.org/052q58629', 'en', 1, 'https://ror.org/052q58629 Institute for Advanced Energy Technologies Istituto di Tecnologie Avanzate per l''Energia "Nicola Giordano"'),
(44911, 'https://ror.org/04kd9rb82', 'en', 1, 'https://ror.org/04kd9rb82 European Conference for AeroSpace Sciences'),
(44912, 'https://ror.org/03ptyn747', 'en', 1, 'https://ror.org/03ptyn747 Alabama Department of Commerce'),
(44913, 'https://ror.org/05wdedb75', 'no_lang_code', 1, 'https://ror.org/05wdedb75 Aisin (United States) アイシン精機株式会社'),
(44914, 'https://ror.org/048vnmk34', 'no_lang_code', 1, 'https://ror.org/048vnmk34 Ceracomp (South Korea)'),
(44915, 'https://ror.org/016j41127', 'en', 1, 'https://ror.org/016j41127 Changji University 昌吉学院'),
(44916, 'https://ror.org/02bj0an55', 'en', 1, 'https://ror.org/02bj0an55 Fairbanks North Star Borough School District'),
(44917, 'https://ror.org/00hrjdb92', 'en', 1, 'https://ror.org/00hrjdb92 Farallon Institute'),
(44918, 'https://ror.org/018tpb721', 'en', 1, 'https://ror.org/018tpb721 Chesapeake Public Schools'),
(44919, 'https://ror.org/04k456e23', 'no_lang_code', 1, 'https://ror.org/04k456e23 Anne Arundel Economic Development (United States)'),
(44920, 'https://ror.org/012151k32', 'en', 1, 'https://ror.org/012151k32 Indian River Central School District'),
(44921, 'https://ror.org/026csr892', 'en', 1, 'https://ror.org/026csr892 Indiana Office of Defense Development'),
(44922, 'https://ror.org/04785as38', 'en', 1, 'https://ror.org/04785as38 Christian County Public Schools'),
(44923, 'https://ror.org/03a08y513', 'no_lang_code', 1, 'https://ror.org/03a08y513 Fio Corporation (Canada)'),
(44924, 'https://ror.org/021tpet02', 'en', 1, 'https://ror.org/021tpet02 Association for Unmanned Vehicle Systems International'),
(44925, 'https://ror.org/02evdsh57', 'en', 1, 'https://ror.org/02evdsh57 Flint Hills Regional Council'),
(44926, 'https://ror.org/04jfns044', 'en', 1, 'https://ror.org/04jfns044 Vietnam Atomic Energy Instiute Viện Năng lượng nguyên tử Việt Nam'),
(44927, 'https://ror.org/04g3vmk47', 'en', 1, 'https://ror.org/04g3vmk47 Kaysinger Basin Regional Planning Commission'),
(44928, 'https://ror.org/01mjdf856', 'no_lang_code', 1, 'https://ror.org/01mjdf856 EarthTech International (United States)'),
(44929, 'https://ror.org/02k91w896', 'en', 1, 'https://ror.org/02k91w896 Kentucky Commission on Military Affairs'),
(44930, 'https://ror.org/05yp26r95', 'no_lang_code', 1, 'https://ror.org/05yp26r95 Kerecis (Iceland)'),
(44931, 'https://ror.org/05ntkws66', 'en', 1, 'https://ror.org/05ntkws66 Bahamas Marine Mammal Research Organisation'),
(44932, 'https://ror.org/04syjc425', 'en', 1, 'https://ror.org/04syjc425 Danish Defence Acquisition and Logistics Organization Forsvarets Materiel- og Indkøbsstyrelse'),
(44933, 'https://ror.org/04qz58m35', 'en', 1, 'https://ror.org/04qz58m35 Riverbank Local Redevelopment Authority'),
(44934, 'https://ror.org/042g4wn73', 'no_lang_code', 1, 'https://ror.org/042g4wn73 CIVIDEC Instrumentation (Austria)'),
(44935, 'https://ror.org/0521h8v35', 'en', 1, 'https://ror.org/0521h8v35 Fort Leavenworth Unified School District 207'),
(44936, 'https://ror.org/01pn0w676', 'en', 1, 'https://ror.org/01pn0w676 Clover Park School District'),
(44937, 'https://ror.org/01dcaj468', 'no_lang_code', 1, 'https://ror.org/01dcaj468 Nokia (Ireland)'),
(44938, 'https://ror.org/00s18qt97', 'en', 1, 'https://ror.org/00s18qt97 Killeen Independent School District'),
(44939, 'https://ror.org/002sk4j30', 'en', 1, 'https://ror.org/002sk4j30 Fort Mac LRA'),
(44940, 'https://ror.org/025h8ph98', 'en', 1, 'https://ror.org/025h8ph98 Fort Monmouth Economic Revitalization Authority'),
(44941, 'https://ror.org/05tkntq54', 'en', 1, 'https://ror.org/05tkntq54 Colorado Springs School District 11'),
(44942, 'https://ror.org/00wef3c21', 'en', 1, 'https://ror.org/00wef3c21 Fort Monroe Authority'),
(44943, 'https://ror.org/0059k7j85', 'no_lang_code', 1, 'https://ror.org/0059k7j85 Institute For Smart Monitoring (United States)'),
(44944, 'https://ror.org/05qhw9x92', 'en', 1, 'https://ror.org/05qhw9x92 Biblioteca Centrală Universitară Central University Library'),
(44945, 'https://ror.org/01km14z09', 'en', 1, 'https://ror.org/01km14z09 Institute of Applied Physics Інститут прикладної фізики НАН України'),
(44946, 'https://ror.org/0424hh766', 'pt', 1, 'https://ror.org/0424hh766 Fundação de Estudos e Pesquisas Aquáticas'),
(44947, 'https://ror.org/01nbzrx85', 'en', 1, 'https://ror.org/01nbzrx85 Korea Nano Technology Research Society 나노기술연구협의회'),
(44948, 'https://ror.org/00hezhh51', 'pt', 1, 'https://ror.org/00hezhh51 Fundacao Padre Leonel Franca'),
(44949, 'https://ror.org/02f4p4v04', 'no_lang_code', 1, 'https://ror.org/02f4p4v04 Convergent Science (United States)'),
(44950, 'https://ror.org/00gyqd239', 'en', 1, 'https://ror.org/00gyqd239 Copperas Cove Independent School District'),
(44951, 'https://ror.org/008zgph74', 'en', 1, 'https://ror.org/008zgph74 Bossier Parish School Board'),
(44952, 'https://ror.org/02wn33c27', 'pt', 1, 'https://ror.org/02wn33c27 Fundação de Apoio à Universidade de São Paulo'),
(44953, 'https://ror.org/00rkxnb56', 'en', 1, 'https://ror.org/00rkxnb56 Building Engineering and Science Talent'),
(44954, 'https://ror.org/032z6n124', 'en', 1, 'https://ror.org/032z6n124 Coronado Unified School District'),
(44955, 'https://ror.org/04psa8d07', 'en', 1, 'https://ror.org/04psa8d07 Geary County Schools USD 475'),
(44956, 'https://ror.org/02s5hdd60', 'en', 1, 'https://ror.org/02s5hdd60 Cache Public Schools'),
(44957, 'https://ror.org/02a3d3802', 'no_lang_code', 1, 'https://ror.org/02a3d3802 Netsil (United States)'),
(44958, 'https://ror.org/05at4m627', 'en', 1, 'https://ror.org/05at4m627 Craven County Schools'),
(44959, 'https://ror.org/02n3qcb27', 'es', 1, 'https://ror.org/02n3qcb27 Instituto de Cibernética Matemática y Física'),
(44960, 'https://ror.org/03t9ags07', 'en', 1, 'https://ror.org/03t9ags07 Central Savannah River Area Regional Commission'),
(44961, 'https://ror.org/009sp3d14', 'no_lang_code', 1, 'https://ror.org/009sp3d14 Gentherm (United States)'),
(44962, 'https://ror.org/01s4t1s46', 'en', 1, 'https://ror.org/01s4t1s46 Carthage Central School District'),
(44963, 'https://ror.org/059gejz39', 'no_lang_code', 1, 'https://ror.org/059gejz39 CellMosaic (United States)'),
(44964, 'https://ror.org/039f8sh24', 'en', 1, 'https://ror.org/039f8sh24 Central Office of Measures Główny Urząd Miar'),
(44965, 'https://ror.org/0168qf015', 'en', 1, 'https://ror.org/0168qf015 Center for a New American Security'),
(44966, 'https://ror.org/014f9c269', 'no_lang_code', 1, 'https://ror.org/014f9c269 Google (Switzerland)'),
(44967, 'https://ror.org/05dd1f546', 'en', 1, 'https://ror.org/05dd1f546 Daqing Normal University 大庆师范学院'),
(44968, 'https://ror.org/00kdez258', 'no_lang_code', 1, 'https://ror.org/00kdez258 Maxwell Technologies (United States)'),
(44969, 'https://ror.org/04916g222', 'en', 1, 'https://ror.org/04916g222 Lackland Independent School District'),
(44970, 'https://ror.org/04cr8d113', 'no_lang_code', 1, 'https://ror.org/04cr8d113 Lawrenceville Plasma Physics (United States)'),
(44971, 'https://ror.org/04jm9wm67', 'en', 1, 'https://ror.org/04jm9wm67 MBN Research Center'),
(44972, 'https://ror.org/019zpgk48', 'en', 1, 'https://ror.org/019zpgk48 Medical Lake School District'),
(44973, 'https://ror.org/022pvfm44', 'en', 1, 'https://ror.org/022pvfm44 Lawton Public Schools'),
(44974, 'https://ror.org/05ka6xc26', 'en', 1, 'https://ror.org/05ka6xc26 Government of the District of Columbia'),
(44975, 'https://ror.org/00rys1n84', 'en', 1, 'https://ror.org/00rys1n84 Lemon Grove School District'),
(44976, 'https://ror.org/001k0sf19', 'en', 1, 'https://ror.org/001k0sf19 Delta Greely School District'),
(44977, 'https://ror.org/0313pb684', 'en', 1, 'https://ror.org/0313pb684 Institute of Scientific and Technical Research for Defense Instituto de Investigaciones Científicas y Técnicas para la Defensa'),
(44978, 'https://ror.org/02y910088', 'no_lang_code', 1, 'https://ror.org/02y910088 Medizinisches Laserzentrum Lübeck (Germany)'),
(44979, 'https://ror.org/0200tp285', 'en', 1, 'https://ror.org/0200tp285 Development Authority of the North Country'),
(44980, 'https://ror.org/02ytpcd02', 'en', 1, 'https://ror.org/02ytpcd02 Great Plains Industrial Park'),
(44981, 'https://ror.org/00rar1v21', 'en', 1, 'https://ror.org/00rar1v21 Midcoast Regional Redevelopment Authority'),
(44982, 'https://ror.org/015y2tg27', 'en', 1, 'https://ror.org/015y2tg27 Directed Energy Professional Society'),
(44983, 'https://ror.org/03f1myq16', 'en', 1, 'https://ror.org/03f1myq16 Gulf Regional Planning Commission'),
(44984, 'https://ror.org/054jsj779', 'en', 1, 'https://ror.org/054jsj779 East Bay Educational Collaborative'),
(44985, 'https://ror.org/023af1t29', 'en', 1, 'https://ror.org/023af1t29 Gyeonggi College of Science and Technology 경기과학기술대학교'),
(44986, 'https://ror.org/04c97mw67', 'en', 1, 'https://ror.org/04c97mw67 Modus Health'),
(44987, 'https://ror.org/03zwb3g19', 'en', 1, 'https://ror.org/03zwb3g19 East Central Wisconsin Regional Planning Commission'),
(44988, 'https://ror.org/00z6t7t43', 'en', 1, 'https://ror.org/00z6t7t43 Harford County Government'),
(44989, 'https://ror.org/05e84tj20', 'en', 1, 'https://ror.org/05e84tj20 International Biodeterioration Biodegradation Society'),
(44990, 'https://ror.org/00e8fa768', 'en', 1, 'https://ror.org/00e8fa768 Montgomery County Office of the County Executive'),
(44991, 'https://ror.org/004vz6g09', 'en', 1, 'https://ror.org/004vz6g09 Lincoln Trail Area Development District'),
(44992, 'https://ror.org/01c78gc17', 'no_lang_code', 1, 'https://ror.org/01c78gc17 Immunomic Therapeutics (United States)'),
(44993, 'https://ror.org/01a00et54', 'en', 1, 'https://ror.org/01a00et54 Harry S Truman Coordinating Council'),
(44994, 'https://ror.org/0076ska18', 'en', 1, 'https://ror.org/0076ska18 Mountain Home School District'),
(44995, 'https://ror.org/04gacp295', 'en', 1, 'https://ror.org/04gacp295 Municipality of Anchorage'),
(44996, 'https://ror.org/012245h64', 'en', 1, 'https://ror.org/012245h64 Municipality of Medellín Municipio de Medellín'),
(44997, 'https://ror.org/01mbtgx32', 'en', 1, 'https://ror.org/01mbtgx32 International Financial Cryptography Association'),
(44998, 'https://ror.org/05qwc0640', 'en', 1, 'https://ror.org/05qwc0640 Lowcountry Council of Governments'),
(44999, 'https://ror.org/05fss0456', 'no_lang_code', 1, 'https://ror.org/05fss0456 National Security Technologies (United States)'),
(45000, 'https://ror.org/03jzczt57', 'en', 1, 'https://ror.org/03jzczt57 International Institute for Strategic Studies'),
(45001, 'https://ror.org/02cn5m820', 'en', 1, 'https://ror.org/02cn5m820 Madison City Schools'),
(45002, 'https://ror.org/01md3zk31', 'en', 1, 'https://ror.org/01md3zk31 National Academy of Sciences of the Republic of Kyrgyzstan Академии наук Кыргызстана'),
(45003, 'https://ror.org/029wtm372', 'en', 1, 'https://ror.org/029wtm372 Stimson Center'),
(45004, 'https://ror.org/02tzqkh80', 'en', 1, 'https://ror.org/02tzqkh80 International University of Grand Bassam'),
(45005, 'https://ror.org/012q68n89', 'en', 1, 'https://ror.org/012q68n89 National Centre for Compositional Characterisation of Materials'),
(45006, 'https://ror.org/02k6gb421', 'en', 1, 'https://ror.org/02k6gb421 National Trauma Institute'),
(45007, 'https://ror.org/024r2p353', 'en', 1, 'https://ror.org/024r2p353 National Guard Youth Foundation'),
(45008, 'https://ror.org/03pmzch07', 'en', 1, 'https://ror.org/03pmzch07 National Institute for Public Policy'),
(45009, 'https://ror.org/042jb2v70', 'de', 1, 'https://ror.org/042jb2v70 IOT Labs'),
(45010, 'https://ror.org/027rx9762', 'en', 1, 'https://ror.org/027rx9762 United States Naval Sea Cadet Corps'),
(45011, 'https://ror.org/008qm0n27', 'en', 1, 'https://ror.org/008qm0n27 National Math and Science Initiative'),
(45012, 'https://ror.org/016cvn656', 'en', 1, 'https://ror.org/016cvn656 MassDevelopment'),
(45013, 'https://ror.org/05333yg23', 'no_lang_code', 1, 'https://ror.org/05333yg23 Hitachi Engineering (Japan) 株式会社 日立エンジニアリング'),
(45014, 'https://ror.org/02vh58j74', 'en', 1, 'https://ror.org/02vh58j74 Krajowe Centrum Informatyki Kwantowej w Gdańsku National Quantum Information Centre in Gdansk'),
(45015, 'https://ror.org/05sehyt57', 'en', 1, 'https://ror.org/05sehyt57 Islamic Azad University of Kermanshah دانشگاه آزاد اسلامی واحد کرمانشاه'),
(45016, 'https://ror.org/0080zax93', 'en', 1, 'https://ror.org/0080zax93 Horsham Land Redevelopment Authority'),
(45017, 'https://ror.org/00yp0d371', 'en', 1, 'https://ror.org/00yp0d371 New Hampshire Department of Resources and Economic Development'),
(45018, 'https://ror.org/015sncd69', 'en', 1, 'https://ror.org/015sncd69 Islamic Azad University of Mahabad دانشگاه آزاد اسلامی واحد مهاباد'),
(45019, 'https://ror.org/0364yac91', 'no_lang_code', 1, 'https://ror.org/0364yac91 Tagworks Pharmaceuticals (Netherlands)'),
(45020, 'https://ror.org/0492k9x16', 'en', 1, 'https://ror.org/0492k9x16 Centre for Social Sciences Társadalomtudományi Kutatóközpont'),
(45021, 'https://ror.org/04jjswc10', 'es', 1, 'https://ror.org/04jjswc10 Universidad Yachay Tech Universidad de Investigación de Tecnología Experimental YACHAY'),
(45022, 'https://ror.org/00yfw2296', 'it', 1, 'https://ror.org/00yfw2296 Istituto Officina dei Materiali'),
(45023, 'https://ror.org/05c1vn851', 'en', 1, 'https://ror.org/05c1vn851 Rhode Island Commerce Corporation'),
(45024, 'https://ror.org/02csfbx96', 'en', 1, 'https://ror.org/02csfbx96 Richland School District Two'),
(45025, 'https://ror.org/05wba8r86', 'en', 1, 'https://ror.org/05wba8r86 Institute of Crystallography Istituto di Cristallografia'),
(45026, 'https://ror.org/028tq4e31', 'en', 1, 'https://ror.org/028tq4e31 Newport Chemical Depot'),
(45027, 'https://ror.org/01s8tz949', 'no_lang_code', 1, 'https://ror.org/01s8tz949 Japan Broadcasting Corporation (Japan) 日本放送協会'),
(45028, 'https://ror.org/02m9k9y84', 'en', 1, 'https://ror.org/02m9k9y84 TexAmericas Center'),
(45029, 'https://ror.org/01pfz6k04', 'en', 1, 'https://ror.org/01pfz6k04 Royal Institute of Navigation'),
(45030, 'https://ror.org/049ebw417', 'it', 1, 'https://ror.org/049ebw417 Istituto di Fotonica e Nanotecnologie'),
(45031, 'https://ror.org/004j8ab67', 'no_lang_code', 1, 'https://ror.org/004j8ab67 Nitride Crystals (United States)'),
(45032, 'https://ror.org/01g6f0r63', 'en', 1, 'https://ror.org/01g6f0r63 Nonproliferation Policy Education Center'),
(45033, 'https://ror.org/05szks045', 'en', 1, 'https://ror.org/05szks045 Norfolk Public Schools'),
(45034, 'https://ror.org/03bpwzr21', 'no_lang_code', 1, 'https://ror.org/03bpwzr21 Valley Partnership (United States)'),
(45035, 'https://ror.org/01vf40t90', 'en', 1, 'https://ror.org/01vf40t90 San Francisco University High School'),
(45036, 'https://ror.org/05se67h97', 'en', 1, 'https://ror.org/05se67h97 North Central Texas Council of Governments'),
(45037, 'https://ror.org/0475amg73', 'en', 1, 'https://ror.org/0475amg73 Ventura County Transportation Commission'),
(45038, 'https://ror.org/003sw4m03', 'en', 1, 'https://ror.org/003sw4m03 Saudi Center for Theoretical Physics'),
(45039, 'https://ror.org/02zy6fj64', 'en', 1, 'https://ror.org/02zy6fj64 Peac Institute of Multiscale Sciences 顶峰多尺度科学研究所'),
(45040, 'https://ror.org/03rnthv34', 'en', 1, 'https://ror.org/03rnthv34 Japan Underwater Robot Network 日本水中ロボネット'),
(45041, 'https://ror.org/052qrf856', 'en', 1, 'https://ror.org/052qrf856 Dr Vijay Kumar Foundation'),
(45042, 'https://ror.org/00rnnfh78', 'en', 1, 'https://ror.org/00rnnfh78 Ocean Exploration Trust'),
(45043, 'https://ror.org/05td9wm36', 'en', 1, 'https://ror.org/05td9wm36 Royal United Services Institute'),
(45044, 'https://ror.org/01kp4cp54', 'en', 1, 'https://ror.org/01kp4cp54 All Russia Research Institute of Automatics Науково-дослідний інститут автоматики та енергетики'),
(45045, 'https://ror.org/02n4n5m80', 'en', 1, 'https://ror.org/02n4n5m80 Oceanwide Science Institute'),
(45046, 'https://ror.org/04ngq3k29', 'en', 1, 'https://ror.org/04ngq3k29 Escambia County School District'),
(45047, 'https://ror.org/03gmm4776', 'no_lang_code', 1, 'https://ror.org/03gmm4776 Semi Conductor Devices (Israel)'),
(45048, 'https://ror.org/01yn5ft19', 'no_lang_code', 1, 'https://ror.org/01yn5ft19 SeQureNet (France)'),
(45049, 'https://ror.org/01ajbb580', 'en', 1, 'https://ror.org/01ajbb580 Watertown City School District'),
(45050, 'https://ror.org/045bzwt16', 'en', 1, 'https://ror.org/045bzwt16 University School of Milwaukee'),
(45051, 'https://ror.org/000hzcm20', 'en', 1, 'https://ror.org/000hzcm20 Web Science Trust'),
(45052, 'https://ror.org/048t6pr69', 'en', 1, 'https://ror.org/048t6pr69 Patuxent Partnership'),
(45053, 'https://ror.org/0463sg992', 'en', 1, 'https://ror.org/0463sg992 Wichita Falls Independent School District'),
(45054, 'https://ror.org/00hfbr881', 'no_lang_code', 1, 'https://ror.org/00hfbr881 Wildlife Computers (United States)'),
(45055, 'https://ror.org/03s603381', 'en', 1, 'https://ror.org/03s603381 Pennyrile Area Development District'),
(45056, 'https://ror.org/009hd2k51', 'en', 1, 'https://ror.org/009hd2k51 Wisconsin Economic Development Corporation'),
(45057, 'https://ror.org/02xymhw35', 'en', 1, 'https://ror.org/02xymhw35 Pikes Peak Area Council of Governments'),
(45058, 'https://ror.org/00xqcgm91', 'en', 1, 'https://ror.org/00xqcgm91 Travis Unified School District'),
(45059, 'https://ror.org/05w1x0w37', 'en', 1, 'https://ror.org/05w1x0w37 Polar Scientific'),
(45060, 'https://ror.org/031vs9z41', 'en', 1, 'https://ror.org/031vs9z41 Workforce Solutions Northeast Texas'),
(45061, 'https://ror.org/021zy7t36', 'en', 1, 'https://ror.org/021zy7t36 State Special Communications Service of Ukraine Державна служба спеціального зв''язку та захисту інформації України'),
(45062, 'https://ror.org/00ms9d710', 'no_lang_code', 1, 'https://ror.org/00ms9d710 Soliton Ocean Services (United States)'),
(45063, 'https://ror.org/05tk7d923', 'en', 1, 'https://ror.org/05tk7d923 Sumter County Planning Department'),
(45064, 'https://ror.org/04y2tt160', 'en', 1, 'https://ror.org/04y2tt160 Tri-County Council for Southern Maryland'),
(45065, 'https://ror.org/009wszx58', 'en', 1, 'https://ror.org/009wszx58 South Carolina Department of Employment and Workforce'),
(45066, 'https://ror.org/01sd6hz84', 'en', 1, 'https://ror.org/01sd6hz84 Yelm Community Schools'),
(45067, 'https://ror.org/04sn6y446', 'en', 1, 'https://ror.org/04sn6y446 Udupi Shri Admar Mutt Education Council'),
(45068, 'https://ror.org/01hsywd60', 'en', 1, 'https://ror.org/01hsywd60 Poquoson City Public Schools'),
(45069, 'https://ror.org/02r7rkw80', 'no_lang_code', 1, 'https://ror.org/02r7rkw80 Southall Environmental Associates (United States)'),
(45070, 'https://ror.org/03m13r221', 'en', 1, 'https://ror.org/03m13r221 Port of Morrow'),
(45071, 'https://ror.org/05gd1j786', 'en', 1, 'https://ror.org/05gd1j786 Prince George County Public Schools'),
(45072, 'https://ror.org/03g9yn034', 'en', 1, 'https://ror.org/03g9yn034 York County School Division'),
(45073, 'https://ror.org/05f12dd47', 'no_lang_code', 1, 'https://ror.org/05f12dd47 Protemics (Germany)'),
(45074, 'https://ror.org/04an3vm72', 'en', 1, 'https://ror.org/04an3vm72 Sparta Area School District'),
(45075, 'https://ror.org/036bgh355', 'en', 1, 'https://ror.org/036bgh355 Yuma Elementary School District'),
(45076, 'https://ror.org/04c4nem69', 'no_lang_code', 1, 'https://ror.org/04c4nem69 QuantumWise (Denmark)'),
(45077, 'https://ror.org/05hcvd668', 'en', 1, 'https://ror.org/05hcvd668 Randolph Field Independent School District'),
(45078, 'https://ror.org/05wn9p486', 'en', 1, 'https://ror.org/05wn9p486 Rayat Institute of Engineering & Information Technology रयात अभियांत्रिकी एवं सूचना प्रौद्योगिकी संस्थान'),
(45079, 'https://ror.org/03fy1q357', 'en', 1, 'https://ror.org/03fy1q357 Center for European Policy Analysis'),
(45080, 'https://ror.org/057as5086', 'en', 1, 'https://ror.org/057as5086 Institute of Marine Geology and Geophysics Viện Địa chất và Địa vật lý biển'),
(45081, 'https://ror.org/04jr71r83', 'en', 1, 'https://ror.org/04jr71r83 Institute of Mathematics Viện Toán học'),
(45082, 'https://ror.org/0148s8205', 'no_lang_code', 1, 'https://ror.org/0148s8205 Locus Pharmacy (United States)'),
(45083, 'https://ror.org/00a0e8y90', 'no_lang_code', 1, 'https://ror.org/00a0e8y90 Mera Pharmaceuticals (United states)'),
(45084, 'https://ror.org/02qqwxa87', 'en', 1, 'https://ror.org/02qqwxa87 Church World Service'),
(45085, 'https://ror.org/01zz9wh30', 'en', 1, 'https://ror.org/01zz9wh30 Institute of Structure of Matter Istituto di Struttura della Materia'),
(45086, 'https://ror.org/031gy6182', 'en', 1, 'https://ror.org/031gy6182 Office of Technology Transfer'),
(45087, 'https://ror.org/04brn2y58', 'en', 1, 'https://ror.org/04brn2y58 World Water and Climate Foundation'),
(45088, 'https://ror.org/00hh8pd76', 'no_lang_code', 1, 'https://ror.org/00hh8pd76 Avaya (United Kingdom)'),
(45089, 'https://ror.org/034epx078', 'no_lang_code', 1, 'https://ror.org/034epx078 Abengoa Bioenergy (United States)'),
(45090, 'https://ror.org/003snev59', 'no_lang_code', 1, 'https://ror.org/003snev59 Volvo (Germany)'),
(45091, 'https://ror.org/049pb5632', 'no_lang_code', 1, 'https://ror.org/049pb5632 AbbVie (Bermuda)'),
(45092, 'https://ror.org/02tg5n396', 'no_lang_code', 1, 'https://ror.org/02tg5n396 Emerson (Germany)'),
(45093, 'https://ror.org/027y4yw29', 'no_lang_code', 1, 'https://ror.org/027y4yw29 Abiomed (Germany)'),
(45094, 'https://ror.org/03819cc96', 'no_lang_code', 1, 'https://ror.org/03819cc96 Microsoft (Israel)'),
(45095, 'https://ror.org/036kf9x78', 'no_lang_code', 1, 'https://ror.org/036kf9x78 Yazaki (Australia)'),
(45096, 'https://ror.org/024e28c54', 'no_lang_code', 1, 'https://ror.org/024e28c54 AbbVie (Bahamas)'),
(45097, 'https://ror.org/042rb3y95', 'no_lang_code', 1, 'https://ror.org/042rb3y95 B.A.T Cigarettenfabriken British American Tobacco (Germany)'),
(45098, 'https://ror.org/03hsqcd26', 'no_lang_code', 1, 'https://ror.org/03hsqcd26 Ab Låsfabriken-Lukkotehdas Oy Abloy (Finland)'),
(45099, 'https://ror.org/00792x745', 'no_lang_code', 1, 'https://ror.org/00792x745 Amdocs (Germany)'),
(45100, 'https://ror.org/00xpxz171', 'no_lang_code', 1, 'https://ror.org/00xpxz171 Scientific Games (United Kingdom)'),
(45101, 'https://ror.org/03bvw9k90', 'no_lang_code', 1, 'https://ror.org/03bvw9k90 Autoliv (Germany)'),
(45102, 'https://ror.org/02s39fg77', 'no_lang_code', 1, 'https://ror.org/02s39fg77 Autoliv (Japan)'),
(45103, 'https://ror.org/017qkhg51', 'no_lang_code', 1, 'https://ror.org/017qkhg51 AES (United Kingdom)'),
(45104, 'https://ror.org/04ghyw285', 'no_lang_code', 1, 'https://ror.org/04ghyw285 Marel (United Kingdom)'),
(45105, 'https://ror.org/04xw8f995', 'no_lang_code', 1, 'https://ror.org/04xw8f995 Atlas Copco (United States)'),
(45106, 'https://ror.org/02vkk3485', 'no_lang_code', 1, 'https://ror.org/02vkk3485 Dover (Germany)'),
(45107, 'https://ror.org/00xsh4698', 'no_lang_code', 1, 'https://ror.org/00xsh4698 Assa Abloy (Australia)'),
(45108, 'https://ror.org/01hn5j140', 'no_lang_code', 1, 'https://ror.org/01hn5j140 Atlas Copco (Austria)'),
(45109, 'https://ror.org/03ek4e159', 'no_lang_code', 1, 'https://ror.org/03ek4e159 Assa Abloy (New Zealand)'),
(45110, 'https://ror.org/04dyk5z88', 'no_lang_code', 1, 'https://ror.org/04dyk5z88 Advantest (Singapore)'),
(45111, 'https://ror.org/04t3phk92', 'no_lang_code', 1, 'https://ror.org/04t3phk92 Agilent Technologies (Australia)'),
(45112, 'https://ror.org/0076k6d95', 'no_lang_code', 1, 'https://ror.org/0076k6d95 Assa Abloy (Germany)'),
(45113, 'https://ror.org/0355p2e87', 'no_lang_code', 1, 'https://ror.org/0355p2e87 Agilent Technologies (Germany)'),
(45114, 'https://ror.org/059zcg682', 'no_lang_code', 1, 'https://ror.org/059zcg682 BASF (United Kingdom)'),
(45115, 'https://ror.org/021swj028', 'no_lang_code', 1, 'https://ror.org/021swj028 Atlas Elektronik (United Kingdom)'),
(45116, 'https://ror.org/00qpbjw91', 'no_lang_code', 1, 'https://ror.org/00qpbjw91 Fujikura (United States)'),
(45117, 'https://ror.org/01mfgkr43', 'no_lang_code', 1, 'https://ror.org/01mfgkr43 Amdocs (United Kingdom)'),
(45118, 'https://ror.org/02fwcwt37', 'no_lang_code', 1, 'https://ror.org/02fwcwt37 Ametek (Germany)'),
(45119, 'https://ror.org/002qjv549', 'no_lang_code', 1, 'https://ror.org/002qjv549 Whirlpool (Germany)'),
(45120, 'https://ror.org/053cetp63', 'no_lang_code', 1, 'https://ror.org/053cetp63 Autoliv (United Kingdom)'),
(45121, 'https://ror.org/01ye7b264', 'no_lang_code', 1, 'https://ror.org/01ye7b264 Avaya (Bermuda)'),
(45122, 'https://ror.org/02pdacs91', 'no_lang_code', 1, 'https://ror.org/02pdacs91 Becton Dickinson (Ireland)'),
(45123, 'https://ror.org/00cdhs571', 'no_lang_code', 1, 'https://ror.org/00cdhs571 Amdocs (Israel)'),
(45124, 'https://ror.org/003kk8e92', 'de', 1, 'https://ror.org/003kk8e92 Deutsches Textilforschungszentrum Nord-West'),
(45125, 'https://ror.org/02raw4k91', 'no_lang_code', 1, 'https://ror.org/02raw4k91 Coloplast (Germany)'),
(45126, 'https://ror.org/01ezy0w74', 'no_lang_code', 1, 'https://ror.org/01ezy0w74 Bayer (New Zealand)'),
(45127, 'https://ror.org/01btqj997', 'de', 1, 'https://ror.org/01btqj997 Salomon Ludwig Steinheim-Institut'),
(45128, 'https://ror.org/05mmp2p33', 'no_lang_code', 1, 'https://ror.org/05mmp2p33 Stryker (Germany)'),
(45129, 'https://ror.org/05tw0wf88', 'no_lang_code', 1, 'https://ror.org/05tw0wf88 Airbus (India)'),
(45130, 'https://ror.org/05dwa3c44', 'no_lang_code', 1, 'https://ror.org/05dwa3c44 Becton Dickinson (United Kingdom)'),
(45131, 'https://ror.org/04achrx04', 'no_lang_code', 1, 'https://ror.org/04achrx04 AkzoNobel (Germany)'),
(45132, 'https://ror.org/04zdhre16', 'no_lang_code', 1, 'https://ror.org/04zdhre16 Alcoa (Germany)'),
(45133, 'https://ror.org/04q4ktw86', 'no_lang_code', 1, 'https://ror.org/04q4ktw86 Faurecia (Canada)'),
(45134, 'https://ror.org/00x7ptd63', 'no_lang_code', 1, 'https://ror.org/00x7ptd63 Bio-Rad (Israel)'),
(45135, 'https://ror.org/03m1q4162', 'no_lang_code', 1, 'https://ror.org/03m1q4162 Nordson (Germany)'),
(45136, 'https://ror.org/02bcp9s34', 'no_lang_code', 1, 'https://ror.org/02bcp9s34 Unilever (Germany)'),
(45137, 'https://ror.org/0366tzh77', 'no_lang_code', 1, 'https://ror.org/0366tzh77 Biolitec (Malaysia)'),
(45138, 'https://ror.org/05a5w4v67', 'no_lang_code', 1, 'https://ror.org/05a5w4v67 Foton Motors (China) 北汽福田'),
(45139, 'https://ror.org/016731f38', 'no_lang_code', 1, 'https://ror.org/016731f38 Zimmer Biomet (Germany)'),
(45140, 'https://ror.org/00mke2t69', 'no_lang_code', 1, 'https://ror.org/00mke2t69 Zimmer Biomet (United Kingdom)'),
(45141, 'https://ror.org/01gzzmb44', 'no_lang_code', 1, 'https://ror.org/01gzzmb44 AMF Bakery Systems (United States)'),
(45142, 'https://ror.org/03yq5aa85', 'no_lang_code', 1, 'https://ror.org/03yq5aa85 Medtronic (Italy)'),
(45143, 'https://ror.org/00gttkw41', 'no_lang_code', 1, 'https://ror.org/00gttkw41 Thermo Fisher Scientific (Canada)'),
(45144, 'https://ror.org/01bjtb363', 'no_lang_code', 1, 'https://ror.org/01bjtb363 ProAmpac (United States)'),
(45145, 'https://ror.org/03t67hw32', 'no_lang_code', 1, 'https://ror.org/03t67hw32 American Superconductor (Austria)'),
(45146, 'https://ror.org/03gqy2z96', 'no_lang_code', 1, 'https://ror.org/03gqy2z96 National Oilwell Varco (United Kingdom)'),
(45147, 'https://ror.org/037y5er63', 'no_lang_code', 1, 'https://ror.org/037y5er63 Ashima (Taiwan)'),
(45148, 'https://ror.org/058w9hg07', 'no_lang_code', 1, 'https://ror.org/058w9hg07 Andritz (Germany)'),
(45149, 'https://ror.org/00cedkn40', 'no_lang_code', 1, 'https://ror.org/00cedkn40 Robert Bosch (China)'),
(45150, 'https://ror.org/05nxk4667', 'no_lang_code', 1, 'https://ror.org/05nxk4667 Medicure (United States)'),
(45151, 'https://ror.org/00xqjsc25', 'no_lang_code', 1, 'https://ror.org/00xqjsc25 Arkema (Germany)'),
(45152, 'https://ror.org/01jsrac29', 'no_lang_code', 1, 'https://ror.org/01jsrac29 Broadcom (Israel)'),
(45153, 'https://ror.org/01784jw84', 'no_lang_code', 1, 'https://ror.org/01784jw84 AT&T (United Kingdom)'),
(45154, 'https://ror.org/02f3pgg92', 'no_lang_code', 1, 'https://ror.org/02f3pgg92 Brooks Automation (Germany)'),
(45155, 'https://ror.org/00y09zk14', 'no_lang_code', 1, 'https://ror.org/00y09zk14 Motorola (South Korea)'),
(45156, 'https://ror.org/01c4r0z03', 'no_lang_code', 1, 'https://ror.org/01c4r0z03 Applied Materials (Singapore)'),
(45157, 'https://ror.org/00vdy5891', 'no_lang_code', 1, 'https://ror.org/00vdy5891 Meritor (Brazil)'),
(45158, 'https://ror.org/04bx2zy40', 'no_lang_code', 1, 'https://ror.org/04bx2zy40 Otsuka (United Kingdom)'),
(45159, 'https://ror.org/05w362f32', 'no_lang_code', 1, 'https://ror.org/05w362f32 BorgWarner (Germany)'),
(45160, 'https://ror.org/0105jwh54', 'no_lang_code', 1, 'https://ror.org/0105jwh54 Legrand (United Kingdom)'),
(45161, 'https://ror.org/005jw9139', 'no_lang_code', 1, 'https://ror.org/005jw9139 Mondelēz International (United States)'),
(45162, 'https://ror.org/026sfkz12', 'no_lang_code', 1, 'https://ror.org/026sfkz12 Mondelēz International (Singapore)'),
(45163, 'https://ror.org/0414hra82', 'no_lang_code', 1, 'https://ror.org/0414hra82 Capcom (Japan) 株式会社カプコン'),
(45164, 'https://ror.org/031zzq071', 'no_lang_code', 1, 'https://ror.org/031zzq071 Robert Bosch (United Kingdom)'),
(45165, 'https://ror.org/00ay2hv83', 'no_lang_code', 1, 'https://ror.org/00ay2hv83 Safran (Singapore)'),
(45166, 'https://ror.org/01hadm580', 'no_lang_code', 1, 'https://ror.org/01hadm580 Caterpillar (United Kingdom)'),
(45167, 'https://ror.org/026pdc066', 'no_lang_code', 1, 'https://ror.org/026pdc066 Caterpillar (Germany)'),
(45168, 'https://ror.org/03j0njm34', 'no_lang_code', 1, 'https://ror.org/03j0njm34 British American Tobacco (Japan) ブリティッシュ・アメリカン・タバコ'),
(45169, 'https://ror.org/050j82f52', 'no_lang_code', 1, 'https://ror.org/050j82f52 TE Connectivity (United Kingdom)'),
(45170, 'https://ror.org/055c4qx71', 'no_lang_code', 1, 'https://ror.org/055c4qx71 Bühler (United Kingdom)'),
(45171, 'https://ror.org/0536ew874', 'no_lang_code', 1, 'https://ror.org/0536ew874 3M (Israel)'),
(45172, 'https://ror.org/00fmck729', 'no_lang_code', 1, 'https://ror.org/00fmck729 Bharat Forge (Germany)'),
(45173, 'https://ror.org/03gwmtg18', 'no_lang_code', 1, 'https://ror.org/03gwmtg18 Gleason (Germany)'),
(45174, 'https://ror.org/01rw27z95', 'no_lang_code', 1, 'https://ror.org/01rw27z95 Microsoft (United Kingdom)'),
(45175, 'https://ror.org/05fner397', 'no_lang_code', 1, 'https://ror.org/05fner397 Broadcom (United Kingdom)'),
(45176, 'https://ror.org/04d3djg48', 'no_lang_code', 1, 'https://ror.org/04d3djg48 Qualcomm (United Kingdom)'),
(45177, 'https://ror.org/01mcc7007', 'no_lang_code', 1, 'https://ror.org/01mcc7007 Schlumberger (Ireland)'),
(45178, 'https://ror.org/00w8f3q52', 'no_lang_code', 1, 'https://ror.org/00w8f3q52 Vitec (Germany)'),
(45179, 'https://ror.org/01k2et926', 'no_lang_code', 1, 'https://ror.org/01k2et926 Chemring Countermeasures (United Kingdom)'),
(45180, 'https://ror.org/02bwhc913', 'no_lang_code', 1, 'https://ror.org/02bwhc913 Carl Zeiss (Israel)'),
(45181, 'https://ror.org/05ebwnx39', 'no_lang_code', 1, 'https://ror.org/05ebwnx39 Ceragon (Israel)'),
(45182, 'https://ror.org/01cc1db63', 'no_lang_code', 1, 'https://ror.org/01cc1db63 Carl Zeiss (Australia)'),
(45183, 'https://ror.org/008558y11', 'no_lang_code', 1, 'https://ror.org/008558y11 Gemalto (Germany)'),
(45184, 'https://ror.org/02x2gk324', 'no_lang_code', 1, 'https://ror.org/02x2gk324 Abbott (Germany) Abbott Deutschland'),
(45185, 'https://ror.org/02kf1yd19', 'no_lang_code', 1, 'https://ror.org/02kf1yd19 Citrix (Switzerland)'),
(45186, 'https://ror.org/00sjbw709', 'no_lang_code', 1, 'https://ror.org/00sjbw709 CNH Industrial (Germany)'),
(45187, 'https://ror.org/031negs69', 'no_lang_code', 1, 'https://ror.org/031negs69 CJ CGV (South Korea) 씨제이 씨지브이'),
(45188, 'https://ror.org/020rf1w57', 'no_lang_code', 1, 'https://ror.org/020rf1w57 CNH Industrial (Austria)'),
(45189, 'https://ror.org/057nzpd74', 'no_lang_code', 1, 'https://ror.org/057nzpd74 Imerys (Austria)'),
(45190, 'https://ror.org/00h446q73', 'no_lang_code', 1, 'https://ror.org/00h446q73 Hewlett-Packard (Australia)'),
(45191, 'https://ror.org/01j2e9t73', 'en', 1, 'https://ror.org/01j2e9t73 People’s Hospital of Linqing 临清市人民医院'),
(45192, 'https://ror.org/01qp6yw46', 'en', 1, 'https://ror.org/01qp6yw46 Mercury Optoelectronics Research Institute 墨克瑞光电子研究院'),
(45193, 'https://ror.org/027t2s119', 'no_lang_code', 1, 'https://ror.org/027t2s119 Intel (Israel)'),
(45194, 'https://ror.org/038ajj330', 'no_lang_code', 1, 'https://ror.org/038ajj330 TechnipFMC (United Kingdom)'),
(45195, 'https://ror.org/019znhj20', 'no_lang_code', 1, 'https://ror.org/019znhj20 Schneider Electric (Australia)'),
(45196, 'https://ror.org/00b9ph040', 'no_lang_code', 1, 'https://ror.org/00b9ph040 Hexagon (Israel)'),
(45197, 'https://ror.org/046ry7m83', 'no_lang_code', 1, 'https://ror.org/046ry7m83 Alere (Germany)'),
(45198, 'https://ror.org/033zgjc96', 'no_lang_code', 1, 'https://ror.org/033zgjc96 Herman Miller (United Kingdom)'),
(45199, 'https://ror.org/031sgpn76', 'no_lang_code', 1, 'https://ror.org/031sgpn76 Valeo (Ireland)'),
(45200, 'https://ror.org/03whnfd14', 'no_lang_code', 1, 'https://ror.org/03whnfd14 GlobalFoundries (Singapore)'),
(45201, 'https://ror.org/051vpgk97', 'no_lang_code', 1, 'https://ror.org/051vpgk97 Toshiba (United States)'),
(45202, 'https://ror.org/04e4g6t41', 'no_lang_code', 1, 'https://ror.org/04e4g6t41 Cook Medical (Ireland)'),
(45203, 'https://ror.org/03r33km95', 'no_lang_code', 1, 'https://ror.org/03r33km95 Eaton (Germany)'),
(45204, 'https://ror.org/046esz437', 'no_lang_code', 1, 'https://ror.org/046esz437 Colt International (United States)'),
(45205, 'https://ror.org/04kz8hh27', 'no_lang_code', 1, 'https://ror.org/04kz8hh27 Albemarle (Germany)'),
(45206, 'https://ror.org/05tdzsq49', 'no_lang_code', 1, 'https://ror.org/05tdzsq49 Nortek (United States)'),
(45207, 'https://ror.org/00j8b8469', 'no_lang_code', 1, 'https://ror.org/00j8b8469 Spectrum Brands (United Kingdom)'),
(45208, 'https://ror.org/01xs70477', 'no_lang_code', 1, 'https://ror.org/01xs70477 Corning (Israel)'),
(45209, 'https://ror.org/04asmh688', 'no_lang_code', 1, 'https://ror.org/04asmh688 Corning (South Korea)'),
(45210, 'https://ror.org/0328rvw59', 'no_lang_code', 1, 'https://ror.org/0328rvw59 Cryptomathic (United Kingdom)'),
(45211, 'https://ror.org/027qdw603', 'no_lang_code', 1, 'https://ror.org/027qdw603 Cadence Design Systems (India)'),
(45212, 'https://ror.org/017zzp047', 'no_lang_code', 1, 'https://ror.org/017zzp047 Nordson (United Kingdom)'),
(45213, 'https://ror.org/05vvdqy91', 'pt', 1, 'https://ror.org/05vvdqy91 Associação Brasileira de Águas Subterrâneas'),
(45214, 'https://ror.org/02gcdp811', 'pt', 1, 'https://ror.org/02gcdp811 Instituto de Pesca'),
(45215, 'https://ror.org/033y39138', 'pt', 1, 'https://ror.org/033y39138 Fundação Estadual de Pesquisa Agropecuária'),
(45216, 'https://ror.org/02hsmgc28', 'pt', 1, 'https://ror.org/02hsmgc28 Agende Guarulhos'),
(45217, 'https://ror.org/057tp6a49', 'pt', 1, 'https://ror.org/057tp6a49 Fundação Estadual de Proteção Ambiental Henrique Luiz Roessler'),
(45218, 'https://ror.org/028xn8h27', 'pt', 1, 'https://ror.org/028xn8h27 Associação Brasileira de Engenharia Agrícola'),
(45219, 'https://ror.org/01qgvp179', 'en', 1, 'https://ror.org/01qgvp179 Ezequiel Dias Foundation Fundação Ezequiel Dias'),
(45220, 'https://ror.org/00prymb05', 'pt', 1, 'https://ror.org/00prymb05 Centrus Diagnósticos por Imagem'),
(45221, 'https://ror.org/00bxp1m74', 'pt', 1, 'https://ror.org/00bxp1m74 Associação Brasileira de Engenharia de Produção'),
(45222, 'https://ror.org/05n7s3931', 'en', 1, 'https://ror.org/05n7s3931 Institute for Research and Innovation in Irrigated Agriculture'),
(45223, 'https://ror.org/05cew4a83', 'en', 1, 'https://ror.org/05cew4a83 Chicago Zoological Society'),
(45224, 'https://ror.org/05qqbm455', 'pt', 1, 'https://ror.org/05qqbm455 Associação Brasileira de Ensaios não Destrutivos e Inspeção'),
(45225, 'https://ror.org/059c7sp21', 'en', 1, 'https://ror.org/059c7sp21 Brazilian College of Animal Reproduction Colégio Brasileiro de Reprodução Animal'),
(45226, 'https://ror.org/04e080j72', 'pt', 1, 'https://ror.org/04e080j72 Fundação Hemopa'),
(45227, 'https://ror.org/05dhf4z39', 'pt', 1, 'https://ror.org/05dhf4z39 Associação Brasileira de Literatura Comparada'),
(45228, 'https://ror.org/005pzyb51', 'en', 1, 'https://ror.org/005pzyb51 Research Institute for Innovation and Technology'),
(45229, 'https://ror.org/00zkszf91', 'pt', 1, 'https://ror.org/00zkszf91 Associação Brasileira de Planetários'),
(45230, 'https://ror.org/02km5mw71', 'pt', 1, 'https://ror.org/02km5mw71 Associação Brasileira de Química'),
(45231, 'https://ror.org/055v9fh02', 'pt', 1, 'https://ror.org/055v9fh02 Laboratório Nacional de Astrofísica National Astrophysics Laboratory'),
(45232, 'https://ror.org/054021a91', 'pt', 1, 'https://ror.org/054021a91 Associação Brasileira de Recursos Hídricos'),
(45233, 'https://ror.org/01b55ta41', 'pt', 1, 'https://ror.org/01b55ta41 Conselho Nacional de Pesquisa e Pós-graduação em Direito'),
(45234, 'https://ror.org/03xm57x75', 'pt', 1, 'https://ror.org/03xm57x75 Instituto de Saúde'),
(45235, 'https://ror.org/04b268v54', 'en', 1, 'https://ror.org/04b268v54 SUPERA Park of Innovation and Technology of Ribeirão Preto Supera Parque de Inovação e Tecnologia de Ribeirão Preto'),
(45236, 'https://ror.org/02hpe9z95', 'de', 1, 'https://ror.org/02hpe9z95 M.A.S - Alzheimerhilfe - Demenzservicestelle Bad Ischl MAS Alzheimerhilfe'),
(45237, 'https://ror.org/01h8yh819', 'pt', 1, 'https://ror.org/01h8yh819 Associação Brasileira de Relações Internacionais'),
(45238, 'https://ror.org/04cdm5380', 'de', 1, 'https://ror.org/04cdm5380 Mediacult'),
(45239, 'https://ror.org/05pggr453', 'no_lang_code', 1, 'https://ror.org/05pggr453 DCS Computing (Austria)'),
(45240, 'https://ror.org/04kznw408', 'pt', 1, 'https://ror.org/04kznw408 Associação Brasileira de Rorschach e Métodos Projetivos'),
(45241, 'https://ror.org/04zseas36', 'pt', 1, 'https://ror.org/04zseas36 Associação Brasileira de Terapia Celular'),
(45242, 'https://ror.org/02c13m258', 'en', 1, 'https://ror.org/02c13m258 Institute of Animal Science and Pastures Instituto de Zootecnia'),
(45243, 'https://ror.org/01ctx9289', 'pt', 1, 'https://ror.org/01ctx9289 Fundação Jorge Duprat Figueiredo de Segurança e Medicina do Trabalho'),
(45244, 'https://ror.org/03b2q2q16', 'en', 1, 'https://ror.org/03b2q2q16 Memorial Общество Мемориал'),
(45245, 'https://ror.org/02n1tdp80', 'pt', 1, 'https://ror.org/02n1tdp80 Associação Brasileira do Alumínio Brazilian Aluminum Association'),
(45246, 'https://ror.org/018qpjf36', 'pt', 1, 'https://ror.org/018qpjf36 Minas Jr'),
(45247, 'https://ror.org/025ctym15', 'pt', 1, 'https://ror.org/025ctym15 Fundação Meridional de Apoio à Pesquisa Agropecuária'),
(45248, 'https://ror.org/00b2yyz32', 'pt', 1, 'https://ror.org/00b2yyz32 Associação de Leitura do Brasil'),
(45249, 'https://ror.org/015q1p728', 'pt', 1, 'https://ror.org/015q1p728 Fundação Museu do Homem Americano'),
(45250, 'https://ror.org/02af7na82', 'no_lang_code', 1, 'https://ror.org/02af7na82 Durango Multimedia (United States)'),
(45251, 'https://ror.org/05f56wm94', 'pt', 1, 'https://ror.org/05f56wm94 Fundação Parque Tecnológico da Paraíba'),
(45252, 'https://ror.org/013egyr15', 'pt', 1, 'https://ror.org/013egyr15 Associação Nacional de Biossegurança'),
(45253, 'https://ror.org/01z36py26', 'en', 1, 'https://ror.org/01z36py26 Associação Nacional dos Centros de Pós-Graduação em Economia Brazilian Association of Graduate Programs in Economic'),
(45254, 'https://ror.org/02maem855', 'en', 1, 'https://ror.org/02maem855 Ocean Lakes High School'),
(45255, 'https://ror.org/050raka84', 'pt', 1, 'https://ror.org/050raka84 Fundação Planetário da Cidade do Rio de Janeiro'),
(45256, 'https://ror.org/03kp88547', 'pt', 1, 'https://ror.org/03kp88547 Associação Nacional de Entidades Promotoras de Empreendimentos de Tecnologias Avançadas Brazilian Association of Science Parks and Business Incubators'),
(45257, 'https://ror.org/045nsn047', 'pt', 1, 'https://ror.org/045nsn047 Instituto Federal de Educação, Ciência e Tecnologia do Amazonas Instituto Federal do Amazonas'),
(45258, 'https://ror.org/004f1yx35', 'pt', 1, 'https://ror.org/004f1yx35 Empresa de Pesquisa Agropecuária e Extensão Rural de Santa Catarina'),
(45259, 'https://ror.org/00b25cj29', 'pt', 1, 'https://ror.org/00b25cj29 Governo do Estado de Alagoas'),
(45260, 'https://ror.org/0432ndm25', 'no_lang_code', 1, 'https://ror.org/0432ndm25 Porto Digital (Brazil)'),
(45261, 'https://ror.org/03y07wm59', 'pt', 1, 'https://ror.org/03y07wm59 Associação Nacional de Pesquisadores e Professores de História das Américas'),
(45262, 'https://ror.org/03888v687', 'pt', 1, 'https://ror.org/03888v687 Governo do Pará'),
(45263, 'https://ror.org/00jtd6242', 'pt', 1, 'https://ror.org/00jtd6242 Empresa Mato-grossense de Pesquisa, Assistência e Extensão Rural'),
(45264, 'https://ror.org/01drtms03', 'pt', 1, 'https://ror.org/01drtms03 Instituto Federal de Educação, Ciência e Tecnologia do Sul de Minas Instituto Federal do Sul de Minas'),
(45265, 'https://ror.org/00cp8ee37', 'pt', 1, 'https://ror.org/00cp8ee37 Prefeitura Municipal de Alto Alegre'),
(45266, 'https://ror.org/010p06p68', 'pt', 1, 'https://ror.org/010p06p68 Associação Nacional de Política e Administração da Educação'),
(45267, 'https://ror.org/039wcgm60', 'pt', 1, 'https://ror.org/039wcgm60 Prefeitura Municipal de Anapolis'),
(45268, 'https://ror.org/04cfzks03', 'pt', 1, 'https://ror.org/04cfzks03 Escola de Comando e Estado-Maior do Exército'),
(45269, 'https://ror.org/00a0zet70', 'pt', 1, 'https://ror.org/00a0zet70 Prefeitura Municipal de Barra Mansa'),
(45270, 'https://ror.org/02ywr7111', 'pt', 1, 'https://ror.org/02ywr7111 Prefeitura Municipal de Campos dos Goytacazes'),
(45271, 'https://ror.org/04w68ym71', 'en', 1, 'https://ror.org/04w68ym71 University Association for Research in Fundamental Psychopathology'),
(45272, 'https://ror.org/03p5hcj07', 'pt', 1, 'https://ror.org/03p5hcj07 Instituto Federal de Educação, Ciência e Tecnologia do Tocantins Instituto Federal do Tocantins'),
(45273, 'https://ror.org/025q49t60', 'pt', 1, 'https://ror.org/025q49t60 Prefeitura Municipal de Esteio'),
(45274, 'https://ror.org/00gmn3n47', 'pt', 1, 'https://ror.org/00gmn3n47 Prefeitura Municipal de Igarapé'),
(45275, 'https://ror.org/02r728f83', 'no_lang_code', 1, 'https://ror.org/02r728f83 ASV (United States)'),
(45276, 'https://ror.org/043nq9007', 'pt', 1, 'https://ror.org/043nq9007 Instituto Federal de Educação, Ciência e Tecnologia do Acre Instituto Federal do Acre'),
(45277, 'https://ror.org/04jry6p54', 'pt', 1, 'https://ror.org/04jry6p54 Prefeitura Municipal de Rio das Ostras'),
(45278, 'https://ror.org/058b8r373', 'pt', 1, 'https://ror.org/058b8r373 Prefeitura Municipal de Sapiranga'),
(45279, 'https://ror.org/02dhrxt58', 'no_lang_code', 1, 'https://ror.org/02dhrxt58 Teccampos (Brazil)'),
(45280, 'https://ror.org/05df6vn84', 'no_lang_code', 1, 'https://ror.org/05df6vn84 Atkins (United States)'),
(45281, 'https://ror.org/03agmyp46', 'pt', 1, 'https://ror.org/03agmyp46 Instituto Federal de Educação, Ciência e Tecnologia do Amapá Instituto Federal do Amapá'),
(45282, 'https://ror.org/05e5cnc30', 'pt', 1, 'https://ror.org/05e5cnc30 Prefeitura Municipal de Tauá'),
(45283, 'https://ror.org/01htmkd76', 'pt', 1, 'https://ror.org/01htmkd76 Célia Helena Centro de Artes e Educação'),
(45284, 'https://ror.org/05yps4z32', 'pt', 1, 'https://ror.org/05yps4z32 Inesc P&D Brasil'),
(45285, 'https://ror.org/05rm1p636', 'pt', 1, 'https://ror.org/05rm1p636 Instituto Federal de Educação, Ciência e Tecnologia do Maranhão Instituto Federal do Maranhão'),
(45286, 'https://ror.org/05ryccv79', 'pt', 1, 'https://ror.org/05ryccv79 Escola Superior Dom Helder Câmara'),
(45287, 'https://ror.org/033qmpy33', 'pt', 1, 'https://ror.org/033qmpy33 Instituto Federal do Piauí'),
(45288, 'https://ror.org/01bdarh28', 'no_lang_code', 1, 'https://ror.org/01bdarh28 International Baby Food Action Network'),
(45289, 'https://ror.org/00ddyzb69', 'en', 1, 'https://ror.org/00ddyzb69 Biodiversity Research Institute'),
(45290, 'https://ror.org/04p280284', 'pt', 1, 'https://ror.org/04p280284 Departamento de Ciência e Tecnologia'),
(45291, 'https://ror.org/03b209z39', 'pt', 1, 'https://ror.org/03b209z39 Instituto Brasileiro de Museus'),
(45292, 'https://ror.org/05r261n31', 'pt', 1, 'https://ror.org/05r261n31 Centro de Direito Internacional'),
(45293, 'https://ror.org/028x16v34', 'no_lang_code', 1, 'https://ror.org/028x16v34 Biominas (Brazil)'),
(45294, 'https://ror.org/029bs9b57', 'pt', 1, 'https://ror.org/029bs9b57 Fundação Cearense de Meteorologia e Recursos Hídricos'),
(45295, 'https://ror.org/011bkgz47', 'pt', 1, 'https://ror.org/011bkgz47 Brazilian Institute of Technology for Leather, Footwear and Artifacts Instituto Brasileiro de Tecnologia do Couro, Calçado e Artefatos'),
(45296, 'https://ror.org/004m46j22', 'pt', 1, 'https://ror.org/004m46j22 Secretaria de Ciência, Tecnologia e Inovação'),
(45297, 'https://ror.org/03m4ve365', 'pt', 1, 'https://ror.org/03m4ve365 Instituto Florestal'),
(45298, 'https://ror.org/009ynjx25', 'pt', 1, 'https://ror.org/009ynjx25 Secretaria de Educação de Pernambuco'),
(45299, 'https://ror.org/02rvaak51', 'pt', 1, 'https://ror.org/02rvaak51 Instituto By Brasil'),
(45300, 'https://ror.org/03cxpxg17', 'en', 1, 'https://ror.org/03cxpxg17 Fundação CERTI Reference Center Foundation for Innovative Technologies'),
(45301, 'https://ror.org/02t7xfd51', 'pt', 1, 'https://ror.org/02t7xfd51 Centro de Estudos e Sistemas Avançados do Recife'),
(45302, 'https://ror.org/02j4ss342', 'pt', 1, 'https://ror.org/02j4ss342 Secretaria de Estado de Educação do Distrito Federal'),
(45303, 'https://ror.org/05hs77045', 'pt', 1, 'https://ror.org/05hs77045 Instituto Capixaba de Pesquisa, Assistência Técnica e Extensão Rural'),
(45304, 'https://ror.org/05gv30q64', 'pt', 1, 'https://ror.org/05gv30q64 Instituto Geológico'),
(45305, 'https://ror.org/046601y55', 'pt', 1, 'https://ror.org/046601y55 Centro Internacional de Semiótica e Comunicação'),
(45306, 'https://ror.org/02n64c681', 'pt', 1, 'https://ror.org/02n64c681 Fundação de Ciência e Tecnologia'),
(45307, 'https://ror.org/00gkmm041', 'pt', 1, 'https://ror.org/00gkmm041 Instituto de Biologia Molecular do Paraná'),
(45308, 'https://ror.org/04dercs88', 'pt', 1, 'https://ror.org/04dercs88 Instituto Nacional do Semiárido'),
(45309, 'https://ror.org/03dnd4369', 'pt', 1, 'https://ror.org/03dnd4369 Fundação de Economia e Estatística Siegfried Emanuel Heuser'),
(45310, 'https://ror.org/011sq9629', 'pt', 1, 'https://ror.org/011sq9629 Sociedade Brasileira de Biofísica'),
(45311, 'https://ror.org/02z4s0665', 'pt', 1, 'https://ror.org/02z4s0665 Instituto de Controle do Espaço Aéreo'),
(45312, 'https://ror.org/033kk6r78', 'pt', 1, 'https://ror.org/033kk6r78 Instituto Rio Grandense do Arroz'),
(45313, 'https://ror.org/04pk33v91', 'en', 1, 'https://ror.org/04pk33v91 Brazilian Computer Society Sociedade Brasileira de Computação'),
(45314, 'https://ror.org/00bz97317', 'no_lang_code', 1, 'https://ror.org/00bz97317 UNIFAVIP'),
(45315, 'https://ror.org/02xata679', 'pt', 1, 'https://ror.org/02xata679 Sociedade Brasileira de Economia Administração e Sociologia Rural'),
(45316, 'https://ror.org/01hjd1605', 'pt', 1, 'https://ror.org/01hjd1605 Escola Técnica de eletrônic'),
(45317, 'https://ror.org/05062q345', 'pt', 1, 'https://ror.org/05062q345 Sociedade Brasileira de Educação Matemática'),
(45318, 'https://ror.org/02dsr2x66', 'pt', 1, 'https://ror.org/02dsr2x66 Fundação Liberato'),
(45319, 'https://ror.org/03ejhx730', 'pt', 1, 'https://ror.org/03ejhx730 Sociedade Brasileira de Recursos Genéticos'),
(45320, 'https://ror.org/0093zaj76', 'pt', 1, 'https://ror.org/0093zaj76 Instituto de Ensino e Pesquisa Santa Casa'),
(45321, 'https://ror.org/02a8cr479', 'pt', 1, 'https://ror.org/02a8cr479 Sociedade de Anestesiologia do Rio Grande do Sul'),
(45322, 'https://ror.org/036z8q506', 'pt', 1, 'https://ror.org/036z8q506 Sociedade Brasileira de Ensino de Biologia'),
(45323, 'https://ror.org/03gf7q691', 'pt', 1, 'https://ror.org/03gf7q691 Faculdade Única'),
(45324, 'https://ror.org/02z5rpx40', 'pt', 1, 'https://ror.org/02z5rpx40 Sociedade Brasileira de Geofísica'),
(45325, 'https://ror.org/01e6tbq77', 'pt', 1, 'https://ror.org/01e6tbq77 Sociedade Latino Americana de Biomateriais e Órgãos Artificiais'),
(45326, 'https://ror.org/03mmx9g76', 'pt', 1, 'https://ror.org/03mmx9g76 Sociedade Brasileira de História da Matemática'),
(45327, 'https://ror.org/01vfj8s64', 'de', 1, 'https://ror.org/01vfj8s64 Arge Ökologie'),
(45328, 'https://ror.org/05r2e5c27', 'pt', 1, 'https://ror.org/05r2e5c27 Sociedade Brasileira de Pesquisa Operacional'),
(45329, 'https://ror.org/030j5vf66', 'en', 1, 'https://ror.org/030j5vf66 Statistics Austria Statistik Austria'),
(45330, 'https://ror.org/0438tby89', 'pt', 1, 'https://ror.org/0438tby89 Sociedade Brasileira de Cardiologia'),
(45331, 'https://ror.org/02nqcmv36', 'no_lang_code', 1, 'https://ror.org/02nqcmv36 DuPont (Finland)'),
(45332, 'https://ror.org/00114hq16', 'pt', 1, 'https://ror.org/00114hq16 Centro Nacional de Monitoramento e Alertas de Desastres Naturais'),
(45333, 'https://ror.org/05ttsqg93', 'no_lang_code', 1, 'https://ror.org/05ttsqg93 Medtronic (Germany)'),
(45334, 'https://ror.org/01kg4f866', 'no_lang_code', 1, 'https://ror.org/01kg4f866 EchoStar (United Kingdom)'),
(45335, 'https://ror.org/052mh6j19', 'no_lang_code', 1, 'https://ror.org/052mh6j19 DenseLight Semiconductors (Singapore)');
INSERT INTO `rors` VALUES
(45336, 'https://ror.org/022wcve15', 'no_lang_code', 1, 'https://ror.org/022wcve15 De Beers (United Kingdom)'),
(45337, 'https://ror.org/02q11zr32', 'no_lang_code', 1, 'https://ror.org/02q11zr32 DMG Mori (Germany)'),
(45338, 'https://ror.org/050332k40', 'no_lang_code', 1, 'https://ror.org/050332k40 Johnson Controls (Canada)'),
(45339, 'https://ror.org/04hpp8k10', 'no_lang_code', 1, 'https://ror.org/04hpp8k10 Dana (United Kingdom)'),
(45340, 'https://ror.org/004hb4039', 'no_lang_code', 1, 'https://ror.org/004hb4039 Danfoss (China)'),
(45341, 'https://ror.org/03cbf2j49', 'no_lang_code', 1, 'https://ror.org/03cbf2j49 Danfoss (Germany)'),
(45342, 'https://ror.org/049jgef55', 'no_lang_code', 1, 'https://ror.org/049jgef55 Danfoss (United States)'),
(45343, 'https://ror.org/00qxrgg46', 'no_lang_code', 1, 'https://ror.org/00qxrgg46 Deutsche Telekom (United Kingdom)'),
(45344, 'https://ror.org/0487bnx60', 'no_lang_code', 1, 'https://ror.org/0487bnx60 Doosan Machine Tools (United States)'),
(45345, 'https://ror.org/000va8z45', 'no_lang_code', 1, 'https://ror.org/000va8z45 Dornier (United States)'),
(45346, 'https://ror.org/01yvg9s13', 'no_lang_code', 1, 'https://ror.org/01yvg9s13 DuPont (China)'),
(45347, 'https://ror.org/03d6z8b09', 'no_lang_code', 1, 'https://ror.org/03d6z8b09 Diageo (United Kingdom)'),
(45348, 'https://ror.org/04safzk84', 'no_lang_code', 1, 'https://ror.org/04safzk84 Dynea (Austria)'),
(45349, 'https://ror.org/03gx8w417', 'no_lang_code', 1, 'https://ror.org/03gx8w417 Bridgepoint (United States)'),
(45350, 'https://ror.org/04a0vqv69', 'no_lang_code', 1, 'https://ror.org/04a0vqv69 Dow Chemical (Brasil)'),
(45351, 'https://ror.org/04f1r9295', 'no_lang_code', 1, 'https://ror.org/04f1r9295 Dow Chemical (China)'),
(45352, 'https://ror.org/01gw9ve49', 'no_lang_code', 1, 'https://ror.org/01gw9ve49 EagleBurgmann (Japan)'),
(45353, 'https://ror.org/04z6j1174', 'no_lang_code', 1, 'https://ror.org/04z6j1174 Rambus (United Kingdom)'),
(45354, 'https://ror.org/01abqd782', 'no_lang_code', 1, 'https://ror.org/01abqd782 Echostar (Ukraine)'),
(45355, 'https://ror.org/03f1m2f12', 'no_lang_code', 1, 'https://ror.org/03f1m2f12 Dräger (United Kingdom)'),
(45356, 'https://ror.org/0572qa274', 'no_lang_code', 1, 'https://ror.org/0572qa274 Ecolab (Germany)'),
(45357, 'https://ror.org/01rgzab50', 'no_lang_code', 1, 'https://ror.org/01rgzab50 Eaton (United Kingdom)'),
(45358, 'https://ror.org/011nyg256', 'no_lang_code', 1, 'https://ror.org/011nyg256 Eaton (Austria)'),
(45359, 'https://ror.org/003p2k248', 'no_lang_code', 1, 'https://ror.org/003p2k248 Pirelli (Germany)'),
(45360, 'https://ror.org/04zq68n70', 'no_lang_code', 1, 'https://ror.org/04zq68n70 EnerSys (Switzerland)'),
(45361, 'https://ror.org/0334rzs32', 'no_lang_code', 1, 'https://ror.org/0334rzs32 Eaton (Switzerland)'),
(45362, 'https://ror.org/05hm2f981', 'no_lang_code', 1, 'https://ror.org/05hm2f981 EcoSynthetix (United States)'),
(45363, 'https://ror.org/00fymn751', 'no_lang_code', 1, 'https://ror.org/00fymn751 General Electric (Israel)'),
(45364, 'https://ror.org/0515mqy80', 'no_lang_code', 1, 'https://ror.org/0515mqy80 Nortek (United Kingdom)'),
(45365, 'https://ror.org/01149dp52', 'no_lang_code', 1, 'https://ror.org/01149dp52 eBay (South Korea)'),
(45366, 'https://ror.org/00vfz8743', 'no_lang_code', 1, 'https://ror.org/00vfz8743 Honeywell (Germany)'),
(45367, 'https://ror.org/00pvn1h36', 'no_lang_code', 1, 'https://ror.org/00pvn1h36 Eli Lilly (Ireland)'),
(45368, 'https://ror.org/00j8cdz25', 'no_lang_code', 1, 'https://ror.org/00j8cdz25 Illinois Tool Works (Germany)'),
(45369, 'https://ror.org/02vva9s75', 'no_lang_code', 1, 'https://ror.org/02vva9s75 EFD Induction (Germany)'),
(45370, 'https://ror.org/02p4cdb03', 'no_lang_code', 1, 'https://ror.org/02p4cdb03 Arotech (Israel)'),
(45371, 'https://ror.org/055s23s22', 'no_lang_code', 1, 'https://ror.org/055s23s22 Electrolux (Australia)'),
(45372, 'https://ror.org/04fzah020', 'no_lang_code', 1, 'https://ror.org/04fzah020 Steris (United Kingdom)'),
(45373, 'https://ror.org/01xjvwt10', 'no_lang_code', 1, 'https://ror.org/01xjvwt10 Electrolux (United Kingdom)'),
(45374, 'https://ror.org/03thg1m49', 'no_lang_code', 1, 'https://ror.org/03thg1m49 Electrolux (Germany)'),
(45375, 'https://ror.org/007nce146', 'no_lang_code', 1, 'https://ror.org/007nce146 Emergent BioSolutions (United Kingdom)'),
(45376, 'https://ror.org/02cwjwn07', 'no_lang_code', 1, 'https://ror.org/02cwjwn07 Emerson (China)'),
(45377, 'https://ror.org/04t7ypr69', 'no_lang_code', 1, 'https://ror.org/04t7ypr69 Elekta (United Kingdom)'),
(45378, 'https://ror.org/02bcmhv69', 'no_lang_code', 1, 'https://ror.org/02bcmhv69 Electrovaya (Germany)'),
(45379, 'https://ror.org/035t0dt07', 'no_lang_code', 1, 'https://ror.org/035t0dt07 TDK (Singapore)'),
(45380, 'https://ror.org/04s1pd637', 'no_lang_code', 1, 'https://ror.org/04s1pd637 Element Six (South Africa)'),
(45381, 'https://ror.org/05ec38531', 'no_lang_code', 1, 'https://ror.org/05ec38531 Element Six (Germany)'),
(45382, 'https://ror.org/0150aaa23', 'no_lang_code', 1, 'https://ror.org/0150aaa23 Excelitas Technologies (Singapore)'),
(45383, 'https://ror.org/030cs0206', 'no_lang_code', 1, 'https://ror.org/030cs0206 Asus (China) 華碩電腦股份有限公司'),
(45384, 'https://ror.org/04jrd4q87', 'no_lang_code', 1, 'https://ror.org/04jrd4q87 Expro (United States)'),
(45385, 'https://ror.org/03gsjv132', 'no_lang_code', 1, 'https://ror.org/03gsjv132 Sandvik (Germany)'),
(45386, 'https://ror.org/010brrt54', 'no_lang_code', 1, 'https://ror.org/010brrt54 Faurecia (United States)'),
(45387, 'https://ror.org/023pvcn20', 'no_lang_code', 1, 'https://ror.org/023pvcn20 Cadence Design Systems (United Kingdom)'),
(45388, 'https://ror.org/009dxjw45', 'en', 1, 'https://ror.org/009dxjw45 Faurecia (Germany)'),
(45389, 'https://ror.org/01ffhf815', 'no_lang_code', 1, 'https://ror.org/01ffhf815 Flex (Germany)'),
(45390, 'https://ror.org/00xttnp21', 'no_lang_code', 1, 'https://ror.org/00xttnp21 Flex (Mauritius)'),
(45391, 'https://ror.org/05wqk8p58', 'no_lang_code', 1, 'https://ror.org/05wqk8p58 MACOM (Japan)'),
(45392, 'https://ror.org/039t7ab07', 'no_lang_code', 1, 'https://ror.org/039t7ab07 Frequentis (Germany)'),
(45393, 'https://ror.org/04rzhfa50', 'no_lang_code', 1, 'https://ror.org/04rzhfa50 Fresenius Kabi (United States)'),
(45394, 'https://ror.org/00c7qwq82', 'no_lang_code', 1, 'https://ror.org/00c7qwq82 Freudenberg (United States)'),
(45395, 'https://ror.org/03bq9hz14', 'no_lang_code', 1, 'https://ror.org/03bq9hz14 Federal Mogul (Germany)'),
(45396, 'https://ror.org/04qg98577', 'no_lang_code', 1, 'https://ror.org/04qg98577 Federal Mogul (United Kingdom)'),
(45397, 'https://ror.org/01chnvp81', 'no_lang_code', 1, 'https://ror.org/01chnvp81 Flow International Corporation (Germany)'),
(45398, 'https://ror.org/04max0939', 'no_lang_code', 1, 'https://ror.org/04max0939 Fujitsu (Germany) 富士通株式会社'),
(45399, 'https://ror.org/01vvkvt81', 'no_lang_code', 1, 'https://ror.org/01vvkvt81 Sulzer (Germany)'),
(45400, 'https://ror.org/023qkzz98', 'no_lang_code', 1, 'https://ror.org/023qkzz98 Gemalto (United Kingdom)'),
(45401, 'https://ror.org/042q91e23', 'no_lang_code', 1, 'https://ror.org/042q91e23 Kaiam Corporation (United Kingdom)'),
(45402, 'https://ror.org/00vexz648', 'no_lang_code', 1, 'https://ror.org/00vexz648 Mahindra Forgings (Germany)'),
(45403, 'https://ror.org/026kmj910', 'no_lang_code', 1, 'https://ror.org/026kmj910 ThyssenKrupp (Liechtenstein)'),
(45404, 'https://ror.org/05fsqxg82', 'no_lang_code', 1, 'https://ror.org/05fsqxg82 Exide Technologies (Germany)'),
(45405, 'https://ror.org/01mycfe72', 'no_lang_code', 1, 'https://ror.org/01mycfe72 AT&T (Israel)'),
(45406, 'https://ror.org/05jgtkc28', 'no_lang_code', 1, 'https://ror.org/05jgtkc28 Baxter (Germany)'),
(45407, 'https://ror.org/04fm2yw69', 'no_lang_code', 1, 'https://ror.org/04fm2yw69 GKN (United States)'),
(45408, 'https://ror.org/00148fb49', 'no_lang_code', 1, 'https://ror.org/00148fb49 Merck (United Kingdom)'),
(45409, 'https://ror.org/02prth598', 'no_lang_code', 1, 'https://ror.org/02prth598 Nidec (Germany)'),
(45410, 'https://ror.org/0272aey45', 'no_lang_code', 1, 'https://ror.org/0272aey45 Glen Dimplex (Germany)'),
(45411, 'https://ror.org/00cnk1752', 'no_lang_code', 1, 'https://ror.org/00cnk1752 W. L. Gore & Associates (Japan)'),
(45412, 'https://ror.org/01gjjxa05', 'no_lang_code', 1, 'https://ror.org/01gjjxa05 International Game Technology (Germany)'),
(45413, 'https://ror.org/03n8fxy07', 'no_lang_code', 1, 'https://ror.org/03n8fxy07 Engie (United States)'),
(45414, 'https://ror.org/01svrpv75', 'no_lang_code', 1, 'https://ror.org/01svrpv75 TE Connectivity (Denmark)'),
(45415, 'https://ror.org/01jn7ba52', 'no_lang_code', 1, 'https://ror.org/01jn7ba52 Halliburton (United Kingdom)'),
(45416, 'https://ror.org/0274wgp76', 'no_lang_code', 1, 'https://ror.org/0274wgp76 Gold Peak Industries (United Kingdom)'),
(45417, 'https://ror.org/01k2z4866', 'no_lang_code', 1, 'https://ror.org/01k2z4866 Harman (China)'),
(45418, 'https://ror.org/05fzcfb55', 'no_lang_code', 1, 'https://ror.org/05fzcfb55 Harman (United Kingdom)'),
(45419, 'https://ror.org/019pmpn80', 'no_lang_code', 1, 'https://ror.org/019pmpn80 Stryker (United Kingdom)'),
(45420, 'https://ror.org/05f6vr294', 'no_lang_code', 1, 'https://ror.org/05f6vr294 Seoyon E-Hwa (South Korea)'),
(45421, 'https://ror.org/05fesrm20', 'no_lang_code', 1, 'https://ror.org/05fesrm20 Heraeus (United States)'),
(45422, 'https://ror.org/03mdyrb51', 'no_lang_code', 1, 'https://ror.org/03mdyrb51 Hillrom (Singapore)'),
(45423, 'https://ror.org/01e4dyg78', 'no_lang_code', 1, 'https://ror.org/01e4dyg78 Honeywell (Australia)'),
(45424, 'https://ror.org/03zxsvn45', 'no_lang_code', 1, 'https://ror.org/03zxsvn45 Dover (Canada)'),
(45425, 'https://ror.org/02c3f7x68', 'no_lang_code', 1, 'https://ror.org/02c3f7x68 Hoerbiger (Germany)'),
(45426, 'https://ror.org/058ryjm64', 'no_lang_code', 1, 'https://ror.org/058ryjm64 Hoerbiger (Austria)'),
(45427, 'https://ror.org/05wstmm20', 'no_lang_code', 1, 'https://ror.org/05wstmm20 Horiba (Germany)'),
(45428, 'https://ror.org/05ckpfd66', 'no_lang_code', 1, 'https://ror.org/05ckpfd66 Hewlett-Packard (Israel)'),
(45429, 'https://ror.org/05sam1g35', 'no_lang_code', 1, 'https://ror.org/05sam1g35 Hovione (China)'),
(45430, 'https://ror.org/05jrmm111', 'no_lang_code', 1, 'https://ror.org/05jrmm111 Hexagon (Germany)'),
(45431, 'https://ror.org/01wqp7c62', 'no_lang_code', 1, 'https://ror.org/01wqp7c62 Hexagon (Switzerland)'),
(45432, 'https://ror.org/01wt6rn90', 'no_lang_code', 1, 'https://ror.org/01wt6rn90 Hewlett-Packard (Austria)'),
(45433, 'https://ror.org/0465gqs65', 'no_lang_code', 1, 'https://ror.org/0465gqs65 Legrand (Australia)'),
(45434, 'https://ror.org/027g0hb56', 'no_lang_code', 1, 'https://ror.org/027g0hb56 Hitachi (Germany)'),
(45435, 'https://ror.org/016kvft77', 'no_lang_code', 1, 'https://ror.org/016kvft77 Hyundai Motors (South Korea) 현대자동차'),
(45436, 'https://ror.org/009z7vc79', 'no_lang_code', 1, 'https://ror.org/009z7vc79 Hyundai Card (South Korea) 현대카드'),
(45437, 'https://ror.org/02axkyn34', 'no_lang_code', 1, 'https://ror.org/02axkyn34 SK Group (Japan)'),
(45438, 'https://ror.org/03p5v7r13', 'no_lang_code', 1, 'https://ror.org/03p5v7r13 Newron Pharmaceuticals (United States)'),
(45439, 'https://ror.org/00rzpns50', 'no_lang_code', 1, 'https://ror.org/00rzpns50 Hyundai Steel (South Korea) 현대제철'),
(45440, 'https://ror.org/03bfapt22', 'no_lang_code', 1, 'https://ror.org/03bfapt22 International Game Technology (United Kingdom)'),
(45441, 'https://ror.org/050btbx23', 'no_lang_code', 1, 'https://ror.org/050btbx23 Hubbell (United Kingdom)'),
(45442, 'https://ror.org/02stn1573', 'no_lang_code', 1, 'https://ror.org/02stn1573 IHI Corporation (Germany)'),
(45443, 'https://ror.org/02mavrn48', 'no_lang_code', 1, 'https://ror.org/02mavrn48 Toshiba (South Korea) 株式会社東芝'),
(45444, 'https://ror.org/01dw3yn87', 'no_lang_code', 1, 'https://ror.org/01dw3yn87 IHS Markit (Australia)'),
(45445, 'https://ror.org/01zswhd24', 'no_lang_code', 1, 'https://ror.org/01zswhd24 Husqvarna (United Kingdom)'),
(45446, 'https://ror.org/04kz0fx24', 'no_lang_code', 1, 'https://ror.org/04kz0fx24 Innospec (United States)'),
(45447, 'https://ror.org/00h6s5242', 'no_lang_code', 1, 'https://ror.org/00h6s5242 Ineos (Switzerland)'),
(45448, 'https://ror.org/04vxxnr42', 'no_lang_code', 1, 'https://ror.org/04vxxnr42 General Electric (Argentina)'),
(45449, 'https://ror.org/00srxhm83', 'no_lang_code', 1, 'https://ror.org/00srxhm83 Zodiac Aerospace (United Kingdom)'),
(45450, 'https://ror.org/02c6c1603', 'no_lang_code', 1, 'https://ror.org/02c6c1603 Intellectual Ventures (Singapore)'),
(45451, 'https://ror.org/01d71b291', 'no_lang_code', 1, 'https://ror.org/01d71b291 British American Tobacco (Canada)'),
(45452, 'https://ror.org/041s2fp12', 'no_lang_code', 1, 'https://ror.org/041s2fp12 Inventec (China) 英業達'),
(45453, 'https://ror.org/053y02f02', 'no_lang_code', 1, 'https://ror.org/053y02f02 ITT (United Kingdom)'),
(45454, 'https://ror.org/005d42743', 'no_lang_code', 1, 'https://ror.org/005d42743 Illinois Tool Works (Australia)'),
(45455, 'https://ror.org/024dzge57', 'no_lang_code', 1, 'https://ror.org/024dzge57 Sunstar (Germany)'),
(45456, 'https://ror.org/03ybwam46', 'no_lang_code', 1, 'https://ror.org/03ybwam46 Integra LifeSciences (Ireland)'),
(45457, 'https://ror.org/01gk2j051', 'no_lang_code', 1, 'https://ror.org/01gk2j051 Magna International (Germany)'),
(45458, 'https://ror.org/040y3df60', 'no_lang_code', 1, 'https://ror.org/040y3df60 Ipsen (Ireland)'),
(45459, 'https://ror.org/04f89zf73', 'no_lang_code', 1, 'https://ror.org/04f89zf73 Johnson & Johnson (Brazil)'),
(45460, 'https://ror.org/034ca4k86', 'no_lang_code', 1, 'https://ror.org/034ca4k86 Johnson & Johnson (Australia)'),
(45461, 'https://ror.org/00hcj0e04', 'no_lang_code', 1, 'https://ror.org/00hcj0e04 Johnson Controls (Switzerland)'),
(45462, 'https://ror.org/048ss3773', 'no_lang_code', 1, 'https://ror.org/048ss3773 Krüger (Germany)'),
(45463, 'https://ror.org/0131hr478', 'no_lang_code', 1, 'https://ror.org/0131hr478 Johnson Matthey (Germany)'),
(45464, 'https://ror.org/00ta62x83', 'no_lang_code', 1, 'https://ror.org/00ta62x83 Japan Aviation Electronics Industry (Taiwan)'),
(45465, 'https://ror.org/042tf0p61', 'no_lang_code', 1, 'https://ror.org/042tf0p61 Sosei Group (Japan)'),
(45466, 'https://ror.org/05xck0p20', 'no_lang_code', 1, 'https://ror.org/05xck0p20 Jordan Valley Semiconductors (Israel)'),
(45467, 'https://ror.org/05kt82m30', 'no_lang_code', 1, 'https://ror.org/05kt82m30 Isra Vision (Germany)'),
(45468, 'https://ror.org/028kj2697', 'no_lang_code', 1, 'https://ror.org/028kj2697 ITT (Germany)'),
(45469, 'https://ror.org/010s5m858', 'no_lang_code', 1, 'https://ror.org/010s5m858 Olympus (United Kingdom)'),
(45470, 'https://ror.org/01155gk87', 'no_lang_code', 1, 'https://ror.org/01155gk87 Keysight Technologies (Singapore)'),
(45471, 'https://ror.org/00bm3g510', 'no_lang_code', 1, 'https://ror.org/00bm3g510 Kaneka (United States)'),
(45472, 'https://ror.org/0452qzk74', 'no_lang_code', 1, 'https://ror.org/0452qzk74 Desma (Germany)'),
(45473, 'https://ror.org/01q7tkf98', 'no_lang_code', 1, 'https://ror.org/01q7tkf98 KME (United States)'),
(45474, 'https://ror.org/00ynxc274', 'no_lang_code', 1, 'https://ror.org/00ynxc274 Kao Corporation (Germany)'),
(45475, 'https://ror.org/01qkmhj58', 'no_lang_code', 1, 'https://ror.org/01qkmhj58 Kao Corporation (United States)'),
(45476, 'https://ror.org/01r1v8s38', 'no_lang_code', 1, 'https://ror.org/01r1v8s38 Knorr-Bremse (Austria)'),
(45477, 'https://ror.org/05fzz0q30', 'no_lang_code', 1, 'https://ror.org/05fzz0q30 Komet Group (Germany)'),
(45478, 'https://ror.org/05g6qd913', 'no_lang_code', 1, 'https://ror.org/05g6qd913 Knorr-Bremse (United Kingdom)'),
(45479, 'https://ror.org/05j4xxv23', 'no_lang_code', 1, 'https://ror.org/05j4xxv23 KRONOS (Germany)'),
(45480, 'https://ror.org/019pzpd68', 'no_lang_code', 1, 'https://ror.org/019pzpd68 Kodak (Israel)'),
(45481, 'https://ror.org/00tee0349', 'no_lang_code', 1, 'https://ror.org/00tee0349 Kodak (Japan)'),
(45482, 'https://ror.org/03amme506', 'no_lang_code', 1, 'https://ror.org/03amme506 Kohler (China) 科勒'),
(45483, 'https://ror.org/041t5sq72', 'no_lang_code', 1, 'https://ror.org/041t5sq72 JTEKT (United States)'),
(45484, 'https://ror.org/02jht7h37', 'no_lang_code', 1, 'https://ror.org/02jht7h37 Kohler (New Zealand)'),
(45485, 'https://ror.org/02kv9s375', 'no_lang_code', 1, 'https://ror.org/02kv9s375 KUKA (United States)'),
(45486, 'https://ror.org/05nz79105', 'no_lang_code', 1, 'https://ror.org/05nz79105 MBDA (Germany)'),
(45487, 'https://ror.org/00dzkv815', 'no_lang_code', 1, 'https://ror.org/00dzkv815 Ericsson LG (South Korea)'),
(45488, 'https://ror.org/05mh3sg80', 'no_lang_code', 1, 'https://ror.org/05mh3sg80 Leuco (United States)'),
(45489, 'https://ror.org/031b6ch69', 'no_lang_code', 1, 'https://ror.org/031b6ch69 Legrand (Germany)'),
(45490, 'https://ror.org/03ceqgg02', 'no_lang_code', 1, 'https://ror.org/03ceqgg02 Agfa-Gevaert (United States)'),
(45491, 'https://ror.org/00ag1vy72', 'no_lang_code', 1, 'https://ror.org/00ag1vy72 Liebherr (Austria)'),
(45492, 'https://ror.org/035vnjr65', 'no_lang_code', 1, 'https://ror.org/035vnjr65 Toshiba (Germany)'),
(45493, 'https://ror.org/05mmvmh32', 'no_lang_code', 1, 'https://ror.org/05mmvmh32 Thermo Fisher Scientific (Israel)'),
(45494, 'https://ror.org/04c6jsb22', 'no_lang_code', 1, 'https://ror.org/04c6jsb22 Leo Pharma (Ireland)'),
(45495, 'https://ror.org/03n4y8m86', 'no_lang_code', 1, 'https://ror.org/03n4y8m86 Lite-On Technology Corporation (Singapore)'),
(45496, 'https://ror.org/018ggen26', 'en', 1, 'https://ror.org/018ggen26 China Agricultural Museum'),
(45497, 'https://ror.org/03f915n15', 'fr', 1, 'https://ror.org/03f915n15 Institut National Polytechnique Félix Houphouët-Boigny'),
(45498, 'https://ror.org/04em0br16', 'en', 1, 'https://ror.org/04em0br16 Department of Agricultural Research & Technical Services'),
(45499, 'https://ror.org/018zm7341', 'en', 1, 'https://ror.org/018zm7341 Department of Environment and Natural Resources'),
(45500, 'https://ror.org/05wstjm18', 'es', 1, 'https://ror.org/05wstjm18 Academia Nacional de Ciencias de Bolivia'),
(45501, 'https://ror.org/02gfzp482', 'en', 1, 'https://ror.org/02gfzp482 Federal Institute for Education Development Федеральное государственное автономное учреждение Федеральный институт развития образования'),
(45502, 'https://ror.org/00hf3db96', 'no_lang_code', 1, 'https://ror.org/00hf3db96 Aerospace Testing Alliance (United States)'),
(45503, 'https://ror.org/03wnay029', 'no_lang_code', 1, 'https://ror.org/03wnay029 Abbott (United Kingdom)'),
(45504, 'https://ror.org/045rh7r61', 'fr', 1, 'https://ror.org/045rh7r61 Centre d''Étude et de Recherche de Djibouti'),
(45505, 'https://ror.org/03nd8bd86', 'es', 1, 'https://ror.org/03nd8bd86 Conferencia Episcopal Boliviana'),
(45506, 'https://ror.org/02qf65t43', 'en', 1, 'https://ror.org/02qf65t43 Food and Agricultural Research and Extension Institute'),
(45507, 'https://ror.org/03xkdb465', 'es', 1, 'https://ror.org/03xkdb465 Consejo Estatal Del Azucar'),
(45508, 'https://ror.org/00c1jzs80', 'en', 1, 'https://ror.org/00c1jzs80 Environment and Public Health Organisation'),
(45509, 'https://ror.org/03m8km719', 'en', 1, 'https://ror.org/03m8km719 Environmental Protection Agency'),
(45510, 'https://ror.org/024emee48', 'es', 1, 'https://ror.org/024emee48 Corporación Autónoma Regional de Los Valles del Sinu y del San Jorge'),
(45511, 'https://ror.org/04s5gc466', 'en', 1, 'https://ror.org/04s5gc466 Mongolian Nature and Environment Consortium'),
(45512, 'https://ror.org/05e0get33', 'en', 1, 'https://ror.org/05e0get33 Alameda County Library'),
(45513, 'https://ror.org/04d9trb33', 'es', 1, 'https://ror.org/04d9trb33 Corporación para el Desarrollo Sostenible del Urabá'),
(45514, 'https://ror.org/02y7h5c73', 'en', 1, 'https://ror.org/02y7h5c73 Centre National d''Applications des Recherches Pharmaceutiques National Application Center for Pharmaceutical Research'),
(45515, 'https://ror.org/05n3ezj46', 'en', 1, 'https://ror.org/05n3ezj46 Annapurna Neurological Institute and Allied Sciences अन्नपूर्ण न्यूरोलोजिकल ईन्स्टीच्युट एण्ड एलाईड साईन्सेस'),
(45516, 'https://ror.org/023n1np13', 'en', 1, 'https://ror.org/023n1np13 Arannayk Foundation'),
(45517, 'https://ror.org/007tn2w26', 'no_lang_code', 1, 'https://ror.org/007tn2w26 Mycofarm (Singapore)'),
(45518, 'https://ror.org/03e0eqg93', 'en', 1, 'https://ror.org/03e0eqg93 Austin Public Library'),
(45519, 'https://ror.org/04zj2qc05', 'en', 1, 'https://ror.org/04zj2qc05 Asia Network for Sustainable Agriculture and Bioresources'),
(45520, 'https://ror.org/02g1g7v23', 'no_lang_code', 1, 'https://ror.org/02g1g7v23 IDEX Corporation (Germany)'),
(45521, 'https://ror.org/05cd0vn93', 'en', 1, 'https://ror.org/05cd0vn93 Dairy Farming Promotion Organization'),
(45522, 'https://ror.org/0231jxj79', 'en', 1, 'https://ror.org/0231jxj79 Associated Press'),
(45523, 'https://ror.org/0035wxz79', 'en', 1, 'https://ror.org/0035wxz79 Dambari Wildlife Trust'),
(45524, 'https://ror.org/04qj89w85', 'en', 1, 'https://ror.org/04qj89w85 Danish Agency for Culture and Palaces'),
(45525, 'https://ror.org/047ywjc69', 'es', 1, 'https://ror.org/047ywjc69 Centro Cooperativista Uruguayo'),
(45526, 'https://ror.org/001ke5c68', 'en', 1, 'https://ror.org/001ke5c68 Department of Agriculture'),
(45527, 'https://ror.org/023jcww95', 'es', 1, 'https://ror.org/023jcww95 Centro de Excelencia en Procesos y Productos de Córdoba'),
(45528, 'https://ror.org/00v57z525', 'en', 1, 'https://ror.org/00v57z525 Bangladesh Livestock Research Institute'),
(45529, 'https://ror.org/03ke6ew70', 'en', 1, 'https://ror.org/03ke6ew70 Department of Fisheries'),
(45530, 'https://ror.org/005hdgp31', 'en', 1, 'https://ror.org/005hdgp31 Basque Center for Materials, Applications and Nanostructures'),
(45531, 'https://ror.org/026x09x35', 'no_lang_code', 1, 'https://ror.org/026x09x35 Deutsches Patent- und Markenamt German Patent and Trade Mark Office (Germany)'),
(45532, 'https://ror.org/01hcbtz52', 'no_lang_code', 1, 'https://ror.org/01hcbtz52 Dexin (Uruguay)'),
(45533, 'https://ror.org/03aefdx31', 'en', 1, 'https://ror.org/03aefdx31 Beijing Institute of Education 北京教育学院'),
(45534, 'https://ror.org/04j55bg94', 'de', 1, 'https://ror.org/04j55bg94 Bibliothek des Wissenschaftsparks Albert Einstein'),
(45535, 'https://ror.org/04ggfw624', 'en', 1, 'https://ror.org/04ggfw624 Institute of Chemistry, Komi Science Center Коми научный центр УрО РАН'),
(45536, 'https://ror.org/025ejqq45', 'en', 1, 'https://ror.org/025ejqq45 BirdLife International'),
(45537, 'https://ror.org/01p8wcy85', 'en', 1, 'https://ror.org/01p8wcy85 Institute of Economic Forecasting Институт народнохозяйственного прогнозирования Российской Академии Наук'),
(45538, 'https://ror.org/028m66c44', 'en', 1, 'https://ror.org/028m66c44 Donetsk Institute for Physics and Engineering named after O.O. Galkin Донецкий физико-технический институт им. А.А.Галкина'),
(45539, 'https://ror.org/039hpv827', 'en', 1, 'https://ror.org/039hpv827 Institute of Forest Science Федеральное государственное бюджетное учреждение науки Институт лесоведения Российской академии наук'),
(45540, 'https://ror.org/01gqnz112', 'en', 1, 'https://ror.org/01gqnz112 Vinogradov Institute of Geochemistry Институт геохимии им. А.П. Виноградова СО РАН'),
(45541, 'https://ror.org/017jh6627', 'en', 1, 'https://ror.org/017jh6627 Center for the Advancement of Natural Discoveries using Light Emission'),
(45542, 'https://ror.org/03b1v3160', 'en', 1, 'https://ror.org/03b1v3160 Zavaritsky Institute of Geology and Geochemistry Института геологии и геохимии им. академика А.Н. Заварицкого'),
(45543, 'https://ror.org/01j6zr344', 'en', 1, 'https://ror.org/01j6zr344 Ministry of Environment'),
(45544, 'https://ror.org/04qsp9f77', 'en', 1, 'https://ror.org/04qsp9f77 Catholic University Institute of Buea'),
(45545, 'https://ror.org/02v3q4f93', 'en', 1, 'https://ror.org/02v3q4f93 Center for Environmental and Geographic Information Services'),
(45546, 'https://ror.org/05skghf24', 'en', 1, 'https://ror.org/05skghf24 Institute of Geology Ufa Scientific Center Институт геологии Уфимского научного центра РАН'),
(45547, 'https://ror.org/00yxgk394', 'es', 1, 'https://ror.org/00yxgk394 ecOceánica'),
(45548, 'https://ror.org/00aq0fx21', 'es', 1, 'https://ror.org/00aq0fx21 Centro para la Investigación en Sistemas Sostenibles de Producción Agropecuaria'),
(45549, 'https://ror.org/04wbz7w60', 'en', 1, 'https://ror.org/04wbz7w60 Institute of History of Material Culture Институт истории материальной культуры РАН [править | править вики-текст]'),
(45550, 'https://ror.org/01qt3dj82', 'en', 1, 'https://ror.org/01qt3dj82 Institute of Immunology and Physiology Институт иммунологии и физиологии Уральского отделения РАН'),
(45551, 'https://ror.org/05wbh2085', 'en', 1, 'https://ror.org/05wbh2085 Department of Food Technology and Quality Control'),
(45552, 'https://ror.org/05a33r812', 'en', 1, 'https://ror.org/05a33r812 Market Economy Institute Институ́т пробле́м ры́нка Российской Академии наук'),
(45553, 'https://ror.org/02gb9y346', 'fr', 1, 'https://ror.org/02gb9y346 École Nationale Supérieure d''Agriculture'),
(45554, 'https://ror.org/00ggr8w08', 'fr', 1, 'https://ror.org/00ggr8w08 Institut de Technologie Alimentaire'),
(45555, 'https://ror.org/019xk7v05', 'es', 1, 'https://ror.org/019xk7v05 Fundación para la Educación y el Desarrollo Social'),
(45556, 'https://ror.org/00mj88198', 'en', 1, 'https://ror.org/00mj88198 Institute of Natural Resources, Ecology and Cryology Федеральное государственное бюджетное учреждение науки Институт природных ресурсов, экологии и криологии Сибирского отделения Российской академии наук'),
(45557, 'https://ror.org/05sve0f84', 'en', 1, 'https://ror.org/05sve0f84 Fundacion Hondureña de Investigación Agricola Honduras Foundation for Agricultural Research'),
(45558, 'https://ror.org/02nfvtw87', 'es', 1, 'https://ror.org/02nfvtw87 Instituto de Ecologia y Sistemática'),
(45559, 'https://ror.org/051c1fs51', 'es', 1, 'https://ror.org/051c1fs51 Fundación Oikos'),
(45560, 'https://ror.org/01tadt133', 'es', 1, 'https://ror.org/01tadt133 Fundación para el Desarrollo de la Ecología'),
(45561, 'https://ror.org/03s28ec08', 'en', 1, 'https://ror.org/03s28ec08 Institute of Precision Mechanics and Control Федеральное государственное бюджетное учреждение науки Институт проблем точной механики и управления'),
(45562, 'https://ror.org/02np7dp24', 'fr', 1, 'https://ror.org/02np7dp24 Institute Malgache De Recherches Appliquées'),
(45563, 'https://ror.org/04j7qp352', 'es', 1, 'https://ror.org/04j7qp352 Foundation for Integral Development Pacific Fundación para el Desarrollo Integral del Pacífico'),
(45564, 'https://ror.org/00wawdr98', 'en', 1, 'https://ror.org/00wawdr98 Kenya Agricultural and Livestock Research Organization'),
(45565, 'https://ror.org/02mx1ea71', 'en', 1, 'https://ror.org/02mx1ea71 Institute of Socio-Political Research Институт социально-политических исследований'),
(45566, 'https://ror.org/044xq3s49', 'pt', 1, 'https://ror.org/044xq3s49 Instituto Nacional de Investigação Pesqueira'),
(45567, 'https://ror.org/01mfqa039', 'es', 1, 'https://ror.org/01mfqa039 Fundación Pro Salud y Medio Ambiente'),
(45568, 'https://ror.org/051x4a456', 'en', 1, 'https://ror.org/051x4a456 Institute of Theoretical and Applied Electrodynamics Институт теоретической и прикладной электродинамики РАН'),
(45569, 'https://ror.org/05n2mzp75', 'en', 1, 'https://ror.org/05n2mzp75 Keystone Foundation'),
(45570, 'https://ror.org/05ab85w40', 'es', 1, 'https://ror.org/05ab85w40 Instituto de Investigaciones Avícolas'),
(45571, 'https://ror.org/0098ak319', 'en', 1, 'https://ror.org/0098ak319 Coconut Research Institute'),
(45572, 'https://ror.org/002vd5g50', 'en', 1, 'https://ror.org/002vd5g50 Research Station of the Russian Academy of Sciences in Bishkek Научная станция Российской академии наук в Бишкеке [править | править вики-текст]'),
(45573, 'https://ror.org/02qcpws31', 'en', 1, 'https://ror.org/02qcpws31 Ghana Wildlife Society'),
(45574, 'https://ror.org/021appb64', 'en', 1, 'https://ror.org/021appb64 King County Library System'),
(45575, 'https://ror.org/020e8vq13', 'en', 1, 'https://ror.org/020e8vq13 V.V. Vinogradov Russian Language Institute Институт русского языка имени В. В. Виноградова РАН'),
(45576, 'https://ror.org/00aesyf04', 'en', 1, 'https://ror.org/00aesyf04 Glendale Public Library'),
(45577, 'https://ror.org/016nx0z25', 'en', 1, 'https://ror.org/016nx0z25 Government Chemist Laboratory Agency'),
(45578, 'https://ror.org/00swrq011', 'pt', 1, 'https://ror.org/00swrq011 Instituto de Pesquisas Ecológicas'),
(45579, 'https://ror.org/01pq8wx80', 'en', 1, 'https://ror.org/01pq8wx80 Research and Production Complex Technological Centre федеральное государственное бюджетное учреждение Научно-производственный комплекс «Технологический центр'),
(45580, 'https://ror.org/05ad3wk38', 'en', 1, 'https://ror.org/05ad3wk38 State Research Institute for Restoration Государственный научно-исследовательский институт реставрации'),
(45581, 'https://ror.org/05k3mgz26', 'en', 1, 'https://ror.org/05k3mgz26 All-Russian Research Institute of Genetics and Farm Animal Breeding Федеральное государственное бюджетное научное учреждение Всероссийский научно-исследовательский институт генетики и разведения сельскохозяйственных животных'),
(45582, 'https://ror.org/043r5t677', 'en', 1, 'https://ror.org/043r5t677 Institute for Sustainable Development'),
(45583, 'https://ror.org/00y6k5y17', 'no_lang_code', 1, 'https://ror.org/00y6k5y17 Gweru Polytechnic Institute'),
(45584, 'https://ror.org/034s8ev31', 'es', 1, 'https://ror.org/034s8ev31 Instituto de Investigaciones en Ciencia y Tecnología de Materiales'),
(45585, 'https://ror.org/00qwbag55', 'en', 1, 'https://ror.org/00qwbag55 Gwinnett County Public Library'),
(45586, 'https://ror.org/033has646', 'pt', 1, 'https://ror.org/033has646 Instituto Marés'),
(45587, 'https://ror.org/031y5ny63', 'fr', 1, 'https://ror.org/031y5ny63 Laboratoire de Recherche et d’Analyses Médicales de la Fraternelle de la Gendarmerie Royale'),
(45588, 'https://ror.org/02ez6m968', 'es', 1, 'https://ror.org/02ez6m968 Instituto Nacional de Ciencias Agrícolas'),
(45589, 'https://ror.org/05pnsh228', 'en', 1, 'https://ror.org/05pnsh228 Russian Scientific Center of Surgery Российский Научный Центр Хирургии им. акад. Б.В. Петровского'),
(45590, 'https://ror.org/03sv0ep05', 'en', 1, 'https://ror.org/03sv0ep05 Heilongjiang Academy of Land Reclamation Sciences 黑龙江农林科技大学'),
(45591, 'https://ror.org/00z8ws214', 'en', 1, 'https://ror.org/00z8ws214 Institute of Materials for Electronics and Magnetism'),
(45592, 'https://ror.org/01q34dp24', 'en', 1, 'https://ror.org/01q34dp24 Povolzhsky Research Institute of Production and Processing of Meat and Dairy Products Поволжский НИИ производства и переработки мясомолочной продукции'),
(45593, 'https://ror.org/022ep0273', 'en', 1, 'https://ror.org/022ep0273 Herrick District Library'),
(45594, 'https://ror.org/020ttfd91', 'en', 1, 'https://ror.org/020ttfd91 Malaysian Cocoa Board'),
(45595, 'https://ror.org/02jsvfh24', 'en', 1, 'https://ror.org/02jsvfh24 Federal University Otuoke'),
(45596, 'https://ror.org/03evg0379', 'en', 1, 'https://ror.org/03evg0379 Higher Institute of Technologies and Applied Sciences Instituto Superior de Tecnologías y Ciencias Aplicadas'),
(45597, 'https://ror.org/0395cmt65', 'en', 1, 'https://ror.org/0395cmt65 Library System of Lancaster County'),
(45598, 'https://ror.org/04dn01t72', 'en', 1, 'https://ror.org/04dn01t72 Field Crops Research Institute'),
(45599, 'https://ror.org/01d08jk87', 'en', 1, 'https://ror.org/01d08jk87 BARKA Foundation'),
(45600, 'https://ror.org/04r5br045', 'no_lang_code', 1, 'https://ror.org/04r5br045 Imation (United States)'),
(45601, 'https://ror.org/040yw9w41', 'mg', 1, 'https://ror.org/040yw9w41 Madagasikara Voakajy'),
(45602, 'https://ror.org/01yhwa418', 'en', 1, 'https://ror.org/01yhwa418 Institute of Micro and Nanotechnology Instituto de Micro y Nanotecnología'),
(45603, 'https://ror.org/017bwjv47', 'es', 1, 'https://ror.org/017bwjv47 Instituto Boliviano de Ciencia y Tecnología Nuclear'),
(45604, 'https://ror.org/01c5ysq07', 'en', 1, 'https://ror.org/01c5ysq07 Forest Industry Research Institute Viện Nghiên cứu Công nghiệp rừng'),
(45605, 'https://ror.org/05h3y9565', 'es', 1, 'https://ror.org/05h3y9565 Instituto Colombiano Agropecuario'),
(45606, 'https://ror.org/00nk4ab75', 'no_lang_code', 1, 'https://ror.org/00nk4ab75 Mfantsiman Girls Secondary School'),
(45607, 'https://ror.org/02hgkrr64', 'en', 1, 'https://ror.org/02hgkrr64 Japan Patent Office 特許庁'),
(45608, 'https://ror.org/03mkjvs49', 'en', 1, 'https://ror.org/03mkjvs49 Jesuit Service Cambodia'),
(45609, 'https://ror.org/0287ba124', 'ms', 1, 'https://ror.org/0287ba124 INFOFISH'),
(45610, 'https://ror.org/03zxkth58', 'en', 1, 'https://ror.org/03zxkth58 Montgomery County Memorial Library System'),
(45611, 'https://ror.org/04sw4z761', 'en', 1, 'https://ror.org/04sw4z761 Moscow Technological Institute'),
(45612, 'https://ror.org/036fkkq18', 'en', 1, 'https://ror.org/036fkkq18 Fortune Institute of Technology 和春技術學院'),
(45613, 'https://ror.org/01dmzah58', 'en', 1, 'https://ror.org/01dmzah58 Foundation for Environment Climate and Technology'),
(45614, 'https://ror.org/026k6bc31', 'en', 1, 'https://ror.org/026k6bc31 Mount Prospect Public Library'),
(45615, 'https://ror.org/01zfjxj34', 'es', 1, 'https://ror.org/01zfjxj34 Ministerio de Agricultura y Ganadería de Costa Rica'),
(45616, 'https://ror.org/014rvs568', 'es', 1, 'https://ror.org/014rvs568 Ministerio de Desarrollo Agropecuario'),
(45617, 'https://ror.org/03dr35a85', 'pt', 1, 'https://ror.org/03dr35a85 Fundação Apolônio Salles de Desenvolvimento Educacional'),
(45618, 'https://ror.org/04c466w42', 'en', 1, 'https://ror.org/04c466w42 Mpala Research Center and Wildlife Foundation'),
(45619, 'https://ror.org/05hfhh611', 'en', 1, 'https://ror.org/05hfhh611 Kalamazoo Public Library'),
(45620, 'https://ror.org/04j820197', 'pt', 1, 'https://ror.org/04j820197 Fundação de Amparo à Pesquisa e Extensão Universitária'),
(45621, 'https://ror.org/01457ne20', 'en', 1, 'https://ror.org/01457ne20 Ministry of Agriculture Mechanisation and Irrigation Development'),
(45622, 'https://ror.org/04qnjas92', 'en', 1, 'https://ror.org/04qnjas92 Ministry of Agriculture and Forestry and Food'),
(45623, 'https://ror.org/02exbb429', 'en', 1, 'https://ror.org/02exbb429 Ministry of Agro Industry and Food Security'),
(45624, 'https://ror.org/0349bdx32', 'pt', 1, 'https://ror.org/0349bdx32 Fundação Instituto de Pesca do Estado do Rio de Janeiro'),
(45625, 'https://ror.org/028b28438', 'es', 1, 'https://ror.org/028b28438 Fundacion Biodiversa Colombia'),
(45626, 'https://ror.org/02y05bg81', 'en', 1, 'https://ror.org/02y05bg81 Nigerian Institute For Oil Palm Reasearch'),
(45627, 'https://ror.org/04zpf5j19', 'en', 1, 'https://ror.org/04zpf5j19 Ministry of Agriculture and Livestock'),
(45628, 'https://ror.org/0565tgh20', 'en', 1, 'https://ror.org/0565tgh20 Ministry of Agriculture and Forests'),
(45629, 'https://ror.org/03k6h6357', 'en', 1, 'https://ror.org/03k6h6357 Museum of Malawi'),
(45630, 'https://ror.org/03xr77151', 'en', 1, 'https://ror.org/03xr77151 Myanmar Timber Enterprise'),
(45631, 'https://ror.org/05chjmv84', 'en', 1, 'https://ror.org/05chjmv84 Nigerian Stored Products Research Institute'),
(45632, 'https://ror.org/050f9s475', 'en', 1, 'https://ror.org/050f9s475 NM Sadguru Water and Development Foundation'),
(45633, 'https://ror.org/02vnhrp96', 'en', 1, 'https://ror.org/02vnhrp96 IGAD Sheikh Technical Veterinary School and Reference Centre'),
(45634, 'https://ror.org/001pe6j19', 'es', 1, 'https://ror.org/001pe6j19 Ministerio de Ganadería Agricultura y Pesca'),
(45635, 'https://ror.org/04rcfgv74', 'en', 1, 'https://ror.org/04rcfgv74 Ministry of Agriculture Forestry and Fisheries ក្រសួងកសិកម្ម រុក្ខាប្រមាញ់ និងនេសាទ'),
(45636, 'https://ror.org/02cc83x35', 'en', 1, 'https://ror.org/02cc83x35 Nimbkar Agricultural Research Institute'),
(45637, 'https://ror.org/03m71gb52', 'en', 1, 'https://ror.org/03m71gb52 Bangladesh Sericulture Research and Training Institute'),
(45638, 'https://ror.org/0338wbp74', 'en', 1, 'https://ror.org/0338wbp74 Small Industries Development Organisation'),
(45639, 'https://ror.org/028hbmh41', 'en', 1, 'https://ror.org/028hbmh41 Nashua Public Library'),
(45640, 'https://ror.org/025xz1z61', 'en', 1, 'https://ror.org/025xz1z61 National Agricultural Research Institute'),
(45641, 'https://ror.org/02hz8mm45', 'fr', 1, 'https://ror.org/02hz8mm45 Institut de Recherches Géologiques et Minières Institute of Geological and Mining Research'),
(45642, 'https://ror.org/03tk15k72', 'en', 1, 'https://ror.org/03tk15k72 Ministry of Natural Resources'),
(45643, 'https://ror.org/02c7s8b77', 'en', 1, 'https://ror.org/02c7s8b77 National Archives and Library of Ethiopia'),
(45644, 'https://ror.org/00s2n7q75', 'en', 1, 'https://ror.org/00s2n7q75 Office de l''elevage et des pâturages Office of Livestock and Pasture'),
(45645, 'https://ror.org/00dv34a34', 'en', 1, 'https://ror.org/00dv34a34 National Centre for Genetic Resources and Biotechnology'),
(45646, 'https://ror.org/007zjjv25', 'en', 1, 'https://ror.org/007zjjv25 Monmouth County Library'),
(45647, 'https://ror.org/03qmn8977', 'en', 1, 'https://ror.org/03qmn8977 Operation Wallacea Trust'),
(45648, 'https://ror.org/05vtekv74', 'en', 1, 'https://ror.org/05vtekv74 Montgomery City County Public Library'),
(45649, 'https://ror.org/04p4abm19', 'en', 1, 'https://ror.org/04p4abm19 National Cereals Research Institute'),
(45650, 'https://ror.org/042ww8n14', 'en', 1, 'https://ror.org/042ww8n14 Center for Speech Pathology and Neurorehabilitation Центр паталогии речи и нейрореабилитации. Разработка сайта'),
(45651, 'https://ror.org/03ea8hp29', 'fr', 1, 'https://ror.org/03ea8hp29 Université d''Agriculture de Kétou'),
(45652, 'https://ror.org/01b7car24', 'en', 1, 'https://ror.org/01b7car24 Pakistan Nuclear Regulatory Authority پاکستان نيؤكلر ريگيلرٹوى اثھارٹى'),
(45653, 'https://ror.org/01zwme063', 'en', 1, 'https://ror.org/01zwme063 Central Laboratory of the National Veterinary Sanitation Улсын Мал Эмнэлэг Ариун Цэврийн Төв Лаборатори.'),
(45654, 'https://ror.org/04vc08p32', 'en', 1, 'https://ror.org/04vc08p32 National Defence College Kenya'),
(45655, 'https://ror.org/00em2wb15', 'en', 1, 'https://ror.org/00em2wb15 Palm Beach County Library System'),
(45656, 'https://ror.org/00zrjgm10', 'en', 1, 'https://ror.org/00zrjgm10 State Intellectual Property Office 中华人民共和国国家知识产权局'),
(45657, 'https://ror.org/02b8xb410', 'en', 1, 'https://ror.org/02b8xb410 National Food Technology Research Centre'),
(45658, 'https://ror.org/006afd344', 'en', 1, 'https://ror.org/006afd344 Sunnyvale Public Library'),
(45659, 'https://ror.org/05ed6fr34', 'en', 1, 'https://ror.org/05ed6fr34 Peter White Public Library'),
(45660, 'https://ror.org/058yzcs11', 'en', 1, 'https://ror.org/058yzcs11 Tamil Nadu Forest Plantation (India)'),
(45661, 'https://ror.org/00cyam193', 'en', 1, 'https://ror.org/00cyam193 National Institute of Animal Sciences Viện Chăn Nuôi'),
(45662, 'https://ror.org/05naf8y09', 'fr', 1, 'https://ror.org/05naf8y09 Université Libre du Congo'),
(45663, 'https://ror.org/02nrkxp47', 'en', 1, 'https://ror.org/02nrkxp47 Acapulco Institute of Technology Instituto Tecnológico de Acapulco'),
(45664, 'https://ror.org/01gdpc846', 'es', 1, 'https://ror.org/01gdpc846 Instituto Tecnológico de Apizaco'),
(45665, 'https://ror.org/02w0rjw17', 'es', 1, 'https://ror.org/02w0rjw17 Planta Piloto de Procesos Industriales Microbiológicos'),
(45666, 'https://ror.org/00w0c8s08', 'en', 1, 'https://ror.org/00w0c8s08 National Library of Namibia'),
(45667, 'https://ror.org/00wyj1j88', 'en', 1, 'https://ror.org/00wyj1j88 Poornaprajna Institute of Scientific Research'),
(45668, 'https://ror.org/018fcax10', 'en', 1, 'https://ror.org/018fcax10 Kenya National Library Service'),
(45669, 'https://ror.org/049ps3c72', 'es', 1, 'https://ror.org/049ps3c72 Instituto Tecnológico de Cerro Azul'),
(45670, 'https://ror.org/04hjyd403', 'en', 1, 'https://ror.org/04hjyd403 Prince George''s County Memorial Library System'),
(45671, 'https://ror.org/04ch3q361', 'en', 1, 'https://ror.org/04ch3q361 Centre for Economic and Social Studies'),
(45672, 'https://ror.org/00k6bry75', 'es', 1, 'https://ror.org/00k6bry75 Instituto Tecnológico de Hermosillo'),
(45673, 'https://ror.org/00pjmpv91', 'es', 1, 'https://ror.org/00pjmpv91 Pro Cosara'),
(45674, 'https://ror.org/04fwdjg04', 'es', 1, 'https://ror.org/04fwdjg04 Instituto Tecnológico de Matamoros'),
(45675, 'https://ror.org/004gdd155', 'en', 1, 'https://ror.org/004gdd155 Belize Zoo'),
(45676, 'https://ror.org/0285rch92', 'en', 1, 'https://ror.org/0285rch92 National Zoonoses and Food Hygiene Research Centre'),
(45677, 'https://ror.org/047f7tv05', 'en', 1, 'https://ror.org/047f7tv05 Wildlife Conservation Society Laos'),
(45678, 'https://ror.org/04pnyb473', 'en', 1, 'https://ror.org/04pnyb473 Uganda National Health Research Organisation'),
(45679, 'https://ror.org/021mrbf63', 'id', 1, 'https://ror.org/021mrbf63 Pusat Penelitian dan Pengembangan Peternakan'),
(45680, 'https://ror.org/04np5cf89', 'en', 1, 'https://ror.org/04np5cf89 Tompkins County Public Library'),
(45681, 'https://ror.org/0318awh51', 'en', 1, 'https://ror.org/0318awh51 Ethiopian Environment Protection Authority'),
(45682, 'https://ror.org/04emkcs40', 'en', 1, 'https://ror.org/04emkcs40 Radford University College'),
(45683, 'https://ror.org/00ytjke60', 'en', 1, 'https://ror.org/00ytjke60 Nature Conservation Foundation'),
(45684, 'https://ror.org/02xs4zz34', 'en', 1, 'https://ror.org/02xs4zz34 Nature Uganda'),
(45685, 'https://ror.org/04whk3274', 'no_lang_code', 1, 'https://ror.org/04whk3274 New Britain Palm Oil (Papua New Guinea)'),
(45686, 'https://ror.org/00amn8x39', 'en', 1, 'https://ror.org/00amn8x39 Nehru Foundation for Development'),
(45687, 'https://ror.org/03nf8te12', 'en', 1, 'https://ror.org/03nf8te12 Reading Public Library'),
(45688, 'https://ror.org/00fp8n517', 'en', 1, 'https://ror.org/00fp8n517 Nepal Development Research Institute नेपाल विकास अनुसन्धान संस्थान'),
(45689, 'https://ror.org/00ccnfj96', 'en', 1, 'https://ror.org/00ccnfj96 Regional Information Center for Science and Technology مرکز منطقه ای اطلاع رسانی علوم و فناوری'),
(45690, 'https://ror.org/01wzq5z79', 'en', 1, 'https://ror.org/01wzq5z79 Nigeria Agricultural Quarantine Service'),
(45691, 'https://ror.org/005qnwq38', 'no_lang_code', 1, 'https://ror.org/005qnwq38 Unilever (Philippines)'),
(45692, 'https://ror.org/045hp3b72', 'en', 1, 'https://ror.org/045hp3b72 Research Institute for Bioscience and Biotechnology'),
(45693, 'https://ror.org/04ey06332', 'en', 1, 'https://ror.org/04ey06332 Research Institute of Animal Husbandry'),
(45694, 'https://ror.org/0413wb785', 'fr', 1, 'https://ror.org/0413wb785 Réseau MARP'),
(45695, 'https://ror.org/04nrgxn63', 'en', 1, 'https://ror.org/04nrgxn63 Round Rock Public Library'),
(45696, 'https://ror.org/039twjn75', 'no_lang_code', 1, 'https://ror.org/039twjn75 WaterNet Trust'),
(45697, 'https://ror.org/01rh00978', 'en', 1, 'https://ror.org/01rh00978 A. Alfred Taubman Health Care Center'),
(45698, 'https://ror.org/00x8v4m40', 'en', 1, 'https://ror.org/00x8v4m40 Waukegan Public Library'),
(45699, 'https://ror.org/059kt3178', 'en', 1, 'https://ror.org/059kt3178 Rubber Research Institute of Sri Lanka'),
(45700, 'https://ror.org/007kevk58', 'en', 1, 'https://ror.org/007kevk58 Westfield Memorial Library'),
(45701, 'https://ror.org/00h7ny872', 'en', 1, 'https://ror.org/00h7ny872 Rushford Public Library'),
(45702, 'https://ror.org/00t6rqp97', 'en', 1, 'https://ror.org/00t6rqp97 Wildlife Conservation Society Democratic Republic of the Congo'),
(45703, 'https://ror.org/02tj98425', 'de', 1, 'https://ror.org/02tj98425 Aachener Institut für Bauschadensforschung und Angewandte Bauphysik'),
(45704, 'https://ror.org/0553df340', 'no_lang_code', 1, 'https://ror.org/0553df340 S. P. Korolev Rocket and Space Corporation Energia (Russia) Ракетно-космическая корпорация «Энергия» им. С. П. Королёва'),
(45705, 'https://ror.org/02rzzjk74', 'fr', 1, 'https://ror.org/02rzzjk74 École Nationale Supérieure des Mines de Nancy'),
(45706, 'https://ror.org/0276n9116', 'en', 1, 'https://ror.org/0276n9116 Yakub Kolas Central Scientific Library'),
(45707, 'https://ror.org/04f4ybw82', 'en', 1, 'https://ror.org/04f4ybw82 Schlow Centre Region Library'),
(45708, 'https://ror.org/04fzpsa91', 'en', 1, 'https://ror.org/04fzpsa91 Ventura County Library'),
(45709, 'https://ror.org/0400tr590', 'no_lang_code', 1, 'https://ror.org/0400tr590 BioAxis DNA Research Centre (India)'),
(45710, 'https://ror.org/02v4v1j69', 'en', 1, 'https://ror.org/02v4v1j69 Gastro Obeso Center'),
(45711, 'https://ror.org/04ewj8026', 'en', 1, 'https://ror.org/04ewj8026 Advanced Center for Orthopedics'),
(45712, 'https://ror.org/02zw4ef94', 'en', 1, 'https://ror.org/02zw4ef94 Sam Moyo African Institute for Agrarian Studies'),
(45713, 'https://ror.org/01ptjzx80', 'en', 1, 'https://ror.org/01ptjzx80 Birmingham Research Park'),
(45714, 'https://ror.org/01z2vqa26', 'en', 1, 'https://ror.org/01z2vqa26 Centre for Systems Philosophy'),
(45715, 'https://ror.org/05bgj7h65', 'en', 1, 'https://ror.org/05bgj7h65 Center for Business Studies'),
(45716, 'https://ror.org/00tqpxw66', 'en', 1, 'https://ror.org/00tqpxw66 Bon Secours DePaul Medical Center'),
(45717, 'https://ror.org/02nq6sy34', 'de', 1, 'https://ror.org/02nq6sy34 Akademie für Gesundheitsberufe'),
(45718, 'https://ror.org/0471j8634', 'en', 1, 'https://ror.org/0471j8634 Almishkat Centre for Research مركز المشكاة للبحث'),
(45719, 'https://ror.org/02xgrds91', 'de', 1, 'https://ror.org/02xgrds91 Amedes MVZ Hamburg'),
(45720, 'https://ror.org/001brd097', 'en', 1, 'https://ror.org/001brd097 American School of Kuwait'),
(45721, 'https://ror.org/05118ff02', 'en', 1, 'https://ror.org/05118ff02 East Asia Research'),
(45722, 'https://ror.org/02704zf98', 'de', 1, 'https://ror.org/02704zf98 Analytische Laboratorium Analytisches Laboratorium'),
(45723, 'https://ror.org/03p26k524', 'en', 1, 'https://ror.org/03p26k524 Animals and Society Institute'),
(45724, 'https://ror.org/00gj8pr18', 'de', 1, 'https://ror.org/00gj8pr18 Städtisches Klinikum Dessau'),
(45725, 'https://ror.org/007d4jn78', 'en', 1, 'https://ror.org/007d4jn78 Institute of Philosophy 哲学研究所'),
(45726, 'https://ror.org/01ym1qc81', 'de', 1, 'https://ror.org/01ym1qc81 Anton Proksch Institut'),
(45727, 'https://ror.org/04m2xd811', 'en', 1, 'https://ror.org/04m2xd811 Bryn Mawr Skin & Cancer Institute'),
(45728, 'https://ror.org/01me5n293', 'en', 1, 'https://ror.org/01me5n293 BTI Biotechnology Institute'),
(45729, 'https://ror.org/02evvbm94', 'en', 1, 'https://ror.org/02evvbm94 Emerge'),
(45730, 'https://ror.org/040hkct30', 'no_lang_code', 1, 'https://ror.org/040hkct30 Applied Academics (United States)'),
(45731, 'https://ror.org/03xrabt76', 'en', 1, 'https://ror.org/03xrabt76 Emirates Diplomatic Academy'),
(45732, 'https://ror.org/054r35483', 'en', 1, 'https://ror.org/054r35483 Institute of Law 中国法学网'),
(45733, 'https://ror.org/04cdebn34', 'no_lang_code', 1, 'https://ror.org/04cdebn34 ProCure (United States)'),
(45734, 'https://ror.org/03kbkcf70', 'en', 1, 'https://ror.org/03kbkcf70 Episcopal School of Dallas'),
(45735, 'https://ror.org/054n9aa03', 'en', 1, 'https://ror.org/054n9aa03 Arab League Educational, Cultural and Scientific Organization المنظمة العربية للتربية والثقافة والعلوم'),
(45736, 'https://ror.org/0232zwb84', 'fr', 1, 'https://ror.org/0232zwb84 CIRP College International pour la Recherche en Productique'),
(45737, 'https://ror.org/0486ne794', 'en', 1, 'https://ror.org/0486ne794 Cambodia Development Resource Institute'),
(45738, 'https://ror.org/04p4ws960', 'en', 1, 'https://ror.org/04p4ws960 Asian Development Bank Institute アジア開発銀行研究所'),
(45739, 'https://ror.org/01p1sp487', 'en', 1, 'https://ror.org/01p1sp487 Department of Ocean Development'),
(45740, 'https://ror.org/05xdpay59', 'en', 1, 'https://ror.org/05xdpay59 Climate Resilience Infrastructure Development Facility'),
(45741, 'https://ror.org/01wf5jq34', 'en', 1, 'https://ror.org/01wf5jq34 Australian Institute of Business'),
(45742, 'https://ror.org/01f0q1x96', 'no_lang_code', 1, 'https://ror.org/01f0q1x96 EVRAZ (Canada)'),
(45743, 'https://ror.org/009tscw31', 'en', 1, 'https://ror.org/009tscw31 Institut für Stadt- und Regionalforschung Institute for Urban and Regional Research');
INSERT INTO `rors` VALUES
(45744, 'https://ror.org/02r9ych18', 'pt', 1, 'https://ror.org/02r9ych18 Espregueira Mendes Clinic'),
(45745, 'https://ror.org/00hxspe04', 'ca', 1, 'https://ror.org/00hxspe04 Clínica Girona'),
(45746, 'https://ror.org/04ymjyh53', 'en', 1, 'https://ror.org/04ymjyh53 Foetal Alcohol Spectrum Disorders Clinic'),
(45747, 'https://ror.org/02p9evb60', 'en', 1, 'https://ror.org/02p9evb60 Clinical Solutions'),
(45748, 'https://ror.org/01fhp6n41', 'de', 1, 'https://ror.org/01fhp6n41 Forschungsinstitut für Logistik'),
(45749, 'https://ror.org/05trpty44', 'fr', 1, 'https://ror.org/05trpty44 Clinique Saint Jean Languedoc'),
(45750, 'https://ror.org/00be3zh53', 'en', 1, 'https://ror.org/00be3zh53 Institute of Applied Science and Intelligent Systems Istituto di Scienze Applicate e Sistemi Intelligenti "Eduardo Caianiello"'),
(45751, 'https://ror.org/0354jg349', 'en', 1, 'https://ror.org/0354jg349 Collective Leadership Institute'),
(45752, 'https://ror.org/01vq6b190', 'en', 1, 'https://ror.org/01vq6b190 Professional Examination Service'),
(45753, 'https://ror.org/03hgh1k95', 'fr', 1, 'https://ror.org/03hgh1k95 Collège de Physique et de Philosophie'),
(45754, 'https://ror.org/02jj1fb93', 'en', 1, 'https://ror.org/02jj1fb93 Berlin Graduate School for Transnational Studies'),
(45755, 'https://ror.org/02vx2hk50', 'en', 1, 'https://ror.org/02vx2hk50 Center for Integrated Smart Sensors'),
(45756, 'https://ror.org/00gj51q98', 'de', 1, 'https://ror.org/00gj51q98 Frankfurter Institut für Nachhaltige Entwicklung'),
(45757, 'https://ror.org/02s3q5660', 'en', 1, 'https://ror.org/02s3q5660 Concordia Hospital'),
(45758, 'https://ror.org/00pgdk225', 'de', 1, 'https://ror.org/00pgdk225 Deutsche PalliativStiftung'),
(45759, 'https://ror.org/01c442234', 'it', 1, 'https://ror.org/01c442234 Istituzione delle Biblioteche di Roma'),
(45760, 'https://ror.org/04krkan79', 'es', 1, 'https://ror.org/04krkan79 Fundación Miguel Lillo'),
(45761, 'https://ror.org/01qgd7x17', 'de', 1, 'https://ror.org/01qgd7x17 Deutsche Schmerzgesellschaft'),
(45762, 'https://ror.org/001ee4r52', 'en', 1, 'https://ror.org/001ee4r52 Center for Studies on Sustainable Luxury Centro de Estudios para el Lujo Sustentable'),
(45763, 'https://ror.org/02fn9c498', 'de', 1, 'https://ror.org/02fn9c498 Deutsches Beratungszentrum für Hygiene'),
(45764, 'https://ror.org/01ank1e73', 'de', 1, 'https://ror.org/01ank1e73 Deutsches Kupferinstitut Berufsverband'),
(45765, 'https://ror.org/02652az59', 'en', 1, 'https://ror.org/02652az59 Control Union Academy'),
(45766, 'https://ror.org/04aetd961', 'en', 1, 'https://ror.org/04aetd961 Development Bank of Japan 日本政策投資銀行'),
(45767, 'https://ror.org/00xx5qr89', 'en', 1, 'https://ror.org/00xx5qr89 Central State Medical Academy Центральная государственная медицинская академия'),
(45768, 'https://ror.org/02mcad149', 'en', 1, 'https://ror.org/02mcad149 Florida Craniofacial Institute'),
(45769, 'https://ror.org/015ktc526', 'de', 1, 'https://ror.org/015ktc526 Forschungsgemeinschaft Werkzeuge und Werkstoffe'),
(45770, 'https://ror.org/056jghs88', 'en', 1, 'https://ror.org/056jghs88 Cyprus Pedagogical Institute ΠΑΙΔΑΓΩΓΙΚΟ ΙΝΣΤΙΤΟΥΤΟ ΚΥΠΡΟΥ'),
(45771, 'https://ror.org/03v2aht94', 'de', 1, 'https://ror.org/03v2aht94 Franziskushospital Aachen'),
(45772, 'https://ror.org/0067q8j88', 'id', 1, 'https://ror.org/0067q8j88 Rumah Sakit Dokter Soetomo'),
(45773, 'https://ror.org/027k8ke79', 'en', 1, 'https://ror.org/027k8ke79 Show-Me Institute'),
(45774, 'https://ror.org/04tn8zp39', 'en', 1, 'https://ror.org/04tn8zp39 Centre for Remote Health'),
(45775, 'https://ror.org/02ea4kj06', 'en', 1, 'https://ror.org/02ea4kj06 De Borda Institute'),
(45776, 'https://ror.org/03sear378', 'fr', 1, 'https://ror.org/03sear378 Fondation Travail-Université'),
(45777, 'https://ror.org/053y5dz28', 'no_lang_code', 1, 'https://ror.org/053y5dz28 GD Goenka University'),
(45778, 'https://ror.org/044ahzg50', 'no_lang_code', 1, 'https://ror.org/044ahzg50 Gazprom (Germany)'),
(45779, 'https://ror.org/05gxhfq53', 'de', 1, 'https://ror.org/05gxhfq53 Hochschule der Polizei Rheinland Pfalz'),
(45780, 'https://ror.org/05he96s21', 'de', 1, 'https://ror.org/05he96s21 Malteser Zentrale'),
(45781, 'https://ror.org/005v44f98', 'fr', 1, 'https://ror.org/005v44f98 Centre d''Échographie de la Femme et du Fœtus'),
(45782, 'https://ror.org/0136hcg09', 'en', 1, 'https://ror.org/0136hcg09 Immunotherapy Centre for Prevention of Repeated Miscarriages'),
(45783, 'https://ror.org/02hdqvp39', 'en', 1, 'https://ror.org/02hdqvp39 Institute for Systems and Technologies of Information, Control and Communication'),
(45784, 'https://ror.org/04tenkb98', 'en', 1, 'https://ror.org/04tenkb98 German Graduate School of Management and Law'),
(45785, 'https://ror.org/02st7b426', 'en', 1, 'https://ror.org/02st7b426 Dr Youth Clinic 박사 청소년 클리닉'),
(45786, 'https://ror.org/01wdqpj36', 'en', 1, 'https://ror.org/01wdqpj36 Drylands Research'),
(45787, 'https://ror.org/006sha924', 'en', 1, 'https://ror.org/006sha924 Institute of Public Enterprise'),
(45788, 'https://ror.org/03natzt93', 'no_lang_code', 1, 'https://ror.org/03natzt93 Apex Tool Group (Taiwan)'),
(45789, 'https://ror.org/02bgfav21', 'de', 1, 'https://ror.org/02bgfav21 Institut für angewandte Arbeitswissenschaft'),
(45790, 'https://ror.org/04fjdwh53', 'de', 1, 'https://ror.org/04fjdwh53 Institut für Krankenhaushygiene & Infektionsprävention'),
(45791, 'https://ror.org/00h32kx47', 'en', 1, 'https://ror.org/00h32kx47 Institute of Town Planners India'),
(45792, 'https://ror.org/01hmams76', 'de', 1, 'https://ror.org/01hmams76 Klinik Friedenweiler'),
(45793, 'https://ror.org/05fw3y914', 'en', 1, 'https://ror.org/05fw3y914 Global Institute for Quality Education'),
(45794, 'https://ror.org/01j8dxy82', 'en', 1, 'https://ror.org/01j8dxy82 Global Science and Technology Forum'),
(45795, 'https://ror.org/040b3ts84', 'de', 1, 'https://ror.org/040b3ts84 Institut für Medien- und Kommunikationspolitik'),
(45796, 'https://ror.org/00nm1ws09', 'de', 1, 'https://ror.org/00nm1ws09 Institut für Nachhaltiges Management'),
(45797, 'https://ror.org/0070x6033', 'de', 1, 'https://ror.org/0070x6033 Klinik Preetz'),
(45798, 'https://ror.org/04t8w3r40', 'es', 1, 'https://ror.org/04t8w3r40 Servicio Geológico Minero Argentino'),
(45799, 'https://ror.org/00av44s75', 'pt', 1, 'https://ror.org/00av44s75 Hospital do Servidor Público Municipal'),
(45800, 'https://ror.org/03tv2a598', 'en', 1, 'https://ror.org/03tv2a598 Green Infrastructure Center'),
(45801, 'https://ror.org/037pq2a43', 'de', 1, 'https://ror.org/037pq2a43 Klinikum Dortmund'),
(45802, 'https://ror.org/01kkgy069', 'de', 1, 'https://ror.org/01kkgy069 Klinikum Itzehoe'),
(45803, 'https://ror.org/029bg2w02', 'de', 1, 'https://ror.org/029bg2w02 Institut für Salutogenese'),
(45804, 'https://ror.org/01vtpxj52', 'de', 1, 'https://ror.org/01vtpxj52 Institut für Stadtforschung und Strukturpolitik'),
(45805, 'https://ror.org/04z8qf553', 'en', 1, 'https://ror.org/04z8qf553 HPO Research Group'),
(45806, 'https://ror.org/01dan7p53', 'en', 1, 'https://ror.org/01dan7p53 Guangzhou Vocational College of Science and Technology 广州科技职业技术学院'),
(45807, 'https://ror.org/00k01hv15', 'de', 1, 'https://ror.org/00k01hv15 Regionalverbund kirchlicher Krankenhäuser'),
(45808, 'https://ror.org/03ms3yr93', 'en', 1, 'https://ror.org/03ms3yr93 Institute for Altitude Medicine'),
(45809, 'https://ror.org/01c3b5v35', 'en', 1, 'https://ror.org/01c3b5v35 International Institute of Advanced Islamic Studies'),
(45810, 'https://ror.org/022b5tw91', 'en', 1, 'https://ror.org/022b5tw91 Hans Böckler Foundation Hans-Böckler-Stiftung'),
(45811, 'https://ror.org/03b6kz105', 'en', 1, 'https://ror.org/03b6kz105 Integrative Medicine Institute'),
(45812, 'https://ror.org/02xwjjw58', 'de', 1, 'https://ror.org/02xwjjw58 Agaplesion Bethesda Krankenhaus'),
(45813, 'https://ror.org/014vqnj59', 'de', 1, 'https://ror.org/014vqnj59 Krankenhaus der Augustinerinnen'),
(45814, 'https://ror.org/03xn6hx74', 'en', 1, 'https://ror.org/03xn6hx74 Institute for Resource Analysis and Policy'),
(45815, 'https://ror.org/03egy0233', 'en', 1, 'https://ror.org/03egy0233 Institut za Društvena Istraživanja Sveučilišta u Zagrebu Institute for Social Research'),
(45816, 'https://ror.org/01nbps758', 'en', 1, 'https://ror.org/01nbps758 International University of Cooperative Education Internationale Berufsakademie'),
(45817, 'https://ror.org/01j495q26', 'en', 1, 'https://ror.org/01j495q26 Central Institute for Research on Cattle'),
(45818, 'https://ror.org/04pr1tr38', 'en', 1, 'https://ror.org/04pr1tr38 International Food Protection Training Institute'),
(45819, 'https://ror.org/0582szf05', 'en', 1, 'https://ror.org/0582szf05 International Institute for Child Rights and Development'),
(45820, 'https://ror.org/02fkw1114', 'en', 1, 'https://ror.org/02fkw1114 Consiglio Nazionale delle Ricerche - Istituto di Chimica dei Composti OrganoMetallici Institute for the Chemistry of OrganoMetallic Compounds'),
(45821, 'https://ror.org/035v0k921', 'en', 1, 'https://ror.org/035v0k921 Hemalata Hospitals and Research Centre'),
(45822, 'https://ror.org/044ytah36', 'en', 1, 'https://ror.org/044ytah36 Waterloo Institute for Disaster Management'),
(45823, 'https://ror.org/006n22802', 'en', 1, 'https://ror.org/006n22802 International School of Europe'),
(45824, 'https://ror.org/04m3hsp39', 'en', 1, 'https://ror.org/04m3hsp39 Institute for Competitive Recruiting'),
(45825, 'https://ror.org/02w72df16', 'de', 1, 'https://ror.org/02w72df16 Institut für Handelsforschung'),
(45826, 'https://ror.org/00w56r274', 'en', 1, 'https://ror.org/00w56r274 IPAG Business School Institut de Préparation à l''Administration et à la Gestion'),
(45827, 'https://ror.org/01b73x603', 'en', 1, 'https://ror.org/01b73x603 Institute of Ethnology and Folklore Studies with Ethnographic Museum Институтът за етнология и фолклористика с Етнографски музей при БАН'),
(45828, 'https://ror.org/03x7xkr71', 'en', 1, 'https://ror.org/03x7xkr71 Institute of Sciences of Food Production Istituto di Scienze delle Produzioni Alimentari'),
(45829, 'https://ror.org/039rxdt76', 'en', 1, 'https://ror.org/039rxdt76 Institut de Recherche sur l''Asie du Sud-Est Contemporaine Research Institute on Contemporary Southeast Asia'),
(45830, 'https://ror.org/03120tz42', 'en', 1, 'https://ror.org/03120tz42 Menasseh Ben Israel Institute'),
(45831, 'https://ror.org/055z45c63', 'de', 1, 'https://ror.org/055z45c63 Immanuel Krankenhaus'),
(45832, 'https://ror.org/02wxw4x45', 'it', 1, 'https://ror.org/02wxw4x45 Institute for Electromagnetic Sensing of the Environment Istituto per il Rilevamento Elettromagnetico dell''Ambiente'),
(45833, 'https://ror.org/02gdcn153', 'en', 1, 'https://ror.org/02gdcn153 Institute of Informatics and Telematics Istituto di Informatica e Telematica'),
(45834, 'https://ror.org/05gabw081', 'de', 1, 'https://ror.org/05gabw081 Immunologie-Zentrum Zürich'),
(45835, 'https://ror.org/046ka3r30', 'es', 1, 'https://ror.org/046ka3r30 Instituto Mexicano de Tecnología del Agua'),
(45836, 'https://ror.org/010vv9h56', 'en', 1, 'https://ror.org/010vv9h56 London Studio Centre'),
(45837, 'https://ror.org/05pecte80', 'en', 1, 'https://ror.org/05pecte80 Jersey Shore University Medical Center'),
(45838, 'https://ror.org/00kakgh93', 'en', 1, 'https://ror.org/00kakgh93 Institute of Microbiology and Biotechnology Institutul de Microbiologie si Biotehnologie'),
(45839, 'https://ror.org/052qwkx28', 'de', 1, 'https://ror.org/052qwkx28 Institut für Mikroökologie'),
(45840, 'https://ror.org/02p3csg43', 'it', 1, 'https://ror.org/02p3csg43 I.T.I. Lattanzio Istituto di Istruzione Superiore I.T.C. Di Vittorio'),
(45841, 'https://ror.org/011gpzb03', 'en', 1, 'https://ror.org/011gpzb03 Institute of National Economy'),
(45842, 'https://ror.org/001d8ym38', 'en', 1, 'https://ror.org/001d8ym38 Jon Peddie Research'),
(45843, 'https://ror.org/01zqqhe44', 'en', 1, 'https://ror.org/01zqqhe44 Indian Institute of Business Management Patna'),
(45844, 'https://ror.org/04r13k538', 'en', 1, 'https://ror.org/04r13k538 Most Sacred Heart of Jesus Cardiology and Valvular Institute'),
(45845, 'https://ror.org/04etfv811', 'en', 1, 'https://ror.org/04etfv811 Indian Institute of Management Shillong भारतीय प्रबंधन संस्थान, शिलांग'),
(45846, 'https://ror.org/02nn9qb77', 'no_lang_code', 1, 'https://ror.org/02nn9qb77 Oberon (Netherlands)'),
(45847, 'https://ror.org/00k900h94', 'en', 1, 'https://ror.org/00k900h94 Queen Jadwiga Foundation'),
(45848, 'https://ror.org/01t69t080', 'en', 1, 'https://ror.org/01t69t080 Instituto Oncologico Nacional National Oncologic Institute'),
(45849, 'https://ror.org/016mey390', 'no_lang_code', 1, 'https://ror.org/016mey390 Rafael Advanced Defense Systems (Israel) רפאל - מערכות לחימה מתקדמות בע"מ'),
(45850, 'https://ror.org/05mpm3k87', 'en', 1, 'https://ror.org/05mpm3k87 Ontario Forest Research Institute'),
(45851, 'https://ror.org/00xy95422', 'de', 1, 'https://ror.org/00xy95422 Archiv der Jugendkulturen'),
(45852, 'https://ror.org/043nrmc14', 'en', 1, 'https://ror.org/043nrmc14 Oral Facial Surgery Institution'),
(45853, 'https://ror.org/0371nm930', 'no_lang_code', 1, 'https://ror.org/0371nm930 Muse Research and Development (United States)'),
(45854, 'https://ror.org/05fgx1m39', 'no_lang_code', 1, 'https://ror.org/05fgx1m39 Orient Capital (China)'),
(45855, 'https://ror.org/01wvk2989', 'de', 1, 'https://ror.org/01wvk2989 REFA Bundesverband Reichsausschuß für Arbeitszeitermittlung'),
(45856, 'https://ror.org/03hm0sm79', 'en', 1, 'https://ror.org/03hm0sm79 National Council of Applied Economic Research'),
(45857, 'https://ror.org/02v01cg08', 'es', 1, 'https://ror.org/02v01cg08 Unidad de Cirugía Artroscópica'),
(45858, 'https://ror.org/050m4ps22', 'en', 1, 'https://ror.org/050m4ps22 Sri Dharmasthala Manjunatheshwara Educational Society ಎಸ್.ಡಿ.ಎಂ ಶೈಕ್ಷಣಿಕ ಸಂಸ್ಥೆ'),
(45859, 'https://ror.org/01wrt1c44', 'en', 1, 'https://ror.org/01wrt1c44 National Democratic Institute'),
(45860, 'https://ror.org/00ae67970', 'en', 1, 'https://ror.org/00ae67970 National Environmental Agency გარემოს ეროვნული სააგენტო'),
(45861, 'https://ror.org/03zy2nt21', 'en', 1, 'https://ror.org/03zy2nt21 National Institute of Urban Affairs'),
(45862, 'https://ror.org/03r6vc108', 'en', 1, 'https://ror.org/03r6vc108 National Maritime Foundation'),
(45863, 'https://ror.org/01bb7mj11', 'de', 1, 'https://ror.org/01bb7mj11 Ostalb-Klinikum Aalen'),
(45864, 'https://ror.org/03aervg81', 'de', 1, 'https://ror.org/03aervg81 Klinik für Psychosomatik'),
(45865, 'https://ror.org/032hv6w38', 'en', 1, 'https://ror.org/032hv6w38 Agricultural Research & Education Organization'),
(45866, 'https://ror.org/00zxymv65', 'en', 1, 'https://ror.org/00zxymv65 National Institute of Integrative Medicine'),
(45867, 'https://ror.org/00z4w4f29', 'en', 1, 'https://ror.org/00z4w4f29 Oxford Research Group'),
(45868, 'https://ror.org/04eytv118', 'en', 1, 'https://ror.org/04eytv118 Shenandoah Astronomical Society'),
(45869, 'https://ror.org/04qva2v49', 'de', 1, 'https://ror.org/04qva2v49 LVR-Klinik für Orthopädie Viersen'),
(45870, 'https://ror.org/00f4t6397', 'en', 1, 'https://ror.org/00f4t6397 Pain and Headache Center'),
(45871, 'https://ror.org/00mc41d88', 'en', 1, 'https://ror.org/00mc41d88 Shoreline Public Schools'),
(45872, 'https://ror.org/04k2gzh89', 'en', 1, 'https://ror.org/04k2gzh89 Australia and New Zealand School of Government'),
(45873, 'https://ror.org/05n8e2826', 'en', 1, 'https://ror.org/05n8e2826 National Power Training Institute राष्ट्रीय विधुत प्रशिक्षण प्रतिष्ठान'),
(45874, 'https://ror.org/01kd5wn07', 'no_lang_code', 1, 'https://ror.org/01kd5wn07 Xperi (Ireland)'),
(45875, 'https://ror.org/01gtsa866', 'en', 1, 'https://ror.org/01gtsa866 Institute of Biosciences and Bioresources Istituto di Bioscienze e Biorisorse'),
(45876, 'https://ror.org/026s4j722', 'en', 1, 'https://ror.org/026s4j722 Russian Academy of Education России академия образования'),
(45877, 'https://ror.org/050b8h122', 'en', 1, 'https://ror.org/050b8h122 Parkinson''s Clinic of Eastern Toronto & Movement Disorders Centre'),
(45878, 'https://ror.org/03vyd8n59', 'en', 1, 'https://ror.org/03vyd8n59 Pontifical Academy of Sciences Pontificia Academia Scientiarum Pontificia accademia delle scienze'),
(45879, 'https://ror.org/02dnvjf04', 'en', 1, 'https://ror.org/02dnvjf04 Netherlands Defence Academy'),
(45880, 'https://ror.org/00r17pp94', 'en', 1, 'https://ror.org/00r17pp94 Physiology Educational Research Consortium'),
(45881, 'https://ror.org/01h3yks88', 'en', 1, 'https://ror.org/01h3yks88 New York Institute of Technology'),
(45882, 'https://ror.org/052a20h63', 'no_lang_code', 1, 'https://ror.org/052a20h63 Samsung (Brazil)'),
(45883, 'https://ror.org/02pthyn77', 'en', 1, 'https://ror.org/02pthyn77 New York University Florence'),
(45884, 'https://ror.org/00mbfhq81', 'en', 1, 'https://ror.org/00mbfhq81 Newcastle University Singapore'),
(45885, 'https://ror.org/00d958b97', 'en', 1, 'https://ror.org/00d958b97 Sarvodaya Fertility & IVF Centre'),
(45886, 'https://ror.org/004qxzr21', 'en', 1, 'https://ror.org/004qxzr21 Theodor Fliedner Foundation Theodor Fliedner Stiftung'),
(45887, 'https://ror.org/00hrhm488', 'en', 1, 'https://ror.org/00hrhm488 Practical Robotics Institute Austria'),
(45888, 'https://ror.org/028ttt579', 'de', 1, 'https://ror.org/028ttt579 Thüringer Landesanstalt für Landwirtschaft'),
(45889, 'https://ror.org/02et85x78', 'sr', 1, 'https://ror.org/02et85x78 Sportska Akademija Beograd'),
(45890, 'https://ror.org/03sygh166', 'en', 1, 'https://ror.org/03sygh166 Trust Management Institut'),
(45891, 'https://ror.org/028s4s402', 'en', 1, 'https://ror.org/028s4s402 Sri Aurobindo Institute of Technology'),
(45892, 'https://ror.org/02jhvve98', 'en', 1, 'https://ror.org/02jhvve98 Toorak College'),
(45893, 'https://ror.org/02c7s7e67', 'en', 1, 'https://ror.org/02c7s7e67 Science Teachers Association of Nigeria'),
(45894, 'https://ror.org/050pkwa79', 'no_lang_code', 1, 'https://ror.org/050pkwa79 Tobu Ryoiku Center 東京都立東部療育センター'),
(45895, 'https://ror.org/056mctw68', 'fr', 1, 'https://ror.org/056mctw68 Université Constantine 2'),
(45896, 'https://ror.org/04nz98c29', 'fr', 1, 'https://ror.org/04nz98c29 Université d''Oran 2'),
(45897, 'https://ror.org/05hb6w248', 'en', 1, 'https://ror.org/05hb6w248 Foreign Service Institute'),
(45898, 'https://ror.org/02npz4170', 'no_lang_code', 1, 'https://ror.org/02npz4170 Nikita Botanical Gardens Никитский ботанический сад'),
(45899, 'https://ror.org/03sk50y83', 'no_lang_code', 1, 'https://ror.org/03sk50y83 Dart NeuroScience (United States)'),
(45900, 'https://ror.org/05mhg5n73', 'en', 1, 'https://ror.org/05mhg5n73 AlzeCure Foundation'),
(45901, 'https://ror.org/027acbb13', 'en', 1, 'https://ror.org/027acbb13 Government of the Czech Republic Vláda České republiky'),
(45902, 'https://ror.org/00y728105', 'en', 1, 'https://ror.org/00y728105 Israel Brain Technologies'),
(45903, 'https://ror.org/01sx4nq39', 'en', 1, 'https://ror.org/01sx4nq39 American Epilepsy Society'),
(45904, 'https://ror.org/04ad7pn51', 'en', 1, 'https://ror.org/04ad7pn51 Pancreatic Cancer UK'),
(45905, 'https://ror.org/046vxey93', 'no_lang_code', 1, 'https://ror.org/046vxey93 AmyCard (Russia)'),
(45906, 'https://ror.org/01ga17f59', 'no_lang_code', 1, 'https://ror.org/01ga17f59 Prime Behavior Testing Laboratories (United States)'),
(45907, 'https://ror.org/03f1pm042', 'en', 1, 'https://ror.org/03f1pm042 Ragnar Söderberg Foundation'),
(45908, 'https://ror.org/0561tpp86', 'en', 1, 'https://ror.org/0561tpp86 Alzheimer''s Association of Israel'),
(45909, 'https://ror.org/0451xrg20', 'en', 1, 'https://ror.org/0451xrg20 Research, Design and Technology Institute Cable аучно-исследовательский, проектно-конструкторский и технологический кабельный институт'),
(45910, 'https://ror.org/01d0tvs72', 'en', 1, 'https://ror.org/01d0tvs72 Mesothelioma Applied Research Foundation'),
(45911, 'https://ror.org/03ey3qt70', 'no_lang_code', 1, 'https://ror.org/03ey3qt70 Corcept Therapeutics (United States)'),
(45912, 'https://ror.org/02dy2h219', 'en', 1, 'https://ror.org/02dy2h219 State Office for Nuclear Safety Státní Uřad pro Jadernou Bezpečnost'),
(45913, 'https://ror.org/04kgngk14', 'en', 1, 'https://ror.org/04kgngk14 State Mining Administration Český báňský úřad'),
(45914, 'https://ror.org/045smbc57', 'en', 1, 'https://ror.org/045smbc57 Ministerstvo pro místní rozvoj České republiky Ministry of Regional Development'),
(45915, 'https://ror.org/00h3t4h60', 'en', 1, 'https://ror.org/00h3t4h60 Ministerstvo zahraničních věcí České republiky Ministry of Foreign Affairs'),
(45916, 'https://ror.org/0531qh590', 'en', 1, 'https://ror.org/0531qh590 Ministerstvo spravedlnosti České republiky Ministry of Justice'),
(45917, 'https://ror.org/02gp35626', 'no_lang_code', 1, 'https://ror.org/02gp35626 Doka-Gene (Russia)'),
(45918, 'https://ror.org/00dhbnv07', 'en', 1, 'https://ror.org/00dhbnv07 Moscow Center For Continuous Mathematical Education Московский центр непрерывного математического образования'),
(45919, 'https://ror.org/00cq0fp06', 'en', 1, 'https://ror.org/00cq0fp06 Institute of Physiology and Basic Medicine Федеральный государственный научно-исследовательский институт Бюджетная научное учреждение Научно физиологии и фундаментальной медицины'),
(45920, 'https://ror.org/048tnm037', 'en', 1, 'https://ror.org/048tnm037 Institute of Biochemical Physics NM Emanuel Институт биохимической физики РАН'),
(45921, 'https://ror.org/00p8r6x45', 'en', 1, 'https://ror.org/00p8r6x45 Centre for Arctic Gas Hydrate, Environment and Climate Senter for arktisk gasshydrat, miljø og klima'),
(45922, 'https://ror.org/010ftx126', 'en', 1, 'https://ror.org/010ftx126 Institute of Thermal Physics Институт теплофизики УрО РАН'),
(45923, 'https://ror.org/00ghqbv36', 'no_lang_code', 1, 'https://ror.org/00ghqbv36 Vivreon Biosciences (United States)'),
(45924, 'https://ror.org/02kmet255', 'en', 1, 'https://ror.org/02kmet255 Institute for Systems Analysis Институт ФГУ Федеральный научно-исследовательский центр научно-исследовательский системного анализа РАН'),
(45925, 'https://ror.org/000146m32', 'no_lang_code', 1, 'https://ror.org/000146m32 CoMentis (United States)'),
(45926, 'https://ror.org/04rbcv404', 'en', 1, 'https://ror.org/04rbcv404 Supply Chain Competence Center (Germany)'),
(45927, 'https://ror.org/05kqvrr98', 'en', 1, 'https://ror.org/05kqvrr98 Central Geological Survey, MOEA 經濟部中央地質調查所'),
(45928, 'https://ror.org/05y88cx07', 'en', 1, 'https://ror.org/05y88cx07 Sydney Orthopaedic Research Institute'),
(45929, 'https://ror.org/01aspja26', 'en', 1, 'https://ror.org/01aspja26 University of the West Indies'),
(45930, 'https://ror.org/017zkwz61', 'en', 1, 'https://ror.org/017zkwz61 University Centre Saint-Ignatius Antwerp'),
(45931, 'https://ror.org/041w1ke73', 'en', 1, 'https://ror.org/041w1ke73 Centre Interdisciplinaire de Développement en Cartographie des Océans The Interdisciplinary Centre for the Development of Ocean Mapping'),
(45932, 'https://ror.org/02h5vx773', 'en', 1, 'https://ror.org/02h5vx773 Marine Advanced Technology Education'),
(45933, 'https://ror.org/01d582b74', 'en', 1, 'https://ror.org/01d582b74 National Transportation Safety Board'),
(45934, 'https://ror.org/03b1cg663', 'en', 1, 'https://ror.org/03b1cg663 National Mapping and Resource Information Authority Pambansang Pangasiwaan sa Pagmamapa at Impormasyon sa Yaman'),
(45935, 'https://ror.org/016pv1z16', 'en', 1, 'https://ror.org/016pv1z16 Video Pool Media Arts Centre'),
(45936, 'https://ror.org/01hk6w656', 'en', 1, 'https://ror.org/01hk6w656 Vietnam Academy of Social Sciences Viện Hàn lâm Khoa học xã hội Việt Nam'),
(45937, 'https://ror.org/043m3hn34', 'no_lang_code', 1, 'https://ror.org/043m3hn34 Vivekananda Parvatiya Krishi Anusandhan Sansthan'),
(45938, 'https://ror.org/03v48ps49', 'en', 1, 'https://ror.org/03v48ps49 O.Ya. Usikov Institute for Radiophysics and Electronics Інститут радіофізики та електроніки ім. О. Я Усикова НАН України'),
(45939, 'https://ror.org/05tyzry72', 'de', 1, 'https://ror.org/05tyzry72 Werner-Wicker-Klinik'),
(45940, 'https://ror.org/02kb97560', 'en', 1, 'https://ror.org/02kb97560 University Hospitals Seidman Cancer Center'),
(45941, 'https://ror.org/04e67g822', 'en', 1, 'https://ror.org/04e67g822 Uttar Pradesh Council of sugarcane research'),
(45942, 'https://ror.org/03d8jqg89', 'en', 1, 'https://ror.org/03d8jqg89 United Nations University Institute for Water, Environment, and Health'),
(45943, 'https://ror.org/054qw7j13', 'en', 1, 'https://ror.org/054qw7j13 Wildlife Conservation Society India'),
(45944, 'https://ror.org/00mcmme34', 'de', 1, 'https://ror.org/00mcmme34 Wirtschaftspsychologische Gesellschaft'),
(45945, 'https://ror.org/038p3gq39', 'no_lang_code', 1, 'https://ror.org/038p3gq39 Yahoo (United Kingdom)'),
(45946, 'https://ror.org/03gz1ev12', 'en', 1, 'https://ror.org/03gz1ev12 Worldwatch Institute'),
(45947, 'https://ror.org/03wz9xk91', 'en', 1, 'https://ror.org/03wz9xk91 Leibniz-Centre General Linguistics Leibniz-Zentrum Allgemeine Sprachwissenschaft'),
(45948, 'https://ror.org/00ahm5y33', 'no_lang_code', 1, 'https://ror.org/00ahm5y33 Rostec (Russia) Ростех'),
(45949, 'https://ror.org/039v0g264', 'de', 1, 'https://ror.org/039v0g264 Zentrum für Psychotherapie Wiesbaden'),
(45950, 'https://ror.org/04xw60528', 'en', 1, 'https://ror.org/04xw60528 Marine Royale Canadienne Royal Canadian Navy'),
(45951, 'https://ror.org/057cmsp85', 'no_lang_code', 1, 'https://ror.org/057cmsp85 Dana (Canada)'),
(45952, 'https://ror.org/02h376w15', 'no_lang_code', 1, 'https://ror.org/02h376w15 Lite-On Technology Corporation (China) 建兴科技公司'),
(45953, 'https://ror.org/00yqk5t74', 'no_lang_code', 1, 'https://ror.org/00yqk5t74 Lonza (Germany)'),
(45954, 'https://ror.org/05pawpb90', 'no_lang_code', 1, 'https://ror.org/05pawpb90 Light Prescriptions Innovators (United States)'),
(45955, 'https://ror.org/02qd93495', 'no_lang_code', 1, 'https://ror.org/02qd93495 MacGregor (Germany)'),
(45956, 'https://ror.org/01gfr8917', 'no_lang_code', 1, 'https://ror.org/01gfr8917 Mahle (United Kingdom)'),
(45957, 'https://ror.org/02dmkmd90', 'no_lang_code', 1, 'https://ror.org/02dmkmd90 LuK (United Kingdom)'),
(45958, 'https://ror.org/00jrevc54', 'no_lang_code', 1, 'https://ror.org/00jrevc54 Dover (United Kingdom)'),
(45959, 'https://ror.org/017z4ep79', 'no_lang_code', 1, 'https://ror.org/017z4ep79 Maxim Integrated (Germany)'),
(45960, 'https://ror.org/05tew7y65', 'en', 1, 'https://ror.org/05tew7y65 Center for Research on Political Economy'),
(45961, 'https://ror.org/00ymz7s10', 'no_lang_code', 1, 'https://ror.org/00ymz7s10 3v Geomatics (Canada)'),
(45962, 'https://ror.org/03vb8st39', 'en', 1, 'https://ror.org/03vb8st39 Australian Human Rights Commission'),
(45963, 'https://ror.org/05s252336', 'no_lang_code', 1, 'https://ror.org/05s252336 Carbon Engineering (Canada)'),
(45964, 'https://ror.org/00hd52462', 'no_lang_code', 1, 'https://ror.org/00hd52462 Toshiba (Austria)'),
(45965, 'https://ror.org/05qcw4d59', 'no_lang_code', 1, 'https://ror.org/05qcw4d59 Älvdalens Fastbränsleteknik Aktiebolag (Sweden)'),
(45966, 'https://ror.org/04mwphf10', 'en', 1, 'https://ror.org/04mwphf10 Australian Water Quality Centre'),
(45967, 'https://ror.org/036vbw294', 'no_lang_code', 1, 'https://ror.org/036vbw294 CarbonCure Technologies (Canada)'),
(45968, 'https://ror.org/00p1mfz27', 'no_lang_code', 1, 'https://ror.org/00p1mfz27 AV&R (Canada)'),
(45969, 'https://ror.org/00awfxn33', 'no_lang_code', 1, 'https://ror.org/00awfxn33 FDC Composites (Canada)'),
(45970, 'https://ror.org/05gqx9q10', 'no_lang_code', 1, 'https://ror.org/05gqx9q10 Award Rubber & Plastic Industries (Canada)'),
(45971, 'https://ror.org/02hsnr298', 'no_lang_code', 1, 'https://ror.org/02hsnr298 Feiro Marine Life Center'),
(45972, 'https://ror.org/04jmyrr44', 'no_lang_code', 1, 'https://ror.org/04jmyrr44 Acceleware (Canada)'),
(45973, 'https://ror.org/01f753h33', 'no_lang_code', 1, 'https://ror.org/01f753h33 Accucaps (Canada)'),
(45974, 'https://ror.org/00yewjk07', 'no_lang_code', 1, 'https://ror.org/00yewjk07 BAE Systems (Sweden)'),
(45975, 'https://ror.org/02wp70a18', 'no_lang_code', 1, 'https://ror.org/02wp70a18 Firebird Biomolecular Sciences (United States)'),
(45976, 'https://ror.org/05kjrhq19', 'no_lang_code', 1, 'https://ror.org/05kjrhq19 BAH Enterprises (Canada)'),
(45977, 'https://ror.org/049s4f968', 'en', 1, 'https://ror.org/049s4f968 Baltic Development Forum'),
(45978, 'https://ror.org/01dyx2092', 'no_lang_code', 1, 'https://ror.org/01dyx2092 Advanced Electrophoresis Solutions (Canada)'),
(45979, 'https://ror.org/00avqt683', 'fr', 1, 'https://ror.org/00avqt683 Cégep de Baie-Comeau'),
(45980, 'https://ror.org/0273ga571', 'fr', 1, 'https://ror.org/0273ga571 Développement Economique Longueuil'),
(45981, 'https://ror.org/04r0px617', 'no_lang_code', 1, 'https://ror.org/04r0px617 Central City Brewers and Distillers (Canada)'),
(45982, 'https://ror.org/03n8qhg02', 'no_lang_code', 1, 'https://ror.org/03n8qhg02 Fontis (Czechia)'),
(45983, 'https://ror.org/05e521308', 'en', 1, 'https://ror.org/05e521308 Central United States Earthquake Consortium'),
(45984, 'https://ror.org/02rhs4t61', 'no_lang_code', 1, 'https://ror.org/02rhs4t61 Doug Bragg Enterprises (Canada)'),
(45985, 'https://ror.org/035xgy388', 'no_lang_code', 1, 'https://ror.org/035xgy388 dPoint Technologies (Canada)'),
(45986, 'https://ror.org/05s5rh151', 'it', 1, 'https://ror.org/05s5rh151 Agenzia Regionale per la Tecnologia e l''Innovazione'),
(45987, 'https://ror.org/05v258z19', 'en', 1, 'https://ror.org/05v258z19 Office of the South Australian Chief Entrepreneur'),
(45988, 'https://ror.org/01ew37b76', 'en', 1, 'https://ror.org/01ew37b76 Collaboration for Australian Weather and Climate Research'),
(45989, 'https://ror.org/0379ygx07', 'no_lang_code', 1, 'https://ror.org/0379ygx07 Bio-Rad (Canada)'),
(45990, 'https://ror.org/058720m75', 'no_lang_code', 1, 'https://ror.org/058720m75 Agri-Neo (Canada)'),
(45991, 'https://ror.org/05ptgb204', 'en', 1, 'https://ror.org/05ptgb204 Mining Institute of the Ural Branch of the Russian Academy of Sciences Горный институт Уральского отделения РАН'),
(45992, 'https://ror.org/056j33p55', 'en', 1, 'https://ror.org/056j33p55 Forestry Tasmania'),
(45993, 'https://ror.org/05p2fn050', 'no_lang_code', 1, 'https://ror.org/05p2fn050 Bishop Water Technologies (Canada)'),
(45994, 'https://ror.org/049hp7d95', 'no_lang_code', 1, 'https://ror.org/049hp7d95 Durham Foods (United Kingdom)'),
(45995, 'https://ror.org/01ezmdv61', 'no_lang_code', 1, 'https://ror.org/01ezmdv61 BitCan (Canada)'),
(45996, 'https://ror.org/014xsev03', 'en', 1, 'https://ror.org/014xsev03 Agro Business Park'),
(45997, 'https://ror.org/00vkafj46', 'no_lang_code', 1, 'https://ror.org/00vkafj46 Dŵr Cymru Welsh Water (United Kingdom)'),
(45998, 'https://ror.org/05hdv6b03', 'no_lang_code', 1, 'https://ror.org/05hdv6b03 Forge Life Science (United States)'),
(45999, 'https://ror.org/03zfg1z12', 'no_lang_code', 1, 'https://ror.org/03zfg1z12 Airex Industries (Canada)'),
(46000, 'https://ror.org/00vpqt786', 'no_lang_code', 1, 'https://ror.org/00vpqt786 Dyverga Energy (Canada)'),
(46001, 'https://ror.org/01j01kg74', 'no_lang_code', 1, 'https://ror.org/01j01kg74 Akita Innovation (United States)'),
(46002, 'https://ror.org/01j5h7116', 'no_lang_code', 1, 'https://ror.org/01j5h7116 Bluewater Power Distribution (Canada)'),
(46003, 'https://ror.org/02em2aa12', 'no_lang_code', 1, 'https://ror.org/02em2aa12 Frontier Agriculture (United Kingdom)'),
(46004, 'https://ror.org/04a0gnr15', 'no_lang_code', 1, 'https://ror.org/04a0gnr15 Alacris (Germany)'),
(46005, 'https://ror.org/047mpyh13', 'no_lang_code', 1, 'https://ror.org/047mpyh13 ChemCentre'),
(46006, 'https://ror.org/04ndp2k28', 'en', 1, 'https://ror.org/04ndp2k28 Alaka`ina Foundation'),
(46007, 'https://ror.org/02gyh4f05', 'no_lang_code', 1, 'https://ror.org/02gyh4f05 FTL Labs (United States)'),
(46008, 'https://ror.org/03pqjm879', 'no_lang_code', 1, 'https://ror.org/03pqjm879 Alcoa (Australia)'),
(46009, 'https://ror.org/03d0cjn27', 'no_lang_code', 1, 'https://ror.org/03d0cjn27 Alectos (Canada)'),
(46010, 'https://ror.org/04pg77a15', 'no_lang_code', 1, 'https://ror.org/04pg77a15 Boise Cascade (Canada)'),
(46011, 'https://ror.org/04am9s171', 'no_lang_code', 1, 'https://ror.org/04am9s171 Cimetrix Solutions (Canada)'),
(46012, 'https://ror.org/01ktf2g48', 'no_lang_code', 1, 'https://ror.org/01ktf2g48 Boréa (Sweden)'),
(46013, 'https://ror.org/05v1ag808', 'no_lang_code', 1, 'https://ror.org/05v1ag808 Altranex (Canada)'),
(46014, 'https://ror.org/01wpvrw40', 'no_lang_code', 1, 'https://ror.org/01wpvrw40 Boschman Technologies (Netherlands)'),
(46015, 'https://ror.org/05khvz726', 'no_lang_code', 1, 'https://ror.org/05khvz726 EirGrid (Ireland)'),
(46016, 'https://ror.org/00thhss72', 'en', 1, 'https://ror.org/00thhss72 Botanic Gardens and Parks Authority'),
(46017, 'https://ror.org/02aneag19', 'no_lang_code', 1, 'https://ror.org/02aneag19 Alu Group (Spain)'),
(46018, 'https://ror.org/03ewmqz06', 'no_lang_code', 1, 'https://ror.org/03ewmqz06 Ekodenge (Turkey)'),
(46019, 'https://ror.org/04hnkx132', 'en', 1, 'https://ror.org/04hnkx132 Innovation Plasturgie Composites Pôle Européen de Plasturgie'),
(46020, 'https://ror.org/04kvhgz56', 'no_lang_code', 1, 'https://ror.org/04kvhgz56 Future Access (Canada)'),
(46021, 'https://ror.org/0481b2b62', 'no_lang_code', 1, 'https://ror.org/0481b2b62 Brainport (Netherlands)'),
(46022, 'https://ror.org/02gjwq161', 'no_lang_code', 1, 'https://ror.org/02gjwq161 Answare (Spain)'),
(46023, 'https://ror.org/01n0t0752', 'no_lang_code', 1, 'https://ror.org/01n0t0752 Future Cities Catapult (United Kingdom)'),
(46024, 'https://ror.org/00xnetf72', 'fr', 1, 'https://ror.org/00xnetf72 Brest''aim'),
(46025, 'https://ror.org/04h0h7852', 'en', 1, 'https://ror.org/04h0h7852 Aquila Theatre'),
(46026, 'https://ror.org/035xg4847', 'no_lang_code', 1, 'https://ror.org/035xg4847 Centrum Průmyslového Výzkumu Techlab (Czechia)'),
(46027, 'https://ror.org/04bwh4h90', 'fr', 1, 'https://ror.org/04bwh4h90 Bretagne Développement Innovation'),
(46028, 'https://ror.org/00nc8dt74', 'no_lang_code', 1, 'https://ror.org/00nc8dt74 ElringKlinger (Germany)'),
(46029, 'https://ror.org/01891yy30', 'no_lang_code', 1, 'https://ror.org/01891yy30 Arbressence (Canada)'),
(46030, 'https://ror.org/050a0jp38', 'no_lang_code', 1, 'https://ror.org/050a0jp38 Helbio (Greece)'),
(46031, 'https://ror.org/02m6x3q63', 'no_lang_code', 1, 'https://ror.org/02m6x3q63 ARC Resources (Canada)'),
(46032, 'https://ror.org/03tasb223', 'no_lang_code', 1, 'https://ror.org/03tasb223 Collingwood Environmental Planning (United Kingdom)'),
(46033, 'https://ror.org/05gk8hj18', 'no_lang_code', 1, 'https://ror.org/05gk8hj18 Genetec (Canada)'),
(46034, 'https://ror.org/0043z0e71', 'en', 1, 'https://ror.org/0043z0e71 Arkitektur- och designcentrum Swedish Centre for Architecture and Design'),
(46035, 'https://ror.org/05h5q2539', 'en', 1, 'https://ror.org/05h5q2539 British Grassland Society'),
(46036, 'https://ror.org/007qdwg58', 'no_lang_code', 1, 'https://ror.org/007qdwg58 GEO-HAZ Consulting (United States)'),
(46037, 'https://ror.org/03qqt7x47', 'en', 1, 'https://ror.org/03qqt7x47 Art Gallery of New South Wales'),
(46038, 'https://ror.org/037w0z757', 'es', 1, 'https://ror.org/037w0z757 Empresa Municipal de la Vivienda y Suelo de Madrid'),
(46039, 'https://ror.org/0534wbh79', 'no_lang_code', 1, 'https://ror.org/0534wbh79 Geomechanica (Canada)'),
(46040, 'https://ror.org/00g4f6p58', 'en', 1, 'https://ror.org/00g4f6p58 Artemis One Health Research Foundation'),
(46041, 'https://ror.org/04fcd0528', 'no_lang_code', 1, 'https://ror.org/04fcd0528 Geotechnical Consulting Group (United Kingdom)'),
(46042, 'https://ror.org/04dxh1n93', 'no_lang_code', 1, 'https://ror.org/04dxh1n93 Arup Group (Canada)'),
(46043, 'https://ror.org/045cwwz56', 'no_lang_code', 1, 'https://ror.org/045cwwz56 Giatec Scientific (Canada)'),
(46044, 'https://ror.org/01rab9670', 'no_lang_code', 1, 'https://ror.org/01rab9670 Bruker (Israel)'),
(46045, 'https://ror.org/03ajjdx52', 'no_lang_code', 1, 'https://ror.org/03ajjdx52 ASM International (Belgium)'),
(46046, 'https://ror.org/004g8sj50', 'no_lang_code', 1, 'https://ror.org/004g8sj50 EnergyAustralia (Australia)'),
(46047, 'https://ror.org/04exf1753', 'no_lang_code', 1, 'https://ror.org/04exf1753 ASM Terni (Italy)'),
(46048, 'https://ror.org/03afety63', 'no_lang_code', 1, 'https://ror.org/03afety63 Neurio Technology (Canada)'),
(46049, 'https://ror.org/05awdmd14', 'no_lang_code', 1, 'https://ror.org/05awdmd14 Engenuics (Canada)'),
(46050, 'https://ror.org/05v965x44', 'no_lang_code', 1, 'https://ror.org/05v965x44 C4i (Canada)'),
(46051, 'https://ror.org/03wvnx995', 'no_lang_code', 1, 'https://ror.org/03wvnx995 Broadcom (Spain)'),
(46052, 'https://ror.org/01x4fgp34', 'no_lang_code', 1, 'https://ror.org/01x4fgp34 Enviro Neptune (Canada)'),
(46053, 'https://ror.org/04mfben02', 'no_lang_code', 1, 'https://ror.org/04mfben02 Eomap (Germany)'),
(46054, 'https://ror.org/05t9zpz97', 'no_lang_code', 1, 'https://ror.org/05t9zpz97 Cook Medical (Australia)'),
(46055, 'https://ror.org/008egk659', 'no_lang_code', 1, 'https://ror.org/008egk659 Gnowit (Canada)'),
(46056, 'https://ror.org/04ft0an39', 'no_lang_code', 1, 'https://ror.org/04ft0an39 Ergon Energy (Australia)'),
(46057, 'https://ror.org/00d4czm47', 'en', 1, 'https://ror.org/00d4czm47 Gold Coast City Council'),
(46058, 'https://ror.org/03egady98', 'no_lang_code', 1, 'https://ror.org/03egady98 eSenso (Canada)'),
(46059, 'https://ror.org/01w9zcy30', 'no_lang_code', 1, 'https://ror.org/01w9zcy30 Canada Bread (Canada)'),
(46060, 'https://ror.org/0196q0t51', 'no_lang_code', 1, 'https://ror.org/0196q0t51 Esri (Canada)'),
(46061, 'https://ror.org/00ffmas49', 'no_lang_code', 1, 'https://ror.org/00ffmas49 CorPower Ocean (Sweden)'),
(46062, 'https://ror.org/04jmk7329', 'no_lang_code', 1, 'https://ror.org/04jmk7329 Covaris (United States)'),
(46063, 'https://ror.org/05rvq9153', 'no_lang_code', 1, 'https://ror.org/05rvq9153 EYDAP (Greece) Εταιρεία Ύδρευσης και Αποχέτευσης Πρωτεύουσας'),
(46064, 'https://ror.org/013pzg015', 'fr', 1, 'https://ror.org/013pzg015 Association pour le Développement et l''Innovation en Chimie au Québec'),
(46065, 'https://ror.org/01vvmvv13', 'en', 1, 'https://ror.org/01vvmvv13 Canadian Sport Centre Pacific'),
(46066, 'https://ror.org/03fjgt095', 'en', 1, 'https://ror.org/03fjgt095 Goulburn Broken Catchment Management Authority'),
(46067, 'https://ror.org/031vt8c32', 'no_lang_code', 1, 'https://ror.org/031vt8c32 Ethos (United Kingdom)'),
(46068, 'https://ror.org/03px70152', 'en', 1, 'https://ror.org/03px70152 Government of Prince Edward Island'),
(46069, 'https://ror.org/04qg9ew14', 'no_lang_code', 1, 'https://ror.org/04qg9ew14 Produce Investments (United Kingdom)'),
(46070, 'https://ror.org/02rggjh51', 'en', 1, 'https://ror.org/02rggjh51 Gov2u'),
(46071, 'https://ror.org/055s4d850', 'no_lang_code', 1, 'https://ror.org/055s4d850 Eureka Lighting (Canada)'),
(46072, 'https://ror.org/038rjke75', 'no_lang_code', 1, 'https://ror.org/038rjke75 Athletigen (Canada)'),
(46073, 'https://ror.org/04m3kny75', 'no_lang_code', 1, 'https://ror.org/04m3kny75 GRi Simulations (Canada)'),
(46074, 'https://ror.org/03yqqb498', 'no_lang_code', 1, 'https://ror.org/03yqqb498 Attodyne (Canada)'),
(46075, 'https://ror.org/04hpj9w50', 'no_lang_code', 1, 'https://ror.org/04hpj9w50 Palette (Canada)'),
(46076, 'https://ror.org/02jg1ky29', 'no_lang_code', 1, 'https://ror.org/02jg1ky29 NanoXplore (Canada)'),
(46077, 'https://ror.org/05acd7q77', 'no_lang_code', 1, 'https://ror.org/05acd7q77 Attollo Engineering (United States)'),
(46078, 'https://ror.org/01hfc4a93', 'en', 1, 'https://ror.org/01hfc4a93 European Network for Smoking and Tobacco Prevention'),
(46079, 'https://ror.org/05t0zzz08', 'no_lang_code', 1, 'https://ror.org/05t0zzz08 Stryker (Canada)'),
(46080, 'https://ror.org/05sm9st23', 'en', 1, 'https://ror.org/05sm9st23 Chartered Accountants Australia and New Zealand'),
(46081, 'https://ror.org/02b1n2z62', 'en', 1, 'https://ror.org/02b1n2z62 Australia Zoo'),
(46082, 'https://ror.org/04zws1j77', 'no_lang_code', 1, 'https://ror.org/04zws1j77 Fabmatics (Germany)'),
(46083, 'https://ror.org/00jyykt64', 'en', 1, 'https://ror.org/00jyykt64 Water Supply and Sanitation Technology Platform'),
(46084, 'https://ror.org/01vzn3w40', 'no_lang_code', 1, 'https://ror.org/01vzn3w40 H2Flow Equipment (Canada)'),
(46085, 'https://ror.org/01e5f0y27', 'no_lang_code', 1, 'https://ror.org/01e5f0y27 Evernia (Czechia)'),
(46086, 'https://ror.org/02masw633', 'no_lang_code', 1, 'https://ror.org/02masw633 Hartley McMaster (United Kingdom)'),
(46087, 'https://ror.org/02h5eqb27', 'no_lang_code', 1, 'https://ror.org/02h5eqb27 Exciton Technologies (Canada)'),
(46088, 'https://ror.org/01qb4qf02', 'en', 1, 'https://ror.org/01qb4qf02 Australian Centre for the Moving Image'),
(46089, 'https://ror.org/018ef1r58', 'en', 1, 'https://ror.org/018ef1r58 Economic Development Agency of the Principality of Asturias Instituto de Desarrollo Económico del Principado de Asturias'),
(46090, 'https://ror.org/04egre837', 'no_lang_code', 1, 'https://ror.org/04egre837 AlphaSIP (Spain)'),
(46091, 'https://ror.org/00w2tje25', 'en', 1, 'https://ror.org/00w2tje25 Mission Australia'),
(46092, 'https://ror.org/01f18s848', 'no_lang_code', 1, 'https://ror.org/01f18s848 Mission Bio (United States)'),
(46093, 'https://ror.org/02q911y28', 'no_lang_code', 1, 'https://ror.org/02q911y28 Lalema (Canada)'),
(46094, 'https://ror.org/0098qsx72', 'no_lang_code', 1, 'https://ror.org/0098qsx72 Royal HaskoningDHV (United Kingdom)'),
(46095, 'https://ror.org/05d2rrs40', 'no_lang_code', 1, 'https://ror.org/05d2rrs40 Lam Research (Austria)'),
(46096, 'https://ror.org/010j4q354', 'no_lang_code', 1, 'https://ror.org/010j4q354 EXUS (United Kingdom)'),
(46097, 'https://ror.org/04msp8175', 'no_lang_code', 1, 'https://ror.org/04msp8175 Mission Management Information Systems (Canada)'),
(46098, 'https://ror.org/05wybg642', 'no_lang_code', 1, 'https://ror.org/05wybg642 Eyeball (Canada)'),
(46099, 'https://ror.org/05nvxe113', 'no_lang_code', 1, 'https://ror.org/05nvxe113 Mondelēz International (Canada)'),
(46100, 'https://ror.org/05femq986', 'no_lang_code', 1, 'https://ror.org/05femq986 Laserax (Canada)'),
(46101, 'https://ror.org/05a0cfq84', 'no_lang_code', 1, 'https://ror.org/05a0cfq84 Monodraught (United Kingdom)'),
(46102, 'https://ror.org/00y5p9m93', 'en', 1, 'https://ror.org/00y5p9m93 Ministry of the Interior and Administrative Reconstruction Υπουργείο Εσωτερικών και Διοικητικής Ανασυγκρότησης'),
(46103, 'https://ror.org/00d0v0049', 'en', 1, 'https://ror.org/00d0v0049 Max Planck Innovation'),
(46104, 'https://ror.org/02xh6me94', 'no_lang_code', 1, 'https://ror.org/02xh6me94 Henriksson Salix (Sweden)'),
(46105, 'https://ror.org/015eg4898', 'en', 1, 'https://ror.org/015eg4898 Moreland City Council'),
(46106, 'https://ror.org/00cpm5y73', 'no_lang_code', 1, 'https://ror.org/00cpm5y73 Serres Sagami (Canada)'),
(46107, 'https://ror.org/018zgk904', 'no_lang_code', 1, 'https://ror.org/018zgk904 Ontario Drive & Gear (Canada)'),
(46108, 'https://ror.org/00hfr5j60', 'en', 1, 'https://ror.org/00hfr5j60 Homarus'),
(46109, 'https://ror.org/01w9bsn12', 'no_lang_code', 1, 'https://ror.org/01w9bsn12 Instream Energy Systems (Canada)'),
(46110, 'https://ror.org/023fas823', 'no_lang_code', 1, 'https://ror.org/023fas823 Motor Coach Industries (United States)'),
(46111, 'https://ror.org/02k6ncv16', 'no_lang_code', 1, 'https://ror.org/02k6ncv16 Optina Diagnostics (Canada)'),
(46112, 'https://ror.org/052tbr029', 'en', 1, 'https://ror.org/052tbr029 Institute of Slavic Studies Instytut Slawistyki PAN'),
(46113, 'https://ror.org/04taj5290', 'no_lang_code', 1, 'https://ror.org/04taj5290 Moulton Bulb (United Kingdom)'),
(46114, 'https://ror.org/027pe7w88', 'no_lang_code', 1, 'https://ror.org/027pe7w88 MunEDA (Germany)'),
(46115, 'https://ror.org/04b30m009', 'no_lang_code', 1, 'https://ror.org/04b30m009 Integrated Nonclinical Development Solutions (United States)'),
(46116, 'https://ror.org/03bxq3a59', 'no_lang_code', 1, 'https://ror.org/03bxq3a59 Semiconductor Manufacturing International (Italy)'),
(46117, 'https://ror.org/00fjn4j64', 'no_lang_code', 1, 'https://ror.org/00fjn4j64 LightComp (Czechia)'),
(46118, 'https://ror.org/00hmj8r26', 'no_lang_code', 1, 'https://ror.org/00hmj8r26 Hamilton Utilities Corporation'),
(46119, 'https://ror.org/03zhmtk18', 'no_lang_code', 1, 'https://ror.org/03zhmtk18 Material Change (United KIngdom)'),
(46120, 'https://ror.org/00pvmsx89', 'no_lang_code', 1, 'https://ror.org/00pvmsx89 Intrinsik (Canada)'),
(46121, 'https://ror.org/04z1e3n06', 'en', 1, 'https://ror.org/04z1e3n06 Livestock & Meat Commission'),
(46122, 'https://ror.org/01tpxh023', 'no_lang_code', 1, 'https://ror.org/01tpxh023 Introhive (Canada)'),
(46123, 'https://ror.org/019nchk62', 'no_lang_code', 1, 'https://ror.org/019nchk62 Inversa Systems (Canada)'),
(46124, 'https://ror.org/00agsqd14', 'no_lang_code', 1, 'https://ror.org/00agsqd14 Nanium (Portugal)'),
(46125, 'https://ror.org/0398s5e82', 'no_lang_code', 1, 'https://ror.org/0398s5e82 Skeleton Technologies (Estonia)'),
(46126, 'https://ror.org/00x2mvg12', 'no_lang_code', 1, 'https://ror.org/00x2mvg12 Ozymes (Canada)'),
(46127, 'https://ror.org/007r1jg09', 'no_lang_code', 1, 'https://ror.org/007r1jg09 InvestorNet-Gate2Growth (Denmark)'),
(46128, 'https://ror.org/04eh5he50', 'en', 1, 'https://ror.org/04eh5he50 Banque Nationale du Canada National Bank of Canada'),
(46129, 'https://ror.org/04vgjs034', 'en', 1, 'https://ror.org/04vgjs034 London Hydro'),
(46130, 'https://ror.org/05tztfw60', 'en', 1, 'https://ror.org/05tztfw60 Hydro Tasmania'),
(46131, 'https://ror.org/03pjzs448', 'no_lang_code', 1, 'https://ror.org/03pjzs448 Luxmux Technology (Canada)'),
(46132, 'https://ror.org/02h62y319', 'no_lang_code', 1, 'https://ror.org/02h62y319 Icy Waters (Canada)'),
(46133, 'https://ror.org/025esa616', 'en', 1, 'https://ror.org/025esa616 Parks Victoria'),
(46134, 'https://ror.org/014p1by09', 'en', 1, 'https://ror.org/014p1by09 National Foundation for Australian Women'),
(46135, 'https://ror.org/03zhn2w96', 'no_lang_code', 1, 'https://ror.org/03zhn2w96 MAAX Bath (Canada)'),
(46136, 'https://ror.org/037kffm93', 'no_lang_code', 1, 'https://ror.org/037kffm93 IDP Ingeniería y Arquitectura Iberia (Spain)'),
(46137, 'https://ror.org/027jcax02', 'no_lang_code', 1, 'https://ror.org/027jcax02 Ixion (Spain)'),
(46138, 'https://ror.org/01b98w967', 'en', 1, 'https://ror.org/01b98w967 Main Roads Western Australia'),
(46139, 'https://ror.org/011g79698', 'no_lang_code', 1, 'https://ror.org/011g79698 Imense (United Kingdom)'),
(46140, 'https://ror.org/00g8rjs80', 'no_lang_code', 1, 'https://ror.org/00g8rjs80 Immune Biosolutions (Canada)'),
(46141, 'https://ror.org/02yt3kq50', 'en', 1, 'https://ror.org/02yt3kq50 Jobs Australia'),
(46142, 'https://ror.org/04y96wg46', 'en', 1, 'https://ror.org/04y96wg46 Imperial College of Toronto'),
(46143, 'https://ror.org/03tb2xj87', 'no_lang_code', 1, 'https://ror.org/03tb2xj87 Mantex (Sweden)'),
(46144, 'https://ror.org/01xyr7619', 'en', 1, 'https://ror.org/01xyr7619 National Society of Black Engineers'),
(46145, 'https://ror.org/002784y28', 'no_lang_code', 1, 'https://ror.org/002784y28 Mantra Energy Alternatives (Canada)'),
(46146, 'https://ror.org/05240d030', 'no_lang_code', 1, 'https://ror.org/05240d030 Mara Renewables (Canada)'),
(46147, 'https://ror.org/00pccrq10', 'no_lang_code', 1, 'https://ror.org/00pccrq10 Marbes Consulting'),
(46148, 'https://ror.org/0266fhg96', 'no_lang_code', 1, 'https://ror.org/0266fhg96 iNano Medical (Canada)'),
(46149, 'https://ror.org/027tb8875', 'en', 1, 'https://ror.org/027tb8875 Marine Mammals of Maine'),
(46150, 'https://ror.org/04eaf5c83', 'no_lang_code', 1, 'https://ror.org/04eaf5c83 Katan Kitchens (Canada)'),
(46151, 'https://ror.org/04wb86f41', 'en', 1, 'https://ror.org/04wb86f41 Industrial Plankton'),
(46152, 'https://ror.org/055z8n243', 'no_lang_code', 1, 'https://ror.org/055z8n243 Marinvent (Canada)'),
(46153, 'https://ror.org/02dshg816', 'en', 1, 'https://ror.org/02dshg816 Nature Foundation SA'),
(46154, 'https://ror.org/029evds51', 'no_lang_code', 1, 'https://ror.org/029evds51 Infineum (United Kingdom)'),
(46155, 'https://ror.org/05dzk6h94', 'en', 1, 'https://ror.org/05dzk6h94 Maritsa Vegetable Crops Research Institute'),
(46156, 'https://ror.org/00z90jg93', 'no_lang_code', 1, 'https://ror.org/00z90jg93 PlanEnergi (Denmark)'),
(46157, 'https://ror.org/02503sm81', 'no_lang_code', 1, 'https://ror.org/02503sm81 Cooke Aquaculture (Canada)'),
(46158, 'https://ror.org/03bwmrt76', 'no_lang_code', 1, 'https://ror.org/03bwmrt76 Nemaska Lithium (Canada)'),
(46159, 'https://ror.org/02ybv1z63', 'no_lang_code', 1, 'https://ror.org/02ybv1z63 Pleiades Robotics (Canada)'),
(46160, 'https://ror.org/052mwhp79', 'en', 1, 'https://ror.org/052mwhp79 Plunkett Foundation'),
(46161, 'https://ror.org/042k4ts27', 'no_lang_code', 1, 'https://ror.org/042k4ts27 Matamec Explorations (Canada)'),
(46162, 'https://ror.org/04gs2jh51', 'no_lang_code', 1, 'https://ror.org/04gs2jh51 Mavi Innovations (Canada)'),
(46163, 'https://ror.org/025x0cj89', 'no_lang_code', 1, 'https://ror.org/025x0cj89 Kodak (Canada)'),
(46164, 'https://ror.org/045kkxp77', 'no_lang_code', 1, 'https://ror.org/045kkxp77 Inland Technologies (Canada)'),
(46165, 'https://ror.org/02229kd62', 'no_lang_code', 1, 'https://ror.org/02229kd62 Staples (Canada)'),
(46166, 'https://ror.org/051yxm544', 'no_lang_code', 1, 'https://ror.org/051yxm544 PNO Consultants (Netherlands)');
INSERT INTO `rors` VALUES
(46167, 'https://ror.org/02aexpx94', 'no_lang_code', 1, 'https://ror.org/02aexpx94 Alchemy (Canada)'),
(46168, 'https://ror.org/01vq7jx45', 'en', 1, 'https://ror.org/01vq7jx45 Innovation and Economic Development Trois Rivières'),
(46169, 'https://ror.org/03sgtgn54', 'no_lang_code', 1, 'https://ror.org/03sgtgn54 KanEnergi (Sweden)'),
(46170, 'https://ror.org/05ensw577', 'no_lang_code', 1, 'https://ror.org/05ensw577 Polymer Source (Canada)'),
(46171, 'https://ror.org/028bkpm63', 'no_lang_code', 1, 'https://ror.org/028bkpm63 Medella Health (Canada)'),
(46172, 'https://ror.org/017bgge88', 'no_lang_code', 1, 'https://ror.org/017bgge88 Medosome Biotec (United States)'),
(46173, 'https://ror.org/0060eq849', 'en', 1, 'https://ror.org/0060eq849 Freshwater Habitats Trust'),
(46174, 'https://ror.org/01dbckq22', 'en', 1, 'https://ror.org/01dbckq22 Krajská Hygienická Stanice Moravskoslezského Kraje Regional Public Health Authority of Moravian - Silesian Region'),
(46175, 'https://ror.org/04vn6x894', 'en', 1, 'https://ror.org/04vn6x894 International Centre for Sustainable Development of Energy, Water and Environment Systems'),
(46176, 'https://ror.org/02zj9bw60', 'no_lang_code', 1, 'https://ror.org/02zj9bw60 Insplorion (Sweden)'),
(46177, 'https://ror.org/05s9h0j72', 'en', 1, 'https://ror.org/05s9h0j72 Kungliga Gustav Adolfs Akademien Royal Gustavus Adolphus Academy'),
(46178, 'https://ror.org/04sg12k28', 'no_lang_code', 1, 'https://ror.org/04sg12k28 Powerlink Queensland (Australia)'),
(46179, 'https://ror.org/01ph4v684', 'en', 1, 'https://ror.org/01ph4v684 Institut d''Arquitectura Avançada de Catalunya Institute for Advanced Architecture of Catalonia'),
(46180, 'https://ror.org/043k84p27', 'en', 1, 'https://ror.org/043k84p27 Queensland Department of Education'),
(46181, 'https://ror.org/007ypmw98', 'no_lang_code', 1, 'https://ror.org/007ypmw98 Meloche (Canada)'),
(46182, 'https://ror.org/04p102g25', 'en', 1, 'https://ror.org/04p102g25 Mental Health Foundation'),
(46183, 'https://ror.org/03jqm3125', 'no_lang_code', 1, 'https://ror.org/03jqm3125 Quaternion Aerospace (Canada)'),
(46184, 'https://ror.org/0466m2m47', 'no_lang_code', 1, 'https://ror.org/0466m2m47 MetaOptima Technology (Canada)'),
(46185, 'https://ror.org/04d5b0c86', 'no_lang_code', 1, 'https://ror.org/04d5b0c86 Nommon Solutions and Technologies (Spain)'),
(46186, 'https://ror.org/02eps3588', 'no_lang_code', 1, 'https://ror.org/02eps3588 Precision for Medicine (United States)'),
(46187, 'https://ror.org/037d89s09', 'no_lang_code', 1, 'https://ror.org/037d89s09 Precision Nanosystems (Canada)'),
(46188, 'https://ror.org/04p74nw72', 'en', 1, 'https://ror.org/04p74nw72 Queensland Police Service'),
(46189, 'https://ror.org/01fykd523', 'en', 1, 'https://ror.org/01fykd523 Queensland Rail'),
(46190, 'https://ror.org/04b33sw26', 'no_lang_code', 1, 'https://ror.org/04b33sw26 Northern Powergrid (United Kingdom)'),
(46191, 'https://ror.org/05fvmm618', 'en', 1, 'https://ror.org/05fvmm618 Queensland Curriculum and Assessment Authority'),
(46192, 'https://ror.org/04tv07n86', 'en', 1, 'https://ror.org/04tv07n86 Methodology Centre for Environment Assessment'),
(46193, 'https://ror.org/01zhpc307', 'no_lang_code', 1, 'https://ror.org/01zhpc307 Prodrive Technologies (Netherlands)'),
(46194, 'https://ror.org/02afhmq71', 'no_lang_code', 1, 'https://ror.org/02afhmq71 Nova Measuring Instruments (Israel)'),
(46195, 'https://ror.org/04gc7ef93', 'no_lang_code', 1, 'https://ror.org/04gc7ef93 Novateur Research Solutions (United States)'),
(46196, 'https://ror.org/00jz33f47', 'no_lang_code', 1, 'https://ror.org/00jz33f47 Mimetas (Netherlands)'),
(46197, 'https://ror.org/0436bye53', 'no_lang_code', 1, 'https://ror.org/0436bye53 MineSense Technologies (Canada)'),
(46198, 'https://ror.org/00vs9ma76', 'no_lang_code', 1, 'https://ror.org/00vs9ma76 Raven Telemetry (Canada)'),
(46199, 'https://ror.org/03779e961', 'no_lang_code', 1, 'https://ror.org/03779e961 Promethean Particles (United Kingdom)'),
(46200, 'https://ror.org/02gk9bd41', 'en', 1, 'https://ror.org/02gk9bd41 Nueta Hidatsa Sahnish College'),
(46201, 'https://ror.org/04vqws538', 'no_lang_code', 1, 'https://ror.org/04vqws538 Mirexus (Canada)'),
(46202, 'https://ror.org/0594b3f07', 'no_lang_code', 1, 'https://ror.org/0594b3f07 Promoscience (Italy)'),
(46203, 'https://ror.org/013gvjj93', 'no_lang_code', 1, 'https://ror.org/013gvjj93 Nufarm (Australia)'),
(46204, 'https://ror.org/01k8jf979', 'no_lang_code', 1, 'https://ror.org/01k8jf979 Protec-Style (Canada)'),
(46205, 'https://ror.org/00a7kcq71', 'no_lang_code', 1, 'https://ror.org/00a7kcq71 Recif Technologies (France)'),
(46206, 'https://ror.org/00h590f14', 'no_lang_code', 1, 'https://ror.org/00h590f14 NutriAg (Canada)'),
(46207, 'https://ror.org/05hhgm593', 'no_lang_code', 1, 'https://ror.org/05hhgm593 Sigma Energy Storage (Canada)'),
(46208, 'https://ror.org/04y1c3h69', 'no_lang_code', 1, 'https://ror.org/04y1c3h69 Sigray (United States)'),
(46209, 'https://ror.org/02nka6g66', 'en', 1, 'https://ror.org/02nka6g66 Stone Soup Productions'),
(46210, 'https://ror.org/032tjpd06', 'en', 1, 'https://ror.org/032tjpd06 Whale Center of New England'),
(46211, 'https://ror.org/05skcvs70', 'no_lang_code', 1, 'https://ror.org/05skcvs70 Recyc PHP (Canada)'),
(46212, 'https://ror.org/05sm4gx39', 'no_lang_code', 1, 'https://ror.org/05sm4gx39 Red Hat (United Kingdom)'),
(46213, 'https://ror.org/00z1bwj17', 'no_lang_code', 1, 'https://ror.org/00z1bwj17 Street Contxt (Canada)'),
(46214, 'https://ror.org/01qzftd85', 'en', 1, 'https://ror.org/01qzftd85 Silsoe Spray Application Unit'),
(46215, 'https://ror.org/00ssh1q19', 'no_lang_code', 1, 'https://ror.org/00ssh1q19 Reden (Netherlands)'),
(46216, 'https://ror.org/02mdwjj51', 'no_lang_code', 1, 'https://ror.org/02mdwjj51 Redlen Technologies (Canada)'),
(46217, 'https://ror.org/0255r2t12', 'no_lang_code', 1, 'https://ror.org/0255r2t12 Tronox (Australia)'),
(46218, 'https://ror.org/0554hqk85', 'no_lang_code', 1, 'https://ror.org/0554hqk85 Singulus (Germany)'),
(46219, 'https://ror.org/0172eea33', 'it', 1, 'https://ror.org/0172eea33 Studio Associato Gaia'),
(46220, 'https://ror.org/03cxxc369', 'en', 1, 'https://ror.org/03cxxc369 Torino e-district'),
(46221, 'https://ror.org/015yc3t03', 'no_lang_code', 1, 'https://ror.org/015yc3t03 SITAEL (Italy)'),
(46222, 'https://ror.org/006dp6044', 'sv', 1, 'https://ror.org/006dp6044 Svenskt Gastekniskt Center Swedish Gas Technology Centre'),
(46223, 'https://ror.org/00c4rw797', 'no_lang_code', 1, 'https://ror.org/00c4rw797 Transtech Innovations (Canada)'),
(46224, 'https://ror.org/026s3qz20', 'en', 1, 'https://ror.org/026s3qz20 Slovak Innovation and Energy Agency Slovenská inovačná a energetická agentúra'),
(46225, 'https://ror.org/05btymt05', 'no_lang_code', 1, 'https://ror.org/05btymt05 TravelAI (United Kingdom)'),
(46226, 'https://ror.org/02fqdw168', 'en', 1, 'https://ror.org/02fqdw168 WaterNSW'),
(46227, 'https://ror.org/01s8p3t36', 'no_lang_code', 1, 'https://ror.org/01s8p3t36 Trilogis (Italy)'),
(46228, 'https://ror.org/048nk6m17', 'en', 1, 'https://ror.org/048nk6m17 Sydney Olympic Park Authority'),
(46229, 'https://ror.org/00kv7my10', 'no_lang_code', 1, 'https://ror.org/00kv7my10 Smallmatek (Portugal)'),
(46230, 'https://ror.org/001a5a111', 'no_lang_code', 1, 'https://ror.org/001a5a111 Symbio FCell (France)'),
(46231, 'https://ror.org/00z471n15', 'no_lang_code', 1, 'https://ror.org/00z471n15 Smarter Alloys (Canada)'),
(46232, 'https://ror.org/01hf47s86', 'no_lang_code', 1, 'https://ror.org/01hf47s86 Turbo Power Systems (United Kingdom)'),
(46233, 'https://ror.org/00b6zxk24', 'en', 1, 'https://ror.org/00b6zxk24 Tweed Shire Council'),
(46234, 'https://ror.org/01fqm7b41', 'no_lang_code', 1, 'https://ror.org/01fqm7b41 SYNERGX Technologies (Canada)'),
(46235, 'https://ror.org/02gvfm422', 'no_lang_code', 1, 'https://ror.org/02gvfm422 Ubiwhere (Portugal)'),
(46236, 'https://ror.org/01gwe8p69', 'no_lang_code', 1, 'https://ror.org/01gwe8p69 T2 Systems (Canada)'),
(46237, 'https://ror.org/01grmf894', 'en', 1, 'https://ror.org/01grmf894 Smith Institute'),
(46238, 'https://ror.org/047dpbp86', 'no_lang_code', 1, 'https://ror.org/047dpbp86 Umano Medical (Canada)'),
(46239, 'https://ror.org/01zbr4w52', 'no_lang_code', 1, 'https://ror.org/01zbr4w52 S2e Technologies (Canada)'),
(46240, 'https://ror.org/01g4ze844', 'no_lang_code', 1, 'https://ror.org/01g4ze844 TechnipFMC (Italy)'),
(46241, 'https://ror.org/047226562', 'no_lang_code', 1, 'https://ror.org/047226562 TechnoRem (Canada)'),
(46242, 'https://ror.org/04ewyy141', 'no_lang_code', 1, 'https://ror.org/04ewyy141 Teldio (Canada)'),
(46243, 'https://ror.org/04zddqw39', 'no_lang_code', 1, 'https://ror.org/04zddqw39 TeleConsult Austria (Austria)'),
(46244, 'https://ror.org/04c772e80', 'en', 1, 'https://ror.org/04c772e80 Soil Association'),
(46245, 'https://ror.org/042b06z11', 'no_lang_code', 1, 'https://ror.org/042b06z11 Veolia (Australia)'),
(46246, 'https://ror.org/01zarsr31', 'no_lang_code', 1, 'https://ror.org/01zarsr31 Temple Group (United Kingdom)'),
(46247, 'https://ror.org/00p3e1n56', 'no_lang_code', 1, 'https://ror.org/00p3e1n56 Tenneco (Belgium)'),
(46248, 'https://ror.org/0113qg321', 'no_lang_code', 1, 'https://ror.org/0113qg321 Solar Ship (Canada)'),
(46249, 'https://ror.org/05car4c24', 'no_lang_code', 1, 'https://ror.org/05car4c24 Terramera (Canada)'),
(46250, 'https://ror.org/02nzhnj74', 'no_lang_code', 1, 'https://ror.org/02nzhnj74 Soleno (Canada)'),
(46251, 'https://ror.org/03t627237', 'no_lang_code', 1, 'https://ror.org/03t627237 TerraVerdae BioWorks (Canada)'),
(46252, 'https://ror.org/002nwxy91', 'no_lang_code', 1, 'https://ror.org/002nwxy91 Solmax (Canada)'),
(46253, 'https://ror.org/01vz3ga16', 'en', 1, 'https://ror.org/01vz3ga16 Seqwater'),
(46254, 'https://ror.org/02s7dzt19', 'en', 1, 'https://ror.org/02s7dzt19 Salford City Council'),
(46255, 'https://ror.org/01n58gy81', 'en', 1, 'https://ror.org/01n58gy81 Benevolent Society'),
(46256, 'https://ror.org/033s2jy46', 'no_lang_code', 1, 'https://ror.org/033s2jy46 South East Water (Australia)'),
(46257, 'https://ror.org/05v40eh15', 'no_lang_code', 1, 'https://ror.org/05v40eh15 Spinologics (Canada)'),
(46258, 'https://ror.org/03vj25186', 'no_lang_code', 1, 'https://ror.org/03vj25186 Sumitomo Precision Products (Canada) 住友精密工業株式会社'),
(46259, 'https://ror.org/04c2m5174', 'no_lang_code', 1, 'https://ror.org/04c2m5174 Systems, Applications & Products in Data Processing (Australia)'),
(46260, 'https://ror.org/0212pzf17', 'no_lang_code', 1, 'https://ror.org/0212pzf17 Ventix (Canada)'),
(46261, 'https://ror.org/033wpmv83', 'en', 1, 'https://ror.org/033wpmv83 Water Security Agency'),
(46262, 'https://ror.org/0564zte48', 'no_lang_code', 1, 'https://ror.org/0564zte48 Science City York (United Kingdom)'),
(46263, 'https://ror.org/02aywzc16', 'en', 1, 'https://ror.org/02aywzc16 State Treasurer of South Carolina'),
(46264, 'https://ror.org/03zm9c356', 'no_lang_code', 1, 'https://ror.org/03zm9c356 Vesmír (Czechia)'),
(46265, 'https://ror.org/041jbqr21', 'no_lang_code', 1, 'https://ror.org/041jbqr21 Stillwater (Canada)'),
(46266, 'https://ror.org/0321v8618', 'en', 1, 'https://ror.org/0321v8618 Western Australia Police'),
(46267, 'https://ror.org/04q2tvr21', 'no_lang_code', 1, 'https://ror.org/04q2tvr21 Seastar Chemicals (Canada)'),
(46268, 'https://ror.org/00hpp0v51', 'no_lang_code', 1, 'https://ror.org/00hpp0v51 Vibra Finish (Canada)'),
(46269, 'https://ror.org/007xn0x86', 'en', 1, 'https://ror.org/007xn0x86 Yakama Nation Tribal Council'),
(46270, 'https://ror.org/025hrq177', 'en', 1, 'https://ror.org/025hrq177 Zeta Phi Beta Sorority'),
(46271, 'https://ror.org/05qpyc807', 'no_lang_code', 1, 'https://ror.org/05qpyc807 ZF Screens (Netherlands)'),
(46272, 'https://ror.org/030v79255', 'pt', 1, 'https://ror.org/030v79255 Secretaria de Estado de Segurança Pública'),
(46273, 'https://ror.org/04bdqfw32', 'no_lang_code', 1, 'https://ror.org/04bdqfw32 ZincNyx Energy Solutions (Canada)'),
(46274, 'https://ror.org/005swq337', 'no_lang_code', 1, 'https://ror.org/005swq337 Winterthur Gas & Diesel (Switzerland)'),
(46275, 'https://ror.org/02w6dpq08', 'en', 1, 'https://ror.org/02w6dpq08 Victorian Curriculum and Assessment Authority'),
(46276, 'https://ror.org/03pp1bs03', 'en', 1, 'https://ror.org/03pp1bs03 Saga Prefectural Regional Industry Support Center 公益財団法人 佐賀県地域産業支援センター'),
(46277, 'https://ror.org/03qe98b42', 'en', 1, 'https://ror.org/03qe98b42 Victorian Institute of Teaching'),
(46278, 'https://ror.org/04xjcj004', 'no_lang_code', 1, 'https://ror.org/04xjcj004 Woodmere Nursery (Canada)'),
(46279, 'https://ror.org/00b2vwt46', 'en', 1, 'https://ror.org/00b2vwt46 Victorian Multicultural Commission'),
(46280, 'https://ror.org/033y0yj09', 'no_lang_code', 1, 'https://ror.org/033y0yj09 Vivid Economics (United Kingdom)'),
(46281, 'https://ror.org/00bz3eh81', 'no_lang_code', 1, 'https://ror.org/00bz3eh81 Vivienda y Suelo de Euskadi (Spain)'),
(46282, 'https://ror.org/057zb9291', 'no_lang_code', 1, 'https://ror.org/057zb9291 ViVitro Labs (Canada)'),
(46283, 'https://ror.org/05gvz8164', 'en', 1, 'https://ror.org/05gvz8164 Chiba Prefectural Museum of Art'),
(46284, 'https://ror.org/00hgd2m44', 'en', 1, 'https://ror.org/00hgd2m44 Chiba Prefectural Police 千葉県警察'),
(46285, 'https://ror.org/03n1gcz29', 'no_lang_code', 1, 'https://ror.org/03n1gcz29 Chiba Prefectural Sekiyado-jo Museum'),
(46286, 'https://ror.org/01cnzjq23', 'en', 1, 'https://ror.org/01cnzjq23 Fujimoto Dental and Oral Surgery Clinic 藤本歯科口腔外科クリニック'),
(46287, 'https://ror.org/033twts82', 'en', 1, 'https://ror.org/033twts82 Otaki Castle Museum'),
(46288, 'https://ror.org/03r35e117', 'no_lang_code', 1, 'https://ror.org/03r35e117 Chiba Hospital'),
(46289, 'https://ror.org/023gjks82', 'en', 1, 'https://ror.org/023gjks82 Aichi Arts Center 愛知芸術文化センタ'),
(46290, 'https://ror.org/045nr1z96', 'en', 1, 'https://ror.org/045nr1z96 Fukui Prefectural Museum of Cultural History 福井県立歴史博物館'),
(46291, 'https://ror.org/00qtxwz11', 'en', 1, 'https://ror.org/00qtxwz11 Aichi Prefectural Police 愛知県警察'),
(46292, 'https://ror.org/01wqjvw03', 'en', 1, 'https://ror.org/01wqjvw03 Aomori Prefectural Police 青森県警察'),
(46293, 'https://ror.org/00j5mnh72', 'en', 1, 'https://ror.org/00j5mnh72 Aichi Prefectural Toyohashi School for the Deaf 愛知県立豊橋聾学校'),
(46294, 'https://ror.org/015p0jm93', 'no_lang_code', 1, 'https://ror.org/015p0jm93 Aoyama Gakuin Kindergarten 青山学院幼稚園'),
(46295, 'https://ror.org/00q6pdr71', 'no_lang_code', 1, 'https://ror.org/00q6pdr71 Fukuoka Art Museum 福岡市美術館'),
(46296, 'https://ror.org/01jzaah84', 'no_lang_code', 1, 'https://ror.org/01jzaah84 Asahide Gakuen 旭出学園'),
(46297, 'https://ror.org/03ag30k63', 'en', 1, 'https://ror.org/03ag30k63 Fukuoka City Archaeological Center 福岡市埋蔵文化財センター'),
(46298, 'https://ror.org/006smnb28', 'en', 1, 'https://ror.org/006smnb28 Kariya City Board of Education 刈谷市教育委員会委員名簿'),
(46299, 'https://ror.org/042qt7z37', 'en', 1, 'https://ror.org/042qt7z37 Chiyoda-ku Board of Education'),
(46300, 'https://ror.org/01qzrvf77', 'en', 1, 'https://ror.org/01qzrvf77 Fukuoka Prefectural Museum of Art 福岡県立美術館'),
(46301, 'https://ror.org/00wqcf653', 'en', 1, 'https://ror.org/00wqcf653 Kurashiki Archaeological Museum'),
(46302, 'https://ror.org/00n7t8t84', 'en', 1, 'https://ror.org/00n7t8t84 Orio Aishin Junior College 折尾愛真短期大学'),
(46303, 'https://ror.org/044rmp068', 'en', 1, 'https://ror.org/044rmp068 Choju Medical Institute 長寿医学研究所'),
(46304, 'https://ror.org/0442gxc81', 'en', 1, 'https://ror.org/0442gxc81 Fukuoka Prefecture Education Center 福岡県教育センター'),
(46305, 'https://ror.org/024972556', 'en', 1, 'https://ror.org/024972556 Hakodate City Museum 市立函館博物館'),
(46306, 'https://ror.org/01pq7ec85', 'en', 1, 'https://ror.org/01pq7ec85 Association for the Advancement of Educational Research'),
(46307, 'https://ror.org/018wrwp68', 'en', 1, 'https://ror.org/018wrwp68 Date City Institute of Funnkawann Culture'),
(46308, 'https://ror.org/01jcyrc18', 'en', 1, 'https://ror.org/01jcyrc18 Fukushima Prefectural Education Center 福島県教育センター'),
(46309, 'https://ror.org/00qtt4469', 'en', 1, 'https://ror.org/00qtt4469 Fukushima Prefectural Board of Education 福島県教育委員会のホー'),
(46310, 'https://ror.org/00qnxgg65', 'no_lang_code', 1, 'https://ror.org/00qnxgg65 Fukuyama City Zoo 福山市立動物園'),
(46311, 'https://ror.org/050tayp70', 'en', 1, 'https://ror.org/050tayp70 Breastopia Namba Hospital'),
(46312, 'https://ror.org/02bgk4s52', 'en', 1, 'https://ror.org/02bgk4s52 Flower And Green Bank 花と緑の銀行'),
(46313, 'https://ror.org/04wezhr50', 'en', 1, 'https://ror.org/04wezhr50 International Institute for the Study of Religions 国際宗教研究所財団'),
(46314, 'https://ror.org/00h69cf80', 'en', 1, 'https://ror.org/00h69cf80 Hyogo Institute for Traumatic Stress'),
(46315, 'https://ror.org/02k55c210', 'en', 1, 'https://ror.org/02k55c210 Gifu Prefectural Board of Education 岐阜県教育委員会'),
(46316, 'https://ror.org/03kryfe63', 'en', 1, 'https://ror.org/03kryfe63 Suzuka City Library 鈴鹿市立図書館'),
(46317, 'https://ror.org/04d38yh91', 'en', 1, 'https://ror.org/04d38yh91 Tokyo School for the Deaf'),
(46318, 'https://ror.org/03zn1fw73', 'en', 1, 'https://ror.org/03zn1fw73 Tokyo Institute for Municipal Research 市営研究東京工業大学'),
(46319, 'https://ror.org/029043079', 'en', 1, 'https://ror.org/029043079 Edogawa Girls'' Junior & Senior High School 江戸川女子中学校・高等学校'),
(46320, 'https://ror.org/02ca33r73', 'en', 1, 'https://ror.org/02ca33r73 International Institute for Advanced Studies 高等研究財団の国際研究所'),
(46321, 'https://ror.org/03mj2g711', 'en', 1, 'https://ror.org/03mj2g711 Chiba City Museum of Art 千葉市美術館'),
(46322, 'https://ror.org/0362f6990', 'en', 1, 'https://ror.org/0362f6990 Gifu International Academy of Horticulture 岐阜県立国際園芸アカデミー'),
(46323, 'https://ror.org/0454arg59', 'en', 1, 'https://ror.org/0454arg59 International Institute for Digital Humanities 一般財団法人 人文情報学研究所'),
(46324, 'https://ror.org/04cx9ny42', 'en', 1, 'https://ror.org/04cx9ny42 Ehime Prefectural College of Agriculture 愛媛県立農業大学校'),
(46325, 'https://ror.org/02a5z7132', 'en', 1, 'https://ror.org/02a5z7132 Research Institute for Policies on Pension and Aging 年金と高齢化に関する政策研究所'),
(46326, 'https://ror.org/051ywtd91', 'en', 1, 'https://ror.org/051ywtd91 Institute of Applied Energy 一般財団法人エネルギー総合工学研究所'),
(46327, 'https://ror.org/0597htz45', 'no_lang_code', 1, 'https://ror.org/0597htz45 Tateyama Caldera Sabo Museum 立山カルデラ砂防博物館'),
(46328, 'https://ror.org/02qd46241', 'en', 1, 'https://ror.org/02qd46241 Institute for International Policy Studies 財団世界平和研究所'),
(46329, 'https://ror.org/05y846g09', 'en', 1, 'https://ror.org/05y846g09 Chiba Prefectural Government 千叶县政府'),
(46330, 'https://ror.org/04574vv96', 'en', 1, 'https://ror.org/04574vv96 Gifu City Museum of History 岐阜市歴史博物館'),
(46331, 'https://ror.org/01raw4b12', 'en', 1, 'https://ror.org/01raw4b12 Hirosaki Central Hospital 弘前中央病院'),
(46332, 'https://ror.org/025eaap70', 'en', 1, 'https://ror.org/025eaap70 Hokkaido Science Education Center 北海道立理科教育センター'),
(46333, 'https://ror.org/00yg19172', 'en', 1, 'https://ror.org/00yg19172 Kitakyushu City Foundation For Promoting Arts And Culture 公益財団法人 北九州市芸術文化振興財団'),
(46334, 'https://ror.org/03a6v9745', 'en', 1, 'https://ror.org/03a6v9745 Ichikawa City Rehabilitation Hospital 市川市リハビリテーション病院'),
(46335, 'https://ror.org/00c0azs61', 'en', 1, 'https://ror.org/00c0azs61 Hiroshima Children''s Museum'),
(46336, 'https://ror.org/00kddkz24', 'en', 1, 'https://ror.org/00kddkz24 Japan Place Name Research Center 日本地名研究所'),
(46337, 'https://ror.org/00s72ct24', 'en', 1, 'https://ror.org/00s72ct24 Ichikawa Junior and Senior High School 市川中学校・高等学校'),
(46338, 'https://ror.org/011ec6h17', 'en', 1, 'https://ror.org/011ec6h17 Hiroshima City Museum of Contemporary Art'),
(46339, 'https://ror.org/026a4qe69', 'en', 1, 'https://ror.org/026a4qe69 Ichinomiya Municipal City Hospital 一宮市立市民病院'),
(46340, 'https://ror.org/018bhgj90', 'no_lang_code', 1, 'https://ror.org/018bhgj90 Ichinomiya City Museum 一宮市博物館'),
(46341, 'https://ror.org/032mkt145', 'en', 1, 'https://ror.org/032mkt145 Japan Securities Research Institute 公益財団法人 日本証券経済研究所'),
(46342, 'https://ror.org/02pfdh860', 'en', 1, 'https://ror.org/02pfdh860 Japan Small Animal Medical Center 日本小動物がんセンター'),
(46343, 'https://ror.org/04skm6d44', 'en', 1, 'https://ror.org/04skm6d44 Japan University Accreditation Association 公益財団法人 大学基準協会'),
(46344, 'https://ror.org/051q6p014', 'en', 1, 'https://ror.org/051q6p014 Ishikawa Prefecture Archaeological Center 石川県埋蔵文化財センタ'),
(46345, 'https://ror.org/04c9j2485', 'en', 1, 'https://ror.org/04c9j2485 Iida City Museum of Art 飯田市美術博物館'),
(46346, 'https://ror.org/02m9vgw62', 'en', 1, 'https://ror.org/02m9vgw62 National Museum of Emerging Science and Innovation 日本科学未来館'),
(46347, 'https://ror.org/05ccsp315', 'en', 1, 'https://ror.org/05ccsp315 Nagano Prefectural Agricultural University 農業大学に長野県'),
(46348, 'https://ror.org/03paakw30', 'en', 1, 'https://ror.org/03paakw30 Jiseikai Welfare Kyusyu Hospital 福祉 九州 病院'),
(46349, 'https://ror.org/00x19rt58', 'en', 1, 'https://ror.org/00x19rt58 Jiyu Gakuen Girls School 自由学園明日館'),
(46350, 'https://ror.org/01rsb5a88', 'en', 1, 'https://ror.org/01rsb5a88 Hiroshima Prefectural Archives 広島県庁県立文書館'),
(46351, 'https://ror.org/03mxz9a62', 'en', 1, 'https://ror.org/03mxz9a62 Akita Museum of Art 秋田県立美術館'),
(46352, 'https://ror.org/01r4xes76', 'en', 1, 'https://ror.org/01r4xes76 Museum of Modern Art 群馬県立近代美術館'),
(46353, 'https://ror.org/04vg6xp73', 'en', 1, 'https://ror.org/04vg6xp73 Hiroshima Prefectural Rehabilitation Center 広島県立障害者リハビリテーションセンター'),
(46354, 'https://ror.org/02vd4tk35', 'no_lang_code', 1, 'https://ror.org/02vd4tk35 Mann+Hummel (United States)'),
(46355, 'https://ror.org/05sy11p04', 'no_lang_code', 1, 'https://ror.org/05sy11p04 Roche (Israel) רוש ישראל'),
(46356, 'https://ror.org/04a7gbp98', 'en', 1, 'https://ror.org/04a7gbp98 British Geological Survey'),
(46357, 'https://ror.org/036j6hv41', 'en', 1, 'https://ror.org/036j6hv41 Mexican Geological Survey Servicio Geológico Mexicano'),
(46358, 'https://ror.org/01y6s7h62', 'no_lang_code', 1, 'https://ror.org/01y6s7h62 Mölnlycke Health Care (United Kingdom)'),
(46359, 'https://ror.org/051vnys61', 'no_lang_code', 1, 'https://ror.org/051vnys61 Meritor (United Kingdom)'),
(46360, 'https://ror.org/04w6n5s59', 'no_lang_code', 1, 'https://ror.org/04w6n5s59 Medtronic (Israel)'),
(46361, 'https://ror.org/0272m3153', 'no_lang_code', 1, 'https://ror.org/0272m3153 WestRock (Germany)'),
(46362, 'https://ror.org/04r6h9t04', 'no_lang_code', 1, 'https://ror.org/04r6h9t04 TE Connectivity (Germany)'),
(46363, 'https://ror.org/00ww6xe24', 'no_lang_code', 1, 'https://ror.org/00ww6xe24 Mersen (United States)'),
(46364, 'https://ror.org/01b606g91', 'no_lang_code', 1, 'https://ror.org/01b606g91 Miba (Austria)'),
(46365, 'https://ror.org/05f2ewd15', 'no_lang_code', 1, 'https://ror.org/05f2ewd15 Nokia (Australia)'),
(46366, 'https://ror.org/05bqd9t64', 'no_lang_code', 1, 'https://ror.org/05bqd9t64 Microchip Technology (Germany)'),
(46367, 'https://ror.org/00gym2132', 'no_lang_code', 1, 'https://ror.org/00gym2132 Mellanox Technologies (Israel) מלאנוקס טכנולוגיות בע"מ'),
(46368, 'https://ror.org/050d1hk46', 'no_lang_code', 1, 'https://ror.org/050d1hk46 SunEdison (Singapore)'),
(46369, 'https://ror.org/03fjbw519', 'no_lang_code', 1, 'https://ror.org/03fjbw519 Apple (Germany)'),
(46370, 'https://ror.org/003js0r95', 'no_lang_code', 1, 'https://ror.org/003js0r95 Monsanto (Brazil)'),
(46371, 'https://ror.org/015c8af10', 'no_lang_code', 1, 'https://ror.org/015c8af10 Mitsubishi Chemical (Germany)'),
(46372, 'https://ror.org/007c37917', 'no_lang_code', 1, 'https://ror.org/007c37917 Moog (Germany)'),
(46373, 'https://ror.org/014jsry89', 'no_lang_code', 1, 'https://ror.org/014jsry89 Modine (South Korea)'),
(46374, 'https://ror.org/04v71zy84', 'no_lang_code', 1, 'https://ror.org/04v71zy84 Toyoda Gosei (Germany)'),
(46375, 'https://ror.org/03nkrqs25', 'no_lang_code', 1, 'https://ror.org/03nkrqs25 OSI Systems (Germany)'),
(46376, 'https://ror.org/037mzh527', 'no_lang_code', 1, 'https://ror.org/037mzh527 Coloplast (United States)'),
(46377, 'https://ror.org/043tqah33', 'no_lang_code', 1, 'https://ror.org/043tqah33 Mitsubishi Heavy Industries (Germany)'),
(46378, 'https://ror.org/03rx9np38', 'no_lang_code', 1, 'https://ror.org/03rx9np38 BlackBerry (United Kingdom)'),
(46379, 'https://ror.org/05nabdh22', 'no_lang_code', 1, 'https://ror.org/05nabdh22 Mastercard (United Kingdom)'),
(46380, 'https://ror.org/05d3x0w27', 'no_lang_code', 1, 'https://ror.org/05d3x0w27 Brunswick International Freight Terminal (United Kingdom)'),
(46381, 'https://ror.org/01mx6gt82', 'no_lang_code', 1, 'https://ror.org/01mx6gt82 Knorr-Bremse (United States)'),
(46382, 'https://ror.org/00dmed338', 'no_lang_code', 1, 'https://ror.org/00dmed338 Netzsch (Germany)'),
(46383, 'https://ror.org/04s3xvj56', 'no_lang_code', 1, 'https://ror.org/04s3xvj56 Petroleum Geo-Services (United Kingdom)'),
(46384, 'https://ror.org/043frz513', 'no_lang_code', 1, 'https://ror.org/043frz513 Nexans (United Kingdom)'),
(46385, 'https://ror.org/01qysf282', 'no_lang_code', 1, 'https://ror.org/01qysf282 Ingredion (United Kingdom)'),
(46386, 'https://ror.org/032wr9623', 'no_lang_code', 1, 'https://ror.org/032wr9623 Jain Irrigation Systems (Israel)'),
(46387, 'https://ror.org/03zna3e03', 'no_lang_code', 1, 'https://ror.org/03zna3e03 Oerlikon (Germany)'),
(46388, 'https://ror.org/01gfjdb18', 'no_lang_code', 1, 'https://ror.org/01gfjdb18 Lenovo (Japan)'),
(46389, 'https://ror.org/035fxx726', 'no_lang_code', 1, 'https://ror.org/035fxx726 Nidec (United Kingdom)'),
(46390, 'https://ror.org/05hxss661', 'no_lang_code', 1, 'https://ror.org/05hxss661 NEC (Germany) 日本電気株式会社'),
(46391, 'https://ror.org/0487grk59', 'no_lang_code', 1, 'https://ror.org/0487grk59 Salzgitter Group (Singapore)'),
(46392, 'https://ror.org/02s95xt63', 'no_lang_code', 1, 'https://ror.org/02s95xt63 Canon (United Kingdom)'),
(46393, 'https://ror.org/04ggpbw68', 'no_lang_code', 1, 'https://ror.org/04ggpbw68 Nuance Communications (Austria)'),
(46394, 'https://ror.org/05h40ds73', 'no_lang_code', 1, 'https://ror.org/05h40ds73 Westinghouse Electric (Japan)'),
(46395, 'https://ror.org/03xqv3p85', 'no_lang_code', 1, 'https://ror.org/03xqv3p85 Takeda (Germany)'),
(46396, 'https://ror.org/04185av43', 'no_lang_code', 1, 'https://ror.org/04185av43 IHI Corporation (United States)'),
(46397, 'https://ror.org/043wc6127', 'no_lang_code', 1, 'https://ror.org/043wc6127 Northrop Grumman (Germany)'),
(46398, 'https://ror.org/014yket62', 'no_lang_code', 1, 'https://ror.org/014yket62 Opera Software (Ireland)'),
(46399, 'https://ror.org/00zw8r556', 'no_lang_code', 1, 'https://ror.org/00zw8r556 Olympus (Germany)'),
(46400, 'https://ror.org/01b6ear34', 'no_lang_code', 1, 'https://ror.org/01b6ear34 Sulzer (United Kingdom)'),
(46401, 'https://ror.org/03wsdn138', 'no_lang_code', 1, 'https://ror.org/03wsdn138 OmniVision Technologies (China)'),
(46402, 'https://ror.org/04k7ny084', 'no_lang_code', 1, 'https://ror.org/04k7ny084 New Technology (Israel)'),
(46403, 'https://ror.org/0072m3y51', 'no_lang_code', 1, 'https://ror.org/0072m3y51 Oracle (Israel)'),
(46404, 'https://ror.org/0063zxz13', 'no_lang_code', 1, 'https://ror.org/0063zxz13 Avid (Israel)'),
(46405, 'https://ror.org/01004y747', 'no_lang_code', 1, 'https://ror.org/01004y747 Arris (United Kingdom)'),
(46406, 'https://ror.org/05jrxre70', 'no_lang_code', 1, 'https://ror.org/05jrxre70 Wikov (United Kingdom)'),
(46407, 'https://ror.org/0000h6r91', 'no_lang_code', 1, 'https://ror.org/0000h6r91 Naval Group (Ireland)'),
(46408, 'https://ror.org/02yq51g52', 'no_lang_code', 1, 'https://ror.org/02yq51g52 Ottobock (United States)'),
(46409, 'https://ror.org/05d6n5j65', 'no_lang_code', 1, 'https://ror.org/05d6n5j65 Parker Hannifin (Germany)'),
(46410, 'https://ror.org/04wyxrk96', 'no_lang_code', 1, 'https://ror.org/04wyxrk96 Orica (Singapore)'),
(46411, 'https://ror.org/00eqgtd35', 'no_lang_code', 1, 'https://ror.org/00eqgtd35 Paion (Germany)'),
(46412, 'https://ror.org/00gf6rd21', 'no_lang_code', 1, 'https://ror.org/00gf6rd21 Ormazabal (Germany)'),
(46413, 'https://ror.org/01zkeq752', 'no_lang_code', 1, 'https://ror.org/01zkeq752 Valeo (Germany)'),
(46414, 'https://ror.org/020h5rq76', 'no_lang_code', 1, 'https://ror.org/020h5rq76 Weatherford (United Kingdom)'),
(46415, 'https://ror.org/01fykt827', 'no_lang_code', 1, 'https://ror.org/01fykt827 Curtiss-Wright (United Kingdom)'),
(46416, 'https://ror.org/04zp8dw64', 'no_lang_code', 1, 'https://ror.org/04zp8dw64 Nippon Sheet Glass (United States)'),
(46417, 'https://ror.org/02b00s810', 'no_lang_code', 1, 'https://ror.org/02b00s810 eBay (Ireland)'),
(46418, 'https://ror.org/02wwrgv75', 'no_lang_code', 1, 'https://ror.org/02wwrgv75 Pfeiffer Vacuum (Germany)'),
(46419, 'https://ror.org/036dq0x98', 'no_lang_code', 1, 'https://ror.org/036dq0x98 Perkinelmer (Singapore)'),
(46420, 'https://ror.org/0228gqj17', 'no_lang_code', 1, 'https://ror.org/0228gqj17 Pitney Bowes (Germany)'),
(46421, 'https://ror.org/00jd8yr11', 'no_lang_code', 1, 'https://ror.org/00jd8yr11 Pitney Bowes (United Kingdom)'),
(46422, 'https://ror.org/04ehjr030', 'no_lang_code', 1, 'https://ror.org/04ehjr030 Apple (Israel)'),
(46423, 'https://ror.org/034x48g49', 'no_lang_code', 1, 'https://ror.org/034x48g49 Perrigo (Israel)'),
(46424, 'https://ror.org/0126q1y69', 'no_lang_code', 1, 'https://ror.org/0126q1y69 Plasan (Israel) פלסן'),
(46425, 'https://ror.org/016sgt720', 'no_lang_code', 1, 'https://ror.org/016sgt720 Morgan Advanced Materials (Germany)'),
(46426, 'https://ror.org/02av1as94', 'no_lang_code', 1, 'https://ror.org/02av1as94 Phoenix Contact (United States)'),
(46427, 'https://ror.org/04g918p03', 'no_lang_code', 1, 'https://ror.org/04g918p03 Oerlikon (United States)'),
(46428, 'https://ror.org/0272gsy54', 'no_lang_code', 1, 'https://ror.org/0272gsy54 BMT Group (United States)'),
(46429, 'https://ror.org/038scr081', 'no_lang_code', 1, 'https://ror.org/038scr081 Nifco (China)'),
(46430, 'https://ror.org/00w3p6078', 'no_lang_code', 1, 'https://ror.org/00w3p6078 BlueGreen Geophysics (United States)'),
(46431, 'https://ror.org/01xzb5e19', 'no_lang_code', 1, 'https://ror.org/01xzb5e19 Ultra Electronics 3 Phoenix (United States)'),
(46432, 'https://ror.org/03nbky582', 'en', 1, 'https://ror.org/03nbky582 University-National Oceanographic Laboratory System'),
(46433, 'https://ror.org/00zyc7969', 'en', 1, 'https://ror.org/00zyc7969 United States Coast Guard'),
(46434, 'https://ror.org/01v23xq73', 'no_lang_code', 1, 'https://ror.org/01v23xq73 Eaton (Taiwan)'),
(46435, 'https://ror.org/05n6b2q68', 'no_lang_code', 1, 'https://ror.org/05n6b2q68 Postnova Analytics (Germany)'),
(46436, 'https://ror.org/042jprk80', 'no_lang_code', 1, 'https://ror.org/042jprk80 Chelyabinskiy Gosudarstvennyy Institut Lazernoy Khirurgii Челябинский государственный институт лазерной хирургии'),
(46437, 'https://ror.org/041yd4786', 'en', 1, 'https://ror.org/041yd4786 Great Lakes Aquarium'),
(46438, 'https://ror.org/00g9ma558', 'no_lang_code', 1, 'https://ror.org/00g9ma558 Microsemi (Israel)'),
(46439, 'https://ror.org/004b7jc50', 'no_lang_code', 1, 'https://ror.org/004b7jc50 Maxim Integrated (United Kingdom)'),
(46440, 'https://ror.org/03ckxvj81', 'no_lang_code', 1, 'https://ror.org/03ckxvj81 MACOM (United Kingdom)'),
(46441, 'https://ror.org/027e1a103', 'no_lang_code', 1, 'https://ror.org/027e1a103 Qisda (China)'),
(46442, 'https://ror.org/053bn9w04', 'no_lang_code', 1, 'https://ror.org/053bn9w04 PROTO Manufacturing (Canada)'),
(46443, 'https://ror.org/00vdgr656', 'no_lang_code', 1, 'https://ror.org/00vdgr656 QRxPharma (Australia)'),
(46444, 'https://ror.org/031fvch84', 'no_lang_code', 1, 'https://ror.org/031fvch84 Kirchhoff (Germany)'),
(46445, 'https://ror.org/03967py46', 'no_lang_code', 1, 'https://ror.org/03967py46 Prysmian Group (Germany)'),
(46446, 'https://ror.org/04s6bs470', 'no_lang_code', 1, 'https://ror.org/04s6bs470 Prysmian Group (United States)'),
(46447, 'https://ror.org/04p43ja26', 'no_lang_code', 1, 'https://ror.org/04p43ja26 ResMed (Germany)'),
(46448, 'https://ror.org/03nsmq393', 'no_lang_code', 1, 'https://ror.org/03nsmq393 Seco Warwick (United States)'),
(46449, 'https://ror.org/05gzqyx59', 'en', 1, 'https://ror.org/05gzqyx59 Harbor Branch Oceanographic Institute'),
(46450, 'https://ror.org/00jws7929', 'en', 1, 'https://ror.org/00jws7929 Department for Exiting the European Union'),
(46451, 'https://ror.org/02aybg366', 'en', 1, 'https://ror.org/02aybg366 Qingdao Institute of Marine Geology 中国地质调查局 青岛海洋地质研究所'),
(46452, 'https://ror.org/008krtd86', 'no_lang_code', 1, 'https://ror.org/008krtd86 Thomson Reuters (United Kingdom)'),
(46453, 'https://ror.org/01gyg7015', 'no_lang_code', 1, 'https://ror.org/01gyg7015 Mallinckrodt (Japan)'),
(46454, 'https://ror.org/00jfs8131', 'no_lang_code', 1, 'https://ror.org/00jfs8131 Reliance Industries (United States)'),
(46455, 'https://ror.org/04hyg4h58', 'no_lang_code', 1, 'https://ror.org/04hyg4h58 Qiagen (United Kingdom)'),
(46456, 'https://ror.org/057vt6455', 'no_lang_code', 1, 'https://ror.org/057vt6455 Ball (United Kingdom)'),
(46457, 'https://ror.org/05f5ss468', 'no_lang_code', 1, 'https://ror.org/05f5ss468 Excelitas Technologies (Germany)'),
(46458, 'https://ror.org/01wbz2121', 'no_lang_code', 1, 'https://ror.org/01wbz2121 Rieter (Germany)'),
(46459, 'https://ror.org/047qhbs69', 'no_lang_code', 1, 'https://ror.org/047qhbs69 Rockwell Automation (Singapore)'),
(46460, 'https://ror.org/01gr8nm68', 'no_lang_code', 1, 'https://ror.org/01gr8nm68 Rockwell Automation (Germany)'),
(46461, 'https://ror.org/0090z5g12', 'no_lang_code', 1, 'https://ror.org/0090z5g12 Lhoist (Germany)'),
(46462, 'https://ror.org/02zy9xx44', 'no_lang_code', 1, 'https://ror.org/02zy9xx44 Rieter (Switzerland)'),
(46463, 'https://ror.org/00eys7z46', 'no_lang_code', 1, 'https://ror.org/00eys7z46 Renesas Electronics (United Kingdom) ルネサス エレクトロニクス株式会社'),
(46464, 'https://ror.org/05txbz736', 'no_lang_code', 1, 'https://ror.org/05txbz736 Saint-Gobain (Germany)'),
(46465, 'https://ror.org/04dd9eh65', 'no_lang_code', 1, 'https://ror.org/04dd9eh65 Solvay (China)'),
(46466, 'https://ror.org/004jk3542', 'no_lang_code', 1, 'https://ror.org/004jk3542 Renishaw (Ireland)'),
(46467, 'https://ror.org/00xmngc47', 'no_lang_code', 1, 'https://ror.org/00xmngc47 Dow Chemical (South Korea)'),
(46468, 'https://ror.org/03fd82c91', 'no_lang_code', 1, 'https://ror.org/03fd82c91 Rohm (Germany)'),
(46469, 'https://ror.org/0134cjh35', 'no_lang_code', 1, 'https://ror.org/0134cjh35 Gemalto (Israel)'),
(46470, 'https://ror.org/00386qk52', 'no_lang_code', 1, 'https://ror.org/00386qk52 Sandvik (Austria)'),
(46471, 'https://ror.org/04bg5zd67', 'no_lang_code', 1, 'https://ror.org/04bg5zd67 Sandvik (South Africa)'),
(46472, 'https://ror.org/016rz1a24', 'no_lang_code', 1, 'https://ror.org/016rz1a24 Lockheed Martin (Australia)'),
(46473, 'https://ror.org/04j80nh06', 'no_lang_code', 1, 'https://ror.org/04j80nh06 RUAG (Germany)'),
(46474, 'https://ror.org/04my8ty22', 'no_lang_code', 1, 'https://ror.org/04my8ty22 Robert Bosch (India)'),
(46475, 'https://ror.org/01yjxek63', 'no_lang_code', 1, 'https://ror.org/01yjxek63 Robert Bosch (Brazil)'),
(46476, 'https://ror.org/00z290809', 'no_lang_code', 1, 'https://ror.org/00z290809 Sandvik (Switzerland)'),
(46477, 'https://ror.org/04ewyef80', 'no_lang_code', 1, 'https://ror.org/04ewyef80 Saint-Gobain (Canada)'),
(46478, 'https://ror.org/01htp6d30', 'no_lang_code', 1, 'https://ror.org/01htp6d30 Saint-Gobain (United Kingdom)'),
(46479, 'https://ror.org/052sehq92', 'no_lang_code', 1, 'https://ror.org/052sehq92 Teleflex (Germany)'),
(46480, 'https://ror.org/02jqsa674', 'no_lang_code', 1, 'https://ror.org/02jqsa674 Eni (United Kingdom)'),
(46481, 'https://ror.org/02x4grb16', 'no_lang_code', 1, 'https://ror.org/02x4grb16 Sartorius (United States)'),
(46482, 'https://ror.org/0197y4k63', 'no_lang_code', 1, 'https://ror.org/0197y4k63 MinebeaMitsumi (Germany)'),
(46483, 'https://ror.org/04k59vn11', 'no_lang_code', 1, 'https://ror.org/04k59vn11 Sasol (Germany)'),
(46484, 'https://ror.org/01j4vgr28', 'no_lang_code', 1, 'https://ror.org/01j4vgr28 Essilor (Germany)'),
(46485, 'https://ror.org/045rgx026', 'no_lang_code', 1, 'https://ror.org/045rgx026 Saab (Switzerland)'),
(46486, 'https://ror.org/05dhb9591', 'no_lang_code', 1, 'https://ror.org/05dhb9591 Saurer (Germany)'),
(46487, 'https://ror.org/037ngs497', 'no_lang_code', 1, 'https://ror.org/037ngs497 Schauenburg (Germany)'),
(46488, 'https://ror.org/03k1ymh78', 'no_lang_code', 1, 'https://ror.org/03k1ymh78 Samsung (Israel)'),
(46489, 'https://ror.org/03z19e593', 'no_lang_code', 1, 'https://ror.org/03z19e593 Schenck Process (Germany)'),
(46490, 'https://ror.org/03hy1zg87', 'no_lang_code', 1, 'https://ror.org/03hy1zg87 Western Digital (Israel)'),
(46491, 'https://ror.org/035vbre72', 'no_lang_code', 1, 'https://ror.org/035vbre72 Western Digital (China)'),
(46492, 'https://ror.org/056xbkp48', 'no_lang_code', 1, 'https://ror.org/056xbkp48 Assa Abloy (United Kingdom)'),
(46493, 'https://ror.org/00ypwtb83', 'no_lang_code', 1, 'https://ror.org/00ypwtb83 Svenska Cellulosa (United Kingdom) Svenska Cellulosa Aktiebolaget'),
(46494, 'https://ror.org/051k6dd41', 'no_lang_code', 1, 'https://ror.org/051k6dd41 Shimadzu (United Kingdom)'),
(46495, 'https://ror.org/01q5b3b88', 'no_lang_code', 1, 'https://ror.org/01q5b3b88 Shimano (Singapore)'),
(46496, 'https://ror.org/01ftbyb35', 'no_lang_code', 1, 'https://ror.org/01ftbyb35 Johnson Controls (United Kingdom)'),
(46497, 'https://ror.org/0318teb82', 'no_lang_code', 1, 'https://ror.org/0318teb82 Kimberly-Clark (Canada)'),
(46498, 'https://ror.org/0442ypy80', 'no_lang_code', 1, 'https://ror.org/0442ypy80 Zodiac Aerospace (Germany)'),
(46499, 'https://ror.org/03j79f182', 'no_lang_code', 1, 'https://ror.org/03j79f182 Balfour Beatty (Germany)'),
(46500, 'https://ror.org/01chd1z63', 'no_lang_code', 1, 'https://ror.org/01chd1z63 Joyson Safety Systems (Germany)'),
(46501, 'https://ror.org/02n72nx11', 'no_lang_code', 1, 'https://ror.org/02n72nx11 Danaher (China)'),
(46502, 'https://ror.org/02pvszw76', 'no_lang_code', 1, 'https://ror.org/02pvszw76 Semikron (Germany)'),
(46503, 'https://ror.org/05tawrz57', 'no_lang_code', 1, 'https://ror.org/05tawrz57 Megger (Germany)'),
(46504, 'https://ror.org/0247c3d85', 'no_lang_code', 1, 'https://ror.org/0247c3d85 Siemens (Israel)'),
(46505, 'https://ror.org/002mban83', 'no_lang_code', 1, 'https://ror.org/002mban83 Sensient Technologies (Germany)'),
(46506, 'https://ror.org/03w8f2q69', 'no_lang_code', 1, 'https://ror.org/03w8f2q69 Danone (United Kingdom)'),
(46507, 'https://ror.org/057b93w27', 'no_lang_code', 1, 'https://ror.org/057b93w27 Scientific Games (Austria)'),
(46508, 'https://ror.org/0063wfd54', 'no_lang_code', 1, 'https://ror.org/0063wfd54 First Sensor (Germany)'),
(46509, 'https://ror.org/05dvgp237', 'no_lang_code', 1, 'https://ror.org/05dvgp237 Siemens (Australia)'),
(46510, 'https://ror.org/002dnnm39', 'no_lang_code', 1, 'https://ror.org/002dnnm39 Siemens (Brazil)'),
(46511, 'https://ror.org/00wjam130', 'no_lang_code', 1, 'https://ror.org/00wjam130 Sequans Communications (United Kingdom)'),
(46512, 'https://ror.org/003x8h913', 'no_lang_code', 1, 'https://ror.org/003x8h913 Eastman Chemical Company (Germany)'),
(46513, 'https://ror.org/02m3x8945', 'no_lang_code', 1, 'https://ror.org/02m3x8945 GlaxoSmithKline (Ireland)'),
(46514, 'https://ror.org/00ch15449', 'no_lang_code', 1, 'https://ror.org/00ch15449 Somfy (Germany)'),
(46515, 'https://ror.org/03ajfdb10', 'no_lang_code', 1, 'https://ror.org/03ajfdb10 Meyer Burger Technology (Germany)'),
(46516, 'https://ror.org/02qd2bv04', 'no_lang_code', 1, 'https://ror.org/02qd2bv04 Sony (China) 索尼'),
(46517, 'https://ror.org/05g2nyp02', 'no_lang_code', 1, 'https://ror.org/05g2nyp02 Sony (Spain)'),
(46518, 'https://ror.org/0214y7014', 'no_lang_code', 1, 'https://ror.org/0214y7014 Sony (Taiwan)'),
(46519, 'https://ror.org/02hzfe323', 'no_lang_code', 1, 'https://ror.org/02hzfe323 Skyworks Solutions (Japan)'),
(46520, 'https://ror.org/03ete9c40', 'no_lang_code', 1, 'https://ror.org/03ete9c40 EchoStar (India)'),
(46521, 'https://ror.org/055mvz558', 'no_lang_code', 1, 'https://ror.org/055mvz558 Sumitomo Precision Products (Japan) 住友精密工業株式会社'),
(46522, 'https://ror.org/01hwrdv70', 'no_lang_code', 1, 'https://ror.org/01hwrdv70 Silence Therapeutics (Germany)'),
(46523, 'https://ror.org/03xg8x064', 'no_lang_code', 1, 'https://ror.org/03xg8x064 3D Systems (Israel)'),
(46524, 'https://ror.org/0348bpw87', 'no_lang_code', 1, 'https://ror.org/0348bpw87 STMicroelectronics (China)'),
(46525, 'https://ror.org/03vjb5959', 'no_lang_code', 1, 'https://ror.org/03vjb5959 Cypress Semiconductor Corporation (Israel)'),
(46526, 'https://ror.org/053t12b24', 'no_lang_code', 1, 'https://ror.org/053t12b24 STMicroelectronics (Malta)'),
(46527, 'https://ror.org/05hh7s019', 'no_lang_code', 1, 'https://ror.org/05hh7s019 STMicroelectronics (Germany)'),
(46528, 'https://ror.org/0561ky130', 'no_lang_code', 1, 'https://ror.org/0561ky130 Cypress Semiconductor Corporation (Japan)'),
(46529, 'https://ror.org/030c4gr60', 'no_lang_code', 1, 'https://ror.org/030c4gr60 STMicroelectronics (Singapore)'),
(46530, 'https://ror.org/00ft7bw25', 'no_lang_code', 1, 'https://ror.org/00ft7bw25 STMicroelectronics (India)'),
(46531, 'https://ror.org/00qtbt108', 'no_lang_code', 1, 'https://ror.org/00qtbt108 Stanley Black & Decker (Switzerland)'),
(46532, 'https://ror.org/03f5vkk69', 'no_lang_code', 1, 'https://ror.org/03f5vkk69 Scientific Games (Australia)'),
(46533, 'https://ror.org/04xegkb78', 'no_lang_code', 1, 'https://ror.org/04xegkb78 Sphaera Pharma (Singapore)'),
(46534, 'https://ror.org/020p6tc25', 'no_lang_code', 1, 'https://ror.org/020p6tc25 Karl Storz (Switzerland)'),
(46535, 'https://ror.org/042hp4645', 'no_lang_code', 1, 'https://ror.org/042hp4645 Stratasys (Israel)'),
(46536, 'https://ror.org/03cb8f280', 'no_lang_code', 1, 'https://ror.org/03cb8f280 Philips (Israel)'),
(46537, 'https://ror.org/05f5r6b93', 'no_lang_code', 1, 'https://ror.org/05f5r6b93 Covestro (Japan)'),
(46538, 'https://ror.org/02ax1e863', 'no_lang_code', 1, 'https://ror.org/02ax1e863 525 Solutions (United States)'),
(46539, 'https://ror.org/02bwx5h75', 'no_lang_code', 1, 'https://ror.org/02bwx5h75 Tau Science (United States)'),
(46540, 'https://ror.org/04b47hp24', 'no_lang_code', 1, 'https://ror.org/04b47hp24 Temper (United States)'),
(46541, 'https://ror.org/04sfv4t11', 'no_lang_code', 1, 'https://ror.org/04sfv4t11 FPoliSolutions (United States)'),
(46542, 'https://ror.org/05man5y22', 'no_lang_code', 1, 'https://ror.org/05man5y22 Nhu Energy (United States)'),
(46543, 'https://ror.org/05ncabx60', 'no_lang_code', 1, 'https://ror.org/05ncabx60 Adroit Materials (United States)'),
(46544, 'https://ror.org/0458ehh05', 'no_lang_code', 1, 'https://ror.org/0458ehh05 Free Form Fibers (United States)'),
(46545, 'https://ror.org/03a3w5708', 'no_lang_code', 1, 'https://ror.org/03a3w5708 Freestone Environmental Services (United States)'),
(46546, 'https://ror.org/0496gtv62', 'no_lang_code', 1, 'https://ror.org/0496gtv62 TetraVue (United States)'),
(46547, 'https://ror.org/002y0mb20', 'no_lang_code', 1, 'https://ror.org/002y0mb20 Advanced Research Corporation (United States)'),
(46548, 'https://ror.org/04hv0jm68', 'no_lang_code', 1, 'https://ror.org/04hv0jm68 OLEDWorks (United States)'),
(46549, 'https://ror.org/02fxdpa68', 'no_lang_code', 1, 'https://ror.org/02fxdpa68 Afingen (United States)'),
(46550, 'https://ror.org/04xvx5n85', 'no_lang_code', 1, 'https://ror.org/04xvx5n85 Samraksh (United States)'),
(46551, 'https://ror.org/055sxys40', 'no_lang_code', 1, 'https://ror.org/055sxys40 General Engineering and Research (United States)'),
(46552, 'https://ror.org/04qvxeh20', 'no_lang_code', 1, 'https://ror.org/04qvxeh20 Air Squared (United States)'),
(46553, 'https://ror.org/02bhxay29', 'no_lang_code', 1, 'https://ror.org/02bhxay29 Opti O2 (United States)'),
(46554, 'https://ror.org/02g79nm61', 'no_lang_code', 1, 'https://ror.org/02g79nm61 Akonia Holographics (United States)'),
(46555, 'https://ror.org/028mbk641', 'no_lang_code', 1, 'https://ror.org/028mbk641 Transcend Engineering (United States)'),
(46556, 'https://ror.org/00vjp0q55', 'no_lang_code', 1, 'https://ror.org/00vjp0q55 OptiFuel Technology (United States)'),
(46557, 'https://ror.org/032sjsv10', 'no_lang_code', 1, 'https://ror.org/032sjsv10 Alphacore (United States)'),
(46558, 'https://ror.org/03am9qa36', 'no_lang_code', 1, 'https://ror.org/03am9qa36 American Ecotech (United States)'),
(46559, 'https://ror.org/00qm7ky44', 'no_lang_code', 1, 'https://ror.org/00qm7ky44 Global Power Technologies Group (United States)'),
(46560, 'https://ror.org/01p37tq51', 'no_lang_code', 1, 'https://ror.org/01p37tq51 Analytical Instrument Systems (United States)'),
(46561, 'https://ror.org/02q5b9n70', 'no_lang_code', 1, 'https://ror.org/02q5b9n70 Transient Plasma Systems (United States)'),
(46562, 'https://ror.org/00gr1ep19', 'no_lang_code', 1, 'https://ror.org/00gr1ep19 Gnosys Systems (United States)'),
(46563, 'https://ror.org/05v424314', 'no_lang_code', 1, 'https://ror.org/05v424314 Oregon Physics (United States)'),
(46564, 'https://ror.org/00sja8c39', 'no_lang_code', 1, 'https://ror.org/00sja8c39 Apeak (United States)'),
(46565, 'https://ror.org/005b7va47', 'no_lang_code', 1, 'https://ror.org/005b7va47 GroundMetrics (United States)'),
(46566, 'https://ror.org/01vry7t57', 'no_lang_code', 1, 'https://ror.org/01vry7t57 Pacific Microchip (United States)'),
(46567, 'https://ror.org/04e5hj993', 'no_lang_code', 1, 'https://ror.org/04e5hj993 Packet Digital (United States)'),
(46568, 'https://ror.org/02dry1b63', 'no_lang_code', 1, 'https://ror.org/02dry1b63 Trimeric (United States)'),
(46569, 'https://ror.org/01qksk953', 'no_lang_code', 1, 'https://ror.org/01qksk953 Paisano Labs (United States)'),
(46570, 'https://ror.org/03qnn2831', 'no_lang_code', 1, 'https://ror.org/03qnn2831 APS Technology (United States)'),
(46571, 'https://ror.org/01mgfe132', 'no_lang_code', 1, 'https://ror.org/01mgfe132 H3D (United States)'),
(46572, 'https://ror.org/02mn1ft77', 'no_lang_code', 1, 'https://ror.org/02mn1ft77 Partow Technologies (United States)'),
(46573, 'https://ror.org/04mf33p23', 'no_lang_code', 1, 'https://ror.org/04mf33p23 Tucker Innovations (United States)'),
(46574, 'https://ror.org/05bxvt155', 'no_lang_code', 1, 'https://ror.org/05bxvt155 Perma Works (United States)'),
(46575, 'https://ror.org/010594c48', 'no_lang_code', 1, 'https://ror.org/010594c48 Aquaneers (United States)'),
(46576, 'https://ror.org/02xdeet92', 'no_lang_code', 1, 'https://ror.org/02xdeet92 Handix Scientific (United States)'),
(46577, 'https://ror.org/015hjhv86', 'no_lang_code', 1, 'https://ror.org/015hjhv86 Tungsten Heavy Powder & Parts (United States)'),
(46578, 'https://ror.org/048hq4x94', 'no_lang_code', 1, 'https://ror.org/048hq4x94 Forge Nano (United States)'),
(46579, 'https://ror.org/01zmqmr49', 'no_lang_code', 1, 'https://ror.org/01zmqmr49 Integrated Dynamic Electron Solutions (United States)'),
(46580, 'https://ror.org/02d8geg10', 'no_lang_code', 1, 'https://ror.org/02d8geg10 Power Info (United States)'),
(46581, 'https://ror.org/053qvcb25', 'no_lang_code', 1, 'https://ror.org/053qvcb25 Helios-NRG (United States)'),
(46582, 'https://ror.org/00s4ph488', 'no_lang_code', 1, 'https://ror.org/00s4ph488 Integrated Sensors (United States)'),
(46583, 'https://ror.org/03rgkeg55', 'no_lang_code', 1, 'https://ror.org/03rgkeg55 Ayar Labs (United States)'),
(46584, 'https://ror.org/01v0w5h80', 'no_lang_code', 1, 'https://ror.org/01v0w5h80 Prescient Weather (United states)'),
(46585, 'https://ror.org/00qehty47', 'no_lang_code', 1, 'https://ror.org/00qehty47 Prime Solutions Group (United States)'),
(46586, 'https://ror.org/02pkcj269', 'no_lang_code', 1, 'https://ror.org/02pkcj269 Bailey Tool & Manufacturing (United States)'),
(46587, 'https://ror.org/03rxmnz72', 'no_lang_code', 1, 'https://ror.org/03rxmnz72 PrimeNano (united States)'),
(46588, 'https://ror.org/018qh7880', 'no_lang_code', 1, 'https://ror.org/018qh7880 Introspective Systems (United States)'),
(46589, 'https://ror.org/02bdqac63', 'no_lang_code', 1, 'https://ror.org/02bdqac63 Princeton Power Systems (United states)'),
(46590, 'https://ror.org/015chfs79', 'no_lang_code', 1, 'https://ror.org/015chfs79 ION Engineering (United States)'),
(46591, 'https://ror.org/020x0c621', 'no_lang_code', 1, 'https://ror.org/020x0c621 Hewlett Packard Enterprise (United States)'),
(46592, 'https://ror.org/05kz93b69', 'no_lang_code', 1, 'https://ror.org/05kz93b69 Boulder Environmental Sciences and Technology (United States)'),
(46593, 'https://ror.org/01rfee362', 'no_lang_code', 1, 'https://ror.org/01rfee362 k-Space Associates (United States)'),
(46594, 'https://ror.org/059ne1773', 'no_lang_code', 1, 'https://ror.org/059ne1773 Hyperv Technologies (United States)'),
(46595, 'https://ror.org/02tntw181', 'no_lang_code', 1, 'https://ror.org/02tntw181 Broala (United States)'),
(46596, 'https://ror.org/00c87zj30', 'no_lang_code', 1, 'https://ror.org/00c87zj30 Industrial Microbes (United States)'),
(46597, 'https://ror.org/02p7qqb42', 'no_lang_code', 1, 'https://ror.org/02p7qqb42 Keystone Tower Systems (United States)'),
(46598, 'https://ror.org/059771278', 'en', 1, 'https://ror.org/059771278 Provision Healthcare'),
(46599, 'https://ror.org/041f2j414', 'no_lang_code', 1, 'https://ror.org/041f2j414 InnoCit (United States)');
INSERT INTO `rors` VALUES
(46600, 'https://ror.org/01kys2h96', 'no_lang_code', 1, 'https://ror.org/01kys2h96 Quantum Technology Sciences (United States)'),
(46601, 'https://ror.org/00ynznf11', 'no_lang_code', 1, 'https://ror.org/00ynznf11 Knite (United States)'),
(46602, 'https://ror.org/02kdt8437', 'no_lang_code', 1, 'https://ror.org/02kdt8437 Catalina Scientific (United States)'),
(46603, 'https://ror.org/05tjmvm75', 'no_lang_code', 1, 'https://ror.org/05tjmvm75 InnoSepra (United States)'),
(46604, 'https://ror.org/05tgg8n11', 'no_lang_code', 1, 'https://ror.org/05tgg8n11 NovaTech (United States)'),
(46605, 'https://ror.org/004yf8m37', 'no_lang_code', 1, 'https://ror.org/004yf8m37 Reaction35 (United States)'),
(46606, 'https://ror.org/04e3bjn48', 'no_lang_code', 1, 'https://ror.org/04e3bjn48 Magneto-Inertial Fusion Technologies (United States)'),
(46607, 'https://ror.org/052ec8m16', 'no_lang_code', 1, 'https://ror.org/052ec8m16 Charmworks (United States)'),
(46608, 'https://ror.org/04qca6973', 'no_lang_code', 1, 'https://ror.org/04qca6973 Chemical Semantics (United States)'),
(46609, 'https://ror.org/040kgfc87', 'no_lang_code', 1, 'https://ror.org/040kgfc87 Lightwave Photonics (United States)'),
(46610, 'https://ror.org/038jhf436', 'no_lang_code', 1, 'https://ror.org/038jhf436 Rivis (United States)'),
(46611, 'https://ror.org/04wka5f51', 'no_lang_code', 1, 'https://ror.org/04wka5f51 Citrine Informatics (United States)'),
(46612, 'https://ror.org/01fjm5093', 'no_lang_code', 1, 'https://ror.org/01fjm5093 CM Technologies (United States)'),
(46613, 'https://ror.org/016zkbb25', 'en', 1, 'https://ror.org/016zkbb25 Royal Association for Deaf people'),
(46614, 'https://ror.org/01cz0ts58', 'no_lang_code', 1, 'https://ror.org/01cz0ts58 Lucent Optics (United States)'),
(46615, 'https://ror.org/00xf3s895', 'no_lang_code', 1, 'https://ror.org/00xf3s895 Vadient Optics (United States)'),
(46616, 'https://ror.org/03cxbpn31', 'no_lang_code', 1, 'https://ror.org/03cxbpn31 Lumisyn (United States)'),
(46617, 'https://ror.org/030h9s280', 'en', 1, 'https://ror.org/030h9s280 St. Petersburg Department of Steklov Institute of Mathematics Санкт-Петербургское отделение Математического института им. В. А. Стеклова РАН, abbreviated ПОМИ'),
(46618, 'https://ror.org/01hm2rz97', 'no_lang_code', 1, 'https://ror.org/01hm2rz97 Cool Energy (United States)'),
(46619, 'https://ror.org/05dbjwr50', 'no_lang_code', 1, 'https://ror.org/05dbjwr50 VLNComm (United States)'),
(46620, 'https://ror.org/037v0vj63', 'no_lang_code', 1, 'https://ror.org/037v0vj63 Coulometrics (United States)'),
(46621, 'https://ror.org/04xwm9403', 'no_lang_code', 1, 'https://ror.org/04xwm9403 VoltServer (United States)'),
(46622, 'https://ror.org/04vq3zr60', 'no_lang_code', 1, 'https://ror.org/04vq3zr60 Machfu (United States)'),
(46623, 'https://ror.org/0470vq398', 'no_lang_code', 1, 'https://ror.org/0470vq398 Saratoga Energy Research Partners (United States)'),
(46624, 'https://ror.org/03tw6b878', 'no_lang_code', 1, 'https://ror.org/03tw6b878 D-Tech (United States)'),
(46625, 'https://ror.org/000gjv789', 'no_lang_code', 1, 'https://ror.org/000gjv789 Dawn Research (United States)'),
(46626, 'https://ror.org/05jqkvb96', 'no_lang_code', 1, 'https://ror.org/05jqkvb96 Vuronyx Technologies (United States)'),
(46627, 'https://ror.org/010xx8472', 'no_lang_code', 1, 'https://ror.org/010xx8472 Scuba Probe Technologies (United states)'),
(46628, 'https://ror.org/01f8j5z75', 'no_lang_code', 1, 'https://ror.org/01f8j5z75 Maidana Research (United States)'),
(46629, 'https://ror.org/021gp0c72', 'no_lang_code', 1, 'https://ror.org/021gp0c72 Dirac Solutions (United States)'),
(46630, 'https://ror.org/01vgda714', 'no_lang_code', 1, 'https://ror.org/01vgda714 Dorodnitsyn Computing Centre Вычислительный центр им. А. А. Дородницына РАН'),
(46631, 'https://ror.org/003cm7v94', 'no_lang_code', 1, 'https://ror.org/003cm7v94 Sensor Creations (United States)'),
(46632, 'https://ror.org/040yzn427', 'no_lang_code', 1, 'https://ror.org/040yzn427 Wang NMR (United States)'),
(46633, 'https://ror.org/02b5r6277', 'no_lang_code', 1, 'https://ror.org/02b5r6277 Manta Biofuel (United States)'),
(46634, 'https://ror.org/02168cw18', 'en', 1, 'https://ror.org/02168cw18 Institute of Industrial Ecology Институт промышленной экологии УрО РАН'),
(46635, 'https://ror.org/056fzpe56', 'no_lang_code', 1, 'https://ror.org/056fzpe56 Dymenso (United States)'),
(46636, 'https://ror.org/02bm6mv56', 'no_lang_code', 1, 'https://ror.org/02bm6mv56 Woodruff Scientific (United States)'),
(46637, 'https://ror.org/034gcct62', 'no_lang_code', 1, 'https://ror.org/034gcct62 E-Motors Consulting (United States)'),
(46638, 'https://ror.org/00awz3e55', 'no_lang_code', 1, 'https://ror.org/00awz3e55 Flash Bainite (United States)'),
(46639, 'https://ror.org/009fme624', 'no_lang_code', 1, 'https://ror.org/009fme624 E-Spectrum Technologies (United States)'),
(46640, 'https://ror.org/01p7ybj33', 'no_lang_code', 1, 'https://ror.org/01p7ybj33 Xelera Research (United States)'),
(46641, 'https://ror.org/02age0r06', 'no_lang_code', 1, 'https://ror.org/02age0r06 Sheeta (United states)'),
(46642, 'https://ror.org/04ekh4959', 'no_lang_code', 1, 'https://ror.org/04ekh4959 Xergy (United States)'),
(46643, 'https://ror.org/050e1z365', 'no_lang_code', 1, 'https://ror.org/050e1z365 XG Sciences (United States)'),
(46644, 'https://ror.org/02zee8r13', 'no_lang_code', 1, 'https://ror.org/02zee8r13 E3Tec (United States)'),
(46645, 'https://ror.org/00ya1es69', 'no_lang_code', 1, 'https://ror.org/00ya1es69 MicroBio Engineering (United States)'),
(46646, 'https://ror.org/05g27td62', 'no_lang_code', 1, 'https://ror.org/05g27td62 Ecovia Renewables (United States)'),
(46647, 'https://ror.org/02pap1668', 'no_lang_code', 1, 'https://ror.org/02pap1668 ZymoChem (United States)'),
(46648, 'https://ror.org/041728v85', 'no_lang_code', 1, 'https://ror.org/041728v85 SiILion (United states)'),
(46649, 'https://ror.org/0042aq380', 'no_lang_code', 1, 'https://ror.org/0042aq380 Sironix Renewables (United States)'),
(46650, 'https://ror.org/0033p4m78', 'no_lang_code', 1, 'https://ror.org/0033p4m78 eIQ Energy (United States)'),
(46651, 'https://ror.org/04gm8dp50', 'no_lang_code', 1, 'https://ror.org/04gm8dp50 MoJo Labs (United States)'),
(46652, 'https://ror.org/0087ve919', 'no_lang_code', 1, 'https://ror.org/0087ve919 Solid Material Solutions (United States)'),
(46653, 'https://ror.org/01an04p26', 'no_lang_code', 1, 'https://ror.org/01an04p26 Stryker (Israel)'),
(46654, 'https://ror.org/02z2rxb36', 'no_lang_code', 1, 'https://ror.org/02z2rxb36 Mold Dynamics (United States)'),
(46655, 'https://ror.org/047wdpf58', 'no_lang_code', 1, 'https://ror.org/047wdpf58 Solid Power (United States)'),
(46656, 'https://ror.org/00cg4a205', 'no_lang_code', 1, 'https://ror.org/00cg4a205 Stryker (Ireland)'),
(46657, 'https://ror.org/00hg4dc82', 'no_lang_code', 1, 'https://ror.org/00hg4dc82 Emissol (United States)'),
(46658, 'https://ror.org/051mdt953', 'no_lang_code', 1, 'https://ror.org/051mdt953 Montana Emergent Technologies (United States)'),
(46659, 'https://ror.org/0233t5667', 'no_lang_code', 1, 'https://ror.org/0233t5667 Solution Spray Technologies (United states)'),
(46660, 'https://ror.org/00xj0z482', 'no_lang_code', 1, 'https://ror.org/00xj0z482 Munro & Associates (United States)'),
(46661, 'https://ror.org/01b2hfd49', 'no_lang_code', 1, 'https://ror.org/01b2hfd49 Energy Sense Finance (United States)'),
(46662, 'https://ror.org/00znts755', 'no_lang_code', 1, 'https://ror.org/00znts755 Sonata (United States)'),
(46663, 'https://ror.org/026wdw115', 'no_lang_code', 1, 'https://ror.org/026wdw115 Spero Energy (United States)'),
(46664, 'https://ror.org/04prhfn63', 'no_lang_code', 1, 'https://ror.org/04prhfn63 Samsung (Switzerland)'),
(46665, 'https://ror.org/03y203366', 'no_lang_code', 1, 'https://ror.org/03y203366 Engineering Mechanics Corporation of Columbus (United States)'),
(46666, 'https://ror.org/01vfjxd24', 'no_lang_code', 1, 'https://ror.org/01vfjxd24 Ennetix (United States)'),
(46667, 'https://ror.org/03tx9vd35', 'no_lang_code', 1, 'https://ror.org/03tx9vd35 EntryPoint (United States)'),
(46668, 'https://ror.org/02c37sg63', 'no_lang_code', 1, 'https://ror.org/02c37sg63 Flexsurface (United States)'),
(46669, 'https://ror.org/0140bnh63', 'no_lang_code', 1, 'https://ror.org/0140bnh63 Ineos (Germany)'),
(46670, 'https://ror.org/03axjke18', 'en', 1, 'https://ror.org/03axjke18 Fondazione per la ricerca e la cura dei linfomi Foundation for the Research and Cure of Lymphoma in Ticino'),
(46671, 'https://ror.org/03tvrj437', 'no_lang_code', 1, 'https://ror.org/03tvrj437 Amresco (United States)'),
(46672, 'https://ror.org/04m2v6546', 'no_lang_code', 1, 'https://ror.org/04m2v6546 Extensible Energy (United States)'),
(46673, 'https://ror.org/00yck8s68', 'no_lang_code', 1, 'https://ror.org/00yck8s68 Mitsubishi Corporation (Germany)'),
(46674, 'https://ror.org/00vg5ax74', 'no_lang_code', 1, 'https://ror.org/00vg5ax74 TECE (Germany)'),
(46675, 'https://ror.org/05f6fhp31', 'no_lang_code', 1, 'https://ror.org/05f6fhp31 Micron (Singapore)'),
(46676, 'https://ror.org/028n6av57', 'no_lang_code', 1, 'https://ror.org/028n6av57 Dynacast (Canada)'),
(46677, 'https://ror.org/00w32k615', 'no_lang_code', 1, 'https://ror.org/00w32k615 SunEdison (United States)'),
(46678, 'https://ror.org/019xzz882', 'no_lang_code', 1, 'https://ror.org/019xzz882 Deutsche Telekom (Singapore)'),
(46679, 'https://ror.org/00bx90590', 'no_lang_code', 1, 'https://ror.org/00bx90590 Deutsche Telekom (Austria)'),
(46680, 'https://ror.org/051gaae98', 'no_lang_code', 1, 'https://ror.org/051gaae98 Tellabs (Canada)'),
(46681, 'https://ror.org/01x1jk522', 'no_lang_code', 1, 'https://ror.org/01x1jk522 Tata Technologies (Singapore)'),
(46682, 'https://ror.org/00kheej15', 'no_lang_code', 1, 'https://ror.org/00kheej15 Tektronix (Switzerland)'),
(46683, 'https://ror.org/02zkwry50', 'no_lang_code', 1, 'https://ror.org/02zkwry50 Tektronix (Germany)'),
(46684, 'https://ror.org/04v7gxe28', 'no_lang_code', 1, 'https://ror.org/04v7gxe28 Tektronix (Japan)'),
(46685, 'https://ror.org/04kw5s604', 'no_lang_code', 1, 'https://ror.org/04kw5s604 Tektronix (United States)'),
(46686, 'https://ror.org/02zd56905', 'no_lang_code', 1, 'https://ror.org/02zd56905 Tenneco (Germany)'),
(46687, 'https://ror.org/00ma0s885', 'no_lang_code', 1, 'https://ror.org/00ma0s885 Teledyne Technologies (Australia)'),
(46688, 'https://ror.org/00e1g8a02', 'no_lang_code', 1, 'https://ror.org/00e1g8a02 Teledyne e2v (United Kingdom)'),
(46689, 'https://ror.org/02s0wcj29', 'no_lang_code', 1, 'https://ror.org/02s0wcj29 Taiwan Semiconductor Manufacturing Company (China) 台灣積體電路製造公司'),
(46690, 'https://ror.org/00xfdbb04', 'no_lang_code', 1, 'https://ror.org/00xfdbb04 Telefonica (Germany)'),
(46691, 'https://ror.org/00esacy80', 'no_lang_code', 1, 'https://ror.org/00esacy80 TDK (United Kingdom)'),
(46692, 'https://ror.org/03w3b4f85', 'no_lang_code', 1, 'https://ror.org/03w3b4f85 ThyssenKrupp (United Kingdom)'),
(46693, 'https://ror.org/008j2vk87', 'no_lang_code', 1, 'https://ror.org/008j2vk87 Johnson & Johnson (Ireland)'),
(46694, 'https://ror.org/05q609a17', 'no_lang_code', 1, 'https://ror.org/05q609a17 Texas Instruments (Ireland)'),
(46695, 'https://ror.org/02y2rfe31', 'no_lang_code', 1, 'https://ror.org/02y2rfe31 TGS (United Kingdom)'),
(46696, 'https://ror.org/05kpyvj64', 'no_lang_code', 1, 'https://ror.org/05kpyvj64 Stanley Black & Decker (Taiwan)'),
(46697, 'https://ror.org/00p9kb710', 'no_lang_code', 1, 'https://ror.org/00p9kb710 Thorlabs (Germany)'),
(46698, 'https://ror.org/00xkz3n79', 'no_lang_code', 1, 'https://ror.org/00xkz3n79 Trapeze (United States)'),
(46699, 'https://ror.org/002wxg772', 'no_lang_code', 1, 'https://ror.org/002wxg772 Tsubaki (Germany) 株式会社椿本チエイン'),
(46700, 'https://ror.org/01tk5k162', 'no_lang_code', 1, 'https://ror.org/01tk5k162 Trimble (Germany)'),
(46701, 'https://ror.org/002qh8m50', 'no_lang_code', 1, 'https://ror.org/002qh8m50 Trelleborg (Germany)'),
(46702, 'https://ror.org/009yrnm54', 'no_lang_code', 1, 'https://ror.org/009yrnm54 Trelleborg (United Kingdom)'),
(46703, 'https://ror.org/0048he143', 'no_lang_code', 1, 'https://ror.org/0048he143 Össur (Germany)'),
(46704, 'https://ror.org/018mj7168', 'no_lang_code', 1, 'https://ror.org/018mj7168 Furukawa Electric (Germany)'),
(46705, 'https://ror.org/00y1n0k33', 'no_lang_code', 1, 'https://ror.org/00y1n0k33 Stanley Black & Decker (United Kingdom)'),
(46706, 'https://ror.org/05e6atz65', 'no_lang_code', 1, 'https://ror.org/05e6atz65 TRUMPF (Austria)'),
(46707, 'https://ror.org/02anmpm17', 'no_lang_code', 1, 'https://ror.org/02anmpm17 Varian Medical Systems (Germany)'),
(46708, 'https://ror.org/02drbqt14', 'no_lang_code', 1, 'https://ror.org/02drbqt14 TE Connectivity (China)'),
(46709, 'https://ror.org/03yw95n57', 'no_lang_code', 1, 'https://ror.org/03yw95n57 Amdocs (Philippines)'),
(46710, 'https://ror.org/03vzakk34', 'no_lang_code', 1, 'https://ror.org/03vzakk34 TE Connectivity (South Korea)'),
(46711, 'https://ror.org/028x0tg55', 'no_lang_code', 1, 'https://ror.org/028x0tg55 TE Connectivity (Austria)'),
(46712, 'https://ror.org/03d1vm044', 'no_lang_code', 1, 'https://ror.org/03d1vm044 TE Connectivity (Brazil)'),
(46713, 'https://ror.org/04hqvm002', 'no_lang_code', 1, 'https://ror.org/04hqvm002 ZF Friedrichshafen (Japan)'),
(46714, 'https://ror.org/01vs7pm87', 'no_lang_code', 1, 'https://ror.org/01vs7pm87 Teleflex (United States)'),
(46715, 'https://ror.org/046as2g47', 'no_lang_code', 1, 'https://ror.org/046as2g47 Robert Bosch (Taiwan)'),
(46716, 'https://ror.org/05nqd9f14', 'no_lang_code', 1, 'https://ror.org/05nqd9f14 Valeo (South Korea)'),
(46717, 'https://ror.org/03z3d5x54', 'no_lang_code', 1, 'https://ror.org/03z3d5x54 Valeo (Japan)'),
(46718, 'https://ror.org/04ccqwj03', 'no_lang_code', 1, 'https://ror.org/04ccqwj03 Mitsubishi Electric (Germany)'),
(46719, 'https://ror.org/03kx9nw13', 'no_lang_code', 1, 'https://ror.org/03kx9nw13 Valeo (Brazil)'),
(46720, 'https://ror.org/05x7wqc91', 'no_lang_code', 1, 'https://ror.org/05x7wqc91 Valeo (United States)'),
(46721, 'https://ror.org/0566s9y93', 'no_lang_code', 1, 'https://ror.org/0566s9y93 Voith (United States)'),
(46722, 'https://ror.org/03e7zen21', 'no_lang_code', 1, 'https://ror.org/03e7zen21 Volvo (United States)'),
(46723, 'https://ror.org/02d0esb25', 'no_lang_code', 1, 'https://ror.org/02d0esb25 Volvo (Canada)'),
(46724, 'https://ror.org/05syhdw25', 'no_lang_code', 1, 'https://ror.org/05syhdw25 Visa (United Kingdom)'),
(46725, 'https://ror.org/037fqd482', 'no_lang_code', 1, 'https://ror.org/037fqd482 Danaher (Australia)'),
(46726, 'https://ror.org/02q83n633', 'no_lang_code', 1, 'https://ror.org/02q83n633 Vossloh (Germany)'),
(46727, 'https://ror.org/00rvgp591', 'no_lang_code', 1, 'https://ror.org/00rvgp591 Open Text (United Kingdom)'),
(46728, 'https://ror.org/01w51pg70', 'no_lang_code', 1, 'https://ror.org/01w51pg70 Greenhouse Gas Industries (United States)'),
(46729, 'https://ror.org/005fe1k46', 'no_lang_code', 1, 'https://ror.org/005fe1k46 BorgWarner (Brazil)'),
(46730, 'https://ror.org/04n36vx38', 'no_lang_code', 1, 'https://ror.org/04n36vx38 Visteon (Japan)'),
(46731, 'https://ror.org/007st8028', 'no_lang_code', 1, 'https://ror.org/007st8028 Visuray (Malta)'),
(46732, 'https://ror.org/057devs37', 'no_lang_code', 1, 'https://ror.org/057devs37 Gentherm (Germany)'),
(46733, 'https://ror.org/00dsdst25', 'no_lang_code', 1, 'https://ror.org/00dsdst25 John Deere (New Zealand)'),
(46734, 'https://ror.org/031b16827', 'no_lang_code', 1, 'https://ror.org/031b16827 ProjectEconomics (United states)'),
(46735, 'https://ror.org/01hbz8t53', 'no_lang_code', 1, 'https://ror.org/01hbz8t53 Wipro (Singapore)'),
(46736, 'https://ror.org/023qwjb45', 'no_lang_code', 1, 'https://ror.org/023qwjb45 Allergan (India)'),
(46737, 'https://ror.org/057p9rb14', 'no_lang_code', 1, 'https://ror.org/057p9rb14 Solid Cell (United States)'),
(46738, 'https://ror.org/04vp8pb02', 'no_lang_code', 1, 'https://ror.org/04vp8pb02 West Pharmaceuticals (Germany)'),
(46739, 'https://ror.org/030xy3q54', 'no_lang_code', 1, 'https://ror.org/030xy3q54 Foxconn (United Kingdom)'),
(46740, 'https://ror.org/000cytz87', 'no_lang_code', 1, 'https://ror.org/000cytz87 Weatherford (Switzerland)'),
(46741, 'https://ror.org/03pwzr890', 'no_lang_code', 1, 'https://ror.org/03pwzr890 Westinghouse Electric (Germany)'),
(46742, 'https://ror.org/036tb1y26', 'no_lang_code', 1, 'https://ror.org/036tb1y26 NanoAl (United States)'),
(46743, 'https://ror.org/02jwcy839', 'no_lang_code', 1, 'https://ror.org/02jwcy839 Yazaki (United Kingdom)'),
(46744, 'https://ror.org/03g5wg622', 'no_lang_code', 1, 'https://ror.org/03g5wg622 YIT (Germany)'),
(46745, 'https://ror.org/049ncrn81', 'no_lang_code', 1, 'https://ror.org/049ncrn81 Bausch Health (Germany)'),
(46746, 'https://ror.org/045ns6h78', 'no_lang_code', 1, 'https://ror.org/045ns6h78 Woodward (Germany)'),
(46747, 'https://ror.org/031hb1d69', 'no_lang_code', 1, 'https://ror.org/031hb1d69 YKK (United Kingdom)'),
(46748, 'https://ror.org/049evaf90', 'en', 1, 'https://ror.org/049evaf90 Access Computer College'),
(46749, 'https://ror.org/026m6ke87', 'en', 1, 'https://ror.org/026m6ke87 Brainerd Public Library'),
(46750, 'https://ror.org/0364wpq06', 'en', 1, 'https://ror.org/0364wpq06 Gordon College'),
(46751, 'https://ror.org/00wpxjs04', 'en', 1, 'https://ror.org/00wpxjs04 Santa Clara City Library'),
(46752, 'https://ror.org/05v3gb133', 'no_lang_code', 1, 'https://ror.org/05v3gb133 Stanley Black & Decker (Israel)'),
(46753, 'https://ror.org/02ythmp17', 'en', 1, 'https://ror.org/02ythmp17 Tampa–Hillsborough County Public Library System'),
(46754, 'https://ror.org/047vw5609', 'en', 1, 'https://ror.org/047vw5609 National Assembly of Zambia'),
(46755, 'https://ror.org/018pwv131', 'no_lang_code', 1, 'https://ror.org/018pwv131 Zumtobel Group (Austria)'),
(46756, 'https://ror.org/05758j740', 'no_lang_code', 1, 'https://ror.org/05758j740 Stihl (Japan) スチール'),
(46757, 'https://ror.org/05rxz3g75', 'en', 1, 'https://ror.org/05rxz3g75 Harris County Public Library'),
(46758, 'https://ror.org/04w6x9t25', 'no_lang_code', 1, 'https://ror.org/04w6x9t25 Zumtobel Group (Germany)'),
(46759, 'https://ror.org/034afnt37', 'en', 1, 'https://ror.org/034afnt37 Ospidéal Mhuire Our Lady''s Hospital'),
(46760, 'https://ror.org/0524n4e69', 'en', 1, 'https://ror.org/0524n4e69 Kagawa Buried Cultural Property Center 香川県埋蔵文化財センター'),
(46761, 'https://ror.org/008te2062', 'en', 1, 'https://ror.org/008te2062 St Michael’s Hospital'),
(46762, 'https://ror.org/02f053x13', 'en', 1, 'https://ror.org/02f053x13 Kagawa Prefectural Board of Education 香川県教育委員会'),
(46763, 'https://ror.org/02ew7cc18', 'en', 1, 'https://ror.org/02ew7cc18 Miyakoda Elementary School 都田小学校'),
(46764, 'https://ror.org/02b0cb113', 'no_lang_code', 1, 'https://ror.org/02b0cb113 Johnson Controls (Australia)'),
(46765, 'https://ror.org/017d0p023', 'en', 1, 'https://ror.org/017d0p023 Hiroshima Prefectural Museum of History 広島県立歴史博物館'),
(46766, 'https://ror.org/01ykg8t62', 'en', 1, 'https://ror.org/01ykg8t62 Kagoshima Prefectural Museum 鹿児島県立博物館'),
(46767, 'https://ror.org/04pnp9s43', 'no_lang_code', 1, 'https://ror.org/04pnp9s43 Hikone Central Hospital 彦根中央病院'),
(46768, 'https://ror.org/02dkdym27', 'en', 1, 'https://ror.org/02dkdym27 Kagoshima University Hospital 鹿児島大学病院'),
(46769, 'https://ror.org/010q5z761', 'en', 1, 'https://ror.org/010q5z761 Ishikawa Prefectural Museum of Art 石川県立美術館'),
(46770, 'https://ror.org/00gk9by75', 'no_lang_code', 1, 'https://ror.org/00gk9by75 Ishikawa Prefectural Takamatsu Hospital 石川県立高松病院'),
(46771, 'https://ror.org/0186a0992', 'en', 1, 'https://ror.org/0186a0992 Kanazawa Municipal Kenrokuen Elementary School 金沢市立兼六小学校'),
(46772, 'https://ror.org/023nefd62', 'en', 1, 'https://ror.org/023nefd62 Museum of Modern Art 茨城県近代美術館'),
(46773, 'https://ror.org/01kr38871', 'en', 1, 'https://ror.org/01kr38871 Niigata Prefectural Board of Education'),
(46774, 'https://ror.org/05m794j93', 'en', 1, 'https://ror.org/05m794j93 Fujisawa Institute of Technology High School 神奈川県立藤沢工科高等学校'),
(46775, 'https://ror.org/028vbck82', 'en', 1, 'https://ror.org/028vbck82 Kanagawa Odawara Nursing School 神奈川県立小田原養護学校'),
(46776, 'https://ror.org/05gq4r458', 'en', 1, 'https://ror.org/05gq4r458 Ibaraki Prefectural Board of Education 茨城県教育委員会'),
(46777, 'https://ror.org/01g46vk97', 'en', 1, 'https://ror.org/01g46vk97 Hokkaido Kitami Hokuto High School 北海道北見北斗高等学校'),
(46778, 'https://ror.org/02710jx66', 'no_lang_code', 1, 'https://ror.org/02710jx66 Izu Nirayama Onsen Hospital 伊豆韮山温泉病院'),
(46779, 'https://ror.org/01pyfb655', 'en', 1, 'https://ror.org/01pyfb655 Kochi Prefectural Education Center 高知県教育センター'),
(46780, 'https://ror.org/00xagtd33', 'en', 1, 'https://ror.org/00xagtd33 Kawasaki Univ Yato Elementary School 川崎市立大谷戸小学校'),
(46781, 'https://ror.org/02576fj66', 'en', 1, 'https://ror.org/02576fj66 Hokkaidō Museum of Literature'),
(46782, 'https://ror.org/02bdqpa81', 'en', 1, 'https://ror.org/02bdqpa81 Hokkaido Orthopedic Surgery Memorial Hospital'),
(46783, 'https://ror.org/02t5fze90', 'en', 1, 'https://ror.org/02t5fze90 Japan Institute of Lifelong Learning 般財団法人 日本生涯学習総合研究所'),
(46784, 'https://ror.org/03g57y740', 'en', 1, 'https://ror.org/03g57y740 Kochi Rehabilitation Institute 高知リハビリテーション学院'),
(46785, 'https://ror.org/01rvx9t49', 'en', 1, 'https://ror.org/01rvx9t49 Kanagawa Prefecture Policy Bureau 神奈川県政策局'),
(46786, 'https://ror.org/021gppz37', 'en', 1, 'https://ror.org/021gppz37 Kawasaki Municipal Science Museum 川崎市青少年科学館'),
(46787, 'https://ror.org/0525kzq59', 'en', 1, 'https://ror.org/0525kzq59 Kyoto Prefectural Board of Education'),
(46788, 'https://ror.org/04xbz3316', 'en', 1, 'https://ror.org/04xbz3316 Miyazaki Prefectural Museum of Nature and History 宮崎県総合博物館'),
(46789, 'https://ror.org/010y4ef75', 'en', 1, 'https://ror.org/010y4ef75 Kitakyushu Yahata Special Needs Schools 北九州市立八幡特別支援学校'),
(46790, 'https://ror.org/025k5zj19', 'en', 1, 'https://ror.org/025k5zj19 Kumamoto Educational Center 熊本市教育センター'),
(46791, 'https://ror.org/04jf29r27', 'en', 1, 'https://ror.org/04jf29r27 Iwate Prefectural Mizusawa Agricultural High School'),
(46792, 'https://ror.org/004ywrc08', 'en', 1, 'https://ror.org/004ywrc08 Kobe City Fire Department 神戸市消防局'),
(46793, 'https://ror.org/01d9rtb50', 'en', 1, 'https://ror.org/01d9rtb50 Kumamoto Prefectural Board of Education 熊本県教育委員会'),
(46794, 'https://ror.org/01f7hds15', 'en', 1, 'https://ror.org/01f7hds15 Kobe City Museum 神戸市立博物館'),
(46795, 'https://ror.org/00saznr62', 'en', 1, 'https://ror.org/00saznr62 Kumamoto Prefectural Museum of Art 熊本県立美術館'),
(46796, 'https://ror.org/05f6tgb27', 'en', 1, 'https://ror.org/05f6tgb27 Nagano City Board of Education 長野市教育委員会'),
(46797, 'https://ror.org/0543j1d77', 'en', 1, 'https://ror.org/0543j1d77 Fujita Animal Hospital 藤田動物病院'),
(46798, 'https://ror.org/04m8v6x07', 'no_lang_code', 1, 'https://ror.org/04m8v6x07 Nojiri Naumanni Museum'),
(46799, 'https://ror.org/03edh2b12', 'en', 1, 'https://ror.org/03edh2b12 Matsudo City Board of Education 松戸市教育委員会'),
(46800, 'https://ror.org/047fe4v13', 'en', 1, 'https://ror.org/047fe4v13 Board of Education Mino Education Office'),
(46801, 'https://ror.org/03r6s6r63', 'en', 1, 'https://ror.org/03r6s6r63 Nagaoka Municipal Science Museum'),
(46802, 'https://ror.org/0347zf750', 'no_lang_code', 1, 'https://ror.org/0347zf750 Tamashima Hospital 公益財団法人 弘仁会 玉島病院'),
(46803, 'https://ror.org/03kmyta64', 'en', 1, 'https://ror.org/03kmyta64 Naha City Hospital 那覇市立病院'),
(46804, 'https://ror.org/00vgf5h37', 'en', 1, 'https://ror.org/00vgf5h37 Miwa Internal Medicine Clinic みわ内科クリニック'),
(46805, 'https://ror.org/00phmvd84', 'en', 1, 'https://ror.org/00phmvd84 Matsuyama Gakuen Matsuyama welfare College 松山学園松山福祉専門学校'),
(46806, 'https://ror.org/00r6wds48', 'en', 1, 'https://ror.org/00r6wds48 Nagasaki Museum of History and Culture 長崎歴史文化博物館'),
(46807, 'https://ror.org/01mre3x46', 'en', 1, 'https://ror.org/01mre3x46 Kanetsu Hospital 関越病院'),
(46808, 'https://ror.org/03kjve460', 'en', 1, 'https://ror.org/03kjve460 Nagasaki Prefectural Tsushima Museum of History and Folklore 長崎県立対馬歴史民俗史料館'),
(46809, 'https://ror.org/01b123706', 'en', 1, 'https://ror.org/01b123706 Miyagi Prefectural Ishinomaki Support School 宮城県立石巻支援学校'),
(46810, 'https://ror.org/048n8ck62', 'en', 1, 'https://ror.org/048n8ck62 Plateau Medical Center'),
(46811, 'https://ror.org/00gm0dm67', 'en', 1, 'https://ror.org/00gm0dm67 Matsura Historical Museum 松浦史料博物館'),
(46812, 'https://ror.org/02h6wcs88', 'en', 1, 'https://ror.org/02h6wcs88 Nara Prefectural Board of Education 奈良県教育委員会'),
(46813, 'https://ror.org/01gtsvp41', 'en', 1, 'https://ror.org/01gtsvp41 Medical Corporation River Mizuma hospital ミズマ病院'),
(46814, 'https://ror.org/010jmsy02', 'no_lang_code', 1, 'https://ror.org/010jmsy02 Kyoto Computer Gakuin 京都コンピュータ学院'),
(46815, 'https://ror.org/01wvy7k28', 'en', 1, 'https://ror.org/01wvy7k28 Nara Medical University Hospital 奈良県立医科大学附属病院'),
(46816, 'https://ror.org/00h0qgf14', 'en', 1, 'https://ror.org/00h0qgf14 Yamamoto Hospital 山本病院'),
(46817, 'https://ror.org/03tb78t08', 'en', 1, 'https://ror.org/03tb78t08 Nara Prefectural Institute for Educational Research 奈良県立教育研究所'),
(46818, 'https://ror.org/0353y3c48', 'en', 1, 'https://ror.org/0353y3c48 Kyoto Institute of Culture and Language 京都文化日本語学校'),
(46819, 'https://ror.org/00tqkj625', 'en', 1, 'https://ror.org/00tqkj625 Miyagi Prefecture Shibata Agriculture and Forestry High School 宮城県柴田農林高等学校'),
(46820, 'https://ror.org/04m2ybb32', 'en', 1, 'https://ror.org/04m2ybb32 Nagoya City Science Museum 名古屋市科学館'),
(46821, 'https://ror.org/01w8svt05', 'en', 1, 'https://ror.org/01w8svt05 Tohoku History Museum 東北歴史博物館'),
(46822, 'https://ror.org/02errs104', 'en', 1, 'https://ror.org/02errs104 Kyoto Municipal Junior College of Nursing 京都市立看護短期大学'),
(46823, 'https://ror.org/02mda8974', 'en', 1, 'https://ror.org/02mda8974 Kyoto Prefectural Education Center 京都府総合教育センター'),
(46824, 'https://ror.org/02zsmpq40', 'en', 1, 'https://ror.org/02zsmpq40 Kyoto Prefectural Police 京都府警察'),
(46825, 'https://ror.org/00sbe8213', 'en', 1, 'https://ror.org/00sbe8213 National Hospital Organization Hokkaido Medical Center 独立行政法人 国立病院機構 北海道医療センター'),
(46826, 'https://ror.org/02tbkt967', 'en', 1, 'https://ror.org/02tbkt967 National Hospital Organization Takasaki Medical Center 国立病院機構高崎総合医療センター'),
(46827, 'https://ror.org/047gkb024', 'en', 1, 'https://ror.org/047gkb024 Okinaka Memorial Adult Disease Research Institute 冲中記念成人病研究所'),
(46828, 'https://ror.org/023vnxa51', 'en', 1, 'https://ror.org/023vnxa51 National Consumer Affairs Center of Japan 国民生活センター'),
(46829, 'https://ror.org/00s34pf12', 'en', 1, 'https://ror.org/00s34pf12 Okinawa Prefecture Ohira Special School School 沖縄県立大平特別支援学校'),
(46830, 'https://ror.org/00sywr539', 'en', 1, 'https://ror.org/00sywr539 Okinawa Prefectural Yaeyama Hospital 沖縄県立八重山病院'),
(46831, 'https://ror.org/00jvf9d33', 'en', 1, 'https://ror.org/00jvf9d33 Okinawa Red Cross Hospital 沖縄赤十字病院'),
(46832, 'https://ror.org/01byxk048', 'en', 1, 'https://ror.org/01byxk048 National Hospital Organization Iobyoin 国立病院機構医王病院'),
(46833, 'https://ror.org/003sgjn18', 'no_lang_code', 1, 'https://ror.org/003sgjn18 Osaka Butsuryo University 大阪物療大学'),
(46834, 'https://ror.org/05a68bd15', 'en', 1, 'https://ror.org/05a68bd15 National Hospital Organization Takamatsu Medical Center 国立病院機構高松医療センター'),
(46835, 'https://ror.org/00z9jj523', 'en', 1, 'https://ror.org/00z9jj523 Neyagawa City Board of Education 寝屋川市教育委員会'),
(46836, 'https://ror.org/01xpja968', 'en', 1, 'https://ror.org/01xpja968 Oita Prefectural Nascent Support School 大分県特別支援学校'),
(46837, 'https://ror.org/04nmxj606', 'en', 1, 'https://ror.org/04nmxj606 Niigata Agricultural Research Institute 新潟県園芸研究センター'),
(46838, 'https://ror.org/030r45j36', 'en', 1, 'https://ror.org/030r45j36 Neyagaya School for Special Needs Education 大阪府立寝屋川支援学校'),
(46839, 'https://ror.org/00bxxsn28', 'en', 1, 'https://ror.org/00bxxsn28 Oita Prefectural Yufu Support School 大分県由布院支援学校'),
(46840, 'https://ror.org/048n7pq28', 'no_lang_code', 1, 'https://ror.org/048n7pq28 Oji Holdings (Japan) 王子ホールディングス株式会社'),
(46841, 'https://ror.org/01k4g2w20', 'en', 1, 'https://ror.org/01k4g2w20 Japan Association for Development of Community Medicine 公益社団法人 地域医療振興協会'),
(46842, 'https://ror.org/02x7eef92', 'en', 1, 'https://ror.org/02x7eef92 Okayama Prefectural Museum 岡山県立博物館'),
(46843, 'https://ror.org/02thzwy35', 'en', 1, 'https://ror.org/02thzwy35 Okayama Psychiatric Medical Center 岡山県精神医療センター'),
(46844, 'https://ror.org/05swp8738', 'en', 1, 'https://ror.org/05swp8738 Sakai City Board of Education 教育委員会 - 堺市'),
(46845, 'https://ror.org/03kx92c42', 'en', 1, 'https://ror.org/03kx92c42 Industrial Technology Center of SAGA 佐賀県産業技術センター'),
(46846, 'https://ror.org/03nsa4h03', 'en', 1, 'https://ror.org/03nsa4h03 Sakai City Education Center 堺市教育センター'),
(46847, 'https://ror.org/04vbmne73', 'en', 1, 'https://ror.org/04vbmne73 Sakura Walnut Kindergarten'),
(46848, 'https://ror.org/0114ckv42', 'no_lang_code', 1, 'https://ror.org/0114ckv42 Hyōgo Prefectural Museum of Art 兵庫県立美術館'),
(46849, 'https://ror.org/0113nqq98', 'en', 1, 'https://ror.org/0113nqq98 Sapporo Science Center 札幌市青少年科学館'),
(46850, 'https://ror.org/05236ad29', 'en', 1, 'https://ror.org/05236ad29 Sagamihara City Museum 相模原市立博物館'),
(46851, 'https://ror.org/05caes925', 'no_lang_code', 1, 'https://ror.org/05caes925 Kitamurayama Hospital 北村山公立病院'),
(46852, 'https://ror.org/043nr7w50', 'en', 1, 'https://ror.org/043nr7w50 Saitama Board of Education 埼玉県教育委員会'),
(46853, 'https://ror.org/02z4s0f38', 'en', 1, 'https://ror.org/02z4s0f38 Otaru City General Museum 小樽市総合博物館'),
(46854, 'https://ror.org/046zfzv81', 'en', 1, 'https://ror.org/046zfzv81 Museum of Modern Art 滋賀県立近代美術館'),
(46855, 'https://ror.org/05yca4657', 'en', 1, 'https://ror.org/05yca4657 Tokyo Metropolitan Art Museum 東京都美術館'),
(46856, 'https://ror.org/04hg19818', 'en', 1, 'https://ror.org/04hg19818 Shimane Institute for Industrial Technology 島根県産業技術センター'),
(46857, 'https://ror.org/008382c47', 'no_lang_code', 1, 'https://ror.org/008382c47 Sendai City Museum 仙台市博物館'),
(46858, 'https://ror.org/01m520d39', 'en', 1, 'https://ror.org/01m520d39 Shimane Museum of Ancient Izumo 島根県立古代出雲歴史博物館'),
(46859, 'https://ror.org/003gxx992', 'en', 1, 'https://ror.org/003gxx992 Sendai Science Museum 仙台市科学館'),
(46860, 'https://ror.org/034x19584', 'en', 1, 'https://ror.org/034x19584 Tokyo Metropolitan School Personnel in Service Training Center 東京都教職員研修センター'),
(46861, 'https://ror.org/012mvxw17', 'no_lang_code', 1, 'https://ror.org/012mvxw17 Sendai City Tomizawa Site Museum 地底の森ミュージアム'),
(46862, 'https://ror.org/054z92k23', 'en', 1, 'https://ror.org/054z92k23 Suzuka Junior College 鈴鹿短期大学'),
(46863, 'https://ror.org/0468j5v73', 'en', 1, 'https://ror.org/0468j5v73 Shinjuku Ward Shinjuku Historical Museum 新宿歴史博物館'),
(46864, 'https://ror.org/04871sq53', 'en', 1, 'https://ror.org/04871sq53 Takayanagi Dental Clinic 高柳歯科病院'),
(46865, 'https://ror.org/04v0npt58', 'en', 1, 'https://ror.org/04v0npt58 Toyonaka City Board of Education 教育委員会 豊中市'),
(46866, 'https://ror.org/016ebj734', 'en', 1, 'https://ror.org/016ebj734 Tsuchiura City Museum 土浦市立博物館'),
(46867, 'https://ror.org/0109zs540', 'en', 1, 'https://ror.org/0109zs540 The Institute of Energy Economics, Japan エネルギー経済研究所'),
(46868, 'https://ror.org/0136tgd19', 'en', 1, 'https://ror.org/0136tgd19 Tokyo College of Welfare 東京福祉専門学校'),
(46869, 'https://ror.org/031jw0220', 'no_lang_code', 1, 'https://ror.org/031jw0220 Uji Hospital 宇治病院'),
(46870, 'https://ror.org/0546xmt86', 'en', 1, 'https://ror.org/0546xmt86 Edo Tokyo Museum 江戸東京博物館'),
(46871, 'https://ror.org/03xhjng91', 'no_lang_code', 1, 'https://ror.org/03xhjng91 Tomakomai Art Museum 苫小牧市美術博物館'),
(46872, 'https://ror.org/03pmbr594', 'no_lang_code', 1, 'https://ror.org/03pmbr594 Mitsuwadai General Hospital みつわ台総合病院'),
(46873, 'https://ror.org/00k6n7177', 'en', 1, 'https://ror.org/00k6n7177 National Archives of Japan 独立行政法人国立公文書館'),
(46874, 'https://ror.org/02kt78v62', 'en', 1, 'https://ror.org/02kt78v62 Yamanashi Prefectural Board of Education 山梨県教育委員会'),
(46875, 'https://ror.org/02db4dt48', 'en', 1, 'https://ror.org/02db4dt48 Yuki Animal Hospital'),
(46876, 'https://ror.org/048mspf89', 'no_lang_code', 1, 'https://ror.org/048mspf89 Utsunomiya Museum of Art'),
(46877, 'https://ror.org/01z639x82', 'en', 1, 'https://ror.org/01z639x82 Yanagawa Rehabilitation Hospital 柳川リハビリテーション病院'),
(46878, 'https://ror.org/01sgjy251', 'en', 1, 'https://ror.org/01sgjy251 Wakayama City Culture and Sports Promotion Foundation 公益財団法人 和歌山市文化スポーツ振興財団'),
(46879, 'https://ror.org/00f3a6g74', 'en', 1, 'https://ror.org/00f3a6g74 Vocational School YIC Rehabilitation College'),
(46880, 'https://ror.org/04qa3rn14', 'no_lang_code', 1, 'https://ror.org/04qa3rn14 Wakayama City Museum 和歌山市立博物館'),
(46881, 'https://ror.org/01rjrd067', 'en', 1, 'https://ror.org/01rjrd067 Yamaguchi Prefectural Museum 山口県立山口博物館'),
(46882, 'https://ror.org/04jehxx70', 'en', 1, 'https://ror.org/04jehxx70 Yokohama City Furusato History Foundation 横浜市ふるさと歴史財団'),
(46883, 'https://ror.org/03kt5ya77', 'en', 1, 'https://ror.org/03kt5ya77 Wakayama Prefectural Museum of Natural History 和歌山県立自然博物館'),
(46884, 'https://ror.org/00jkg1x62', 'en', 1, 'https://ror.org/00jkg1x62 Wakayama Prefecture Wakayama School for the Blind 和歌山県立和歌山盲学校'),
(46885, 'https://ror.org/01v5yyw18', 'en', 1, 'https://ror.org/01v5yyw18 Baker County Library District'),
(46886, 'https://ror.org/02p3be630', 'en', 1, 'https://ror.org/02p3be630 ACCESS Health International'),
(46887, 'https://ror.org/01yyvd121', 'en', 1, 'https://ror.org/01yyvd121 Carnegie Foundation for the Advancement of Teaching'),
(46888, 'https://ror.org/01b021x78', 'en', 1, 'https://ror.org/01b021x78 Baltimore County Public Library'),
(46889, 'https://ror.org/00msak069', 'en', 1, 'https://ror.org/00msak069 Access to Medicine Index'),
(46890, 'https://ror.org/02hf7bd34', 'en', 1, 'https://ror.org/02hf7bd34 American Evaluation Association'),
(46891, 'https://ror.org/02rqp9j27', 'no_lang_code', 1, 'https://ror.org/02rqp9j27 Batavia Biosciences (Netherlands)'),
(46892, 'https://ror.org/04te90b83', 'en', 1, 'https://ror.org/04te90b83 Cascade Bicycle Club Education Foundation'),
(46893, 'https://ror.org/03ryarw12', 'en', 1, 'https://ror.org/03ryarw12 American India Foundation'),
(46894, 'https://ror.org/01mdbny50', 'en', 1, 'https://ror.org/01mdbny50 Access to Nutrition Foundation'),
(46895, 'https://ror.org/00p3nks92', 'en', 1, 'https://ror.org/00p3nks92 American Indian Institute'),
(46896, 'https://ror.org/03b14n703', 'en', 1, 'https://ror.org/03b14n703 Cascade Mental Healthcare'),
(46897, 'https://ror.org/02zpzpz12', 'en', 1, 'https://ror.org/02zpzpz12 Access to Seeds Index'),
(46898, 'https://ror.org/04fnymv42', 'en', 1, 'https://ror.org/04fnymv42 Catalysis Foundation for Health'),
(46899, 'https://ror.org/01ttfq573', 'en', 1, 'https://ror.org/01ttfq573 Future Forum'),
(46900, 'https://ror.org/01d6jx411', 'en', 1, 'https://ror.org/01d6jx411 Children’s AIDS Fund International'),
(46901, 'https://ror.org/041746v50', 'en', 1, 'https://ror.org/041746v50 Catholic Health Association of India'),
(46902, 'https://ror.org/02bzdv186', 'en', 1, 'https://ror.org/02bzdv186 Children''s Trust Foundation'),
(46903, 'https://ror.org/054awkm93', 'en', 1, 'https://ror.org/054awkm93 Achievement Rewards for College Scientists Foundation'),
(46904, 'https://ror.org/009qwqe18', 'en', 1, 'https://ror.org/009qwqe18 ACT Foundation'),
(46905, 'https://ror.org/04fqe7r22', 'en', 1, 'https://ror.org/04fqe7r22 CHIME Institute'),
(46906, 'https://ror.org/05bj5cn41', 'en', 1, 'https://ror.org/05bj5cn41 Belgrade Community Library'),
(46907, 'https://ror.org/00v6yka12', 'en', 1, 'https://ror.org/00v6yka12 Admiral Theatre'),
(46908, 'https://ror.org/03e84bp78', 'en', 1, 'https://ror.org/03e84bp78 China Chamber of Commerce for Import and Export of Medicines and Health Products 中国医药保健品进出口商会'),
(46909, 'https://ror.org/0504zvt24', 'en', 1, 'https://ror.org/0504zvt24 American Society of News Editors'),
(46910, 'https://ror.org/00zm4vy06', 'no_lang_code', 1, 'https://ror.org/00zm4vy06 Bellwether Education Partners (United States)'),
(46911, 'https://ror.org/02kx13m48', 'en', 1, 'https://ror.org/02kx13m48 Catholic Bishops Conference of India'),
(46912, 'https://ror.org/018eag955', 'en', 1, 'https://ror.org/018eag955 American Society of Tropical Medicine and Hygiene'),
(46913, 'https://ror.org/02vjw6237', 'en', 1, 'https://ror.org/02vjw6237 China Foundation'),
(46914, 'https://ror.org/026mhhz95', 'no_lang_code', 1, 'https://ror.org/026mhhz95 Benchmark Education (United States)'),
(46915, 'https://ror.org/000wtey38', 'en', 1, 'https://ror.org/000wtey38 Africa Harvest Biotech Foundation International'),
(46916, 'https://ror.org/05h0yhm60', 'en', 1, 'https://ror.org/05h0yhm60 China Friendship Foundation for Peace and Development'),
(46917, 'https://ror.org/03ntfkn26', 'en', 1, 'https://ror.org/03ntfkn26 Ames Free Library'),
(46918, 'https://ror.org/04gz66q85', 'en', 1, 'https://ror.org/04gz66q85 Benton Foundation'),
(46919, 'https://ror.org/05ejn6a41', 'en', 1, 'https://ror.org/05ejn6a41 Center for Collaborative Education'),
(46920, 'https://ror.org/008yrcn60', 'en', 1, 'https://ror.org/008yrcn60 Bertha Voyer Memorial Library'),
(46921, 'https://ror.org/027tjrp79', 'en', 1, 'https://ror.org/027tjrp79 Africa Progress Panel'),
(46922, 'https://ror.org/026tyse21', 'en', 1, 'https://ror.org/026tyse21 Anaheim Public Library'),
(46923, 'https://ror.org/05vppxx21', 'en', 1, 'https://ror.org/05vppxx21 African Agricultural Technology Foundation'),
(46924, 'https://ror.org/021tjzv82', 'en', 1, 'https://ror.org/021tjzv82 Christian Connections for International Health'),
(46925, 'https://ror.org/03jj2t466', 'en', 1, 'https://ror.org/03jj2t466 Ancient Egypt Research Associates'),
(46926, 'https://ror.org/04h9tqm30', 'en', 1, 'https://ror.org/04h9tqm30 Center for Education Reform'),
(46927, 'https://ror.org/051j85s07', 'en', 1, 'https://ror.org/051j85s07 Climate Foundation'),
(46928, 'https://ror.org/03jr65e79', 'en', 1, 'https://ror.org/03jr65e79 African Capacity Building Foundation'),
(46929, 'https://ror.org/022733842', 'es', 1, 'https://ror.org/022733842 Biblioteca del Congreso de la Nación'),
(46930, 'https://ror.org/001dnh404', 'en', 1, 'https://ror.org/001dnh404 College for All Texans Foundation'),
(46931, 'https://ror.org/04ngqe873', 'en', 1, 'https://ror.org/04ngqe873 Center for Effective Philanthropy'),
(46932, 'https://ror.org/01w4t8268', 'en', 1, 'https://ror.org/01w4t8268 Big Rapids Community Library'),
(46933, 'https://ror.org/04q7kwp74', 'en', 1, 'https://ror.org/04q7kwp74 College Success Foundation'),
(46934, 'https://ror.org/02vjq2k16', 'en', 1, 'https://ror.org/02vjq2k16 BIO Ventures for Global Health'),
(46935, 'https://ror.org/050zd7q22', 'en', 1, 'https://ror.org/050zd7q22 African Comprehensive HIV/AIDS Partnerships'),
(46936, 'https://ror.org/05ms7st28', 'en', 1, 'https://ror.org/05ms7st28 Ministerio de Cultura Ministry of Culture'),
(46937, 'https://ror.org/03y00r958', 'en', 1, 'https://ror.org/03y00r958 Arab Foundations Forum ملتقى المؤسسات العربية الداعمة'),
(46938, 'https://ror.org/03k7fv950', 'en', 1, 'https://ror.org/03k7fv950 Yawata Medical Center 加賀八幡温泉病院'),
(46939, 'https://ror.org/005v7em92', 'en', 1, 'https://ror.org/005v7em92 Colorado Department of Higher Education'),
(46940, 'https://ror.org/00jr1sd21', 'en', 1, 'https://ror.org/00jr1sd21 African Field Epidemiology Network'),
(46941, 'https://ror.org/01wwqrh75', 'en', 1, 'https://ror.org/01wwqrh75 Arizona State Library, Archives and Public Records'),
(46942, 'https://ror.org/05dbk3t51', 'en', 1, 'https://ror.org/05dbk3t51 Center for Law and Social Policy'),
(46943, 'https://ror.org/010j46531', 'en', 1, 'https://ror.org/010j46531 African Health Economics and Policy Association'),
(46944, 'https://ror.org/00d4far13', 'en', 1, 'https://ror.org/00d4far13 Colorado Education Initiative'),
(46945, 'https://ror.org/01vvcdt37', 'en', 1, 'https://ror.org/01vvcdt37 Colorado Library Consortium'),
(46946, 'https://ror.org/01zjf2224', 'en', 1, 'https://ror.org/01zjf2224 African Leaders Malaria Alliance'),
(46947, 'https://ror.org/04q23dw35', 'en', 1, 'https://ror.org/04q23dw35 Arkansas Department of Higher Education'),
(46948, 'https://ror.org/00jmjse55', 'en', 1, 'https://ror.org/00jmjse55 Black Alliance for Educational Options'),
(46949, 'https://ror.org/05nsw7t82', 'en', 1, 'https://ror.org/05nsw7t82 Colorado River Indian Tribes Library'),
(46950, 'https://ror.org/02xy0vm11', 'en', 1, 'https://ror.org/02xy0vm11 Arkansas State Library'),
(46951, 'https://ror.org/050nvag51', 'en', 1, 'https://ror.org/050nvag51 Committee for Economic Development'),
(46952, 'https://ror.org/030bjny53', 'en', 1, 'https://ror.org/030bjny53 Arlington Public Library'),
(46953, 'https://ror.org/04q26a018', 'en', 1, 'https://ror.org/04q26a018 Common Heritage Foundation'),
(46954, 'https://ror.org/01xx0px16', 'en', 1, 'https://ror.org/01xx0px16 ASEAN Foundation'),
(46955, 'https://ror.org/05enr0y39', 'en', 1, 'https://ror.org/05enr0y39 Asian Counseling and Referral Service'),
(46956, 'https://ror.org/04wxd9348', 'en', 1, 'https://ror.org/04wxd9348 Center for Teaching Quality'),
(46957, 'https://ror.org/059dvm679', 'en', 1, 'https://ror.org/059dvm679 East, Central and Southern Africa Health Community'),
(46958, 'https://ror.org/039hky346', 'en', 1, 'https://ror.org/039hky346 Asian University for Women Support Foundation'),
(46959, 'https://ror.org/003xctm20', 'en', 1, 'https://ror.org/003xctm20 Road Map Project'),
(46960, 'https://ror.org/00kf09769', 'en', 1, 'https://ror.org/00kf09769 African Ministers'' Council on Water'),
(46961, 'https://ror.org/0348j9j37', 'en', 1, 'https://ror.org/0348j9j37 Association for Research on Nonprofit Organizations and Voluntary Action'),
(46962, 'https://ror.org/02qhvwc15', 'en', 1, 'https://ror.org/02qhvwc15 Boulder Institute of Microfinance'),
(46963, 'https://ror.org/059a51570', 'en', 1, 'https://ror.org/059a51570 U.S. Global Leadership Coalition'),
(46964, 'https://ror.org/02gn7j616', 'en', 1, 'https://ror.org/02gn7j616 African Virtual University'),
(46965, 'https://ror.org/03e5aw094', 'en', 1, 'https://ror.org/03e5aw094 Association for the Study of Higher Education'),
(46966, 'https://ror.org/02rbpte87', 'en', 1, 'https://ror.org/02rbpte87 African Women Education and Development Forum'),
(46967, 'https://ror.org/04cycke44', 'en', 1, 'https://ror.org/04cycke44 Center on Budget and Policy Priorities'),
(46968, 'https://ror.org/04d3s7k24', 'en', 1, 'https://ror.org/04d3s7k24 Association of African Business Schools'),
(46969, 'https://ror.org/02jr6ev43', 'en', 1, 'https://ror.org/02jr6ev43 PowerMyLearning'),
(46970, 'https://ror.org/0351wfv37', 'en', 1, 'https://ror.org/0351wfv37 Association of Charitable Foundations'),
(46971, 'https://ror.org/0275ehw53', 'en', 1, 'https://ror.org/0275ehw53 Bremen Overseas Research & Development Association'),
(46972, 'https://ror.org/02bh88b91', 'en', 1, 'https://ror.org/02bh88b91 Concept Foundation'),
(46973, 'https://ror.org/04fwk7718', 'en', 1, 'https://ror.org/04fwk7718 Association of Community College Trustees'),
(46974, 'https://ror.org/04yagfz71', 'en', 1, 'https://ror.org/04yagfz71 Center on Education Policy'),
(46975, 'https://ror.org/0109vaz13', 'en', 1, 'https://ror.org/0109vaz13 Afrivac'),
(46976, 'https://ror.org/00n80r273', 'en', 1, 'https://ror.org/00n80r273 Congressional Black Caucus Foundation'),
(46977, 'https://ror.org/02prt3487', 'en', 1, 'https://ror.org/02prt3487 Congressional Coalition on Adoption Institute'),
(46978, 'https://ror.org/028wmn587', 'en', 1, 'https://ror.org/028wmn587 Central Kentucky Educational Cooperative'),
(46979, 'https://ror.org/04fjvna30', 'en', 1, 'https://ror.org/04fjvna30 Association of Fundraising Professionals Advancement Northwest'),
(46980, 'https://ror.org/00xvrse39', 'en', 1, 'https://ror.org/00xvrse39 Association of Governing Boards of Universities and Colleges'),
(46981, 'https://ror.org/04cp1fw87', 'en', 1, 'https://ror.org/04cp1fw87 Consortium for Educational Change'),
(46982, 'https://ror.org/01pr11k10', 'en', 1, 'https://ror.org/01pr11k10 Central Savannah River Area Regional Educational Service Agency'),
(46983, 'https://ror.org/010pns631', 'en', 1, 'https://ror.org/010pns631 Consortium for School Networking'),
(46984, 'https://ror.org/0304d2a41', 'en', 1, 'https://ror.org/0304d2a41 Exponent Philanthropy'),
(46985, 'https://ror.org/03rjhat65', 'en', 1, 'https://ror.org/03rjhat65 Consortium of Florida Education Foundations'),
(46986, 'https://ror.org/01rkxw296', 'en', 1, 'https://ror.org/01rkxw296 Aid for Aids'),
(46987, 'https://ror.org/02vr4se61', 'en', 1, 'https://ror.org/02vr4se61 Brownsville Public Library'),
(46988, 'https://ror.org/011k1tq34', 'en', 1, 'https://ror.org/011k1tq34 Bucks County Free Library'),
(46989, 'https://ror.org/05stxd180', 'en', 1, 'https://ror.org/05stxd180 Atlanta Research and Education Foundation'),
(46990, 'https://ror.org/04mgmjj66', 'en', 1, 'https://ror.org/04mgmjj66 Centre for Advocacy and Research'),
(46991, 'https://ror.org/00j04c011', 'nl', 1, 'https://ror.org/00j04c011 Aidsfonds'),
(46992, 'https://ror.org/03bks0n32', 'en', 1, 'https://ror.org/03bks0n32 Greater Austin Hispanic Chamber of Commerce'),
(46993, 'https://ror.org/01c7wjq44', 'en', 1, 'https://ror.org/01c7wjq44 Contra Costa County Library'),
(46994, 'https://ror.org/03rb4a416', 'en', 1, 'https://ror.org/03rb4a416 George W. Bush Presidential Center'),
(46995, 'https://ror.org/03r8vy816', 'en', 1, 'https://ror.org/03r8vy816 Austin Voices for Education and Youth'),
(46996, 'https://ror.org/01jb93665', 'en', 1, 'https://ror.org/01jb93665 Business-Higher Education Forum'),
(46997, 'https://ror.org/05hsdzk10', 'en', 1, 'https://ror.org/05hsdzk10 AIDS Society of India'),
(46998, 'https://ror.org/03ck0bq92', 'en', 1, 'https://ror.org/03ck0bq92 AIDS Vaccine Advocacy Coalition'),
(46999, 'https://ror.org/05mdg9603', 'en', 1, 'https://ror.org/05mdg9603 Confederation of Oregon School Administrators'),
(47000, 'https://ror.org/05vtsp510', 'en', 1, 'https://ror.org/05vtsp510 Australian Respiratory and Sleep Medicine Institute'),
(47001, 'https://ror.org/05w6rx357', 'en', 1, 'https://ror.org/05w6rx357 Council for Aid to Education'),
(47002, 'https://ror.org/00v71jq68', 'en', 1, 'https://ror.org/00v71jq68 Centre for Innovation in Regulatory Science'),
(47003, 'https://ror.org/02ye0v256', 'en', 1, 'https://ror.org/02ye0v256 Council of Michigan Foundations'),
(47004, 'https://ror.org/0292ff745', 'en', 1, 'https://ror.org/0292ff745 Council on Foundations'),
(47005, 'https://ror.org/05k833b90', 'en', 1, 'https://ror.org/05k833b90 Avenir Health'),
(47006, 'https://ror.org/05be7rs83', 'en', 1, 'https://ror.org/05be7rs83 California County Superintendents Educational Services Association'),
(47007, 'https://ror.org/00wj49d82', 'en', 1, 'https://ror.org/00wj49d82 Centre for Remote Sensing and Geographic Information Services'),
(47008, 'https://ror.org/05w7zhb08', 'en', 1, 'https://ror.org/05w7zhb08 County of Los Angeles Public Library'),
(47009, 'https://ror.org/01n1nc173', 'en', 1, 'https://ror.org/01n1nc173 California State Library'),
(47010, 'https://ror.org/00st9jg49', 'en', 1, 'https://ror.org/00st9jg49 Cross Plains Public Library'),
(47011, 'https://ror.org/04nvyq536', 'en', 1, 'https://ror.org/04nvyq536 California State Library Foundation'),
(47012, 'https://ror.org/054rm1829', 'en', 1, 'https://ror.org/054rm1829 Albert Wisner Public Library'),
(47013, 'https://ror.org/0269xbr94', 'en', 1, 'https://ror.org/0269xbr94 Californians Dedicated to Education Foundation'),
(47014, 'https://ror.org/00ypw9w15', 'en', 1, 'https://ror.org/00ypw9w15 European Foundation Centre'),
(47015, 'https://ror.org/012jxwf11', 'en', 1, 'https://ror.org/012jxwf11 Alberta Library'),
(47016, 'https://ror.org/02tg35219', 'no_lang_code', 1, 'https://ror.org/02tg35219 Ceres Nanosciences'),
(47017, 'https://ror.org/01twdqv51', 'en', 1, 'https://ror.org/01twdqv51 Cumberland County Public Library and Information Center'),
(47018, 'https://ror.org/04f2nz275', 'en', 1, 'https://ror.org/04f2nz275 Eurovacc Foundation'),
(47019, 'https://ror.org/03qjf8t17', 'en', 1, 'https://ror.org/03qjf8t17 Calvert Foundation'),
(47020, 'https://ror.org/02wg0x984', 'no_lang_code', 1, 'https://ror.org/02wg0x984 M-Changa'),
(47021, 'https://ror.org/03cm5j964', 'en', 1, 'https://ror.org/03cm5j964 Cambridge in America');
INSERT INTO `rors` VALUES
(47022, 'https://ror.org/0403wct47', 'en', 1, 'https://ror.org/0403wct47 AllAfrica Foundation'),
(47023, 'https://ror.org/00yt07t18', 'en', 1, 'https://ror.org/00yt07t18 Chapel Hill Breast Cancer Foundation'),
(47024, 'https://ror.org/04vp9r166', 'en', 1, 'https://ror.org/04vp9r166 Excelencia in Education'),
(47025, 'https://ror.org/0033b1559', 'en', 1, 'https://ror.org/0033b1559 Allegheny County Library Association'),
(47026, 'https://ror.org/00t04tg27', 'en', 1, 'https://ror.org/00t04tg27 Executive Development Institute'),
(47027, 'https://ror.org/03vj6qh87', 'en', 1, 'https://ror.org/03vj6qh87 Carbondale Public Library'),
(47028, 'https://ror.org/03skd0235', 'en', 1, 'https://ror.org/03skd0235 Charities Aid Foundation'),
(47029, 'https://ror.org/001aem118', 'en', 1, 'https://ror.org/001aem118 Executive Office of Education'),
(47030, 'https://ror.org/05e48yb54', 'en', 1, 'https://ror.org/05e48yb54 Alliance for Education'),
(47031, 'https://ror.org/044b8e138', 'en', 1, 'https://ror.org/044b8e138 Davenport Public Library'),
(47032, 'https://ror.org/0344ry767', 'en', 1, 'https://ror.org/0344ry767 Chelsea District Library'),
(47033, 'https://ror.org/04m877p68', 'en', 1, 'https://ror.org/04m877p68 Cherie Blair Foundation for Women'),
(47034, 'https://ror.org/01bnqfz49', 'en', 1, 'https://ror.org/01bnqfz49 Dawliffe Hall Education Foundation'),
(47035, 'https://ror.org/01s3ybj54', 'en', 1, 'https://ror.org/01s3ybj54 Chess Mates Foundation'),
(47036, 'https://ror.org/02jeqzx58', 'en', 1, 'https://ror.org/02jeqzx58 District of Columbia Public Education Fund'),
(47037, 'https://ror.org/0045ja979', 'en', 1, 'https://ror.org/0045ja979 Chester County Library System'),
(47038, 'https://ror.org/008ensz53', 'en', 1, 'https://ror.org/008ensz53 Alliance for Excellent Education'),
(47039, 'https://ror.org/004tddr41', 'en', 1, 'https://ror.org/004tddr41 Family Online Safety Institute'),
(47040, 'https://ror.org/00nyy7p10', 'en', 1, 'https://ror.org/00nyy7p10 Deepam Educational Society for Health'),
(47041, 'https://ror.org/02dsnxe42', 'en', 1, 'https://ror.org/02dsnxe42 Farm Foundation'),
(47042, 'https://ror.org/04emz6k48', 'en', 1, 'https://ror.org/04emz6k48 Chicago International Charter School'),
(47043, 'https://ror.org/030q2z289', 'en', 1, 'https://ror.org/030q2z289 GBCHealth'),
(47044, 'https://ror.org/02hfh3870', 'en', 1, 'https://ror.org/02hfh3870 Farm Journal Foundation'),
(47045, 'https://ror.org/03p186h82', 'en', 1, 'https://ror.org/03p186h82 Delaware County Libraries'),
(47046, 'https://ror.org/040zdhw11', 'en', 1, 'https://ror.org/040zdhw11 Global Business School Network'),
(47047, 'https://ror.org/040gyce73', 'en', 1, 'https://ror.org/040gyce73 Aman Foundation'),
(47048, 'https://ror.org/02zsz8156', 'en', 1, 'https://ror.org/02zsz8156 British Fashion Council'),
(47049, 'https://ror.org/029cnn998', 'en', 1, 'https://ror.org/029cnn998 Delaware Division of Libraries'),
(47050, 'https://ror.org/04zp7ch64', 'en', 1, 'https://ror.org/04zp7ch64 Global Child Nutrition Foundation'),
(47051, 'https://ror.org/0043qss98', 'en', 1, 'https://ror.org/0043qss98 Federal Employee Education and Assistance Fund'),
(47052, 'https://ror.org/03tmsgc53', 'en', 1, 'https://ror.org/03tmsgc53 Amarillo Area Foundation'),
(47053, 'https://ror.org/01vtgjs22', 'en', 1, 'https://ror.org/01vtgjs22 Chicago Public Library Foundation'),
(47054, 'https://ror.org/02xcsx289', 'en', 1, 'https://ror.org/02xcsx289 Chief Officers of State Library Agencies'),
(47055, 'https://ror.org/028a41k93', 'en', 1, 'https://ror.org/028a41k93 Global Health Corps'),
(47056, 'https://ror.org/02vw0qn29', 'en', 1, 'https://ror.org/02vw0qn29 American Association of School Administrators'),
(47057, 'https://ror.org/05wcj6f33', 'en', 1, 'https://ror.org/05wcj6f33 Denise Louie Education Center'),
(47058, 'https://ror.org/04e1eb965', 'en', 1, 'https://ror.org/04e1eb965 Fiorello H. LaGuardia Foundation'),
(47059, 'https://ror.org/05dsfsy10', 'en', 1, 'https://ror.org/05dsfsy10 DSST Public Schools'),
(47060, 'https://ror.org/00bn1cs33', 'en', 1, 'https://ror.org/00bn1cs33 Florida Association of District School Superintendents'),
(47061, 'https://ror.org/01nakaj54', 'en', 1, 'https://ror.org/01nakaj54 Florida Association of School Administrators'),
(47062, 'https://ror.org/04v68r337', 'en', 1, 'https://ror.org/04v68r337 Child Health Foundation'),
(47063, 'https://ror.org/05fbj2448', 'en', 1, 'https://ror.org/05fbj2448 Florida Chamber of Commerce'),
(47064, 'https://ror.org/04qy3pa58', 'en', 1, 'https://ror.org/04qy3pa58 Florida College System'),
(47065, 'https://ror.org/04w491k66', 'en', 1, 'https://ror.org/04w491k66 Desmond and Leah Tutu Legacy Foundation'),
(47066, 'https://ror.org/02tr89m76', 'en', 1, 'https://ror.org/02tr89m76 Flowminder Foundation Stiftelsen Flowminder'),
(47067, 'https://ror.org/00tg8vj44', 'en', 1, 'https://ror.org/00tg8vj44 KnowledgeWorks'),
(47068, 'https://ror.org/00kp77011', 'en', 1, 'https://ror.org/00kp77011 Desmond Tutu Peace Foundation'),
(47069, 'https://ror.org/01nqzp818', 'no_lang_code', 1, 'https://ror.org/01nqzp818 Global Health Strategies (United States)'),
(47070, 'https://ror.org/04e08ga15', 'en', 1, 'https://ror.org/04e08ga15 Fontes Foundation'),
(47071, 'https://ror.org/02avpen06', 'de', 1, 'https://ror.org/02avpen06 Deutsche AIDS-Stiftung'),
(47072, 'https://ror.org/03vkb9g96', 'en', 1, 'https://ror.org/03vkb9g96 Farm Africa'),
(47073, 'https://ror.org/058whx905', 'en', 1, 'https://ror.org/058whx905 Global Libraries - Bulgaria Foundation'),
(47074, 'https://ror.org/05k53z571', 'en', 1, 'https://ror.org/05k53z571 Knox County Public Library'),
(47075, 'https://ror.org/037hta489', 'en', 1, 'https://ror.org/037hta489 Deutsche Bank'),
(47076, 'https://ror.org/05jahqa08', 'en', 1, 'https://ror.org/05jahqa08 Global Virus Network'),
(47077, 'https://ror.org/013nc1m54', 'en', 1, 'https://ror.org/013nc1m54 Fort Bend County Libraries'),
(47078, 'https://ror.org/00cgnt765', 'en', 1, 'https://ror.org/00cgnt765 Deutsche Stiftung Weltbevoelkerung German Foundation for World Population'),
(47079, 'https://ror.org/0440sme52', 'en', 1, 'https://ror.org/0440sme52 GlobalGiving'),
(47080, 'https://ror.org/02km5ae06', 'en', 1, 'https://ror.org/02km5ae06 Fort Vancouver Regional Library District'),
(47081, 'https://ror.org/00xk5y986', 'en', 1, 'https://ror.org/00xk5y986 Development Initiatives'),
(47082, 'https://ror.org/0596amb15', 'en', 1, 'https://ror.org/0596amb15 Fort Worth Library'),
(47083, 'https://ror.org/03ftb9350', 'en', 1, 'https://ror.org/03ftb9350 Government of Japan'),
(47084, 'https://ror.org/00y550t07', 'en', 1, 'https://ror.org/00y550t07 Kofi Annan Foundation'),
(47085, 'https://ror.org/04vttb719', 'en', 1, 'https://ror.org/04vttb719 Ministeri y''Ibikorwaremezo Ministry of Infrastructure Ministère des Infrastructures'),
(47086, 'https://ror.org/02b40ew58', 'en', 1, 'https://ror.org/02b40ew58 League of United Latin American Citizens'),
(47087, 'https://ror.org/0377f6951', 'en', 1, 'https://ror.org/0377f6951 Foundation Center'),
(47088, 'https://ror.org/034ywkx67', 'en', 1, 'https://ror.org/034ywkx67 DigiLearn Digital Learning Institute'),
(47089, 'https://ror.org/013m7z415', 'en', 1, 'https://ror.org/013m7z415 Digital Empowerment Foundation'),
(47090, 'https://ror.org/01qqkqg60', 'en', 1, 'https://ror.org/01qqkqg60 Foundation Financial Officers Group'),
(47091, 'https://ror.org/053pkd137', 'pt', 1, 'https://ror.org/053pkd137 Instituto Kairós'),
(47092, 'https://ror.org/03rrpvb29', 'en', 1, 'https://ror.org/03rrpvb29 Digital Public Library of America'),
(47093, 'https://ror.org/0351nrb64', 'en', 1, 'https://ror.org/0351nrb64 Grameen Foundation'),
(47094, 'https://ror.org/03jp6rr57', 'en', 1, 'https://ror.org/03jp6rr57 LaConner Regional Library'),
(47095, 'https://ror.org/05qr8a694', 'en', 1, 'https://ror.org/05qr8a694 Grameen Research'),
(47096, 'https://ror.org/014ngqg04', 'es', 1, 'https://ror.org/014ngqg04 Instituto Trabajo y Familia'),
(47097, 'https://ror.org/02x7x4c86', 'no_lang_code', 1, 'https://ror.org/02x7x4c86 DNA Medicine Institute (United States)'),
(47098, 'https://ror.org/032jhh740', 'en', 1, 'https://ror.org/032jhh740 New Jersey Principals and Supervisors Association'),
(47099, 'https://ror.org/00p8ta394', 'en', 1, 'https://ror.org/00p8ta394 International AIDS Society'),
(47100, 'https://ror.org/00a0wcz54', 'en', 1, 'https://ror.org/00a0wcz54 Lancaster Education Foundation'),
(47101, 'https://ror.org/023t7pn91', 'en', 1, 'https://ror.org/023t7pn91 Grantmakers for Education'),
(47102, 'https://ror.org/0317cq689', 'en', 1, 'https://ror.org/0317cq689 Doctors of the World'),
(47103, 'https://ror.org/05qxm2f34', 'en', 1, 'https://ror.org/05qxm2f34 Foundation for Excellence in Education'),
(47104, 'https://ror.org/05dx4dz53', 'en', 1, 'https://ror.org/05dx4dz53 Foundation for Healthy Generations'),
(47105, 'https://ror.org/025qxh655', 'en', 1, 'https://ror.org/025qxh655 International Alliance for Biological Standardization'),
(47106, 'https://ror.org/01r3n4v41', 'en', 1, 'https://ror.org/01r3n4v41 Douglas Public Library'),
(47107, 'https://ror.org/025eq4061', 'no_lang_code', 1, 'https://ror.org/025eq4061 GSMA (United States)'),
(47108, 'https://ror.org/006z6tk79', 'en', 1, 'https://ror.org/006z6tk79 Dover Town Library'),
(47109, 'https://ror.org/04y2hja28', 'en', 1, 'https://ror.org/04y2hja28 International Center for Not-for-Profit Law'),
(47110, 'https://ror.org/05wn4sm75', 'en', 1, 'https://ror.org/05wn4sm75 Leadership Florida'),
(47111, 'https://ror.org/05fky2779', 'en', 1, 'https://ror.org/05fky2779 Dream Builders Foundation'),
(47112, 'https://ror.org/04dk3f152', 'fr', 1, 'https://ror.org/04dk3f152 Fondation pour la Santé Reproductrice et l''Education Familiale'),
(47113, 'https://ror.org/0133kas76', 'en', 1, 'https://ror.org/0133kas76 Haines Borough Public Library'),
(47114, 'https://ror.org/030r87x36', 'en', 1, 'https://ror.org/030r87x36 New York State Council of School Superintendents'),
(47115, 'https://ror.org/04z5zh552', 'en', 1, 'https://ror.org/04z5zh552 Foundation For The Carolinas'),
(47116, 'https://ror.org/04q90d498', 'en', 1, 'https://ror.org/04q90d498 Augusta-Richmond County Public Library System'),
(47117, 'https://ror.org/00xxnb467', 'en', 1, 'https://ror.org/00xxnb467 Hamilton County Department of Education'),
(47118, 'https://ror.org/04r92nh16', 'en', 1, 'https://ror.org/04r92nh16 International Community Health Services'),
(47119, 'https://ror.org/05rp1xt91', 'en', 1, 'https://ror.org/05rp1xt91 League For Innovation in the Community College'),
(47120, 'https://ror.org/04a6tk632', 'en', 1, 'https://ror.org/04a6tk632 Memphis Library Foundation'),
(47121, 'https://ror.org/004h0ew98', 'en', 1, 'https://ror.org/004h0ew98 LearnLaunch Institute'),
(47122, 'https://ror.org/02zd68c30', 'en', 1, 'https://ror.org/02zd68c30 East Lake Foundation'),
(47123, 'https://ror.org/05xke1111', 'en', 1, 'https://ror.org/05xke1111 Foundation for the Mid South'),
(47124, 'https://ror.org/039c24767', 'en', 1, 'https://ror.org/039c24767 International Confederation of Midwives'),
(47125, 'https://ror.org/01dgjdp93', 'en', 1, 'https://ror.org/01dgjdp93 Hanseatic Institute of Technology'),
(47126, 'https://ror.org/027n11q15', 'en', 1, 'https://ror.org/027n11q15 Lee County Library System'),
(47127, 'https://ror.org/00bygx606', 'en', 1, 'https://ror.org/00bygx606 International Council Of Aids Service Organizations'),
(47128, 'https://ror.org/00r97xx27', 'en', 1, 'https://ror.org/00r97xx27 Seattle Colleges'),
(47129, 'https://ror.org/00rwqqw10', 'en', 1, 'https://ror.org/00rwqqw10 Leping Social Entrepreneur Foundation 北京乐平公益基金会'),
(47130, 'https://ror.org/04ex78q47', 'en', 1, 'https://ror.org/04ex78q47 Harney Education Service District'),
(47131, 'https://ror.org/02tsn5q48', 'en', 1, 'https://ror.org/02tsn5q48 LEV Foundation'),
(47132, 'https://ror.org/033069651', 'en', 1, 'https://ror.org/033069651 Economic Opportunity Institute'),
(47133, 'https://ror.org/042arhp84', 'en', 1, 'https://ror.org/042arhp84 Hartford Public Library'),
(47134, 'https://ror.org/025kk0m42', 'en', 1, 'https://ror.org/025kk0m42 Dustin Michael Sekula Memorial Library'),
(47135, 'https://ror.org/04kx60c47', 'en', 1, 'https://ror.org/04kx60c47 Hawaii State Public Library System'),
(47136, 'https://ror.org/02zjw6262', 'en', 1, 'https://ror.org/02zjw6262 International Development Law Organization'),
(47137, 'https://ror.org/041s9g982', 'en', 1, 'https://ror.org/041s9g982 Inland Northwest Community Foundation'),
(47138, 'https://ror.org/03b242h08', 'en', 1, 'https://ror.org/03b242h08 Library Foundation of Los Angeles'),
(47139, 'https://ror.org/053y7p194', 'en', 1, 'https://ror.org/053y7p194 Health & Development International'),
(47140, 'https://ror.org/03ag1d748', 'en', 1, 'https://ror.org/03ag1d748 Fédération Internationale de Gynécologie et d''Obstétrique International Federation of Gynaecology and Obstetrics'),
(47141, 'https://ror.org/042qa5g53', 'en', 1, 'https://ror.org/042qa5g53 Health and Global Policy Institute'),
(47142, 'https://ror.org/004atj446', 'en', 1, 'https://ror.org/004atj446 Library of Michigan Foundation'),
(47143, 'https://ror.org/05qgdbc96', 'en', 1, 'https://ror.org/05qgdbc96 Education Cities'),
(47144, 'https://ror.org/037024349', 'en', 1, 'https://ror.org/037024349 Stand for Children'),
(47145, 'https://ror.org/01xjydw85', 'en', 1, 'https://ror.org/01xjydw85 International HIV/AIDS Alliance'),
(47146, 'https://ror.org/02frad208', 'en', 1, 'https://ror.org/02frad208 International Initiative for Impact Evaluation'),
(47147, 'https://ror.org/032b04x09', 'en', 1, 'https://ror.org/032b04x09 Chalkboard Project'),
(47148, 'https://ror.org/04gazgk64', 'en', 1, 'https://ror.org/04gazgk64 Foundations for Farming'),
(47149, 'https://ror.org/05tzak412', 'en', 1, 'https://ror.org/05tzak412 Life Sciences Discovery Fund'),
(47150, 'https://ror.org/000ajpb39', 'en', 1, 'https://ror.org/000ajpb39 Gere Foundation'),
(47151, 'https://ror.org/030f6nw85', 'en', 1, 'https://ror.org/030f6nw85 Education Leaders of Color'),
(47152, 'https://ror.org/02tqh0t89', 'en', 1, 'https://ror.org/02tqh0t89 International Institute of Rural Reconstruction'),
(47153, 'https://ror.org/0297wgk17', 'en', 1, 'https://ror.org/0297wgk17 Lifebox'),
(47154, 'https://ror.org/01hdzgr78', 'en', 1, 'https://ror.org/01hdzgr78 Education Pioneers'),
(47155, 'https://ror.org/013s0qy72', 'en', 1, 'https://ror.org/013s0qy72 FrameWorks Institute'),
(47156, 'https://ror.org/05tcf2c75', 'en', 1, 'https://ror.org/05tcf2c75 International Peace Institute'),
(47157, 'https://ror.org/016cxyb17', 'en', 1, 'https://ror.org/016cxyb17 Education Resource Strategies'),
(47158, 'https://ror.org/00vbd4626', 'en', 1, 'https://ror.org/00vbd4626 Health Systems Global'),
(47159, 'https://ror.org/03rh4dk07', 'en', 1, 'https://ror.org/03rh4dk07 Lifelong AIDS Alliance'),
(47160, 'https://ror.org/0282kvf82', 'en', 1, 'https://ror.org/0282kvf82 Fédération Internationale Pharmaceutique International Pharmaceutical Federation'),
(47161, 'https://ror.org/053ttas14', 'en', 1, 'https://ror.org/053ttas14 HealthforAnimals'),
(47162, 'https://ror.org/014mdja61', 'en', 1, 'https://ror.org/014mdja61 Lilac Services for the Blind'),
(47163, 'https://ror.org/00dsga669', 'en', 1, 'https://ror.org/00dsga669 Education Service Center Region 13'),
(47164, 'https://ror.org/01dez6v88', 'en', 1, 'https://ror.org/01dez6v88 International Planned Parenthood Federation'),
(47165, 'https://ror.org/00va3ak07', 'en', 1, 'https://ror.org/00va3ak07 HealthRock'),
(47166, 'https://ror.org/01fejj311', 'en', 1, 'https://ror.org/01fejj311 International Planned Parenthood Federation'),
(47167, 'https://ror.org/001qk2b56', 'en', 1, 'https://ror.org/001qk2b56 Healthy Families of Clallam County'),
(47168, 'https://ror.org/0337vmn97', 'en', 1, 'https://ror.org/0337vmn97 Education Trust'),
(47169, 'https://ror.org/0017b9g92', 'en', 1, 'https://ror.org/0017b9g92 International Society for Developmental Origins of Health and Disease'),
(47170, 'https://ror.org/00tbf0607', 'en', 1, 'https://ror.org/00tbf0607 Lions Clubs International'),
(47171, 'https://ror.org/049ae8f38', 'en', 1, 'https://ror.org/049ae8f38 Hearing, Speech & Deaf Center'),
(47172, 'https://ror.org/03qfcr435', 'en', 1, 'https://ror.org/03qfcr435 Education Writers Association'),
(47173, 'https://ror.org/04r56x957', 'en', 1, 'https://ror.org/04r56x957 Freedom Writers Foundation'),
(47174, 'https://ror.org/02zfkey21', 'en', 1, 'https://ror.org/02zfkey21 Educational Policy Improvement Center'),
(47175, 'https://ror.org/02cavkh05', 'en', 1, 'https://ror.org/02cavkh05 Live & Learn Environmental Education'),
(47176, 'https://ror.org/03yzv2h28', 'en', 1, 'https://ror.org/03yzv2h28 Fresno County Office of Education'),
(47177, 'https://ror.org/02vnf7178', 'en', 1, 'https://ror.org/02vnf7178 International Society for Equity in Health'),
(47178, 'https://ror.org/04x3svs29', 'en', 1, 'https://ror.org/04x3svs29 Educational Results Partnership'),
(47179, 'https://ror.org/03nss1434', 'en', 1, 'https://ror.org/03nss1434 Live Oak Public Libraries'),
(47180, 'https://ror.org/04pk2pv78', 'en', 1, 'https://ror.org/04pk2pv78 Educational Service District 105'),
(47181, 'https://ror.org/02r1xnr27', 'en', 1, 'https://ror.org/02r1xnr27 Hillsborough Education Foundation'),
(47182, 'https://ror.org/014wr0t03', 'en', 1, 'https://ror.org/014wr0t03 Friends of the Global Fight'),
(47183, 'https://ror.org/00y852y62', 'en', 1, 'https://ror.org/00y852y62 Educational Service District 113'),
(47184, 'https://ror.org/05ybwtt56', 'en', 1, 'https://ror.org/05ybwtt56 Hinton Area Foundation'),
(47185, 'https://ror.org/00a8m1d79', 'en', 1, 'https://ror.org/00a8m1d79 Long Beach Public Library'),
(47186, 'https://ror.org/02rj7et34', 'en', 1, 'https://ror.org/02rj7et34 Educational Service District 123'),
(47187, 'https://ror.org/032eh0k62', 'en', 1, 'https://ror.org/032eh0k62 International Society for Influenza and other Respiratory Virus Diseases'),
(47188, 'https://ror.org/00ym78a64', 'en', 1, 'https://ror.org/00ym78a64 EducationSuperHighway'),
(47189, 'https://ror.org/05eb16411', 'en', 1, 'https://ror.org/05eb16411 Friends of the New York State Library'),
(47190, 'https://ror.org/054wjrx44', 'en', 1, 'https://ror.org/054wjrx44 Edvance Foundation'),
(47191, 'https://ror.org/00bcfzm29', 'en', 1, 'https://ror.org/00bcfzm29 Lotus Innovative Sciences'),
(47192, 'https://ror.org/05kmqsg27', 'en', 1, 'https://ror.org/05kmqsg27 Edward Charles Foundation'),
(47193, 'https://ror.org/05dw9gn95', 'en', 1, 'https://ror.org/05dw9gn95 Friends of the Seattle Public Library'),
(47194, 'https://ror.org/01chtz990', 'en', 1, 'https://ror.org/01chtz990 Foundation for Louisiana'),
(47195, 'https://ror.org/02bep9h69', 'en', 1, 'https://ror.org/02bep9h69 eHealth Africa'),
(47196, 'https://ror.org/00r4cx198', 'en', 1, 'https://ror.org/00r4cx198 National Center for Public Policy and Higher Education'),
(47197, 'https://ror.org/01p82h318', 'en', 1, 'https://ror.org/01p82h318 Fund for Educational Excellence'),
(47198, 'https://ror.org/01b719a04', 'en', 1, 'https://ror.org/01b719a04 International Society for Vaccines'),
(47199, 'https://ror.org/05f7jtw75', 'en', 1, 'https://ror.org/05f7jtw75 Eisenhower Foundation'),
(47200, 'https://ror.org/0492b0q60', 'en', 1, 'https://ror.org/0492b0q60 HJF Medical Research International'),
(47201, 'https://ror.org/03hf07k85', 'en', 1, 'https://ror.org/03hf07k85 Low Income Housing Institute'),
(47202, 'https://ror.org/055b7qp37', 'en', 1, 'https://ror.org/055b7qp37 Lowy Institute for International Policy'),
(47203, 'https://ror.org/02v5bg165', 'en', 1, 'https://ror.org/02v5bg165 Lumina Foundation'),
(47204, 'https://ror.org/00aq0ev26', 'en', 1, 'https://ror.org/00aq0ev26 Funders Concerned About AIDS'),
(47205, 'https://ror.org/05gmez332', 'en', 1, 'https://ror.org/05gmez332 Human Rights Campaign'),
(47206, 'https://ror.org/01xgsgn35', 'en', 1, 'https://ror.org/01xgsgn35 Luzerne County Libraries'),
(47207, 'https://ror.org/02exzyx31', 'en', 1, 'https://ror.org/02exzyx31 International Union of Immunological Societies'),
(47208, 'https://ror.org/041021r97', 'en', 1, 'https://ror.org/041021r97 Rotary Club of Emerald City'),
(47209, 'https://ror.org/01ghaq010', 'en', 1, 'https://ror.org/01ghaq010 Funders Network on Population, Reproductive Health and Rights'),
(47210, 'https://ror.org/003j6bs77', 'en', 1, 'https://ror.org/003j6bs77 Internationals Network For Public Schools'),
(47211, 'https://ror.org/02y286910', 'en', 1, 'https://ror.org/02y286910 Magic Johnson Foundation'),
(47212, 'https://ror.org/04hb57v11', 'en', 1, 'https://ror.org/04hb57v11 Iowa City Public Library'),
(47213, 'https://ror.org/016r17v86', 'en', 1, 'https://ror.org/016r17v86 Future Library'),
(47214, 'https://ror.org/00pnxra12', 'en', 1, 'https://ror.org/00pnxra12 Parents’ Action for Children'),
(47215, 'https://ror.org/03wzg8933', 'en', 1, 'https://ror.org/03wzg8933 GAIA Vaccine Foundation'),
(47216, 'https://ror.org/01ge62k30', 'en', 1, 'https://ror.org/01ge62k30 Ivory Coast Medical Relief Team'),
(47217, 'https://ror.org/0152hnc69', 'en', 1, 'https://ror.org/0152hnc69 Engineers Without Borders Canada Ingénieurs sans Frontières Canada'),
(47218, 'https://ror.org/04z2vav77', 'en', 1, 'https://ror.org/04z2vav77 Jacaranda Health'),
(47219, 'https://ror.org/04qnjqh32', 'en', 1, 'https://ror.org/04qnjqh32 Idaho Association of School Administrators'),
(47220, 'https://ror.org/02v62c509', 'en', 1, 'https://ror.org/02v62c509 Jacksonville Public Education Fund'),
(47221, 'https://ror.org/048z4gn84', 'en', 1, 'https://ror.org/048z4gn84 Idaho Business for Education'),
(47222, 'https://ror.org/03dxy2v98', 'en', 1, 'https://ror.org/03dxy2v98 Jamaica Library Service'),
(47223, 'https://ror.org/04mvq4v36', 'en', 1, 'https://ror.org/04mvq4v36 Malaria No More'),
(47224, 'https://ror.org/04wyn7z78', 'en', 1, 'https://ror.org/04wyn7z78 Idaho Commission for Libraries'),
(47225, 'https://ror.org/03asafg21', 'en', 1, 'https://ror.org/03asafg21 Summer Advantage USA'),
(47226, 'https://ror.org/055wab717', 'en', 1, 'https://ror.org/055wab717 Hunt Institute'),
(47227, 'https://ror.org/02d6mdg29', 'en', 1, 'https://ror.org/02d6mdg29 Environment and Population Research Centre'),
(47228, 'https://ror.org/009rysn20', 'en', 1, 'https://ror.org/009rysn20 Gary Public Library'),
(47229, 'https://ror.org/05y6mfn19', 'en', 1, 'https://ror.org/05y6mfn19 Envision Education'),
(47230, 'https://ror.org/038q1v497', 'en', 1, 'https://ror.org/038q1v497 Management Education & Research Consortium'),
(47231, 'https://ror.org/03mqek204', 'en', 1, 'https://ror.org/03mqek204 European Parliamentary Forum on Population & Development'),
(47232, 'https://ror.org/05fcp6f07', 'en', 1, 'https://ror.org/05fcp6f07 Impact India'),
(47233, 'https://ror.org/00459cq42', 'en', 1, 'https://ror.org/00459cq42 Gateway Health Institute'),
(47234, 'https://ror.org/01efzmh71', 'en', 1, 'https://ror.org/01efzmh71 Manhattan Institute for Policy Research'),
(47235, 'https://ror.org/048y1qb68', 'en', 1, 'https://ror.org/048y1qb68 Independence Public Library'),
(47236, 'https://ror.org/05r7r4y77', 'en', 1, 'https://ror.org/05r7r4y77 Gateway to College National Network'),
(47237, 'https://ror.org/0562m6y05', 'en', 1, 'https://ror.org/0562m6y05 Esperanza International'),
(47238, 'https://ror.org/01y2p0182', 'en', 1, 'https://ror.org/01y2p0182 Gay City Health Project'),
(47239, 'https://ror.org/027wewa02', 'en', 1, 'https://ror.org/027wewa02 Manufacturing Institute'),
(47240, 'https://ror.org/02d868s45', 'en', 1, 'https://ror.org/02d868s45 Discovery Behavioral Healthcare'),
(47241, 'https://ror.org/03r5svt24', 'en', 1, 'https://ror.org/03r5svt24 Ethel L. Whipple Memorial Library'),
(47242, 'https://ror.org/0296rp189', 'no_lang_code', 1, 'https://ror.org/0296rp189 Genocea (United States)'),
(47243, 'https://ror.org/00aqb5q90', 'en', 1, 'https://ror.org/00aqb5q90 Maple Street School'),
(47244, 'https://ror.org/00nnq2331', 'en', 1, 'https://ror.org/00nnq2331 Ministry of Agriculture and Natural Resource'),
(47245, 'https://ror.org/015j6pf88', 'en', 1, 'https://ror.org/015j6pf88 India Heritage Research Foundation'),
(47246, 'https://ror.org/01jdqqg29', 'en', 1, 'https://ror.org/01jdqqg29 Indian Council for Research on International Economic Relations'),
(47247, 'https://ror.org/036k4ae63', 'en', 1, 'https://ror.org/036k4ae63 Joan Ganz Cooney Center'),
(47248, 'https://ror.org/01y01n005', 'en', 1, 'https://ror.org/01y01n005 Maricopa County Library District'),
(47249, 'https://ror.org/01sh98j38', 'en', 1, 'https://ror.org/01sh98j38 Mill Valley Public Library'),
(47250, 'https://ror.org/027gdgv35', 'en', 1, 'https://ror.org/027gdgv35 Pike Place Market Foundation'),
(47251, 'https://ror.org/04m0nsn08', 'en', 1, 'https://ror.org/04m0nsn08 Indiana Commission for Higher Education'),
(47252, 'https://ror.org/00k6jf574', 'en', 1, 'https://ror.org/00k6jf574 Johar Health Maintenance Organization'),
(47253, 'https://ror.org/0306thw41', 'lt', 1, 'https://ror.org/0306thw41 Lietuvos nacionalinė Martyno Mažvydo biblioteka Martynas Mažvydas National Library'),
(47254, 'https://ror.org/02k3f4s48', 'en', 1, 'https://ror.org/02k3f4s48 Georgia Chamber of Commerce'),
(47255, 'https://ror.org/049zex268', 'en', 1, 'https://ror.org/049zex268 Ministry of Culture Министерство на културата'),
(47256, 'https://ror.org/04csh5447', 'en', 1, 'https://ror.org/04csh5447 Mass Insight Education'),
(47257, 'https://ror.org/00ctv5m58', 'en', 1, 'https://ror.org/00ctv5m58 John N. Gardner Institute for Excellence in Undergraduate Education'),
(47258, 'https://ror.org/005w1s219', 'en', 1, 'https://ror.org/005w1s219 ICCO'),
(47259, 'https://ror.org/02wwz7n17', 'en', 1, 'https://ror.org/02wwz7n17 Georgia Public Library Service'),
(47260, 'https://ror.org/03mazta23', 'en', 1, 'https://ror.org/03mazta23 Ministry of Culture of the Republic of Latvia'),
(47261, 'https://ror.org/020y0w788', 'en', 1, 'https://ror.org/020y0w788 Massachusetts Board of Library Commissioners'),
(47262, 'https://ror.org/02rh64q44', 'en', 1, 'https://ror.org/02rh64q44 Massachusetts Business Alliance for Education'),
(47263, 'https://ror.org/03n9dk271', 'en', 1, 'https://ror.org/03n9dk271 Glen Carbon Centennial Library'),
(47264, 'https://ror.org/04hezxr66', 'en', 1, 'https://ror.org/04hezxr66 IFMR Finance Foundation'),
(47265, 'https://ror.org/05qraqp26', 'en', 1, 'https://ror.org/05qraqp26 Lietuvos Respublikos kultūros ministerija Ministry of Culture'),
(47266, 'https://ror.org/03ev7vc82', 'en', 1, 'https://ror.org/03ev7vc82 Glide Foundation'),
(47267, 'https://ror.org/05v508890', 'en', 1, 'https://ror.org/05v508890 McCallum Theatre'),
(47268, 'https://ror.org/05213zp13', 'en', 1, 'https://ror.org/05213zp13 Indigenous Language Institute'),
(47269, 'https://ror.org/04mcker87', 'en', 1, 'https://ror.org/04mcker87 Global Alliance for Improved Nutrition'),
(47270, 'https://ror.org/039tmw183', 'en', 1, 'https://ror.org/039tmw183 State Library of Kansas'),
(47271, 'https://ror.org/04xkkx196', 'en', 1, 'https://ror.org/04xkkx196 Medic One Foundation'),
(47272, 'https://ror.org/04w3fk764', 'en', 1, 'https://ror.org/04w3fk764 Clayton Christensen Institute'),
(47273, 'https://ror.org/02f8xge10', 'en', 1, 'https://ror.org/02f8xge10 Global Alliance for Livestock Veterinary Medicines'),
(47274, 'https://ror.org/03bm9hd03', 'en', 1, 'https://ror.org/03bm9hd03 Global Burn Care and Reconstructive Institute'),
(47275, 'https://ror.org/046228582', 'en', 1, 'https://ror.org/046228582 Innovative Medicines for Tuberculosis Foundation'),
(47276, 'https://ror.org/006t6t254', 'en', 1, 'https://ror.org/006t6t254 Bộ Thông tin và Truyền thông Ministry of Information and Communications'),
(47277, 'https://ror.org/00gnyh466', 'en', 1, 'https://ror.org/00gnyh466 Medical Library Association'),
(47278, 'https://ror.org/01zavst24', 'en', 1, 'https://ror.org/01zavst24 Inspired Practices in Early Education'),
(47279, 'https://ror.org/03hy63170', 'en', 1, 'https://ror.org/03hy63170 Kappa Kappa Gamma'),
(47280, 'https://ror.org/03gbx5482', 'en', 1, 'https://ror.org/03gbx5482 Ministry of Urban Development,Housing and Construction'),
(47281, 'https://ror.org/02a8nk956', 'en', 1, 'https://ror.org/02a8nk956 Medical Teams International'),
(47282, 'https://ror.org/05qgvn881', 'fr', 1, 'https://ror.org/05qgvn881 Institut Bouisson Bertrand'),
(47283, 'https://ror.org/05tsb3a74', 'en', 1, 'https://ror.org/05tsb3a74 Ministry of Urban Development सहरी विकास मन्त्रालय | निजामती सेवाको सपना'),
(47284, 'https://ror.org/05fg21x21', 'en', 1, 'https://ror.org/05fg21x21 Karma Healthcare'),
(47285, 'https://ror.org/045pkp007', 'en', 1, 'https://ror.org/045pkp007 United States Chamber of Commerce'),
(47286, 'https://ror.org/02ptdjf52', 'en', 1, 'https://ror.org/02ptdjf52 Ministry OF City Planning and Water Supply நகரம் திட்டமிடல் மற்றும் நீர் வழங்கல் அமைச்சு නගරය සැලසුම් හා ජල සම්පාදන අමාත්යාංශය'),
(47287, 'https://ror.org/00t4jm248', 'hi', 1, 'https://ror.org/00t4jm248 Bharatiya Vidya Bhavan'),
(47288, 'https://ror.org/040k8g838', 'en', 1, 'https://ror.org/040k8g838 Institute for Advanced Journalism Studies'),
(47289, 'https://ror.org/01m4zvx19', 'en', 1, 'https://ror.org/01m4zvx19 Gapminder Foundation Stiftelsen Gapminder'),
(47290, 'https://ror.org/05p4w7d36', 'en', 1, 'https://ror.org/05p4w7d36 Meridian Institute'),
(47291, 'https://ror.org/014crx992', 'en', 1, 'https://ror.org/014crx992 Kentucky Chamber of Commerce'),
(47292, 'https://ror.org/011cn9r82', 'en', 1, 'https://ror.org/011cn9r82 Institute for Community Leadership'),
(47293, 'https://ror.org/023dp4p42', 'en', 1, 'https://ror.org/023dp4p42 Mesa Public Library'),
(47294, 'https://ror.org/0092jx746', 'en', 1, 'https://ror.org/0092jx746 Institute for Educational Leadership'),
(47295, 'https://ror.org/02y8yb391', 'en', 1, 'https://ror.org/02y8yb391 New Paradigm for Education'),
(47296, 'https://ror.org/02q8j7k72', 'en', 1, 'https://ror.org/02q8j7k72 Metropolitan Library System'),
(47297, 'https://ror.org/00c1z8d24', 'en', 1, 'https://ror.org/00c1z8d24 Mexican American Legal Defense and Educational Fund'),
(47298, 'https://ror.org/04wghbv83', 'en', 1, 'https://ror.org/04wghbv83 NewTech Network'),
(47299, 'https://ror.org/029qnmr64', 'en', 1, 'https://ror.org/029qnmr64 Kern County Library'),
(47300, 'https://ror.org/051q2fd34', 'en', 1, 'https://ror.org/051q2fd34 Maisha Meds'),
(47301, 'https://ror.org/04tv6t942', 'en', 1, 'https://ror.org/04tv6t942 Niswonger Foundation'),
(47302, 'https://ror.org/05bt5dg04', 'en', 1, 'https://ror.org/05bt5dg04 Institute for Family Development'),
(47303, 'https://ror.org/002zd6q52', 'en', 1, 'https://ror.org/002zd6q52 Michigan Institute for Educational Management'),
(47304, 'https://ror.org/02c176857', 'en', 1, 'https://ror.org/02c176857 North Carolina Association of Community College Trustees'),
(47305, 'https://ror.org/00ytwt138', 'en', 1, 'https://ror.org/00ytwt138 Public Law Library of King County'),
(47306, 'https://ror.org/047hjdt67', 'en', 1, 'https://ror.org/047hjdt67 Michigan Virtual University'),
(47307, 'https://ror.org/04aq7nt90', 'en', 1, 'https://ror.org/04aq7nt90 North Central Educational Service District'),
(47308, 'https://ror.org/01y72yy43', 'no_lang_code', 1, 'https://ror.org/01y72yy43 MomsRising'),
(47309, 'https://ror.org/046dqma84', 'en', 1, 'https://ror.org/046dqma84 King County Library System Foundation'),
(47310, 'https://ror.org/00t4wwd52', 'en', 1, 'https://ror.org/00t4wwd52 NorthEast Washington Educational Service District'),
(47311, 'https://ror.org/03hpv0z23', 'en', 1, 'https://ror.org/03hpv0z23 Institute for Research and Reform in Education'),
(47312, 'https://ror.org/04nw8d167', 'en', 1, 'https://ror.org/04nw8d167 KIPP Foundation'),
(47313, 'https://ror.org/007wpch15', 'en', 1, 'https://ror.org/007wpch15 Institute for Stem Cell Biology and Regenerative Medicine'),
(47314, 'https://ror.org/04fs6r254', 'en', 1, 'https://ror.org/04fs6r254 Montana State Library'),
(47315, 'https://ror.org/01c3enh80', 'en', 1, 'https://ror.org/01c3enh80 Northwest African American Museum'),
(47316, 'https://ror.org/04t3acx61', 'en', 1, 'https://ror.org/04t3acx61 Kitsap Mental Health Services'),
(47317, 'https://ror.org/05tta9x45', 'no_lang_code', 1, 'https://ror.org/05tta9x45 MicroSave'),
(47318, 'https://ror.org/03ys3np07', 'en', 1, 'https://ror.org/03ys3np07 California Teachers Association'),
(47319, 'https://ror.org/01c5c8162', 'en', 1, 'https://ror.org/01c5c8162 Institute for the Study of Knowledge Management in Education'),
(47320, 'https://ror.org/014kx9f10', 'en', 1, 'https://ror.org/014kx9f10 Plexus Institute'),
(47321, 'https://ror.org/05bpx8696', 'en', 1, 'https://ror.org/05bpx8696 Monterey Institute for Technology and Education'),
(47322, 'https://ror.org/038b3qv22', 'en', 1, 'https://ror.org/038b3qv22 Middle Georgia Regional Library'),
(47323, 'https://ror.org/04wk9pg33', 'en', 1, 'https://ror.org/04wk9pg33 Points of Light'),
(47324, 'https://ror.org/03tjh0z04', 'en', 1, 'https://ror.org/03tjh0z04 Northwest Association For Biomedical Research'),
(47325, 'https://ror.org/04q3cbc35', 'en', 1, 'https://ror.org/04q3cbc35 Midwestern Higher Education Compact'),
(47326, 'https://ror.org/00y7rmj88', 'en', 1, 'https://ror.org/00y7rmj88 Policy Cures'),
(47327, 'https://ror.org/0065eer68', 'en', 1, 'https://ror.org/0065eer68 Municipal League Foundatio'),
(47328, 'https://ror.org/00hj7mt57', 'en', 1, 'https://ror.org/00hj7mt57 Migration Policy Institute'),
(47329, 'https://ror.org/05t5jk040', 'en', 1, 'https://ror.org/05t5jk040 PIE Network'),
(47330, 'https://ror.org/01heq7e91', 'en', 1, 'https://ror.org/01heq7e91 Rotary Club of Seattle'),
(47331, 'https://ror.org/04dm2wt12', 'en', 1, 'https://ror.org/04dm2wt12 Northwest Parkinson’s Foundation'),
(47332, 'https://ror.org/011w2bv40', 'en', 1, 'https://ror.org/011w2bv40 Museum of Flight'),
(47333, 'https://ror.org/04amy1e98', 'en', 1, 'https://ror.org/04amy1e98 Northwest Territories Public Library Services'),
(47334, 'https://ror.org/04yxm6j91', 'en', 1, 'https://ror.org/04yxm6j91 Population Foundation of India'),
(47335, 'https://ror.org/03sqkgx87', 'en', 1, 'https://ror.org/03sqkgx87 Mali Health'),
(47336, 'https://ror.org/007kc7128', 'en', 1, 'https://ror.org/007kc7128 Auction of Washington Wines'),
(47337, 'https://ror.org/0309ddb28', 'en', 1, 'https://ror.org/0309ddb28 See Forever Foundation'),
(47338, 'https://ror.org/01vpnjr66', 'en', 1, 'https://ror.org/01vpnjr66 Swiss Philanthropy Foundation'),
(47339, 'https://ror.org/05a4wc005', 'en', 1, 'https://ror.org/05a4wc005 Nargis Dutt Memorial Foundation'),
(47340, 'https://ror.org/00f9hhp33', 'en', 1, 'https://ror.org/00f9hhp33 Postsecondary National Policy Institute'),
(47341, 'https://ror.org/03ds72003', 'en', 1, 'https://ror.org/03ds72003 Mitchell Institute'),
(47342, 'https://ror.org/02awk5v34', 'en', 1, 'https://ror.org/02awk5v34 Synergos Institute'),
(47343, 'https://ror.org/04541bn34', 'en', 1, 'https://ror.org/04541bn34 Nova Scotia Provincial Library'),
(47344, 'https://ror.org/02qzvv903', 'en', 1, 'https://ror.org/02qzvv903 Nashville Public Education Foundation'),
(47345, 'https://ror.org/00qep8v04', 'en', 1, 'https://ror.org/00qep8v04 Tavis Smiley Foundation'),
(47346, 'https://ror.org/04wxywd96', 'no_lang_code', 1, 'https://ror.org/04wxywd96 Praekelt Foundation'),
(47347, 'https://ror.org/03kb0fc56', 'no_lang_code', 1, 'https://ror.org/03kb0fc56 Transport Corporation of India (India)'),
(47348, 'https://ror.org/03sj0r759', 'no_lang_code', 1, 'https://ror.org/03sj0r759 Pratham'),
(47349, 'https://ror.org/04n89je52', 'en', 1, 'https://ror.org/04n89je52 NASSCOM Foundation'),
(47350, 'https://ror.org/01jr5xr29', 'en', 1, 'https://ror.org/01jr5xr29 Preeclampsia Foundation'),
(47351, 'https://ror.org/00whc6223', 'en', 1, 'https://ror.org/00whc6223 Team Pennsylvania Foundation'),
(47352, 'https://ror.org/02hfdv863', 'en', 1, 'https://ror.org/02hfdv863 National Academy Foundation'),
(47353, 'https://ror.org/05ymxrx78', 'en', 1, 'https://ror.org/05ymxrx78 NYSUT Education and Learning Trust'),
(47354, 'https://ror.org/00qm2x081', 'en', 1, 'https://ror.org/00qm2x081 Preston Healthcare Consulting'),
(47355, 'https://ror.org/04wgq9742', 'en', 1, 'https://ror.org/04wgq9742 Oakland Public Education Fund'),
(47356, 'https://ror.org/05tzxyk04', 'en', 1, 'https://ror.org/05tzxyk04 National Agency for the Control of AIDS'),
(47357, 'https://ror.org/00zhbtn94', 'en', 1, 'https://ror.org/00zhbtn94 Seton Education Partners'),
(47358, 'https://ror.org/05tewmz75', 'en', 1, 'https://ror.org/05tewmz75 Pride Foundation'),
(47359, 'https://ror.org/04vfkg585', 'en', 1, 'https://ror.org/04vfkg585 Tech Foundation'),
(47360, 'https://ror.org/03z3ntn64', 'en', 1, 'https://ror.org/03z3ntn64 Ohio Association of Community Colleges'),
(47361, 'https://ror.org/0333r3995', 'en', 1, 'https://ror.org/0333r3995 Technet Foundation'),
(47362, 'https://ror.org/041rv6v55', 'no_lang_code', 1, 'https://ror.org/041rv6v55 Shanghai Chengtou (China)'),
(47363, 'https://ror.org/03ztjdh45', 'en', 1, 'https://ror.org/03ztjdh45 Technology Access Foundation'),
(47364, 'https://ror.org/00c4hg173', 'en', 1, 'https://ror.org/00c4hg173 Business Roundtable'),
(47365, 'https://ror.org/03svt6w35', 'en', 1, 'https://ror.org/03svt6w35 Prince Edward Island Library Service'),
(47366, 'https://ror.org/01tcwz823', 'en', 1, 'https://ror.org/01tcwz823 Oklahoma Department of Libraries'),
(47367, 'https://ror.org/02f2t0y11', 'en', 1, 'https://ror.org/02f2t0y11 Shanghai Institutes for International Studies 上海国际问题研究院'),
(47368, 'https://ror.org/01qk32r63', 'en', 1, 'https://ror.org/01qk32r63 National Aids Control Council'),
(47369, 'https://ror.org/04b6ed127', 'en', 1, 'https://ror.org/04b6ed127 National Association for the Education of Young Children'),
(47370, 'https://ror.org/00ddrmz97', 'en', 1, 'https://ror.org/00ddrmz97 Olympic Educational Service District'),
(47371, 'https://ror.org/02xdmdz74', 'en', 1, 'https://ror.org/02xdmdz74 Shasta County Office of Education'),
(47372, 'https://ror.org/047z1sn15', 'en', 1, 'https://ror.org/047z1sn15 National Association of Charter School Authorizers'),
(47373, 'https://ror.org/01e8zab89', 'en', 1, 'https://ror.org/01e8zab89 National Association of College and University Business Officers'),
(47374, 'https://ror.org/01hjfcg50', 'en', 1, 'https://ror.org/01hjfcg50 Ondo State Primary Health Care Development Board'),
(47375, 'https://ror.org/00jw6m528', 'en', 1, 'https://ror.org/00jw6m528 NALEO Educational Fund'),
(47376, 'https://ror.org/0068vc522', 'en', 1, 'https://ror.org/0068vc522 Televisa Foundation'),
(47377, 'https://ror.org/00g5kqg81', 'en', 1, 'https://ror.org/00g5kqg81 Sickle Cell Cure Foundation'),
(47378, 'https://ror.org/056q5pg38', 'en', 1, 'https://ror.org/056q5pg38 National Association of Student Financial Aid Administrators'),
(47379, 'https://ror.org/0428xa486', 'en', 1, 'https://ror.org/0428xa486 Tennessee Business Roundtable'),
(47380, 'https://ror.org/01yvdtg58', 'en', 1, 'https://ror.org/01yvdtg58 Simha Foundation'),
(47381, 'https://ror.org/00rncr141', 'en', 1, 'https://ror.org/00rncr141 Opportunity Institute'),
(47382, 'https://ror.org/0584zca10', 'no_lang_code', 1, 'https://ror.org/0584zca10 Oquirr Marketing Institute (United States)'),
(47383, 'https://ror.org/02fpvdy69', 'en', 1, 'https://ror.org/02fpvdy69 SKS Foundation'),
(47384, 'https://ror.org/04r1bef65', 'en', 1, 'https://ror.org/04r1bef65 State Collaborative on Reforming Education'),
(47385, 'https://ror.org/025jyy333', 'en', 1, 'https://ror.org/025jyy333 National Center for Higher Education Management Systems'),
(47386, 'https://ror.org/04wqw2206', 'en', 1, 'https://ror.org/04wqw2206 Digital Promise'),
(47387, 'https://ror.org/026m9rg85', 'en', 1, 'https://ror.org/026m9rg85 Brazilian Society of Tropical Medicine Sociedade Brasileira de Medicina Tropical'),
(47388, 'https://ror.org/05ay13t70', 'fr', 1, 'https://ror.org/05ay13t70 Terre des Hommes'),
(47389, 'https://ror.org/042p3e123', 'en', 1, 'https://ror.org/042p3e123 Society for International Development'),
(47390, 'https://ror.org/02pdqrx22', 'en', 1, 'https://ror.org/02pdqrx22 Center for Assessment'),
(47391, 'https://ror.org/02smbds60', 'en', 1, 'https://ror.org/02smbds60 Texas Association of Community Colleges'),
(47392, 'https://ror.org/004qka625', 'en', 1, 'https://ror.org/004qka625 Society for Research on Educational Effectiveness'),
(47393, 'https://ror.org/05p5gkr73', 'en', 1, 'https://ror.org/05p5gkr73 Texas Public Policy Foundation'),
(47394, 'https://ror.org/0053w7h52', 'en', 1, 'https://ror.org/0053w7h52 Society of Gynaecology and Obstetrics of Nigeria'),
(47395, 'https://ror.org/01ya52t91', 'en', 1, 'https://ror.org/01ya52t91 National Center on Addiction and Substance Abuse at Columbia University'),
(47396, 'https://ror.org/00cmdkk79', 'en', 1, 'https://ror.org/00cmdkk79 Private Sector Health Alliance of Nigeria'),
(47397, 'https://ror.org/04pfhbg73', 'en', 1, 'https://ror.org/04pfhbg73 Oregon Department of Education'),
(47398, 'https://ror.org/044dy9v88', 'en', 1, 'https://ror.org/044dy9v88 National Center on Education and the Economy'),
(47399, 'https://ror.org/00h7ccj27', 'en', 1, 'https://ror.org/00h7ccj27 Agora Foundation'),
(47400, 'https://ror.org/04e4r2k23', 'en', 1, 'https://ror.org/04e4r2k23 Professional Educator Standards Board'),
(47401, 'https://ror.org/02h0asf07', 'en', 1, 'https://ror.org/02h0asf07 Solano County Library'),
(47402, 'https://ror.org/02bayf457', 'en', 1, 'https://ror.org/02bayf457 Antara Foundation'),
(47403, 'https://ror.org/02neda623', 'en', 1, 'https://ror.org/02neda623 Asan Institute for Policy Studies 아산정책연구원'),
(47404, 'https://ror.org/02qjsrb04', 'en', 1, 'https://ror.org/02qjsrb04 Progressive Policy Institute'),
(47405, 'https://ror.org/03cmxf662', 'no_lang_code', 1, 'https://ror.org/03cmxf662 Solina Group (Nigeria)'),
(47406, 'https://ror.org/059j2zt82', 'en', 1, 'https://ror.org/059j2zt82 Mobility Outreach International'),
(47407, 'https://ror.org/00c2wmm70', 'en', 1, 'https://ror.org/00c2wmm70 South Africa Development Fund'),
(47408, 'https://ror.org/01abnzn91', 'en', 1, 'https://ror.org/01abnzn91 Association of Educational Publishers'),
(47409, 'https://ror.org/01t7x8s02', 'en', 1, 'https://ror.org/01t7x8s02 Boston Educational Development Foundation'),
(47410, 'https://ror.org/01kzmqh11', 'en', 1, 'https://ror.org/01kzmqh11 Proteus Digital Health'),
(47411, 'https://ror.org/03t174c88', 'en', 1, 'https://ror.org/03t174c88 Boston Foundation'),
(47412, 'https://ror.org/014jxbx13', 'es', 1, 'https://ror.org/014jxbx13 Probigua'),
(47413, 'https://ror.org/02rd6g006', 'en', 1, 'https://ror.org/02rd6g006 Federation of Infectious Diseases Societies of Southern Africa'),
(47414, 'https://ror.org/02vbakk15', 'en', 1, 'https://ror.org/02vbakk15 Public Agenda'),
(47415, 'https://ror.org/04tbrah05', 'en', 1, 'https://ror.org/04tbrah05 Broad Center'),
(47416, 'https://ror.org/04wxajv83', 'en', 1, 'https://ror.org/04wxajv83 South Carolina State Library'),
(47417, 'https://ror.org/00argmn34', 'en', 1, 'https://ror.org/00argmn34 California Education Partners'),
(47418, 'https://ror.org/01rc1wg41', 'en', 1, 'https://ror.org/01rc1wg41 National Council on Teacher Quality'),
(47419, 'https://ror.org/03dtz2q77', 'en', 1, 'https://ror.org/03dtz2q77 Osburn Public Library'),
(47420, 'https://ror.org/03fqnpd94', 'en', 1, 'https://ror.org/03fqnpd94 Chicago Council on Global Affairs'),
(47421, 'https://ror.org/01nm8ww36', 'en', 1, 'https://ror.org/01nm8ww36 South Dakota Department Of Education'),
(47422, 'https://ror.org/01vdmgn40', 'en', 1, 'https://ror.org/01vdmgn40 National Foundation for India'),
(47423, 'https://ror.org/01xd82d18', 'en', 1, 'https://ror.org/01xd82d18 PAST Foundation'),
(47424, 'https://ror.org/03fk4sm92', 'en', 1, 'https://ror.org/03fk4sm92 Southeastern Council of Foundations'),
(47425, 'https://ror.org/04t4b2612', 'en', 1, 'https://ror.org/04t4b2612 Puget Sound Educational Service District'),
(47426, 'https://ror.org/00sjwg368', 'en', 1, 'https://ror.org/00sjwg368 PICO National Network'),
(47427, 'https://ror.org/054qhne75', 'en', 1, 'https://ror.org/054qhne75 Edcamp Foundation'),
(47428, 'https://ror.org/02n7fx037', 'en', 1, 'https://ror.org/02n7fx037 National Foundation for Infectious Diseases'),
(47429, 'https://ror.org/040j6t342', 'en', 1, 'https://ror.org/040j6t342 Southern Africa Trust'),
(47430, 'https://ror.org/02zb85s41', 'en', 1, 'https://ror.org/02zb85s41 Southern Area Library'),
(47431, 'https://ror.org/05kx6e976', 'en', 1, 'https://ror.org/05kx6e976 Efficacy Institute'),
(47432, 'https://ror.org/007476v46', 'en', 1, 'https://ror.org/007476v46 Qualis Health'),
(47433, 'https://ror.org/03dvqmv75', 'en', 1, 'https://ror.org/03dvqmv75 Pact'),
(47434, 'https://ror.org/03k747n30', 'en', 1, 'https://ror.org/03k747n30 Page Public Library'),
(47435, 'https://ror.org/00wdmd464', 'en', 1, 'https://ror.org/00wdmd464 Southwest Georgia Regional Educational Service Agency'),
(47436, 'https://ror.org/010brsj79', 'en', 1, 'https://ror.org/010brsj79 Quantitative BioSciences'),
(47437, 'https://ror.org/01tb3cd08', 'en', 1, 'https://ror.org/01tb3cd08 Pahara Institute'),
(47438, 'https://ror.org/02282f973', 'no_lang_code', 1, 'https://ror.org/02282f973 Spot On Sciences (United States)'),
(47439, 'https://ror.org/050nv5191', 'en', 1, 'https://ror.org/050nv5191 Rajiv Gandhi Foundation'),
(47440, 'https://ror.org/053g1y030', 'en', 1, 'https://ror.org/053g1y030 Foundation for Vaccine Research'),
(47441, 'https://ror.org/008cjv429', 'en', 1, 'https://ror.org/008cjv429 Squaxin Island Tribe Museum Library and Research Center'),
(47442, 'https://ror.org/02ezpab79', 'en', 1, 'https://ror.org/02ezpab79 Fund for Transforming Education in Kentucky'),
(47443, 'https://ror.org/02xwnsz55', 'en', 1, 'https://ror.org/02xwnsz55 National Indian Education Association'),
(47444, 'https://ror.org/03pjeq484', 'en', 1, 'https://ror.org/03pjeq484 St. Helena Public Library'),
(47445, 'https://ror.org/035gpdd16', 'en', 1, 'https://ror.org/035gpdd16 Palouse Discovery Science Center'),
(47446, 'https://ror.org/035w8ak98', 'en', 1, 'https://ror.org/035w8ak98 Global Network of People Living with HIV/AIDS'),
(47447, 'https://ror.org/04fdcba46', 'en', 1, 'https://ror.org/04fdcba46 National Institute for Staff and Organizational Development'),
(47448, 'https://ror.org/003jx1781', 'en', 1, 'https://ror.org/003jx1781 Oklahoma State University Medical Center'),
(47449, 'https://ror.org/03tfkdy19', 'en', 1, 'https://ror.org/03tfkdy19 Greater New Orleans Foundation'),
(47450, 'https://ror.org/05s9v7453', 'en', 1, 'https://ror.org/05s9v7453 Henry Ford Learning Institute'),
(47451, 'https://ror.org/04p70wa05', 'en', 1, 'https://ror.org/04p70wa05 St Stephen’s AIDS Trust'),
(47452, 'https://ror.org/02qzgf733', 'en', 1, 'https://ror.org/02qzgf733 PAHO Foundation'),
(47453, 'https://ror.org/02s4p5q31', 'en', 1, 'https://ror.org/02s4p5q31 Hesperian Health Guides'),
(47454, 'https://ror.org/03pr9qp97', 'en', 1, 'https://ror.org/03pr9qp97 Stanislaus County Library'),
(47455, 'https://ror.org/01bxyrf83', 'en', 1, 'https://ror.org/01bxyrf83 Highlander Institute'),
(47456, 'https://ror.org/01y8wa902', 'en', 1, 'https://ror.org/01y8wa902 Panzi Foundation'),
(47457, 'https://ror.org/04n0rkn80', 'en', 1, 'https://ror.org/04n0rkn80 Parent Institute for Quality Education'),
(47458, 'https://ror.org/05as9mv70', 'en', 1, 'https://ror.org/05as9mv70 National Laboratory for Education Transformation'),
(47459, 'https://ror.org/03tqbe189', 'en', 1, 'https://ror.org/03tqbe189 State Educational Technology Directors Association'),
(47460, 'https://ror.org/04cypcj54', 'en', 1, 'https://ror.org/04cypcj54 Red Cross Society of China 中国红十字会'),
(47461, 'https://ror.org/049q7ka57', 'en', 1, 'https://ror.org/049q7ka57 Institute for College Access and Success'),
(47462, 'https://ror.org/00vn5mx63', 'en', 1, 'https://ror.org/00vn5mx63 Parenting Matters Foundation'),
(47463, 'https://ror.org/02y2gbd65', 'en', 1, 'https://ror.org/02y2gbd65 Red Hook Public Library'),
(47464, 'https://ror.org/004ahbh03', 'en', 1, 'https://ror.org/004ahbh03 National Library of South Africa'),
(47465, 'https://ror.org/05g96wy68', 'en', 1, 'https://ror.org/05g96wy68 Parents United for Responsible Education'),
(47466, 'https://ror.org/03f4kqa81', 'en', 1, 'https://ror.org/03f4kqa81 State Higher Education Executive Officers'),
(47467, 'https://ror.org/00jc5v027', 'en', 1, 'https://ror.org/00jc5v027 Research for Action'),
(47468, 'https://ror.org/0075xfx31', 'en', 1, 'https://ror.org/0075xfx31 State Library of Iowa'),
(47469, 'https://ror.org/01kfs3w30', 'en', 1, 'https://ror.org/01kfs3w30 RESULTS and RESULTS Educational Fund'),
(47470, 'https://ror.org/00qs4g887', 'en', 1, 'https://ror.org/00qs4g887 Library Network'),
(47471, 'https://ror.org/040ekv640', 'en', 1, 'https://ror.org/040ekv640 Partnership for Child Health'),
(47472, 'https://ror.org/02wgzvx44', 'en', 1, 'https://ror.org/02wgzvx44 National Press Foundation'),
(47473, 'https://ror.org/03y18zz18', 'en', 1, 'https://ror.org/03y18zz18 Revenue Watch Institute'),
(47474, 'https://ror.org/0313yw666', 'no_lang_code', 1, 'https://ror.org/0313yw666 Liya Kebede Foundation'),
(47475, 'https://ror.org/044k3m707', 'en', 1, 'https://ror.org/044k3m707 Riksförbundet för sexuell upplysning Swedish Association for Sexuality Education'),
(47476, 'https://ror.org/01nbe0380', 'en', 1, 'https://ror.org/01nbe0380 National Public Education Support Fund'),
(47477, 'https://ror.org/01zas4j60', 'en', 1, 'https://ror.org/01zas4j60 MTV Staying Alive'),
(47478, 'https://ror.org/01n0cq521', 'en', 1, 'https://ror.org/01n0cq521 Pasteur Foundation'),
(47479, 'https://ror.org/01ydxj048', 'en', 1, 'https://ror.org/01ydxj048 Rice Institute'),
(47480, 'https://ror.org/014y8kr12', 'en', 1, 'https://ror.org/014y8kr12 Massachusetts Institute for a New Commonwealth'),
(47481, 'https://ror.org/0204daw86', 'en', 1, 'https://ror.org/0204daw86 National Office for Sanitation of Senegal'),
(47482, 'https://ror.org/042ywnb68', 'en', 1, 'https://ror.org/042ywnb68 Penda Health'),
(47483, 'https://ror.org/05wcj0w85', 'en', 1, 'https://ror.org/05wcj0w85 Richland Library'),
(47484, 'https://ror.org/00pdgpe23', 'en', 1, 'https://ror.org/00pdgpe23 Match Education'),
(47485, 'https://ror.org/05ppfa149', 'en', 1, 'https://ror.org/05ppfa149 National Student Clearinghouse Research Center'),
(47486, 'https://ror.org/04p1z3290', 'en', 1, 'https://ror.org/04p1z3290 Rigpe Dorje Foundation'),
(47487, 'https://ror.org/0479hmr04', 'en', 1, 'https://ror.org/0479hmr04 Pennsylvania Chamber of Business and Industry');
INSERT INTO `rors` VALUES
(47488, 'https://ror.org/044v7sq39', 'en', 1, 'https://ror.org/044v7sq39 NEA Foundation'),
(47489, 'https://ror.org/02egwd952', 'en', 1, 'https://ror.org/02egwd952 Natural Resource Governance Institute'),
(47490, 'https://ror.org/0226kx453', 'en', 1, 'https://ror.org/0226kx453 Riverside County Library System'),
(47491, 'https://ror.org/00t2pza55', 'en', 1, 'https://ror.org/00t2pza55 Stuart C Dodd Institute for Social Innovation'),
(47492, 'https://ror.org/00tw68s06', 'en', 1, 'https://ror.org/00tw68s06 Riverside County Office of Education'),
(47493, 'https://ror.org/017rhck27', 'en', 1, 'https://ror.org/017rhck27 Physicians for Human Rights'),
(47494, 'https://ror.org/01s1pcz40', 'en', 1, 'https://ror.org/01s1pcz40 Pittsburgh Promise Foundation'),
(47495, 'https://ror.org/02cwd3273', 'en', 1, 'https://ror.org/02cwd3273 Rocketship Education'),
(47496, 'https://ror.org/03j9nh870', 'en', 1, 'https://ror.org/03j9nh870 Pikes Peak Library District'),
(47497, 'https://ror.org/00x62g077', 'en', 1, 'https://ror.org/00x62g077 Rodel Foundation of Delaware'),
(47498, 'https://ror.org/04h288p25', 'en', 1, 'https://ror.org/04h288p25 Poynter Institute for Media Studies'),
(47499, 'https://ror.org/02zgxrw23', 'en', 1, 'https://ror.org/02zgxrw23 Pine River Public Library District'),
(47500, 'https://ror.org/05kgjg660', 'en', 1, 'https://ror.org/05kgjg660 Navajo Nation Library'),
(47501, 'https://ror.org/03rybz620', 'en', 1, 'https://ror.org/03rybz620 Health Center'),
(47502, 'https://ror.org/03c467w37', 'en', 1, 'https://ror.org/03c467w37 Pinellas Public Library Cooperative'),
(47503, 'https://ror.org/027by3f41', 'en', 1, 'https://ror.org/027by3f41 Landesa Rural Development Institute'),
(47504, 'https://ror.org/01f2as093', 'en', 1, 'https://ror.org/01f2as093 Pioneer Library System'),
(47505, 'https://ror.org/04cne0906', 'en', 1, 'https://ror.org/04cne0906 Sacramento County Office of Education'),
(47506, 'https://ror.org/03cezf402', 'en', 1, 'https://ror.org/03cezf402 First Candle'),
(47507, 'https://ror.org/048b5rj23', 'en', 1, 'https://ror.org/048b5rj23 Sacramento Public Library'),
(47508, 'https://ror.org/01427p774', 'en', 1, 'https://ror.org/01427p774 Plan International'),
(47509, 'https://ror.org/042q4th73', 'en', 1, 'https://ror.org/042q4th73 Safe Crossings Foundation'),
(47510, 'https://ror.org/005pe6g50', 'en', 1, 'https://ror.org/005pe6g50 Phoenix Public Library'),
(47511, 'https://ror.org/02apk8p19', 'en', 1, 'https://ror.org/02apk8p19 Sundance Institute'),
(47512, 'https://ror.org/050e5fp23', 'en', 1, 'https://ror.org/050e5fp23 Salt Lake County Library Services'),
(47513, 'https://ror.org/03n3dtw64', 'en', 1, 'https://ror.org/03n3dtw64 Neighborcare Health'),
(47514, 'https://ror.org/04q84b570', 'en', 1, 'https://ror.org/04q84b570 World Health Organization - Lyon Office'),
(47515, 'https://ror.org/05ke3c359', 'en', 1, 'https://ror.org/05ke3c359 SEED Foundation'),
(47516, 'https://ror.org/01jetvm74', 'no_lang_code', 1, 'https://ror.org/01jetvm74 Windmill Health Technologies (India)'),
(47517, 'https://ror.org/02b6r2g85', 'en', 1, 'https://ror.org/02b6r2g85 Winston Churchill Foundation'),
(47518, 'https://ror.org/053s4c885', 'en', 1, 'https://ror.org/053s4c885 New Brunswick Public Library Service'),
(47519, 'https://ror.org/04cqcf577', 'en', 1, 'https://ror.org/04cqcf577 Small Enterprise Education and Promotion Network'),
(47520, 'https://ror.org/01gpk9263', 'en', 1, 'https://ror.org/01gpk9263 New England Foundation for the Arts'),
(47521, 'https://ror.org/00qyppx03', 'en', 1, 'https://ror.org/00qyppx03 World Affairs Council'),
(47522, 'https://ror.org/00xsach43', 'en', 1, 'https://ror.org/00xsach43 Samaritan Healthcare'),
(47523, 'https://ror.org/05vk29a32', 'en', 1, 'https://ror.org/05vk29a32 Sambodhi Research and Communications'),
(47524, 'https://ror.org/05h4g6p05', 'en', 1, 'https://ror.org/05h4g6p05 World Affairs Council of Northern California'),
(47525, 'https://ror.org/00bbwap73', 'en', 1, 'https://ror.org/00bbwap73 Smallholders Foundation'),
(47526, 'https://ror.org/01abr9t53', 'en', 1, 'https://ror.org/01abr9t53 New Mexico Business Roundtable'),
(47527, 'https://ror.org/01qb3tn52', 'en', 1, 'https://ror.org/01qb3tn52 Surge Institute'),
(47528, 'https://ror.org/01xh0ac86', 'en', 1, 'https://ror.org/01xh0ac86 San Diego County Library'),
(47529, 'https://ror.org/056hgyx35', 'en', 1, 'https://ror.org/056hgyx35 University Prep'),
(47530, 'https://ror.org/01y6tr744', 'en', 1, 'https://ror.org/01y6tr744 New Mexico State Library'),
(47531, 'https://ror.org/03bp35d04', 'en', 1, 'https://ror.org/03bp35d04 Santa Ana Public Library'),
(47532, 'https://ror.org/04z3s3f96', 'en', 1, 'https://ror.org/04z3s3f96 Thomson Foundation'),
(47533, 'https://ror.org/00bf4k663', 'en', 1, 'https://ror.org/00bf4k663 World Cocoa Foundation'),
(47534, 'https://ror.org/05dqak117', 'en', 1, 'https://ror.org/05dqak117 Santa Cruz County Office of Education'),
(47535, 'https://ror.org/05nn94a79', 'en', 1, 'https://ror.org/05nn94a79 Uplift Education'),
(47536, 'https://ror.org/05xhay874', 'en', 1, 'https://ror.org/05xhay874 Santa Rosa County Library System'),
(47537, 'https://ror.org/020y1sx51', 'en', 1, 'https://ror.org/020y1sx51 Vellore Christian Medical College Foundation'),
(47538, 'https://ror.org/05wm3vw64', 'en', 1, 'https://ror.org/05wm3vw64 World Economic Forum'),
(47539, 'https://ror.org/016zb6379', 'en', 1, 'https://ror.org/016zb6379 ReadWorks'),
(47540, 'https://ror.org/04ayhcb48', 'en', 1, 'https://ror.org/04ayhcb48 World Federation of Public Health Associations'),
(47541, 'https://ror.org/04jzqkn30', 'en', 1, 'https://ror.org/04jzqkn30 Ursuline Academy of Dallas'),
(47542, 'https://ror.org/01wpwpn91', 'en', 1, 'https://ror.org/01wpwpn91 Therapeutic Health Services'),
(47543, 'https://ror.org/03v4mhk58', 'en', 1, 'https://ror.org/03v4mhk58 World Health Organization - Nigeria'),
(47544, 'https://ror.org/04mp5ms85', 'en', 1, 'https://ror.org/04mp5ms85 Saskatchewan Library Association'),
(47545, 'https://ror.org/047bn1w15', 'en', 1, 'https://ror.org/047bn1w15 World Health Organization - Pakistan'),
(47546, 'https://ror.org/047vwpj87', 'en', 1, 'https://ror.org/047vwpj87 Third Way'),
(47547, 'https://ror.org/0252chk84', 'en', 1, 'https://ror.org/0252chk84 Thomas B. Fordham Institute'),
(47548, 'https://ror.org/033t60e64', 'en', 1, 'https://ror.org/033t60e64 Val Verde County Library'),
(47549, 'https://ror.org/000nb0t51', 'no_lang_code', 1, 'https://ror.org/000nb0t51 VaxTrac'),
(47550, 'https://ror.org/05mkyt616', 'en', 1, 'https://ror.org/05mkyt616 Tiger Woods Foundation'),
(47551, 'https://ror.org/05xq0hs14', 'en', 1, 'https://ror.org/05xq0hs14 World Health Partners'),
(47552, 'https://ror.org/036jr6x18', 'en', 1, 'https://ror.org/036jr6x18 Save the Children'),
(47553, 'https://ror.org/021et8d97', 'en', 1, 'https://ror.org/021et8d97 World Health Partners'),
(47554, 'https://ror.org/05e12c976', 'en', 1, 'https://ror.org/05e12c976 School for Ethics and Global Leadership'),
(47555, 'https://ror.org/00nx74059', 'en', 1, 'https://ror.org/00nx74059 Schools, Health & Libraries Broadband'),
(47556, 'https://ror.org/0193yj888', 'en', 1, 'https://ror.org/0193yj888 Timberland Regional Library'),
(47557, 'https://ror.org/03n0sad24', 'en', 1, 'https://ror.org/03n0sad24 Vera Institute of Justice'),
(47558, 'https://ror.org/03qj95z98', 'en', 1, 'https://ror.org/03qj95z98 Tony Blair Africa Governance Initiative'),
(47559, 'https://ror.org/03pvvgr46', 'en', 1, 'https://ror.org/03pvvgr46 Seattle Academy of Arts and Sciences'),
(47560, 'https://ror.org/05v2tzz35', 'en', 1, 'https://ror.org/05v2tzz35 Training Programs in Epidemiology and Public Health Interventions Network'),
(47561, 'https://ror.org/04c4s9b25', 'en', 1, 'https://ror.org/04c4s9b25 Seattle Center Foundation'),
(47562, 'https://ror.org/0385nz751', 'en', 1, 'https://ror.org/0385nz751 Uongozi Institute'),
(47563, 'https://ror.org/033x8r647', 'en', 1, 'https://ror.org/033x8r647 Utah Department of Heritage and Arts'),
(47564, 'https://ror.org/00z517q71', 'en', 1, 'https://ror.org/00z517q71 Seattle Central College Foundation'),
(47565, 'https://ror.org/03cp7he26', 'en', 1, 'https://ror.org/03cp7he26 World Savings and Retail Banking Institute'),
(47566, 'https://ror.org/02pjmtb58', 'en', 1, 'https://ror.org/02pjmtb58 Ute Mountain Ute Tribe''s Environmental Programs Department'),
(47567, 'https://ror.org/00g07kf08', 'en', 1, 'https://ror.org/00g07kf08 Seattle Education Access'),
(47568, 'https://ror.org/04emgh024', 'en', 1, 'https://ror.org/04emgh024 Seattle Indian Health Board'),
(47569, 'https://ror.org/00bbs6n73', 'en', 1, 'https://ror.org/00bbs6n73 World Trade Club'),
(47570, 'https://ror.org/04v26et66', 'en', 1, 'https://ror.org/04v26et66 Trust for Advancement of Agricultural Sciences'),
(47571, 'https://ror.org/028h3z429', 'en', 1, 'https://ror.org/028h3z429 Seattle International Foundation'),
(47572, 'https://ror.org/053ppg430', 'en', 1, 'https://ror.org/053ppg430 First Tee of Greater Seattle'),
(47573, 'https://ror.org/01gydgw38', 'en', 1, 'https://ror.org/01gydgw38 Trust for Vaccines & Immunization'),
(47574, 'https://ror.org/004514720', 'en', 1, 'https://ror.org/004514720 World University Service of Canada'),
(47575, 'https://ror.org/03mn6vd03', 'en', 1, 'https://ror.org/03mn6vd03 Vicente Ferrer Foundation'),
(47576, 'https://ror.org/01r55tz35', 'en', 1, 'https://ror.org/01r55tz35 TrustAfrica'),
(47577, 'https://ror.org/021wm2t34', 'en', 1, 'https://ror.org/021wm2t34 Seattle Parks Foundation'),
(47578, 'https://ror.org/0008sqa62', 'en', 1, 'https://ror.org/0008sqa62 Virginia Beach Public Library'),
(47579, 'https://ror.org/00np3zt84', 'en', 1, 'https://ror.org/00np3zt84 Tulalip Foundation'),
(47580, 'https://ror.org/0324x0m97', 'en', 1, 'https://ror.org/0324x0m97 World Council of Credit Unions'),
(47581, 'https://ror.org/00vt3q262', 'en', 1, 'https://ror.org/00vt3q262 Union Carnegie Library'),
(47582, 'https://ror.org/023thvq22', 'en', 1, 'https://ror.org/023thvq22 United Federation of Teachers'),
(47583, 'https://ror.org/03xt5tw33', 'en', 1, 'https://ror.org/03xt5tw33 Wyoming State Library'),
(47584, 'https://ror.org/04f10rk67', 'en', 1, 'https://ror.org/04f10rk67 Virology Education'),
(47585, 'https://ror.org/04p2v2s43', 'en', 1, 'https://ror.org/04p2v2s43 XPRIZE Foundation'),
(47586, 'https://ror.org/03v4wzh43', 'en', 1, 'https://ror.org/03v4wzh43 Viva Hispanic Foundation NW'),
(47587, 'https://ror.org/05cb8xv31', 'en', 1, 'https://ror.org/05cb8xv31 United General Hospital'),
(47588, 'https://ror.org/05hdea206', 'en', 1, 'https://ror.org/05hdea206 United Indians of All Tribes'),
(47589, 'https://ror.org/05pvwrn10', 'no_lang_code', 1, 'https://ror.org/05pvwrn10 Xenetic Biosciences (United States)'),
(47590, 'https://ror.org/042p8f284', 'en', 1, 'https://ror.org/042p8f284 Volusia County Public Library'),
(47591, 'https://ror.org/02sp9pn28', 'en', 1, 'https://ror.org/02sp9pn28 Washington Area Women’s Foundation'),
(47592, 'https://ror.org/05a6zqv42', 'en', 1, 'https://ror.org/05a6zqv42 United Nations Association of the United States of America'),
(47593, 'https://ror.org/01ehdwj93', 'en', 1, 'https://ror.org/01ehdwj93 United Nations Capital Development Fund'),
(47594, 'https://ror.org/040rp5672', 'en', 1, 'https://ror.org/040rp5672 York County Libraries'),
(47595, 'https://ror.org/05mhdah91', 'en', 1, 'https://ror.org/05mhdah91 Washington Association of School Administrators'),
(47596, 'https://ror.org/050bms902', 'en', 1, 'https://ror.org/050bms902 United Nations Department of Economic and Social Affairs'),
(47597, 'https://ror.org/00n9n8692', 'en', 1, 'https://ror.org/00n9n8692 Washington Global Health Alliance'),
(47598, 'https://ror.org/002beej94', 'en', 1, 'https://ror.org/002beej94 Washington Health Foundation'),
(47599, 'https://ror.org/04c3ke011', 'en', 1, 'https://ror.org/04c3ke011 Youth Leadership Institute'),
(47600, 'https://ror.org/04kp8j175', 'en', 1, 'https://ror.org/04kp8j175 Washington News Council'),
(47601, 'https://ror.org/05574b264', 'en', 1, 'https://ror.org/05574b264 Washington State Budget and Policy Center'),
(47602, 'https://ror.org/00gxry525', 'en', 1, 'https://ror.org/00gxry525 Bolder Giving'),
(47603, 'https://ror.org/02z2a8376', 'en', 1, 'https://ror.org/02z2a8376 Washington State Grange'),
(47604, 'https://ror.org/051jd1s66', 'en', 1, 'https://ror.org/051jd1s66 Washington State Institute for Public Policy'),
(47605, 'https://ror.org/03tbpfn25', 'en', 1, 'https://ror.org/03tbpfn25 Global Call to Action Against Poverty'),
(47606, 'https://ror.org/05thwst63', 'en', 1, 'https://ror.org/05thwst63 United States Student Association'),
(47607, 'https://ror.org/02h8p6f28', 'en', 1, 'https://ror.org/02h8p6f28 Courage360'),
(47608, 'https://ror.org/01ttwsg70', 'de', 1, 'https://ror.org/01ttwsg70 Union postale universelle Universal Postal Union'),
(47609, 'https://ror.org/04r7ys083', 'en', 1, 'https://ror.org/04r7ys083 Washington Women''s Foundation'),
(47610, 'https://ror.org/02t449189', 'en', 1, 'https://ror.org/02t449189 Summit Institute'),
(47611, 'https://ror.org/03vxt1186', 'en', 1, 'https://ror.org/03vxt1186 Water Services Trust Fund'),
(47612, 'https://ror.org/02qvmv657', 'en', 1, 'https://ror.org/02qvmv657 University Child Development School'),
(47613, 'https://ror.org/04bx5yd89', 'en', 1, 'https://ror.org/04bx5yd89 Water Sanitation and Hygiene Institute'),
(47614, 'https://ror.org/00rcvgx40', 'en', 1, 'https://ror.org/00rcvgx40 Rutgers Sexual and Reproductive Health and Rights'),
(47615, 'https://ror.org/005bs1v61', 'en', 1, 'https://ror.org/005bs1v61 Yukon Department of Education'),
(47616, 'https://ror.org/05r9zr616', 'en', 1, 'https://ror.org/05r9zr616 Way Back Inn'),
(47617, 'https://ror.org/01nygqt57', 'en', 1, 'https://ror.org/01nygqt57 Wegene Ethiopian Foundation'),
(47618, 'https://ror.org/05phbdr70', 'en', 1, 'https://ror.org/05phbdr70 Weippe Public Library'),
(47619, 'https://ror.org/034ze3r60', 'en', 1, 'https://ror.org/034ze3r60 West Florida Public Libraries'),
(47620, 'https://ror.org/0155cq303', 'en', 1, 'https://ror.org/0155cq303 West Virginia Library Commission'),
(47621, 'https://ror.org/052c7a780', 'en', 1, 'https://ror.org/052c7a780 Australia Bioinformatics Resource'),
(47622, 'https://ror.org/02yf6ha74', 'en', 1, 'https://ror.org/02yf6ha74 Institut für Vergleichende Medien und Kommunikationsforschung Institute for Comparative Media and Communication Studies'),
(47623, 'https://ror.org/00n0zsa28', 'en', 1, 'https://ror.org/00n0zsa28 Institut für Europäisches Schadenersatzrecht Institute for European Tort Law'),
(47624, 'https://ror.org/009syct46', 'en', 1, 'https://ror.org/009syct46 Institut für Interdisziplinäre Gebirgsforschung Institute for Interdisciplinary Mountain Research'),
(47625, 'https://ror.org/02kd7tq69', 'en', 1, 'https://ror.org/02kd7tq69 Harbage Consulting'),
(47626, 'https://ror.org/01hbyc103', 'en', 1, 'https://ror.org/01hbyc103 Institut für Mittelalterforschung Institute for Medieval Research'),
(47627, 'https://ror.org/00x2gme77', 'en', 1, 'https://ror.org/00x2gme77 1199SEIU Funds'),
(47628, 'https://ror.org/02x2v5f35', 'en', 1, 'https://ror.org/02x2v5f35 Institut für die Erforschung der Habsburgermonarchie und des Balkanraumes Institute for Habsburg and Balkan Studies'),
(47629, 'https://ror.org/035gx5q08', 'en', 1, 'https://ror.org/035gx5q08 Institut für Orientalische und Europäische Archäologie Institute for Oriental and European Archaeology'),
(47630, 'https://ror.org/00p52as68', 'en', 1, 'https://ror.org/00p52as68 Leapfrog Group'),
(47631, 'https://ror.org/016d0n234', 'en', 1, 'https://ror.org/016d0n234 Institut für Sozialanthropologie Institute for Social Anthropology'),
(47632, 'https://ror.org/00gf51y12', 'en', 1, 'https://ror.org/00gf51y12 Institut für Kulturgeschichte der Antike Institute for the Study of Ancient Culture'),
(47633, 'https://ror.org/01gxb7577', 'en', 1, 'https://ror.org/01gxb7577 Glówny Urzad Geodezji i Kartografii Head Office of Geodesy and Cartography'),
(47634, 'https://ror.org/03phzkx10', 'en', 1, 'https://ror.org/03phzkx10 Institut für Kulturwissenschaften und Theatergeschichte Institute of Culture Studies and Theatre History'),
(47635, 'https://ror.org/000fzkp10', 'no_lang_code', 1, 'https://ror.org/000fzkp10 Leavitt Partners (United States)'),
(47636, 'https://ror.org/007bwhe79', 'en', 1, 'https://ror.org/007bwhe79 Institut für Kunst- und Musikhistorische Forschungen Institute of History of Art and Musicology'),
(47637, 'https://ror.org/053jgsp62', 'en', 1, 'https://ror.org/053jgsp62 Institut für Iranistik Institute of Iranian Studies'),
(47638, 'https://ror.org/059w6nf94', 'en', 1, 'https://ror.org/059w6nf94 International Centre for Art and New Technologies Mezinárodní Centrum Pro Umění a Nové Technologie'),
(47639, 'https://ror.org/05erkbf97', 'en', 1, 'https://ror.org/05erkbf97 Lietuvos ornitologų draugija Lithuanian Ornithological Society'),
(47640, 'https://ror.org/00dw5zk55', 'en', 1, 'https://ror.org/00dw5zk55 Institut für Technikfolgen-Abschätzung Institute of Technology Assessment'),
(47641, 'https://ror.org/02an18w50', 'hu', 1, 'https://ror.org/02an18w50 Affektív Pszichológia Tanszék'),
(47642, 'https://ror.org/05a94k872', 'en', 1, 'https://ror.org/05a94k872 Johann Radon Institut für Angewandte Mathematik Johann Radon Institute for Computational and Applied Mathematics'),
(47643, 'https://ror.org/03td98h13', 'en', 1, 'https://ror.org/03td98h13 Long Term Care Community Coalition'),
(47644, 'https://ror.org/05kdjqf72', 'en', 1, 'https://ror.org/05kdjqf72 Stefan Meyer Institute for Subatomic Physics Stefan-Meyer-Institut'),
(47645, 'https://ror.org/03xxf5287', 'en', 1, 'https://ror.org/03xxf5287 Actors Fund of America'),
(47646, 'https://ror.org/01b7m6y64', 'en', 1, 'https://ror.org/01b7m6y64 Citizens Budget Commission'),
(47647, 'https://ror.org/04ycden15', 'en', 1, 'https://ror.org/04ycden15 Institut für Demographie Vienna Institute of Demography'),
(47648, 'https://ror.org/00n562475', 'en', 1, 'https://ror.org/00n562475 Romanian Intelligence Service Serviciul Român de Informații'),
(47649, 'https://ror.org/00mjpb940', 'en', 1, 'https://ror.org/00mjpb940 Lown Cardiovascular Group'),
(47650, 'https://ror.org/00sj6r545', 'en', 1, 'https://ror.org/00sj6r545 Health Services Research Association of Australia & New Zealand'),
(47651, 'https://ror.org/01zxxbs36', 'no_lang_code', 1, 'https://ror.org/01zxxbs36 Manatt, Phelps & Phillips (United States)'),
(47652, 'https://ror.org/01x5csq95', 'en', 1, 'https://ror.org/01x5csq95 Coalition to Transform Advanced Care'),
(47653, 'https://ror.org/05mcj1v39', 'en', 1, 'https://ror.org/05mcj1v39 Alka Wildlife'),
(47654, 'https://ror.org/05hpdph39', 'en', 1, 'https://ror.org/05hpdph39 Pacific Business Group on Health'),
(47655, 'https://ror.org/002jn2544', 'en', 1, 'https://ror.org/002jn2544 Meadowlark Hills'),
(47656, 'https://ror.org/01j5mtg86', 'en', 1, 'https://ror.org/01j5mtg86 Coleman Associates'),
(47657, 'https://ror.org/00rsvp932', 'en', 1, 'https://ror.org/00rsvp932 Health Tech Strategies'),
(47658, 'https://ror.org/03hrrt833', 'en', 1, 'https://ror.org/03hrrt833 Parkland Center For Clinical Innovation'),
(47659, 'https://ror.org/02wm1tc29', 'en', 1, 'https://ror.org/02wm1tc29 Massachusetts Health Data Consortium'),
(47660, 'https://ror.org/01x5ppp27', 'en', 1, 'https://ror.org/01x5ppp27 Partnership for Drug-Free Kids'),
(47661, 'https://ror.org/02y9z4d43', 'en', 1, 'https://ror.org/02y9z4d43 Alliance for Aging Research'),
(47662, 'https://ror.org/05rv54a27', 'en', 1, 'https://ror.org/05rv54a27 Massachusetts Health Quality Partners'),
(47663, 'https://ror.org/02fhy7n13', 'en', 1, 'https://ror.org/02fhy7n13 Alliance for Health Reform'),
(47664, 'https://ror.org/008y09k71', 'en', 1, 'https://ror.org/008y09k71 Massachusetts Senior Care Foundation'),
(47665, 'https://ror.org/01c95r073', 'en', 1, 'https://ror.org/01c95r073 Pennsylvania Health Law Project'),
(47666, 'https://ror.org/03gx95q66', 'en', 1, 'https://ror.org/03gx95q66 Persephone Productions'),
(47667, 'https://ror.org/011pq1q02', 'no_lang_code', 1, 'https://ror.org/011pq1q02 Greenwald & Associates (United States)'),
(47668, 'https://ror.org/02q8b8t22', 'en', 1, 'https://ror.org/02q8b8t22 Battery Park'),
(47669, 'https://ror.org/03sz0jr25', 'en', 1, 'https://ror.org/03sz0jr25 Why Foundation'),
(47670, 'https://ror.org/03mwbkd48', 'en', 1, 'https://ror.org/03mwbkd48 Promundo'),
(47671, 'https://ror.org/051w9x193', 'en', 1, 'https://ror.org/051w9x193 Phipps Houses'),
(47672, 'https://ror.org/016pabg12', 'en', 1, 'https://ror.org/016pabg12 Council of Accountable Physician Practices'),
(47673, 'https://ror.org/02vfcrx76', 'en', 1, 'https://ror.org/02vfcrx76 American Association of Nurse Assessment Coordination'),
(47674, 'https://ror.org/007m1j423', 'en', 1, 'https://ror.org/007m1j423 Money, Crime, and Health Policy Initiative'),
(47675, 'https://ror.org/01tbzkx87', 'en', 1, 'https://ror.org/01tbzkx87 Crime Prevention Center'),
(47676, 'https://ror.org/03t18wf38', 'en', 1, 'https://ror.org/03t18wf38 Illinois Department of Healthcare and Family Services'),
(47677, 'https://ror.org/047bhz389', 'no_lang_code', 1, 'https://ror.org/047bhz389 MDS Associates (United States)'),
(47678, 'https://ror.org/041zy7b93', 'en', 1, 'https://ror.org/041zy7b93 American College of Healthcare'),
(47679, 'https://ror.org/00s5mwe59', 'no_lang_code', 1, 'https://ror.org/00s5mwe59 Smetumet'),
(47680, 'https://ror.org/00fhnng33', 'en', 1, 'https://ror.org/00fhnng33 Medical Society of the State of New York'),
(47681, 'https://ror.org/024zaz802', 'pl', 1, 'https://ror.org/024zaz802 Podlaska Regionalna Organizacja Turystyczna'),
(47682, 'https://ror.org/026d1tb50', 'no_lang_code', 1, 'https://ror.org/026d1tb50 Inno-Water (Hungary)'),
(47683, 'https://ror.org/011r26y04', 'en', 1, 'https://ror.org/011r26y04 Polish Dance Theatre Polski Teatr Tańca'),
(47684, 'https://ror.org/01z28x230', 'en', 1, 'https://ror.org/01z28x230 Medicare Rights Center'),
(47685, 'https://ror.org/01w3gev13', 'en', 1, 'https://ror.org/01w3gev13 American Public Human Services Association'),
(47686, 'https://ror.org/036fajn26', 'en', 1, 'https://ror.org/036fajn26 Czech Society for Butterfly and Moth Conservation'),
(47687, 'https://ror.org/04b3sca92', 'en', 1, 'https://ror.org/04b3sca92 American Society of Health Economists'),
(47688, 'https://ror.org/0055m7z56', 'en', 1, 'https://ror.org/0055m7z56 Institute for Environmental Solutions Institūts Vides risinājumu'),
(47689, 'https://ror.org/02ge5fs96', 'en', 1, 'https://ror.org/02ge5fs96 American Youth Policy Forum'),
(47690, 'https://ror.org/0436njg64', 'no_lang_code', 1, 'https://ror.org/0436njg64 Politico (United States)'),
(47691, 'https://ror.org/044qnzq83', 'en', 1, 'https://ror.org/044qnzq83 Czech Womens Lobby Česká ženská lobby'),
(47692, 'https://ror.org/031czmc73', 'en', 1, 'https://ror.org/031czmc73 Asian American Federation'),
(47693, 'https://ror.org/031337c36', 'en', 1, 'https://ror.org/031337c36 MetroPlus Health Plan'),
(47694, 'https://ror.org/038shek77', 'en', 1, 'https://ror.org/038shek77 ASPEA - Portuguese Association for Environmental Education'),
(47695, 'https://ror.org/01w63rj87', 'en', 1, 'https://ror.org/01w63rj87 Institute for Health Policy Solutions'),
(47696, 'https://ror.org/05x9xcd23', 'en', 1, 'https://ror.org/05x9xcd23 Midwest Business Group on Health'),
(47697, 'https://ror.org/047h3xn06', 'no_lang_code', 1, 'https://ror.org/047h3xn06 Datastat'),
(47698, 'https://ror.org/029235h09', 'en', 1, 'https://ror.org/029235h09 Prevent Child Abuse America'),
(47699, 'https://ror.org/03b7ffd73', 'en', 1, 'https://ror.org/03b7ffd73 Ministry of Environmental Protection and Regional Development'),
(47700, 'https://ror.org/020mag653', 'en', 1, 'https://ror.org/020mag653 Latvian Centre for Contemporary Art'),
(47701, 'https://ror.org/056sccp51', 'en', 1, 'https://ror.org/056sccp51 Ministry of Labour, Family, Social Affairs and Equal Opportunities'),
(47702, 'https://ror.org/02v71kg05', 'en', 1, 'https://ror.org/02v71kg05 Princeton Survey Research Associates International'),
(47703, 'https://ror.org/00yfsan48', 'en', 1, 'https://ror.org/00yfsan48 Institute for Literature Институтът за литература'),
(47704, 'https://ror.org/00tka3t28', 'no_lang_code', 1, 'https://ror.org/00tka3t28 ProDSP Technologies (Hungary)'),
(47705, 'https://ror.org/0421v9x53', 'en', 1, 'https://ror.org/0421v9x53 Median Research Centre'),
(47706, 'https://ror.org/041an6061', 'pl', 1, 'https://ror.org/041an6061 Uroczysko'),
(47707, 'https://ror.org/00txq6g47', 'en', 1, 'https://ror.org/00txq6g47 State Innovation Exchange'),
(47708, 'https://ror.org/01spqna17', 'en', 1, 'https://ror.org/01spqna17 Multicultural Center Prague Multikulturní centrum Praha'),
(47709, 'https://ror.org/02t8gzn69', 'en', 1, 'https://ror.org/02t8gzn69 DMA Health Strategies'),
(47710, 'https://ror.org/0518f9g13', 'pl', 1, 'https://ror.org/0518f9g13 Wojewódzki Inspektorat Ochrony Środowiska w Warszawie'),
(47711, 'https://ror.org/01ttrzd54', 'en', 1, 'https://ror.org/01ttrzd54 Association for Historical Dialogue and Research'),
(47712, 'https://ror.org/050n29947', 'en', 1, 'https://ror.org/050n29947 Ecological Foundation Green Action Fundacja Ekologiczna "Zielona Akcja"'),
(47713, 'https://ror.org/05ntnbc55', 'en', 1, 'https://ror.org/05ntnbc55 Association Horizons'),
(47714, 'https://ror.org/023pmtm07', 'en', 1, 'https://ror.org/023pmtm07 Healthcentric Advisors'),
(47715, 'https://ror.org/01aw01n16', 'en', 1, 'https://ror.org/01aw01n16 Association for Regional Development and Mental Health'),
(47716, 'https://ror.org/02tmbkx36', 'en', 1, 'https://ror.org/02tmbkx36 Pro Carpathia'),
(47717, 'https://ror.org/00pnhex46', 'en', 1, 'https://ror.org/00pnhex46 General Directorate for Environmental Protection Generalny Dyrektor Ochrony Środowiska'),
(47718, 'https://ror.org/00xbpvv44', 'es', 1, 'https://ror.org/00xbpvv44 Asociación para el Progreso de la Mujer en el Mundo Rural'),
(47719, 'https://ror.org/02zm2n135', 'en', 1, 'https://ror.org/02zm2n135 Association of Clinicians for the Underserved'),
(47720, 'https://ror.org/029z9sm32', 'en', 1, 'https://ror.org/029z9sm32 Municipality of Kardzhali Община Кърджали'),
(47721, 'https://ror.org/029fwbw29', 'en', 1, 'https://ror.org/029fwbw29 Sofia Municipality Столична община'),
(47722, 'https://ror.org/012fxzb58', 'en', 1, 'https://ror.org/012fxzb58 Regional History Museum Gabrovo Регионален исторически музей, Габрово'),
(47723, 'https://ror.org/00vtz6t93', 'no_lang_code', 1, 'https://ror.org/00vtz6t93 Enviroinvest Environmental and Biotechnological Corp'),
(47724, 'https://ror.org/02bsxzz91', 'no_lang_code', 1, 'https://ror.org/02bsxzz91 Sozopol Municipality Община Созопол'),
(47725, 'https://ror.org/05g452t43', 'et', 1, 'https://ror.org/05g452t43 Association of Estonian Open Youth Centres Eesti Avatud Noortekeskuste Ühendus'),
(47726, 'https://ror.org/01n4dr964', 'en', 1, 'https://ror.org/01n4dr964 Latino/a Educational Achievement Project'),
(47727, 'https://ror.org/03tzcqp14', 'no_lang_code', 1, 'https://ror.org/03tzcqp14 Reos Production (Romania)'),
(47728, 'https://ror.org/022w6gv64', 'en', 1, 'https://ror.org/022w6gv64 Topolovgrad Municipality Община Тополовград'),
(47729, 'https://ror.org/00mxhk994', 'en', 1, 'https://ror.org/00mxhk994 Institute of the Republic of Slovenia for Nature Conservation Zavod republike Slovenije za varstvo narave'),
(47730, 'https://ror.org/010ar1g07', 'en', 1, 'https://ror.org/010ar1g07 Museum of History Iskra Исторически музей Искра'),
(47731, 'https://ror.org/01c2mxq14', 'en', 1, 'https://ror.org/01c2mxq14 Estonian Union for Child Welfare'),
(47732, 'https://ror.org/007e7q878', 'en', 1, 'https://ror.org/007e7q878 RK Evaluation and Strategies'),
(47733, 'https://ror.org/02pvtxb60', 'en', 1, 'https://ror.org/02pvtxb60 ASTRA National Museum Complex Complexul Naţional Muzeal "ASTRA"'),
(47734, 'https://ror.org/03y6jbv18', 'no_lang_code', 1, 'https://ror.org/03y6jbv18 AUS (United States)'),
(47735, 'https://ror.org/05a2x2n50', 'en', 1, 'https://ror.org/05a2x2n50 Administrația Națională Apele Române Romanian Waters National Administration'),
(47736, 'https://ror.org/0184nmh41', 'en', 1, 'https://ror.org/0184nmh41 International Health Economics Association'),
(47737, 'https://ror.org/02pp6z931', 'en', 1, 'https://ror.org/02pp6z931 Bailit Health'),
(47738, 'https://ror.org/04af3ta68', 'en', 1, 'https://ror.org/04af3ta68 Executive Environment Agency'),
(47739, 'https://ror.org/04f13zs55', 'en', 1, 'https://ror.org/04f13zs55 National Association of Medicaid Directors'),
(47740, 'https://ror.org/05bzd1d42', 'en', 1, 'https://ror.org/05bzd1d42 Executive Forests Agency'),
(47741, 'https://ror.org/01fv33324', 'en', 1, 'https://ror.org/01fv33324 International Longevity Centre'),
(47742, 'https://ror.org/026cvv862', 'lv', 1, 'https://ror.org/026cvv862 Balteneko'),
(47743, 'https://ror.org/026tcwf27', 'en', 1, 'https://ror.org/026tcwf27 National Consumer Voice for Quality Long-Term Care'),
(47744, 'https://ror.org/02xyyna25', 'en', 1, 'https://ror.org/02xyyna25 International Society for Quality in Health Care'),
(47745, 'https://ror.org/02heszr58', 'en', 1, 'https://ror.org/02heszr58 Rockefeller Archive Center'),
(47746, 'https://ror.org/017s69y81', 'no_lang_code', 1, 'https://ror.org/017s69y81 Fermentia (Hungary)'),
(47747, 'https://ror.org/015w09177', 'en', 1, 'https://ror.org/015w09177 National Coalition for Cancer Survivorship'),
(47748, 'https://ror.org/04g18y077', 'no_lang_code', 1, 'https://ror.org/04g18y077 Inwatech (Hungary) Inwatech Környezetvédelmi Kft'),
(47749, 'https://ror.org/01h9x6t73', 'no_lang_code', 1, 'https://ror.org/01h9x6t73 ROSA'),
(47750, 'https://ror.org/04z7s6c33', 'en', 1, 'https://ror.org/04z7s6c33 Iowa Policy Project'),
(47751, 'https://ror.org/019s3m535', 'no_lang_code', 1, 'https://ror.org/019s3m535 EagleDream Health'),
(47752, 'https://ror.org/034skjj26', 'en', 1, 'https://ror.org/034skjj26 National Council on Interpreting in Health Care'),
(47753, 'https://ror.org/05nyyav28', 'en', 1, 'https://ror.org/05nyyav28 BirdLife Cyprus Πτηνολογικός Σύνδεσμος'),
(47754, 'https://ror.org/00ckatm30', 'en', 1, 'https://ror.org/00ckatm30 Black Sea Energy Cluster ЧЕРНОМОРСКИ ЕНЕРГИЕН КЛЪСТЕР'),
(47755, 'https://ror.org/01wq69e31', 'pl', 1, 'https://ror.org/01wq69e31 Kostrzyca Forest Gene Bank'),
(47756, 'https://ror.org/01pb0m710', 'el', 1, 'https://ror.org/01pb0m710 SciFY'),
(47757, 'https://ror.org/04dbf1y97', 'en', 1, 'https://ror.org/04dbf1y97 Bratya Daskalovi Municipality Община Братя Даскалови'),
(47758, 'https://ror.org/02yjqcm66', 'en', 1, 'https://ror.org/02yjqcm66 Forest Research Institute Институт за гората'),
(47759, 'https://ror.org/00865qa43', 'en', 1, 'https://ror.org/00865qa43 Jewish Healthcare Foundation'),
(47760, 'https://ror.org/01p4rdh72', 'no_lang_code', 1, 'https://ror.org/01p4rdh72 Forum 50%'),
(47761, 'https://ror.org/056t7dy19', 'en', 1, 'https://ror.org/056t7dy19 National Health Law Program'),
(47762, 'https://ror.org/02473g334', 'no_lang_code', 1, 'https://ror.org/02473g334 Bulgarian Ports Infrastructure (Bulgaria) ДЪРЖАВНО ПРЕДПРИЯТИЕ ПРИСТАНИЩНА ИНФРАСТРУКТУРА'),
(47763, 'https://ror.org/00j3qdn40', 'no_lang_code', 1, 'https://ror.org/00j3qdn40 SeqOmics Biotechnology (Hungary)'),
(47764, 'https://ror.org/0254sjn21', 'en', 1, 'https://ror.org/0254sjn21 National Hispanic Health Foundation'),
(47765, 'https://ror.org/04rznx125', 'en', 1, 'https://ror.org/04rznx125 Johnson Group Consulting'),
(47766, 'https://ror.org/01z2dd859', 'en', 1, 'https://ror.org/01z2dd859 National Hispanic Medical Association'),
(47767, 'https://ror.org/03cq1m515', 'en', 1, 'https://ror.org/03cq1m515 Bulgarian Society for the Protection of Birds'),
(47768, 'https://ror.org/03av58010', 'en', 1, 'https://ror.org/03av58010 Joint Center for Political and Economic Studies'),
(47769, 'https://ror.org/04j2hyd53', 'en', 1, 'https://ror.org/04j2hyd53 eHealth Initiative'),
(47770, 'https://ror.org/04gp21q48', 'en', 1, 'https://ror.org/04gp21q48 Slovinski National Park Słowiński Park Narodowy'),
(47771, 'https://ror.org/00cq73k33', 'en', 1, 'https://ror.org/00cq73k33 Buzau County Museum Muzeul Județean Buzău'),
(47772, 'https://ror.org/02ykq8x89', 'en', 1, 'https://ror.org/02ykq8x89 Small Business Majority'),
(47773, 'https://ror.org/01cxrg686', 'en', 1, 'https://ror.org/01cxrg686 National Medical Fellowships'),
(47774, 'https://ror.org/04btebx51', 'pl', 1, 'https://ror.org/04btebx51 Centrum Aktywności Społecznej Pryzmat'),
(47775, 'https://ror.org/0520qph23', 'en', 1, 'https://ror.org/0520qph23 Muzeum Narodowe w Gdańsku National Museum in Gdansk'),
(47776, 'https://ror.org/02ajkzj32', 'no_lang_code', 1, 'https://ror.org/02ajkzj32 Social Science Research Solutions (United States)'),
(47777, 'https://ror.org/00rmtxk95', 'en', 1, 'https://ror.org/00rmtxk95 National Partnership for Women & Families'),
(47778, 'https://ror.org/00n7z7b94', 'no_lang_code', 1, 'https://ror.org/00n7z7b94 KNG Health Consulting (United States)'),
(47779, 'https://ror.org/05ybghm69', 'en', 1, 'https://ror.org/05ybghm69 Canadian Association for Health Services and Policy Research l''Association canadienne pur la recherche sur les services et les politiques de la santé'),
(47780, 'https://ror.org/004b7qy98', 'en', 1, 'https://ror.org/004b7qy98 Friends of the National Library of Medicine'),
(47781, 'https://ror.org/03b0a6729', 'sl', 1, 'https://ror.org/03b0a6729 Društvo Ključ'),
(47782, 'https://ror.org/00jprdp28', 'no_lang_code', 1, 'https://ror.org/00jprdp28 GfK (United States)'),
(47783, 'https://ror.org/005z6d626', 'en', 1, 'https://ror.org/005z6d626 Catalyst for Payment Reform'),
(47784, 'https://ror.org/01j7m8515', 'no_lang_code', 1, 'https://ror.org/01j7m8515 Spragens and Associates (United States)'),
(47785, 'https://ror.org/01tg0gj74', 'en', 1, 'https://ror.org/01tg0gj74 Justice in Aging'),
(47786, 'https://ror.org/00at2pp81', 'no_lang_code', 1, 'https://ror.org/00at2pp81 Gender Studies'),
(47787, 'https://ror.org/05dcttj85', 'en', 1, 'https://ror.org/05dcttj85 Center for Evaluation Innovation'),
(47788, 'https://ror.org/04pfs0x85', 'en', 1, 'https://ror.org/04pfs0x85 Krzysztof Kluk Museum of Agriculture Muzeum Rolnictwa im. ks. Krzysztofa Kluka'),
(47789, 'https://ror.org/04mxckc46', 'en', 1, 'https://ror.org/04mxckc46 National Women''s Law Center'),
(47790, 'https://ror.org/0531chw57', 'en', 1, 'https://ror.org/0531chw57 Center For Medicare Advocacy'),
(47791, 'https://ror.org/02ht7jy02', 'en', 1, 'https://ror.org/02ht7jy02 State Protected Areas Service Valstybine Saugomu Teritoriju Tarnyba'),
(47792, 'https://ror.org/05r9qv072', 'en', 1, 'https://ror.org/05r9qv072 Lake Research Partners'),
(47793, 'https://ror.org/02rw3e427', 'en', 1, 'https://ror.org/02rw3e427 Nebraska Press Association'),
(47794, 'https://ror.org/02hdbjg52', 'en', 1, 'https://ror.org/02hdbjg52 Network for Excellence in Health Innovation'),
(47795, 'https://ror.org/05ezss241', 'en', 1, 'https://ror.org/05ezss241 Gift of Life Foundation'),
(47796, 'https://ror.org/05hb97k72', 'en', 1, 'https://ror.org/05hb97k72 Statistics Estonia Statistikaamet'),
(47797, 'https://ror.org/00geaen61', 'no_lang_code', 1, 'https://ror.org/00geaen61 Global Strategy Group'),
(47798, 'https://ror.org/034f3ys32', 'en', 1, 'https://ror.org/034f3ys32 New Mexico Hospital Association'),
(47799, 'https://ror.org/053nqm606', 'en', 1, 'https://ror.org/053nqm606 Fiatal Képzőművészek Stúdiója Studio of Young Artists Association'),
(47800, 'https://ror.org/04mm7fj57', 'no_lang_code', 1, 'https://ror.org/04mm7fj57 Szuro Trade (Hungary)'),
(47801, 'https://ror.org/04mc1sw92', 'en', 1, 'https://ror.org/04mc1sw92 Summit Health Institute for Research and Education'),
(47802, 'https://ror.org/057k33642', 'en', 1, 'https://ror.org/057k33642 New York eHealth Collaborative'),
(47803, 'https://ror.org/034118041', 'en', 1, 'https://ror.org/034118041 Grantmakers In Aging'),
(47804, 'https://ror.org/00qsa8295', 'en', 1, 'https://ror.org/00qsa8295 Truman Center for National Policy'),
(47805, 'https://ror.org/04grfq760', 'en', 1, 'https://ror.org/04grfq760 TDX Construction'),
(47806, 'https://ror.org/03ps62e58', 'en', 1, 'https://ror.org/03ps62e58 Grantmakers In Health'),
(47807, 'https://ror.org/033vxj623', 'en', 1, 'https://ror.org/033vxj623 New York Lawyers for the Public Interest'),
(47808, 'https://ror.org/00kncat42', 'en', 1, 'https://ror.org/00kncat42 Grazute Regional Park'),
(47809, 'https://ror.org/038rdj441', 'ro', 1, 'https://ror.org/038rdj441 Tehimpuls'),
(47810, 'https://ror.org/025dpe082', 'en', 1, 'https://ror.org/025dpe082 Foundation for Health Leadership & Innovation'),
(47811, 'https://ror.org/01rv0fx88', 'en', 1, 'https://ror.org/01rv0fx88 Chief Inspectorate of Environmental Protection'),
(47812, 'https://ror.org/02bns0488', 'en', 1, 'https://ror.org/02bns0488 Child Health and Development Institute'),
(47813, 'https://ror.org/02fkyk293', 'en', 1, 'https://ror.org/02fkyk293 The Century Foundation'),
(47814, 'https://ror.org/00vne6e91', 'no_lang_code', 1, 'https://ror.org/00vne6e91 NuStats (United States)'),
(47815, 'https://ror.org/05htb0v42', 'en', 1, 'https://ror.org/05htb0v42 Nuffield Trust'),
(47816, 'https://ror.org/018atqy04', 'cs', 1, 'https://ror.org/018atqy04 Občanské sdružení Ametyst'),
(47817, 'https://ror.org/001z8d956', 'en', 1, 'https://ror.org/001z8d956 Rocky Mountain PBS'),
(47818, 'https://ror.org/01nfaax03', 'en', 1, 'https://ror.org/01nfaax03 Fryderyk Chopin Institute Narodowy Instytut Fryderyka Chopina'),
(47819, 'https://ror.org/01kk6dc84', 'en', 1, 'https://ror.org/01kk6dc84 Zemaitija National Park Žemaitijos Nacionalinio Parko'),
(47820, 'https://ror.org/04824wb15', 'en', 1, 'https://ror.org/04824wb15 Picker Institute Europe'),
(47821, 'https://ror.org/04aydb922', 'en', 1, 'https://ror.org/04aydb922 Oikos – Cooperation and Development Oikos – Cooperação e Desenvolvimento'),
(47822, 'https://ror.org/030tsts40', 'en', 1, 'https://ror.org/030tsts40 Jewish community Brno'),
(47823, 'https://ror.org/02znpxw74', 'en', 1, 'https://ror.org/02znpxw74 Oklahoma Health Care Authority'),
(47824, 'https://ror.org/01yfxhp89', 'en', 1, 'https://ror.org/01yfxhp89 Ogród Zoologiczny we Wrocławiu Wrocław Zoo'),
(47825, 'https://ror.org/00d0kf681', 'en', 1, 'https://ror.org/00d0kf681 Serfenta Association'),
(47826, 'https://ror.org/0241y7z93', 'en', 1, 'https://ror.org/0241y7z93 Surveying and Mapping Authority of the Republic of Slovenia'),
(47827, 'https://ror.org/0142j8045', 'en', 1, 'https://ror.org/0142j8045 National Association of Community Health Centers'),
(47828, 'https://ror.org/051sqq958', 'en', 1, 'https://ror.org/051sqq958 Vermont State House'),
(47829, 'https://ror.org/04pejqy21', 'en', 1, 'https://ror.org/04pejqy21 National Research and Development Institute on Occupational Safety'),
(47830, 'https://ror.org/02fpvzy87', 'no_lang_code', 1, 'https://ror.org/02fpvzy87 UAVision (Portugal)'),
(47831, 'https://ror.org/04f5h5n26', 'en', 1, 'https://ror.org/04f5h5n26 Universal Health Care Action Network'),
(47832, 'https://ror.org/01hhamj32', 'en', 1, 'https://ror.org/01hhamj32 Wildlife Society Alauda'),
(47833, 'https://ror.org/02r06e757', 'en', 1, 'https://ror.org/02r06e757 Women''s Prison Association'),
(47834, 'https://ror.org/033fkmm82', 'pl', 1, 'https://ror.org/033fkmm82 Warsztat Innowacji Społecznych Workshop for Social Innovation'),
(47835, 'https://ror.org/02kh04593', 'de', 1, 'https://ror.org/02kh04593 Arbeitsgemeinschaft medikamentöse Tumortherapie'),
(47836, 'https://ror.org/01jdhsq12', 'de', 1, 'https://ror.org/01jdhsq12 AGO Research GmbH'),
(47837, 'https://ror.org/05dmnc009', 'no_lang_code', 1, 'https://ror.org/05dmnc009 Ab Analitica (Italy)'),
(47838, 'https://ror.org/0431ax083', 'it', 1, 'https://ror.org/0431ax083 Associazione Italiana Ematologia Oncologia Pediatrica'),
(47839, 'https://ror.org/04tqd7s80', 'no_lang_code', 1, 'https://ror.org/04tqd7s80 Otsuka Pharmaceutical (Spain)'),
(47840, 'https://ror.org/00pyc4352', 'it', 1, 'https://ror.org/00pyc4352 Associazione Nazionale Medici Cardiologi Ospedalieri'),
(47841, 'https://ror.org/04h1j6452', 'no_lang_code', 1, 'https://ror.org/04h1j6452 Keilir Academy'),
(47842, 'https://ror.org/02paapn48', 'no_lang_code', 1, 'https://ror.org/02paapn48 Air Liquide (United Kingdom)'),
(47843, 'https://ror.org/04e6qgn10', 'no_lang_code', 1, 'https://ror.org/04e6qgn10 AstraZeneca (Italy)'),
(47844, 'https://ror.org/01cq1x027', 'hu', 1, 'https://ror.org/01cq1x027 Borsod-Abaúj-Zemplén Megyei Kórház és Egyetemi Oktató Kórház'),
(47845, 'https://ror.org/05qqrnb63', 'no_lang_code', 1, 'https://ror.org/05qqrnb63 AstraZeneca (Spain)'),
(47846, 'https://ror.org/042xj9h52', 'no_lang_code', 1, 'https://ror.org/042xj9h52 AB2 Bio (Switzerland)'),
(47847, 'https://ror.org/02vg0t417', 'it', 1, 'https://ror.org/02vg0t417 Associazione Italiana per lo Studio del Fegato'),
(47848, 'https://ror.org/04pa38t98', 'no_lang_code', 1, 'https://ror.org/04pa38t98 Anthera Pharmaceuticals (United States)'),
(47849, 'https://ror.org/0219f2672', 'no_lang_code', 1, 'https://ror.org/0219f2672 Abbott (Netherlands)'),
(47850, 'https://ror.org/00yredq82', 'no_lang_code', 1, 'https://ror.org/00yredq82 AntibioTx (Denmark)'),
(47851, 'https://ror.org/04tnbfn25', 'no_lang_code', 1, 'https://ror.org/04tnbfn25 AbbVie (United Kingdom)'),
(47852, 'https://ror.org/00tsrhc80', 'en', 1, 'https://ror.org/00tsrhc80 Belgian Society of Medical Oncology'),
(47853, 'https://ror.org/05s4sa025', 'no_lang_code', 1, 'https://ror.org/05s4sa025 Antisense Therapeutics (Australia)'),
(47854, 'https://ror.org/04p6dqe59', 'no_lang_code', 1, 'https://ror.org/04p6dqe59 AbbVie (Spain)'),
(47855, 'https://ror.org/04g380834', 'sv', 1, 'https://ror.org/04g380834 Beroendecentrum Stockholm'),
(47856, 'https://ror.org/05jjs9s55', 'no_lang_code', 1, 'https://ror.org/05jjs9s55 Chiesi (United Kingdom)'),
(47857, 'https://ror.org/04zvyjw73', 'no_lang_code', 1, 'https://ror.org/04zvyjw73 Apceth Biopharma (Germany)'),
(47858, 'https://ror.org/05sw5bk43', 'en', 1, 'https://ror.org/05sw5bk43 Austrian Breast & Colorectal Cancer Study Group'),
(47859, 'https://ror.org/02rn5zx43', 'de', 1, 'https://ror.org/02rn5zx43 Berufsverband Niedergelassener Gynäkologischer Onkologen'),
(47860, 'https://ror.org/04nnjw512', 'no_lang_code', 1, 'https://ror.org/04nnjw512 Apeptico (Austria)'),
(47861, 'https://ror.org/049fdpz48', 'no_lang_code', 1, 'https://ror.org/049fdpz48 Betagenon (Sweden)'),
(47862, 'https://ror.org/04vq36g59', 'no_lang_code', 1, 'https://ror.org/04vq36g59 Apocare Pharma (Germany)'),
(47863, 'https://ror.org/02raaag15', 'no_lang_code', 1, 'https://ror.org/02raaag15 Apodemus (Sweden)'),
(47864, 'https://ror.org/04fvvze29', 'no_lang_code', 1, 'https://ror.org/04fvvze29 Besins Healthcare (Belgium)'),
(47865, 'https://ror.org/00g9je304', 'no_lang_code', 1, 'https://ror.org/00g9je304 Apogenix (Germany)'),
(47866, 'https://ror.org/013ambk20', 'no_lang_code', 1, 'https://ror.org/013ambk20 Apogepha Arzneimittel (Germany)'),
(47867, 'https://ror.org/00xfkcx46', 'no_lang_code', 1, 'https://ror.org/00xfkcx46 Ability Pharmaceuticals (Spain)'),
(47868, 'https://ror.org/04dneqm75', 'de', 1, 'https://ror.org/04dneqm75 Augenklinik Universitätsallee'),
(47869, 'https://ror.org/03rkzne32', 'it', 1, 'https://ror.org/03rkzne32 Abiogen Pharma (Italy)'),
(47870, 'https://ror.org/055wmq758', 'no_lang_code', 1, 'https://ror.org/055wmq758 Auris Medical (Switzerland)'),
(47871, 'https://ror.org/02gh3wa58', 'no_lang_code', 1, 'https://ror.org/02gh3wa58 Auris Medical (United States)'),
(47872, 'https://ror.org/01hbz7518', 'no_lang_code', 1, 'https://ror.org/01hbz7518 Alexion Pharmaceuticals (France)'),
(47873, 'https://ror.org/05w8zmy08', 'no_lang_code', 1, 'https://ror.org/05w8zmy08 Abivax (France)'),
(47874, 'https://ror.org/0018xw886', 'it', 1, 'https://ror.org/0018xw886 Azienda Unita'' Sanitaria Locale Di Modena'),
(47875, 'https://ror.org/03vtebn72', 'no_lang_code', 1, 'https://ror.org/03vtebn72 Biofrontera (Germany)'),
(47876, 'https://ror.org/02qtztk24', 'en', 1, 'https://ror.org/02qtztk24 Abnoba (Germany)'),
(47877, 'https://ror.org/017j43x24', 'no_lang_code', 1, 'https://ror.org/017j43x24 Anges MG (United Kingdom)'),
(47878, 'https://ror.org/014rfma52', 'no_lang_code', 1, 'https://ror.org/014rfma52 Biogen (Germany)'),
(47879, 'https://ror.org/0480rd080', 'it', 1, 'https://ror.org/0480rd080 Azienda Unità Sanitaria Locale Rimini'),
(47880, 'https://ror.org/01pgead21', 'no_lang_code', 1, 'https://ror.org/01pgead21 Apotex (Canada)'),
(47881, 'https://ror.org/01wsqv937', 'it', 1, 'https://ror.org/01wsqv937 Azienda Sanitaria Locale Viterbo'),
(47882, 'https://ror.org/04bv91s44', 'no_lang_code', 1, 'https://ror.org/04bv91s44 Alfa Wassermann (Poland)'),
(47883, 'https://ror.org/049h4jd15', 'no_lang_code', 1, 'https://ror.org/049h4jd15 Biocon (Switzerland)'),
(47884, 'https://ror.org/005mj6e76', 'no_lang_code', 1, 'https://ror.org/005mj6e76 Autifony Therapeutics (United Kingdom)'),
(47885, 'https://ror.org/03x1kdq06', 'no_lang_code', 1, 'https://ror.org/03x1kdq06 Acacia Pharma (United Kingdom)'),
(47886, 'https://ror.org/05vdpyw24', 'no_lang_code', 1, 'https://ror.org/05vdpyw24 Auxilium Engineering Services (United Kingdom)'),
(47887, 'https://ror.org/03w7jg970', 'no_lang_code', 1, 'https://ror.org/03w7jg970 Allergan (France)'),
(47888, 'https://ror.org/04mqtjh57', 'no_lang_code', 1, 'https://ror.org/04mqtjh57 Biogen (Italy)'),
(47889, 'https://ror.org/01t2k3r89', 'no_lang_code', 1, 'https://ror.org/01t2k3r89 Aptevo Therapeutics (United Kingdom)'),
(47890, 'https://ror.org/04r0bh641', 'no_lang_code', 1, 'https://ror.org/04r0bh641 Neoleukin Therapeutics (United States)'),
(47891, 'https://ror.org/037b6bp42', 'es', 1, 'https://ror.org/037b6bp42 Alianza Española de Familias de Von Hippel Lindau'),
(47892, 'https://ror.org/00rd36p16', 'no_lang_code', 1, 'https://ror.org/00rd36p16 Biogen (United Kingdom)'),
(47893, 'https://ror.org/05ftn7r26', 'no_lang_code', 1, 'https://ror.org/05ftn7r26 Avillion (United Kingdom)'),
(47894, 'https://ror.org/04fh73803', 'no_lang_code', 1, 'https://ror.org/04fh73803 Alio Medica (Poland)'),
(47895, 'https://ror.org/05h202h75', 'no_lang_code', 1, 'https://ror.org/05h202h75 Accenture (United Kingdom)'),
(47896, 'https://ror.org/05k1t9f54', 'no_lang_code', 1, 'https://ror.org/05k1t9f54 Avizorex Pharma (Spain)'),
(47897, 'https://ror.org/01x6s1m65', 'no_lang_code', 1, 'https://ror.org/01x6s1m65 Accord (United Kingdom)'),
(47898, 'https://ror.org/04777gb96', 'no_lang_code', 1, 'https://ror.org/04777gb96 Avraham Pharmaceuticals (Israel)'),
(47899, 'https://ror.org/01spess76', 'no_lang_code', 1, 'https://ror.org/01spess76 Neoleukin Therapeutics (United Kingdom)'),
(47900, 'https://ror.org/04xep6d57', 'no_lang_code', 1, 'https://ror.org/04xep6d57 Jazz Pharmaceuticals (France)'),
(47901, 'https://ror.org/03vy22q83', 'no_lang_code', 1, 'https://ror.org/03vy22q83 Accord Healthcare (Poland)'),
(47902, 'https://ror.org/01p0nd878', 'no_lang_code', 1, 'https://ror.org/01p0nd878 Biogen (Netherlands)'),
(47903, 'https://ror.org/01s4ady16', 'no_lang_code', 1, 'https://ror.org/01s4ady16 Arafarma Group (Spain)'),
(47904, 'https://ror.org/05ebvq193', 'no_lang_code', 1, 'https://ror.org/05ebvq193 AXON Neuroscience (Slovakia)'),
(47905, 'https://ror.org/04fqvjv52', 'no_lang_code', 1, 'https://ror.org/04fqvjv52 Roivant Sciences (United States)'),
(47906, 'https://ror.org/03ay0gt39', 'no_lang_code', 1, 'https://ror.org/03ay0gt39 ALK-Abelló (Spain)'),
(47907, 'https://ror.org/021tmn508', 'no_lang_code', 1, 'https://ror.org/021tmn508 AstraZeneca (Netherlands)'),
(47908, 'https://ror.org/02yxsn987', 'no_lang_code', 1, 'https://ror.org/02yxsn987 ALK-Abelló (Germany)'),
(47909, 'https://ror.org/057p4eb38', 'no_lang_code', 1, 'https://ror.org/057p4eb38 Bioibérica (Spain)'),
(47910, 'https://ror.org/012rw7q64', 'no_lang_code', 1, 'https://ror.org/012rw7q64 Bioinova (Czechia)'),
(47911, 'https://ror.org/03mzxvt76', 'fr', 1, 'https://ror.org/03mzxvt76 Arcagy Gineco'),
(47912, 'https://ror.org/03rkybp63', 'no_lang_code', 1, 'https://ror.org/03rkybp63 Heel (Germany)'),
(47913, 'https://ror.org/03fnbmw07', 'nl', 1, 'https://ror.org/03fnbmw07 AZ Turnhout'),
(47914, 'https://ror.org/02kz19x38', 'no_lang_code', 1, 'https://ror.org/02kz19x38 Archigen Biotech (United Kingdom)'),
(47915, 'https://ror.org/05rka3d36', 'no_lang_code', 1, 'https://ror.org/05rka3d36 BioMarin (Ireland)'),
(47916, 'https://ror.org/04kgp1379', 'it', 1, 'https://ror.org/04kgp1379 Azienda-Unita'' Sanitaria Locale Di Cesena'),
(47917, 'https://ror.org/015vfna03', 'no_lang_code', 1, 'https://ror.org/015vfna03 Achillion Pharmaceuticals (United States)'),
(47918, 'https://ror.org/049pr8275', 'no_lang_code', 1, 'https://ror.org/049pr8275 AZAD Pharma (Switzerland)'),
(47919, 'https://ror.org/00s784a62', 'no_lang_code', 1, 'https://ror.org/00s784a62 Acino International (Germany)'),
(47920, 'https://ror.org/007y18z84', 'no_lang_code', 1, 'https://ror.org/007y18z84 BioMarin (Netherlands)'),
(47921, 'https://ror.org/03w6ejj57', 'no_lang_code', 1, 'https://ror.org/03w6ejj57 Azellon (United Kingdom)'),
(47922, 'https://ror.org/0103q2z38', 'no_lang_code', 1, 'https://ror.org/0103q2z38 BioMarin (United Kingdom)'),
(47923, 'https://ror.org/028ev0325', 'it', 1, 'https://ror.org/028ev0325 Allegria'),
(47924, 'https://ror.org/03swh5660', 'no_lang_code', 1, 'https://ror.org/03swh5660 Perrigo (Sweden)'),
(47925, 'https://ror.org/05mkxvs25', 'no_lang_code', 1, 'https://ror.org/05mkxvs25 Vector Oncology (United States)'),
(47926, 'https://ror.org/01c25r859', 'no_lang_code', 1, 'https://ror.org/01c25r859 Allergan (United Kingdom)'),
(47927, 'https://ror.org/01c6n0g60', 'no_lang_code', 1, 'https://ror.org/01c6n0g60 Bionomics (Australia)'),
(47928, 'https://ror.org/00apva622', 'no_lang_code', 1, 'https://ror.org/00apva622 Arno Therapeutics (United States)'),
(47929, 'https://ror.org/0386zd719', 'no_lang_code', 1, 'https://ror.org/0386zd719 Bionor (Denmark)'),
(47930, 'https://ror.org/020yp9q46', 'no_lang_code', 1, 'https://ror.org/020yp9q46 Bionorica (Germany)'),
(47931, 'https://ror.org/05t727p43', 'no_lang_code', 1, 'https://ror.org/05t727p43 Allergan (Belgium)'),
(47932, 'https://ror.org/01nhcgj20', 'it', 1, 'https://ror.org/01nhcgj20 Ospedali Riuniti Marche Nord'),
(47933, 'https://ror.org/03xjfns22', 'no_lang_code', 1, 'https://ror.org/03xjfns22 Teva Pharmaceuticals (Hungary)');
INSERT INTO `rors` VALUES
(47934, 'https://ror.org/04v3pva14', 'no_lang_code', 1, 'https://ror.org/04v3pva14 Almirall (Germany)'),
(47935, 'https://ror.org/053xq8k96', 'no_lang_code', 1, 'https://ror.org/053xq8k96 Actelion (Netherlands)'),
(47936, 'https://ror.org/04m1bn674', 'fr', 1, 'https://ror.org/04m1bn674 Association pour la Recherche de Thérapeutiques Innovantes en Cancérologie'),
(47937, 'https://ror.org/01hfykw48', 'no_lang_code', 1, 'https://ror.org/01hfykw48 Acucela (United States)'),
(47938, 'https://ror.org/01jfwp053', 'no_lang_code', 1, 'https://ror.org/01jfwp053 Aviragen Therapeutics (Australia)'),
(47939, 'https://ror.org/024eg5z54', 'no_lang_code', 1, 'https://ror.org/024eg5z54 Asacpharma (Spain)'),
(47940, 'https://ror.org/01tvtt303', 'no_lang_code', 1, 'https://ror.org/01tvtt303 Addmedica (France)'),
(47941, 'https://ror.org/05144hn20', 'no_lang_code', 1, 'https://ror.org/05144hn20 ASIT Biotech (Belgium)'),
(47942, 'https://ror.org/00pgxjc21', 'no_lang_code', 1, 'https://ror.org/00pgxjc21 Adenovir Pharma (Sweden)'),
(47943, 'https://ror.org/05jvxpr06', 'no_lang_code', 1, 'https://ror.org/05jvxpr06 Adienne (Switzerland)'),
(47944, 'https://ror.org/026w1gw23', 'no_lang_code', 1, 'https://ror.org/026w1gw23 Biotest (Austria)'),
(47945, 'https://ror.org/02p9ey581', 'it', 1, 'https://ror.org/02p9ey581 Azienda Ospedaliera Universitaria Università degli Studi della Campania Luigi Vanvitelli'),
(47946, 'https://ror.org/00b2bst16', 'no_lang_code', 1, 'https://ror.org/00b2bst16 Adocia (France)'),
(47947, 'https://ror.org/05gg6a906', 'no_lang_code', 1, 'https://ror.org/05gg6a906 advanceCOR (Germany)'),
(47948, 'https://ror.org/04k2v7662', 'no_lang_code', 1, 'https://ror.org/04k2v7662 Acorda Therapeutics (Switzerland)'),
(47949, 'https://ror.org/03kr69786', 'no_lang_code', 1, 'https://ror.org/03kr69786 Asklepion Pharmaceuticals (United States)'),
(47950, 'https://ror.org/057r3sk04', 'no_lang_code', 1, 'https://ror.org/057r3sk04 Bioven (United Kingdom)'),
(47951, 'https://ror.org/02v4fpg03', 'de', 1, 'https://ror.org/02v4fpg03 Asklepios Fachkliniken München-Gauting'),
(47952, 'https://ror.org/038v5jv72', 'de', 1, 'https://ror.org/038v5jv72 Asklepios Klinik Sankt Augustin'),
(47953, 'https://ror.org/04gvvdd93', 'no_lang_code', 1, 'https://ror.org/04gvvdd93 Advicenne Pharma (France)'),
(47954, 'https://ror.org/05t1jkc79', 'no_lang_code', 1, 'https://ror.org/05t1jkc79 Adyton (Czechia)'),
(47955, 'https://ror.org/05f8ejd38', 'de', 1, 'https://ror.org/05f8ejd38 Asklepios Kliniken Hamburg'),
(47956, 'https://ror.org/02hxjys58', 'no_lang_code', 1, 'https://ror.org/02hxjys58 Novelion (United Kingdom)'),
(47957, 'https://ror.org/01fec5y16', 'no_lang_code', 1, 'https://ror.org/01fec5y16 Aesculapius Farmaceutici (Italy)'),
(47958, 'https://ror.org/02evptr34', 'no_lang_code', 1, 'https://ror.org/02evptr34 Blue Earth Diagnostics (United Kingdom)'),
(47959, 'https://ror.org/03v0txq34', 'no_lang_code', 1, 'https://ror.org/03v0txq34 Aeterna Zentaris (Germany)'),
(47960, 'https://ror.org/00a181f87', 'no_lang_code', 1, 'https://ror.org/00a181f87 Bluebird Bio (France)'),
(47961, 'https://ror.org/03dqxnz40', 'es', 1, 'https://ror.org/03dqxnz40 Asociación Galega de Investigación na Enfermidade Inflamatoria Intestinal'),
(47962, 'https://ror.org/04r6zpr83', 'no_lang_code', 1, 'https://ror.org/04r6zpr83 Amarantus Bioscience (United States)'),
(47963, 'https://ror.org/045wjte67', 'no_lang_code', 1, 'https://ror.org/045wjte67 Amgen (Switzerland)'),
(47964, 'https://ror.org/05n3kty68', 'no_lang_code', 1, 'https://ror.org/05n3kty68 Aflofarm (Poland)'),
(47965, 'https://ror.org/02bjdhn90', 'it', 1, 'https://ror.org/02bjdhn90 Azienda Unita'' Sanitaria Locale di Parma'),
(47966, 'https://ror.org/01cz1wg22', 'no_lang_code', 1, 'https://ror.org/01cz1wg22 AFT Pharmaceuticals (New Zealand)'),
(47967, 'https://ror.org/0324red69', 'no_lang_code', 1, 'https://ror.org/0324red69 Boehringer Ingelheim (Belgium)'),
(47968, 'https://ror.org/01z4kwe65', 'ca', 1, 'https://ror.org/01z4kwe65 Associació per la Recerca Oncològica'),
(47969, 'https://ror.org/05n451y37', 'no_lang_code', 1, 'https://ror.org/05n451y37 Amicus Therapeutics (United Kingdom)'),
(47970, 'https://ror.org/01rqq3d62', 'it', 1, 'https://ror.org/01rqq3d62 Azienda Unità Sanitaria Locale Della Romagna'),
(47971, 'https://ror.org/04b5h9x78', 'no_lang_code', 1, 'https://ror.org/04b5h9x78 AMO Pharma (United Kingdom)'),
(47972, 'https://ror.org/04t98p806', 'it', 1, 'https://ror.org/04t98p806 Associazione Italiana Pneumologi Ospedalieri'),
(47973, 'https://ror.org/01m3ea752', 'no_lang_code', 1, 'https://ror.org/01m3ea752 Boehringer Ingelheim (Latvia)'),
(47974, 'https://ror.org/01za0ff56', 'no_lang_code', 1, 'https://ror.org/01za0ff56 CellAct Pharma (Germany)'),
(47975, 'https://ror.org/049f4wb20', 'no_lang_code', 1, 'https://ror.org/049f4wb20 Boiron (France)'),
(47976, 'https://ror.org/04scvbh77', 'no_lang_code', 1, 'https://ror.org/04scvbh77 AZTherapies (United States)'),
(47977, 'https://ror.org/04rreza77', 'no_lang_code', 1, 'https://ror.org/04rreza77 Bombastus-Werke (Germany)'),
(47978, 'https://ror.org/010thjh79', 'no_lang_code', 1, 'https://ror.org/010thjh79 Bone Therapeutics'),
(47979, 'https://ror.org/04kdz8318', 'no_lang_code', 1, 'https://ror.org/04kdz8318 Koncentra (Sweden)'),
(47980, 'https://ror.org/01tzg3s04', 'no_lang_code', 1, 'https://ror.org/01tzg3s04 Celyad (Belgium)'),
(47981, 'https://ror.org/04cr37s66', 'nl', 1, 'https://ror.org/04cr37s66 Borstkanker Onderzoek Groep'),
(47982, 'https://ror.org/05wf9r455', 'no_lang_code', 1, 'https://ror.org/05wf9r455 Clinipace (United Kingdom)'),
(47983, 'https://ror.org/045x9vk13', 'no_lang_code', 1, 'https://ror.org/045x9vk13 Anergis (Switzerland)'),
(47984, 'https://ror.org/0476a5k06', 'en', 1, 'https://ror.org/0476a5k06 CliniRx Tangent Research'),
(47985, 'https://ror.org/014dvgf17', 'en', 1, 'https://ror.org/014dvgf17 BASilar artery International Cooperation Study'),
(47986, 'https://ror.org/007k75451', 'no_lang_code', 1, 'https://ror.org/007k75451 Clinuvel Pharmaceuticals (Switzerland)'),
(47987, 'https://ror.org/02akzdv37', 'en', 1, 'https://ror.org/02akzdv37 Mech-Sense'),
(47988, 'https://ror.org/03ktkqh12', 'en', 1, 'https://ror.org/03ktkqh12 Barcelona IVI Clinic Clinica IVI Barcelona'),
(47989, 'https://ror.org/04j2fjp47', 'no_lang_code', 1, 'https://ror.org/04j2fjp47 Clovis Oncology (United Kingdom)'),
(47990, 'https://ror.org/059mdcg68', 'no_lang_code', 1, 'https://ror.org/059mdcg68 Bavarian Nordic (United States)'),
(47991, 'https://ror.org/040aeyr98', 'no_lang_code', 1, 'https://ror.org/040aeyr98 Dance Biopharm (United States)'),
(47992, 'https://ror.org/015x46y72', 'no_lang_code', 1, 'https://ror.org/015x46y72 CMC Contrast (Sweden)'),
(47993, 'https://ror.org/059030y69', 'no_lang_code', 1, 'https://ror.org/059030y69 Codon (Germany)'),
(47994, 'https://ror.org/00mjj2d85', 'no_lang_code', 1, 'https://ror.org/00mjj2d85 Coherus BioSciences (United States)'),
(47995, 'https://ror.org/03c09ma81', 'no_lang_code', 1, 'https://ror.org/03c09ma81 Bristol-Myers Squibb (Belgium)'),
(47996, 'https://ror.org/04hg0hr43', 'en', 1, 'https://ror.org/04hg0hr43 Danish Breast Cancer Cooperative Group'),
(47997, 'https://ror.org/02n4r0h83', 'no_lang_code', 1, 'https://ror.org/02n4r0h83 CoLucid Pharmaceuticals (United States)'),
(47998, 'https://ror.org/03nbkg471', 'en', 1, 'https://ror.org/03nbkg471 Danish Head and Neck Cancer Group'),
(47999, 'https://ror.org/01w1k0456', 'no_lang_code', 1, 'https://ror.org/01w1k0456 Combat Medical (Spain)'),
(48000, 'https://ror.org/02bkyhj18', 'en', 1, 'https://ror.org/02bkyhj18 Danish Myeloma Study Group'),
(48001, 'https://ror.org/00662td74', 'no_lang_code', 1, 'https://ror.org/00662td74 Bruno Farmaceutici (Italy)'),
(48002, 'https://ror.org/036ezxy46', 'no_lang_code', 1, 'https://ror.org/036ezxy46 Dr. Franz Köhler Chemie (Germany)'),
(48003, 'https://ror.org/0328e2d50', 'no_lang_code', 1, 'https://ror.org/0328e2d50 Bruschettini (Italy)'),
(48004, 'https://ror.org/04h7h2h10', 'no_lang_code', 1, 'https://ror.org/04h7h2h10 Conatus Pharmaceuticals (United States)'),
(48005, 'https://ror.org/04ysnaw75', 'no_lang_code', 1, 'https://ror.org/04ysnaw75 C4Pain (Denmark)'),
(48006, 'https://ror.org/00nxzrk14', 'no_lang_code', 1, 'https://ror.org/00nxzrk14 Debiopharm (Switzerland)'),
(48007, 'https://ror.org/02c01q628', 'no_lang_code', 1, 'https://ror.org/02c01q628 Teva Pharmaceuticals (France)'),
(48008, 'https://ror.org/02cx07c73', 'no_lang_code', 1, 'https://ror.org/02cx07c73 Cerenis Therapeutics (France)'),
(48009, 'https://ror.org/023w2cy02', 'no_lang_code', 1, 'https://ror.org/023w2cy02 Delcath Systems (United States)'),
(48010, 'https://ror.org/035scsv55', 'no_lang_code', 1, 'https://ror.org/035scsv55 Sandberg Development (Sweden)'),
(48011, 'https://ror.org/0083mb767', 'no_lang_code', 1, 'https://ror.org/0083mb767 Delenex (Switzerland)'),
(48012, 'https://ror.org/01y94yj57', 'no_lang_code', 1, 'https://ror.org/01y94yj57 Can-Fite BioPharma (Israel)'),
(48013, 'https://ror.org/01239b432', 'es', 1, 'https://ror.org/01239b432 Consorci Sanitari de Terrassa'),
(48014, 'https://ror.org/03nf7rc81', 'no_lang_code', 1, 'https://ror.org/03nf7rc81 Canbex Therapeutics (United Kingdom)'),
(48015, 'https://ror.org/01w6chh80', 'no_lang_code', 1, 'https://ror.org/01w6chh80 Kreussler (Germany)'),
(48016, 'https://ror.org/00sxheh72', 'it', 1, 'https://ror.org/00sxheh72 Consorzio Oncotech'),
(48017, 'https://ror.org/0418ezk85', 'no_lang_code', 1, 'https://ror.org/0418ezk85 Cardiorentis (Switzerland)'),
(48018, 'https://ror.org/059s09c28', 'no_lang_code', 1, 'https://ror.org/059s09c28 Cook Medical (Denmark)'),
(48019, 'https://ror.org/04c5m1z45', 'no_lang_code', 1, 'https://ror.org/04c5m1z45 Diomed (United Kingdom)'),
(48020, 'https://ror.org/05f157f34', 'no_lang_code', 1, 'https://ror.org/05f157f34 Chemo (France)'),
(48021, 'https://ror.org/05p6aq981', 'no_lang_code', 1, 'https://ror.org/05p6aq981 Dermapharm (Germany)'),
(48022, 'https://ror.org/02d3g7b39', 'no_lang_code', 1, 'https://ror.org/02d3g7b39 CytoTools (Germany)'),
(48023, 'https://ror.org/03g3tcm95', 'it', 1, 'https://ror.org/03g3tcm95 Policlinico Abano Terme'),
(48024, 'https://ror.org/024njzv49', 'no_lang_code', 1, 'https://ror.org/024njzv49 Chiesi (France)'),
(48025, 'https://ror.org/0202k4b21', 'no_lang_code', 1, 'https://ror.org/0202k4b21 TiGenix (Spain)'),
(48026, 'https://ror.org/03mspgn17', 'no_lang_code', 1, 'https://ror.org/03mspgn17 Klosterfrau Healthcare Group (Germany)'),
(48027, 'https://ror.org/0451ek747', 'de', 1, 'https://ror.org/0451ek747 Deutsche Homöopathie-Union'),
(48028, 'https://ror.org/037wy0p68', 'en', 1, 'https://ror.org/037wy0p68 Children''s Oncology Group'),
(48029, 'https://ror.org/025jctj87', 'no_lang_code', 1, 'https://ror.org/025jctj87 Celimmune (United States)'),
(48030, 'https://ror.org/0398jdj48', 'no_lang_code', 1, 'https://ror.org/0398jdj48 Develco Pharma (Switzerland)'),
(48031, 'https://ror.org/01exnk557', 'no_lang_code', 1, 'https://ror.org/01exnk557 Cosmo Pharmaceuticals (Ireland)'),
(48032, 'https://ror.org/03zh2yp19', 'no_lang_code', 1, 'https://ror.org/03zh2yp19 Dexcel Pharma (United Kingdom)'),
(48033, 'https://ror.org/014hdch66', 'no_lang_code', 1, 'https://ror.org/014hdch66 Dextech Medical (Sweden)'),
(48034, 'https://ror.org/03rhyyh86', 'no_lang_code', 1, 'https://ror.org/03rhyyh86 Diagram (Netherlands)'),
(48035, 'https://ror.org/020my6q50', 'no_lang_code', 1, 'https://ror.org/020my6q50 Dr. Kade Pharmazeutische Fabrik (Germany)'),
(48036, 'https://ror.org/04tsv5127', 'de', 1, 'https://ror.org/04tsv5127 DIAKO'),
(48037, 'https://ror.org/044pnsw08', 'no_lang_code', 1, 'https://ror.org/044pnsw08 Cidara Therapeutics (United States)'),
(48038, 'https://ror.org/035m97n77', 'no_lang_code', 1, 'https://ror.org/035m97n77 Crolll (Germany)'),
(48039, 'https://ror.org/03fhcmz08', 'no_lang_code', 1, 'https://ror.org/03fhcmz08 Dr Ritsert Pharma (Germany)'),
(48040, 'https://ror.org/00wkx1h43', 'no_lang_code', 1, 'https://ror.org/00wkx1h43 Croma Pharma (Austria)'),
(48041, 'https://ror.org/043rrkc78', 'no_lang_code', 1, 'https://ror.org/043rrkc78 Dr Willmar Schwabe (Germany)'),
(48042, 'https://ror.org/05cm6kv55', 'no_lang_code', 1, 'https://ror.org/05cm6kv55 Cipla (Belgium)'),
(48043, 'https://ror.org/03zb78d54', 'no_lang_code', 1, 'https://ror.org/03zb78d54 Johnson & Johnson (Italy)'),
(48044, 'https://ror.org/05y55b611', 'no_lang_code', 1, 'https://ror.org/05y55b611 CSL (Russia)'),
(48045, 'https://ror.org/03qcf9t82', 'no_lang_code', 1, 'https://ror.org/03qcf9t82 Dicerna Pharmaceuticals (United States)'),
(48046, 'https://ror.org/02b082r98', 'no_lang_code', 1, 'https://ror.org/02b082r98 DS Biopharma (Ireland)'),
(48047, 'https://ror.org/0149ywf06', 'no_lang_code', 1, 'https://ror.org/0149ywf06 Citospin (Spain)'),
(48048, 'https://ror.org/04hb8c581', 'no_lang_code', 1, 'https://ror.org/04hb8c581 CTI BioPharma (Italy)'),
(48049, 'https://ror.org/03dcb4x23', 'no_lang_code', 1, 'https://ror.org/03dcb4x23 Modus Therapeutics (Sweden)'),
(48050, 'https://ror.org/04gpj0s68', 'no_lang_code', 1, 'https://ror.org/04gpj0s68 Dimension Therapeutics (United States)'),
(48051, 'https://ror.org/04y3sb167', 'no_lang_code', 1, 'https://ror.org/04y3sb167 Clarus Therapeutics (United States)'),
(48052, 'https://ror.org/01h2nq698', 'no_lang_code', 1, 'https://ror.org/01h2nq698 Clementia Pharmaceuticals (France)'),
(48053, 'https://ror.org/01cd7k542', 'no_lang_code', 1, 'https://ror.org/01cd7k542 CureTech (Israel)'),
(48054, 'https://ror.org/02q3n2241', 'no_lang_code', 1, 'https://ror.org/02q3n2241 CureVac (Germany)'),
(48055, 'https://ror.org/00bss3g65', 'no_lang_code', 1, 'https://ror.org/00bss3g65 Diurnal (United Kingdom)'),
(48056, 'https://ror.org/01tqqpv03', 'es', 1, 'https://ror.org/01tqqpv03 Sociedad Española de Farmacología Clínica'),
(48057, 'https://ror.org/00z8zhe66', 'en', 1, 'https://ror.org/00z8zhe66 Clinical Research Center for Hair and Skin Science'),
(48058, 'https://ror.org/03bhb2h72', 'no_lang_code', 1, 'https://ror.org/03bhb2h72 Maruho (United States)'),
(48059, 'https://ror.org/05yezgz95', 'no_lang_code', 1, 'https://ror.org/05yezgz95 Dolorgiet (Germany)'),
(48060, 'https://ror.org/056kpdx27', 'nl', 1, 'https://ror.org/056kpdx27 HOVON – the Haemato Oncology Foundation for Adults in the Netherlands Hemato-Oncologie voor Volwassenen Nederland Hovon'),
(48061, 'https://ror.org/04t534v40', 'no_lang_code', 1, 'https://ror.org/04t534v40 Cyathus Exquirere (Austria)'),
(48062, 'https://ror.org/0116d7s79', 'no_lang_code', 1, 'https://ror.org/0116d7s79 Cyclacel Pharmaceuticals (United States)'),
(48063, 'https://ror.org/04dzm3847', 'nl', 1, 'https://ror.org/04dzm3847 Stichting Kind en Groei'),
(48064, 'https://ror.org/04byqhw79', 'no_lang_code', 1, 'https://ror.org/04byqhw79 Kuros Biosciences (Switzerland)'),
(48065, 'https://ror.org/05nxn2s72', 'it', 1, 'https://ror.org/05nxn2s72 Fondazione Melanoma Onlus'),
(48066, 'https://ror.org/0577zeb92', 'no_lang_code', 1, 'https://ror.org/0577zeb92 Cytovac (Denmark)'),
(48067, 'https://ror.org/007r3zy44', 'nl', 1, 'https://ror.org/007r3zy44 Pancreatitis Werkgroep Nederland'),
(48068, 'https://ror.org/014vaxq24', 'it', 1, 'https://ror.org/014vaxq24 Fondazione Michelangelo'),
(48069, 'https://ror.org/000m3hy37', 'no_lang_code', 1, 'https://ror.org/000m3hy37 Dr. August Wolff (Germany)'),
(48070, 'https://ror.org/04h9m9r06', 'no_lang_code', 1, 'https://ror.org/04h9m9r06 Ergomed Clinical Research (United Kingdom)'),
(48071, 'https://ror.org/0518jvn15', 'no_lang_code', 1, 'https://ror.org/0518jvn15 Genera (Croatia)'),
(48072, 'https://ror.org/04pc85e11', 'no_lang_code', 1, 'https://ror.org/04pc85e11 Dynavax Technologies (Germany)'),
(48073, 'https://ror.org/014tc2d37', 'no_lang_code', 1, 'https://ror.org/014tc2d37 Erydel (Italy)'),
(48074, 'https://ror.org/01eqy8607', 'no_lang_code', 1, 'https://ror.org/01eqy8607 Genkyotex (France)'),
(48075, 'https://ror.org/057pe1087', 'no_lang_code', 1, 'https://ror.org/057pe1087 Genmab (Denmark)'),
(48076, 'https://ror.org/00s6tyh07', 'it', 1, 'https://ror.org/00s6tyh07 Fondazione Neureca Onlus'),
(48077, 'https://ror.org/02sq6xd17', 'no_lang_code', 1, 'https://ror.org/02sq6xd17 GenSight Biologics (France)'),
(48078, 'https://ror.org/059q6am89', 'en', 1, 'https://ror.org/059q6am89 EB House Austria'),
(48079, 'https://ror.org/01j7stt33', 'it', 1, 'https://ror.org/01j7stt33 Network Italiano Per la Bioterapia Dei Tumori'),
(48080, 'https://ror.org/00msnjb96', 'no_lang_code', 1, 'https://ror.org/00msnjb96 Essa Pharma (United States)'),
(48081, 'https://ror.org/05mjtfk75', 'no_lang_code', 1, 'https://ror.org/05mjtfk75 Echo Pharmaceuticals (Netherlands)'),
(48082, 'https://ror.org/03t7vt528', 'no_lang_code', 1, 'https://ror.org/03t7vt528 Navitas Life Sciences (Germany)'),
(48083, 'https://ror.org/02dvdxr58', 'no_lang_code', 1, 'https://ror.org/02dvdxr58 Mithra Pharmaceuticals (Belgium)'),
(48084, 'https://ror.org/00ae36v16', 'no_lang_code', 1, 'https://ror.org/00ae36v16 Genticel (France)'),
(48085, 'https://ror.org/049ag6g97', 'no_lang_code', 1, 'https://ror.org/049ag6g97 GWT-TUD (Germany)'),
(48086, 'https://ror.org/039945b55', 'no_lang_code', 1, 'https://ror.org/039945b55 Eiger Biopharmaceuticals (United States)'),
(48087, 'https://ror.org/03r7rdz71', 'en', 1, 'https://ror.org/03r7rdz71 European Thoracic Oncology Platform'),
(48088, 'https://ror.org/020dbrn58', 'no_lang_code', 1, 'https://ror.org/020dbrn58 Lundbeck (Spain)'),
(48089, 'https://ror.org/00pgqb537', 'no_lang_code', 1, 'https://ror.org/00pgqb537 Sanofi (Netherlands)'),
(48090, 'https://ror.org/00wkx7s25', 'it', 1, 'https://ror.org/00wkx7s25 Fondazione Ricerca Traslazionale'),
(48091, 'https://ror.org/05xrwhp03', 'no_lang_code', 1, 'https://ror.org/05xrwhp03 Eisai (Italy)'),
(48092, 'https://ror.org/017rmsx09', 'it', 1, 'https://ror.org/017rmsx09 Fondazione Sandro Pitigliani'),
(48093, 'https://ror.org/001x5ea44', 'no_lang_code', 1, 'https://ror.org/001x5ea44 Halozyme Therapeutics (United States)'),
(48094, 'https://ror.org/014wq8057', 'en', 1, 'https://ror.org/014wq8057 European Society for Blood and Marrow Transplantation'),
(48095, 'https://ror.org/01v7k9n65', 'no_lang_code', 1, 'https://ror.org/01v7k9n65 Eli Lilly (Switzerland)'),
(48096, 'https://ror.org/02ve0bg52', 'no_lang_code', 1, 'https://ror.org/02ve0bg52 Eli Lilly (Netherlands)'),
(48097, 'https://ror.org/04k3tc204', 'en', 1, 'https://ror.org/04k3tc204 European Uro Oncology Group'),
(48098, 'https://ror.org/054rttv92', 'en', 1, 'https://ror.org/054rttv92 Gesellschaft für Pädiatrische Onkologie und Hämatologie Society of Paediatric Oncology and Haematology'),
(48099, 'https://ror.org/027jx1333', 'no_lang_code', 1, 'https://ror.org/027jx1333 Gerolsteiner Brunnen (Germany)'),
(48100, 'https://ror.org/01bdnnp71', 'fr', 1, 'https://ror.org/01bdnnp71 Groupe d''Étude Thérapeutique des Affections Inflammatoires du Tube Digestif'),
(48101, 'https://ror.org/00w9t4e98', 'no_lang_code', 1, 'https://ror.org/00w9t4e98 Elpen Pharmaceutical (Greece)'),
(48102, 'https://ror.org/01vqcjq29', 'no_lang_code', 1, 'https://ror.org/01vqcjq29 Evestra (Germany)'),
(48103, 'https://ror.org/03q6gdh15', 'no_lang_code', 1, 'https://ror.org/03q6gdh15 ImmuPharma (France)'),
(48104, 'https://ror.org/05p2mb588', 'nl', 1, 'https://ror.org/05p2mb588 GGZ Oost Brabant'),
(48105, 'https://ror.org/040hkyv45', 'no_lang_code', 1, 'https://ror.org/040hkyv45 Hannover Clinical Trial Center (Germany)'),
(48106, 'https://ror.org/04279xj48', 'no_lang_code', 1, 'https://ror.org/04279xj48 Forward Pharma (Germany)'),
(48107, 'https://ror.org/03vy5fy74', 'no_lang_code', 1, 'https://ror.org/03vy5fy74 Emotional Brain (Netherlands)'),
(48108, 'https://ror.org/006nbgx47', 'es', 1, 'https://ror.org/006nbgx47 Grup d''Investigació i Divulgació Oncológica'),
(48109, 'https://ror.org/00jz5wn21', 'no_lang_code', 1, 'https://ror.org/00jz5wn21 Harras Pharma (Germany)'),
(48110, 'https://ror.org/0106bmv40', 'no_lang_code', 1, 'https://ror.org/0106bmv40 Empros Pharma (Sweden)'),
(48111, 'https://ror.org/05b6k3g41', 'no_lang_code', 1, 'https://ror.org/05b6k3g41 Evgen Pharma (United Kingdom)'),
(48112, 'https://ror.org/05h13e956', 'no_lang_code', 1, 'https://ror.org/05h13e956 Enceladus Pharmaceuticals (Netherlands)'),
(48113, 'https://ror.org/02rhv6v27', 'no_lang_code', 1, 'https://ror.org/02rhv6v27 Strathspey Crown (United States)'),
(48114, 'https://ror.org/05t2zwp43', 'no_lang_code', 1, 'https://ror.org/05t2zwp43 Evolva (Switzerland)'),
(48115, 'https://ror.org/01da6p430', 'no_lang_code', 1, 'https://ror.org/01da6p430 Ewopharma (Slovakia)'),
(48116, 'https://ror.org/00dzzp321', 'it', 1, 'https://ror.org/00dzzp321 Gruppo Italiano di Oncologia Geriatrica'),
(48117, 'https://ror.org/04e29rd57', 'no_lang_code', 1, 'https://ror.org/04e29rd57 Exalenz Bioscience (Israel)'),
(48118, 'https://ror.org/02ebbk435', 'it', 1, 'https://ror.org/02ebbk435 Società Italiana di Cardiologia Interventistica Società Italiana di Cardiologia Invasiva'),
(48119, 'https://ror.org/05mny8609', 'it', 1, 'https://ror.org/05mny8609 Gruppo Italiano per il Trapianto di Midollo Osseo'),
(48120, 'https://ror.org/0473gwd77', 'no_lang_code', 1, 'https://ror.org/0473gwd77 Ensinger Mineral-Heilquellen (Germany)'),
(48121, 'https://ror.org/01yrv0w88', 'no_lang_code', 1, 'https://ror.org/01yrv0w88 Mineralbrunnen Überkingen Teinach Beteiligungs'),
(48122, 'https://ror.org/05qg1kx57', 'en', 1, 'https://ror.org/05qg1kx57 Hellenic Cardiovascular Research Society'),
(48123, 'https://ror.org/02bxsvn11', 'no_lang_code', 1, 'https://ror.org/02bxsvn11 Hellenic Cooperative Oncology Group'),
(48124, 'https://ror.org/01dn4wg45', 'no_lang_code', 1, 'https://ror.org/01dn4wg45 Dr. Reddy''s Laboratories (Netherlands)'),
(48125, 'https://ror.org/02kvdh980', 'no_lang_code', 1, 'https://ror.org/02kvdh980 Faron Pharmaceutical (Finland)'),
(48126, 'https://ror.org/034yqx295', 'en', 1, 'https://ror.org/034yqx295 Hellenic Oncology Research Group'),
(48127, 'https://ror.org/0332rf080', 'no_lang_code', 1, 'https://ror.org/0332rf080 FF Pharma (Netherlands)'),
(48128, 'https://ror.org/04dywym46', 'es', 1, 'https://ror.org/04dywym46 Fundación Hospital Provincial de Castellón'),
(48129, 'https://ror.org/04v0nw239', 'en', 1, 'https://ror.org/04v0nw239 Hellenic Society of Medical Education ΕΛΛΗΝΙΚΗ ΕΤΑΙΡΕΙΑ ΙΑΤΡΙΚΗΣ ΕΚΠΑΙΔΕΥΣΗΣ'),
(48130, 'https://ror.org/02q7qcb13', 'fr', 1, 'https://ror.org/02q7qcb13 Fédération Francophone de Cancérologie Digestive'),
(48131, 'https://ror.org/024s32d89', 'no_lang_code', 1, 'https://ror.org/024s32d89 Glenmark Pharmaceuticals (Switzerland)'),
(48132, 'https://ror.org/0162q7t90', 'no_lang_code', 1, 'https://ror.org/0162q7t90 Gliknik (United States)'),
(48133, 'https://ror.org/004aq9x60', 'no_lang_code', 1, 'https://ror.org/004aq9x60 Glycotope (Germany)'),
(48134, 'https://ror.org/0074nwx25', 'en', 1, 'https://ror.org/0074nwx25 Gruppo Oncologico dell''Italia Meridionale Oncology Group of Southern Italy'),
(48135, 'https://ror.org/02nhthp75', 'it', 1, 'https://ror.org/02nhthp75 Gruppo Oncologico del Nord Ovest'),
(48136, 'https://ror.org/05mrvzj62', 'no_lang_code', 1, 'https://ror.org/05mrvzj62 Hennig Arzneimittel (Germany)'),
(48137, 'https://ror.org/00a4k5f23', 'no_lang_code', 1, 'https://ror.org/00a4k5f23 hVIVO (United Kingdom)'),
(48138, 'https://ror.org/04cjdmd14', 'de', 1, 'https://ror.org/04cjdmd14 Grachtenhaus-Apotheke'),
(48139, 'https://ror.org/027q1fw25', 'no_lang_code', 1, 'https://ror.org/027q1fw25 Herantis Pharma (Finland)'),
(48140, 'https://ror.org/02vrfjw73', 'no_lang_code', 1, 'https://ror.org/02vrfjw73 Flamel (Ireland)'),
(48141, 'https://ror.org/03wj3v998', 'no_lang_code', 1, 'https://ror.org/03wj3v998 Fluidda (Belgium)'),
(48142, 'https://ror.org/04026h439', 'no_lang_code', 1, 'https://ror.org/04026h439 FluoroPharma Medical (United States)'),
(48143, 'https://ror.org/04w0jj406', 'no_lang_code', 1, 'https://ror.org/04w0jj406 Hevert Arzneimittel (Germany)'),
(48144, 'https://ror.org/05fvbww60', 'no_lang_code', 1, 'https://ror.org/05fvbww60 Grifols (United States)'),
(48145, 'https://ror.org/051tj3a26', 'no_lang_code', 1, 'https://ror.org/051tj3a26 IBSA Institut Biochimique (Switzerland)'),
(48146, 'https://ror.org/04y672n69', 'en', 1, 'https://ror.org/04y672n69 Lymphoma Study Association'),
(48147, 'https://ror.org/04xz21s03', 'no_lang_code', 1, 'https://ror.org/04xz21s03 Futura Medical (United Kingdom)'),
(48148, 'https://ror.org/04db0ec72', 'fr', 1, 'https://ror.org/04db0ec72 Groupe Francophone des Myélodysplasies'),
(48149, 'https://ror.org/0523s0t06', 'no_lang_code', 1, 'https://ror.org/0523s0t06 Gerot Lannach (Austria)'),
(48150, 'https://ror.org/00qcpjx94', 'no_lang_code', 1, 'https://ror.org/00qcpjx94 Green Cross (United States)'),
(48151, 'https://ror.org/02rw47d25', 'no_lang_code', 1, 'https://ror.org/02rw47d25 Galena Biopharma (United States)'),
(48152, 'https://ror.org/025883808', 'it', 1, 'https://ror.org/025883808 Gruppo Italiano per lo Studio dei Carcinomi dell’Apparato Digerente'),
(48153, 'https://ror.org/05grp4x11', 'no_lang_code', 1, 'https://ror.org/05grp4x11 Grunenthal (Spain)'),
(48154, 'https://ror.org/054k1z757', 'no_lang_code', 1, 'https://ror.org/054k1z757 GALENpharma (Germany)'),
(48155, 'https://ror.org/03ye20z12', 'no_lang_code', 1, 'https://ror.org/03ye20z12 HolsboerMaschmeyer NeuroChemie (Germany)'),
(48156, 'https://ror.org/00pn3e170', 'no_lang_code', 1, 'https://ror.org/00pn3e170 Galmed Pharmaceuticals (Israel)'),
(48157, 'https://ror.org/00nt3sg33', 'en', 1, 'https://ror.org/00nt3sg33 International Extranodal Lymphoma Study Group'),
(48158, 'https://ror.org/03dykc861', 'it', 1, 'https://ror.org/03dykc861 Fondazione Istituto G. Giglio di Cefalù'),
(48159, 'https://ror.org/05j02j274', 'no_lang_code', 1, 'https://ror.org/05j02j274 Homviora (Germany)'),
(48160, 'https://ror.org/03samhn24', 'no_lang_code', 1, 'https://ror.org/03samhn24 Gamida Cell (Israel)'),
(48161, 'https://ror.org/05h4kax84', 'es', 1, 'https://ror.org/05h4kax84 Grupo de Tratamiento de los Tumores Digestivos'),
(48162, 'https://ror.org/04bdk6464', 'no_lang_code', 1, 'https://ror.org/04bdk6464 Astellas Pharma (Germany)'),
(48163, 'https://ror.org/01qzsn924', 'no_lang_code', 1, 'https://ror.org/01qzsn924 İlkogen (Turkey)'),
(48164, 'https://ror.org/00wpy1p28', 'es', 1, 'https://ror.org/00wpy1p28 Grupo Español de Investigación en Neurooncología'),
(48165, 'https://ror.org/04y6gmk90', 'no_lang_code', 1, 'https://ror.org/04y6gmk90 Iltoo Pharma (France)'),
(48166, 'https://ror.org/00m8w3m39', 'no_lang_code', 1, 'https://ror.org/00m8w3m39 Pfizer (Germany)'),
(48167, 'https://ror.org/015xc6321', 'es', 1, 'https://ror.org/015xc6321 Grupo Español de Trasplante Hematopoyético y Terapia Celular'),
(48168, 'https://ror.org/05pvg9741', 'no_lang_code', 1, 'https://ror.org/05pvg9741 ImCyse (Belgium)'),
(48169, 'https://ror.org/01aye5y64', 'en', 1, 'https://ror.org/01aye5y64 Gateshead Health NHS Foundation Trust'),
(48170, 'https://ror.org/057tdah35', 'es', 1, 'https://ror.org/057tdah35 Grupo Español Multidisciplinar de Melanoma'),
(48171, 'https://ror.org/03y82c084', 'no_lang_code', 1, 'https://ror.org/03y82c084 Immodulon Therapeutics (United Kingdom)'),
(48172, 'https://ror.org/01frfsg35', 'en', 1, 'https://ror.org/01frfsg35 Gruppo Oncologico Italiano di Ricerca Clinica Italian Oncology Group of Clinical Research'),
(48173, 'https://ror.org/02nc8ke31', 'no_lang_code', 1, 'https://ror.org/02nc8ke31 GlaxoSmithKline (Poland)'),
(48174, 'https://ror.org/03f4jx570', 'no_lang_code', 1, 'https://ror.org/03f4jx570 Immungenetics (Germany)'),
(48175, 'https://ror.org/01axv9229', 'no_lang_code', 1, 'https://ror.org/01axv9229 ImmunoCellular Therapeutics (United States)'),
(48176, 'https://ror.org/03245e858', 'no_lang_code', 1, 'https://ror.org/03245e858 Gebro Pharma (Austria)'),
(48177, 'https://ror.org/05b9vxh94', 'es', 1, 'https://ror.org/05b9vxh94 Hospital Universitari de Vic'),
(48178, 'https://ror.org/0400j3f74', 'no_lang_code', 1, 'https://ror.org/0400j3f74 GTx (United States)'),
(48179, 'https://ror.org/00czwhy51', 'no_lang_code', 1, 'https://ror.org/00czwhy51 Immunocore (United States)'),
(48180, 'https://ror.org/0504sxa76', 'no_lang_code', 1, 'https://ror.org/0504sxa76 Guerbet (France)'),
(48181, 'https://ror.org/04x0f8p22', 'no_lang_code', 1, 'https://ror.org/04x0f8p22 Immunomedics (Germany)'),
(48182, 'https://ror.org/0259b0q13', 'no_lang_code', 1, 'https://ror.org/0259b0q13 Gene PreDiT (Portugal)'),
(48183, 'https://ror.org/02gvvc992', 'no_lang_code', 1, 'https://ror.org/02gvvc992 Amgen (United Kingdom)'),
(48184, 'https://ror.org/00v70n302', 'no_lang_code', 1, 'https://ror.org/00v70n302 Isofol (Sweden)'),
(48185, 'https://ror.org/00scrzf80', 'no_lang_code', 1, 'https://ror.org/00scrzf80 Kamada (Israel)'),
(48186, 'https://ror.org/0114d3n76', 'no_lang_code', 1, 'https://ror.org/0114d3n76 ImunomedicA (Czechia)'),
(48187, 'https://ror.org/05225cn18', 'no_lang_code', 1, 'https://ror.org/05225cn18 InDex Pharmaceuticals (Sweden)'),
(48188, 'https://ror.org/01wa16j27', 'en', 1, 'https://ror.org/01wa16j27 Italian Sarcoma Group'),
(48189, 'https://ror.org/05cfkkr16', 'no_lang_code', 1, 'https://ror.org/05cfkkr16 Institut für Biomedizinische Analytik und NMR Imaging (Germany)'),
(48190, 'https://ror.org/046vzvy73', 'it', 1, 'https://ror.org/046vzvy73 Trials Italiani in Oncologia Medica'),
(48191, 'https://ror.org/04g0t7770', 'no_lang_code', 1, 'https://ror.org/04g0t7770 InfectoPharm (Germany)'),
(48192, 'https://ror.org/04606tc02', 'en', 1, 'https://ror.org/04606tc02 IVI Madrid Clinic'),
(48193, 'https://ror.org/05e536w67', 'en', 1, 'https://ror.org/05e536w67 Institute of Molecular Medicine and Biomedical Research Ινστιτούτο Μοριακής Ιατρικής και Βιοϊατρικής Έρευνας'),
(48194, 'https://ror.org/04bxnbd97', 'en', 1, 'https://ror.org/04bxnbd97 IVI Sevilla Clinic'),
(48195, 'https://ror.org/04y8mfg39', 'no_lang_code', 1, 'https://ror.org/04y8mfg39 Indukern (Spain)'),
(48196, 'https://ror.org/01w5nhx84', 'en', 1, 'https://ror.org/01w5nhx84 IVI Valencia Clinic'),
(48197, 'https://ror.org/043kam464', 'no_lang_code', 1, 'https://ror.org/043kam464 Servier (Spain)'),
(48198, 'https://ror.org/00699y503', 'no_lang_code', 1, 'https://ror.org/00699y503 Infirst Healthcare (United Kingdom)'),
(48199, 'https://ror.org/02a1g6f69', 'no_lang_code', 1, 'https://ror.org/02a1g6f69 Khondrion (Netherlands)'),
(48200, 'https://ror.org/030hv2833', 'no_lang_code', 1, 'https://ror.org/030hv2833 Laguna Pharmaceuticals (United States)'),
(48201, 'https://ror.org/04mg0we30', 'no_lang_code', 1, 'https://ror.org/04mg0we30 Inmunal (Spain)'),
(48202, 'https://ror.org/01e2spe61', 'no_lang_code', 1, 'https://ror.org/01e2spe61 Inmunotek (Spain)'),
(48203, 'https://ror.org/00tjx8277', 'es', 1, 'https://ror.org/00tjx8277 Instituto de Investigaciones del Sueño'),
(48204, 'https://ror.org/029bhft53', 'no_lang_code', 1, 'https://ror.org/029bhft53 Kitov Pharmaceuticals (Israel)'),
(48205, 'https://ror.org/04041s104', 'de', 1, 'https://ror.org/04041s104 Katholisches Klinikum Ruhrgebiet Nord GmbH'),
(48206, 'https://ror.org/05y73pq15', 'no_lang_code', 1, 'https://ror.org/05y73pq15 Laves-Arzneimittel (Germany)'),
(48207, 'https://ror.org/01kvepn75', 'es', 1, 'https://ror.org/01kvepn75 Instituto Palacios'),
(48208, 'https://ror.org/004p2dk70', 'es', 1, 'https://ror.org/004p2dk70 Instituto Tecnológico PET'),
(48209, 'https://ror.org/02wvemr05', 'no_lang_code', 1, 'https://ror.org/02wvemr05 Leo Pharma (France)'),
(48210, 'https://ror.org/03y18ef49', 'no_lang_code', 1, 'https://ror.org/03y18ef49 Intec Pharma (Israel)'),
(48211, 'https://ror.org/031fyj528', 'no_lang_code', 1, 'https://ror.org/031fyj528 Insmed (United Kingdom)'),
(48212, 'https://ror.org/039baqv34', 'no_lang_code', 1, 'https://ror.org/039baqv34 Valneva (United States)'),
(48213, 'https://ror.org/0574d2g06', 'no_lang_code', 1, 'https://ror.org/0574d2g06 LETI Pharma (Germany)'),
(48214, 'https://ror.org/02x94ka94', 'fr', 1, 'https://ror.org/02x94ka94 Intergroupe Francophone du Myélome'),
(48215, 'https://ror.org/030vz3726', 'no_lang_code', 1, 'https://ror.org/030vz3726 LFB (United States)'),
(48216, 'https://ror.org/05420w677', 'no_lang_code', 1, 'https://ror.org/05420w677 Light Sciences Oncology (United States)'),
(48217, 'https://ror.org/01h44t071', 'de', 1, 'https://ror.org/01h44t071 Therapeutische Drug Monitoring Kinder-und Jugendpsychiatrie'),
(48218, 'https://ror.org/00b4wbs75', 'no_lang_code', 1, 'https://ror.org/00b4wbs75 Maruho (United Kingdom)'),
(48219, 'https://ror.org/05me5c114', 'no_lang_code', 1, 'https://ror.org/05me5c114 Promore Pharma (Sweden)'),
(48220, 'https://ror.org/03e3wrh22', 'no_lang_code', 1, 'https://ror.org/03e3wrh22 Intermed Pharmaceutical Laboratories (Greece)'),
(48221, 'https://ror.org/02c9yny10', 'no_lang_code', 1, 'https://ror.org/02c9yny10 Pfizer (France)'),
(48222, 'https://ror.org/03y7nkj09', 'no_lang_code', 1, 'https://ror.org/03y7nkj09 Matrizyme (Canada)'),
(48223, 'https://ror.org/00j0wh784', 'no_lang_code', 1, 'https://ror.org/00j0wh784 IPPMed (Germany) Institut für Pharmakologie und Präventive Medizin'),
(48224, 'https://ror.org/026jmga48', 'no_lang_code', 1, 'https://ror.org/026jmga48 Ipsen (Netherlands)'),
(48225, 'https://ror.org/01z6wpz16', 'no_lang_code', 1, 'https://ror.org/01z6wpz16 Merck Serono (Italy)'),
(48226, 'https://ror.org/020jwmq86', 'no_lang_code', 1, 'https://ror.org/020jwmq86 Johnson & Johnson (Sweden)'),
(48227, 'https://ror.org/02e60zs41', 'no_lang_code', 1, 'https://ror.org/02e60zs41 Ipsen (Germany)'),
(48228, 'https://ror.org/021jz4j66', 'no_lang_code', 1, 'https://ror.org/021jz4j66 Ipsen (Spain)'),
(48229, 'https://ror.org/02ncjrc71', 'no_lang_code', 1, 'https://ror.org/02ncjrc71 Lukács és Társa (Hungary)'),
(48230, 'https://ror.org/03my72535', 'no_lang_code', 1, 'https://ror.org/03my72535 Merck (Spain)'),
(48231, 'https://ror.org/03xa4xh46', 'no_lang_code', 1, 'https://ror.org/03xa4xh46 Teva Pharmaceuticals (Germany)'),
(48232, 'https://ror.org/058pt1z69', 'no_lang_code', 1, 'https://ror.org/058pt1z69 Luzitin (Portugal)'),
(48233, 'https://ror.org/047z1nr02', 'no_lang_code', 1, 'https://ror.org/047z1nr02 Mesoestetic Pharma (Spain)'),
(48234, 'https://ror.org/04k8pqm06', 'no_lang_code', 1, 'https://ror.org/04k8pqm06 Lycera (United States)'),
(48235, 'https://ror.org/0074y3h33', 'no_lang_code', 1, 'https://ror.org/0074y3h33 MetrioPharm (Germany)'),
(48236, 'https://ror.org/05cyn4y81', 'no_lang_code', 1, 'https://ror.org/05cyn4y81 Medical Developments (United Kingdom)'),
(48237, 'https://ror.org/02v1ywf39', 'no_lang_code', 1, 'https://ror.org/02v1ywf39 MIB (Germany)'),
(48238, 'https://ror.org/04wdp9936', 'no_lang_code', 1, 'https://ror.org/04wdp9936 Kura Oncology (United States)'),
(48239, 'https://ror.org/017hh7b56', 'no_lang_code', 1, 'https://ror.org/017hh7b56 Kyowa Kirin International (United Kingdom)'),
(48240, 'https://ror.org/00a8d7d55', 'no_lang_code', 1, 'https://ror.org/00a8d7d55 Shield Therapeutics (Switzerland)'),
(48241, 'https://ror.org/03a20x849', 'no_lang_code', 1, 'https://ror.org/03a20x849 Medice (Germany)'),
(48242, 'https://ror.org/00z1h3j87', 'no_lang_code', 1, 'https://ror.org/00z1h3j87 GlaxoSmithKline (France)'),
(48243, 'https://ror.org/03gnb8h10', 'no_lang_code', 1, 'https://ror.org/03gnb8h10 Mabion (Poland)'),
(48244, 'https://ror.org/05r0csf60', 'no_lang_code', 1, 'https://ror.org/05r0csf60 HRA Pharma (United Kingdom)'),
(48245, 'https://ror.org/04fgnxn93', 'no_lang_code', 1, 'https://ror.org/04fgnxn93 Innothera (France)'),
(48246, 'https://ror.org/05kd99h55', 'no_lang_code', 1, 'https://ror.org/05kd99h55 Mologen (Germany)'),
(48247, 'https://ror.org/03frk0780', 'no_lang_code', 1, 'https://ror.org/03frk0780 Recordati (France)'),
(48248, 'https://ror.org/04eyqwn57', 'no_lang_code', 1, 'https://ror.org/04eyqwn57 Ethypharm (France)'),
(48249, 'https://ror.org/000nk9m43', 'no_lang_code', 1, 'https://ror.org/000nk9m43 Montavit (Austria)'),
(48250, 'https://ror.org/00015af83', 'no_lang_code', 1, 'https://ror.org/00015af83 Mediolanum Farmaceutici (Italy)'),
(48251, 'https://ror.org/007p8sj29', 'no_lang_code', 1, 'https://ror.org/007p8sj29 Mayoly Spindler (France)'),
(48252, 'https://ror.org/04815fk53', 'no_lang_code', 1, 'https://ror.org/04815fk53 Motif BioSciences (United States)'),
(48253, 'https://ror.org/03jbf2g44', 'no_lang_code', 1, 'https://ror.org/03jbf2g44 SMB (Belgium)'),
(48254, 'https://ror.org/04edz9p52', 'no_lang_code', 1, 'https://ror.org/04edz9p52 Thea (France)'),
(48255, 'https://ror.org/02x3ev322', 'no_lang_code', 1, 'https://ror.org/02x3ev322 MUC Research (Germany)'),
(48256, 'https://ror.org/03a3n5193', 'nl', 1, 'https://ror.org/03a3n5193 Nederlandse Vereniging van Artsen voor Longziekten en Tuberculose'),
(48257, 'https://ror.org/01tyb6p93', 'no_lang_code', 1, 'https://ror.org/01tyb6p93 Laboratorio De Aplicaciones Farmacodinamicas (Spain)'),
(48258, 'https://ror.org/03p1cbx82', 'no_lang_code', 1, 'https://ror.org/03p1cbx82 Nektar Therapeutics (United States)'),
(48259, 'https://ror.org/03e6y4k28', 'no_lang_code', 1, 'https://ror.org/03e6y4k28 Meditop (Hungary)'),
(48260, 'https://ror.org/02s2v2m89', 'no_lang_code', 1, 'https://ror.org/02s2v2m89 Mucos Pharma (Germany)'),
(48261, 'https://ror.org/05qgf0573', 'no_lang_code', 1, 'https://ror.org/05qgf0573 Neovacs (France)'),
(48262, 'https://ror.org/04ts8g112', 'no_lang_code', 1, 'https://ror.org/04ts8g112 MediWound (Germany)'),
(48263, 'https://ror.org/028ew8k17', 'en', 1, 'https://ror.org/028ew8k17 Mukoviszidose - Bundesverband Cystische Fibrose The Cystic Fibrosis Institute'),
(48264, 'https://ror.org/04kqbrq68', 'no_lang_code', 1, 'https://ror.org/04kqbrq68 Novartis (Hungary)'),
(48265, 'https://ror.org/018fqb741', 'no_lang_code', 1, 'https://ror.org/018fqb741 Mundipharma (Sweden)'),
(48266, 'https://ror.org/04kyz2p97', 'no_lang_code', 1, 'https://ror.org/04kyz2p97 NeRRe Therapeutics (United Kingdom)'),
(48267, 'https://ror.org/02jacnm89', 'no_lang_code', 1, 'https://ror.org/02jacnm89 Mundipharma (Netherlands)'),
(48268, 'https://ror.org/0446x4v61', 'no_lang_code', 1, 'https://ror.org/0446x4v61 Farmalder (Spain)'),
(48269, 'https://ror.org/040apef74', 'no_lang_code', 1, 'https://ror.org/040apef74 Mundipharma (Germany)'),
(48270, 'https://ror.org/01hzj3v30', 'no_lang_code', 1, 'https://ror.org/01hzj3v30 NeuroDerm (Israel)'),
(48271, 'https://ror.org/0224dwf10', 'no_lang_code', 1, 'https://ror.org/0224dwf10 Osmotica Pharmaceutical (United States)'),
(48272, 'https://ror.org/05h2pj652', 'no_lang_code', 1, 'https://ror.org/05h2pj652 Myelo Therapeutics (Germany)'),
(48273, 'https://ror.org/019fz9b71', 'no_lang_code', 1, 'https://ror.org/019fz9b71 Neurophyxia (Netherlands)'),
(48274, 'https://ror.org/02sqp6x70', 'no_lang_code', 1, 'https://ror.org/02sqp6x70 Hisamitsu Pharmaceutical (United States)'),
(48275, 'https://ror.org/025ghhr15', 'no_lang_code', 1, 'https://ror.org/025ghhr15 NeuroVive Pharmaceutical (Sweden)'),
(48276, 'https://ror.org/05pwxq352', 'no_lang_code', 1, 'https://ror.org/05pwxq352 Newron Pharmaceuticals (Italy)'),
(48277, 'https://ror.org/017ax4r20', 'no_lang_code', 1, 'https://ror.org/017ax4r20 Nabriva Therapeutics (Austria)'),
(48278, 'https://ror.org/05hy0av13', 'no_lang_code', 1, 'https://ror.org/05hy0av13 Otsuka (Germany)'),
(48279, 'https://ror.org/01smjaq87', 'no_lang_code', 1, 'https://ror.org/01smjaq87 Pierre Fabre (United Kingdom)'),
(48280, 'https://ror.org/04rbxbn93', 'no_lang_code', 1, 'https://ror.org/04rbxbn93 PIQUR Therapeutics (Switzerland)'),
(48281, 'https://ror.org/01w45kn29', 'no_lang_code', 1, 'https://ror.org/01w45kn29 Piramal (Germany)'),
(48282, 'https://ror.org/017f12b13', 'no_lang_code', 1, 'https://ror.org/017f12b13 Otsuka (France)'),
(48283, 'https://ror.org/05a48y547', 'en', 1, 'https://ror.org/05a48y547 Nordic MDS Group'),
(48284, 'https://ror.org/03d9qgb20', 'no_lang_code', 1, 'https://ror.org/03d9qgb20 Plazmaferezis'),
(48285, 'https://ror.org/05m0yja37', 'no_lang_code', 1, 'https://ror.org/05m0yja37 OxThera (Sweden)'),
(48286, 'https://ror.org/03gsy3007', 'no_lang_code', 1, 'https://ror.org/03gsy3007 PledPharma (Sweden)'),
(48287, 'https://ror.org/029tvtf63', 'no_lang_code', 1, 'https://ror.org/029tvtf63 Nuvo Pharmaceuticals (Germany)'),
(48288, 'https://ror.org/02cthxa95', 'no_lang_code', 1, 'https://ror.org/02cthxa95 Pliva (Croatia)'),
(48289, 'https://ror.org/00e65d634', 'no_lang_code', 1, 'https://ror.org/00e65d634 Roche (Belgium)'),
(48290, 'https://ror.org/006xpqa22', 'no_lang_code', 1, 'https://ror.org/006xpqa22 Noorik Biopharmaceuticals (Switzerland)'),
(48291, 'https://ror.org/01ke5wn61', 'en', 1, 'https://ror.org/01ke5wn61 Podřipská Hospital and Polyclinic'),
(48292, 'https://ror.org/03bsswy66', 'no_lang_code', 1, 'https://ror.org/03bsswy66 Takeda (Denmark)'),
(48293, 'https://ror.org/019zp9n35', 'no_lang_code', 1, 'https://ror.org/019zp9n35 Polaris Group (United States)'),
(48294, 'https://ror.org/05735qy63', 'no_lang_code', 1, 'https://ror.org/05735qy63 Polichem (Switzerland)'),
(48295, 'https://ror.org/02k5eqb88', 'no_lang_code', 1, 'https://ror.org/02k5eqb88 Vyne Therapeutics (United States)'),
(48296, 'https://ror.org/0033hgk30', 'no_lang_code', 1, 'https://ror.org/0033hgk30 Oasmia Pharmaceutical (Sweden)'),
(48297, 'https://ror.org/03th0y014', 'en', 1, 'https://ror.org/03th0y014 Nordic Myeloma Study Group'),
(48298, 'https://ror.org/04vsvp708', 'no_lang_code', 1, 'https://ror.org/04vsvp708 ObsEva (Switzerland)'),
(48299, 'https://ror.org/0319b3z70', 'no_lang_code', 1, 'https://ror.org/0319b3z70 Mensia (France)'),
(48300, 'https://ror.org/02r990937', 'no_lang_code', 1, 'https://ror.org/02r990937 PannonPharma (Hungary)'),
(48301, 'https://ror.org/055xh0h60', 'no_lang_code', 1, 'https://ror.org/055xh0h60 Nordic Pharma (Czechia)'),
(48302, 'https://ror.org/010yke988', 'en', 1, 'https://ror.org/010yke988 Parent Project Onlus'),
(48303, 'https://ror.org/00wjmg834', 'no_lang_code', 1, 'https://ror.org/00wjmg834 Octapharma (United Kingdom)'),
(48304, 'https://ror.org/004v35q61', 'en', 1, 'https://ror.org/004v35q61 Nordic Society of Gynecologic Oncology'),
(48305, 'https://ror.org/011pcrd91', 'no_lang_code', 1, 'https://ror.org/011pcrd91 PARI (Germany)'),
(48306, 'https://ror.org/022k50n33', 'no_lang_code', 1, 'https://ror.org/022k50n33 Octapharma (Austria)'),
(48307, 'https://ror.org/01q2gd226', 'no_lang_code', 1, 'https://ror.org/01q2gd226 Nordmark (Germany)'),
(48308, 'https://ror.org/0530w9m46', 'no_lang_code', 1, 'https://ror.org/0530w9m46 Oculis (Iceland)'),
(48309, 'https://ror.org/02xbx2821', 'no_lang_code', 1, 'https://ror.org/02xbx2821 Pascoe (Germany)'),
(48310, 'https://ror.org/045kh6832', 'no_lang_code', 1, 'https://ror.org/045kh6832 Ogeda (Belgium)'),
(48311, 'https://ror.org/00acq4045', 'no_lang_code', 1, 'https://ror.org/00acq4045 Norgine (Germany)'),
(48312, 'https://ror.org/03ztade89', 'no_lang_code', 1, 'https://ror.org/03ztade89 Patara Pharma (United States)'),
(48313, 'https://ror.org/046zgtw08', 'no_lang_code', 1, 'https://ror.org/046zgtw08 Norgine (United Kingdom)'),
(48314, 'https://ror.org/00daeq584', 'no_lang_code', 1, 'https://ror.org/00daeq584 Vifor Pharma (Germany)'),
(48315, 'https://ror.org/00bqgv517', 'no_lang_code', 1, 'https://ror.org/00bqgv517 PregLem (Switzerland)'),
(48316, 'https://ror.org/004jq0d46', 'no', 1, 'https://ror.org/004jq0d46 Norsk Gastrointestinal Cancer Gruppe'),
(48317, 'https://ror.org/00mzpva76', 'no_lang_code', 1, 'https://ror.org/00mzpva76 PrEP Biopharm (United Kingdom)'),
(48318, 'https://ror.org/02xc9kn92', 'no_lang_code', 1, 'https://ror.org/02xc9kn92 Novadip (Belgium)'),
(48319, 'https://ror.org/02tbbcr43', 'no_lang_code', 1, 'https://ror.org/02tbbcr43 PellePharm (United States)'),
(48320, 'https://ror.org/00dv4bv22', 'no_lang_code', 1, 'https://ror.org/00dv4bv22 Presurgy (Spain)'),
(48321, 'https://ror.org/02gdc0c96', 'no_lang_code', 1, 'https://ror.org/02gdc0c96 OmniVision Technologies (Germany)'),
(48322, 'https://ror.org/03j9fjx10', 'no_lang_code', 1, 'https://ror.org/03j9fjx10 Peptonic Medical (Sweden)'),
(48323, 'https://ror.org/04zmnq951', 'no_lang_code', 1, 'https://ror.org/04zmnq951 Immutep (Germany)'),
(48324, 'https://ror.org/05fw76c12', 'no_lang_code', 1, 'https://ror.org/05fw76c12 Principia Biopharma (United States)'),
(48325, 'https://ror.org/02sxt3315', 'no_lang_code', 1, 'https://ror.org/02sxt3315 Peptcell (United Kingdom)'),
(48326, 'https://ror.org/038kcjb09', 'no_lang_code', 1, 'https://ror.org/038kcjb09 Santen (United Kingdom) 参天製薬株式会社'),
(48327, 'https://ror.org/05reaew23', 'no_lang_code', 1, 'https://ror.org/05reaew23 RDD Pharma (Israel)'),
(48328, 'https://ror.org/007ztdc30', 'de', 1, 'https://ror.org/007ztdc30 Schön Klinik Roseneck'),
(48329, 'https://ror.org/01zkyek34', 'no_lang_code', 1, 'https://ror.org/01zkyek34 Probelte Pharma (Spain)'),
(48330, 'https://ror.org/00arbsy46', 'no_lang_code', 1, 'https://ror.org/00arbsy46 Reckitt Benckiser (Germany)'),
(48331, 'https://ror.org/03bjgk257', 'no_lang_code', 1, 'https://ror.org/03bjgk257 OncoGenex Pharmaceuticals (United States)'),
(48332, 'https://ror.org/00m3bfx83', 'hu', 1, 'https://ror.org/00m3bfx83 Pozitron-Diagnosztika Kft'),
(48333, 'https://ror.org/00222m642', 'no_lang_code', 1, 'https://ror.org/00222m642 Profile Pharma (United Kingdom)'),
(48334, 'https://ror.org/04bp98c14', 'no_lang_code', 1, 'https://ror.org/04bp98c14 Oncopeptides (Sweden)'),
(48335, 'https://ror.org/03ekprg18', 'no_lang_code', 1, 'https://ror.org/03ekprg18 Recordati (Italy)'),
(48336, 'https://ror.org/03jat0y07', 'no_lang_code', 1, 'https://ror.org/03jat0y07 Promethera Biosciences (Belgium)'),
(48337, 'https://ror.org/04qhpra63', 'no_lang_code', 1, 'https://ror.org/04qhpra63 Novartis (Norway)'),
(48338, 'https://ror.org/00vvx9s89', 'no_lang_code', 1, 'https://ror.org/00vvx9s89 Liminal BioSciences (United Kingdom)'),
(48339, 'https://ror.org/027f4r073', 'no_lang_code', 1, 'https://ror.org/027f4r073 Novartis (Denmark)'),
(48340, 'https://ror.org/034cs5236', 'no_lang_code', 1, 'https://ror.org/034cs5236 Only For Children Pharmaceuticals (France)'),
(48341, 'https://ror.org/05rzyfd75', 'no_lang_code', 1, 'https://ror.org/05rzyfd75 ProNAi Therapeutics (United States)'),
(48342, 'https://ror.org/01sdha619', 'no_lang_code', 1, 'https://ror.org/01sdha619 Ono Pharmaceutical (United Kingdom)'),
(48343, 'https://ror.org/003g5qe79', 'no_lang_code', 1, 'https://ror.org/003g5qe79 Circassia Pharmaceuticals (United Kingdom)'),
(48344, 'https://ror.org/035pepv51', 'no_lang_code', 1, 'https://ror.org/035pepv51 Ophthotech (United States)'),
(48345, 'https://ror.org/05he4e720', 'no_lang_code', 1, 'https://ror.org/05he4e720 Novartis (Belgium)'),
(48346, 'https://ror.org/02jf3v234', 'no_lang_code', 1, 'https://ror.org/02jf3v234 Protalix BioTherapeutics (Israel)'),
(48347, 'https://ror.org/024f0th47', 'no_lang_code', 1, 'https://ror.org/024f0th47 Regenmedtx (United States)'),
(48348, 'https://ror.org/01zk1vt68', 'no_lang_code', 1, 'https://ror.org/01zk1vt68 Pfizer (Belgium)'),
(48349, 'https://ror.org/052bk9j85', 'no_lang_code', 1, 'https://ror.org/052bk9j85 PHARM (Italy)'),
(48350, 'https://ror.org/01msnnq69', 'no_lang_code', 1, 'https://ror.org/01msnnq69 Novartis (Sweden)'),
(48351, 'https://ror.org/01ft7jz29', 'no_lang_code', 1, 'https://ror.org/01ft7jz29 OptiNose (United States)'),
(48352, 'https://ror.org/011gmw939', 'no_lang_code', 1, 'https://ror.org/011gmw939 Pharma Patent (Hungary)'),
(48353, 'https://ror.org/01mf0t386', 'no_lang_code', 1, 'https://ror.org/01mf0t386 Upsher-Smith Laboratories (United Kingdom)'),
(48354, 'https://ror.org/03zye6r08', 'no_lang_code', 1, 'https://ror.org/03zye6r08 ORASIS Pharmaceuticals (Israel)'),
(48355, 'https://ror.org/04rgxfp73', 'no_lang_code', 1, 'https://ror.org/04rgxfp73 Pharma Stulln (Germany)'),
(48356, 'https://ror.org/00982nx75', 'no_lang_code', 1, 'https://ror.org/00982nx75 Romark (United States)'),
(48357, 'https://ror.org/019g16n05', 'no_lang_code', 1, 'https://ror.org/019g16n05 PsiOxus Therapeutics (United Kingdom)'),
(48358, 'https://ror.org/05797ak83', 'no_lang_code', 1, 'https://ror.org/05797ak83 Regulon (Greece)'),
(48359, 'https://ror.org/01ny43313', 'no_lang_code', 1, 'https://ror.org/01ny43313 Orion Corporation (United Kingdom)'),
(48360, 'https://ror.org/02vypmx38', 'da', 1, 'https://ror.org/02vypmx38 Psykiatrien i Region Syddanmark'),
(48361, 'https://ror.org/01hfdsp13', 'no_lang_code', 1, 'https://ror.org/01hfdsp13 Vifor Pharma (United Kingdom)'),
(48362, 'https://ror.org/04g2zk759', 'no_lang_code', 1, 'https://ror.org/04g2zk759 Pharmalink (Sweden)'),
(48363, 'https://ror.org/00qverm02', 'no_lang_code', 1, 'https://ror.org/00qverm02 Orphazyme (Denmark)'),
(48364, 'https://ror.org/03x49ea82', 'no_lang_code', 1, 'https://ror.org/03x49ea82 Renapharma (Sweden)'),
(48365, 'https://ror.org/00nxf7t46', 'no_lang_code', 1, 'https://ror.org/00nxf7t46 Pulmagen Therapeutics (United Kingdom)'),
(48366, 'https://ror.org/04fzmt155', 'no_lang_code', 1, 'https://ror.org/04fzmt155 Renovo (United Kingdom)'),
(48367, 'https://ror.org/033c8zt46', 'no_lang_code', 1, 'https://ror.org/033c8zt46 Pharmanest (Sweden)'),
(48368, 'https://ror.org/0130ebz28', 'no_lang_code', 1, 'https://ror.org/0130ebz28 Repha (Germany)'),
(48369, 'https://ror.org/028fqdc34', 'no_lang_code', 1, 'https://ror.org/028fqdc34 Roxall (Germany)'),
(48370, 'https://ror.org/014903n70', 'no_lang_code', 1, 'https://ror.org/014903n70 Getinge (Germany)'),
(48371, 'https://ror.org/03h3wjd71', 'no_lang_code', 1, 'https://ror.org/03h3wjd71 Pharmathen (Greece)'),
(48372, 'https://ror.org/024rmzz69', 'no_lang_code', 1, 'https://ror.org/024rmzz69 Nestlé (Sweden)'),
(48373, 'https://ror.org/0233s3730', 'no_lang_code', 1, 'https://ror.org/0233s3730 Pharming Group (Netherlands)'),
(48374, 'https://ror.org/04066xx95', 'no_lang_code', 1, 'https://ror.org/04066xx95 ORYX (Germany)'),
(48375, 'https://ror.org/00veetk09', 'no_lang_code', 1, 'https://ror.org/00veetk09 R-Pharm (Russia)'),
(48376, 'https://ror.org/03aj3re16', 'no_lang_code', 1, 'https://ror.org/03aj3re16 Resverlogix (Canada)'),
(48377, 'https://ror.org/04q5vxz02', 'no_lang_code', 1, 'https://ror.org/04q5vxz02 RSPR Pharma (Sweden)'),
(48378, 'https://ror.org/04fvydq80', 'no_lang_code', 1, 'https://ror.org/04fvydq80 RadioMedic (Czechia)'),
(48379, 'https://ror.org/00n9y1b67', 'no_lang_code', 1, 'https://ror.org/00n9y1b67 Revalesio (United states)'),
(48380, 'https://ror.org/0563mqb36', 'no_lang_code', 1, 'https://ror.org/0563mqb36 Photonamic (Germany)'),
(48381, 'https://ror.org/05ahn7y97', 'no_lang_code', 1, 'https://ror.org/05ahn7y97 Rexgenero (United Kingdom)');
INSERT INTO `rors` VALUES
(48382, 'https://ror.org/0180raj05', 'no_lang_code', 1, 'https://ror.org/0180raj05 Scandinavian Sarcoma Group (Sweden)'),
(48383, 'https://ror.org/0363m9h89', 'no_lang_code', 1, 'https://ror.org/0363m9h89 Rheacell (Germany)'),
(48384, 'https://ror.org/00e03sj10', 'de', 1, 'https://ror.org/00e03sj10 Rheumazentrum Ruhrgebiet'),
(48385, 'https://ror.org/041710805', 'no_lang_code', 1, 'https://ror.org/041710805 Pierre Fabre (Germany)'),
(48386, 'https://ror.org/05mbknd79', 'no_lang_code', 1, 'https://ror.org/05mbknd79 Synphora (Sweden)'),
(48387, 'https://ror.org/04trz4q34', 'no_lang_code', 1, 'https://ror.org/04trz4q34 Synthetic Biologics (United States)'),
(48388, 'https://ror.org/03ccwth61', 'es', 1, 'https://ror.org/03ccwth61 Sociedad Espaola de retina y Vtreo'),
(48389, 'https://ror.org/05gh45115', 'no_lang_code', 1, 'https://ror.org/05gh45115 Rhythm (United states)'),
(48390, 'https://ror.org/020sa1y42', 'no_lang_code', 1, 'https://ror.org/020sa1y42 Sager Pharma (Hungary)'),
(48391, 'https://ror.org/05g777x71', 'no_lang_code', 1, 'https://ror.org/05g777x71 Synthon (Czechia)'),
(48392, 'https://ror.org/02qae1c67', 'it', 1, 'https://ror.org/02qae1c67 Società Italiana di Nefrologia'),
(48393, 'https://ror.org/056brkm80', 'en', 1, 'https://ror.org/056brkm80 Hospitalsenhed Midt Regional Hospital Central Jutland'),
(48394, 'https://ror.org/04s47k519', 'no_lang_code', 1, 'https://ror.org/04s47k519 SIT Pharmaceutical (Italy)'),
(48395, 'https://ror.org/05f6qyf30', 'en', 1, 'https://ror.org/05f6qyf30 Spanish Oncology Genitourinary Group'),
(48396, 'https://ror.org/031kkyn50', 'no_lang_code', 1, 'https://ror.org/031kkyn50 Solenne (Netherlands)'),
(48397, 'https://ror.org/01t8wyd82', 'no_lang_code', 1, 'https://ror.org/01t8wyd82 SciencePharma (Poland)'),
(48398, 'https://ror.org/0560gb543', 'no_lang_code', 1, 'https://ror.org/0560gb543 Bausch Health (United Kingdom)'),
(48399, 'https://ror.org/03vyqpz72', 'no_lang_code', 1, 'https://ror.org/03vyqpz72 Solvotrin Innovations (Ireland)'),
(48400, 'https://ror.org/05ydk8712', 'en', 1, 'https://ror.org/05ydk8712 Scottish National Blood Transfusion Service'),
(48401, 'https://ror.org/02z43nn16', 'no_lang_code', 1, 'https://ror.org/02z43nn16 Taiho Oncology (United States)'),
(48402, 'https://ror.org/00w17sc55', 'no_lang_code', 1, 'https://ror.org/00w17sc55 SOM Biotech (Spain)'),
(48403, 'https://ror.org/00vbtek25', 'no_lang_code', 1, 'https://ror.org/00vbtek25 scPharmaceuticals (United States)'),
(48404, 'https://ror.org/049a8xm46', 'no_lang_code', 1, 'https://ror.org/049a8xm46 Takeda (Belgium)'),
(48405, 'https://ror.org/02w3k0k28', 'no_lang_code', 1, 'https://ror.org/02w3k0k28 Sopharma (Bulgaria)'),
(48406, 'https://ror.org/03rr5wf56', 'no_lang_code', 1, 'https://ror.org/03rr5wf56 Sophiris (United States)'),
(48407, 'https://ror.org/00ycncb81', 'no_lang_code', 1, 'https://ror.org/00ycncb81 Takeda (Netherlands)'),
(48408, 'https://ror.org/05prtzk88', 'no_lang_code', 1, 'https://ror.org/05prtzk88 Bouty (Italy)'),
(48409, 'https://ror.org/027gy9h20', 'no_lang_code', 1, 'https://ror.org/027gy9h20 Seahorse Scientific Services (United Kingdom)'),
(48410, 'https://ror.org/033q3j448', 'no_lang_code', 1, 'https://ror.org/033q3j448 Targovax (Finland)'),
(48411, 'https://ror.org/01gc9jt13', 'no_lang_code', 1, 'https://ror.org/01gc9jt13 Sanochemia Pharmazeutika (Austria)'),
(48412, 'https://ror.org/059a53184', 'no_lang_code', 1, 'https://ror.org/059a53184 TauRx (United Kingdom)'),
(48413, 'https://ror.org/029gjrw67', 'no_lang_code', 1, 'https://ror.org/029gjrw67 Robugen (Germany)'),
(48414, 'https://ror.org/01w8m1867', 'no_lang_code', 1, 'https://ror.org/01w8m1867 Novartis (Australia)'),
(48415, 'https://ror.org/04seaqh41', 'no_lang_code', 1, 'https://ror.org/04seaqh41 Roche (Denmark)'),
(48416, 'https://ror.org/03cwbzb16', 'no_lang_code', 1, 'https://ror.org/03cwbzb16 Roche (Austria)'),
(48417, 'https://ror.org/05bf2vj98', 'no_lang_code', 1, 'https://ror.org/05bf2vj98 Sanofi (United Kingdom)'),
(48418, 'https://ror.org/04b8zcj45', 'no_lang_code', 1, 'https://ror.org/04b8zcj45 Roche (Spain)'),
(48419, 'https://ror.org/04zt79h83', 'no_lang_code', 1, 'https://ror.org/04zt79h83 Roche (Portugal)'),
(48420, 'https://ror.org/02mnmm768', 'no_lang_code', 1, 'https://ror.org/02mnmm768 Sanofi (Italy)'),
(48421, 'https://ror.org/0392c7938', 'no_lang_code', 1, 'https://ror.org/0392c7938 Roche (Greece)'),
(48422, 'https://ror.org/0382cxx18', 'en', 1, 'https://ror.org/0382cxx18 Section of Transfusion Medicine Capital Region Blood Bank & Department of Clinical Immunology'),
(48423, 'https://ror.org/01gcg9888', 'no_lang_code', 1, 'https://ror.org/01gcg9888 Roche (Netherlands)'),
(48424, 'https://ror.org/00kt5rm23', 'no_lang_code', 1, 'https://ror.org/00kt5rm23 TC Biopharm (United Kingdom)'),
(48425, 'https://ror.org/02wnz8673', 'no_lang_code', 1, 'https://ror.org/02wnz8673 Sanofi (Belgium)'),
(48426, 'https://ror.org/03k879d12', 'no_lang_code', 1, 'https://ror.org/03k879d12 Seqirus (United States)'),
(48427, 'https://ror.org/040h02z76', 'no_lang_code', 1, 'https://ror.org/040h02z76 Sanofi (Japan) サノフィ'),
(48428, 'https://ror.org/011v1tv66', 'no_lang_code', 1, 'https://ror.org/011v1tv66 Serumwerk Bernburg (Germany)'),
(48429, 'https://ror.org/045frfm13', 'no_lang_code', 1, 'https://ror.org/045frfm13 Stealth BioTherapeutics (United States)'),
(48430, 'https://ror.org/02r3fkw61', 'no_lang_code', 1, 'https://ror.org/02r3fkw61 Tesaro (United States)'),
(48431, 'https://ror.org/007vd5q36', 'no_lang_code', 1, 'https://ror.org/007vd5q36 TETEC Tissue Engineering Technologies (Germany)'),
(48432, 'https://ror.org/02fbwdh31', 'no_lang_code', 1, 'https://ror.org/02fbwdh31 Servier (United Kingdom)'),
(48433, 'https://ror.org/048830f73', 'no_lang_code', 1, 'https://ror.org/048830f73 Tetraphase Pharmaceuticals (United States)'),
(48434, 'https://ror.org/05gpmjj80', 'no_lang_code', 1, 'https://ror.org/05gpmjj80 Stelic (Japan)'),
(48435, 'https://ror.org/01wyyby64', 'no_lang_code', 1, 'https://ror.org/01wyyby64 Oxurion (Ireland)'),
(48436, 'https://ror.org/001crv456', 'nl', 1, 'https://ror.org/001crv456 Werkgroep Immunotherapie Nederland voor Oncologie'),
(48437, 'https://ror.org/04p365m25', 'no_lang_code', 1, 'https://ror.org/04p365m25 Thrombotargets (Spain)'),
(48438, 'https://ror.org/05hw2m351', 'no_lang_code', 1, 'https://ror.org/05hw2m351 Shield Therapeutics (United Kingdom)'),
(48439, 'https://ror.org/05nx4j589', 'no_lang_code', 1, 'https://ror.org/05nx4j589 Sterna Biologicals (Germany)'),
(48440, 'https://ror.org/00tx8br33', 'no_lang_code', 1, 'https://ror.org/00tx8br33 Sanofi (Finland)'),
(48441, 'https://ror.org/00g51ew42', 'no_lang_code', 1, 'https://ror.org/00g51ew42 Sanofi (Spain)'),
(48442, 'https://ror.org/03r24gp64', 'de', 1, 'https://ror.org/03r24gp64 Sterreichisches Akromegalie Register'),
(48443, 'https://ror.org/051mdb162', 'en', 1, 'https://ror.org/051mdb162 Heartbeat Trust'),
(48444, 'https://ror.org/05bhnz872', 'no_lang_code', 1, 'https://ror.org/05bhnz872 Sanofi (Hungary)'),
(48445, 'https://ror.org/01embmm80', 'no_lang_code', 1, 'https://ror.org/01embmm80 Tikomed (Sweden)'),
(48446, 'https://ror.org/052cecc97', 'en', 1, 'https://ror.org/052cecc97 London Clinic'),
(48447, 'https://ror.org/05yjdg022', 'no_lang_code', 1, 'https://ror.org/05yjdg022 BBB Therapeutics (Netherlands)'),
(48448, 'https://ror.org/01y8eh752', 'no_lang_code', 1, 'https://ror.org/01y8eh752 Strathmann (Germany)'),
(48449, 'https://ror.org/02fyrxr51', 'nl', 1, 'https://ror.org/02fyrxr51 Streeklab Haarlem'),
(48450, 'https://ror.org/02za90e47', 'no_lang_code', 1, 'https://ror.org/02za90e47 Strekin (Switzerland)'),
(48451, 'https://ror.org/02zxf2242', 'no_lang_code', 1, 'https://ror.org/02zxf2242 Allergan (Finland)'),
(48452, 'https://ror.org/03nvr8032', 'no_lang_code', 1, 'https://ror.org/03nvr8032 Tokai Pharmaceuticals (United States)'),
(48453, 'https://ror.org/05gmffx67', 'no_lang_code', 1, 'https://ror.org/05gmffx67 Sucampo (Switzerland)'),
(48454, 'https://ror.org/02752ac98', 'no_lang_code', 1, 'https://ror.org/02752ac98 Topivert (United Kingdom)'),
(48455, 'https://ror.org/006psag97', 'no_lang_code', 1, 'https://ror.org/006psag97 Onxeo (Denmark)'),
(48456, 'https://ror.org/04e9jh270', 'no_lang_code', 1, 'https://ror.org/04e9jh270 Sanol (Germany)'),
(48457, 'https://ror.org/0108v8438', 'no_lang_code', 1, 'https://ror.org/0108v8438 Santen (United States)'),
(48458, 'https://ror.org/0023ccp69', 'no_lang_code', 1, 'https://ror.org/0023ccp69 Sintetica (Switzerland)'),
(48459, 'https://ror.org/00bzkg452', 'no_lang_code', 1, 'https://ror.org/00bzkg452 Savara (Denmark)'),
(48460, 'https://ror.org/02y447m55', 'no_lang_code', 1, 'https://ror.org/02y447m55 Sirtex (Germany)'),
(48461, 'https://ror.org/01b51qe92', 'no_lang_code', 1, 'https://ror.org/01b51qe92 Trevi Therapeutics (United States)'),
(48462, 'https://ror.org/03sh4z743', 'no_lang_code', 1, 'https://ror.org/03sh4z743 Sunovion (United Kingdom)'),
(48463, 'https://ror.org/04kd6fb74', 'no_lang_code', 1, 'https://ror.org/04kd6fb74 TrichoCare (United Kingdom)'),
(48464, 'https://ror.org/03ckgn780', 'sv', 1, 'https://ror.org/03ckgn780 Svettmottagningen'),
(48465, 'https://ror.org/047svmk39', 'no_lang_code', 1, 'https://ror.org/047svmk39 Trio Medicines (United Kingdom)'),
(48466, 'https://ror.org/01eqh1e45', 'en', 1, 'https://ror.org/01eqh1e45 Swedish CLL group'),
(48467, 'https://ror.org/030d18955', 'no_lang_code', 1, 'https://ror.org/030d18955 SmartPractice (United States)'),
(48468, 'https://ror.org/013x77c65', 'no_lang_code', 1, 'https://ror.org/013x77c65 Txcell (France)'),
(48469, 'https://ror.org/05kymnn64', 'no_lang_code', 1, 'https://ror.org/05kymnn64 Swedish Orphan Biovitrum (Switzerland)'),
(48470, 'https://ror.org/05k3n9k87', 'no', 1, 'https://ror.org/05k3n9k87 Smerteklinikken'),
(48471, 'https://ror.org/01jmrmv15', 'no_lang_code', 1, 'https://ror.org/01jmrmv15 Swiss Cardio Technologies (Switzerland)'),
(48472, 'https://ror.org/005nnp672', 'no_lang_code', 1, 'https://ror.org/005nnp672 Smith & Nephew (Germany)'),
(48473, 'https://ror.org/03d8m2k26', 'no_lang_code', 1, 'https://ror.org/03d8m2k26 SymbioPharm (Germany)'),
(48474, 'https://ror.org/030sgj832', 'no_lang_code', 1, 'https://ror.org/030sgj832 GlaxoSmithKline (Sri Lanka)'),
(48475, 'https://ror.org/026xkpb31', 'es', 1, 'https://ror.org/026xkpb31 Sociedad Andaluza de Trasplantes de Órganos y Tejidos'),
(48476, 'https://ror.org/0491edy94', 'no_lang_code', 1, 'https://ror.org/0491edy94 Asarina Pharma (Sweden)'),
(48477, 'https://ror.org/04agh5288', 'de', 1, 'https://ror.org/04agh5288 Unfallkrankenhaus Salzburg'),
(48478, 'https://ror.org/05ansvf21', 'no_lang_code', 1, 'https://ror.org/05ansvf21 Rohto Pharmaceutical (United Kingdom)'),
(48479, 'https://ror.org/02jyvnx70', 'no_lang_code', 1, 'https://ror.org/02jyvnx70 UniQure (Netherlands)'),
(48480, 'https://ror.org/00txma197', 'no_lang_code', 1, 'https://ror.org/00txma197 Themis Bioscience (Austria)'),
(48481, 'https://ror.org/015b5md70', 'no_lang_code', 1, 'https://ror.org/015b5md70 Therabel (Belgium)'),
(48482, 'https://ror.org/01a904q54', 'no_lang_code', 1, 'https://ror.org/01a904q54 United Therapeutics (United Kingdom)'),
(48483, 'https://ror.org/037gt0k77', 'no_lang_code', 1, 'https://ror.org/037gt0k77 Univar (United Kingdom)'),
(48484, 'https://ror.org/03jngpv21', 'no_lang_code', 1, 'https://ror.org/03jngpv21 Theracos (United States)'),
(48485, 'https://ror.org/031t42b47', 'no_lang_code', 1, 'https://ror.org/031t42b47 URSAPHARM (Germany)'),
(48486, 'https://ror.org/04ke50w30', 'no_lang_code', 1, 'https://ror.org/04ke50w30 ViiV Healthcare (Spain)'),
(48487, 'https://ror.org/012h3vy49', 'no_lang_code', 1, 'https://ror.org/012h3vy49 Viking Therapeutics (United States)'),
(48488, 'https://ror.org/0277dxs53', 'no_lang_code', 1, 'https://ror.org/0277dxs53 Clinipace (Italy)'),
(48489, 'https://ror.org/01ph20k51', 'no_lang_code', 1, 'https://ror.org/01ph20k51 Visterra (United States)'),
(48490, 'https://ror.org/03v1s7b70', 'no_lang_code', 1, 'https://ror.org/03v1s7b70 Pfizer (South Korea)'),
(48491, 'https://ror.org/04ps1h446', 'no_lang_code', 1, 'https://ror.org/04ps1h446 Vital Therapies (United States)'),
(48492, 'https://ror.org/00w1mdq38', 'no_lang_code', 1, 'https://ror.org/00w1mdq38 VL-Medi Oy (Finland)'),
(48493, 'https://ror.org/02eed7j13', 'no_lang_code', 1, 'https://ror.org/02eed7j13 Vasopharm (Germany)'),
(48494, 'https://ror.org/05k7n6k09', 'no_lang_code', 1, 'https://ror.org/05k7n6k09 Vaxon Biotech (France)'),
(48495, 'https://ror.org/00en8sz04', 'no_lang_code', 1, 'https://ror.org/00en8sz04 Vectura (Germany)'),
(48496, 'https://ror.org/05c1g2f47', 'no_lang_code', 1, 'https://ror.org/05c1g2f47 Xcovery (United States)'),
(48497, 'https://ror.org/01jya0847', 'no_lang_code', 1, 'https://ror.org/01jya0847 Vtesse (United States)'),
(48498, 'https://ror.org/000ydq217', 'no_lang_code', 1, 'https://ror.org/000ydq217 Vectura (United Kingdom)'),
(48499, 'https://ror.org/03dkej307', 'no_lang_code', 1, 'https://ror.org/03dkej307 Xellia (Croatia)'),
(48500, 'https://ror.org/014335v20', 'en', 1, 'https://ror.org/014335v20 174th hospital of the People''s Liberation Army 解放军第174医院'),
(48501, 'https://ror.org/021820f58', 'no_lang_code', 1, 'https://ror.org/021820f58 Xenikos (Netherlands)'),
(48502, 'https://ror.org/02xa0er70', 'no_lang_code', 1, 'https://ror.org/02xa0er70 21st Century Oncology (United States)'),
(48503, 'https://ror.org/054qagt04', 'no_lang_code', 1, 'https://ror.org/054qagt04 Assembly Biosciences (United States)'),
(48504, 'https://ror.org/04zzq8d03', 'no_lang_code', 1, 'https://ror.org/04zzq8d03 Zambon (Italy)'),
(48505, 'https://ror.org/0479btw97', 'no_lang_code', 1, 'https://ror.org/0479btw97 Zambon (Spain)'),
(48506, 'https://ror.org/0427w5y14', 'no_lang_code', 1, 'https://ror.org/0427w5y14 Weber and Weber (Germany)'),
(48507, 'https://ror.org/02bmq1p14', 'no_lang_code', 1, 'https://ror.org/02bmq1p14 Weleda (Germany)'),
(48508, 'https://ror.org/01bb2y691', 'nl', 1, 'https://ror.org/01bb2y691 Dutch Network for Cardiovascular Research Werkgroep Cardiologische centra Nederland'),
(48509, 'https://ror.org/00s1p1c80', 'no_lang_code', 1, 'https://ror.org/00s1p1c80 Verisfield (Greece)'),
(48510, 'https://ror.org/040ypnf94', 'en', 1, 'https://ror.org/040ypnf94 Westdeutsche Studiengruppe Women‘s Healthcare Group'),
(48511, 'https://ror.org/04r000b45', 'no_lang_code', 1, 'https://ror.org/04r000b45 Zambon (Belgium)'),
(48512, 'https://ror.org/0405b3553', 'nl', 1, 'https://ror.org/0405b3553 Westfriesgasthuis'),
(48513, 'https://ror.org/00s9kz870', 'no_lang_code', 1, 'https://ror.org/00s9kz870 Versartis (United States)'),
(48514, 'https://ror.org/01sbybp86', 'no_lang_code', 1, 'https://ror.org/01sbybp86 Wilson Therapeutics (United States)'),
(48515, 'https://ror.org/03h2cp518', 'en', 1, 'https://ror.org/03h2cp518 Tinker Air Force Base'),
(48516, 'https://ror.org/05jndc687', 'en', 1, 'https://ror.org/05jndc687 Attention Deficit Disorder Treatment Center'),
(48517, 'https://ror.org/00m42nc03', 'no_lang_code', 1, 'https://ror.org/00m42nc03 Zelmic (Sweden)'),
(48518, 'https://ror.org/03fs5jd74', 'no_lang_code', 1, 'https://ror.org/03fs5jd74 Vertex Pharmaceuticals (United Kingdom)'),
(48519, 'https://ror.org/03mgygf96', 'it', 1, 'https://ror.org/03mgygf96 ASST Melegnano e della Martesana'),
(48520, 'https://ror.org/049nmq981', 'no_lang_code', 1, 'https://ror.org/049nmq981 Ziarco (United Kingdom)'),
(48521, 'https://ror.org/00k39ax32', 'no_lang_code', 1, 'https://ror.org/00k39ax32 Ziopharm Oncology (United States)'),
(48522, 'https://ror.org/022phs473', 'en', 1, 'https://ror.org/022phs473 Vienna Institute for Research in Ocular Surgery'),
(48523, 'https://ror.org/01pxgad11', 'en', 1, 'https://ror.org/01pxgad11 Advanced Dermatology & Cosmetic Surgery'),
(48524, 'https://ror.org/0115kmj57', 'en', 1, 'https://ror.org/0115kmj57 Corrective Eye Center'),
(48525, 'https://ror.org/00fnw5m57', 'en', 1, 'https://ror.org/00fnw5m57 Anaheim Clinical Trials'),
(48526, 'https://ror.org/03p3t4h85', 'no_lang_code', 1, 'https://ror.org/03p3t4h85 Zymenex (Denmark)'),
(48527, 'https://ror.org/02jkvf915', 'en', 1, 'https://ror.org/02jkvf915 Academic and Community Cancer Research United'),
(48528, 'https://ror.org/0283crx61', 'no_lang_code', 1, 'https://ror.org/0283crx61 Zytoprotec (Austria)'),
(48529, 'https://ror.org/02x25m361', 'en', 1, 'https://ror.org/02x25m361 Academic Dermatology Associates'),
(48530, 'https://ror.org/00gb2qm43', 'en', 1, 'https://ror.org/00gb2qm43 Andover Eye Associates'),
(48531, 'https://ror.org/05wqa9613', 'en', 1, 'https://ror.org/05wqa9613 Ang Mo Kio Thye Hua Kwan Hospital'),
(48532, 'https://ror.org/04qm2hz97', 'no_lang_code', 1, 'https://ror.org/04qm2hz97 Accelovance (United States)'),
(48533, 'https://ror.org/05980d896', 'en', 1, 'https://ror.org/05980d896 Angioma Alliance'),
(48534, 'https://ror.org/02fstqr33', 'en', 1, 'https://ror.org/02fstqr33 Ankang City Central Hospital 安康市中心医院'),
(48535, 'https://ror.org/004ca1d83', 'en', 1, 'https://ror.org/004ca1d83 Access Behavioral Health'),
(48536, 'https://ror.org/05qyyb850', 'id', 1, 'https://ror.org/05qyyb850 Rumah Sakit Jantung Binawaluya'),
(48537, 'https://ror.org/00mt5kz64', 'en', 1, 'https://ror.org/00mt5kz64 Accumed Research Associates'),
(48538, 'https://ror.org/01y8cpr39', 'en', 1, 'https://ror.org/01y8cpr39 Binzhou People''s Hospital 滨州人民医院'),
(48539, 'https://ror.org/01hp17k95', 'no_lang_code', 1, 'https://ror.org/01hp17k95 BioKinetic Europe (United Kingdom)'),
(48540, 'https://ror.org/01z1y5p14', 'en', 1, 'https://ror.org/01z1y5p14 Action in the Community Environment'),
(48541, 'https://ror.org/02xe8f033', 'no_lang_code', 1, 'https://ror.org/02xe8f033 ApniCure (United States)'),
(48542, 'https://ror.org/05ssfqx86', 'en', 1, 'https://ror.org/05ssfqx86 Adult and Pediatric Dermatology'),
(48543, 'https://ror.org/00bsjtn43', 'en', 1, 'https://ror.org/00bsjtn43 Bioscience Research'),
(48544, 'https://ror.org/02cmdcv60', 'en', 1, 'https://ror.org/02cmdcv60 Bamberg County Hospital'),
(48545, 'https://ror.org/045ns1x37', 'en', 1, 'https://ror.org/045ns1x37 Cancer Treatment Centers of America'),
(48546, 'https://ror.org/00ddfwx17', 'no_lang_code', 1, 'https://ror.org/00ddfwx17 BioVirtus (Poland)'),
(48547, 'https://ror.org/00wcrma30', 'en', 1, 'https://ror.org/00wcrma30 Capalaba Medical Centre'),
(48548, 'https://ror.org/0200vq221', 'no_lang_code', 1, 'https://ror.org/0200vq221 Bamrasnaradura Infectious Diseases Institute'),
(48549, 'https://ror.org/0181qem25', 'en', 1, 'https://ror.org/0181qem25 Capital Nephrology Associates'),
(48550, 'https://ror.org/00q9sa398', 'es', 1, 'https://ror.org/00q9sa398 Instituto Argentino de Diagnóstico y Tratamiento'),
(48551, 'https://ror.org/02fhzax24', 'no_lang_code', 1, 'https://ror.org/02fhzax24 Advanced Biological Laboratories (Luxembourg)'),
(48552, 'https://ror.org/033q83c72', 'en', 1, 'https://ror.org/033q83c72 Bangalore Diabetes Centre'),
(48553, 'https://ror.org/019qtj676', 'en', 1, 'https://ror.org/019qtj676 Cardiac And Vascular Research Center Of Northern Michigan'),
(48554, 'https://ror.org/04xxv0d51', 'en', 1, 'https://ror.org/04xxv0d51 Advanced Breast Care'),
(48555, 'https://ror.org/03jma7k75', 'en', 1, 'https://ror.org/03jma7k75 Aristocrat Plastic Surgery & MedAesthetics'),
(48556, 'https://ror.org/051ss5t53', 'en', 1, 'https://ror.org/051ss5t53 Cardiac Study Center'),
(48557, 'https://ror.org/04cext840', 'en', 1, 'https://ror.org/04cext840 Arizona Heart Hospital'),
(48558, 'https://ror.org/051nc1562', 'en', 1, 'https://ror.org/051nc1562 Orthopedic One'),
(48559, 'https://ror.org/032pnr897', 'en', 1, 'https://ror.org/032pnr897 Cardiology Associates of Savannah'),
(48560, 'https://ror.org/03bbek688', 'en', 1, 'https://ror.org/03bbek688 Blue Ridge Physical Therapy'),
(48561, 'https://ror.org/0399x8k58', 'en', 1, 'https://ror.org/0399x8k58 Advanced Dialysis Center'),
(48562, 'https://ror.org/00gytj534', 'en', 1, 'https://ror.org/00gytj534 Arkansas Cardiology'),
(48563, 'https://ror.org/028r7gw60', 'en', 1, 'https://ror.org/028r7gw60 Bobath memorial hospital 보바스기념병원'),
(48564, 'https://ror.org/05hwr2c31', 'en', 1, 'https://ror.org/05hwr2c31 Arlington Center for Dermatology'),
(48565, 'https://ror.org/023qwbz75', 'en', 1, 'https://ror.org/023qwbz75 Advanced Neurology Specialists'),
(48566, 'https://ror.org/04g219d41', 'en', 1, 'https://ror.org/04g219d41 Advanced Neurosciences Institute'),
(48567, 'https://ror.org/0360x1161', 'no_lang_code', 1, 'https://ror.org/0360x1161 BRCR Global (United States)'),
(48568, 'https://ror.org/01zx7tr29', 'en', 1, 'https://ror.org/01zx7tr29 Barlow Medical Centre'),
(48569, 'https://ror.org/00c3pmw05', 'en', 1, 'https://ror.org/00c3pmw05 Advanced Pharma'),
(48570, 'https://ror.org/02dvymp17', 'en', 1, 'https://ror.org/02dvymp17 Bonutti Clinic'),
(48571, 'https://ror.org/03e1yhr47', 'en', 1, 'https://ror.org/03e1yhr47 Advanced Research Institute'),
(48572, 'https://ror.org/03e2b2m72', 'en', 1, 'https://ror.org/03e2b2m72 CardioVasculäres Centrum Frankfurt Cardiovascular Center Frankfurt'),
(48573, 'https://ror.org/03fjqhb83', 'en', 1, 'https://ror.org/03fjqhb83 Boston Center for Memory'),
(48574, 'https://ror.org/037g47a86', 'no_lang_code', 1, 'https://ror.org/037g47a86 Arthur Asirvatham Hospital'),
(48575, 'https://ror.org/03526b919', 'en', 1, 'https://ror.org/03526b919 Boston Children''s Health Physicians'),
(48576, 'https://ror.org/05xckek43', 'en', 1, 'https://ror.org/05xckek43 Boston IVF'),
(48577, 'https://ror.org/04f62cx68', 'en', 1, 'https://ror.org/04f62cx68 Carmel Mountain Vision Care'),
(48578, 'https://ror.org/05hmy6316', 'en', 1, 'https://ror.org/05hmy6316 Bastian Voice Institute'),
(48579, 'https://ror.org/02nwxch96', 'en', 1, 'https://ror.org/02nwxch96 Asheville Cardiology Associates'),
(48580, 'https://ror.org/031kwjn35', 'en', 1, 'https://ror.org/031kwjn35 Bozeman Urgent Care Center'),
(48581, 'https://ror.org/03am9bm91', 'en', 1, 'https://ror.org/03am9bm91 Bateman Horne Center'),
(48582, 'https://ror.org/05mwhee50', 'no_lang_code', 1, 'https://ror.org/05mwhee50 Bradenton Neurology'),
(48583, 'https://ror.org/03ksg3960', 'en', 1, 'https://ror.org/03ksg3960 The Affiliated Hospital to Changchun University of Chinese Medicine 长春中医药大学附属医院'),
(48584, 'https://ror.org/046d56591', 'en', 1, 'https://ror.org/046d56591 Carolina Clinical Research Services'),
(48585, 'https://ror.org/00pkb6h65', 'en', 1, 'https://ror.org/00pkb6h65 Bath and North East Somerset Clinical Commissioning Group'),
(48586, 'https://ror.org/03wtqwa04', 'en', 1, 'https://ror.org/03wtqwa04 Westmead Institute'),
(48587, 'https://ror.org/02dynm054', 'en', 1, 'https://ror.org/02dynm054 Carolina Ear, Nose and Throat Clinic'),
(48588, 'https://ror.org/05dayh150', 'en', 1, 'https://ror.org/05dayh150 Baumann Cosmetic Dermatology'),
(48589, 'https://ror.org/019qn3016', 'en', 1, 'https://ror.org/019qn3016 Carolina Eyecare Physicians'),
(48590, 'https://ror.org/00a1cc659', 'de', 1, 'https://ror.org/00a1cc659 Asklepios Fachklinikum Brandenburg'),
(48591, 'https://ror.org/05h10sf50', 'en', 1, 'https://ror.org/05h10sf50 Brain Resource Center'),
(48592, 'https://ror.org/00888a070', 'en', 1, 'https://ror.org/00888a070 Carolina Neurosurgery and Spine Associates'),
(48593, 'https://ror.org/03symcd56', 'en', 1, 'https://ror.org/03symcd56 Bay State Clinical Trials'),
(48594, 'https://ror.org/040f4cr30', 'de', 1, 'https://ror.org/040f4cr30 Asklepios Klinik Weißenfels'),
(48595, 'https://ror.org/02kqrq831', 'en', 1, 'https://ror.org/02kqrq831 Comprehensive Urology'),
(48596, 'https://ror.org/03cdy5015', 'en', 1, 'https://ror.org/03cdy5015 Carolina Retina Center'),
(48597, 'https://ror.org/03j5af397', 'no_lang_code', 1, 'https://ror.org/03j5af397 Iomedico (Germany)'),
(48598, 'https://ror.org/05vk9vy20', 'en', 1, 'https://ror.org/05vk9vy20 Carolina Urologic Research Center'),
(48599, 'https://ror.org/00fayv870', 'en', 1, 'https://ror.org/00fayv870 Carolina Women''s Research and Wellness Center'),
(48600, 'https://ror.org/05g4hh326', 'en', 1, 'https://ror.org/05g4hh326 Baylor Scott & White All Saints Medical Center'),
(48601, 'https://ror.org/02rgsra75', 'en', 1, 'https://ror.org/02rgsra75 Associated Eyecare'),
(48602, 'https://ror.org/00q8tg479', 'en', 1, 'https://ror.org/00q8tg479 Brainclinics'),
(48603, 'https://ror.org/0517a1s55', 'en', 1, 'https://ror.org/0517a1s55 Associates in Neurology'),
(48604, 'https://ror.org/0382s8112', 'en', 1, 'https://ror.org/0382s8112 Carrick Institute'),
(48605, 'https://ror.org/021h1av98', 'en', 1, 'https://ror.org/021h1av98 Heart Hospital Baylor Plano'),
(48606, 'https://ror.org/02gx57r28', 'en', 1, 'https://ror.org/02gx57r28 Atlanta Center for Medical Research'),
(48607, 'https://ror.org/05q0c4c66', 'sv', 1, 'https://ror.org/05q0c4c66 Akademikliniken'),
(48608, 'https://ror.org/0036dh995', 'en', 1, 'https://ror.org/0036dh995 Brentwood Hospital'),
(48609, 'https://ror.org/04zwbbf36', 'en', 1, 'https://ror.org/04zwbbf36 Hamilton Dermatology'),
(48610, 'https://ror.org/03s235554', 'en', 1, 'https://ror.org/03s235554 Atlanta Gastroenterology Associates'),
(48611, 'https://ror.org/05p3n0372', 'en', 1, 'https://ror.org/05p3n0372 Signature Healthcare Brockton Hospital'),
(48612, 'https://ror.org/02ztnzj53', 'en', 1, 'https://ror.org/02ztnzj53 Beacon Clinical Research'),
(48613, 'https://ror.org/04z2f8y70', 'en', 1, 'https://ror.org/04z2f8y70 Cataract and Refractive Institute of Florida'),
(48614, 'https://ror.org/02veq9058', 'en', 1, 'https://ror.org/02veq9058 Beaver Medical Group'),
(48615, 'https://ror.org/010rhqv43', 'en', 1, 'https://ror.org/010rhqv43 Albany House Medical Centre'),
(48616, 'https://ror.org/02m3rg114', 'en', 1, 'https://ror.org/02m3rg114 Brooks Rehabilitation Clinical Research Center'),
(48617, 'https://ror.org/00fg07796', 'en', 1, 'https://ror.org/00fg07796 Behavioral Medical Research'),
(48618, 'https://ror.org/0018m2960', 'pt', 1, 'https://ror.org/0018m2960 Alergo Dermatologia Integrada'),
(48619, 'https://ror.org/010ern194', 'en', 1, 'https://ror.org/010ern194 Beijing Geriatric Hospital 北京老年医院'),
(48620, 'https://ror.org/036v92s32', 'en', 1, 'https://ror.org/036v92s32 Aurora Medical Center'),
(48621, 'https://ror.org/01m423d85', 'no_lang_code', 1, 'https://ror.org/01m423d85 Buddhachinaraj Hospital'),
(48622, 'https://ror.org/01e310919', 'en', 1, 'https://ror.org/01e310919 Monash Alfred Psychiatry Research centre'),
(48623, 'https://ror.org/00y6n9757', 'en', 1, 'https://ror.org/00y6n9757 Hematology Oncology Associates of Central New York'),
(48624, 'https://ror.org/02zvde082', 'en', 1, 'https://ror.org/02zvde082 Buena Vista Eye Care'),
(48625, 'https://ror.org/00sq30w29', 'en', 1, 'https://ror.org/00sq30w29 Autism & Developmental Medicine Institute'),
(48626, 'https://ror.org/02vhx9606', 'en', 1, 'https://ror.org/02vhx9606 Metro-Minnesota Community Oncology Research Consortium'),
(48627, 'https://ror.org/042hsjs98', 'en', 1, 'https://ror.org/042hsjs98 Buffalo Psychiatric Center'),
(48628, 'https://ror.org/02p6vdy49', 'en', 1, 'https://ror.org/02p6vdy49 Buffalo Spine Surgery'),
(48629, 'https://ror.org/04sc4fe33', 'en', 1, 'https://ror.org/04sc4fe33 Avail Clinical Research'),
(48630, 'https://ror.org/028tezs28', 'en', 1, 'https://ror.org/028tezs28 Henry Ford Allegiance Health'),
(48631, 'https://ror.org/02mfxyv79', 'en', 1, 'https://ror.org/02mfxyv79 Michigan Cancer Research Consortium'),
(48632, 'https://ror.org/00bgmja34', 'en', 1, 'https://ror.org/00bgmja34 Burke Pharmaceutical Research'),
(48633, 'https://ror.org/05fbx4s48', 'de', 1, 'https://ror.org/05fbx4s48 Allergiezentrum Wien West'),
(48634, 'https://ror.org/02ah6fj31', 'en', 1, 'https://ror.org/02ah6fj31 Burrell Behavioral Health'),
(48635, 'https://ror.org/04rn5ad82', 'en', 1, 'https://ror.org/04rn5ad82 Axiom Clinical Research of Florida'),
(48636, 'https://ror.org/03paq3x39', 'no_lang_code', 1, 'https://ror.org/03paq3x39 Celerion (United Kingdom)'),
(48637, 'https://ror.org/01gtvsc36', 'no_lang_code', 1, 'https://ror.org/01gtvsc36 Celerion (United States)'),
(48638, 'https://ror.org/0388avt91', 'en', 1, 'https://ror.org/0388avt91 Allergy Associates of the Palm Beaches'),
(48639, 'https://ror.org/05xwakr27', 'no_lang_code', 1, 'https://ror.org/05xwakr27 Cellex Cell Professionals (Germany)'),
(48640, 'https://ror.org/03h2qaw95', 'ro', 1, 'https://ror.org/03h2qaw95 Spitalul Universitar de Urgenţă Militar Central Dr. Carol Davila'),
(48641, 'https://ror.org/058djb788', 'en', 1, 'https://ror.org/058djb788 Cairo University hospitals مستشفيات جامعة القاهرة'),
(48642, 'https://ror.org/03pxm0s08', 'en', 1, 'https://ror.org/03pxm0s08 Centennial Heart Cardiovascular Consultants'),
(48643, 'https://ror.org/00jw0jd04', 'en', 1, 'https://ror.org/00jw0jd04 California Cancer Associates for Research and Excellence'),
(48644, 'https://ror.org/04j485w94', 'en', 1, 'https://ror.org/04j485w94 Allergy Associates Research Center'),
(48645, 'https://ror.org/01wayad04', 'en', 1, 'https://ror.org/01wayad04 Centennial Medical Group'),
(48646, 'https://ror.org/01h5ykb44', 'nl', 1, 'https://ror.org/01h5ykb44 AZ Sint-Lucas'),
(48647, 'https://ror.org/05c96b989', 'en', 1, 'https://ror.org/05c96b989 Balboa Nephrology Medical Group'),
(48648, 'https://ror.org/05qpsmp07', 'en', 1, 'https://ror.org/05qpsmp07 Center for Anxiety and Depression'),
(48649, 'https://ror.org/022wqqm54', 'en', 1, 'https://ror.org/022wqqm54 AlphaNet'),
(48650, 'https://ror.org/03jh7ct92', 'en', 1, 'https://ror.org/03jh7ct92 Center for Cancers and Blood Disorders'),
(48651, 'https://ror.org/00qnrkz57', 'en', 1, 'https://ror.org/00qnrkz57 Alpine Clinical Research Center'),
(48652, 'https://ror.org/03aene214', 'en', 1, 'https://ror.org/03aene214 California Medical Clinic for Headache'),
(48653, 'https://ror.org/004f2pf04', 'en', 1, 'https://ror.org/004f2pf04 California Retina Consultants'),
(48654, 'https://ror.org/01srvtz98', 'en', 1, 'https://ror.org/01srvtz98 Donor Network West'),
(48655, 'https://ror.org/01qk6rn93', 'en', 1, 'https://ror.org/01qk6rn93 Center for Digestive and Liver Diseases'),
(48656, 'https://ror.org/02hkdst29', 'en', 1, 'https://ror.org/02hkdst29 Arlington Dermatology'),
(48657, 'https://ror.org/03gstka59', 'en', 1, 'https://ror.org/03gstka59 Center for Orthopaedics'),
(48658, 'https://ror.org/02fe4a734', 'en', 1, 'https://ror.org/02fe4a734 Troy Gastroenterology'),
(48659, 'https://ror.org/03dhc8a95', 'en', 1, 'https://ror.org/03dhc8a95 Lothian Sexual Health'),
(48660, 'https://ror.org/00fymps95', 'en', 1, 'https://ror.org/00fymps95 Saint Francis Hospital'),
(48661, 'https://ror.org/05y09kt11', 'en', 1, 'https://ror.org/05y09kt11 Altoona Arthritis and Osteoporosis Center'),
(48662, 'https://ror.org/028a34j67', 'en', 1, 'https://ror.org/028a34j67 Calvary Health Care Bethlehem'),
(48663, 'https://ror.org/022q8ez38', 'en', 1, 'https://ror.org/022q8ez38 Altoona Center for Clinical Research'),
(48664, 'https://ror.org/01ahesd15', 'en', 1, 'https://ror.org/01ahesd15 Center for Prevention and Treatment of Infections'),
(48665, 'https://ror.org/00z7r8y22', 'en', 1, 'https://ror.org/00z7r8y22 Ambulance Victoria'),
(48666, 'https://ror.org/002h1n354', 'en', 1, 'https://ror.org/002h1n354 Partners HealthCare Connected Health'),
(48667, 'https://ror.org/01z37rs75', 'en', 1, 'https://ror.org/01z37rs75 Centers for Behavioral Health'),
(48668, 'https://ror.org/01r2r9d33', 'en', 1, 'https://ror.org/01r2r9d33 AMCR Institute'),
(48669, 'https://ror.org/00eah7161', 'en', 1, 'https://ror.org/00eah7161 Central Coast Nephrology'),
(48670, 'https://ror.org/02wxwcd04', 'en', 1, 'https://ror.org/02wxwcd04 Charlottesville Medical Research'),
(48671, 'https://ror.org/03h9hv091', 'en', 1, 'https://ror.org/03h9hv091 Central Dermatology'),
(48672, 'https://ror.org/04wq6zc77', 'en', 1, 'https://ror.org/04wq6zc77 American Health Network'),
(48673, 'https://ror.org/05epqd940', 'fr', 1, 'https://ror.org/05epqd940 Centre Hospitalier Départemental Vendée'),
(48674, 'https://ror.org/00m8atr56', 'en', 1, 'https://ror.org/00m8atr56 Canandaigua VA Medical Center'),
(48675, 'https://ror.org/02v0n2r32', 'en', 1, 'https://ror.org/02v0n2r32 Central Florida Eye Institute'),
(48676, 'https://ror.org/03gdsp770', 'en', 1, 'https://ror.org/03gdsp770 American Institute of Research'),
(48677, 'https://ror.org/04n3h0p93', 'en', 1, 'https://ror.org/04n3h0p93 Central Hospital of Zibo 淄博市中心医院'),
(48678, 'https://ror.org/01c15bz20', 'en', 1, 'https://ror.org/01c15bz20 Cancer Care Northwest'),
(48679, 'https://ror.org/01p87k189', 'en', 1, 'https://ror.org/01p87k189 American Heart Institute'),
(48680, 'https://ror.org/003np7j89', 'en', 1, 'https://ror.org/003np7j89 American Medical Research'),
(48681, 'https://ror.org/01y2xw046', 'en', 1, 'https://ror.org/01y2xw046 Central Indiana Gastroenterology Group'),
(48682, 'https://ror.org/0179s0197', 'en', 1, 'https://ror.org/0179s0197 Cancer Center of Kansas'),
(48683, 'https://ror.org/01m08pe77', 'en', 1, 'https://ror.org/01m08pe77 Central Kentucky Research Associates'),
(48684, 'https://ror.org/03z222993', 'en', 1, 'https://ror.org/03z222993 Clinic of Hope Clinique de l''Espérance'),
(48685, 'https://ror.org/0034wvw32', 'en', 1, 'https://ror.org/0034wvw32 Chesapeake Research Group'),
(48686, 'https://ror.org/037bjx704', 'en', 1, 'https://ror.org/037bjx704 Cancer Care South East'),
(48687, 'https://ror.org/00zzrkp92', 'en', 1, 'https://ror.org/00zzrkp92 Central People''s Hospital of Zhanjiang 湛江中心人民医院'),
(48688, 'https://ror.org/0498rx510', 'fr', 1, 'https://ror.org/0498rx510 Clinique Les Fontaines'),
(48689, 'https://ror.org/02t2fta32', 'en', 1, 'https://ror.org/02t2fta32 Cancer Foundation of India'),
(48690, 'https://ror.org/00jtd2k84', 'en', 1, 'https://ror.org/00jtd2k84 Central Texas Neurology Consultants'),
(48691, 'https://ror.org/05sbk8w28', 'fr', 1, 'https://ror.org/05sbk8w28 Clinique Jules Verne'),
(48692, 'https://ror.org/02zyvys51', 'en', 1, 'https://ror.org/02zyvys51 City Clinical Hospital Городская Клиническая больница № 57'),
(48693, 'https://ror.org/03edm8e08', 'fr', 1, 'https://ror.org/03edm8e08 Centre Azuréen de Cancérologie'),
(48694, 'https://ror.org/059fmxd48', 'fr', 1, 'https://ror.org/059fmxd48 Clinique Mutualiste Chirurgicale'),
(48695, 'https://ror.org/03cfq1g41', 'en', 1, 'https://ror.org/03cfq1g41 Cheyenne Regional Medical Center'),
(48696, 'https://ror.org/03m6mkf15', 'fr', 1, 'https://ror.org/03m6mkf15 Centre de Haute Energie'),
(48697, 'https://ror.org/009p3gr97', 'fr', 1, 'https://ror.org/009p3gr97 Clinique Paro Excellence'),
(48698, 'https://ror.org/013sb0f58', 'en', 1, 'https://ror.org/013sb0f58 Claghorn Lesem Research Clinic'),
(48699, 'https://ror.org/00k85zk31', 'en', 1, 'https://ror.org/00k85zk31 Clark and Watson Family Dental Practice'),
(48700, 'https://ror.org/00deg7n09', 'fr', 1, 'https://ror.org/00deg7n09 Centre de Radiothérapie Bayard'),
(48701, 'https://ror.org/047y7vc85', 'fr', 1, 'https://ror.org/047y7vc85 Centre de Recherche Dermatologique du Québec Métropolitain'),
(48702, 'https://ror.org/051nxta34', 'de', 1, 'https://ror.org/051nxta34 Landesfachhochschule für Gesundheitsberufe Claudiana'),
(48703, 'https://ror.org/052xee859', 'en', 1, 'https://ror.org/052xee859 Clayton Eye Center'),
(48704, 'https://ror.org/0442t6705', 'fr', 1, 'https://ror.org/0442t6705 Centre Intégré de Santé et de Services Sociaux des Laurentides'),
(48705, 'https://ror.org/01zrgk985', 'en', 1, 'https://ror.org/01zrgk985 ChiangRai Prachanukroh Hospital โรงพยาบาล เชียงรายประชานุเคราะห์'),
(48706, 'https://ror.org/05bdc8539', 'en', 1, 'https://ror.org/05bdc8539 Clayton Sleep Institute'),
(48707, 'https://ror.org/01znfak46', 'en', 1, 'https://ror.org/01znfak46 Cumberland Medical Center'),
(48708, 'https://ror.org/027sxqf09', 'fr', 1, 'https://ror.org/027sxqf09 Clinique Saint-Joseph'),
(48709, 'https://ror.org/05gn4rx69', 'no_lang_code', 1, 'https://ror.org/05gn4rx69 Dado Medical'),
(48710, 'https://ror.org/03aqtjw04', 'en', 1, 'https://ror.org/03aqtjw04 Dalian Maternal and Child Health Hospital 大连市妇产医院'),
(48711, 'https://ror.org/02y6vkj44', 'no_lang_code', 1, 'https://ror.org/02y6vkj44 Chicago Cornea Consultants (United States)'),
(48712, 'https://ror.org/051xfzj96', 'en', 1, 'https://ror.org/051xfzj96 Cleveland Eye Clinic'),
(48713, 'https://ror.org/03r3bgz24', 'en', 1, 'https://ror.org/03r3bgz24 Children''s Advocacy Center'),
(48714, 'https://ror.org/05thfh396', 'en', 1, 'https://ror.org/05thfh396 Seventh People''s Hospital of Dalian 大连市第七人民医院'),
(48715, 'https://ror.org/009cpej84', 'en', 1, 'https://ror.org/009cpej84 Dallas Surgical Group'),
(48716, 'https://ror.org/05egn8t81', 'fr', 1, 'https://ror.org/05egn8t81 Cliniques du Sud Luxembourg'),
(48717, 'https://ror.org/01aagdf71', 'en', 1, 'https://ror.org/01aagdf71 GI Care for Kids'),
(48718, 'https://ror.org/03ebabq41', 'no_lang_code', 1, 'https://ror.org/03ebabq41 Clinilabs (United States)'),
(48719, 'https://ror.org/00jtq6z81', 'fr', 1, 'https://ror.org/00jtq6z81 Hopitaux Civils de Colmar'),
(48720, 'https://ror.org/03r6kns77', 'fr', 1, 'https://ror.org/03r6kns77 Centre Hospitalier de Rochefort Rochefort General Hospital'),
(48721, 'https://ror.org/05p2st278', 'en', 1, 'https://ror.org/05p2st278 Davidorf Eye Group'),
(48722, 'https://ror.org/00vxrsr56', 'no_lang_code', 1, 'https://ror.org/00vxrsr56 Clinvest (United States)'),
(48723, 'https://ror.org/05dbj3194', 'en', 1, 'https://ror.org/05dbj3194 St. Bernards Clopton Clinic'),
(48724, 'https://ror.org/03w5sqz30', 'en', 1, 'https://ror.org/03w5sqz30 Davidson County Health Department'),
(48725, 'https://ror.org/02qxa1v47', 'fr', 1, 'https://ror.org/02qxa1v47 Centre Hospitalier Esquirol de Limoges'),
(48726, 'https://ror.org/05r5a0r20', 'es', 1, 'https://ror.org/05r5a0r20 Clínica CES'),
(48727, 'https://ror.org/05a9nb826', 'no_lang_code', 1, 'https://ror.org/05a9nb826 CNS Research (United States)'),
(48728, 'https://ror.org/03befa582', 'fr', 1, 'https://ror.org/03befa582 Centre Hospitalier Gabriel-Martin'),
(48729, 'https://ror.org/030fcrp07', 'es', 1, 'https://ror.org/030fcrp07 Clinica Chicamocha'),
(48730, 'https://ror.org/00e0qzz35', 'en', 1, 'https://ror.org/00e0qzz35 Dean Health Plan'),
(48731, 'https://ror.org/0020ts240', 'en', 1, 'https://ror.org/0020ts240 Coastal Carolina Research Center'),
(48732, 'https://ror.org/03ytpa045', 'fr', 1, 'https://ror.org/03ytpa045 Centre Hospitalier Henri Laborit'),
(48733, 'https://ror.org/04m8yw794', 'en', 1, 'https://ror.org/04m8yw794 DaVita Clinical Research (United States)'),
(48734, 'https://ror.org/04fy00g66', 'en', 1, 'https://ror.org/04fy00g66 Dawes Fretzin Clinical Research Group'),
(48735, 'https://ror.org/03eagt651', 'no_lang_code', 1, 'https://ror.org/03eagt651 Coastal Connecticut Research (United States)'),
(48736, 'https://ror.org/03pxvf904', 'it', 1, 'https://ror.org/03pxvf904 Clinica Mediterranea'),
(48737, 'https://ror.org/0457mvc71', 'en', 1, 'https://ror.org/0457mvc71 Children''s Hospital of Illinois'),
(48738, 'https://ror.org/00bkazd74', 'en', 1, 'https://ror.org/00bkazd74 Michigan Center for Skin Care Research'),
(48739, 'https://ror.org/02nkqtg17', 'en', 1, 'https://ror.org/02nkqtg17 Coborn Cancer Center'),
(48740, 'https://ror.org/028e15a50', 'es', 1, 'https://ror.org/028e15a50 Clínica Subiza'),
(48741, 'https://ror.org/02s2qzh96', 'fr', 1, 'https://ror.org/02s2qzh96 Centre Jean Bernard'),
(48742, 'https://ror.org/00hq18w20', 'en', 1, 'https://ror.org/00hq18w20 Coeur d Alene Arthritis Clinic'),
(48743, 'https://ror.org/00z9bse70', 'en', 1, 'https://ror.org/00z9bse70 Deaconess Clinic'),
(48744, 'https://ror.org/03efvsk51', 'no_lang_code', 1, 'https://ror.org/03efvsk51 Zemun Hospital'),
(48745, 'https://ror.org/05j7q4z53', 'en', 1, 'https://ror.org/05j7q4z53 Dearborn Orthopedics and Sports Medicine'),
(48746, 'https://ror.org/0363ync48', 'en', 1, 'https://ror.org/0363ync48 Deer Lodge Centre'),
(48747, 'https://ror.org/034a8v770', 'en', 1, 'https://ror.org/034a8v770 Collaborative Neuroscience Network'),
(48748, 'https://ror.org/021bdxd25', 'no_lang_code', 1, 'https://ror.org/021bdxd25 Clinical Inquest Center (United States)'),
(48749, 'https://ror.org/0168sna55', 'en', 1, 'https://ror.org/0168sna55 Clinical Insights'),
(48750, 'https://ror.org/047v0da79', 'en', 1, 'https://ror.org/047v0da79 Denver Arthritis Clinic'),
(48751, 'https://ror.org/015vn2982', 'en', 1, 'https://ror.org/015vn2982 Infectious Disease Consultants'),
(48752, 'https://ror.org/027yebm63', 'no_lang_code', 1, 'https://ror.org/027yebm63 Chilton Medical Center'),
(48753, 'https://ror.org/03c34x898', 'en', 1, 'https://ror.org/03c34x898 Colon and Rectal Surgery Associates'),
(48754, 'https://ror.org/05556yk85', 'en', 1, 'https://ror.org/05556yk85 Colorado Kidney Care'),
(48755, 'https://ror.org/01xyac661', 'en', 1, 'https://ror.org/01xyac661 Colorado Joint Replacement'),
(48756, 'https://ror.org/00ze01782', 'en', 1, 'https://ror.org/00ze01782 Denver Public Health'),
(48757, 'https://ror.org/00f7cza09', 'en', 1, 'https://ror.org/00f7cza09 Clinical Investigation Specialists'),
(48758, 'https://ror.org/00rp4mp63', 'en', 1, 'https://ror.org/00rp4mp63 Chonburi Cancer Hospital โรงพยาบาลมะเร็งชลบุรี'),
(48759, 'https://ror.org/03v3gdy33', 'en', 1, 'https://ror.org/03v3gdy33 Clinical Investigations of Texas'),
(48760, 'https://ror.org/05kd6q218', 'en', 1, 'https://ror.org/05kd6q218 Colorado Medical Research Center'),
(48761, 'https://ror.org/049zk2110', 'es', 1, 'https://ror.org/049zk2110 Centro de Retina Médica y Quirúrgica'),
(48762, 'https://ror.org/037rewq44', 'en', 1, 'https://ror.org/037rewq44 CNS Healthcare'),
(48763, 'https://ror.org/04wr5bw31', 'en', 1, 'https://ror.org/04wr5bw31 Colorado Orthopedic Consultants'),
(48764, 'https://ror.org/01fpzaj30', 'en', 1, 'https://ror.org/01fpzaj30 Colorado Retina Center'),
(48765, 'https://ror.org/02xbjar17', 'es', 1, 'https://ror.org/02xbjar17 Centro Oftalmológico Moreiras'),
(48766, 'https://ror.org/026t0qb38', 'en', 1, 'https://ror.org/026t0qb38 Clinical Research Associates of Tidewater'),
(48767, 'https://ror.org/00ej3ta37', 'en', 1, 'https://ror.org/00ej3ta37 Columbia Orthopaedic Group'),
(48768, 'https://ror.org/04g2fst78', 'pl', 1, 'https://ror.org/04g2fst78 InterLab Poznan'),
(48769, 'https://ror.org/04jwn5v63', 'en', 1, 'https://ror.org/04jwn5v63 Clinical Research Associates'),
(48770, 'https://ror.org/02enpyw90', 'en', 1, 'https://ror.org/02enpyw90 Century Health'),
(48771, 'https://ror.org/057skcn66', 'en', 1, 'https://ror.org/057skcn66 Chongqing Jiulongpo People''s Hospital'),
(48772, 'https://ror.org/03deam493', 'fr', 1, 'https://ror.org/03deam493 Centre Hospitalier Annecy Genevois'),
(48773, 'https://ror.org/022nvf535', 'en', 1, 'https://ror.org/022nvf535 People''s Hospital of Kaizhou District 重庆开县人民医院'),
(48774, 'https://ror.org/042bavh06', 'en', 1, 'https://ror.org/042bavh06 Meridien Research'),
(48775, 'https://ror.org/03s410108', 'en', 1, 'https://ror.org/03s410108 OrthoVirginia'),
(48776, 'https://ror.org/029v6mm06', 'en', 1, 'https://ror.org/029v6mm06 Chongqing Three Gorges Central Hospital 三峡中心医院'),
(48777, 'https://ror.org/01chgch18', 'en', 1, 'https://ror.org/01chgch18 Community Clinical Research'),
(48778, 'https://ror.org/03emy9w83', 'en', 1, 'https://ror.org/03emy9w83 Clinical Research Center of Nevada'),
(48779, 'https://ror.org/0446mfw72', 'fr', 1, 'https://ror.org/0446mfw72 Centre Hospitalier de La Rochelle'),
(48780, 'https://ror.org/00vr1yg49', 'en', 1, 'https://ror.org/00vr1yg49 Christian Family Service Centre'),
(48781, 'https://ror.org/056v5p787', 'fr', 1, 'https://ror.org/056v5p787 Centre Hospitalier Saint-Nazaire'),
(48782, 'https://ror.org/04bekvf09', 'en', 1, 'https://ror.org/04bekvf09 Community Research Initiative'),
(48783, 'https://ror.org/048ty4d76', 'en', 1, 'https://ror.org/048ty4d76 Christie''s Place'),
(48784, 'https://ror.org/05eb21k90', 'en', 1, 'https://ror.org/05eb21k90 Clinical Research Consortium'),
(48785, 'https://ror.org/00dadc735', 'en', 1, 'https://ror.org/00dadc735 Clinical Research Consulting'),
(48786, 'https://ror.org/00hzbxp35', 'da', 1, 'https://ror.org/00hzbxp35 Marselisborgcentret'),
(48787, 'https://ror.org/00aestp76', 'en', 1, 'https://ror.org/00aestp76 Compass Research'),
(48788, 'https://ror.org/009ywjj88', 'en', 1, 'https://ror.org/009ywjj88 Clinical Research Institute'),
(48789, 'https://ror.org/0578kzx16', 'en', 1, 'https://ror.org/0578kzx16 Complete Eye Care of Medina'),
(48790, 'https://ror.org/00et47318', 'en', 1, 'https://ror.org/00et47318 Clinical Research of South Florida'),
(48791, 'https://ror.org/03gg5y009', 'en', 1, 'https://ror.org/03gg5y009 Clinical Research of West Florida'),
(48792, 'https://ror.org/021ejmk29', 'en', 1, 'https://ror.org/021ejmk29 Compliant Clinical Research'),
(48793, 'https://ror.org/05mezvj34', 'en', 1, 'https://ror.org/05mezvj34 Comprehensive Clinical Research'),
(48794, 'https://ror.org/01m2t4z13', 'en', 1, 'https://ror.org/01m2t4z13 Clinical Research Solutions'),
(48795, 'https://ror.org/00px51556', 'en', 1, 'https://ror.org/00px51556 Center for Aesthetic Dermatology & Laser Surgery'),
(48796, 'https://ror.org/03np5z244', 'no_lang_code', 1, 'https://ror.org/03np5z244 DermResearch (United States)'),
(48797, 'https://ror.org/0527hjt81', 'en', 1, 'https://ror.org/0527hjt81 Clinical Science Institute'),
(48798, 'https://ror.org/05r04rp73', 'en', 1, 'https://ror.org/05r04rp73 Comprehensive Clinical Trials'),
(48799, 'https://ror.org/01s722583', 'en', 1, 'https://ror.org/01s722583 Clinical Study Center of Asheville'),
(48800, 'https://ror.org/02pkecv52', 'en', 1, 'https://ror.org/02pkecv52 Comprehensive Eye Care'),
(48801, 'https://ror.org/04kanse05', 'en', 1, 'https://ror.org/04kanse05 Clinical Trial Network'),
(48802, 'https://ror.org/047dw3k85', 'en', 1, 'https://ror.org/047dw3k85 Dermatology Associates of Seattle'),
(48803, 'https://ror.org/0312ka630', 'en', 1, 'https://ror.org/0312ka630 Clinical Trials New Zealand'),
(48804, 'https://ror.org/017vjfp21', 'en', 1, 'https://ror.org/017vjfp21 Clinical Trials of Texas'),
(48805, 'https://ror.org/03mekzy91', 'en', 1, 'https://ror.org/03mekzy91 Contraception Research and Development'),
(48806, 'https://ror.org/03362cn11', 'en', 1, 'https://ror.org/03362cn11 Doctors Community Hospital'),
(48807, 'https://ror.org/024f1d020', 'en', 1, 'https://ror.org/024f1d020 Consultants in Neurology'),
(48808, 'https://ror.org/0586ax657', 'en', 1, 'https://ror.org/0586ax657 Dermatology Associates of Tallahassee'),
(48809, 'https://ror.org/026s76z34', 'no_lang_code', 1, 'https://ror.org/026s76z34 Consumer Product Testing Company (United States)'),
(48810, 'https://ror.org/01h5bb625', 'en', 1, 'https://ror.org/01h5bb625 Doctors @ Carindale Mall'),
(48811, 'https://ror.org/02qfkky73', 'en', 1, 'https://ror.org/02qfkky73 COPD Foundation'),
(48812, 'https://ror.org/05xm6n608', 'en', 1, 'https://ror.org/05xm6n608 Dermatology Clinical Research Center of San Antonio'),
(48813, 'https://ror.org/05jh56b79', 'pt', 1, 'https://ror.org/05jh56b79 Coris Medicina Avançada'),
(48814, 'https://ror.org/03snkjj14', 'en', 1, 'https://ror.org/03snkjj14 Don Monti Memorial Research Foundation'),
(48815, 'https://ror.org/047wq3n50', 'fr', 1, 'https://ror.org/047wq3n50 Clinique Ambroise Paré'),
(48816, 'https://ror.org/023r70v40', 'fr', 1, 'https://ror.org/023r70v40 Clinique Charcot'),
(48817, 'https://ror.org/04jg41g64', 'fr', 1, 'https://ror.org/04jg41g64 Clinique Clémentville'),
(48818, 'https://ror.org/024w8hz81', 'en', 1, 'https://ror.org/024w8hz81 Cornea Associates of Texas'),
(48819, 'https://ror.org/03xzdzp97', 'en', 1, 'https://ror.org/03xzdzp97 Corneal Consultants of Colorado'),
(48820, 'https://ror.org/02tm1f187', 'en', 1, 'https://ror.org/02tm1f187 Downtown Women''s Health Care'),
(48821, 'https://ror.org/01mzeb713', 'en', 1, 'https://ror.org/01mzeb713 Cosmetic Laser Dermatology'),
(48822, 'https://ror.org/010htkn64', 'en', 1, 'https://ror.org/010htkn64 Dermatology Institute of Victoria'),
(48823, 'https://ror.org/0543wxy83', 'en', 1, 'https://ror.org/0543wxy83 Dermatology Research Center'),
(48824, 'https://ror.org/02ymhq538', 'nl', 1, 'https://ror.org/02ymhq538 Instituut Verbeeten'),
(48825, 'https://ror.org/03h1vde20', 'en', 1, 'https://ror.org/03h1vde20 Cosmedica'),
(48826, 'https://ror.org/024zgsn52', 'en', 1, 'https://ror.org/024zgsn52 Essex Cardiothoracic Centre'),
(48827, 'https://ror.org/00pk4q491', 'en', 1, 'https://ror.org/00pk4q491 Prism Eye Institute'),
(48828, 'https://ror.org/00bm25r07', 'en', 1, 'https://ror.org/00bm25r07 Clinical Physiology Associates'),
(48829, 'https://ror.org/01ypfvm35', 'nl', 1, 'https://ror.org/01ypfvm35 Dr Kolbach Kliniek'),
(48830, 'https://ror.org/03tm7cr19', 'en', 1, 'https://ror.org/03tm7cr19 Phoenix Medical Research'),
(48831, 'https://ror.org/035jrer59', 'it', 1, 'https://ror.org/035jrer59 Humanitas Gavazzeni'),
(48832, 'https://ror.org/04fzt5y42', 'en', 1, 'https://ror.org/04fzt5y42 Crystal Clinic Orthopedic Center'),
(48833, 'https://ror.org/01ps1fe93', 'en', 1, 'https://ror.org/01ps1fe93 Dr V Seshiah Diabetes Research Institute'),
(48834, 'https://ror.org/00swcah48', 'en', 1, 'https://ror.org/00swcah48 Gift of Hope Organ and Tissue Donor Network'),
(48835, 'https://ror.org/047yek725', 'en', 1, 'https://ror.org/047yek725 Dermatology Specialists'),
(48836, 'https://ror.org/008vra347', 'de', 1, 'https://ror.org/008vra347 DIAKO'),
(48837, 'https://ror.org/04vz87118', 'en', 1, 'https://ror.org/04vz87118 Gift of Life Michigan'),
(48838, 'https://ror.org/03mh6bp35', 'en', 1, 'https://ror.org/03mh6bp35 Dr. Kovil''s Diabetes Care Centre'),
(48839, 'https://ror.org/02ebbs344', 'en', 1, 'https://ror.org/02ebbs344 Dermatology Surgery & Laser Center'),
(48840, 'https://ror.org/011erhx85', 'en', 1, 'https://ror.org/011erhx85 Glaucoma Associates of New York'),
(48841, 'https://ror.org/0204m7391', 'en', 1, 'https://ror.org/0204m7391 Drs. Quinn, Foster & Associates'),
(48842, 'https://ror.org/03we40d69', 'en', 1, 'https://ror.org/03we40d69 Dermatology Treatment & Research Center'),
(48843, 'https://ror.org/05bby3d90', 'en', 1, 'https://ror.org/05bby3d90 Glaucoma Associates of Texas'),
(48844, 'https://ror.org/05afz7j54', 'en', 1, 'https://ror.org/05afz7j54 University Foot & Ankle Institute'),
(48845, 'https://ror.org/051bbf974', 'en', 1, 'https://ror.org/051bbf974 Drug Studies America'),
(48846, 'https://ror.org/03y932z67', 'en', 1, 'https://ror.org/03y932z67 Foothill Family Clinic'),
(48847, 'https://ror.org/02syszr02', 'en', 1, 'https://ror.org/02syszr02 Drug Trials America');
INSERT INTO `rors` VALUES
(48848, 'https://ror.org/0341xp563', 'en', 1, 'https://ror.org/0341xp563 Global Scientific Innovations'),
(48849, 'https://ror.org/02t9aa070', 'en', 1, 'https://ror.org/02t9aa070 Excel Diagnostics Imaging'),
(48850, 'https://ror.org/044qh7c61', 'en', 1, 'https://ror.org/044qh7c61 Good Samaritan Regional Medical Center'),
(48851, 'https://ror.org/03kgyz465', 'de', 1, 'https://ror.org/03kgyz465 Diabetes-Akademie'),
(48852, 'https://ror.org/01rh2et08', 'en', 1, 'https://ror.org/01rh2et08 Dermatology, Laser & Vein Specialists of the Carolinas'),
(48853, 'https://ror.org/04gx6f055', 'en', 1, 'https://ror.org/04gx6f055 Good Samaritan Society'),
(48854, 'https://ror.org/03xerja39', 'no_lang_code', 1, 'https://ror.org/03xerja39 Great Lakes Research Group (United States)'),
(48855, 'https://ror.org/03jmq3a29', 'no_lang_code', 1, 'https://ror.org/03jmq3a29 Excell Research (United States)'),
(48856, 'https://ror.org/0419jw418', 'en', 1, 'https://ror.org/0419jw418 Greater Pittsburgh Orthopaedic Associates'),
(48857, 'https://ror.org/04q1vk257', 'en', 1, 'https://ror.org/04q1vk257 DuPage Mental Health Services'),
(48858, 'https://ror.org/018tky159', 'no_lang_code', 1, 'https://ror.org/018tky159 Green Beat (Austria) Green Beat - Institut für Nährstoff-Forschung und Sporternährung'),
(48859, 'https://ror.org/03nkwrm72', 'fr', 1, 'https://ror.org/03nkwrm72 Centre Hospitalier de Fougères'),
(48860, 'https://ror.org/002s05q87', 'en', 1, 'https://ror.org/002s05q87 Grekin Skin Institute'),
(48861, 'https://ror.org/0140zhz75', 'en', 1, 'https://ror.org/0140zhz75 Durrie Vision'),
(48862, 'https://ror.org/01m9bsg74', 'en', 1, 'https://ror.org/01m9bsg74 Four Seasons'),
(48863, 'https://ror.org/02xna2753', 'no_lang_code', 1, 'https://ror.org/02xna2753 Extendicare (Canada)'),
(48864, 'https://ror.org/03ns7pw86', 'en', 1, 'https://ror.org/03ns7pw86 Dermatrials Research'),
(48865, 'https://ror.org/02grbwy50', 'en', 1, 'https://ror.org/02grbwy50 Dynamed Clinical Research'),
(48866, 'https://ror.org/01bygr704', 'no_lang_code', 1, 'https://ror.org/01bygr704 Grunberger Diabetes Institute'),
(48867, 'https://ror.org/04vwp4t32', 'hu', 1, 'https://ror.org/04vwp4t32 Fourmed Kft Gyógyház'),
(48868, 'https://ror.org/0129d8h54', 'en', 1, 'https://ror.org/0129d8h54 Ear Consultants of Georgia'),
(48869, 'https://ror.org/03tst3378', 'en', 1, 'https://ror.org/03tst3378 Eye Care Associates'),
(48870, 'https://ror.org/02wvbzy96', 'en', 1, 'https://ror.org/02wvbzy96 GSA Research'),
(48871, 'https://ror.org/04k3g6v88', 'en', 1, 'https://ror.org/04k3g6v88 Ear Institute of Chicago'),
(48872, 'https://ror.org/05b05qq44', 'en', 1, 'https://ror.org/05b05qq44 Eye Center of Southern Connecticut'),
(48873, 'https://ror.org/03zzhz546', 'en', 1, 'https://ror.org/03zzhz546 Eye Centers Of Florida'),
(48874, 'https://ror.org/048gafz17', 'en', 1, 'https://ror.org/048gafz17 Ear Medical Group'),
(48875, 'https://ror.org/00fbwv278', 'en', 1, 'https://ror.org/00fbwv278 Liuzhou Maternal and Child Health Hospital 柳州市妇幼保健院'),
(48876, 'https://ror.org/053yw1360', 'en', 1, 'https://ror.org/053yw1360 Nanxi Mountain Hospital 广西纳西山医院'),
(48877, 'https://ror.org/0379rbe49', 'en', 1, 'https://ror.org/0379rbe49 Eye Surgeons of Indiana'),
(48878, 'https://ror.org/00bvby867', 'en', 1, 'https://ror.org/00bvby867 East Valley Hematology & Oncology'),
(48879, 'https://ror.org/029z6rp26', 'en', 1, 'https://ror.org/029z6rp26 DermDox Dermatology Centers'),
(48880, 'https://ror.org/02wy7f107', 'en', 1, 'https://ror.org/02wy7f107 East Wellington Family Health Team'),
(48881, 'https://ror.org/05h4v5m71', 'en', 1, 'https://ror.org/05h4v5m71 Smith Clinic'),
(48882, 'https://ror.org/01z6cw088', 'en', 1, 'https://ror.org/01z6cw088 Chinese Academy of Medical Sciences Dermatology Hospital'),
(48883, 'https://ror.org/02jqk1764', 'en', 1, 'https://ror.org/02jqk1764 Desert Regional Medical Center'),
(48884, 'https://ror.org/0065dxb90', 'en', 1, 'https://ror.org/0065dxb90 Fairfield Behavioral Health Services'),
(48885, 'https://ror.org/000r83295', 'en', 1, 'https://ror.org/000r83295 Family Allergy and Asthma Research Institute'),
(48886, 'https://ror.org/01gyggx34', 'no_lang_code', 1, 'https://ror.org/01gyggx34 Fukuoka Kinen Hospital 福岡記念病院'),
(48887, 'https://ror.org/03gsdfk97', 'en', 1, 'https://ror.org/03gsdfk97 Eastside Comprehensive Medical Center'),
(48888, 'https://ror.org/017fwpp88', 'en', 1, 'https://ror.org/017fwpp88 Ecclesfield GP'),
(48889, 'https://ror.org/02jg1vm67', 'en', 1, 'https://ror.org/02jg1vm67 Diabetes Care & Hormone Clinic'),
(48890, 'https://ror.org/02z2bdj68', 'es', 1, 'https://ror.org/02z2bdj68 Fundació ACE'),
(48891, 'https://ror.org/00nhrdk04', 'en', 1, 'https://ror.org/00nhrdk04 Lucas Research'),
(48892, 'https://ror.org/02kmtme09', 'en', 1, 'https://ror.org/02kmtme09 Diabetes & Endocrinology Specialists'),
(48893, 'https://ror.org/04wnzzd87', 'es', 1, 'https://ror.org/04wnzzd87 Clínica Foscal Foscal Hospital'),
(48894, 'https://ror.org/02ebjnx89', 'en', 1, 'https://ror.org/02ebjnx89 Diabetes & Endocrine Associates'),
(48895, 'https://ror.org/0530z0775', 'en', 1, 'https://ror.org/0530z0775 Meadows Dental Clinic'),
(48896, 'https://ror.org/00qyrn735', 'en', 1, 'https://ror.org/00qyrn735 Diabetes Care and Research Foundation'),
(48897, 'https://ror.org/019hjez96', 'es', 1, 'https://ror.org/019hjez96 Fundación Reina Isabel'),
(48898, 'https://ror.org/00v1e3m57', 'no_lang_code', 1, 'https://ror.org/00v1e3m57 Futaba clinic 双葉クリニック'),
(48899, 'https://ror.org/05ss6ff26', 'en', 1, 'https://ror.org/05ss6ff26 State Budget Institution of Health St. Petersburg Clinical Research Center Specialized Types of Medical Care Государственное бюджетное учреждение здравоохранения «Санкт-Петербургский клинический научно-практический центр специализированных видов медицинской помощи (онкологический)»'),
(48900, 'https://ror.org/02t9yy051', 'en', 1, 'https://ror.org/02t9yy051 Future Search Trials'),
(48901, 'https://ror.org/03egjxh21', 'en', 1, 'https://ror.org/03egjxh21 FXM Research'),
(48902, 'https://ror.org/02getev82', 'en', 1, 'https://ror.org/02getev82 El Camino Urology Medical Group'),
(48903, 'https://ror.org/015hpqr35', 'en', 1, 'https://ror.org/015hpqr35 Gabrail Cancer Center'),
(48904, 'https://ror.org/04p16dr10', 'en', 1, 'https://ror.org/04p16dr10 Diabetes Thyroid Hormone Research Institute'),
(48905, 'https://ror.org/04e7afm38', 'en', 1, 'https://ror.org/04e7afm38 Gainesville Obstetrics & Gynecology'),
(48906, 'https://ror.org/03j4y6x14', 'en', 1, 'https://ror.org/03j4y6x14 Diablo Clinical Research'),
(48907, 'https://ror.org/01vnr7x82', 'de', 1, 'https://ror.org/01vnr7x82 Diabetes-Zentrum Quakenbrück'),
(48908, 'https://ror.org/017fd6822', 'en', 1, 'https://ror.org/017fd6822 Gastroenterology Associates Of Western Michigan'),
(48909, 'https://ror.org/01vst1n89', 'no_lang_code', 1, 'https://ror.org/01vst1n89 Diacon Hospital'),
(48910, 'https://ror.org/008xb1b94', 'de', 1, 'https://ror.org/008xb1b94 Elisabeth-Krankenhaus Essen'),
(48911, 'https://ror.org/031rwv086', 'en', 1, 'https://ror.org/031rwv086 Diagnostics Research Group'),
(48912, 'https://ror.org/04zf2bt80', 'de', 1, 'https://ror.org/04zf2bt80 Diakonie-Klinikum Stuttgart'),
(48913, 'https://ror.org/00xewv188', 'de', 1, 'https://ror.org/00xewv188 Dialysezentrum Potsdam'),
(48914, 'https://ror.org/01gp9ja19', 'en', 1, 'https://ror.org/01gp9ja19 Emory Johns Creek Hospital'),
(48915, 'https://ror.org/01v1rey73', 'no_lang_code', 1, 'https://ror.org/01v1rey73 Pierian Biosciences (United States)'),
(48916, 'https://ror.org/04gka5c82', 'pt', 1, 'https://ror.org/04gka5c82 Hospital Fernandes Távora'),
(48917, 'https://ror.org/01yr7qe95', 'en', 1, 'https://ror.org/01yr7qe95 Empire Eye Physicians'),
(48918, 'https://ror.org/03fnkr060', 'no_lang_code', 1, 'https://ror.org/03fnkr060 Endocrine Research Solutions (United States)'),
(48919, 'https://ror.org/00kvc5j94', 'en', 1, 'https://ror.org/00kvc5j94 Gulfcoast Clinical Research Center'),
(48920, 'https://ror.org/042y59x42', 'en', 1, 'https://ror.org/042y59x42 Fertility Care Multan'),
(48921, 'https://ror.org/052zm4082', 'en', 1, 'https://ror.org/052zm4082 Discover Vision Centers'),
(48922, 'https://ror.org/004qa4525', 'en', 1, 'https://ror.org/004qa4525 Endocrinology Northwest'),
(48923, 'https://ror.org/004z1yb80', 'en', 1, 'https://ror.org/004z1yb80 Dishler Laser Institute'),
(48924, 'https://ror.org/0513bka31', 'en', 1, 'https://ror.org/0513bka31 Fertility Center of San Antonio'),
(48925, 'https://ror.org/02fwc3866', 'en', 1, 'https://ror.org/02fwc3866 Gwinnett Dermatology'),
(48926, 'https://ror.org/03n9e5p29', 'no_lang_code', 1, 'https://ror.org/03n9e5p29 Epi-Q (United States)'),
(48927, 'https://ror.org/02y3vvj84', 'ro', 1, 'https://ror.org/02y3vvj84 Spitalul Clinic Judetean de Urgenta Târgu Mureş'),
(48928, 'https://ror.org/0014n6t23', 'fr', 1, 'https://ror.org/0014n6t23 Centre Hospitalier de Roubaix Hospital Center De Roubaix'),
(48929, 'https://ror.org/03dma0w34', 'no_lang_code', 1, 'https://ror.org/03dma0w34 Stem Cell Technology (Taiwan)'),
(48930, 'https://ror.org/03d9hbe08', 'en', 1, 'https://ror.org/03d9hbe08 Harvard Eye Associates'),
(48931, 'https://ror.org/0343e3s97', 'no_lang_code', 1, 'https://ror.org/0343e3s97 Epic Imaging (United States)'),
(48932, 'https://ror.org/004vnpm81', 'sv', 1, 'https://ror.org/004vnpm81 Hässleholms Sjukhus'),
(48933, 'https://ror.org/03h07zp96', 'de', 1, 'https://ror.org/03h07zp96 Evangelisches Krankenhaus Alsterdorf'),
(48934, 'https://ror.org/0433rew55', 'de', 1, 'https://ror.org/0433rew55 Doctors at the Skin and Laser Centre Haut- und Lasercentrum Potsdam'),
(48935, 'https://ror.org/04ph8tc17', 'no_lang_code', 1, 'https://ror.org/04ph8tc17 Finnair (Finland)'),
(48936, 'https://ror.org/00phamx97', 'no_lang_code', 1, 'https://ror.org/00phamx97 Haber Dermatology and Cosmetic Surgery (United States)'),
(48937, 'https://ror.org/0240vc720', 'nl', 1, 'https://ror.org/0240vc720 Havenziekenhuis Rotterdam'),
(48938, 'https://ror.org/03eeky579', 'en', 1, 'https://ror.org/03eeky579 Horizons Clinical Research Center'),
(48939, 'https://ror.org/0384v4x96', 'en', 1, 'https://ror.org/0384v4x96 Shearwater Health'),
(48940, 'https://ror.org/05k22fj16', 'en', 1, 'https://ror.org/05k22fj16 Hammoud Hospital University Medical Center مستشفى حمود'),
(48941, 'https://ror.org/057c61d28', 'en', 1, 'https://ror.org/057c61d28 Georgia Cancer Specialists'),
(48942, 'https://ror.org/01pys9003', 'pl', 1, 'https://ror.org/01pys9003 Hospicjum im. Ks. Eugeniusza Dutkiewicza SAC'),
(48943, 'https://ror.org/03cc5yw72', 'no_lang_code', 1, 'https://ror.org/03cc5yw72 Health Awareness (United States)'),
(48944, 'https://ror.org/043d34r22', 'en', 1, 'https://ror.org/043d34r22 Fleming Island Center For Clinical Research'),
(48945, 'https://ror.org/01ypy9x82', 'en', 1, 'https://ror.org/01ypy9x82 Georgia Center for Women'),
(48946, 'https://ror.org/02qk1yb72', 'en', 1, 'https://ror.org/02qk1yb72 Health Intervention and Technology Assessment Program โครงการประเมินเทคโนโลยีและนโยบายด้านสุขภาพ'),
(48947, 'https://ror.org/032e62r85', 'en', 1, 'https://ror.org/032e62r85 Hamzavi Dermatology'),
(48948, 'https://ror.org/02dqxsj77', 'en', 1, 'https://ror.org/02dqxsj77 Health Protection and Research Organisation'),
(48949, 'https://ror.org/01sxaaw11', 'en', 1, 'https://ror.org/01sxaaw11 Florida Center for Gastroenterology'),
(48950, 'https://ror.org/00fz5gq57', 'en', 1, 'https://ror.org/00fz5gq57 Georgia Clinical Research'),
(48951, 'https://ror.org/039293a32', 'en', 1, 'https://ror.org/039293a32 Florida Fertility Institute'),
(48952, 'https://ror.org/00sxgd769', 'en', 1, 'https://ror.org/00sxgd769 Hear and Say'),
(48953, 'https://ror.org/007pp1604', 'en', 1, 'https://ror.org/007pp1604 Harbin Clinic'),
(48954, 'https://ror.org/03hxb5v03', 'en', 1, 'https://ror.org/03hxb5v03 Georgia Institute for Plastic Surgery'),
(48955, 'https://ror.org/04x2wfk77', 'en', 1, 'https://ror.org/04x2wfk77 Downie Harper and Shanks Dental Practice'),
(48956, 'https://ror.org/05tq1bh21', 'no_lang_code', 1, 'https://ror.org/05tq1bh21 Hospital Bandeirantes'),
(48957, 'https://ror.org/04wyb0a08', 'en', 1, 'https://ror.org/04wyb0a08 AdventHealth Daytona Beach'),
(48958, 'https://ror.org/03yd2ta47', 'en', 1, 'https://ror.org/03yd2ta47 Private Hospital & Heart Center Varde'),
(48959, 'https://ror.org/0205d0r45', 'en', 1, 'https://ror.org/0205d0r45 Avera Heart Hospital'),
(48960, 'https://ror.org/01nxwmg26', 'en', 1, 'https://ror.org/01nxwmg26 Georgia Urology'),
(48961, 'https://ror.org/027hs4a27', 'en', 1, 'https://ror.org/027hs4a27 Heartland Clinical Research'),
(48962, 'https://ror.org/05h8tj134', 'en', 1, 'https://ror.org/05h8tj134 Blanca Paloma Hospital'),
(48963, 'https://ror.org/02d0gmv36', 'no_lang_code', 1, 'https://ror.org/02d0gmv36 Kingmed Diagnostics'),
(48964, 'https://ror.org/024vd1y77', 'en', 1, 'https://ror.org/024vd1y77 Heartland Research Associates'),
(48965, 'https://ror.org/02e3qt588', 'en', 1, 'https://ror.org/02e3qt588 Roosevelt Hospital'),
(48966, 'https://ror.org/04wn5rx73', 'en', 1, 'https://ror.org/04wn5rx73 Getwell Hospital and Research Institute'),
(48967, 'https://ror.org/01smtb607', 'es', 1, 'https://ror.org/01smtb607 Hospital Clínica Benidorm'),
(48968, 'https://ror.org/05csfs312', 'ca', 1, 'https://ror.org/05csfs312 Hospital Sant Jaume de Calella'),
(48969, 'https://ror.org/00qs7xz30', 'en', 1, 'https://ror.org/00qs7xz30 IGO Medical Group'),
(48970, 'https://ror.org/019m52y27', 'en', 1, 'https://ror.org/019m52y27 São Camilo Hospital'),
(48971, 'https://ror.org/01ft76595', 'en', 1, 'https://ror.org/01ft76595 Hejian People''s Hospital 河间市人民医院'),
(48972, 'https://ror.org/01spkt797', 'de', 1, 'https://ror.org/01spkt797 Ihre-Radiologen'),
(48973, 'https://ror.org/04ncnj403', 'de', 1, 'https://ror.org/04ncnj403 HELIOS Albert-Schweitzer-Klinik Northeim'),
(48974, 'https://ror.org/05pjfxx59', 'en', 1, 'https://ror.org/05pjfxx59 Illinois Bone and Joint Institute'),
(48975, 'https://ror.org/039j5gk75', 'pt', 1, 'https://ror.org/039j5gk75 Instituto de Medicina Avançada'),
(48976, 'https://ror.org/03kecdv70', 'en', 1, 'https://ror.org/03kecdv70 International Clinical Research Institute'),
(48977, 'https://ror.org/04qbxyj42', 'pt', 1, 'https://ror.org/04qbxyj42 Hospital de Base'),
(48978, 'https://ror.org/04fwr3777', 'en', 1, 'https://ror.org/04fwr3777 International Dermatology Research'),
(48979, 'https://ror.org/03adra252', 'en', 1, 'https://ror.org/03adra252 Indiana Clinical Trials Center'),
(48980, 'https://ror.org/003f4j224', 'en', 1, 'https://ror.org/003f4j224 Henderson Behavioral Health'),
(48981, 'https://ror.org/04t180b28', 'en', 1, 'https://ror.org/04t180b28 Indiana Spine Group'),
(48982, 'https://ror.org/01981pe95', 'en', 1, 'https://ror.org/01981pe95 International Rescue Committee'),
(48983, 'https://ror.org/05y345c41', 'es', 1, 'https://ror.org/05y345c41 Hospital Jerez Puerta del Sur'),
(48984, 'https://ror.org/019se1k35', 'en', 1, 'https://ror.org/019se1k35 Iowa Orthopaedic Center'),
(48985, 'https://ror.org/00scfzf83', 'es', 1, 'https://ror.org/00scfzf83 Hospital Universitario Dexeus'),
(48986, 'https://ror.org/00zh4qk67', 'es', 1, 'https://ror.org/00zh4qk67 Hospital Universitario de Santander'),
(48987, 'https://ror.org/01gptg397', 'en', 1, 'https://ror.org/01gptg397 Robert Cizik Eye Clinic'),
(48988, 'https://ror.org/03nk3j490', 'pt', 1, 'https://ror.org/03nk3j490 Hospital Vila Franca de Xira'),
(48989, 'https://ror.org/00zq17y52', 'es', 1, 'https://ror.org/00zq17y52 Hospital Universitario del Tajo Hospital del Tajo'),
(48990, 'https://ror.org/059b87n81', 'fr', 1, 'https://ror.org/059b87n81 Infirmerie Protestante'),
(48991, 'https://ror.org/0009v8r26', 'no_lang_code', 1, 'https://ror.org/0009v8r26 Inflamax Research (Canada)'),
(48992, 'https://ror.org/00tbnyh02', 'en', 1, 'https://ror.org/00tbnyh02 Hermitage Medicentres'),
(48993, 'https://ror.org/04dzaw261', 'pt', 1, 'https://ror.org/04dzaw261 Hospital do Coração'),
(48994, 'https://ror.org/01v1fj170', 'en', 1, 'https://ror.org/01v1fj170 Infusion Associates'),
(48995, 'https://ror.org/03cy8qt72', 'en', 1, 'https://ror.org/03cy8qt72 Heze Municipal Hospital'),
(48996, 'https://ror.org/05rcqmt52', 'en', 1, 'https://ror.org/05rcqmt52 Injury Care Medical Center'),
(48997, 'https://ror.org/030qmj755', 'no_lang_code', 1, 'https://ror.org/030qmj755 Higashi Takarazuka Satoh Hospital'),
(48998, 'https://ror.org/03yqk8w89', 'en', 1, 'https://ror.org/03yqk8w89 Houston Eye Associates'),
(48999, 'https://ror.org/01ff05746', 'es', 1, 'https://ror.org/01ff05746 Hospital Doctor José Molina Orosa'),
(49000, 'https://ror.org/0486db050', 'no_lang_code', 1, 'https://ror.org/0486db050 Innovaderm (Canada)'),
(49001, 'https://ror.org/02q44wp02', 'en', 1, 'https://ror.org/02q44wp02 Highmark Blue Cross Blue Shield'),
(49002, 'https://ror.org/0055r4662', 'en', 1, 'https://ror.org/0055r4662 Houston Foot and Ankle Care'),
(49003, 'https://ror.org/042fam363', 'en', 1, 'https://ror.org/042fam363 Innovations for Poverty Action'),
(49004, 'https://ror.org/052t3p256', 'fr', 1, 'https://ror.org/052t3p256 Hôpital Joseph-Ducuing'),
(49005, 'https://ror.org/05jb62w23', 'en', 1, 'https://ror.org/05jb62w23 Houston Perinatal Associates'),
(49006, 'https://ror.org/054r3wx31', 'no_lang_code', 1, 'https://ror.org/054r3wx31 Hill Top Research (United States)'),
(49007, 'https://ror.org/02p1ne648', 'en', 1, 'https://ror.org/02p1ne648 Hillcrest Clinical Research'),
(49008, 'https://ror.org/04ct6nr93', 'en', 1, 'https://ror.org/04ct6nr93 Innovations for Poverty Action'),
(49009, 'https://ror.org/02ym95m10', 'no_lang_code', 1, 'https://ror.org/02ym95m10 Hospital e Maternidade Celso Pierro'),
(49010, 'https://ror.org/048jha534', 'en', 1, 'https://ror.org/048jha534 Hillcrest Family Practice'),
(49011, 'https://ror.org/041bkd737', 'en', 1, 'https://ror.org/041bkd737 Huai''an City Fourth People''s Hospital 淮安市第四人民医院'),
(49012, 'https://ror.org/01tpcjr87', 'en', 1, 'https://ror.org/01tpcjr87 Innovative Clinical Research'),
(49013, 'https://ror.org/04mm94t86', 'no_lang_code', 1, 'https://ror.org/04mm94t86 Isomark (United States)'),
(49014, 'https://ror.org/013k6aa84', 'en', 1, 'https://ror.org/013k6aa84 Innovative Research of West Florida'),
(49015, 'https://ror.org/00xabh388', 'en', 1, 'https://ror.org/00xabh388 Hubei Provincial Hospital of Traditional Chinese Medicine 湖北省中醫院'),
(49016, 'https://ror.org/01p35qm90', 'de', 1, 'https://ror.org/01p35qm90 HNO-Praxis'),
(49017, 'https://ror.org/0149t5h43', 'es', 1, 'https://ror.org/0149t5h43 Hospital General Dr Aurelio Valdivieso'),
(49018, 'https://ror.org/0551a9d91', 'en', 1, 'https://ror.org/0551a9d91 Insight Therapeutics'),
(49019, 'https://ror.org/04517sd05', 'es', 1, 'https://ror.org/04517sd05 Hospital General Universitario Los Arcos del Mar Menor'),
(49020, 'https://ror.org/02xhgjz70', 'en', 1, 'https://ror.org/02xhgjz70 Hubei Zhongshan Hospital 湖北省中山医院'),
(49021, 'https://ror.org/029yrp127', 'da', 1, 'https://ror.org/029yrp127 Hudklinikken'),
(49022, 'https://ror.org/03m2d4v09', 'en', 1, 'https://ror.org/03m2d4v09 Hudson Dermatology'),
(49023, 'https://ror.org/05ws0rr53', 'en', 1, 'https://ror.org/05ws0rr53 Hoopes Vision'),
(49024, 'https://ror.org/03qpq8w95', 'en', 1, 'https://ror.org/03qpq8w95 Family Beginnings'),
(49025, 'https://ror.org/04v43ea29', 'fr', 1, 'https://ror.org/04v43ea29 Institut Hospitalier Franco Britannique'),
(49026, 'https://ror.org/00t2yvm83', 'en', 1, 'https://ror.org/00t2yvm83 Hope Research Institute'),
(49027, 'https://ror.org/02nsw7d06', 'en', 1, 'https://ror.org/02nsw7d06 IVI Murcia Clinic'),
(49028, 'https://ror.org/00swxwg31', 'es', 1, 'https://ror.org/00swxwg31 Hospital Laboral Solimat'),
(49029, 'https://ror.org/03cqs6978', 'no_lang_code', 1, 'https://ror.org/03cqs6978 Clinlogix (Germany)'),
(49030, 'https://ror.org/00s7mhw17', 'pt', 1, 'https://ror.org/00s7mhw17 Hospital Leforte'),
(49031, 'https://ror.org/054ztez58', 'en', 1, 'https://ror.org/054ztez58 Institute for Female Pelvic Medicine and Reconstructive Surgery'),
(49032, 'https://ror.org/026qe1m81', 'fr', 1, 'https://ror.org/026qe1m81 Hôpital de Morges'),
(49033, 'https://ror.org/045xnj057', 'no_lang_code', 1, 'https://ror.org/045xnj057 J&S Studies'),
(49034, 'https://ror.org/04qyzam39', 'fr', 1, 'https://ror.org/04qyzam39 Hôpital Privé Jacques Cartier'),
(49035, 'https://ror.org/00k5pj069', 'es', 1, 'https://ror.org/00k5pj069 Hospital General Nuestra Señora del Prado'),
(49036, 'https://ror.org/02jsxnc12', 'de', 1, 'https://ror.org/02jsxnc12 Klinikum Arnsberg'),
(49037, 'https://ror.org/00w877a33', 'en', 1, 'https://ror.org/00w877a33 Little Company of Mary Hospital'),
(49038, 'https://ror.org/04b8vmp10', 'en', 1, 'https://ror.org/04b8vmp10 Jæren District Psychiatric Centre Jæren distriktspsykiatriske senter'),
(49039, 'https://ror.org/03s2yrh28', 'en', 1, 'https://ror.org/03s2yrh28 Little Rock Family Practice Clinic'),
(49040, 'https://ror.org/03qjaaq62', 'en', 1, 'https://ror.org/03qjaaq62 Institute Of Perinatology Obstetrics And Gynaecology ՀՀ ԱՆ պերինատոլոգիայի, մանկաբարձության եւ գինեկոլոգիայի'),
(49041, 'https://ror.org/043a43z64', 'en', 1, 'https://ror.org/043a43z64 Liuyang City Maternal and Child Health Hospital 浏阳市妇幼保健院'),
(49042, 'https://ror.org/00er4d216', 'en', 1, 'https://ror.org/00er4d216 Liuzhou General Hospital 柳州市人民医院'),
(49043, 'https://ror.org/02xes6w96', 'pt', 1, 'https://ror.org/02xes6w96 Instituo CUF Porto'),
(49044, 'https://ror.org/055ybk671', 'en', 1, 'https://ror.org/055ybk671 Japan Breast Cancer Research Group 日本乳癌研究グループ'),
(49045, 'https://ror.org/00p8vgm81', 'es', 1, 'https://ror.org/00p8vgm81 Hospital Quirónsalud Sagrado Corazón'),
(49046, 'https://ror.org/02z9ybv55', 'pt', 1, 'https://ror.org/02z9ybv55 Instituto de Cardiologia de Santa Catarina'),
(49047, 'https://ror.org/03qjmyd44', 'en', 1, 'https://ror.org/03qjmyd44 Jean Brown Research'),
(49048, 'https://ror.org/01w6hrf59', 'pt', 1, 'https://ror.org/01w6hrf59 Hospital Regional de São José Dr. Homero de Miranda Gomes'),
(49049, 'https://ror.org/05rpr2102', 'en', 1, 'https://ror.org/05rpr2102 Jehangir Clinical development Centre'),
(49050, 'https://ror.org/01gfcex64', 'es', 1, 'https://ror.org/01gfcex64 Instituto de Ciencia y Medicina Genómica'),
(49051, 'https://ror.org/04r0gp612', 'en', 1, 'https://ror.org/04r0gp612 Neurological Surgery'),
(49052, 'https://ror.org/05taycr33', 'en', 1, 'https://ror.org/05taycr33 Long Island Skin Cancer and Dermatologic Surgery'),
(49053, 'https://ror.org/037sy5j20', 'en', 1, 'https://ror.org/037sy5j20 KNI Southwest Michigan Imaging Center'),
(49054, 'https://ror.org/00q8djh14', 'en', 1, 'https://ror.org/00q8djh14 Jewell Plastic Surgery Center'),
(49055, 'https://ror.org/0156j5s68', 'en', 1, 'https://ror.org/0156j5s68 Cancer Hospital Lopburi โรงพยาบาลมะเร็งลพบุรี'),
(49056, 'https://ror.org/027f56t09', 'en', 1, 'https://ror.org/027f56t09 Jining Traditional Chinese Medicine Hospital 济宁市中医院'),
(49057, 'https://ror.org/023jg3g40', 'en', 1, 'https://ror.org/023jg3g40 Jewett Orthopaedic Clinic'),
(49058, 'https://ror.org/05ba87b21', 'en', 1, 'https://ror.org/05ba87b21 Jewish Association Serving the Aging'),
(49059, 'https://ror.org/011jgpb07', 'fr', 1, 'https://ror.org/011jgpb07 Centre Hospitalier de Bretagne Sud'),
(49060, 'https://ror.org/0516vxk09', 'en', 1, 'https://ror.org/0516vxk09 Jilin Maternity and Child Health Care Hospital 吉林市妇幼保健院'),
(49061, 'https://ror.org/057b7mv80', 'en', 1, 'https://ror.org/057b7mv80 Los Alamitos Medical Center'),
(49062, 'https://ror.org/004p54v36', 'en', 1, 'https://ror.org/004p54v36 Jinzhou Central Hospital'),
(49063, 'https://ror.org/01s24yr42', 'en', 1, 'https://ror.org/01s24yr42 Korean Society of Critical Care Medicine 대한중환자의학회'),
(49064, 'https://ror.org/00x01fm48', 'es', 1, 'https://ror.org/00x01fm48 Instituto de Radiomedicina'),
(49065, 'https://ror.org/046f99n88', 'es', 1, 'https://ror.org/046f99n88 Fundación Kovacs'),
(49066, 'https://ror.org/04ddjg212', 'en', 1, 'https://ror.org/04ddjg212 Jewish Child & Family Services'),
(49067, 'https://ror.org/03kzc9a65', 'en', 1, 'https://ror.org/03kzc9a65 Lotus Clinical Research'),
(49068, 'https://ror.org/01pxm4a45', 'en', 1, 'https://ror.org/01pxm4a45 Kozlovsky Delay & Winter Eye Consultants'),
(49069, 'https://ror.org/01rkjnh80', 'en', 1, 'https://ror.org/01rkjnh80 Samatvam Endocrinology Diabetes Centre'),
(49070, 'https://ror.org/056serj42', 'ms', 1, 'https://ror.org/056serj42 KPJ Ampang Puteri Specialist Hospital'),
(49071, 'https://ror.org/056tx3q55', 'en', 1, 'https://ror.org/056tx3q55 Kraff Eye Institute'),
(49072, 'https://ror.org/05d89kr76', 'de', 1, 'https://ror.org/05d89kr76 Johannes Wesling Klinikum Minden'),
(49073, 'https://ror.org/020x80477', 'no_lang_code', 1, 'https://ror.org/020x80477 Jianan Mental Hospital'),
(49074, 'https://ror.org/054r7w343', 'en', 1, 'https://ror.org/054r7w343 John-Kenyon'),
(49075, 'https://ror.org/00q0pf015', 'de', 1, 'https://ror.org/00q0pf015 Krankenhaus vom Roten Kreuz Red Cross Hospital'),
(49076, 'https://ror.org/02kra6808', 'en', 1, 'https://ror.org/02kra6808 Jiangmen Wuyi Traditional Chinese Medicine Hospital 五邑中医院'),
(49077, 'https://ror.org/05nds5y03', 'no_lang_code', 1, 'https://ror.org/05nds5y03 Johnson County Clin-Trials (United States)'),
(49078, 'https://ror.org/010vz1m70', 'en', 1, 'https://ror.org/010vz1m70 Jiangning District of Nanjing Chinese Medicine Hospital 江宁区中医院'),
(49079, 'https://ror.org/003dkgb76', 'en', 1, 'https://ror.org/003dkgb76 Kresge Eye Institute'),
(49080, 'https://ror.org/0446qd735', 'en', 1, 'https://ror.org/0446qd735 Jothydev''s Diabetes and Research Center'),
(49081, 'https://ror.org/01pg9bv14', 'pt', 1, 'https://ror.org/01pg9bv14 Hospital Haroldo Juaçaba'),
(49082, 'https://ror.org/04k1gqg30', 'en', 1, 'https://ror.org/04k1gqg30 Shalby Hospitals'),
(49083, 'https://ror.org/02hg8mx81', 'en', 1, 'https://ror.org/02hg8mx81 Centro Comunitario Juan Diego'),
(49084, 'https://ror.org/00bz0ap63', 'en', 1, 'https://ror.org/00bz0ap63 Kurosawa Hospital 黒澤病院'),
(49085, 'https://ror.org/029y72c12', 'en', 1, 'https://ror.org/029y72c12 Juvenile Bipolar Research Foundation'),
(49086, 'https://ror.org/01kypm263', 'en', 1, 'https://ror.org/01kypm263 Kyungpook National University Medical Center'),
(49087, 'https://ror.org/010xk1v64', 'de', 1, 'https://ror.org/010xk1v64 Klinik Schongau'),
(49088, 'https://ror.org/04r1rka16', 'en', 1, 'https://ror.org/04r1rka16 Metro Urology'),
(49089, 'https://ror.org/03egnwz74', 'de', 1, 'https://ror.org/03egnwz74 Krankenhaus Reinbek - Startseite'),
(49090, 'https://ror.org/05y0mgv66', 'en', 1, 'https://ror.org/05y0mgv66 PMG Research'),
(49091, 'https://ror.org/01qa8mn55', 'en', 1, 'https://ror.org/01qa8mn55 Taiyuan Maternity and Child Care Hospital 太原市妇幼保健院'),
(49092, 'https://ror.org/0356gcm38', 'de', 1, 'https://ror.org/0356gcm38 Krankenhaus Brixen'),
(49093, 'https://ror.org/01npzgy86', 'en', 1, 'https://ror.org/01npzgy86 Lutheran Medical Group'),
(49094, 'https://ror.org/00y21a678', 'en', 1, 'https://ror.org/00y21a678 Metroplex Clinical Research Center'),
(49095, 'https://ror.org/02e97hq31', 'de', 1, 'https://ror.org/02e97hq31 Krankenhaus Meran'),
(49096, 'https://ror.org/02taaxx56', 'en', 1, 'https://ror.org/02taaxx56 Maternal and Child Health Hospital of Sichuan Province 四川省妇幼保健院'),
(49097, 'https://ror.org/05dzndt41', 'en', 1, 'https://ror.org/05dzndt41 Metropolitan Asian Family Services'),
(49098, 'https://ror.org/0165xkg98', 'en', 1, 'https://ror.org/0165xkg98 Lynde Centre for Dermatology'),
(49099, 'https://ror.org/03y8emt10', 'en', 1, 'https://ror.org/03y8emt10 Lyndhurst Gynecologic Associates'),
(49100, 'https://ror.org/007vhjq80', 'en', 1, 'https://ror.org/007vhjq80 Maternal and Child Health Hospital of Xinjiang Uygur Autonomous Region 新疆维吾尔自治区妇幼保健院'),
(49101, 'https://ror.org/05nfdhr48', 'en', 1, 'https://ror.org/05nfdhr48 Maternal and Child Health Hospital of Xuzhou 徐州市妇幼保健院'),
(49102, 'https://ror.org/0280q1024', 'en', 1, 'https://ror.org/0280q1024 Kaiser Permanente Roseville Medical Center'),
(49103, 'https://ror.org/012cyrk91', 'en', 1, 'https://ror.org/012cyrk91 Michigan CardioVascular Institute'),
(49104, 'https://ror.org/05rkr5a10', 'en', 1, 'https://ror.org/05rkr5a10 M.V. Hospital for Diabetes and Diabetes Research Centre'),
(49105, 'https://ror.org/01c5q0c82', 'en', 1, 'https://ror.org/01c5q0c82 Yunnan Maternal and Child Health 云南省妇幼保健院'),
(49106, 'https://ror.org/05fgbny35', 'en', 1, 'https://ror.org/05fgbny35 Matthew''s Friends'),
(49107, 'https://ror.org/05qwxaq58', 'en', 1, 'https://ror.org/05qwxaq58 Lampang Cancer Hospital'),
(49108, 'https://ror.org/04gxyj147', 'en', 1, 'https://ror.org/04gxyj147 M S Ramaiah Memorial Hospital ರಾಮಯ್ಯ ಸ್ಮಾರಕ ಆಸ್ಪತ್ರೆ'),
(49109, 'https://ror.org/02ph01924', 'no_lang_code', 1, 'https://ror.org/02ph01924 Lampang Hospital'),
(49110, 'https://ror.org/03mvv8049', 'en', 1, 'https://ror.org/03mvv8049 Karl Bremer Hospital'),
(49111, 'https://ror.org/02r0vmn14', 'no_lang_code', 1, 'https://ror.org/02r0vmn14 Kamineni Hospitals'),
(49112, 'https://ror.org/032m10r53', 'fr', 1, 'https://ror.org/032m10r53 Centre Hospitalier Lannion Trestel'),
(49113, 'https://ror.org/05x3ned27', 'en', 1, 'https://ror.org/05x3ned27 Mid Illinois Hematology and Oncology Associates'),
(49114, 'https://ror.org/04rgsag55', 'en', 1, 'https://ror.org/04rgsag55 Main Line Health'),
(49115, 'https://ror.org/05sb4hv45', 'en', 1, 'https://ror.org/05sb4hv45 Lawrence General Hospital'),
(49116, 'https://ror.org/04pd4jr17', 'en', 1, 'https://ror.org/04pd4jr17 Barbara Bush Children’s Hospital'),
(49117, 'https://ror.org/02r408872', 'en', 1, 'https://ror.org/02r408872 Middle Country Endocrinology'),
(49118, 'https://ror.org/02nfn6153', 'en', 1, 'https://ror.org/02nfn6153 Maine Research Associates'),
(49119, 'https://ror.org/00q5sq874', 'fr', 1, 'https://ror.org/00q5sq874 Centre de Réadaptation Cardiaque Les Grands Prés'),
(49120, 'https://ror.org/03zawah80', 'en', 1, 'https://ror.org/03zawah80 Maloney Vision Institute'),
(49121, 'https://ror.org/003ajzy34', 'no_lang_code', 1, 'https://ror.org/003ajzy34 ERG Holding Company (United States)'),
(49122, 'https://ror.org/02tx5s423', 'en', 1, 'https://ror.org/02tx5s423 Manhattan Medical Research'),
(49123, 'https://ror.org/03vt3fq09', 'en', 1, 'https://ror.org/03vt3fq09 Affiliated Hospital of Liaoning University of Traditional Chinese Medicine 辽宁省中医院'),
(49124, 'https://ror.org/00y7zxb51', 'en', 1, 'https://ror.org/00y7zxb51 Manna Research'),
(49125, 'https://ror.org/02swf6979', 'de', 1, 'https://ror.org/02swf6979 Solothurner Spitäler'),
(49126, 'https://ror.org/01j36ak87', 'en', 1, 'https://ror.org/01j36ak87 Mansfield Orthopaedics'),
(49127, 'https://ror.org/0552rpn97', 'en', 1, 'https://ror.org/0552rpn97 Midwest Eye Center'),
(49128, 'https://ror.org/03qq7fj62', 'en', 1, 'https://ror.org/03qq7fj62 Maple Leaf Medical Clinic'),
(49129, 'https://ror.org/02cwjh447', 'en', 1, 'https://ror.org/02cwjh447 Juravinski Cancer Centre'),
(49130, 'https://ror.org/04n8zn025', 'en', 1, 'https://ror.org/04n8zn025 Liberty Laser Eye Center'),
(49131, 'https://ror.org/00xxqd436', 'en', 1, 'https://ror.org/00xxqd436 Midwest Fertility Specialists'),
(49132, 'https://ror.org/03dbk9e81', 'en', 1, 'https://ror.org/03dbk9e81 Maria Eleonora Hospital'),
(49133, 'https://ror.org/01y7px869', 'no_lang_code', 1, 'https://ror.org/01y7px869 Med Center'),
(49134, 'https://ror.org/04mq3gn83', 'en', 1, 'https://ror.org/04mq3gn83 Midwest Institute for Clinical Research'),
(49135, 'https://ror.org/04nae0247', 'nl', 1, 'https://ror.org/04nae0247 Libra Revalidatie & Audiologie'),
(49136, 'https://ror.org/0126fd303', 'en', 1, 'https://ror.org/0126fd303 Midwest Therapeutic Endoscopy'),
(49137, 'https://ror.org/040g15c17', 'pl', 1, 'https://ror.org/040g15c17 Szpital Kliniczny Dzieciątka Jezus'),
(49138, 'https://ror.org/04r1y3g77', 'en', 1, 'https://ror.org/04r1y3g77 Lice Solutions Resource Network'),
(49139, 'https://ror.org/00d2v8j14', 'ro', 1, 'https://ror.org/00d2v8j14 Spitalului Clinic de Urgență pentru Copii Maria Sklodowska Curie'),
(49140, 'https://ror.org/033ngjs02', 'de', 1, 'https://ror.org/033ngjs02 Migräne Klinik Königstein'),
(49141, 'https://ror.org/00s8fj384', 'en', 1, 'https://ror.org/00s8fj384 Life Quality Resources'),
(49142, 'https://ror.org/00mra6j45', 'en', 1, 'https://ror.org/00mra6j45 MedaPhase'),
(49143, 'https://ror.org/04k4knw56', 'en', 1, 'https://ror.org/04k4knw56 LifeWorks Northwest'),
(49144, 'https://ror.org/04cb0cm64', 'pl', 1, 'https://ror.org/04cb0cm64 Wojewódzki Szpital Obserwacyjno-Zakaźny im. Tadeusza Browicza w Bydgoszczy'),
(49145, 'https://ror.org/01p231980', 'en', 1, 'https://ror.org/01p231980 Mike O''Callaghan Federal Medical Center'),
(49146, 'https://ror.org/047y84421', 'en', 1, 'https://ror.org/047y84421 Medex Healthcare Research'),
(49147, 'https://ror.org/05bv6q633', 'en', 1, 'https://ror.org/05bv6q633 Katzen Eye Care & Laser Center'),
(49148, 'https://ror.org/0496g2a89', 'en', 1, 'https://ror.org/0496g2a89 America’s Job Center of California'),
(49149, 'https://ror.org/00tzd7r06', 'en', 1, 'https://ror.org/00tzd7r06 Lighthouse Guild'),
(49150, 'https://ror.org/03p0xnn24', 'en', 1, 'https://ror.org/03p0xnn24 Mind Australia'),
(49151, 'https://ror.org/01wm82e23', 'en', 1, 'https://ror.org/01wm82e23 Medical Advanced Pain Specialists'),
(49152, 'https://ror.org/02rdgsh90', 'en', 1, 'https://ror.org/02rdgsh90 Lincoln County Health Department'),
(49153, 'https://ror.org/04rn24t38', 'en', 1, 'https://ror.org/04rn24t38 Martin Diagnostic Clinic'),
(49154, 'https://ror.org/01rt6cd77', 'en', 1, 'https://ror.org/01rt6cd77 Keiki O Ka ‘ Āina Family Learning Centers'),
(49155, 'https://ror.org/057bn5g61', 'sv', 1, 'https://ror.org/057bn5g61 Lindesbergs lasarett'),
(49156, 'https://ror.org/00jfvgs31', 'en', 1, 'https://ror.org/00jfvgs31 Medical Center Ophthalmology Associates'),
(49157, 'https://ror.org/053wha491', 'en', 1, 'https://ror.org/053wha491 Bon Secours Mary Immaculate Hospital'),
(49158, 'https://ror.org/03ceh9q73', 'en', 1, 'https://ror.org/03ceh9q73 N.N. Alexandrov National Cancer Centre'),
(49159, 'https://ror.org/00t60x856', 'en', 1, 'https://ror.org/00t60x856 Minnesota Orthopedic Sports Medicine Institute'),
(49160, 'https://ror.org/01vvgpy65', 'en', 1, 'https://ror.org/01vvgpy65 Maryland Dermatology Laser Skin and Vein Institute'),
(49161, 'https://ror.org/03nfnpg30', 'en', 1, 'https://ror.org/03nfnpg30 North Central Organized Regionally For Total Health'),
(49162, 'https://ror.org/00c3eq612', 'en', 1, 'https://ror.org/00c3eq612 Maryland Brain, Spine + Pain'),
(49163, 'https://ror.org/042tmw509', 'no_lang_code', 1, 'https://ror.org/042tmw509 NRR Hospital'),
(49164, 'https://ror.org/05jwkar19', 'en', 1, 'https://ror.org/05jwkar19 Nakornping Hospital โรงพยาบาลนครพิงค์ จังหวัดเชียงใหม่'),
(49165, 'https://ror.org/04fr3hk40', 'no_lang_code', 1, 'https://ror.org/04fr3hk40 KGK Synergize (Canada)'),
(49166, 'https://ror.org/032cjpr90', 'en', 1, 'https://ror.org/032cjpr90 Naples Anesthesia & Physician Associates'),
(49167, 'https://ror.org/0298vzs36', 'en', 1, 'https://ror.org/0298vzs36 Medical Park Gaziantep Hospital'),
(49168, 'https://ror.org/02wgt4y52', 'en', 1, 'https://ror.org/02wgt4y52 New England Organ Bank'),
(49169, 'https://ror.org/015brpm77', 'en', 1, 'https://ror.org/015brpm77 MNJ Institute Of Oncology and Regional Cancer Centre'),
(49170, 'https://ror.org/04g7j1r38', 'en', 1, 'https://ror.org/04g7j1r38 Medical Research Associates'),
(49171, 'https://ror.org/00n478750', 'en', 1, 'https://ror.org/00n478750 New Hope Clinical Research'),
(49172, 'https://ror.org/05vnb7y75', 'en', 1, 'https://ror.org/05vnb7y75 New Mexico Cancer Care Alliance'),
(49173, 'https://ror.org/03tsamb44', 'en', 1, 'https://ror.org/03tsamb44 New River Valley Research Institute'),
(49174, 'https://ror.org/04v5wp242', 'en', 1, 'https://ror.org/04v5wp242 New West Sports Medicine and Orthopedic Surgery'),
(49175, 'https://ror.org/03h7v3958', 'en', 1, 'https://ror.org/03h7v3958 Model Clinical Research'),
(49176, 'https://ror.org/01b5j6r07', 'en', 1, 'https://ror.org/01b5j6r07 Nash County Health Department'),
(49177, 'https://ror.org/0280mwm89', 'en', 1, 'https://ror.org/0280mwm89 Molokai Community Health Center'),
(49178, 'https://ror.org/038gt8318', 'no_lang_code', 1, 'https://ror.org/038gt8318 KiloCoach (Austria)'),
(49179, 'https://ror.org/02e518y78', 'en', 1, 'https://ror.org/02e518y78 New York Laser and Skin Care'),
(49180, 'https://ror.org/01vec3g34', 'en', 1, 'https://ror.org/01vec3g34 Nashville Medical Research Institute'),
(49181, 'https://ror.org/05syrg433', 'en', 1, 'https://ror.org/05syrg433 Nashville Oncology Associates'),
(49182, 'https://ror.org/02w915f84', 'no_lang_code', 1, 'https://ror.org/02w915f84 King-Maceyko Dermatology Associates'),
(49183, 'https://ror.org/024wgaf87', 'en', 1, 'https://ror.org/024wgaf87 Mood Disorders Association of British Columbia'),
(49184, 'https://ror.org/05e497m36', 'en', 1, 'https://ror.org/05e497m36 Medicines Evaluation Unit'),
(49185, 'https://ror.org/01sr0yp41', 'en', 1, 'https://ror.org/01sr0yp41 New York Oncology Hematology'),
(49186, 'https://ror.org/01bd1z477', 'en', 1, 'https://ror.org/01bd1z477 Leeds, Grenville & Lanark District Health Unit'),
(49187, 'https://ror.org/03ddkvp86', 'en', 1, 'https://ror.org/03ddkvp86 National Clinical Research'),
(49188, 'https://ror.org/055cmzr24', 'en', 1, 'https://ror.org/055cmzr24 MaxCure Hospitals'),
(49189, 'https://ror.org/0472fnh69', 'sv', 1, 'https://ror.org/0472fnh69 Mora lasarett'),
(49190, 'https://ror.org/00ez4mt38', 'en', 1, 'https://ror.org/00ez4mt38 Central Ohio Radiation Oncology'),
(49191, 'https://ror.org/00dcbjx19', 'en', 1, 'https://ror.org/00dcbjx19 Mortimer Surgery'),
(49192, 'https://ror.org/00zxygw58', 'en', 1, 'https://ror.org/00zxygw58 National Foundation for Fertility Research'),
(49193, 'https://ror.org/03crx5092', 'no_lang_code', 1, 'https://ror.org/03crx5092 Nexus Clinical Research (Canada)'),
(49194, 'https://ror.org/000wnz761', 'en', 1, 'https://ror.org/000wnz761 Moscow Clinical Scientific Center Москва Центра клинических исследований'),
(49195, 'https://ror.org/05gh2jr89', 'no_lang_code', 1, 'https://ror.org/05gh2jr89 NewEnergy'),
(49196, 'https://ror.org/01mj4k378', 'en', 1, 'https://ror.org/01mj4k378 Medicort Sports & Orthopedic Care'),
(49197, 'https://ror.org/04nwcm011', 'no_lang_code', 1, 'https://ror.org/04nwcm011 NVision Eye Centers (United States)'),
(49198, 'https://ror.org/05r0sm904', 'en', 1, 'https://ror.org/05r0sm904 Nightingale Hospital'),
(49199, 'https://ror.org/004n4vj97', 'en', 1, 'https://ror.org/004n4vj97 Northwest Medical Rehabilitation'),
(49200, 'https://ror.org/026wnn461', 'en', 1, 'https://ror.org/026wnn461 Mediroyal Prevenciós Központ Mediroyal Prevention Center'),
(49201, 'https://ror.org/0359v5r48', 'no_lang_code', 1, 'https://ror.org/0359v5r48 Nini Hospital'),
(49202, 'https://ror.org/03kmp0p37', 'en', 1, 'https://ror.org/03kmp0p37 MedSol Clinical Research Center'),
(49203, 'https://ror.org/02hef5r03', 'no_lang_code', 1, 'https://ror.org/02hef5r03 Osaka Nishi Clinic 大阪西クリニッ'),
(49204, 'https://ror.org/00n8szr38', 'en', 1, 'https://ror.org/00n8szr38 Mott Childrens Health Center'),
(49205, 'https://ror.org/02qw2fp57', 'en', 1, 'https://ror.org/02qw2fp57 MedVadis Research'),
(49206, 'https://ror.org/03dmmqc37', 'en', 1, 'https://ror.org/03dmmqc37 Moundview Memorial Hospital and Clinics'),
(49207, 'https://ror.org/03h143w08', 'pl', 1, 'https://ror.org/03h143w08 NZOZ Centrum Alergologii'),
(49208, 'https://ror.org/04ttatz50', 'en', 1, 'https://ror.org/04ttatz50 Mount Farm Surgery'),
(49209, 'https://ror.org/04vkepj11', 'pl', 1, 'https://ror.org/04vkepj11 NZOZ Medi-Spatz'),
(49210, 'https://ror.org/027xxcs87', 'en', 1, 'https://ror.org/027xxcs87 Nordic Lymphoma Group'),
(49211, 'https://ror.org/03j249425', 'en', 1, 'https://ror.org/03j249425 Mount Medical Centre'),
(49212, 'https://ror.org/03rxcr397', 'no_lang_code', 1, 'https://ror.org/03rxcr397 O&O Alpan (United States)'),
(49213, 'https://ror.org/01wsvqq22', 'en', 1, 'https://ror.org/01wsvqq22 Memorial Hermann The Woodlands Hospital'),
(49214, 'https://ror.org/05end5z77', 'en', 1, 'https://ror.org/05end5z77 Memorial Orthopaedic Surgical Group'),
(49215, 'https://ror.org/00m2e6n43', 'en', 1, 'https://ror.org/00m2e6n43 National Retail Federation'),
(49216, 'https://ror.org/05f0w5759', 'en', 1, 'https://ror.org/05f0w5759 Norman Regional Health System'),
(49217, 'https://ror.org/01wwv4x50', 'en', 1, 'https://ror.org/01wwv4x50 Mount Vernon Cancer Centre'),
(49218, 'https://ror.org/038gt6e80', 'en', 1, 'https://ror.org/038gt6e80 OASIS Clinic'),
(49219, 'https://ror.org/05svfe466', 'en', 1, 'https://ror.org/05svfe466 Mount Vernon Clinical Research'),
(49220, 'https://ror.org/01mvx0t15', 'en', 1, 'https://ror.org/01mvx0t15 Lake OB/GYN Associates of Mid-Florida'),
(49221, 'https://ror.org/05hevnw21', 'en', 1, 'https://ror.org/05hevnw21 MARS Memory-Health Network'),
(49222, 'https://ror.org/04q6mrp48', 'es', 1, 'https://ror.org/04q6mrp48 Ocumed Clinica Oftalmologica'),
(49223, 'https://ror.org/013t78522', 'en', 1, 'https://ror.org/013t78522 Memory Enhancement Center of America'),
(49224, 'https://ror.org/035yn3c54', 'en', 1, 'https://ror.org/035yn3c54 Northeast Medical Research Associates'),
(49225, 'https://ror.org/046z18h28', 'en', 1, 'https://ror.org/046z18h28 Mount Carmel East'),
(49226, 'https://ror.org/04sjz5865', 'en', 1, 'https://ror.org/04sjz5865 North Carolina Clinical Research'),
(49227, 'https://ror.org/04yqmzq68', 'en', 1, 'https://ror.org/04yqmzq68 Memphis Health Center'),
(49228, 'https://ror.org/02xcf7b11', 'en', 1, 'https://ror.org/02xcf7b11 Neami National'),
(49229, 'https://ror.org/020vyhe78', 'en', 1, 'https://ror.org/020vyhe78 Ohnishi Neurological Center 大西脳神経外科病院'),
(49230, 'https://ror.org/02mphet60', 'en', 1, 'https://ror.org/02mphet60 North East Ambulance Service NHS Foundation Trust'),
(49231, 'https://ror.org/03bwyr571', 'en', 1, 'https://ror.org/03bwyr571 Mental Illness Fellowship'),
(49232, 'https://ror.org/03h18h913', 'en', 1, 'https://ror.org/03h18h913 North Jersey Endocrine Consultants'),
(49233, 'https://ror.org/02j479041', 'en', 1, 'https://ror.org/02j479041 Oklahoma Heart Hospital'),
(49234, 'https://ror.org/05vwr6z89', 'en', 1, 'https://ror.org/05vwr6z89 Mercy Angiography Unit'),
(49235, 'https://ror.org/0536g5z46', 'en', 1, 'https://ror.org/0536g5z46 International Network of Health Promoting Hospitals & Health Services'),
(49236, 'https://ror.org/02pevq096', 'en', 1, 'https://ror.org/02pevq096 Multiple Sclerosis Center Of Northeastern New York'),
(49237, 'https://ror.org/04f142133', 'en', 1, 'https://ror.org/04f142133 North Shore Diabetes and Endocrine Associates'),
(49238, 'https://ror.org/03ftrgs19', 'en', 1, 'https://ror.org/03ftrgs19 Oklahoma Otolaryngology Associates'),
(49239, 'https://ror.org/0171xqb77', 'en', 1, 'https://ror.org/0171xqb77 Mercy Hospital'),
(49240, 'https://ror.org/05csn7t20', 'en', 1, 'https://ror.org/05csn7t20 Fairfield Hospital'),
(49241, 'https://ror.org/04hw5vb27', 'en', 1, 'https://ror.org/04hw5vb27 Omega Medical Research'),
(49242, 'https://ror.org/03hgnab62', 'en', 1, 'https://ror.org/03hgnab62 Meridian Clinical Research'),
(49243, 'https://ror.org/04hrzse50', 'en', 1, 'https://ror.org/04hrzse50 Myers Street Family Medical Practice'),
(49244, 'https://ror.org/05ydgps70', 'en', 1, 'https://ror.org/05ydgps70 North Toronto Eye Care'),
(49245, 'https://ror.org/00x3xjq33', 'en', 1, 'https://ror.org/00x3xjq33 Mesa Fire and Medical Department'),
(49246, 'https://ror.org/01xvnnv03', 'en', 1, 'https://ror.org/01xvnnv03 Omni Eye Services'),
(49247, 'https://ror.org/013rqb250', 'en', 1, 'https://ror.org/013rqb250 St. David’s HealthCare'),
(49248, 'https://ror.org/02pcrrj33', 'en', 1, 'https://ror.org/02pcrrj33 Peters Medical Research'),
(49249, 'https://ror.org/01a2yyy59', 'en', 1, 'https://ror.org/01a2yyy59 North Central Cancer Treatment Group'),
(49250, 'https://ror.org/04tpen147', 'en', 1, 'https://ror.org/04tpen147 Pflugerville Independent School District'),
(49251, 'https://ror.org/00sby6b11', 'no_lang_code', 1, 'https://ror.org/00sby6b11 Oncocare (Switzerland)'),
(49252, 'https://ror.org/00g0x9d29', 'it', 1, 'https://ror.org/00g0x9d29 Ospedali Riuniti di Foggia'),
(49253, 'https://ror.org/0084hyx75', 'en', 1, 'https://ror.org/0084hyx75 North Valley Eye Medical Group'),
(49254, 'https://ror.org/05a1nps39', 'no_lang_code', 1, 'https://ror.org/05a1nps39 New Life Scientific (United States)'),
(49255, 'https://ror.org/04mkp1z42', 'en', 1, 'https://ror.org/04mkp1z42 Netcare Unitas Hospital'),
(49256, 'https://ror.org/00n1s5967', 'en', 1, 'https://ror.org/00n1s5967 Philadelphia Institute of Dermatology'),
(49257, 'https://ror.org/01htgmk28', 'en', 1, 'https://ror.org/01htgmk28 NeuroDevelopment Center'),
(49258, 'https://ror.org/046vm5p14', 'en', 1, 'https://ror.org/046vm5p14 Oncology Specialists'),
(49259, 'https://ror.org/056t5vv75', 'en', 1, 'https://ror.org/056t5vv75 King Mongkut Memorial Hospital โรงพยาบาลพระจอมเกล้าจังหวัดเพชรบุรี'),
(49260, 'https://ror.org/01s33dn56', 'no_lang_code', 1, 'https://ror.org/01s33dn56 Oncotherapeutics (United States)'),
(49261, 'https://ror.org/056zmsz35', 'en', 1, 'https://ror.org/056zmsz35 Northeast Baptist Hospital'),
(49262, 'https://ror.org/0236xjz69', 'en', 1, 'https://ror.org/0236xjz69 Physician Care Clinical Research'),
(49263, 'https://ror.org/05wqwpj81', 'en', 1, 'https://ror.org/05wqwpj81 University Cancer and Blood Center'),
(49264, 'https://ror.org/00eh6xk55', 'de', 1, 'https://ror.org/00eh6xk55 Klinikum Altenburger Land'),
(49265, 'https://ror.org/041g1ry61', 'eu', 1, 'https://ror.org/041g1ry61 Onkologikoa'),
(49266, 'https://ror.org/04k3g6751', 'en', 1, 'https://ror.org/04k3g6751 Northeastern Eye Institute'),
(49267, 'https://ror.org/033bgzt54', 'en', 1, 'https://ror.org/033bgzt54 Neurology Associates'),
(49268, 'https://ror.org/05ne0gd95', 'en', 1, 'https://ror.org/05ne0gd95 Neurology, Inc'),
(49269, 'https://ror.org/01vvfz714', 'en', 1, 'https://ror.org/01vvfz714 McLaren Northern Michigan'),
(49270, 'https://ror.org/01j4pjp70', 'en', 1, 'https://ror.org/01j4pjp70 Ophthalmic Consultants of Long Island'),
(49271, 'https://ror.org/00qd7n243', 'en', 1, 'https://ror.org/00qd7n243 Owensboro Dermatology Associates'),
(49272, 'https://ror.org/05jbhfv03', 'en', 1, 'https://ror.org/05jbhfv03 Ophthalmology Associates (United States)'),
(49273, 'https://ror.org/03gjxr006', 'en', 1, 'https://ror.org/03gjxr006 Northwest Behavioral Medicine'),
(49274, 'https://ror.org/01wkpqc56', 'en', 1, 'https://ror.org/01wkpqc56 Northwest Clinical Trials'),
(49275, 'https://ror.org/00dbv2839', 'en', 1, 'https://ror.org/00dbv2839 Ophthalmology Consultants'),
(49276, 'https://ror.org/02jrfr034', 'en', 1, 'https://ror.org/02jrfr034 Northwest Eye Surgeons'),
(49277, 'https://ror.org/05n2x7017', 'en', 1, 'https://ror.org/05n2x7017 Oxford Fertility'),
(49278, 'https://ror.org/04p1m3617', 'en', 1, 'https://ror.org/04p1m3617 Neurospine Institute Medical Group'),
(49279, 'https://ror.org/04eh49149', 'en', 1, 'https://ror.org/04eh49149 Optimed Eye and Laser Clinic'),
(49280, 'https://ror.org/04smbh054', 'en', 1, 'https://ror.org/04smbh054 New England Center for Clinical Research'),
(49281, 'https://ror.org/025xp7q94', 'en', 1, 'https://ror.org/025xp7q94 Pinnacle Orthopedics'),
(49282, 'https://ror.org/001q2kp78', 'en', 1, 'https://ror.org/001q2kp78 Orange Coast Memorial Medical Center'),
(49283, 'https://ror.org/02mgz7255', 'en', 1, 'https://ror.org/02mgz7255 Pacific Clinical Research'),
(49284, 'https://ror.org/01naky322', 'no_lang_code', 1, 'https://ror.org/01naky322 Pinnacle Trials (United States)'),
(49285, 'https://ror.org/02h8mhp51', 'en', 1, 'https://ror.org/02h8mhp51 Pittsburgh Ear Associates'),
(49286, 'https://ror.org/012z5s763', 'ca', 1, 'https://ror.org/012z5s763 Pius Hospital de Valls'),
(49287, 'https://ror.org/02smc8550', 'en', 1, 'https://ror.org/02smc8550 Pacific Coast Imaging'),
(49288, 'https://ror.org/03avbdx23', 'en', 1, 'https://ror.org/03avbdx23 Pius Hospital Oldenburg'),
(49289, 'https://ror.org/01wx55d31', 'en', 1, 'https://ror.org/01wx55d31 Pulmonary and Allergy Associates'),
(49290, 'https://ror.org/02wzwfh06', 'en', 1, 'https://ror.org/02wzwfh06 Oregon Center for Clinical Investigation'),
(49291, 'https://ror.org/048qnxy85', 'en', 1, 'https://ror.org/048qnxy85 Pulmonary Associates'),
(49292, 'https://ror.org/03n07ce29', 'en', 1, 'https://ror.org/03n07ce29 Pacific Heart Institute'),
(49293, 'https://ror.org/03n09s827', 'en', 1, 'https://ror.org/03n09s827 Planned Parenthood'),
(49294, 'https://ror.org/0290pyd61', 'en', 1, 'https://ror.org/0290pyd61 Oregon Dermatology & Research Center'),
(49295, 'https://ror.org/021mpp443', 'en', 1, 'https://ror.org/021mpp443 Qihe People''s Hospital 齐河人民医院'),
(49296, 'https://ror.org/03v0zfc19', 'en', 1, 'https://ror.org/03v0zfc19 Quality Research'),
(49297, 'https://ror.org/04058yw12', 'en', 1, 'https://ror.org/04058yw12 Advanced Sleep Medicine Services'),
(49298, 'https://ror.org/04z0j1529', 'en', 1, 'https://ror.org/04z0j1529 Pact Atlanta'),
(49299, 'https://ror.org/01mfcg760', 'no_lang_code', 1, 'https://ror.org/01mfcg760 Quantum Experimental (Spain)'),
(49300, 'https://ror.org/03m027021', 'en', 1, 'https://ror.org/03m027021 Oregon Medical Research Center'),
(49301, 'https://ror.org/02v3jvj44', 'en', 1, 'https://ror.org/02v3jvj44 Parish Dermatology'),
(49302, 'https://ror.org/00vzkm750', 'en', 1, 'https://ror.org/00vzkm750 Oregon Weight Loss Surgery'),
(49303, 'https://ror.org/039jj6r78', 'en', 1, 'https://ror.org/039jj6r78 Nuhr Medical Center'),
(49304, 'https://ror.org/00vx8b766', 'en', 1, 'https://ror.org/00vx8b766 Queens Medical Associates'),
(49305, 'https://ror.org/034mtjq62', 'en', 1, 'https://ror.org/034mtjq62 Nova Scotia Cancer Centre');
INSERT INTO `rors` VALUES
(49306, 'https://ror.org/046aqw930', 'en', 1, 'https://ror.org/046aqw930 Pakistan Institute of Learning and Living'),
(49307, 'https://ror.org/003fgkq55', 'en', 1, 'https://ror.org/003fgkq55 Quest Research Institute'),
(49308, 'https://ror.org/05twfsj71', 'en', 1, 'https://ror.org/05twfsj71 Orenburg Regional Clinical Hospital №2'),
(49309, 'https://ror.org/03b6j7b16', 'en', 1, 'https://ror.org/03b6j7b16 Palm Beach Research Center'),
(49310, 'https://ror.org/000x1tr98', 'en', 1, 'https://ror.org/000x1tr98 Orlando Clinical Research Center'),
(49311, 'https://ror.org/02pcvrc50', 'fr', 1, 'https://ror.org/02pcvrc50 Centre Hospitalier de Cornouaille'),
(49312, 'https://ror.org/02cj88v79', 'en', 1, 'https://ror.org/02cj88v79 Orlando Immunology Center'),
(49313, 'https://ror.org/00wqe7q58', 'en', 1, 'https://ror.org/00wqe7q58 Palmetto Clinical Trial Services'),
(49314, 'https://ror.org/04ssk5v02', 'en', 1, 'https://ror.org/04ssk5v02 OrthoGeorgia'),
(49315, 'https://ror.org/03hjfdx24', 'no_lang_code', 1, 'https://ror.org/03hjfdx24 Quotient Clinical (United Kingdom)'),
(49316, 'https://ror.org/01hhs1p93', 'fr', 1, 'https://ror.org/01hhs1p93 Saint Laurent Polyclinique'),
(49317, 'https://ror.org/019cqhg34', 'en', 1, 'https://ror.org/019cqhg34 Palmetto Hematology Oncology'),
(49318, 'https://ror.org/01n6xvd93', 'en', 1, 'https://ror.org/01n6xvd93 Rheumatology Theraputics Medical Center'),
(49319, 'https://ror.org/03ks7ew17', 'en', 1, 'https://ror.org/03ks7ew17 OrthoMaryland'),
(49320, 'https://ror.org/00x72gm71', 'fr', 1, 'https://ror.org/00x72gm71 Maternité Port Royal'),
(49321, 'https://ror.org/058p87465', 'en', 1, 'https://ror.org/058p87465 Rhode Island Blood Center'),
(49322, 'https://ror.org/043zrma75', 'en', 1, 'https://ror.org/043zrma75 Richard H. Weisler M.D P.A. and Associates'),
(49323, 'https://ror.org/01bsbwm24', 'en', 1, 'https://ror.org/01bsbwm24 Palmetto Retina Center'),
(49324, 'https://ror.org/00g652k45', 'en', 1, 'https://ror.org/00g652k45 Orthopaedic Associates of Michigan'),
(49325, 'https://ror.org/00g427679', 'en', 1, 'https://ror.org/00g427679 Richmond Vascular Center'),
(49326, 'https://ror.org/00t0abb25', 'en', 1, 'https://ror.org/00t0abb25 Orthopaedic Center of Vero Beach'),
(49327, 'https://ror.org/02whcyg17', 'en', 1, 'https://ror.org/02whcyg17 Orthopaedic Innovation Centre'),
(49328, 'https://ror.org/05938c493', 'pl', 1, 'https://ror.org/05938c493 Specjalistyczny Szpital im.E.Szczeklika w Tarnowie'),
(49329, 'https://ror.org/038160315', 'en', 1, 'https://ror.org/038160315 Orthopaedic Institute of Henderson'),
(49330, 'https://ror.org/005p42z69', 'en', 1, 'https://ror.org/005p42z69 Panyu Hospital of Chinese Medicine 番禺中医院'),
(49331, 'https://ror.org/05akbpx97', 'en', 1, 'https://ror.org/05akbpx97 RTOG Foundation'),
(49332, 'https://ror.org/00d3w5v70', 'en', 1, 'https://ror.org/00d3w5v70 Prairie Education and Research Cooperative'),
(49333, 'https://ror.org/017704360', 'en', 1, 'https://ror.org/017704360 Ridgeview Medical Center'),
(49334, 'https://ror.org/03wgek846', 'de', 1, 'https://ror.org/03wgek846 Praxis für Hämatologie und Onkologie'),
(49335, 'https://ror.org/03a2xf890', 'en', 1, 'https://ror.org/03a2xf890 Radiology Associates of Albuquerque'),
(49336, 'https://ror.org/03gn6hs29', 'da', 1, 'https://ror.org/03gn6hs29 Ringsted Sygehus'),
(49337, 'https://ror.org/00kz26j88', 'de', 1, 'https://ror.org/00kz26j88 Praxiszentrum Orthopädie Unfallchirurgie Nordrhein'),
(49338, 'https://ror.org/05f7htr55', 'nl', 1, 'https://ror.org/05f7htr55 Radiotherapeutisch Instituut Friesland'),
(49339, 'https://ror.org/02tjy3316', 'en', 1, 'https://ror.org/02tjy3316 Rivergate Dermatology Clinical Research Center'),
(49340, 'https://ror.org/02z4gce56', 'en', 1, 'https://ror.org/02z4gce56 Riverhills Healthcare'),
(49341, 'https://ror.org/03bqns596', 'en', 1, 'https://ror.org/03bqns596 Osceola Regional Medical Center'),
(49342, 'https://ror.org/051xm8t15', 'en', 1, 'https://ror.org/051xm8t15 Riverside Clinical Research'),
(49343, 'https://ror.org/020ea8709', 'no_lang_code', 1, 'https://ror.org/020ea8709 Premier Clinical Research (United States)'),
(49344, 'https://ror.org/00m0ms985', 'en', 1, 'https://ror.org/00m0ms985 Rainier Clinical Research Center'),
(49345, 'https://ror.org/03afz7q27', 'en', 1, 'https://ror.org/03afz7q27 RML Specialty Hospital'),
(49346, 'https://ror.org/04p6n2e03', 'en', 1, 'https://ror.org/04p6n2e03 Premier Research Group'),
(49347, 'https://ror.org/02z2kxd64', 'en', 1, 'https://ror.org/02z2kxd64 Premiere Research Institute'),
(49348, 'https://ror.org/046syc687', 'en', 1, 'https://ror.org/046syc687 Rockwood Clinic'),
(49349, 'https://ror.org/03ynhs115', 'en', 1, 'https://ror.org/03ynhs115 Rocky Mountain Cancer Centers'),
(49350, 'https://ror.org/04zypt071', 'en', 1, 'https://ror.org/04zypt071 Rocky Mountain Diabetes and Osteoporosis Center'),
(49351, 'https://ror.org/05dzdeq86', 'es', 1, 'https://ror.org/05dzdeq86 Centro Médico Recoletas Paracelso'),
(49352, 'https://ror.org/02zdf9k07', 'en', 1, 'https://ror.org/02zdf9k07 Price Vision Group'),
(49353, 'https://ror.org/04xehp049', 'en', 1, 'https://ror.org/04xehp049 Rocky Mountain Orthopedics'),
(49354, 'https://ror.org/036rgb954', 'de', 1, 'https://ror.org/036rgb954 RoMed Kliniken'),
(49355, 'https://ror.org/008x3rf43', 'en', 1, 'https://ror.org/008x3rf43 Raleigh Neurology Associates'),
(49356, 'https://ror.org/03rrqwf50', 'no_lang_code', 1, 'https://ror.org/03rrqwf50 PAREXEL International (United Kingdom)'),
(49357, 'https://ror.org/03gyv3q15', 'en', 1, 'https://ror.org/03gyv3q15 Park Avenue Dermatology'),
(49358, 'https://ror.org/011bmz187', 'en', 1, 'https://ror.org/011bmz187 Prism Clinical Research'),
(49359, 'https://ror.org/03xjd7698', 'no', 1, 'https://ror.org/03xjd7698 Aleris Rosenborgklinikken'),
(49360, 'https://ror.org/00avbpp35', 'en', 1, 'https://ror.org/00avbpp35 San Fernando Valley Urological Associates'),
(49361, 'https://ror.org/00a4nkb16', 'en', 1, 'https://ror.org/00a4nkb16 Kindred Hospital Rancho'),
(49362, 'https://ror.org/00yd0be35', 'no_lang_code', 1, 'https://ror.org/00yd0be35 Frauenshuh Cancer Center'),
(49363, 'https://ror.org/0339ge880', 'tr', 1, 'https://ror.org/0339ge880 Gözde Hastanesi Malatya'),
(49364, 'https://ror.org/005xmvj53', 'en', 1, 'https://ror.org/005xmvj53 Rapid Medical Research'),
(49365, 'https://ror.org/013z34d39', 'en', 1, 'https://ror.org/013z34d39 Employment Development Department'),
(49366, 'https://ror.org/02kwy3g61', 'no_lang_code', 1, 'https://ror.org/02kwy3g61 Cutest Systems (United Kingdom)'),
(49367, 'https://ror.org/028fg3r55', 'en', 1, 'https://ror.org/028fg3r55 Rowden Medical Partnership'),
(49368, 'https://ror.org/01znn6097', 'en', 1, 'https://ror.org/01znn6097 San Juan Oncology Associates'),
(49369, 'https://ror.org/01erkrz38', 'en', 1, 'https://ror.org/01erkrz38 Yenişehir Hospital Özel Yenişehir Hastanesi'),
(49370, 'https://ror.org/02ekmp576', 'en', 1, 'https://ror.org/02ekmp576 Rebound Orthopedics and Neurosurgery'),
(49371, 'https://ror.org/00b66ah84', 'fr', 1, 'https://ror.org/00b66ah84 Centre Hospitalier de Redon'),
(49372, 'https://ror.org/04e5eq320', 'en', 1, 'https://ror.org/04e5eq320 Professional Education and Research Institute'),
(49373, 'https://ror.org/01hp3n521', 'en', 1, 'https://ror.org/01hp3n521 Passport Health'),
(49374, 'https://ror.org/04b3xdy64', 'en', 1, 'https://ror.org/04b3xdy64 Redwood Family Dermatology'),
(49375, 'https://ror.org/02jp56b40', 'en', 1, 'https://ror.org/02jp56b40 PRN of Kansas'),
(49376, 'https://ror.org/00drb8647', 'en', 1, 'https://ror.org/00drb8647 Patel Hospital'),
(49377, 'https://ror.org/03z0fs548', 'en', 1, 'https://ror.org/03z0fs548 Regional Clinical Research'),
(49378, 'https://ror.org/05sw8nz16', 'en', 1, 'https://ror.org/05sw8nz16 Sanford Heart Hospital'),
(49379, 'https://ror.org/01d4h2244', 'en', 1, 'https://ror.org/01d4h2244 Patient Priority Clinical Sites'),
(49380, 'https://ror.org/03srt3k91', 'en', 1, 'https://ror.org/03srt3k91 Regional Urology'),
(49381, 'https://ror.org/00qhfds50', 'no_lang_code', 1, 'https://ror.org/00qhfds50 SanPaTong Hospital โรงพยาบาลสันป่าตอง'),
(49382, 'https://ror.org/011nx7d79', 'en', 1, 'https://ror.org/011nx7d79 Ruth M. Rothstein CORE Center'),
(49383, 'https://ror.org/03sf80053', 'it', 1, 'https://ror.org/03sf80053 Pavia nel Cuore'),
(49384, 'https://ror.org/03f2dkv17', 'en', 1, 'https://ror.org/03f2dkv17 Profil Institute for Clinical Research'),
(49385, 'https://ror.org/020r55g68', 'da', 1, 'https://ror.org/020r55g68 Regionshospitalet Silkeborg'),
(49386, 'https://ror.org/011w7ja64', 'en', 1, 'https://ror.org/011w7ja64 Piedmont Cancer Institute'),
(49387, 'https://ror.org/03jbzvm84', 'en', 1, 'https://ror.org/03jbzvm84 Progressive Clinical Research'),
(49388, 'https://ror.org/051h7x990', 'de', 1, 'https://ror.org/051h7x990 Reha Rheinfelden'),
(49389, 'https://ror.org/024w2fr05', 'pt', 1, 'https://ror.org/024w2fr05 Grupo Santa Casa de Belo Horizonte'),
(49390, 'https://ror.org/05psy1s28', 'en', 1, 'https://ror.org/05psy1s28 Remington-Davis Clinical Research'),
(49391, 'https://ror.org/02w3v2343', 'pt', 1, 'https://ror.org/02w3v2343 Santa Casa de Votuporanga'),
(49392, 'https://ror.org/00hj21c17', 'en', 1, 'https://ror.org/00hj21c17 Pediatric Brain Tumor Consortium'),
(49393, 'https://ror.org/05rr9na10', 'en', 1, 'https://ror.org/05rr9na10 Rwanda Zambia HIV Research Group'),
(49394, 'https://ror.org/053zny898', 'de', 1, 'https://ror.org/053zny898 SAPHIR Radiochirurgie'),
(49395, 'https://ror.org/04e8m0166', 'pt', 1, 'https://ror.org/04e8m0166 Sport Club Corinthians Paulista'),
(49396, 'https://ror.org/01ar3e651', 'en', 1, 'https://ror.org/01ar3e651 Reproductive & Genetic Hospital CITIC-Xiangya 中信湘雅生殖与遗传专科医院有限公司'),
(49397, 'https://ror.org/04ysex633', 'en', 1, 'https://ror.org/04ysex633 S3 Clinical Research Centers'),
(49398, 'https://ror.org/007yvyg13', 'en', 1, 'https://ror.org/007yvyg13 Reproductive Science Center'),
(49399, 'https://ror.org/00pmgar68', 'en', 1, 'https://ror.org/00pmgar68 Sacco Eye Group'),
(49400, 'https://ror.org/002sqnt54', 'en', 1, 'https://ror.org/002sqnt54 Saint Joseph Medical Center Joliet'),
(49401, 'https://ror.org/02krh4254', 'en', 1, 'https://ror.org/02krh4254 Sadick Dermatology'),
(49402, 'https://ror.org/05kw0cb16', 'en', 1, 'https://ror.org/05kw0cb16 Sadick Research Group'),
(49403, 'https://ror.org/0456zgq34', 'en', 1, 'https://ror.org/0456zgq34 Reprogenetics'),
(49404, 'https://ror.org/05esvmf28', 'en', 1, 'https://ror.org/05esvmf28 Providence Clinical Research'),
(49405, 'https://ror.org/03mr1bw41', 'en', 1, 'https://ror.org/03mr1bw41 Peninsula Orthopedic Associates'),
(49406, 'https://ror.org/053kxry22', 'no_lang_code', 1, 'https://ror.org/053kxry22 Sahyadri Hospital'),
(49407, 'https://ror.org/02kjpfv20', 'en', 1, 'https://ror.org/02kjpfv20 Peninsula Research'),
(49408, 'https://ror.org/02tbtsz30', 'no_lang_code', 1, 'https://ror.org/02tbtsz30 Synexus (United States)'),
(49409, 'https://ror.org/00ptj8t60', 'en', 1, 'https://ror.org/00ptj8t60 Provision Center for Proton Therapy'),
(49410, 'https://ror.org/04mmzs792', 'no_lang_code', 1, 'https://ror.org/04mmzs792 Oncolab (Romania)'),
(49411, 'https://ror.org/02dpn8j41', 'en', 1, 'https://ror.org/02dpn8j41 St. Luke''s Hospital'),
(49412, 'https://ror.org/01s73wp90', 'no_lang_code', 1, 'https://ror.org/01s73wp90 Scheck & Siress (United States)'),
(49413, 'https://ror.org/000qx0g86', 'en', 1, 'https://ror.org/000qx0g86 Psychiatric Medicine Associates'),
(49414, 'https://ror.org/03ba3e568', 'en', 1, 'https://ror.org/03ba3e568 Psych Recovery'),
(49415, 'https://ror.org/01egnsq83', 'fr', 1, 'https://ror.org/01egnsq83 Centre Hospitalier de Saint-Brieuc'),
(49416, 'https://ror.org/04bpt8p43', 'en', 1, 'https://ror.org/04bpt8p43 Shenzhen Luohu People''s Hospital 深圳罗湖区人民医院'),
(49417, 'https://ror.org/027hqk105', 'en', 1, 'https://ror.org/027hqk105 People''s Hospital of Cangzhou 沧州人民医院'),
(49418, 'https://ror.org/02byms354', 'fr', 1, 'https://ror.org/02byms354 Centre Hospitalier privé Saint Grégoire'),
(49419, 'https://ror.org/05crdkd52', 'en', 1, 'https://ror.org/05crdkd52 Sheepcot Medical Centre'),
(49420, 'https://ror.org/001g1zs59', 'en', 1, 'https://ror.org/001g1zs59 Wuhan Dongxihu District People Hospital 东西湖区人民医院'),
(49421, 'https://ror.org/04agzm654', 'en', 1, 'https://ror.org/04agzm654 Oyster Point Family Health Center'),
(49422, 'https://ror.org/03wm27n21', 'no_lang_code', 1, 'https://ror.org/03wm27n21 Shenyang 242 Hospital 沈阳二四二医院'),
(49423, 'https://ror.org/014s07b95', 'no_lang_code', 1, 'https://ror.org/014s07b95 Shenyang Anorectal Hospital 沉阳肛门医院'),
(49424, 'https://ror.org/0021t7t04', 'en', 1, 'https://ror.org/0021t7t04 SeaView Research'),
(49425, 'https://ror.org/00qftst12', 'en', 1, 'https://ror.org/00qftst12 Shenzhen Sixth People''s Hospital 深圳市第六人民医院'),
(49426, 'https://ror.org/05dj4bc96', 'en', 1, 'https://ror.org/05dj4bc96 Sall Research Medical Center'),
(49427, 'https://ror.org/016n28m75', 'pl', 1, 'https://ror.org/016n28m75 NZOZ Dom Sue Ryder'),
(49428, 'https://ror.org/02qar5136', 'en', 1, 'https://ror.org/02qar5136 Respiratory Clinical Trials'),
(49429, 'https://ror.org/04d1vhw60', 'en', 1, 'https://ror.org/04d1vhw60 Rongcheng City People''s Hospital 荣成人民医院'),
(49430, 'https://ror.org/04t1dgs65', 'en', 1, 'https://ror.org/04t1dgs65 Shepherds Care Foundation'),
(49431, 'https://ror.org/04bvnf226', 'pl', 1, 'https://ror.org/04bvnf226 Samodzielny Publiczny Zakład Opieki Zdrowotnej w Lubartowie'),
(49432, 'https://ror.org/00h5rtk23', 'en', 1, 'https://ror.org/00h5rtk23 Retina Associates of Kentucky'),
(49433, 'https://ror.org/01spdgx23', 'en', 1, 'https://ror.org/01spdgx23 Retina Associates of Western New York'),
(49434, 'https://ror.org/045ekgn88', 'en', 1, 'https://ror.org/045ekgn88 Retina Health Center'),
(49435, 'https://ror.org/04xk91k82', 'en', 1, 'https://ror.org/04xk91k82 Pepose Vision Institute'),
(49436, 'https://ror.org/04hm6wz53', 'en', 1, 'https://ror.org/04hm6wz53 San Diego Cardiac Center'),
(49437, 'https://ror.org/021yx2896', 'en', 1, 'https://ror.org/021yx2896 Retina Institute of Hawaii'),
(49438, 'https://ror.org/051vsps84', 'en', 1, 'https://ror.org/051vsps84 Retina Partners'),
(49439, 'https://ror.org/01fd98w69', 'en', 1, 'https://ror.org/01fd98w69 Perinatal Associates of New Mexico'),
(49440, 'https://ror.org/053fdhz60', 'en', 1, 'https://ror.org/053fdhz60 San Diego Fertility Center'),
(49441, 'https://ror.org/00atbfb07', 'en', 1, 'https://ror.org/00atbfb07 Perio Health Professionals'),
(49442, 'https://ror.org/00py0b751', 'en', 1, 'https://ror.org/00py0b751 Retina Specialists'),
(49443, 'https://ror.org/051gnwf77', 'en', 1, 'https://ror.org/051gnwf77 Retina Specialists of Michigan'),
(49444, 'https://ror.org/02csg2e67', 'en', 1, 'https://ror.org/02csg2e67 Aurora Periodontics and Implant Dentistry'),
(49445, 'https://ror.org/009prea33', 'en', 1, 'https://ror.org/009prea33 Sterling Research Group'),
(49446, 'https://ror.org/02fh40r38', 'en', 1, 'https://ror.org/02fh40r38 Peripheral Vascular Associates'),
(49447, 'https://ror.org/01azwtt17', 'no_lang_code', 1, 'https://ror.org/01azwtt17 Revant (Netherlands)'),
(49448, 'https://ror.org/05kjf3v93', 'en', 1, 'https://ror.org/05kjf3v93 Research Institute of Dallas'),
(49449, 'https://ror.org/004xcq641', 'en', 1, 'https://ror.org/004xcq641 Personal Enhancement Center'),
(49450, 'https://ror.org/00wjx1428', 'no_lang_code', 1, 'https://ror.org/00wjx1428 Ambulance Care (Sweden) Ambulanssjukvården i Storstockholm'),
(49451, 'https://ror.org/057a67e20', 'en', 1, 'https://ror.org/057a67e20 Setshaba Research Centre'),
(49452, 'https://ror.org/034cxfp17', 'en', 1, 'https://ror.org/034cxfp17 Texas Diabetes & Endocrinology'),
(49453, 'https://ror.org/03y0paf51', 'en', 1, 'https://ror.org/03y0paf51 Spaulding Hospital'),
(49454, 'https://ror.org/043sz6670', 'en', 1, 'https://ror.org/043sz6670 Sinclair Dermatology'),
(49455, 'https://ror.org/036qeyz83', 'en', 1, 'https://ror.org/036qeyz83 Stuart Oncology Associates'),
(49456, 'https://ror.org/05dhebt29', 'en', 1, 'https://ror.org/05dhebt29 Gabba Dermatology'),
(49457, 'https://ror.org/01sa13326', 'en', 1, 'https://ror.org/01sa13326 Specialized Dentistry of New York'),
(49458, 'https://ror.org/031tdwf58', 'en', 1, 'https://ror.org/031tdwf58 Texas Diabetes Institute'),
(49459, 'https://ror.org/00z1emh11', 'en', 1, 'https://ror.org/00z1emh11 Suburban Psychiatric Associates'),
(49460, 'https://ror.org/047c69t88', 'en', 1, 'https://ror.org/047c69t88 Texas ENT and Allergy'),
(49461, 'https://ror.org/016vanb16', 'en', 1, 'https://ror.org/016vanb16 Suburban Research Associates'),
(49462, 'https://ror.org/02ketev28', 'en', 1, 'https://ror.org/02ketev28 Texas Oncology'),
(49463, 'https://ror.org/02vjn2106', 'en', 1, 'https://ror.org/02vjn2106 Sioux Falls VA Health Care System'),
(49464, 'https://ror.org/04rfs1719', 'de', 1, 'https://ror.org/04rfs1719 Spital Uster'),
(49465, 'https://ror.org/03exer738', 'en', 1, 'https://ror.org/03exer738 Children’s Foundation'),
(49466, 'https://ror.org/03j2e8162', 'ro', 1, 'https://ror.org/03j2e8162 Spitalul Clinic de Urgență pentru Copii Cluj-Napoca'),
(49467, 'https://ror.org/046zf8j85', 'en', 1, 'https://ror.org/046zf8j85 Skin Care and Laser Physicians of Beverly Hills'),
(49468, 'https://ror.org/045zhv531', 'en', 1, 'https://ror.org/045zhv531 Summit Research Network'),
(49469, 'https://ror.org/03hwa6484', 'en', 1, 'https://ror.org/03hwa6484 Second Peoples Hospital of Shaanxi Province 陕西省第二人民医院'),
(49470, 'https://ror.org/04vjpxa50', 'en', 1, 'https://ror.org/04vjpxa50 Sprim Advanced Life Sciences'),
(49471, 'https://ror.org/04bda0170', 'en', 1, 'https://ror.org/04bda0170 Chinese People ''s Liberation Army No. 85 Hospital 第85医院'),
(49472, 'https://ror.org/00xax6856', 'en', 1, 'https://ror.org/00xax6856 Shanghai Changning Maternity and Infant Health Hospital 上海长宁区妇幼保健院'),
(49473, 'https://ror.org/01zwas239', 'en', 1, 'https://ror.org/01zwas239 Springfield Neurology Clinical Trials'),
(49474, 'https://ror.org/01b2pxy75', 'de', 1, 'https://ror.org/01b2pxy75 Institut für Psychogerontologie'),
(49475, 'https://ror.org/0246w5s24', 'no_lang_code', 1, 'https://ror.org/0246w5s24 Skin Specialty Dermatology (United States)'),
(49476, 'https://ror.org/00b46ya17', 'en', 1, 'https://ror.org/00b46ya17 Suncoast Clinical Research'),
(49477, 'https://ror.org/00r0rhj09', 'en', 1, 'https://ror.org/00r0rhj09 Southern Sports Leagues'),
(49478, 'https://ror.org/030hgrs40', 'en', 1, 'https://ror.org/030hgrs40 Skin Surgery Medical Group'),
(49479, 'https://ror.org/01vb1qg25', 'en', 1, 'https://ror.org/01vb1qg25 Center For Balanced Living'),
(49480, 'https://ror.org/033mx0906', 'en', 1, 'https://ror.org/033mx0906 St Andrew’s Hospital'),
(49481, 'https://ror.org/04smkn993', 'en', 1, 'https://ror.org/04smkn993 Sundance Clinical Research'),
(49482, 'https://ror.org/05b820q66', 'en', 1, 'https://ror.org/05b820q66 Sky Ridge Medical Center'),
(49483, 'https://ror.org/04jw6ed22', 'en', 1, 'https://ror.org/04jw6ed22 S.L. Raheja Hospital'),
(49484, 'https://ror.org/002tpp543', 'en', 1, 'https://ror.org/002tpp543 Center for Clinical and Cosmetic Research'),
(49485, 'https://ror.org/05fnzzk18', 'no_lang_code', 1, 'https://ror.org/05fnzzk18 Center for Clinical Research (United States)'),
(49486, 'https://ror.org/04v7rn512', 'en', 1, 'https://ror.org/04v7rn512 Sleep Center of Greater Pittsburgh'),
(49487, 'https://ror.org/05bywz149', 'en', 1, 'https://ror.org/05bywz149 Center for Dermatology, Cosmetic & Laser Surgery'),
(49488, 'https://ror.org/037my6387', 'en', 1, 'https://ror.org/037my6387 Sleep Therapy and Research Center'),
(49489, 'https://ror.org/03cvgyy64', 'en', 1, 'https://ror.org/03cvgyy64 Center for Excellence in Eye Care'),
(49490, 'https://ror.org/01hd54v98', 'en', 1, 'https://ror.org/01hd54v98 Sleep Management Institute'),
(49491, 'https://ror.org/02nptez24', 'en', 1, 'https://ror.org/02nptez24 Pudong Medical Center 上海市浦东医院'),
(49492, 'https://ror.org/04bxj6908', 'no_lang_code', 1, 'https://ror.org/04bxj6908 SleepMed'),
(49493, 'https://ror.org/058h4cw85', 'en', 1, 'https://ror.org/058h4cw85 The Spine & Nerve Centers of the Virginias'),
(49494, 'https://ror.org/04nwd2p56', 'en', 1, 'https://ror.org/04nwd2p56 Central Hospital of Putuo District 普陀区中心医院'),
(49495, 'https://ror.org/05p1sde72', 'en', 1, 'https://ror.org/05p1sde72 St. Bonifatius Hospital'),
(49496, 'https://ror.org/01z0axe47', 'en', 1, 'https://ror.org/01z0axe47 Slocum Center for Orthopedics and Sports Medicine'),
(49497, 'https://ror.org/04rtaxr13', 'en', 1, 'https://ror.org/04rtaxr13 Center for Rheumatology'),
(49498, 'https://ror.org/056ezdx45', 'en', 1, 'https://ror.org/056ezdx45 Surin Hospital โรงพยาบาลสุรินทร์'),
(49499, 'https://ror.org/001shd435', 'en', 1, 'https://ror.org/001shd435 Shuozhou Central Hospital 朔州中心医院'),
(49500, 'https://ror.org/04rxwqr66', 'en', 1, 'https://ror.org/04rxwqr66 OneBlood'),
(49501, 'https://ror.org/025srm412', 'en', 1, 'https://ror.org/025srm412 Sutter Roseville Medical Center'),
(49502, 'https://ror.org/04fhq1b19', 'en', 1, 'https://ror.org/04fhq1b19 St. Cloud Orthopedic Associates'),
(49503, 'https://ror.org/03hy9zy10', 'en', 1, 'https://ror.org/03hy9zy10 Suzhou Traditional Chinese Medicine Hospital 苏州中医医院'),
(49504, 'https://ror.org/04en42k10', 'en', 1, 'https://ror.org/04en42k10 Somdet Chaopraya Institute of Psychiatry สมเด็จสถาบันจิตเวชศาสตร์'),
(49505, 'https://ror.org/03mm8gj84', 'en', 1, 'https://ror.org/03mm8gj84 Svensk Onkologisk Förening Swedish Society of Oncology'),
(49506, 'https://ror.org/05f2dw604', 'en', 1, 'https://ror.org/05f2dw604 Somerset Skin Centre'),
(49507, 'https://ror.org/03tq2kc64', 'en', 1, 'https://ror.org/03tq2kc64 Shanxi Dayi Hospital 山西大医院'),
(49508, 'https://ror.org/04jvsvx56', 'en', 1, 'https://ror.org/04jvsvx56 St. Francis Community Hospital'),
(49509, 'https://ror.org/056b3tw70', 'en', 1, 'https://ror.org/056b3tw70 Center Orthopedic & Neurosurgical Care & Research'),
(49510, 'https://ror.org/0269fty31', 'en', 1, 'https://ror.org/0269fty31 Shaoxing Second Hospital 绍兴市第二医院'),
(49511, 'https://ror.org/03fcec566', 'en', 1, 'https://ror.org/03fcec566 Sylvana Research'),
(49512, 'https://ror.org/044j14864', 'en', 1, 'https://ror.org/044j14864 St. Johns Center for Clinical Research'),
(49513, 'https://ror.org/02jcef994', 'en', 1, 'https://ror.org/02jcef994 South African Tuberculosis Vaccine Initiative'),
(49514, 'https://ror.org/0446qvp04', 'en', 1, 'https://ror.org/0446qvp04 St. Joseph''s Care Group'),
(49515, 'https://ror.org/00pdsc246', 'en', 1, 'https://ror.org/00pdsc246 Center for Autisme'),
(49516, 'https://ror.org/050qgwx77', 'en', 1, 'https://ror.org/050qgwx77 Telethon Foundation'),
(49517, 'https://ror.org/01s09ha26', 'en', 1, 'https://ror.org/01s09ha26 Synergy Research Centers'),
(49518, 'https://ror.org/01bq78n56', 'en', 1, 'https://ror.org/01bq78n56 Horsley Medical Practice'),
(49519, 'https://ror.org/01qh4s373', 'en', 1, 'https://ror.org/01qh4s373 South Carolina Oncology Associates'),
(49520, 'https://ror.org/05e56c835', 'en', 1, 'https://ror.org/05e56c835 Medical Research Network'),
(49521, 'https://ror.org/01ywtay82', 'en', 1, 'https://ror.org/01ywtay82 Education & Research Foundation'),
(49522, 'https://ror.org/01z40a451', 'no_lang_code', 1, 'https://ror.org/01z40a451 Synexus (Germany)'),
(49523, 'https://ror.org/053dw0508', 'en', 1, 'https://ror.org/053dw0508 Columbus Eye Surgery Center'),
(49524, 'https://ror.org/030ph1y13', 'no_lang_code', 1, 'https://ror.org/030ph1y13 Synexus (United Kingdom)'),
(49525, 'https://ror.org/04mxvyg40', 'en', 1, 'https://ror.org/04mxvyg40 Melbourne Clinic'),
(49526, 'https://ror.org/0058tc217', 'en', 1, 'https://ror.org/0058tc217 Eye Institute of West Florida'),
(49527, 'https://ror.org/05w2bg876', 'en', 1, 'https://ror.org/05w2bg876 South Eastern Health and Social Care Trust'),
(49528, 'https://ror.org/03hbkyh21', 'en', 1, 'https://ror.org/03hbkyh21 St. Louis Medical Clinic'),
(49529, 'https://ror.org/0306e5z24', 'en', 1, 'https://ror.org/0306e5z24 Multiple Sclerosis Center of Atlanta'),
(49530, 'https://ror.org/0155km815', 'en', 1, 'https://ror.org/0155km815 South Florida Medical Research'),
(49531, 'https://ror.org/02gr42472', 'en', 1, 'https://ror.org/02gr42472 First Affiliated Hospital of Guangdong Pharmaceutical University 广东药学院第一附属医院'),
(49532, 'https://ror.org/029c2eq23', 'en', 1, 'https://ror.org/029c2eq23 Syracuse Orthopedic Specialists'),
(49533, 'https://ror.org/01ffek432', 'en', 1, 'https://ror.org/01ffek432 First Affiliated Hospital of Hunan University of Traditional Chinese Medicine 湖南中医药大学第一附属医院'),
(49534, 'https://ror.org/0288he568', 'en', 1, 'https://ror.org/0288he568 South Shore Eye Care'),
(49535, 'https://ror.org/050gzab21', 'en', 1, 'https://ror.org/050gzab21 Inner Mongolia Maternal and Child Health 内蒙古妇幼保健'),
(49536, 'https://ror.org/03037e419', 'en', 1, 'https://ror.org/03037e419 Ninth Hospital of Nanchang 南昌市第九医院官方网站'),
(49537, 'https://ror.org/059c9vn90', 'en', 1, 'https://ror.org/059c9vn90 First Affiliated Hospital of Henan University of Traditional Chinese Medicine 河南中医学院第一医院'),
(49538, 'https://ror.org/04pbh9679', 'en', 1, 'https://ror.org/04pbh9679 Hohhot First Hospital 呼和浩特第一医院'),
(49539, 'https://ror.org/02eqphf30', 'en', 1, 'https://ror.org/02eqphf30 St. Mary Medical Center'),
(49540, 'https://ror.org/05qwgjd68', 'en', 1, 'https://ror.org/05qwgjd68 Hefei First People''s Hospital 合肥第一人民医院'),
(49541, 'https://ror.org/05vvw9r90', 'en', 1, 'https://ror.org/05vvw9r90 Office of Adolescent Health'),
(49542, 'https://ror.org/05j2yt510', 'en', 1, 'https://ror.org/05j2yt510 Fourth People''s Hospital of Taiyuan 太原市第四人民医院_百度百科'),
(49543, 'https://ror.org/01scs7915', 'en', 1, 'https://ror.org/01scs7915 South Texas Accelerated Research Therapeutics'),
(49544, 'https://ror.org/00c4nt602', 'en', 1, 'https://ror.org/00c4nt602 Orthopedic Center'),
(49545, 'https://ror.org/000qysg46', 'en', 1, 'https://ror.org/000qysg46 Yinchuan First People''s Hospital 银川第一人民医院'),
(49546, 'https://ror.org/02jx0eg57', 'en', 1, 'https://ror.org/02jx0eg57 South Texas Blood and Tissue Center'),
(49547, 'https://ror.org/01mmm4p44', 'en', 1, 'https://ror.org/01mmm4p44 Hospital 463 People''s Liberation Army 解放军四六三医院'),
(49548, 'https://ror.org/05bhs6b69', 'en', 1, 'https://ror.org/05bhs6b69 Tampa Bay Medical Research'),
(49549, 'https://ror.org/015q7hw55', 'en', 1, 'https://ror.org/015q7hw55 Saint-Petersburg Medico-Social Institute Санкт-Петербургский государственный институт Медико'),
(49550, 'https://ror.org/00xp3qv26', 'en', 1, 'https://ror.org/00xp3qv26 Jordan Valley Dermatology'),
(49551, 'https://ror.org/01wkath48', 'en', 1, 'https://ror.org/01wkath48 Fourth Hospital of Changsha 长沙市第四医院'),
(49552, 'https://ror.org/05nxvxm15', 'en', 1, 'https://ror.org/05nxvxm15 Fourth Hospital of Inner Mongolia 内蒙古第四医院'),
(49553, 'https://ror.org/02kqzrt08', 'nl', 1, 'https://ror.org/02kqzrt08 Tandartspraktijk Bocht Oosterdiep'),
(49554, 'https://ror.org/05dehe044', 'en', 1, 'https://ror.org/05dehe044 Guenther Dermatology Research Centre'),
(49555, 'https://ror.org/05ptrtc51', 'en', 1, 'https://ror.org/05ptrtc51 Gaozhou People''s Hospital 高州人民医院'),
(49556, 'https://ror.org/02pje8j21', 'en', 1, 'https://ror.org/02pje8j21 Tanzania Women Research Foundation'),
(49557, 'https://ror.org/01q3qfk61', 'en', 1, 'https://ror.org/01q3qfk61 Southbay Pharma Research'),
(49558, 'https://ror.org/01p7bsb42', 'en', 1, 'https://ror.org/01p7bsb42 St. Vladimir Children''s Moscow Clinical Hospital Свято-Владимирский Детская клиническая больница Москва'),
(49559, 'https://ror.org/03wbpnx68', 'en', 1, 'https://ror.org/03wbpnx68 Nargis Dutt Memorial Cancer Hospital'),
(49560, 'https://ror.org/033zztb05', 'en', 1, 'https://ror.org/033zztb05 Southeastern Fertility Center'),
(49561, 'https://ror.org/01a91k946', 'nl', 1, 'https://ror.org/01a91k946 St.Jans Gasthuis Weert'),
(49562, 'https://ror.org/05525qx48', 'en', 1, 'https://ror.org/05525qx48 Tauber Eye Center'),
(49563, 'https://ror.org/05pv1tb51', 'en', 1, 'https://ror.org/05pv1tb51 Taustine Eye Center'),
(49564, 'https://ror.org/04nkk7415', 'en', 1, 'https://ror.org/04nkk7415 Southeastern Retina Associates'),
(49565, 'https://ror.org/0247xav12', 'en', 1, 'https://ror.org/0247xav12 TEDA International Cardiovascular Hospital 泰达国际心血管病医院'),
(49566, 'https://ror.org/03jwxc595', 'en', 1, 'https://ror.org/03jwxc595 Second Affiliated Hospital of Hunan University of Traditional Chinese Medicine'),
(49567, 'https://ror.org/02q4zyb28', 'de', 1, 'https://ror.org/02q4zyb28 Stadtkrankenhaus Schwabach'),
(49568, 'https://ror.org/03svtz920', 'no_lang_code', 1, 'https://ror.org/03svtz920 Tekwani Vision Center'),
(49569, 'https://ror.org/01zyn4z03', 'en', 1, 'https://ror.org/01zyn4z03 Beijing Luhe Hospital Affiliated to Capital Medical University 首都医科大学附属北京潞河医院'),
(49570, 'https://ror.org/02904nv16', 'en', 1, 'https://ror.org/02904nv16 Maas Clinic'),
(49571, 'https://ror.org/02vr5rk77', 'en', 1, 'https://ror.org/02vr5rk77 Southern California Desert Retina Consultants'),
(49572, 'https://ror.org/04m4mvs85', 'en', 1, 'https://ror.org/04m4mvs85 Southern Eye Associates'),
(49573, 'https://ror.org/00bbk4z43', 'en', 1, 'https://ror.org/00bbk4z43 Second People ''s Hospital of Jinzhong 晋中市第二人民医院'),
(49574, 'https://ror.org/021pcgg80', 'en', 1, 'https://ror.org/021pcgg80 Temple Lung Center'),
(49575, 'https://ror.org/053sgn987', 'en', 1, 'https://ror.org/053sgn987 TOTALL Diabetes Hormone Institute'),
(49576, 'https://ror.org/04bfv0919', 'en', 1, 'https://ror.org/04bfv0919 Tower Cancer Research Foundation'),
(49577, 'https://ror.org/05jsaxg97', 'en', 1, 'https://ror.org/05jsaxg97 Tennessee Clinical Research Center'),
(49578, 'https://ror.org/03vma5j11', 'en', 1, 'https://ror.org/03vma5j11 Staploe Medical Centre'),
(49579, 'https://ror.org/00dd2yg30', 'en', 1, 'https://ror.org/00dd2yg30 Tower Urology Medical Group'),
(49580, 'https://ror.org/011gwd889', 'en', 1, 'https://ror.org/011gwd889 Tennessee Orthopaedic Alliance'),
(49581, 'https://ror.org/02043dc11', 'en', 1, 'https://ror.org/02043dc11 Segal Institute for Clinical Research'),
(49582, 'https://ror.org/02kahb572', 'en', 1, 'https://ror.org/02kahb572 Texan Eye'),
(49583, 'https://ror.org/000tfh447', 'en', 1, 'https://ror.org/000tfh447 Dali Traditional Chinese Medicine Hospital 大理白族自治州中医医院'),
(49584, 'https://ror.org/033wsx172', 'no_lang_code', 1, 'https://ror.org/033wsx172 Siesta Group (Austria)'),
(49585, 'https://ror.org/050d0fq97', 'en', 1, 'https://ror.org/050d0fq97 Affiliated Hospital of Jiangxi University of Traditional Chinese Medicine 江西省中医院'),
(49586, 'https://ror.org/00y30az25', 'en', 1, 'https://ror.org/00y30az25 Sparrow Health System'),
(49587, 'https://ror.org/05qy4jt44', 'en', 1, 'https://ror.org/05qy4jt44 Moscow City Oncology Hospital №62'),
(49588, 'https://ror.org/041567670', 'en', 1, 'https://ror.org/041567670 TRIA Orthopaedic Center'),
(49589, 'https://ror.org/050g0hk79', 'en', 1, 'https://ror.org/050g0hk79 Volgograd Regional Clinical Oncology Center Волгоградский областной клинический онкологический диспансер № 1'),
(49590, 'https://ror.org/057yjva61', 'en', 1, 'https://ror.org/057yjva61 Triad Clinical Trials'),
(49591, 'https://ror.org/03mn32794', 'en', 1, 'https://ror.org/03mn32794 Skin Wellness Center'),
(49592, 'https://ror.org/05gtwra97', 'de', 1, 'https://ror.org/05gtwra97 Universitäts HNO Klinik Mannheim'),
(49593, 'https://ror.org/00ymd9k36', 'en', 1, 'https://ror.org/00ymd9k36 Third Affiliated Hospital of Inner Mongolia Medical College'),
(49594, 'https://ror.org/02k5aap11', 'en', 1, 'https://ror.org/02k5aap11 Centre for Prevention and Control of AIDS and Infectious Diseases Центр по профилактике и борьбе со СПИДом и инфекционными заболеваниями,'),
(49595, 'https://ror.org/04w3qme09', 'en', 1, 'https://ror.org/04w3qme09 Third Hospital of Changsha'),
(49596, 'https://ror.org/025sg0039', 'en', 1, 'https://ror.org/025sg0039 Regional Center for Prevention and Control of AIDS and Infectious Diseases Областной медицинский центр по борьбе с инфекционными заболеваниями'),
(49597, 'https://ror.org/02caz1263', 'en', 1, 'https://ror.org/02caz1263 Third People ''s Hospital of Chongqing 重庆市第三人民医院'),
(49598, 'https://ror.org/008bb6z37', 'en', 1, 'https://ror.org/008bb6z37 Nizhny Novgorod Regional Clinical Oncology Center Нижний Новгород областной онкологический диспансер'),
(49599, 'https://ror.org/048as6j09', 'en', 1, 'https://ror.org/048as6j09 Urology Team'),
(49600, 'https://ror.org/04kzqr274', 'en', 1, 'https://ror.org/04kzqr274 Ulyanovsk Regional Oncology Center Региональный клинический онкологический диспансер'),
(49601, 'https://ror.org/02rfhxh40', 'en', 1, 'https://ror.org/02rfhxh40 Westbourne Centre'),
(49602, 'https://ror.org/05jh9p159', 'en', 1, 'https://ror.org/05jh9p159 Ubonratchathani Cancer Hospital โรงพยาบาลมะเร็งอุบลราชธานี'),
(49603, 'https://ror.org/00zn1ak77', 'ro', 1, 'https://ror.org/00zn1ak77 Spitalul Clinic CF Cluj-Napoca'),
(49604, 'https://ror.org/04zyw0g92', 'en', 1, 'https://ror.org/04zyw0g92 Therafirst Medical Center'),
(49605, 'https://ror.org/013v7fk41', 'en', 1, 'https://ror.org/013v7fk41 University Hospital and Clinics'),
(49606, 'https://ror.org/04b0her22', 'nl', 1, 'https://ror.org/04b0her22 AZ Delta'),
(49607, 'https://ror.org/04tzr7454', 'de', 1, 'https://ror.org/04tzr7454 Therapiezentrum Burgau'),
(49608, 'https://ror.org/03dzmr959', 'en', 1, 'https://ror.org/03dzmr959 Stedman Clinical Trials'),
(49609, 'https://ror.org/05jpj2w31', 'en', 1, 'https://ror.org/05jpj2w31 Udon Thani Hospital'),
(49610, 'https://ror.org/01m74as88', 'en', 1, 'https://ror.org/01m74as88 Third People ''s Hospital of Liaoyang'),
(49611, 'https://ror.org/02wm6n026', 'en', 1, 'https://ror.org/02wm6n026 Uganda Chartered Health Net'),
(49612, 'https://ror.org/054162a80', 'no_lang_code', 1, 'https://ror.org/054162a80 Universal Court Reporting (United States)'),
(49613, 'https://ror.org/04sk5kz08', 'en', 1, 'https://ror.org/04sk5kz08 University Diabetes and Endocrine Consultants'),
(49614, 'https://ror.org/034srtc18', 'en', 1, 'https://ror.org/034srtc18 Johnson Center for Child Health and Development'),
(49615, 'https://ror.org/01h8fgw60', 'en', 1, 'https://ror.org/01h8fgw60 Tianjin Infectious Diseases Hospital 天津市传染病医院'),
(49616, 'https://ror.org/02pgmm462', 'en', 1, 'https://ror.org/02pgmm462 Tianjin Tanggu Women and Child Health 塘沽区妇幼保健院'),
(49617, 'https://ror.org/03aw15z34', 'no_lang_code', 1, 'https://ror.org/03aw15z34 AlterG (United States)'),
(49618, 'https://ror.org/0066zj839', 'en', 1, 'https://ror.org/0066zj839 Tidewater Kidney Specialists'),
(49619, 'https://ror.org/02c6wz078', 'en', 1, 'https://ror.org/02c6wz078 University of Zimbabwe-University of California San Francisco'),
(49620, 'https://ror.org/02xfyax20', 'en', 1, 'https://ror.org/02xfyax20 Tokeidai Memorial Hospital'),
(49621, 'https://ror.org/02wp64j63', 'en', 1, 'https://ror.org/02wp64j63 University of Iowa Health Alliance'),
(49622, 'https://ror.org/00q2zja93', 'en', 1, 'https://ror.org/00q2zja93 United Heart and Vascular Clinic'),
(49623, 'https://ror.org/046xy0k58', 'en', 1, 'https://ror.org/046xy0k58 NIHR Wellcome Trust Southampton Clinical Research Facility'),
(49624, 'https://ror.org/059gb3r46', 'en', 1, 'https://ror.org/059gb3r46 TKL Research'),
(49625, 'https://ror.org/04sdnbk30', 'en', 1, 'https://ror.org/04sdnbk30 Universal Biopharma Research Institute'),
(49626, 'https://ror.org/031a73r17', 'nl', 1, 'https://ror.org/031a73r17 Tolbrug Specialistische Revalidatie'),
(49627, 'https://ror.org/00vhctc31', 'fr', 1, 'https://ror.org/00vhctc31 Centre Hospitalier de Vitré'),
(49628, 'https://ror.org/00tdt9a76', 'no_lang_code', 1, 'https://ror.org/00tdt9a76 Vivus Heart Hospital'),
(49629, 'https://ror.org/05exe6d14', 'nl', 1, 'https://ror.org/05exe6d14 Franciscus Vlietland'),
(49630, 'https://ror.org/05jr8e497', 'en', 1, 'https://ror.org/05jr8e497 Willamette Valley Cancer Institute and Research Center'),
(49631, 'https://ror.org/05x23jh68', 'en', 1, 'https://ror.org/05x23jh68 Volunteer Research Group and New Orleans Center for Clinical Research'),
(49632, 'https://ror.org/00e99dd12', 'en', 1, 'https://ror.org/00e99dd12 University Physicians Group'),
(49633, 'https://ror.org/01954vf31', 'en', 1, 'https://ror.org/01954vf31 Wake Research'),
(49634, 'https://ror.org/012kq8z96', 'en', 1, 'https://ror.org/012kq8z96 Windsor Clinical Research'),
(49635, 'https://ror.org/03m5z5h02', 'en', 1, 'https://ror.org/03m5z5h02 Windsor Dermatology'),
(49636, 'https://ror.org/052krvf25', 'de', 1, 'https://ror.org/052krvf25 Winghofer Medicum'),
(49637, 'https://ror.org/05s8w9t64', 'en', 1, 'https://ror.org/05s8w9t64 Warren County Health Department'),
(49638, 'https://ror.org/02653sm42', 'en', 1, 'https://ror.org/02653sm42 Upper Grand Family Health Team'),
(49639, 'https://ror.org/0594ske86', 'en', 1, 'https://ror.org/0594ske86 VA Nebraska Western Iowa Health Care System'),
(49640, 'https://ror.org/00mzdyq43', 'en', 1, 'https://ror.org/00mzdyq43 Zhejiang Provincial Hospital of TCM 浙江省中医院'),
(49641, 'https://ror.org/04xqqa618', 'en', 1, 'https://ror.org/04xqqa618 AMC Neurology Group Clinical Research Center'),
(49642, 'https://ror.org/03y8pzx74', 'en', 1, 'https://ror.org/03y8pzx74 Washington Center for Weight Management and Research'),
(49643, 'https://ror.org/04exar519', 'en', 1, 'https://ror.org/04exar519 Moss Memorial Health Clinic'),
(49644, 'https://ror.org/00s61s029', 'en', 1, 'https://ror.org/00s61s029 VA New England Healthcare System'),
(49645, 'https://ror.org/041ktbj76', 'en', 1, 'https://ror.org/041ktbj76 Ural Institute of Cardiology Уральский институт кардиологии'),
(49646, 'https://ror.org/009jvch84', 'en', 1, 'https://ror.org/009jvch84 Woburn & North Andover Pediatric Associates'),
(49647, 'https://ror.org/05qe9cy98', 'en', 1, 'https://ror.org/05qe9cy98 Wolstan & Goldberg Eye Associates'),
(49648, 'https://ror.org/02pfr9428', 'nl', 1, 'https://ror.org/02pfr9428 Waterlandziekenhuis'),
(49649, 'https://ror.org/02v54dp66', 'en', 1, 'https://ror.org/02v54dp66 Valdosta Psychiatric Associates'),
(49650, 'https://ror.org/02vjc4d72', 'en', 1, 'https://ror.org/02vjc4d72 Women’s Health Care'),
(49651, 'https://ror.org/03c174c49', 'en', 1, 'https://ror.org/03c174c49 Validia Kuntoutus Validia Rehabilitation'),
(49652, 'https://ror.org/04rn6m357', 'de', 1, 'https://ror.org/04rn6m357 Maria Hilf Krankenhaus'),
(49653, 'https://ror.org/01j7rg942', 'en', 1, 'https://ror.org/01j7rg942 Urology Associates of North Texas'),
(49654, 'https://ror.org/04663jx74', 'en', 1, 'https://ror.org/04663jx74 College Station Medical Center'),
(49655, 'https://ror.org/038y3ce09', 'en', 1, 'https://ror.org/038y3ce09 Urology Bay of Plenty'),
(49656, 'https://ror.org/01abmka80', 'en', 1, 'https://ror.org/01abmka80 Zhongshan City Second People''s Hospital 中山市第二人民医院'),
(49657, 'https://ror.org/05x1ct167', 'en', 1, 'https://ror.org/05x1ct167 Valley Retina Institute'),
(49658, 'https://ror.org/03vpa9q11', 'en', 1, 'https://ror.org/03vpa9q11 Weihai Municipal Hospital 威海市立医院'),
(49659, 'https://ror.org/059wqqf58', 'en', 1, 'https://ror.org/059wqqf58 Wuzhou Red Cross Hospital 梧州市红十字会医院'),
(49660, 'https://ror.org/04aztm043', 'en', 1, 'https://ror.org/04aztm043 Wyndhurst Counseling Center'),
(49661, 'https://ror.org/00fff9d21', 'en', 1, 'https://ror.org/00fff9d21 Urology San Antonio'),
(49662, 'https://ror.org/004cdc714', 'en', 1, 'https://ror.org/004cdc714 Xian Central Hospital 西安市中心医院'),
(49663, 'https://ror.org/03djjj187', 'en', 1, 'https://ror.org/03djjj187 Villa Pineta Hospital'),
(49664, 'https://ror.org/039frc380', 'no_lang_code', 1, 'https://ror.org/039frc380 Well Pharma Medical Research (United States)'),
(49665, 'https://ror.org/05tr58t76', 'no_lang_code', 1, 'https://ror.org/05tr58t76 Cogentix Medical (United States)'),
(49666, 'https://ror.org/01r4jg965', 'en', 1, 'https://ror.org/01r4jg965 Virginia Clinical Research'),
(49667, 'https://ror.org/03sys9n92', 'en', 1, 'https://ror.org/03sys9n92 Virginia Eye Consultants'),
(49668, 'https://ror.org/0284jzx23', 'en', 1, 'https://ror.org/0284jzx23 Xingtai People''s Hospital 邢台市人民医院'),
(49669, 'https://ror.org/009yyqs39', 'en', 1, 'https://ror.org/009yyqs39 Virginia Oncology Associates'),
(49670, 'https://ror.org/04r67yj20', 'en', 1, 'https://ror.org/04r67yj20 WellSpan York Hospital'),
(49671, 'https://ror.org/03k6w4998', 'no_lang_code', 1, 'https://ror.org/03k6w4998 Vanak Eye Center'),
(49672, 'https://ror.org/0089j2p79', 'en', 1, 'https://ror.org/0089j2p79 Vance Thompson Vision'),
(49673, 'https://ror.org/037ds2k79', 'en', 1, 'https://ror.org/037ds2k79 Virginia Research Institute'),
(49674, 'https://ror.org/02qyk0j27', 'en', 1, 'https://ror.org/02qyk0j27 Xintai People''s Hospital 新泰市人民医院'),
(49675, 'https://ror.org/010z5qj64', 'en', 1, 'https://ror.org/010z5qj64 Virginia Spine Research Institute'),
(49676, 'https://ror.org/04k47ec04', 'en', 1, 'https://ror.org/04k47ec04 Yantai Laiyang Central Hospital 烟台莱阳中心医院'),
(49677, 'https://ror.org/05fgpk863', 'no_lang_code', 1, 'https://ror.org/05fgpk863 Atlantic Clinical Research Collaborative (United States)'),
(49678, 'https://ror.org/03q37xb84', 'en', 1, 'https://ror.org/03q37xb84 Wenatchee Valley Hospital & Clinics'),
(49679, 'https://ror.org/0585zpm44', 'en', 1, 'https://ror.org/0585zpm44 West Coast Retina'),
(49680, 'https://ror.org/044g62j84', 'en', 1, 'https://ror.org/044g62j84 Westover Heights Clinic'),
(49681, 'https://ror.org/01b658f62', 'en', 1, 'https://ror.org/01b658f62 ENT and Allergy'),
(49682, 'https://ror.org/0149pmh27', 'en', 1, 'https://ror.org/0149pmh27 Yue Bei People''s Hospital 粤北人民医院'),
(49683, 'https://ror.org/04sq2be74', 'en', 1, 'https://ror.org/04sq2be74 Westside Center for Clinical Research'),
(49684, 'https://ror.org/0200x2j16', 'sv', 1, 'https://ror.org/0200x2j16 Praktikertjänst'),
(49685, 'https://ror.org/006ymvg95', 'no_lang_code', 1, 'https://ror.org/006ymvg95 Wenzhou Hospital of Traditional Chinese Medicine 温州市中医院'),
(49686, 'https://ror.org/05aw6p704', 'en', 1, 'https://ror.org/05aw6p704 West German Heart and Vascular Center Essen Westdeutsche Herz- und Gefäßzentrum Essen'),
(49687, 'https://ror.org/054t0kh70', 'no_lang_code', 1, 'https://ror.org/054t0kh70 Yueqing People''s Hospital 乐清人民医院'),
(49688, 'https://ror.org/01at8r832', 'en', 1, 'https://ror.org/01at8r832 Whitsett Vision Group'),
(49689, 'https://ror.org/02hce7r59', 'en', 1, 'https://ror.org/02hce7r59 8020 Promotion Foundation 8020推進財団'),
(49690, 'https://ror.org/01mejbd78', 'en', 1, 'https://ror.org/01mejbd78 Venice Family Clinic'),
(49691, 'https://ror.org/00sb42p15', 'en', 1, 'https://ror.org/00sb42p15 Western Health and Social Care Trust'),
(49692, 'https://ror.org/04eba0590', 'en', 1, 'https://ror.org/04eba0590 Veracity Clinical Research'),
(49693, 'https://ror.org/055dxk232', 'en', 1, 'https://ror.org/055dxk232 Western Maryland Health System'),
(49694, 'https://ror.org/038628g29', 'en', 1, 'https://ror.org/038628g29 American Academy of Periodontology Foundation'),
(49695, 'https://ror.org/04g5yrp52', 'en', 1, 'https://ror.org/04g5yrp52 A-T Children''s Project'),
(49696, 'https://ror.org/02ye6d240', 'en', 1, 'https://ror.org/02ye6d240 Agriculture, Forestry and Fisheries Research Council 農林水産技術会議'),
(49697, 'https://ror.org/0090hd978', 'en', 1, 'https://ror.org/0090hd978 American Academy of Sleep Medicine'),
(49698, 'https://ror.org/023t48c08', 'en', 1, 'https://ror.org/023t48c08 American Wildlife Conservation Foundation'),
(49699, 'https://ror.org/01k02wt67', 'en', 1, 'https://ror.org/01k02wt67 Society of Health and Physical Educators'),
(49700, 'https://ror.org/016pjbx35', 'en', 1, 'https://ror.org/016pjbx35 Asian Association for Dynamic Osteosynthesis'),
(49701, 'https://ror.org/05cejc480', 'en', 1, 'https://ror.org/05cejc480 American Italian Cancer Foundation'),
(49702, 'https://ror.org/05q623n42', 'en', 1, 'https://ror.org/05q623n42 American Association for the Surgery of Trauma'),
(49703, 'https://ror.org/03yanpe89', 'en', 1, 'https://ror.org/03yanpe89 A. E. Finley Foundation'),
(49704, 'https://ror.org/00n5w1596', 'en', 1, 'https://ror.org/00n5w1596 People ''s Hospital of Jilin Province 吉林省人民医院'),
(49705, 'https://ror.org/04n7vez34', 'no_lang_code', 1, 'https://ror.org/04n7vez34 AgroFresh (United States)'),
(49706, 'https://ror.org/00rye6n28', 'en', 1, 'https://ror.org/00rye6n28 ASIS Foundation'),
(49707, 'https://ror.org/05hqtjm11', 'no_lang_code', 1, 'https://ror.org/05hqtjm11 Amgen (Netherlands)'),
(49708, 'https://ror.org/00jnyfv56', 'en', 1, 'https://ror.org/00jnyfv56 American Association of Avian Pathologists'),
(49709, 'https://ror.org/0243wgp76', 'en', 1, 'https://ror.org/0243wgp76 Foundation for Health in Aging'),
(49710, 'https://ror.org/01f7bfe52', 'en', 1, 'https://ror.org/01f7bfe52 American Association of Bovine Practitioners'),
(49711, 'https://ror.org/04ps05k54', 'en', 1, 'https://ror.org/04ps05k54 American Association of Clinical Endocrinologists'),
(49712, 'https://ror.org/0073n0s52', 'fr', 1, 'https://ror.org/0073n0s52 Amis de l''Institut Bordet'),
(49713, 'https://ror.org/019w9ty29', 'en', 1, 'https://ror.org/019w9ty29 American Association of Endocrine Surgeons'),
(49714, 'https://ror.org/01e3cnp62', 'en', 1, 'https://ror.org/01e3cnp62 A.P. Giannini Foundation'),
(49715, 'https://ror.org/00xege567', 'en', 1, 'https://ror.org/00xege567 Amon G. Carter Foundation'),
(49716, 'https://ror.org/03b8ttp75', 'en', 1, 'https://ror.org/03b8ttp75 Assisi Foundation of Memphis'),
(49717, 'https://ror.org/017trqn73', 'en', 1, 'https://ror.org/017trqn73 AAA Foundation for Traffic Safety'),
(49718, 'https://ror.org/05h1fqv07', 'en', 1, 'https://ror.org/05h1fqv07 Aicardi Syndrome Foundation'),
(49719, 'https://ror.org/01pfv2y33', 'en', 1, 'https://ror.org/01pfv2y33 Amyloidosis Foundation'),
(49720, 'https://ror.org/047tmvg79', 'en', 1, 'https://ror.org/047tmvg79 American Association of Equine Practitioners'),
(49721, 'https://ror.org/01am05n73', 'en', 1, 'https://ror.org/01am05n73 Associated Oregon Loggers'),
(49722, 'https://ror.org/010tbvz48', 'en', 1, 'https://ror.org/010tbvz48 Anandamahidol foundation'),
(49723, 'https://ror.org/04btcdy83', 'en', 1, 'https://ror.org/04btcdy83 American Association of Plastic Surgeons'),
(49724, 'https://ror.org/007q7fd56', 'en', 1, 'https://ror.org/007q7fd56 AADC Research Trust'),
(49725, 'https://ror.org/008hvd197', 'da', 1, 'https://ror.org/008hvd197 Aage V. Jensens Fonde'),
(49726, 'https://ror.org/02qc1es24', 'fr', 1, 'https://ror.org/02qc1es24 Association du Syndrome de Lowe'),
(49727, 'https://ror.org/01ekr8r30', 'en', 1, 'https://ror.org/01ekr8r30 American Association of Teachers of Korean'),
(49728, 'https://ror.org/007r33g58', 'en', 1, 'https://ror.org/007r33g58 American Association of Zoo Veterinarians'),
(49729, 'https://ror.org/01z0efz13', 'en', 1, 'https://ror.org/01z0efz13 Aichi Science & Technology Foundation 公益財団法人科学技術交流財団'),
(49730, 'https://ror.org/03zxtf807', 'en', 1, 'https://ror.org/03zxtf807 Andrea and Charles Bronfman Philanthropies'),
(49731, 'https://ror.org/05f6w6d75', 'en', 1, 'https://ror.org/05f6w6d75 American Asthma Foundation'),
(49732, 'https://ror.org/04j18qv50', 'en', 1, 'https://ror.org/04j18qv50 Association for Academic Surgery Foundation'),
(49733, 'https://ror.org/00g6mre77', 'en', 1, 'https://ror.org/00g6mre77 American Astronautical Society'),
(49734, 'https://ror.org/02dh6fs53', 'en', 1, 'https://ror.org/02dh6fs53 Andrea Mennen Family Foundation'),
(49735, 'https://ror.org/0549zep27', 'en', 1, 'https://ror.org/0549zep27 Association for Glycogen Storage Disease'),
(49736, 'https://ror.org/04vh36p08', 'da', 1, 'https://ror.org/04vh36p08 AIDS Fondet'),
(49737, 'https://ror.org/05q2bhv13', 'en', 1, 'https://ror.org/05q2bhv13 Association for Prevention Teaching and Research'),
(49738, 'https://ror.org/02xeb0g66', 'en', 1, 'https://ror.org/02xeb0g66 Abell Foundation'),
(49739, 'https://ror.org/03pnd3r37', 'en', 1, 'https://ror.org/03pnd3r37 Andy Warhol Foundation for the Visual Arts'),
(49740, 'https://ror.org/02ch6a529', 'en', 1, 'https://ror.org/02ch6a529 American Autoimmune Related Diseases Association'),
(49741, 'https://ror.org/0149k7n03', 'en', 1, 'https://ror.org/0149k7n03 Abell-Hanger Foundation'),
(49742, 'https://ror.org/03w32n732', 'en', 1, 'https://ror.org/03w32n732 American Brain Tumor Association'),
(49743, 'https://ror.org/02t5mzr26', 'en', 1, 'https://ror.org/02t5mzr26 AIM at Melanoma Foundation'),
(49744, 'https://ror.org/032s9p188', 'en', 1, 'https://ror.org/032s9p188 Anesthesia Patient Safety Foundation'),
(49745, 'https://ror.org/02kgj4n82', 'en', 1, 'https://ror.org/02kgj4n82 Foundation for Child Development'),
(49746, 'https://ror.org/010w8tb22', 'en', 1, 'https://ror.org/010w8tb22 Aims2Cure'),
(49747, 'https://ror.org/01avc0g69', 'en', 1, 'https://ror.org/01avc0g69 Association for the Study of Medical Education'),
(49748, 'https://ror.org/0509rvg03', 'en', 1, 'https://ror.org/0509rvg03 American College of Veterinary Surgeons'),
(49749, 'https://ror.org/01xxn5f34', 'en', 1, 'https://ror.org/01xxn5f34 Angelman Syndrome Foundation'),
(49750, 'https://ror.org/05xcjrc42', 'en', 1, 'https://ror.org/05xcjrc42 Association for the Study of the Middle East and Africa'),
(49751, 'https://ror.org/01m1se903', 'en', 1, 'https://ror.org/01m1se903 Abney Foundation'),
(49752, 'https://ror.org/0117m7141', 'fr', 1, 'https://ror.org/0117m7141 Association France Ekbom');
INSERT INTO `rors` VALUES
(49753, 'https://ror.org/02a207p76', 'en', 1, 'https://ror.org/02a207p76 American Concrete Institute'),
(49754, 'https://ror.org/02yn0z735', 'en', 1, 'https://ror.org/02yn0z735 Association for Iron & Steel Technology'),
(49755, 'https://ror.org/01psax922', 'en', 1, 'https://ror.org/01psax922 Association of American Railroads'),
(49756, 'https://ror.org/01qfen484', 'en', 1, 'https://ror.org/01qfen484 Association of Management Development Institutions in South Asia'),
(49757, 'https://ror.org/03ak9g490', 'en', 1, 'https://ror.org/03ak9g490 Association of Migraine Disorders'),
(49758, 'https://ror.org/04zw0mb93', 'en', 1, 'https://ror.org/04zw0mb93 American Dental Hygienists'' Association'),
(49759, 'https://ror.org/021kyjw72', 'en', 1, 'https://ror.org/021kyjw72 Ann Arbor Area Community Foundation'),
(49760, 'https://ror.org/028w1rx89', 'it', 1, 'https://ror.org/028w1rx89 Associazione Angela Serra per la Ricerca sul Cancro'),
(49761, 'https://ror.org/04d29kk52', 'en', 1, 'https://ror.org/04d29kk52 Academy of Architecture for Health Foundation'),
(49762, 'https://ror.org/02z5k8341', 'en', 1, 'https://ror.org/02z5k8341 Anna Needs Neuroblastoma Answers'),
(49763, 'https://ror.org/005cqv449', 'it', 1, 'https://ror.org/005cqv449 Associazione Bianca Garavaglia Onlus'),
(49764, 'https://ror.org/05yay9903', 'en', 1, 'https://ror.org/05yay9903 American Dysautonomia Institute'),
(49765, 'https://ror.org/05wcp5302', 'en', 1, 'https://ror.org/05wcp5302 Anna-Monika-Foundation'),
(49766, 'https://ror.org/03gr42p24', 'en', 1, 'https://ror.org/03gr42p24 Vittorio Tison Association'),
(49767, 'https://ror.org/04198sg47', 'en', 1, 'https://ror.org/04198sg47 Akiyama Life Science Foundation 秋山記念生命科学振興財団'),
(49768, 'https://ror.org/04gec5v25', 'it', 1, 'https://ror.org/04gec5v25 Associazione Italiana Rett'),
(49769, 'https://ror.org/00tmwkm13', 'en', 1, 'https://ror.org/00tmwkm13 American Fibromyalgia Syndrome Association'),
(49770, 'https://ror.org/032n1sw23', 'en', 1, 'https://ror.org/032n1sw23 Anne and Harry Zarrow Foundation'),
(49771, 'https://ror.org/02qkndm86', 'no_lang_code', 1, 'https://ror.org/02qkndm86 AcelRx Pharmaceuticals (United States)'),
(49772, 'https://ror.org/018ze1919', 'it', 1, 'https://ror.org/018ze1919 Associazione Sammarinese per la Lotta contro le Leucemie e Emopatie Maligne'),
(49773, 'https://ror.org/03w27w166', 'en', 1, 'https://ror.org/03w27w166 Akron Community Foundation'),
(49774, 'https://ror.org/00s28hv45', 'no_lang_code', 1, 'https://ror.org/00s28hv45 Acerde (France)'),
(49775, 'https://ror.org/01q8dxj28', 'en', 1, 'https://ror.org/01q8dxj28 American Fidelity Foundation'),
(49776, 'https://ror.org/011xj1a65', 'en', 1, 'https://ror.org/011xj1a65 Achelis and Bodman Foundation'),
(49777, 'https://ror.org/0463yr287', 'en', 1, 'https://ror.org/0463yr287 Annie E. Casey Foundation'),
(49778, 'https://ror.org/023m03q03', 'en', 1, 'https://ror.org/023m03q03 American Floral Endowment'),
(49779, 'https://ror.org/04zamhr10', 'no_lang_code', 1, 'https://ror.org/04zamhr10 Actinium Pharmaceuticals (United States)'),
(49780, 'https://ror.org/00ey8bm24', 'en', 1, 'https://ror.org/00ey8bm24 Al-Saeed Foundation for Science and Culture مؤسسة السعيد للعلوم والثقافة'),
(49781, 'https://ror.org/00vp6sp78', 'en', 1, 'https://ror.org/00vp6sp78 Anthony Rothe Memorial Trust'),
(49782, 'https://ror.org/00mpw9279', 'en', 1, 'https://ror.org/00mpw9279 Anxiety and Depression Association of America'),
(49783, 'https://ror.org/000gayj94', 'en', 1, 'https://ror.org/000gayj94 Alaska Conservation Foundation'),
(49784, 'https://ror.org/0564n1z40', 'en', 1, 'https://ror.org/0564n1z40 Asthma Foundation of Tasmania'),
(49785, 'https://ror.org/02w58t546', 'en', 1, 'https://ror.org/02w58t546 Albani Fonden Albani Foundation'),
(49786, 'https://ror.org/00sax7541', 'en', 1, 'https://ror.org/00sax7541 AO North America'),
(49787, 'https://ror.org/01swy6e53', 'en', 1, 'https://ror.org/01swy6e53 AIMS Education Foundation'),
(49788, 'https://ror.org/03jy7fq30', 'en', 1, 'https://ror.org/03jy7fq30 Association of Perioperative Registered Nurses'),
(49789, 'https://ror.org/059rngg59', 'en', 1, 'https://ror.org/059rngg59 American Friends of Laniado Hospital'),
(49790, 'https://ror.org/0470nty22', 'en', 1, 'https://ror.org/0470nty22 Albert and Margaret Alkek Foundation'),
(49791, 'https://ror.org/02g3w4r36', 'en', 1, 'https://ror.org/02g3w4r36 Actuarial Foundation'),
(49792, 'https://ror.org/032apyw09', 'en', 1, 'https://ror.org/032apyw09 Asthma and Respiratory Foundation New Zealand'),
(49793, 'https://ror.org/01p0hfz77', 'en', 1, 'https://ror.org/01p0hfz77 ACVO Vision for Animals Foundation'),
(49794, 'https://ror.org/00aq1tf09', 'en', 1, 'https://ror.org/00aq1tf09 Albert G. and Olive H. Schlink Foundation'),
(49795, 'https://ror.org/03pp6kd13', 'en', 1, 'https://ror.org/03pp6kd13 American Hand Therapy Foundation'),
(49796, 'https://ror.org/04pza9565', 'en', 1, 'https://ror.org/04pza9565 Albert J. Ryan Foundation'),
(49797, 'https://ror.org/00r34jt90', 'en', 1, 'https://ror.org/00r34jt90 Adam Taliaferro Foundation'),
(49798, 'https://ror.org/0166ek496', 'en', 1, 'https://ror.org/0166ek496 American Head & Neck Society'),
(49799, 'https://ror.org/04w2t4465', 'en', 1, 'https://ror.org/04w2t4465 American Healthcare Professionals and Friends for Medicine in Israel'),
(49800, 'https://ror.org/028kbne62', 'en', 1, 'https://ror.org/028kbne62 Alberta Emerald Foundation'),
(49801, 'https://ror.org/00r5xfb70', 'en', 1, 'https://ror.org/00r5xfb70 Appalachian Stewardship Foundation'),
(49802, 'https://ror.org/0428xen39', 'no_lang_code', 1, 'https://ror.org/0428xen39 Astute Medical (United States)'),
(49803, 'https://ror.org/04krn2974', 'en', 1, 'https://ror.org/04krn2974 American Hellenic Educational Progressive Association'),
(49804, 'https://ror.org/04rr9rb04', 'en', 1, 'https://ror.org/04rr9rb04 Atherton Family Foundation'),
(49805, 'https://ror.org/05qm7bg11', 'en', 1, 'https://ror.org/05qm7bg11 Apple University Consortium'),
(49806, 'https://ror.org/000qf7469', 'en', 1, 'https://ror.org/000qf7469 American Hungarian Foundation'),
(49807, 'https://ror.org/039w99793', 'en', 1, 'https://ror.org/039w99793 Alberta Science and Technology Leadership Foundation'),
(49808, 'https://ror.org/05kythm61', 'en', 1, 'https://ror.org/05kythm61 Appraisers Research Foundation'),
(49809, 'https://ror.org/03wgdcb95', 'en', 1, 'https://ror.org/03wgdcb95 Atkinson Foundation'),
(49810, 'https://ror.org/00c9bhj04', 'en', 1, 'https://ror.org/00c9bhj04 Alborada Trust'),
(49811, 'https://ror.org/02dahen38', 'no_lang_code', 1, 'https://ror.org/02dahen38 Aso Group (Japan)'),
(49812, 'https://ror.org/029b1vn53', 'no_lang_code', 1, 'https://ror.org/029b1vn53 Aspirus'),
(49813, 'https://ror.org/050y98g56', 'en', 1, 'https://ror.org/050y98g56 Alcorso Foundation'),
(49814, 'https://ror.org/03e9etc12', 'en', 1, 'https://ror.org/03e9etc12 Arab American Pharmacist Association'),
(49815, 'https://ror.org/01f5hts17', 'en', 1, 'https://ror.org/01f5hts17 Atlanta Women’s Foundation'),
(49816, 'https://ror.org/04fafj987', 'en', 1, 'https://ror.org/04fafj987 Adenoid Cystic Carcinoma Research Foundation'),
(49817, 'https://ror.org/011ftwx20', 'en', 1, 'https://ror.org/011ftwx20 Adessium Foundation'),
(49818, 'https://ror.org/05pzjjy67', 'en', 1, 'https://ror.org/05pzjjy67 Arab Science and Technology Foundation المؤسسة العربية للعلوم والتكنولوجيا'),
(49819, 'https://ror.org/03x6bc282', 'en', 1, 'https://ror.org/03x6bc282 American Medical Student Association'),
(49820, 'https://ror.org/02vjwa047', 'en', 1, 'https://ror.org/02vjwa047 Adhesive and Sealant Council'),
(49821, 'https://ror.org/04ra2hd78', 'en', 1, 'https://ror.org/04ra2hd78 American Music Therapy Association'),
(49822, 'https://ror.org/052a0g260', 'en', 1, 'https://ror.org/052a0g260 Arab British Chamber of Commerce غرفة التجارة العربية البريطانية'),
(49823, 'https://ror.org/045hr9t97', 'en', 1, 'https://ror.org/045hr9t97 American Occupational Therapy Foundation'),
(49824, 'https://ror.org/04ywsnb39', 'en', 1, 'https://ror.org/04ywsnb39 Alexander Foundation for Orthodontic Research and Education'),
(49825, 'https://ror.org/03vmxwa84', 'en', 1, 'https://ror.org/03vmxwa84 Arai Science and Technology Promotion Foundation 新井科学技術振興財団'),
(49826, 'https://ror.org/0574ytm77', 'en', 1, 'https://ror.org/0574ytm77 Atsumi International Scholarship Foundation 渥美国際交流財団'),
(49827, 'https://ror.org/040hddc75', 'en', 1, 'https://ror.org/040hddc75 American Orchid Society'),
(49828, 'https://ror.org/00602dv83', 'en', 1, 'https://ror.org/00602dv83 AuDA Foundation'),
(49829, 'https://ror.org/046a53p69', 'en', 1, 'https://ror.org/046a53p69 Alexia Foundation'),
(49830, 'https://ror.org/01yx62742', 'fr', 1, 'https://ror.org/01yx62742 Adolphe Merkle Institute'),
(49831, 'https://ror.org/030y53541', 'en', 1, 'https://ror.org/030y53541 Augustinus Fonden Augustinus Foundation'),
(49832, 'https://ror.org/005js1714', 'en', 1, 'https://ror.org/005js1714 Archival Education and Research Institute'),
(49833, 'https://ror.org/01e0gx490', 'no', 1, 'https://ror.org/01e0gx490 Aust-Agder Utviklings- og Kompetansefond'),
(49834, 'https://ror.org/029qr2j63', 'en', 1, 'https://ror.org/029qr2j63 Ardmore Foundation'),
(49835, 'https://ror.org/032zwwa29', 'en', 1, 'https://ror.org/032zwwa29 Austin Community Foundation'),
(49836, 'https://ror.org/00jkvrs61', 'en', 1, 'https://ror.org/00jkvrs61 American Orthopaedic Foot and Ankle Society'),
(49837, 'https://ror.org/005s1m246', 'en', 1, 'https://ror.org/005s1m246 Alfred Benzon Foundation'),
(49838, 'https://ror.org/01w7vwe52', 'en', 1, 'https://ror.org/01w7vwe52 Australasian Blistering Diseases Foundation'),
(49839, 'https://ror.org/04jv11d86', 'en', 1, 'https://ror.org/04jv11d86 Australasian Centre for Italian Studies'),
(49840, 'https://ror.org/05q058270', 'en', 1, 'https://ror.org/05q058270 American Osteopathic Foundation'),
(49841, 'https://ror.org/0047hnk39', 'en', 1, 'https://ror.org/0047hnk39 Alfred Friendly Press Partners'),
(49842, 'https://ror.org/01kc20959', 'en', 1, 'https://ror.org/01kc20959 Urological Society of Australia and New Zealand'),
(49843, 'https://ror.org/00rdsnk65', 'en', 1, 'https://ror.org/00rdsnk65 Argosy Foundation'),
(49844, 'https://ror.org/00zpmdm60', 'en', 1, 'https://ror.org/00zpmdm60 American Otological Society'),
(49845, 'https://ror.org/04m8me169', 'en', 1, 'https://ror.org/04m8me169 ARISE The Scoliosis Research Trust'),
(49846, 'https://ror.org/027vfdt14', 'en', 1, 'https://ror.org/027vfdt14 Arizona Community Foundation'),
(49847, 'https://ror.org/02qyc0r76', 'en', 1, 'https://ror.org/02qyc0r76 American Pain Foundation'),
(49848, 'https://ror.org/02gbgwz87', 'en', 1, 'https://ror.org/02gbgwz87 Allan Wilson Centre'),
(49849, 'https://ror.org/02he67h29', 'en', 1, 'https://ror.org/02he67h29 Australian Centre for HIV and Hepatitis Virology Research'),
(49850, 'https://ror.org/05d46q131', 'en', 1, 'https://ror.org/05d46q131 Australian College of Critical Care Nurses'),
(49851, 'https://ror.org/02ng6yf94', 'en', 1, 'https://ror.org/02ng6yf94 Allard Foundation'),
(49852, 'https://ror.org/02s59jv58', 'en', 1, 'https://ror.org/02s59jv58 Arizona Cotton Growers Association'),
(49853, 'https://ror.org/036jq7b41', 'en', 1, 'https://ror.org/036jq7b41 Allen Foundation'),
(49854, 'https://ror.org/026h3kw78', 'en', 1, 'https://ror.org/026h3kw78 Australian Dental Industry Association'),
(49855, 'https://ror.org/00v3epe08', 'en', 1, 'https://ror.org/00v3epe08 Arizona Cotton Research and Protection Council'),
(49856, 'https://ror.org/03zmx7q49', 'en', 1, 'https://ror.org/03zmx7q49 Dingo Discovery and Research Centre'),
(49857, 'https://ror.org/00mms0j12', 'en', 1, 'https://ror.org/00mms0j12 Alliance for Cancer Gene Therapy'),
(49858, 'https://ror.org/00qb7b998', 'en', 1, 'https://ror.org/00qb7b998 Aesthetic Surgery Education and Research Foundation'),
(49859, 'https://ror.org/011t5nk62', 'en', 1, 'https://ror.org/011t5nk62 American Pharmacists Association Foundation'),
(49860, 'https://ror.org/059xg9f68', 'en', 1, 'https://ror.org/059xg9f68 Alliance for Epilepsy Research'),
(49861, 'https://ror.org/03bkemf09', 'en', 1, 'https://ror.org/03bkemf09 Armed Forces Communications and Electronics Association'),
(49862, 'https://ror.org/00kmgnh57', 'en', 1, 'https://ror.org/00kmgnh57 Australian Flora Foundation'),
(49863, 'https://ror.org/042fgte34', 'en', 1, 'https://ror.org/042fgte34 Arkansas Community Foundation'),
(49864, 'https://ror.org/03wcw7y06', 'en', 1, 'https://ror.org/03wcw7y06 Arkansas Research Alliance'),
(49865, 'https://ror.org/02tjbt313', 'en', 1, 'https://ror.org/02tjbt313 American Psychiatric Association Publishing'),
(49866, 'https://ror.org/021rkpk21', 'en', 1, 'https://ror.org/021rkpk21 Australian Geographic Society'),
(49867, 'https://ror.org/042x0hf72', 'en', 1, 'https://ror.org/042x0hf72 Arkansas State Highway and Transportation Department'),
(49868, 'https://ror.org/04n7nyv64', 'en', 1, 'https://ror.org/04n7nyv64 Australian Institute of Family Studies'),
(49869, 'https://ror.org/01kvftm17', 'en', 1, 'https://ror.org/01kvftm17 Aga Khan Foundation'),
(49870, 'https://ror.org/054jwp491', 'en', 1, 'https://ror.org/054jwp491 Arkay Foundation'),
(49871, 'https://ror.org/00s2bzt61', 'en', 1, 'https://ror.org/00s2bzt61 Alpha Omega Foundation'),
(49872, 'https://ror.org/05s3njy52', 'fr', 1, 'https://ror.org/05s3njy52 Agence de l''Eau Seine Normandie'),
(49873, 'https://ror.org/00ca6qk95', 'en', 1, 'https://ror.org/00ca6qk95 American Public Power Association'),
(49874, 'https://ror.org/01r9fcy75', 'en', 1, 'https://ror.org/01r9fcy75 Alpha Omicron Pi Foundation'),
(49875, 'https://ror.org/05mj8hk83', 'fr', 1, 'https://ror.org/05mj8hk83 Agence de développement de l''Oriental Agence de l''Oriental'),
(49876, 'https://ror.org/02keq9g57', 'en', 1, 'https://ror.org/02keq9g57 Armstrong McDonald Foundation'),
(49877, 'https://ror.org/00k4jsr16', 'en', 1, 'https://ror.org/00k4jsr16 Australian Liver Foundation'),
(49878, 'https://ror.org/020ba9354', 'en', 1, 'https://ror.org/020ba9354 Alpha Phi Foundation'),
(49879, 'https://ror.org/058f84k27', 'it', 1, 'https://ror.org/058f84k27 Fondazione Italiana di Ricerca per la Sclerosi Laterale Amiotrofica Italian research Foundation for ALS'),
(49880, 'https://ror.org/01seepq35', 'en', 1, 'https://ror.org/01seepq35 American Research Center in Sofia Foundation'),
(49881, 'https://ror.org/00gqhzy82', 'en', 1, 'https://ror.org/00gqhzy82 Alphawood Foundation'),
(49882, 'https://ror.org/010a50125', 'en', 1, 'https://ror.org/010a50125 American Research Institute for Policy Development'),
(49883, 'https://ror.org/032wt0096', 'en', 1, 'https://ror.org/032wt0096 Alport Syndrome Foundation'),
(49884, 'https://ror.org/00hgjqa61', 'en', 1, 'https://ror.org/00hgjqa61 Australian Orchid Foundation'),
(49885, 'https://ror.org/02d8jq034', 'en', 1, 'https://ror.org/02d8jq034 ALS Hope Foundation'),
(49886, 'https://ror.org/05gm4wq37', 'en', 1, 'https://ror.org/05gm4wq37 American Respiratory Care Foundation'),
(49887, 'https://ror.org/03kpaty54', 'it', 1, 'https://ror.org/03kpaty54 Agenzia Regionale Parchi'),
(49888, 'https://ror.org/03wxy1684', 'en', 1, 'https://ror.org/03wxy1684 Australian Society of Periodontology'),
(49889, 'https://ror.org/02s62y466', 'en', 1, 'https://ror.org/02s62y466 American Academy of Otolaryngic Allergy'),
(49890, 'https://ror.org/03myc4w31', 'en', 1, 'https://ror.org/03myc4w31 American Rhinologic Society'),
(49891, 'https://ror.org/002861396', 'en', 1, 'https://ror.org/002861396 Australian Prime Ministers Centre'),
(49892, 'https://ror.org/05v16nd64', 'it', 1, 'https://ror.org/05v16nd64 Agenzia Sanitaria Regionale Abruzzo'),
(49893, 'https://ror.org/00xdn6374', 'en', 1, 'https://ror.org/00xdn6374 Arthur Vining Davis Foundations'),
(49894, 'https://ror.org/04m6sw526', 'en', 1, 'https://ror.org/04m6sw526 Australian Society of Exploration Geophysicists'),
(49895, 'https://ror.org/042qmp147', 'fr', 1, 'https://ror.org/042qmp147 Agir Pour les Maladies Chroniques'),
(49896, 'https://ror.org/02bsg4a02', 'en', 1, 'https://ror.org/02bsg4a02 Alternatives Research & Development Foundation'),
(49897, 'https://ror.org/054kfq324', 'en', 1, 'https://ror.org/054kfq324 American Society for Radiation Oncology'),
(49898, 'https://ror.org/01arayx28', 'de', 1, 'https://ror.org/01arayx28 Alzheimer Forschung Initiative'),
(49899, 'https://ror.org/00wc5ck66', 'en', 1, 'https://ror.org/00wc5ck66 Australian Society of Plant Scientists'),
(49900, 'https://ror.org/05ef6s903', 'en', 1, 'https://ror.org/05ef6s903 Alzheimer Society of Manitoba'),
(49901, 'https://ror.org/01ht0p351', 'en', 1, 'https://ror.org/01ht0p351 Agricultural Technology Adoption Initiative'),
(49902, 'https://ror.org/05sgg2765', 'en', 1, 'https://ror.org/05sgg2765 Australian Spinal Research Foundation'),
(49903, 'https://ror.org/02vjgtj13', 'en', 1, 'https://ror.org/02vjgtj13 American Society of Composers, Authors and Publishers'),
(49904, 'https://ror.org/027ahsj69', 'en', 1, 'https://ror.org/027ahsj69 Alzheimer''s Australia Dementia Research Foundation'),
(49905, 'https://ror.org/01rq5xv52', 'no_lang_code', 1, 'https://ror.org/01rq5xv52 Avery Design Systems (United States)'),
(49906, 'https://ror.org/04f45q833', 'en', 1, 'https://ror.org/04f45q833 American Society of Consultant Pharmacists'),
(49907, 'https://ror.org/03tkh8741', 'en', 1, 'https://ror.org/03tkh8741 Alzheimer''s Foundation of America'),
(49908, 'https://ror.org/04y6vvb85', 'en', 1, 'https://ror.org/04y6vvb85 Australian Women and Children''s Research Foundation'),
(49909, 'https://ror.org/03hxzb342', 'en', 1, 'https://ror.org/03hxzb342 Awesome Foundation'),
(49910, 'https://ror.org/00ssgfx80', 'en', 1, 'https://ror.org/00ssgfx80 Autism Research Foundation'),
(49911, 'https://ror.org/027ey5735', 'sv', 1, 'https://ror.org/027ey5735 Alzheimerfonden'),
(49912, 'https://ror.org/01fn9d687', 'en', 1, 'https://ror.org/01fn9d687 American Society of Genealogists'),
(49913, 'https://ror.org/00weey343', 'sv', 1, 'https://ror.org/00weey343 Arvid Carlsson Fonden'),
(49914, 'https://ror.org/05d088546', 'no_lang_code', 1, 'https://ror.org/05d088546 Baxter (Netherlands)'),
(49915, 'https://ror.org/02gfq0f62', 'da', 1, 'https://ror.org/02gfq0f62 Axel Muusfeldts Fond'),
(49916, 'https://ror.org/00s22ed86', 'en', 1, 'https://ror.org/00s22ed86 American Society of Interior Designers Foundation'),
(49917, 'https://ror.org/0066y7e75', 'en', 1, 'https://ror.org/0066y7e75 Bay and Paul Foundations'),
(49918, 'https://ror.org/00a59ax11', 'da', 1, 'https://ror.org/00a59ax11 Arvid Nilssons Fond'),
(49919, 'https://ror.org/022nw7x84', 'en', 1, 'https://ror.org/022nw7x84 Ambrose Monell Foundation'),
(49920, 'https://ror.org/058rchw45', 'en', 1, 'https://ror.org/058rchw45 American Society of Mammalogists'),
(49921, 'https://ror.org/024hrna66', 'en', 1, 'https://ror.org/024hrna66 As You Sow'),
(49922, 'https://ror.org/0106w8k14', 'en', 1, 'https://ror.org/0106w8k14 Amelia Peabody Charitable Fund'),
(49923, 'https://ror.org/04hsgm631', 'en', 1, 'https://ror.org/04hsgm631 Beaver County Foundation'),
(49924, 'https://ror.org/009svts64', 'en', 1, 'https://ror.org/009svts64 Azrieli Foundation'),
(49925, 'https://ror.org/01hvxhn04', 'en', 1, 'https://ror.org/01hvxhn04 American Society of Naturalist'),
(49926, 'https://ror.org/04jq8gw64', 'en', 1, 'https://ror.org/04jq8gw64 Beckman Coulter Foundation'),
(49927, 'https://ror.org/004p5vv59', 'en', 1, 'https://ror.org/004p5vv59 American Academy for Jewish Research'),
(49928, 'https://ror.org/03afa2q29', 'en', 1, 'https://ror.org/03afa2q29 ASAE Foundation'),
(49929, 'https://ror.org/044pwvv43', 'en', 1, 'https://ror.org/044pwvv43 American Society of Pediatric Nephrology'),
(49930, 'https://ror.org/05d14hv12', 'en', 1, 'https://ror.org/05d14hv12 Beez Foundation'),
(49931, 'https://ror.org/05f1j8s33', 'en', 1, 'https://ror.org/05f1j8s33 American Academy of Audiology'),
(49932, 'https://ror.org/01nmscb33', 'en', 1, 'https://ror.org/01nmscb33 American Society of Pediatric Otolaryngology'),
(49933, 'https://ror.org/02eq6ye19', 'de', 1, 'https://ror.org/02eq6ye19 B. Braun Stiftung'),
(49934, 'https://ror.org/05nyeaz86', 'en', 1, 'https://ror.org/05nyeaz86 American Society of Pharmacognosy'),
(49935, 'https://ror.org/049tdwn96', 'en', 1, 'https://ror.org/049tdwn96 Beijing NGO Association for International Exchanges 北京市民间组织国际交流协会'),
(49936, 'https://ror.org/054xkse79', 'en', 1, 'https://ror.org/054xkse79 American Academy of Implant Dentistry'),
(49937, 'https://ror.org/01grxkt41', 'en', 1, 'https://ror.org/01grxkt41 American Society of Plant Taxonomists'),
(49938, 'https://ror.org/00bb3dz25', 'en', 1, 'https://ror.org/00bb3dz25 Beveridge Family Foundation'),
(49939, 'https://ror.org/010z5cj53', 'en', 1, 'https://ror.org/010z5cj53 ASHP Research and Education Foundation'),
(49940, 'https://ror.org/036hktk48', 'no_lang_code', 1, 'https://ror.org/036hktk48 Babes in Arms (Canada)'),
(49941, 'https://ror.org/02kx9dq14', 'en', 1, 'https://ror.org/02kx9dq14 Asia New Zealand Foundation'),
(49942, 'https://ror.org/057rcgy56', 'en', 1, 'https://ror.org/057rcgy56 Bharti Centre for Communication'),
(49943, 'https://ror.org/05a5zgn96', 'en', 1, 'https://ror.org/05a5zgn96 Bader Philanthropies'),
(49944, 'https://ror.org/031rs9d30', 'en', 1, 'https://ror.org/031rs9d30 Asia Pacific Foundation of Canada'),
(49945, 'https://ror.org/00spg6x06', 'en', 1, 'https://ror.org/00spg6x06 Bharti Foundation'),
(49946, 'https://ror.org/00e6hp348', 'en', 1, 'https://ror.org/00e6hp348 Bailey Family Foundation'),
(49947, 'https://ror.org/00nhwe772', 'en', 1, 'https://ror.org/00nhwe772 American Thyroid Association'),
(49948, 'https://ror.org/020ggem82', 'en', 1, 'https://ror.org/020ggem82 Ball Brothers Foundation'),
(49949, 'https://ror.org/02fdpqp39', 'en', 1, 'https://ror.org/02fdpqp39 Belgian Brain Tumor Support'),
(49950, 'https://ror.org/027frsq63', 'en', 1, 'https://ror.org/027frsq63 American Tinnitus Association'),
(49951, 'https://ror.org/059psfa96', 'en', 1, 'https://ror.org/059psfa96 Ben and Maytee Fisch Foundation'),
(49952, 'https://ror.org/02m34vd28', 'en', 1, 'https://ror.org/02m34vd28 American Veterinary Medical Foundation'),
(49953, 'https://ror.org/03jjxq260', 'en', 1, 'https://ror.org/03jjxq260 Baltimore Community Foundation'),
(49954, 'https://ror.org/03a3aw155', 'en', 1, 'https://ror.org/03a3aw155 Boomer Esiason Foundation'),
(49955, 'https://ror.org/008ebwt42', 'en', 1, 'https://ror.org/008ebwt42 American Vineyard Foundation'),
(49956, 'https://ror.org/03gnqg065', 'en', 1, 'https://ror.org/03gnqg065 BioFuelNet Canada'),
(49957, 'https://ror.org/02dw1n083', 'en', 1, 'https://ror.org/02dw1n083 Bangladesh Fisheries Research Institute বাংলাদেশ মৎস্য গবেষণা ইনস্টিটিউট'),
(49958, 'https://ror.org/030cbnq98', 'en', 1, 'https://ror.org/030cbnq98 Beneficial Bank'),
(49959, 'https://ror.org/05xe9t676', 'en', 1, 'https://ror.org/05xe9t676 Banting Research Foundation'),
(49960, 'https://ror.org/023zt9146', 'en', 1, 'https://ror.org/023zt9146 British Dietetic Association'),
(49961, 'https://ror.org/01dm0yq38', 'no_lang_code', 1, 'https://ror.org/01dm0yq38 Benesse Holdings (Japan) 株式会社ベネッセホールディングス'),
(49962, 'https://ror.org/0217khz32', 'en', 1, 'https://ror.org/0217khz32 Binational Industrial Research and Development Foundation'),
(49963, 'https://ror.org/05eat3g39', 'no_lang_code', 1, 'https://ror.org/05eat3g39 Borealis (Austria)'),
(49964, 'https://ror.org/02p92eb51', 'en', 1, 'https://ror.org/02p92eb51 Benign Essential Blepharospasm Research Foundation'),
(49965, 'https://ror.org/006recc61', 'en', 1, 'https://ror.org/006recc61 British Herpetological Society'),
(49966, 'https://ror.org/020k2cq76', 'en', 1, 'https://ror.org/020k2cq76 Barakat Trust'),
(49967, 'https://ror.org/05w7s8q62', 'en', 1, 'https://ror.org/05w7s8q62 British International Studies Association'),
(49968, 'https://ror.org/00v0mde29', 'en', 1, 'https://ror.org/00v0mde29 British Microcirculation Society'),
(49969, 'https://ror.org/04a2qqf85', 'no_lang_code', 1, 'https://ror.org/04a2qqf85 Bird Technologies (United States)'),
(49970, 'https://ror.org/00rz24q78', 'en', 1, 'https://ror.org/00rz24q78 British Mycological Society'),
(49971, 'https://ror.org/03fhpab87', 'en', 1, 'https://ror.org/03fhpab87 BirdLife Australia'),
(49972, 'https://ror.org/01ne4aa08', 'en', 1, 'https://ror.org/01ne4aa08 British Occupational Health Research Foundation'),
(49973, 'https://ror.org/0286bey81', 'en', 1, 'https://ror.org/0286bey81 Bently Foundation'),
(49974, 'https://ror.org/04efaep75', 'en', 1, 'https://ror.org/04efaep75 Bergen Research Foundation Bergens Forskningsstiftelse'),
(49975, 'https://ror.org/040ysda03', 'en', 1, 'https://ror.org/040ysda03 British Scoliosis Research Foundation'),
(49976, 'https://ror.org/02yknqp61', 'en', 1, 'https://ror.org/02yknqp61 British Small Animal Veterinary Association'),
(49977, 'https://ror.org/00vba1e97', 'en', 1, 'https://ror.org/00vba1e97 Barker Welfare Foundation'),
(49978, 'https://ror.org/01s0z9h22', 'en', 1, 'https://ror.org/01s0z9h22 British Society for Cell Biology'),
(49979, 'https://ror.org/016babj91', 'en', 1, 'https://ror.org/016babj91 Blakemore Foundation'),
(49980, 'https://ror.org/056f6wa50', 'sv', 1, 'https://ror.org/056f6wa50 Barndiabetesfondens'),
(49981, 'https://ror.org/04j9je195', 'en', 1, 'https://ror.org/04j9je195 Berks County Community Foundation'),
(49982, 'https://ror.org/03acj9296', 'en', 1, 'https://ror.org/03acj9296 Berkshire Taconic Community Foundation'),
(49983, 'https://ror.org/053gvz184', 'en', 1, 'https://ror.org/053gvz184 Barr Foundation'),
(49984, 'https://ror.org/003h6ex14', 'en', 1, 'https://ror.org/003h6ex14 Barra Foundation'),
(49985, 'https://ror.org/04pvmvv24', 'en', 1, 'https://ror.org/04pvmvv24 Barrett Bateman Foundation'),
(49986, 'https://ror.org/00xnr4415', 'en', 1, 'https://ror.org/00xnr4415 British Society for Eighteenth-Century Studies'),
(49987, 'https://ror.org/049fn9384', 'en', 1, 'https://ror.org/049fn9384 Brad Kamisky Foundation'),
(49988, 'https://ror.org/01ntjaz71', 'en', 1, 'https://ror.org/01ntjaz71 Blanche Davis Moore Foundation'),
(49989, 'https://ror.org/02pxgg741', 'en', 1, 'https://ror.org/02pxgg741 Bradshaw Knight Foundation'),
(49990, 'https://ror.org/0199q6v22', 'en', 1, 'https://ror.org/0199q6v22 Barry Community Foundation'),
(49991, 'https://ror.org/00w0xq836', 'en', 1, 'https://ror.org/00w0xq836 Bernard Osher Foundation'),
(49992, 'https://ror.org/04bjtaq20', 'en', 1, 'https://ror.org/04bjtaq20 British Society For Parasitology'),
(49993, 'https://ror.org/0106er609', 'en', 1, 'https://ror.org/0106er609 Brady Education Foundation'),
(49994, 'https://ror.org/03a9s6161', 'en', 1, 'https://ror.org/03a9s6161 Bernard van Leer Foundation'),
(49995, 'https://ror.org/04wpxrf64', 'en', 1, 'https://ror.org/04wpxrf64 Blazeman Foundation for ALS'),
(49996, 'https://ror.org/04gfzba65', 'en', 1, 'https://ror.org/04gfzba65 British Society for the History of Science'),
(49997, 'https://ror.org/052qtc529', 'en', 1, 'https://ror.org/052qtc529 Bernice E Holland Foundation'),
(49998, 'https://ror.org/00s163867', 'en', 1, 'https://ror.org/00s163867 British Society for the Philosophy of Science'),
(49999, 'https://ror.org/03ze5hn40', 'de', 1, 'https://ror.org/03ze5hn40 Bernische Krebsliga'),
(50000, 'https://ror.org/0597vc250', 'en', 1, 'https://ror.org/0597vc250 British Society of Audiology'),
(50001, 'https://ror.org/000dkwx88', 'en', 1, 'https://ror.org/000dkwx88 British Society of Gerontology'),
(50002, 'https://ror.org/00tc0tf65', 'en', 1, 'https://ror.org/00tc0tf65 Batten Disease Family Association'),
(50003, 'https://ror.org/05af1hn65', 'en', 1, 'https://ror.org/05af1hn65 British Thyroid Foundation'),
(50004, 'https://ror.org/02kv8z446', 'en', 1, 'https://ror.org/02kv8z446 Berth of Kantzows Stiftelse Berth von Kantzows Foundation'),
(50005, 'https://ror.org/00hsyyp29', 'en', 1, 'https://ror.org/00hsyyp29 Battle Creek Community Foundation'),
(50006, 'https://ror.org/058j98r16', 'de', 1, 'https://ror.org/058j98r16 Berthold Leibinger Stiftung'),
(50007, 'https://ror.org/00my66392', 'en', 1, 'https://ror.org/00my66392 Brookdale Foundation Group'),
(50008, 'https://ror.org/058fjhm66', 'de', 1, 'https://ror.org/058fjhm66 Baugarten Zürich Stiftung'),
(50009, 'https://ror.org/05ncfp318', 'en', 1, 'https://ror.org/05ncfp318 Brain Tumor Funders Collaborative'),
(50010, 'https://ror.org/04p7c7m47', 'en', 1, 'https://ror.org/04p7c7m47 Cades Schutte'),
(50011, 'https://ror.org/04w23ys68', 'en', 1, 'https://ror.org/04w23ys68 Brain Tumour Foundation of Canada'),
(50012, 'https://ror.org/038372j15', 'en', 1, 'https://ror.org/038372j15 Cadillac Area Community Foundation'),
(50013, 'https://ror.org/0483shy91', 'en', 1, 'https://ror.org/0483shy91 Bruner Foundation'),
(50014, 'https://ror.org/05dq78k50', 'no_lang_code', 1, 'https://ror.org/05dq78k50 BrainScope (United States)'),
(50015, 'https://ror.org/00b9tqm17', 'en', 1, 'https://ror.org/00b9tqm17 Bryan Area Foundation'),
(50016, 'https://ror.org/042d2nx10', 'en', 1, 'https://ror.org/042d2nx10 John Cain Foundation'),
(50017, 'https://ror.org/05wjbkr22', 'en', 1, 'https://ror.org/05wjbkr22 Blowitz-Ridgeway Foundation'),
(50018, 'https://ror.org/02t00tj02', 'en', 1, 'https://ror.org/02t00tj02 California Cherry Board'),
(50019, 'https://ror.org/01ggj0577', 'en', 1, 'https://ror.org/01ggj0577 Braitmayer Foundation'),
(50020, 'https://ror.org/03dryc986', 'en', 1, 'https://ror.org/03dryc986 California Consumer Protection Foundation'),
(50021, 'https://ror.org/014ssmn05', 'en', 1, 'https://ror.org/014ssmn05 California Dairy Research Foundation'),
(50022, 'https://ror.org/050r4h987', 'en', 1, 'https://ror.org/050r4h987 Blue Cross and Blue Shield of Florida Foundation'),
(50023, 'https://ror.org/03s0ywz76', 'en', 1, 'https://ror.org/03s0ywz76 California Dental Association Foundation'),
(50024, 'https://ror.org/04h97jj05', 'en', 1, 'https://ror.org/04h97jj05 Blue Shield of California Foundation'),
(50025, 'https://ror.org/04n2kg767', 'en', 1, 'https://ror.org/04n2kg767 Healthy Minds Canada'),
(50026, 'https://ror.org/01gnpsq58', 'en', 1, 'https://ror.org/01gnpsq58 Canadian Society of Pharmacology and Therapeutics'),
(50027, 'https://ror.org/048w9nb20', 'en', 1, 'https://ror.org/048w9nb20 BlueCross BlueShield of South Carolina Foundation'),
(50028, 'https://ror.org/01haca926', 'en', 1, 'https://ror.org/01haca926 California Psychological Association'),
(50029, 'https://ror.org/038ez8t98', 'en', 1, 'https://ror.org/038ez8t98 Buckeye Career Center Foundation'),
(50030, 'https://ror.org/0042h7v22', 'en', 1, 'https://ror.org/0042h7v22 California State Beekeepers Association'),
(50031, 'https://ror.org/03vyp3w30', 'en', 1, 'https://ror.org/03vyp3w30 Canadian Thoracic Society'),
(50032, 'https://ror.org/02fnsp050', 'en', 1, 'https://ror.org/02fnsp050 National Cancer Coalition'),
(50033, 'https://ror.org/04xfjgw45', 'no_lang_code', 1, 'https://ror.org/04xfjgw45 Shanxi Fenyang Hospital 山西省汾阳医院'),
(50034, 'https://ror.org/01myvh111', 'en', 1, 'https://ror.org/01myvh111 Lambda Therapeutic Research'),
(50035, 'https://ror.org/04zqh4p27', 'en', 1, 'https://ror.org/04zqh4p27 Canary Foundation'),
(50036, 'https://ror.org/00g42k788', 'en', 1, 'https://ror.org/00g42k788 Blumenthal Foundation'),
(50037, 'https://ror.org/03csf6r15', 'en', 1, 'https://ror.org/03csf6r15 California Urological Association'),
(50038, 'https://ror.org/04cpe0x97', 'en', 1, 'https://ror.org/04cpe0x97 BMI Foundation'),
(50039, 'https://ror.org/00p52yk09', 'en', 1, 'https://ror.org/00p52yk09 Breast Cancer and Womens Health Institute'),
(50040, 'https://ror.org/04f8tsk17', 'en', 1, 'https://ror.org/04f8tsk17 Canavan Research Foundation'),
(50041, 'https://ror.org/03cpd9n92', 'en', 1, 'https://ror.org/03cpd9n92 California Wellness Foundation'),
(50042, 'https://ror.org/04qajcj06', 'en', 1, 'https://ror.org/04qajcj06 Bodossaki Foundation Ίδρυμα Μποδοσάκη'),
(50043, 'https://ror.org/00ne52m93', 'en', 1, 'https://ror.org/00ne52m93 Bhare Foundation'),
(50044, 'https://ror.org/04hb59q25', 'en', 1, 'https://ror.org/04hb59q25 Cancer Aid and Research Fund'),
(50045, 'https://ror.org/00g200v31', 'en', 1, 'https://ror.org/00g200v31 Brentwood Foundation'),
(50046, 'https://ror.org/03tx8dq56', 'en', 1, 'https://ror.org/03tx8dq56 Boehringer Ingelheim Foundation Boehringer Ingelheim Stiftung'),
(50047, 'https://ror.org/00cy4ga64', 'en', 1, 'https://ror.org/00cy4ga64 Calvert K Collins Family Foundation'),
(50048, 'https://ror.org/05p07c550', 'en', 1, 'https://ror.org/05p07c550 Brewers Association of Australia and New Zealand'),
(50049, 'https://ror.org/04hbteb59', 'en', 1, 'https://ror.org/04hbteb59 Camargo Foundation'),
(50050, 'https://ror.org/0277pn602', 'en', 1, 'https://ror.org/0277pn602 Boettcher Foundation'),
(50051, 'https://ror.org/01mzxrp73', 'en', 1, 'https://ror.org/01mzxrp73 Cancer and Polio Research Fund'),
(50052, 'https://ror.org/0332rjs08', 'en', 1, 'https://ror.org/0332rjs08 Brewster Place'),
(50053, 'https://ror.org/0271ynv65', 'en', 1, 'https://ror.org/0271ynv65 Buffalo Bills Foundation'),
(50054, 'https://ror.org/00h4xd076', 'en', 1, 'https://ror.org/00h4xd076 Bogliasco Foundation'),
(50055, 'https://ror.org/02f9cz450', 'en', 1, 'https://ror.org/02f9cz450 Brian Mercer Charitable Trust'),
(50056, 'https://ror.org/052nngb38', 'en', 1, 'https://ror.org/052nngb38 Cancer Research Foundation'),
(50057, 'https://ror.org/014kn1567', 'en', 1, 'https://ror.org/014kn1567 Cameron Brooks Foundation'),
(50058, 'https://ror.org/013d6jy96', 'en', 1, 'https://ror.org/013d6jy96 Buhl Foundation'),
(50059, 'https://ror.org/01hd95j60', 'en', 1, 'https://ror.org/01hd95j60 Bohemian Foundation'),
(50060, 'https://ror.org/043tgy268', 'en', 1, 'https://ror.org/043tgy268 Campbell Foundation'),
(50061, 'https://ror.org/01z7cky43', 'en', 1, 'https://ror.org/01z7cky43 Cancer Research Wales'),
(50062, 'https://ror.org/00tq5he37', 'en', 1, 'https://ror.org/00tq5he37 Building and Social Housing Foundation'),
(50063, 'https://ror.org/03nrsfd64', 'en', 1, 'https://ror.org/03nrsfd64 BrickStreet Foundation'),
(50064, 'https://ror.org/01hshyz77', 'en', 1, 'https://ror.org/01hshyz77 Campbell Institute'),
(50065, 'https://ror.org/00xny7d86', 'en', 1, 'https://ror.org/00xny7d86 Australian National Kennel Council'),
(50066, 'https://ror.org/006fqar19', 'en', 1, 'https://ror.org/006fqar19 BrightSpark Foundation'),
(50067, 'https://ror.org/05fg52t30', 'en', 1, 'https://ror.org/05fg52t30 Bullitt Foundation'),
(50068, 'https://ror.org/0222bz953', 'en', 1, 'https://ror.org/0222bz953 Cannon Foundation'),
(50069, 'https://ror.org/05d53xd56', 'en', 1, 'https://ror.org/05d53xd56 Rata Foundation'),
(50070, 'https://ror.org/048yb3886', 'en', 1, 'https://ror.org/048yb3886 Iris & B. Gerald Cantor Foundation'),
(50071, 'https://ror.org/026ssdh77', 'en', 1, 'https://ror.org/026ssdh77 Canadian Allergy, Asthma and Immunology Foundation Fondation Canadienne d''Allergie, d''Asthme et d''Immunologie'),
(50072, 'https://ror.org/00jgjtc40', 'en', 1, 'https://ror.org/00jgjtc40 Capita Foundation'),
(50073, 'https://ror.org/00ttbk338', 'en', 1, 'https://ror.org/00ttbk338 Brinson Foundation'),
(50074, 'https://ror.org/02ssxad66', 'en', 1, 'https://ror.org/02ssxad66 Canadian Anesthesia Research Foundation'),
(50075, 'https://ror.org/033ha7p77', 'en', 1, 'https://ror.org/033ha7p77 Buoniconti Fund'),
(50076, 'https://ror.org/0098ca762', 'en', 1, 'https://ror.org/0098ca762 Bolyai Foundation'),
(50077, 'https://ror.org/03sxyq954', 'en', 1, 'https://ror.org/03sxyq954 CapitalCare Foundation'),
(50078, 'https://ror.org/01rhff309', 'en', 1, 'https://ror.org/01rhff309 British Antarctic Survey'),
(50079, 'https://ror.org/03n0et212', 'en', 1, 'https://ror.org/03n0et212 Bonfils-Stanton Foundation'),
(50080, 'https://ror.org/03p8km392', 'en', 1, 'https://ror.org/03p8km392 Canadian Bee Research Fund'),
(50081, 'https://ror.org/01c5nz376', 'en', 1, 'https://ror.org/01c5nz376 Association Canadienne de la Maladie Coeliaque Canadian Celiac Association'),
(50082, 'https://ror.org/00bs1j039', 'en', 1, 'https://ror.org/00bs1j039 Captain Planet Foundation'),
(50083, 'https://ror.org/01nn90r09', 'en', 1, 'https://ror.org/01nn90r09 British Association for American Studies'),
(50084, 'https://ror.org/05x26aj56', 'en', 1, 'https://ror.org/05x26aj56 Carol M. Baldwin Breast Cancer Research Fund'),
(50085, 'https://ror.org/058xgwf08', 'en', 1, 'https://ror.org/058xgwf08 Carcinoid Cancer Foundation'),
(50086, 'https://ror.org/02qkdss21', 'en', 1, 'https://ror.org/02qkdss21 Cardiovascular Institute of Philadelphia'),
(50087, 'https://ror.org/02jn85w30', 'en', 1, 'https://ror.org/02jn85w30 British Association for Chinese Studies'),
(50088, 'https://ror.org/058rrg706', 'no_lang_code', 1, 'https://ror.org/058rrg706 Carroll & Meynell Transformers (United Kingdom)'),
(50089, 'https://ror.org/04hfyyk07', 'en', 1, 'https://ror.org/04hfyyk07 Canadian Foundation for AIDS Research Fondation Canadienne de Recherche sur le Sida'),
(50090, 'https://ror.org/01yyz9v67', 'en', 1, 'https://ror.org/01yyz9v67 Care-for-Rare Foundation Care-for-Rare-Stiftung'),
(50091, 'https://ror.org/04qtw4d33', 'en', 1, 'https://ror.org/04qtw4d33 Canadian Foundation for Dietetic Research Fondation Canadienne de la Recherche en Diététique'),
(50092, 'https://ror.org/0417n8r23', 'en', 1, 'https://ror.org/0417n8r23 Casio Science Promotion Foundation カシオ科学振興財団'),
(50093, 'https://ror.org/00z2kr668', 'en', 1, 'https://ror.org/00z2kr668 British Association for Irish Studies'),
(50094, 'https://ror.org/04jjbpq08', 'en', 1, 'https://ror.org/04jjbpq08 Cares Foundation'),
(50095, 'https://ror.org/018r79a04', 'en', 1, 'https://ror.org/018r79a04 Burke Foundation'),
(50096, 'https://ror.org/02y2mwn89', 'en', 1, 'https://ror.org/02y2mwn89 British Association of Endocrine and Thyroid Surgeons'),
(50097, 'https://ror.org/053yw9t96', 'en', 1, 'https://ror.org/053yw9t96 Canadian Intensive Care Foundation'),
(50098, 'https://ror.org/026t1zr39', 'en', 1, 'https://ror.org/026t1zr39 Neuroendocrine Tumor Research Foundation'),
(50099, 'https://ror.org/02yyt7186', 'no_lang_code', 1, 'https://ror.org/02yyt7186 Burton D. Morgan Foundation'),
(50100, 'https://ror.org/04w315h57', 'en', 1, 'https://ror.org/04w315h57 British Biophysical Society'),
(50101, 'https://ror.org/04j4csk75', 'en', 1, 'https://ror.org/04j4csk75 Canadian Nurses Foundation La Fondation des Infirmières et Infirmiers du Canada'),
(50102, 'https://ror.org/012jwf593', 'en', 1, 'https://ror.org/012jwf593 Catalyst Foundation'),
(50103, 'https://ror.org/04se5nn61', 'en', 1, 'https://ror.org/04se5nn61 Canadian Physiotherapy Association'),
(50104, 'https://ror.org/05pefgb78', 'en', 1, 'https://ror.org/05pefgb78 Carl & Emily Fuchs Foundation'),
(50105, 'https://ror.org/020gqp277', 'en', 1, 'https://ror.org/020gqp277 British Columbia Environmental and Occupational Health Research Network'),
(50106, 'https://ror.org/026wbfy45', 'en', 1, 'https://ror.org/026wbfy45 Bush Foundation'),
(50107, 'https://ror.org/013dfdf36', 'de', 1, 'https://ror.org/013dfdf36 Carl Friedrich von Siemens Stiftung'),
(50108, 'https://ror.org/0487pzw37', 'en', 1, 'https://ror.org/0487pzw37 Butz Foundation'),
(50109, 'https://ror.org/00ndtrg66', 'en', 1, 'https://ror.org/00ndtrg66 Chicago Society for Coatings Technology'),
(50110, 'https://ror.org/014xkfq18', 'en', 1, 'https://ror.org/014xkfq18 Collaborative Spine Research Foundation'),
(50111, 'https://ror.org/03g850905', 'en', 1, 'https://ror.org/03g850905 Carl Gellert and Celia Berta Gellert Foundation'),
(50112, 'https://ror.org/038rnrm61', 'en', 1, 'https://ror.org/038rnrm61 Witter Bynner Foundation for Poetry'),
(50113, 'https://ror.org/01md9rj25', 'en', 1, 'https://ror.org/01md9rj25 Cave Research Foundation'),
(50114, 'https://ror.org/03dndb570', 'en', 1, 'https://ror.org/03dndb570 Carl M. Freeman Foundation'),
(50115, 'https://ror.org/03s3fx919', 'en', 1, 'https://ror.org/03s3fx919 Carl Marshall and Mildred Almen Reeves Foundation'),
(50116, 'https://ror.org/02fg6xr77', 'en', 1, 'https://ror.org/02fg6xr77 Cedar Tree Foundation'),
(50117, 'https://ror.org/02yfxbq86', 'en', 1, 'https://ror.org/02yfxbq86 Chiesi Foundation'),
(50118, 'https://ror.org/010taq202', 'en', 1, 'https://ror.org/010taq202 Cellmark Forensic Services'),
(50119, 'https://ror.org/04m1pcy54', 'en', 1, 'https://ror.org/04m1pcy54 Carl Wilson Foundation'),
(50120, 'https://ror.org/02wnfx958', 'en', 1, 'https://ror.org/02wnfx958 Child Cancer Foundation'),
(50121, 'https://ror.org/02x9c0555', 'en', 1, 'https://ror.org/02x9c0555 Child Development Associate'),
(50122, 'https://ror.org/04tzcp182', 'en', 1, 'https://ror.org/04tzcp182 Child Health Foundation'),
(50123, 'https://ror.org/03ng4kg22', 'en', 1, 'https://ror.org/03ng4kg22 Carl Zeiss Foundation Carl-Zeiss-Stiftung'),
(50124, 'https://ror.org/05esvpz79', 'en', 1, 'https://ror.org/05esvpz79 Celma Mastry Ovarian Cancer Foundation'),
(50125, 'https://ror.org/02jpw5905', 'en', 1, 'https://ror.org/02jpw5905 Covenant Foundation'),
(50126, 'https://ror.org/01rxe9p77', 'en', 1, 'https://ror.org/01rxe9p77 Child Neurology Foundation'),
(50127, 'https://ror.org/015np5014', 'en', 1, 'https://ror.org/015np5014 College Spark Washington'),
(50128, 'https://ror.org/03mymmj42', 'en', 1, 'https://ror.org/03mymmj42 Collins Foundation'),
(50129, 'https://ror.org/00dfm5737', 'en', 1, 'https://ror.org/00dfm5737 Apraxia KIDS'),
(50130, 'https://ror.org/04c9vvv38', 'en', 1, 'https://ror.org/04c9vvv38 Collins Medical Trust'),
(50131, 'https://ror.org/00wk91c97', 'en', 1, 'https://ror.org/00wk91c97 Cranberry Institute'),
(50132, 'https://ror.org/02aqe0j14', 'en', 1, 'https://ror.org/02aqe0j14 Childhood Brain Tumor Foundation'),
(50133, 'https://ror.org/052s8wv93', 'en', 1, 'https://ror.org/052s8wv93 An Roinn Leanaí agus Gnóthaí Óige Department of Children and Youth Affairs'),
(50134, 'https://ror.org/010m3p429', 'en', 1, 'https://ror.org/010m3p429 Colorado Health Foundation'),
(50135, 'https://ror.org/052rprq10', 'en', 1, 'https://ror.org/052rprq10 Childrens Brittle Bone Foundation'),
(50136, 'https://ror.org/03qqxfy51', 'en', 1, 'https://ror.org/03qqxfy51 Crawford Heritage Community Foundation'),
(50137, 'https://ror.org/05v2cwf20', 'en', 1, 'https://ror.org/05v2cwf20 Childrens Cancer Foundation'),
(50138, 'https://ror.org/034j0b057', 'en', 1, 'https://ror.org/034j0b057 Childrens Cardiomyopathy Foundation'),
(50139, 'https://ror.org/032xegc37', 'en', 1, 'https://ror.org/032xegc37 Colorado Parks and Wildlife'),
(50140, 'https://ror.org/05m4bht81', 'en', 1, 'https://ror.org/05m4bht81 Childrens Fund for Glycogen Storage Disease Research'),
(50141, 'https://ror.org/03y9haj77', 'en', 1, 'https://ror.org/03y9haj77 Colorado Trust'),
(50142, 'https://ror.org/021e5n641', 'en', 1, 'https://ror.org/021e5n641 Creative Capital Foundation'),
(50143, 'https://ror.org/02epenp91', 'en', 1, 'https://ror.org/02epenp91 Cricket Island Foundation'),
(50144, 'https://ror.org/01qeds693', 'en', 1, 'https://ror.org/01qeds693 Columbia Foundation'),
(50145, 'https://ror.org/03e2dbn45', 'en', 1, 'https://ror.org/03e2dbn45 Childrens Heart Foundation'),
(50146, 'https://ror.org/01pp7xa52', 'en', 1, 'https://ror.org/01pp7xa52 Crohn''s & Colitis Australia'),
(50147, 'https://ror.org/019bgst25', 'en', 1, 'https://ror.org/019bgst25 Columbus Foundation'),
(50148, 'https://ror.org/01f2n9041', 'en', 1, 'https://ror.org/01f2n9041 Crohn''s and Colitis Canada'),
(50149, 'https://ror.org/04a6f9g28', 'en', 1, 'https://ror.org/04a6f9g28 Comanis Foundation'),
(50150, 'https://ror.org/05gnax159', 'en', 1, 'https://ror.org/05gnax159 Childrens Leukemia Foundation of Michigan'),
(50151, 'https://ror.org/008s3gd19', 'en', 1, 'https://ror.org/008s3gd19 Childrens Liver Disease Foundation'),
(50152, 'https://ror.org/02624hr86', 'en', 1, 'https://ror.org/02624hr86 Center for Land Use Interpretation'),
(50153, 'https://ror.org/01wew9097', 'en', 1, 'https://ror.org/01wew9097 Crown Property Bureau'),
(50154, 'https://ror.org/035k1cb93', 'en', 1, 'https://ror.org/035k1cb93 Children''s Neuroblastoma Cancer Foundation'),
(50155, 'https://ror.org/01tf2gj84', 'en', 1, 'https://ror.org/01tf2gj84 Communities Foundation of Texas'),
(50156, 'https://ror.org/01mx76n22', 'en', 1, 'https://ror.org/01mx76n22 Department of Trade, Industry and Competition'),
(50157, 'https://ror.org/05r9h2p80', 'en', 1, 'https://ror.org/05r9h2p80 Community Broadcasting Foundation'),
(50158, 'https://ror.org/01757ay04', 'en', 1, 'https://ror.org/01757ay04 Community Foundation for Greater Atlanta'),
(50159, 'https://ror.org/01fgdhp95', 'en', 1, 'https://ror.org/01fgdhp95 Community Foundation for Greater Buffalo'),
(50160, 'https://ror.org/04srvjp38', 'en', 1, 'https://ror.org/04srvjp38 Institute for National Strategic Studies'),
(50161, 'https://ror.org/009vxf979', 'en', 1, 'https://ror.org/009vxf979 China Foundation for Poverty Alleviation 中国扶贫基金会'),
(50162, 'https://ror.org/03je57g85', 'en', 1, 'https://ror.org/03je57g85 Desmoid Tumor Research Foundation'),
(50163, 'https://ror.org/02edgqh74', 'en', 1, 'https://ror.org/02edgqh74 Community Foundation for Muskegon County'),
(50164, 'https://ror.org/0305r3866', 'en', 1, 'https://ror.org/0305r3866 CSY China-International Hepatitis Research Foundation'),
(50165, 'https://ror.org/03dc3t652', 'en', 1, 'https://ror.org/03dc3t652 Community Foundation of Greater Des Moine'),
(50166, 'https://ror.org/032wd7d36', 'en', 1, 'https://ror.org/032wd7d36 Det Obelske Familiefond Obel Family Foundation'),
(50167, 'https://ror.org/05q0mws16', 'en', 1, 'https://ror.org/05q0mws16 Community Foundation of Broward'),
(50168, 'https://ror.org/04061j496', 'no_lang_code', 1, 'https://ror.org/04061j496 CTS Forex (Canada)'),
(50169, 'https://ror.org/05g427r55', 'en', 1, 'https://ror.org/05g427r55 Deupree Family Foundation'),
(50170, 'https://ror.org/025mwe555', 'en', 1, 'https://ror.org/025mwe555 Culinary Trust'),
(50171, 'https://ror.org/04rk31t56', 'en', 1, 'https://ror.org/04rk31t56 Community Foundation of Northeast Alabama'),
(50172, 'https://ror.org/03jvfq589', 'de', 1, 'https://ror.org/03jvfq589 Deutsche Bundesbank German Federal Bank'),
(50173, 'https://ror.org/03czrhg80', 'en', 1, 'https://ror.org/03czrhg80 Community Foundation of Central Wisconsin'),
(50174, 'https://ror.org/030d3xr95', 'de', 1, 'https://ror.org/030d3xr95 Deutsche Dystonie Gesellschaft'),
(50175, 'https://ror.org/00gknkr97', 'en', 1, 'https://ror.org/00gknkr97 Cullen Foundation'),
(50176, 'https://ror.org/04rdnb978', 'de', 1, 'https://ror.org/04rdnb978 Deutsche Kinderkrebsstiftung'),
(50177, 'https://ror.org/03zmzx398', 'en', 1, 'https://ror.org/03zmzx398 Community Foundation of Elmira Corning and the Finger Lakes'),
(50178, 'https://ror.org/01vkhxt72', 'en', 1, 'https://ror.org/01vkhxt72 Cummings Foundation'),
(50179, 'https://ror.org/053bhq168', 'en', 1, 'https://ror.org/053bhq168 Community Foundation Grand Forks East Grand Forks and Region'),
(50180, 'https://ror.org/011155x24', 'en', 1, 'https://ror.org/011155x24 Community Foundation of Greater Memphis'),
(50181, 'https://ror.org/02db9yt31', 'en', 1, 'https://ror.org/02db9yt31 Cure Brain Cancer Foundation'),
(50182, 'https://ror.org/05ezdye14', 'en', 1, 'https://ror.org/05ezdye14 CHOC Foundation'),
(50183, 'https://ror.org/016wktf60', 'en', 1, 'https://ror.org/016wktf60 Community Foundation of Greater New Britain'),
(50184, 'https://ror.org/05r5v7643', 'en', 1, 'https://ror.org/05r5v7643 CURE Childhood Cancer'),
(50185, 'https://ror.org/05svfda47', 'en', 1, 'https://ror.org/05svfda47 Community Foundation of Greene County'),
(50186, 'https://ror.org/02xgxxy58', 'en', 1, 'https://ror.org/02xgxxy58 Community Foundation of Jackson Hole'),
(50187, 'https://ror.org/05eaa2738', 'en', 1, 'https://ror.org/05eaa2738 Community Foundation of Louisville'),
(50188, 'https://ror.org/03axzfm24', 'en', 1, 'https://ror.org/03axzfm24 Community Foundation of Monroe County'),
(50189, 'https://ror.org/034g3td21', 'en', 1, 'https://ror.org/034g3td21 Cure HHT'),
(50190, 'https://ror.org/006rnrs64', 'en', 1, 'https://ror.org/006rnrs64 Community Foundation of Northern Illinois'),
(50191, 'https://ror.org/018znve60', 'en', 1, 'https://ror.org/018znve60 Central New York Community Foundation'),
(50192, 'https://ror.org/01vsrwr43', 'en', 1, 'https://ror.org/01vsrwr43 Drum Foundation'),
(50193, 'https://ror.org/04es60x64', 'en', 1, 'https://ror.org/04es60x64 Cure Kids'),
(50194, 'https://ror.org/043s56e87', 'en', 1, 'https://ror.org/043s56e87 North Carolina Community Foundation'),
(50195, 'https://ror.org/03ja4pz98', 'en', 1, 'https://ror.org/03ja4pz98 Chrest Foundation'),
(50196, 'https://ror.org/04edq9h05', 'en', 1, 'https://ror.org/04edq9h05 Cure Starts Now Foundation'),
(50197, 'https://ror.org/02d8ytq61', 'en', 1, 'https://ror.org/02d8ytq61 Dew Foundation'),
(50198, 'https://ror.org/03m58p983', 'en', 1, 'https://ror.org/03m58p983 Community Foundation of the Ozarks'),
(50199, 'https://ror.org/02ggyp989', 'en', 1, 'https://ror.org/02ggyp989 Central Policy Unit 中央政策組'),
(50200, 'https://ror.org/00qfsn733', 'en', 1, 'https://ror.org/00qfsn733 CurePSP'),
(50201, 'https://ror.org/04m4td435', 'en', 1, 'https://ror.org/04m4td435 Christie''s'),
(50202, 'https://ror.org/02c8ysx60', 'en', 1, 'https://ror.org/02c8ysx60 Centre County Community Foundation'),
(50203, 'https://ror.org/02w5edg95', 'en', 1, 'https://ror.org/02w5edg95 Community Foundation of Will County'),
(50204, 'https://ror.org/04mem9m40', 'en', 1, 'https://ror.org/04mem9m40 Diabetes Technology Society'),
(50205, 'https://ror.org/003h57f17', 'sv', 1, 'https://ror.org/003h57f17 Diabetesfonden'),
(50206, 'https://ror.org/00zkk0e65', 'en', 1, 'https://ror.org/00zkk0e65 Cushman Foundation for Foraminiferal Research'),
(50207, 'https://ror.org/014efpg78', 'en', 1, 'https://ror.org/014efpg78 Christopher Columbus Fellowship Foundation'),
(50208, 'https://ror.org/006enzj37', 'en', 1, 'https://ror.org/006enzj37 Finnish Diabetes Association Suomen Diabetesliitto'),
(50209, 'https://ror.org/00yfa2884', 'en', 1, 'https://ror.org/00yfa2884 Christopher D. Smithers Foundation'),
(50210, 'https://ror.org/02wkb0b78', 'en', 1, 'https://ror.org/02wkb0b78 Compton Foundation'),
(50211, 'https://ror.org/017qdky13', 'en', 1, 'https://ror.org/017qdky13 Cynthia and George Mitchell Foundation'),
(50212, 'https://ror.org/02229an29', 'en', 1, 'https://ror.org/02229an29 Con Alma Health Foundation'),
(50213, 'https://ror.org/02q2xaq91', 'en', 1, 'https://ror.org/02q2xaq91 Christopher Reynolds Foundation');
INSERT INTO `rors` VALUES
(50214, 'https://ror.org/03mn44j95', 'en', 1, 'https://ror.org/03mn44j95 Diamond Blackfan Anemia Foundation'),
(50215, 'https://ror.org/05n4eqf04', 'en', 1, 'https://ror.org/05n4eqf04 Cystinosis Foundation'),
(50216, 'https://ror.org/04c3fxx05', 'en', 1, 'https://ror.org/04c3fxx05 Christopher Ricardo Cystic Fibrosis Foundation'),
(50217, 'https://ror.org/00qcb6787', 'en', 1, 'https://ror.org/00qcb6787 Cerebral Palsy Foundation'),
(50218, 'https://ror.org/02r5ax782', 'en', 1, 'https://ror.org/02r5ax782 Connecticut Community Foundation'),
(50219, 'https://ror.org/05mtmsa61', 'en', 1, 'https://ror.org/05mtmsa61 Diane and Bruce Halle Foundation'),
(50220, 'https://ror.org/04cy3qv12', 'en', 1, 'https://ror.org/04cy3qv12 Connecticut Health Foundation'),
(50221, 'https://ror.org/02t2ah669', 'de', 1, 'https://ror.org/02t2ah669 Dietmar Hopp Stiftung'),
(50222, 'https://ror.org/01y4ngt02', 'en', 1, 'https://ror.org/01y4ngt02 Dimbleby Cancer Care'),
(50223, 'https://ror.org/045ggm846', 'en', 1, 'https://ror.org/045ggm846 Cystinosis Research Foundation'),
(50224, 'https://ror.org/01dmefb22', 'no_lang_code', 1, 'https://ror.org/01dmefb22 Chromasens (Germany)'),
(50225, 'https://ror.org/01gz25n41', 'en', 1, 'https://ror.org/01gz25n41 Conservation, Food and Health Foundation'),
(50226, 'https://ror.org/02s1afg98', 'en', 1, 'https://ror.org/02s1afg98 Chromosome 18 Registry & Research Society'),
(50227, 'https://ror.org/02p8p2r04', 'en', 1, 'https://ror.org/02p8p2r04 Dimmer Family Foundation'),
(50228, 'https://ror.org/01qbvd385', 'en', 1, 'https://ror.org/01qbvd385 Cervical Spine Research Society'),
(50229, 'https://ror.org/0399w1j22', 'en', 1, 'https://ror.org/0399w1j22 Direction Générale Santé et sécurité alimentaire Directorate-General for Health and Food Safety Generaldirektion der Gesundheit und Lebensmittelsicherheit'),
(50230, 'https://ror.org/03hv05g61', 'no_lang_code', 1, 'https://ror.org/03hv05g61 Cooley’s Anemia Foundation'),
(50231, 'https://ror.org/01acje871', 'en', 1, 'https://ror.org/01acje871 Cooper Foundation'),
(50232, 'https://ror.org/050zqsm78', 'en', 1, 'https://ror.org/050zqsm78 Direction Générale Coopération internationale et développement Directorate-General for International Cooperation and Development Generaldirektion Internationale Zusammenarbeit und Entwicklung'),
(50233, 'https://ror.org/0215cks11', 'en', 1, 'https://ror.org/0215cks11 Cooper Trewin Memorial SUDC Research Fund'),
(50234, 'https://ror.org/046epvs68', 'en', 1, 'https://ror.org/046epvs68 Direction Générale Justice et Consommateurs Directorate-General for Justice and Consumers Generaldirektion Justiz und Verbraucher'),
(50235, 'https://ror.org/00cjay913', 'en', 1, 'https://ror.org/00cjay913 Dirk Nowitzki Foundation'),
(50236, 'https://ror.org/05j492n53', 'en', 1, 'https://ror.org/05j492n53 Daiichi Sankyo Foundation of Life Science'),
(50237, 'https://ror.org/05nnhd665', 'en', 1, 'https://ror.org/05nnhd665 CH Foundation'),
(50238, 'https://ror.org/05ch0a064', 'en', 1, 'https://ror.org/05ch0a064 Doctors Cancer Foundation'),
(50239, 'https://ror.org/04j9kx436', 'en', 1, 'https://ror.org/04j9kx436 Chrysalis'),
(50240, 'https://ror.org/00x8qhz86', 'en', 1, 'https://ror.org/00x8qhz86 Corina Higginson Trust'),
(50241, 'https://ror.org/04ak25x77', 'en', 1, 'https://ror.org/04ak25x77 ChadTough Foundation'),
(50242, 'https://ror.org/052fbzq52', 'en', 1, 'https://ror.org/052fbzq52 DAISY Foundation'),
(50243, 'https://ror.org/0369ff310', 'en', 1, 'https://ror.org/0369ff310 Dominic Barker Trust'),
(50244, 'https://ror.org/03s9tpa06', 'en', 1, 'https://ror.org/03s9tpa06 Chain of Love Foundation'),
(50245, 'https://ror.org/008h32s22', 'en', 1, 'https://ror.org/008h32s22 Cosmopolitan International'),
(50246, 'https://ror.org/029a46s62', 'no_lang_code', 1, 'https://ror.org/029a46s62 Chaipattana Foundation มูลนิธิชัยพัฒนา'),
(50247, 'https://ror.org/00npcd820', 'en', 1, 'https://ror.org/00npcd820 Cosmos Club Foundation'),
(50248, 'https://ror.org/039md3f50', 'en', 1, 'https://ror.org/039md3f50 Cianna Medical'),
(50249, 'https://ror.org/002petj21', 'en', 1, 'https://ror.org/002petj21 Dan Jansen Foundation'),
(50250, 'https://ror.org/01qwj0517', 'no_lang_code', 1, 'https://ror.org/01qwj0517 Chaparral Energy (United States)'),
(50251, 'https://ror.org/011ptxp32', 'en', 1, 'https://ror.org/011ptxp32 Donald W. Reynolds Foundation'),
(50252, 'https://ror.org/00wch0204', 'en', 1, 'https://ror.org/00wch0204 The Char and Chuck Fowler Family Foundation'),
(50253, 'https://ror.org/03ak14x38', 'en', 1, 'https://ror.org/03ak14x38 International Association for Counterterrorism and Security Professionals'),
(50254, 'https://ror.org/055y3af70', 'en', 1, 'https://ror.org/055y3af70 Daniel Heumann Fund for Spinal Cord Research'),
(50255, 'https://ror.org/025dm5t28', 'en', 1, 'https://ror.org/025dm5t28 Donnell-Kay Foundation'),
(50256, 'https://ror.org/00575xh39', 'en', 1, 'https://ror.org/00575xh39 Charles and Lynn Schusterman Family Foundation'),
(50257, 'https://ror.org/052pyty42', 'en', 1, 'https://ror.org/052pyty42 Donner Canadian Foundation Fondation canadienne Donner'),
(50258, 'https://ror.org/05q633c04', 'en', 1, 'https://ror.org/05q633c04 Danish Movement Disorder Society Dansk Selskab For Bevægeforstyrrelser'),
(50259, 'https://ror.org/025q5k762', 'no_lang_code', 1, 'https://ror.org/025q5k762 DonorsTrust'),
(50260, 'https://ror.org/05ky92r72', 'en', 1, 'https://ror.org/05ky92r72 Dannon Institute'),
(50261, 'https://ror.org/01s7t9a67', 'en', 1, 'https://ror.org/01s7t9a67 CINTAS Foundation'),
(50262, 'https://ror.org/02m8dvs65', 'en', 1, 'https://ror.org/02m8dvs65 Dorothea Haus Ross Foundation'),
(50263, 'https://ror.org/01mmnen89', 'en', 1, 'https://ror.org/01mmnen89 Charles and Mildred Schnurmacher Foundation'),
(50264, 'https://ror.org/02rqv6723', 'en', 1, 'https://ror.org/02rqv6723 Circulation Foundation'),
(50265, 'https://ror.org/02wctfj77', 'en', 1, 'https://ror.org/02wctfj77 Danny Fund'),
(50266, 'https://ror.org/03h68p024', 'en', 1, 'https://ror.org/03h68p024 Dorothy Rider Pool Health Care Trust'),
(50267, 'https://ror.org/03ffpww43', 'no_lang_code', 1, 'https://ror.org/03ffpww43 Danone (Canada)'),
(50268, 'https://ror.org/03df8yt27', 'en', 1, 'https://ror.org/03df8yt27 Dorothy Russell Havemeyer Foundation'),
(50269, 'https://ror.org/022ww2d20', 'en', 1, 'https://ror.org/022ww2d20 Charles D. Jacobus Family Foundation'),
(50270, 'https://ror.org/02tjrkg92', 'en', 1, 'https://ror.org/02tjrkg92 Dr. Robert C. and Veronica Atkins Foundation'),
(50271, 'https://ror.org/052z64z26', 'en', 1, 'https://ror.org/052z64z26 Danish Chiropractors’ Association Dansk Kiropraktor Forening'),
(50272, 'https://ror.org/00cj4by30', 'en', 1, 'https://ror.org/00cj4by30 CIRI Foundation'),
(50273, 'https://ror.org/00rsvkm93', 'en', 1, 'https://ror.org/00rsvkm93 Dr. Scholl Foundation'),
(50274, 'https://ror.org/04s4qhr84', 'de', 1, 'https://ror.org/04s4qhr84 Dr. Walter und Luise Freundlich Stiftung'),
(50275, 'https://ror.org/041ps8g15', 'en', 1, 'https://ror.org/041ps8g15 Doug Flutie. Jr Foundation for Autism'),
(50276, 'https://ror.org/05ej58m83', 'en', 1, 'https://ror.org/05ej58m83 Dougherty Foundation'),
(50277, 'https://ror.org/00d4d4985', 'en', 1, 'https://ror.org/00d4d4985 Charles Edison Fund'),
(50278, 'https://ror.org/056rb6h71', 'en', 1, 'https://ror.org/056rb6h71 Draper Richards Kaplan Foundation'),
(50279, 'https://ror.org/002kv3e70', 'en', 1, 'https://ror.org/002kv3e70 Douglas B. Marshall Jr. Family Foundation'),
(50280, 'https://ror.org/00mb5nt47', 'en', 1, 'https://ror.org/00mb5nt47 Darrell Gwynn Foundation'),
(50281, 'https://ror.org/02m0a5h24', 'en', 1, 'https://ror.org/02m0a5h24 LuMind Research Down Syndrome Foundation'),
(50282, 'https://ror.org/05hrjak95', 'en', 1, 'https://ror.org/05hrjak95 City West Water'),
(50283, 'https://ror.org/0105knf85', 'en', 1, 'https://ror.org/0105knf85 Dart Foundation'),
(50284, 'https://ror.org/03wkr6054', 'en', 1, 'https://ror.org/03wkr6054 DSF Charitable Foundation'),
(50285, 'https://ror.org/04xayvx70', 'en', 1, 'https://ror.org/04xayvx70 Down Syndrome Research Foundation'),
(50286, 'https://ror.org/01vwgk497', 'en', 1, 'https://ror.org/01vwgk497 CityBridge Education'),
(50287, 'https://ror.org/02h144281', 'en', 1, 'https://ror.org/02h144281 Charles Lee Powell Foundation'),
(50288, 'https://ror.org/01fkfc673', 'en', 1, 'https://ror.org/01fkfc673 Daughters of Charity Foundation of Saint Louis'),
(50289, 'https://ror.org/00rs28409', 'en', 1, 'https://ror.org/00rs28409 Duke Endowment'),
(50290, 'https://ror.org/03d4kwm92', 'en', 1, 'https://ror.org/03d4kwm92 Charles Pankow Foundation'),
(50291, 'https://ror.org/04qn6k859', 'en', 1, 'https://ror.org/04qn6k859 CJ Foundation for SIDS'),
(50292, 'https://ror.org/036nywx06', 'en', 1, 'https://ror.org/036nywx06 Dr. Herbert & Nicole Wertheim Family Foundation'),
(50293, 'https://ror.org/012nyn049', 'en', 1, 'https://ror.org/012nyn049 Duluth Superior Area Community Foundation'),
(50294, 'https://ror.org/02kd8pg21', 'en', 1, 'https://ror.org/02kd8pg21 Claneil Foundation'),
(50295, 'https://ror.org/02mkdtg06', 'en', 1, 'https://ror.org/02mkdtg06 Davis Foundations'),
(50296, 'https://ror.org/05wx81c53', 'en', 1, 'https://ror.org/05wx81c53 Clarence E. Heller Charitable Foundation'),
(50297, 'https://ror.org/04ad8nm85', 'en', 1, 'https://ror.org/04ad8nm85 Davis Phinney Foundation'),
(50298, 'https://ror.org/038854471', 'en', 1, 'https://ror.org/038854471 Dupar Foundation'),
(50299, 'https://ror.org/02vawgn43', 'en', 1, 'https://ror.org/02vawgn43 Dr. John T. Macdonald Foundation'),
(50300, 'https://ror.org/03xvgfq55', 'en', 1, 'https://ror.org/03xvgfq55 de Beaumont Foundation'),
(50301, 'https://ror.org/04m9zwa74', 'de', 1, 'https://ror.org/04m9zwa74 Claussen Simon Stiftung'),
(50302, 'https://ror.org/027gpeb78', 'en', 1, 'https://ror.org/027gpeb78 Dr. Josef Steiner Cancer Foundation'),
(50303, 'https://ror.org/04f4qr343', 'en', 1, 'https://ror.org/04f4qr343 Cleft Palate Foundation'),
(50304, 'https://ror.org/04jjqdb31', 'en', 1, 'https://ror.org/04jjqdb31 Durfee Foundation'),
(50305, 'https://ror.org/00093wj72', 'en', 1, 'https://ror.org/00093wj72 Dean Witter Foundation'),
(50306, 'https://ror.org/01g67g962', 'de', 1, 'https://ror.org/01g67g962 Dr. med. Arthur und Estella Hirzel-Callegari Stiftung'),
(50307, 'https://ror.org/0091d4119', 'no_lang_code', 1, 'https://ror.org/0091d4119 Chemotecnica (Argentina)'),
(50308, 'https://ror.org/00amxre65', 'en', 1, 'https://ror.org/00amxre65 Edward E. Ford Foundation'),
(50309, 'https://ror.org/00ka90s24', 'en', 1, 'https://ror.org/00ka90s24 Death Valley Natural History Association'),
(50310, 'https://ror.org/04nqwsb31', 'en', 1, 'https://ror.org/04nqwsb31 Dysautonomia Foundation'),
(50311, 'https://ror.org/05w8taj68', 'en', 1, 'https://ror.org/05w8taj68 Dyslexia Foundation'),
(50312, 'https://ror.org/02rb2sh19', 'en', 1, 'https://ror.org/02rb2sh19 Chemotherapy Foundation'),
(50313, 'https://ror.org/010kzff55', 'en', 1, 'https://ror.org/010kzff55 Edward F. Albee Foundation'),
(50314, 'https://ror.org/00cn8g609', 'en', 1, 'https://ror.org/00cn8g609 Dedalus Foundation'),
(50315, 'https://ror.org/00nx5ke65', 'en', 1, 'https://ror.org/00nx5ke65 Edward Lowe Foundation'),
(50316, 'https://ror.org/00zj09521', 'en', 1, 'https://ror.org/00zj09521 E. Matilda Ziegler Foundation for the Blind'),
(50317, 'https://ror.org/03h22gm35', 'en', 1, 'https://ror.org/03h22gm35 Edward P. Evans Foundation'),
(50318, 'https://ror.org/005f7f960', 'en', 1, 'https://ror.org/005f7f960 Chest Wall and Spine Deformity Research Foundation'),
(50319, 'https://ror.org/036xjse96', 'en', 1, 'https://ror.org/036xjse96 E. Rhodes and Leona B. Carpenter Foundation'),
(50320, 'https://ror.org/0472hmc50', 'en', 1, 'https://ror.org/0472hmc50 CLL Global Research Foundation'),
(50321, 'https://ror.org/020mmns30', 'en', 1, 'https://ror.org/020mmns30 Chi Omega Foundation'),
(50322, 'https://ror.org/03fpx5n61', 'en', 1, 'https://ror.org/03fpx5n61 Defense Equal Opportunity Management Institute'),
(50323, 'https://ror.org/03ztzyx54', 'no_lang_code', 1, 'https://ror.org/03ztzyx54 Chiari & Syringomyelia Foundation'),
(50324, 'https://ror.org/03a01dc42', 'no_lang_code', 1, 'https://ror.org/03a01dc42 E.O. Wilson Biodiversity Foundation'),
(50325, 'https://ror.org/009heah97', 'en', 1, 'https://ror.org/009heah97 Defense Human Resources Activity'),
(50326, 'https://ror.org/03ss9xg24', 'en', 1, 'https://ror.org/03ss9xg24 Coalition for Pulmonary Fibrosis'),
(50327, 'https://ror.org/01cttmp41', 'en', 1, 'https://ror.org/01cttmp41 Coastal Community Foundation'),
(50328, 'https://ror.org/03a0cx640', 'en', 1, 'https://ror.org/03a0cx640 Epidermolysis Bullosa Medical Research Foundation'),
(50329, 'https://ror.org/01ab2jm55', 'en', 1, 'https://ror.org/01ab2jm55 East-West Management Institute'),
(50330, 'https://ror.org/04jcfjz75', 'en', 1, 'https://ror.org/04jcfjz75 Epilepsy Foundation'),
(50331, 'https://ror.org/036hs6h32', 'en', 1, 'https://ror.org/036hs6h32 Coffs Harbour City Council'),
(50332, 'https://ror.org/023j15x08', 'en', 1, 'https://ror.org/023j15x08 Eastern Association for the Surgery of Trauma'),
(50333, 'https://ror.org/0166vvj90', 'en', 1, 'https://ror.org/0166vvj90 El Paso Community Foundation'),
(50334, 'https://ror.org/00tvbb869', 'en', 1, 'https://ror.org/00tvbb869 Episcopal Church Foundation'),
(50335, 'https://ror.org/02zbdpx12', 'en', 1, 'https://ror.org/02zbdpx12 Electri International'),
(50336, 'https://ror.org/01zqyhk59', 'en', 1, 'https://ror.org/01zqyhk59 Defense Technical Information Center'),
(50337, 'https://ror.org/02va37h22', 'no_lang_code', 1, 'https://ror.org/02va37h22 Chugoku Electric Power (Japan) 中国電力株式会社'),
(50338, 'https://ror.org/03a8x4b06', 'en', 1, 'https://ror.org/03a8x4b06 Eppley Foundation for Research'),
(50339, 'https://ror.org/059ja6e58', 'en', 1, 'https://ror.org/059ja6e58 Defense Technology Security Administration'),
(50340, 'https://ror.org/04nvswg42', 'en', 1, 'https://ror.org/04nvswg42 Eau Claire Community Foundation'),
(50341, 'https://ror.org/00ftqkj90', 'no_lang_code', 1, 'https://ror.org/00ftqkj90 COFRA (Switzerland)'),
(50342, 'https://ror.org/016t73h24', 'en', 1, 'https://ror.org/016t73h24 Equipment Leasing & Finance Foundation'),
(50343, 'https://ror.org/00g01fs73', 'de', 1, 'https://ror.org/00g01fs73 Ebnet Stiftung'),
(50344, 'https://ror.org/051yr1559', 'en', 1, 'https://ror.org/051yr1559 DeGregorio Family Foundation'),
(50345, 'https://ror.org/02a723v03', 'en', 1, 'https://ror.org/02a723v03 Cogito Foundation'),
(50346, 'https://ror.org/03btm4d84', 'en', 1, 'https://ror.org/03btm4d84 Elias Foundation'),
(50347, 'https://ror.org/052595073', 'de', 1, 'https://ror.org/052595073 Erich Und Gertrud Roggenbuck Stiftung'),
(50348, 'https://ror.org/015z1nq23', 'en', 1, 'https://ror.org/015z1nq23 Elisabeth Severance Prentiss Foundation'),
(50349, 'https://ror.org/017wcz935', 'en', 1, 'https://ror.org/017wcz935 Elizabeth Taylor AIDS Foundation'),
(50350, 'https://ror.org/0451cv982', 'en', 1, 'https://ror.org/0451cv982 Delta Dental Plans Association'),
(50351, 'https://ror.org/00gz3wv72', 'en', 1, 'https://ror.org/00gz3wv72 Eden Hall Foundation'),
(50352, 'https://ror.org/0355jzb94', 'en', 1, 'https://ror.org/0355jzb94 Cohoes Savings Foundation'),
(50353, 'https://ror.org/04yf1p931', 'en', 1, 'https://ror.org/04yf1p931 Elmina B. Sewall Foundation'),
(50354, 'https://ror.org/02c00bp33', 'no_lang_code', 1, 'https://ror.org/02c00bp33 Ernst & Young (United States)'),
(50355, 'https://ror.org/00vsgwy54', 'en', 1, 'https://ror.org/00vsgwy54 Delta Electronics Foundation'),
(50356, 'https://ror.org/05sjnvv07', 'en', 1, 'https://ror.org/05sjnvv07 Elsa U. Pardee Foundation'),
(50357, 'https://ror.org/022qrkq94', 'en', 1, 'https://ror.org/022qrkq94 Colcom Foundation'),
(50358, 'https://ror.org/04jck5r17', 'en', 1, 'https://ror.org/04jck5r17 Elsass Fonden Elsass Foundation'),
(50359, 'https://ror.org/02mmxnk73', 'en', 1, 'https://ror.org/02mmxnk73 Coleman Foundation'),
(50360, 'https://ror.org/03w76df53', 'de', 1, 'https://ror.org/03w76df53 Ernst-Abbe-Stiftung'),
(50361, 'https://ror.org/018225234', 'en', 1, 'https://ror.org/018225234 Edna McConnell Clark Foundation'),
(50362, 'https://ror.org/04ttgxj90', 'en', 1, 'https://ror.org/04ttgxj90 Esping Family Foundation'),
(50363, 'https://ror.org/04y55ke86', 'en', 1, 'https://ror.org/04y55ke86 Falck Foundation'),
(50364, 'https://ror.org/035dcj063', 'en', 1, 'https://ror.org/035dcj063 East Morgan County Hospital'),
(50365, 'https://ror.org/024a5cr96', 'en', 1, 'https://ror.org/024a5cr96 Education and Research Foundation for Nuclear Medicine and Molecular Imaging'),
(50366, 'https://ror.org/0482m7054', 'en', 1, 'https://ror.org/0482m7054 Esther B. Kahn Charitable Foundation'),
(50367, 'https://ror.org/044fagb96', 'en', 1, 'https://ror.org/044fagb96 Dental Foundation of Oregon'),
(50368, 'https://ror.org/05pjyf321', 'en', 1, 'https://ror.org/05pjyf321 EMDR Research Foundation'),
(50369, 'https://ror.org/040x3fx63', 'en', 1, 'https://ror.org/040x3fx63 Emergency Medicine Foundation'),
(50370, 'https://ror.org/04dbfz605', 'en', 1, 'https://ror.org/04dbfz605 Educational Foundation for Women in Accounting'),
(50371, 'https://ror.org/034bxq716', 'en', 1, 'https://ror.org/034bxq716 Emergency Nurses Association'),
(50372, 'https://ror.org/03eqf0810', 'en', 1, 'https://ror.org/03eqf0810 Educational Foundation of America'),
(50373, 'https://ror.org/01stze803', 'da', 1, 'https://ror.org/01stze803 Familien Hede Nielsens Fond'),
(50374, 'https://ror.org/02vdgjm20', 'en', 1, 'https://ror.org/02vdgjm20 Emily Davie and Joseph S. Kornfeld Foundation'),
(50375, 'https://ror.org/05ggszr08', 'en', 1, 'https://ror.org/05ggszr08 Emily Dorfman Foundation for Children'),
(50376, 'https://ror.org/03dr9am58', 'no_lang_code', 1, 'https://ror.org/03dr9am58 Eduserv'),
(50377, 'https://ror.org/05nd26619', 'en', 1, 'https://ror.org/05nd26619 Emirates Foundation'),
(50378, 'https://ror.org/04hmpdq89', 'en', 1, 'https://ror.org/04hmpdq89 Eye Disease Foundation Fondation des maladies de l''oeil'),
(50379, 'https://ror.org/045bk1a41', 'fr', 1, 'https://ror.org/045bk1a41 Fondation du CHUM'),
(50380, 'https://ror.org/04ffexa42', 'en', 1, 'https://ror.org/04ffexa42 Family Care Foundation'),
(50381, 'https://ror.org/0555br587', 'en', 1, 'https://ror.org/0555br587 Employee Assistance Research Foundation'),
(50382, 'https://ror.org/041g7jm83', 'it', 1, 'https://ror.org/041g7jm83 Fondazione Umberto Veronesi'),
(50383, 'https://ror.org/01ppj1b82', 'en', 1, 'https://ror.org/01ppj1b82 Rippel Foundation'),
(50384, 'https://ror.org/0321tae61', 'fr', 1, 'https://ror.org/0321tae61 Fondation Ernst et Lucie Schmidheiny'),
(50385, 'https://ror.org/02gcdg805', 'en', 1, 'https://ror.org/02gcdg805 Fashion Group International'),
(50386, 'https://ror.org/01pjqkg29', 'en', 1, 'https://ror.org/01pjqkg29 Fats and Proteins Research Foundation'),
(50387, 'https://ror.org/034xn0k91', 'fr', 1, 'https://ror.org/034xn0k91 Fondation Hans Wilsdorf'),
(50388, 'https://ror.org/04ad3ke38', 'de', 1, 'https://ror.org/04ad3ke38 Fazit-Stiftung'),
(50389, 'https://ror.org/002chp112', 'de', 1, 'https://ror.org/002chp112 Stiftung Endoprothetik'),
(50390, 'https://ror.org/040zwh478', 'en', 1, 'https://ror.org/040zwh478 European Brain and Behaviour Society'),
(50391, 'https://ror.org/008wd8726', 'en', 1, 'https://ror.org/008wd8726 Endowment for Health'),
(50392, 'https://ror.org/0393e5v03', 'en', 1, 'https://ror.org/0393e5v03 Fonds Sluyterman van Loo Sluyterman van Loo Foundation'),
(50393, 'https://ror.org/03m2gb193', 'en', 1, 'https://ror.org/03m2gb193 Food Allergy Research and Education'),
(50394, 'https://ror.org/012sh1702', 'en', 1, 'https://ror.org/012sh1702 Danish Ministry of Climate, Energy and Utilities Energi-, Forsynings- og Klimaministeriet'),
(50395, 'https://ror.org/033myqh37', 'en', 1, 'https://ror.org/033myqh37 Forbes Funds'),
(50396, 'https://ror.org/04dagjw98', 'en', 1, 'https://ror.org/04dagjw98 Felix Scholarship'),
(50397, 'https://ror.org/055vygt66', 'en', 1, 'https://ror.org/055vygt66 Engineering Information Foundation'),
(50398, 'https://ror.org/054nv4a88', 'en', 1, 'https://ror.org/054nv4a88 Ford Family Foundation'),
(50399, 'https://ror.org/04aphzs78', 'en', 1, 'https://ror.org/04aphzs78 Fellowship Fund Inc'),
(50400, 'https://ror.org/05tp8q545', 'en', 1, 'https://ror.org/05tp8q545 Environment and Conservation Fund 環境及自然保育基金'),
(50401, 'https://ror.org/028r46717', 'en', 1, 'https://ror.org/028r46717 Ferree Foundation'),
(50402, 'https://ror.org/03nmw6653', 'en', 1, 'https://ror.org/03nmw6653 European Neuroendocrine Association'),
(50403, 'https://ror.org/03szkq031', 'en', 1, 'https://ror.org/03szkq031 Environment and Health Fund הקרן לבריאות הסביבה'),
(50404, 'https://ror.org/00my48t58', 'fr', 1, 'https://ror.org/00my48t58 Fondation Marie et Alain Philippson'),
(50405, 'https://ror.org/0460qsp30', 'fr', 1, 'https://ror.org/0460qsp30 Fondation Max van Berchem'),
(50406, 'https://ror.org/008t3fy21', 'en', 1, 'https://ror.org/008t3fy21 Fibrolamellar Cancer Foundation'),
(50407, 'https://ror.org/02ha36g10', 'en', 1, 'https://ror.org/02ha36g10 Environmental Protection Administration 行政院環境保護署'),
(50408, 'https://ror.org/012y0vf21', 'en', 1, 'https://ror.org/012y0vf21 Fidelity Foundation'),
(50409, 'https://ror.org/000y6m766', 'en', 1, 'https://ror.org/000y6m766 European Society for Paediatric Endocrinology'),
(50410, 'https://ror.org/01frg4p28', 'en', 1, 'https://ror.org/01frg4p28 Environmental Research and Education Foundation'),
(50411, 'https://ror.org/02z24na70', 'fr', 1, 'https://ror.org/02z24na70 Fondation Medic'),
(50412, 'https://ror.org/04md70c70', 'en', 1, 'https://ror.org/04md70c70 Field Foundation'),
(50413, 'https://ror.org/00npama54', 'en', 1, 'https://ror.org/00npama54 Rabbit Free Australia'),
(50414, 'https://ror.org/04c8t3f61', 'en', 1, 'https://ror.org/04c8t3f61 Foundation Milena Carvajal - Pro-Kartagener'),
(50415, 'https://ror.org/01y3pph13', 'fr', 1, 'https://ror.org/01y3pph13 Fondation Motrice'),
(50416, 'https://ror.org/00c1f7q63', 'en', 1, 'https://ror.org/00c1f7q63 Field Neurosciences Institute'),
(50417, 'https://ror.org/036jkzq95', 'en', 1, 'https://ror.org/036jkzq95 European Society of Cataract and Refractive Surgeons'),
(50418, 'https://ror.org/02j553a92', 'fr', 1, 'https://ror.org/02j553a92 Fondation Nanosciences'),
(50419, 'https://ror.org/00zbvt830', 'no_lang_code', 1, 'https://ror.org/00zbvt830 FightSMA'),
(50420, 'https://ror.org/0376x2274', 'en', 1, 'https://ror.org/0376x2274 European Society of Endocrinology'),
(50421, 'https://ror.org/01m9jhr72', 'en', 1, 'https://ror.org/01m9jhr72 Finnish Lung Health Association'),
(50422, 'https://ror.org/016dcgm68', 'en', 1, 'https://ror.org/016dcgm68 Foundation and Footings Society'),
(50423, 'https://ror.org/05jawdm29', 'en', 1, 'https://ror.org/05jawdm29 Foundation for a Healthy Kentucky'),
(50424, 'https://ror.org/01d4wwv56', 'fr', 1, 'https://ror.org/01d4wwv56 Fondation Roger de Spoelberch'),
(50425, 'https://ror.org/0511edk83', 'en', 1, 'https://ror.org/0511edk83 Foundation for the Advancement in Research in Medicine'),
(50426, 'https://ror.org/05x3hz149', 'en', 1, 'https://ror.org/05x3hz149 Financial Markets Foundation for Children'),
(50427, 'https://ror.org/02td35639', 'en', 1, 'https://ror.org/02td35639 Foundation for Advancement in Cancer Therapy'),
(50428, 'https://ror.org/01mrvqn21', 'en', 1, 'https://ror.org/01mrvqn21 EuroQol Research Foundation'),
(50429, 'https://ror.org/05q8csa40', 'fr', 1, 'https://ror.org/05q8csa40 Fondation Rose et Jean Hoguet'),
(50430, 'https://ror.org/00dtg9r68', 'en', 1, 'https://ror.org/00dtg9r68 Financial Services Authority'),
(50431, 'https://ror.org/00qesdp23', 'en', 1, 'https://ror.org/00qesdp23 Future Foundation'),
(50432, 'https://ror.org/02kerk826', 'en', 1, 'https://ror.org/02kerk826 FINRA Investor Education Foundation'),
(50433, 'https://ror.org/04b6a1666', 'en', 1, 'https://ror.org/04b6a1666 Fionia Fond'),
(50434, 'https://ror.org/01dvc8750', 'en', 1, 'https://ror.org/01dvc8750 Foundation for Agronomic Research'),
(50435, 'https://ror.org/00vsf1v04', 'en', 1, 'https://ror.org/00vsf1v04 McKnight Brain Research Foundation'),
(50436, 'https://ror.org/00e82pm13', 'en', 1, 'https://ror.org/00e82pm13 Foundation for Angelman Syndrome Therapeutics'),
(50437, 'https://ror.org/03jf78g10', 'fr', 1, 'https://ror.org/03jf78g10 Fondation Thierry Latran'),
(50438, 'https://ror.org/022xccz03', 'en', 1, 'https://ror.org/022xccz03 Foundation for Arable Research'),
(50439, 'https://ror.org/0539m8k84', 'fr', 1, 'https://ror.org/0539m8k84 Fondation Tuck'),
(50440, 'https://ror.org/04bpvbv63', 'en', 1, 'https://ror.org/04bpvbv63 First Fruit'),
(50441, 'https://ror.org/01me3x819', 'en', 1, 'https://ror.org/01me3x819 Everychild Foundation'),
(50442, 'https://ror.org/045rc6f24', 'it', 1, 'https://ror.org/045rc6f24 Fondazione Antonio Carlo Monzino'),
(50443, 'https://ror.org/009j61e89', 'en', 1, 'https://ror.org/009j61e89 Foundation for Women’s Wellness'),
(50444, 'https://ror.org/0388s3j86', 'en', 1, 'https://ror.org/0388s3j86 FISA Foundation'),
(50445, 'https://ror.org/04zz2b246', 'it', 1, 'https://ror.org/04zz2b246 Fondazione ART per la Ricerca sui Trapianti'),
(50446, 'https://ror.org/03aw9bj44', 'en', 1, 'https://ror.org/03aw9bj44 Fistula Foundation'),
(50447, 'https://ror.org/05nzh9f89', 'de', 1, 'https://ror.org/05nzh9f89 Evonik Stiftung'),
(50448, 'https://ror.org/04ygvt366', 'en', 1, 'https://ror.org/04ygvt366 Fleishhacker Foundation'),
(50449, 'https://ror.org/03s4rnj35', 'it', 1, 'https://ror.org/03s4rnj35 Fondazione Audiologica Varese'),
(50450, 'https://ror.org/01p0fnz19', 'en', 1, 'https://ror.org/01p0fnz19 Fletcher Jones Foundation'),
(50451, 'https://ror.org/022ag4q91', 'it', 1, 'https://ror.org/022ag4q91 Fondazioni Casali'),
(50452, 'https://ror.org/03tknt305', 'en', 1, 'https://ror.org/03tknt305 Explorers Club'),
(50453, 'https://ror.org/01fhbm930', 'en', 1, 'https://ror.org/01fhbm930 Flinders Medical Centre Foundation'),
(50454, 'https://ror.org/014twjs44', 'en', 1, 'https://ror.org/014twjs44 Foundation for Community Association Research'),
(50455, 'https://ror.org/04fkd7w53', 'it', 1, 'https://ror.org/04fkd7w53 Fondazione Cariparma'),
(50456, 'https://ror.org/0587jcv93', 'en', 1, 'https://ror.org/0587jcv93 Foundation To Eradicate Duchenne'),
(50457, 'https://ror.org/05323zs40', 'en', 1, 'https://ror.org/05323zs40 Foundation for Economic Education'),
(50458, 'https://ror.org/0314qvz14', 'en', 1, 'https://ror.org/0314qvz14 Foellinger Foundation'),
(50459, 'https://ror.org/05r91hj80', 'en', 1, 'https://ror.org/05r91hj80 EyeSight Foundation of Alabama'),
(50460, 'https://ror.org/00baqjm67', 'en', 1, 'https://ror.org/00baqjm67 Foundation for End of Life Care'),
(50461, 'https://ror.org/00s37na25', 'it', 1, 'https://ror.org/00s37na25 Fondazione Carical - Cassa di Risparmio di Calabria e di Lucania'),
(50462, 'https://ror.org/00cfk7y53', 'it', 1, 'https://ror.org/00cfk7y53 Fondazione Cassa Di Risparmio Di Cento'),
(50463, 'https://ror.org/029x73965', 'fr', 1, 'https://ror.org/029x73965 Fondation Acteria'),
(50464, 'https://ror.org/04mjnb932', 'it', 1, 'https://ror.org/04mjnb932 Fondazione Cassa di Risparmio Civitavecchia'),
(50465, 'https://ror.org/03kz2rg33', 'en', 1, 'https://ror.org/03kz2rg33 F. M. Kirby Foundation'),
(50466, 'https://ror.org/01mprm944', 'en', 1, 'https://ror.org/01mprm944 Foundation for Global Scholars'),
(50467, 'https://ror.org/03krr1869', 'it', 1, 'https://ror.org/03krr1869 Fondazione Cassa di Risparmio di Foligno'),
(50468, 'https://ror.org/037ny3p81', 'en', 1, 'https://ror.org/037ny3p81 Frances P. Bunnelle Foundation'),
(50469, 'https://ror.org/03c79xe68', 'it', 1, 'https://ror.org/03c79xe68 Fondazione Cassa di Risparmio di Genova e Imperia'),
(50470, 'https://ror.org/055e82g34', 'en', 1, 'https://ror.org/055e82g34 Foundation for Iranian Studies'),
(50471, 'https://ror.org/04121g745', 'en', 1, 'https://ror.org/04121g745 FACE Foundation'),
(50472, 'https://ror.org/01cr00p51', 'it', 1, 'https://ror.org/01cr00p51 Fondazione di Piacenza e Vigevano'),
(50473, 'https://ror.org/03p5taw69', 'en', 1, 'https://ror.org/03p5taw69 Foundation for Middle East Peace'),
(50474, 'https://ror.org/05jhnab13', 'it', 1, 'https://ror.org/05jhnab13 Fondazione Pisa'),
(50475, 'https://ror.org/03g3g6c84', 'en', 1, 'https://ror.org/03g3g6c84 Foundation for National Parks and Wildlife'),
(50476, 'https://ror.org/05ahejj17', 'it', 1, 'https://ror.org/05ahejj17 Fondazione Cassa di Risparmio di Pistoia e Pescia'),
(50477, 'https://ror.org/01cqrth30', 'fr', 1, 'https://ror.org/01cqrth30 Fondation Arthritis'),
(50478, 'https://ror.org/0299hbx29', 'en', 1, 'https://ror.org/0299hbx29 Francis Family Foundation'),
(50479, 'https://ror.org/04febt404', 'en', 1, 'https://ror.org/04febt404 Fahs-Beck Fund for Research and Experimentation'),
(50480, 'https://ror.org/04wkyys07', 'it', 1, 'https://ror.org/04wkyys07 Fondazione Cariverona'),
(50481, 'https://ror.org/04h7fev25', 'fr', 1, 'https://ror.org/04h7fev25 Fondation Bertarelli'),
(50482, 'https://ror.org/05rbt5y67', 'it', 1, 'https://ror.org/05rbt5y67 Fondazione CON IL SUD'),
(50483, 'https://ror.org/00wct8y22', 'en', 1, 'https://ror.org/00wct8y22 Frank H and Eva B Buck Foundation'),
(50484, 'https://ror.org/048g79687', 'en', 1, 'https://ror.org/048g79687 Wild Sheep Foundation'),
(50485, 'https://ror.org/02p3abx23', 'fr', 1, 'https://ror.org/02p3abx23 Fondation Bettencourt Schueller'),
(50486, 'https://ror.org/00t2vyc14', 'it', 1, 'https://ror.org/00t2vyc14 Università a Vicenza'),
(50487, 'https://ror.org/009p94737', 'en', 1, 'https://ror.org/009p94737 Frank Hadley Ginn and Cornelia Root Ginn Charitable Trust'),
(50488, 'https://ror.org/053khm112', 'en', 1, 'https://ror.org/053khm112 Frankel Family Foundation'),
(50489, 'https://ror.org/01sdk1n29', 'en', 1, 'https://ror.org/01sdk1n29 Fuji Foundation for Protein Research ファウジータンパク質研究財団'),
(50490, 'https://ror.org/02m0qsq54', 'it', 1, 'https://ror.org/02m0qsq54 Fondazione Europea Ricerca Biomedica'),
(50491, 'https://ror.org/02tstf772', 'it', 1, 'https://ror.org/02tstf772 Fondazione Alazio'),
(50492, 'https://ror.org/050apvm78', 'en', 1, 'https://ror.org/050apvm78 Fraxa Research Foundation'),
(50493, 'https://ror.org/02fbng346', 'en', 1, 'https://ror.org/02fbng346 Foundation for Personality and Social Psychology'),
(50494, 'https://ror.org/05db0d889', 'en', 1, 'https://ror.org/05db0d889 Fondazione Grigioni per il Morbo di Parkinson Grigioni Foundation for Parkinson''s disease'),
(50495, 'https://ror.org/05ya80s18', 'en', 1, 'https://ror.org/05ya80s18 Fred and Mary Koch Foundation'),
(50496, 'https://ror.org/0281fad83', 'en', 1, 'https://ror.org/0281fad83 Parenteral Drug Association'),
(50497, 'https://ror.org/03pptej51', 'it', 1, 'https://ror.org/03pptej51 Fondazione Guido Berlucchi'),
(50498, 'https://ror.org/04bc0kj52', 'en', 1, 'https://ror.org/04bc0kj52 Fujiwara Natural History Foundation 藤原自然歴史財団'),
(50499, 'https://ror.org/04wp26z07', 'en', 1, 'https://ror.org/04wp26z07 Fred J Brotherton Charitable Foundation'),
(50500, 'https://ror.org/01bcmwk98', 'en', 1, 'https://ror.org/01bcmwk98 Brain Canada Foundation'),
(50501, 'https://ror.org/03g5saw48', 'en', 1, 'https://ror.org/03g5saw48 100 Black Men of America'),
(50502, 'https://ror.org/02w70xk53', 'en', 1, 'https://ror.org/02w70xk53 Fred L Emerson Foundation'),
(50503, 'https://ror.org/010zvgy46', 'en', 1, 'https://ror.org/010zvgy46 Encore'),
(50504, 'https://ror.org/05aawzp88', 'en', 1, 'https://ror.org/05aawzp88 Great Minds'),
(50505, 'https://ror.org/05pz1ah39', 'en', 1, 'https://ror.org/05pz1ah39 Aspire Public Schools'),
(50506, 'https://ror.org/04kfydn45', 'en', 1, 'https://ror.org/04kfydn45 Cato Institute'),
(50507, 'https://ror.org/053aytr73', 'en', 1, 'https://ror.org/053aytr73 Accion International'),
(50508, 'https://ror.org/01ajd9545', 'en', 1, 'https://ror.org/01ajd9545 Common Ground Research Networks'),
(50509, 'https://ror.org/01527h266', 'en', 1, 'https://ror.org/01527h266 Enhancing Financial Innovation & Access'),
(50510, 'https://ror.org/007w9h140', 'en', 1, 'https://ror.org/007w9h140 People ''s Liberation Army 451 Hospital 解放军451医院'),
(50511, 'https://ror.org/03bvrvh83', 'en', 1, 'https://ror.org/03bvrvh83 Association of Theological Schools'),
(50512, 'https://ror.org/02zqy5k53', 'en', 1, 'https://ror.org/02zqy5k53 Common Sense Media'),
(50513, 'https://ror.org/040z8fc91', 'en', 1, 'https://ror.org/040z8fc91 Consortium of Christian Relief and Development Associations'),
(50514, 'https://ror.org/01kntxs33', 'no_lang_code', 1, 'https://ror.org/01kntxs33 Enviu (Netherlands)'),
(50515, 'https://ror.org/01485c733', 'en', 1, 'https://ror.org/01485c733 AchieveMpls'),
(50516, 'https://ror.org/03bknpx96', 'no_lang_code', 1, 'https://ror.org/03bknpx96 Epsilon Therapeutics (United States)'),
(50517, 'https://ror.org/0103zr797', 'en', 1, 'https://ror.org/0103zr797 Center for Educational Leadership and Technology'),
(50518, 'https://ror.org/03ashfw15', 'en', 1, 'https://ror.org/03ashfw15 Communities in Schools of Renton'),
(50519, 'https://ror.org/03zbdkx15', 'en', 1, 'https://ror.org/03zbdkx15 Achievement First'),
(50520, 'https://ror.org/00gdp2d15', 'no_lang_code', 1, 'https://ror.org/00gdp2d15 Eram Scientific Solutions (India)'),
(50521, 'https://ror.org/020fqx327', 'en', 1, 'https://ror.org/020fqx327 Achievement School District'),
(50522, 'https://ror.org/02m5ztg20', 'en', 1, 'https://ror.org/02m5ztg20 Communities in School'),
(50523, 'https://ror.org/02wqsek53', 'en', 1, 'https://ror.org/02wqsek53 Achieving the Dream'),
(50524, 'https://ror.org/011bmks03', 'en', 1, 'https://ror.org/011bmks03 Community for Youth'),
(50525, 'https://ror.org/04120ay35', 'no_lang_code', 1, 'https://ror.org/04120ay35 eSpark Learning (United States)'),
(50526, 'https://ror.org/03dnfcb20', 'en', 1, 'https://ror.org/03dnfcb20 Center for Community Change'),
(50527, 'https://ror.org/0497n8p79', 'en', 1, 'https://ror.org/0497n8p79 Acrobatiq'),
(50528, 'https://ror.org/01431mg04', 'en', 1, 'https://ror.org/01431mg04 Act One'),
(50529, 'https://ror.org/025cyvq34', 'no_lang_code', 1, 'https://ror.org/025cyvq34 Athena Infonomics (India)'),
(50530, 'https://ror.org/04hzpm856', 'en', 1, 'https://ror.org/04hzpm856 Community Foundation of North Central Washington'),
(50531, 'https://ror.org/054ak8145', 'en', 1, 'https://ror.org/054ak8145 European Scientific Working group on Influenza'),
(50532, 'https://ror.org/001m1z350', 'en', 1, 'https://ror.org/001m1z350 Community Foundation of South Puget Sound'),
(50533, 'https://ror.org/00496yk95', 'en', 1, 'https://ror.org/00496yk95 Atlanta Public Schools'),
(50534, 'https://ror.org/05frb5d17', 'en', 1, 'https://ror.org/05frb5d17 Ethnic Arts Council of Los Angeles'),
(50535, 'https://ror.org/03eys0150', 'en', 1, 'https://ror.org/03eys0150 Center for Curriculum Redesign'),
(50536, 'https://ror.org/01xpmpn11', 'en', 1, 'https://ror.org/01xpmpn11 Atlantic Street Center'),
(50537, 'https://ror.org/0292f6736', 'en', 1, 'https://ror.org/0292f6736 Community Initiatives'),
(50538, 'https://ror.org/051k8ns77', 'en', 1, 'https://ror.org/051k8ns77 Center for Energy Workforce Development'),
(50539, 'https://ror.org/049r37a68', 'en', 1, 'https://ror.org/049r37a68 Center for Financial Services Innovation'),
(50540, 'https://ror.org/03j44yq97', 'en', 1, 'https://ror.org/03j44yq97 Community Youth Services'),
(50541, 'https://ror.org/01pgn1y88', 'en', 1, 'https://ror.org/01pgn1y88 ActionAid'),
(50542, 'https://ror.org/03zp31h16', 'en', 1, 'https://ror.org/03zp31h16 Acton Institute'),
(50543, 'https://ror.org/05x1xqk69', 'en', 1, 'https://ror.org/05x1xqk69 Center for Inspired Teaching'),
(50544, 'https://ror.org/00jhzb822', 'no_lang_code', 1, 'https://ror.org/00jhzb822 Acuitus (United States)'),
(50545, 'https://ror.org/02t57sv80', 'no_lang_code', 1, 'https://ror.org/02t57sv80 Atomo Diagnostics'),
(50546, 'https://ror.org/04z32jy09', 'en', 1, 'https://ror.org/04z32jy09 European Network on Debt and Development'),
(50547, 'https://ror.org/05gp08a36', 'en', 1, 'https://ror.org/05gp08a36 Acumen'),
(50548, 'https://ror.org/04mxyy281', 'en', 1, 'https://ror.org/04mxyy281 Center for Pastor Theologians'),
(50549, 'https://ror.org/02khx6d29', 'en', 1, 'https://ror.org/02khx6d29 Battelle For Kids'),
(50550, 'https://ror.org/03tpee522', 'en', 1, 'https://ror.org/03tpee522 Every Mother Counts'),
(50551, 'https://ror.org/031tkkf47', 'en', 1, 'https://ror.org/031tkkf47 Adam Smith Institute'),
(50552, 'https://ror.org/00axr9h76', 'en', 1, 'https://ror.org/00axr9h76 Center for Public Justice'),
(50553, 'https://ror.org/03p5vh095', 'en', 1, 'https://ror.org/03p5vh095 Complete College America'),
(50554, 'https://ror.org/021qqv739', 'en', 1, 'https://ror.org/021qqv739 Beacon Center of Tennessee'),
(50555, 'https://ror.org/05pe87g24', 'en', 1, 'https://ror.org/05pe87g24 Concern Worldwide US'),
(50556, 'https://ror.org/02f1cca66', 'en', 1, 'https://ror.org/02f1cca66 Center for Reform of School Systems'),
(50557, 'https://ror.org/01t418a56', 'pt', 1, 'https://ror.org/01t418a56 Fundação de Apoio ao Desenvolvimento da Computação Científica'),
(50558, 'https://ror.org/04134r903', 'en', 1, 'https://ror.org/04134r903 Connected Nation'),
(50559, 'https://ror.org/01w7qtj07', 'en', 1, 'https://ror.org/01w7qtj07 Center for Strengthening the Teaching Profession'),
(50560, 'https://ror.org/01hgje476', 'en', 1, 'https://ror.org/01hgje476 Children Youth and Family Collaborative'),
(50561, 'https://ror.org/0213kt015', 'en', 1, 'https://ror.org/0213kt015 Faith in Public Life'),
(50562, 'https://ror.org/05wng8211', 'en', 1, 'https://ror.org/05wng8211 Becket Fund for Religious Liberty'),
(50563, 'https://ror.org/022sa6t23', 'en', 1, 'https://ror.org/022sa6t23 Family Care International'),
(50564, 'https://ror.org/05yh0gb04', 'no_lang_code', 1, 'https://ror.org/05yh0gb04 Advenio TecnoSys (India)'),
(50565, 'https://ror.org/046185q66', 'en', 1, 'https://ror.org/046185q66 Center for the Study of Technology and Society'),
(50566, 'https://ror.org/011s5bv71', 'en', 1, 'https://ror.org/011s5bv71 Aerosan'),
(50567, 'https://ror.org/01va8tm89', 'en', 1, 'https://ror.org/01va8tm89 Consortium for DEWATS Dissemination Society'),
(50568, 'https://ror.org/047drby29', 'no_lang_code', 1, 'https://ror.org/047drby29 AfricaBio'),
(50569, 'https://ror.org/03bpjrg09', 'en', 1, 'https://ror.org/03bpjrg09 CUTS International'),
(50570, 'https://ror.org/051s40g85', 'en', 1, 'https://ror.org/051s40g85 Farm Concern International'),
(50571, 'https://ror.org/05gqz0k77', 'en', 1, 'https://ror.org/05gqz0k77 African Development Bank Group'),
(50572, 'https://ror.org/00g156b94', 'en', 1, 'https://ror.org/00g156b94 Center for Theology and the Natural Sciences'),
(50573, 'https://ror.org/027e6vw02', 'en', 1, 'https://ror.org/027e6vw02 African Evaluation Association'),
(50574, 'https://ror.org/05vwvtg56', 'no_lang_code', 1, 'https://ror.org/05vwvtg56 Context Network (United States)'),
(50575, 'https://ror.org/03q02hd35', 'en', 1, 'https://ror.org/03q02hd35 Fighting Infectious Diseases in Emerging Countries'),
(50576, 'https://ror.org/04befzh73', 'no_lang_code', 1, 'https://ror.org/04befzh73 African Fertilizer and Agribusiness Partnership'),
(50577, 'https://ror.org/012jedj89', 'no_lang_code', 1, 'https://ror.org/012jedj89 African Water Association'),
(50578, 'https://ror.org/00yp23m74', 'en', 1, 'https://ror.org/00yp23m74 Centre for Budget and Governance Accountability'),
(50579, 'https://ror.org/00bsqq263', 'no_lang_code', 1, 'https://ror.org/00bsqq263 AgBiome (United States)'),
(50580, 'https://ror.org/01prhq989', 'en', 1, 'https://ror.org/01prhq989 Corporation for Public Broadcasting'),
(50581, 'https://ror.org/04t947081', 'en', 1, 'https://ror.org/04t947081 Financial Sector Deepening Trust'),
(50582, 'https://ror.org/055xdas15', 'no_lang_code', 1, 'https://ror.org/055xdas15 AIM Group (Tanzania)'),
(50583, 'https://ror.org/04mtb9h21', 'en', 1, 'https://ror.org/04mtb9h21 Finca International'),
(50584, 'https://ror.org/0377kgt41', 'en', 1, 'https://ror.org/0377kgt41 Communities United'),
(50585, 'https://ror.org/01trfwv98', 'en', 1, 'https://ror.org/01trfwv98 Boys and Girls Clubs'),
(50586, 'https://ror.org/02vyhmv78', 'en', 1, 'https://ror.org/02vyhmv78 Council of the Great City Schools'),
(50587, 'https://ror.org/022rqag31', 'en', 1, 'https://ror.org/022rqag31 Albuquerque Public Schools'),
(50588, 'https://ror.org/00xgry947', 'no_lang_code', 1, 'https://ror.org/00xgry947 FinMark Trust'),
(50589, 'https://ror.org/0398nv697', 'no_lang_code', 1, 'https://ror.org/0398nv697 Coxswain Social Investment Plus (Tunisia)'),
(50590, 'https://ror.org/0270h7d11', 'en', 1, 'https://ror.org/0270h7d11 All Hands Raised'),
(50591, 'https://ror.org/03tb7cf45', 'en', 1, 'https://ror.org/03tb7cf45 Firstline Schools'),
(50592, 'https://ror.org/014kvbx03', 'en', 1, 'https://ror.org/014kvbx03 Allegheny Intermediate Unit'),
(50593, 'https://ror.org/048gjaw83', 'no_lang_code', 1, 'https://ror.org/048gjaw83 Craft Technologies (United States)'),
(50594, 'https://ror.org/03n9mb487', 'no_lang_code', 1, 'https://ror.org/03n9mb487 Bempu'),
(50595, 'https://ror.org/00tbqb195', 'en', 1, 'https://ror.org/00tbqb195 Florida Immigrant Coalition'),
(50596, 'https://ror.org/05jbdx649', 'en', 1, 'https://ror.org/05jbdx649 Cerego'),
(50597, 'https://ror.org/009qarj13', 'en', 1, 'https://ror.org/009qarj13 Day1'),
(50598, 'https://ror.org/025s5m774', 'en', 1, 'https://ror.org/025s5m774 Cristo Rey Network'),
(50599, 'https://ror.org/039sz0x75', 'en', 1, 'https://ror.org/039sz0x75 Change the Equation'),
(50600, 'https://ror.org/00z165e40', 'no_lang_code', 1, 'https://ror.org/00z165e40 Alma Sana'),
(50601, 'https://ror.org/035b1yw16', 'en', 1, 'https://ror.org/035b1yw16 Critical Review Foundation'),
(50602, 'https://ror.org/03m6vhh37', 'no_lang_code', 1, 'https://ror.org/03m6vhh37 EurActiv (Belgium)'),
(50603, 'https://ror.org/01etk5d84', 'en', 1, 'https://ror.org/01etk5d84 America Abroad Media'),
(50604, 'https://ror.org/002vm7324', 'no_lang_code', 1, 'https://ror.org/002vm7324 Cupron (United States)'),
(50605, 'https://ror.org/02ys95c13', 'en', 1, 'https://ror.org/02ys95c13 Fons Vitae'),
(50606, 'https://ror.org/00b325j77', 'en', 1, 'https://ror.org/00b325j77 Character Counts Mid Shore'),
(50607, 'https://ror.org/03t66w580', 'no_lang_code', 1, 'https://ror.org/03t66w580 VFO (United States)'),
(50608, 'https://ror.org/032s01b40', 'en', 1, 'https://ror.org/032s01b40 Czech Christian Academy Česká Křesťanská Akademie'),
(50609, 'https://ror.org/00rgs1167', 'en', 1, 'https://ror.org/00rgs1167 Benjamin Franklin Tercentenary'),
(50610, 'https://ror.org/04j0zpz40', 'en', 1, 'https://ror.org/04j0zpz40 Dalberg Global Development Advisors'),
(50611, 'https://ror.org/02pj41y46', 'en', 1, 'https://ror.org/02pj41y46 Character'),
(50612, 'https://ror.org/01dbfn577', 'en', 1, 'https://ror.org/01dbfn577 Feeding America'),
(50613, 'https://ror.org/04m8gzf13', 'en', 1, 'https://ror.org/04m8gzf13 Berks County Public Libraries'),
(50614, 'https://ror.org/04k8z2c06', 'en', 1, 'https://ror.org/04k8z2c06 Daviess County Public Schools'),
(50615, 'https://ror.org/02r41bx44', 'en', 1, 'https://ror.org/02r41bx44 Character Scotland'),
(50616, 'https://ror.org/00drv2g38', 'no_lang_code', 1, 'https://ror.org/00drv2g38 Better People (United States)'),
(50617, 'https://ror.org/056q6cq39', 'en', 1, 'https://ror.org/056q6cq39 Developing Countries Vaccine Manufactures Network'),
(50618, 'https://ror.org/02pxbb382', 'no_lang_code', 1, 'https://ror.org/02pxbb382 Free to Choose Network (United States)'),
(50619, 'https://ror.org/02wcsvn48', 'en', 1, 'https://ror.org/02wcsvn48 Charter School Growth Fund'),
(50620, 'https://ror.org/01kqg4m05', 'en', 1, 'https://ror.org/01kqg4m05 American International Health Alliance'),
(50621, 'https://ror.org/0234w4k48', 'en', 1, 'https://ror.org/0234w4k48 Forsyth County Schools'),
(50622, 'https://ror.org/00s2t1783', 'en', 1, 'https://ror.org/00s2t1783 American Islamic Congress'),
(50623, 'https://ror.org/030m3jr74', 'en', 1, 'https://ror.org/030m3jr74 Center for Children & Youth Justice'),
(50624, 'https://ror.org/03rb22t72', 'en', 1, 'https://ror.org/03rb22t72 Bidwell Memorial Presbyterian Church'),
(50625, 'https://ror.org/05rtqvx30', 'en', 1, 'https://ror.org/05rtqvx30 American Public Media'),
(50626, 'https://ror.org/01nd4v777', 'en', 1, 'https://ror.org/01nd4v777 Children Now'),
(50627, 'https://ror.org/015m9wz56', 'en', 1, 'https://ror.org/015m9wz56 Youth Today'),
(50628, 'https://ror.org/019kycv16', 'en', 1, 'https://ror.org/019kycv16 Foundation for Teaching Economics'),
(50629, 'https://ror.org/02zqt3j23', 'en', 1, 'https://ror.org/02zqt3j23 Cradle of Liberty Council Boy Scouts of America'),
(50630, 'https://ror.org/04jftwm50', 'en', 1, 'https://ror.org/04jftwm50 Free the Slaves'),
(50631, 'https://ror.org/01yp0ar11', 'en', 1, 'https://ror.org/01yp0ar11 Biologos Foundation'),
(50632, 'https://ror.org/032bmj362', 'en', 1, 'https://ror.org/032bmj362 Demos'),
(50633, 'https://ror.org/0556xc623', 'en', 1, 'https://ror.org/0556xc623 Children''s Home Society of Washington'),
(50634, 'https://ror.org/02z1p6e80', 'en', 1, 'https://ror.org/02z1p6e80 Denver Public Schools'),
(50635, 'https://ror.org/03jvmdp91', 'en', 1, 'https://ror.org/03jvmdp91 America''s Promise Alliance'),
(50636, 'https://ror.org/04ewjy824', 'en', 1, 'https://ror.org/04ewjy824 Biomass Controls'),
(50637, 'https://ror.org/011kr2t58', 'en', 1, 'https://ror.org/011kr2t58 Department of Housing and Community Development'),
(50638, 'https://ror.org/00xqbkk65', 'no_lang_code', 1, 'https://ror.org/00xqbkk65 AMT (United States)'),
(50639, 'https://ror.org/02c54xs52', 'en', 1, 'https://ror.org/02c54xs52 FreedomWorks'),
(50640, 'https://ror.org/00p37gt26', 'en', 1, 'https://ror.org/00p37gt26 China International Center for Economic and Technical Exchanges 中国国际经济技术交流中心'),
(50641, 'https://ror.org/01y6fbx98', 'no_lang_code', 1, 'https://ror.org/01y6fbx98 Apeel Sciences (United States)'),
(50642, 'https://ror.org/03dm2p854', 'en', 1, 'https://ror.org/03dm2p854 Apex Medical Technologies (United States)'),
(50643, 'https://ror.org/02hv1r057', 'en', 1, 'https://ror.org/02hv1r057 Blue Mountain Community Foundation'),
(50644, 'https://ror.org/00w1tz996', 'no_lang_code', 1, 'https://ror.org/00w1tz996 Apprise Bio (United States)'),
(50645, 'https://ror.org/0397kcw92', 'en', 1, 'https://ror.org/0397kcw92 Design without Borders'),
(50646, 'https://ror.org/0188nfw25', 'en', 1, 'https://ror.org/0188nfw25 Friends of Children of Walla Walla'),
(50647, 'https://ror.org/04z209n06', 'no_lang_code', 1, 'https://ror.org/04z209n06 Body Surface Translations (United States)'),
(50648, 'https://ror.org/0570b1p95', 'en', 1, 'https://ror.org/0570b1p95 Christianity Today'),
(50649, 'https://ror.org/02n1k3w22', 'en', 1, 'https://ror.org/02n1k3w22 Digital Learning Department'),
(50650, 'https://ror.org/002qb7v30', 'en', 1, 'https://ror.org/002qb7v30 Citizen Schools'),
(50651, 'https://ror.org/04jaxp997', 'en', 1, 'https://ror.org/04jaxp997 Austrian Economics Center'),
(50652, 'https://ror.org/01vpve811', 'en', 1, 'https://ror.org/01vpve811 District of Columbia College Access Program'),
(50653, 'https://ror.org/005aqed95', 'en', 1, 'https://ror.org/005aqed95 DKT International'),
(50654, 'https://ror.org/04caf4057', 'no_lang_code', 1, 'https://ror.org/04caf4057 Frontier Environmental Technology (United States)'),
(50655, 'https://ror.org/00wth1s13', 'no_lang_code', 1, 'https://ror.org/00wth1s13 Arcady Group (United States)'),
(50656, 'https://ror.org/05fhw8710', 'en', 1, 'https://ror.org/05fhw8710 Durbar Mahila Samanwaya Committee দুর্বার মহিলা সমন্বয় সমিতি'),
(50657, 'https://ror.org/01wpwah91', 'en', 1, 'https://ror.org/01wpwah91 FSG'),
(50658, 'https://ror.org/00vzdn947', 'en', 1, 'https://ror.org/00vzdn947 Civic Builders'),
(50659, 'https://ror.org/05vpv9927', 'en', 1, 'https://ror.org/05vpv9927 Boston Schools Fund'),
(50660, 'https://ror.org/01xgsxb78', 'no_lang_code', 1, 'https://ror.org/01xgsxb78 Dushtha Shasthya Kendra'),
(50661, 'https://ror.org/04tr0pv18', 'no', 1, 'https://ror.org/04tr0pv18 CIVITA'),
(50662, 'https://ror.org/013yrxa12', 'no_lang_code', 1, 'https://ror.org/013yrxa12 Arsenal Medical (United States)'),
(50663, 'https://ror.org/05ympyt63', 'en', 1, 'https://ror.org/05ympyt63 E3 Alliance'),
(50664, 'https://ror.org/007nj9n76', 'en', 1, 'https://ror.org/007nj9n76 BRAC USA'),
(50665, 'https://ror.org/05h3vs194', 'en', 1, 'https://ror.org/05h3vs194 National Jewish Center for Learning and Leadership'),
(50666, 'https://ror.org/04x3eb318', 'no_lang_code', 1, 'https://ror.org/04x3eb318 Brandtone (Ireland)'),
(50667, 'https://ror.org/05bevn213', 'en', 1, 'https://ror.org/05bevn213 East Bay Community Foundation'),
(50668, 'https://ror.org/034f25535', 'en', 1, 'https://ror.org/034f25535 Ashoka'),
(50669, 'https://ror.org/01d0re264', 'en', 1, 'https://ror.org/01d0re264 Fund for Public Schools'),
(50670, 'https://ror.org/01bhf4h93', 'no_lang_code', 1, 'https://ror.org/01bhf4h93 EdSurge (United States)'),
(50671, 'https://ror.org/02mzaks39', 'en', 1, 'https://ror.org/02mzaks39 Clallam County YMCA'),
(50672, 'https://ror.org/05q31e892', 'es', 1, 'https://ror.org/05q31e892 Fundación In Terris'),
(50673, 'https://ror.org/0426jn037', 'en', 1, 'https://ror.org/0426jn037 Education Reform Now'),
(50674, 'https://ror.org/02ytjmy25', 'en', 1, 'https://ror.org/02ytjmy25 Asian Americans Advancing Justice'),
(50675, 'https://ror.org/03bfa4276', 'en', 1, 'https://ror.org/03bfa4276 Funders Together to End Homelessness'),
(50676, 'https://ror.org/002m9xv20', 'en', 1, 'https://ror.org/002m9xv20 Educurious'),
(50677, 'https://ror.org/00nx60023', 'en', 1, 'https://ror.org/00nx60023 Brooke Charter Schools'),
(50678, 'https://ror.org/05j9tdb35', 'no_lang_code', 1, 'https://ror.org/05j9tdb35 Clarke (United States)'),
(50679, 'https://ror.org/0572j1008', 'en', 1, 'https://ror.org/0572j1008 Missouri Heart Center'),
(50680, 'https://ror.org/01zccn017', 'en', 1, 'https://ror.org/01zccn017 GameDesk'),
(50681, 'https://ror.org/0296xkk95', 'no_lang_code', 1, 'https://ror.org/0296xkk95 Edumetrics (United States)'),
(50682, 'https://ror.org/03jwxk796', 'no_lang_code', 1, 'https://ror.org/03jwxk796 Clinvet'),
(50683, 'https://ror.org/02h6aq665', 'en', 1, 'https://ror.org/02h6aq665 El Centro de la Raza'),
(50684, 'https://ror.org/03e3sv174', 'en', 1, 'https://ror.org/03e3sv174 Bull City Learning'),
(50685, 'https://ror.org/012a8y118', 'no_lang_code', 1, 'https://ror.org/012a8y118 Cloud Tiger Media (United States)');
INSERT INTO `rors` VALUES
(50686, 'https://ror.org/00jy1b467', 'en', 1, 'https://ror.org/00jy1b467 Busara Center for Behavioral Economics'),
(50687, 'https://ror.org/00s9d5e28', 'en', 1, 'https://ror.org/00s9d5e28 Global Alliance for Rabies Control'),
(50688, 'https://ror.org/035svq226', 'no_lang_code', 1, 'https://ror.org/035svq226 CogBooks (United Kingdom)'),
(50689, 'https://ror.org/02js8j925', 'en', 1, 'https://ror.org/02js8j925 Cade Museum'),
(50690, 'https://ror.org/004nf4f47', 'en', 1, 'https://ror.org/004nf4f47 Georgia Budget & Policy Institute'),
(50691, 'https://ror.org/01pmtzj45', 'en', 1, 'https://ror.org/01pmtzj45 Ellipsis'),
(50692, 'https://ror.org/03bh5kx55', 'no_lang_code', 1, 'https://ror.org/03bh5kx55 Camber Collective (United States)'),
(50693, 'https://ror.org/01748j177', 'en', 1, 'https://ror.org/01748j177 Collaborative Africa Budget Reform Initiative'),
(50694, 'https://ror.org/00xe15p12', 'en', 1, 'https://ror.org/00xe15p12 Emerald Cities Collaborative'),
(50695, 'https://ror.org/04rpnrw35', 'en', 1, 'https://ror.org/04rpnrw35 Cambridge Muslim College'),
(50696, 'https://ror.org/02ejxt329', 'en', 1, 'https://ror.org/02ejxt329 College Summit'),
(50697, 'https://ror.org/04rqj7157', 'en', 1, 'https://ror.org/04rqj7157 Global Communities'),
(50698, 'https://ror.org/02y70wg25', 'en', 1, 'https://ror.org/02y70wg25 Colorado Children''s Campaign'),
(50699, 'https://ror.org/04zde3c02', 'no_lang_code', 1, 'https://ror.org/04zde3c02 Enclude (United States)'),
(50700, 'https://ror.org/031tw3m13', 'en', 1, 'https://ror.org/031tw3m13 Global Development Analytics'),
(50701, 'https://ror.org/00ybf1536', 'en', 1, 'https://ror.org/00ybf1536 Camp Fire Inland Northwest'),
(50702, 'https://ror.org/05x8ty706', 'en', 1, 'https://ror.org/05x8ty706 Columbia Global Center'),
(50703, 'https://ror.org/03xm1q050', 'en', 1, 'https://ror.org/03xm1q050 Global Development Incubator'),
(50704, 'https://ror.org/006fcvv63', 'en', 1, 'https://ror.org/006fcvv63 Montreal Economic Institute'),
(50705, 'https://ror.org/03zsnc040', 'en', 1, 'https://ror.org/03zsnc040 Khan Academy'),
(50706, 'https://ror.org/04sjpwm55', 'en', 1, 'https://ror.org/04sjpwm55 Columbia Legal Services'),
(50707, 'https://ror.org/05kqvjw80', 'en', 1, 'https://ror.org/05kqvjw80 Campaign for College Opportunity'),
(50708, 'https://ror.org/02p19t276', 'en', 1, 'https://ror.org/02p19t276 Institute for American Values'),
(50709, 'https://ror.org/048ndg477', 'no_lang_code', 1, 'https://ror.org/048ndg477 Khanyisa Projects'),
(50710, 'https://ror.org/05vz9rv92', 'en', 1, 'https://ror.org/05vz9rv92 Campus Compact'),
(50711, 'https://ror.org/05p2qs698', 'en', 1, 'https://ror.org/05p2qs698 KickStart International'),
(50712, 'https://ror.org/033m0d088', 'no_lang_code', 1, 'https://ror.org/033m0d088 Mesa Biotech (United States)'),
(50713, 'https://ror.org/03f1zxe06', 'en', 1, 'https://ror.org/03f1zxe06 KidsOhio'),
(50714, 'https://ror.org/03nmfve22', 'en', 1, 'https://ror.org/03nmfve22 Caribou Digital'),
(50715, 'https://ror.org/040tqga17', 'no_lang_code', 1, 'https://ror.org/040tqga17 GOAL'),
(50716, 'https://ror.org/039jsjq26', 'no_lang_code', 1, 'https://ror.org/039jsjq26 Metabolistics (Canada)'),
(50717, 'https://ror.org/00qjn5x82', 'en', 1, 'https://ror.org/00qjn5x82 Institute for Excellence and Ethics'),
(50718, 'https://ror.org/053kmxx33', 'en', 1, 'https://ror.org/053kmxx33 Casa Latina'),
(50719, 'https://ror.org/030e7hb13', 'en', 1, 'https://ror.org/030e7hb13 Kindering'),
(50720, 'https://ror.org/01m1p2k59', 'no_lang_code', 1, 'https://ror.org/01m1p2k59 MetaMetrics (United States)'),
(50721, 'https://ror.org/02455y304', 'en', 1, 'https://ror.org/02455y304 Institute for Global Engagement'),
(50722, 'https://ror.org/03gd0yp09', 'en', 1, 'https://ror.org/03gd0yp09 Catapult Design'),
(50723, 'https://ror.org/02h5xm343', 'en', 1, 'https://ror.org/02h5xm343 King County Department of Community and Human Services'),
(50724, 'https://ror.org/01phxzc94', 'en', 1, 'https://ror.org/01phxzc94 Grantmakers Concerned with Immigrants and Refugees'),
(50725, 'https://ror.org/00bhn1w49', 'en', 1, 'https://ror.org/00bhn1w49 Institute for Humane Studies'),
(50726, 'https://ror.org/03yjg7e55', 'en', 1, 'https://ror.org/03yjg7e55 King County Sexual Assault Resource Center'),
(50727, 'https://ror.org/04kywek22', 'en', 1, 'https://ror.org/04kywek22 Grays Harbor Community Foundation'),
(50728, 'https://ror.org/03br5r234', 'es', 1, 'https://ror.org/03br5r234 Mexfam'),
(50729, 'https://ror.org/006drmf77', 'en', 1, 'https://ror.org/006drmf77 Great Schools Partnership'),
(50730, 'https://ror.org/05vtsq996', 'en', 1, 'https://ror.org/05vtsq996 KIPP Bay Area Schools'),
(50731, 'https://ror.org/05ftdq537', 'en', 1, 'https://ror.org/05ftdq537 Northwest Resource Associates'),
(50732, 'https://ror.org/01bky8445', 'en', 1, 'https://ror.org/01bky8445 Community Foundation of Snohomish County'),
(50733, 'https://ror.org/03hjbw580', 'en', 1, 'https://ror.org/03hjbw580 KIPP Chicago Schools'),
(50734, 'https://ror.org/04br7va83', 'en', 1, 'https://ror.org/04br7va83 KIPP LA Schools'),
(50735, 'https://ror.org/04m1zdk85', 'en', 1, 'https://ror.org/04m1zdk85 Greater Houston Community Foundation'),
(50736, 'https://ror.org/05b32w766', 'en', 1, 'https://ror.org/05b32w766 Institute for Jewish Spirituality'),
(50737, 'https://ror.org/03ytq5m12', 'en', 1, 'https://ror.org/03ytq5m12 Microfinance Information Exchange'),
(50738, 'https://ror.org/01878vm76', 'en', 1, 'https://ror.org/01878vm76 GreatNonprofits'),
(50739, 'https://ror.org/04y7r1x60', 'en', 1, 'https://ror.org/04y7r1x60 GreatSchools'),
(50740, 'https://ror.org/01fjgwc49', 'en', 1, 'https://ror.org/01fjgwc49 Kitsap Community Foundation'),
(50741, 'https://ror.org/046jw6530', 'en', 1, 'https://ror.org/046jw6530 Green Dot Public Schools'),
(50742, 'https://ror.org/05eysk957', 'en', 1, 'https://ror.org/05eysk957 Knox County Schools'),
(50743, 'https://ror.org/01wp6nz35', 'en', 1, 'https://ror.org/01wp6nz35 Kurt Gödel Society Kurt-Gödel-Gesellschaft'),
(50744, 'https://ror.org/01exwxt34', 'no_lang_code', 1, 'https://ror.org/01exwxt34 Guaranteach (United States)'),
(50745, 'https://ror.org/05x8wa071', 'en', 1, 'https://ror.org/05x8wa071 Office of Superintendent of Public Instruction'),
(50746, 'https://ror.org/02383bz17', 'no_lang_code', 1, 'https://ror.org/02383bz17 Micron Biomedical (United States)'),
(50747, 'https://ror.org/04y4x5p83', 'no_lang_code', 1, 'https://ror.org/04y4x5p83 Kymab (United Kingdom)'),
(50748, 'https://ror.org/055bddn28', 'en', 1, 'https://ror.org/055bddn28 Lake County Schools'),
(50749, 'https://ror.org/019a8hm16', 'de', 1, 'https://ror.org/019a8hm16 Hanns R. Neumann Stiftung'),
(50750, 'https://ror.org/04td3h857', 'en', 1, 'https://ror.org/04td3h857 Institute on Religion and Public Life'),
(50751, 'https://ror.org/011e1t803', 'en', 1, 'https://ror.org/011e1t803 Hartley Film Foundation'),
(50752, 'https://ror.org/0206abf41', 'en', 1, 'https://ror.org/0206abf41 Learning Forward'),
(50753, 'https://ror.org/01gkfdp08', 'vi', 1, 'https://ror.org/01gkfdp08 Văn phòng ban chỉ đạo 33'),
(50754, 'https://ror.org/00q5r1k84', 'en', 1, 'https://ror.org/00q5r1k84 Learning Games Network'),
(50755, 'https://ror.org/03xzjcd71', 'en', 1, 'https://ror.org/03xzjcd71 Intellectual Virtues Academy'),
(50756, 'https://ror.org/03yxqvr87', 'it', 1, 'https://ror.org/03yxqvr87 Villa Melitta'),
(50757, 'https://ror.org/01pdc9z31', 'en', 1, 'https://ror.org/01pdc9z31 InterAction'),
(50758, 'https://ror.org/01m665265', 'en', 1, 'https://ror.org/01m665265 Mindwires Consulting'),
(50759, 'https://ror.org/03t8z4688', 'no_lang_code', 1, 'https://ror.org/03t8z4688 HCM Strategists (United States)'),
(50760, 'https://ror.org/05w6jca21', 'en', 1, 'https://ror.org/05w6jca21 HealthCare Chaplaincy Network'),
(50761, 'https://ror.org/02tsmws33', 'en', 1, 'https://ror.org/02tsmws33 Editorial Projects in Education'),
(50762, 'https://ror.org/053z5p960', 'no_lang_code', 1, 'https://ror.org/053z5p960 Mobile Assay (United States)'),
(50763, 'https://ror.org/02250w954', 'en', 1, 'https://ror.org/02250w954 Philanthropy Ohio'),
(50764, 'https://ror.org/04vbp2w76', 'en', 1, 'https://ror.org/04vbp2w76 Mobilize'),
(50765, 'https://ror.org/00k9xmb90', 'no_lang_code', 1, 'https://ror.org/00k9xmb90 LearnZillion (United States)'),
(50766, 'https://ror.org/02cksrc59', 'en', 1, 'https://ror.org/02cksrc59 International Interfaith Peace Corps'),
(50767, 'https://ror.org/05pzjj739', 'no_lang_code', 1, 'https://ror.org/05pzjj739 Hervana (Israel)'),
(50768, 'https://ror.org/05skbsx24', 'no_lang_code', 1, 'https://ror.org/05skbsx24 OneAmerica'),
(50769, 'https://ror.org/01rra6s55', 'en', 1, 'https://ror.org/01rra6s55 Opportunity International'),
(50770, 'https://ror.org/0514ew608', 'no_lang_code', 1, 'https://ror.org/0514ew608 Publicis Groupe (United States)'),
(50771, 'https://ror.org/01mk7gk80', 'en', 1, 'https://ror.org/01mk7gk80 International Justice Mission'),
(50772, 'https://ror.org/03v9c4d77', 'no_lang_code', 1, 'https://ror.org/03v9c4d77 MTN (Uganda)'),
(50773, 'https://ror.org/03mz4b890', 'en', 1, 'https://ror.org/03mz4b890 Hillsborough County Public Schools'),
(50774, 'https://ror.org/0502q3c66', 'en', 1, 'https://ror.org/0502q3c66 Hindustan Latex Family Planning Promotion Trust'),
(50775, 'https://ror.org/03rhhf773', 'en', 1, 'https://ror.org/03rhhf773 International Planned Parenthood Federation'),
(50776, 'https://ror.org/03msk5846', 'en', 1, 'https://ror.org/03msk5846 Museum of the American Revolution'),
(50777, 'https://ror.org/046pxzs49', 'en', 1, 'https://ror.org/046pxzs49 Outward Bound'),
(50778, 'https://ror.org/0444hc919', 'en', 1, 'https://ror.org/0444hc919 Let it Ripple'),
(50779, 'https://ror.org/00bam3792', 'en', 1, 'https://ror.org/00bam3792 Community-Minded Enterprises'),
(50780, 'https://ror.org/03z6emt78', 'no_lang_code', 1, 'https://ror.org/03z6emt78 NanoBio (United States)'),
(50781, 'https://ror.org/003n19b22', 'en', 1, 'https://ror.org/003n19b22 International Society for Science and Religion'),
(50782, 'https://ror.org/05a1nta88', 'no_lang_code', 1, 'https://ror.org/05a1nta88 Rosetta Stone (United States)'),
(50783, 'https://ror.org/00fz6qg20', 'no_lang_code', 1, 'https://ror.org/00fz6qg20 HLL Lifecare (India)'),
(50784, 'https://ror.org/0049td969', 'en', 1, 'https://ror.org/0049td969 National Association for the Advancement of Colored People'),
(50785, 'https://ror.org/01ksb8987', 'en', 1, 'https://ror.org/01ksb8987 LibForAll Foundation'),
(50786, 'https://ror.org/005vs4q67', 'en', 1, 'https://ror.org/005vs4q67 International Telecommunication Union Union Internationale des Télécommunications'),
(50787, 'https://ror.org/01424zf60', 'en', 1, 'https://ror.org/01424zf60 Hope Through Healing Hands'),
(50788, 'https://ror.org/01gxbnj52', 'en', 1, 'https://ror.org/01gxbnj52 Internews'),
(50789, 'https://ror.org/05vsxz108', 'en', 1, 'https://ror.org/05vsxz108 National Association of Secondary School Principals'),
(50790, 'https://ror.org/03cd21s10', 'en', 1, 'https://ror.org/03cd21s10 Horn of Africa Services'),
(50791, 'https://ror.org/03hsngx15', 'es', 1, 'https://ror.org/03hsngx15 Oxfam Intermón'),
(50792, 'https://ror.org/007mxym10', 'en', 1, 'https://ror.org/007mxym10 National Association of State Budget Officers'),
(50793, 'https://ror.org/05cbsfm97', 'no_lang_code', 1, 'https://ror.org/05cbsfm97 Inventprise (United States)'),
(50794, 'https://ror.org/00r1ta077', 'en', 1, 'https://ror.org/00r1ta077 Housing Development Consortium'),
(50795, 'https://ror.org/03w77n817', 'no_lang_code', 1, 'https://ror.org/03w77n817 Turnitin (United States)'),
(50796, 'https://ror.org/0530vbv92', 'fr', 1, 'https://ror.org/0530vbv92 Oxfam Solidarité'),
(50797, 'https://ror.org/049c2z606', 'en', 1, 'https://ror.org/049c2z606 National Center for State Courts'),
(50798, 'https://ror.org/00yfxzd27', 'en', 1, 'https://ror.org/00yfxzd27 Houston Area Urban League'),
(50799, 'https://ror.org/0448rch47', 'en', 1, 'https://ror.org/0448rch47 Human Network International'),
(50800, 'https://ror.org/02wad9j32', 'en', 1, 'https://ror.org/02wad9j32 National Center on Time & Learning'),
(50801, 'https://ror.org/03rmfck35', 'no_lang_code', 1, 'https://ror.org/03rmfck35 Itad (United Kingdom)'),
(50802, 'https://ror.org/02qbt0637', 'en', 1, 'https://ror.org/02qbt0637 Oxford Policy Management'),
(50803, 'https://ror.org/02tczp334', 'en', 1, 'https://ror.org/02tczp334 National College Access Network'),
(50804, 'https://ror.org/00939wg75', 'en', 1, 'https://ror.org/00939wg75 LIMR Chemical Genomics Center'),
(50805, 'https://ror.org/03t39g890', 'en', 1, 'https://ror.org/03t39g890 National Council for the Social Studies'),
(50806, 'https://ror.org/03sje1a87', 'en', 1, 'https://ror.org/03sje1a87 Lindsay Unified School District'),
(50807, 'https://ror.org/05vet6f27', 'en', 1, 'https://ror.org/05vet6f27 Pacific Charter School Development'),
(50808, 'https://ror.org/02pfe8s32', 'en', 1, 'https://ror.org/02pfe8s32 Council for Economic Education'),
(50809, 'https://ror.org/014bxpd82', 'en', 1, 'https://ror.org/014bxpd82 Jal Seva Charitable Foundation'),
(50810, 'https://ror.org/04ay6am55', 'en', 1, 'https://ror.org/04ay6am55 Human Rights Foundation'),
(50811, 'https://ror.org/00g845z88', 'en', 1, 'https://ror.org/00g845z88 Parent Trust for Washington Children'),
(50812, 'https://ror.org/05rdne793', 'no_lang_code', 1, 'https://ror.org/05rdne793 Lipotek (Australia)'),
(50813, 'https://ror.org/043xrn095', 'en', 1, 'https://ror.org/043xrn095 National Equity Project'),
(50814, 'https://ror.org/02dxhv267', 'no_lang_code', 1, 'https://ror.org/02dxhv267 Humanitarian OpenStreetMap Team'),
(50815, 'https://ror.org/05fp2yk16', 'en', 1, 'https://ror.org/05fp2yk16 Liquid Interactive'),
(50816, 'https://ror.org/00e58tv26', 'no_lang_code', 1, 'https://ror.org/00e58tv26 Janicki Bioenergy (United States)'),
(50817, 'https://ror.org/00r91xh65', 'en', 1, 'https://ror.org/00r91xh65 Information and Communication Technology Agency'),
(50818, 'https://ror.org/01mfkhd73', 'en', 1, 'https://ror.org/01mfkhd73 Japan ICU Foundation'),
(50819, 'https://ror.org/00c409n44', 'en', 1, 'https://ror.org/00c409n44 Community and Parents for Public Schools'),
(50820, 'https://ror.org/03d4rbm41', 'en', 1, 'https://ror.org/03d4rbm41 National Liberty Museum'),
(50821, 'https://ror.org/01v3wjv31', 'en', 1, 'https://ror.org/01v3wjv31 Literacy Design Collaborative'),
(50822, 'https://ror.org/05mazqk05', 'en', 1, 'https://ror.org/05mazqk05 Partnership for Learning'),
(50823, 'https://ror.org/004sqrr27', 'en', 1, 'https://ror.org/004sqrr27 National Newspaper Publishers Association'),
(50824, 'https://ror.org/05fddma93', 'en', 1, 'https://ror.org/05fddma93 Partnership for Public Service'),
(50825, 'https://ror.org/02349x007', 'en', 1, 'https://ror.org/02349x007 IDEA Public Schools'),
(50826, 'https://ror.org/04m136694', 'en', 1, 'https://ror.org/04m136694 PUC Schools'),
(50827, 'https://ror.org/05h6f8c16', 'en', 1, 'https://ror.org/05h6f8c16 National Paideia Center'),
(50828, 'https://ror.org/00yh95e48', 'no_lang_code', 1, 'https://ror.org/00yh95e48 Jefferson Education Accelerator (United States)'),
(50829, 'https://ror.org/02ek94012', 'en', 1, 'https://ror.org/02ek94012 Institute for Advanced Medical Research'),
(50830, 'https://ror.org/014353m06', 'no_lang_code', 1, 'https://ror.org/014353m06 Idee e Prodotti (Italy)'),
(50831, 'https://ror.org/03da78945', 'en', 1, 'https://ror.org/03da78945 Pat Graney'),
(50832, 'https://ror.org/05ek20966', 'en', 1, 'https://ror.org/05ek20966 National Peace Corps Association'),
(50833, 'https://ror.org/03x1gs961', 'en', 1, 'https://ror.org/03x1gs961 Jessamine County Schools'),
(50834, 'https://ror.org/00s20y756', 'en', 1, 'https://ror.org/00s20y756 Jewish Family Service of Seattle'),
(50835, 'https://ror.org/04sg26g73', 'en', 1, 'https://ror.org/04sg26g73 National Philanthropic Trust'),
(50836, 'https://ror.org/03x4mf659', 'en', 1, 'https://ror.org/03x4mf659 Lietuvos laisvosios rinkos institutas Lithuanian Free Market Institute'),
(50837, 'https://ror.org/046ybfk04', 'en', 1, 'https://ror.org/046ybfk04 Pennsylvania Partnerships for Children'),
(50838, 'https://ror.org/039d85044', 'no_lang_code', 1, 'https://ror.org/039d85044 IDEO (United States)'),
(50839, 'https://ror.org/05e7wc386', 'no_lang_code', 1, 'https://ror.org/05e7wc386 Livvon (United States)'),
(50840, 'https://ror.org/02m9pjv04', 'en', 1, 'https://ror.org/02m9pjv04 National Speech and Debate Association'),
(50841, 'https://ror.org/00j82ct10', 'en', 1, 'https://ror.org/00j82ct10 Perspectives Charter School'),
(50842, 'https://ror.org/04r5g1376', 'en', 1, 'https://ror.org/04r5g1376 Local Initiatives Support Corporation'),
(50843, 'https://ror.org/03dre3v93', 'en', 1, 'https://ror.org/03dre3v93 Institute of Leadership & Institutional Development'),
(50844, 'https://ror.org/01f9py957', 'en', 1, 'https://ror.org/01f9py957 Illustrative Mathematics'),
(50845, 'https://ror.org/0161df093', 'en', 1, 'https://ror.org/0161df093 PharmaTrain Federation'),
(50846, 'https://ror.org/04vwh8s73', 'en', 1, 'https://ror.org/04vwh8s73 National Student Clearinghouse'),
(50847, 'https://ror.org/05pqpm243', 'en', 1, 'https://ror.org/05pqpm243 Junior Achievement'),
(50848, 'https://ror.org/02fcj1h44', 'no_lang_code', 1, 'https://ror.org/02fcj1h44 Logistimo (India)'),
(50849, 'https://ror.org/02fnpq925', 'en', 1, 'https://ror.org/02fnpq925 National Summer Learning Association'),
(50850, 'https://ror.org/03fjrbp76', 'no_lang_code', 1, 'https://ror.org/03fjrbp76 Loowatt (United Kingdom)'),
(50851, 'https://ror.org/00nm3xj95', 'en', 1, 'https://ror.org/00nm3xj95 Junior Achievement'),
(50852, 'https://ror.org/04bkyn088', 'en', 1, 'https://ror.org/04bkyn088 Imaging the World'),
(50853, 'https://ror.org/0001sz110', 'en', 1, 'https://ror.org/0001sz110 National Writing Project'),
(50854, 'https://ror.org/00dg01x60', 'en', 1, 'https://ror.org/00dg01x60 Junior Achievement of Delaware'),
(50855, 'https://ror.org/053ynnf14', 'en', 1, 'https://ror.org/053ynnf14 Native American Youth and Family Center'),
(50856, 'https://ror.org/01bpe5t14', 'en', 1, 'https://ror.org/01bpe5t14 iMentor'),
(50857, 'https://ror.org/03c5mbz49', 'en', 1, 'https://ror.org/03c5mbz49 Pinyon Foundation'),
(50858, 'https://ror.org/034eeph55', 'no_lang_code', 1, 'https://ror.org/034eeph55 Just Biotherapeutics (United States)'),
(50859, 'https://ror.org/04nfzd686', 'no_lang_code', 1, 'https://ror.org/04nfzd686 Lumen Learning (United States)'),
(50860, 'https://ror.org/053mjqy14', 'no_lang_code', 1, 'https://ror.org/053mjqy14 Natural Synergies (United Kingdom)'),
(50861, 'https://ror.org/018sdr586', 'en', 1, 'https://ror.org/018sdr586 Kalam Research and Media'),
(50862, 'https://ror.org/030r2wp80', 'en', 1, 'https://ror.org/030r2wp80 Nature Healing Nature'),
(50863, 'https://ror.org/0348n4f40', 'en', 1, 'https://ror.org/0348n4f40 INMED Partnerships for Children'),
(50864, 'https://ror.org/05hgrv414', 'en', 1, 'https://ror.org/05hgrv414 Kampala Capital City Authority'),
(50865, 'https://ror.org/02nfsws34', 'no_lang_code', 1, 'https://ror.org/02nfsws34 Innolytics (United States)'),
(50866, 'https://ror.org/01s649n52', 'en', 1, 'https://ror.org/01s649n52 Nautilus Ventures'),
(50867, 'https://ror.org/0235ad950', 'en', 1, 'https://ror.org/0235ad950 Innovations for Poverty Action'),
(50868, 'https://ror.org/00eeg9444', 'en', 1, 'https://ror.org/00eeg9444 Kenya Muslim Youth Alliance'),
(50869, 'https://ror.org/01d8jjd81', 'no_lang_code', 1, 'https://ror.org/01d8jjd81 Nautilus (United States)'),
(50870, 'https://ror.org/04fjdpx11', 'en', 1, 'https://ror.org/04fjdpx11 Mahila Abhivruddhi Society, Andhra Pradesh'),
(50871, 'https://ror.org/0109e8m16', 'en', 1, 'https://ror.org/0109e8m16 Rainforest Alliance'),
(50872, 'https://ror.org/008e34j77', 'no_lang_code', 1, 'https://ror.org/008e34j77 NetHope'),
(50873, 'https://ror.org/05mnyyy56', 'en', 1, 'https://ror.org/05mnyyy56 Marie Stopes International'),
(50874, 'https://ror.org/0435am872', 'en', 1, 'https://ror.org/0435am872 St. Monica Catholic School'),
(50875, 'https://ror.org/045952971', 'en', 1, 'https://ror.org/045952971 Rajiv Gandhi Charitable Trust'),
(50876, 'https://ror.org/03gpgkw08', 'en', 1, 'https://ror.org/03gpgkw08 Policy Exchange'),
(50877, 'https://ror.org/04phvdn03', 'en', 1, 'https://ror.org/04phvdn03 Network For Teaching Entrepreneurship'),
(50878, 'https://ror.org/01dnhtm59', 'en', 1, 'https://ror.org/01dnhtm59 Rare Genomics Institute'),
(50879, 'https://ror.org/021yan307', 'en', 1, 'https://ror.org/021yan307 Market Matters'),
(50880, 'https://ror.org/01fjz5q85', 'en', 1, 'https://ror.org/01fjz5q85 Washington State Department of Early Learning'),
(50881, 'https://ror.org/00qjysb56', 'en', 1, 'https://ror.org/00qjysb56 RE Today Services'),
(50882, 'https://ror.org/035ab9z58', 'en', 1, 'https://ror.org/035ab9z58 New Classrooms Innovation Partners'),
(50883, 'https://ror.org/055jart15', 'en', 1, 'https://ror.org/055jart15 PolicyLink'),
(50884, 'https://ror.org/02rzhqp10', 'no_lang_code', 1, 'https://ror.org/02rzhqp10 ReadCoor (United States)'),
(50885, 'https://ror.org/0466fze31', 'en', 1, 'https://ror.org/0466fze31 Real Impact Analytics'),
(50886, 'https://ror.org/0368cn166', 'en', 1, 'https://ror.org/0368cn166 Southwest Seattle Youth & Family Services'),
(50887, 'https://ror.org/008bt9x41', 'no_lang_code', 1, 'https://ror.org/008bt9x41 Regenex Pharmaceuticals (China) 广州朗圣药业有限公司 版权所有'),
(50888, 'https://ror.org/03n3k9q60', 'en', 1, 'https://ror.org/03n3k9q60 Statistical Assessment Service'),
(50889, 'https://ror.org/00w4ztw65', 'en', 1, 'https://ror.org/00w4ztw65 New Haven Public Schools'),
(50890, 'https://ror.org/00v119x08', 'no_lang_code', 1, 'https://ror.org/00v119x08 StelaGenomics (United States)'),
(50891, 'https://ror.org/03a2jdp82', 'en', 1, 'https://ror.org/03a2jdp82 Relief International'),
(50892, 'https://ror.org/03r0s9m45', 'en', 1, 'https://ror.org/03r0s9m45 Population Action International'),
(50893, 'https://ror.org/00shmqe23', 'en', 1, 'https://ror.org/00shmqe23 Restless Development'),
(50894, 'https://ror.org/050nbnj29', 'en', 1, 'https://ror.org/050nbnj29 New Leaders'),
(50895, 'https://ror.org/00b2ft029', 'no_lang_code', 1, 'https://ror.org/00b2ft029 Rommelag (Switzerland)'),
(50896, 'https://ror.org/01g2p9a25', 'no_lang_code', 1, 'https://ror.org/01g2p9a25 Rhize'),
(50897, 'https://ror.org/02ad3sg26', 'en', 1, 'https://ror.org/02ad3sg26 Population Matters'),
(50898, 'https://ror.org/03wnrr374', 'en', 1, 'https://ror.org/03wnrr374 New Life International'),
(50899, 'https://ror.org/01nnbvh24', 'en', 1, 'https://ror.org/01nnbvh24 Potlatch Fund'),
(50900, 'https://ror.org/01hppyk14', 'en', 1, 'https://ror.org/01hppyk14 New Philanthropy Capital'),
(50901, 'https://ror.org/03wxagd20', 'en', 1, 'https://ror.org/03wxagd20 McGill-Toolen Catholic High School'),
(50902, 'https://ror.org/03x06d381', 'no_lang_code', 1, 'https://ror.org/03x06d381 Precise Consult International (Ethiopia)'),
(50903, 'https://ror.org/04x1eer44', 'en', 1, 'https://ror.org/04x1eer44 Strive Preparatory Schools'),
(50904, 'https://ror.org/01cgf9k20', 'en', 1, 'https://ror.org/01cgf9k20 New Schools for Chicago'),
(50905, 'https://ror.org/00jbrtf50', 'no_lang_code', 1, 'https://ror.org/00jbrtf50 Premise Data (United States)'),
(50906, 'https://ror.org/02rhsjm93', 'en', 1, 'https://ror.org/02rhsjm93 South African Institute for Distance Education'),
(50907, 'https://ror.org/03m1g2s55', 'en', 1, 'https://ror.org/03m1g2s55 Sanford Burnham Prebys Medical Discovery Institute'),
(50908, 'https://ror.org/00nx3fr64', 'en', 1, 'https://ror.org/00nx3fr64 New Schools for New Orleans'),
(50909, 'https://ror.org/03tcxr084', 'en', 1, 'https://ror.org/03tcxr084 Student Achievement Partners'),
(50910, 'https://ror.org/04416zz40', 'en', 1, 'https://ror.org/04416zz40 Scalabrini International Migration Network'),
(50911, 'https://ror.org/013nhfk37', 'en', 1, 'https://ror.org/013nhfk37 Measured Progress'),
(50912, 'https://ror.org/040w48218', 'en', 1, 'https://ror.org/040w48218 Prichard Committee for Academic Excellence'),
(50913, 'https://ror.org/05nx1dj46', 'en', 1, 'https://ror.org/05nx1dj46 Media Impact Funders'),
(50914, 'https://ror.org/03hjzks69', 'en', 1, 'https://ror.org/03hjzks69 New Schools Venture Fund'),
(50915, 'https://ror.org/00dk21g34', 'en', 1, 'https://ror.org/00dk21g34 Media Trust'),
(50916, 'https://ror.org/013eqx116', 'en', 1, 'https://ror.org/013eqx116 School for Ethical Education'),
(50917, 'https://ror.org/01qcg7857', 'en', 1, 'https://ror.org/01qcg7857 New Teacher Center'),
(50918, 'https://ror.org/02mg13n04', 'en', 1, 'https://ror.org/02mg13n04 Memphis Urban League'),
(50919, 'https://ror.org/00wq4bj48', 'en', 1, 'https://ror.org/00wq4bj48 successful practices network'),
(50920, 'https://ror.org/02wpw4f97', 'en', 1, 'https://ror.org/02wpw4f97 Schoolzilla'),
(50921, 'https://ror.org/04nf3ck23', 'en', 1, 'https://ror.org/04nf3ck23 New Visions for Public Schools'),
(50922, 'https://ror.org/05hq42c91', 'en', 1, 'https://ror.org/05hq42c91 Mennonite Economic Development Associates'),
(50923, 'https://ror.org/01vf6nv75', 'en', 1, 'https://ror.org/01vf6nv75 Professional Assistance for Development Action'),
(50924, 'https://ror.org/054r1pe06', 'en', 1, 'https://ror.org/054r1pe06 New York City Charter School Center'),
(50925, 'https://ror.org/01h1rba19', 'en', 1, 'https://ror.org/01h1rba19 Science Friday Initiative'),
(50926, 'https://ror.org/04a8xgx67', 'en', 1, 'https://ror.org/04a8xgx67 Mercy Corps'),
(50927, 'https://ror.org/04h7jac65', 'en', 1, 'https://ror.org/04h7jac65 ScienceSites'),
(50928, 'https://ror.org/03xxrrp43', 'en', 1, 'https://ror.org/03xxrrp43 Nexleaf Analytics'),
(50929, 'https://ror.org/0567cdq47', 'en', 1, 'https://ror.org/0567cdq47 Project Everyone'),
(50930, 'https://ror.org/0553bq478', 'no_lang_code', 1, 'https://ror.org/0553bq478 Axcella Health (United States)'),
(50931, 'https://ror.org/01s33rn67', 'no_lang_code', 1, 'https://ror.org/01s33rn67 Next Dimension Technologies (United States)'),
(50932, 'https://ror.org/02gye8637', 'no_lang_code', 1, 'https://ror.org/02gye8637 ProSocial (United States)'),
(50933, 'https://ror.org/010k3rm26', 'en', 1, 'https://ror.org/010k3rm26 Global Social Observatory'),
(50934, 'https://ror.org/05azmnk92', 'en', 1, 'https://ror.org/05azmnk92 Noble Network of Charter Schools'),
(50935, 'https://ror.org/04sc6v830', 'no_lang_code', 1, 'https://ror.org/04sc6v830 Seagull BioSolutions (India)'),
(50936, 'https://ror.org/03gn06b62', 'en', 1, 'https://ror.org/03gn06b62 Nonprofit Assistance Center'),
(50937, 'https://ror.org/05ba0x014', 'en', 1, 'https://ror.org/05ba0x014 Seattle Housing Authority'),
(50938, 'https://ror.org/003sq5971', 'en', 1, 'https://ror.org/003sq5971 Tacoma Housing Authority'),
(50939, 'https://ror.org/0405pme07', 'no_lang_code', 1, 'https://ror.org/0405pme07 Quackenworth (United States)'),
(50940, 'https://ror.org/0130y5530', 'en', 1, 'https://ror.org/0130y5530 Nonprofit Quarterly'),
(50941, 'https://ror.org/003dm8f88', 'no_lang_code', 1, 'https://ror.org/003dm8f88 Sensor Development Corporation (United States)'),
(50942, 'https://ror.org/01qnb0r37', 'en', 1, 'https://ror.org/01qnb0r37 Greater Tacoma Community Foundation'),
(50943, 'https://ror.org/001pmf274', 'no_lang_code', 1, 'https://ror.org/001pmf274 Sentinext Therapeutics (Malaysia)'),
(50944, 'https://ror.org/05ep59t88', 'no_lang_code', 1, 'https://ror.org/05ep59t88 Radio One (United States)'),
(50945, 'https://ror.org/05htz0h33', 'en', 1, 'https://ror.org/05htz0h33 Tanzania Social Action Fund'),
(50946, 'https://ror.org/00wt4b458', 'en', 1, 'https://ror.org/00wt4b458 ImagineNations'),
(50947, 'https://ror.org/0072czt29', 'en', 1, 'https://ror.org/0072czt29 International Association for K-12 Online Learning'),
(50948, 'https://ror.org/01htyqs73', 'en', 1, 'https://ror.org/01htyqs73 Institute for Research on Unlimited Love'),
(50949, 'https://ror.org/01h98yw98', 'no_lang_code', 1, 'https://ror.org/01h98yw98 Serviceplan (Germany) Serviceplan Gruppe für innovative Kommunikation GmbH & Co. KG'),
(50950, 'https://ror.org/016p98704', 'no_lang_code', 1, 'https://ror.org/016p98704 Seventh Sense Biosystems (United States)'),
(50951, 'https://ror.org/0134cxd58', 'no_lang_code', 1, 'https://ror.org/0134cxd58 Temptime (United States)'),
(50952, 'https://ror.org/05gj3bd07', 'en', 1, 'https://ror.org/05gj3bd07 Sevenzo'),
(50953, 'https://ror.org/01n03de84', 'en', 1, 'https://ror.org/01n03de84 Jack Miller Center'),
(50954, 'https://ror.org/03w4sj937', 'en', 1, 'https://ror.org/03w4sj937 Treatment Action Group'),
(50955, 'https://ror.org/03dfszw81', 'en', 1, 'https://ror.org/03dfszw81 Tennessee College Access and Success Network'),
(50956, 'https://ror.org/040q4s353', 'en', 1, 'https://ror.org/040q4s353 Share Our Strength'),
(50957, 'https://ror.org/05h4evm65', 'no_lang_code', 1, 'https://ror.org/05h4evm65 TerraFrame (United States)'),
(50958, 'https://ror.org/05g6yjw88', 'en', 1, 'https://ror.org/05g6yjw88 King Center Charter School'),
(50959, 'https://ror.org/014vy5515', 'en', 1, 'https://ror.org/014vy5515 Treehouse'),
(50960, 'https://ror.org/01fhkcd72', 'no_lang_code', 1, 'https://ror.org/01fhkcd72 Ustar Biotechnologies (China)'),
(50961, 'https://ror.org/00s4b3898', 'no_lang_code', 1, 'https://ror.org/00s4b3898 TetraGenetics (United States)'),
(50962, 'https://ror.org/050cw6514', 'en', 1, 'https://ror.org/050cw6514 National Alliance to End Homelessness'),
(50963, 'https://ror.org/02k57sp27', 'no_lang_code', 1, 'https://ror.org/02k57sp27 Sirenas (United States)'),
(50964, 'https://ror.org/04p9zhq85', 'en', 1, 'https://ror.org/04p9zhq85 The New Teacher Project'),
(50965, 'https://ror.org/00maafh77', 'en', 1, 'https://ror.org/00maafh77 Texas Tribune'),
(50966, 'https://ror.org/03t78j106', 'en', 1, 'https://ror.org/03t78j106 Sister Cities International'),
(50967, 'https://ror.org/00zn76q59', 'en', 1, 'https://ror.org/00zn76q59 The Philanthropic Initiative'),
(50968, 'https://ror.org/04g59q124', 'en', 1, 'https://ror.org/04g59q124 Skillpoint Alliance'),
(50969, 'https://ror.org/017n0wf28', 'no_lang_code', 1, 'https://ror.org/017n0wf28 Triumph Learning (United States)'),
(50970, 'https://ror.org/01crnny41', 'no_lang_code', 1, 'https://ror.org/01crnny41 Smart Sparrow (United States)'),
(50971, 'https://ror.org/04z5kb841', 'en', 1, 'https://ror.org/04z5kb841 Right Question Institute'),
(50972, 'https://ror.org/003za3q32', 'en', 1, 'https://ror.org/003za3q32 Vatican Observatory Foundation'),
(50973, 'https://ror.org/03yrpzn89', 'no_lang_code', 1, 'https://ror.org/03yrpzn89 Q2 (United States)'),
(50974, 'https://ror.org/03c9x5k98', 'en', 1, 'https://ror.org/03c9x5k98 Tulsa Public Schools'),
(50975, 'https://ror.org/04dchsd96', 'en', 1, 'https://ror.org/04dchsd96 Institutul Român de Ştiinţă şi Tehnologie Romanian Institute of Science and Technology'),
(50976, 'https://ror.org/00fpmwa05', 'no_lang_code', 1, 'https://ror.org/00fpmwa05 VaxTrials (Panama)'),
(50977, 'https://ror.org/05x3zk779', 'no_lang_code', 1, 'https://ror.org/05x3zk779 Vaxxas (Australia)'),
(50978, 'https://ror.org/021tea790', 'no_lang_code', 1, 'https://ror.org/021tea790 TÜV SÜD (Singapore)'),
(50979, 'https://ror.org/00mzhs720', 'en', 1, 'https://ror.org/00mzhs720 Big Picture Learning'),
(50980, 'https://ror.org/04xpyh310', 'en', 1, 'https://ror.org/04xpyh310 Social Venture Partners'),
(50981, 'https://ror.org/03gf3fw83', 'no_lang_code', 1, 'https://ror.org/03gf3fw83 Sure Chill (United Kingdom)'),
(50982, 'https://ror.org/01dj1q121', 'en', 1, 'https://ror.org/01dj1q121 Solar Electric Light Fund'),
(50983, 'https://ror.org/05jxf9x26', 'no_lang_code', 1, 'https://ror.org/05jxf9x26 Vedantra Pharmaceuticals (United States)'),
(50984, 'https://ror.org/002tmnt12', 'no_lang_code', 1, 'https://ror.org/002tmnt12 Thinkcerca.com (United States)'),
(50985, 'https://ror.org/030xn9908', 'en', 1, 'https://ror.org/030xn9908 Tyton Partners'),
(50986, 'https://ror.org/008y0j428', 'en', 1, 'https://ror.org/008y0j428 Three Bird Swan Consulting Group'),
(50987, 'https://ror.org/05j79r106', 'no_lang_code', 1, 'https://ror.org/05j79r106 Société Nationale des Télécommunications du Senegal Sonatel (Senegal)'),
(50988, 'https://ror.org/03a2cf734', 'en', 1, 'https://ror.org/03a2cf734 Bridgespan Group'),
(50989, 'https://ror.org/02hppaj03', 'en', 1, 'https://ror.org/02hppaj03 Three Rivers Community Foundation'),
(50990, 'https://ror.org/00mgk5c15', 'en', 1, 'https://ror.org/00mgk5c15 VentureWell'),
(50991, 'https://ror.org/038h40c12', 'en', 1, 'https://ror.org/038h40c12 Veritas Forum'),
(50992, 'https://ror.org/02k8cz130', 'no_lang_code', 1, 'https://ror.org/02k8cz130 Umande Trust'),
(50993, 'https://ror.org/02dvzgw27', 'en', 1, 'https://ror.org/02dvzgw27 VillageReach'),
(50994, 'https://ror.org/05jwmx239', 'no_lang_code', 1, 'https://ror.org/05jwmx239 Vista Therapeutics (United States)'),
(50995, 'https://ror.org/03armk630', 'en', 1, 'https://ror.org/03armk630 United Way of Benton and Franklin Counties'),
(50996, 'https://ror.org/0324an637', 'en', 1, 'https://ror.org/0324an637 St. Gregory the Theologian Charity Foundation Благотворительный фонд имени святителя Григория Богослова'),
(50997, 'https://ror.org/03dt97p60', 'en', 1, 'https://ror.org/03dt97p60 United Way of Central Washington'),
(50998, 'https://ror.org/02mpf8x78', 'no_lang_code', 1, 'https://ror.org/02mpf8x78 Tideline (United States)'),
(50999, 'https://ror.org/01satjx84', 'en', 1, 'https://ror.org/01satjx84 Vital Pakistan Trust'),
(51000, 'https://ror.org/00qa1af27', 'en', 1, 'https://ror.org/00qa1af27 St. Bernard Parish School District'),
(51001, 'https://ror.org/01ve6sd67', 'en', 1, 'https://ror.org/01ve6sd67 Vital Voices'),
(51002, 'https://ror.org/01m3zmc09', 'en', 1, 'https://ror.org/01m3zmc09 What Kids Can Do'),
(51003, 'https://ror.org/02p2egt14', 'en', 1, 'https://ror.org/02p2egt14 McCord Hospital'),
(51004, 'https://ror.org/01p0x0j97', 'en', 1, 'https://ror.org/01p0x0j97 United Way of King County'),
(51005, 'https://ror.org/04frvr969', 'en', 1, 'https://ror.org/04frvr969 Colossian Forum'),
(51006, 'https://ror.org/05ve11g92', 'en', 1, 'https://ror.org/05ve11g92 Whatcom Community Foundation'),
(51007, 'https://ror.org/01zr3vr20', 'en', 1, 'https://ror.org/01zr3vr20 Association of Washington School Principals'),
(51008, 'https://ror.org/04n10rx26', 'en', 1, 'https://ror.org/04n10rx26 United Way of Snohomish County'),
(51009, 'https://ror.org/00h4y2a67', 'en', 1, 'https://ror.org/00h4y2a67 White Ribbon Alliance'),
(51010, 'https://ror.org/047n17w18', 'nl', 1, 'https://ror.org/047n17w18 Vredeseilanden'),
(51011, 'https://ror.org/05r5sgs28', 'en', 1, 'https://ror.org/05r5sgs28 Washington Student Achievement Council'),
(51012, 'https://ror.org/04tprf655', 'en', 1, 'https://ror.org/04tprf655 Conversation Africa'),
(51013, 'https://ror.org/04qv76523', 'en', 1, 'https://ror.org/04qv76523 United Way of Southern Cameron County'),
(51014, 'https://ror.org/02fsqn104', 'no_lang_code', 1, 'https://ror.org/02fsqn104 Wieden+Kennedy (United States)'),
(51015, 'https://ror.org/01fhn3166', 'no_lang_code', 1, 'https://ror.org/01fhn3166 Vsolvit (United States)'),
(51016, 'https://ror.org/000d7gn07', 'en', 1, 'https://ror.org/000d7gn07 United Way of Spokane County'),
(51017, 'https://ror.org/04ccc4h18', 'en', 1, 'https://ror.org/04ccc4h18 Wajir County Government'),
(51018, 'https://ror.org/00cwgs379', 'en', 1, 'https://ror.org/00cwgs379 United Way of the Columbia-Willamette'),
(51019, 'https://ror.org/01kkt1z73', 'en', 1, 'https://ror.org/01kkt1z73 Windrider Institute'),
(51020, 'https://ror.org/00dm6q577', 'en', 1, 'https://ror.org/00dm6q577 Water & Sanitation for the Urban Poor'),
(51021, 'https://ror.org/05s2r4461', 'en', 1, 'https://ror.org/05s2r4461 Federalist Society'),
(51022, 'https://ror.org/05d9syz50', 'no_lang_code', 1, 'https://ror.org/05d9syz50 Unitus Labs'),
(51023, 'https://ror.org/0216n6706', 'en', 1, 'https://ror.org/0216n6706 Women Moving Millions'),
(51024, 'https://ror.org/05fssfa53', 'en', 1, 'https://ror.org/05fssfa53 Warren County Public Schools'),
(51025, 'https://ror.org/03z8wtt58', 'en', 1, 'https://ror.org/03z8wtt58 Women''s Policy'),
(51026, 'https://ror.org/00fkys966', 'en', 1, 'https://ror.org/00fkys966 World Neighbors'),
(51027, 'https://ror.org/01wx4a722', 'en', 1, 'https://ror.org/01wx4a722 WaterAid America'),
(51028, 'https://ror.org/033hx2k10', 'en', 1, 'https://ror.org/033hx2k10 Women''s World Banking'),
(51029, 'https://ror.org/02rcj7e91', 'en', 1, 'https://ror.org/02rcj7e91 Worcester Public Schools'),
(51030, 'https://ror.org/04k1aq759', 'no_lang_code', 1, 'https://ror.org/04k1aq759 Univercells (Belgium)'),
(51031, 'https://ror.org/04s8ek474', 'en', 1, 'https://ror.org/04s8ek474 Workforce Snohomish'),
(51032, 'https://ror.org/021s9ae49', 'en', 1, 'https://ror.org/021s9ae49 Worldwide Documentaries'),
(51033, 'https://ror.org/04g43tp09', 'no_lang_code', 1, 'https://ror.org/04g43tp09 Well Told Story (Kenya)'),
(51034, 'https://ror.org/02fz2j917', 'en', 1, 'https://ror.org/02fz2j917 YWCA USA'),
(51035, 'https://ror.org/04pcdsm76', 'en', 1, 'https://ror.org/04pcdsm76 Interdisciplinary University of Paris Université interdisciplinaire de Paris'),
(51036, 'https://ror.org/05rx0pb87', 'en', 1, 'https://ror.org/05rx0pb87 Young Women''s Leadership Network'),
(51037, 'https://ror.org/00mqhay86', 'en', 1, 'https://ror.org/00mqhay86 Yakima Valley Community Foundation'),
(51038, 'https://ror.org/02nd1ya78', 'no_lang_code', 1, 'https://ror.org/02nd1ya78 Wetlands Work (Cambodia)'),
(51039, 'https://ror.org/01hbg9816', 'en', 1, 'https://ror.org/01hbg9816 YouthBuild'),
(51040, 'https://ror.org/01xbg8m54', 'en', 1, 'https://ror.org/01xbg8m54 Youth Development Labs'),
(51041, 'https://ror.org/034rzmm61', 'en', 1, 'https://ror.org/034rzmm61 Youth Service America'),
(51042, 'https://ror.org/016vrvb82', 'no_lang_code', 1, 'https://ror.org/016vrvb82 Zagaya'),
(51043, 'https://ror.org/02fk8h266', 'en', 1, 'https://ror.org/02fk8h266 Youth Venture'),
(51044, 'https://ror.org/0415kd025', 'en', 1, 'https://ror.org/0415kd025 ZanaAfrica Group'),
(51045, 'https://ror.org/000sx5h02', 'en', 1, 'https://ror.org/000sx5h02 YES Prep Public Schools'),
(51046, 'https://ror.org/04rbew275', 'no_lang_code', 1, 'https://ror.org/04rbew275 Zipline International (United States)'),
(51047, 'https://ror.org/03e9cqh27', 'en', 1, 'https://ror.org/03e9cqh27 Young Invincibles'),
(51048, 'https://ror.org/013wcmm63', 'en', 1, 'https://ror.org/013wcmm63 Zygon Center for Religion and Science'),
(51049, 'https://ror.org/02g21hc40', 'no_lang_code', 1, 'https://ror.org/02g21hc40 Art Innovation (Netherlands)'),
(51050, 'https://ror.org/0381dt953', 'en', 1, 'https://ror.org/0381dt953 CMH Lahore Medical College and Institute of Dentistry'),
(51051, 'https://ror.org/04e61md13', 'no_lang_code', 1, 'https://ror.org/04e61md13 Tokuda Hospital Токуда Болница София'),
(51052, 'https://ror.org/01y7b2q33', 'no_lang_code', 1, 'https://ror.org/01y7b2q33 Aava Medical Centre'),
(51053, 'https://ror.org/03bbe8e53', 'nl', 1, 'https://ror.org/03bbe8e53 Kempenhaeghe'),
(51054, 'https://ror.org/02ycbp592', 'pt', 1, 'https://ror.org/02ycbp592 Hospital Central da Polícia Militar'),
(51055, 'https://ror.org/016vmf460', 'en', 1, 'https://ror.org/016vmf460 AXIS Clinical Trials'),
(51056, 'https://ror.org/03fqsyt94', 'es', 1, 'https://ror.org/03fqsyt94 Hospital la Serena'),
(51057, 'https://ror.org/05twvb204', 'en', 1, 'https://ror.org/05twvb204 Advanced Dermatology'),
(51058, 'https://ror.org/01qq0qd43', 'en', 1, 'https://ror.org/01qq0qd43 Shunyi Hospital of Beijing Traditional Chinese Medicine Hospital 北京中医医院顺义医院'),
(51059, 'https://ror.org/052q26725', 'en', 1, 'https://ror.org/052q26725 Affiliated Hospital of Shandong University of Traditional Chinese Medicine 山东中医药大学附属医院'),
(51060, 'https://ror.org/00zv7v764', 'en', 1, 'https://ror.org/00zv7v764 Northern California Research'),
(51061, 'https://ror.org/04cnyg561', 'en', 1, 'https://ror.org/04cnyg561 Adult Anxiety Clinic of Temple'),
(51062, 'https://ror.org/03wcc3744', 'en', 1, 'https://ror.org/03wcc3744 Forest Research'),
(51063, 'https://ror.org/00jxjg186', 'ro', 1, 'https://ror.org/00jxjg186 Spitalul Clinic C.F. Iasi'),
(51064, 'https://ror.org/035k7dd86', 'en', 1, 'https://ror.org/035k7dd86 New Mexico State University Grants'),
(51065, 'https://ror.org/05xp52m23', 'no_lang_code', 1, 'https://ror.org/05xp52m23 Intelligent Decision Systems (Spain)'),
(51066, 'https://ror.org/01c35h421', 'en', 1, 'https://ror.org/01c35h421 Hellenic Oceanographers Association Σύλλογος Ελλήνων Ωκεανογράφων'),
(51067, 'https://ror.org/01km88n73', 'tr', 1, 'https://ror.org/01km88n73 Marmara Üniversitesi Eğitim ve Araştırma Hastanesi'),
(51068, 'https://ror.org/03bdhq605', 'en', 1, 'https://ror.org/03bdhq605 National Academy of Engineering'),
(51069, 'https://ror.org/056wwjf73', 'en', 1, 'https://ror.org/056wwjf73 Baltic Studies Centre'),
(51070, 'https://ror.org/03k3h8z07', 'en', 1, 'https://ror.org/03k3h8z07 Oromiyaa Regional Health Bureau'),
(51071, 'https://ror.org/02ypwf602', 'no_lang_code', 1, 'https://ror.org/02ypwf602 Sierra BioMedical (United States)'),
(51072, 'https://ror.org/0044d9958', 'no_lang_code', 1, 'https://ror.org/0044d9958 Tècniques de Gestió de la Informació'),
(51073, 'https://ror.org/02fvevm64', 'en', 1, 'https://ror.org/02fvevm64 Taizhou People''s Hospital'),
(51074, 'https://ror.org/005gf6j43', 'en', 1, 'https://ror.org/005gf6j43 Tanta University Hospital'),
(51075, 'https://ror.org/04a2ksf56', 'en', 1, 'https://ror.org/04a2ksf56 New England Institute for Neurology and Headache'),
(51076, 'https://ror.org/05bxbrn63', 'en', 1, 'https://ror.org/05bxbrn63 Inner Mongolia Autonomous Region Hospital of Traditional Chinese Medicine 内蒙古自治区中医医院'),
(51077, 'https://ror.org/023ssda55', 'en', 1, 'https://ror.org/023ssda55 Fukuda Foundation for Medical Technology 財団法人福田記念医療技術振興財団は'),
(51078, 'https://ror.org/04xzqfk28', 'it', 1, 'https://ror.org/04xzqfk28 Fondazione Internazionale Menarini'),
(51079, 'https://ror.org/029aqdy80', 'en', 1, 'https://ror.org/029aqdy80 Foundation for Promotion of Cancer Research がん研究振興財団'),
(51080, 'https://ror.org/00jq6bk95', 'en', 1, 'https://ror.org/00jq6bk95 Free To Breathe'),
(51081, 'https://ror.org/056tjaa40', 'en', 1, 'https://ror.org/056tjaa40 Foundation for Psychocultural Research'),
(51082, 'https://ror.org/031fh2e54', 'en', 1, 'https://ror.org/031fh2e54 Fulbright Canada'),
(51083, 'https://ror.org/02q8k0k97', 'fr', 1, 'https://ror.org/02q8k0k97 Fondation Centaure'),
(51084, 'https://ror.org/01t731k54', 'en', 1, 'https://ror.org/01t731k54 Gamma Mu Foundation'),
(51085, 'https://ror.org/02z02qt46', 'da', 1, 'https://ror.org/02z02qt46 Gangstedfonden'),
(51086, 'https://ror.org/04j8wah18', 'fr', 1, 'https://ror.org/04j8wah18 Fondation Charcot'),
(51087, 'https://ror.org/05y4zkz43', 'de', 1, 'https://ror.org/05y4zkz43 Freiwilligen Akademischen Gesellschaft'),
(51088, 'https://ror.org/00c4ykh56', 'fr', 1, 'https://ror.org/00c4ykh56 Fondation Denis Guichard'),
(51089, 'https://ror.org/022pga911', 'it', 1, 'https://ror.org/022pga911 Fondazione Monte dei Paschi di Siena'),
(51090, 'https://ror.org/03ba3bk23', 'en', 1, 'https://ror.org/03ba3bk23 Fondation des Fondateurs Foundation of the Founders'),
(51091, 'https://ror.org/02ck8g804', 'en', 1, 'https://ror.org/02ck8g804 Fremont Bank'),
(51092, 'https://ror.org/02mzdpf71', 'en', 1, 'https://ror.org/02mzdpf71 Garden Club of Honolulu'),
(51093, 'https://ror.org/01kk89q14', 'en', 1, 'https://ror.org/01kk89q14 Fund For New Jersey'),
(51094, 'https://ror.org/05fktwr23', 'en', 1, 'https://ror.org/05fktwr23 Gardiner Foundation'),
(51095, 'https://ror.org/02rt6g223', 'it', 1, 'https://ror.org/02rt6g223 Fondazione per la Ricerca sulla Fibrosi Cistica'),
(51096, 'https://ror.org/057xq2p09', 'en', 1, 'https://ror.org/057xq2p09 Frey Foundation'),
(51097, 'https://ror.org/04sza0p48', 'en', 1, 'https://ror.org/04sza0p48 Garfield Foundation'),
(51098, 'https://ror.org/04631ba92', 'en', 1, 'https://ror.org/04631ba92 Garrett B Smith Foundation'),
(51099, 'https://ror.org/006kypj04', 'en', 1, 'https://ror.org/006kypj04 Funeral Service Foundation'),
(51100, 'https://ror.org/051f3s362', 'it', 1, 'https://ror.org/051f3s362 Fondazione Pezcoller'),
(51101, 'https://ror.org/00pjede26', 'de', 1, 'https://ror.org/00pjede26 Friede Springer Stiftung'),
(51102, 'https://ror.org/00b75tt95', 'no_lang_code', 1, 'https://ror.org/00b75tt95 Roper Technologies (United States)'),
(51103, 'https://ror.org/0040jv435', 'en', 1, 'https://ror.org/0040jv435 George A. and Eliza Gardner Howard Foundation'),
(51104, 'https://ror.org/05c7rv794', 'en', 1, 'https://ror.org/05c7rv794 Futaba Electronics Memorial Foundation 公益財団法人 双葉電子記念財団'),
(51105, 'https://ror.org/04221f920', 'en', 1, 'https://ror.org/04221f920 Gateway for Cancer Research'),
(51106, 'https://ror.org/0111f4y49', 'it', 1, 'https://ror.org/0111f4y49 Fondazione Pierfranco e Luisa Mariani'),
(51107, 'https://ror.org/017vhek94', 'de', 1, 'https://ror.org/017vhek94 Gebauer Stiftung'),
(51108, 'https://ror.org/02j9g7j58', 'en', 1, 'https://ror.org/02j9g7j58 G. Unger Vetlesen Foundation'),
(51109, 'https://ror.org/05t1hxr21', 'en', 1, 'https://ror.org/05t1hxr21 George Alexander Foundation'),
(51110, 'https://ror.org/01hg94g33', 'en', 1, 'https://ror.org/01hg94g33 George and Mary Josephine Hamman Foundation'),
(51111, 'https://ror.org/032a9fh96', 'de', 1, 'https://ror.org/032a9fh96 Friedrich Baur Stiftung'),
(51112, 'https://ror.org/04r25nk19', 'de', 1, 'https://ror.org/04r25nk19 Gottfried und Julia Bangerter-Rhyner-Stiftung'),
(51113, 'https://ror.org/02mzerg05', 'no_lang_code', 1, 'https://ror.org/02mzerg05 Ribbon Communications (United States)'),
(51114, 'https://ror.org/02p32hv70', 'en', 1, 'https://ror.org/02p32hv70 Gallipoli Medical Research Foundation'),
(51115, 'https://ror.org/0597jrb38', 'en', 1, 'https://ror.org/0597jrb38 Grable Foundation'),
(51116, 'https://ror.org/008wwms76', 'en', 1, 'https://ror.org/008wwms76 Friends United'),
(51117, 'https://ror.org/03kxek255', 'en', 1, 'https://ror.org/03kxek255 Metcalf Foundation'),
(51118, 'https://ror.org/0263g5487', 'da', 1, 'https://ror.org/0263g5487 Frimodt-Heineke Fonden'),
(51119, 'https://ror.org/01ny4we05', 'en', 1, 'https://ror.org/01ny4we05 Generation Foundation'),
(51120, 'https://ror.org/04f195d63', 'de', 1, 'https://ror.org/04f195d63 Fritz Bender Stiftung'),
(51121, 'https://ror.org/02c0nbh41', 'en', 1, 'https://ror.org/02c0nbh41 Grace J. Fippinger Foundation'),
(51122, 'https://ror.org/02n478665', 'en', 1, 'https://ror.org/02n478665 Frontiers Foundation'),
(51123, 'https://ror.org/02pg6kr38', 'en', 1, 'https://ror.org/02pg6kr38 George Gund Foundation'),
(51124, 'https://ror.org/057tjtc32', 'en', 1, 'https://ror.org/057tjtc32 Geological Society of Australia'),
(51125, 'https://ror.org/047masv79', 'en', 1, 'https://ror.org/047masv79 Georgia Forestry Association'),
(51126, 'https://ror.org/03tqsvs90', 'en', 1, 'https://ror.org/03tqsvs90 FSH Society'),
(51127, 'https://ror.org/01xrqp957', 'en', 1, 'https://ror.org/01xrqp957 Georgia Health Foundation'),
(51128, 'https://ror.org/02hk69q89', 'en', 1, 'https://ror.org/02hk69q89 Gerald R. Ford Presidential Foundation'),
(51129, 'https://ror.org/01f1gbh69', 'en', 1, 'https://ror.org/01f1gbh69 Graham Foundation'),
(51130, 'https://ror.org/01q9r6465', 'en', 1, 'https://ror.org/01q9r6465 Geraldine R. Dodge Foundation'),
(51131, 'https://ror.org/03axz0166', 'en', 1, 'https://ror.org/03axz0166 Healthcare Foundation of New Jersey'),
(51132, 'https://ror.org/05k4g0902', 'de', 1, 'https://ror.org/05k4g0902 Gerhard C. Starck Stiftung'),
(51133, 'https://ror.org/044ynya14', 'en', 1, 'https://ror.org/044ynya14 Grant Healthcare Foundation'),
(51134, 'https://ror.org/058y7jv19', 'en', 1, 'https://ror.org/058y7jv19 German Marshall Fund of the United States'),
(51135, 'https://ror.org/053w93n68', 'en', 1, 'https://ror.org/053w93n68 FSHD Global Research Foundation'),
(51136, 'https://ror.org/00h4cdy24', 'en', 1, 'https://ror.org/00h4cdy24 Heart Foundation'),
(51137, 'https://ror.org/01pgw9p53', 'en', 1, 'https://ror.org/01pgw9p53 Grantsmanship Center'),
(51138, 'https://ror.org/021n09h20', 'en', 1, 'https://ror.org/021n09h20 Guthy-Jackson Charitable Foundation'),
(51139, 'https://ror.org/03p9f9307', 'en', 1, 'https://ror.org/03p9f9307 Graphic Arts Education and Research Foundation'),
(51140, 'https://ror.org/0293tde40', 'en', 1, 'https://ror.org/0293tde40 Heckscher Foundation for Children'),
(51141, 'https://ror.org/01wb8d948', 'sv', 1, 'https://ror.org/01wb8d948 Hans Bang Stiftelsen'),
(51142, 'https://ror.org/02g8xhs57', 'en', 1, 'https://ror.org/02g8xhs57 Getty Foundation'),
(51143, 'https://ror.org/04cnxht64', 'en', 1, 'https://ror.org/04cnxht64 Grass Foundation'),
(51144, 'https://ror.org/02448mh91', 'en', 1, 'https://ror.org/02448mh91 Help For Children'),
(51145, 'https://ror.org/048h18548', 'en', 1, 'https://ror.org/048h18548 Gheens Foundation'),
(51146, 'https://ror.org/037pyxf85', 'en', 1, 'https://ror.org/037pyxf85 H. L. Snyder Medical Foundation'),
(51147, 'https://ror.org/05t3ctn72', 'de', 1, 'https://ror.org/05t3ctn72 Hans Eggenberger Stiftung'),
(51148, 'https://ror.org/01t7m8f35', 'en', 1, 'https://ror.org/01t7m8f35 Heed Ophthalmic Foundation'),
(51149, 'https://ror.org/059hdm253', 'da', 1, 'https://ror.org/059hdm253 Harboefonden'),
(51150, 'https://ror.org/01s49js04', 'no_lang_code', 1, 'https://ror.org/01s49js04 Kraft Heinz (United States)'),
(51151, 'https://ror.org/04vs74923', 'en', 1, 'https://ror.org/04vs74923 Gratiot County Community Foundation'),
(51152, 'https://ror.org/02xq7zd76', 'de', 1, 'https://ror.org/02xq7zd76 Heidehof Stiftung Stiftung für Bildung und Behindertenförderung'),
(51153, 'https://ror.org/015ygpt53', 'en', 1, 'https://ror.org/015ygpt53 H.W. Durham Foundation'),
(51154, 'https://ror.org/05cw31648', 'de', 1, 'https://ror.org/05cw31648 Heimer Stiftung'),
(51155, 'https://ror.org/0150nnh74', 'en', 1, 'https://ror.org/0150nnh74 Great Valley Center'),
(51156, 'https://ror.org/03at8gw73', 'en', 1, 'https://ror.org/03at8gw73 Gift of the Givers Foundation'),
(51157, 'https://ror.org/02e1ztj03', 'en', 1, 'https://ror.org/02e1ztj03 Greater Boston Council on Alcoholism'),
(51158, 'https://ror.org/01h9fv209', 'en', 1, 'https://ror.org/01h9fv209 Greater Cincinnati Foundation'),
(51159, 'https://ror.org/00m3qn560', 'en', 1, 'https://ror.org/00m3qn560 Harold Mitchell Foundation'),
(51160, 'https://ror.org/037bmav86', 'no_lang_code', 1, 'https://ror.org/037bmav86 Haberdashers (United Kingdom)');
INSERT INTO `rors` VALUES
(51161, 'https://ror.org/0344snf66', 'en', 1, 'https://ror.org/0344snf66 Harold Whitworth Pierce Charitable Trust'),
(51162, 'https://ror.org/04jz7er86', 'en', 1, 'https://ror.org/04jz7er86 Greater Greenbrier Valley Community Foundation'),
(51163, 'https://ror.org/023907v80', 'en', 1, 'https://ror.org/023907v80 Gill Bergska Foundation'),
(51164, 'https://ror.org/00vp48839', 'en', 1, 'https://ror.org/00vp48839 Harriet H. Samuelsson Foundation'),
(51165, 'https://ror.org/054e5vv45', 'en', 1, 'https://ror.org/054e5vv45 Girard Foundation'),
(51166, 'https://ror.org/01zm9va38', 'en', 1, 'https://ror.org/01zm9va38 Greater Kanawha Valley Foundation'),
(51167, 'https://ror.org/01dnrcm75', 'en', 1, 'https://ror.org/01dnrcm75 Gladys Krieble Delmas Foundation'),
(51168, 'https://ror.org/01f0hzg70', 'en', 1, 'https://ror.org/01f0hzg70 Glaser Progress Foundation'),
(51169, 'https://ror.org/0527w1g58', 'sv', 1, 'https://ror.org/0527w1g58 Helge Ax:son Johnsons Stiftelse'),
(51170, 'https://ror.org/00ecgnd18', 'en', 1, 'https://ror.org/00ecgnd18 Greater Kansas City Community Foundation'),
(51171, 'https://ror.org/00pjapa16', 'en', 1, 'https://ror.org/00pjapa16 Greater Milwaukee Foundation'),
(51172, 'https://ror.org/02rsqhk75', 'en', 1, 'https://ror.org/02rsqhk75 Glens Falls Foundation'),
(51173, 'https://ror.org/0427p8e67', 'en', 1, 'https://ror.org/0427p8e67 Green Lane Research and Educational Fund'),
(51174, 'https://ror.org/02v1bmg02', 'en', 1, 'https://ror.org/02v1bmg02 Harrison County Community Foundation'),
(51175, 'https://ror.org/00nkfq279', 'en', 1, 'https://ror.org/00nkfq279 Greenwall Foundation'),
(51176, 'https://ror.org/00vxeha61', 'en', 1, 'https://ror.org/00vxeha61 Harry Frank Guggenheim Foundation'),
(51177, 'https://ror.org/0587zpn52', 'en', 1, 'https://ror.org/0587zpn52 Grieg Foundation'),
(51178, 'https://ror.org/04ja5n810', 'en', 1, 'https://ror.org/04ja5n810 Global Association of Risk Professionals'),
(51179, 'https://ror.org/00kpb0908', 'en', 1, 'https://ror.org/00kpb0908 Global Down Syndrome Foundation'),
(51180, 'https://ror.org/0587cd856', 'en', 1, 'https://ror.org/0587cd856 Grigg Lewis Foundation'),
(51181, 'https://ror.org/010201t38', 'en', 1, 'https://ror.org/010201t38 Harry W. Bass, Jr. Foundation'),
(51182, 'https://ror.org/03vjk0w59', 'en', 1, 'https://ror.org/03vjk0w59 Hemophilia Association of New York'),
(51183, 'https://ror.org/046mfxt70', 'en', 1, 'https://ror.org/046mfxt70 Global Foundation for Peroxisomal Disorders'),
(51184, 'https://ror.org/03j4bwb64', 'en', 1, 'https://ror.org/03j4bwb64 Hendricks County Community Foundation'),
(51185, 'https://ror.org/03w0y1q19', 'no_lang_code', 1, 'https://ror.org/03w0y1q19 Haruv Institute מכון חרוב'),
(51186, 'https://ror.org/05xph5761', 'en', 1, 'https://ror.org/05xph5761 Harvard Travellers Club'),
(51187, 'https://ror.org/04e2pep48', 'en', 1, 'https://ror.org/04e2pep48 Henry County Community Foundation'),
(51188, 'https://ror.org/0262v8w25', 'en', 1, 'https://ror.org/0262v8w25 Global Risk Institute in Financial Services'),
(51189, 'https://ror.org/03s3qsz11', 'en', 1, 'https://ror.org/03s3qsz11 EduInnovation'),
(51190, 'https://ror.org/03a1cp978', 'en', 1, 'https://ror.org/03a1cp978 Henry P Kendall Foundation'),
(51191, 'https://ror.org/01kv2k333', 'en', 1, 'https://ror.org/01kv2k333 Harvard-Yenching Institute'),
(51192, 'https://ror.org/04ck29617', 'no_lang_code', 1, 'https://ror.org/04ck29617 GN Store Nord (Denmark)'),
(51193, 'https://ror.org/01zsmba62', 'en', 1, 'https://ror.org/01zsmba62 Harvey L. Neiman Health Policy Institute'),
(51194, 'https://ror.org/00g8q6r39', 'en', 1, 'https://ror.org/00g8q6r39 Herb Society of America'),
(51195, 'https://ror.org/0247aft91', 'en', 1, 'https://ror.org/0247aft91 The Herbert H. and Grace A. Dow Foundation'),
(51196, 'https://ror.org/04fjhg511', 'en', 1, 'https://ror.org/04fjhg511 Goizueta Foundation'),
(51197, 'https://ror.org/017778n40', 'en', 1, 'https://ror.org/017778n40 Herbert W. Hoover Foundation'),
(51198, 'https://ror.org/05f676n58', 'en', 1, 'https://ror.org/05f676n58 Goldhirsh Foundation'),
(51199, 'https://ror.org/05tbc3h08', 'de', 1, 'https://ror.org/05tbc3h08 Homann-Stiftung'),
(51200, 'https://ror.org/04m3t9183', 'en', 1, 'https://ror.org/04m3t9183 Hasler Foundation Hasler Stiftung'),
(51201, 'https://ror.org/049q63233', 'en', 1, 'https://ror.org/049q63233 Goldman Philanthropic Partnerships'),
(51202, 'https://ror.org/00f48mn63', 'en', 1, 'https://ror.org/00f48mn63 Heritage Fund'),
(51203, 'https://ror.org/013h8cr97', 'en', 1, 'https://ror.org/013h8cr97 Haemophilia Foundation Australia'),
(51204, 'https://ror.org/01k931w67', 'en', 1, 'https://ror.org/01k931w67 Goldsmith Family Foundation'),
(51205, 'https://ror.org/02p5tsd26', 'en', 1, 'https://ror.org/02p5tsd26 Honjo International Scholarship Foundation'),
(51206, 'https://ror.org/04vdd6t03', 'en', 1, 'https://ror.org/04vdd6t03 Honorable Tina Brozman Foundation'),
(51207, 'https://ror.org/03h32st80', 'en', 1, 'https://ror.org/03h32st80 Good Samaritan Foundation'),
(51208, 'https://ror.org/03asba969', 'en', 1, 'https://ror.org/03asba969 Hairy Cell Leukemia Foundation'),
(51209, 'https://ror.org/05ds19c85', 'en', 1, 'https://ror.org/05ds19c85 Hayao Nakayama Foundation for Science & Technology and Culture 公益財団法人中山隼雄科学技術文化財団'),
(51210, 'https://ror.org/05bqz6909', 'en', 1, 'https://ror.org/05bqz6909 Hazel K. Goddess Fund for Stroke Research in Women'),
(51211, 'https://ror.org/05y3s9y81', 'en', 1, 'https://ror.org/05y3s9y81 Hyde Family Foundations'),
(51212, 'https://ror.org/03dc9sa37', 'no_lang_code', 1, 'https://ror.org/03dc9sa37 Hospitals Contribution Fund (Australia)'),
(51213, 'https://ror.org/02s67hm68', 'de', 1, 'https://ror.org/02s67hm68 Hamburgische Wissenschaftliche Stiftung'),
(51214, 'https://ror.org/00f7nwk73', 'en', 1, 'https://ror.org/00f7nwk73 Hermansky Pudlak Syndrome Network'),
(51215, 'https://ror.org/05x1syy12', 'en', 1, 'https://ror.org/05x1syy12 Hope Foundation for Research on Ageing'),
(51216, 'https://ror.org/038gm9q58', 'en', 1, 'https://ror.org/038gm9q58 Hamdard National Foundation'),
(51217, 'https://ror.org/0435hmt48', 'en', 1, 'https://ror.org/0435hmt48 Hope Happens for Neurological Disorders'),
(51218, 'https://ror.org/0559b0w16', 'en', 1, 'https://ror.org/0559b0w16 Hydrogen Education Foundation'),
(51219, 'https://ror.org/056a5c150', 'en', 1, 'https://ror.org/056a5c150 Hampton Roads Community Foundation'),
(51220, 'https://ror.org/00vxscp81', 'de', 1, 'https://ror.org/00vxscp81 HOPE-Kapstadt-Stiftung'),
(51221, 'https://ror.org/05bnw2b86', 'en', 1, 'https://ror.org/05bnw2b86 Hand Foundation'),
(51222, 'https://ror.org/02ycc8g77', 'en', 1, 'https://ror.org/02ycc8g77 Hyogo Prefecture Health Foundation 公益財団法人 兵庫県健康財団'),
(51223, 'https://ror.org/01bby7n46', 'en', 1, 'https://ror.org/01bby7n46 I. A. O''Shaughnessy Foundation'),
(51224, 'https://ror.org/032s45981', 'en', 1, 'https://ror.org/032s45981 Health Care Foundation of Greater Kansas City'),
(51225, 'https://ror.org/05t92nq65', 'en', 1, 'https://ror.org/05t92nq65 Hannah''s Heroes Foundation'),
(51226, 'https://ror.org/03swpf442', 'en', 1, 'https://ror.org/03swpf442 Health Foundation of South Florida'),
(51227, 'https://ror.org/05dq3dn18', 'no_lang_code', 1, 'https://ror.org/05dq3dn18 Hori Sciences and Arts Foundation 堀科学芸術振興財団'),
(51228, 'https://ror.org/03q2pyf14', 'de', 1, 'https://ror.org/03q2pyf14 Herzstiftung Olten'),
(51229, 'https://ror.org/05d56bw89', 'en', 1, 'https://ror.org/05d56bw89 Ian''s Friends Foundation'),
(51230, 'https://ror.org/01yr4dd89', 'da', 1, 'https://ror.org/01yr4dd89 Hesteafgiftsfondens'),
(51231, 'https://ror.org/045czd036', 'en', 1, 'https://ror.org/045czd036 Horizon Foundation'),
(51232, 'https://ror.org/0186zbx36', 'en', 1, 'https://ror.org/0186zbx36 Innovating Worthy Projects Foundation'),
(51233, 'https://ror.org/01karna91', 'en', 1, 'https://ror.org/01karna91 Health Research Foundation'),
(51234, 'https://ror.org/017e31734', 'en', 1, 'https://ror.org/017e31734 Horizon Blue Cross Blue Shield of New Jersey'),
(51235, 'https://ror.org/04qq88e08', 'en', 1, 'https://ror.org/04qq88e08 International Headache Society'),
(51236, 'https://ror.org/01yjpd768', 'en', 1, 'https://ror.org/01yjpd768 International Order of Alhambra'),
(51237, 'https://ror.org/057dcw631', 'en', 1, 'https://ror.org/057dcw631 Innovation Center for U.S. Dairy'),
(51238, 'https://ror.org/027hx7576', 'en', 1, 'https://ror.org/027hx7576 HHV-6 Foundation'),
(51239, 'https://ror.org/00vj5dr06', 'en', 1, 'https://ror.org/00vj5dr06 Illinois Childrens Healthcare Foundation'),
(51240, 'https://ror.org/037jcf003', 'en', 1, 'https://ror.org/037jcf003 Horowitz Foundation for Social Policy'),
(51241, 'https://ror.org/03a9cwm95', 'en', 1, 'https://ror.org/03a9cwm95 Innovative Structural Materials Association'),
(51242, 'https://ror.org/03tv67y51', 'en', 1, 'https://ror.org/03tv67y51 Illinois Critical Access Hospital Network'),
(51243, 'https://ror.org/037bzzg07', 'en', 1, 'https://ror.org/037bzzg07 Sasaki Associates'),
(51244, 'https://ror.org/0351vqb61', 'en', 1, 'https://ror.org/0351vqb61 Inoue Foundation for Science 井上科学振興財団'),
(51245, 'https://ror.org/043ae3f44', 'en', 1, 'https://ror.org/043ae3f44 Hospital Research Foundation'),
(51246, 'https://ror.org/00k81wv70', 'en', 1, 'https://ror.org/00k81wv70 International Society for Peritoneal Dialysis'),
(51247, 'https://ror.org/04eh92011', 'en', 1, 'https://ror.org/04eh92011 IMB Bank'),
(51248, 'https://ror.org/02g0ran52', 'en', 1, 'https://ror.org/02g0ran52 Hille Foundation'),
(51249, 'https://ror.org/00jb20j87', 'en', 1, 'https://ror.org/00jb20j87 Impact Fund'),
(51250, 'https://ror.org/03t1kp138', 'en', 1, 'https://ror.org/03t1kp138 Impact on Education'),
(51251, 'https://ror.org/02y5beg61', 'fr', 1, 'https://ror.org/02y5beg61 Institut Louis Bachelier'),
(51252, 'https://ror.org/03ayy2w09', 'en', 1, 'https://ror.org/03ayy2w09 Hirshberg Foundation for Pancreatic Cancer Research'),
(51253, 'https://ror.org/03k77k104', 'en', 1, 'https://ror.org/03k77k104 Houston Endowment'),
(51254, 'https://ror.org/05vhwqa91', 'en', 1, 'https://ror.org/05vhwqa91 Independent Sector'),
(51255, 'https://ror.org/01qfkht77', 'en', 1, 'https://ror.org/01qfkht77 Independent Social Research Foundation'),
(51256, 'https://ror.org/04yzcyv37', 'en', 1, 'https://ror.org/04yzcyv37 Howard Gilman Foundation'),
(51257, 'https://ror.org/00pzxxx15', 'en', 1, 'https://ror.org/00pzxxx15 India Diabetes Research Foundation'),
(51258, 'https://ror.org/04sky4s35', 'en', 1, 'https://ror.org/04sky4s35 Institut Penyelidikan dan Kemajuan Pertanian Malaysia Malaysian Agricultural Research and Development Institute'),
(51259, 'https://ror.org/05dbdfg95', 'en', 1, 'https://ror.org/05dbdfg95 International Transactional Analysis Association'),
(51260, 'https://ror.org/03farsx25', 'en', 1, 'https://ror.org/03farsx25 Indian Academy of Neurosciences'),
(51261, 'https://ror.org/01nhct278', 'en', 1, 'https://ror.org/01nhct278 International Transplant Nurses Society'),
(51262, 'https://ror.org/04jrb3091', 'en', 1, 'https://ror.org/04jrb3091 Institute for Aegean Prehistory'),
(51263, 'https://ror.org/04sr97002', 'en', 1, 'https://ror.org/04sr97002 Indian Land Tenure Foundation'),
(51264, 'https://ror.org/006evjj22', 'en', 1, 'https://ror.org/006evjj22 Indian Rheumatology Association'),
(51265, 'https://ror.org/0125syc65', 'en', 1, 'https://ror.org/0125syc65 International Union of Basic and Clinical Pharmacology'),
(51266, 'https://ror.org/00nds2e18', 'en', 1, 'https://ror.org/00nds2e18 Indiana State University Foundation'),
(51267, 'https://ror.org/058ns4d40', 'en', 1, 'https://ror.org/058ns4d40 Hoglund Foundation'),
(51268, 'https://ror.org/00910ay07', 'en', 1, 'https://ror.org/00910ay07 International Union of Biochemistry and Molecular Biology'),
(51269, 'https://ror.org/045gvx431', 'en', 1, 'https://ror.org/045gvx431 Huisking Foundation'),
(51270, 'https://ror.org/03bea3609', 'en', 1, 'https://ror.org/03bea3609 International Urogynecological Association'),
(51271, 'https://ror.org/05dezr114', 'en', 1, 'https://ror.org/05dezr114 Institute of Mental Hygiene'),
(51272, 'https://ror.org/00m61y124', 'en', 1, 'https://ror.org/00m61y124 International Waldenstrom''s Macroglobulinemia Foundation'),
(51273, 'https://ror.org/03r72d818', 'no_lang_code', 1, 'https://ror.org/03r72d818 Hokuto (Japan) ホクト株式会社'),
(51274, 'https://ror.org/00dfmn753', 'de', 1, 'https://ror.org/00dfmn753 Internationale Bodensee-Hochschule'),
(51275, 'https://ror.org/01qgzjd70', 'en', 1, 'https://ror.org/01qgzjd70 Indonesia Toray Science Foundation'),
(51276, 'https://ror.org/023t5f665', 'en', 1, 'https://ror.org/023t5f665 Humana Foundation'),
(51277, 'https://ror.org/05gj4md48', 'en', 1, 'https://ror.org/05gj4md48 Euvaldo Lodi Institute Instituto Euvaldo Lodi'),
(51278, 'https://ror.org/04n11b617', 'en', 1, 'https://ror.org/04n11b617 Izumi Foundation'),
(51279, 'https://ror.org/04hnnkw05', 'en', 1, 'https://ror.org/04hnnkw05 Interstitial Cystitis Association'),
(51280, 'https://ror.org/05mxy6748', 'en', 1, 'https://ror.org/05mxy6748 J. E. and L. E. Mabee Foundation'),
(51281, 'https://ror.org/01efj0y81', 'en', 1, 'https://ror.org/01efj0y81 Intensive Care Foundation'),
(51282, 'https://ror.org/01930sy39', 'en', 1, 'https://ror.org/01930sy39 J. Marion Sims Foundation'),
(51283, 'https://ror.org/03xgnmf38', 'en', 1, 'https://ror.org/03xgnmf38 Gallmann Memorial Foundation'),
(51284, 'https://ror.org/01ky9zs74', 'en', 1, 'https://ror.org/01ky9zs74 Pritzker Traubert Family Foundation'),
(51285, 'https://ror.org/049zxm836', 'sv', 1, 'https://ror.org/049zxm836 IngaBritt och Arne Lundbergs Forskningsstiftelse'),
(51286, 'https://ror.org/013p55530', 'en', 1, 'https://ror.org/013p55530 J. F Maddox Foundation'),
(51287, 'https://ror.org/03vqj9f54', 'en', 1, 'https://ror.org/03vqj9f54 Interleukin Foundation'),
(51288, 'https://ror.org/02ej1by07', 'en', 1, 'https://ror.org/02ej1by07 Intermedia Arts'),
(51289, 'https://ror.org/03bw33m14', 'en', 1, 'https://ror.org/03bw33m14 Hunter''s Dream for a Cure'),
(51290, 'https://ror.org/00m4t9795', 'en', 1, 'https://ror.org/00m4t9795 Hunter''s Hope Foundation'),
(51291, 'https://ror.org/003thv661', 'en', 1, 'https://ror.org/003thv661 Jack Kent Cooke Foundation'),
(51292, 'https://ror.org/04bre5f76', 'en', 1, 'https://ror.org/04bre5f76 Invergowrie Foundation'),
(51293, 'https://ror.org/00jkq3860', 'en', 1, 'https://ror.org/00jkq3860 Jackson Foundation'),
(51294, 'https://ror.org/00n789a42', 'en', 1, 'https://ror.org/00n789a42 International Association for the Evaluation of Educational Achievement'),
(51295, 'https://ror.org/037yq7995', 'en', 1, 'https://ror.org/037yq7995 Hunting Retriever Club'),
(51296, 'https://ror.org/028ka4p86', 'en', 1, 'https://ror.org/028ka4p86 International Association of Fire Fighters Charitable Foundation'),
(51297, 'https://ror.org/02d5day94', 'en', 1, 'https://ror.org/02d5day94 IPEC-Americas'),
(51298, 'https://ror.org/01mahh263', 'en', 1, 'https://ror.org/01mahh263 Huntington Society of Canada'),
(51299, 'https://ror.org/0064m4q05', 'en', 1, 'https://ror.org/0064m4q05 Huntington''s Disease Society of America'),
(51300, 'https://ror.org/02dm9bj37', 'en', 1, 'https://ror.org/02dm9bj37 Blaustein Philanthropic Group'),
(51301, 'https://ror.org/02gae5p70', 'en', 1, 'https://ror.org/02gae5p70 International Association of Hydrological Sciences'),
(51302, 'https://ror.org/01j5zmq23', 'en', 1, 'https://ror.org/01j5zmq23 Initial Teaching Alphabet Foundation'),
(51303, 'https://ror.org/01b242q75', 'en', 1, 'https://ror.org/01b242q75 Jacob and Valeria Langeloth Foundation'),
(51304, 'https://ror.org/048vh5r70', 'en', 1, 'https://ror.org/048vh5r70 Civil Society Legislative Advocacy Centre'),
(51305, 'https://ror.org/0152qkr29', 'en', 1, 'https://ror.org/0152qkr29 Arkansas State University System'),
(51306, 'https://ror.org/011bbtj34', 'en', 1, 'https://ror.org/011bbtj34 Emergency University'),
(51307, 'https://ror.org/00ykac431', 'en', 1, 'https://ror.org/00ykac431 Institute of Chemical Technology'),
(51308, 'https://ror.org/03sf3vq45', 'en', 1, 'https://ror.org/03sf3vq45 NDSU Research Foundation'),
(51309, 'https://ror.org/05bqezz06', 'en', 1, 'https://ror.org/05bqezz06 Norwich University Applied Research Institute'),
(51310, 'https://ror.org/00thwk687', 'en', 1, 'https://ror.org/00thwk687 Western Research Institute'),
(51311, 'https://ror.org/031d0t341', 'fr', 1, 'https://ror.org/031d0t341 Interaction Université Économie'),
(51312, 'https://ror.org/00hrner53', 'fr', 1, 'https://ror.org/00hrner53 Le Petit Monde'),
(51313, 'https://ror.org/00s2xkh70', 'en', 1, 'https://ror.org/00s2xkh70 Peking University Stomatological Hospital'),
(51314, 'https://ror.org/00xpfw690', 'en', 1, 'https://ror.org/00xpfw690 Huaian First People’s Hospital 淮安市第一人民医院'),
(51315, 'https://ror.org/0063dbm34', 'en', 1, 'https://ror.org/0063dbm34 Sheffield Children''s University'),
(51316, 'https://ror.org/0349geh35', 'en', 1, 'https://ror.org/0349geh35 University Bank'),
(51317, 'https://ror.org/040gykh71', 'es', 1, 'https://ror.org/040gykh71 Universidad de Ingeniería y Tecnología University of Engineering & Technology'),
(51318, 'https://ror.org/05mq03431', 'en', 1, 'https://ror.org/05mq03431 New York University Paris'),
(51319, 'https://ror.org/03yd12021', 'en', 1, 'https://ror.org/03yd12021 Yueyang Hospital 上海中医药大学附属岳阳中西医结合医院'),
(51320, 'https://ror.org/04ax0gn06', 'no_lang_code', 1, 'https://ror.org/04ax0gn06 ARaymond (France)'),
(51321, 'https://ror.org/03x0a1z16', 'no_lang_code', 1, 'https://ror.org/03x0a1z16 Asia Vital Components (Taiwan) 亚洲生命科技有限公司'),
(51322, 'https://ror.org/02x2h0d07', 'no_lang_code', 1, 'https://ror.org/02x2h0d07 Assa Abloy (Sweden)'),
(51323, 'https://ror.org/013b0rk29', 'no_lang_code', 1, 'https://ror.org/013b0rk29 American Standard (United States)'),
(51324, 'https://ror.org/01ss9zs84', 'no_lang_code', 1, 'https://ror.org/01ss9zs84 Acuity Brands (United states)'),
(51325, 'https://ror.org/02dte5569', 'no_lang_code', 1, 'https://ror.org/02dte5569 LyondellBasell (Italy)'),
(51326, 'https://ror.org/041r3e346', 'no_lang_code', 1, 'https://ror.org/041r3e346 Accenture (Switzerland)'),
(51327, 'https://ror.org/05r8wy666', 'no_lang_code', 1, 'https://ror.org/05r8wy666 Actuant (United States)'),
(51328, 'https://ror.org/00mnrxf72', 'no_lang_code', 1, 'https://ror.org/00mnrxf72 Alibaba Group (Cayman Islands)'),
(51329, 'https://ror.org/023ryx304', 'en', 1, 'https://ror.org/023ryx304 Byblos Bank'),
(51330, 'https://ror.org/02rc7rz93', 'no_lang_code', 1, 'https://ror.org/02rc7rz93 Autoliv (United States)'),
(51331, 'https://ror.org/02hy2v836', 'no_lang_code', 1, 'https://ror.org/02hy2v836 Amphenol (United States)'),
(51332, 'https://ror.org/01545ep47', 'no_lang_code', 1, 'https://ror.org/01545ep47 Covestro (United States)'),
(51333, 'https://ror.org/04e8gf053', 'no_lang_code', 1, 'https://ror.org/04e8gf053 Amphenol (Germany)'),
(51334, 'https://ror.org/03n3c3r21', 'no_lang_code', 1, 'https://ror.org/03n3c3r21 Fiat Chrysler Automobiles (Germany)'),
(51335, 'https://ror.org/01yqat764', 'no_lang_code', 1, 'https://ror.org/01yqat764 CommScope (United States)'),
(51336, 'https://ror.org/01zs69903', 'no_lang_code', 1, 'https://ror.org/01zs69903 Brembo (United Kingdom)'),
(51337, 'https://ror.org/02z2z4m14', 'no_lang_code', 1, 'https://ror.org/02z2z4m14 Access Energy (United Kingdom)'),
(51338, 'https://ror.org/01se4qt95', 'no_lang_code', 1, 'https://ror.org/01se4qt95 Amada (Japan) 株式会社アマダ'),
(51339, 'https://ror.org/032qryz87', 'no_lang_code', 1, 'https://ror.org/032qryz87 Anritsu (Japan) アンリツ株式会社'),
(51340, 'https://ror.org/05cy1th84', 'no_lang_code', 1, 'https://ror.org/05cy1th84 Amazonen-Werke (Germany)'),
(51341, 'https://ror.org/00atq5220', 'no_lang_code', 1, 'https://ror.org/00atq5220 American Axle & Manufacturing (United States)'),
(51342, 'https://ror.org/005cnxk39', 'no_lang_code', 1, 'https://ror.org/005cnxk39 AGA (Sweden)'),
(51343, 'https://ror.org/0396rhp27', 'no_lang_code', 1, 'https://ror.org/0396rhp27 Danaher (Canada)'),
(51344, 'https://ror.org/027kczr92', 'no_lang_code', 1, 'https://ror.org/027kczr92 Asahi Glass (Belgium)'),
(51345, 'https://ror.org/03sbjcp06', 'no_lang_code', 1, 'https://ror.org/03sbjcp06 Bobst (Switzerland)'),
(51346, 'https://ror.org/05wdyxj97', 'no_lang_code', 1, 'https://ror.org/05wdyxj97 Kyocera (United States)'),
(51347, 'https://ror.org/04habne08', 'no_lang_code', 1, 'https://ror.org/04habne08 Applied Medical Resources (United States)'),
(51348, 'https://ror.org/02eatcc42', 'no_lang_code', 1, 'https://ror.org/02eatcc42 AGCO (United States)'),
(51349, 'https://ror.org/012cc0c94', 'no_lang_code', 1, 'https://ror.org/012cc0c94 Core Competence'),
(51350, 'https://ror.org/018pfae44', 'no_lang_code', 1, 'https://ror.org/018pfae44 Axcelis Technologies (United States)'),
(51351, 'https://ror.org/05er00a75', 'no_lang_code', 1, 'https://ror.org/05er00a75 Linde (United States)'),
(51352, 'https://ror.org/04gte0y44', 'no_lang_code', 1, 'https://ror.org/04gte0y44 Ahlstrom-Munksjö (Finland)'),
(51353, 'https://ror.org/021wdzv30', 'en', 1, 'https://ror.org/021wdzv30 ARCH Development Corporation'),
(51354, 'https://ror.org/019qdfq91', 'no_lang_code', 1, 'https://ror.org/019qdfq91 Borealis (Finland)'),
(51355, 'https://ror.org/03rbf8960', 'no_lang_code', 1, 'https://ror.org/03rbf8960 LyondellBasell (United States)'),
(51356, 'https://ror.org/04m492h23', 'no_lang_code', 1, 'https://ror.org/04m492h23 BOS (Germany)'),
(51357, 'https://ror.org/04kmayk86', 'no_lang_code', 1, 'https://ror.org/04kmayk86 Von Ardenne (Germany)'),
(51358, 'https://ror.org/00n6phm26', 'no_lang_code', 1, 'https://ror.org/00n6phm26 J C Bamford Excavators (United Kingdom)'),
(51359, 'https://ror.org/05wg45912', 'no_lang_code', 1, 'https://ror.org/05wg45912 Meritor (France)'),
(51360, 'https://ror.org/01kvsqe61', 'no_lang_code', 1, 'https://ror.org/01kvsqe61 CarboTech (Germany)'),
(51361, 'https://ror.org/007qm1691', 'no_lang_code', 1, 'https://ror.org/007qm1691 Boston Scientific (Barbados)'),
(51362, 'https://ror.org/00pex3x41', 'no_lang_code', 1, 'https://ror.org/00pex3x41 Celanese (United States)'),
(51363, 'https://ror.org/051mth390', 'no_lang_code', 1, 'https://ror.org/051mth390 BIC (France)'),
(51364, 'https://ror.org/02hhch541', 'no_lang_code', 1, 'https://ror.org/02hhch541 Trèves (France)'),
(51365, 'https://ror.org/05g0ds378', 'no_lang_code', 1, 'https://ror.org/05g0ds378 Dainichiseika (Japan) 大日精化工'),
(51366, 'https://ror.org/02mabf754', 'no_lang_code', 1, 'https://ror.org/02mabf754 Bissell (United States)'),
(51367, 'https://ror.org/01e00z659', 'no_lang_code', 1, 'https://ror.org/01e00z659 Joyson Safety Systems (United States)'),
(51368, 'https://ror.org/05rfjs622', 'no_lang_code', 1, 'https://ror.org/05rfjs622 Briggs & Stratton (United States)'),
(51369, 'https://ror.org/020pyx735', 'no_lang_code', 1, 'https://ror.org/020pyx735 Danieli (Italy)'),
(51370, 'https://ror.org/01cwc3t60', 'no_lang_code', 1, 'https://ror.org/01cwc3t60 CenturyLink (United States)'),
(51371, 'https://ror.org/030z2cx33', 'no_lang_code', 1, 'https://ror.org/030z2cx33 Cera Engineering (France)'),
(51372, 'https://ror.org/04vepqv68', 'no_lang_code', 1, 'https://ror.org/04vepqv68 DAV (France)'),
(51373, 'https://ror.org/04p59xr47', 'en', 1, 'https://ror.org/04p59xr47 Compal Electronics (Taiwan) 仁宝电脑工业股份有限公司'),
(51374, 'https://ror.org/02shz5w36', 'no_lang_code', 1, 'https://ror.org/02shz5w36 Julius Blum (Austria)'),
(51375, 'https://ror.org/00099v123', 'no_lang_code', 1, 'https://ror.org/00099v123 CCL Industries (United States)'),
(51376, 'https://ror.org/02fpqgd92', 'no_lang_code', 1, 'https://ror.org/02fpqgd92 Conair (United States)'),
(51377, 'https://ror.org/05539he75', 'no_lang_code', 1, 'https://ror.org/05539he75 Brose Fahrzeugteile (Germany)'),
(51378, 'https://ror.org/00686cm81', 'no_lang_code', 1, 'https://ror.org/00686cm81 Eagle Industry (Japan) イーグル工業'),
(51379, 'https://ror.org/01ksbcg70', 'no_lang_code', 1, 'https://ror.org/01ksbcg70 Endress Hauser Messtechnik (Germany)'),
(51380, 'https://ror.org/058rdjg17', 'no_lang_code', 1, 'https://ror.org/058rdjg17 DEKA (United States)'),
(51381, 'https://ror.org/00ht04y43', 'no_lang_code', 1, 'https://ror.org/00ht04y43 Lanxess (United States)'),
(51382, 'https://ror.org/0219m0g06', 'no_lang_code', 1, 'https://ror.org/0219m0g06 Eberspächer (Germany)'),
(51383, 'https://ror.org/05jwr0z51', 'no_lang_code', 1, 'https://ror.org/05jwr0z51 Consort Medical (United Kingdom)'),
(51384, 'https://ror.org/00r68rb43', 'no_lang_code', 1, 'https://ror.org/00r68rb43 ebm-papst'),
(51385, 'https://ror.org/058st1g82', 'no_lang_code', 1, 'https://ror.org/058st1g82 DeLaval (Sweden)'),
(51386, 'https://ror.org/044eeh010', 'no_lang_code', 1, 'https://ror.org/044eeh010 BSH Home Appliances (United States)'),
(51387, 'https://ror.org/05avn2m80', 'no_lang_code', 1, 'https://ror.org/05avn2m80 Edwards (United Kingdom)'),
(51388, 'https://ror.org/041pqtq45', 'no_lang_code', 1, 'https://ror.org/041pqtq45 E.G.O (Germany)'),
(51389, 'https://ror.org/009za8t17', 'no_lang_code', 1, 'https://ror.org/009za8t17 Delta Faucet (United States)'),
(51390, 'https://ror.org/05kw4cv96', 'no_lang_code', 1, 'https://ror.org/05kw4cv96 Buckman Laboratories (United States)'),
(51391, 'https://ror.org/03jaff633', 'no_lang_code', 1, 'https://ror.org/03jaff633 Denka (Japan) 電気化学工業株式会社'),
(51392, 'https://ror.org/008qxfr30', 'no_lang_code', 1, 'https://ror.org/008qxfr30 Chervon (Hongkong)'),
(51393, 'https://ror.org/050k26q88', 'no_lang_code', 1, 'https://ror.org/050k26q88 Deutsche Post (Germany)'),
(51394, 'https://ror.org/058qcpv96', 'no_lang_code', 1, 'https://ror.org/058qcpv96 Electrolux (Sweden)'),
(51395, 'https://ror.org/03kkp9n92', 'no_lang_code', 1, 'https://ror.org/03kkp9n92 BYD (China) 比亚迪股份有限公司'),
(51396, 'https://ror.org/02nxm3e56', 'no_lang_code', 1, 'https://ror.org/02nxm3e56 Electrolux (Belgium)'),
(51397, 'https://ror.org/01kg37d11', 'no_lang_code', 1, 'https://ror.org/01kg37d11 Deutz (Germany)'),
(51398, 'https://ror.org/05xf13p94', 'no_lang_code', 1, 'https://ror.org/05xf13p94 InnoLux (Taiwan) 群創光電股份有限公司'),
(51399, 'https://ror.org/02b4by704', 'no_lang_code', 1, 'https://ror.org/02b4by704 Electrolux (United States)'),
(51400, 'https://ror.org/03af7p216', 'no_lang_code', 1, 'https://ror.org/03af7p216 Cosmo Oil (Japan) コスモ石油株式会社'),
(51401, 'https://ror.org/01e3h1850', 'no_lang_code', 1, 'https://ror.org/01e3h1850 Campagnolo (Italy)'),
(51402, 'https://ror.org/040pjdm93', 'no_lang_code', 1, 'https://ror.org/040pjdm93 Creative Technology (Singapore)'),
(51403, 'https://ror.org/01jcaat98', 'no_lang_code', 1, 'https://ror.org/01jcaat98 Crown Holdings (United States)'),
(51404, 'https://ror.org/03j0xs842', 'no_lang_code', 1, 'https://ror.org/03j0xs842 Dialog Semiconductor (Germany)'),
(51405, 'https://ror.org/02decpv84', 'no_lang_code', 1, 'https://ror.org/02decpv84 Crown Holdings (United Kingdom)'),
(51406, 'https://ror.org/0584p3034', 'no_lang_code', 1, 'https://ror.org/0584p3034 Sealed Air (United States)'),
(51407, 'https://ror.org/05c3vdm18', 'no_lang_code', 1, 'https://ror.org/05c3vdm18 Bucher Emhart Glass (Switzerland)'),
(51408, 'https://ror.org/04knmzc94', 'no_lang_code', 1, 'https://ror.org/04knmzc94 Faro Technologies (United States)'),
(51409, 'https://ror.org/02vtxt818', 'no_lang_code', 1, 'https://ror.org/02vtxt818 Bucher Emhart Glass (United States)'),
(51410, 'https://ror.org/027n0md32', 'no_lang_code', 1, 'https://ror.org/027n0md32 Faure Equipements (France)'),
(51411, 'https://ror.org/025kcyv21', 'no_lang_code', 1, 'https://ror.org/025kcyv21 Cummins Allison (United States)'),
(51412, 'https://ror.org/05jke7315', 'no_lang_code', 1, 'https://ror.org/05jke7315 Pioneer (United States)'),
(51413, 'https://ror.org/05w425588', 'no_lang_code', 1, 'https://ror.org/05w425588 Ciena (United States)'),
(51414, 'https://ror.org/03gr95p90', 'no_lang_code', 1, 'https://ror.org/03gr95p90 Solvay (Austria)'),
(51415, 'https://ror.org/02kb3q578', 'no_lang_code', 1, 'https://ror.org/02kb3q578 Dolby (Netherlands)'),
(51416, 'https://ror.org/030qsdn71', 'no_lang_code', 1, 'https://ror.org/030qsdn71 Federal Mogul (United States)'),
(51417, 'https://ror.org/00rp38085', 'no_lang_code', 1, 'https://ror.org/00rp38085 Continental Emitec (Germany)'),
(51418, 'https://ror.org/01adg4754', 'no_lang_code', 1, 'https://ror.org/01adg4754 ConvergeOne (United States)'),
(51419, 'https://ror.org/01fc2rf40', 'no_lang_code', 1, 'https://ror.org/01fc2rf40 Dorma (Germany)'),
(51420, 'https://ror.org/05gcc9f60', 'no_lang_code', 1, 'https://ror.org/05gcc9f60 Endress+Hauser (Switzerland)'),
(51421, 'https://ror.org/04m20gp14', 'no_lang_code', 1, 'https://ror.org/04m20gp14 Walter Reist Holding (Switzerland)'),
(51422, 'https://ror.org/02z602v88', 'no_lang_code', 1, 'https://ror.org/02z602v88 Daewoo Electronics (South Korea)'),
(51423, 'https://ror.org/02bb4dw78', 'no_lang_code', 1, 'https://ror.org/02bb4dw78 CJ CheilJedang (South Korea) 씨제이제일제당 주식회사'),
(51424, 'https://ror.org/049kdc638', 'no_lang_code', 1, 'https://ror.org/049kdc638 MaxLinear (United States)'),
(51425, 'https://ror.org/03b0x6m16', 'no_lang_code', 1, 'https://ror.org/03b0x6m16 Gretsch-Unitas (France)'),
(51426, 'https://ror.org/03j6gjn98', 'no_lang_code', 1, 'https://ror.org/03j6gjn98 Daiichi Kogyo Seiyaku (Japan) 第一工業製薬株式会社'),
(51427, 'https://ror.org/011fhys37', 'no_lang_code', 1, 'https://ror.org/011fhys37 Claas (Germany)'),
(51428, 'https://ror.org/047kfm164', 'no_lang_code', 1, 'https://ror.org/047kfm164 Dräxlmaier (Germany)'),
(51429, 'https://ror.org/03wjwyj98', 'no_lang_code', 1, 'https://ror.org/03wjwyj98 Eppendorf (Germany)'),
(51430, 'https://ror.org/01w78qg15', 'no_lang_code', 1, 'https://ror.org/01w78qg15 Daicel (Japan) 株式会社ダイセル'),
(51431, 'https://ror.org/03tah6c23', 'no_lang_code', 1, 'https://ror.org/03tah6c23 Ferro (United States)'),
(51432, 'https://ror.org/035vrvw61', 'no_lang_code', 1, 'https://ror.org/035vrvw61 Prysmian Group (Netherlands)'),
(51433, 'https://ror.org/006hwbx79', 'no_lang_code', 1, 'https://ror.org/006hwbx79 Clariant (United Kingdom)'),
(51434, 'https://ror.org/05qjv1f51', 'no_lang_code', 1, 'https://ror.org/05qjv1f51 Erbe Elektromedizin (Germany)'),
(51435, 'https://ror.org/05fa63r36', 'no_lang_code', 1, 'https://ror.org/05fa63r36 Daido Steel (Japan) 大同特殊鋼'),
(51436, 'https://ror.org/04hh34543', 'no_lang_code', 1, 'https://ror.org/04hh34543 Doosan (United States)'),
(51437, 'https://ror.org/03tvt3c62', 'no_lang_code', 1, 'https://ror.org/03tvt3c62 Goodyear (United Kingdom)'),
(51438, 'https://ror.org/04xpcky34', 'no_lang_code', 1, 'https://ror.org/04xpcky34 Fischer (Germany)'),
(51439, 'https://ror.org/05jzx9n24', 'no_lang_code', 1, 'https://ror.org/05jzx9n24 Georg Fischer (Switzerland)'),
(51440, 'https://ror.org/01tqjep44', 'no_lang_code', 1, 'https://ror.org/01tqjep44 Novasep (Germany)'),
(51441, 'https://ror.org/03e4f7x92', 'no_lang_code', 1, 'https://ror.org/03e4f7x92 Groz Beckert (Germany)'),
(51442, 'https://ror.org/05gtx2j83', 'no_lang_code', 1, 'https://ror.org/05gtx2j83 Fives (France)'),
(51443, 'https://ror.org/01s5m6w98', 'no_lang_code', 1, 'https://ror.org/01s5m6w98 DyStar (Germany)'),
(51444, 'https://ror.org/057766n30', 'no_lang_code', 1, 'https://ror.org/057766n30 Evoqua Water Technologies (United States)'),
(51445, 'https://ror.org/03q7jt003', 'no_lang_code', 1, 'https://ror.org/03q7jt003 Flex (United States)'),
(51446, 'https://ror.org/012jvtn24', 'no_lang_code', 1, 'https://ror.org/012jvtn24 E Ink (United States)'),
(51447, 'https://ror.org/0231rt128', 'no_lang_code', 1, 'https://ror.org/0231rt128 GS Yuasa (Japan) 株式会社ジーエス・ユアサ コーポレーション'),
(51448, 'https://ror.org/03b6zzt23', 'no_lang_code', 1, 'https://ror.org/03b6zzt23 Futaba (Japan) 双葉電子工業株式会社'),
(51449, 'https://ror.org/01fvs9743', 'no_lang_code', 1, 'https://ror.org/01fvs9743 Extreme Networks (United States)'),
(51450, 'https://ror.org/01jrqwn31', 'no_lang_code', 1, 'https://ror.org/01jrqwn31 GC Corporation (Japan)'),
(51451, 'https://ror.org/03td08d28', 'no_lang_code', 1, 'https://ror.org/03td08d28 TechnipFMC (United States)'),
(51452, 'https://ror.org/032z1nw74', 'no_lang_code', 1, 'https://ror.org/032z1nw74 Hosiden (Japan) ホシデン株式会社'),
(51453, 'https://ror.org/05m1qxf57', 'no_lang_code', 1, 'https://ror.org/05m1qxf57 Nestlé (France)'),
(51454, 'https://ror.org/03ts5k304', 'no_lang_code', 1, 'https://ror.org/03ts5k304 Focke & Co (Germany)'),
(51455, 'https://ror.org/00w1gss13', 'no_lang_code', 1, 'https://ror.org/00w1gss13 Haier (United States)'),
(51456, 'https://ror.org/018mdm506', 'no_lang_code', 1, 'https://ror.org/018mdm506 Ford Motor Company (France)'),
(51457, 'https://ror.org/03m0mkk67', 'no_lang_code', 1, 'https://ror.org/03m0mkk67 Gates (United States)'),
(51458, 'https://ror.org/03n4yr938', 'no_lang_code', 1, 'https://ror.org/03n4yr938 FormFactor (United States)'),
(51459, 'https://ror.org/02e385c51', 'no_lang_code', 1, 'https://ror.org/02e385c51 Amec Foster Wheeler (United States)'),
(51460, 'https://ror.org/04j24r737', 'no_lang_code', 1, 'https://ror.org/04j24r737 Huf Hülsbeck & Fürst (Germany)'),
(51461, 'https://ror.org/056zfc440', 'no_lang_code', 1, 'https://ror.org/056zfc440 Visteon (South Korea)'),
(51462, 'https://ror.org/00zs5nz08', 'no_lang_code', 1, 'https://ror.org/00zs5nz08 Oras (Germany)'),
(51463, 'https://ror.org/0050qc271', 'no_lang_code', 1, 'https://ror.org/0050qc271 IAC Group (United States)'),
(51464, 'https://ror.org/00gt7fk38', 'no_lang_code', 1, 'https://ror.org/00gt7fk38 Hunter Douglas (United States)'),
(51465, 'https://ror.org/033z8qs97', 'no_lang_code', 1, 'https://ror.org/033z8qs97 Hunter Douglas (Netherlands)'),
(51466, 'https://ror.org/00qee0597', 'no_lang_code', 1, 'https://ror.org/00qee0597 Invacare (United States)'),
(51467, 'https://ror.org/0447s2m06', 'no_lang_code', 1, 'https://ror.org/0447s2m06 Hartmann Group (Germany)'),
(51468, 'https://ror.org/03z462w78', 'no_lang_code', 1, 'https://ror.org/03z462w78 Heckler and Koch (Germany)'),
(51469, 'https://ror.org/02f6zxv37', 'no_lang_code', 1, 'https://ror.org/02f6zxv37 EMS (Switzerland)'),
(51470, 'https://ror.org/04g3rsw26', 'no_lang_code', 1, 'https://ror.org/04g3rsw26 Getrag (Germany)'),
(51471, 'https://ror.org/04xxdqj96', 'no_lang_code', 1, 'https://ror.org/04xxdqj96 Koch Industries (Switzerland)'),
(51472, 'https://ror.org/04vb0yp97', 'no_lang_code', 1, 'https://ror.org/04vb0yp97 Mitsui Chemicals (Germany)'),
(51473, 'https://ror.org/01yrkpa05', 'no_lang_code', 1, 'https://ror.org/01yrkpa05 Geze (Germany)'),
(51474, 'https://ror.org/02bgv4w08', 'no_lang_code', 1, 'https://ror.org/02bgv4w08 Iscar (Israel)'),
(51475, 'https://ror.org/04kq54507', 'no_lang_code', 1, 'https://ror.org/04kq54507 Fujikin (Japan)'),
(51476, 'https://ror.org/017r9vm74', 'no_lang_code', 1, 'https://ror.org/017r9vm74 Masco (Germany)'),
(51477, 'https://ror.org/0473srk52', 'no_lang_code', 1, 'https://ror.org/0473srk52 Ifm electronic (Germany)'),
(51478, 'https://ror.org/00qfp3s59', 'no_lang_code', 1, 'https://ror.org/00qfp3s59 Happich (Germany)'),
(51479, 'https://ror.org/01s7ds279', 'no_lang_code', 1, 'https://ror.org/01s7ds279 Ishida Seisakusho (Japan) 石田製作所'),
(51480, 'https://ror.org/012ddpd05', 'no_lang_code', 1, 'https://ror.org/012ddpd05 Givaudan (Switzerland)'),
(51481, 'https://ror.org/04fhtk651', 'no_lang_code', 1, 'https://ror.org/04fhtk651 Hettich (Germany)'),
(51482, 'https://ror.org/0454qd124', 'no_lang_code', 1, 'https://ror.org/0454qd124 Kanzaki (Japan)'),
(51483, 'https://ror.org/020fcst87', 'no_lang_code', 1, 'https://ror.org/020fcst87 Hewlett-Packard (Netherlands)'),
(51484, 'https://ror.org/0521k5n17', 'no_lang_code', 1, 'https://ror.org/0521k5n17 Western Digital (Japan)'),
(51485, 'https://ror.org/0036cks17', 'no_lang_code', 1, 'https://ror.org/0036cks17 Kathrein (Germany)'),
(51486, 'https://ror.org/0372zyg05', 'no_lang_code', 1, 'https://ror.org/0372zyg05 Huisman (Netherlands)'),
(51487, 'https://ror.org/05jff7p65', 'no_lang_code', 1, 'https://ror.org/05jff7p65 Imerys (United Kingdom)'),
(51488, 'https://ror.org/02384d823', 'no_lang_code', 1, 'https://ror.org/02384d823 Metalsa (Germany)'),
(51489, 'https://ror.org/008hj7c61', 'no_lang_code', 1, 'https://ror.org/008hj7c61 Kayaba Industry (Japan) カヤバ工業株式会社'),
(51490, 'https://ror.org/051s9pp55', 'no_lang_code', 1, 'https://ror.org/051s9pp55 Hirose Electric (Japan) ヒロセ電機株式会社'),
(51491, 'https://ror.org/01jxvhp27', 'no_lang_code', 1, 'https://ror.org/01jxvhp27 Hisamitsu Pharmaceutical (Japan) 久光製薬株式会社'),
(51492, 'https://ror.org/05dvmag14', 'no_lang_code', 1, 'https://ror.org/05dvmag14 JST Mfg(Japan)'),
(51493, 'https://ror.org/03jvjps27', 'no_lang_code', 1, 'https://ror.org/03jvjps27 Keihin (Japan) 株式会社ケーヒン'),
(51494, 'https://ror.org/052d5f872', 'no_lang_code', 1, 'https://ror.org/052d5f872 Indena (Italy)'),
(51495, 'https://ror.org/03pwpr214', 'no_lang_code', 1, 'https://ror.org/03pwpr214 Hitachi (United States)'),
(51496, 'https://ror.org/00146wx41', 'no_lang_code', 1, 'https://ror.org/00146wx41 Japan Steel Works (Japan) 株式会社日本製鋼所'),
(51497, 'https://ror.org/03jb89v85', 'no_lang_code', 1, 'https://ror.org/03jb89v85 W. L. Gore & Associates (Germany)'),
(51498, 'https://ror.org/05rtjs149', 'no_lang_code', 1, 'https://ror.org/05rtjs149 Goss (United States)'),
(51499, 'https://ror.org/04e4db319', 'no_lang_code', 1, 'https://ror.org/04e4db319 Infineon Technologies (United States)'),
(51500, 'https://ror.org/046xmah45', 'no_lang_code', 1, 'https://ror.org/046xmah45 Plastic Omnium (Belgium)'),
(51501, 'https://ror.org/049rcsq44', 'no_lang_code', 1, 'https://ror.org/049rcsq44 JNC (Japan)'),
(51502, 'https://ror.org/05gyvs118', 'no_lang_code', 1, 'https://ror.org/05gyvs118 Newell Brands (United States)'),
(51503, 'https://ror.org/016mvkv35', 'no_lang_code', 1, 'https://ror.org/016mvkv35 Kiekert (Germany)'),
(51504, 'https://ror.org/05cwwq597', 'no_lang_code', 1, 'https://ror.org/05cwwq597 Johnson Electric (Switzerland)'),
(51505, 'https://ror.org/04yq9bg08', 'no_lang_code', 1, 'https://ror.org/04yq9bg08 Muller Martini (Switzerland)'),
(51506, 'https://ror.org/006cf4249', 'no_lang_code', 1, 'https://ror.org/006cf4249 Grieshaber (Germany)'),
(51507, 'https://ror.org/024mpmb63', 'no_lang_code', 1, 'https://ror.org/024mpmb63 Joled (Japan)'),
(51508, 'https://ror.org/04sab3g34', 'no_lang_code', 1, 'https://ror.org/04sab3g34 Bucher Industries (France)'),
(51509, 'https://ror.org/04a307s36', 'no_lang_code', 1, 'https://ror.org/04a307s36 Kobelco Construction Machinery (Japan)'),
(51510, 'https://ror.org/02dxby369', 'no_lang_code', 1, 'https://ror.org/02dxby369 JUKI株式会社 Juki (Japan)'),
(51511, 'https://ror.org/05k8zfb28', 'no_lang_code', 1, 'https://ror.org/05k8zfb28 Kurita Water Industries (Japan) 栗田工業株式会社'),
(51512, 'https://ror.org/01mrh1227', 'no_lang_code', 1, 'https://ror.org/01mrh1227 Koenig & Bauer (Germany)'),
(51513, 'https://ror.org/01jk08v54', 'no_lang_code', 1, 'https://ror.org/01jk08v54 Grohe (Germany)'),
(51514, 'https://ror.org/03znz6n75', 'no_lang_code', 1, 'https://ror.org/03znz6n75 Jungheinrich (Germany)'),
(51515, 'https://ror.org/02a8gj019', 'no_lang_code', 1, 'https://ror.org/02a8gj019 Kärcher (Germany)'),
(51516, 'https://ror.org/01kenqt68', 'no_lang_code', 1, 'https://ror.org/01kenqt68 Kyorin Holdings (Japan)'),
(51517, 'https://ror.org/00btywz65', 'no_lang_code', 1, 'https://ror.org/00btywz65 Kolon Industries (South Korea)'),
(51518, 'https://ror.org/052gr6m21', 'no_lang_code', 1, 'https://ror.org/052gr6m21 Konami (Japan) コナミホールディングス株式会社'),
(51519, 'https://ror.org/00daeq875', 'no_lang_code', 1, 'https://ror.org/00daeq875 LTS Lohmann Therapie-Systeme (Germany)'),
(51520, 'https://ror.org/00w69q520', 'no_lang_code', 1, 'https://ror.org/00w69q520 KaVo Dental (Germany)'),
(51521, 'https://ror.org/04724jg08', 'no_lang_code', 1, 'https://ror.org/04724jg08 Leggett and Platt (United States)'),
(51522, 'https://ror.org/022m5tt98', 'no_lang_code', 1, 'https://ror.org/022m5tt98 Kudelski (Switzerland)'),
(51523, 'https://ror.org/01nehjf29', 'no_lang_code', 1, 'https://ror.org/01nehjf29 Microsoft (Finland)'),
(51524, 'https://ror.org/02hze6e47', 'no_lang_code', 1, 'https://ror.org/02hze6e47 Laitram (United States)'),
(51525, 'https://ror.org/03h7zc707', 'no_lang_code', 1, 'https://ror.org/03h7zc707 National Oilwell Varco (United States)'),
(51526, 'https://ror.org/00n7ybs24', 'no_lang_code', 1, 'https://ror.org/00n7ybs24 LVMH (France)'),
(51527, 'https://ror.org/002h3mc90', 'no_lang_code', 1, 'https://ror.org/002h3mc90 Ingredion (United States)'),
(51528, 'https://ror.org/03yg75p21', 'no_lang_code', 1, 'https://ror.org/03yg75p21 Lely (Netherlands)'),
(51529, 'https://ror.org/051bx8r16', 'en', 1, 'https://ror.org/051bx8r16 National Research Development Corporation'),
(51530, 'https://ror.org/03nj49q02', 'no_lang_code', 1, 'https://ror.org/03nj49q02 Techtronic Industries (United States)'),
(51531, 'https://ror.org/00mjrb616', 'no_lang_code', 1, 'https://ror.org/00mjrb616 Kostal (Germany)'),
(51532, 'https://ror.org/035d9vx83', 'no_lang_code', 1, 'https://ror.org/035d9vx83 MagnaChip (South Korea)'),
(51533, 'https://ror.org/05bntm267', 'no_lang_code', 1, 'https://ror.org/05bntm267 Lear (United States)'),
(51534, 'https://ror.org/05ab5m237', 'no_lang_code', 1, 'https://ror.org/05ab5m237 Mannesmann (Germany)'),
(51535, 'https://ror.org/03cd01b85', 'no_lang_code', 1, 'https://ror.org/03cd01b85 Navistar International (United States)'),
(51536, 'https://ror.org/01y7ny159', 'no_lang_code', 1, 'https://ror.org/01y7ny159 Mitel (Canada)'),
(51537, 'https://ror.org/00t1wrw35', 'no_lang_code', 1, 'https://ror.org/00t1wrw35 Danaher (Germany)'),
(51538, 'https://ror.org/00nqjkj48', 'no_lang_code', 1, 'https://ror.org/00nqjkj48 NCR (United States)'),
(51539, 'https://ror.org/03qngpc73', 'no_lang_code', 1, 'https://ror.org/03qngpc73 Mitsuba (Japan) 株式会社ミツバ'),
(51540, 'https://ror.org/015gtxf45', 'no_lang_code', 1, 'https://ror.org/015gtxf45 Leifheit (Germany)'),
(51541, 'https://ror.org/025zfqq91', 'no_lang_code', 1, 'https://ror.org/025zfqq91 Baader Food Processing Machinery (Germany)'),
(51542, 'https://ror.org/0597vhv77', 'no_lang_code', 1, 'https://ror.org/0597vhv77 Noritsu (Japan) ノーリツ鋼機株式会社'),
(51543, 'https://ror.org/0539z1e56', 'no_lang_code', 1, 'https://ror.org/0539z1e56 Neoperl (Germany)'),
(51544, 'https://ror.org/00c4zcv51', 'no_lang_code', 1, 'https://ror.org/00c4zcv51 WiLAN (United States)'),
(51545, 'https://ror.org/029c9pv49', 'no_lang_code', 1, 'https://ror.org/029c9pv49 Mitsubishi Pencil (Japan) 三菱鉛筆株式会社'),
(51546, 'https://ror.org/02r3ht216', 'no_lang_code', 1, 'https://ror.org/02r3ht216 Quadient (France)'),
(51547, 'https://ror.org/0510bgz94', 'no_lang_code', 1, 'https://ror.org/0510bgz94 Mitsubishi Plastics (Japan) 三菱樹脂株式会社'),
(51548, 'https://ror.org/01rk2ws36', 'no_lang_code', 1, 'https://ror.org/01rk2ws36 Maschinenfabrik Reinhausen (Germany)'),
(51549, 'https://ror.org/00xn3j339', 'no_lang_code', 1, 'https://ror.org/00xn3j339 Masco (United States)'),
(51550, 'https://ror.org/04r4d0m68', 'no_lang_code', 1, 'https://ror.org/04r4d0m68 MAX Automation (Germany)'),
(51551, 'https://ror.org/03hnyzp26', 'no_lang_code', 1, 'https://ror.org/03hnyzp26 Fortune Brands Home and Security (United States)'),
(51552, 'https://ror.org/05vdj2825', 'no_lang_code', 1, 'https://ror.org/05vdj2825 Nihon Kohden (Japan) 日本光電工業株式会社'),
(51553, 'https://ror.org/057vhsp23', 'no_lang_code', 1, 'https://ror.org/057vhsp23 Nuctech (China) 威视股份'),
(51554, 'https://ror.org/03037gf85', 'no_lang_code', 1, 'https://ror.org/03037gf85 Licentia IT (Germany)'),
(51555, 'https://ror.org/045rsk983', 'no_lang_code', 1, 'https://ror.org/045rsk983 Karl Mayer (Germany)'),
(51556, 'https://ror.org/02ty1mz57', 'no_lang_code', 1, 'https://ror.org/02ty1mz57 Nippon Electric Glass (Japan) 日本電気硝子株式会社'),
(51557, 'https://ror.org/04fbzr589', 'no_lang_code', 1, 'https://ror.org/04fbzr589 Canon (Germany)'),
(51558, 'https://ror.org/01pvzsz53', 'no_lang_code', 1, 'https://ror.org/01pvzsz53 Mölnlycke Health Care (Sweden)'),
(51559, 'https://ror.org/031y85330', 'no_lang_code', 1, 'https://ror.org/031y85330 MediaTek (Singapore)'),
(51560, 'https://ror.org/01bwxpz44', 'no_lang_code', 1, 'https://ror.org/01bwxpz44 Milacron (Canada)'),
(51561, 'https://ror.org/02vwk0k38', 'no_lang_code', 1, 'https://ror.org/02vwk0k38 Molins (United Kingdom)'),
(51562, 'https://ror.org/047dt4g31', 'no_lang_code', 1, 'https://ror.org/047dt4g31 Meidensha (Japan) 明電舎株式会社'),
(51563, 'https://ror.org/045jy5f81', 'no_lang_code', 1, 'https://ror.org/045jy5f81 Littelfuse (United States)'),
(51564, 'https://ror.org/00zz3cs83', 'no_lang_code', 1, 'https://ror.org/00zz3cs83 Momentive (United States)'),
(51565, 'https://ror.org/01estnb82', 'no_lang_code', 1, 'https://ror.org/01estnb82 Nippon Soda (Japan) 日本曹達株式会社'),
(51566, 'https://ror.org/032a2g603', 'no_lang_code', 1, 'https://ror.org/032a2g603 Menicon (Japan)'),
(51567, 'https://ror.org/05pkpss54', 'no_lang_code', 1, 'https://ror.org/05pkpss54 Logitech (Switzerland)'),
(51568, 'https://ror.org/035017f20', 'no_lang_code', 1, 'https://ror.org/035017f20 Omya (Switzerland)'),
(51569, 'https://ror.org/02d5jz365', 'no_lang_code', 1, 'https://ror.org/02d5jz365 Open Invention Network (United States)'),
(51570, 'https://ror.org/01jrkry66', 'no_lang_code', 1, 'https://ror.org/01jrkry66 OpenText (Luxembourg)'),
(51571, 'https://ror.org/04dyest60', 'no_lang_code', 1, 'https://ror.org/04dyest60 Moulinex (France)'),
(51572, 'https://ror.org/01ppn7a90', 'no_lang_code', 1, 'https://ror.org/01ppn7a90 Nisshinbo Holdings (Japan) 日清紡ホールディングス株式会社'),
(51573, 'https://ror.org/03s6cj295', 'no_lang_code', 1, 'https://ror.org/03s6cj295 Osaka Gas (Japan) 大阪瓦斯株式会社'),
(51574, 'https://ror.org/03tp9c748', 'no_lang_code', 1, 'https://ror.org/03tp9c748 Belden (United States)'),
(51575, 'https://ror.org/010t6g940', 'no_lang_code', 1, 'https://ror.org/010t6g940 Rosenberger (Germany)'),
(51576, 'https://ror.org/01r2x3m69', 'no_lang_code', 1, 'https://ror.org/01r2x3m69 Paul Wurth (Luxembourg)'),
(51577, 'https://ror.org/02j73r478', 'no_lang_code', 1, 'https://ror.org/02j73r478 Roto Frank (Germany)'),
(51578, 'https://ror.org/03ybnsp25', 'no_lang_code', 1, 'https://ror.org/03ybnsp25 Valhi (United States)'),
(51579, 'https://ror.org/016jadm77', 'no_lang_code', 1, 'https://ror.org/016jadm77 PayPal (United States)'),
(51580, 'https://ror.org/02tmyej90', 'no_lang_code', 1, 'https://ror.org/02tmyej90 NLT Technologies (Japan)'),
(51581, 'https://ror.org/00wfjvd95', 'no_lang_code', 1, 'https://ror.org/00wfjvd95 Preh (Germany)'),
(51582, 'https://ror.org/02t5f1s27', 'no_lang_code', 1, 'https://ror.org/02t5f1s27 TiVo (United States)'),
(51583, 'https://ror.org/02vbg8350', 'no_lang_code', 1, 'https://ror.org/02vbg8350 Primetals Technologies (Austria)'),
(51584, 'https://ror.org/01jaz1w65', 'no_lang_code', 1, 'https://ror.org/01jaz1w65 Fabio Perini (Italy)'),
(51585, 'https://ror.org/05r7xc820', 'no_lang_code', 1, 'https://ror.org/05r7xc820 Owens-Illinois (United States)'),
(51586, 'https://ror.org/02wmkbh90', 'no_lang_code', 1, 'https://ror.org/02wmkbh90 Rütgers (Germany)'),
(51587, 'https://ror.org/04d8ddk13', 'no_lang_code', 1, 'https://ror.org/04d8ddk13 ProMOS Technologies (Taiwan)'),
(51588, 'https://ror.org/01h84at96', 'no_lang_code', 1, 'https://ror.org/01h84at96 Perstorp (Sweden)'),
(51589, 'https://ror.org/02n211843', 'no_lang_code', 1, 'https://ror.org/02n211843 Owens Corning (United States)'),
(51590, 'https://ror.org/03jbz0t39', 'fr', 1, 'https://ror.org/03jbz0t39 Groupe SEB'),
(51591, 'https://ror.org/047qggy27', 'no_lang_code', 1, 'https://ror.org/047qggy27 Sacmi (Italy)'),
(51592, 'https://ror.org/03z9zz970', 'no_lang_code', 1, 'https://ror.org/03z9zz970 Philip Morris International (Switzerland)'),
(51593, 'https://ror.org/017qqw141', 'no_lang_code', 1, 'https://ror.org/017qqw141 Singer (United States)'),
(51594, 'https://ror.org/02ehvej48', 'no_lang_code', 1, 'https://ror.org/02ehvej48 Rational (Germany)'),
(51595, 'https://ror.org/02ykjqt50', 'no_lang_code', 1, 'https://ror.org/02ykjqt50 Philips (Sweden)'),
(51596, 'https://ror.org/02gwwga82', 'no_lang_code', 1, 'https://ror.org/02gwwga82 Sennheiser (Germany)'),
(51597, 'https://ror.org/03at4pf87', 'no_lang_code', 1, 'https://ror.org/03at4pf87 Sivantos (Singapore)'),
(51598, 'https://ror.org/030893n97', 'no_lang_code', 1, 'https://ror.org/030893n97 Reckitt Benckiser (United States)'),
(51599, 'https://ror.org/00647p549', 'no_lang_code', 1, 'https://ror.org/00647p549 Reckitt Benckiser (Netherlands)'),
(51600, 'https://ror.org/007vmjm88', 'no_lang_code', 1, 'https://ror.org/007vmjm88 Seoul Semiconductor (South Korea)'),
(51601, 'https://ror.org/00f5kpb16', 'no_lang_code', 1, 'https://ror.org/00f5kpb16 Oostrotex (Belgium)'),
(51602, 'https://ror.org/03g3xrr94', 'no_lang_code', 1, 'https://ror.org/03g3xrr94 SEW Eurodrive (Germany)'),
(51603, 'https://ror.org/00qmxzb41', 'no_lang_code', 1, 'https://ror.org/00qmxzb41 Rehau (Germany)'),
(51604, 'https://ror.org/01t8ny673', 'no_lang_code', 1, 'https://ror.org/01t8ny673 Rehrig Pacific (United States)'),
(51605, 'https://ror.org/014m8ss57', 'no_lang_code', 1, 'https://ror.org/014m8ss57 Skis Rossignol (France)'),
(51606, 'https://ror.org/048htbx03', 'no_lang_code', 1, 'https://ror.org/048htbx03 Sandvik (Finland)'),
(51607, 'https://ror.org/03cac6636', 'no_lang_code', 1, 'https://ror.org/03cac6636 Research Corporation Technologies (United States)'),
(51608, 'https://ror.org/04bn2q369', 'no_lang_code', 1, 'https://ror.org/04bn2q369 Smiths Group (United States)'),
(51609, 'https://ror.org/01v37t224', 'no_lang_code', 1, 'https://ror.org/01v37t224 Sherwin Williams (United States)'),
(51610, 'https://ror.org/03ejprz16', 'no_lang_code', 1, 'https://ror.org/03ejprz16 Sherwood Services (United States)'),
(51611, 'https://ror.org/032hncp64', 'no_lang_code', 1, 'https://ror.org/032hncp64 Plasser and Theurer (Austria)'),
(51612, 'https://ror.org/01p21bq81', 'no_lang_code', 1, 'https://ror.org/01p21bq81 Shima Seiki (Japan) 島精機製作所');
INSERT INTO `rors` VALUES
(51613, 'https://ror.org/03n2fp057', 'no_lang_code', 1, 'https://ror.org/03n2fp057 Jacobs Douwe Egberts (Netherlands)'),
(51614, 'https://ror.org/02tagtf93', 'no_lang_code', 1, 'https://ror.org/02tagtf93 Plastipak Holdings (United States)'),
(51615, 'https://ror.org/04ma89d43', 'no_lang_code', 1, 'https://ror.org/04ma89d43 Socionext (Japan) 株式会社ソシオネクスト'),
(51616, 'https://ror.org/041dwme31', 'no_lang_code', 1, 'https://ror.org/041dwme31 Shop Vac (United States)'),
(51617, 'https://ror.org/02h39wj34', 'no_lang_code', 1, 'https://ror.org/02h39wj34 Showa Corporation 株式会社ショーワ'),
(51618, 'https://ror.org/05jjyhn41', 'no_lang_code', 1, 'https://ror.org/05jjyhn41 Sicpa (Switzerland)'),
(51619, 'https://ror.org/050txbd07', 'no_lang_code', 1, 'https://ror.org/050txbd07 Rite-Hite (United States)'),
(51620, 'https://ror.org/02yb4t415', 'no_lang_code', 1, 'https://ror.org/02yb4t415 Sidel (France)'),
(51621, 'https://ror.org/01nndby33', 'no_lang_code', 1, 'https://ror.org/01nndby33 Rittal (Germany)'),
(51622, 'https://ror.org/03s68nt92', 'no_lang_code', 1, 'https://ror.org/03s68nt92 Somfy (France)'),
(51623, 'https://ror.org/04jnrz567', 'no_lang_code', 1, 'https://ror.org/04jnrz567 Siegenia (Germany)'),
(51624, 'https://ror.org/02zhsgx35', 'no_lang_code', 1, 'https://ror.org/02zhsgx35 Sonoco (United States)'),
(51625, 'https://ror.org/00btvqy64', 'no_lang_code', 1, 'https://ror.org/00btvqy64 Pohang Iron and Steel (South Korea) 포항종합제철 주식회사'),
(51626, 'https://ror.org/04h2hh388', 'no_lang_code', 1, 'https://ror.org/04h2hh388 Rockwool (Denmark)'),
(51627, 'https://ror.org/05xbyr893', 'no_lang_code', 1, 'https://ror.org/05xbyr893 Southco (United States)'),
(51628, 'https://ror.org/01t1aqm70', 'no_lang_code', 1, 'https://ror.org/01t1aqm70 Spectrum Brands (United States)'),
(51629, 'https://ror.org/051vpna32', 'no_lang_code', 1, 'https://ror.org/051vpna32 Siemens (Singapore)'),
(51630, 'https://ror.org/01tshah34', 'no_lang_code', 1, 'https://ror.org/01tshah34 Roehm (Germany)'),
(51631, 'https://ror.org/056egm241', 'no_lang_code', 1, 'https://ror.org/056egm241 Siemens (Switzerland)'),
(51632, 'https://ror.org/04qh5fy32', 'no_lang_code', 1, 'https://ror.org/04qh5fy32 Abbott (Sweden)'),
(51633, 'https://ror.org/02g1cct97', 'no_lang_code', 1, 'https://ror.org/02g1cct97 Sunonwealth Electric Machine Industry (Taiwan)'),
(51634, 'https://ror.org/01523aj77', 'no_lang_code', 1, 'https://ror.org/01523aj77 Sig Holding (Switzerland) Societa Industriale Svizzera Société Industrielle Suisse'),
(51635, 'https://ror.org/003d0m863', 'no_lang_code', 1, 'https://ror.org/003d0m863 Stabilus (Germany)'),
(51636, 'https://ror.org/02b00gr50', 'no_lang_code', 1, 'https://ror.org/02b00gr50 Teradyne (United States)'),
(51637, 'https://ror.org/01ajr8702', 'no_lang_code', 1, 'https://ror.org/01ajr8702 Total (United States)'),
(51638, 'https://ror.org/04cv1dy58', 'no_lang_code', 1, 'https://ror.org/04cv1dy58 Maire Tecnimont (Netherlands)'),
(51639, 'https://ror.org/00n22rm50', 'no_lang_code', 1, 'https://ror.org/00n22rm50 United States Gypsum (United States)'),
(51640, 'https://ror.org/03pfkgd48', 'no_lang_code', 1, 'https://ror.org/03pfkgd48 Toyo Seikan (Japan) 東洋製罐グループホールディングス株式会社'),
(51641, 'https://ror.org/031tq8403', 'no_lang_code', 1, 'https://ror.org/031tq8403 Synaptics (United States)'),
(51642, 'https://ror.org/02sq1ad32', 'no_lang_code', 1, 'https://ror.org/02sq1ad32 Unitika (Japan) ユニチカ株式会社'),
(51643, 'https://ror.org/02e0wrh48', 'no_lang_code', 1, 'https://ror.org/02e0wrh48 Universal Electronics (United States)'),
(51644, 'https://ror.org/02yhzgr66', 'no_lang_code', 1, 'https://ror.org/02yhzgr66 Starkey Hearing Technologies (United States)'),
(51645, 'https://ror.org/03cvjvq49', 'no_lang_code', 1, 'https://ror.org/03cvjvq49 Texas Instruments (Germany)'),
(51646, 'https://ror.org/01w2zpd04', 'no_lang_code', 1, 'https://ror.org/01w2zpd04 T-Mobile (United States)'),
(51647, 'https://ror.org/02765fh44', 'no_lang_code', 1, 'https://ror.org/02765fh44 Uponor (Sweden)'),
(51648, 'https://ror.org/03epmm839', 'no_lang_code', 1, 'https://ror.org/03epmm839 Tachi S (Japan)'),
(51649, 'https://ror.org/02ex0xe53', 'no_lang_code', 1, 'https://ror.org/02ex0xe53 THK (Japan) ティエチケー'),
(51650, 'https://ror.org/02rvfjx92', 'no_lang_code', 1, 'https://ror.org/02rvfjx92 Taiwan Semiconductor Manufacturing Company (United States)'),
(51651, 'https://ror.org/03hta7474', 'no_lang_code', 1, 'https://ror.org/03hta7474 Tracto-Technik (Germany)'),
(51652, 'https://ror.org/043a53k35', 'no_lang_code', 1, 'https://ror.org/043a53k35 Trend Micro (Japan) トレンドマイクロ株式会社'),
(51653, 'https://ror.org/02xe1qe66', 'no_lang_code', 1, 'https://ror.org/02xe1qe66 Usui (Japan)'),
(51654, 'https://ror.org/03bmavr12', 'no_lang_code', 1, 'https://ror.org/03bmavr12 Stiebel Eltron (Germany)'),
(51655, 'https://ror.org/03zp5py62', 'no_lang_code', 1, 'https://ror.org/03zp5py62 Kion Group (Germany)'),
(51656, 'https://ror.org/05ha8e826', 'no_lang_code', 1, 'https://ror.org/05ha8e826 Technicolor (United States)'),
(51657, 'https://ror.org/03aewna27', 'no_lang_code', 1, 'https://ror.org/03aewna27 Tanaka Holdings (Japan) 田中貴金属グループ'),
(51658, 'https://ror.org/03m52qe71', 'no_lang_code', 1, 'https://ror.org/03m52qe71 Truetzschler (Germany) Trützschler'),
(51659, 'https://ror.org/0372e3p95', 'no_lang_code', 1, 'https://ror.org/0372e3p95 Tanita (Japan) 株式会社タニタ'),
(51660, 'https://ror.org/04jpbn971', 'no_lang_code', 1, 'https://ror.org/04jpbn971 Strix (Isle of Man)'),
(51661, 'https://ror.org/04zkdev66', 'no_lang_code', 1, 'https://ror.org/04zkdev66 TS Tech (Japan)'),
(51662, 'https://ror.org/03e7jm741', 'no_lang_code', 1, 'https://ror.org/03e7jm741 Valmet Automotive (Finland)'),
(51663, 'https://ror.org/03k3w8z68', 'no_lang_code', 1, 'https://ror.org/03k3w8z68 Sumitomo Osaka Cement (Japan) 住友大阪セメント'),
(51664, 'https://ror.org/00eftnw67', 'no_lang_code', 1, 'https://ror.org/00eftnw67 Timex (United States)'),
(51665, 'https://ror.org/03yjna842', 'no_lang_code', 1, 'https://ror.org/03yjna842 Tecumseh Products (United States)'),
(51666, 'https://ror.org/00jjd3f53', 'no_lang_code', 1, 'https://ror.org/00jjd3f53 Comtech Telecommunications (United States)'),
(51667, 'https://ror.org/03s182269', 'no_lang_code', 1, 'https://ror.org/03s182269 Valspar (United States)'),
(51668, 'https://ror.org/0288f6787', 'no_lang_code', 1, 'https://ror.org/0288f6787 Toda Kogyo (Japan) 戸田工業株式会社'),
(51669, 'https://ror.org/00d8znk88', 'no_lang_code', 1, 'https://ror.org/00d8znk88 Sun Chemical (United States)'),
(51670, 'https://ror.org/05v88aw62', 'no_lang_code', 1, 'https://ror.org/05v88aw62 TE Connectivity (Belgium)'),
(51671, 'https://ror.org/04zj4k586', 'no_lang_code', 1, 'https://ror.org/04zj4k586 Tokuyama (Japan) 株式会社トクヤマ'),
(51672, 'https://ror.org/04ba8k254', 'no_lang_code', 1, 'https://ror.org/04ba8k254 Viessmann (Germany)'),
(51673, 'https://ror.org/052v10q58', 'no_lang_code', 1, 'https://ror.org/052v10q58 VDO (Germany)'),
(51674, 'https://ror.org/02h04v153', 'no_lang_code', 1, 'https://ror.org/02h04v153 VKR Holding (Denmark)'),
(51675, 'https://ror.org/05xprgr51', 'no_lang_code', 1, 'https://ror.org/05xprgr51 Veritas (United States)'),
(51676, 'https://ror.org/02p5kxa09', 'no_lang_code', 1, 'https://ror.org/02p5kxa09 Tomy (Japan) 株式会社タカラトミー'),
(51677, 'https://ror.org/05j70af50', 'no_lang_code', 1, 'https://ror.org/05j70af50 Toro (United States)'),
(51678, 'https://ror.org/04p6z8d41', 'no_lang_code', 1, 'https://ror.org/04p6z8d41 Victaulic (United States)'),
(51679, 'https://ror.org/055b77k30', 'no_lang_code', 1, 'https://ror.org/055b77k30 Wabtec (United States)'),
(51680, 'https://ror.org/04407hd58', 'no_lang_code', 1, 'https://ror.org/04407hd58 Wabco (Germany)'),
(51681, 'https://ror.org/010fjvp93', 'no_lang_code', 1, 'https://ror.org/010fjvp93 Tenneco (United States)'),
(51682, 'https://ror.org/001tx6p24', 'no_lang_code', 1, 'https://ror.org/001tx6p24 Wacom (Japan) 株式会社ワコム'),
(51683, 'https://ror.org/04vkkat38', 'no_lang_code', 1, 'https://ror.org/04vkkat38 Teradata (United States)'),
(51684, 'https://ror.org/01nc0cp29', 'no_lang_code', 1, 'https://ror.org/01nc0cp29 United Parcel Service (United States)'),
(51685, 'https://ror.org/01xe96535', 'no_lang_code', 1, 'https://ror.org/01xe96535 Wonderland Nurserygoods (Taiwan)'),
(51686, 'https://ror.org/05mrw0a87', 'no_lang_code', 1, 'https://ror.org/05mrw0a87 Whirlpool (Brazil)'),
(51687, 'https://ror.org/01yhac426', 'no_lang_code', 1, 'https://ror.org/01yhac426 Memjet (Ireland)'),
(51688, 'https://ror.org/04mrbz859', 'no_lang_code', 1, 'https://ror.org/04mrbz859 Walker Digital (United States)'),
(51689, 'https://ror.org/051pbge72', 'no_lang_code', 1, 'https://ror.org/051pbge72 WiLAN (Canada)'),
(51690, 'https://ror.org/038xm7148', 'no_lang_code', 1, 'https://ror.org/038xm7148 Microsemi (Canada)'),
(51691, 'https://ror.org/02864sx65', 'no_lang_code', 1, 'https://ror.org/02864sx65 Wanzl (Germany)'),
(51692, 'https://ror.org/013y0vx58', 'no_lang_code', 1, 'https://ror.org/013y0vx58 Widex (Denmark)'),
(51693, 'https://ror.org/00v5bx942', 'en', 1, 'https://ror.org/00v5bx942 Nahda College كلية النهضة'),
(51694, 'https://ror.org/029f7bn57', 'no_lang_code', 1, 'https://ror.org/029f7bn57 Xiaomi (China)'),
(51695, 'https://ror.org/03ca9sh23', 'no_lang_code', 1, 'https://ror.org/03ca9sh23 Windmoeller & Hoelscher (Germany)'),
(51696, 'https://ror.org/01na6q190', 'no_lang_code', 1, 'https://ror.org/01na6q190 Wavin (Netherlands)'),
(51697, 'https://ror.org/05cfb4981', 'no_lang_code', 1, 'https://ror.org/05cfb4981 Winkhaus (Germany)'),
(51698, 'https://ror.org/03r1cgk81', 'no_lang_code', 1, 'https://ror.org/03r1cgk81 Webasto (Germany)'),
(51699, 'https://ror.org/03wmnrc91', 'no_lang_code', 1, 'https://ror.org/03wmnrc91 Yakult Honsha (Japan) ヤクルト'),
(51700, 'https://ror.org/05nepfp92', 'no_lang_code', 1, 'https://ror.org/05nepfp92 Wintek (Taiwan)'),
(51701, 'https://ror.org/02stt7r85', 'no_lang_code', 1, 'https://ror.org/02stt7r85 Weidmüller (Germany)'),
(51702, 'https://ror.org/059mm1v54', 'no_lang_code', 1, 'https://ror.org/059mm1v54 Wirtgen (Germany)'),
(51703, 'https://ror.org/00xysp757', 'no_lang_code', 1, 'https://ror.org/00xysp757 Yanmar (Japan) ヤンマー株式会社'),
(51704, 'https://ror.org/03khjkh72', 'no_lang_code', 1, 'https://ror.org/03khjkh72 Wolverine Worldwide (United States)'),
(51705, 'https://ror.org/04dr1y470', 'no_lang_code', 1, 'https://ror.org/04dr1y470 Welch Allyn (United States)'),
(51706, 'https://ror.org/00jkvq232', 'en', 1, 'https://ror.org/00jkvq232 Jon Bon Jovi Soul Foundation'),
(51707, 'https://ror.org/02h7t2a16', 'en', 1, 'https://ror.org/02h7t2a16 Irene W. and C.B. Pennington Foundation'),
(51708, 'https://ror.org/00m06j627', 'en', 1, 'https://ror.org/00m06j627 Inlaks Shivdasani Foundation'),
(51709, 'https://ror.org/00g2cf802', 'no_lang_code', 1, 'https://ror.org/00g2cf802 Melaka Manipal Medical College'),
(51710, 'https://ror.org/05g1jvk52', 'en', 1, 'https://ror.org/05g1jvk52 Irish Heart Foundation'),
(51711, 'https://ror.org/04d00t593', 'en', 1, 'https://ror.org/04d00t593 Irish Hospice Foundation'),
(51712, 'https://ror.org/02gcfcp23', 'en', 1, 'https://ror.org/02gcfcp23 Irish Youth Justice Service'),
(51713, 'https://ror.org/04cc1bd73', 'en', 1, 'https://ror.org/04cc1bd73 Jeffrey Modell Foundation'),
(51714, 'https://ror.org/02x1h6095', 'en', 1, 'https://ror.org/02x1h6095 Kinetic Foundation'),
(51715, 'https://ror.org/0029x1m59', 'no_lang_code', 1, 'https://ror.org/0029x1m59 Jegs (United States)'),
(51716, 'https://ror.org/05a0f0y47', 'en', 1, 'https://ror.org/05a0f0y47 Irvine Health Foundation'),
(51717, 'https://ror.org/051tmqm80', 'en', 1, 'https://ror.org/051tmqm80 JEHT Foundation'),
(51718, 'https://ror.org/01p7hf548', 'en', 1, 'https://ror.org/01p7hf548 Kato Foundation for Promotion of Science 公益財団法人 加藤科学振興会'),
(51719, 'https://ror.org/04tnf8c76', 'en', 1, 'https://ror.org/04tnf8c76 ISEF Foundation'),
(51720, 'https://ror.org/03174hp70', 'en', 1, 'https://ror.org/03174hp70 Jerome Foundation'),
(51721, 'https://ror.org/01swtxv06', 'en', 1, 'https://ror.org/01swtxv06 Jerusalem Fund'),
(51722, 'https://ror.org/059sg9z95', 'no_lang_code', 1, 'https://ror.org/059sg9z95 Kaytee Avian Foundation'),
(51723, 'https://ror.org/021pjrd95', 'no_lang_code', 1, 'https://ror.org/021pjrd95 AMEN'),
(51724, 'https://ror.org/00w3qd893', 'en', 1, 'https://ror.org/00w3qd893 Jessie Ball duPont Fund'),
(51725, 'https://ror.org/02xw5vd84', 'en', 1, 'https://ror.org/02xw5vd84 Keep A Breast Foundation'),
(51726, 'https://ror.org/04x21zc26', 'en', 1, 'https://ror.org/04x21zc26 Kelley Foundation'),
(51727, 'https://ror.org/020xw1f06', 'en', 1, 'https://ror.org/020xw1f06 Italian Scientists and Scholars in North America Foundation'),
(51728, 'https://ror.org/041qfnf56', 'en', 1, 'https://ror.org/041qfnf56 Jacob Randall Foundation for Morquio'),
(51729, 'https://ror.org/02tfves91', 'en', 1, 'https://ror.org/02tfves91 ITP Foundation'),
(51730, 'https://ror.org/025frct77', 'en', 1, 'https://ror.org/025frct77 Jewish Community Foundation of Greater Kansas City'),
(51731, 'https://ror.org/02zzsnz14', 'en', 1, 'https://ror.org/02zzsnz14 Kellner Family Foundation'),
(51732, 'https://ror.org/046keqp87', 'en', 1, 'https://ror.org/046keqp87 Jacques and Gloria Gossweiler Foundation Jacques und Gloria Gossweiler - Stiftung'),
(51733, 'https://ror.org/03xpmjk25', 'en', 1, 'https://ror.org/03xpmjk25 Ittleson Foundation'),
(51734, 'https://ror.org/02jht8768', 'en', 1, 'https://ror.org/02jht8768 Hyams Foundation'),
(51735, 'https://ror.org/05cszw148', 'en', 1, 'https://ror.org/05cszw148 Kempe Foundation Kempestiftelserna'),
(51736, 'https://ror.org/01h44fm97', 'en', 1, 'https://ror.org/01h44fm97 Jewish United Fund of Metropolitan Chicago'),
(51737, 'https://ror.org/02b773808', 'en', 1, 'https://ror.org/02b773808 James H. Cummings Foundation'),
(51738, 'https://ror.org/05gv5sv44', 'en', 1, 'https://ror.org/05gv5sv44 International Association of Sedimentologists'),
(51739, 'https://ror.org/027j3y306', 'en', 1, 'https://ror.org/027j3y306 James H. Hall Eye Center'),
(51740, 'https://ror.org/005fa0265', 'en', 1, 'https://ror.org/005fa0265 James Jones Literary Society'),
(51741, 'https://ror.org/012v13k49', 'en', 1, 'https://ror.org/012v13k49 International Cancer Imaging Society'),
(51742, 'https://ror.org/05rvwze02', 'en', 1, 'https://ror.org/05rvwze02 Jewish Women’s Foundation of Metropolitan Detroit'),
(51743, 'https://ror.org/01kgb3c72', 'en', 1, 'https://ror.org/01kgb3c72 Kennedys Disease Association'),
(51744, 'https://ror.org/00hw04726', 'no_lang_code', 1, 'https://ror.org/00hw04726 International Council of Ophthalmology'),
(51745, 'https://ror.org/00n2q2t03', 'en', 1, 'https://ror.org/00n2q2t03 Jewish Women''s Foundation of New York'),
(51746, 'https://ror.org/039r7y922', 'en', 1, 'https://ror.org/039r7y922 International Dragonfly Fund'),
(51747, 'https://ror.org/021hndv62', 'en', 1, 'https://ror.org/021hndv62 JGW Patterson Foundation'),
(51748, 'https://ror.org/00s3cdx23', 'en', 1, 'https://ror.org/00s3cdx23 James Pantyfedwen Foundation'),
(51749, 'https://ror.org/046wx6811', 'en', 1, 'https://ror.org/046wx6811 International Education Research Foundation'),
(51750, 'https://ror.org/04ak1xq87', 'en', 1, 'https://ror.org/04ak1xq87 Kent Richard Hofmann Foundation'),
(51751, 'https://ror.org/005vegy94', 'en', 1, 'https://ror.org/005vegy94 International Essential Tremor Foundation'),
(51752, 'https://ror.org/033esc660', 'en', 1, 'https://ror.org/033esc660 International Foundation for Electoral Systems'),
(51753, 'https://ror.org/02by3t490', 'en', 1, 'https://ror.org/02by3t490 International Foundation for Ethical Research'),
(51754, 'https://ror.org/03j8jd231', 'en', 1, 'https://ror.org/03j8jd231 Japan Cassis Association 日本カシス協会'),
(51755, 'https://ror.org/05haf2k11', 'en', 1, 'https://ror.org/05haf2k11 Veterans of Foreign Wars'),
(51756, 'https://ror.org/05fy0j332', 'en', 1, 'https://ror.org/05fy0j332 Japan Ecology Foundation 般財団法人日本環境財団'),
(51757, 'https://ror.org/03dg7tc87', 'en', 1, 'https://ror.org/03dg7tc87 International Foundation for Functional Gastrointestinal Disorders'),
(51758, 'https://ror.org/01qgvfw88', 'en', 1, 'https://ror.org/01qgvfw88 Kettering Family Foundation'),
(51759, 'https://ror.org/00qcdw388', 'en', 1, 'https://ror.org/00qcdw388 International Foundation for Research in Experimental Economics'),
(51760, 'https://ror.org/05mnth393', 'en', 1, 'https://ror.org/05mnth393 Laidlaw Foundation'),
(51761, 'https://ror.org/04yc0k443', 'en', 1, 'https://ror.org/04yc0k443 Japan Foundation for Aging and Health 高齢化と健康のための国際交流基金'),
(51762, 'https://ror.org/00tz3zt92', 'en', 1, 'https://ror.org/00tz3zt92 Jiren Charity Foundation'),
(51763, 'https://ror.org/039b19p38', 'en', 1, 'https://ror.org/039b19p38 International Franchise Association'),
(51764, 'https://ror.org/0293d8d10', 'en', 1, 'https://ror.org/0293d8d10 Japan Foundation for Applied Enzymology 公益財団法人 日本応用酵素協会'),
(51765, 'https://ror.org/04ts2vz32', 'en', 1, 'https://ror.org/04ts2vz32 JM Foundation'),
(51766, 'https://ror.org/04pc51341', 'en', 1, 'https://ror.org/04pc51341 International Furnishings and Design Association'),
(51767, 'https://ror.org/024jbvq59', 'en', 1, 'https://ror.org/024jbvq59 Japan Foundation London'),
(51768, 'https://ror.org/03aqkyr95', 'en', 1, 'https://ror.org/03aqkyr95 Kidneeds'),
(51769, 'https://ror.org/01j8qgg43', 'de', 1, 'https://ror.org/01j8qgg43 Joachim Herz Stiftung'),
(51770, 'https://ror.org/04gg2hw16', 'en', 1, 'https://ror.org/04gg2hw16 International Game Developers Association Foundation'),
(51771, 'https://ror.org/01d1x1659', 'en', 1, 'https://ror.org/01d1x1659 Joan Rothenberg Family Foundation'),
(51772, 'https://ror.org/043c07w57', 'en', 1, 'https://ror.org/043c07w57 Kidney Foundation of Central Pennsylvania'),
(51773, 'https://ror.org/022bzg803', 'en', 1, 'https://ror.org/022bzg803 Landbruks- og matdepartementet Ministry of Agriculture and Food'),
(51774, 'https://ror.org/01pgbc160', 'en', 1, 'https://ror.org/01pgbc160 Japan Foundation Manila'),
(51775, 'https://ror.org/02s4dmy28', 'en', 1, 'https://ror.org/02s4dmy28 Landscape Alberta Nursery Trades Association'),
(51776, 'https://ror.org/01cb82b28', 'en', 1, 'https://ror.org/01cb82b28 Lungs for Life'),
(51777, 'https://ror.org/00w4ej470', 'en', 1, 'https://ror.org/00w4ej470 Japan Foundation Sydney'),
(51778, 'https://ror.org/02k13dd86', 'en', 1, 'https://ror.org/02k13dd86 Landscape Architecture Foundation'),
(51779, 'https://ror.org/044xgn791', 'en', 1, 'https://ror.org/044xgn791 Lupina Foundation'),
(51780, 'https://ror.org/01jz68c66', 'en', 1, 'https://ror.org/01jz68c66 Joe Andruzzi Foundation'),
(51781, 'https://ror.org/05emg8z25', 'en', 1, 'https://ror.org/05emg8z25 Landsteiner Foundation for Blood Transfusion Research Landsteiner Stichting voor Bloedtransfusieresearch'),
(51782, 'https://ror.org/0207wsg03', 'en', 1, 'https://ror.org/0207wsg03 LankellyChase Foundation'),
(51783, 'https://ror.org/00h656961', 'en', 1, 'https://ror.org/00h656961 Lyme Disease Association'),
(51784, 'https://ror.org/05ac1r749', 'en', 1, 'https://ror.org/05ac1r749 Kilo Diabetes and Vascular Research Foundation'),
(51785, 'https://ror.org/026jg0516', 'no_lang_code', 1, 'https://ror.org/026jg0516 Johnson Controls (Japan)'),
(51786, 'https://ror.org/02900by63', 'en', 1, 'https://ror.org/02900by63 Japanese Society of Clinical Pharmacology and Therapeutics'),
(51787, 'https://ror.org/05jyk8r28', 'en', 1, 'https://ror.org/05jyk8r28 Japan Securities Scholarship Foundation 日本証券奨学財団'),
(51788, 'https://ror.org/00n60x364', 'en', 1, 'https://ror.org/00n60x364 King Faisal Foundation'),
(51789, 'https://ror.org/030q46522', 'en', 1, 'https://ror.org/030q46522 Lanzhou Science and Technology Bureau 兰州市科学技术局'),
(51790, 'https://ror.org/02pbe9j32', 'en', 1, 'https://ror.org/02pbe9j32 Japan Society of Ultrasonics in Medicine 公益社団法人日本超音波医学会'),
(51791, 'https://ror.org/04kf79x57', 'en', 1, 'https://ror.org/04kf79x57 John E. Fogarty Foundation'),
(51792, 'https://ror.org/03hr73p06', 'en', 1, 'https://ror.org/03hr73p06 Lymphoma Foundation'),
(51793, 'https://ror.org/04mjn9f12', 'en', 1, 'https://ror.org/04mjn9f12 Japan North America Medical Exchange Foundation 国際交流基金 日米センター'),
(51794, 'https://ror.org/02fvjnz56', 'en', 1, 'https://ror.org/02fvjnz56 Japan United States Friendship Commission'),
(51795, 'https://ror.org/01899q369', 'no_lang_code', 1, 'https://ror.org/01899q369 Kinik (Taiwan)'),
(51796, 'https://ror.org/04873vb58', 'en', 1, 'https://ror.org/04873vb58 Lynch Foundation'),
(51797, 'https://ror.org/031z7rc44', 'en', 1, 'https://ror.org/031z7rc44 John F. Kennedy Presidential Library and Museum'),
(51798, 'https://ror.org/05ycax488', 'en', 1, 'https://ror.org/05ycax488 Bradley Foundation'),
(51799, 'https://ror.org/04w1pz213', 'en', 1, 'https://ror.org/04w1pz213 Japan Dental Association 日本歯科医師会'),
(51800, 'https://ror.org/04qsqk067', 'en', 1, 'https://ror.org/04qsqk067 Kinsman Foundation'),
(51801, 'https://ror.org/015bgb355', 'no_lang_code', 1, 'https://ror.org/015bgb355 Lynn Chase Designs (United States)'),
(51802, 'https://ror.org/00mrtvk90', 'en', 1, 'https://ror.org/00mrtvk90 John Merck Fund'),
(51803, 'https://ror.org/01vwxyv67', 'en', 1, 'https://ror.org/01vwxyv67 Lynn Sage Cancer Research Foundation'),
(51804, 'https://ror.org/013bnca37', 'da', 1, 'https://ror.org/013bnca37 Kirsten og Freddy Johansens Fond'),
(51805, 'https://ror.org/05ykzvv97', 'da', 1, 'https://ror.org/05ykzvv97 Jascha Fonden'),
(51806, 'https://ror.org/0216taa64', 'en', 1, 'https://ror.org/0216taa64 Mcnulty Foundation'),
(51807, 'https://ror.org/02cx5b758', 'en', 1, 'https://ror.org/02cx5b758 Laura Moore Cunningham Foundation'),
(51808, 'https://ror.org/04rrtdm25', 'en', 1, 'https://ror.org/04rrtdm25 Lynne Cohen Foundation'),
(51809, 'https://ror.org/04gw71m56', 'en', 1, 'https://ror.org/04gw71m56 Law Foundation of Nova Scotia'),
(51810, 'https://ror.org/02nfebn65', 'en', 1, 'https://ror.org/02nfebn65 Jawaharlal Nehru Memorial Fund'),
(51811, 'https://ror.org/02dezpk37', 'en', 1, 'https://ror.org/02dezpk37 Patricia Cronin Foundation'),
(51812, 'https://ror.org/00y105102', 'en', 1, 'https://ror.org/00y105102 John P. Murphy Foundation'),
(51813, 'https://ror.org/03qzp5f03', 'en', 1, 'https://ror.org/03qzp5f03 Lawrence Foundation'),
(51814, 'https://ror.org/05jj8cx84', 'en', 1, 'https://ror.org/05jj8cx84 John R. Oishei Foundation'),
(51815, 'https://ror.org/05nz14y12', 'da', 1, 'https://ror.org/05nz14y12 Aarhus Stadsarkiv'),
(51816, 'https://ror.org/028a0c712', 'no_lang_code', 1, 'https://ror.org/028a0c712 Blue Planet Innovation (Denmark)'),
(51817, 'https://ror.org/02s7h4e59', 'no_lang_code', 1, 'https://ror.org/02s7h4e59 Bonus'),
(51818, 'https://ror.org/00esqty25', 'en', 1, 'https://ror.org/00esqty25 Borean Innovation'),
(51819, 'https://ror.org/02dwv3218', 'no_lang_code', 1, 'https://ror.org/02dwv3218 Danaher (Singapore)'),
(51820, 'https://ror.org/045d26a95', 'no_lang_code', 1, 'https://ror.org/045d26a95 Candofilm (Denmark)'),
(51821, 'https://ror.org/02zttjj06', 'no_lang_code', 1, 'https://ror.org/02zttjj06 Capnova (Denmark)'),
(51822, 'https://ror.org/02495av31', 'da', 1, 'https://ror.org/02495av31 Selskabet for Skole- og Uddannelseshistorie'),
(51823, 'https://ror.org/057q2wg27', 'no_lang_code', 1, 'https://ror.org/057q2wg27 Chilbal Film (Denmark)'),
(51824, 'https://ror.org/00jrs9d94', 'no_lang_code', 1, 'https://ror.org/00jrs9d94 Selskabet til Forskning i Arbejderbevægelsens Historie Sfah (Denmark)'),
(51825, 'https://ror.org/0202qvf63', 'no_lang_code', 1, 'https://ror.org/0202qvf63 Kunstgreb (Denmark)'),
(51826, 'https://ror.org/010g5w962', 'no_lang_code', 1, 'https://ror.org/010g5w962 Mitsubishi Paper Mills (Japan) 三菱製紙株式会社'),
(51827, 'https://ror.org/01wh3fp78', 'no_lang_code', 1, 'https://ror.org/01wh3fp78 Initiatives (Denmark)'),
(51828, 'https://ror.org/0155jx986', 'en', 1, 'https://ror.org/0155jx986 Connect Denmark'),
(51829, 'https://ror.org/01pw21703', 'en', 1, 'https://ror.org/01pw21703 Danish Cattle Research Centre Danmarks Kvægforskningscenter'),
(51830, 'https://ror.org/025260c90', 'en', 1, 'https://ror.org/025260c90 Innovation Center Denmark'),
(51831, 'https://ror.org/033gqt621', 'en', 1, 'https://ror.org/033gqt621 Innovation Center Denmark'),
(51832, 'https://ror.org/0246qdk84', 'en', 1, 'https://ror.org/0246qdk84 Innovation Center Denmark'),
(51833, 'https://ror.org/03b855a97', 'no_lang_code', 1, 'https://ror.org/03b855a97 Sorbisense (Denmark)'),
(51834, 'https://ror.org/05tdr7z74', 'en', 1, 'https://ror.org/05tdr7z74 Innovation Center Denmark'),
(51835, 'https://ror.org/03beyfa67', 'no_lang_code', 1, 'https://ror.org/03beyfa67 Labster (Denmark)'),
(51836, 'https://ror.org/03ebpm503', 'no_lang_code', 1, 'https://ror.org/03ebpm503 ACCO Brands (United States)'),
(51837, 'https://ror.org/0000v4966', 'en', 1, 'https://ror.org/0000v4966 Innovation Center Denmark'),
(51838, 'https://ror.org/04cg7vv67', 'en', 1, 'https://ror.org/04cg7vv67 Innovation Center Denmark'),
(51839, 'https://ror.org/03q4j4z17', 'no_lang_code', 1, 'https://ror.org/03q4j4z17 Damvad (Denmark)'),
(51840, 'https://ror.org/01twdvx49', 'da', 1, 'https://ror.org/01twdvx49 Danmarks Radio'),
(51841, 'https://ror.org/04ytwdt71', 'no_lang_code', 1, 'https://ror.org/04ytwdt71 Afa Jcdecaux (Denmark)'),
(51842, 'https://ror.org/02f83ba58', 'no_lang_code', 1, 'https://ror.org/02f83ba58 JazzDanmark (Denmark)'),
(51843, 'https://ror.org/002yb3q28', 'da', 1, 'https://ror.org/002yb3q28 Moesgaard Museum'),
(51844, 'https://ror.org/038mpcy29', 'en', 1, 'https://ror.org/038mpcy29 Science Museerne Science Museums'),
(51845, 'https://ror.org/02w4nb893', 'no_lang_code', 1, 'https://ror.org/02w4nb893 Mortensen Film (Denmark)'),
(51846, 'https://ror.org/05551pd32', 'da', 1, 'https://ror.org/05551pd32 Albertslund Kommune'),
(51847, 'https://ror.org/05fz6ex02', 'no_lang_code', 1, 'https://ror.org/05fz6ex02 Alphafilm and Kommunikation (Denmark)'),
(51848, 'https://ror.org/00ptcn250', 'no_lang_code', 1, 'https://ror.org/00ptcn250 STV Production (Denmark)'),
(51849, 'https://ror.org/009rtx153', 'en', 1, 'https://ror.org/009rtx153 Danish Centre for Marine Research'),
(51850, 'https://ror.org/02qm2nb52', 'en', 1, 'https://ror.org/02qm2nb52 Arktisk Institut Danish Arctic Institute'),
(51851, 'https://ror.org/0192aem33', 'da', 1, 'https://ror.org/0192aem33 Dansk Historisk Fællesforening'),
(51852, 'https://ror.org/01g35pk06', 'no_lang_code', 1, 'https://ror.org/01g35pk06 Monday Media (Denmark)'),
(51853, 'https://ror.org/03pyjhg42', 'no_lang_code', 1, 'https://ror.org/03pyjhg42 Syddansk Innovation (Denmark)'),
(51854, 'https://ror.org/01cajaf96', 'da', 1, 'https://ror.org/01cajaf96 Dansk Sprognævn'),
(51855, 'https://ror.org/02bn96467', 'da', 1, 'https://ror.org/02bn96467 Naturvidenskabernes Hus'),
(51856, 'https://ror.org/02kmr3f22', 'en', 1, 'https://ror.org/02kmr3f22 Science Theatre Videnskabsteatret'),
(51857, 'https://ror.org/0005s7205', 'no_lang_code', 1, 'https://ror.org/0005s7205 Team Production (Denmark)'),
(51858, 'https://ror.org/02eya7c23', 'da', 1, 'https://ror.org/02eya7c23 Ny Carlsberg Glyptotek'),
(51859, 'https://ror.org/01eagnx62', 'no_lang_code', 1, 'https://ror.org/01eagnx62 Zebra Media (Denmark)'),
(51860, 'https://ror.org/03cpssz74', 'en', 1, 'https://ror.org/03cpssz74 Macula Vision Research Foundation'),
(51861, 'https://ror.org/0116j4g69', 'da', 1, 'https://ror.org/0116j4g69 Det Grønlandske Selskab'),
(51862, 'https://ror.org/02fceca45', 'en', 1, 'https://ror.org/02fceca45 Macular Disease Foundation Australia'),
(51863, 'https://ror.org/042h3mz57', 'en', 1, 'https://ror.org/042h3mz57 Danish Youth Association of Science Ungdommens Naturvidenskabelige Forening'),
(51864, 'https://ror.org/03z7ba880', 'da', 1, 'https://ror.org/03z7ba880 Universitets-Jubilæets Danske Samfund'),
(51865, 'https://ror.org/03htwyn40', 'en', 1, 'https://ror.org/03htwyn40 Meath Foundation'),
(51866, 'https://ror.org/04z1kv059', 'no_lang_code', 1, 'https://ror.org/04z1kv059 Paradis (Denmark)'),
(51867, 'https://ror.org/01bc16f62', 'en', 1, 'https://ror.org/01bc16f62 Mebane Charitable Foundation'),
(51868, 'https://ror.org/03bxbhm47', 'no_lang_code', 1, 'https://ror.org/03bxbhm47 Videnskab (Denmark)'),
(51869, 'https://ror.org/041xgzk22', 'no_lang_code', 1, 'https://ror.org/041xgzk22 DK4'),
(51870, 'https://ror.org/02dc2hx33', 'no_lang_code', 1, 'https://ror.org/02dc2hx33 Pre-Seed Innovation (Denmark)'),
(51871, 'https://ror.org/0466zjn24', 'en', 1, 'https://ror.org/0466zjn24 Lawrence T. & Janet T. Dee Foundation'),
(51872, 'https://ror.org/008rsmw46', 'en', 1, 'https://ror.org/008rsmw46 Lawson Foundation'),
(51873, 'https://ror.org/002nx7j40', 'en', 1, 'https://ror.org/002nx7j40 Lea''s Foundation for Leukemia Research'),
(51874, 'https://ror.org/004f9my84', 'en', 1, 'https://ror.org/004f9my84 European Peacebuilding Liaison Office'),
(51875, 'https://ror.org/040ya8k73', 'sv', 1, 'https://ror.org/040ya8k73 Magnus Bergvalls Stiftelse'),
(51876, 'https://ror.org/041fvw351', 'en', 1, 'https://ror.org/041fvw351 John Randolph Foundation'),
(51877, 'https://ror.org/049d1sc04', 'en', 1, 'https://ror.org/049d1sc04 Express TV Production'),
(51878, 'https://ror.org/040qqw382', 'en', 1, 'https://ror.org/040qqw382 John Rex Endowment'),
(51879, 'https://ror.org/05983pc92', 'en', 1, 'https://ror.org/05983pc92 Malaysia Toray Science Foundation'),
(51880, 'https://ror.org/02n9j0y25', 'en', 1, 'https://ror.org/02n9j0y25 Meghan Rose Bradley Foundation'),
(51881, 'https://ror.org/017xs2h64', 'en', 1, 'https://ror.org/017xs2h64 John T. Reid Charitable Trusts'),
(51882, 'https://ror.org/0113y3s69', 'en', 1, 'https://ror.org/0113y3s69 Kitty M. Perkins Foundation'),
(51883, 'https://ror.org/04qdq0b46', 'en', 1, 'https://ror.org/04qdq0b46 Danish Dairy Research Foundation'),
(51884, 'https://ror.org/0530jqt13', 'en', 1, 'https://ror.org/0530jqt13 John Thomas Schroeder Foundation'),
(51885, 'https://ror.org/05mmamd82', 'en', 1, 'https://ror.org/05mmamd82 Malone Family Foundation'),
(51886, 'https://ror.org/02y06nn11', 'en', 1, 'https://ror.org/02y06nn11 Legler Benbough Foundation'),
(51887, 'https://ror.org/02s1hnn22', 'en', 1, 'https://ror.org/02s1hnn22 Mellam Family Foundation'),
(51888, 'https://ror.org/005t7ny15', 'en', 1, 'https://ror.org/005t7ny15 Kiwanis Club of Rockford'),
(51889, 'https://ror.org/000kq2q47', 'en', 1, 'https://ror.org/000kq2q47 John Tracy Clinic'),
(51890, 'https://ror.org/05q12yf11', 'no_lang_code', 1, 'https://ror.org/05q12yf11 Klabzuba (United States)'),
(51891, 'https://ror.org/00cv4ff80', 'en', 1, 'https://ror.org/00cv4ff80 Mama Mare Breast Cancer Foundation'),
(51892, 'https://ror.org/040xe3q33', 'en', 1, 'https://ror.org/040xe3q33 Melville Charitable Trust'),
(51893, 'https://ror.org/052jep661', 'en', 1, 'https://ror.org/052jep661 Klaus Tschira Foundation'),
(51894, 'https://ror.org/03fcfn607', 'de', 1, 'https://ror.org/03fcfn607 Leibniz Publik'),
(51895, 'https://ror.org/02y95ae87', 'en', 1, 'https://ror.org/02y95ae87 John Wayne Cancer Foundation'),
(51896, 'https://ror.org/03wy7t706', 'en', 1, 'https://ror.org/03wy7t706 KLS Foundation'),
(51897, 'https://ror.org/03v7w7232', 'en', 1, 'https://ror.org/03v7w7232 Manitoba Beekeepers'' Association'),
(51898, 'https://ror.org/05jv9e497', 'en', 1, 'https://ror.org/05jv9e497 Johnson Family Foundation'),
(51899, 'https://ror.org/047sc8865', 'en', 1, 'https://ror.org/047sc8865 Memorial Foundation for Jewish Culture'),
(51900, 'https://ror.org/006fbpy17', 'no_lang_code', 1, 'https://ror.org/006fbpy17 Nexus (Italy)'),
(51901, 'https://ror.org/037d2wg57', 'en', 1, 'https://ror.org/037d2wg57 Johnson Foundation'),
(51902, 'https://ror.org/05xtwn084', 'da', 1, 'https://ror.org/05xtwn084 Knud og Dagny Gad Andresens Fond'),
(51903, 'https://ror.org/00mfkwp51', 'en', 1, 'https://ror.org/00mfkwp51 Manitoba Medical Service Foundation'),
(51904, 'https://ror.org/02qjq5342', 'en', 1, 'https://ror.org/02qjq5342 Kobayashi Foundation for Cancer Research 小林がん研究財団'),
(51905, 'https://ror.org/02z3hd077', 'en', 1, 'https://ror.org/02z3hd077 Leo S. Guthman Fund'),
(51906, 'https://ror.org/03d4wwv68', 'en', 1, 'https://ror.org/03d4wwv68 Kobayashi International Scholarship Foundation 小林国際奨学財団'),
(51907, 'https://ror.org/033hnyq61', 'en', 1, 'https://ror.org/033hnyq61 Leon Levy Foundation'),
(51908, 'https://ror.org/028myba47', 'en', 1, 'https://ror.org/028myba47 Mensa Education and Research Foundation'),
(51909, 'https://ror.org/053qr8q83', 'en', 1, 'https://ror.org/053qr8q83 Jonathan Powell Hope Foundation'),
(51910, 'https://ror.org/01th7t610', 'en', 1, 'https://ror.org/01th7t610 Mental Health Research UK'),
(51911, 'https://ror.org/00mmhc695', 'en', 1, 'https://ror.org/00mmhc695 Leopold Schepp Foundation'),
(51912, 'https://ror.org/050gw5147', 'en', 1, 'https://ror.org/050gw5147 Kobe College Corporation and Japan Education Exchange'),
(51913, 'https://ror.org/02edrgs08', 'en', 1, 'https://ror.org/02edrgs08 Lester Fund'),
(51914, 'https://ror.org/03pkewe16', 'en', 1, 'https://ror.org/03pkewe16 Manpei Suzuki Diabetes Foundation'),
(51915, 'https://ror.org/01m1n7283', 'en', 1, 'https://ror.org/01m1n7283 Jim Joseph Foundation'),
(51916, 'https://ror.org/02ddg5t47', 'en', 1, 'https://ror.org/02ddg5t47 Koby Mandell Foundation'),
(51917, 'https://ror.org/054bqdz45', 'en', 1, 'https://ror.org/054bqdz45 Leukaemia and Blood Cancer New Zealand'),
(51918, 'https://ror.org/031pc9z34', 'en', 1, 'https://ror.org/031pc9z34 Koch Cultural Trust'),
(51919, 'https://ror.org/00fpb6b80', 'no_lang_code', 1, 'https://ror.org/00fpb6b80 Maple Syrup Urine Disease Family Support Group'),
(51920, 'https://ror.org/01bzak852', 'en', 1, 'https://ror.org/01bzak852 UnityPoint Health Meriter'),
(51921, 'https://ror.org/00vw9nm15', 'en', 1, 'https://ror.org/00vw9nm15 Koch Foundation'),
(51922, 'https://ror.org/05xs24h03', 'en', 1, 'https://ror.org/05xs24h03 Joseph P. Kennedy Jr. Foundation'),
(51923, 'https://ror.org/003atmt97', 'en', 1, 'https://ror.org/003atmt97 Marbrook Foundation'),
(51924, 'https://ror.org/00tf7ep30', 'en', 1, 'https://ror.org/00tf7ep30 March of Dimes Canada'),
(51925, 'https://ror.org/01vwv8r87', 'en', 1, 'https://ror.org/01vwv8r87 Joshua Frase Foundation'),
(51926, 'https://ror.org/03qyben73', 'en', 1, 'https://ror.org/03qyben73 MetroWest Health Foundation'),
(51927, 'https://ror.org/0224wbx43', 'da', 1, 'https://ror.org/0224wbx43 Kongeriget Danmarks Hesteforsikring'),
(51928, 'https://ror.org/03j077d81', 'en', 1, 'https://ror.org/03j077d81 Meyer Foundation'),
(51929, 'https://ror.org/05tya7346', 'en', 1, 'https://ror.org/05tya7346 Joshua Tree National Park Association'),
(51930, 'https://ror.org/04t1pp919', 'da', 1, 'https://ror.org/04t1pp919 Lida og Oskar Nielsens Fond'),
(51931, 'https://ror.org/05kqxme91', 'en', 1, 'https://ror.org/05kqxme91 Michael Reese Health Trust'),
(51932, 'https://ror.org/039k05z19', 'en', 1, 'https://ror.org/039k05z19 Jovid Foundation'),
(51933, 'https://ror.org/00ajqtx13', 'en', 1, 'https://ror.org/00ajqtx13 Margaret A. Cargill Philanthropies'),
(51934, 'https://ror.org/03myshd20', 'en', 1, 'https://ror.org/03myshd20 Margaret Clark Morgan Foundation'),
(51935, 'https://ror.org/0499qpt59', 'en', 1, 'https://ror.org/0499qpt59 Joyce Foundation'),
(51936, 'https://ror.org/02nykv047', 'en', 1, 'https://ror.org/02nykv047 Margaret S. Mahler Child Development Foundation'),
(51937, 'https://ror.org/03pzdmy91', 'de', 1, 'https://ror.org/03pzdmy91 Konrad Adenauer Foundation Konrad-Adenauer-Stiftung'),
(51938, 'https://ror.org/0187qyr62', 'en', 1, 'https://ror.org/0187qyr62 Michelson Prize and Grants'),
(51939, 'https://ror.org/01qa22e60', 'en', 1, 'https://ror.org/01qa22e60 Marguerite Casey Foundation'),
(51940, 'https://ror.org/03mmkx794', 'en', 1, 'https://ror.org/03mmkx794 Judith Rothschild Foundation'),
(51941, 'https://ror.org/047vk1j69', 'en', 1, 'https://ror.org/047vk1j69 Microfinance Opportunities'),
(51942, 'https://ror.org/0556dev32', 'en', 1, 'https://ror.org/0556dev32 Korea Foundation for Advanced Studies'),
(51943, 'https://ror.org/018g1zw27', 'sv', 1, 'https://ror.org/018g1zw27 Marie-Claire Cronstedts Stiftelse'),
(51944, 'https://ror.org/00c3qdc78', 'en', 1, 'https://ror.org/00c3qdc78 Marietta Community Foundation'),
(51945, 'https://ror.org/00td0dz58', 'en', 1, 'https://ror.org/00td0dz58 Linnean Society of London'),
(51946, 'https://ror.org/02cx4j151', 'en', 1, 'https://ror.org/02cx4j151 Marin Community Foundation'),
(51947, 'https://ror.org/040xqfw27', 'en', 1, 'https://ror.org/040xqfw27 Community Foundation of Middlesex County'),
(51948, 'https://ror.org/01fb0df08', 'en', 1, 'https://ror.org/01fb0df08 Marine Corps Warfighting Laboratory'),
(51949, 'https://ror.org/00pw4ps28', 'en', 1, 'https://ror.org/00pw4ps28 Korea Foundation for International Healthcare'),
(51950, 'https://ror.org/0058p8h34', 'no_lang_code', 1, 'https://ror.org/0058p8h34 Korea Gas Corporation (South Korea)'),
(51951, 'https://ror.org/02j6fbg68', 'en', 1, 'https://ror.org/02j6fbg68 Juvenile Diabetes Research Foundation'),
(51952, 'https://ror.org/009nzt148', 'en', 1, 'https://ror.org/009nzt148 Marion Community Foundation'),
(51953, 'https://ror.org/012ebbs45', 'en', 1, 'https://ror.org/012ebbs45 Marion E. Kenworthy-Sarah H. Swift Foundation'),
(51954, 'https://ror.org/00gpt9p27', 'en', 1, 'https://ror.org/00gpt9p27 Korea Institute of Sport Science 한국스포츠개발원'),
(51955, 'https://ror.org/03qezq212', 'da', 1, 'https://ror.org/03qezq212 Kai Lange og Gunhild Kai Langes Fond'),
(51956, 'https://ror.org/045e0dn59', 'en', 1, 'https://ror.org/045e0dn59 Migraine Research Foundation'),
(51957, 'https://ror.org/05md3zv31', 'en', 1, 'https://ror.org/05md3zv31 Korean Academy of Medical Sciences'),
(51958, 'https://ror.org/04vn4r534', 'en', 1, 'https://ror.org/04vn4r534 Little Giraffe Foundation'),
(51959, 'https://ror.org/00jk42n91', 'en', 1, 'https://ror.org/00jk42n91 Kaibara Morikazu Medical Science Promotion Foundation 海原盛和医学振興財団'),
(51960, 'https://ror.org/04m25zw74', 'no_lang_code', 1, 'https://ror.org/04m25zw74 Kalliopeia Foundation'),
(51961, 'https://ror.org/03cq51m79', 'en', 1, 'https://ror.org/03cq51m79 Live Love and Laugh Foundation'),
(51962, 'https://ror.org/042p27957', 'en', 1, 'https://ror.org/042p27957 Korean American Scholarship Foundation'),
(51963, 'https://ror.org/01a100t94', 'en', 1, 'https://ror.org/01a100t94 Mike Utley Foundation'),
(51964, 'https://ror.org/01ckvny60', 'en', 1, 'https://ror.org/01ckvny60 Rivkin Center for Ovarian Cancer'),
(51965, 'https://ror.org/03y50tm06', 'en', 1, 'https://ror.org/03y50tm06 Korean Dermatological Association 대한피부과학회'),
(51966, 'https://ror.org/0164x1171', 'en', 1, 'https://ror.org/0164x1171 Living Stones Foundation Charitable Trust'),
(51967, 'https://ror.org/00j68ke40', 'no_lang_code', 1, 'https://ror.org/00j68ke40 Kamenori Foundation かめのり財団'),
(51968, 'https://ror.org/00yjmmj69', 'en', 1, 'https://ror.org/00yjmmj69 Milbank Foundation'),
(51969, 'https://ror.org/03d1hk111', 'en', 1, 'https://ror.org/03d1hk111 Marubun Research Promotion Foundation 一般財団法人 丸文財団'),
(51970, 'https://ror.org/05t93wr04', 'en', 1, 'https://ror.org/05t93wr04 Liz Claiborne and Art Ortenberg Foundation'),
(51971, 'https://ror.org/043dcpa79', 'en', 1, 'https://ror.org/043dcpa79 Mary E Bivins Foundation'),
(51972, 'https://ror.org/0106twe82', 'en', 1, 'https://ror.org/0106twe82 Korean Society of Echocardiography 한국심초음파학회'),
(51973, 'https://ror.org/01x8qsj42', 'en', 1, 'https://ror.org/01x8qsj42 Chapman Foundations'),
(51974, 'https://ror.org/04s3cew51', 'en', 1, 'https://ror.org/04s3cew51 Milbank Memorial Fund'),
(51975, 'https://ror.org/018611e81', 'en', 1, 'https://ror.org/018611e81 Kansas Masonic Foundation'),
(51976, 'https://ror.org/02efnsc68', 'en', 1, 'https://ror.org/02efnsc68 Koret Foundation'),
(51977, 'https://ror.org/022h0yw65', 'en', 1, 'https://ror.org/022h0yw65 Korle Bu Neuroscience Foundation'),
(51978, 'https://ror.org/05fexbp32', 'en', 1, 'https://ror.org/05fexbp32 Milken Family Foundation'),
(51979, 'https://ror.org/04676kj64', 'no_lang_code', 1, 'https://ror.org/04676kj64 Providence Service Corporation (United States)'),
(51980, 'https://ror.org/04pyp4405', 'en', 1, 'https://ror.org/04pyp4405 Kortney Rose Foundation'),
(51981, 'https://ror.org/02akdz045', 'en', 1, 'https://ror.org/02akdz045 Maryland Ornithological Society'),
(51982, 'https://ror.org/053xt2a19', 'en', 1, 'https://ror.org/053xt2a19 London International Development Centre'),
(51983, 'https://ror.org/036jvr704', 'en', 1, 'https://ror.org/036jvr704 Kappa Alpha Theta Foundation'),
(51984, 'https://ror.org/0238xm951', 'en', 1, 'https://ror.org/0238xm951 Mind Science Foundation'),
(51985, 'https://ror.org/04jpf9990', 'en', 1, 'https://ror.org/04jpf9990 Kowa Life Science Foundation 公益財団法人 興和生命科学振興財団'),
(51986, 'https://ror.org/0506ech85', 'en', 1, 'https://ror.org/0506ech85 Longview Foundation'),
(51987, 'https://ror.org/037svw098', 'en', 1, 'https://ror.org/037svw098 Krembil Foundation'),
(51988, 'https://ror.org/036qaf130', 'en', 1, 'https://ror.org/036qaf130 Karen Brown Scleroderma Foundation'),
(51989, 'https://ror.org/043ttpn32', 'en', 1, 'https://ror.org/043ttpn32 Kresge Foundation'),
(51990, 'https://ror.org/04mnke839', 'en', 1, 'https://ror.org/04mnke839 Ministerial Standing Committee on Scientific and Technological Cooperation of the Organization of Islamic Cooperation'),
(51991, 'https://ror.org/02dq5ds52', 'en', 1, 'https://ror.org/02dq5ds52 Los Angeles Rubber Group'),
(51992, 'https://ror.org/05nzc3h14', 'en', 1, 'https://ror.org/05nzc3h14 Always Dream Foundation'),
(51993, 'https://ror.org/03rx2ty86', 'en', 1, 'https://ror.org/03rx2ty86 Ministerie van Buitenlandse Zaken Ministry of Foreign Affairs'),
(51994, 'https://ror.org/00kaqnj29', 'da', 1, 'https://ror.org/00kaqnj29 Karen Elise Jensens Fond'),
(51995, 'https://ror.org/05jhy3d94', 'en', 1, 'https://ror.org/05jhy3d94 Lotex Foundation Lotex Stiftung'),
(51996, 'https://ror.org/02kvr5932', 'en', 1, 'https://ror.org/02kvr5932 Masonic Foundation of Utah'),
(51997, 'https://ror.org/011z3ff80', 'en', 1, 'https://ror.org/011z3ff80 Ministero dello Sviluppo Economico Ministry of Economic Development'),
(51998, 'https://ror.org/058dp8a10', 'en', 1, 'https://ror.org/058dp8a10 Karl Kirchgessner Foundation'),
(51999, 'https://ror.org/00qhvya11', 'en', 1, 'https://ror.org/00qhvya11 Massage Therapy Foundation'),
(52000, 'https://ror.org/007dajt61', 'en', 1, 'https://ror.org/007dajt61 Louis-Jeantet Foundation'),
(52001, 'https://ror.org/00w6s5b11', 'de', 1, 'https://ror.org/00w6s5b11 Karl und Veronica Carstens-Stiftung'),
(52002, 'https://ror.org/02kddrj80', 'en', 1, 'https://ror.org/02kddrj80 Lowe Syndrome Association'),
(52003, 'https://ror.org/05c5x8342', 'en', 1, 'https://ror.org/05c5x8342 Kwanjeong Educational Foundation'),
(52004, 'https://ror.org/03j57tp52', 'en', 1, 'https://ror.org/03j57tp52 Loyola Foundation'),
(52005, 'https://ror.org/01s45wz62', 'en', 1, 'https://ror.org/01s45wz62 Lucas Foundation'),
(52006, 'https://ror.org/01320a653', 'en', 1, 'https://ror.org/01320a653 Lucy Daniels Foundation'),
(52007, 'https://ror.org/00d07mn45', 'en', 1, 'https://ror.org/00d07mn45 National Alopecia Areata Foundation'),
(52008, 'https://ror.org/02gpmmz25', 'es', 1, 'https://ror.org/02gpmmz25 Navarra de Infraestructuras Locales'),
(52009, 'https://ror.org/04zq6dz45', 'en', 1, 'https://ror.org/04zq6dz45 National Association of Chain Drug Stores'),
(52010, 'https://ror.org/03jsy7y79', 'en', 1, 'https://ror.org/03jsy7y79 Ministry of Women and Child Development'),
(52011, 'https://ror.org/0258v0346', 'en', 1, 'https://ror.org/0258v0346 Matthew Larson Foundation'),
(52012, 'https://ror.org/01aazm409', 'en', 1, 'https://ror.org/01aazm409 NCMIC Foundation'),
(52013, 'https://ror.org/040rmmq69', 'en', 1, 'https://ror.org/040rmmq69 Beyond Batten Disease Foundation'),
(52014, 'https://ror.org/05dank931', 'no_lang_code', 1, 'https://ror.org/05dank931 Mauna Kea Technologies (United States)'),
(52015, 'https://ror.org/0163v7e17', 'en', 1, 'https://ror.org/0163v7e17 Max Bell Foundation'),
(52016, 'https://ror.org/04929g954', 'en', 1, 'https://ror.org/04929g954 Minnesota Colon and Rectal Foundation'),
(52017, 'https://ror.org/05je2ma32', 'en', 1, 'https://ror.org/05je2ma32 Minnesota Lions Eye Bank'),
(52018, 'https://ror.org/0205s4214', 'en', 1, 'https://ror.org/0205s4214 Minnesota Ovarian Cancer Alliance'),
(52019, 'https://ror.org/00kan3777', 'en', 1, 'https://ror.org/00kan3777 Dutch Blood Transfusion Society Nederlandse Vereniging voor Bloedtransfusie'),
(52020, 'https://ror.org/01nj1bs84', 'no_lang_code', 1, 'https://ror.org/01nj1bs84 AdminiTrust'),
(52021, 'https://ror.org/01fesvd20', 'nl', 1, 'https://ror.org/01fesvd20 Nederlandse Vereniging voor Trombose en Hemostase'),
(52022, 'https://ror.org/04cf6r544', 'en', 1, 'https://ror.org/04cf6r544 Mayday Fund'),
(52023, 'https://ror.org/01de6ns85', 'no_lang_code', 1, 'https://ror.org/01de6ns85 Neelan Tiruchelvam Trust'),
(52024, 'https://ror.org/01y63b286', 'en', 1, 'https://ror.org/01y63b286 National Centre for Advanced Studies in Humanities and Social Sciences'),
(52025, 'https://ror.org/05sqjfk96', 'en', 1, 'https://ror.org/05sqjfk96 Northern California DX Foundation'),
(52026, 'https://ror.org/043bb8m89', 'en', 1, 'https://ror.org/043bb8m89 Nephcure Foundation'),
(52027, 'https://ror.org/01t5r7875', 'en', 1, 'https://ror.org/01t5r7875 McCarthy Family Foundation'),
(52028, 'https://ror.org/0197yr043', 'en', 1, 'https://ror.org/0197yr043 Netherland-America Foundation'),
(52029, 'https://ror.org/01jce8981', 'no_lang_code', 1, 'https://ror.org/01jce8981 Mitsubishi Corporation (United States)'),
(52030, 'https://ror.org/03tk1ps71', 'en', 1, 'https://ror.org/03tk1ps71 McGraw Foundation'),
(52031, 'https://ror.org/03fzdex20', 'en', 1, 'https://ror.org/03fzdex20 Netherlands Leprosy Relief'),
(52032, 'https://ror.org/01wknzm08', 'en', 1, 'https://ror.org/01wknzm08 National Community Pharmacists Association'),
(52033, 'https://ror.org/00k85q565', 'en', 1, 'https://ror.org/00k85q565 Mitte Foundation'),
(52034, 'https://ror.org/019mbhm70', 'en', 1, 'https://ror.org/019mbhm70 Miyakawa Memorial Research Foundation 宮川庚子記念研究財団'),
(52035, 'https://ror.org/00bbs5d96', 'en', 1, 'https://ror.org/00bbs5d96 SightLife'),
(52036, 'https://ror.org/01zm5rz38', 'en', 1, 'https://ror.org/01zm5rz38 National Council for Tertiary Education'),
(52037, 'https://ror.org/040g11437', 'en', 1, 'https://ror.org/040g11437 McGregor Foundation'),
(52038, 'https://ror.org/041475e22', 'en', 1, 'https://ror.org/041475e22 Mclean Foundation'),
(52039, 'https://ror.org/00tb8hf64', 'en', 1, 'https://ror.org/00tb8hf64 National Court Reporters Association'),
(52040, 'https://ror.org/01fadbq53', 'en', 1, 'https://ror.org/01fadbq53 Northwest Minnesota Foundation'),
(52041, 'https://ror.org/000tce348', 'en', 1, 'https://ror.org/000tce348 National Critical Care and Trauma Response Centre'),
(52042, 'https://ror.org/02gxz9934', 'en', 1, 'https://ror.org/02gxz9934 McPherson County Community Foundation'),
(52043, 'https://ror.org/01aaa2z14', 'en', 1, 'https://ror.org/01aaa2z14 Neuroscience Nursing Foundation'),
(52044, 'https://ror.org/044ja2q14', 'en', 1, 'https://ror.org/044ja2q14 Northwest Osteopathic Medical Foundation'),
(52045, 'https://ror.org/035gh0k19', 'en', 1, 'https://ror.org/035gh0k19 Molly Towell Perinatal Research Foundation'),
(52046, 'https://ror.org/0285bze92', 'en', 1, 'https://ror.org/0285bze92 ME Association'),
(52047, 'https://ror.org/03ay6m507', 'en', 1, 'https://ror.org/03ay6m507 Meadows Foundation'),
(52048, 'https://ror.org/043ewr774', 'en', 1, 'https://ror.org/043ewr774 National Eczema Association'),
(52049, 'https://ror.org/044bng944', 'en', 1, 'https://ror.org/044bng944 Nevada Department of Wildlife'),
(52050, 'https://ror.org/04jpe7h32', 'en', 1, 'https://ror.org/04jpe7h32 National Endowment for Democracy'),
(52051, 'https://ror.org/00sbgwz10', 'de', 1, 'https://ror.org/00sbgwz10 OPO-Stiftung'),
(52052, 'https://ror.org/01mmsh574', 'en', 1, 'https://ror.org/01mmsh574 Moody Foundation'),
(52053, 'https://ror.org/03ketea85', 'en', 1, 'https://ror.org/03ketea85 New England Biolabs Foundation'),
(52054, 'https://ror.org/01yb0qj30', 'en', 1, 'https://ror.org/01yb0qj30 National Endowment for Financial Education'),
(52055, 'https://ror.org/001rkmw77', 'en', 1, 'https://ror.org/001rkmw77 Morgan Family Foundation'),
(52056, 'https://ror.org/04y3z0p88', 'en', 1, 'https://ror.org/04y3z0p88 New Hampshire Bar Foundation'),
(52057, 'https://ror.org/04dqbhd05', 'en', 1, 'https://ror.org/04dqbhd05 Oprah''s Angel Network'),
(52058, 'https://ror.org/013zhzc32', 'no_lang_code', 1, 'https://ror.org/013zhzc32 Northwestern Mutual Life Insurance (United States)'),
(52059, 'https://ror.org/02jxgq335', 'en', 1, 'https://ror.org/02jxgq335 New Horizons Foundation'),
(52060, 'https://ror.org/01243va86', 'en', 1, 'https://ror.org/01243va86 Moritani Scholarship Foundation 般財団法人 守谷育英会'),
(52061, 'https://ror.org/01f8b5v57', 'en', 1, 'https://ror.org/01f8b5v57 National Foundation for Ectodermal Dysplasias'),
(52062, 'https://ror.org/05gdcn753', 'en', 1, 'https://ror.org/05gdcn753 Or Yarok Association אור ירוק'),
(52063, 'https://ror.org/005hary16', 'en', 1, 'https://ror.org/005hary16 New India Foundation'),
(52064, 'https://ror.org/05kyj3g94', 'en', 1, 'https://ror.org/05kyj3g94 Oral and Maxillofacial Surgery Foundation'),
(52065, 'https://ror.org/00hm6j694', 'en', 1, 'https://ror.org/00hm6j694 Nova Scotia Research and Innovation Trust'),
(52066, 'https://ror.org/025fgft18', 'en', 1, 'https://ror.org/025fgft18 Morris Stulsaft Foundation'),
(52067, 'https://ror.org/0415kjx40', 'en', 1, 'https://ror.org/0415kjx40 Fund for the Environment & Urban Life'),
(52068, 'https://ror.org/00a933p49', 'en', 1, 'https://ror.org/00a933p49 Noyce Foundation'),
(52069, 'https://ror.org/022p4vd20', 'en', 1, 'https://ror.org/022p4vd20 Orange County Community Foundation'),
(52070, 'https://ror.org/054d9v685', 'en', 1, 'https://ror.org/054d9v685 National Foundation for Medical Research and Innovation');
INSERT INTO `rors` VALUES
(52071, 'https://ror.org/03qvxfj12', 'en', 1, 'https://ror.org/03qvxfj12 Morton Cure Paralysis Fund'),
(52072, 'https://ror.org/00xvwyc81', 'nl', 1, 'https://ror.org/00xvwyc81 Oranje Fonds'),
(52073, 'https://ror.org/04bkwvr55', 'en', 1, 'https://ror.org/04bkwvr55 National Foundation for the Deaf'),
(52074, 'https://ror.org/03awnwb78', 'en', 1, 'https://ror.org/03awnwb78 Nurture Foundation for Reproductive Research'),
(52075, 'https://ror.org/04pm22969', 'en', 1, 'https://ror.org/04pm22969 Organic Farming Research Foundation'),
(52076, 'https://ror.org/022pen470', 'en', 1, 'https://ror.org/022pen470 New York City Police Foundation'),
(52077, 'https://ror.org/044nb3d45', 'en', 1, 'https://ror.org/044nb3d45 National Genealogical Society'),
(52078, 'https://ror.org/04gfxtm83', 'en', 1, 'https://ror.org/04gfxtm83 Mount Zion Health Fund'),
(52079, 'https://ror.org/01rpp5211', 'en', 1, 'https://ror.org/01rpp5211 New York Community Trust'),
(52080, 'https://ror.org/0183pqm13', 'en', 1, 'https://ror.org/0183pqm13 Orthopaedic Research Society'),
(52081, 'https://ror.org/040eybd64', 'en', 1, 'https://ror.org/040eybd64 Movember Foundation'),
(52082, 'https://ror.org/04vdxde73', 'no_lang_code', 1, 'https://ror.org/04vdxde73 National Grid (United States)'),
(52083, 'https://ror.org/02yxc8q04', 'en', 1, 'https://ror.org/02yxc8q04 New York Foundation'),
(52084, 'https://ror.org/01r89aa81', 'no_lang_code', 1, 'https://ror.org/01r89aa81 CME Group (United States)'),
(52085, 'https://ror.org/0181ptd26', 'en', 1, 'https://ror.org/0181ptd26 National Headache Foundation'),
(52086, 'https://ror.org/03hh2p523', 'en', 1, 'https://ror.org/03hh2p523 New Zealand Breast Cancer Foundation'),
(52087, 'https://ror.org/05k7zsn51', 'en', 1, 'https://ror.org/05k7zsn51 MPN Research Foundation'),
(52088, 'https://ror.org/05n0m2q32', 'sv', 1, 'https://ror.org/05n0m2q32 O. E. och Edla Johanssons Vetenskapliga Stiftelse'),
(52089, 'https://ror.org/00ps0j197', 'en', 1, 'https://ror.org/00ps0j197 Osteopathic Heritage Foundation'),
(52090, 'https://ror.org/04xn42d49', 'en', 1, 'https://ror.org/04xn42d49 Mt. Pleasant Area Commuity Foundation'),
(52091, 'https://ror.org/055pzrx21', 'en', 1, 'https://ror.org/055pzrx21 O. J. Noer Research Foundation'),
(52092, 'https://ror.org/00kty7w06', 'en', 1, 'https://ror.org/00kty7w06 National Housing Endowment'),
(52093, 'https://ror.org/01ajpw658', 'en', 1, 'https://ror.org/01ajpw658 Mucolipidosis IV Foundation'),
(52094, 'https://ror.org/00ksjkj95', 'en', 1, 'https://ror.org/00ksjkj95 Osteosynthesis and Trauma Care Foundation'),
(52095, 'https://ror.org/05501m963', 'en', 1, 'https://ror.org/05501m963 Obayashi Foundation 大林財団'),
(52096, 'https://ror.org/00c2b9157', 'en', 1, 'https://ror.org/00c2b9157 Otho S. A. Sprague Memorial Institute'),
(52097, 'https://ror.org/01a0byg64', 'en', 1, 'https://ror.org/01a0byg64 Obici Healthcare Foundation'),
(52098, 'https://ror.org/049fh2r80', 'en', 1, 'https://ror.org/049fh2r80 Multiple Sclerosis Foundation'),
(52099, 'https://ror.org/04p7ema57', 'en', 1, 'https://ror.org/04p7ema57 National Infrastructure for Microbiological Resources 国家微生物资源基础设施'),
(52100, 'https://ror.org/05a10ec77', 'no_lang_code', 1, 'https://ror.org/05a10ec77 Newmont Mining (United States)'),
(52101, 'https://ror.org/02eyhcx07', 'en', 1, 'https://ror.org/02eyhcx07 Otto Bremer Trust'),
(52102, 'https://ror.org/03ye15z82', 'nl', 1, 'https://ror.org/03ye15z82 ODAS Stichting'),
(52103, 'https://ror.org/03n6hmg93', 'en', 1, 'https://ror.org/03n6hmg93 Ovarian Cancer Research Foundation'),
(52104, 'https://ror.org/0560cwj87', 'en', 1, 'https://ror.org/0560cwj87 Musella Foundation For Brain Tumor Research and Information'),
(52105, 'https://ror.org/01v2r3788', 'en', 1, 'https://ror.org/01v2r3788 National Institute of Public Cooperation and Child Development'),
(52106, 'https://ror.org/05wv0yn79', 'en', 1, 'https://ror.org/05wv0yn79 Overseas Press Club Foundation'),
(52107, 'https://ror.org/01rdg4502', 'en', 1, 'https://ror.org/01rdg4502 Museum of Vertebrate Zoology'),
(52108, 'https://ror.org/01f08b586', 'no_lang_code', 1, 'https://ror.org/01f08b586 Oxalosis and Hyperoxaluria Foundation'),
(52109, 'https://ror.org/047a10n20', 'en', 1, 'https://ror.org/047a10n20 Muskingum County Community Foundation'),
(52110, 'https://ror.org/02hejje45', 'en', 1, 'https://ror.org/02hejje45 Oxford Optronix'),
(52111, 'https://ror.org/03vag5z12', 'en', 1, 'https://ror.org/03vag5z12 Mustard Seed Foundation'),
(52112, 'https://ror.org/01x65sg43', 'en', 1, 'https://ror.org/01x65sg43 Muttart Foundation'),
(52113, 'https://ror.org/01era2c76', 'en', 1, 'https://ror.org/01era2c76 P.E.F. Israel Endowment Funds'),
(52114, 'https://ror.org/03945ew66', 'en', 1, 'https://ror.org/03945ew66 PA Research Foundation'),
(52115, 'https://ror.org/05czgp859', 'en', 1, 'https://ror.org/05czgp859 Myasthenia Gravis Foundation of America'),
(52116, 'https://ror.org/03z8jr008', 'en', 1, 'https://ror.org/03z8jr008 Myelin Project'),
(52117, 'https://ror.org/03tzsnk49', 'en', 1, 'https://ror.org/03tzsnk49 Pacific Pioneer Fund'),
(52118, 'https://ror.org/04tv4vz10', 'en', 1, 'https://ror.org/04tv4vz10 Pacific Vision Foundation'),
(52119, 'https://ror.org/044r8mj16', 'en', 1, 'https://ror.org/044r8mj16 Myer Foundation'),
(52120, 'https://ror.org/00vjrcd64', 'en', 1, 'https://ror.org/00vjrcd64 Public Utilities Office'),
(52121, 'https://ror.org/011nxrw51', 'no_lang_code', 1, 'https://ror.org/011nxrw51 Marquardt (Germany)'),
(52122, 'https://ror.org/00s8ypq23', 'en', 1, 'https://ror.org/00s8ypq23 Nicholas and Elizabeth Slezak Super Center'),
(52123, 'https://ror.org/00323r369', 'en', 1, 'https://ror.org/00323r369 Myocarditis Foundation'),
(52124, 'https://ror.org/001fpn257', 'en', 1, 'https://ror.org/001fpn257 Nineveh Charitable Trust'),
(52125, 'https://ror.org/0017mh436', 'en', 1, 'https://ror.org/0017mh436 Pain Relief Foundation'),
(52126, 'https://ror.org/017n5p421', 'en', 1, 'https://ror.org/017n5p421 Myotonic Dystrophy Foundation'),
(52127, 'https://ror.org/016jygy11', 'en', 1, 'https://ror.org/016jygy11 Ningbo Municipal Education Bureau 宁波市教育局'),
(52128, 'https://ror.org/0563hxx86', 'en', 1, 'https://ror.org/0563hxx86 National Kidney Foundation of South Africa'),
(52129, 'https://ror.org/05hfds782', 'no_lang_code', 1, 'https://ror.org/05hfds782 Nacey Maggioncalda Foundation'),
(52130, 'https://ror.org/05v5yjs39', 'en', 1, 'https://ror.org/05v5yjs39 Palaeontological Association'),
(52131, 'https://ror.org/05s8da439', 'en', 1, 'https://ror.org/05s8da439 NAMM Foundation'),
(52132, 'https://ror.org/049seyn76', 'en', 1, 'https://ror.org/049seyn76 Pan-Mass Challenge'),
(52133, 'https://ror.org/020qgqz48', 'no_lang_code', 1, 'https://ror.org/020qgqz48 Berry (India)'),
(52134, 'https://ror.org/05r023w67', 'en', 1, 'https://ror.org/05r023w67 Nancy Lurie Marks Family Foundation'),
(52135, 'https://ror.org/056gcnh74', 'en', 1, 'https://ror.org/056gcnh74 Nancy Owens Memorial Foundation'),
(52136, 'https://ror.org/059sh8413', 'en', 1, 'https://ror.org/059sh8413 Office of the State Inspector General'),
(52137, 'https://ror.org/03mbtad86', 'en', 1, 'https://ror.org/03mbtad86 National Organization for Hearing Research Foundation'),
(52138, 'https://ror.org/053qbaa96', 'en', 1, 'https://ror.org/053qbaa96 Park Foundation'),
(52139, 'https://ror.org/03g7xph38', 'en', 1, 'https://ror.org/03g7xph38 Park Nicollet Foundation'),
(52140, 'https://ror.org/01yra0v32', 'sv', 1, 'https://ror.org/01yra0v32 Njurfonden'),
(52141, 'https://ror.org/050r7j211', 'en', 1, 'https://ror.org/050r7j211 National Pork Producers Council'),
(52142, 'https://ror.org/02ndgm578', 'en', 1, 'https://ror.org/02ndgm578 Noah Worcester Dermatological Society'),
(52143, 'https://ror.org/04nfmyz64', 'en', 1, 'https://ror.org/04nfmyz64 Parker Foundation'),
(52144, 'https://ror.org/04mcweq87', 'no_lang_code', 1, 'https://ror.org/04mcweq87 Nasdaq (United States)'),
(52145, 'https://ror.org/0161x1106', 'en', 1, 'https://ror.org/0161x1106 National Sculpture Society'),
(52146, 'https://ror.org/032x2te45', 'en', 1, 'https://ror.org/032x2te45 Parkes Foundation'),
(52147, 'https://ror.org/05k9hyx80', 'en', 1, 'https://ror.org/05k9hyx80 NOK Foundation'),
(52148, 'https://ror.org/04nqdt167', 'en', 1, 'https://ror.org/04nqdt167 NATA Research and Education Foundation'),
(52149, 'https://ror.org/00j7nqv87', 'en', 1, 'https://ror.org/00j7nqv87 Parkinson Research Foundation'),
(52150, 'https://ror.org/0401nzk46', 'en', 1, 'https://ror.org/0401nzk46 Nokia Foundation'),
(52151, 'https://ror.org/05krhrc62', 'en', 1, 'https://ror.org/05krhrc62 Nathans Battle Foundation'),
(52152, 'https://ror.org/01zkd3118', 'en', 1, 'https://ror.org/01zkd3118 Nomis Foundation'),
(52153, 'https://ror.org/0363rx482', 'en', 1, 'https://ror.org/0363rx482 Parkinson''s Association of Ireland'),
(52154, 'https://ror.org/00ck87g56', 'en', 1, 'https://ror.org/00ck87g56 Norcliffe Foundation'),
(52155, 'https://ror.org/043t12z55', 'en', 1, 'https://ror.org/043t12z55 National Tay-Sachs and Allied Diseases Association'),
(52156, 'https://ror.org/02zaaft58', 'en', 1, 'https://ror.org/02zaaft58 Nordic Culture Fund'),
(52157, 'https://ror.org/00m63h757', 'en', 1, 'https://ror.org/00m63h757 Parkinson''s Australia'),
(52158, 'https://ror.org/04ymgh706', 'en', 1, 'https://ror.org/04ymgh706 Parkinson''s Association'),
(52159, 'https://ror.org/01xcva522', 'en', 1, 'https://ror.org/01xcva522 Petco Foundation'),
(52160, 'https://ror.org/01kxr3c26', 'en', 1, 'https://ror.org/01kxr3c26 Parkinson''s NSW'),
(52161, 'https://ror.org/03gjwrd32', 'en', 1, 'https://ror.org/03gjwrd32 Peter Michael Foundation'),
(52162, 'https://ror.org/02wat9q45', 'sv', 1, 'https://ror.org/02wat9q45 Norrbacka Eugeniastiftelsen'),
(52163, 'https://ror.org/04d4fer41', 'en', 1, 'https://ror.org/04d4fer41 Parkinson''s Queensland'),
(52164, 'https://ror.org/0300wre24', 'en', 1, 'https://ror.org/0300wre24 Swedish Parkinson’s Disease Association'),
(52165, 'https://ror.org/04f09q842', 'en', 1, 'https://ror.org/04f09q842 Norske Kvinners Sanitetsforening Norwegian Womens Public Health Association'),
(52166, 'https://ror.org/00qk41v79', 'en', 1, 'https://ror.org/00qk41v79 Petroleum Conservation Research Association'),
(52167, 'https://ror.org/059nnvm90', 'en', 1, 'https://ror.org/059nnvm90 Connecticut Office of the Governor'),
(52168, 'https://ror.org/00ay00v02', 'sv', 1, 'https://ror.org/00ay00v02 Petrus och Augusta Hedlunds Stiftelse'),
(52169, 'https://ror.org/00qe9vp10', 'en', 1, 'https://ror.org/00qe9vp10 National Association of Television Program Executives Educational Foundation'),
(52170, 'https://ror.org/00746dd63', 'en', 1, 'https://ror.org/00746dd63 North American Membrane Society'),
(52171, 'https://ror.org/01ypd6q38', 'en', 1, 'https://ror.org/01ypd6q38 North American Menopause Society'),
(52172, 'https://ror.org/02yt6gx28', 'en', 1, 'https://ror.org/02yt6gx28 Pasadena Child Health Foundation'),
(52173, 'https://ror.org/00t19cz85', 'no_lang_code', 1, 'https://ror.org/00t19cz85 NATSO'),
(52174, 'https://ror.org/04txr4v68', 'en', 1, 'https://ror.org/04txr4v68 North American Spine Society'),
(52175, 'https://ror.org/01jmtnr89', 'en', 1, 'https://ror.org/01jmtnr89 Passano Foundation'),
(52176, 'https://ror.org/00mjcdm77', 'en', 1, 'https://ror.org/00mjcdm77 Past Global Changes'),
(52177, 'https://ror.org/01h43vb07', 'en', 1, 'https://ror.org/01h43vb07 North American Strawberry Growers Association'),
(52178, 'https://ror.org/01z531p41', 'en', 1, 'https://ror.org/01z531p41 Ogawa Science and Technology Foundation 公益財団法人 小川科学技術財団'),
(52179, 'https://ror.org/0082xft54', 'en', 1, 'https://ror.org/0082xft54 PDK International'),
(52180, 'https://ror.org/00ev3n257', 'en', 1, 'https://ror.org/00ev3n257 Ohio Academy of Family Physicians'),
(52181, 'https://ror.org/03neavy72', 'no_lang_code', 1, 'https://ror.org/03neavy72 Phi Gamma Delta'),
(52182, 'https://ror.org/04ya12x69', 'en', 1, 'https://ror.org/04ya12x69 North Carolina GlaxoSmithKline Foundation'),
(52183, 'https://ror.org/02d1ek591', 'en', 1, 'https://ror.org/02d1ek591 Phil Hardin Foundation'),
(52184, 'https://ror.org/00f202q63', 'en', 1, 'https://ror.org/00f202q63 Philadelphia Foundation'),
(52185, 'https://ror.org/0347nf139', 'en', 1, 'https://ror.org/0347nf139 Patron Saints Foundation'),
(52186, 'https://ror.org/01dgc6x67', 'en', 1, 'https://ror.org/01dgc6x67 Philippine American Educational Foundation'),
(52187, 'https://ror.org/01pxwcd09', 'en', 1, 'https://ror.org/01pxwcd09 Ralph C. Wilson, Jr. Foundation'),
(52188, 'https://ror.org/02b1krb80', 'en', 1, 'https://ror.org/02b1krb80 North Carolina Pork Council'),
(52189, 'https://ror.org/03x3bwz43', 'en', 1, 'https://ror.org/03x3bwz43 Ohio News Media Association'),
(52190, 'https://ror.org/02jv4t428', 'en', 1, 'https://ror.org/02jv4t428 Paul & Carol David Foundation'),
(52191, 'https://ror.org/03wztvy18', 'en', 1, 'https://ror.org/03wztvy18 Paul Hamlyn Foundation'),
(52192, 'https://ror.org/04mchsp40', 'en', 1, 'https://ror.org/04mchsp40 Ralph M. Parsons Foundation'),
(52193, 'https://ror.org/01enbtr31', 'en', 1, 'https://ror.org/01enbtr31 Okawa Foundation for Information and Telecommunications 公益財団法人 大川情報通信基金'),
(52194, 'https://ror.org/02kj8k530', 'en', 1, 'https://ror.org/02kj8k530 North Dakota Community Foundation'),
(52195, 'https://ror.org/03430ny40', 'no_lang_code', 1, 'https://ror.org/03430ny40 Perpetual (Australia)'),
(52196, 'https://ror.org/02n130h25', 'en', 1, 'https://ror.org/02n130h25 Nitsch Foundation'),
(52197, 'https://ror.org/01vc16c74', 'en', 1, 'https://ror.org/01vc16c74 Physiology Society of Southern Africa'),
(52198, 'https://ror.org/00mr0nz89', 'en', 1, 'https://ror.org/00mr0nz89 North Valley Community Foundation'),
(52199, 'https://ror.org/03p5g0c78', 'en', 1, 'https://ror.org/03p5g0c78 Peace Stone Foundation'),
(52200, 'https://ror.org/030t8f239', 'no_lang_code', 1, 'https://ror.org/030t8f239 Ran Naor Institute'),
(52201, 'https://ror.org/00wry3a77', 'en', 1, 'https://ror.org/00wry3a77 Physiotherapy New Zealand'),
(52202, 'https://ror.org/052ckfz09', 'en', 1, 'https://ror.org/052ckfz09 Pediatric Brain Tumor Foundation'),
(52203, 'https://ror.org/05pvet403', 'de', 1, 'https://ror.org/05pvet403 Oncosuisse'),
(52204, 'https://ror.org/02qt0dk86', 'en', 1, 'https://ror.org/02qt0dk86 Horonobe Research Institute for the Subsurface Environment'),
(52205, 'https://ror.org/005yrpm30', 'en', 1, 'https://ror.org/005yrpm30 Pediatric Cancer Research Foundation'),
(52206, 'https://ror.org/0206v1232', 'no_lang_code', 1, 'https://ror.org/0206v1232 Penguin Random House (United States)'),
(52207, 'https://ror.org/02sda0197', 'en', 1, 'https://ror.org/02sda0197 Fondation Pierre Elliott Trudeau Pierre Elliott Trudeau Foundation'),
(52208, 'https://ror.org/02jx9xx30', 'en', 1, 'https://ror.org/02jx9xx30 One in Five Association'),
(52209, 'https://ror.org/04708aj14', 'en', 1, 'https://ror.org/04708aj14 Pediatric Epilepsy Research Foundation'),
(52210, 'https://ror.org/055mp5r09', 'en', 1, 'https://ror.org/055mp5r09 Pikes Peak Community Foundation'),
(52211, 'https://ror.org/05sv4rq55', 'no_lang_code', 1, 'https://ror.org/05sv4rq55 OneBreath (United States)'),
(52212, 'https://ror.org/05wk4pc85', 'en', 1, 'https://ror.org/05wk4pc85 Pediatric Infectious Diseases Society'),
(52213, 'https://ror.org/037vd6027', 'en', 1, 'https://ror.org/037vd6027 OneSight'),
(52214, 'https://ror.org/05etan845', 'en', 1, 'https://ror.org/05etan845 Pilot International'),
(52215, 'https://ror.org/04x6n5698', 'en', 1, 'https://ror.org/04x6n5698 Raptor Research Foundation'),
(52216, 'https://ror.org/043rpbd03', 'en', 1, 'https://ror.org/043rpbd03 Ontario Fruit and Vegetable Growers'' Association'),
(52217, 'https://ror.org/05q59qz08', 'en', 1, 'https://ror.org/05q59qz08 Pinkerton Foundation'),
(52218, 'https://ror.org/04c5xj152', 'en', 1, 'https://ror.org/04c5xj152 Ray Thomas Edwards Foundation'),
(52219, 'https://ror.org/00fx55r32', 'no_lang_code', 1, 'https://ror.org/00fx55r32 Hua Yuan Group (China) 华远集团'),
(52220, 'https://ror.org/02yrhrz80', 'en', 1, 'https://ror.org/02yrhrz80 Royal Literary Fund'),
(52221, 'https://ror.org/02wr4pa52', 'en', 1, 'https://ror.org/02wr4pa52 Raymond Educational Foundation'),
(52222, 'https://ror.org/0108ddn29', 'en', 1, 'https://ror.org/0108ddn29 Pitt Hopkins Research Foundation'),
(52223, 'https://ror.org/01ntbg722', 'en', 1, 'https://ror.org/01ntbg722 Pittsburgh Child Guidance Foundation'),
(52224, 'https://ror.org/03swaaz57', 'en', 1, 'https://ror.org/03swaaz57 Royal Project Foundation มูลนิธิโครงการหลวง'),
(52225, 'https://ror.org/0074vna73', 'en', 1, 'https://ror.org/0074vna73 Ontario Institute for Regenerative Medicine'),
(52226, 'https://ror.org/0511swq50', 'en', 1, 'https://ror.org/0511swq50 Pencil Foundation'),
(52227, 'https://ror.org/04x17ze61', 'en', 1, 'https://ror.org/04x17ze61 Raymond J. and Mary C. Reisert Foundation'),
(52228, 'https://ror.org/04fw2pd53', 'en', 1, 'https://ror.org/04fw2pd53 RSF Social Finance'),
(52229, 'https://ror.org/05rcfkq95', 'en', 1, 'https://ror.org/05rcfkq95 Pittsburgh Emergency Medicine Foundation'),
(52230, 'https://ror.org/04d2j3090', 'en', 1, 'https://ror.org/04d2j3090 Ontario Trillium Foundation'),
(52231, 'https://ror.org/05ctpkb66', 'en', 1, 'https://ror.org/05ctpkb66 Pendleton and Elisabeth Carey Miller Charitable Foundation'),
(52232, 'https://ror.org/04n96xc27', 'en', 1, 'https://ror.org/04n96xc27 Rural Women New Zealand'),
(52233, 'https://ror.org/05hr50502', 'en', 1, 'https://ror.org/05hr50502 Plumbing Heating Cooling Contractors National Association Educational Foundation'),
(52234, 'https://ror.org/04qq90y81', 'en', 1, 'https://ror.org/04qq90y81 PLUS Foundation'),
(52235, 'https://ror.org/05ae3xr78', 'en', 1, 'https://ror.org/05ae3xr78 Ready Mixed Concrete Research and Education Foundation'),
(52236, 'https://ror.org/03wxxna60', 'en', 1, 'https://ror.org/03wxxna60 Open Society Foundation for South Africa'),
(52237, 'https://ror.org/00ejn2425', 'en', 1, 'https://ror.org/00ejn2425 Pennington Biomedical Research Foundation'),
(52238, 'https://ror.org/00b0e2156', 'en', 1, 'https://ror.org/00b0e2156 Reflections of Grace Foundation'),
(52239, 'https://ror.org/05pvypf90', 'en', 1, 'https://ror.org/05pvypf90 Open Source Drug Discovery'),
(52240, 'https://ror.org/0092af185', 'no_lang_code', 1, 'https://ror.org/0092af185 PNM Resources (United States)'),
(52241, 'https://ror.org/03n1jkx09', 'en', 1, 'https://ror.org/03n1jkx09 Wisconsin Association for Perinatal Care'),
(52242, 'https://ror.org/01gk88w52', 'en', 1, 'https://ror.org/01gk88w52 Podiatry Foundation of Pittsburgh'),
(52243, 'https://ror.org/005t0n560', 'en', 1, 'https://ror.org/005t0n560 Russian Science Support Foundation Региональный общественный Фонд содействия отечественной науке'),
(52244, 'https://ror.org/04x9v7g36', 'no_lang_code', 1, 'https://ror.org/04x9v7g36 Scripps (United States)'),
(52245, 'https://ror.org/01jjabs38', 'en', 1, 'https://ror.org/01jjabs38 Scurlock Foundation'),
(52246, 'https://ror.org/01cq1dy18', 'no', 1, 'https://ror.org/01cq1dy18 Regionale forskningsfond Oslofjordfondet'),
(52247, 'https://ror.org/03ffxvj05', 'en', 1, 'https://ror.org/03ffxvj05 Rutlish School'),
(52248, 'https://ror.org/00w33ze35', 'en', 1, 'https://ror.org/00w33ze35 Registered Nurses'' Association of Ontario'),
(52249, 'https://ror.org/00meev387', 'en', 1, 'https://ror.org/00meev387 Sea World'),
(52250, 'https://ror.org/02g2fp141', 'en', 1, 'https://ror.org/02g2fp141 Reinberger Foundation'),
(52251, 'https://ror.org/046tk6771', 'en', 1, 'https://ror.org/046tk6771 Posen Foundation קרן פוזן'),
(52252, 'https://ror.org/0059sp540', 'en', 1, 'https://ror.org/0059sp540 Ryan Licht Sang Bipolar Foundation'),
(52253, 'https://ror.org/0192hf124', 'en', 1, 'https://ror.org/0192hf124 Sean Costello Memorial Fund for Bipolar Research'),
(52254, 'https://ror.org/02f1wny42', 'en', 1, 'https://ror.org/02f1wny42 Persian Scholarship Foundation'),
(52255, 'https://ror.org/047m55x87', 'en', 1, 'https://ror.org/047m55x87 RYR 1 Foundation'),
(52256, 'https://ror.org/023kcy720', 'de', 1, 'https://ror.org/023kcy720 Reinhold Beitlich Foundation Reinhold Beitlich Stiftung'),
(52257, 'https://ror.org/01ksw8755', 'en', 1, 'https://ror.org/01ksw8755 Potts Family Foundation'),
(52258, 'https://ror.org/02jkjsy62', 'en', 1, 'https://ror.org/02jkjsy62 S. D. Bechtel, Jr. Foundation'),
(52259, 'https://ror.org/02cdjbt38', 'en', 1, 'https://ror.org/02cdjbt38 S. Mark Taper Foundation'),
(52260, 'https://ror.org/05bresr75', 'en', 1, 'https://ror.org/05bresr75 Pottstown Area Health and Wellness Foundation'),
(52261, 'https://ror.org/05w9ckg77', 'en', 1, 'https://ror.org/05w9ckg77 Pet Care Trust'),
(52262, 'https://ror.org/01v6fb724', 'it', 1, 'https://ror.org/01v6fb724 Repubblica e Cantone Ticino'),
(52263, 'https://ror.org/037vy2h31', 'en', 1, 'https://ror.org/037vy2h31 Saccomanno Higher Education Foundation'),
(52264, 'https://ror.org/03qvrm396', 'en', 1, 'https://ror.org/03qvrm396 Poverty and Race Research Action Council'),
(52265, 'https://ror.org/012a8a777', 'en', 1, 'https://ror.org/012a8a777 Society for the Preservation of American Modernists'),
(52266, 'https://ror.org/01mtb8v69', 'en', 1, 'https://ror.org/01mtb8v69 Prayers from Maria'),
(52267, 'https://ror.org/047fpcv83', 'en', 1, 'https://ror.org/047fpcv83 Saigh Foundation'),
(52268, 'https://ror.org/01nbasn20', 'en', 1, 'https://ror.org/01nbasn20 Presbyterian Health Foundation'),
(52269, 'https://ror.org/04y2ytg46', 'en', 1, 'https://ror.org/04y2ytg46 Secure World Foundation'),
(52270, 'https://ror.org/029tzwe02', 'en', 1, 'https://ror.org/029tzwe02 Prevent Blindness'),
(52271, 'https://ror.org/02vzwtq17', 'en', 1, 'https://ror.org/02vzwtq17 Saint Lukes Foundation'),
(52272, 'https://ror.org/005yxzz69', 'en', 1, 'https://ror.org/005yxzz69 Society of Canadian Ornithologists Société des Ornithologistes du Canada'),
(52273, 'https://ror.org/03v0h0x87', 'en', 1, 'https://ror.org/03v0h0x87 Sendzimir Foundation'),
(52274, 'https://ror.org/04kzfca73', 'en', 1, 'https://ror.org/04kzfca73 Severns Family Foundation'),
(52275, 'https://ror.org/04evfhz83', 'en', 1, 'https://ror.org/04evfhz83 Resources Legacy Fund'),
(52276, 'https://ror.org/013rtsq97', 'en', 1, 'https://ror.org/013rtsq97 Samberg Family Foundation'),
(52277, 'https://ror.org/03hw5nc12', 'en', 1, 'https://ror.org/03hw5nc12 Sexually Transmitted Infection Research Foundation'),
(52278, 'https://ror.org/02h71tm83', 'en', 1, 'https://ror.org/02h71tm83 SME Education Foundation'),
(52279, 'https://ror.org/01c4cwj74', 'en', 1, 'https://ror.org/01c4cwj74 Respiratory Health Association'),
(52280, 'https://ror.org/042bpeh86', 'en', 1, 'https://ror.org/042bpeh86 Samis Foundation'),
(52281, 'https://ror.org/02pd51s17', 'en', 1, 'https://ror.org/02pd51s17 Perth Childrens Hospital Foundation'),
(52282, 'https://ror.org/0575b2v60', 'en', 1, 'https://ror.org/0575b2v60 Society of Systematic Biologists'),
(52283, 'https://ror.org/00akqa526', 'en', 1, 'https://ror.org/00akqa526 Samuel H. Kress Foundation'),
(52284, 'https://ror.org/04zn4fk08', 'en', 1, 'https://ror.org/04zn4fk08 Society of Urologic Nurses and Associates'),
(52285, 'https://ror.org/03gnc6x04', 'en', 1, 'https://ror.org/03gnc6x04 Sociological Initiatives Foundation'),
(52286, 'https://ror.org/05j0k2q54', 'en', 1, 'https://ror.org/05j0k2q54 Shanghai Association for Science and Technology'),
(52287, 'https://ror.org/043xdeq55', 'en', 1, 'https://ror.org/043xdeq55 Resthaven Incorporated'),
(52288, 'https://ror.org/04z2zsa77', 'en', 1, 'https://ror.org/04z2zsa77 Sonnenfeld Foundation Sonnenfeld Stiftung'),
(52289, 'https://ror.org/04m6d2w32', 'en', 1, 'https://ror.org/04m6d2w32 San Angelo Health Foundation'),
(52290, 'https://ror.org/048tv2g66', 'en', 1, 'https://ror.org/048tv2g66 Restless Legs Syndrome Foundation'),
(52291, 'https://ror.org/046jh9k27', 'en', 1, 'https://ror.org/046jh9k27 San Francisco Foundation'),
(52292, 'https://ror.org/047916x45', 'en', 1, 'https://ror.org/047916x45 Rett Syndrome Association of Australia'),
(52293, 'https://ror.org/00mt9mq23', 'en', 1, 'https://ror.org/00mt9mq23 Order Sons of Italy in America Ordine Figli d’Italia in America'),
(52294, 'https://ror.org/00cgv2351', 'en', 1, 'https://ror.org/00cgv2351 San Francisco General Hospital Foundation'),
(52295, 'https://ror.org/02ssj8b09', 'en', 1, 'https://ror.org/02ssj8b09 Rett Syndrome Association of Illinois'),
(52296, 'https://ror.org/056jy0m49', 'en', 1, 'https://ror.org/056jy0m49 Sons of Norway'),
(52297, 'https://ror.org/010abdn73', 'en', 1, 'https://ror.org/010abdn73 Sand County Foundation'),
(52298, 'https://ror.org/01thz9g52', 'en', 1, 'https://ror.org/01thz9g52 Sosland Foundation'),
(52299, 'https://ror.org/01a56n213', 'no_lang_code', 1, 'https://ror.org/01a56n213 Shangluo University 商洛学院'),
(52300, 'https://ror.org/01h50je44', 'en', 1, 'https://ror.org/01h50je44 Promotional Products Education Foundation'),
(52301, 'https://ror.org/04ytpr841', 'en', 1, 'https://ror.org/04ytpr841 JLK Sanfilippo Research Foundation'),
(52302, 'https://ror.org/05j3ze875', 'en', 1, 'https://ror.org/05j3ze875 Shared Earth Foundation'),
(52303, 'https://ror.org/020cx6a13', 'en', 1, 'https://ror.org/020cx6a13 Frisbee Foundation'),
(52304, 'https://ror.org/01c8hzn56', 'en', 1, 'https://ror.org/01c8hzn56 South Asian Health Foundation'),
(52305, 'https://ror.org/01rjqn722', 'en', 1, 'https://ror.org/01rjqn722 Ivey Foundation'),
(52306, 'https://ror.org/01pe2nj10', 'no_lang_code', 1, 'https://ror.org/01pe2nj10 Dai-ichi Life Insurance (United States)'),
(52307, 'https://ror.org/03dev3m87', 'en', 1, 'https://ror.org/03dev3m87 Richard K. and Shirley S. Hemingway Foundation'),
(52308, 'https://ror.org/05fan6g58', 'en', 1, 'https://ror.org/05fan6g58 Proteus Fund'),
(52309, 'https://ror.org/05t9z3q05', 'en', 1, 'https://ror.org/05t9z3q05 Richard M. Fairbanks Foundation'),
(52310, 'https://ror.org/01jm2xz84', 'en', 1, 'https://ror.org/01jm2xz84 Richard M. Schulze Family Foundation'),
(52311, 'https://ror.org/007medz62', 'en', 1, 'https://ror.org/007medz62 Shenyang Science and Technology Bureau 沈阳市科学技术局'),
(52312, 'https://ror.org/052gvyf59', 'en', 1, 'https://ror.org/052gvyf59 Right to Care'),
(52313, 'https://ror.org/01my2h087', 'en', 1, 'https://ror.org/01my2h087 Scaife Foundations'),
(52314, 'https://ror.org/05x4p3q72', 'en', 1, 'https://ror.org/05x4p3q72 South Dakota Community Foundation'),
(52315, 'https://ror.org/04d828f56', 'en', 1, 'https://ror.org/04d828f56 Sarcoma UK'),
(52316, 'https://ror.org/04jgqt260', 'en', 1, 'https://ror.org/04jgqt260 PSC Partners Seeking a Cure'),
(52317, 'https://ror.org/04b5gd719', 'no_lang_code', 1, 'https://ror.org/04b5gd719 Riisfort (Denmark)'),
(52318, 'https://ror.org/00hx9vt43', 'en', 1, 'https://ror.org/00hx9vt43 Sarkeys Foundation'),
(52319, 'https://ror.org/05989vw47', 'en', 1, 'https://ror.org/05989vw47 Public Life Foundation of Owensboro'),
(52320, 'https://ror.org/0236wqc02', 'de', 1, 'https://ror.org/0236wqc02 Sarkoidose Stiftung'),
(52321, 'https://ror.org/01702fz61', 'en', 1, 'https://ror.org/01702fz61 Riverbanks Zoo and Garden'),
(52322, 'https://ror.org/01v0qv381', 'en', 1, 'https://ror.org/01v0qv381 Southeastern Brain Tumor Foundation'),
(52323, 'https://ror.org/01vd5v507', 'en', 1, 'https://ror.org/01vd5v507 Rob and Bessie Welder Wildlife Foundation'),
(52324, 'https://ror.org/05amca937', 'en', 1, 'https://ror.org/05amca937 Purple Martin Conservation Association'),
(52325, 'https://ror.org/01q4wy056', 'en', 1, 'https://ror.org/01q4wy056 Sasakawa Memorial Health Foundation 笹川記念保健協力財団'),
(52326, 'https://ror.org/05t9fgt79', 'en', 1, 'https://ror.org/05t9fgt79 Shurl and Kay Curci Foundation'),
(52327, 'https://ror.org/043g4d297', 'en', 1, 'https://ror.org/043g4d297 Shwachman Diamond Syndrome Foundation'),
(52328, 'https://ror.org/00rvg5p23', 'en', 1, 'https://ror.org/00rvg5p23 Save Our Seas Foundation'),
(52329, 'https://ror.org/02b7zfk76', 'en', 1, 'https://ror.org/02b7zfk76 Qinhuangdao Science and Technology Bureau 秦皇岛市科学技术局'),
(52330, 'https://ror.org/0437ce844', 'en', 1, 'https://ror.org/0437ce844 Southern Appalachian Botanical Society'),
(52331, 'https://ror.org/04j36ys10', 'en', 1, 'https://ror.org/04j36ys10 Save the Redwoods League'),
(52332, 'https://ror.org/01pg81m90', 'en', 1, 'https://ror.org/01pg81m90 Robert and Janice McNair Foundation'),
(52333, 'https://ror.org/03f4qgj81', 'en', 1, 'https://ror.org/03f4qgj81 Southern Medical Association'),
(52334, 'https://ror.org/016kmmx43', 'en', 1, 'https://ror.org/016kmmx43 Savoy Foundation'),
(52335, 'https://ror.org/027d4fk93', 'en', 1, 'https://ror.org/027d4fk93 Sid W Richardson Foundation'),
(52336, 'https://ror.org/059e60q69', 'en', 1, 'https://ror.org/059e60q69 Southern Taiwan Science Park 南部科學工業園區'),
(52337, 'https://ror.org/05bda2x91', 'en', 1, 'https://ror.org/05bda2x91 Sidgmore Family Foundation'),
(52338, 'https://ror.org/02ykrpt47', 'en', 1, 'https://ror.org/02ykrpt47 Scan Foundation'),
(52339, 'https://ror.org/04r0akj72', 'en', 1, 'https://ror.org/04r0akj72 Quixote Foundation'),
(52340, 'https://ror.org/01rsgv203', 'en', 1, 'https://ror.org/01rsgv203 Scan Design Foundation'),
(52341, 'https://ror.org/05wtm9j71', 'en', 1, 'https://ror.org/05wtm9j71 Sidney R Baer Jr Foundation'),
(52342, 'https://ror.org/01z2afr14', 'en', 1, 'https://ror.org/01z2afr14 Robert Bowne Foundation'),
(52343, 'https://ror.org/03hjy8x14', 'en', 1, 'https://ror.org/03hjy8x14 Sparkplug Foundation'),
(52344, 'https://ror.org/01sh91764', 'en', 1, 'https://ror.org/01sh91764 R Baby Foundation'),
(52345, 'https://ror.org/04axw7w96', 'en', 1, 'https://ror.org/04axw7w96 Robert E. and Evelyn McKee Foundation'),
(52346, 'https://ror.org/02p2x4d36', 'en', 1, 'https://ror.org/02p2x4d36 SIDS Calgary Society'),
(52347, 'https://ror.org/04ajxh113', 'en', 1, 'https://ror.org/04ajxh113 R. Harold Burton Foundation'),
(52348, 'https://ror.org/0176jpt46', 'en', 1, 'https://ror.org/0176jpt46 Schenectady Foundation'),
(52349, 'https://ror.org/03c8aye58', 'en', 1, 'https://ror.org/03c8aye58 R. J. Taylor, Jr. Foundation'),
(52350, 'https://ror.org/03pq14610', 'en', 1, 'https://ror.org/03pq14610 Schizophrenia Research Fund'),
(52351, 'https://ror.org/014smg292', 'en', 1, 'https://ror.org/014smg292 RJ McElroy Trust'),
(52352, 'https://ror.org/000s52h07', 'en', 1, 'https://ror.org/000s52h07 Sierra Club'),
(52353, 'https://ror.org/00x1qgr19', 'en', 1, 'https://ror.org/00x1qgr19 Robert R. McCormick Foundation'),
(52354, 'https://ror.org/03h4z1825', 'en', 1, 'https://ror.org/03h4z1825 Racing Victoria'),
(52355, 'https://ror.org/01acb1828', 'en', 1, 'https://ror.org/01acb1828 Sierra Health Foundation'),
(52356, 'https://ror.org/05r9k3m54', 'en', 1, 'https://ror.org/05r9k3m54 Robert Mapplethorpe Foundation'),
(52357, 'https://ror.org/03dfda051', 'en', 1, 'https://ror.org/03dfda051 Robert Toigo Foundation'),
(52358, 'https://ror.org/00qgmat53', 'no_lang_code', 1, 'https://ror.org/00qgmat53 Sigma-Tau Pharmaceuticals (United States)'),
(52359, 'https://ror.org/04em0at09', 'en', 1, 'https://ror.org/04em0at09 Robert W. Woodruff Foundation'),
(52360, 'https://ror.org/02hekez22', 'en', 1, 'https://ror.org/02hekez22 Sport Foundation'),
(52361, 'https://ror.org/05dwj5629', 'no_lang_code', 1, 'https://ror.org/05dwj5629 Standard General (United States)'),
(52362, 'https://ror.org/04zbaa003', 'en', 1, 'https://ror.org/04zbaa003 Sports Medicine Australia'),
(52363, 'https://ror.org/00tnk3114', 'en', 1, 'https://ror.org/00tnk3114 Robina Foundation'),
(52364, 'https://ror.org/01rrsd035', 'en', 1, 'https://ror.org/01rrsd035 Springboard Foundation'),
(52365, 'https://ror.org/048cvv935', 'en', 1, 'https://ror.org/048cvv935 Rockefeller Brothers Fund'),
(52366, 'https://ror.org/0243gh341', 'en', 1, 'https://ror.org/0243gh341 Springfield Foundation'),
(52367, 'https://ror.org/05rm68h52', 'en', 1, 'https://ror.org/05rm68h52 Sikh Foundation'),
(52368, 'https://ror.org/04agdqh30', 'en', 1, 'https://ror.org/04agdqh30 Raine Medical Research Foundation'),
(52369, 'https://ror.org/04278cc17', 'en', 1, 'https://ror.org/04278cc17 Simmons Family Foundation'),
(52370, 'https://ror.org/020n1we98', 'en', 1, 'https://ror.org/020n1we98 Rockfall Foundation'),
(52371, 'https://ror.org/00b23k705', 'en', 1, 'https://ror.org/00b23k705 Singapore Heart Foundation'),
(52372, 'https://ror.org/00cs24427', 'en', 1, 'https://ror.org/00cs24427 Roddenberry Foundation'),
(52373, 'https://ror.org/02jehgd93', 'en', 1, 'https://ror.org/02jehgd93 Singapore International Foundation Yayasan Antarabangsa Singapura 新加坡国际基金会'),
(52374, 'https://ror.org/024p43m36', 'en', 1, 'https://ror.org/024p43m36 Singapore Millennium Foundation'),
(52375, 'https://ror.org/03agt1e39', 'nl', 1, 'https://ror.org/03agt1e39 Stichting Rotterdams Kinderrevalidatie Fonds Adriaanstichting'),
(52376, 'https://ror.org/015zgf178', 'de', 1, 'https://ror.org/015zgf178 Schweizerische Multiple Sklerose Gesellschaft Società Svizzera Sclerosi Multipla Société Suisse de la Sclérose en Plaques'),
(52377, 'https://ror.org/03q2zhz47', 'en', 1, 'https://ror.org/03q2zhz47 Siouxland Community Foundation'),
(52378, 'https://ror.org/03cqqyv81', 'en', 1, 'https://ror.org/03cqqyv81 Rollie R. Kelley Family Foundation'),
(52379, 'https://ror.org/02f5r3008', 'en', 1, 'https://ror.org/02f5r3008 Stichting Sem Presser Archief'),
(52380, 'https://ror.org/01x0maw51', 'en', 1, 'https://ror.org/01x0maw51 St David''s Medical Foundation'),
(52381, 'https://ror.org/0571stx19', 'de', 1, 'https://ror.org/0571stx19 Schweizerischen Neurologischen Gesellschaft Société Suisse de Neurologie'),
(52382, 'https://ror.org/04c4mj004', 'en', 1, 'https://ror.org/04c4mj004 Science and Industry Endowment Fund'),
(52383, 'https://ror.org/00d670121', 'en', 1, 'https://ror.org/00d670121 St Giles Foundation'),
(52384, 'https://ror.org/024ap5123', 'en', 1, 'https://ror.org/024ap5123 Rome Foundation'),
(52385, 'https://ror.org/02rzjwp47', 'en', 1, 'https://ror.org/02rzjwp47 Science and Technology Center in Ukraine'),
(52386, 'https://ror.org/036m5gb67', 'en', 1, 'https://ror.org/036m5gb67 Ronald McDonald House Charities of Eastern New England'),
(52387, 'https://ror.org/05yh1h167', 'nl', 1, 'https://ror.org/05yh1h167 Stichting tot Steun VCVGZ'),
(52388, 'https://ror.org/01d931n02', 'en', 1, 'https://ror.org/01d931n02 Ronald McDonald House Charities of Northeastern Ohio'),
(52389, 'https://ror.org/02ntvem14', 'en', 1, 'https://ror.org/02ntvem14 Siragusa Family Foundation'),
(52390, 'https://ror.org/01hckwt34', 'en', 1, 'https://ror.org/01hckwt34 St. Joe Community Foundation'),
(52391, 'https://ror.org/00vh82m49', 'nl', 1, 'https://ror.org/00vh82m49 Stichting Vrienden Beatrix Kinderziekenhuis'),
(52392, 'https://ror.org/02xare716', 'en', 1, 'https://ror.org/02xare716 Sisters of Charity Health System'),
(52393, 'https://ror.org/02zqwya41', 'en', 1, 'https://ror.org/02zqwya41 Ronald McDonald House of Houston'),
(52394, 'https://ror.org/05ph9xy04', 'sv', 1, 'https://ror.org/05ph9xy04 Stiftelsen Folke Bernadottes Minnesfond'),
(52395, 'https://ror.org/03mf2sh22', 'en', 1, 'https://ror.org/03mf2sh22 SciFund Challenge'),
(52396, 'https://ror.org/048bdzy56', 'en', 1, 'https://ror.org/048bdzy56 St. Jude Medical Foundation'),
(52397, 'https://ror.org/015kngk22', 'sv', 1, 'https://ror.org/015kngk22 Stiftelsen Clas Groschinskys Minnesfond'),
(52398, 'https://ror.org/00zyvrn45', 'en', 1, 'https://ror.org/00zyvrn45 Scleroderma Research Foundation'),
(52399, 'https://ror.org/001rxm869', 'en', 1, 'https://ror.org/001rxm869 Rosalinde and Arthur Gilbert Foundation'),
(52400, 'https://ror.org/025rvh645', 'sv', 1, 'https://ror.org/025rvh645 Stiftelsen Emilie och Rudolf Gesellius fond'),
(52401, 'https://ror.org/03nbpmv05', 'en', 1, 'https://ror.org/03nbpmv05 Vitalyst Health Foundation'),
(52402, 'https://ror.org/02dmzyv54', 'en', 1, 'https://ror.org/02dmzyv54 Sitka Center for Art and Ecology'),
(52403, 'https://ror.org/05p577g88', 'en', 1, 'https://ror.org/05p577g88 Scoliosis Research Society'),
(52404, 'https://ror.org/0016qk189', 'en', 1, 'https://ror.org/0016qk189 Gifford Foundation'),
(52405, 'https://ror.org/03ek73244', 'en', 1, 'https://ror.org/03ek73244 St Marys Community Foundation'),
(52406, 'https://ror.org/043c78r03', 'en', 1, 'https://ror.org/043c78r03 Rose Community Foundation'),
(52407, 'https://ror.org/00axz6z61', 'en', 1, 'https://ror.org/00axz6z61 St. Paul’s Foundation'),
(52408, 'https://ror.org/0145pgy59', 'en', 1, 'https://ror.org/0145pgy59 Rose Foundation for Communities and the Environment'),
(52409, 'https://ror.org/057dvs720', 'sv', 1, 'https://ror.org/057dvs720 Stiftelsen Erik and Lily Philipsons Minnesfond'),
(52410, 'https://ror.org/025vct142', 'en', 1, 'https://ror.org/025vct142 Skylark Foundation'),
(52411, 'https://ror.org/04qfp7s87', 'en', 1, 'https://ror.org/04qfp7s87 Rosenberg Foundation'),
(52412, 'https://ror.org/04088fk89', 'no_lang_code', 1, 'https://ror.org/04088fk89 Staedtler (Germany)'),
(52413, 'https://ror.org/00x0wct18', 'en', 1, 'https://ror.org/00x0wct18 Roshan Cultural Heritage Institute'),
(52414, 'https://ror.org/0177f9748', 'en', 1, 'https://ror.org/0177f9748 Society for Ambulatory Anesthesia'),
(52415, 'https://ror.org/0049whg19', 'en', 1, 'https://ror.org/0049whg19 Rothschild Caesarea Foundation'),
(52416, 'https://ror.org/04g9my117', 'en', 1, 'https://ror.org/04g9my117 Society for Analytical Chemists of Pittsburgh'),
(52417, 'https://ror.org/04adtqj87', 'en', 1, 'https://ror.org/04adtqj87 T.J. Martell Foundation'),
(52418, 'https://ror.org/02eafbm53', 'sv', 1, 'https://ror.org/02eafbm53 Stiftelsen Oscar och Lili Lamms Minne'),
(52419, 'https://ror.org/05qds0828', 'en', 1, 'https://ror.org/05qds0828 Society for Applied Microbiology'),
(52420, 'https://ror.org/02yj21v41', 'en', 1, 'https://ror.org/02yj21v41 Stark Community Foundation'),
(52421, 'https://ror.org/055de8j75', 'en', 1, 'https://ror.org/055de8j75 Tag Institute for Social Development'),
(52422, 'https://ror.org/05y15e107', 'en', 1, 'https://ror.org/05y15e107 Taiho Kogyo Tribology Research Foundation'),
(52423, 'https://ror.org/00gqt9c14', 'en', 1, 'https://ror.org/00gqt9c14 Starr Foundation'),
(52424, 'https://ror.org/01r8xv865', 'sv', 1, 'https://ror.org/01r8xv865 Stiftelsen Professor Lars Erik Gelins Minnesfond'),
(52425, 'https://ror.org/00q017g63', 'en', 1, 'https://ror.org/00q017g63 Taipei Tzu Chi Hospital 台北慈济医院'),
(52426, 'https://ror.org/00fb4ms10', 'en', 1, 'https://ror.org/00fb4ms10 Promobilia Foundation Stiftelsen Promobilia'),
(52427, 'https://ror.org/05xjcvb83', 'en', 1, 'https://ror.org/05xjcvb83 Society for Industrial and Organizational Psychology'),
(52428, 'https://ror.org/05rxs1s48', 'sv', 1, 'https://ror.org/05rxs1s48 Stiftelsen Samariten'),
(52429, 'https://ror.org/058qzh392', 'en', 1, 'https://ror.org/058qzh392 Tan Kah Kee Foundation'),
(52430, 'https://ror.org/00egtf878', 'en', 1, 'https://ror.org/00egtf878 Society for Psychical Research'),
(52431, 'https://ror.org/0266x3x06', 'en', 1, 'https://ror.org/0266x3x06 Udall Foundation'),
(52432, 'https://ror.org/030jq7570', 'en', 1, 'https://ror.org/030jq7570 Society for Psychotherapy Research'),
(52433, 'https://ror.org/00gc20a07', 'en', 1, 'https://ror.org/00gc20a07 Uehara Memorial Foundation 上原記念財団'),
(52434, 'https://ror.org/026ryr342', 'en', 1, 'https://ror.org/026ryr342 Shevchenko Foundation'),
(52435, 'https://ror.org/00a1fpp20', 'en', 1, 'https://ror.org/00a1fpp20 HSC Health Care System'),
(52436, 'https://ror.org/01g0h4946', 'en', 1, 'https://ror.org/01g0h4946 Society for Renaissance Studies'),
(52437, 'https://ror.org/02ns75z54', 'en', 1, 'https://ror.org/02ns75z54 Society for Research into Higher Education'),
(52438, 'https://ror.org/01sjvcd08', 'sv', 1, 'https://ror.org/01sjvcd08 Stiftelsen Solstickan'),
(52439, 'https://ror.org/012nfnh03', 'en', 1, 'https://ror.org/012nfnh03 Society for the Anthropology of North America'),
(52440, 'https://ror.org/05q0skb15', 'en', 1, 'https://ror.org/05q0skb15 Tawani Foundation'),
(52441, 'https://ror.org/04nqfdt43', 'sv', 1, 'https://ror.org/04nqfdt43 Stiftelsen Sunnerdahls Handikappfond'),
(52442, 'https://ror.org/04k88ar18', 'en', 1, 'https://ror.org/04k88ar18 Taylor’s Tale'),
(52443, 'https://ror.org/01x10fr64', 'en', 1, 'https://ror.org/01x10fr64 Team Sanfilippo Foundation'),
(52444, 'https://ror.org/00p3nsd37', 'no_lang_code', 1, 'https://ror.org/00p3nsd37 Ulverscroft (United Kingdom)'),
(52445, 'https://ror.org/02te15m84', 'sv', 1, 'https://ror.org/02te15m84 Stiftelsen Tornspiran'),
(52446, 'https://ror.org/0234pyd94', 'en', 1, 'https://ror.org/0234pyd94 UniHealth Foundation'),
(52447, 'https://ror.org/0370bpy80', 'sv', 1, 'https://ror.org/0370bpy80 Stiftelsen Tysta Skolan'),
(52448, 'https://ror.org/02xzshh88', 'en', 1, 'https://ror.org/02xzshh88 Sterling-Turner Foundation'),
(52449, 'https://ror.org/0528q0t18', 'en', 1, 'https://ror.org/0528q0t18 United Mitochondrial Disease Foundation'),
(52450, 'https://ror.org/03dm55k03', 'en', 1, 'https://ror.org/03dm55k03 A Sister''s Hope'),
(52451, 'https://ror.org/0460p7240', 'en', 1, 'https://ror.org/0460p7240 Species Conservation Foundation Stiftung Artenschutz'),
(52452, 'https://ror.org/014mn3s63', 'en', 1, 'https://ror.org/014mn3s63 United States African Development Foundation'),
(52453, 'https://ror.org/03av2w516', 'en', 1, 'https://ror.org/03av2w516 Technology Academy Finland Tekniikan Akatemia'),
(52454, 'https://ror.org/03vqh1t78', 'en', 1, 'https://ror.org/03vqh1t78 United States Equestrian Federation'),
(52455, 'https://ror.org/03a05n602', 'no_lang_code', 1, 'https://ror.org/03a05n602 Telkom (South Africa)'),
(52456, 'https://ror.org/04e94n214', 'en', 1, 'https://ror.org/04e94n214 3R Research Foundation Stiftung Forschung 3R'),
(52457, 'https://ror.org/03w83pm05', 'en', 1, 'https://ror.org/03w83pm05 United States-Japan Foundation'),
(52458, 'https://ror.org/00tbe9875', 'de', 1, 'https://ror.org/00tbe9875 Stiftung Mercator Schweiz'),
(52459, 'https://ror.org/04g047260', 'no_lang_code', 1, 'https://ror.org/04g047260 Telstra (Australia)'),
(52460, 'https://ror.org/03cfd9m08', 'en', 1, 'https://ror.org/03cfd9m08 Combined Ophthalmic Research Rotterdam'),
(52461, 'https://ror.org/010rd0v86', 'en', 1, 'https://ror.org/010rd0v86 Michael Foundation Stiftung Michael'),
(52462, 'https://ror.org/052azjr18', 'de', 1, 'https://ror.org/052azjr18 Stiftung Oskar Helene Heim'),
(52463, 'https://ror.org/02efzs521', 'en', 1, 'https://ror.org/02efzs521 United Way of Gratiot & Isabella Counties'),
(52464, 'https://ror.org/03yvtv826', 'en', 1, 'https://ror.org/03yvtv826 United Way of Santa Barbara County'),
(52465, 'https://ror.org/02jz7nx66', 'en', 1, 'https://ror.org/02jz7nx66 Stillbirth Foundation'),
(52466, 'https://ror.org/0549g6963', 'nl', 1, 'https://ror.org/0549g6963 Stichting Euregio Maas-Rijn'),
(52467, 'https://ror.org/033x7yd97', 'en', 1, 'https://ror.org/033x7yd97 Stimson Miller Foundation'),
(52468, 'https://ror.org/03r8q5f36', 'en', 1, 'https://ror.org/03r8q5f36 University of Maryland Extension'),
(52469, 'https://ror.org/035q7re19', 'en', 1, 'https://ror.org/035q7re19 Texas Department of Agriculture'),
(52470, 'https://ror.org/05r7ttv75', 'en', 1, 'https://ror.org/05r7ttv75 United Way of Smith County'),
(52471, 'https://ror.org/05ttxxx91', 'en', 1, 'https://ror.org/05ttxxx91 Stony Wold Herbert Fund'),
(52472, 'https://ror.org/05dvmdf20', 'en', 1, 'https://ror.org/05dvmdf20 Stop Cancer'),
(52473, 'https://ror.org/01ffpma77', 'en', 1, 'https://ror.org/01ffpma77 Stop! Children''s Cancer of Palm Beach County'),
(52474, 'https://ror.org/05bgg7k92', 'en', 1, 'https://ror.org/05bgg7k92 Stuart Foundation'),
(52475, 'https://ror.org/008c6se98', 'en', 1, 'https://ror.org/008c6se98 Unity Through Knowledge Fund'),
(52476, 'https://ror.org/004sjsc98', 'en', 1, 'https://ror.org/004sjsc98 Students Supporting Brain Tumor Research'),
(52477, 'https://ror.org/02r08m051', 'de', 1, 'https://ror.org/02r08m051 Vereinigung Analytischer Kinder- und Jugendlichen-Psychotherapeuten'),
(52478, 'https://ror.org/01k8mq954', 'en', 1, 'https://ror.org/01k8mq954 Universal Health Care Foundation of Connecticut'),
(52479, 'https://ror.org/00en0be76', 'en', 1, 'https://ror.org/00en0be76 Sudbury Foundation'),
(52480, 'https://ror.org/04t81kd98', 'en', 1, 'https://ror.org/04t81kd98 Vetiver Network International'),
(52481, 'https://ror.org/00d57b563', 'en', 1, 'https://ror.org/00d57b563 SIL International'),
(52482, 'https://ror.org/024pc0058', 'en', 1, 'https://ror.org/024pc0058 Summerlee Foundation'),
(52483, 'https://ror.org/0242j2724', 'en', 1, 'https://ror.org/0242j2724 Elizabeth Greenshields Foundation'),
(52484, 'https://ror.org/00r6pc512', 'en', 1, 'https://ror.org/00r6pc512 Sun Health Foundation'),
(52485, 'https://ror.org/01w2f0g43', 'en', 1, 'https://ror.org/01w2f0g43 Sunbeam Foundation'),
(52486, 'https://ror.org/00c0pch62', 'en', 1, 'https://ror.org/00c0pch62 Sunflower Foundation'),
(52487, 'https://ror.org/02db0m975', 'en', 1, 'https://ror.org/02db0m975 Sungmo Eye Hospital'),
(52488, 'https://ror.org/010cn0k09', 'sv', 1, 'https://ror.org/010cn0k09 Victoriastiftelsen'),
(52489, 'https://ror.org/02c9pqe95', 'en', 1, 'https://ror.org/02c9pqe95 Vidda Foundation'),
(52490, 'https://ror.org/048c6ht78', 'en', 1, 'https://ror.org/048c6ht78 Vietnam Education Foundation'),
(52491, 'https://ror.org/05sgg0860', 'en', 1, 'https://ror.org/05sgg0860 Finnish Society of Anaesthesiologists Suomen Anestesiologiyhdistys'),
(52492, 'https://ror.org/05yfjtn64', 'en', 1, 'https://ror.org/05yfjtn64 Womens Foundation 婦女基金會有限公司'),
(52493, 'https://ror.org/02k9nmp07', 'en', 1, 'https://ror.org/02k9nmp07 Radiological Society of Finland Suomen Radiologiyhdistys'),
(52494, 'https://ror.org/02sjh4j59', 'en', 1, 'https://ror.org/02sjh4j59 Vilcek Foundation'),
(52495, 'https://ror.org/04rcz6b42', 'en', 1, 'https://ror.org/04rcz6b42 Finnish Society of Sciences and Letters Finska Vetenskaps-Societeten Suomen Tiedeseura'),
(52496, 'https://ror.org/05pzez236', 'da', 1, 'https://ror.org/05pzez236 Ville Heises Legat'),
(52497, 'https://ror.org/03x526f83', 'en', 1, 'https://ror.org/03x526f83 Support Center for Advanced Telecommunications Technology Research Foundation 一財)テレコム先端技術研究支援センター'),
(52498, 'https://ror.org/0225ptr32', 'en', 1, 'https://ror.org/0225ptr32 Surdna Foundation'),
(52499, 'https://ror.org/01t58v577', 'en', 1, 'https://ror.org/01t58v577 Thomas Foundation'),
(52500, 'https://ror.org/04n5x9175', 'en', 1, 'https://ror.org/04n5x9175 Virginia Hodgkins Somers Foundation'),
(52501, 'https://ror.org/02606vr52', 'en', 1, 'https://ror.org/02606vr52 Thomas Wilson Foundation'),
(52502, 'https://ror.org/0009jge67', 'en', 1, 'https://ror.org/0009jge67 Thoracic Surgery Foundation'),
(52503, 'https://ror.org/04y64sc23', 'en', 1, 'https://ror.org/04y64sc23 Susan Thompson Buffett Foundation'),
(52504, 'https://ror.org/008v8ay36', 'en', 1, 'https://ror.org/008v8ay36 Thorsten and Elsa Segerfalk Foundation Torsten och Elsa Segerfalks stiftelse'),
(52505, 'https://ror.org/004vx2m26', 'en', 1, 'https://ror.org/004vx2m26 Vision of Children Foundation'),
(52506, 'https://ror.org/031w1hc71', 'en', 1, 'https://ror.org/031w1hc71 Threshold Foundation'),
(52507, 'https://ror.org/01xa5j591', 'en', 1, 'https://ror.org/01xa5j591 Sustainable Development Technology Canada Technologies du Développement Durable du Canada'),
(52508, 'https://ror.org/046tc9744', 'da', 1, 'https://ror.org/046tc9744 Svend Andersen Fonden'),
(52509, 'https://ror.org/001ctpj73', 'en', 1, 'https://ror.org/001ctpj73 Voice Foundation'),
(52510, 'https://ror.org/015gb1r92', 'da', 1, 'https://ror.org/015gb1r92 Svend Beck Peter Holm og Vagn Jacobsens Almene Fond'),
(52511, 'https://ror.org/05v34vf11', 'en', 1, 'https://ror.org/05v34vf11 Volvo Environment Prize'),
(52512, 'https://ror.org/051tck365', 'en', 1, 'https://ror.org/051tck365 Svenska Kennelklubben Swedish Kennel Club'),
(52513, 'https://ror.org/030c89r84', 'no_lang_code', 1, 'https://ror.org/030c89r84 Thumbay Group (United Arab Emirates)'),
(52514, 'https://ror.org/016fc4a97', 'en', 1, 'https://ror.org/016fc4a97 University Film and Video Association'),
(52515, 'https://ror.org/05n1rgb70', 'en', 1, 'https://ror.org/05n1rgb70 Volvo Research and Education Foundations'),
(52516, 'https://ror.org/05e6c8204', 'sv', 1, 'https://ror.org/05e6c8204 Svenska Parkinsonstiftelsen'),
(52517, 'https://ror.org/050gcw725', 'en', 1, 'https://ror.org/050gcw725 Telecommunication an Electronics Associaton Tietotekniikan ja Elektroniikan Seura'),
(52518, 'https://ror.org/022jr5m13', 'nl', 1, 'https://ror.org/022jr5m13 VSBfonds'),
(52519, 'https://ror.org/03nqg9919', 'no_lang_code', 1, 'https://ror.org/03nqg9919 Sweden and Martina (Italy)'),
(52520, 'https://ror.org/05n6dzg85', 'en', 1, 'https://ror.org/05n6dzg85 Sverige Amerikastiftelsen Sweden America Foundation'),
(52521, 'https://ror.org/046w6p285', 'en', 1, 'https://ror.org/046w6p285 Swedish Brain Power'),
(52522, 'https://ror.org/03zzjmx92', 'en', 1, 'https://ror.org/03zzjmx92 Tom Coughlin Jay Fund Foundation'),
(52523, 'https://ror.org/001xe7y71', 'en', 1, 'https://ror.org/001xe7y71 Waikato Medical Research Foundation'),
(52524, 'https://ror.org/02mbgxz16', 'en', 1, 'https://ror.org/02mbgxz16 Tommy Fuss Fund'),
(52525, 'https://ror.org/04tepr653', 'no_lang_code', 1, 'https://ror.org/04tepr653 Until There’s A Cure'),
(52526, 'https://ror.org/035a1qp70', 'en', 1, 'https://ror.org/035a1qp70 Tony Elumelu Foundation'),
(52527, 'https://ror.org/003dpyf77', 'en', 1, 'https://ror.org/003dpyf77 Swiss Continence Foundation'),
(52528, 'https://ror.org/05r00b483', 'en', 1, 'https://ror.org/05r00b483 Waksman Foundation for Microbiology'),
(52529, 'https://ror.org/02qmwr629', 'en', 1, 'https://ror.org/02qmwr629 Wallace Genetic Foundation'),
(52530, 'https://ror.org/03b5tag12', 'en', 1, 'https://ror.org/03b5tag12 The Toyota Foundation トヨタ財団'),
(52531, 'https://ror.org/05539km59', 'en', 1, 'https://ror.org/05539km59 Sylvia and Charles Viertel Charitable Foundation'),
(52532, 'https://ror.org/02z0z7g18', 'en', 1, 'https://ror.org/02z0z7g18 Tracy Jo Wilson Ovarian Cancer Foundation'),
(52533, 'https://ror.org/00eyy9c71', 'en', 1, 'https://ror.org/00eyy9c71 Travis Roy Foundation'),
(52534, 'https://ror.org/00hzk1038', 'en', 1, 'https://ror.org/00hzk1038 Driskill Foundation'),
(52535, 'https://ror.org/046ec5t14', 'en', 1, 'https://ror.org/046ec5t14 Syngenta Foundation for Sustainable Agriculture');
INSERT INTO `rors` VALUES
(52536, 'https://ror.org/05yh4rh25', 'en', 1, 'https://ror.org/05yh4rh25 Walton Family Foundation'),
(52537, 'https://ror.org/03g18fj02', 'en', 1, 'https://ror.org/03g18fj02 T. Boone Pickens Foundation'),
(52538, 'https://ror.org/02e3p0n79', 'en', 1, 'https://ror.org/02e3p0n79 Washington Square Health Foundation'),
(52539, 'https://ror.org/04axzyr33', 'no_lang_code', 1, 'https://ror.org/04axzyr33 Usibelli Coal Mine (United States)'),
(52540, 'https://ror.org/01k2zv986', 'en', 1, 'https://ror.org/01k2zv986 Triangle Community Foundation'),
(52541, 'https://ror.org/02jasgp09', 'en', 1, 'https://ror.org/02jasgp09 Wasie Foundation'),
(52542, 'https://ror.org/041ztcd61', 'en', 1, 'https://ror.org/041ztcd61 Warren Alpert Foundation'),
(52543, 'https://ror.org/01sqscf14', 'en', 1, 'https://ror.org/01sqscf14 William Caspar Graustein Memorial Fund'),
(52544, 'https://ror.org/01mfjs476', 'da', 1, 'https://ror.org/01mfjs476 Trigon Fonden'),
(52545, 'https://ror.org/0118w8d25', 'en', 1, 'https://ror.org/0118w8d25 Wasserman Foundation'),
(52546, 'https://ror.org/02pmyyv54', 'en', 1, 'https://ror.org/02pmyyv54 William G McGowan Charitable Fund'),
(52547, 'https://ror.org/0525q3519', 'en', 1, 'https://ror.org/0525q3519 William K Bowes Jr Foundation'),
(52548, 'https://ror.org/0174xkn11', 'en', 1, 'https://ror.org/0174xkn11 William K. Warren Foundation'),
(52549, 'https://ror.org/0362bde51', 'en', 1, 'https://ror.org/0362bde51 Water Environment and Reuse Foundation'),
(52550, 'https://ror.org/05vea6821', 'en', 1, 'https://ror.org/05vea6821 William P. Wharton Trust'),
(52551, 'https://ror.org/00mfys757', 'en', 1, 'https://ror.org/00mfys757 World Food Prize Foundation'),
(52552, 'https://ror.org/043mk2594', 'sv', 1, 'https://ror.org/043mk2594 Trygg Hansas Forskningsstiftelse'),
(52553, 'https://ror.org/03sqthx21', 'en', 1, 'https://ror.org/03sqthx21 World-India Diabetes Foundation'),
(52554, 'https://ror.org/01jxxh642', 'en', 1, 'https://ror.org/01jxxh642 William T Morris Foundation'),
(52555, 'https://ror.org/02zav4281', 'no_lang_code', 1, 'https://ror.org/02zav4281 V. Kann Rasmussen Foundation'),
(52556, 'https://ror.org/017swdq34', 'en', 1, 'https://ror.org/017swdq34 Wuhan Donghu University 武汉东湖学院'),
(52557, 'https://ror.org/035669d27', 'en', 1, 'https://ror.org/035669d27 Lishman Health Foundation'),
(52558, 'https://ror.org/019jfhj96', 'en', 1, 'https://ror.org/019jfhj96 Webber Family Foundation'),
(52559, 'https://ror.org/007zhvp17', 'no_lang_code', 1, 'https://ror.org/007zhvp17 Williams (United States)'),
(52560, 'https://ror.org/00ggtz082', 'en', 1, 'https://ror.org/00ggtz082 Val Skinner Foundation'),
(52561, 'https://ror.org/01zzv0338', 'en', 1, 'https://ror.org/01zzv0338 Wuxi Municipal Bureau on Science and Technology 无锡市科技局'),
(52562, 'https://ror.org/04abad481', 'en', 1, 'https://ror.org/04abad481 Webster Groves Nature Study Society'),
(52563, 'https://ror.org/00am0th03', 'en', 1, 'https://ror.org/00am0th03 Wyncote Foundation'),
(52564, 'https://ror.org/04pgeyv17', 'en', 1, 'https://ror.org/04pgeyv17 Weeden Foundation'),
(52565, 'https://ror.org/05nmp3276', 'en', 1, 'https://ror.org/05nmp3276 Vallee Foundation'),
(52566, 'https://ror.org/03py6vn41', 'en', 1, 'https://ror.org/03py6vn41 Wilson Foundation'),
(52567, 'https://ror.org/03zxgcy06', 'en', 1, 'https://ror.org/03zxgcy06 Weitz Family Foundation'),
(52568, 'https://ror.org/05rfpvc37', 'no_lang_code', 1, 'https://ror.org/05rfpvc37 Van Löben Sels/RembeRock Foundation'),
(52569, 'https://ror.org/00ypgdj53', 'en', 1, 'https://ror.org/00ypgdj53 Van Wert County Foundation'),
(52570, 'https://ror.org/01wfvz044', 'en', 1, 'https://ror.org/01wfvz044 Winds of Peace Foundation'),
(52571, 'https://ror.org/02rn5dn49', 'en', 1, 'https://ror.org/02rn5dn49 Xi''an Science Technology Bureau 西安市科技局'),
(52572, 'https://ror.org/03xmk1g71', 'en', 1, 'https://ror.org/03xmk1g71 Wender Weis Foundation for Children'),
(52573, 'https://ror.org/059qamr21', 'en', 1, 'https://ror.org/059qamr21 Varkey Foundation'),
(52574, 'https://ror.org/01v5z9j59', 'en', 1, 'https://ror.org/01v5z9j59 Vascular Birthmarks Foundation'),
(52575, 'https://ror.org/01ctc2z33', 'en', 1, 'https://ror.org/01ctc2z33 Wipe Out Kids Cancer'),
(52576, 'https://ror.org/0593r9g81', 'en', 1, 'https://ror.org/0593r9g81 Vegetables New Zealand'),
(52577, 'https://ror.org/05egh1w37', 'no_lang_code', 1, 'https://ror.org/05egh1w37 Yarra Valley Water (Australia)'),
(52578, 'https://ror.org/02kv04939', 'en', 1, 'https://ror.org/02kv04939 Zhengzhou City Science and Technology Bureau 郑州市科技局'),
(52579, 'https://ror.org/05drp1a22', 'en', 1, 'https://ror.org/05drp1a22 Veolia Environmental Trust'),
(52580, 'https://ror.org/008798434', 'en', 1, 'https://ror.org/008798434 West Central Initiative'),
(52581, 'https://ror.org/022897k65', 'en', 1, 'https://ror.org/022897k65 Vera Bradley Foundation for Breast Cancer'),
(52582, 'https://ror.org/00vppz759', 'en', 1, 'https://ror.org/00vppz759 Westchester Community Foundation'),
(52583, 'https://ror.org/04zhxv661', 'en', 1, 'https://ror.org/04zhxv661 Wisconsin Public Service'),
(52584, 'https://ror.org/03akpdh76', 'de', 1, 'https://ror.org/03akpdh76 ZNS Hannelore Kohl Stiftung'),
(52585, 'https://ror.org/025eayv75', 'en', 1, 'https://ror.org/025eayv75 Islamic Azad University, Firoozkooh Branch دانشگاه آزاد اسلامي واحد فيروزكوه'),
(52586, 'https://ror.org/05pctrr97', 'en', 1, 'https://ror.org/05pctrr97 Wisconsin Turfgrass Association'),
(52587, 'https://ror.org/00mfshe62', 'en', 1, 'https://ror.org/00mfshe62 Wishlist'),
(52588, 'https://ror.org/02ysg4b45', 'en', 1, 'https://ror.org/02ysg4b45 Womens Foundation of Minnesota'),
(52589, 'https://ror.org/00c51ea71', 'en', 1, 'https://ror.org/00c51ea71 Western Australian Genealogical Society'),
(52590, 'https://ror.org/04jmtbm12', 'en', 1, 'https://ror.org/04jmtbm12 Western Surgical Association'),
(52591, 'https://ror.org/05w1ran05', 'en', 1, 'https://ror.org/05w1ran05 Womens Foundation of Southern Arizona'),
(52592, 'https://ror.org/04qd3ka10', 'en', 1, 'https://ror.org/04qd3ka10 Womens Fund of Central Ohio'),
(52593, 'https://ror.org/03ne27j26', 'en', 1, 'https://ror.org/03ne27j26 Westfield Foundation'),
(52594, 'https://ror.org/04swm6c48', 'en', 1, 'https://ror.org/04swm6c48 Z.Smith Reynolds Foundation'),
(52595, 'https://ror.org/03e04kk51', 'en', 1, 'https://ror.org/03e04kk51 Women and Children’s Health Research Institute'),
(52596, 'https://ror.org/0002exf56', 'nl', 1, 'https://ror.org/0002exf56 Wetenschappelijk Onderzoek- en Documentatiecentrum'),
(52597, 'https://ror.org/052gt1g92', 'en', 1, 'https://ror.org/052gt1g92 Womens Fund of Hawaii'),
(52598, 'https://ror.org/04ta9pt38', 'en', 1, 'https://ror.org/04ta9pt38 Women''s Foundation of Colorado'),
(52599, 'https://ror.org/05ee8pt56', 'en', 1, 'https://ror.org/05ee8pt56 Whiteman Foundation'),
(52600, 'https://ror.org/02z857927', 'en', 1, 'https://ror.org/02z857927 Womens Sports Foundation'),
(52601, 'https://ror.org/00mcgvm89', 'en', 1, 'https://ror.org/00mcgvm89 Wildlife Conservation Society Argentina'),
(52602, 'https://ror.org/00jzne873', 'en', 1, 'https://ror.org/00jzne873 Whitley Fund for Nature'),
(52603, 'https://ror.org/01yd3n286', 'en', 1, 'https://ror.org/01yd3n286 Wildlife Forever'),
(52604, 'https://ror.org/03av9yr88', 'en', 1, 'https://ror.org/03av9yr88 Whitley Wildlife Conservation Trust'),
(52605, 'https://ror.org/045mb3x22', 'en', 1, 'https://ror.org/045mb3x22 Woodruff Foundation'),
(52606, 'https://ror.org/01w3ear51', 'en', 1, 'https://ror.org/01w3ear51 Woods Fund of Chicago'),
(52607, 'https://ror.org/053abxt44', 'en', 1, 'https://ror.org/053abxt44 Willard L. Eccles Charitable Foundation'),
(52608, 'https://ror.org/052m56d38', 'en', 1, 'https://ror.org/052m56d38 Whaleman Foundation'),
(52609, 'https://ror.org/05mh4bk89', 'en', 1, 'https://ror.org/05mh4bk89 Whole Systems Foundation'),
(52610, 'https://ror.org/02cbxva55', 'en', 1, 'https://ror.org/02cbxva55 Wieboldt Foundation'),
(52611, 'https://ror.org/013gv6q66', 'en', 1, 'https://ror.org/013gv6q66 WHAS Crusade for Children'),
(52612, 'https://ror.org/0184jv876', 'no_lang_code', 1, 'https://ror.org/0184jv876 Johnson Controls (Germany)'),
(52613, 'https://ror.org/014wt7r80', 'en', 1, 'https://ror.org/014wt7r80 IBM Research - India'),
(52614, 'https://ror.org/005w8dd04', 'en', 1, 'https://ror.org/005w8dd04 IBM Research - Almaden'),
(52615, 'https://ror.org/05gjbbg60', 'en', 1, 'https://ror.org/05gjbbg60 IBM Research - Austin'),
(52616, 'https://ror.org/027r3nx49', 'en', 1, 'https://ror.org/027r3nx49 IBM Research - Australia'),
(52617, 'https://ror.org/01fxqdx25', 'en', 1, 'https://ror.org/01fxqdx25 IBM Research - Brazil'),
(52618, 'https://ror.org/05c0m9m16', 'en', 1, 'https://ror.org/05c0m9m16 IBM Research - Africa'),
(52619, 'https://ror.org/00rn0m335', 'no_lang_code', 1, 'https://ror.org/00rn0m335 Alibaba Group (United States)'),
(52620, 'https://ror.org/05vv53n36', 'no_lang_code', 1, 'https://ror.org/05vv53n36 AGCO (Germany)'),
(52621, 'https://ror.org/02krcbc65', 'no_lang_code', 1, 'https://ror.org/02krcbc65 ABB (Japan)'),
(52622, 'https://ror.org/03frwhf70', 'no_lang_code', 1, 'https://ror.org/03frwhf70 AGCO (France)'),
(52623, 'https://ror.org/02bfj0n71', 'no_lang_code', 1, 'https://ror.org/02bfj0n71 Abbott (Ireland)'),
(52624, 'https://ror.org/01ymvpb42', 'no_lang_code', 1, 'https://ror.org/01ymvpb42 Honeywell (France)'),
(52625, 'https://ror.org/0579kbh86', 'no_lang_code', 1, 'https://ror.org/0579kbh86 AkzoNobel (United States)'),
(52626, 'https://ror.org/011b3r412', 'no_lang_code', 1, 'https://ror.org/011b3r412 Adidas (Netherlands)'),
(52627, 'https://ror.org/03p05j480', 'no_lang_code', 1, 'https://ror.org/03p05j480 Andritz (United States)'),
(52628, 'https://ror.org/00pgwrm68', 'no_lang_code', 1, 'https://ror.org/00pgwrm68 Alpha and Omega Semiconductor (United States)'),
(52629, 'https://ror.org/04s6a9w47', 'no_lang_code', 1, 'https://ror.org/04s6a9w47 Newell Brands (France)'),
(52630, 'https://ror.org/045cwqd08', 'no_lang_code', 1, 'https://ror.org/045cwqd08 Albemarle (Netherlands)'),
(52631, 'https://ror.org/03j353w33', 'no_lang_code', 1, 'https://ror.org/03j353w33 Berry (United States)'),
(52632, 'https://ror.org/016kx7a84', 'no_lang_code', 1, 'https://ror.org/016kx7a84 Ballard Power Systems (Germany)'),
(52633, 'https://ror.org/02prt1r25', 'no_lang_code', 1, 'https://ror.org/02prt1r25 Amdocs (Cyprus)'),
(52634, 'https://ror.org/007q1v885', 'no_lang_code', 1, 'https://ror.org/007q1v885 Schneider Electric (Denmark)'),
(52635, 'https://ror.org/03ms9ra30', 'no_lang_code', 1, 'https://ror.org/03ms9ra30 Alere (Switzerland)'),
(52636, 'https://ror.org/00v9m1060', 'no_lang_code', 1, 'https://ror.org/00v9m1060 Robert Bosch (France)'),
(52637, 'https://ror.org/057aydj06', 'no_lang_code', 1, 'https://ror.org/057aydj06 Robert Bosch (Netherlands)'),
(52638, 'https://ror.org/02m0v4a06', 'no_lang_code', 1, 'https://ror.org/02m0v4a06 Atos (United States)'),
(52639, 'https://ror.org/01rgj1337', 'no_lang_code', 1, 'https://ror.org/01rgj1337 BIC (United States)'),
(52640, 'https://ror.org/01jk97k74', 'no_lang_code', 1, 'https://ror.org/01jk97k74 BASF (China)'),
(52641, 'https://ror.org/00yxram96', 'no_lang_code', 1, 'https://ror.org/00yxram96 Bracco (Netherlands)'),
(52642, 'https://ror.org/02jqm1g69', 'no_lang_code', 1, 'https://ror.org/02jqm1g69 Biotronik (Switzerland)'),
(52643, 'https://ror.org/000nqjq74', 'no_lang_code', 1, 'https://ror.org/000nqjq74 ASM (Japan)'),
(52644, 'https://ror.org/040h0fj31', 'no_lang_code', 1, 'https://ror.org/040h0fj31 AstenJohnson (United States)'),
(52645, 'https://ror.org/01dy84y11', 'no_lang_code', 1, 'https://ror.org/01dy84y11 Atlas Copco (Sweden)'),
(52646, 'https://ror.org/04hww2965', 'no_lang_code', 1, 'https://ror.org/04hww2965 Atlas Copco (Belgium)'),
(52647, 'https://ror.org/04y2cjj38', 'no_lang_code', 1, 'https://ror.org/04y2cjj38 Amer Sports (Austria)'),
(52648, 'https://ror.org/04d8f4804', 'no_lang_code', 1, 'https://ror.org/04d8f4804 HeidelbergCement (United States)'),
(52649, 'https://ror.org/000bmd472', 'no_lang_code', 1, 'https://ror.org/000bmd472 Kuraray (United States)'),
(52650, 'https://ror.org/016nn9d26', 'no_lang_code', 1, 'https://ror.org/016nn9d26 Becton Dickinson (France)'),
(52651, 'https://ror.org/05spb8741', 'no_lang_code', 1, 'https://ror.org/05spb8741 Oclaro (United States)'),
(52652, 'https://ror.org/04hqnrz12', 'no_lang_code', 1, 'https://ror.org/04hqnrz12 Bruker (Switzerland)'),
(52653, 'https://ror.org/00pe39y85', 'no_lang_code', 1, 'https://ror.org/00pe39y85 Bruker (France)'),
(52654, 'https://ror.org/03bce7633', 'no_lang_code', 1, 'https://ror.org/03bce7633 Metso (United States)'),
(52655, 'https://ror.org/01kcjb027', 'no_lang_code', 1, 'https://ror.org/01kcjb027 Avid (United States)'),
(52656, 'https://ror.org/0198yrw13', 'no_lang_code', 1, 'https://ror.org/0198yrw13 Boehringer Ingelheim (Mexico)'),
(52657, 'https://ror.org/01tnj0473', 'no_lang_code', 1, 'https://ror.org/01tnj0473 Caterpillar (Switzerland)'),
(52658, 'https://ror.org/02jkzvy92', 'no_lang_code', 1, 'https://ror.org/02jkzvy92 Continental (Canada)'),
(52659, 'https://ror.org/024mety47', 'no_lang_code', 1, 'https://ror.org/024mety47 Entrust Datacard (United States)'),
(52660, 'https://ror.org/002mxea17', 'no_lang_code', 1, 'https://ror.org/002mxea17 Dean Foods (United States)'),
(52661, 'https://ror.org/04j971w37', 'no_lang_code', 1, 'https://ror.org/04j971w37 Cyclacel Pharmaceuticals (United Kingdom)'),
(52662, 'https://ror.org/03ceayq64', 'no_lang_code', 1, 'https://ror.org/03ceayq64 Rheinmetall (Switzerland)'),
(52663, 'https://ror.org/01p9w4124', 'no_lang_code', 1, 'https://ror.org/01p9w4124 Milacron (United States)'),
(52664, 'https://ror.org/04ar4b407', 'no_lang_code', 1, 'https://ror.org/04ar4b407 Koenig & Bauer (Switzerland)'),
(52665, 'https://ror.org/0414r2h69', 'no_lang_code', 1, 'https://ror.org/0414r2h69 CoorsTek (Japan)'),
(52666, 'https://ror.org/04vppzx17', 'no_lang_code', 1, 'https://ror.org/04vppzx17 Conversant (Luxembourg)'),
(52667, 'https://ror.org/03hccqd50', 'no_lang_code', 1, 'https://ror.org/03hccqd50 Makita (Germany)'),
(52668, 'https://ror.org/0282m9c08', 'no_lang_code', 1, 'https://ror.org/0282m9c08 Kion Group (United States)'),
(52669, 'https://ror.org/02w314k38', 'no_lang_code', 1, 'https://ror.org/02w314k38 Denso (United States)'),
(52670, 'https://ror.org/03spzq317', 'no_lang_code', 1, 'https://ror.org/03spzq317 Ferring Pharmaceuticals (Netherlands)'),
(52671, 'https://ror.org/0281q7a54', 'no_lang_code', 1, 'https://ror.org/0281q7a54 Gestamp (Germany)'),
(52672, 'https://ror.org/011kvxd26', 'no_lang_code', 1, 'https://ror.org/011kvxd26 Doosan (South Korea) 두산그룹'),
(52673, 'https://ror.org/01wjt3437', 'no_lang_code', 1, 'https://ror.org/01wjt3437 Federal Mogul (Belgium)'),
(52674, 'https://ror.org/010pb5v16', 'no_lang_code', 1, 'https://ror.org/010pb5v16 Rockwool International (Germany)'),
(52675, 'https://ror.org/05x7k6a83', 'no_lang_code', 1, 'https://ror.org/05x7k6a83 Dr. Reddy''s Laboratories (United States)'),
(52676, 'https://ror.org/0401v0x80', 'no_lang_code', 1, 'https://ror.org/0401v0x80 Dräger (United States)'),
(52677, 'https://ror.org/03re7dt17', 'no_lang_code', 1, 'https://ror.org/03re7dt17 Elopak (Switzerland)'),
(52678, 'https://ror.org/01g7nky19', 'no_lang_code', 1, 'https://ror.org/01g7nky19 E Ink (Taiwan)'),
(52679, 'https://ror.org/00bg52247', 'no_lang_code', 1, 'https://ror.org/00bg52247 Furukawa Electric (United States)'),
(52680, 'https://ror.org/0507jvj85', 'no_lang_code', 1, 'https://ror.org/0507jvj85 GAF (United States)'),
(52681, 'https://ror.org/014tew554', 'no_lang_code', 1, 'https://ror.org/014tew554 Garmin (United Kingdom)'),
(52682, 'https://ror.org/05k25vk24', 'no_lang_code', 1, 'https://ror.org/05k25vk24 Saudi Arabia Basic Industries (United States)'),
(52683, 'https://ror.org/02hyvpg31', 'no_lang_code', 1, 'https://ror.org/02hyvpg31 Foxconn (Cayman Islands)'),
(52684, 'https://ror.org/03jjhm649', 'no_lang_code', 1, 'https://ror.org/03jjhm649 Expro (United Kingdom)'),
(52685, 'https://ror.org/0270n9q14', 'no_lang_code', 1, 'https://ror.org/0270n9q14 Garmin (Switzerland)'),
(52686, 'https://ror.org/04rcgpb63', 'no_lang_code', 1, 'https://ror.org/04rcgpb63 Procter & Gamble (Canada)'),
(52687, 'https://ror.org/0492qzy66', 'no_lang_code', 1, 'https://ror.org/0492qzy66 Stanley Black & Decker (France)'),
(52688, 'https://ror.org/00xvxdy42', 'no_lang_code', 1, 'https://ror.org/00xvxdy42 Acer (United States)'),
(52689, 'https://ror.org/03g2a6c32', 'no_lang_code', 1, 'https://ror.org/03g2a6c32 General Electric (Japan)'),
(52690, 'https://ror.org/04tvj9g97', 'no_lang_code', 1, 'https://ror.org/04tvj9g97 GKN (France)'),
(52691, 'https://ror.org/045qqby88', 'no_lang_code', 1, 'https://ror.org/045qqby88 ON Semiconductor (South Korea)'),
(52692, 'https://ror.org/03bw04561', 'no_lang_code', 1, 'https://ror.org/03bw04561 Gleason (United States)'),
(52693, 'https://ror.org/02qz5d088', 'no_lang_code', 1, 'https://ror.org/02qz5d088 Heraeus (Belgium)'),
(52694, 'https://ror.org/024x5f906', 'no_lang_code', 1, 'https://ror.org/024x5f906 Hexcel (United States)'),
(52695, 'https://ror.org/05kcspq23', 'no_lang_code', 1, 'https://ror.org/05kcspq23 Belden (Germany)'),
(52696, 'https://ror.org/01dh19j96', 'no_lang_code', 1, 'https://ror.org/01dh19j96 Goss International (France)'),
(52697, 'https://ror.org/057040g82', 'no_lang_code', 1, 'https://ror.org/057040g82 Semtech (Canada)'),
(52698, 'https://ror.org/03fkhh366', 'no_lang_code', 1, 'https://ror.org/03fkhh366 Hitachi (Netherlands)'),
(52699, 'https://ror.org/014t9bz90', 'no_lang_code', 1, 'https://ror.org/014t9bz90 Techtronic Industries (United Kingdom)'),
(52700, 'https://ror.org/05j3y0344', 'no_lang_code', 1, 'https://ror.org/05j3y0344 Koch Industries (France)'),
(52701, 'https://ror.org/01mvxm016', 'no_lang_code', 1, 'https://ror.org/01mvxm016 Hottinger Baldwin Messtechnik (Germany)'),
(52702, 'https://ror.org/05gaz1x25', 'no_lang_code', 1, 'https://ror.org/05gaz1x25 Hottinger Baldwin Messtechnik (United States)'),
(52703, 'https://ror.org/02kqmq412', 'no_lang_code', 1, 'https://ror.org/02kqmq412 Hitachi (South Korea) 히타치'),
(52704, 'https://ror.org/01ftnmh36', 'no_lang_code', 1, 'https://ror.org/01ftnmh36 Gretsch-Unitas (Germany)'),
(52705, 'https://ror.org/02hbm4s94', 'no_lang_code', 1, 'https://ror.org/02hbm4s94 Dover (France)'),
(52706, 'https://ror.org/05dp2c867', 'no_lang_code', 1, 'https://ror.org/05dp2c867 Vale (United Kingdom)'),
(52707, 'https://ror.org/04s6h1250', 'no_lang_code', 1, 'https://ror.org/04s6h1250 JDA Software (United States)'),
(52708, 'https://ror.org/043xc2b47', 'no_lang_code', 1, 'https://ror.org/043xc2b47 Foxconn (United States)'),
(52709, 'https://ror.org/04wwsbd59', 'en', 1, 'https://ror.org/04wwsbd59 ITRI International'),
(52710, 'https://ror.org/01yxf2e18', 'no_lang_code', 1, 'https://ror.org/01yxf2e18 Honeywell (Netherlands)'),
(52711, 'https://ror.org/05av0zp13', 'no_lang_code', 1, 'https://ror.org/05av0zp13 Honeywell (Switzerland)'),
(52712, 'https://ror.org/00bps5g02', 'no_lang_code', 1, 'https://ror.org/00bps5g02 Husky (Luxembourg)'),
(52713, 'https://ror.org/02vff8922', 'no_lang_code', 1, 'https://ror.org/02vff8922 Ahlstrom-Munksjö (United States)'),
(52714, 'https://ror.org/01mz6aw81', 'no_lang_code', 1, 'https://ror.org/01mz6aw81 E Ink (South Korea)'),
(52715, 'https://ror.org/04k1dvq14', 'no_lang_code', 1, 'https://ror.org/04k1dvq14 INFICON (Switzerland)'),
(52716, 'https://ror.org/003p0bk22', 'no_lang_code', 1, 'https://ror.org/003p0bk22 INFICON (Germany)'),
(52717, 'https://ror.org/04z0qye94', 'no_lang_code', 1, 'https://ror.org/04z0qye94 Johnson & Johnson (Canada)'),
(52718, 'https://ror.org/04mmbzv77', 'no_lang_code', 1, 'https://ror.org/04mmbzv77 Infineum (United States)'),
(52719, 'https://ror.org/03826h192', 'no_lang_code', 1, 'https://ror.org/03826h192 Kao Corporation (Spain)'),
(52720, 'https://ror.org/02wakr002', 'no_lang_code', 1, 'https://ror.org/02wakr002 Johnson Controls (France)'),
(52721, 'https://ror.org/03hdb6676', 'no_lang_code', 1, 'https://ror.org/03hdb6676 Hydrogenics (Canada)'),
(52722, 'https://ror.org/02za67k40', 'no_lang_code', 1, 'https://ror.org/02za67k40 InnoLux (China)'),
(52723, 'https://ror.org/00qajw440', 'no_lang_code', 1, 'https://ror.org/00qajw440 SK Group (United States)'),
(52724, 'https://ror.org/047ajv266', 'no_lang_code', 1, 'https://ror.org/047ajv266 Illinois Tool Works (France)'),
(52725, 'https://ror.org/02b4eje67', 'no_lang_code', 1, 'https://ror.org/02b4eje67 Illinois Tool Works (United Kingdom)'),
(52726, 'https://ror.org/01g1xae87', 'no_lang_code', 1, 'https://ror.org/01g1xae87 KBR (United States)'),
(52727, 'https://ror.org/02ncc5r18', 'no_lang_code', 1, 'https://ror.org/02ncc5r18 Mondelēz International (Germany)'),
(52728, 'https://ror.org/04n3fbh55', 'no_lang_code', 1, 'https://ror.org/04n3fbh55 JTEKT (France)'),
(52729, 'https://ror.org/02xc43e34', 'no_lang_code', 1, 'https://ror.org/02xc43e34 John Deere (Germany)'),
(52730, 'https://ror.org/02zy2ka61', 'no_lang_code', 1, 'https://ror.org/02zy2ka61 Kodak (Germany)'),
(52731, 'https://ror.org/03wrvmn80', 'no_lang_code', 1, 'https://ror.org/03wrvmn80 Kodak (France)'),
(52732, 'https://ror.org/00cqgv790', 'no_lang_code', 1, 'https://ror.org/00cqgv790 Kohler (United Kingdom)'),
(52733, 'https://ror.org/01s1v1s13', 'no_lang_code', 1, 'https://ror.org/01s1v1s13 Kuraray (Germany)'),
(52734, 'https://ror.org/05cetd543', 'no_lang_code', 1, 'https://ror.org/05cetd543 Konami (United States)'),
(52735, 'https://ror.org/0133m4g32', 'no_lang_code', 1, 'https://ror.org/0133m4g32 Nidec (France)'),
(52736, 'https://ror.org/00476rc02', 'no_lang_code', 1, 'https://ror.org/00476rc02 Kone (Switzerland)'),
(52737, 'https://ror.org/03zv4kd57', 'no_lang_code', 1, 'https://ror.org/03zv4kd57 Konica Minolta (United States)'),
(52738, 'https://ror.org/02bskft61', 'no_lang_code', 1, 'https://ror.org/02bskft61 Atotech (United States)'),
(52739, 'https://ror.org/051perd82', 'no_lang_code', 1, 'https://ror.org/051perd82 LGL Electronics (Italy)'),
(52740, 'https://ror.org/059nmw410', 'no_lang_code', 1, 'https://ror.org/059nmw410 LafargeHolcim (France)'),
(52741, 'https://ror.org/05j3vdc31', 'no_lang_code', 1, 'https://ror.org/05j3vdc31 Marel (United States)'),
(52742, 'https://ror.org/0163qy924', 'no_lang_code', 1, 'https://ror.org/0163qy924 Newell Brands (Germany)'),
(52743, 'https://ror.org/05kks4d25', 'no_lang_code', 1, 'https://ror.org/05kks4d25 Bayer (India)'),
(52744, 'https://ror.org/04fhmmg24', 'no_lang_code', 1, 'https://ror.org/04fhmmg24 Medtronic (Luxembourg)'),
(52745, 'https://ror.org/01484hw40', 'no_lang_code', 1, 'https://ror.org/01484hw40 Marvell (Israel)'),
(52746, 'https://ror.org/02krq1637', 'no_lang_code', 1, 'https://ror.org/02krq1637 Parker Hannifin (France)'),
(52747, 'https://ror.org/02sdrd464', 'no_lang_code', 1, 'https://ror.org/02sdrd464 Nidec (United States)'),
(52748, 'https://ror.org/03wfqxa90', 'no_lang_code', 1, 'https://ror.org/03wfqxa90 MKS Instruments (Japan)'),
(52749, 'https://ror.org/001z7yr93', 'no_lang_code', 1, 'https://ror.org/001z7yr93 Imagination Technologies (United States)'),
(52750, 'https://ror.org/01tccxd76', 'no_lang_code', 1, 'https://ror.org/01tccxd76 AGCO (United Kingdom)'),
(52751, 'https://ror.org/021wep716', 'no_lang_code', 1, 'https://ror.org/021wep716 AGCO (Netherlands)'),
(52752, 'https://ror.org/00w6hp096', 'no_lang_code', 1, 'https://ror.org/00w6hp096 Bausch Health (France)'),
(52753, 'https://ror.org/04z9kpd59', 'no_lang_code', 1, 'https://ror.org/04z9kpd59 Metso (Sweden)'),
(52754, 'https://ror.org/05xvgy636', 'no_lang_code', 1, 'https://ror.org/05xvgy636 MediaTek (China) 聯發科技股份有限公司'),
(52755, 'https://ror.org/0280y9h11', 'no_lang_code', 1, 'https://ror.org/0280y9h11 Nikon (United States)'),
(52756, 'https://ror.org/01p5m7j86', 'no_lang_code', 1, 'https://ror.org/01p5m7j86 Quadient (United Kingdom)'),
(52757, 'https://ror.org/01vxsq455', 'no_lang_code', 1, 'https://ror.org/01vxsq455 Quadient (Netherlands)'),
(52758, 'https://ror.org/04e55pr56', 'no_lang_code', 1, 'https://ror.org/04e55pr56 GEA Group (Denmark)'),
(52759, 'https://ror.org/02m7dbt89', 'no_lang_code', 1, 'https://ror.org/02m7dbt89 Danaher (Switzerland)'),
(52760, 'https://ror.org/00r37e745', 'no_lang_code', 1, 'https://ror.org/00r37e745 Terumo (United States)'),
(52761, 'https://ror.org/0414wmq03', 'no_lang_code', 1, 'https://ror.org/0414wmq03 Red Hat (Israel)'),
(52762, 'https://ror.org/04w3ts152', 'no_lang_code', 1, 'https://ror.org/04w3ts152 Adidas (United Kingdom)'),
(52763, 'https://ror.org/00d3r7025', 'no_lang_code', 1, 'https://ror.org/00d3r7025 RHI Magnesita (Austria)'),
(52764, 'https://ror.org/013j55h69', 'no_lang_code', 1, 'https://ror.org/013j55h69 Rehau (France)'),
(52765, 'https://ror.org/01p1t0k52', 'no_lang_code', 1, 'https://ror.org/01p1t0k52 Novo Nordisk (Switzerland)'),
(52766, 'https://ror.org/014775w70', 'no_lang_code', 1, 'https://ror.org/014775w70 Renesas Electronics (United States)'),
(52767, 'https://ror.org/027qba521', 'no_lang_code', 1, 'https://ror.org/027qba521 NSK (United States)'),
(52768, 'https://ror.org/0571c2151', 'no_lang_code', 1, 'https://ror.org/0571c2151 P-D Refractories (Germany)'),
(52769, 'https://ror.org/00gjtdf30', 'no_lang_code', 1, 'https://ror.org/00gjtdf30 Oclaro (Japan)'),
(52770, 'https://ror.org/02w60ja15', 'no_lang_code', 1, 'https://ror.org/02w60ja15 Ball (Sweden)'),
(52771, 'https://ror.org/031rbfd73', 'no_lang_code', 1, 'https://ror.org/031rbfd73 Ball (France)'),
(52772, 'https://ror.org/03n9g7g16', 'no_lang_code', 1, 'https://ror.org/03n9g7g16 SPX Corporation (United Kingdom)'),
(52773, 'https://ror.org/05amv9q86', 'no_lang_code', 1, 'https://ror.org/05amv9q86 Kudelski (United States)'),
(52774, 'https://ror.org/05h3vzz10', 'no_lang_code', 1, 'https://ror.org/05h3vzz10 Solid (United States)'),
(52775, 'https://ror.org/0132ebr60', 'no_lang_code', 1, 'https://ror.org/0132ebr60 Toyota Industries (United States)'),
(52776, 'https://ror.org/01ry0hm85', 'no_lang_code', 1, 'https://ror.org/01ry0hm85 RealNetworks (United States)'),
(52777, 'https://ror.org/03ptky016', 'no_lang_code', 1, 'https://ror.org/03ptky016 Legrand (United States)'),
(52778, 'https://ror.org/02wdpar77', 'no_lang_code', 1, 'https://ror.org/02wdpar77 Rockwell Automation (Switzerland)'),
(52779, 'https://ror.org/00ej6x457', 'no_lang_code', 1, 'https://ror.org/00ej6x457 Emerson (Sweden)'),
(52780, 'https://ror.org/009vrtv70', 'no_lang_code', 1, 'https://ror.org/009vrtv70 Aptar (Germany)'),
(52781, 'https://ror.org/01vp4kx90', 'no_lang_code', 1, 'https://ror.org/01vp4kx90 Pitney Bowes (France)'),
(52782, 'https://ror.org/0181yrz32', 'no_lang_code', 1, 'https://ror.org/0181yrz32 Croda (France)'),
(52783, 'https://ror.org/04jwy1234', 'no_lang_code', 1, 'https://ror.org/04jwy1234 Shell (Japan)'),
(52784, 'https://ror.org/0382m9t69', 'no_lang_code', 1, 'https://ror.org/0382m9t69 Sidel (Italy)'),
(52785, 'https://ror.org/029jv7h91', 'no_lang_code', 1, 'https://ror.org/029jv7h91 Huntsman (Germany)'),
(52786, 'https://ror.org/03zzs9b68', 'no_lang_code', 1, 'https://ror.org/03zzs9b68 Nippon Sheet Glass (Italy)'),
(52787, 'https://ror.org/01zxw4w85', 'no_lang_code', 1, 'https://ror.org/01zxw4w85 Valmet (Sweden)'),
(52788, 'https://ror.org/017fqk185', 'no_lang_code', 1, 'https://ror.org/017fqk185 Microsoft (Ireland)'),
(52789, 'https://ror.org/0139mkv47', 'no_lang_code', 1, 'https://ror.org/0139mkv47 Solvay (United Kingdom)'),
(52790, 'https://ror.org/04n2d2p10', 'no_lang_code', 1, 'https://ror.org/04n2d2p10 Amer Sports (Finland)'),
(52791, 'https://ror.org/02083pn15', 'no_lang_code', 1, 'https://ror.org/02083pn15 Northrop Grumman (France)'),
(52792, 'https://ror.org/017afst72', 'no_lang_code', 1, 'https://ror.org/017afst72 Blackberry (United States)'),
(52793, 'https://ror.org/04q5m8a14', 'no_lang_code', 1, 'https://ror.org/04q5m8a14 Tecan (Switzerland)'),
(52794, 'https://ror.org/049yzrn11', 'no_lang_code', 1, 'https://ror.org/049yzrn11 Technology Partnership (United Kingdom)'),
(52795, 'https://ror.org/00ney4p16', 'no_lang_code', 1, 'https://ror.org/00ney4p16 Techtronic Industries (China)'),
(52796, 'https://ror.org/01gswc231', 'no_lang_code', 1, 'https://ror.org/01gswc231 Synthon (Netherlands)'),
(52797, 'https://ror.org/0222m3049', 'no_lang_code', 1, 'https://ror.org/0222m3049 RHI Magnesita (Switzerland)'),
(52798, 'https://ror.org/01bxp3g94', 'no_lang_code', 1, 'https://ror.org/01bxp3g94 ON Semiconductor (Taiwan)'),
(52799, 'https://ror.org/04zeqh491', 'no_lang_code', 1, 'https://ror.org/04zeqh491 Amphenol (France)'),
(52800, 'https://ror.org/01a8wgs29', 'no_lang_code', 1, 'https://ror.org/01a8wgs29 Straumann (Switzerland)'),
(52801, 'https://ror.org/028a35p56', 'no_lang_code', 1, 'https://ror.org/028a35p56 Strix (United Kingdom)'),
(52802, 'https://ror.org/0012b2h06', 'no_lang_code', 1, 'https://ror.org/0012b2h06 ON Semiconductor (Japan)'),
(52803, 'https://ror.org/05rxrqv32', 'no_lang_code', 1, 'https://ror.org/05rxrqv32 Stryker (France)'),
(52804, 'https://ror.org/02kh7ez55', 'no_lang_code', 1, 'https://ror.org/02kh7ez55 Thomson Reuters (Switzerland)'),
(52805, 'https://ror.org/02c23zs54', 'no_lang_code', 1, 'https://ror.org/02c23zs54 Adidas (Canada)'),
(52806, 'https://ror.org/02kpcqm42', 'no_lang_code', 1, 'https://ror.org/02kpcqm42 Tesla (United States)'),
(52807, 'https://ror.org/0018whg19', 'no_lang_code', 1, 'https://ror.org/0018whg19 Texas Instruments (France)'),
(52808, 'https://ror.org/03msrn925', 'no_lang_code', 1, 'https://ror.org/03msrn925 Sumitomo Electric Industries (United States)'),
(52809, 'https://ror.org/03ytgj055', 'no_lang_code', 1, 'https://ror.org/03ytgj055 Cisco Systems (Norway)'),
(52810, 'https://ror.org/0015kev18', 'no_lang_code', 1, 'https://ror.org/0015kev18 Juki (United States)'),
(52811, 'https://ror.org/03517qf88', 'no_lang_code', 1, 'https://ror.org/03517qf88 Michelin (United States)'),
(52812, 'https://ror.org/00vrhw316', 'no_lang_code', 1, 'https://ror.org/00vrhw316 United Microelectronics (United States)'),
(52813, 'https://ror.org/02btcwe37', 'no_lang_code', 1, 'https://ror.org/02btcwe37 Vivendi (United States)'),
(52814, 'https://ror.org/05p0pbv75', 'no_lang_code', 1, 'https://ror.org/05p0pbv75 Toyota Motor Corporation (Switzerland)'),
(52815, 'https://ror.org/01ydfc370', 'no_lang_code', 1, 'https://ror.org/01ydfc370 Schlumberger (British Virgin Islands)'),
(52816, 'https://ror.org/0481z9839', 'no_lang_code', 1, 'https://ror.org/0481z9839 TE Connectivity (Japan)'),
(52817, 'https://ror.org/031n13782', 'no_lang_code', 1, 'https://ror.org/031n13782 Vaillant (United States)'),
(52818, 'https://ror.org/01y24f494', 'no_lang_code', 1, 'https://ror.org/01y24f494 Woodward (United States)'),
(52819, 'https://ror.org/023bna168', 'no_lang_code', 1, 'https://ror.org/023bna168 Whirlpool (Netherlands)'),
(52820, 'https://ror.org/00ba8tz47', 'no_lang_code', 1, 'https://ror.org/00ba8tz47 Würth (Germany)'),
(52821, 'https://ror.org/01169zb17', 'no_lang_code', 1, 'https://ror.org/01169zb17 Kennametal (Germany)'),
(52822, 'https://ror.org/055c6bd74', 'no_lang_code', 1, 'https://ror.org/055c6bd74 Veeco (United States)'),
(52823, 'https://ror.org/04tfkjn57', 'no_lang_code', 1, 'https://ror.org/04tfkjn57 Wacker (United States)'),
(52824, 'https://ror.org/030bh9196', 'no_lang_code', 1, 'https://ror.org/030bh9196 X-Fab (Germany)'),
(52825, 'https://ror.org/01hc8k527', 'no_lang_code', 1, 'https://ror.org/01hc8k527 Yazaki (United States)'),
(52826, 'https://ror.org/04aqd7928', 'no_lang_code', 1, 'https://ror.org/04aqd7928 Amer Sports (United States)'),
(52827, 'https://ror.org/03eydf751', 'no_lang_code', 1, 'https://ror.org/03eydf751 TechnipFMC (Germany)'),
(52828, 'https://ror.org/00af5ps59', 'no_lang_code', 1, 'https://ror.org/00af5ps59 Züblin (United States)'),
(52829, 'https://ror.org/048frez22', 'no_lang_code', 1, 'https://ror.org/048frez22 Amarin (United Kingdom)'),
(52830, 'https://ror.org/05y8ktr97', 'no_lang_code', 1, 'https://ror.org/05y8ktr97 B. Braun (France)'),
(52831, 'https://ror.org/03h13e556', 'no_lang_code', 1, 'https://ror.org/03h13e556 Ecolab (France)'),
(52832, 'https://ror.org/01yv86q51', 'no_lang_code', 1, 'https://ror.org/01yv86q51 Bio-Rad (France)'),
(52833, 'https://ror.org/02fhcbb53', 'no_lang_code', 1, 'https://ror.org/02fhcbb53 Bio-Rad (United Kingdom)'),
(52834, 'https://ror.org/01r4hwz76', 'en', 1, 'https://ror.org/01r4hwz76 Földtani és Geokémiai Intézet Institute for Geological and Geochemical Research'),
(52835, 'https://ror.org/03895v451', 'no_lang_code', 1, 'https://ror.org/03895v451 Canon (Australia)'),
(52836, 'https://ror.org/02se40x69', 'no_lang_code', 1, 'https://ror.org/02se40x69 Canon (France) キヤノン株式会社'),
(52837, 'https://ror.org/033d1rc08', 'no_lang_code', 1, 'https://ror.org/033d1rc08 Cardinal Health (Australia)'),
(52838, 'https://ror.org/02xywr964', 'en', 1, 'https://ror.org/02xywr964 Danube Research Institute Duna-Kutató Intézet'),
(52839, 'https://ror.org/05ad0gz88', 'en', 1, 'https://ror.org/05ad0gz88 Institute for Legal Studies MTA Társadalomtudományi Kutatóközpont Jogtudományi Intézet'),
(52840, 'https://ror.org/05q8jhf15', 'en', 1, 'https://ror.org/05q8jhf15 Institute for Minority Studies MTA Társadalomtudományi Kutatóközpont Kisebbségkutató Intézet'),
(52841, 'https://ror.org/00nngxj80', 'no_lang_code', 1, 'https://ror.org/00nngxj80 Kraft Heinz (United Kingdom)'),
(52842, 'https://ror.org/03d5p6p20', 'no_lang_code', 1, 'https://ror.org/03d5p6p20 Qiagen (Australia)'),
(52843, 'https://ror.org/01sjh9112', 'en', 1, 'https://ror.org/01sjh9112 Erdészeti Tudományos Intézet Forest Research Institute'),
(52844, 'https://ror.org/035t0zn40', 'en', 1, 'https://ror.org/035t0zn40 Institute of Agricultural Engineering Mezőgazdasági Gépesítési Intézet'),
(52845, 'https://ror.org/00gfjrf11', 'no_lang_code', 1, 'https://ror.org/00gfjrf11 Johnson & Johnson (France)'),
(52846, 'https://ror.org/03sgj4t62', 'no_lang_code', 1, 'https://ror.org/03sgj4t62 Evonik (France)'),
(52847, 'https://ror.org/013x7n115', 'no_lang_code', 1, 'https://ror.org/013x7n115 Hologic (United Kingdom)'),
(52848, 'https://ror.org/04rz1y359', 'no_lang_code', 1, 'https://ror.org/04rz1y359 Integra LifeSciences (France)'),
(52849, 'https://ror.org/04whxwq65', 'no_lang_code', 1, 'https://ror.org/04whxwq65 Sonoco (United Kingdom)'),
(52850, 'https://ror.org/029j6tp05', 'no_lang_code', 1, 'https://ror.org/029j6tp05 Zimmer Biomet (France)'),
(52851, 'https://ror.org/013b57229', 'no_lang_code', 1, 'https://ror.org/013b57229 Bristol-Myers Squibb (France)'),
(52852, 'https://ror.org/00bmh2944', 'no_lang_code', 1, 'https://ror.org/00bmh2944 Besins Healthcare (France)'),
(52853, 'https://ror.org/05wz8pk64', 'no_lang_code', 1, 'https://ror.org/05wz8pk64 Abbott (France)'),
(52854, 'https://ror.org/048p4wq89', 'no_lang_code', 1, 'https://ror.org/048p4wq89 Takeda (France)'),
(52855, 'https://ror.org/03an0wj74', 'no_lang_code', 1, 'https://ror.org/03an0wj74 BASF (France)'),
(52856, 'https://ror.org/02nmt8y10', 'no_lang_code', 1, 'https://ror.org/02nmt8y10 Hillrom (Australia)'),
(52857, 'https://ror.org/0527yet08', 'no_lang_code', 1, 'https://ror.org/0527yet08 Medical Developments International (Australia)'),
(52858, 'https://ror.org/00zhfb561', 'no_lang_code', 1, 'https://ror.org/00zhfb561 Cochlear (France)'),
(52859, 'https://ror.org/047eytq20', 'no_lang_code', 1, 'https://ror.org/047eytq20 Coloplast (United Kingdom)'),
(52860, 'https://ror.org/01dvqbh84', 'no_lang_code', 1, 'https://ror.org/01dvqbh84 Teva Pharmaceuticals (United Kingdom)'),
(52861, 'https://ror.org/00vvs5b96', 'no_lang_code', 1, 'https://ror.org/00vvs5b96 Leo Pharma (Australia)'),
(52862, 'https://ror.org/03wwpjn37', 'no_lang_code', 1, 'https://ror.org/03wwpjn37 Mirion Technologies (France)'),
(52863, 'https://ror.org/04na7ry54', 'no_lang_code', 1, 'https://ror.org/04na7ry54 Michell Instruments (United Kingdom)'),
(52864, 'https://ror.org/00dcjap62', 'no_lang_code', 1, 'https://ror.org/00dcjap62 Nitto Chemical Industry (Japan)'),
(52865, 'https://ror.org/00yt9z408', 'no_lang_code', 1, 'https://ror.org/00yt9z408 EyePoint Pharmaceuticals (United Kingdom)'),
(52866, 'https://ror.org/03cg1bv47', 'no_lang_code', 1, 'https://ror.org/03cg1bv47 OSI Systems (Australia)'),
(52867, 'https://ror.org/035n6ph62', 'no_lang_code', 1, 'https://ror.org/035n6ph62 Perrigo (United Kingdom)'),
(52868, 'https://ror.org/03yz3w307', 'no_lang_code', 1, 'https://ror.org/03yz3w307 Prediction Sciences (France)'),
(52869, 'https://ror.org/0430jfd38', 'no_lang_code', 1, 'https://ror.org/0430jfd38 Sanofi (Australia)'),
(52870, 'https://ror.org/013j2ff86', 'no_lang_code', 1, 'https://ror.org/013j2ff86 Steris (France)'),
(52871, 'https://ror.org/00gze1672', 'no_lang_code', 1, 'https://ror.org/00gze1672 Teradata (United Kingdom)'),
(52872, 'https://ror.org/04t8qhn97', 'no_lang_code', 1, 'https://ror.org/04t8qhn97 Integra LifeSciences (United Kingdom)'),
(52873, 'https://ror.org/054bf3454', 'no_lang_code', 1, 'https://ror.org/054bf3454 Baxter (Australia)'),
(52874, 'https://ror.org/03d01nv48', 'no_lang_code', 1, 'https://ror.org/03d01nv48 Therabel (France)'),
(52875, 'https://ror.org/03d9a6q43', 'no_lang_code', 1, 'https://ror.org/03d9a6q43 Ecolab (United Kingdom)'),
(52876, 'https://ror.org/025ajkx98', 'no_lang_code', 1, 'https://ror.org/025ajkx98 Teleflex (Australia)'),
(52877, 'https://ror.org/051j13341', 'no_lang_code', 1, 'https://ror.org/051j13341 Gilead Sciences (Australia)'),
(52878, 'https://ror.org/027jc1q11', 'no_lang_code', 1, 'https://ror.org/027jc1q11 Edwards Lifesciences (United Kingdom)'),
(52879, 'https://ror.org/05hwj5b39', 'no_lang_code', 1, 'https://ror.org/05hwj5b39 Bio Nutrition Health Products (United Kingdom)'),
(52880, 'https://ror.org/02cv2sp17', 'no_lang_code', 1, 'https://ror.org/02cv2sp17 ASC Instrument (France)'),
(52881, 'https://ror.org/05gnhhg32', 'en', 1, 'https://ror.org/05gnhhg32 Carilene'),
(52882, 'https://ror.org/032vp6a84', 'no_lang_code', 1, 'https://ror.org/032vp6a84 Bioderma (France)'),
(52883, 'https://ror.org/00pmqdp10', 'no_lang_code', 1, 'https://ror.org/00pmqdp10 Aspide Medical (France)'),
(52884, 'https://ror.org/02sdyvc52', 'no_lang_code', 1, 'https://ror.org/02sdyvc52 Laboratoire CCD (France)'),
(52885, 'https://ror.org/05s1rn618', 'no_lang_code', 1, 'https://ror.org/05s1rn618 Comptoir Pharmaceutique & Médical (France)'),
(52886, 'https://ror.org/02gx53y06', 'no_lang_code', 1, 'https://ror.org/02gx53y06 Ab Medica (France)'),
(52887, 'https://ror.org/005wspd72', 'no_lang_code', 1, 'https://ror.org/005wspd72 Compumedics (Australia)'),
(52888, 'https://ror.org/05nnj5q38', 'no_lang_code', 1, 'https://ror.org/05nnj5q38 ACM Instruments (United Kingdom)'),
(52889, 'https://ror.org/05gpa6n30', 'no_lang_code', 1, 'https://ror.org/05gpa6n30 CSInstruments (France)'),
(52890, 'https://ror.org/03937a641', 'no_lang_code', 1, 'https://ror.org/03937a641 Acteon (United Kingdom)'),
(52891, 'https://ror.org/00bqv9n12', 'no_lang_code', 1, 'https://ror.org/00bqv9n12 Aston Medical (France)'),
(52892, 'https://ror.org/04qwja739', 'no_lang_code', 1, 'https://ror.org/04qwja739 Merit Medical (France)'),
(52893, 'https://ror.org/012y7dr10', 'en', 1, 'https://ror.org/012y7dr10 Biosystems Informatics Institute'),
(52894, 'https://ror.org/05katjf64', 'no_lang_code', 1, 'https://ror.org/05katjf64 Cidelec (France)'),
(52895, 'https://ror.org/034tqkr94', 'no_lang_code', 1, 'https://ror.org/034tqkr94 Bjl Laboratoires (France)'),
(52896, 'https://ror.org/009xea408', 'no_lang_code', 1, 'https://ror.org/009xea408 Aeronautical and General Instruments'),
(52897, 'https://ror.org/023bq4z36', 'no_lang_code', 1, 'https://ror.org/023bq4z36 Blue Industry and Science (France)'),
(52898, 'https://ror.org/04d1d9s98', 'en', 1, 'https://ror.org/04d1d9s98 Coopers Animal Health'),
(52899, 'https://ror.org/02qff3310', 'no_lang_code', 1, 'https://ror.org/02qff3310 Cosmalia (France)'),
(52900, 'https://ror.org/00227mf78', 'no_lang_code', 1, 'https://ror.org/00227mf78 AG Medical (France)'),
(52901, 'https://ror.org/02chg1452', 'no_lang_code', 1, 'https://ror.org/02chg1452 Institut Oenologique de Champagne (France)'),
(52902, 'https://ror.org/02wj99m39', 'en', 1, 'https://ror.org/02wj99m39 Charlton Installation Services'),
(52903, 'https://ror.org/042z3wd02', 'no_lang_code', 1, 'https://ror.org/042z3wd02 Halma (United Kingdom)'),
(52904, 'https://ror.org/028z16q57', 'fr', 1, 'https://ror.org/028z16q57 Institut de Biotechnologies Jacques Boy'),
(52905, 'https://ror.org/03x9c7x93', 'no_lang_code', 1, 'https://ror.org/03x9c7x93 Cryonic Medical (France)'),
(52906, 'https://ror.org/03nwwb023', 'fr', 1, 'https://ror.org/03nwwb023 Centre Médico Chirurgical de Tronquières'),
(52907, 'https://ror.org/03hnn1y72', 'no_lang_code', 1, 'https://ror.org/03hnn1y72 Sanitarium Health and Wellbeing (Australia)'),
(52908, 'https://ror.org/01rhy1775', 'no_lang_code', 1, 'https://ror.org/01rhy1775 Aveni (France)'),
(52909, 'https://ror.org/034nw2x49', 'no_lang_code', 1, 'https://ror.org/034nw2x49 TraceTag (France)'),
(52910, 'https://ror.org/03qj53n95', 'en', 1, 'https://ror.org/03qj53n95 Australian Road Research Board'),
(52911, 'https://ror.org/007jkh405', 'no_lang_code', 1, 'https://ror.org/007jkh405 Brothier (France)'),
(52912, 'https://ror.org/04xrc4v39', 'no_lang_code', 1, 'https://ror.org/04xrc4v39 Bioxis Pharmaceuticals (France)'),
(52913, 'https://ror.org/0124cbs22', 'no_lang_code', 1, 'https://ror.org/0124cbs22 Woolmark (Australia)'),
(52914, 'https://ror.org/05nj2pq60', 'no_lang_code', 1, 'https://ror.org/05nj2pq60 Alliance Instruments (France)'),
(52915, 'https://ror.org/04wn7zs59', 'no_lang_code', 1, 'https://ror.org/04wn7zs59 Allibert Medical (France)'),
(52916, 'https://ror.org/02qkvsy66', 'en', 1, 'https://ror.org/02qkvsy66 Cityzen Sciences'),
(52917, 'https://ror.org/00bc02d26', 'fr', 1, 'https://ror.org/00bc02d26 Cizeta Medicali'),
(52918, 'https://ror.org/01qr42c13', 'no_lang_code', 1, 'https://ror.org/01qr42c13 CAD Instruments (France)'),
(52919, 'https://ror.org/05nbt0w25', 'en', 1, 'https://ror.org/05nbt0w25 Avon Medical Centre'),
(52920, 'https://ror.org/00q6se919', 'no_lang_code', 1, 'https://ror.org/00q6se919 CL Medical (France)'),
(52921, 'https://ror.org/01dxdkd86', 'no_lang_code', 1, 'https://ror.org/01dxdkd86 Sela Light (France)'),
(52922, 'https://ror.org/013xqbx45', 'no_lang_code', 1, 'https://ror.org/013xqbx45 Caerbont Automotive Instruments (United Kingdom)'),
(52923, 'https://ror.org/02k45v753', 'no_lang_code', 1, 'https://ror.org/02k45v753 Vossloh (France)'),
(52924, 'https://ror.org/021z0c614', 'no_lang_code', 1, 'https://ror.org/021z0c614 Cambridge Nutritional Sciences (United Kingdom)'),
(52925, 'https://ror.org/01z72zc80', 'no_lang_code', 1, 'https://ror.org/01z72zc80 Ana Laboratoire'),
(52926, 'https://ror.org/05rwdy684', 'no_lang_code', 1, 'https://ror.org/05rwdy684 Bastion (United Kingdom)'),
(52927, 'https://ror.org/0473pps33', 'en', 1, 'https://ror.org/0473pps33 AMR Centre'),
(52928, 'https://ror.org/02sv6a835', 'no_lang_code', 1, 'https://ror.org/02sv6a835 DKD médical (France)'),
(52929, 'https://ror.org/01waqh020', 'no_lang_code', 1, 'https://ror.org/01waqh020 Deltamedics (France)'),
(52930, 'https://ror.org/03ae66d75', 'no_lang_code', 1, 'https://ror.org/03ae66d75 Nuance Communications (United Kingdom)'),
(52931, 'https://ror.org/01xqxbt36', 'no_lang_code', 1, 'https://ror.org/01xqxbt36 DSM (France)'),
(52932, 'https://ror.org/02fmtdz23', 'no_lang_code', 1, 'https://ror.org/02fmtdz23 Duckworth & Kent (United Kingdom)'),
(52933, 'https://ror.org/01g087661', 'no_lang_code', 1, 'https://ror.org/01g087661 AR2i'),
(52934, 'https://ror.org/03dcnm155', 'no_lang_code', 1, 'https://ror.org/03dcnm155 Bentley Instruments (France)'),
(52935, 'https://ror.org/05xry8z31', 'fr', 1, 'https://ror.org/05xry8z31 Evaux Laboratoires'),
(52936, 'https://ror.org/049wtgt11', 'no_lang_code', 1, 'https://ror.org/049wtgt11 DuPont (France)'),
(52937, 'https://ror.org/050fr6z67', 'no_lang_code', 1, 'https://ror.org/050fr6z67 Dynamic Digital Depth (Australia)'),
(52938, 'https://ror.org/02ec6yy56', 'no_lang_code', 1, 'https://ror.org/02ec6yy56 Arkopharma (France)'),
(52939, 'https://ror.org/03ke2qx45', 'fr', 1, 'https://ror.org/03ke2qx45 Laboratoires Expanscience'),
(52940, 'https://ror.org/01336q621', 'no_lang_code', 1, 'https://ror.org/01336q621 DMS Imaging (France)'),
(52941, 'https://ror.org/01e89dr28', 'fr', 1, 'https://ror.org/01e89dr28 BFA Laboratoires'),
(52942, 'https://ror.org/00vbr4z12', 'no_lang_code', 1, 'https://ror.org/00vbr4z12 Paradigm (France)'),
(52943, 'https://ror.org/04jppe152', 'no_lang_code', 1, 'https://ror.org/04jppe152 ExxonMobil (France)'),
(52944, 'https://ror.org/02085m625', 'en', 1, 'https://ror.org/02085m625 Arplay Medical'),
(52945, 'https://ror.org/023g45t05', 'no_lang_code', 1, 'https://ror.org/023g45t05 ExxonMobil (United Kingdom)'),
(52946, 'https://ror.org/05x10y854', 'fr', 1, 'https://ror.org/05x10y854 France Chirurgie Instrumentation'),
(52947, 'https://ror.org/00ggfn496', 'fr', 1, 'https://ror.org/00ggfn496 Association de Recherche en Soins Infirmiers'),
(52948, 'https://ror.org/03s4bg735', 'no_lang_code', 1, 'https://ror.org/03s4bg735 Bio Composants Médicaux (France)'),
(52949, 'https://ror.org/00vcdkt35', 'no_lang_code', 1, 'https://ror.org/00vcdkt35 Elice (France)'),
(52950, 'https://ror.org/04qyvt278', 'no_lang_code', 1, 'https://ror.org/04qyvt278 Eclair (France)'),
(52951, 'https://ror.org/03mq0hx55', 'no_lang_code', 1, 'https://ror.org/03mq0hx55 ALP (France) Articles De Laboratoire De Precision'),
(52952, 'https://ror.org/01647qt90', 'no_lang_code', 1, 'https://ror.org/01647qt90 Genoscience Pharma (France)'),
(52953, 'https://ror.org/03dznjk55', 'fr', 1, 'https://ror.org/03dznjk55 Association de Recherche pour la Technologie et les Sciences'),
(52954, 'https://ror.org/03kf9t316', 'no_lang_code', 1, 'https://ror.org/03kf9t316 Geotechnical Instruments (United Kingdom)'),
(52955, 'https://ror.org/015ye0m82', 'no_lang_code', 1, 'https://ror.org/015ye0m82 Advance Product Services (United Kingdom)'),
(52956, 'https://ror.org/0363etv78', 'no_lang_code', 1, 'https://ror.org/0363etv78 Edra Médical (France)'),
(52957, 'https://ror.org/006fm3q16', 'no_lang_code', 1, 'https://ror.org/006fm3q16 Isomed (France)'),
(52958, 'https://ror.org/04rkxhv28', 'no_lang_code', 1, 'https://ror.org/04rkxhv28 Arysta LifeScience (France)'),
(52959, 'https://ror.org/02nephp76', 'no_lang_code', 1, 'https://ror.org/02nephp76 Gilson (United Kingdom)'),
(52960, 'https://ror.org/04nxqr324', 'no_lang_code', 1, 'https://ror.org/04nxqr324 Gilson (France)'),
(52961, 'https://ror.org/03eckez71', 'en', 1, 'https://ror.org/03eckez71 Innovative Medical Partners (France)'),
(52962, 'https://ror.org/01gzrtw66', 'no_lang_code', 1, 'https://ror.org/01gzrtw66 FEV (France)'),
(52963, 'https://ror.org/01awkss54', 'no_lang_code', 1, 'https://ror.org/01awkss54 TE Connectivity (France)'),
(52964, 'https://ror.org/00dqtka84', 'no_lang_code', 1, 'https://ror.org/00dqtka84 FIM Medical (France)'),
(52965, 'https://ror.org/00r7jg830', 'no_lang_code', 1, 'https://ror.org/00r7jg830 Laboratoires ABIA (France)'),
(52966, 'https://ror.org/02jpm4g18', 'no_lang_code', 1, 'https://ror.org/02jpm4g18 Grant Instruments (United Kingdom)'),
(52967, 'https://ror.org/03nxzws18', 'no_lang_code', 1, 'https://ror.org/03nxzws18 Stada Arzneimittel (United Kingdom)'),
(52968, 'https://ror.org/02z0z0932', 'no_lang_code', 1, 'https://ror.org/02z0z0932 Sofralab (France)'),
(52969, 'https://ror.org/02pycb953', 'no_lang_code', 1, 'https://ror.org/02pycb953 Biophytis (France)'),
(52970, 'https://ror.org/03a05sb88', 'fr', 1, 'https://ror.org/03a05sb88 Laboratoires i2m'),
(52971, 'https://ror.org/0117c5950', 'no_lang_code', 1, 'https://ror.org/0117c5950 Funktion One Research (United Kingdom)'),
(52972, 'https://ror.org/022xahy44', 'no_lang_code', 1, 'https://ror.org/022xahy44 Furukawa Electric (United Kingdom)'),
(52973, 'https://ror.org/01sy9dm60', 'no_lang_code', 1, 'https://ror.org/01sy9dm60 Embody (France)'),
(52974, 'https://ror.org/00fanpm32', 'no_lang_code', 1, 'https://ror.org/00fanpm32 Ransom Naturals (United Kingdom)'),
(52975, 'https://ror.org/0377ycc43', 'no_lang_code', 1, 'https://ror.org/0377ycc43 Sefam (France)'),
(52976, 'https://ror.org/05fdcyv20', 'no_lang_code', 1, 'https://ror.org/05fdcyv20 Gecko Biomedical (France)'),
(52977, 'https://ror.org/02f6ecw55', 'fr', 1, 'https://ror.org/02f6ecw55 Entreprise de Fournitures et d''Assistance Médicale'),
(52978, 'https://ror.org/0014hfa49', 'fr', 1, 'https://ror.org/0014hfa49 Institut Clinident'),
(52979, 'https://ror.org/02pegt135', 'no_lang_code', 1, 'https://ror.org/02pegt135 Helioscreen (France)'),
(52980, 'https://ror.org/04rnwed46', 'en', 1, 'https://ror.org/04rnwed46 Environmental Earth Sciences'),
(52981, 'https://ror.org/008gfyt86', 'fr', 1, 'https://ror.org/008gfyt86 Groupe ICV Institut coopératif du vin'),
(52982, 'https://ror.org/01pjqre40', 'no_lang_code', 1, 'https://ror.org/01pjqre40 Illuminate Group (Australia)'),
(52983, 'https://ror.org/00vmgnj07', 'no_lang_code', 1, 'https://ror.org/00vmgnj07 Ereie (France)'),
(52984, 'https://ror.org/04fxgys42', 'no_lang_code', 1, 'https://ror.org/04fxgys42 Espiner Medical (United Kingdom)'),
(52985, 'https://ror.org/04fczh442', 'no_lang_code', 1, 'https://ror.org/04fczh442 Holiste (France)'),
(52986, 'https://ror.org/03v08ap24', 'no_lang_code', 1, 'https://ror.org/03v08ap24 HMS-Vilgo (France)'),
(52987, 'https://ror.org/01s8sge84', 'no_lang_code', 1, 'https://ror.org/01s8sge84 Institut Esthederm (France)'),
(52988, 'https://ror.org/029ca0b10', 'no_lang_code', 1, 'https://ror.org/029ca0b10 Impeto Medical (France)'),
(52989, 'https://ror.org/045x2a702', 'fr', 1, 'https://ror.org/045x2a702 Institut Européen de Gestion'),
(52990, 'https://ror.org/01vmb7766', 'en', 1, 'https://ror.org/01vmb7766 Laboratoire Phytoceutic'),
(52991, 'https://ror.org/03x3b8v35', 'fr', 1, 'https://ror.org/03x3b8v35 Institut Maupertuis'),
(52992, 'https://ror.org/04w7sf714', 'no_lang_code', 1, 'https://ror.org/04w7sf714 Instruments Médecine Vétérinaire (France)'),
(52993, 'https://ror.org/051tbm140', 'no_lang_code', 1, 'https://ror.org/051tbm140 In''Tech Medical (France)'),
(52994, 'https://ror.org/025mn7712', 'no_lang_code', 1, 'https://ror.org/025mn7712 InFlectis BioScience'),
(52995, 'https://ror.org/02k1h3369', 'fr', 1, 'https://ror.org/02k1h3369 Institut de Recherche Fondamentale en Technologies Solaire'),
(52996, 'https://ror.org/02wtsha51', 'no_lang_code', 1, 'https://ror.org/02wtsha51 Teva Pharmaceuticals (Australia)');
INSERT INTO `rors` VALUES
(52997, 'https://ror.org/014n5hm22', 'no_lang_code', 1, 'https://ror.org/014n5hm22 Sanofi (Austria)'),
(52998, 'https://ror.org/032baaz38', 'no_lang_code', 1, 'https://ror.org/032baaz38 OrthoD (United Kingdom)'),
(52999, 'https://ror.org/04hydf024', 'no_lang_code', 1, 'https://ror.org/04hydf024 Oceaneering International (United States)'),
(53000, 'https://ror.org/01cmnv018', 'fr', 1, 'https://ror.org/01cmnv018 Institut des Neurosciences Cliniques de Rennes'),
(53001, 'https://ror.org/03yn44v82', 'fr', 1, 'https://ror.org/03yn44v82 Institut Georges Lopez'),
(53002, 'https://ror.org/042edgv29', 'fr', 1, 'https://ror.org/042edgv29 Institut National de Police Scientifique'),
(53003, 'https://ror.org/023pwvd91', 'it', 1, 'https://ror.org/023pwvd91 Academy of the bran Accademia della Crusca'),
(53004, 'https://ror.org/04eq4yv25', 'fr', 1, 'https://ror.org/04eq4yv25 Institut Regional Des Materiaux Avance'),
(53005, 'https://ror.org/00bg9m975', 'en', 1, 'https://ror.org/00bg9m975 Astro Space Center'),
(53006, 'https://ror.org/03fz9ws15', 'en', 1, 'https://ror.org/03fz9ws15 Institute Of Science De La Vision'),
(53007, 'https://ror.org/05vtq0k76', 'no_lang_code', 1, 'https://ror.org/05vtq0k76 Instant Access Technologies (United Kingdom)'),
(53008, 'https://ror.org/00vj8hy88', 'no_lang_code', 1, 'https://ror.org/00vj8hy88 Hendrix Genetics (France)'),
(53009, 'https://ror.org/05d34d003', 'fr', 1, 'https://ror.org/05d34d003 Institut Supérieur de Plasturgie d''Alençon'),
(53010, 'https://ror.org/037tm7f56', 'en', 1, 'https://ror.org/037tm7f56 Courant Institute of Mathematical Sciences'),
(53011, 'https://ror.org/03yy8am44', 'en', 1, 'https://ror.org/03yy8am44 Institute for Applied Science'),
(53012, 'https://ror.org/001s4x714', 'fr', 1, 'https://ror.org/001s4x714 Institut Supérieur des Matériaux du Mans'),
(53013, 'https://ror.org/039ztcx57', 'fr', 1, 'https://ror.org/039ztcx57 Institut de Recherche en Hématologie et Transplantation'),
(53014, 'https://ror.org/0218s1743', 'fr', 1, 'https://ror.org/0218s1743 Institut Technique de Développement des Produits de la Mer'),
(53015, 'https://ror.org/03esh6f70', 'no_lang_code', 1, 'https://ror.org/03esh6f70 International Flavors & Fragrances (France)'),
(53016, 'https://ror.org/016jmhr98', 'en', 1, 'https://ror.org/016jmhr98 Amt für Veröffentlichungen der Europäischen Union L''Office des Publications de l’Union Européenne Publications Office of the European Union'),
(53017, 'https://ror.org/01fgwy751', 'en', 1, 'https://ror.org/01fgwy751 Arbeitsgemeinschaft der Wissenschaftlichen Medizinischen Fachgesellschaften e.V. Association of the Scientific Medical Societies'),
(53018, 'https://ror.org/04h4t0r16', 'en', 1, 'https://ror.org/04h4t0r16 International Committee of the Red Cross'),
(53019, 'https://ror.org/0014agb17', 'no_lang_code', 1, 'https://ror.org/0014agb17 Stago (France)'),
(53020, 'https://ror.org/03b17a012', 'en', 1, 'https://ror.org/03b17a012 Bureau of Economic Analysis'),
(53021, 'https://ror.org/02gcrjm32', 'fr', 1, 'https://ror.org/02gcrjm32 Méthode Jeanne Piaubert institute'),
(53022, 'https://ror.org/01ssrp339', 'en', 1, 'https://ror.org/01ssrp339 VeDeCoM Institute'),
(53023, 'https://ror.org/03z2y7827', 'no_lang_code', 1, 'https://ror.org/03z2y7827 InstaGroup (United Kingdom)'),
(53024, 'https://ror.org/0187psc61', 'en', 1, 'https://ror.org/0187psc61 Scottish Intercollegiate Guidelines Network'),
(53025, 'https://ror.org/02x228738', 'en', 1, 'https://ror.org/02x228738 Intergovernmental Panel on Climate Change'),
(53026, 'https://ror.org/05j1j8v70', 'no_lang_code', 1, 'https://ror.org/05j1j8v70 KCI (United Kingdom)'),
(53027, 'https://ror.org/01tc3c489', 'no_lang_code', 1, 'https://ror.org/01tc3c489 PAC (France)'),
(53028, 'https://ror.org/03vyddc91', 'en', 1, 'https://ror.org/03vyddc91 Healthcare Improvement Scotland'),
(53029, 'https://ror.org/02pdcxe11', 'no_lang_code', 1, 'https://ror.org/02pdcxe11 Int''Air Medical (France)'),
(53030, 'https://ror.org/04k3nyd23', 'no_lang_code', 1, 'https://ror.org/04k3nyd23 InGen (France)'),
(53031, 'https://ror.org/057d4hm13', 'fr', 1, 'https://ror.org/057d4hm13 Installations Magasins Gerard Rocquet'),
(53032, 'https://ror.org/032nv2431', 'no_lang_code', 1, 'https://ror.org/032nv2431 Intelligence in Medical Technologies (France)'),
(53033, 'https://ror.org/059ehfk60', 'fr', 1, 'https://ror.org/059ehfk60 Société d’Installation Téléphonique et Signalisation'),
(53034, 'https://ror.org/005k2pp84', 'en', 1, 'https://ror.org/005k2pp84 Innovascience Laboratoire Innovascience'),
(53035, 'https://ror.org/019ex7f36', 'no_lang_code', 1, 'https://ror.org/019ex7f36 Safe Patient Systems (United Kingdom)'),
(53036, 'https://ror.org/044xt5998', 'no_lang_code', 1, 'https://ror.org/044xt5998 Advanced Medical Institute (Australia)'),
(53037, 'https://ror.org/02m7qby09', 'no_lang_code', 1, 'https://ror.org/02m7qby09 Nuxe (France)'),
(53038, 'https://ror.org/039fsnc94', 'no_lang_code', 1, 'https://ror.org/039fsnc94 Oenobiol (France)'),
(53039, 'https://ror.org/011mmtr14', 'no_lang_code', 1, 'https://ror.org/011mmtr14 LEA Networks (France)'),
(53040, 'https://ror.org/04xctba91', 'no_lang_code', 1, 'https://ror.org/04xctba91 Symatese (France)'),
(53041, 'https://ror.org/03mhzjs57', 'no_lang_code', 1, 'https://ror.org/03mhzjs57 INTER.MED (France)'),
(53042, 'https://ror.org/001f5k487', 'no_lang_code', 1, 'https://ror.org/001f5k487 Precilens (France)'),
(53043, 'https://ror.org/029ea9548', 'no_lang_code', 1, 'https://ror.org/029ea9548 Laboratoire Sicobel (France)'),
(53044, 'https://ror.org/016ppxm14', 'no_lang_code', 1, 'https://ror.org/016ppxm14 Intermark Medical Innovations (United Kingdom)'),
(53045, 'https://ror.org/00kny8y22', 'fr', 1, 'https://ror.org/00kny8y22 Laboratoire Excell'),
(53046, 'https://ror.org/05vh1g220', 'no_lang_code', 1, 'https://ror.org/05vh1g220 Klinger (United Kingdom)'),
(53047, 'https://ror.org/043yba110', 'no_lang_code', 1, 'https://ror.org/043yba110 Laboratoires Genevrier (France)'),
(53048, 'https://ror.org/05nazes57', 'no_lang_code', 1, 'https://ror.org/05nazes57 L3 Médical (France)'),
(53049, 'https://ror.org/04f3f9v34', 'no_lang_code', 1, 'https://ror.org/04f3f9v34 Tradiphar (France)'),
(53050, 'https://ror.org/03w3bmy56', 'no_lang_code', 1, 'https://ror.org/03w3bmy56 Laboratoires Aditec (France)'),
(53051, 'https://ror.org/059jy0w68', 'no_lang_code', 1, 'https://ror.org/059jy0w68 HRA Pharma (France)'),
(53052, 'https://ror.org/02z45mp76', 'no_lang_code', 1, 'https://ror.org/02z45mp76 Alere (Australia)'),
(53053, 'https://ror.org/02y4q0y44', 'no_lang_code', 1, 'https://ror.org/02y4q0y44 AkzoNobel (France)'),
(53054, 'https://ror.org/04tj9xe28', 'no_lang_code', 1, 'https://ror.org/04tj9xe28 Laphal (France)'),
(53055, 'https://ror.org/0560m4761', 'fr', 1, 'https://ror.org/0560m4761 Institut de Prise en Charge de l''Obésité en Alsace'),
(53056, 'https://ror.org/01tfxc804', 'no_lang_code', 1, 'https://ror.org/01tfxc804 Thalgo (France)'),
(53057, 'https://ror.org/00wbjq302', 'no_lang_code', 1, 'https://ror.org/00wbjq302 IRIS Instruments (France)'),
(53058, 'https://ror.org/048r71s66', 'en', 1, 'https://ror.org/048r71s66 Ceres Laboratory Laboratoire Ceres'),
(53059, 'https://ror.org/00pt3xy74', 'no_lang_code', 1, 'https://ror.org/00pt3xy74 Effik (France)'),
(53060, 'https://ror.org/05rvvjw12', 'no_lang_code', 1, 'https://ror.org/05rvvjw12 Chemineau Labs (France) Laboratoires Chemineau'),
(53061, 'https://ror.org/052yn8h13', 'no_lang_code', 1, 'https://ror.org/052yn8h13 Riga (France)'),
(53062, 'https://ror.org/022aa0w74', 'no_lang_code', 1, 'https://ror.org/022aa0w74 Laboratoires M. Richard (France)'),
(53063, 'https://ror.org/00j8xde38', 'no_lang_code', 1, 'https://ror.org/00j8xde38 Eurobio (France)'),
(53064, 'https://ror.org/04rpy7390', 'no_lang_code', 1, 'https://ror.org/04rpy7390 Groupe Clarins (France)'),
(53065, 'https://ror.org/00zq45236', 'no_lang_code', 1, 'https://ror.org/00zq45236 SurgiMedia (France)'),
(53066, 'https://ror.org/02682jj74', 'no_lang_code', 1, 'https://ror.org/02682jj74 Ceraver (France)'),
(53067, 'https://ror.org/04hkh7617', 'no_lang_code', 1, 'https://ror.org/04hkh7617 Cyclopharma (France)'),
(53068, 'https://ror.org/04tb15285', 'no_lang_code', 1, 'https://ror.org/04tb15285 Laboratoire France Bébé Nutrition (France)'),
(53069, 'https://ror.org/015r6qx80', 'no_lang_code', 1, 'https://ror.org/015r6qx80 Laboratoires d''Anjou (France)'),
(53070, 'https://ror.org/05t30dz33', 'no_lang_code', 1, 'https://ror.org/05t30dz33 G-Pharm (France)'),
(53071, 'https://ror.org/014ezhp82', 'no_lang_code', 1, 'https://ror.org/014ezhp82 Laboratory Supplies and Instruments (United Kingdom)'),
(53072, 'https://ror.org/03dhess34', 'no_lang_code', 1, 'https://ror.org/03dhess34 Laboratoires Gilbert (France)'),
(53073, 'https://ror.org/04g5kd725', 'no_lang_code', 1, 'https://ror.org/04g5kd725 IST Medical (France)'),
(53074, 'https://ror.org/05n1xkq03', 'no_lang_code', 1, 'https://ror.org/05n1xkq03 Yves Rocher (France)'),
(53075, 'https://ror.org/04p972q78', 'no_lang_code', 1, 'https://ror.org/04p972q78 Procter & Gamble (France)'),
(53076, 'https://ror.org/0161tv133', 'no_lang_code', 1, 'https://ror.org/0161tv133 Memscap (France)'),
(53077, 'https://ror.org/00wvhys96', 'no_lang_code', 1, 'https://ror.org/00wvhys96 Puig (France)'),
(53078, 'https://ror.org/02vh2pt65', 'en', 1, 'https://ror.org/02vh2pt65 Ludwig Cancer Research'),
(53079, 'https://ror.org/05nm81f72', 'no_lang_code', 1, 'https://ror.org/05nm81f72 Braas Monier (United Kingdom)'),
(53080, 'https://ror.org/01g84kr32', 'no_lang_code', 1, 'https://ror.org/01g84kr32 Payot (France)'),
(53081, 'https://ror.org/01e473h50', 'en', 1, 'https://ror.org/01e473h50 Ludwig Cancer Research'),
(53082, 'https://ror.org/01510f568', 'no_lang_code', 1, 'https://ror.org/01510f568 Setec (France)'),
(53083, 'https://ror.org/037b4r736', 'no_lang_code', 1, 'https://ror.org/037b4r736 Rodael (France)'),
(53084, 'https://ror.org/00610tn07', 'no_lang_code', 1, 'https://ror.org/00610tn07 Medicalex (France)'),
(53085, 'https://ror.org/04hv9tr61', 'no_lang_code', 1, 'https://ror.org/04hv9tr61 Laboratoires Phodé (France)'),
(53086, 'https://ror.org/00ncbzn09', 'no_lang_code', 1, 'https://ror.org/00ncbzn09 Phytocos (France)'),
(53087, 'https://ror.org/043eaeg43', 'no_lang_code', 1, 'https://ror.org/043eaeg43 Laboratoire de Dermo-Cosmétique Animale (France)'),
(53088, 'https://ror.org/051334k24', 'fr', 1, 'https://ror.org/051334k24 Institution Nationale des Invalides'),
(53089, 'https://ror.org/03ccjhx84', 'no_lang_code', 1, 'https://ror.org/03ccjhx84 Medicamat (France)'),
(53090, 'https://ror.org/04zaa8r69', 'fr', 1, 'https://ror.org/04zaa8r69 Laboratoire de Physique du Rayonnement et de la Lumière'),
(53091, 'https://ror.org/028qtah59', 'no_lang_code', 1, 'https://ror.org/028qtah59 Dodie (France)'),
(53092, 'https://ror.org/02nvfeg84', 'en', 1, 'https://ror.org/02nvfeg84 Marble Arch Medical Centre'),
(53093, 'https://ror.org/01hzsk060', 'no_lang_code', 1, 'https://ror.org/01hzsk060 Gojo (France)'),
(53094, 'https://ror.org/042f4rs03', 'no_lang_code', 1, 'https://ror.org/042f4rs03 Laurane Medical (France)'),
(53095, 'https://ror.org/03ybb7335', 'no_lang_code', 1, 'https://ror.org/03ybb7335 Laboratoires Rivadis (France)'),
(53096, 'https://ror.org/00e56ek71', 'no_lang_code', 1, 'https://ror.org/00e56ek71 Groupe Winncare (France)'),
(53097, 'https://ror.org/00b52f734', 'no_lang_code', 1, 'https://ror.org/00b52f734 Laboratoires Sebbin (France)'),
(53098, 'https://ror.org/01xa11r83', 'no_lang_code', 1, 'https://ror.org/01xa11r83 Sequenom (United Kingdom)'),
(53099, 'https://ror.org/0382x5c07', 'no_lang_code', 1, 'https://ror.org/0382x5c07 Sebia (France)'),
(53100, 'https://ror.org/030wbs841', 'no_lang_code', 1, 'https://ror.org/030wbs841 Medicodose Systems (France)'),
(53101, 'https://ror.org/03ckjfz66', 'no_lang_code', 1, 'https://ror.org/03ckjfz66 Synerlab (France)'),
(53102, 'https://ror.org/01kspqs18', 'no_lang_code', 1, 'https://ror.org/01kspqs18 Medicold (France)'),
(53103, 'https://ror.org/04fyf9d79', 'fr', 1, 'https://ror.org/04fyf9d79 Laboratoire Saint Martin'),
(53104, 'https://ror.org/05rk35s69', 'no_lang_code', 1, 'https://ror.org/05rk35s69 Laboratoires Standa (France)'),
(53105, 'https://ror.org/031eerz69', 'no_lang_code', 1, 'https://ror.org/031eerz69 Medicrea (France)'),
(53106, 'https://ror.org/03b0wgg06', 'no_lang_code', 1, 'https://ror.org/03b0wgg06 Laboratoires SVR (France)'),
(53107, 'https://ror.org/04xh47750', 'no_lang_code', 1, 'https://ror.org/04xh47750 Laboratories Synth Innove (France)'),
(53108, 'https://ror.org/04de0c074', 'en', 1, 'https://ror.org/04de0c074 Melbourn Science Park'),
(53109, 'https://ror.org/027jzhs47', 'no_lang_code', 1, 'https://ror.org/027jzhs47 Lavipharm (France)'),
(53110, 'https://ror.org/03e1deg09', 'no_lang_code', 1, 'https://ror.org/03e1deg09 Laboratoires Vivacy (France)'),
(53111, 'https://ror.org/02mtcrz14', 'fr', 1, 'https://ror.org/02mtcrz14 Enilia Ensmic'),
(53112, 'https://ror.org/02dwsbm05', 'no_lang_code', 1, 'https://ror.org/02dwsbm05 Melet Schloesing Laboratoires (France)'),
(53113, 'https://ror.org/05aw35e64', 'no_lang_code', 1, 'https://ror.org/05aw35e64 Matériel Médical (France)'),
(53114, 'https://ror.org/051xra320', 'no_lang_code', 1, 'https://ror.org/051xra320 Biocodex (France)'),
(53115, 'https://ror.org/05rzbbw97', 'no_lang_code', 1, 'https://ror.org/05rzbbw97 Life Medical Control (France)'),
(53116, 'https://ror.org/02ephh346', 'en', 1, 'https://ror.org/02ephh346 Metabrain Research'),
(53117, 'https://ror.org/037j2g266', 'no_lang_code', 1, 'https://ror.org/037j2g266 Wockhardt (France)'),
(53118, 'https://ror.org/05crsng41', 'no_lang_code', 1, 'https://ror.org/05crsng41 Maxi-Steam (Australia)'),
(53119, 'https://ror.org/0521n7n83', 'no_lang_code', 1, 'https://ror.org/0521n7n83 Microsoft (France)'),
(53120, 'https://ror.org/00grcq349', 'no_lang_code', 1, 'https://ror.org/00grcq349 Mdoloris Medical Systems (France)'),
(53121, 'https://ror.org/008sh5980', 'no_lang_code', 1, 'https://ror.org/008sh5980 Midas Mediscience (United Kingdom)'),
(53122, 'https://ror.org/055azc127', 'no_lang_code', 1, 'https://ror.org/055azc127 MinMaxMedical (France)'),
(53123, 'https://ror.org/05v7gs072', 'fr', 1, 'https://ror.org/05v7gs072 Nextep'),
(53124, 'https://ror.org/00s75ft26', 'no_lang_code', 1, 'https://ror.org/00s75ft26 Ormihl (France)'),
(53125, 'https://ror.org/03pskz739', 'no_lang_code', 1, 'https://ror.org/03pskz739 Molecular Engines Laboratories (France)'),
(53126, 'https://ror.org/038b7ts62', 'no_lang_code', 1, 'https://ror.org/038b7ts62 LSO Medical (France)'),
(53127, 'https://ror.org/00p287g25', 'no_lang_code', 1, 'https://ror.org/00p287g25 Nintendo (France)'),
(53128, 'https://ror.org/01j01re85', 'no_lang_code', 1, 'https://ror.org/01j01re85 Prince Medical (France)'),
(53129, 'https://ror.org/053tfgv50', 'no_lang_code', 1, 'https://ror.org/053tfgv50 Laboratoires Nogues (France)'),
(53130, 'https://ror.org/02v1vhf29', 'no_lang_code', 1, 'https://ror.org/02v1vhf29 Presi (France)'),
(53131, 'https://ror.org/043mfwz11', 'no_lang_code', 1, 'https://ror.org/043mfwz11 Fruits Délice (France)'),
(53132, 'https://ror.org/01sqj1z22', 'no_lang_code', 1, 'https://ror.org/01sqj1z22 Pi (United Kingdom)'),
(53133, 'https://ror.org/0559k7072', 'no_lang_code', 1, 'https://ror.org/0559k7072 Moria (France)'),
(53134, 'https://ror.org/021h7sd56', 'no_lang_code', 1, 'https://ror.org/021h7sd56 Medical Process (France)'),
(53135, 'https://ror.org/00996ck84', 'no_lang_code', 1, 'https://ror.org/00996ck84 Médical Innovation Développement (France)'),
(53136, 'https://ror.org/02hmf0879', 'en', 1, 'https://ror.org/02hmf0879 Northern Sydney Local Health District'),
(53137, 'https://ror.org/047nkw990', 'no_lang_code', 1, 'https://ror.org/047nkw990 Ella Baché (France)'),
(53138, 'https://ror.org/03t9wc557', 'no_lang_code', 1, 'https://ror.org/03t9wc557 Medical innovation (France)'),
(53139, 'https://ror.org/03n2my419', 'no_lang_code', 1, 'https://ror.org/03n2my419 Platinum Equity (United Kingdom)'),
(53140, 'https://ror.org/01atm1h75', 'no_lang_code', 1, 'https://ror.org/01atm1h75 Laboratoires Prod''Hyg (France)'),
(53141, 'https://ror.org/02c7hqm03', 'no_lang_code', 1, 'https://ror.org/02c7hqm03 Laboratoires Spiral (France)'),
(53142, 'https://ror.org/00bgpxp73', 'no_lang_code', 1, 'https://ror.org/00bgpxp73 Robotik Technology (France)'),
(53143, 'https://ror.org/04fz10a73', 'no_lang_code', 1, 'https://ror.org/04fz10a73 Medical Production (France)'),
(53144, 'https://ror.org/0003yay73', 'no_lang_code', 1, 'https://ror.org/0003yay73 SEE Laborde JP (France)'),
(53145, 'https://ror.org/00gpm0e44', 'no_lang_code', 1, 'https://ror.org/00gpm0e44 NTX Research (France)'),
(53146, 'https://ror.org/02kqtfa81', 'en', 1, 'https://ror.org/02kqtfa81 Medical Solutions'),
(53147, 'https://ror.org/02j6sa144', 'no_lang_code', 1, 'https://ror.org/02j6sa144 Protip Medical (France)'),
(53148, 'https://ror.org/03ev0vh37', 'no_lang_code', 1, 'https://ror.org/03ev0vh37 P2A Medical (France)'),
(53149, 'https://ror.org/011e5e822', 'no_lang_code', 1, 'https://ror.org/011e5e822 NVH Medicinal (France)'),
(53150, 'https://ror.org/03z08wj79', 'no_lang_code', 1, 'https://ror.org/03z08wj79 Psychometric Research & Development (United Kingdom)'),
(53151, 'https://ror.org/00rd9tc64', 'fr', 1, 'https://ror.org/00rd9tc64 Laboratoire Dr Renaud'),
(53152, 'https://ror.org/01t5xrf37', 'no_lang_code', 1, 'https://ror.org/01t5xrf37 Sapphire Research & Electronics (United Kingdom)'),
(53153, 'https://ror.org/03b0fve92', 'fr', 1, 'https://ror.org/03b0fve92 Herbarom Laboratoire'),
(53154, 'https://ror.org/00bp6rb10', 'no_lang_code', 1, 'https://ror.org/00bp6rb10 Quantum (Australia)'),
(53155, 'https://ror.org/00n16p279', 'no_lang_code', 1, 'https://ror.org/00n16p279 Setaram Instrumentation (France)'),
(53156, 'https://ror.org/05h78k766', 'no_lang_code', 1, 'https://ror.org/05h78k766 Baker Hughes (United Kingdom)'),
(53157, 'https://ror.org/03t8yfs10', 'no_lang_code', 1, 'https://ror.org/03t8yfs10 Dermscan Group (France)'),
(53158, 'https://ror.org/02dc2kg74', 'no_lang_code', 1, 'https://ror.org/02dc2kg74 Aurea Agrosciences (France)'),
(53159, 'https://ror.org/031ahp525', 'no_lang_code', 1, 'https://ror.org/031ahp525 Parburch Medical Developments (United Kingdom)'),
(53160, 'https://ror.org/02q4y5974', 'no_lang_code', 1, 'https://ror.org/02q4y5974 Laboratoire Odost (France)'),
(53161, 'https://ror.org/04zg3kj04', 'no_lang_code', 1, 'https://ror.org/04zg3kj04 Scaleo Medical (France)'),
(53162, 'https://ror.org/04kt6g810', 'no_lang_code', 1, 'https://ror.org/04kt6g810 Shell (France)'),
(53163, 'https://ror.org/037405c78', 'en', 1, 'https://ror.org/037405c78 Cancer Research UK Manchester Institute'),
(53164, 'https://ror.org/00gkes048', 'no_lang_code', 1, 'https://ror.org/00gkes048 Oncomedics (France)'),
(53165, 'https://ror.org/005yk2x17', 'no_lang_code', 1, 'https://ror.org/005yk2x17 OneFit Medical (France)'),
(53166, 'https://ror.org/03tdpge58', 'no_lang_code', 1, 'https://ror.org/03tdpge58 Scalzo Automotive Research (Australia)'),
(53167, 'https://ror.org/02aqcpd84', 'no_lang_code', 1, 'https://ror.org/02aqcpd84 A3IP (France)'),
(53168, 'https://ror.org/012bs5594', 'no_lang_code', 1, 'https://ror.org/012bs5594 Cegedim (France)'),
(53169, 'https://ror.org/019vgq189', 'no_lang_code', 1, 'https://ror.org/019vgq189 Schiller (France)'),
(53170, 'https://ror.org/044zhgv69', 'no_lang_code', 1, 'https://ror.org/044zhgv69 Strainstall (United Kingdom)'),
(53171, 'https://ror.org/04mba0b61', 'no_lang_code', 1, 'https://ror.org/04mba0b61 Structural Science Composites (United Kingdom)'),
(53172, 'https://ror.org/004hdwp61', 'no_lang_code', 1, 'https://ror.org/004hdwp61 Resonance Health (Australia)'),
(53173, 'https://ror.org/03geggj88', 'no_lang_code', 1, 'https://ror.org/03geggj88 Perrigo (France)'),
(53174, 'https://ror.org/04xxthg27', 'no_lang_code', 1, 'https://ror.org/04xxthg27 Science et Médecine (France)'),
(53175, 'https://ror.org/01sc29z88', 'no_lang_code', 1, 'https://ror.org/01sc29z88 SLB Médical (France)'),
(53176, 'https://ror.org/05h2qqq38', 'no_lang_code', 1, 'https://ror.org/05h2qqq38 Rhopoint Instruments (United Kingdom)'),
(53177, 'https://ror.org/040y2n469', 'no_lang_code', 1, 'https://ror.org/040y2n469 Jules Richard Instruments (France)'),
(53178, 'https://ror.org/04f350r05', 'fr', 1, 'https://ror.org/04f350r05 Phagogène'),
(53179, 'https://ror.org/05t2bc229', 'no_lang_code', 1, 'https://ror.org/05t2bc229 Société française d’instruments de chirurgie Sofic (France)'),
(53180, 'https://ror.org/05snmjd73', 'no_lang_code', 1, 'https://ror.org/05snmjd73 SurgiQual Institute (France)'),
(53181, 'https://ror.org/04yacgh83', 'no_lang_code', 1, 'https://ror.org/04yacgh83 SoftFil (France)'),
(53182, 'https://ror.org/01rvrhf27', 'no_lang_code', 1, 'https://ror.org/01rvrhf27 Photonic Research Systems (United Kingdom)'),
(53183, 'https://ror.org/00z7y2783', 'no_lang_code', 1, 'https://ror.org/00z7y2783 Nutreov Laboratoires (France)'),
(53184, 'https://ror.org/02enra703', 'no_lang_code', 1, 'https://ror.org/02enra703 SCL International'),
(53185, 'https://ror.org/006qdp021', 'no_lang_code', 1, 'https://ror.org/006qdp021 Scot Young Research (United Kingdom)'),
(53186, 'https://ror.org/02serab94', 'no_lang_code', 1, 'https://ror.org/02serab94 Sopac Medical (France)'),
(53187, 'https://ror.org/038d5d459', 'en', 1, 'https://ror.org/038d5d459 Scottish Health Services'),
(53188, 'https://ror.org/01avy4c79', 'no_lang_code', 1, 'https://ror.org/01avy4c79 Synchro Medical (France)'),
(53189, 'https://ror.org/04xsq5430', 'no_lang_code', 1, 'https://ror.org/04xsq5430 Sotec Médical (France)'),
(53190, 'https://ror.org/01fawrr58', 'no_lang_code', 1, 'https://ror.org/01fawrr58 Selenium Medical (France)'),
(53191, 'https://ror.org/02f1jpe62', 'en', 1, 'https://ror.org/02f1jpe62 South West Thames Institute for Renal Research'),
(53192, 'https://ror.org/003zwxt43', 'no_lang_code', 1, 'https://ror.org/003zwxt43 Total Security Installations (United Kingdom)'),
(53193, 'https://ror.org/05mh5m090', 'no_lang_code', 1, 'https://ror.org/05mh5m090 Spenco Medical (United Kingdom)'),
(53194, 'https://ror.org/01bb5z206', 'fr', 1, 'https://ror.org/01bb5z206 Technologie Médicale (France)'),
(53195, 'https://ror.org/05hnbrd32', 'no_lang_code', 1, 'https://ror.org/05hnbrd32 Wessex Lifts (United Kingdom)'),
(53196, 'https://ror.org/05vd6yn18', 'no_lang_code', 1, 'https://ror.org/05vd6yn18 EDAP TMS (France)'),
(53197, 'https://ror.org/04g9yb321', 'no_lang_code', 1, 'https://ror.org/04g9yb321 West Pharmaceutical Services (United Kingdom)'),
(53198, 'https://ror.org/04z0bfr53', 'no_lang_code', 1, 'https://ror.org/04z0bfr53 Urgo Laboratories (France)'),
(53199, 'https://ror.org/02d823f39', 'no_lang_code', 1, 'https://ror.org/02d823f39 Trendrail (United KIngdom)'),
(53200, 'https://ror.org/02820xq34', 'no_lang_code', 1, 'https://ror.org/02820xq34 Boskalis (United Kingdom)'),
(53201, 'https://ror.org/03ssw7f31', 'no_lang_code', 1, 'https://ror.org/03ssw7f31 Trewavis Surgical (Australia)'),
(53202, 'https://ror.org/032dtwy97', 'no_lang_code', 1, 'https://ror.org/032dtwy97 Trod Medical (France)'),
(53203, 'https://ror.org/00fje3r15', 'no_lang_code', 1, 'https://ror.org/00fje3r15 Tethys Instruments (France)'),
(53204, 'https://ror.org/03a62s155', 'en', 1, 'https://ror.org/03a62s155 Westminster Guarantee Protection Trustees'),
(53205, 'https://ror.org/03a4r5t71', 'en', 1, 'https://ror.org/03a4r5t71 Vanguard Healthcare'),
(53206, 'https://ror.org/01n6t9x28', 'no_lang_code', 1, 'https://ror.org/01n6t9x28 UCB Pharma (France)'),
(53207, 'https://ror.org/02gb0nx59', 'no_lang_code', 1, 'https://ror.org/02gb0nx59 Centre d''Orthro-Podologie & d''Orthopédie Thion Medical (France)'),
(53208, 'https://ror.org/0287qz723', 'no_lang_code', 1, 'https://ror.org/0287qz723 Thomas Sinclair Laboratories (France)'),
(53209, 'https://ror.org/036xxhv13', 'no_lang_code', 1, 'https://ror.org/036xxhv13 Invisio (Germany)'),
(53210, 'https://ror.org/03wjq0y66', 'no_lang_code', 1, 'https://ror.org/03wjq0y66 Isotopx (United Kingdom)'),
(53211, 'https://ror.org/00nqbw566', 'no_lang_code', 1, 'https://ror.org/00nqbw566 Thames Medical (United Kingdom)'),
(53212, 'https://ror.org/0019h1k84', 'en', 1, 'https://ror.org/0019h1k84 Joint European Torus'),
(53213, 'https://ror.org/0529fxt39', 'en', 1, 'https://ror.org/0529fxt39 Palo Alto Research Center'),
(53214, 'https://ror.org/03ggtzp34', 'en', 1, 'https://ror.org/03ggtzp34 Dr. Reddy''s Foundation'),
(53215, 'https://ror.org/032sxkb16', 'en', 1, 'https://ror.org/032sxkb16 Central Institute of Temperate Horticulture'),
(53216, 'https://ror.org/012fexm34', 'no_lang_code', 1, 'https://ror.org/012fexm34 Edwards Lifesciences (Switzerland)'),
(53217, 'https://ror.org/01hfpy566', 'en', 1, 'https://ror.org/01hfpy566 Institute of Astronomy and Astrophysics, Academia Sinica'),
(53218, 'https://ror.org/01tpvdq80', 'en', 1, 'https://ror.org/01tpvdq80 Institute of Physics, Academia Sinica 中央研究院物理研究所'),
(53219, 'https://ror.org/03haqsp75', 'en', 1, 'https://ror.org/03haqsp75 Institute of Atomic and Molecular Sciences, Academia Sinica 中央研究院原子與分子科學研究所'),
(53220, 'https://ror.org/00ex2js61', 'en', 1, 'https://ror.org/00ex2js61 Research Center for Applied Science, Academia Sinica 中央研究院應用科學研究中心'),
(53221, 'https://ror.org/02gq5b653', 'no_lang_code', 1, 'https://ror.org/02gq5b653 Electro Automation (Ireland)'),
(53222, 'https://ror.org/016m85y83', 'de', 1, 'https://ror.org/016m85y83 Fachkommission für Hochspannungsfragen'),
(53223, 'https://ror.org/03n06wy62', 'no_lang_code', 1, 'https://ror.org/03n06wy62 Algae Health (Ireland) Slainte Alga Teoranta'),
(53224, 'https://ror.org/00p03yg71', 'en', 1, 'https://ror.org/00p03yg71 Istituto Superconduttori, Materiali Innovativi e Dispositivi Superconducting and other Innovative Materials and Devices Institute'),
(53225, 'https://ror.org/00ss52190', 'no_lang_code', 1, 'https://ror.org/00ss52190 Laboratoire Pino Aliprandini (Switzerland)'),
(53226, 'https://ror.org/01fe75p74', 'en', 1, 'https://ror.org/01fe75p74 Chinese Culinary Institute'),
(53227, 'https://ror.org/011hxwn54', 'en', 1, 'https://ror.org/011hxwn54 Asia Pacific Center for Theoretical Physics'),
(53228, 'https://ror.org/01vgh8b31', 'en', 1, 'https://ror.org/01vgh8b31 Alpinia Institute'),
(53229, 'https://ror.org/03v7tny92', 'en', 1, 'https://ror.org/03v7tny92 Institute of Physics Rosario Instituto de Física Rosario'),
(53230, 'https://ror.org/051m3n143', 'en', 1, 'https://ror.org/051m3n143 Environmental Research Instruments'),
(53231, 'https://ror.org/01dagn361', 'en', 1, 'https://ror.org/01dagn361 TIFR Centre for Interdisciplinary Sciences'),
(53232, 'https://ror.org/0089bg420', 'en', 1, 'https://ror.org/0089bg420 Daresbury Laboratory'),
(53233, 'https://ror.org/040rzp686', 'en', 1, 'https://ror.org/040rzp686 Hair Science Institute'),
(53234, 'https://ror.org/01v4s0f07', 'en', 1, 'https://ror.org/01v4s0f07 Variable Energy Cyclotron Centre'),
(53235, 'https://ror.org/04gmfhf08', 'en', 1, 'https://ror.org/04gmfhf08 Applied Research Associates'),
(53236, 'https://ror.org/05d7v2265', 'no_lang_code', 1, 'https://ror.org/05d7v2265 Hanlun Information (China) 兴伦信息有限公司'),
(53237, 'https://ror.org/05gemrx09', 'no_lang_code', 1, 'https://ror.org/05gemrx09 Argomedical (Switzerland)'),
(53238, 'https://ror.org/002j9py90', 'no_lang_code', 1, 'https://ror.org/002j9py90 Harry Winston (Switzerland)'),
(53239, 'https://ror.org/05bhe6d02', 'no_lang_code', 1, 'https://ror.org/05bhe6d02 MSA Schweiz GmbH Mine Safety Appliances (Switzerland)'),
(53240, 'https://ror.org/00geaym80', 'no_lang_code', 1, 'https://ror.org/00geaym80 Artificial Sensing Instruments (Switzerland)'),
(53241, 'https://ror.org/017mw4x28', 'en', 1, 'https://ror.org/017mw4x28 Healthcare Technology Innovation Centre'),
(53242, 'https://ror.org/00aamwa29', 'no_lang_code', 1, 'https://ror.org/00aamwa29 Schaeffer (Switzerland)'),
(53243, 'https://ror.org/00212dq27', 'no_lang_code', 1, 'https://ror.org/00212dq27 Elekta (Switzerland)'),
(53244, 'https://ror.org/0387d5286', 'no_lang_code', 1, 'https://ror.org/0387d5286 Atheris Laboratories (Switzerland)'),
(53245, 'https://ror.org/0160rhq33', 'en', 1, 'https://ror.org/0160rhq33 Dalmia Institute of Scientific & Industrial Research'),
(53246, 'https://ror.org/00baskk38', 'en', 1, 'https://ror.org/00baskk38 Institut für Biomedizinische Technik Institute for Biomedical Engineering'),
(53247, 'https://ror.org/0422kq922', 'no_lang_code', 1, 'https://ror.org/0422kq922 ELEQ (Netherlands)'),
(53248, 'https://ror.org/030f1yb82', 'en', 1, 'https://ror.org/030f1yb82 Institut Icare'),
(53249, 'https://ror.org/032dyj305', 'en', 1, 'https://ror.org/032dyj305 Basko Healthcare'),
(53250, 'https://ror.org/04fjy3t60', 'no_lang_code', 1, 'https://ror.org/04fjy3t60 Digitech Services (New Zealand)'),
(53251, 'https://ror.org/02hbskw66', 'en', 1, 'https://ror.org/02hbskw66 Central Institute for Women in Agriculture'),
(53252, 'https://ror.org/02364qy53', 'de', 1, 'https://ror.org/02364qy53 Aron Vajna Historischer Blechblasinstrumentenbau'),
(53253, 'https://ror.org/01w4ggt72', 'no_lang_code', 1, 'https://ror.org/01w4ggt72 Boskalis (Netherlands) Koninklijke Boskalis Westminster N.V.'),
(53254, 'https://ror.org/02j5xfp60', 'no_lang_code', 1, 'https://ror.org/02j5xfp60 AOMB Intellectual Property (Netherlands)'),
(53255, 'https://ror.org/0552cbh05', 'no_lang_code', 1, 'https://ror.org/0552cbh05 B. Braun (Switzerland)'),
(53256, 'https://ror.org/01rmsm893', 'no_lang_code', 1, 'https://ror.org/01rmsm893 MJ Group (India)'),
(53257, 'https://ror.org/00xckqv95', 'en', 1, 'https://ror.org/00xckqv95 B.Well Swiss'),
(53258, 'https://ror.org/009pahg55', 'en', 1, 'https://ror.org/009pahg55 Mahatma Gandhi Institute for Rural Industrialization'),
(53259, 'https://ror.org/01ahf6552', 'no_lang_code', 1, 'https://ror.org/01ahf6552 Integrated Chinese Medicine (China)'),
(53260, 'https://ror.org/02trxsj91', 'no_lang_code', 1, 'https://ror.org/02trxsj91 Maisey (New Zealand)'),
(53261, 'https://ror.org/03b7qtd49', 'de', 1, 'https://ror.org/03b7qtd49 Büchi Labortechnik'),
(53262, 'https://ror.org/02zv3jm94', 'no_lang_code', 1, 'https://ror.org/02zv3jm94 Dentsply Sirona (Switzerland)'),
(53263, 'https://ror.org/04zwy1d58', 'no_lang_code', 1, 'https://ror.org/04zwy1d58 Burnside Autocyl (Ireland)'),
(53264, 'https://ror.org/00tjm9378', 'no_lang_code', 1, 'https://ror.org/00tjm9378 Mankind Pharma (India)'),
(53265, 'https://ror.org/04g335g49', 'no_lang_code', 1, 'https://ror.org/04g335g49 IRDAM (Switzerland)'),
(53266, 'https://ror.org/015sf2585', 'no_lang_code', 1, 'https://ror.org/015sf2585 Rebnok (India)'),
(53267, 'https://ror.org/04p76s709', 'no_lang_code', 1, 'https://ror.org/04p76s709 RPG Life Sciences (India)'),
(53268, 'https://ror.org/00hk9tb32', 'no_lang_code', 1, 'https://ror.org/00hk9tb32 CNH Industrial (Switzerland)'),
(53269, 'https://ror.org/054n2k594', 'en', 1, 'https://ror.org/054n2k594 Medical Biobank Swiss Institute'),
(53270, 'https://ror.org/033nhhq39', 'no_lang_code', 1, 'https://ror.org/033nhhq39 Medical Dispensing Systems (Netherlands)'),
(53271, 'https://ror.org/00qw4ms08', 'en', 1, 'https://ror.org/00qw4ms08 Clayton Foundation'),
(53272, 'https://ror.org/050jk8g19', 'no_lang_code', 1, 'https://ror.org/050jk8g19 Medical Technology Transfer (Netherlands)'),
(53273, 'https://ror.org/00n2n5x30', 'no_lang_code', 1, 'https://ror.org/00n2n5x30 Celtrak (Ireland)'),
(53274, 'https://ror.org/01gq9c873', 'no_lang_code', 1, 'https://ror.org/01gq9c873 Medicel (Switzerland)'),
(53275, 'https://ror.org/01vm4bk04', 'no_lang_code', 1, 'https://ror.org/01vm4bk04 SMT (India)'),
(53276, 'https://ror.org/003nd8341', 'no_lang_code', 1, 'https://ror.org/003nd8341 Medicoat (Switzerland)'),
(53277, 'https://ror.org/033x3jh42', 'no_lang_code', 1, 'https://ror.org/033x3jh42 Schmizo (Switzerland)'),
(53278, 'https://ror.org/01qasqf38', 'no_lang_code', 1, 'https://ror.org/01qasqf38 Nypro (Ireland)'),
(53279, 'https://ror.org/05hzbx907', 'en', 1, 'https://ror.org/05hzbx907 National Digital Research Centre'),
(53280, 'https://ror.org/0594rzx21', 'no_lang_code', 1, 'https://ror.org/0594rzx21 SIS Medical (Switzerland)'),
(53281, 'https://ror.org/014becm56', 'no_lang_code', 1, 'https://ror.org/014becm56 Meteolabor (Switzerland)'),
(53282, 'https://ror.org/01sj1p486', 'en', 1, 'https://ror.org/01sj1p486 Kerala Institute for Research, Training and Development Studies of Scheduled Castes and Tribes'),
(53283, 'https://ror.org/01vap4769', 'no_lang_code', 1, 'https://ror.org/01vap4769 Mintaka Fondation Pour la Recherche Medicale Mintaka Foundation for Medical Research'),
(53284, 'https://ror.org/03qdj6986', 'no_lang_code', 1, 'https://ror.org/03qdj6986 Becton Dickinson (Netherlands)'),
(53285, 'https://ror.org/00zb6nk96', 'fr', 1, 'https://ror.org/00zb6nk96 Labor Spiez Labor Spiez Laboratoire de Spiez Laboratorio Spiez Spiez Laboratory'),
(53286, 'https://ror.org/04d1eym69', 'no_lang_code', 1, 'https://ror.org/04d1eym69 Kingspan (Ireland)'),
(53287, 'https://ror.org/00nj0fk68', 'no_lang_code', 1, 'https://ror.org/00nj0fk68 Mitsui & Co (Ireland)'),
(53288, 'https://ror.org/05nqm0q11', 'no_lang_code', 1, 'https://ror.org/05nqm0q11 Institute for Sustainable Process Technology'),
(53289, 'https://ror.org/00467td76', 'no_lang_code', 1, 'https://ror.org/00467td76 Mallinckrodt (Ireland)'),
(53290, 'https://ror.org/02eyspm09', 'no_lang_code', 1, 'https://ror.org/02eyspm09 Kuiper Medical Instruments (Netherlands) Kuiper Medische Instrumenten'),
(53291, 'https://ror.org/00edhwf08', 'no_lang_code', 1, 'https://ror.org/00edhwf08 Oertli Instrumente (Switzerland)'),
(53292, 'https://ror.org/028x09v05', 'no_lang_code', 1, 'https://ror.org/028x09v05 Portasol (Ireland)'),
(53293, 'https://ror.org/02zvqs025', 'no_lang_code', 1, 'https://ror.org/02zvqs025 Shellfish Ireland (Ireland)'),
(53294, 'https://ror.org/0140krp16', 'no_lang_code', 1, 'https://ror.org/0140krp16 Mane (India)'),
(53295, 'https://ror.org/027whd792', 'no_lang_code', 1, 'https://ror.org/027whd792 Labomatic Instruments (Switzerland)'),
(53296, 'https://ror.org/029gyan70', 'no_lang_code', 1, 'https://ror.org/029gyan70 Ziemer Ophthalmic Systems (Switzerland)'),
(53297, 'https://ror.org/04q709a65', 'no_lang_code', 1, 'https://ror.org/04q709a65 Metabo (Switzerland)'),
(53298, 'https://ror.org/00cn31g95', 'no_lang_code', 1, 'https://ror.org/00cn31g95 L.A.C. (Switzerland)'),
(53299, 'https://ror.org/00qt1ww94', 'no_lang_code', 1, 'https://ror.org/00qt1ww94 Radiometer (Switzerland)'),
(53300, 'https://ror.org/01hnq0310', 'nl', 1, 'https://ror.org/01hnq0310 Promens Care'),
(53301, 'https://ror.org/04gnv7g45', 'no_lang_code', 1, 'https://ror.org/04gnv7g45 VAF Instruments (Netherlands)'),
(53302, 'https://ror.org/02q600s42', 'no_lang_code', 1, 'https://ror.org/02q600s42 Luciol Instruments (Switzerland)'),
(53303, 'https://ror.org/03rn2e120', 'no_lang_code', 1, 'https://ror.org/03rn2e120 Abbott (Switzerland)'),
(53304, 'https://ror.org/049tb1q96', 'no_lang_code', 1, 'https://ror.org/049tb1q96 Varian Medical Systems (Switzerland)'),
(53305, 'https://ror.org/02cn3rm21', 'en', 1, 'https://ror.org/02cn3rm21 Ludwig Cancer Research'),
(53306, 'https://ror.org/049vzz986', 'no_lang_code', 1, 'https://ror.org/049vzz986 Storz Medical (Switzerland)'),
(53307, 'https://ror.org/054fjrs33', 'no_lang_code', 1, 'https://ror.org/054fjrs33 Lutz Medical Engineering (Switzerland)'),
(53308, 'https://ror.org/00h4bvr24', 'no_lang_code', 1, 'https://ror.org/00h4bvr24 Vinitex Laboratoriuminrichtingen Vinitex Laboratory Systems (Netherlands)'),
(53309, 'https://ror.org/00e9xte80', 'de', 1, 'https://ror.org/00e9xte80 Pro Pferd'),
(53310, 'https://ror.org/05bgpbh03', 'no_lang_code', 1, 'https://ror.org/05bgpbh03 Vita Green Health Products (China) 維特健靈'),
(53311, 'https://ror.org/00518yz61', 'no_lang_code', 1, 'https://ror.org/00518yz61 Straub Medical (Switzerland)'),
(53312, 'https://ror.org/04gbm5d64', 'en', 1, 'https://ror.org/04gbm5d64 Van Vliet Medical Supply'),
(53313, 'https://ror.org/05c87mw19', 'no_lang_code', 1, 'https://ror.org/05c87mw19 Vyome Biosciences (India)'),
(53314, 'https://ror.org/00rp2kf19', 'no_lang_code', 1, 'https://ror.org/00rp2kf19 Willson Band Instruments (Switzerland)'),
(53315, 'https://ror.org/046vvrs54', 'no_lang_code', 1, 'https://ror.org/046vvrs54 Texas Instruments (Netherlands)'),
(53316, 'https://ror.org/011srqz97', 'no_lang_code', 1, 'https://ror.org/011srqz97 Waitaki Biosciences (New Zealand)'),
(53317, 'https://ror.org/01t8cv576', 'no_lang_code', 1, 'https://ror.org/01t8cv576 Dr. Reddy''s Laboratories (Switzerland)'),
(53318, 'https://ror.org/01fhw0y06', 'no_lang_code', 1, 'https://ror.org/01fhw0y06 Abbott (India)'),
(53319, 'https://ror.org/05ynj8239', 'de', 1, 'https://ror.org/05ynj8239 Zentrum für Labormedizin'),
(53320, 'https://ror.org/04k5pc475', 'en', 1, 'https://ror.org/04k5pc475 Schweizerische Stiftung für Edelstein-Forschung Swiss Foundation for the Research of Gemstones'),
(53321, 'https://ror.org/014mtbm52', 'en', 1, 'https://ror.org/014mtbm52 Thommen Medical (Switzerland)'),
(53322, 'https://ror.org/03e2hk535', 'no_lang_code', 1, 'https://ror.org/03e2hk535 PerkinElmer (Netherlands)'),
(53323, 'https://ror.org/02pa5jt63', 'no_lang_code', 1, 'https://ror.org/02pa5jt63 Twente Medical Systems International (Netherlands)'),
(53324, 'https://ror.org/008h3f304', 'no_lang_code', 1, 'https://ror.org/008h3f304 Portmann Instruments (Switzerland)'),
(53325, 'https://ror.org/040wctg56', 'no_lang_code', 1, 'https://ror.org/040wctg56 Allergan (Switzerland)'),
(53326, 'https://ror.org/001qc6h12', 'no_lang_code', 1, 'https://ror.org/001qc6h12 Precisa Gravimetrics (Switzerland)'),
(53327, 'https://ror.org/02wykja76', 'no_lang_code', 1, 'https://ror.org/02wykja76 Theranostics (New Zealand)'),
(53328, 'https://ror.org/044s9c536', 'en', 1, 'https://ror.org/044s9c536 G. M. Reddy Research Foundation'),
(53329, 'https://ror.org/03bb8wr45', 'no_lang_code', 1, 'https://ror.org/03bb8wr45 Natus (New Zealand)'),
(53330, 'https://ror.org/05svfd950', 'en', 1, 'https://ror.org/05svfd950 Regional Research Institute of Unani Medicine'),
(53331, 'https://ror.org/04fg2k993', 'no_lang_code', 1, 'https://ror.org/04fg2k993 Biogen (Switzerland)'),
(53332, 'https://ror.org/02frayk71', 'no_lang_code', 1, 'https://ror.org/02frayk71 PerkinElmer (Ireland)'),
(53333, 'https://ror.org/03pyybh29', 'no_lang_code', 1, 'https://ror.org/03pyybh29 Richcore Lifesciences (India)'),
(53334, 'https://ror.org/02j572e46', 'no_lang_code', 1, 'https://ror.org/02j572e46 Danaher (Ireland)'),
(53335, 'https://ror.org/01jaw9d22', 'no_lang_code', 1, 'https://ror.org/01jaw9d22 Bellus Health (Switzerland)'),
(53336, 'https://ror.org/00wszf981', 'no_lang_code', 1, 'https://ror.org/00wszf981 Combilift (Ireland)'),
(53337, 'https://ror.org/00begqh73', 'no_lang_code', 1, 'https://ror.org/00begqh73 General Electric (New Zealand)'),
(53338, 'https://ror.org/005n1mk70', 'no_lang_code', 1, 'https://ror.org/005n1mk70 Cardinal Health (Switzerland)'),
(53339, 'https://ror.org/01qa0ew63', 'no_lang_code', 1, 'https://ror.org/01qa0ew63 AbbVie (Netherlands)'),
(53340, 'https://ror.org/05jddt560', 'no_lang_code', 1, 'https://ror.org/05jddt560 Cell Medica (Switzerland)'),
(53341, 'https://ror.org/02qh8xh72', 'no_lang_code', 1, 'https://ror.org/02qh8xh72 Dow Chemical (India)'),
(53342, 'https://ror.org/003kp3v47', 'no_lang_code', 1, 'https://ror.org/003kp3v47 Dräger (Netherlands)'),
(53343, 'https://ror.org/00zq01589', 'no_lang_code', 1, 'https://ror.org/00zq01589 Cook Medical (India)'),
(53344, 'https://ror.org/00g7fhp37', 'no_lang_code', 1, 'https://ror.org/00g7fhp37 AbbVie (Ireland)'),
(53345, 'https://ror.org/00cezwy16', 'no_lang_code', 1, 'https://ror.org/00cezwy16 Enzo Life Sciences (Switzerland)'),
(53346, 'https://ror.org/0137xm018', 'no_lang_code', 1, 'https://ror.org/0137xm018 KCI (Ireland)'),
(53347, 'https://ror.org/01f67ew21', 'no_lang_code', 1, 'https://ror.org/01f67ew21 Hendrix Genetics (Netherlands)'),
(53348, 'https://ror.org/053k40h13', 'no_lang_code', 1, 'https://ror.org/053k40h13 Chevron (Netherlands)'),
(53349, 'https://ror.org/01txrxw72', 'no_lang_code', 1, 'https://ror.org/01txrxw72 Sanofi (Switzerland)'),
(53350, 'https://ror.org/03fxrgb29', 'no_lang_code', 1, 'https://ror.org/03fxrgb29 OmniActive Health Technologies (India)'),
(53351, 'https://ror.org/03b4j0710', 'no_lang_code', 1, 'https://ror.org/03b4j0710 National Instruments (Ireland)'),
(53352, 'https://ror.org/00w26fm43', 'no_lang_code', 1, 'https://ror.org/00w26fm43 Prothena (Ireland)'),
(53353, 'https://ror.org/008p7sp64', 'no_lang_code', 1, 'https://ror.org/008p7sp64 Millar (New Zealand)'),
(53354, 'https://ror.org/03h3r1n96', 'no_lang_code', 1, 'https://ror.org/03h3r1n96 Qiagen (Switzerland)'),
(53355, 'https://ror.org/030yesb42', 'no_lang_code', 1, 'https://ror.org/030yesb42 Fresenius Kabi (Netherlands)'),
(53356, 'https://ror.org/017vj1d34', 'no_lang_code', 1, 'https://ror.org/017vj1d34 Barco (Netherlands)'),
(53357, 'https://ror.org/01a097g74', 'no_lang_code', 1, 'https://ror.org/01a097g74 Sigma-Tau (Switzerland)'),
(53358, 'https://ror.org/01t305n31', 'no_lang_code', 1, 'https://ror.org/01t305n31 Texas Instruments (India)'),
(53359, 'https://ror.org/024a53a32', 'no_lang_code', 1, 'https://ror.org/024a53a32 Texas Instruments (Switzerland)'),
(53360, 'https://ror.org/059tq0w82', 'no_lang_code', 1, 'https://ror.org/059tq0w82 Teva Pharmaceuticals (Ireland)'),
(53361, 'https://ror.org/00kqjn528', 'en', 1, 'https://ror.org/00kqjn528 Taiwan Textile Research Institute 紡織產業綜合研究所'),
(53362, 'https://ror.org/01nyg7313', 'en', 1, 'https://ror.org/01nyg7313 Institute of Medicinal Molecular Design 医薬分子設計研究所'),
(53363, 'https://ror.org/056rxsw51', 'en', 1, 'https://ror.org/056rxsw51 Advanced Life Science Institute 先端生命科学研究所'),
(53364, 'https://ror.org/05f5sjj19', 'en', 1, 'https://ror.org/05f5sjj19 Nordic Institute of Asian Studies Nordisk Institut for Asien Studier'),
(53365, 'https://ror.org/04ph02j10', 'en', 1, 'https://ror.org/04ph02j10 Asai Germanium Research Institute 株式会社浅井ゲルマニウム研究所'),
(53366, 'https://ror.org/04cn6h279', 'en', 1, 'https://ror.org/04cn6h279 Japan Institute for Advanced Dentistry 公益社団法人日本歯科先端技術研究所'),
(53367, 'https://ror.org/016en3a39', 'en', 1, 'https://ror.org/016en3a39 IMI TAMI Institute for Research and Development'),
(53368, 'https://ror.org/047qdeh65', 'no_lang_code', 1, 'https://ror.org/047qdeh65 Zetetic Institute'),
(53369, 'https://ror.org/05mv3wa59', 'en', 1, 'https://ror.org/05mv3wa59 Shikoku Research Institute 株式会社四国総合研究所'),
(53370, 'https://ror.org/00xx3t779', 'de', 1, 'https://ror.org/00xx3t779 ITW'),
(53371, 'https://ror.org/02rpxbs81', 'no_lang_code', 1, 'https://ror.org/02rpxbs81 Biotest (United States)'),
(53372, 'https://ror.org/008bxhv54', 'en', 1, 'https://ror.org/008bxhv54 Jilin Zixin Pharmaceutical Industrial 吉林紫鑫药业股份有限公司官方网站'),
(53373, 'https://ror.org/01j9kqj67', 'en', 1, 'https://ror.org/01j9kqj67 Conaris'),
(53374, 'https://ror.org/04kthcs16', 'de', 1, 'https://ror.org/04kthcs16 IFF Weimar Institut für Fertigteiltechnik und Fertigbau Weimar'),
(53375, 'https://ror.org/03zwkpt70', 'no_lang_code', 1, 'https://ror.org/03zwkpt70 Atlas Copco (Switzerland)'),
(53376, 'https://ror.org/00c5kj875', 'no_lang_code', 1, 'https://ror.org/00c5kj875 Stratec (Switzerland)'),
(53377, 'https://ror.org/01y2cgj18', 'no_lang_code', 1, 'https://ror.org/01y2cgj18 D. Western Therapeutics Institute (Japan)'),
(53378, 'https://ror.org/03rkhvv36', 'en', 1, 'https://ror.org/03rkhvv36 Physical and Technical Institute Физико-технический институт'),
(53379, 'https://ror.org/05bnbgj20', 'en', 1, 'https://ror.org/05bnbgj20 Sri Lanka Institute of Nanotechnology'),
(53380, 'https://ror.org/00pfmb678', 'en', 1, 'https://ror.org/00pfmb678 Central Silk Technological Research Institute'),
(53381, 'https://ror.org/01qzj8a75', 'en', 1, 'https://ror.org/01qzj8a75 GlyTech 糖鎖工学研究所に'),
(53382, 'https://ror.org/05qtw9471', 'en', 1, 'https://ror.org/05qtw9471 Life Science Patents'),
(53383, 'https://ror.org/048zg6t55', 'no_lang_code', 1, 'https://ror.org/048zg6t55 Jiangsu Huadong Institute Of Li-Ion Battery'),
(53384, 'https://ror.org/042rxpd62', 'en', 1, 'https://ror.org/042rxpd62 Institute of Rheological Functions of Food レオロジー機能食品研究所'),
(53385, 'https://ror.org/027c7k196', 'en', 1, 'https://ror.org/027c7k196 Changchun Institute of Biological Products 长春生物制品研究所 编辑'),
(53386, 'https://ror.org/05djstx53', 'en', 1, 'https://ror.org/05djstx53 Institute of Applied Physics Институт прикладной физики Национальной академии наук Беларуси'),
(53387, 'https://ror.org/03zzdp409', 'de', 1, 'https://ror.org/03zzdp409 Institut Virion\\Serion'),
(53388, 'https://ror.org/05ykj7f85', 'en', 1, 'https://ror.org/05ykj7f85 Coir Board of India'),
(53389, 'https://ror.org/05rnqd221', 'de', 1, 'https://ror.org/05rnqd221 Institut für Prävention und Nachsorge'),
(53390, 'https://ror.org/0502kph39', 'en', 1, 'https://ror.org/0502kph39 Central Tasar Research & Training Institute'),
(53391, 'https://ror.org/03fthp652', 'en', 1, 'https://ror.org/03fthp652 Institute Of Pesticides Formulation Technology'),
(53392, 'https://ror.org/05tpaf310', 'en', 1, 'https://ror.org/05tpaf310 National Captioning Institute'),
(53393, 'https://ror.org/04hd32h80', 'en', 1, 'https://ror.org/04hd32h80 Illinois Back Institute'),
(53394, 'https://ror.org/04fyz3a12', 'de', 1, 'https://ror.org/04fyz3a12 Institut für Produktqualität'),
(53395, 'https://ror.org/0366pf663', 'en', 1, 'https://ror.org/0366pf663 Japan Institute of Wastewater Engineering Technology 日本下水道新技術機構'),
(53396, 'https://ror.org/01t7qjd50', 'en', 1, 'https://ror.org/01t7qjd50 L.V. Gromashevsky Institute of Epidemiology and Infectious Diseases of the National Academy of Medical Sciences of Ukraine Інститут епідеміології та інфекційних хвороб Л.В. ГромашевсьногоНАМН України'),
(53397, 'https://ror.org/04zdw2m37', 'en', 1, 'https://ror.org/04zdw2m37 All-Russian Scientific and Research Institute for Medical Engineering ВСЕРОССИЙСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ И ИСПЫТАТЕЛЬНЫЙ ИНСТИТУТ МЕДИЦИНСКОЙ ТЕХНИКИ'),
(53398, 'https://ror.org/020jh4z82', 'en', 1, 'https://ror.org/020jh4z82 Research Institute of Synthetic Fiber with the Pilot Plant Научно - исследовательский институт синтетического волокна с экспериментальным заводом'),
(53399, 'https://ror.org/05ee8a898', 'en', 1, 'https://ror.org/05ee8a898 State Titanium Research and Design Institute ГОСУДАРСТВЕННЫЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ И ПРОЕКТНЫЙ ИНСТИТУТ ТИТАНА'),
(53400, 'https://ror.org/03cepne78', 'en', 1, 'https://ror.org/03cepne78 Institute of Engineering Thermophysics Інститут технічної теплофізики НАН України'),
(53401, 'https://ror.org/01s776747', 'de', 1, 'https://ror.org/01s776747 KVB Institut für Konstruktion und Verbundbauweisen'),
(53402, 'https://ror.org/033wye414', 'de', 1, 'https://ror.org/033wye414 Schweißtechnische Lehr- und Versuchsanstalt'),
(53403, 'https://ror.org/02qwqb112', 'en', 1, 'https://ror.org/02qwqb112 Veterinary Diagnostics Institute'),
(53404, 'https://ror.org/050ve4r26', 'en', 1, 'https://ror.org/050ve4r26 Experimental Scientific Research Institute of Forging and Press Engineering Экспериментальный научно-исследовательский институт кузнечно-прессового машиностроения'),
(53405, 'https://ror.org/03kcc6909', 'en', 1, 'https://ror.org/03kcc6909 Experimental Research Institute of Metal-Cutting Machine Tools Научно-исследовательский экспериментальный институт металлорежущих станков'),
(53406, 'https://ror.org/04j4z1522', 'en', 1, 'https://ror.org/04j4z1522 Synthetic Rubber Research Institute named after S. V. Lebedeva НИИ синтетического каучука имени С. В. Лебедева'),
(53407, 'https://ror.org/047kshh42', 'en', 1, 'https://ror.org/047kshh42 East West Medical Research Institute'),
(53408, 'https://ror.org/05km36r23', 'en', 1, 'https://ror.org/05km36r23 Institute of Cytochemistry and Molecular Pharmacology Институт цитохимии и молекулярной фармакологии'),
(53409, 'https://ror.org/02netwe45', 'en', 1, 'https://ror.org/02netwe45 National Institute of Research on Jute and Allied Fibre Technology'),
(53410, 'https://ror.org/01mjy0s49', 'de', 1, 'https://ror.org/01mjy0s49 Friedrich-Wilhelm-Bessel-Institut Forschungsgesellschaft'),
(53411, 'https://ror.org/02c900574', 'en', 1, 'https://ror.org/02c900574 Powder Metallurgy Institute ИНСТИТУТ ПОРОШКОВОЙ МЕТАЛЛУРГИИ'),
(53412, 'https://ror.org/0113xva09', 'en', 1, 'https://ror.org/0113xva09 Federal Agency for Legal Protection of Military Results, Special and Dual Purpose Федеральное агентство по правовой защите результатов интеллектуальной деятельности военного'),
(53413, 'https://ror.org/04sgvk352', 'en', 1, 'https://ror.org/04sgvk352 Centro de Salud Miguel de Cervantes Miguel de Cervantes Health Care Centre'),
(53414, 'https://ror.org/048f4bh03', 'de', 1, 'https://ror.org/048f4bh03 Institut für Automatisierung und Informatik'),
(53415, 'https://ror.org/05p87d983', 'en', 1, 'https://ror.org/05p87d983 Institute of Medical Polymers'),
(53416, 'https://ror.org/0037rj917', 'en', 1, 'https://ror.org/0037rj917 Institute of Mechanics of Metal-Polymer Systems Институт механики металлополимерных систем им. В.А. Белого'),
(53417, 'https://ror.org/04m7pe955', 'en', 1, 'https://ror.org/04m7pe955 Carter BloodCare'),
(53418, 'https://ror.org/01mfhw447', 'en', 1, 'https://ror.org/01mfhw447 1Globe Health Institute');
INSERT INTO `rors` VALUES
(53419, 'https://ror.org/05dv4bz40', 'en', 1, 'https://ror.org/05dv4bz40 Institutul Naţional de Cercetare-Dezvoltare pentru Fizică Tehnică National Institute of Research and Development for Technical Physics'),
(53420, 'https://ror.org/01tm2qj70', 'en', 1, 'https://ror.org/01tm2qj70 St. Petersburg Institute of Bioregulation and Gerontology КЛИНИКА ИНСТИТУТА БИОРЕГУЛЯЦИИ И ГЕРОНТОЛОГИИ'),
(53421, 'https://ror.org/02zfe9916', 'en', 1, 'https://ror.org/02zfe9916 Gujarat Matikam Kalakari & Rural Technology Institute'),
(53422, 'https://ror.org/040f2sb18', 'en', 1, 'https://ror.org/040f2sb18 Walker Cancer Research Institute'),
(53423, 'https://ror.org/05mv7cd65', 'en', 1, 'https://ror.org/05mv7cd65 Russian State Archive of Scientific and Technical Documentation Научно-исследовательский и экспериментальный институт автомобильного электрооборудования и автоприборов'),
(53424, 'https://ror.org/00vsw8h69', 'en', 1, 'https://ror.org/00vsw8h69 MED Institute'),
(53425, 'https://ror.org/05jcbzw72', 'en', 1, 'https://ror.org/05jcbzw72 Scientific Research Institute of the Cable Industry был создан Научно-исследовательский институт кабельной промышленности'),
(53426, 'https://ror.org/01q61bm94', 'en', 1, 'https://ror.org/01q61bm94 Korea Institute of Maritime and Fisheries Technology'),
(53427, 'https://ror.org/00588h422', 'en', 1, 'https://ror.org/00588h422 Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry ԳԱԱ Օրգանական և դեղագործական քիմիայի գիտատեխնոլոգիական կենտրոն'),
(53428, 'https://ror.org/02p481x03', 'de', 1, 'https://ror.org/02p481x03 Institut für Bioanalytik, Umwelt-Toxikologie und Biotechnologie Halle'),
(53429, 'https://ror.org/02747fj94', 'de', 1, 'https://ror.org/02747fj94 Günter-Köhler-Institut für Fügetechnik und Werkstoffprüfung'),
(53430, 'https://ror.org/03yqdp771', 'en', 1, 'https://ror.org/03yqdp771 Institut für Implantattechnologie und Biomaterialien Institute for ImplantTechnology and Biomaterials'),
(53431, 'https://ror.org/05ses5w88', 'de', 1, 'https://ror.org/05ses5w88 Institut für Lacke und Farben'),
(53432, 'https://ror.org/03szrx391', 'en', 1, 'https://ror.org/03szrx391 Agladze Inorganic Chemistry and Electrochemistry რ.აგლაძის არაორგანული ქიმიისა'),
(53433, 'https://ror.org/038d53f16', 'en', 1, 'https://ror.org/038d53f16 Agricultural Genetic Engineering Research Institute'),
(53434, 'https://ror.org/050rr3m98', 'en', 1, 'https://ror.org/050rr3m98 Institute for Radiological Image Sciences'),
(53435, 'https://ror.org/01ax0ps79', 'en', 1, 'https://ror.org/01ax0ps79 Agricultural Technology Research Institute'),
(53436, 'https://ror.org/00sc3t321', 'en', 1, 'https://ror.org/00sc3t321 Korea Automotive Technology Institute 한국 자동차 기술 연구원'),
(53437, 'https://ror.org/044qz6d20', 'en', 1, 'https://ror.org/044qz6d20 Institute of Geotechnics and Engineering Survey in Construction Институт геотехники и инженерных изысканий в строительстве'),
(53438, 'https://ror.org/05ha3xf54', 'en', 1, 'https://ror.org/05ha3xf54 Korea Institute of Atmospheric Prediction Systems 한국 대기 예측 시스템 학회'),
(53439, 'https://ror.org/00v019t60', 'en', 1, 'https://ror.org/00v019t60 Korea Institute of Robot and Convergence 한국로봇융합연구원'),
(53440, 'https://ror.org/01wha1936', 'en', 1, 'https://ror.org/01wha1936 Austen BioInnovation Institute in Akron'),
(53441, 'https://ror.org/056f7w112', 'en', 1, 'https://ror.org/056f7w112 West Health'),
(53442, 'https://ror.org/022mx4d10', 'en', 1, 'https://ror.org/022mx4d10 Korea Photonics Technology Institute'),
(53443, 'https://ror.org/00prhpp43', 'en', 1, 'https://ror.org/00prhpp43 Bangladesh Jute Research Institute বাংলাদেশ পাট গবেষণা ইনস্টিটিউট'),
(53444, 'https://ror.org/02zhkt134', 'en', 1, 'https://ror.org/02zhkt134 Krylov State Research Center Государственный научно-исследовательский центр им.'),
(53445, 'https://ror.org/03rbc9d50', 'en', 1, 'https://ror.org/03rbc9d50 Beijing Research Institute of Automation for Machinery Industry (China) 北京机械工业自动化研究所软件工程研究中心'),
(53446, 'https://ror.org/012z62f48', 'en', 1, 'https://ror.org/012z62f48 China Academy of Launch Vehicle Technology 中国运载火箭技术研究院'),
(53447, 'https://ror.org/0396taz57', 'en', 1, 'https://ror.org/0396taz57 Kyoto Municipal Institute of Industrial Technology and Culture 京都市立芸術工科大学工業技術文化研究所'),
(53448, 'https://ror.org/05582qg24', 'no_lang_code', 1, 'https://ror.org/05582qg24 Medical Prognosis Institute (Denmark)'),
(53449, 'https://ror.org/02m6rz291', 'no_lang_code', 1, 'https://ror.org/02m6rz291 CHA Vaccine Institute (South Korea)'),
(53450, 'https://ror.org/04afcm768', 'en', 1, 'https://ror.org/04afcm768 Mediteranski institut za istraživanje života Mediterranean Institute for Life Sciences'),
(53451, 'https://ror.org/03a6ejk87', 'no_lang_code', 1, 'https://ror.org/03a6ejk87 CIS Pharma (Switzerland)'),
(53452, 'https://ror.org/03j99w497', 'en', 1, 'https://ror.org/03j99w497 Mercy Research'),
(53453, 'https://ror.org/01s0yrf11', 'en', 1, 'https://ror.org/01s0yrf11 Cheorwon Plasma Research Institute'),
(53454, 'https://ror.org/01kk11s67', 'no_lang_code', 1, 'https://ror.org/01kk11s67 Fosun Pharma (China)'),
(53455, 'https://ror.org/05axc5t79', 'no_lang_code', 1, 'https://ror.org/05axc5t79 MR&D (Italy)'),
(53456, 'https://ror.org/044gm0487', 'no_lang_code', 1, 'https://ror.org/044gm0487 China Ocean Shipping (China) 中国远洋运输'),
(53457, 'https://ror.org/05m0z0h30', 'en', 1, 'https://ror.org/05m0z0h30 Nano and Advanced Materials Institute'),
(53458, 'https://ror.org/021r10935', 'en', 1, 'https://ror.org/021r10935 National Disaster Management Research Institute 전국 재난 관리 연구소'),
(53459, 'https://ror.org/01jq52c81', 'no_lang_code', 1, 'https://ror.org/01jq52c81 ECO Environmental Investments (China)'),
(53460, 'https://ror.org/015pn9s62', 'es', 1, 'https://ror.org/015pn9s62 Instituto Químico Biológico'),
(53461, 'https://ror.org/04kdzp623', 'no_lang_code', 1, 'https://ror.org/04kdzp623 Buhmwoo Institute of Technology Research (South Korea)'),
(53462, 'https://ror.org/05j2csz34', 'pt', 1, 'https://ror.org/05j2csz34 Institutos Lacte Institutos Lactec'),
(53463, 'https://ror.org/00cn0kw78', 'no_lang_code', 1, 'https://ror.org/00cn0kw78 Anhui Conch Design and Research Institute of Building Materials (China)'),
(53464, 'https://ror.org/01f4k3b46', 'en', 1, 'https://ror.org/01f4k3b46 China Electronic Product Reliability and Environmental Test Institute 工业和信息化部第五电子研究所'),
(53465, 'https://ror.org/02mkwcf87', 'id', 1, 'https://ror.org/02mkwcf87 Badan Penelitian dan Pengembangan Kesehatan'),
(53466, 'https://ror.org/008r0bg49', 'en', 1, 'https://ror.org/008r0bg49 Footwear & Recreation Technology Research Institute'),
(53467, 'https://ror.org/017y22r40', 'en', 1, 'https://ror.org/017y22r40 Fujian Metrology Institute'),
(53468, 'https://ror.org/003148c04', 'de', 1, 'https://ror.org/003148c04 Textile Research Institute Thuringia-Vogtland Textilforschungsinstitut Thüringen-Vogtland'),
(53469, 'https://ror.org/04t01vf56', 'en', 1, 'https://ror.org/04t01vf56 Gaia Medical Institute'),
(53470, 'https://ror.org/02r3xd587', 'en', 1, 'https://ror.org/02r3xd587 Central Research Institute of Geological Prospecting for Base and Precious Metals'),
(53471, 'https://ror.org/02kx4r613', 'en', 1, 'https://ror.org/02kx4r613 Girvan Institute of Technology'),
(53472, 'https://ror.org/001rkbe13', 'en', 1, 'https://ror.org/001rkbe13 National Institute of Biomedical Innovation, Health and Nutrition 国立研究開発法人 医薬基盤 健康 栄養研究所'),
(53473, 'https://ror.org/05ra3zm12', 'en', 1, 'https://ror.org/05ra3zm12 Gulf South Research Corporation'),
(53474, 'https://ror.org/00p3ce068', 'en', 1, 'https://ror.org/00p3ce068 KIST Europe'),
(53475, 'https://ror.org/04f31ek03', 'en', 1, 'https://ror.org/04f31ek03 National Taiwan Craft Research and Development Institute 国立台湾工艺研究发展研究所'),
(53476, 'https://ror.org/00k0vt064', 'en', 1, 'https://ror.org/00k0vt064 Research and Design Institute of Urea and Organic Synthesis Products Открытое Акционирское Общество. Исследование. И проектный институт мочевины и органического синтеза'),
(53477, 'https://ror.org/01xkgje29', 'en', 1, 'https://ror.org/01xkgje29 Helmholtz Moscow Research Institute of Eye Diseases Московский научно-исследовательский институт глазных болезней им. Гельмгольца'),
(53478, 'https://ror.org/0242ces81', 'en', 1, 'https://ror.org/0242ces81 Power Tool Institute'),
(53479, 'https://ror.org/05jjkgv58', 'en', 1, 'https://ror.org/05jjkgv58 High Pressure Gas Safety Institute of Japan 高圧力ガス安全研究センター'),
(53480, 'https://ror.org/03y740t04', 'en', 1, 'https://ror.org/03y740t04 Hisayama Research Institute For Lifestyle Diseases ヒサヤマライフスタイル研究所'),
(53481, 'https://ror.org/05c18y737', 'no_lang_code', 1, 'https://ror.org/05c18y737 Prous Institute for Biomedical Research (Spain)'),
(53482, 'https://ror.org/04srvct20', 'en', 1, 'https://ror.org/04srvct20 Ophthalmos Eye Research & Therapeutic Institute'),
(53483, 'https://ror.org/04q7nkm38', 'en', 1, 'https://ror.org/04q7nkm38 Institute for Independent Studies Zürich'),
(53484, 'https://ror.org/0486zbr69', 'en', 1, 'https://ror.org/0486zbr69 Saika Technological Institute Foundation 一般財団法人 雑賀技術研究所'),
(53485, 'https://ror.org/024pgf395', 'en', 1, 'https://ror.org/024pgf395 Civilisations Matter'),
(53486, 'https://ror.org/05ne9z340', 'no_lang_code', 1, 'https://ror.org/05ne9z340 Foerster (Germany)'),
(53487, 'https://ror.org/032nv5f98', 'en', 1, 'https://ror.org/032nv5f98 ChildCare Education Institute'),
(53488, 'https://ror.org/02m5hv882', 'no_lang_code', 1, 'https://ror.org/02m5hv882 Saline Water Conversion Corporation'),
(53489, 'https://ror.org/01rejfk89', 'en', 1, 'https://ror.org/01rejfk89 Institute for Biotechnology and Medicine Industry'),
(53490, 'https://ror.org/009n12s59', 'en', 1, 'https://ror.org/009n12s59 Institute for Sustainable Communication'),
(53491, 'https://ror.org/02wg70j58', 'en', 1, 'https://ror.org/02wg70j58 Scientific Research Institute of Goznak Научно-исследовательский институт Гознака'),
(53492, 'https://ror.org/03kr7zn98', 'no_lang_code', 1, 'https://ror.org/03kr7zn98 Systena (Japan)'),
(53493, 'https://ror.org/007f41232', 'en', 1, 'https://ror.org/007f41232 Scripps Korea Antibody Institute 스크립스코리아항체연구원'),
(53494, 'https://ror.org/05bsp2531', 'en', 1, 'https://ror.org/05bsp2531 Elektronikas un datorzinātņu institūts Institute of Electronics and Computer Science'),
(53495, 'https://ror.org/02gfxpt49', 'en', 1, 'https://ror.org/02gfxpt49 Seasteading Institute'),
(53496, 'https://ror.org/05tywyy79', 'no_lang_code', 1, 'https://ror.org/05tywyy79 Gazprom (Russia) Публичное Акционерное Общество Газпром'),
(53497, 'https://ror.org/04jc7qd72', 'en', 1, 'https://ror.org/04jc7qd72 Serum IVF'),
(53498, 'https://ror.org/038z7hb11', 'en', 1, 'https://ror.org/038z7hb11 Institute of Laboratory Animal Science'),
(53499, 'https://ror.org/03q7xbe07', 'en', 1, 'https://ror.org/03q7xbe07 Shanghai Chemical Reagent Research Institute'),
(53500, 'https://ror.org/03ttbtn09', 'no_lang_code', 1, 'https://ror.org/03ttbtn09 Institute of Musculoskeletal Science & Education (United States)'),
(53501, 'https://ror.org/03t46vz87', 'en', 1, 'https://ror.org/03t46vz87 Institute of Orthopedic Research and Education'),
(53502, 'https://ror.org/016dg3e07', 'no_lang_code', 1, 'https://ror.org/016dg3e07 International Drug Development Institute (Belgium)'),
(53503, 'https://ror.org/05hzgh473', 'no_lang_code', 1, 'https://ror.org/05hzgh473 Institute of Super Compression Technologies (Japan)'),
(53504, 'https://ror.org/04m8jz025', 'en', 1, 'https://ror.org/04m8jz025 South African Sugar Association'),
(53505, 'https://ror.org/04znf4t37', 'en', 1, 'https://ror.org/04znf4t37 Orthodontic World Institute'),
(53506, 'https://ror.org/00vrtwn56', 'en', 1, 'https://ror.org/00vrtwn56 Azerbaijan Scientific-Research & Design-Prospecting Power Engineering Institute Azərbaycan Elmi–Tədqiqat və Layihə Axtarış Energetika İnstitutu'),
(53507, 'https://ror.org/02ytgbr67', 'no_lang_code', 1, 'https://ror.org/02ytgbr67 Sports Turf Research Institute (United Kingdom)'),
(53508, 'https://ror.org/01x4t9w70', 'no_lang_code', 1, 'https://ror.org/01x4t9w70 Institute Po Zavaryavane (Bulgaria) Институт по заваряване'),
(53509, 'https://ror.org/04g5kkh98', 'no_lang_code', 1, 'https://ror.org/04g5kkh98 Stelic Institute (Japan)'),
(53510, 'https://ror.org/04t8pft48', 'no_lang_code', 1, 'https://ror.org/04t8pft48 Nanopolis Suzhou (China) 苏州纳米科技发展有限公司'),
(53511, 'https://ror.org/026frww69', 'en', 1, 'https://ror.org/026frww69 Research Institute of Mine Rescue НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ГОРНОСПАСАТЕЛЬНОГО ДЕЛА'),
(53512, 'https://ror.org/018yv7m63', 'sv', 1, 'https://ror.org/018yv7m63 Svenska Örtmedicinska Institute'),
(53513, 'https://ror.org/03vvxhb60', 'en', 1, 'https://ror.org/03vvxhb60 Tianjin Municipal Research Institute for Family Planning 天津市计划生育研究所'),
(53514, 'https://ror.org/038h7ww88', 'en', 1, 'https://ror.org/038h7ww88 Taiwan Agricultural Chemicals and Toxic Substances Research Institute'),
(53515, 'https://ror.org/024n1jd19', 'en', 1, 'https://ror.org/024n1jd19 Eastern Mining-and-Metallurgical Research Institute for Nonferrous Metals Восточный научно-исследовательский горно-металлургический институт цветных металлов [править | править вики-текст]'),
(53516, 'https://ror.org/0095dm157', 'no_lang_code', 1, 'https://ror.org/0095dm157 Tsumura Research Institute (Japan) 津村総合研究所'),
(53517, 'https://ror.org/05reezh07', 'no_lang_code', 1, 'https://ror.org/05reezh07 Nauchno-issledovatelskiy Institut Tekhnologii Avtomobilnoy Promyshlennosti Научно-исследовательский институт технологии автомобильной промышленности'),
(53518, 'https://ror.org/02kq0w941', 'en', 1, 'https://ror.org/02kq0w941 All-Russian Scientific Research Institute of metallurgical heat Всероссийский научно-исследовательский институт металлургической теплотехники'),
(53519, 'https://ror.org/00662k397', 'en', 1, 'https://ror.org/00662k397 Scientific-Research Institute of Electric Power Transmission НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ПОСТОЯННОГО ТОКА'),
(53520, 'https://ror.org/05sczh171', 'en', 1, 'https://ror.org/05sczh171 Institute for Problems of Cryobiology and Cryomedicine ІНСТИТУТ ПРОБЛЕМ КРІОБІОЛОГІЇ І КРІОМЕДИЦИНИ НАЦІОНАЛЬНОЇ АКАДЕМІЇ НАУК УКРАЇНИ'),
(53521, 'https://ror.org/04zp2d344', 'de', 1, 'https://ror.org/04zp2d344 Sächsisches Institut für die Druckindustrie'),
(53522, 'https://ror.org/03c39xh37', 'en', 1, 'https://ror.org/03c39xh37 Institute for applied Biology and Landscape Planning nstitut für angewandte Biologie und Landschaftsplanung'),
(53523, 'https://ror.org/04vh5z648', 'en', 1, 'https://ror.org/04vh5z648 Center for Interdisciplinary Studies of Molecular Interactions'),
(53524, 'https://ror.org/02719dy55', 'en', 1, 'https://ror.org/02719dy55 All-Russian Scientific Research Institute of Fats Всероссийский научно-исследовательский институт жиров'),
(53525, 'https://ror.org/02fpe5k66', 'en', 1, 'https://ror.org/02fpe5k66 British Institute of Technology and E-commerce'),
(53526, 'https://ror.org/05axzm004', 'en', 1, 'https://ror.org/05axzm004 Acquisition, Technology & Logistics Agency 防衛装備庁'),
(53527, 'https://ror.org/0409fn624', 'en', 1, 'https://ror.org/0409fn624 Mammendorf Insitute for Physics and Medicine Mammendorfer Institut für Physik und Medizin'),
(53528, 'https://ror.org/04904ph59', 'en', 1, 'https://ror.org/04904ph59 Cаксонский институт прикладной биотехнологии Instituto Sajón de Biotecnología Aplicada anexo Saxon Institute for Applied Biotechnology Sächsisches Institut für Angewandte Biotechnologie'),
(53529, 'https://ror.org/03zpshp42', 'en', 1, 'https://ror.org/03zpshp42 Rostov Research Institute of Oncology Ростовский научно-исследовательский онкологический институт'),
(53530, 'https://ror.org/04s3f1024', 'de', 1, 'https://ror.org/04s3f1024 Staatliches Weinbauinstitut Freiburg'),
(53531, 'https://ror.org/04ayj6s32', 'en', 1, 'https://ror.org/04ayj6s32 Scientific Research Institute of Technical Physics and Automation'),
(53532, 'https://ror.org/05tw6nm64', 'en', 1, 'https://ror.org/05tw6nm64 American Institute of Taxidermy'),
(53533, 'https://ror.org/00zrb8z36', 'en', 1, 'https://ror.org/00zrb8z36 Institute of the Meat and Dairy Industry'),
(53534, 'https://ror.org/035tqry63', 'de', 1, 'https://ror.org/035tqry63 AWA-Institut'),
(53535, 'https://ror.org/05e6y9g54', 'en', 1, 'https://ror.org/05e6y9g54 Vostochniy Research Institute for Mining Safety Научный центр ВостНИИ по безопасности работ в горной промышленности'),
(53536, 'https://ror.org/007cmf111', 'en', 1, 'https://ror.org/007cmf111 Eastern Research Institute of Coal Chemistry Восточный научно-исследовательский углехимический институт'),
(53537, 'https://ror.org/04t21k589', 'no_lang_code', 1, 'https://ror.org/04t21k589 Nexira (France)'),
(53538, 'https://ror.org/02zfj1j12', 'en', 1, 'https://ror.org/02zfj1j12 Australian Export Grains Innovation Centre'),
(53539, 'https://ror.org/03wpt5182', 'en', 1, 'https://ror.org/03wpt5182 All-Russian Scientific Research Institute of Viticulture and Winemaking behalf of JI Potapenko Всероссийский научно-исследовательский институт виноградарства и виноделия имени Я.И. Потапенко'),
(53540, 'https://ror.org/01dyffq73', 'en', 1, 'https://ror.org/01dyffq73 Burzynski Research Institute'),
(53541, 'https://ror.org/00w3cd056', 'en', 1, 'https://ror.org/00w3cd056 California Institute of Computer-Assisted Surgery'),
(53542, 'https://ror.org/03sxe4z39', 'en', 1, 'https://ror.org/03sxe4z39 Institute of Electronic Control Machines'),
(53543, 'https://ror.org/02dkph265', 'en', 1, 'https://ror.org/02dkph265 Russian State Scientific Center for Robotics and Technical Cybernetics ЦНИИ робототехники и технической кибернетики'),
(53544, 'https://ror.org/04xqmah83', 'en', 1, 'https://ror.org/04xqmah83 Scientific Research Institute of Steel НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ СТАЛИ'),
(53545, 'https://ror.org/048h6zc16', 'en', 1, 'https://ror.org/048h6zc16 Research Institute of Chemicals for Polymeric Materials'),
(53546, 'https://ror.org/0422tyr14', 'en', 1, 'https://ror.org/0422tyr14 Federal State Scientific Institution Research Institute of Eye Diseases Федеральное государственное бюджетное научное учреждение «Научно-исследовательский институт глазных болезней'),
(53547, 'https://ror.org/0136wrs55', 'en', 1, 'https://ror.org/0136wrs55 Scientific Research and Design Institute of Technology Equipment Refining and Petrochemical Industries ВСЕРОССИЙСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ И КОНСТРУКТОРСКО-ТЕХНОЛОГИЧЕСКИЙ ИНСТИТУТ ОБОРУДОВАНИЯ НЕФТЕПЕРЕРАБАТЫВАЮЩЕЙ И НЕФТЕХИМИЧЕСКОЙ ПРОМЫШЛЕННОСТИ'),
(53548, 'https://ror.org/02knn1508', 'en', 1, 'https://ror.org/02knn1508 Research and Technological Institute of Biological Industry научно-исследовательский и технологический институт биологической промышленности'),
(53549, 'https://ror.org/01j65xt21', 'en', 1, 'https://ror.org/01j65xt21 Rain Forest Research Institute'),
(53550, 'https://ror.org/04grwn689', 'en', 1, 'https://ror.org/04grwn689 Ufa Eye Research Institute'),
(53551, 'https://ror.org/00wjnd087', 'en', 1, 'https://ror.org/00wjnd087 Hari Shankar Singhania Elastomer And Tyre Research Institute'),
(53552, 'https://ror.org/02131zb90', 'en', 1, 'https://ror.org/02131zb90 The Research Institute for Fertilizers and Insectofungicides Институт удобрений и инсектофунгицидов имени Я. В. Самойлова'),
(53553, 'https://ror.org/01yeyd808', 'en', 1, 'https://ror.org/01yeyd808 Life Science Institute'),
(53554, 'https://ror.org/053bhme26', 'en', 1, 'https://ror.org/053bhme26 Technological Design Institute of Scientific Instrument Engineering'),
(53555, 'https://ror.org/049yqqs33', 'en', 1, 'https://ror.org/049yqqs33 Heidelberg Institute for Stem Cell Technology and Experimental Medicine'),
(53556, 'https://ror.org/02bjrgr44', 'en', 1, 'https://ror.org/02bjrgr44 Scientific Research Institute of the Rubber Industry Научно-исследовательский институт резиновой промышленности'),
(53557, 'https://ror.org/02ty8xh41', 'en', 1, 'https://ror.org/02ty8xh41 Himalayan Institute of Yoga Science and Philosophy'),
(53558, 'https://ror.org/035svbv36', 'en', 1, 'https://ror.org/035svbv36 Juntendo University Shizuoka Hospital 順天堂大学医学部附属静岡病院'),
(53559, 'https://ror.org/05g1hyz84', 'en', 1, 'https://ror.org/05g1hyz84 Juntendo University Nerima Hospital 順天堂大学医学部附属練馬病院'),
(53560, 'https://ror.org/03gxkq182', 'en', 1, 'https://ror.org/03gxkq182 Juntendo University Urayasu Hospital 順天堂大学医学部附属浦安病院'),
(53561, 'https://ror.org/02wp0er57', 'en', 1, 'https://ror.org/02wp0er57 Royal Jubilee Maternity Services'),
(53562, 'https://ror.org/05gyj2g50', 'en', 1, 'https://ror.org/05gyj2g50 Royal Victoria Hospital'),
(53563, 'https://ror.org/02tw69288', 'en', 1, 'https://ror.org/02tw69288 Mohawk Valley Psychiatric Center'),
(53564, 'https://ror.org/047s4cx41', 'en', 1, 'https://ror.org/047s4cx41 Pilgrim Psychiatric Center'),
(53565, 'https://ror.org/02yn1ge31', 'en', 1, 'https://ror.org/02yn1ge31 Carilion Roanoke Community Hospital'),
(53566, 'https://ror.org/02cm3s998', 'de', 1, 'https://ror.org/02cm3s998 Donauspital'),
(53567, 'https://ror.org/052rvpm80', 'en', 1, 'https://ror.org/052rvpm80 Chattahoochee Valley Community College'),
(53568, 'https://ror.org/03p504z95', 'no_lang_code', 1, 'https://ror.org/03p504z95 Rosogneupor (Russia) Росогнеупор'),
(53569, 'https://ror.org/04qr72260', 'no_lang_code', 1, 'https://ror.org/04qr72260 Gateway Group (India)'),
(53570, 'https://ror.org/01nn1pw54', 'no_lang_code', 1, 'https://ror.org/01nn1pw54 Addgene'),
(53571, 'https://ror.org/006cer819', 'en', 1, 'https://ror.org/006cer819 Developmental Studies Hybridoma Bank'),
(53572, 'https://ror.org/01920rj20', 'en', 1, 'https://ror.org/01920rj20 Roslin Institute'),
(53573, 'https://ror.org/00fyrp007', 'en', 1, 'https://ror.org/00fyrp007 NeuroMab'),
(53574, 'https://ror.org/026dax180', 'en', 1, 'https://ror.org/026dax180 NIMH Repository and Genomics Resource'),
(53575, 'https://ror.org/05b50ej63', 'es', 1, 'https://ror.org/05b50ej63 Instituto de Investigaciones Biológicas Clemente Estable'),
(53576, 'https://ror.org/02x909r11', 'no_lang_code', 1, 'https://ror.org/02x909r11 Fonterra (United States)'),
(53577, 'https://ror.org/02cbc9x18', 'en', 1, 'https://ror.org/02cbc9x18 Ural Institute of Metals'),
(53578, 'https://ror.org/051bwap89', 'en', 1, 'https://ror.org/051bwap89 Institute for Information Recording Інститут проблем реєстрації інформації НАН України'),
(53579, 'https://ror.org/01tx9js75', 'en', 1, 'https://ror.org/01tx9js75 Groundwater Center Grundwasser-Zentrum'),
(53580, 'https://ror.org/028m4pg81', 'en', 1, 'https://ror.org/028m4pg81 Kazakh Scientific Research Veterinary Institute'),
(53581, 'https://ror.org/035qjq024', 'no_lang_code', 1, 'https://ror.org/035qjq024 Niip Gradostroitelstva Научно-исследовательский и проектный институт по разработке генеральных планов и проектов застройки городов'),
(53582, 'https://ror.org/04yaz0z51', 'it', 1, 'https://ror.org/04yaz0z51 Ospedale San Raffaele Arcangelo'),
(53583, 'https://ror.org/00g7hs466', 'en', 1, 'https://ror.org/00g7hs466 Hyaluronan Research Institute 株式会社 ヒアルロン酸研究所'),
(53584, 'https://ror.org/02k7w8856', 'de', 1, 'https://ror.org/02k7w8856 Keramikinstitut'),
(53585, 'https://ror.org/04dvapm76', 'no_lang_code', 1, 'https://ror.org/04dvapm76 Canfield Scientific (United States)'),
(53586, 'https://ror.org/05j242h88', 'fr', 1, 'https://ror.org/05j242h88 Réseau de Santé Vitalité Vitalité Health Network'),
(53587, 'https://ror.org/035k7f515', 'en', 1, 'https://ror.org/035k7f515 Shandong Food Fermentation Industry Research and Design Institute 山东省食品发酵工业研究设计院'),
(53588, 'https://ror.org/01tk0cw08', 'en', 1, 'https://ror.org/01tk0cw08 Central Research Institute for Jute and Allied Fibres'),
(53589, 'https://ror.org/005zvr630', 'de', 1, 'https://ror.org/005zvr630 Forschungsinstitut für Anorganische Werkstoffe -Glas/Keramik'),
(53590, 'https://ror.org/01gv18538', 'en', 1, 'https://ror.org/01gv18538 Institute of Formulation, Analysis and Quality Control Research'),
(53591, 'https://ror.org/04we3tx21', 'en', 1, 'https://ror.org/04we3tx21 Institute of Geology of the Karelian Research Center Институт геологии КарНЦ РАН'),
(53592, 'https://ror.org/03hcbtk03', 'en', 1, 'https://ror.org/03hcbtk03 Institut Dr Schrader Creachem'),
(53593, 'https://ror.org/04fv3z273', 'en', 1, 'https://ror.org/04fv3z273 Research Institute of Natural and Synthetic Diamonds'),
(53594, 'https://ror.org/00jwvkg84', 'en', 1, 'https://ror.org/00jwvkg84 Physics and Technology Institute of Metals and Alloys Физико-технологический институт металлов и сплавов'),
(53595, 'https://ror.org/052kzcg37', 'en', 1, 'https://ror.org/052kzcg37 Indian Plywood Industries Research and Training Institute'),
(53596, 'https://ror.org/00b8nfj92', 'en', 1, 'https://ror.org/00b8nfj92 Jangheung Mushroom Industry Research 장흥군버섯산업연구원'),
(53597, 'https://ror.org/024h27x67', 'en', 1, 'https://ror.org/024h27x67 Institutul National De Cercetare Dezvoltare Chimico Farmaceutica National Institute For Chemical Pharmaceutical Research and Development'),
(53598, 'https://ror.org/05rd7y749', 'en', 1, 'https://ror.org/05rd7y749 Seamester'),
(53599, 'https://ror.org/01r0w2t07', 'de', 1, 'https://ror.org/01r0w2t07 Mandat International'),
(53600, 'https://ror.org/05ssa1185', 'en', 1, 'https://ror.org/05ssa1185 State Scientific Production Association of Industrial Ecology'),
(53601, 'https://ror.org/01jvhre18', 'en', 1, 'https://ror.org/01jvhre18 IndraStra Global'),
(53602, 'https://ror.org/03tg26f52', 'en', 1, 'https://ror.org/03tg26f52 Bansal Institute Of Research Technology & Science'),
(53603, 'https://ror.org/021a66733', 'en', 1, 'https://ror.org/021a66733 Institute for Rural Engineering 農村工学研究部門'),
(53604, 'https://ror.org/01v0srp85', 'en', 1, 'https://ror.org/01v0srp85 Tropical Forest Research Institute'),
(53605, 'https://ror.org/03qvjzj64', 'en', 1, 'https://ror.org/03qvjzj64 St. John''s National Academy of Health Sciences'),
(53606, 'https://ror.org/00280kv44', 'no_lang_code', 1, 'https://ror.org/00280kv44 Micromun'),
(53607, 'https://ror.org/00hwty226', 'en', 1, 'https://ror.org/00hwty226 Xiamen Institute of Rare-earth Materials 中国科学院海西研究院厦门稀土材料研究所'),
(53608, 'https://ror.org/05n0b7q40', 'en', 1, 'https://ror.org/05n0b7q40 Geological Exploration Institute of Shandong Zhengyuan 山东正元地质勘查院'),
(53609, 'https://ror.org/04f0ydx59', 'en', 1, 'https://ror.org/04f0ydx59 Bioengineering Center Биоинженерия'),
(53610, 'https://ror.org/04s5ej408', 'en', 1, 'https://ror.org/04s5ej408 Kitasato University East Hospital 北里大学東病院'),
(53611, 'https://ror.org/040w2dm02', 'en', 1, 'https://ror.org/040w2dm02 Interuniversity Institute for High Energies'),
(53612, 'https://ror.org/05pcmd548', 'en', 1, 'https://ror.org/05pcmd548 Institute of Chemistry of Silicates named after I.V. Grebenshchikov Институт химии силикатов имени И. В. Гребенщикова РАН'),
(53613, 'https://ror.org/02jv3yx22', 'en', 1, 'https://ror.org/02jv3yx22 G.V. Karpenko Physical-Mechanical Institute ФІЗИКО-МЕХАНІЧНИЙ ІНСТИТУТ ІМ. Г.В. КАРПЕНКА НAH УКРАЇНИ'),
(53614, 'https://ror.org/02890ms09', 'en', 1, 'https://ror.org/02890ms09 Kyushu Okinawa Agricultural Research Center 九州沖縄農業研究センター'),
(53615, 'https://ror.org/03hvvks39', 'en', 1, 'https://ror.org/03hvvks39 Institute for Polymer Mechanics'),
(53616, 'https://ror.org/040nrzc79', 'no_lang_code', 1, 'https://ror.org/040nrzc79 R.T. Vanderbilt Holding (United States)'),
(53617, 'https://ror.org/03xswyc88', 'en', 1, 'https://ror.org/03xswyc88 Reproductive Medicine Associates of New York'),
(53618, 'https://ror.org/00j681549', 'no_lang_code', 1, 'https://ror.org/00j681549 Sofradir (France)'),
(53619, 'https://ror.org/0193emr15', 'en', 1, 'https://ror.org/0193emr15 ASI Consulting Group (United States)'),
(53620, 'https://ror.org/03s2vt470', 'en', 1, 'https://ror.org/03s2vt470 BMJ Careers'),
(53621, 'https://ror.org/015y4fr56', 'en', 1, 'https://ror.org/015y4fr56 Institute of Paleontology A A Borisyak Палеонтологический институт имени А. А. Борисяка РАН [править | править вики-текст]'),
(53622, 'https://ror.org/010m1h651', 'en', 1, 'https://ror.org/010m1h651 American College of Veterinary Ophthalmologists'),
(53623, 'https://ror.org/03msdt869', 'en', 1, 'https://ror.org/03msdt869 Institute of Plant and Animal Ecology Институт экологии растений и животных УрО РАН [править | править вики-текст]'),
(53624, 'https://ror.org/05gebng48', 'en', 1, 'https://ror.org/05gebng48 CPCL Polytechnic College'),
(53625, 'https://ror.org/02byy6y80', 'en', 1, 'https://ror.org/02byy6y80 Palm Beach Gardens Medical Center'),
(53626, 'https://ror.org/01vgqcc30', 'en', 1, 'https://ror.org/01vgqcc30 Abbey of the Holy Trinity'),
(53627, 'https://ror.org/040g76k92', 'no_lang_code', 1, 'https://ror.org/040g76k92 IQVIA (United Kingdom)'),
(53628, 'https://ror.org/03gzf6s70', 'no_lang_code', 1, 'https://ror.org/03gzf6s70 Steuler (Germany)'),
(53629, 'https://ror.org/02njr9k66', 'no_lang_code', 1, 'https://ror.org/02njr9k66 FWRadiology'),
(53630, 'https://ror.org/048g28j84', 'en', 1, 'https://ror.org/048g28j84 Industrial Technology Center of Okayama Prefecture 岡山県工業技術センター'),
(53631, 'https://ror.org/03006qf92', 'en', 1, 'https://ror.org/03006qf92 Reid Veterinary Hospital'),
(53632, 'https://ror.org/05td8h732', 'en', 1, 'https://ror.org/05td8h732 Florida State Collection of Arthropods'),
(53633, 'https://ror.org/05hsqsk33', 'en', 1, 'https://ror.org/05hsqsk33 Imaging Center'),
(53634, 'https://ror.org/02ep9me51', 'en', 1, 'https://ror.org/02ep9me51 Tonbridge School'),
(53635, 'https://ror.org/047kkxp41', 'en', 1, 'https://ror.org/047kkxp41 Institute of Vegetable and Floriculture Science 野菜花き研究部門'),
(53636, 'https://ror.org/02mahq469', 'en', 1, 'https://ror.org/02mahq469 Sri Lanka College of Paediatricians'),
(53637, 'https://ror.org/059w4gg22', 'en', 1, 'https://ror.org/059w4gg22 Village Veterinary Medical Center'),
(53638, 'https://ror.org/027kj2v52', 'en', 1, 'https://ror.org/027kj2v52 American Board of Veterinary Practitioners'),
(53639, 'https://ror.org/030t7nd77', 'en', 1, 'https://ror.org/030t7nd77 Beijing Radiation Center 北京市辐射中心'),
(53640, 'https://ror.org/03fqz3d07', 'no_lang_code', 1, 'https://ror.org/03fqz3d07 Chondrometrics (Germany)'),
(53641, 'https://ror.org/05n9nqv74', 'en', 1, 'https://ror.org/05n9nqv74 Western Region Agricultural Research Center 西日本農業研究センター'),
(53642, 'https://ror.org/04yhya597', 'en', 1, 'https://ror.org/04yhya597 Blue Marble Space Institute of Science'),
(53643, 'https://ror.org/04hrt9p44', 'no_lang_code', 1, 'https://ror.org/04hrt9p44 Clariant (United States)'),
(53644, 'https://ror.org/05dd7v362', 'en', 1, 'https://ror.org/05dd7v362 DermSurgery Associates'),
(53645, 'https://ror.org/00k389086', 'no_lang_code', 1, 'https://ror.org/00k389086 Forsthoffer Associates (United States)'),
(53646, 'https://ror.org/044xdg011', 'no_lang_code', 1, 'https://ror.org/044xdg011 Toppan (United States)'),
(53647, 'https://ror.org/03kwycy34', 'en', 1, 'https://ror.org/03kwycy34 Harris Birthright Research Centre for Fetal Medicine'),
(53648, 'https://ror.org/01qp9b498', 'en', 1, 'https://ror.org/01qp9b498 Dominion Astrophysical Observatory'),
(53649, 'https://ror.org/01kxgx123', 'en', 1, 'https://ror.org/01kxgx123 Walsall Academy'),
(53650, 'https://ror.org/03r493e52', 'en', 1, 'https://ror.org/03r493e52 Institute of Bioorganic Chemistry Института биоорганической химии НАН Беларуси'),
(53651, 'https://ror.org/0281xn193', 'en', 1, 'https://ror.org/0281xn193 Japan Society for Laser Surgery and Medicine 日本レーザー医学会'),
(53652, 'https://ror.org/0378cd528', 'en', 1, 'https://ror.org/0378cd528 Institute for Cognitive Science Studies پژوهشکده علوم شناختی'),
(53653, 'https://ror.org/04kdaf332', 'en', 1, 'https://ror.org/04kdaf332 Kauffman Physical Therapy'),
(53654, 'https://ror.org/02nbjdt61', 'en', 1, 'https://ror.org/02nbjdt61 Defense Contract Audit Agency'),
(53655, 'https://ror.org/04jebr251', 'en', 1, 'https://ror.org/04jebr251 International Civil Aviation Organization'),
(53656, 'https://ror.org/02v982853', 'no_lang_code', 1, 'https://ror.org/02v982853 NationalRad (United States)'),
(53657, 'https://ror.org/04pq1cd03', 'en', 1, 'https://ror.org/04pq1cd03 Central Region Agricultural Research Center 中央農業研究センター:北陸研究拠点'),
(53658, 'https://ror.org/00e7h6j41', 'en', 1, 'https://ror.org/00e7h6j41 Japan Institute of Leather Research 日本皮革研究所'),
(53659, 'https://ror.org/051jcqr59', 'en', 1, 'https://ror.org/051jcqr59 Bytown Cat Hospital'),
(53660, 'https://ror.org/013qc1j71', 'en', 1, 'https://ror.org/013qc1j71 Paws & Claws Animal Hospital and Holistic Pet Center'),
(53661, 'https://ror.org/040d4nb67', 'no_lang_code', 1, 'https://ror.org/040d4nb67 Pharmerit (United States)'),
(53662, 'https://ror.org/00ntr9f13', 'no_lang_code', 1, 'https://ror.org/00ntr9f13 Pharmerit (Netherlands)'),
(53663, 'https://ror.org/05jg7dd90', 'no_lang_code', 1, 'https://ror.org/05jg7dd90 Photronics (United States)'),
(53664, 'https://ror.org/02bcs6e63', 'no_lang_code', 1, 'https://ror.org/02bcs6e63 Plant Lipids (India)'),
(53665, 'https://ror.org/03swnf798', 'en', 1, 'https://ror.org/03swnf798 Platte Valley Medical Center'),
(53666, 'https://ror.org/015g21p04', 'en', 1, 'https://ror.org/015g21p04 Marathon Veterinary Hospital'),
(53667, 'https://ror.org/05d64cx77', 'en', 1, 'https://ror.org/05d64cx77 Wellcome Trust Centre for the History of Medicine'),
(53668, 'https://ror.org/02x42kc45', 'en', 1, 'https://ror.org/02x42kc45 Sedgwick Museum of Earth Sciences'),
(53669, 'https://ror.org/003m2d425', 'no_lang_code', 1, 'https://ror.org/003m2d425 United BioSource Corporation (United Kingdom)'),
(53670, 'https://ror.org/008cftc05', 'en', 1, 'https://ror.org/008cftc05 Regional Center for Poison Control and Prevention'),
(53671, 'https://ror.org/034js7368', 'pt', 1, 'https://ror.org/034js7368 Sociedade Brasileira de Cirurgia Plástica'),
(53672, 'https://ror.org/056ezyb19', 'en', 1, 'https://ror.org/056ezyb19 Society of Analytical Psychology'),
(53673, 'https://ror.org/04pnnsh51', 'no_lang_code', 1, 'https://ror.org/04pnnsh51 Advanced Mask Technology Center (Germany)'),
(53674, 'https://ror.org/05fd45014', 'en', 1, 'https://ror.org/05fd45014 BresMed'),
(53675, 'https://ror.org/05h7bqz94', 'en', 1, 'https://ror.org/05h7bqz94 Brown-Spath & Associates'),
(53676, 'https://ror.org/013eh0c53', 'en', 1, 'https://ror.org/013eh0c53 American Institute for Psychoanalysis'),
(53677, 'https://ror.org/02sp4ja91', 'en', 1, 'https://ror.org/02sp4ja91 Institute of Physics. HI Amirkhanova Институт физики им. Х.И. Амирханова'),
(53678, 'https://ror.org/00pemyx71', 'no_lang_code', 1, 'https://ror.org/00pemyx71 Sanas (Japan) 株式会社サナス'),
(53679, 'https://ror.org/0505he277', 'no_lang_code', 1, 'https://ror.org/0505he277 Central Japan Railway (Japan) 東海旅客鉄道株式会社'),
(53680, 'https://ror.org/04sygbn06', 'en', 1, 'https://ror.org/04sygbn06 CEP America'),
(53681, 'https://ror.org/03kse5219', 'en', 1, 'https://ror.org/03kse5219 Bell Equine Veterinary Clinic'),
(53682, 'https://ror.org/04wwp6r22', 'de', 1, 'https://ror.org/04wwp6r22 BG Klinik Tübingen'),
(53683, 'https://ror.org/044kkbh92', 'no_lang_code', 1, 'https://ror.org/044kkbh92 BMW Group (Germany)'),
(53684, 'https://ror.org/02ex12682', 'en', 1, 'https://ror.org/02ex12682 Michigan Hand & Wrist'),
(53685, 'https://ror.org/04mm9fg30', 'en', 1, 'https://ror.org/04mm9fg30 IMDEA Networks Instituto IMDEA Networks'),
(53686, 'https://ror.org/003h15w42', 'no_lang_code', 1, 'https://ror.org/003h15w42 Galaxy Advanced Engineering (United States)'),
(53687, 'https://ror.org/02skytd81', 'en', 1, 'https://ror.org/02skytd81 IMDEA Nanoscience Instituto IMDEA Nanociencia'),
(53688, 'https://ror.org/04rhps755', 'es', 1, 'https://ror.org/04rhps755 IMDEA Water Instituto IMDEA Agua'),
(53689, 'https://ror.org/04g4ezh90', 'en', 1, 'https://ror.org/04g4ezh90 IMDEA Food Instituto IMDEA Alimentación'),
(53690, 'https://ror.org/059qzhk26', 'fr', 1, 'https://ror.org/059qzhk26 Hôpital La Porte Verte'),
(53691, 'https://ror.org/0117j0167', 'no_lang_code', 1, 'https://ror.org/0117j0167 Envigo (United Kingdom)'),
(53692, 'https://ror.org/01e8d4510', 'it', 1, 'https://ror.org/01e8d4510 SDN Istituto di Ricerca Diagnostica e Nucleare'),
(53693, 'https://ror.org/03hkn9159', 'en', 1, 'https://ror.org/03hkn9159 Goulburn Valley Equine Hospital'),
(53694, 'https://ror.org/04xjjma71', 'en', 1, 'https://ror.org/04xjjma71 Institute of Chemistry, Academia Sinica'),
(53695, 'https://ror.org/03v3fza79', 'en', 1, 'https://ror.org/03v3fza79 Japan Radioisotope Association 日本アイソトープ協会'),
(53696, 'https://ror.org/01nd4pb60', 'en', 1, 'https://ror.org/01nd4pb60 Kanagawa Environmental Research Center 神奈川県環境科学センター'),
(53697, 'https://ror.org/01ksntm04', 'no_lang_code', 1, 'https://ror.org/01ksntm04 Oblikue Consulting (Spain)'),
(53698, 'https://ror.org/00vgm4247', 'en', 1, 'https://ror.org/00vgm4247 Tohoku Agricultural Research Center 東北農業研究センター'),
(53699, 'https://ror.org/01909jb21', 'fr', 1, 'https://ror.org/01909jb21 Lycée Pierre-de-Fermat'),
(53700, 'https://ror.org/0229ja564', 'de', 1, 'https://ror.org/0229ja564 Kliniken des Landkreises Lörrach'),
(53701, 'https://ror.org/03zegg939', 'en', 1, 'https://ror.org/03zegg939 Diocese of Ely'),
(53702, 'https://ror.org/038xj9474', 'en', 1, 'https://ror.org/038xj9474 Okinawa Prefectural Agricultural Research Center 沖縄県農業研究センター'),
(53703, 'https://ror.org/033sc9d20', 'en', 1, 'https://ror.org/033sc9d20 Kumamoto Orthopedic Surgery Hospital'),
(53704, 'https://ror.org/02mn08y26', 'en', 1, 'https://ror.org/02mn08y26 Ordnance Engineering College 中国人民解放军军械工程学院'),
(53705, 'https://ror.org/0439y7f21', 'de', 1, 'https://ror.org/0439y7f21 Krebsregister Saarland'),
(53706, 'https://ror.org/0151hvz61', 'en', 1, 'https://ror.org/0151hvz61 San Diego Center for Spinal Disorders'),
(53707, 'https://ror.org/01607kg94', 'no_lang_code', 1, 'https://ror.org/01607kg94 Nokia (China)'),
(53708, 'https://ror.org/02bsxxg37', 'no_lang_code', 1, 'https://ror.org/02bsxxg37 PAGEPress (Italy)'),
(53709, 'https://ror.org/048rt2d32', 'nl', 1, 'https://ror.org/048rt2d32 Cicero Zorggroep'),
(53710, 'https://ror.org/057a4a874', 'no_lang_code', 1, 'https://ror.org/057a4a874 Sutherland HDL (United States)'),
(53711, 'https://ror.org/04hcjez88', 'no_lang_code', 1, 'https://ror.org/04hcjez88 Novel Health Strategies (United States)'),
(53712, 'https://ror.org/01ryjjz47', 'en', 1, 'https://ror.org/01ryjjz47 Siberian Institute of Plant Physiology and Biochemistry Сибирский институт физиологии и биохимии растений СО РАН'),
(53713, 'https://ror.org/05ancvs60', 'en', 1, 'https://ror.org/05ancvs60 Siloam Eye Hospital 실로암안과병원'),
(53714, 'https://ror.org/05ce10k61', 'de', 1, 'https://ror.org/05ce10k61 TCM-Klinik Bad Kötzting TCM-Klinik Bad Kötzting, Erste deutsche Klinik für Traditionelle Chinesische Medizin'),
(53715, 'https://ror.org/052ce7c92', 'en', 1, 'https://ror.org/052ce7c92 Population Council'),
(53716, 'https://ror.org/01zt9h285', 'en', 1, 'https://ror.org/01zt9h285 Postgraduate Center for Mental Health'),
(53717, 'https://ror.org/00jz7d133', 'en', 1, 'https://ror.org/00jz7d133 Princess Alexandra Eye Pavilion'),
(53718, 'https://ror.org/00m5hxb63', 'en', 1, 'https://ror.org/00m5hxb63 Parrott Equine Associates'),
(53719, 'https://ror.org/023pc0v92', 'it', 1, 'https://ror.org/023pc0v92 Ospedale San Paolo'),
(53720, 'https://ror.org/0432s1v23', 'en', 1, 'https://ror.org/0432s1v23 University Vascular Associates'),
(53721, 'https://ror.org/05ap66461', 'en', 1, 'https://ror.org/05ap66461 University School'),
(53722, 'https://ror.org/01z38sf41', 'no_lang_code', 1, 'https://ror.org/01z38sf41 AmerisourceBergen (United States)'),
(53723, 'https://ror.org/00ye0ab97', 'no_lang_code', 1, 'https://ror.org/00ye0ab97 GREEN Tox (Switzerland)'),
(53724, 'https://ror.org/03j12z232', 'en', 1, 'https://ror.org/03j12z232 Conservatoire et Jardin botaniques de la Ville de Genève Conservatory and Botanical Garden of the City of Geneva'),
(53725, 'https://ror.org/03chnjt72', 'en', 1, 'https://ror.org/03chnjt72 Natural History Museum of Basel Naturhistorisches Museum Basel'),
(53726, 'https://ror.org/057zjf715', 'en', 1, 'https://ror.org/057zjf715 Centre for Applied Studies in International Negotiations'),
(53727, 'https://ror.org/03pext169', 'en', 1, 'https://ror.org/03pext169 National Agriculture in the Classroom'),
(53728, 'https://ror.org/044r2ge26', 'en', 1, 'https://ror.org/044r2ge26 Alpine Biology Center Centro Biologia Alpina'),
(53729, 'https://ror.org/03apaw308', 'de', 1, 'https://ror.org/03apaw308 Stiftung für Forschung in Spätantike und Mittelalter HR. Sennhauser'),
(53730, 'https://ror.org/00vzfcj75', 'de', 1, 'https://ror.org/00vzfcj75 Gesellschaft für Schweizerische Kunstgeschichte'),
(53731, 'https://ror.org/00nqrzf67', 'de', 1, 'https://ror.org/00nqrzf67 Aargauer Kantonsbibliothek'),
(53732, 'https://ror.org/01mmqh025', 'no_lang_code', 1, 'https://ror.org/01mmqh025 ADR-AC (Switzerland)'),
(53733, 'https://ror.org/01017e202', 'en', 1, 'https://ror.org/01017e202 Stiftung Bibliothek Werner Oechslin Werner Oechslin Library Foundation'),
(53734, 'https://ror.org/00vfhwc85', 'no_lang_code', 1, 'https://ror.org/00vfhwc85 Interlifescience (Switzerland)'),
(53735, 'https://ror.org/03ed0c093', 'en', 1, 'https://ror.org/03ed0c093 Cantonal Archives of the Grisons Staatsarchiv Graubünden'),
(53736, 'https://ror.org/052grs779', 'it', 1, 'https://ror.org/052grs779 Archivio di Stato del canton Ticino'),
(53737, 'https://ror.org/00arm4s37', 'de', 1, 'https://ror.org/00arm4s37 State Archives Basel-Stadt'),
(53738, 'https://ror.org/019hb2q78', 'de', 1, 'https://ror.org/019hb2q78 Staatsarchiv des Kantons Zürich'),
(53739, 'https://ror.org/027m3cy15', 'de', 1, 'https://ror.org/027m3cy15 Global Risk Forum GRF Davos'),
(53740, 'https://ror.org/03egrq064', 'fr', 1, 'https://ror.org/03egrq064 Hôpital Nestlé'),
(53741, 'https://ror.org/02ed1t230', 'de', 1, 'https://ror.org/02ed1t230 Sprachatlas der Deutschen Schweiz'),
(53742, 'https://ror.org/024009532', 'fr', 1, 'https://ror.org/024009532 Hôpital de Beaumont'),
(53743, 'https://ror.org/03f3ngc78', 'no_lang_code', 1, 'https://ror.org/03f3ngc78 Sigmaplan (Switzerland)'),
(53744, 'https://ror.org/05nhx4339', 'en', 1, 'https://ror.org/05nhx4339 Umbricht Attorneys'),
(53745, 'https://ror.org/02stkxd13', 'fr', 1, 'https://ror.org/02stkxd13 Musée Cantonal d''Archéologie et d''Histoire'),
(53746, 'https://ror.org/039395021', 'fr', 1, 'https://ror.org/039395021 Vitrocentre Romont'),
(53747, 'https://ror.org/017ep6b53', 'de', 1, 'https://ror.org/017ep6b53 Natur Museum Luzern'),
(53748, 'https://ror.org/00kr3hh47', 'de', 1, 'https://ror.org/00kr3hh47 Antikenmuseum Basel und Sammlung Ludwig Basel Museum of Ancient Art and Ludwig Collection'),
(53749, 'https://ror.org/00vkatb78', 'no_lang_code', 1, 'https://ror.org/00vkatb78 BHP - Hanser und Partner (Switzerland)'),
(53750, 'https://ror.org/034e48p94', 'de', 1, 'https://ror.org/034e48p94 Kantonsspital Baden'),
(53751, 'https://ror.org/04qtg7h28', 'fr', 1, 'https://ror.org/04qtg7h28 Centre Régional d''Etudes des Populations Alpines'),
(53752, 'https://ror.org/03jevp076', 'fr', 1, 'https://ror.org/03jevp076 Service de la recherche éducation'),
(53753, 'https://ror.org/01g0hty05', 'no_lang_code', 1, 'https://ror.org/01g0hty05 Interface Politikstudien (Switzerland) Interface Politikstudien Forschung Beratung'),
(53754, 'https://ror.org/01g1mjb10', 'fr', 1, 'https://ror.org/01g1mjb10 Cabinet Gastroenterology La Source-Beaulieu'),
(53755, 'https://ror.org/02mpqfe95', 'no_lang_code', 1, 'https://ror.org/02mpqfe95 GeoExpert (Switzerland)'),
(53756, 'https://ror.org/02k58vv46', 'en', 1, 'https://ror.org/02k58vv46 Institute for Work Research and Organizational Consultancy'),
(53757, 'https://ror.org/00seh5759', 'no_lang_code', 1, 'https://ror.org/00seh5759 Econcept (Switzerland)'),
(53758, 'https://ror.org/03qa42z85', 'it', 1, 'https://ror.org/03qa42z85 Librairie Droz'),
(53759, 'https://ror.org/00gz1s959', 'fr', 1, 'https://ror.org/00gz1s959 Archives d''État de Genève'),
(53760, 'https://ror.org/042n4vt36', 'fr', 1, 'https://ror.org/042n4vt36 Département des Finances et des Relations Extérieures'),
(53761, 'https://ror.org/04zn57k32', 'it', 1, 'https://ror.org/04zn57k32 Augusta Raurica'),
(53762, 'https://ror.org/05qtqmn65', 'fr', 1, 'https://ror.org/05qtqmn65 Archives de l''État de Neuchâtel'),
(53763, 'https://ror.org/000gzpv52', 'no_lang_code', 1, 'https://ror.org/000gzpv52 Arcadis (Switzerland)'),
(53764, 'https://ror.org/046x93w41', 'de', 1, 'https://ror.org/046x93w41 Berner Kantonalbank'),
(53765, 'https://ror.org/00w5rad21', 'fr', 1, 'https://ror.org/00w5rad21 Institut de Recherche et de Documentation Pédagogique'),
(53766, 'https://ror.org/03nnkbc97', 'de', 1, 'https://ror.org/03nnkbc97 Institut für Ökologisch Systemische Therapie'),
(53767, 'https://ror.org/048vy2749', 'de', 1, 'https://ror.org/048vy2749 ViaStoria'),
(53768, 'https://ror.org/05d9rr978', 'fr', 1, 'https://ror.org/05d9rr978 Hôpital de l''enfance'),
(53769, 'https://ror.org/00aa64v88', 'fr', 1, 'https://ror.org/00aa64v88 Laboratoire Romand de Dendrochronologie'),
(53770, 'https://ror.org/055fj9x85', 'fr', 1, 'https://ror.org/055fj9x85 Musée Romain d''Avenches'),
(53771, 'https://ror.org/05fw7wg22', 'fr', 1, 'https://ror.org/05fw7wg22 Laténium'),
(53772, 'https://ror.org/00rath085', 'de', 1, 'https://ror.org/00rath085 Staatsarchiv Freiburg'),
(53773, 'https://ror.org/02r72vt69', 'it', 1, 'https://ror.org/02r72vt69 Liceo Cantonale'),
(53774, 'https://ror.org/010rsfq12', 'de', 1, 'https://ror.org/010rsfq12 Stadtbibliothek Schaffhausen'),
(53775, 'https://ror.org/03z18kf36', 'no_lang_code', 1, 'https://ror.org/03z18kf36 MFB-GeoConsulting (Switzerland)'),
(53776, 'https://ror.org/05aq07d91', 'en', 1, 'https://ror.org/05aq07d91 Abbey library of Saint Gall Stiftsbibliothek St. Gallen'),
(53777, 'https://ror.org/02tzeve03', 'en', 1, 'https://ror.org/02tzeve03 International Museum of Horology Musée international d''horlogerie'),
(53778, 'https://ror.org/016dt2y84', 'de', 1, 'https://ror.org/016dt2y84 Center Pro Natura of Champ-Pittet'),
(53779, 'https://ror.org/0139gxv26', 'fr', 1, 'https://ror.org/0139gxv26 Museum of Art and History Musée d''Art et d''Histoire'),
(53780, 'https://ror.org/03rkcd137', 'en', 1, 'https://ror.org/03rkcd137 Museum der Kulturen Basel Museum of Cultures'),
(53781, 'https://ror.org/04saem874', 'de', 1, 'https://ror.org/04saem874 Kloster St. Johann Müstair'),
(53782, 'https://ror.org/02b7ead30', 'en', 1, 'https://ror.org/02b7ead30 Bureau fédéral de l''égalité entre femmes et hommes Eidgenössisches Büro für die Gleichstellung von Frau und Mann Federal Office for Gender Equality Ufficio federale per l''uguaglianza fra donna e uomo'),
(53783, 'https://ror.org/0264vnq64', 'it', 1, 'https://ror.org/0264vnq64 Organizzazione Sociopsichiatrica Cantonale'),
(53784, 'https://ror.org/05ejhgb17', 'fr', 1, 'https://ror.org/05ejhgb17 Clinique Valmont'),
(53785, 'https://ror.org/023vxr720', 'no_lang_code', 1, 'https://ror.org/023vxr720 TK Consult (Switzerland)');
INSERT INTO `rors` VALUES
(53786, 'https://ror.org/0494r5h25', 'en', 1, 'https://ror.org/0494r5h25 Bundesgericht Federal Supreme Court of Switzerland Tribunal federal Tribunal fédéral Tribunale federale'),
(53787, 'https://ror.org/0089a0566', 'de', 1, 'https://ror.org/0089a0566 Robert Walser-Zentrum'),
(53788, 'https://ror.org/02f3p0s49', 'de', 1, 'https://ror.org/02f3p0s49 Stockalperstiftung'),
(53789, 'https://ror.org/01azdfc53', 'en', 1, 'https://ror.org/01azdfc53 Psychiatrie Baselland Psychiatry Baselland'),
(53790, 'https://ror.org/05r3dyn47', 'en', 1, 'https://ror.org/05r3dyn47 Center for Systems Biology'),
(53791, 'https://ror.org/05n6yb463', 'no_lang_code', 1, 'https://ror.org/05n6yb463 Rütter Soceco (Switzerland)'),
(53792, 'https://ror.org/05e8cby31', 'no_lang_code', 1, 'https://ror.org/05e8cby31 Flury and Giuliani (Switzerland)'),
(53793, 'https://ror.org/04z6xe248', 'en', 1, 'https://ror.org/04z6xe248 Clinica Luganese Moncucco'),
(53794, 'https://ror.org/02bgabj83', 'en', 1, 'https://ror.org/02bgabj83 Center for Nutrition Policy and Promotion'),
(53795, 'https://ror.org/056mcm922', 'en', 1, 'https://ror.org/056mcm922 Grain Inspection, Packers and Stockyards Administration'),
(53796, 'https://ror.org/041przb21', 'de', 1, 'https://ror.org/041przb21 Forum Ost West'),
(53797, 'https://ror.org/00z6b1508', 'en', 1, 'https://ror.org/00z6b1508 National Agricultural Library'),
(53798, 'https://ror.org/02qhkmh27', 'en', 1, 'https://ror.org/02qhkmh27 USDA Rural Development'),
(53799, 'https://ror.org/035pp4s04', 'de', 1, 'https://ror.org/035pp4s04 Institut für Urheber- und Medienrecht'),
(53800, 'https://ror.org/0430mjq75', 'de', 1, 'https://ror.org/0430mjq75 Amt für Archäologie'),
(53801, 'https://ror.org/04f6f3e35', 'en', 1, 'https://ror.org/04f6f3e35 Archeologia Svizzera Archäologie Schweiz Archéologie Suisse Swiss Archaeology'),
(53802, 'https://ror.org/03cc4wz29', 'de', 1, 'https://ror.org/03cc4wz29 Archäologie Baselland'),
(53803, 'https://ror.org/05qkh8j74', 'de', 1, 'https://ror.org/05qkh8j74 Archäologischen Dienst Graubünden Servizio archeologico dei Grigioni servetsch archeologic dal Grischun'),
(53804, 'https://ror.org/01jr63883', 'de', 1, 'https://ror.org/01jr63883 INURA Zürich Institut'),
(53805, 'https://ror.org/00ntwgk39', 'fr', 1, 'https://ror.org/00ntwgk39 Hôpital Beau-Séjour'),
(53806, 'https://ror.org/035881909', 'de', 1, 'https://ror.org/035881909 Lamprecht und Stamm Sozialforschung und Beratung'),
(53807, 'https://ror.org/00vqmez57', 'fr', 1, 'https://ror.org/00vqmez57 Hôpital de Cery'),
(53808, 'https://ror.org/04f5ks076', 'no_lang_code', 1, 'https://ror.org/04f5ks076 Japan Tobacco (Switzerland)'),
(53809, 'https://ror.org/05e83v334', 'no_lang_code', 1, 'https://ror.org/05e83v334 Sottas Formative Works (Switzerland)'),
(53810, 'https://ror.org/04beemq12', 'it', 1, 'https://ror.org/04beemq12 Memoriav'),
(53811, 'https://ror.org/01mk9jb73', 'fr', 1, 'https://ror.org/01mk9jb73 Hospital Neuchâtel'),
(53812, 'https://ror.org/057p1hr03', 'de', 1, 'https://ror.org/057p1hr03 Kantonsarchäologie Aargau'),
(53813, 'https://ror.org/01kd56x58', 'de', 1, 'https://ror.org/01kd56x58 Kantonsarchäologie des Kantons Zürich'),
(53814, 'https://ror.org/03hvkpj98', 'de', 1, 'https://ror.org/03hvkpj98 Klinik Sonnenhof'),
(53815, 'https://ror.org/0498qf076', 'de', 1, 'https://ror.org/0498qf076 Kantonsschule Enge'),
(53816, 'https://ror.org/00ymr0824', 'de', 1, 'https://ror.org/00ymr0824 Kantonsschule Sargans'),
(53817, 'https://ror.org/03vayv672', 'en', 1, 'https://ror.org/03vayv672 University of Veterinary Medicine Állatorvostudományi Egyetem'),
(53818, 'https://ror.org/03c3qzd14', 'no_lang_code', 1, 'https://ror.org/03c3qzd14 Neurotune (Switzerland)'),
(53819, 'https://ror.org/059sx8r46', 'no_lang_code', 1, 'https://ror.org/059sx8r46 Novo Business Consultants (Switzerland)'),
(53820, 'https://ror.org/04w9zgk85', 'de', 1, 'https://ror.org/04w9zgk85 Paul Sacher Stiftung'),
(53821, 'https://ror.org/05201ww68', 'en', 1, 'https://ror.org/05201ww68 Eidgenössisches Institut für Geistiges Eigentum Institut Federal da Proprietad Intellectuala Institut Fédéral de la Propriété Intellectuelle Istituto Federale della Proprietà Intellettuale Swiss Federal Institute of Intellectual Property'),
(53822, 'https://ror.org/05qwesv66', 'no_lang_code', 1, 'https://ror.org/05qwesv66 Planconsult (Switzerland)'),
(53823, 'https://ror.org/00eqvhf81', 'no_lang_code', 1, 'https://ror.org/00eqvhf81 Urbaplan (Switzerland)'),
(53824, 'https://ror.org/01kk1vy78', 'de', 1, 'https://ror.org/01kk1vy78 Arbeitsstelle Schweiz des RISM Bureau suisse du RISM RISM Digital Center Ufficio svizzero RISM'),
(53825, 'https://ror.org/05hjw0y48', 'no_lang_code', 1, 'https://ror.org/05hjw0y48 Bedag Informatik (Switzerland)'),
(53826, 'https://ror.org/04cvw9c02', 'de', 1, 'https://ror.org/04cvw9c02 Library Am Guisanplatz'),
(53827, 'https://ror.org/00j6f3g48', 'de', 1, 'https://ror.org/00j6f3g48 Schweizerisches Institut für Kinder- und Jugendmedien'),
(53828, 'https://ror.org/04666hf17', 'no_lang_code', 1, 'https://ror.org/04666hf17 Academia Raetica'),
(53829, 'https://ror.org/05yjpzd92', 'fr', 1, 'https://ror.org/05yjpzd92 Bibliothèque Cantonale Jurassienne'),
(53830, 'https://ror.org/004ea6c05', 'no_lang_code', 1, 'https://ror.org/004ea6c05 Bioanalytica (Switzerland)'),
(53831, 'https://ror.org/020bdm170', 'de', 1, 'https://ror.org/020bdm170 Biologie Labor'),
(53832, 'https://ror.org/04tn1tx80', 'fr', 1, 'https://ror.org/04tn1tx80 Museum of Art and History Musée d''Art et d''Histoire de Neuchâtel'),
(53833, 'https://ror.org/0228pwd35', 'en', 1, 'https://ror.org/0228pwd35 Departament federal da finanzas Dipartimento federale delle finanze Département fédéral des finances Eidgenössisches Finanzdepartement Federal Department of Finance'),
(53834, 'https://ror.org/00xkrwz44', 'no_lang_code', 1, 'https://ror.org/00xkrwz44 AGRIDEA Agricultural Advisory and Extension Services Entwicklung der Landwirtschaft und des Ländlichen Raums La Centrale di consulenza agricola'),
(53835, 'https://ror.org/05cbxy397', 'de', 1, 'https://ror.org/05cbxy397 Dialog Ethik'),
(53836, 'https://ror.org/02agvwy44', 'no_lang_code', 1, 'https://ror.org/02agvwy44 Von Roll (Switzerland)'),
(53837, 'https://ror.org/03wmjwc96', 'en', 1, 'https://ror.org/03wmjwc96 Federal Office of Information Technology Systems and Telecommunication Office fédéral de l’informatique et de la télécommunication Ufficio federale dell’informatica e della telecomunicazione Uffizi federal d’informatica e da telecommunicaziun'),
(53838, 'https://ror.org/016018d94', 'de', 1, 'https://ror.org/016018d94 Bundesamt für Kultur Office fédéral de la culture Ufficio federale della cultura Uffizi federal da cultura'),
(53839, 'https://ror.org/01dawqf23', 'no_lang_code', 1, 'https://ror.org/01dawqf23 CSS (Switzerland)'),
(53840, 'https://ror.org/00x26bk24', 'en', 1, 'https://ror.org/00x26bk24 Federal Criminal Court Tribunal penal federal Tribunal pénal fédéral Tribunale penale federale'),
(53841, 'https://ror.org/04r3hry39', 'de', 1, 'https://ror.org/04r3hry39 Bündner Kunstmuseum'),
(53842, 'https://ror.org/01h5sw314', 'fr', 1, 'https://ror.org/01h5sw314 Préparation aux Examens Préalables'),
(53843, 'https://ror.org/019zrgy79', 'en', 1, 'https://ror.org/019zrgy79 Albrecht von Haller Foundation Albrecht von Haller-Stiftung'),
(53844, 'https://ror.org/010q0m202', 'de', 1, 'https://ror.org/010q0m202 Bibliothèque de la Bourgeoisie de Berne Burgerbibliothek Bern Burgerbibliothek of Berne'),
(53845, 'https://ror.org/02keacx90', 'de', 1, 'https://ror.org/02keacx90 Kompetenzzentrum Gesundheit und Alter'),
(53846, 'https://ror.org/028e7fy95', 'de', 1, 'https://ror.org/028e7fy95 Büro für Arbeits und Sozialpolitische Studien'),
(53847, 'https://ror.org/001ydhs21', 'de', 1, 'https://ror.org/001ydhs21 Amt für Umwelt'),
(53848, 'https://ror.org/059zyq877', 'no_lang_code', 1, 'https://ror.org/059zyq877 Oliva (Switzerland)'),
(53849, 'https://ror.org/04dkz7q98', 'no_lang_code', 1, 'https://ror.org/04dkz7q98 eHealth Consulting (United States)'),
(53850, 'https://ror.org/00njy2393', 'fr', 1, 'https://ror.org/00njy2393 Caisse de Prévoyance du Personnel de l''Etat de Fribourg'),
(53851, 'https://ror.org/03wgrw884', 'fr', 1, 'https://ror.org/03wgrw884 Gymnase de La Cité Lausanne'),
(53852, 'https://ror.org/00y221604', 'de', 1, 'https://ror.org/00y221604 Amt für Raumentwicklung'),
(53853, 'https://ror.org/03snzqt88', 'en', 1, 'https://ror.org/03snzqt88 Fachstelle für Gleichstellung von Frau und Mann Office for the Equality of Men and Women'),
(53854, 'https://ror.org/01b2bca57', 'de', 1, 'https://ror.org/01b2bca57 Archäologische Bodenforschung des Kantons Basel-Stadt'),
(53855, 'https://ror.org/041jh8270', 'en', 1, 'https://ror.org/041jh8270 Archiv für Agrargeschichte Archives of Rural History'),
(53856, 'https://ror.org/056v7cj11', 'fr', 1, 'https://ror.org/056v7cj11 Archives de l''ancien Évêché de Bâle'),
(53857, 'https://ror.org/000yyt861', 'de', 1, 'https://ror.org/000yyt861 Cardiovascular Medicine at Klinik Im Park Herzgefäss Medizin Klinik Im Park'),
(53858, 'https://ror.org/02pt0wv95', 'en', 1, 'https://ror.org/02pt0wv95 Centre for Training and Integrated Research In ASAL Development'),
(53859, 'https://ror.org/04c7g1a88', 'de', 1, 'https://ror.org/04c7g1a88 Amt für Städtebau'),
(53860, 'https://ror.org/01hqeag92', 'de', 1, 'https://ror.org/01hqeag92 Archäologischer Dienst des Kantons Bern'),
(53861, 'https://ror.org/03awvhn35', 'fr', 1, 'https://ror.org/03awvhn35 Centre Alpien de Phytogéographie'),
(53862, 'https://ror.org/034w84t89', 'en', 1, 'https://ror.org/034w84t89 Centre International d''Etude du Sport International Centre for Sports Studies'),
(53863, 'https://ror.org/04waxbg79', 'en', 1, 'https://ror.org/04waxbg79 Fondation Suisse pour la Recherche en Microtechnique Swiss Foundation for Research in Microtechnology'),
(53864, 'https://ror.org/05jghsy80', 'de', 1, 'https://ror.org/05jghsy80 Holbein-Gymnasium Augsburg'),
(53865, 'https://ror.org/00dt0nn62', 'de', 1, 'https://ror.org/00dt0nn62 Pro Vistiliaco'),
(53866, 'https://ror.org/01bgzbz31', 'en', 1, 'https://ror.org/01bgzbz31 Schweizerische Gesellschaft für Soziologie Swiss Sociological Association'),
(53867, 'https://ror.org/05qaacr29', 'fr', 1, 'https://ror.org/05qaacr29 Hôpital intercantonal de la Broye'),
(53868, 'https://ror.org/04j5qh045', 'de', 1, 'https://ror.org/04j5qh045 Hospiz im Park'),
(53869, 'https://ror.org/05eayn621', 'no_lang_code', 1, 'https://ror.org/05eayn621 INFRAS (Switzerland)'),
(53870, 'https://ror.org/04n3be660', 'no_lang_code', 1, 'https://ror.org/04n3be660 GEO Partner (Switzerland)'),
(53871, 'https://ror.org/00qkaw379', 'no_lang_code', 1, 'https://ror.org/00qkaw379 GEOTEST (Switzerland)'),
(53872, 'https://ror.org/04tsrda09', 'de', 1, 'https://ror.org/04tsrda09 Geschäftsstelle SVIAL'),
(53873, 'https://ror.org/04f84b035', 'de', 1, 'https://ror.org/04f84b035 Gesundheitsdepartement des Kantons Basel-Stadt'),
(53874, 'https://ror.org/055gjr823', 'de', 1, 'https://ror.org/055gjr823 Institut für Sozialwissenschaftliche Analysen und Beratung'),
(53875, 'https://ror.org/01qtj8126', 'la', 1, 'https://ror.org/01qtj8126 Foederatio Medicorum Helveticorum'),
(53876, 'https://ror.org/00q4d7711', 'fr', 1, 'https://ror.org/00q4d7711 Orthodontie MC20'),
(53877, 'https://ror.org/05kgdba77', 'de', 1, 'https://ror.org/05kgdba77 Gelenkzentrum Zürich'),
(53878, 'https://ror.org/02cvt8e16', 'en', 1, 'https://ror.org/02cvt8e16 Center for Pediatric Endocrinology Zurich Pädiatrisch-Endokrinologisches Zentrum Zürich'),
(53879, 'https://ror.org/01s8mna38', 'de', 1, 'https://ror.org/01s8mna38 Technische Fachschule Bern'),
(53880, 'https://ror.org/00k0msf85', 'no_lang_code', 1, 'https://ror.org/00k0msf85 Itopia (Switzerland)'),
(53881, 'https://ror.org/02v7y7w12', 'de', 1, 'https://ror.org/02v7y7w12 Liechtenstein Institute Liechtenstein-Institut'),
(53882, 'https://ror.org/04hexsd31', 'en', 1, 'https://ror.org/04hexsd31 Geneva Finance Research Institute'),
(53883, 'https://ror.org/035g0d030', 'no_lang_code', 1, 'https://ror.org/035g0d030 Axon Active (Switzerland)'),
(53884, 'https://ror.org/04c8y8w58', 'en', 1, 'https://ror.org/04c8y8w58 Institute of Archeology Інститут археології НАН України'),
(53885, 'https://ror.org/05tkx8d31', 'no_lang_code', 1, 'https://ror.org/05tkx8d31 Madep (Switzerland)'),
(53886, 'https://ror.org/03c4z4v61', 'no_lang_code', 1, 'https://ror.org/03c4z4v61 Jean-Marc Blanc Consultant (Switzerland)'),
(53887, 'https://ror.org/02sn6x239', 'no_lang_code', 1, 'https://ror.org/02sn6x239 Mat-Tec (Switzerland)'),
(53888, 'https://ror.org/0112bn567', 'en', 1, 'https://ror.org/0112bn567 Institute of Ecology and Geography Institutul de Ecologie și Geografie'),
(53889, 'https://ror.org/02y9vr459', 'de', 1, 'https://ror.org/02y9vr459 Kantonale Planungsgruppe'),
(53890, 'https://ror.org/042qasc85', 'de', 1, 'https://ror.org/042qasc85 Kantonale Psychiatrische Dienste St Gallen'),
(53891, 'https://ror.org/00wznfw28', 'no_lang_code', 1, 'https://ror.org/00wznfw28 Planar (Switzerland)'),
(53892, 'https://ror.org/00048gf56', 'no_lang_code', 1, 'https://ror.org/00048gf56 Metron (Switzerland)'),
(53893, 'https://ror.org/041v0z526', 'no_lang_code', 1, 'https://ror.org/041v0z526 Planval (Switzerland)'),
(53894, 'https://ror.org/01yqdmr06', 'no_lang_code', 1, 'https://ror.org/01yqdmr06 Microscan Service (Switzerland)'),
(53895, 'https://ror.org/04tdwrq43', 'en', 1, 'https://ror.org/04tdwrq43 Bethesda Spital'),
(53896, 'https://ror.org/04e9p5d56', 'no_lang_code', 1, 'https://ror.org/04e9p5d56 MOR Informatik (Switzerland)'),
(53897, 'https://ror.org/04wz85195', 'de', 1, 'https://ror.org/04wz85195 Karl Jaspers Stiftung'),
(53898, 'https://ror.org/00c35nc92', 'en', 1, 'https://ror.org/00c35nc92 Cantonal Museum of Fine Arts Musée cantonal des beaux-arts'),
(53899, 'https://ror.org/031n2qp89', 'de', 1, 'https://ror.org/031n2qp89 Privatbüro Plus'),
(53900, 'https://ror.org/037g52y53', 'fr', 1, 'https://ror.org/037g52y53 Art and History Museum of Fribourg Musée d''Art et d''Histoire de Fribourg'),
(53901, 'https://ror.org/00tbqf005', 'de', 1, 'https://ror.org/00tbqf005 Privatklinik Meiringen'),
(53902, 'https://ror.org/01bqscy27', 'fr', 1, 'https://ror.org/01bqscy27 Geneva Ethnography Museum Musée d''Ethnographie de Genève'),
(53903, 'https://ror.org/003hsj034', 'de', 1, 'https://ror.org/003hsj034 Pro Familia Schweiz'),
(53904, 'https://ror.org/03yahs006', 'en', 1, 'https://ror.org/03yahs006 Musée suisse du jeu Swiss Museum of Games'),
(53905, 'https://ror.org/05ffr4y89', 'de', 1, 'https://ror.org/05ffr4y89 Psychiatriezentrum Münsingen'),
(53906, 'https://ror.org/05vg8zj60', 'de', 1, 'https://ror.org/05vg8zj60 Kollegium für Hausarztmedizin'),
(53907, 'https://ror.org/04azbkk87', 'en', 1, 'https://ror.org/04azbkk87 Schweizerisches Institut für öffentliches Management Swiss Institute for Public Management'),
(53908, 'https://ror.org/00438z572', 'en', 1, 'https://ror.org/00438z572 Schweizerisches Sozialarchiv Swiss Social Archives'),
(53909, 'https://ror.org/01cdf1198', 'it', 1, 'https://ror.org/01cdf1198 Scuola Cantonale di Commercio Bellinzona'),
(53910, 'https://ror.org/02basy118', 'en', 1, 'https://ror.org/02basy118 Federation of Swiss Protestant Churches'),
(53911, 'https://ror.org/01dk5kp39', 'en', 1, 'https://ror.org/01dk5kp39 Bellikon Rehabilitation Clinic Rehaklinik Bellikon'),
(53912, 'https://ror.org/00y8acb95', 'fr', 1, 'https://ror.org/00y8acb95 Service de la Santé Publique'),
(53913, 'https://ror.org/055g2sd79', 'de', 1, 'https://ror.org/055g2sd79 Sozialwissenschaftliche Forschung und Beratung'),
(53914, 'https://ror.org/03dx2f169', 'de', 1, 'https://ror.org/03dx2f169 Schweizerische Vereinigung Industrie und Landwirtschaft'),
(53915, 'https://ror.org/04ykg4p88', 'de', 1, 'https://ror.org/04ykg4p88 Stiftung Landschaftsschutz Schweiz Swiss Foundation for Landscape Conservation'),
(53916, 'https://ror.org/03amgzq35', 'de', 1, 'https://ror.org/03amgzq35 Stiftung Zürcher Kinder- und Jugendheime'),
(53917, 'https://ror.org/032jwgq52', 'en', 1, 'https://ror.org/032jwgq52 Ausbildungs- und Tagungszentrum Bienenberg Theological Seminary Bienenberg'),
(53918, 'https://ror.org/045vees34', 'de', 1, 'https://ror.org/045vees34 Gfs-Zürich'),
(53919, 'https://ror.org/0551g0798', 'de', 1, 'https://ror.org/0551g0798 Schweizerische Pastoralsoziologische Institut'),
(53920, 'https://ror.org/03c1wwn39', 'no_lang_code', 1, 'https://ror.org/03c1wwn39 Treeze (Switzerland)'),
(53921, 'https://ror.org/00m7t6760', 'de', 1, 'https://ror.org/00m7t6760 Spital STS'),
(53922, 'https://ror.org/030j64f75', 'de', 1, 'https://ror.org/030j64f75 Neue Galerie Luzern'),
(53923, 'https://ror.org/00n95xs29', 'de', 1, 'https://ror.org/00n95xs29 Fotostiftung Schweiz'),
(53924, 'https://ror.org/01ms54191', 'en', 1, 'https://ror.org/01ms54191 Schweizerische Akademie der Pharmazeutische Wissenschaften Swiss Academy of Pharmaceutical Sciences'),
(53925, 'https://ror.org/04wjmv675', 'de', 1, 'https://ror.org/04wjmv675 Schweizerische Gesellschaft für Volkskunde'),
(53926, 'https://ror.org/01eah9363', 'it', 1, 'https://ror.org/01eah9363 Archivio di Stato di Firenze'),
(53927, 'https://ror.org/030zkq869', 'no_lang_code', 1, 'https://ror.org/030zkq869 Wenger Plattner (Switzerland)'),
(53928, 'https://ror.org/05tkn9009', 'no_lang_code', 1, 'https://ror.org/05tkn9009 Arcoplan (Switzerland)'),
(53929, 'https://ror.org/023eqmq44', 'de', 1, 'https://ror.org/023eqmq44 Wohnstadt'),
(53930, 'https://ror.org/02wv42418', 'en', 1, 'https://ror.org/02wv42418 ARGO Foundation ARGO Stiftung'),
(53931, 'https://ror.org/04t5d1438', 'en', 1, 'https://ror.org/04t5d1438 Unitectra'),
(53932, 'https://ror.org/052e5jr81', 'de', 1, 'https://ror.org/052e5jr81 Zentrum für Gefässkrankheiten'),
(53933, 'https://ror.org/000ew5688', 'en', 1, 'https://ror.org/000ew5688 Swiss Conference of Cantonal Ministers of Education'),
(53934, 'https://ror.org/05sejda23', 'en', 1, 'https://ror.org/05sejda23 Armenian National Survey for Seismic Protection'),
(53935, 'https://ror.org/03952ft31', 'en', 1, 'https://ror.org/03952ft31 Art as Foundation'),
(53936, 'https://ror.org/05wyxeg04', 'de', 1, 'https://ror.org/05wyxeg04 Arud'),
(53937, 'https://ror.org/03m9tq224', 'de', 1, 'https://ror.org/03m9tq224 Abwasserverband Altenrhein'),
(53938, 'https://ror.org/04x4bjr17', 'de', 1, 'https://ror.org/04x4bjr17 Universitätsklinik für Diabetologie, Endokrinologie, Ernährungsmedizin & Metabolismus'),
(53939, 'https://ror.org/02613e360', 'en', 1, 'https://ror.org/02613e360 International Center for Astronomical, Medical and Ecological Research'),
(53940, 'https://ror.org/00qrs4s60', 'no_lang_code', 1, 'https://ror.org/00qrs4s60 Beratungsdienste für Ausbildung und Beruf Aargau (Switzerland)'),
(53941, 'https://ror.org/01dxwkm60', 'de', 1, 'https://ror.org/01dxwkm60 Ad Baumgartner Sozialforschung'),
(53942, 'https://ror.org/019pz8z97', 'en', 1, 'https://ror.org/019pz8z97 Association of Ukrainian Cities Асоціація міст України та громад'),
(53943, 'https://ror.org/00d9n9k04', 'no_lang_code', 1, 'https://ror.org/00d9n9k04 Agriforest (Switzerland)'),
(53944, 'https://ror.org/03s9vq845', 'de', 1, 'https://ror.org/03s9vq845 Aebli-Näf-Stiftung'),
(53945, 'https://ror.org/04h11pr46', 'en', 1, 'https://ror.org/04h11pr46 Belgrade Centre for Security Policy'),
(53946, 'https://ror.org/00fjtyx23', 'fr', 1, 'https://ror.org/00fjtyx23 Association Fribourgeoise des Psychologues'),
(53947, 'https://ror.org/03f05ts54', 'it', 1, 'https://ror.org/03f05ts54 Fondazione Alpina per le Scienze della Vita'),
(53948, 'https://ror.org/05ye9s754', 'en', 1, 'https://ror.org/05ye9s754 Association Internationale de la Sécurité Sociale International Social Security Association'),
(53949, 'https://ror.org/041wkfa75', 'de', 1, 'https://ror.org/041wkfa75 Kantonsschule Baden'),
(53950, 'https://ror.org/03k699w20', 'de', 1, 'https://ror.org/03k699w20 Berlinische Galerie'),
(53951, 'https://ror.org/034sqmv32', 'en', 1, 'https://ror.org/034sqmv32 Agrophysical Research Institute Агрофизический научно-исследовательский институт'),
(53952, 'https://ror.org/05bzvq648', 'no_lang_code', 1, 'https://ror.org/05bzvq648 BSS Architekten (Switzerland)'),
(53953, 'https://ror.org/04mphxe26', 'no_lang_code', 1, 'https://ror.org/04mphxe26 Emmi (Switzerland)'),
(53954, 'https://ror.org/04g14s332', 'no_lang_code', 1, 'https://ror.org/04g14s332 Buchhofer (Switzerland)'),
(53955, 'https://ror.org/040mkwe50', 'de', 1, 'https://ror.org/040mkwe50 Kunsthalle Marcel Duchamp'),
(53956, 'https://ror.org/041qak036', 'no_lang_code', 1, 'https://ror.org/041qak036 Akanthus (Switzerland)'),
(53957, 'https://ror.org/019qf4t38', 'no_lang_code', 1, 'https://ror.org/019qf4t38 Mobsya'),
(53958, 'https://ror.org/02hce2n63', 'it', 1, 'https://ror.org/02hce2n63 Biblioteca Cantonale di Lugano'),
(53959, 'https://ror.org/038923331', 'en', 1, 'https://ror.org/038923331 BFF Bern'),
(53960, 'https://ror.org/00n83hf26', 'fr', 1, 'https://ror.org/00n83hf26 Association Savoir Patient'),
(53961, 'https://ror.org/02j716y15', 'de', 1, 'https://ror.org/02j716y15 Kantonsschule Alpenquai Luzern'),
(53962, 'https://ror.org/03a17hk77', 'fr', 1, 'https://ror.org/03a17hk77 Association Suisse pour le Service aux Régions et Communes'),
(53963, 'https://ror.org/05p1fxc65', 'en', 1, 'https://ror.org/05p1fxc65 Cedar Grove Institute for Sustainable Communities'),
(53964, 'https://ror.org/02qvj8k32', 'de', 1, 'https://ror.org/02qvj8k32 Schweizerische Bundeskanzlei'),
(53965, 'https://ror.org/05mzd7q50', 'en', 1, 'https://ror.org/05mzd7q50 Bildungsdirektion Volksschulamt Office of Elementary Education'),
(53966, 'https://ror.org/03gj08226', 'fr', 1, 'https://ror.org/03gj08226 Alimentarium'),
(53967, 'https://ror.org/00m2xfz17', 'no_lang_code', 1, 'https://ror.org/00m2xfz17 Bioengineering (Switzerland)'),
(53968, 'https://ror.org/01f7h5955', 'de', 1, 'https://ror.org/01f7h5955 Allgemeine Berufsschule Zürich'),
(53969, 'https://ror.org/03mx3cq03', 'no_lang_code', 1, 'https://ror.org/03mx3cq03 Atenisi Institute'),
(53970, 'https://ror.org/02xjhr934', 'en', 1, 'https://ror.org/02xjhr934 Dr. Lisbeth Hurni Coaching & Consulting Inhaberin Büro für Laufbahnpsychologie'),
(53971, 'https://ror.org/03q5hdj87', 'de', 1, 'https://ror.org/03q5hdj87 Allgemeine Gewerbeschule Basel'),
(53972, 'https://ror.org/05tk0mn61', 'no_lang_code', 1, 'https://ror.org/05tk0mn61 Büro Vatter (Switzerland)'),
(53973, 'https://ror.org/00zy1mb15', 'no_lang_code', 1, 'https://ror.org/00zy1mb15 CABI Kenya'),
(53974, 'https://ror.org/02neeny91', 'no_lang_code', 1, 'https://ror.org/02neeny91 AWK (Switzerland)'),
(53975, 'https://ror.org/05f33zm87', 'no_lang_code', 1, 'https://ror.org/05f33zm87 Axone (Switzerland)'),
(53976, 'https://ror.org/03jrc7315', 'fr', 1, 'https://ror.org/03jrc7315 Cabinet de Psychiatrie et Psychothérapie'),
(53977, 'https://ror.org/04cchyf16', 'en', 1, 'https://ror.org/04cchyf16 Anatolia College Κολλέγιο Ανατόλια'),
(53978, 'https://ror.org/0508gqz32', 'no_lang_code', 1, 'https://ror.org/0508gqz32 Büro für Altlasten, Boden und Umwelt (Switzerland)'),
(53979, 'https://ror.org/03dryja89', 'no_lang_code', 1, 'https://ror.org/03dryja89 Bioterra (Switzerland)'),
(53980, 'https://ror.org/05nsn5c92', 'no_lang_code', 1, 'https://ror.org/05nsn5c92 Ammann (Switzerland)'),
(53981, 'https://ror.org/05d6awd42', 'no_lang_code', 1, 'https://ror.org/05d6awd42 Bachem (Switzerland)'),
(53982, 'https://ror.org/05xf0e721', 'de', 1, 'https://ror.org/05xf0e721 Amt für Gemeinden und Raumordnung'),
(53983, 'https://ror.org/03nhgnd83', 'no_lang_code', 1, 'https://ror.org/03nhgnd83 BAK Basel Economics (Switzerland)'),
(53984, 'https://ror.org/00zd9a055', 'de', 1, 'https://ror.org/00zd9a055 Amt für Wald und Naturgefahren'),
(53985, 'https://ror.org/00g3rdy81', 'en', 1, 'https://ror.org/00g3rdy81 Swiss Institute for Regenerative Medicine'),
(53986, 'https://ror.org/00bmpd145', 'en', 1, 'https://ror.org/00bmpd145 Charles Humbert 8'),
(53987, 'https://ror.org/01sct5s94', 'en', 1, 'https://ror.org/01sct5s94 Basel Institute on Governance'),
(53988, 'https://ror.org/059akse30', 'de', 1, 'https://ror.org/059akse30 Basler Afrika Bibliographien'),
(53989, 'https://ror.org/02bjeev04', 'en', 1, 'https://ror.org/02bjeev04 Albanian National Training and Technical Assistance Resource Center'),
(53990, 'https://ror.org/03rzvxq48', 'de', 1, 'https://ror.org/03rzvxq48 Museum Kleines Klingental'),
(53991, 'https://ror.org/022tr6d79', 'no_lang_code', 1, 'https://ror.org/022tr6d79 Basys (Germany)'),
(53992, 'https://ror.org/00d3z0048', 'en', 1, 'https://ror.org/00d3z0048 Center for Liberal Democratic Studies'),
(53993, 'https://ror.org/005ag3f48', 'no_lang_code', 1, 'https://ror.org/005ag3f48 Batrec (Switzerland)'),
(53994, 'https://ror.org/007x2j456', 'no_lang_code', 1, 'https://ror.org/007x2j456 Batumi Botanical Garden ბათუმის ბოტანიკური ბაღი'),
(53995, 'https://ror.org/02nj3nr70', 'en', 1, 'https://ror.org/02nj3nr70 Caucasus Institute for Peace, Democracy and Development'),
(53996, 'https://ror.org/03hj6c016', 'en', 1, 'https://ror.org/03hj6c016 Berenson Allen Center for Noninvasive Brain Stimulation'),
(53997, 'https://ror.org/03kq6fs81', 'no_lang_code', 1, 'https://ror.org/03kq6fs81 Bau-, Verkehrs- und Energiedirektion (Switzerland)'),
(53998, 'https://ror.org/02pax0k58', 'fr', 1, 'https://ror.org/02pax0k58 Centre Interrégional de Perfectionnement'),
(53999, 'https://ror.org/032aq8297', 'fr', 1, 'https://ror.org/032aq8297 Alliance Sud'),
(54000, 'https://ror.org/05tstvt45', 'de', 1, 'https://ror.org/05tstvt45 Baudirektion Kanton Zürich'),
(54001, 'https://ror.org/00zy1vd16', 'fr', 1, 'https://ror.org/00zy1vd16 Centre National de Recherches sur l''Environnement'),
(54002, 'https://ror.org/00h16dr76', 'en', 1, 'https://ror.org/00h16dr76 Center for Social and Economic Research Центр соціально-економічних досліджень'),
(54003, 'https://ror.org/02ez1h514', 'no_lang_code', 1, 'https://ror.org/02ez1h514 Center for Social Research Analitika'),
(54004, 'https://ror.org/05p46v555', 'en', 1, 'https://ror.org/05p46v555 Centre for Advanced Study'),
(54005, 'https://ror.org/02sqc6c92', 'en', 1, 'https://ror.org/02sqc6c92 Vive Zene Vive Zene Centar za terapiju i rehabilitaciju'),
(54006, 'https://ror.org/04wsv7966', 'en', 1, 'https://ror.org/04wsv7966 Center for Vascular Biology Research'),
(54007, 'https://ror.org/01zvbyp59', 'fr', 1, 'https://ror.org/01zvbyp59 Archives Cantonales Vaudoises'),
(54008, 'https://ror.org/04kbbt849', 'en', 1, 'https://ror.org/04kbbt849 Chemical Synthesis Lab'),
(54009, 'https://ror.org/03aqj2f62', 'fr', 1, 'https://ror.org/03aqj2f62 Institut des Sciences du Végétal'),
(54010, 'https://ror.org/053rebd44', 'it', 1, 'https://ror.org/053rebd44 Associazione Frantz Fanon'),
(54011, 'https://ror.org/00r9ndf16', 'en', 1, 'https://ror.org/00r9ndf16 Centre for Political Courage'),
(54012, 'https://ror.org/00q2tna33', 'it', 1, 'https://ror.org/00q2tna33 Associazione della Croce Rossa Italiana'),
(54013, 'https://ror.org/045518148', 'en', 1, 'https://ror.org/045518148 Centre for Regional Policy Research and Cooperation Studiorum'),
(54014, 'https://ror.org/04b988286', 'en', 1, 'https://ror.org/04b988286 Centre for Socio-Eco-Nomic Development'),
(54015, 'https://ror.org/00187xa56', 'no_lang_code', 1, 'https://ror.org/00187xa56 Crossject (France)'),
(54016, 'https://ror.org/00rxf9f27', 'en', 1, 'https://ror.org/00rxf9f27 Columbia Global Centers'),
(54017, 'https://ror.org/01d6br473', 'de', 1, 'https://ror.org/01d6br473 Christlicher Friedensdienst'),
(54018, 'https://ror.org/05p799h65', 'de', 1, 'https://ror.org/05p799h65 ch Stiftung für Eidgenössische Zusammenarbeit'),
(54019, 'https://ror.org/021tw0b31', 'fr', 1, 'https://ror.org/021tw0b31 Conférence Intercantonale de l''Instruction Publique de la Suisse Romande et du Tessin'),
(54020, 'https://ror.org/02jj87h97', 'no_lang_code', 1, 'https://ror.org/02jj87h97 Elcotherm (Switzerland)'),
(54021, 'https://ror.org/05r0gt719', 'no_lang_code', 1, 'https://ror.org/05r0gt719 Dadar Athornan Institute'),
(54022, 'https://ror.org/00zs45r78', 'no_lang_code', 1, 'https://ror.org/00zs45r78 Circuit Therapeutics (United States)'),
(54023, 'https://ror.org/02384ye22', 'en', 1, 'https://ror.org/02384ye22 Dangoria Charitable Trust'),
(54024, 'https://ror.org/04kdvs983', 'en', 1, 'https://ror.org/04kdvs983 Archivio Segreto Vaticano Archivum Secretum Apostolicum Vaticanum Vatican Secret Archives'),
(54025, 'https://ror.org/01q1tcv22', 'en', 1, 'https://ror.org/01q1tcv22 Centre for Higher Education Centrum für Hochschulentwicklung'),
(54026, 'https://ror.org/000y6ah26', 'es', 1, 'https://ror.org/000y6ah26 CIUDAD'),
(54027, 'https://ror.org/05t2h5z30', 'no_lang_code', 1, 'https://ror.org/05t2h5z30 CLAC (Switzerland)'),
(54028, 'https://ror.org/02d5c3630', 'fr', 1, 'https://ror.org/02d5c3630 Institution de Lavigny'),
(54029, 'https://ror.org/05yg2by49', 'no_lang_code', 1, 'https://ror.org/05yg2by49 Dartfish (Switzerland)'),
(54030, 'https://ror.org/003w4a433', 'en', 1, 'https://ror.org/003w4a433 Corpus Vitrearum International Recherche Internationale sur le Vitrail'),
(54031, 'https://ror.org/05hq3fk51', 'de', 1, 'https://ror.org/05hq3fk51 Departement für Erziehung und Kultur'),
(54032, 'https://ror.org/01jd40n62', 'en', 1, 'https://ror.org/01jd40n62 Centre de Procréation Médicalement Assistée Centre for Medically Assisted Procreation'),
(54033, 'https://ror.org/007kemd69', 'no_lang_code', 1, 'https://ror.org/007kemd69 Debiotech (Switzerland)'),
(54034, 'https://ror.org/04j3c4348', 'de', 1, 'https://ror.org/04j3c4348 Debrunner Sozialforschung und Projekte'),
(54035, 'https://ror.org/00memet03', 'no_lang_code', 1, 'https://ror.org/00memet03 Sunstar (Switzerland)'),
(54036, 'https://ror.org/01ar7b291', 'en', 1, 'https://ror.org/01ar7b291 Delegation of the European Union to Guinea Délégation de l’Union Européenne en République de Guinée'),
(54037, 'https://ror.org/041hmhr55', 'de', 1, 'https://ror.org/041hmhr55 Denkmalpflege und Archäologie'),
(54038, 'https://ror.org/035a07q19', 'fr', 1, 'https://ror.org/035a07q19 Hirslanden Clinique des Grangettes'),
(54039, 'https://ror.org/0395s1g07', 'fr', 1, 'https://ror.org/0395s1g07 Clinique de La Source'),
(54040, 'https://ror.org/05sbk4q39', 'de', 1, 'https://ror.org/05sbk4q39 Clinique Montbrillant'),
(54041, 'https://ror.org/03r8and30', 'de', 1, 'https://ror.org/03r8and30 Club Bel Etage'),
(54042, 'https://ror.org/03ck95c19', 'en', 1, 'https://ror.org/03ck95c19 Institute for Regional Economics Библиотека Института проблем региональной экономики'),
(54043, 'https://ror.org/03dpmhz82', 'en', 1, 'https://ror.org/03dpmhz82 Ministry of Health of Kyrgyzstan Министерство здравоохранения Кыргызской Республики'),
(54044, 'https://ror.org/04t2jbs80', 'no_lang_code', 1, 'https://ror.org/04t2jbs80 Dionea (Switzerland)'),
(54045, 'https://ror.org/02k4k2v28', 'fr', 1, 'https://ror.org/02k4k2v28 Office Médico Pédagogique'),
(54046, 'https://ror.org/012h24p18', 'de', 1, 'https://ror.org/012h24p18 Forschungs und Dokumentationsstelle Kind und Umwelt'),
(54047, 'https://ror.org/0047q0m13', 'no_lang_code', 1, 'https://ror.org/0047q0m13 Ecosens (Switzerland)'),
(54048, 'https://ror.org/016pgbd19', 'no_lang_code', 1, 'https://ror.org/016pgbd19 Éditions Gallimard (France)'),
(54049, 'https://ror.org/015zgrj36', 'de', 1, 'https://ror.org/015zgrj36 Egger Kommunikation'),
(54050, 'https://ror.org/04j690992', 'en', 1, 'https://ror.org/04j690992 Egypt Nanotechnology Center مركز مصر للنانو تكنولوجي'),
(54051, 'https://ror.org/00kdsdv26', 'fr', 1, 'https://ror.org/00kdsdv26 Musée d’histoire du Valais'),
(54052, 'https://ror.org/02bv9mm66', 'en', 1, 'https://ror.org/02bv9mm66 Eidgenössische Fachkommission für Biologische Sicherheit Swiss Expert Committee for Biosafety'),
(54053, 'https://ror.org/02ja02d95', 'no_lang_code', 1, 'https://ror.org/02ja02d95 Dr Heinrich Jäckli (Switzerland)'),
(54054, 'https://ror.org/01s307r42', 'no_lang_code', 1, 'https://ror.org/01s307r42 Drolshammer Strategy and Law (Switzerland)'),
(54055, 'https://ror.org/013177044', 'de', 1, 'https://ror.org/013177044 Dialog N'),
(54056, 'https://ror.org/04enpqf37', 'en', 1, 'https://ror.org/04enpqf37 Ambassade de Suisse aux Etats-Unis d’Amérique Embassy of Switzerland in Washington'),
(54057, 'https://ror.org/03apaxe73', 'no_lang_code', 1, 'https://ror.org/03apaxe73 E2A Architects (Switzerland)'),
(54058, 'https://ror.org/03rzhkf33', 'en', 1, 'https://ror.org/03rzhkf33 Australian Resources Research Centre'),
(54059, 'https://ror.org/021r5zp58', 'de', 1, 'https://ror.org/021r5zp58 Engeriedspital'),
(54060, 'https://ror.org/04gcpmc06', 'no_lang_code', 1, 'https://ror.org/04gcpmc06 Enter (Switzerland)'),
(54061, 'https://ror.org/00px2aj27', 'en', 1, 'https://ror.org/00px2aj27 Haute École d''ingénierie et d''architecture de Fribourg School of Engineering and Architecture of Fribourg'),
(54062, 'https://ror.org/01jczg854', 'no_lang_code', 1, 'https://ror.org/01jczg854 Skat Consulting (Switzerland)'),
(54063, 'https://ror.org/003g8w998', 'de', 1, 'https://ror.org/003g8w998 Amt für Hochbauten'),
(54064, 'https://ror.org/002tnjb86', 'de', 1, 'https://ror.org/002tnjb86 Abteilung Bildungsplanung und Evaluation'),
(54065, 'https://ror.org/02gk2rq91', 'fr', 1, 'https://ror.org/02gk2rq91 École Secondaire de Nyon Marens'),
(54066, 'https://ror.org/00pq1ak56', 'fr', 1, 'https://ror.org/00pq1ak56 Etablissement Primaire et Secondaire Vevey'),
(54067, 'https://ror.org/00wp3ct36', 'en', 1, 'https://ror.org/00wp3ct36 Euro Balkan University Универзитет Евро-Балкан'),
(54068, 'https://ror.org/0532w5z20', 'en', 1, 'https://ror.org/0532w5z20 European Institute for Legal Psychology Europäisches Institut für Rechtspsychologie'),
(54069, 'https://ror.org/057wy2y58', 'en', 1, 'https://ror.org/057wy2y58 European Platform of Women Scientists'),
(54070, 'https://ror.org/01t6wgp30', 'fr', 1, 'https://ror.org/01t6wgp30 Affidea'),
(54071, 'https://ror.org/02nntm845', 'it', 1, 'https://ror.org/02nntm845 Inclusione Andicap Ticino'),
(54072, 'https://ror.org/01dyja912', 'no_lang_code', 1, 'https://ror.org/01dyja912 Ferarihs'),
(54073, 'https://ror.org/04qb2wt25', 'de', 1, 'https://ror.org/04qb2wt25 Gesundheits- und Fürsorgedirektion des Kantons Bern'),
(54074, 'https://ror.org/02g9eyr35', 'de', 1, 'https://ror.org/02g9eyr35 Forum für Zeitfragen'),
(54075, 'https://ror.org/03ans1x38', 'de', 1, 'https://ror.org/03ans1x38 Departement Gesundheit und Soziales'),
(54076, 'https://ror.org/00bs8t174', 'de', 1, 'https://ror.org/00bs8t174 Gesundheitsdienst'),
(54077, 'https://ror.org/05kvv8w92', 'en', 1, 'https://ror.org/05kvv8w92 Foundation for promoting Information and Communication Technology Fundaţia Pentru Promovarea Tehnologiei Informaţiei şi Comunicaţiei'),
(54078, 'https://ror.org/05t96nf23', 'de', 1, 'https://ror.org/05t96nf23 Departement Bildung, Kultur und Sport'),
(54079, 'https://ror.org/029d43v21', 'en', 1, 'https://ror.org/029d43v21 Foundation for Research and Socio Ecological Harmony'),
(54080, 'https://ror.org/03cyt4c89', 'fr', 1, 'https://ror.org/03cyt4c89 Hôpital du Jura Bernois'),
(54081, 'https://ror.org/0231gtc30', 'fr', 1, 'https://ror.org/0231gtc30 Fondation de Nant'),
(54082, 'https://ror.org/04xzb7w94', 'fr', 1, 'https://ror.org/04xzb7w94 Fondation Gandur pour l’Art'),
(54083, 'https://ror.org/02c62pw26', 'no_lang_code', 1, 'https://ror.org/02c62pw26 Hosoya Schaefer Architects (Switzerland)'),
(54084, 'https://ror.org/01nzca339', 'en', 1, 'https://ror.org/01nzca339 Fondation Pierre du Bois Pierre du Bois Foundation'),
(54085, 'https://ror.org/00gc5g440', 'en', 1, 'https://ror.org/00gc5g440 Ballenberg Freilichtmuseum der Schweiz Ballenberg Swiss Open-Air Museum'),
(54086, 'https://ror.org/002750k58', 'fr', 1, 'https://ror.org/002750k58 Fondation Suisse pour les Téléthèses'),
(54087, 'https://ror.org/05f99zn18', 'en', 1, 'https://ror.org/05f99zn18 Fruit Growing Institute Институт по Овощарство'),
(54088, 'https://ror.org/024t02d47', 'en', 1, 'https://ror.org/024t02d47 Hydrobiological Institute Хидробиолошки Институт'),
(54089, 'https://ror.org/0573v8y73', 'it', 1, 'https://ror.org/0573v8y73 Fondazione Bolle di Magadino'),
(54090, 'https://ror.org/05msa1857', 'it', 1, 'https://ror.org/05msa1857 Fondazione Pellegrini Canevascini'),
(54091, 'https://ror.org/01enwhw69', 'de', 1, 'https://ror.org/01enwhw69 Sozialamt des Kantons Thurgau'),
(54092, 'https://ror.org/01vag2q21', 'de', 1, 'https://ror.org/01vag2q21 Forel Klinik'),
(54093, 'https://ror.org/05qs24e23', 'no_lang_code', 1, 'https://ror.org/05qs24e23 Hier und Jetzt (Switzerland)'),
(54094, 'https://ror.org/00zm8c694', 'no_lang_code', 1, 'https://ror.org/00zm8c694 IC Infraconsult (Switzerland)'),
(54095, 'https://ror.org/037ne1y28', 'no_lang_code', 1, 'https://ror.org/037ne1y28 HighDim (Switzerland)'),
(54096, 'https://ror.org/0249zbx82', 'en', 1, 'https://ror.org/0249zbx82 Institutul de Cercetari Metalurgice Metallurgical Research Institute'),
(54097, 'https://ror.org/016fqsx25', 'en', 1, 'https://ror.org/016fqsx25 Formation Continue UNIL-EPFL'),
(54098, 'https://ror.org/0465j8q23', 'de', 1, 'https://ror.org/0465j8q23 Historischer Verein des Kantons Schwyz'),
(54099, 'https://ror.org/0541hm480', 'de', 1, 'https://ror.org/0541hm480 Stadtbibliothek Winterthur'),
(54100, 'https://ror.org/05y18s311', 'no_lang_code', 1, 'https://ror.org/05y18s311 Guagliardi Ruoss (Switzerland)'),
(54101, 'https://ror.org/04vmvjq74', 'de', 1, 'https://ror.org/04vmvjq74 Historisches Museum Olten'),
(54102, 'https://ror.org/05hkd2w18', 'fr', 1, 'https://ror.org/05hkd2w18 Gymnase de la rue des Alpes'),
(54103, 'https://ror.org/050qj5a78', 'fr', 1, 'https://ror.org/050qj5a78 Gymnase du Bugnon'),
(54104, 'https://ror.org/04b9pxw89', 'de', 1, 'https://ror.org/04b9pxw89 Gymnasien Kirchenfeld'),
(54105, 'https://ror.org/052xrhc79', 'de', 1, 'https://ror.org/052xrhc79 Gymnasium am Münsterplatz'),
(54106, 'https://ror.org/00g4vzf03', 'de', 1, 'https://ror.org/00g4vzf03 Stadt Zürich Hochbaudepartement'),
(54107, 'https://ror.org/05hy9mg53', 'de', 1, 'https://ror.org/05hy9mg53 Hochgebirgsklinik Davos'),
(54108, 'https://ror.org/02p85dj71', 'no_lang_code', 1, 'https://ror.org/02p85dj71 Geo7 (Switzerland)'),
(54109, 'https://ror.org/02yh57h22', 'de', 1, 'https://ror.org/02yh57h22 Forschungsstätte der Evangelischen Studiengemeinschaft'),
(54110, 'https://ror.org/02gmhaq29', 'de', 1, 'https://ror.org/02gmhaq29 Gerichte Zürich'),
(54111, 'https://ror.org/0254rs835', 'de', 1, 'https://ror.org/0254rs835 Gesellschaft für Hochschulforschung'),
(54112, 'https://ror.org/01w4jyd92', 'de', 1, 'https://ror.org/01w4jyd92 Hartmann Dreyer'),
(54113, 'https://ror.org/027r3eh78', 'no_lang_code', 1, 'https://ror.org/027r3eh78 Infrastructure Management Consultants (Switzerland)'),
(54114, 'https://ror.org/05bgkkd24', 'de', 1, 'https://ror.org/05bgkkd24 Spital Lachen'),
(54115, 'https://ror.org/02gb28e58', 'no_lang_code', 1, 'https://ror.org/02gb28e58 Hässig Sustech (Switzerland)'),
(54116, 'https://ror.org/05ayx2752', 'no_lang_code', 1, 'https://ror.org/05ayx2752 Inser (Switzerland)'),
(54117, 'https://ror.org/02bt8gt55', 'fr', 1, 'https://ror.org/02bt8gt55 IMACTIS'),
(54118, 'https://ror.org/02k520m42', 'de', 1, 'https://ror.org/02k520m42 Imamed Radiologie Nordwest'),
(54119, 'https://ror.org/02dhdj549', 'fr', 1, 'https://ror.org/02dhdj549 Institut et Musée des Suisses dans le monde'),
(54120, 'https://ror.org/01h4ywk72', 'en', 1, 'https://ror.org/01h4ywk72 World Health Organization Regional Office for the Eastern Mediterranean'),
(54121, 'https://ror.org/04nfvby78', 'en', 1, 'https://ror.org/04nfvby78 World Health Organization Regional Office for the Western Pacific'),
(54122, 'https://ror.org/01m294726', 'en', 1, 'https://ror.org/01m294726 World Health Organization - Zimbabwe'),
(54123, 'https://ror.org/02af4h206', 'en', 1, 'https://ror.org/02af4h206 Institute of Archaeology and Ethnography ԳԱԱ ՀՆԱԳԻՏՈՒԹՅԱՆ ԵՎ ԱԶԳԱԳՐՈՒԹՅԱՆ ԻՆՍՏԻՏՈՒՏ'),
(54124, 'https://ror.org/01gh34y65', 'fr', 1, 'https://ror.org/01gh34y65 Institut et Musée Voltaire'),
(54125, 'https://ror.org/05kz5x194', 'fr', 1, 'https://ror.org/05kz5x194 Clinique Romande de Réadaptation'),
(54126, 'https://ror.org/05gvkjb48', 'en', 1, 'https://ror.org/05gvkjb48 Office of the Assistant Secretary for Planning and Evaluation'),
(54127, 'https://ror.org/03a1ck781', 'it', 1, 'https://ror.org/03a1ck781 Academia Engiadina'),
(54128, 'https://ror.org/001tn6x38', 'en', 1, 'https://ror.org/001tn6x38 Institut für Kommunikation & Führung Institute for Communication and Leadership'),
(54129, 'https://ror.org/01zvtwr46', 'de', 1, 'https://ror.org/01zvtwr46 Medizin Campus Bodensee'),
(54130, 'https://ror.org/04fj80m50', 'de', 1, 'https://ror.org/04fj80m50 Institut für Wirtschaftsstudien Basel'),
(54131, 'https://ror.org/05g23w557', 'fr', 1, 'https://ror.org/05g23w557 Institut National de la Statistique'),
(54132, 'https://ror.org/04y7jcj09', 'en', 1, 'https://ror.org/04y7jcj09 Institute of Hydrobiology Інститут Гідробіології'),
(54133, 'https://ror.org/05a73mk94', 'en', 1, 'https://ror.org/05a73mk94 Institut za poljoprivredu i turizam Poreč Institute of Agriculture and Tourism'),
(54134, 'https://ror.org/02asahb32', 'de', 1, 'https://ror.org/02asahb32 Institut Mathildenhöhe Darmstadt'),
(54135, 'https://ror.org/03xt6as58', 'de', 1, 'https://ror.org/03xt6as58 Institut Montana Zugerberg'),
(54136, 'https://ror.org/02smqg134', 'fr', 1, 'https://ror.org/02smqg134 Institut Supérieur de Biotechnologie de Sfax'),
(54137, 'https://ror.org/00029be75', 'en', 1, 'https://ror.org/00029be75 Institute of Biology of Komi Scientific Centre Института биологии Коми НЦ УрО РАН'),
(54138, 'https://ror.org/05q1vsm15', 'en', 1, 'https://ror.org/05q1vsm15 International Society of Electrochemistry'),
(54139, 'https://ror.org/05mpgew40', 'en', 1, 'https://ror.org/05mpgew40 Institute of Botany ՀՀ ԳԱԱ Բուսաբանության Ինստիտուտ'),
(54140, 'https://ror.org/022hhet17', 'en', 1, 'https://ror.org/022hhet17 Carnegie Endowment for International Peace'),
(54141, 'https://ror.org/057mgt359', 'en', 1, 'https://ror.org/057mgt359 Institute of Cryobiology and Food Technology'),
(54142, 'https://ror.org/01s019j29', 'en', 1, 'https://ror.org/01s019j29 Prime Minister''s Office Finland Statsrådets Kansli Valtioneuvoston Kanslia'),
(54143, 'https://ror.org/0442vtt97', 'en', 1, 'https://ror.org/0442vtt97 National Association of Development Organizations'),
(54144, 'https://ror.org/037jk8996', 'en', 1, 'https://ror.org/037jk8996 Institute of Ecology of Mountain Territories Институт экологии горных территорий РАН'),
(54145, 'https://ror.org/0132ebm72', 'en', 1, 'https://ror.org/0132ebm72 Institute for Balkan Studies and Centre for Thracology Институт за балканистика с център по тракология'),
(54146, 'https://ror.org/04v87ev31', 'en', 1, 'https://ror.org/04v87ev31 Institute of Occupational Medicine'),
(54147, 'https://ror.org/059mh1c03', 'en', 1, 'https://ror.org/059mh1c03 Institute for Biomedical Diagnostics and Research NALAZ'),
(54148, 'https://ror.org/053cfm252', 'en', 1, 'https://ror.org/053cfm252 Institute for Conflict Transformation and Peacebuilding'),
(54149, 'https://ror.org/01m7dbh13', 'en', 1, 'https://ror.org/01m7dbh13 Coğrafiya İnstitutu Institute of Geography'),
(54150, 'https://ror.org/0597v6438', 'en', 1, 'https://ror.org/0597v6438 Institute for Economic Research and Policy Consulting Інститут економічних досліджень та політичних консультацій'),
(54151, 'https://ror.org/03r6rhw30', 'en', 1, 'https://ror.org/03r6rhw30 Institute of Geological Sciences Երկրաբանական գիտությունների'),
(54152, 'https://ror.org/010y4ct40', 'it', 1, 'https://ror.org/010y4ct40 Istituto di Ortofonologia'),
(54153, 'https://ror.org/01y5w6t76', 'en', 1, 'https://ror.org/01y5w6t76 Istituto Trapianti d''Organo e Immunocitologia Organ Transplantation and Immunology Institute'),
(54154, 'https://ror.org/0074rcv14', 'en', 1, 'https://ror.org/0074rcv14 Institute for Soil Science and Agrochemistry Research Інститут ґрунтознавства та агрохімії імені О.Н. Соколовського'),
(54155, 'https://ror.org/05b9eba69', 'en', 1, 'https://ror.org/05b9eba69 Institute for Soil Science and Agricultural Chemistry Институт почвоведения и агрохимии СО РАН'),
(54156, 'https://ror.org/00meqs091', 'de', 1, 'https://ror.org/00meqs091 Justiz Gemeinde und Kirchendirektion'),
(54157, 'https://ror.org/034aqje35', 'en', 1, 'https://ror.org/034aqje35 International Dialogue Centre'),
(54158, 'https://ror.org/04zkx3f21', 'en', 1, 'https://ror.org/04zkx3f21 Jinja Municipal Council'),
(54159, 'https://ror.org/058krbm80', 'de', 1, 'https://ror.org/058krbm80 Staatsarchiv Nidwalden'),
(54160, 'https://ror.org/016y4db75', 'en', 1, 'https://ror.org/016y4db75 Spital Linth'),
(54161, 'https://ror.org/013k74819', 'de', 1, 'https://ror.org/013k74819 Kantonsarchäologie'),
(54162, 'https://ror.org/01er6ka68', 'de', 1, 'https://ror.org/01er6ka68 Kantonsarchäologie'),
(54163, 'https://ror.org/00wt28973', 'de', 1, 'https://ror.org/00wt28973 Kantonsbibliothek von Appenzell Ausserrhoden'),
(54164, 'https://ror.org/01dxemz65', 'de', 1, 'https://ror.org/01dxemz65 Kantonsbibliothek Vadiana St.Gallen'),
(54165, 'https://ror.org/04qdg5539', 'de', 1, 'https://ror.org/04qdg5539 Kantonsschule am Burggraben'),
(54166, 'https://ror.org/03r9c3w85', 'de', 1, 'https://ror.org/03r9c3w85 Kantonsschule Freudenberg'),
(54167, 'https://ror.org/03rcnp347', 'de', 1, 'https://ror.org/03rcnp347 Kantonsschule Olten'),
(54168, 'https://ror.org/02vzx1287', 'de', 1, 'https://ror.org/02vzx1287 Kantonsschule Schaffhausen'),
(54169, 'https://ror.org/01qf8tz10', 'de', 1, 'https://ror.org/01qf8tz10 Kollegium Spiritus Sanctus Brig'),
(54170, 'https://ror.org/02sy3xj90', 'en', 1, 'https://ror.org/02sy3xj90 IFB AdipositasErkrankungen IFB Adiposity Diseases'),
(54171, 'https://ror.org/00mgaf355', 'de', 1, 'https://ror.org/00mgaf355 Kantonsschule Stadelhofen'),
(54172, 'https://ror.org/000x56e42', 'de', 1, 'https://ror.org/000x56e42 Kantonsschule Zug'),
(54173, 'https://ror.org/03why0p66', 'de', 1, 'https://ror.org/03why0p66 Interbion'),
(54174, 'https://ror.org/03j8n6z33', 'en', 1, 'https://ror.org/03j8n6z33 Reagan-Udall Foundation'),
(54175, 'https://ror.org/02fmm1979', 'de', 1, 'https://ror.org/02fmm1979 Spitäler Schaffhausen'),
(54176, 'https://ror.org/003g9mh98', 'en', 1, 'https://ror.org/003g9mh98 International Center for Agribusiness Research and Education'),
(54177, 'https://ror.org/03v63hd28', 'no_lang_code', 1, 'https://ror.org/03v63hd28 Urangeologorazvedka Урангеологоразведка'),
(54178, 'https://ror.org/03fpt5m65', 'de', 1, 'https://ror.org/03fpt5m65 MVZ Labor Ravensburg'),
(54179, 'https://ror.org/00t6jgv77', 'en', 1, 'https://ror.org/00t6jgv77 Kazakh Scientific Reseach Institute for Ecology and Climate Координационного центра по изменению климата'),
(54180, 'https://ror.org/037wrv551', 'en', 1, 'https://ror.org/037wrv551 Kosovar Centre for Security Studies Qendra Kosovare për Studime të Sigurisë'),
(54181, 'https://ror.org/00gbp3k84', 'de', 1, 'https://ror.org/00gbp3k84 Klinik Bethesda'),
(54182, 'https://ror.org/034rw1w19', 'de', 1, 'https://ror.org/034rw1w19 Spital Muri'),
(54183, 'https://ror.org/04bbh4w12', 'es', 1, 'https://ror.org/04bbh4w12 Instituto Universitario de Profesiones Gerenciales'),
(54184, 'https://ror.org/02mkhqe40', 'de', 1, 'https://ror.org/02mkhqe40 Krisenintervention Schweiz'),
(54185, 'https://ror.org/0411rje29', 'no_lang_code', 1, 'https://ror.org/0411rje29 Laboratory of Glass Properties (Russia)'),
(54186, 'https://ror.org/04c87mr25', 'de', 1, 'https://ror.org/04c87mr25 Kulturamt Appenzell'),
(54187, 'https://ror.org/01a83sr17', 'de', 1, 'https://ror.org/01a83sr17 Kunsthaus Zug'),
(54188, 'https://ror.org/00yf3tm42', 'en', 1, 'https://ror.org/00yf3tm42 Center for Drug Evaluation and Research'),
(54189, 'https://ror.org/05hzdft06', 'en', 1, 'https://ror.org/05hzdft06 Center for Food Safety and Applied Nutrition'),
(54190, 'https://ror.org/02y55wr53', 'en', 1, 'https://ror.org/02y55wr53 Center for Veterinary Medicine'),
(54191, 'https://ror.org/05jmhh281', 'en', 1, 'https://ror.org/05jmhh281 National Center for Toxicological Research'),
(54192, 'https://ror.org/05r6hp586', 'no_lang_code', 1, 'https://ror.org/05r6hp586 Kutch Mahila Vikas Sanghatan'),
(54193, 'https://ror.org/006kf9d11', 'en', 1, 'https://ror.org/006kf9d11 Kyiv School of Economics Київська школа економіки'),
(54194, 'https://ror.org/00f89qm26', 'de', 1, 'https://ror.org/00f89qm26 Landesdenkmalamt Baden Württemberg'),
(54195, 'https://ror.org/03ce77208', 'en', 1, 'https://ror.org/03ce77208 Kyiv Mohyla Business School Києво-Могилянська Бізнес Школа'),
(54196, 'https://ror.org/05a9fs939', 'de', 1, 'https://ror.org/05a9fs939 Landwirtschaftliches Zentrum Liebegg'),
(54197, 'https://ror.org/0453rk787', 'fr', 1, 'https://ror.org/0453rk787 Laboratoire de Sciences de la Terre'),
(54198, 'https://ror.org/045gwct77', 'no_lang_code', 1, 'https://ror.org/045gwct77 Lenz & Staehelin (Switzerland)'),
(54199, 'https://ror.org/02c7g6d72', 'en', 1, 'https://ror.org/02c7g6d72 Lauener Foundation for Analytical Philosophy Lauener-Stiftung'),
(54200, 'https://ror.org/043m08574', 'fr', 1, 'https://ror.org/043m08574 Lausanne Natation'),
(54201, 'https://ror.org/04rxa0k64', 'it', 1, 'https://ror.org/04rxa0k64 Lega Ticinese Contro il Reumatismo'),
(54202, 'https://ror.org/039fymv14', 'no_lang_code', 1, 'https://ror.org/039fymv14 Malik Management (Switzerland)'),
(54203, 'https://ror.org/0535wgn29', 'en', 1, 'https://ror.org/0535wgn29 Mary Rose Trust'),
(54204, 'https://ror.org/03m2daf51', 'de', 1, 'https://ror.org/03m2daf51 Memory-Klinik Entlisberg'),
(54205, 'https://ror.org/00e17ad95', 'en', 1, 'https://ror.org/00e17ad95 Meyerlustenberger Lachenal Attorneys at Law');
INSERT INTO `rors` VALUES
(54206, 'https://ror.org/00pd5dx05', 'no_lang_code', 1, 'https://ror.org/00pd5dx05 Y-Parc (Switzerland)'),
(54207, 'https://ror.org/04rxsdm69', 'no_lang_code', 1, 'https://ror.org/04rxsdm69 Microsynth (Switzerland)'),
(54208, 'https://ror.org/044s8gt42', 'fr', 1, 'https://ror.org/044s8gt42 Musée cantonal de zoologie de Lausanne'),
(54209, 'https://ror.org/05crbhr50', 'fr', 1, 'https://ror.org/05crbhr50 Musée des beaux-arts de La Chaux-de-Fonds'),
(54210, 'https://ror.org/0135y0c80', 'de', 1, 'https://ror.org/0135y0c80 Mittelschul- und Berufsbildungsamt'),
(54211, 'https://ror.org/019fwhw29', 'en', 1, 'https://ror.org/019fwhw29 Muzeul Național al Ţăranului Român Romanian Peasant Museum'),
(54212, 'https://ror.org/04xcgfz03', 'no_lang_code', 1, 'https://ror.org/04xcgfz03 MME Legal (Switzerland)'),
(54213, 'https://ror.org/031zhyf70', 'it', 1, 'https://ror.org/031zhyf70 Museo di Valmaggia'),
(54214, 'https://ror.org/0229p0a70', 'it', 1, 'https://ror.org/0229p0a70 Museo Vincenzo Vela'),
(54215, 'https://ror.org/02waf2h92', 'no_lang_code', 1, 'https://ror.org/02waf2h92 Mobility Carsharing (Switzerland)'),
(54216, 'https://ror.org/041rqdp46', 'no_lang_code', 1, 'https://ror.org/041rqdp46 MCE Avocats (Switzerland)'),
(54217, 'https://ror.org/02nta4587', 'it', 1, 'https://ror.org/02nta4587 Museo Civico Villa dei Cedri'),
(54218, 'https://ror.org/05mrcfm45', 'es', 1, 'https://ror.org/05mrcfm45 Nes Naturaleza'),
(54219, 'https://ror.org/01kyt4w97', 'no_lang_code', 1, 'https://ror.org/01kyt4w97 NBE Therapeutics (Switzerland)'),
(54220, 'https://ror.org/00336ng80', 'de', 1, 'https://ror.org/00336ng80 Museum Appenzell'),
(54221, 'https://ror.org/05w1dmd75', 'no_lang_code', 1, 'https://ror.org/05w1dmd75 Med Discovery (Switzerland)'),
(54222, 'https://ror.org/03nwa6q52', 'no_lang_code', 1, 'https://ror.org/03nwa6q52 Med-Consilium (Switzerland)'),
(54223, 'https://ror.org/05avhxb06', 'de', 1, 'https://ror.org/05avhxb06 Museum im Lagerhaus'),
(54224, 'https://ror.org/043wdfc35', 'en', 1, 'https://ror.org/043wdfc35 Museum of Yugoslav History Muzej Jugoslavije'),
(54225, 'https://ror.org/05yj26y55', 'de', 1, 'https://ror.org/05yj26y55 Museo retico Museum retic Rätisches Museum'),
(54226, 'https://ror.org/029vrd053', 'en', 1, 'https://ror.org/029vrd053 Nepal Centre for Contemporary Research'),
(54227, 'https://ror.org/001tk4253', 'no_lang_code', 1, 'https://ror.org/001tk4253 Philips (China)'),
(54228, 'https://ror.org/05am0hk18', 'de', 1, 'https://ror.org/05am0hk18 Rietberg Museum'),
(54229, 'https://ror.org/03zgyfe94', 'en', 1, 'https://ror.org/03zgyfe94 Mountain Research Initiative'),
(54230, 'https://ror.org/046nmb538', 'de', 1, 'https://ror.org/046nmb538 NET Metrix'),
(54231, 'https://ror.org/01nxvt824', 'de', 1, 'https://ror.org/01nxvt824 Museum zu Allerheiligen'),
(54232, 'https://ror.org/03txfss92', 'de', 1, 'https://ror.org/03txfss92 Museumsgesellschaft Zürich'),
(54233, 'https://ror.org/03asdhg22', 'no_lang_code', 1, 'https://ror.org/03asdhg22 Myx (Switzerland)'),
(54234, 'https://ror.org/04zs69r73', 'no_lang_code', 1, 'https://ror.org/04zs69r73 Oekoscience (Switzerland)'),
(54235, 'https://ror.org/035ded219', 'no_lang_code', 1, 'https://ror.org/035ded219 RhySearch (Switzerland)'),
(54236, 'https://ror.org/00a99dg75', 'de', 1, 'https://ror.org/00a99dg75 Medienboard Berlin-Brandenburg'),
(54237, 'https://ror.org/023g71078', 'no_lang_code', 1, 'https://ror.org/023g71078 Medignition (Switzerland)'),
(54238, 'https://ror.org/00m590d63', 'de', 1, 'https://ror.org/00m590d63 Mediplant'),
(54239, 'https://ror.org/03szsag65', 'de', 1, 'https://ror.org/03szsag65 ÖKK (Switzerland)'),
(54240, 'https://ror.org/02b7e7p97', 'en', 1, 'https://ror.org/02b7e7p97 Institute of Philosophy, Sociology and Law'),
(54241, 'https://ror.org/02f0t3e51', 'en', 1, 'https://ror.org/02f0t3e51 National Center of Space Research and Technology'),
(54242, 'https://ror.org/02whbzt53', 'no_lang_code', 1, 'https://ror.org/02whbzt53 Planair (Switzerland)'),
(54243, 'https://ror.org/039a0eq51', 'de', 1, 'https://ror.org/039a0eq51 Ostkirchliches Institut Regensburg'),
(54244, 'https://ror.org/0271pk470', 'en', 1, 'https://ror.org/0271pk470 Plant and Fungi Biotechnology Laboratory'),
(54245, 'https://ror.org/058pgtg13', 'en', 1, 'https://ror.org/058pgtg13 Evelina London Children''s Healthcare'),
(54246, 'https://ror.org/05j7bjh16', 'fr', 1, 'https://ror.org/05j7bjh16 Police Cantonale de Genève'),
(54247, 'https://ror.org/05434yv04', 'de', 1, 'https://ror.org/05434yv04 Pestalozzianum'),
(54248, 'https://ror.org/001w3p255', 'de', 1, 'https://ror.org/001w3p255 Pflege-und Adoptivkinder Schweiz'),
(54249, 'https://ror.org/028kw5d11', 'no_lang_code', 1, 'https://ror.org/028kw5d11 New Guinea Binatang Research Center'),
(54250, 'https://ror.org/009j8n021', 'no_lang_code', 1, 'https://ror.org/009j8n021 Polynomics (Switzerland)'),
(54251, 'https://ror.org/000bcd992', 'it', 1, 'https://ror.org/000bcd992 Pontificio Istituto di Archeologia Cristiana'),
(54252, 'https://ror.org/04m1eta66', 'en', 1, 'https://ror.org/04m1eta66 Aigine Cultural Research Center'),
(54253, 'https://ror.org/00adb1q31', 'en', 1, 'https://ror.org/00adb1q31 Pushkin Museum Музей изобразительных искусств им. А.С. Пушкина'),
(54254, 'https://ror.org/02mw9as30', 'de', 1, 'https://ror.org/02mw9as30 Neues Museum Biel'),
(54255, 'https://ror.org/03ft9kk45', 'de', 1, 'https://ror.org/03ft9kk45 Praktischer Umweltschutz'),
(54256, 'https://ror.org/02xfh0g21', 'fr', 1, 'https://ror.org/02xfh0g21 Réseau Fribourgeois de Santé Mentale'),
(54257, 'https://ror.org/048ztsn21', 'en', 1, 'https://ror.org/048ztsn21 Cochrane'),
(54258, 'https://ror.org/02aqwrz59', 'no_lang_code', 1, 'https://ror.org/02aqwrz59 R + R Burger Und Partner (Switzerland)'),
(54259, 'https://ror.org/05598yn68', 'no_lang_code', 1, 'https://ror.org/05598yn68 Ringier (Switzerland)'),
(54260, 'https://ror.org/057h5ne89', 'no_lang_code', 1, 'https://ror.org/057h5ne89 Robert-Grandpierre et Rapp (Switzerland)'),
(54261, 'https://ror.org/02eqdmy88', 'en', 1, 'https://ror.org/02eqdmy88 Geological Survey of Kyrgyzstan Геологическая служба Кыргызстана'),
(54262, 'https://ror.org/008yk9930', 'de', 1, 'https://ror.org/008yk9930 Römisches Institut der Görres-Gesellschaft'),
(54263, 'https://ror.org/05mczez68', 'no_lang_code', 1, 'https://ror.org/05mczez68 Rosenthaler + Partner (Switzerland)'),
(54264, 'https://ror.org/00zw38x02', 'en', 1, 'https://ror.org/00zw38x02 Research Center of Maternal and Child Health Protection'),
(54265, 'https://ror.org/01w3m1m52', 'de', 1, 'https://ror.org/01w3m1m52 Departementssekretariat Schul- und Sportdepartement'),
(54266, 'https://ror.org/04nht1525', 'no_lang_code', 1, 'https://ror.org/04nht1525 Sampark'),
(54267, 'https://ror.org/00w8ecv17', 'de', 1, 'https://ror.org/00w8ecv17 Die Schweizer Fachstelle'),
(54268, 'https://ror.org/03mse1e58', 'no_lang_code', 1, 'https://ror.org/03mse1e58 St.Galler Stadtwerke (Switzerland)'),
(54269, 'https://ror.org/03d9zp606', 'de', 1, 'https://ror.org/03d9zp606 Schweizerische Gesellschaft für Ländliche Geschichte'),
(54270, 'https://ror.org/02dw90x37', 'de', 1, 'https://ror.org/02dw90x37 Schweizerischer Gewerkschaftsbund Union syndicale suisse Unione sindacale svizzera'),
(54271, 'https://ror.org/01w5qzb22', 'de', 1, 'https://ror.org/01w5qzb22 NZZ am Sonntag'),
(54272, 'https://ror.org/047n5wn91', 'no_lang_code', 1, 'https://ror.org/047n5wn91 Scanco Medical (Switzerland)'),
(54273, 'https://ror.org/00ssvjd95', 'de', 1, 'https://ror.org/00ssvjd95 Schweizerische Koordinationsstelle für Bildungsforschung'),
(54274, 'https://ror.org/031ew1v21', 'no_lang_code', 1, 'https://ror.org/031ew1v21 Schaffner (Switzerland)'),
(54275, 'https://ror.org/03pe1pm82', 'no_lang_code', 1, 'https://ror.org/03pe1pm82 Scherrer (Switzerland)'),
(54276, 'https://ror.org/03sq10a37', 'en', 1, 'https://ror.org/03sq10a37 Conferenza dei Vescovi svizzeri Conférence des évêques suisses Schweizer Bischofskonferenz Swiss Bishops Conference'),
(54277, 'https://ror.org/03nzsxf62', 'de', 1, 'https://ror.org/03nzsxf62 Schweizer Presserat'),
(54278, 'https://ror.org/0300sbr79', 'en', 1, 'https://ror.org/0300sbr79 Competition Commission Secretariat Wettbewerbskommission'),
(54279, 'https://ror.org/018fjx211', 'de', 1, 'https://ror.org/018fjx211 Schweizer Zither-Kulturzentrum'),
(54280, 'https://ror.org/01z6p8p31', 'en', 1, 'https://ror.org/01z6p8p31 Office of Infectious Diseases'),
(54281, 'https://ror.org/03afd3583', 'en', 1, 'https://ror.org/03afd3583 Schweizerische Akademie für Entwicklung Swiss Academy for Development'),
(54282, 'https://ror.org/046q3s698', 'de', 1, 'https://ror.org/046q3s698 Schweizer Allianz Gentechfrei'),
(54283, 'https://ror.org/05x86b629', 'fr', 1, 'https://ror.org/05x86b629 Société d''Etudes Töpffériennes'),
(54284, 'https://ror.org/05h634p83', 'no_lang_code', 1, 'https://ror.org/05h634p83 Credit Suisse (Switzerland)'),
(54285, 'https://ror.org/05h7xpn20', 'es', 1, 'https://ror.org/05h7xpn20 Servicio Nacional de Meteorología e Hidrología del Perú'),
(54286, 'https://ror.org/05ynech64', 'es', 1, 'https://ror.org/05ynech64 Servicio Nacional de Hidrología y Meteorología'),
(54287, 'https://ror.org/006knrb30', 'en', 1, 'https://ror.org/006knrb30 International Society for Military Law and the Law of War Société Internationale de Droit Militaire et de Droit de la Guerre'),
(54288, 'https://ror.org/015rwy490', 'de', 1, 'https://ror.org/015rwy490 Schweizerischer Juristenverein'),
(54289, 'https://ror.org/002ssx495', 'en', 1, 'https://ror.org/002ssx495 Parc National Suisse Parc Naziunal Svizzer Parco Nazionale Svizzero Schweizerischer Nationalpark Swiss National Park'),
(54290, 'https://ror.org/029k6t707', 'en', 1, 'https://ror.org/029k6t707 Institute of Ecosystem Study Istituto per lo Studio degli Ecosistemi'),
(54291, 'https://ror.org/02bbbyx25', 'en', 1, 'https://ror.org/02bbbyx25 Schweizerisches Gesundheitsobservatorium Swiss Health Observatory'),
(54292, 'https://ror.org/04jfcr240', 'no_lang_code', 1, 'https://ror.org/04jfcr240 Schwery Consulting (Switzerland)'),
(54293, 'https://ror.org/03ma5bv95', 'de', 1, 'https://ror.org/03ma5bv95 Statistische Amt Basel-Stadt'),
(54294, 'https://ror.org/02eg7y103', 'fr', 1, 'https://ror.org/02eg7y103 Direction de la Sécurité et de la Justice'),
(54295, 'https://ror.org/04bf54607', 'no_lang_code', 1, 'https://ror.org/04bf54607 Soudronic (Switzerland)'),
(54296, 'https://ror.org/02n7vdk57', 'no_lang_code', 1, 'https://ror.org/02n7vdk57 Soundtherm (Switzerland)'),
(54297, 'https://ror.org/009nd6m74', 'de', 1, 'https://ror.org/009nd6m74 Pro Helvetia'),
(54298, 'https://ror.org/01n0pr454', 'no_lang_code', 1, 'https://ror.org/01n0pr454 Scimetrica (Switzerland)'),
(54299, 'https://ror.org/05h0xb276', 'fr', 1, 'https://ror.org/05h0xb276 Service de l''Enfance et de la Jeunesse'),
(54300, 'https://ror.org/030dfzf23', 'de', 1, 'https://ror.org/030dfzf23 Sozialversicherungsgericht des Kantons Zürich'),
(54301, 'https://ror.org/02ezey555', 'no_lang_code', 1, 'https://ror.org/02ezey555 Strittmatter Partner (Switzerland)'),
(54302, 'https://ror.org/0396h7r78', 'no_lang_code', 1, 'https://ror.org/0396h7r78 Studi Associati (Switzerland)'),
(54303, 'https://ror.org/02p9aa336', 'fr', 1, 'https://ror.org/02p9aa336 Office de la Culture Section d''archéologie et Paléontologie'),
(54304, 'https://ror.org/036bs9x63', 'no_lang_code', 1, 'https://ror.org/036bs9x63 Suisag (Switzerland)'),
(54305, 'https://ror.org/04p4qmn53', 'no_lang_code', 1, 'https://ror.org/04p4qmn53 Suiselectra Consulting Engineers (Switzerland) Suiselectra Ingenieurunternehmung AG'),
(54306, 'https://ror.org/01camvb92', 'en', 1, 'https://ror.org/01camvb92 Fribourg Development Agency Promotion économique du canton de Fribourg'),
(54307, 'https://ror.org/00nmpgc29', 'no_lang_code', 1, 'https://ror.org/00nmpgc29 Supercomputing Systems (Switzerland)'),
(54308, 'https://ror.org/0248vx102', 'de', 1, 'https://ror.org/0248vx102 Schweizerische Gesellschaft für Kardiologie'),
(54309, 'https://ror.org/046e4b521', 'fr', 1, 'https://ror.org/046e4b521 Direction Générale de l''Enseignement Obligatoire - Enseignement Primaire'),
(54310, 'https://ror.org/00cw6jm89', 'en', 1, 'https://ror.org/00cw6jm89 Schweizerische Radio- und Fernsehgesellschaft Societad Svizra da Radio e Televisiun Società svizzera di radiotelevisione Société suisse de radiodiffusion et télévision Swiss Broadcasting Corporation'),
(54311, 'https://ror.org/029005e08', 'fr', 1, 'https://ror.org/029005e08 Département de la Santé et de l''Action Sociale'),
(54312, 'https://ror.org/003r4c219', 'fr', 1, 'https://ror.org/003r4c219 Service de Santé de la Jeunesse'),
(54313, 'https://ror.org/037xabw57', 'en', 1, 'https://ror.org/037xabw57 Swiss Integrative Center for Human Health'),
(54314, 'https://ror.org/03c4j0595', 'en', 1, 'https://ror.org/03c4j0595 Court of Arbitration for Sport Tribunal arbitral du sport'),
(54315, 'https://ror.org/01006rc90', 'en', 1, 'https://ror.org/01006rc90 Staatsarchiv des Kantons Bern State Archive of Bern'),
(54316, 'https://ror.org/05wv7q844', 'no_lang_code', 1, 'https://ror.org/05wv7q844 Trimarca (Switzerland)'),
(54317, 'https://ror.org/03sf5ja42', 'en', 1, 'https://ror.org/03sf5ja42 Swiss Stem Cell Foundation'),
(54318, 'https://ror.org/02t7v9117', 'de', 1, 'https://ror.org/02t7v9117 Staatsarchiv Luzern'),
(54319, 'https://ror.org/036gejb44', 'en', 1, 'https://ror.org/036gejb44 Tuba City Regional Health Care'),
(54320, 'https://ror.org/036qrws31', 'de', 1, 'https://ror.org/036qrws31 Staatsarchiv des Kantons Solothurn'),
(54321, 'https://ror.org/04z91z113', 'no_lang_code', 1, 'https://ror.org/04z91z113 Symbios Orthopédie (Switzerland)'),
(54322, 'https://ror.org/05p5nhz16', 'de', 1, 'https://ror.org/05p5nhz16 Staatskanzlei des Kantons Zürich'),
(54323, 'https://ror.org/002dtc250', 'no_lang_code', 1, 'https://ror.org/002dtc250 Syndicom (Switzerland)'),
(54324, 'https://ror.org/00ddy0v87', 'it', 1, 'https://ror.org/00ddy0v87 Ufficio di Statistica'),
(54325, 'https://ror.org/00nxm9m32', 'de', 1, 'https://ror.org/00nxm9m32 Stadtarchiv Bern'),
(54326, 'https://ror.org/0326ky169', 'de', 1, 'https://ror.org/0326ky169 Theologische Hochschule Chur'),
(54327, 'https://ror.org/00vbwpw70', 'de', 1, 'https://ror.org/00vbwpw70 Stadtgalerie Bern'),
(54328, 'https://ror.org/00bfx7n30', 'no_lang_code', 1, 'https://ror.org/00bfx7n30 Tamedia (Switzerland)'),
(54329, 'https://ror.org/028xcfg40', 'en', 1, 'https://ror.org/028xcfg40 P.S. Pasternak Research Institute for Mountain Forestry Украинский научно-исследовательский институт горного лесоводства'),
(54330, 'https://ror.org/05n813p54', 'no_lang_code', 1, 'https://ror.org/05n813p54 Burckhardt+Partner (Switzerland)'),
(54331, 'https://ror.org/01avs2k90', 'en', 1, 'https://ror.org/01avs2k90 Ulugh Beg Astronomical Institute'),
(54332, 'https://ror.org/00h5qcp65', 'fr', 1, 'https://ror.org/00h5qcp65 Touring Club Suisse'),
(54333, 'https://ror.org/032bsv240', 'de', 1, 'https://ror.org/032bsv240 Independent Commission of Experts Switzerland – Second World War Unabhängige Expertenkommission Schweiz'),
(54334, 'https://ror.org/03dt0c328', 'no_lang_code', 1, 'https://ror.org/03dt0c328 Tornos (Switzerland)'),
(54335, 'https://ror.org/03y2n5b37', 'es', 1, 'https://ror.org/03y2n5b37 Universidad Católica Lumen Gentium'),
(54336, 'https://ror.org/00qkj1g75', 'no_lang_code', 1, 'https://ror.org/00qkj1g75 SKK Landschaftsarchitekten (Switzerland)'),
(54337, 'https://ror.org/01x802g65', 'en', 1, 'https://ror.org/01x802g65 MRC Centre for Regenerative Medicine'),
(54338, 'https://ror.org/03pvhr873', 'no_lang_code', 1, 'https://ror.org/03pvhr873 SNZ Ingenieure und Planer (Switzerland)'),
(54339, 'https://ror.org/01fy1r152', 'no_lang_code', 1, 'https://ror.org/01fy1r152 Société d''Étude de l''Environnement (Switzerland)'),
(54340, 'https://ror.org/00vnjz480', 'de', 1, 'https://ror.org/00vnjz480 Verwaltungsgericht Kantons Aargau'),
(54341, 'https://ror.org/042z4g643', 'de', 1, 'https://ror.org/042z4g643 Swisslex'),
(54342, 'https://ror.org/000sg8a95', 'de', 1, 'https://ror.org/000sg8a95 Vereinigung der Walliser Museen'),
(54343, 'https://ror.org/040ch1c18', 'en', 1, 'https://ror.org/040ch1c18 Women''s Right to Education Programme'),
(54344, 'https://ror.org/036awb582', 'de', 1, 'https://ror.org/036awb582 Verwaltungsgericht Kantons Zürich'),
(54345, 'https://ror.org/00cv3vp39', 'fr', 1, 'https://ror.org/00cv3vp39 Verzone Woods Architectes'),
(54346, 'https://ror.org/02j5hfj76', 'fr', 1, 'https://ror.org/02j5hfj76 Department of Education, Youth and Culture Département de la Formation, de la Jeunesse et de la Culture'),
(54347, 'https://ror.org/003bz8x96', 'de', 1, 'https://ror.org/003bz8x96 Wiederkäuerklinik'),
(54348, 'https://ror.org/0269xd847', 'no_lang_code', 1, 'https://ror.org/0269xd847 Wüest Partner (Switzerland)'),
(54349, 'https://ror.org/00vts9t98', 'de', 1, 'https://ror.org/00vts9t98 VIA AudioVideoFotoKunst'),
(54350, 'https://ror.org/01rkrma98', 'en', 1, 'https://ror.org/01rkrma98 Virtu Public Affairs'),
(54351, 'https://ror.org/049ay0490', 'no_lang_code', 1, 'https://ror.org/049ay0490 Velobüro (Switzerland)'),
(54352, 'https://ror.org/01sja4271', 'no_lang_code', 1, 'https://ror.org/01sja4271 Vischer (Switzerland)'),
(54353, 'https://ror.org/02r3z7548', 'en', 1, 'https://ror.org/02r3z7548 Foundation for People with Rare Diseases Stiftung für Menschen mit seltenen Krankheiten'),
(54354, 'https://ror.org/03pjnvf85', 'en', 1, 'https://ror.org/03pjnvf85 Zürich Zoological Garden Zürich Zoologischer Garten'),
(54355, 'https://ror.org/01z5r3y12', 'de', 1, 'https://ror.org/01z5r3y12 Schweizerische Vereinigung für Landesplanung'),
(54356, 'https://ror.org/04ttxs071', 'en', 1, 'https://ror.org/04ttxs071 Berlin Zoological Garden Zoologischer Garten Berlin'),
(54357, 'https://ror.org/01nr0r658', 'de', 1, 'https://ror.org/01nr0r658 Vorarlberg Museum'),
(54358, 'https://ror.org/02r6dcw55', 'no_lang_code', 1, 'https://ror.org/02r6dcw55 Verlagsvertretung Susan Filges (Germany)'),
(54359, 'https://ror.org/01dph1h97', 'en', 1, 'https://ror.org/01dph1h97 Zurich Chamber of Commerce Zürcher Handelskammer'),
(54360, 'https://ror.org/019ygn834', 'de', 1, 'https://ror.org/019ygn834 Zentrum für Sprachtherapie'),
(54361, 'https://ror.org/003mh1m57', 'de', 1, 'https://ror.org/003mh1m57 Zürcher RehaZentrum Davos'),
(54362, 'https://ror.org/03cw8qd03', 'no_lang_code', 1, 'https://ror.org/03cw8qd03 Zurich Insurance Group (Switzerland) Zürich Versicherungen'),
(54363, 'https://ror.org/02dfnfz19', 'en', 1, 'https://ror.org/02dfnfz19 Women''s International League for Peace and Freedom'),
(54364, 'https://ror.org/03jrwxb40', 'no_lang_code', 1, 'https://ror.org/03jrwxb40 Zwahlen et Mayr (Switzerland)'),
(54365, 'https://ror.org/02897ye82', 'es', 1, 'https://ror.org/02897ye82 Fundación Alfonso Martín Escudero'),
(54366, 'https://ror.org/03zhx9h04', 'es', 1, 'https://ror.org/03zhx9h04 CaixaBank'),
(54367, 'https://ror.org/04zqaby77', 'no_lang_code', 1, 'https://ror.org/04zqaby77 Roemmers Laboratories (Argentina)'),
(54368, 'https://ror.org/01qwdc951', 'no_lang_code', 1, 'https://ror.org/01qwdc951 Bayer (Switzerland)'),
(54369, 'https://ror.org/03q56pj35', 'da', 1, 'https://ror.org/03q56pj35 Børnecancerfonden'),
(54370, 'https://ror.org/03pbfnd97', 'en', 1, 'https://ror.org/03pbfnd97 Foundation for Alcohol Research'),
(54371, 'https://ror.org/02kdrgt12', 'da', 1, 'https://ror.org/02kdrgt12 A.P. Møller og Hustru Chastine Mc-Kinney Møllers Fond'),
(54372, 'https://ror.org/0107h6s84', 'en', 1, 'https://ror.org/0107h6s84 Alfred Kordelin Foundation'),
(54373, 'https://ror.org/0481qb682', 'en', 1, 'https://ror.org/0481qb682 Direction générale de l’éducation, de la jeunesse, du sport et de la culture Directorate-General for Education, Youth, Sport and Culture Generaldirektion Bildung, Jugend, Sport und Kultur'),
(54374, 'https://ror.org/04993kw89', 'de', 1, 'https://ror.org/04993kw89 Departement für Wirtschaft, Soziales und Umwelt'),
(54375, 'https://ror.org/020hnjs91', 'sv', 1, 'https://ror.org/020hnjs91 Alfred Österlunds Stiftelse'),
(54376, 'https://ror.org/01ef4as46', 'en', 1, 'https://ror.org/01ef4as46 Direction Générale Recherche et innovation Directorate-General for Research and Innovation Generaldirektion Forschung und Innovation'),
(54377, 'https://ror.org/036jhs482', 'es', 1, 'https://ror.org/036jhs482 Fundación Alicia Koplowitz'),
(54378, 'https://ror.org/046q3c491', 'sv', 1, 'https://ror.org/046q3c491 Direktör Albert Påhlssons Stiftelse för Välgörenhet'),
(54379, 'https://ror.org/05wyebt73', 'fr', 1, 'https://ror.org/05wyebt73 Association pour l''Assistance à Domicile aux Insuffisants Respiratoire Chroniques'),
(54380, 'https://ror.org/02195qc46', 'en', 1, 'https://ror.org/02195qc46 Bunge & Born Foundation'),
(54381, 'https://ror.org/02t0dpg32', 'en', 1, 'https://ror.org/02t0dpg32 Caesars Foundation'),
(54382, 'https://ror.org/03ytay263', 'en', 1, 'https://ror.org/03ytay263 Donald Woods Foundation'),
(54383, 'https://ror.org/03g2f4v48', 'fr', 1, 'https://ror.org/03g2f4v48 Angers Loire Métropole'),
(54384, 'https://ror.org/05vvvp143', 'en', 1, 'https://ror.org/05vvvp143 California Dried Plum Board'),
(54385, 'https://ror.org/048016404', 'da', 1, 'https://ror.org/048016404 Dansk Kræftforsknings Fond'),
(54386, 'https://ror.org/031gcry19', 'de', 1, 'https://ror.org/031gcry19 Jackstädt Stiftung'),
(54387, 'https://ror.org/01eeqch44', 'es', 1, 'https://ror.org/01eeqch44 Agencia Canaria de Investigación, Innovación y Sociedad de la Información'),
(54388, 'https://ror.org/04521r875', 'fr', 1, 'https://ror.org/04521r875 Agence de l''eau Rhône Méditerranée Corse'),
(54389, 'https://ror.org/03qps9x60', 'fr', 1, 'https://ror.org/03qps9x60 Agence des Aires Marines Protégées'),
(54390, 'https://ror.org/01ars0856', 'en', 1, 'https://ror.org/01ars0856 Atlanta Clinical and Translational Science Institute'),
(54391, 'https://ror.org/00826gz80', 'de', 1, 'https://ror.org/00826gz80 Deutsche José Carreras Leukämie-Stiftung'),
(54392, 'https://ror.org/000x0ym82', 'no_lang_code', 1, 'https://ror.org/000x0ym82 Länsförsäkringar (Sweden)'),
(54393, 'https://ror.org/05akyca73', 'en', 1, 'https://ror.org/05akyca73 Agrisus Foundation – Sustainable Agriculture Fundação Agrisus'),
(54394, 'https://ror.org/01ar4tp47', 'en', 1, 'https://ror.org/01ar4tp47 Austrian Marshall Plan Foundation Marshallplan Jubiläumsstiftung'),
(54395, 'https://ror.org/02hfcar63', 'en', 1, 'https://ror.org/02hfcar63 Directorate General of Commercial Intelligence and Statistics'),
(54396, 'https://ror.org/02bz4qp22', 'en', 1, 'https://ror.org/02bz4qp22 Diabetes Research and Wellness Foundation'),
(54397, 'https://ror.org/02d6mgz84', 'en', 1, 'https://ror.org/02d6mgz84 Eläinlääketieteen Tutkimuksen Tukisäätiö Finnish Veterinary Foundation'),
(54398, 'https://ror.org/01nk16n48', 'en', 1, 'https://ror.org/01nk16n48 Azm & Saade Association'),
(54399, 'https://ror.org/00gsykk45', 'sv', 1, 'https://ror.org/00gsykk45 Åhlén-Stiftelsen'),
(54400, 'https://ror.org/031h5fa94', 'de', 1, 'https://ror.org/031h5fa94 Baden-Württemberg Stiftung'),
(54401, 'https://ror.org/04wf7sx08', 'da', 1, 'https://ror.org/04wf7sx08 Eva og Henry Frænkels Mindefond'),
(54402, 'https://ror.org/039najk11', 'es', 1, 'https://ror.org/039najk11 Fundacion Florencio Fiorini'),
(54403, 'https://ror.org/0341e7068', 'en', 1, 'https://ror.org/0341e7068 Fondation pour la médecine de laboratoire Foundation for laboratory medicine'),
(54404, 'https://ror.org/04kdcbs26', 'en', 1, 'https://ror.org/04kdcbs26 Foundation for the Promotion of Applied Scientific Research and Technology in Asturias Fundación para el Fomento en Asturias de la Investigación Científica Aplicada y la Tecnología'),
(54405, 'https://ror.org/027q2tw68', 'en', 1, 'https://ror.org/027q2tw68 National Centre for Research Methods'),
(54406, 'https://ror.org/04nq9y819', 'en', 1, 'https://ror.org/04nq9y819 Comic Relief'),
(54407, 'https://ror.org/05g34t253', 'no_lang_code', 1, 'https://ror.org/05g34t253 Planergemeinschaft für Stadt und Raum'),
(54408, 'https://ror.org/04v8d4779', 'es', 1, 'https://ror.org/04v8d4779 Fundación para la Innovación y la Prospectiva en Salud en España'),
(54409, 'https://ror.org/04ra91131', 'es', 1, 'https://ror.org/04ra91131 Fundación Ramón Areces'),
(54410, 'https://ror.org/051x4wh35', 'en', 1, 'https://ror.org/051x4wh35 Commonwealth Scholarship Commission'),
(54411, 'https://ror.org/03hzthr30', 'es', 1, 'https://ror.org/03hzthr30 Fundación Merck Salud'),
(54412, 'https://ror.org/05jdrrw50', 'de', 1, 'https://ror.org/05jdrrw50 Beilstein-Institut Beilstein-Institut zur Förderung der Chemischen Wissenschaften'),
(54413, 'https://ror.org/03k8d9631', 'no_lang_code', 1, 'https://ror.org/03k8d9631 Brazilian Metallurgy and Mining Company Companhia Brasileira de Metalurgia e Mineração (Brazil)'),
(54414, 'https://ror.org/04aj0cy60', 'en', 1, 'https://ror.org/04aj0cy60 Gabrielle’s Angel Foundation for Cancer Research'),
(54415, 'https://ror.org/04mbctq18', 'de', 1, 'https://ror.org/04mbctq18 Gebert Rüf Stiftung'),
(54416, 'https://ror.org/020apt798', 'en', 1, 'https://ror.org/020apt798 Finnish Foundation for Cardiovascular Research Sydäntutkimussäätiö'),
(54417, 'https://ror.org/03f420b93', 'fi', 1, 'https://ror.org/03f420b93 Tekniikan Edistämissäätiö'),
(54418, 'https://ror.org/01r2g4c66', 'en', 1, 'https://ror.org/01r2g4c66 Finnish Foundation of Veterinary Research Suomen eläinlääketieteen säätiö'),
(54419, 'https://ror.org/0593mby10', 'en', 1, 'https://ror.org/0593mby10 Finnish Medical Foundation Suomen Lääketieteen Säätiö'),
(54420, 'https://ror.org/053a16167', 'no_lang_code', 1, 'https://ror.org/053a16167 IRT Group (Australia)'),
(54421, 'https://ror.org/01bgymr29', 'fr', 1, 'https://ror.org/01bgymr29 Fondation Innovations en Infectiologie'),
(54422, 'https://ror.org/0499cjb39', 'en', 1, 'https://ror.org/0499cjb39 Greek Society of Rheumatology'),
(54423, 'https://ror.org/02gn6ta77', 'en', 1, 'https://ror.org/02gn6ta77 Isaac Newton Trust'),
(54424, 'https://ror.org/05f32qs32', 'en', 1, 'https://ror.org/05f32qs32 Hellenic Thoracic Society Ελληνική Πνευμονολογική Εταιρεία'),
(54425, 'https://ror.org/04xtzf071', 'fr', 1, 'https://ror.org/04xtzf071 Fondation Gustave & Simone Prévot'),
(54426, 'https://ror.org/05mb6z682', 'da', 1, 'https://ror.org/05mb6z682 Helsefonden'),
(54427, 'https://ror.org/054zjbk29', 'no_lang_code', 1, 'https://ror.org/054zjbk29 ISIS Medical (France)'),
(54428, 'https://ror.org/0153me927', 'fr', 1, 'https://ror.org/0153me927 Fondation Mathématiques Jacques Hadamard'),
(54429, 'https://ror.org/04wxm6g36', 'en', 1, 'https://ror.org/04wxm6g36 Ministry of Defense מִשְׂרַד הַבִּטָּחוֹן'),
(54430, 'https://ror.org/001wmc692', 'fi', 1, 'https://ror.org/001wmc692 Lastentautien Tutkimussäätiö'),
(54431, 'https://ror.org/032j40h62', 'en', 1, 'https://ror.org/032j40h62 Edmond J. Safra Philanthropic Foundation Fondation Philanthropique Edmond J Safra'),
(54432, 'https://ror.org/03tj32a09', 'en', 1, 'https://ror.org/03tj32a09 Jacobs Foundation'),
(54433, 'https://ror.org/013ww9721', 'en', 1, 'https://ror.org/013ww9721 Fondation Philippe Wiener - Maurice Anspach Wiener - Anspach Foundation'),
(54434, 'https://ror.org/04j9bkg25', 'fr', 1, 'https://ror.org/04j9bkg25 Fondation Sécurité Routière'),
(54435, 'https://ror.org/022wvrv65', 'en', 1, 'https://ror.org/022wvrv65 Jalmari and Rauha Ahokas Foundation Jalmari ja Rauha Ahokkaan Säätiö'),
(54436, 'https://ror.org/05h0e2y85', 'en', 1, 'https://ror.org/05h0e2y85 Città della Speranza Foundation'),
(54437, 'https://ror.org/02yqjk243', 'en', 1, 'https://ror.org/02yqjk243 Hope for Vision'),
(54438, 'https://ror.org/020tre550', 'en', 1, 'https://ror.org/020tre550 Ettore and Valeria Rossi Foundation Fondazione Ettore e Valeria Rossi'),
(54439, 'https://ror.org/052rbc006', 'it', 1, 'https://ror.org/052rbc006 Fondazione Oronzio e Niccolò De Nora'),
(54440, 'https://ror.org/02z5ef964', 'da', 1, 'https://ror.org/02z5ef964 Hørslev-Fonden'),
(54441, 'https://ror.org/046m71h07', 'en', 1, 'https://ror.org/046m71h07 Ministry of Higher Education and Scientific Research وزارة التعليم العالي والبحث العلمي'),
(54442, 'https://ror.org/00r6p8t42', 'en', 1, 'https://ror.org/00r6p8t42 Jeansson Foundations Jeanssons Stiftelser'),
(54443, 'https://ror.org/009bet131', 'sv', 1, 'https://ror.org/009bet131 Göranssonska Stiftelserna'),
(54444, 'https://ror.org/01hgwbr42', 'sv', 1, 'https://ror.org/01hgwbr42 Linnéa och Josef Carlssons Stiftelse'),
(54445, 'https://ror.org/05srw0r52', 'no_lang_code', 1, 'https://ror.org/05srw0r52 Check-Cap (Israel)'),
(54446, 'https://ror.org/04744k068', 'en', 1, 'https://ror.org/04744k068 Ministry of Industries and Innovation'),
(54447, 'https://ror.org/0269hs475', 'fi', 1, 'https://ror.org/0269hs475 Ida Montinin Säätiö'),
(54448, 'https://ror.org/037pcte91', 'en', 1, 'https://ror.org/037pcte91 Forest Genetics Council'),
(54449, 'https://ror.org/0382jhd52', 'en', 1, 'https://ror.org/0382jhd52 Iketani Science and Technology Foundation 公益財団法人 池谷科学技術振興財団'),
(54450, 'https://ror.org/00mgycb86', 'en', 1, 'https://ror.org/00mgycb86 Forschungskreis der Ernährungsindustrie Research Association of the German Food Industry'),
(54451, 'https://ror.org/03hvqcb43', 'en', 1, 'https://ror.org/03hvqcb43 Foulkes Foundation'),
(54452, 'https://ror.org/05jf66d94', 'no_lang_code', 1, 'https://ror.org/05jf66d94 Juho Vainio Foundation Juho Vainion Säätiö'),
(54453, 'https://ror.org/00fzq0880', 'fr', 1, 'https://ror.org/00fzq0880 Institut National de Prévention et d’Education pour la Santé'),
(54454, 'https://ror.org/01wc3vt02', 'en', 1, 'https://ror.org/01wc3vt02 Jung Foundation for Science and Research Jung-Stiftung für Wissenschaft und Forschung'),
(54455, 'https://ror.org/05xs6nw18', 'en', 1, 'https://ror.org/05xs6nw18 Maud Kuistila Memorial Foundation Maud Kuistilan Muistosäätiö'),
(54456, 'https://ror.org/02w907m39', 'en', 1, 'https://ror.org/02w907m39 Instrumentarium Science Foundation Instrumentariumin tiedesäätiö'),
(54457, 'https://ror.org/05dn7bp33', 'en', 1, 'https://ror.org/05dn7bp33 Hartmann Müller Foundation'),
(54458, 'https://ror.org/03hvemf42', 'en', 1, 'https://ror.org/03hvemf42 Foundation for Education and European Culture Το Ίδρυμα Παιδείας και Ευρωπαϊκού Πολιτισμού'),
(54459, 'https://ror.org/020zqa202', 'en', 1, 'https://ror.org/020zqa202 International Association for the Study of Dreams'),
(54460, 'https://ror.org/00yjgag34', 'en', 1, 'https://ror.org/00yjgag34 International Psychoanalytical Association'),
(54461, 'https://ror.org/00zwv5854', 'en', 1, 'https://ror.org/00zwv5854 KAUTE-säätiö Kaute Foundation'),
(54462, 'https://ror.org/0068ff141', 'en', 1, 'https://ror.org/0068ff141 Méditerranée Infection Foundation'),
(54463, 'https://ror.org/021k07d19', 'en', 1, 'https://ror.org/021k07d19 Nestlé Foundation'),
(54464, 'https://ror.org/00dkwrz68', 'en', 1, 'https://ror.org/00dkwrz68 Kenneth Rainin Foundation'),
(54465, 'https://ror.org/00v64cg28', 'en', 1, 'https://ror.org/00v64cg28 Cambridge Innovation Institute'),
(54466, 'https://ror.org/03hph6c57', 'en', 1, 'https://ror.org/03hph6c57 Foundation for Urban and Regional Studies'),
(54467, 'https://ror.org/01tm9ja22', 'sv', 1, 'https://ror.org/01tm9ja22 Neuroförbundet'),
(54468, 'https://ror.org/04b6xpy41', 'en', 1, 'https://ror.org/04b6xpy41 Neuromuscular Research Association Basel'),
(54469, 'https://ror.org/00fmf4r59', 'sv', 1, 'https://ror.org/00fmf4r59 Kjell och Märta Beijers Stiftelse'),
(54470, 'https://ror.org/029vj4k86', 'fr', 1, 'https://ror.org/029vj4k86 Mutuelle Générale de l''Éducation Nationale'),
(54471, 'https://ror.org/03g0p4t70', 'en', 1, 'https://ror.org/03g0p4t70 New Zealand wine'),
(54472, 'https://ror.org/05jwty529', 'en', 1, 'https://ror.org/05jwty529 Kone Foundation Koneen Säätiö'),
(54473, 'https://ror.org/052jy0t06', 'en', 1, 'https://ror.org/052jy0t06 Körber Foundation Körber Stiftung'),
(54474, 'https://ror.org/04qy50a03', 'en', 1, 'https://ror.org/04qy50a03 Friedrich Naumann Foundation Friedrich-Naumann-Stiftung für die Freiheit'),
(54475, 'https://ror.org/05htmcq63', 'en', 1, 'https://ror.org/05htmcq63 Nordic Co-operation Nordiske Samarbejde'),
(54476, 'https://ror.org/001yjew72', 'en', 1, 'https://ror.org/001yjew72 Kumagai Foundation for Science and Technology 熊谷科学技術振興財団'),
(54477, 'https://ror.org/009qg7s70', 'en', 1, 'https://ror.org/009qg7s70 Parkinson’s Disease Foundation of India'),
(54478, 'https://ror.org/01v77xw68', 'en', 1, 'https://ror.org/01v77xw68 Virginia-Carolinas Peanut Promotions'),
(54479, 'https://ror.org/02mchxt20', 'en', 1, 'https://ror.org/02mchxt20 Fondation du Nord en cancérologie Northern Cancer Foundation'),
(54480, 'https://ror.org/026ftd493', 'pt', 1, 'https://ror.org/026ftd493 Fundação Gorceix'),
(54481, 'https://ror.org/02j4h8a39', 'pt', 1, 'https://ror.org/02j4h8a39 Boticário Group Foundation Fundação Grupo Boticário'),
(54482, 'https://ror.org/04tx4kg58', 'en', 1, 'https://ror.org/04tx4kg58 Northwest Scientific Association'),
(54483, 'https://ror.org/006sx7h90', 'es', 1, 'https://ror.org/006sx7h90 Fundación Sandra Ibarra de Solidaridad Frente al Cáncer'),
(54484, 'https://ror.org/00a7jbz14', 'es', 1, 'https://ror.org/00a7jbz14 Fundación Caja Navarra'),
(54485, 'https://ror.org/006hbj696', 'en', 1, 'https://ror.org/006hbj696 Radium Hemmets Research Funds Radiumhemmets forskningsfonder'),
(54486, 'https://ror.org/0179vv482', 'en', 1, 'https://ror.org/0179vv482 Office of Postsecondary Education'),
(54487, 'https://ror.org/01d2prf79', 'fr', 1, 'https://ror.org/01d2prf79 Direction Générale des Entreprises'),
(54488, 'https://ror.org/01mzdh008', 'no_lang_code', 1, 'https://ror.org/01mzdh008 Equiservices Publishing (United States)'),
(54489, 'https://ror.org/02pyvsr17', 'en', 1, 'https://ror.org/02pyvsr17 Falk Foundation'),
(54490, 'https://ror.org/031s4pb13', 'en', 1, 'https://ror.org/031s4pb13 Office of Special Education and Rehabilitative Services'),
(54491, 'https://ror.org/00n58s174', 'en', 1, 'https://ror.org/00n58s174 Sveriges ögonläkarförening Swedish Ophthalmological Society'),
(54492, 'https://ror.org/04w82sp73', 'fr', 1, 'https://ror.org/04w82sp73 Secrétariat Général pour les Affaires Régionales'),
(54493, 'https://ror.org/0440znq24', 'en', 1, 'https://ror.org/0440znq24 Foundation Blanceflor'),
(54494, 'https://ror.org/046m7f751', 'en', 1, 'https://ror.org/046m7f751 Senri Life Science Foundation 千里ライフサイエンスセンター'),
(54495, 'https://ror.org/021tj4g88', 'en', 1, 'https://ror.org/021tj4g88 SENSHIN Medical Research Foundation 新情報処理振興財団'),
(54496, 'https://ror.org/01n1pt995', 'sv', 1, 'https://ror.org/01n1pt995 Stiftelsen Kronprinsessan Margaretas Arbetsnämnd för Synskadade'),
(54497, 'https://ror.org/0089t7988', 'en', 1, 'https://ror.org/0089t7988 Rosa Luxemburg Foundation Rosa-Luxemburg-Stiftung'),
(54498, 'https://ror.org/02z6q2y39', 'sv', 1, 'https://ror.org/02z6q2y39 Stiftelsen Längmanska Kulturfonden'),
(54499, 'https://ror.org/02kq92y46', 'en', 1, 'https://ror.org/02kq92y46 Shanghai Education Development Foundation 上海市教育发展基金会'),
(54500, 'https://ror.org/0446gjc92', 'en', 1, 'https://ror.org/0446gjc92 Oskar Öflund Foundation Oskar Öflunds Stiftelse'),
(54501, 'https://ror.org/02pqxz266', 'en', 1, 'https://ror.org/02pqxz266 STROKE-Riksförbundet Swedish Stroke Association'),
(54502, 'https://ror.org/04hb33h70', 'de', 1, 'https://ror.org/04hb33h70 Nationalstiftung für Forschung Technologie und Entwicklung'),
(54503, 'https://ror.org/01m6j6z72', 'en', 1, 'https://ror.org/01m6j6z72 Russian Humanitarian Foundation Российский Гуманитарный Научный Фонд'),
(54504, 'https://ror.org/02dt42634', 'da', 1, 'https://ror.org/02dt42634 Otto Mønsteds Fond'),
(54505, 'https://ror.org/009vp0837', 'fi', 1, 'https://ror.org/009vp0837 Paavo Nurmen Säätiö'),
(54506, 'https://ror.org/01qe64w73', 'fi', 1, 'https://ror.org/01qe64w73 Finnish Brain Foundation Suomen Aivosäätiö'),
(54507, 'https://ror.org/03bj5da63', 'en', 1, 'https://ror.org/03bj5da63 Päivikki and Sakari Sohlberg Foundation Päivikki ja Sakari Sohlbergin säätiö'),
(54508, 'https://ror.org/00v6ky380', 'sv', 1, 'https://ror.org/00v6ky380 Stiftelsen för vård- och allergiforskning Vårdal Stiftelsen'),
(54509, 'https://ror.org/02x0e6v58', 'en', 1, 'https://ror.org/02x0e6v58 Kusudohara Memorial Foundation 寿原記念財団'),
(54510, 'https://ror.org/01ct9s926', 'hu', 1, 'https://ror.org/01ct9s926 Pallas Athéné Domus Animae Alapítvány'),
(54511, 'https://ror.org/038937755', 'en', 1, 'https://ror.org/038937755 Stiftelsen Forska Utan Djurförsök Swedish Fund for Research Without Animal Experiments'),
(54512, 'https://ror.org/01hc0cn07', 'en', 1, 'https://ror.org/01hc0cn07 Stiftelsen Sveriges Sjömanshus Swedish Mercantile Marine Foundation'),
(54513, 'https://ror.org/031ww6378', 'en', 1, 'https://ror.org/031ww6378 Fujichiro Iijima Memorial Food Science Promotion Foundation 公益財団法人 飯島藤十郎記念食品科学振興財団'),
(54514, 'https://ror.org/03y44ky43', 'en', 1, 'https://ror.org/03y44ky43 Vehicle Games Public Utility Foundation Memorial Foundation 公益財団法人 車両競技公益資金記念財団'),
(54515, 'https://ror.org/00yp3hb50', 'fi', 1, 'https://ror.org/00yp3hb50 Tampereen Tuberkuloosisäätiö'),
(54516, 'https://ror.org/0267ebt82', 'fi', 1, 'https://ror.org/0267ebt82 Tauno Tönningin Säätiö'),
(54517, 'https://ror.org/02s3w5b11', 'en', 1, 'https://ror.org/02s3w5b11 Thermal and Electric Energy Technology Foundation 熱・電気エネルギー技術財団'),
(54518, 'https://ror.org/02najqa65', 'en', 1, 'https://ror.org/02najqa65 Thrivent Financial'),
(54519, 'https://ror.org/05pe31w16', 'en', 1, 'https://ror.org/05pe31w16 Shorai Foundation For Science And Technology 公益財団法人 松籟科学技術振興財団'),
(54520, 'https://ror.org/01654ws56', 'en', 1, 'https://ror.org/01654ws56 Technology Industries of Finland'),
(54521, 'https://ror.org/045r69s96', 'fi', 1, 'https://ror.org/045r69s96 Satakunnan Korkean Teknologian Säätiö'),
(54522, 'https://ror.org/016p3p817', 'en', 1, 'https://ror.org/016p3p817 Stichting Vanderes Vanderes Foundation'),
(54523, 'https://ror.org/01eqe2r17', 'en', 1, 'https://ror.org/01eqe2r17 Signe and Ane Gyllenberg Foundation Signe ja Ane Gyllenbergin säätiö'),
(54524, 'https://ror.org/03e00a165', 'en', 1, 'https://ror.org/03e00a165 Lasten syöpäsäätiö Väre Väre Foundation for Pediatric Cancer Research'),
(54525, 'https://ror.org/00ckakm23', 'en', 1, 'https://ror.org/00ckakm23 Sigrid Juséliuksen säätiö Sigrid Jusélius Foundation'),
(54526, 'https://ror.org/05j4zds77', 'en', 1, 'https://ror.org/05j4zds77 Virginia Lakes and Watersheds Association'),
(54527, 'https://ror.org/0574hzg66', 'en', 1, 'https://ror.org/0574hzg66 Yrjö Jahnsson Foundation Yrjö Jahnssonin säätiö'),
(54528, 'https://ror.org/03sbyrq11', 'en', 1, 'https://ror.org/03sbyrq11 Skogssällskapet Swedish Forest Society Foundation'),
(54529, 'https://ror.org/05m7g4v96', 'de', 1, 'https://ror.org/05m7g4v96 Von Behring-Röntgen-Stiftung'),
(54530, 'https://ror.org/05dze7277', 'en', 1, 'https://ror.org/05dze7277 Stanley Thomas Johnson Foundation Stanley Thomas Johnson Stiftung'),
(54531, 'https://ror.org/0066s0r72', 'en', 1, 'https://ror.org/0066s0r72 Ulla Tuominen Foundation Ulla Tuomisen Säätiö'),
(54532, 'https://ror.org/05x217f96', 'de', 1, 'https://ror.org/05x217f96 Steirische Wirtschaftsförderung'),
(54533, 'https://ror.org/04p4avd56', 'fr', 1, 'https://ror.org/04p4avd56 Société Académique de Genève'),
(54534, 'https://ror.org/01m41wz24', 'en', 1, 'https://ror.org/01m41wz24 Yamaguchi Endocrine Research Foundation'),
(54535, 'https://ror.org/01te5dc44', 'en', 1, 'https://ror.org/01te5dc44 Belgorod State University of Arts and Culture Белгородский государственный институт искусств и культуры'),
(54536, 'https://ror.org/0590mw537', 'en', 1, 'https://ror.org/0590mw537 Ministry of Emergency Situations Министерство по делам гражданской обороны, чрезвычайным ситуациям и ликвидации последствий стихийных бедствий'),
(54537, 'https://ror.org/006cjkj15', 'en', 1, 'https://ror.org/006cjkj15 Institute for the Humanities and Information Technologies Институт гуманитарного образования и информационных технологий'),
(54538, 'https://ror.org/00ez8pa22', 'en', 1, 'https://ror.org/00ez8pa22 Far Eastern State Institute of Arts Дальневосточный государственный институт искусств [править | править вики-текст]'),
(54539, 'https://ror.org/03gbw6p94', 'en', 1, 'https://ror.org/03gbw6p94 University of Technology Государственное бюджетное образовательное учреждение высшего образования Московской области Технологический университет'),
(54540, 'https://ror.org/00x8z6715', 'en', 1, 'https://ror.org/00x8z6715 Nevsky Institute of Language and Culture Невский Институт языка и культуры'),
(54541, 'https://ror.org/046chmz66', 'en', 1, 'https://ror.org/046chmz66 Institute of Social Sciences Институт социальных наук'),
(54542, 'https://ror.org/00njmse54', 'en', 1, 'https://ror.org/00njmse54 St. Petersburg University of the Humanities and Social Sciences Санкт-Петербургский гуманитарный университет профсоюзов [править | править вики-текст]'),
(54543, 'https://ror.org/05fe31323', 'en', 1, 'https://ror.org/05fe31323 Volga Region State Academy of Physical Culture, Sports and Tourism Поволжская государственная академия физической культуры, спорта и туризма'),
(54544, 'https://ror.org/05cwxhv57', 'en', 1, 'https://ror.org/05cwxhv57 V.V. Lukianov Orel Law Institute of the Ministry of Internal Affairs ОРЛОВСКИЙ ЮРИДИЧЕСКИЙ ИНСТИТУТ МИНИСТЕРСТВА ВНУТРЕННИХ ДЕЛ РОССИЙСКОЙ ФЕДЕРАЦИИ'),
(54545, 'https://ror.org/02qcz1b43', 'en', 1, 'https://ror.org/02qcz1b43 Voronezh State Institute of Physical Culture Воронежский государственный институт физической культуры'),
(54546, 'https://ror.org/008rrb089', 'en', 1, 'https://ror.org/008rrb089 Vyatka State University of Humanities Вятский государственный гуманитарный университет'),
(54547, 'https://ror.org/04kt35s46', 'en', 1, 'https://ror.org/04kt35s46 Zabaikalsky State Humanitarian and Pedagogical University Забайкальский государственный гуманитарно-педагогический университет имени Н. Г. Чернышевского'),
(54548, 'https://ror.org/04h1r6547', 'es', 1, 'https://ror.org/04h1r6547 Academia Nacional de Ciencia y Tecnología'),
(54549, 'https://ror.org/027jwtt54', 'fi', 1, 'https://ror.org/027jwtt54 Arvo ja Lea Ylppö Säätiö'),
(54550, 'https://ror.org/05h7zrz56', 'es', 1, 'https://ror.org/05h7zrz56 Atapuerca Foundation Fundación Atapuerca'),
(54551, 'https://ror.org/0183e1x96', 'en', 1, 'https://ror.org/0183e1x96 Minerals Council of Australia'),
(54552, 'https://ror.org/0003kpv33', 'en', 1, 'https://ror.org/0003kpv33 Biobanking and BioMolecular resources Research Infrastructure The Netherlands'),
(54553, 'https://ror.org/05pb4em20', 'en', 1, 'https://ror.org/05pb4em20 Bonn-Cologne Graduate School of Physics and Astronomy'),
(54554, 'https://ror.org/033pgsq69', 'no_lang_code', 1, 'https://ror.org/033pgsq69 Nova Insurance Services (China)'),
(54555, 'https://ror.org/056w8zz77', 'en', 1, 'https://ror.org/056w8zz77 Association chiropratique canadienne Canadian Chiropractic Association'),
(54556, 'https://ror.org/05g2nyd29', 'no_lang_code', 1, 'https://ror.org/05g2nyd29 BetaCat Pharmaceuticals (United States)'),
(54557, 'https://ror.org/028226726', 'en', 1, 'https://ror.org/028226726 Brian Mason Scientific & Technical Trust'),
(54558, 'https://ror.org/00cjvpn28', 'no_lang_code', 1, 'https://ror.org/00cjvpn28 Capital Group (United States)'),
(54559, 'https://ror.org/02sevrz47', 'es', 1, 'https://ror.org/02sevrz47 Gobierno de Chile'),
(54560, 'https://ror.org/02qab6y19', 'en', 1, 'https://ror.org/02qab6y19 China Environmental Protection Foundation'),
(54561, 'https://ror.org/03z45yy68', 'en', 1, 'https://ror.org/03z45yy68 Cicely Saunders International'),
(54562, 'https://ror.org/00t2x7r19', 'es', 1, 'https://ror.org/00t2x7r19 Centro Mexicano de Innovación en Energía Solar'),
(54563, 'https://ror.org/01r42z565', 'en', 1, 'https://ror.org/01r42z565 Computational Materials Science Initiative'),
(54564, 'https://ror.org/022482e21', 'en', 1, 'https://ror.org/022482e21 CRC for Spatial information'),
(54565, 'https://ror.org/00t1d7x20', 'no_lang_code', 1, 'https://ror.org/00t1d7x20 Clayton Biotechnologies (United States)'),
(54566, 'https://ror.org/04reg7v11', 'fr', 1, 'https://ror.org/04reg7v11 Conseil Départemental de la Haute-Savoie'),
(54567, 'https://ror.org/04c9dah88', 'fr', 1, 'https://ror.org/04c9dah88 Conseil Départemental des Vosges'),
(54568, 'https://ror.org/01ew2yc64', 'fr', 1, 'https://ror.org/01ew2yc64 Conseil Interprofessionnel du Vin de Bordeaux'),
(54569, 'https://ror.org/029c46924', 'fr', 1, 'https://ror.org/029c46924 Conseil Régional de Basse-Normandie'),
(54570, 'https://ror.org/053hq6b52', 'en', 1, 'https://ror.org/053hq6b52 Charlotte Metro Credit Union'),
(54571, 'https://ror.org/00gaz3763', 'en', 1, 'https://ror.org/00gaz3763 Legislative Council of Hong Kong 香港特別行政區立法會'),
(54572, 'https://ror.org/058yerw52', 'en', 1, 'https://ror.org/058yerw52 CRC CARE'),
(54573, 'https://ror.org/00qq8bd87', 'en', 1, 'https://ror.org/00qq8bd87 Consortium for the Advanced Simulation of Light Water Reactors'),
(54574, 'https://ror.org/04qb3yt59', 'it', 1, 'https://ror.org/04qb3yt59 Fondazione CRT'),
(54575, 'https://ror.org/03pmqmn38', 'it', 1, 'https://ror.org/03pmqmn38 Consorzio per la Fisica Trieste'),
(54576, 'https://ror.org/02gqwrx54', 'no_lang_code', 1, 'https://ror.org/02gqwrx54 Digiteo'),
(54577, 'https://ror.org/00mn4nn85', 'da', 1, 'https://ror.org/00mn4nn85 Svineafgiftsfonden'),
(54578, 'https://ror.org/02cxp1807', 'en', 1, 'https://ror.org/02cxp1807 Denver Zoo'),
(54579, 'https://ror.org/034ywsh12', 'en', 1, 'https://ror.org/034ywsh12 Northeast Climate Science Center'),
(54580, 'https://ror.org/02a6ezh03', 'es', 1, 'https://ror.org/02a6ezh03 Consejería de Educación y Empleo'),
(54581, 'https://ror.org/000kjq947', 'en', 1, 'https://ror.org/000kjq947 Department of Space'),
(54582, 'https://ror.org/0507cba95', 'en', 1, 'https://ror.org/0507cba95 Duchenne Now'),
(54583, 'https://ror.org/05csgyk98', 'en', 1, 'https://ror.org/05csgyk98 Egyptian Government'),
(54584, 'https://ror.org/03dnx2782', 'en', 1, 'https://ror.org/03dnx2782 Einhorn Family Charitable Trust'),
(54585, 'https://ror.org/01jkyjd96', 'en', 1, 'https://ror.org/01jkyjd96 Hebei Provincial Department of Education 河北省教育厅'),
(54586, 'https://ror.org/00xfww534', 'en', 1, 'https://ror.org/00xfww534 Energy Pipelines CRC'),
(54587, 'https://ror.org/03ct46856', 'en', 1, 'https://ror.org/03ct46856 Environment Canterbury'),
(54588, 'https://ror.org/01fcjp983', 'en', 1, 'https://ror.org/01fcjp983 Environmental Investment Centre Keskkonnainvesteeringute Keskus'),
(54589, 'https://ror.org/03n0fvd12', 'en', 1, 'https://ror.org/03n0fvd12 Government of Estonia Vabariigi Valitsus'),
(54590, 'https://ror.org/02cxejv02', 'en', 1, 'https://ror.org/02cxejv02 Epilepsy Study Consortium'),
(54591, 'https://ror.org/01ep8wa33', 'en', 1, 'https://ror.org/01ep8wa33 European Copper Institute'),
(54592, 'https://ror.org/01hffx244', 'no_lang_code', 1, 'https://ror.org/01hffx244 Sitra Suomen itsenäisyyden juhlarahasto'),
(54593, 'https://ror.org/00whf4s48', 'en', 1, 'https://ror.org/00whf4s48 Finnish Parkinson Foundation Suomen Parkinson-säätiö'),
(54594, 'https://ror.org/0100zbm77', 'en', 1, 'https://ror.org/0100zbm77 Federation of European Biochemical Societies'),
(54595, 'https://ror.org/04h7caf58', 'it', 1, 'https://ror.org/04h7caf58 UBI Banca'),
(54596, 'https://ror.org/01grrhm91', 'fr', 1, 'https://ror.org/01grrhm91 Renatech'),
(54597, 'https://ror.org/05hnjz787', 'en', 1, 'https://ror.org/05hnjz787 Foundation for Growth Science 成長科学協会'),
(54598, 'https://ror.org/039vtmd91', 'no_lang_code', 1, 'https://ror.org/039vtmd91 Jazz Pharmaceuticals (Italy)'),
(54599, 'https://ror.org/0099z8h13', 'en', 1, 'https://ror.org/0099z8h13 Deutsch-Israelische Zusammenarbeit German-Israeli Cooperation'),
(54600, 'https://ror.org/011kmvk73', 'en', 1, 'https://ror.org/011kmvk73 Global Core Research Center for Ships and Offshore Plants 선박 및 해양 플랜트 글로벌 핵심 연구 센터'),
(54601, 'https://ror.org/048nacf41', 'en', 1, 'https://ror.org/048nacf41 Federal Government of Germany'),
(54602, 'https://ror.org/02yjb3a91', 'en', 1, 'https://ror.org/02yjb3a91 Deutsche Stiftung für Herzforschung German Heart Research Foundation'),
(54603, 'https://ror.org/00hd4jd19', 'en', 1, 'https://ror.org/00hd4jd19 East University Of Heilongjiang 黑龍江東方學院'),
(54604, 'https://ror.org/04waywn16', 'pt', 1, 'https://ror.org/04waywn16 Gabinete de Relações Internacionais da Ciência e do Ensino Superior'),
(54605, 'https://ror.org/03z32jx06', 'en', 1, 'https://ror.org/03z32jx06 GridPP'),
(54606, 'https://ror.org/05cjrnv40', 'es', 1, 'https://ror.org/05cjrnv40 Gobierno de La Rioja'),
(54607, 'https://ror.org/014jtt019', 'en', 1, 'https://ror.org/014jtt019 Government of Ireland'),
(54608, 'https://ror.org/02jrc9g69', 'fr', 1, 'https://ror.org/02jrc9g69 Gouvernement Princier'),
(54609, 'https://ror.org/04g9rr142', 'en', 1, 'https://ror.org/04g9rr142 Viet Nam Government');
INSERT INTO `rors` VALUES
(54610, 'https://ror.org/00swtqp09', 'en', 1, 'https://ror.org/00swtqp09 Key Laboratory of Guangdong Province 广东省重点实验室'),
(54611, 'https://ror.org/00mntmj21', 'en', 1, 'https://ror.org/00mntmj21 Goyder Institute for Water Research'),
(54612, 'https://ror.org/0598sdq75', 'en', 1, 'https://ror.org/0598sdq75 Hastings Community Foundation'),
(54613, 'https://ror.org/01k8j4p29', 'en', 1, 'https://ror.org/01k8j4p29 Ministry of Economy, Development and Tourism Υπουργείο Οικονομίας, Ανάπτυξης και Τουρισμού'),
(54614, 'https://ror.org/04ne34794', 'en', 1, 'https://ror.org/04ne34794 Ministry of Health Υπουργείο Υγείας'),
(54615, 'https://ror.org/00479t136', 'en', 1, 'https://ror.org/00479t136 Guangzhou Education Bureau 广州市教育局'),
(54616, 'https://ror.org/04s64z252', 'en', 1, 'https://ror.org/04s64z252 Helmholtz Alliance Imaging and Curing Environmental Metabolic Diseases'),
(54617, 'https://ror.org/0568dpm54', 'en', 1, 'https://ror.org/0568dpm54 Drug Enforcement Administration'),
(54618, 'https://ror.org/03z2d7y96', 'en', 1, 'https://ror.org/03z2d7y96 Bureau of Labor Statistics'),
(54619, 'https://ror.org/05mc17455', 'en', 1, 'https://ror.org/05mc17455 U.S. Embassy and Consulates in India'),
(54620, 'https://ror.org/02vqa5k67', 'en', 1, 'https://ror.org/02vqa5k67 Iowa Department on Aging'),
(54621, 'https://ror.org/052ykh203', 'en', 1, 'https://ror.org/052ykh203 Ability Connection Colorado'),
(54622, 'https://ror.org/00t7qf371', 'en', 1, 'https://ror.org/00t7qf371 About Special Kids'),
(54623, 'https://ror.org/00pfxvf64', 'en', 1, 'https://ror.org/00pfxvf64 Aging In New York Fund'),
(54624, 'https://ror.org/02swngw30', 'en', 1, 'https://ror.org/02swngw30 Colorado Latino Leadership, Advocacy & Research Organization'),
(54625, 'https://ror.org/04zs9x940', 'en', 1, 'https://ror.org/04zs9x940 Aleutian Pribilof Islands Association'),
(54626, 'https://ror.org/01kz8dk96', 'en', 1, 'https://ror.org/01kz8dk96 Logansport State Hospital'),
(54627, 'https://ror.org/04a2k6j28', 'en', 1, 'https://ror.org/04a2k6j28 Volpe National Transportation Systems Center'),
(54628, 'https://ror.org/01evns552', 'en', 1, 'https://ror.org/01evns552 Louisiana Department of Insurance'),
(54629, 'https://ror.org/01100v986', 'en', 1, 'https://ror.org/01100v986 Madison County Urban league'),
(54630, 'https://ror.org/033trmh69', 'en', 1, 'https://ror.org/033trmh69 Bureau of the Fiscal Service'),
(54631, 'https://ror.org/00cz2hc49', 'en', 1, 'https://ror.org/00cz2hc49 Maryland State Office Of The Governor'),
(54632, 'https://ror.org/01emzvp42', 'en', 1, 'https://ror.org/01emzvp42 Parents Let''s Unite for Kids'),
(54633, 'https://ror.org/037v4t923', 'en', 1, 'https://ror.org/037v4t923 Family Health Council of Central Pennsylvania'),
(54634, 'https://ror.org/025c9h003', 'en', 1, 'https://ror.org/025c9h003 Michigan Department of Technology, Management & Budget'),
(54635, 'https://ror.org/03vwnv483', 'en', 1, 'https://ror.org/03vwnv483 Family Ties of Nevada'),
(54636, 'https://ror.org/04pz9s646', 'en', 1, 'https://ror.org/04pz9s646 Montachusett Opportunity Council'),
(54637, 'https://ror.org/052x2sm38', 'en', 1, 'https://ror.org/052x2sm38 Mississippi Department of Human Services'),
(54638, 'https://ror.org/00qrpes71', 'en', 1, 'https://ror.org/00qrpes71 Fishing Partnership Support Services'),
(54639, 'https://ror.org/02ejgsx19', 'en', 1, 'https://ror.org/02ejgsx19 Ramah Navajo School Board'),
(54640, 'https://ror.org/04j39xp17', 'en', 1, 'https://ror.org/04j39xp17 Agency for Persons with Disabilities'),
(54641, 'https://ror.org/01a9pzb45', 'en', 1, 'https://ror.org/01a9pzb45 National Association of Community Health Representatives'),
(54642, 'https://ror.org/00dzheg11', 'en', 1, 'https://ror.org/00dzheg11 National Family Planning & Reproductive Health Association'),
(54643, 'https://ror.org/0190gce36', 'en', 1, 'https://ror.org/0190gce36 Concerned Black Men National'),
(54644, 'https://ror.org/03b8y4g05', 'en', 1, 'https://ror.org/03b8y4g05 North Dakota Office of the Governor'),
(54645, 'https://ror.org/0065zvt37', 'en', 1, 'https://ror.org/0065zvt37 Central District Health Department'),
(54646, 'https://ror.org/05k829w13', 'en', 1, 'https://ror.org/05k829w13 New Mexico Alliance of Health Councils'),
(54647, 'https://ror.org/000dk5152', 'en', 1, 'https://ror.org/000dk5152 New Hampshire State Office of the Governor'),
(54648, 'https://ror.org/01nn8a447', 'en', 1, 'https://ror.org/01nn8a447 New Jersey State Office of the Governor'),
(54649, 'https://ror.org/04r0c8r10', 'en', 1, 'https://ror.org/04r0c8r10 Ohio Department of Aging'),
(54650, 'https://ror.org/04khzvv84', 'en', 1, 'https://ror.org/04khzvv84 Department of Medical Assistance Services'),
(54651, 'https://ror.org/00rnyt040', 'en', 1, 'https://ror.org/00rnyt040 Illinois Office of the Governor'),
(54652, 'https://ror.org/01c2z9a94', 'en', 1, 'https://ror.org/01c2z9a94 Ohio State Office of the Governor'),
(54653, 'https://ror.org/04zv3dn98', 'en', 1, 'https://ror.org/04zv3dn98 Westchester Institute for Human Development'),
(54654, 'https://ror.org/00jrvek48', 'en', 1, 'https://ror.org/00jrvek48 Oregon Department of Consumer and Business Services'),
(54655, 'https://ror.org/041sdt344', 'en', 1, 'https://ror.org/041sdt344 South Dakota Parent Connection'),
(54656, 'https://ror.org/01d6x6740', 'en', 1, 'https://ror.org/01d6x6740 Wyoming Office of the Governor'),
(54657, 'https://ror.org/041rkp090', 'en', 1, 'https://ror.org/041rkp090 Oregon Family Support Network'),
(54658, 'https://ror.org/04m9c9932', 'en', 1, 'https://ror.org/04m9c9932 Indiana Office of the Governor'),
(54659, 'https://ror.org/005s3t219', 'en', 1, 'https://ror.org/005s3t219 Boys and Girls Clubs of Metro Los Angeles'),
(54660, 'https://ror.org/033k6xs70', 'en', 1, 'https://ror.org/033k6xs70 Parents'' Place of Maryland'),
(54661, 'https://ror.org/03f57fs86', 'en', 1, 'https://ror.org/03f57fs86 Childrens Hospice International'),
(54662, 'https://ror.org/02wjzeq60', 'en', 1, 'https://ror.org/02wjzeq60 Statewide Parent Advocacy Network'),
(54663, 'https://ror.org/00r7c8242', 'no_lang_code', 1, 'https://ror.org/00r7c8242 Chitina Native Corporation (United States)'),
(54664, 'https://ror.org/02p2xd472', 'en', 1, 'https://ror.org/02p2xd472 Stockbridge Munsee Tribal Council'),
(54665, 'https://ror.org/02bq0x116', 'en', 1, 'https://ror.org/02bq0x116 United States Customs and Border Protection'),
(54666, 'https://ror.org/00fx0z455', 'en', 1, 'https://ror.org/00fx0z455 Tennessee Commission on Aging and Disability'),
(54667, 'https://ror.org/029gpxj36', 'en', 1, 'https://ror.org/029gpxj36 Texas Parent to Parent'),
(54668, 'https://ror.org/05q57a218', 'en', 1, 'https://ror.org/05q57a218 Arc of Kentucky'),
(54669, 'https://ror.org/0188dhg98', 'en', 1, 'https://ror.org/0188dhg98 Office of the Comptroller of the Currency'),
(54670, 'https://ror.org/05ng63712', 'en', 1, 'https://ror.org/05ng63712 Clifton T. Perkins Hospital Center'),
(54671, 'https://ror.org/038k2n210', 'en', 1, 'https://ror.org/038k2n210 Community Health Centers of Benton and Linn Counties'),
(54672, 'https://ror.org/03wfmrt38', 'en', 1, 'https://ror.org/03wfmrt38 Habitat International Coalition'),
(54673, 'https://ror.org/01g77mv66', 'en', 1, 'https://ror.org/01g77mv66 New York/New Jersey VA Health Care Network'),
(54674, 'https://ror.org/041t78y98', 'en', 1, 'https://ror.org/041t78y98 Atlanta VA Health Care System'),
(54675, 'https://ror.org/02hqqcn82', 'en', 1, 'https://ror.org/02hqqcn82 VA Eastern Kansas Health Care System'),
(54676, 'https://ror.org/02v6tqw40', 'no_lang_code', 1, 'https://ror.org/02v6tqw40 Innovative Research Group (Canada)'),
(54677, 'https://ror.org/054w3nm73', 'en', 1, 'https://ror.org/054w3nm73 VA Mid-Atlantic Health Care Network'),
(54678, 'https://ror.org/00c89j038', 'en', 1, 'https://ror.org/00c89j038 Innovative Research Institute for Cell Therapy'),
(54679, 'https://ror.org/023w6y044', 'en', 1, 'https://ror.org/023w6y044 VA Great Lakes Health Care System'),
(54680, 'https://ror.org/02z5aj645', 'en', 1, 'https://ror.org/02z5aj645 South Central VA Health Care Network'),
(54681, 'https://ror.org/02g8ke488', 'en', 1, 'https://ror.org/02g8ke488 VA Sunshine Healthcare Network'),
(54682, 'https://ror.org/05kcj6c10', 'en', 1, 'https://ror.org/05kcj6c10 VA Heartland Network'),
(54683, 'https://ror.org/025yjfh46', 'en', 1, 'https://ror.org/025yjfh46 VA MidSouth Healthcare Network'),
(54684, 'https://ror.org/02f2rgc17', 'en', 1, 'https://ror.org/02f2rgc17 VA Midwest Health Care Network'),
(54685, 'https://ror.org/031qpfn56', 'en', 1, 'https://ror.org/031qpfn56 VA Desert Pacific Healthcare Network'),
(54686, 'https://ror.org/03k6yxq48', 'en', 1, 'https://ror.org/03k6yxq48 Oklahoma City VA Health Care System'),
(54687, 'https://ror.org/054484h93', 'en', 1, 'https://ror.org/054484h93 VA Portland Health Care System'),
(54688, 'https://ror.org/00xr47e92', 'pt', 1, 'https://ror.org/00xr47e92 Instituto Nacional de Ciências dos Materiais em Nanotecnologia'),
(54689, 'https://ror.org/03mzbnj03', 'en', 1, 'https://ror.org/03mzbnj03 VA Southeast Network'),
(54690, 'https://ror.org/011qyt180', 'en', 1, 'https://ror.org/011qyt180 VA Office of Research and Development'),
(54691, 'https://ror.org/0527v1v90', 'en', 1, 'https://ror.org/0527v1v90 VA Heart of Texas Health Care Network'),
(54692, 'https://ror.org/05wfg6079', 'en', 1, 'https://ror.org/05wfg6079 Japan Arteriosclerosis Prevention Fund 日本動脈硬化予防研究基金'),
(54693, 'https://ror.org/01x6zzb23', 'en', 1, 'https://ror.org/01x6zzb23 VA Rocky Mountain Network'),
(54694, 'https://ror.org/01rybzk66', 'en', 1, 'https://ror.org/01rybzk66 VA Capitol Health Care Network'),
(54695, 'https://ror.org/04m453044', 'en', 1, 'https://ror.org/04m453044 VA Northwest Network'),
(54696, 'https://ror.org/03vmxkp39', 'en', 1, 'https://ror.org/03vmxkp39 Iran Nanohealth Committee Food and Drug Organization'),
(54697, 'https://ror.org/05vg8h197', 'no_lang_code', 1, 'https://ror.org/05vg8h197 Japan Space Forum 日本宇宙フォーラム'),
(54698, 'https://ror.org/03jan5912', 'en', 1, 'https://ror.org/03jan5912 Jiangsu Provincial Key Laboratory of Network and Information Security 江苏省网络信息安全重点实验室'),
(54699, 'https://ror.org/02z5d2h92', 'en', 1, 'https://ror.org/02z5d2h92 VA Healthcare System Serving Ohio, Indiana and Michigan'),
(54700, 'https://ror.org/04m589p37', 'no_lang_code', 1, 'https://ror.org/04m589p37 Irish Life (Ireland)'),
(54701, 'https://ror.org/00zjpfj13', 'no_lang_code', 1, 'https://ror.org/00zjpfj13 HBIS (China) 河北钢铁集团有限公司'),
(54702, 'https://ror.org/03m3t7g30', 'en', 1, 'https://ror.org/03m3t7g30 Jeff Gordon Children''s Foundation'),
(54703, 'https://ror.org/0392x6996', 'en', 1, 'https://ror.org/0392x6996 Association Cartographique Internationale International Cartographic Association'),
(54704, 'https://ror.org/022qvpy75', 'en', 1, 'https://ror.org/022qvpy75 International Geographical Union Union Géographique Internationale'),
(54705, 'https://ror.org/035pbyf96', 'en', 1, 'https://ror.org/035pbyf96 International Union of Anthropological and Ethnological Sciences'),
(54706, 'https://ror.org/04h5sdx36', 'en', 1, 'https://ror.org/04h5sdx36 International Union of Biological Sciences'),
(54707, 'https://ror.org/002e5rj75', 'en', 1, 'https://ror.org/002e5rj75 International Union of Food Science and Technology'),
(54708, 'https://ror.org/046rffv75', 'en', 1, 'https://ror.org/046rffv75 International Union of Geological Sciences'),
(54709, 'https://ror.org/01cejnk20', 'en', 1, 'https://ror.org/01cejnk20 International Union of Immunological Societies'),
(54710, 'https://ror.org/05sthzf60', 'en', 1, 'https://ror.org/05sthzf60 International Union of Materials Research Societies'),
(54711, 'https://ror.org/04dzj3g56', 'en', 1, 'https://ror.org/04dzj3g56 Jiangsu Key Laboratory of 3D Printing Equipment and Manufacturing 江苏省三维打印装备与制造重点实验室'),
(54712, 'https://ror.org/038eh4b79', 'en', 1, 'https://ror.org/038eh4b79 Office of Patient Care Services'),
(54713, 'https://ror.org/01x63ge73', 'en', 1, 'https://ror.org/01x63ge73 International Union for Pure and Applied Biophysics'),
(54714, 'https://ror.org/04aekkh13', 'en', 1, 'https://ror.org/04aekkh13 International Union for Physical and Engineering Sciences in Medicine'),
(54715, 'https://ror.org/04dscat02', 'en', 1, 'https://ror.org/04dscat02 Israel National Nanotechnology Initiative'),
(54716, 'https://ror.org/03k352971', 'en', 1, 'https://ror.org/03k352971 C.W. Bill Young VA Medical Center'),
(54717, 'https://ror.org/013zszd91', 'en', 1, 'https://ror.org/013zszd91 Israel Water Authority מועצת רשות המים'),
(54718, 'https://ror.org/00y3qx097', 'en', 1, 'https://ror.org/00y3qx097 Kennel Club Charitable Trust'),
(54719, 'https://ror.org/05mx4xx46', 'en', 1, 'https://ror.org/05mx4xx46 Weihai Science and Technology Bureau 威海市科学技术局'),
(54720, 'https://ror.org/05frzy624', 'nl', 1, 'https://ror.org/05frzy624 Kennisnet'),
(54721, 'https://ror.org/044kgk540', 'en', 1, 'https://ror.org/044kgk540 John L. McClellan Memorial Veterans Hospital'),
(54722, 'https://ror.org/02d6kc626', 'en', 1, 'https://ror.org/02d6kc626 Olin E. Teague Veterans Medical Center'),
(54723, 'https://ror.org/02n35gd31', 'fi', 1, 'https://ror.org/02n35gd31 KH Renlundin säätiö'),
(54724, 'https://ror.org/04zrk8409', 'en', 1, 'https://ror.org/04zrk8409 Kansas Board of Regents'),
(54725, 'https://ror.org/00q9d8f64', 'en', 1, 'https://ror.org/00q9d8f64 Joint Graduate School of Energy and Environment บัณฑิตวิทยาลัยร่วมด้านพลังงานและสิ่งแวดล้อม'),
(54726, 'https://ror.org/01pe6xq34', 'en', 1, 'https://ror.org/01pe6xq34 Joseph Drown Foundation'),
(54727, 'https://ror.org/00jn8v512', 'en', 1, 'https://ror.org/00jn8v512 Khaled bin Sultan Living Oceans Foundation'),
(54728, 'https://ror.org/05g801a49', 'en', 1, 'https://ror.org/05g801a49 Kurdistan Regional Government حكومة اقليم كردستان حکوومەتی هەرێمی کوردستان'),
(54729, 'https://ror.org/005gp3d85', 'en', 1, 'https://ror.org/005gp3d85 Korea National Park Service'),
(54730, 'https://ror.org/045krvc71', 'fr', 1, 'https://ror.org/045krvc71 Labex Action'),
(54731, 'https://ror.org/03g19es12', 'fr', 1, 'https://ror.org/03g19es12 Labex Synorg'),
(54732, 'https://ror.org/018p41404', 'en', 1, 'https://ror.org/018p41404 Korean Chemical Society'),
(54733, 'https://ror.org/03bc19b89', 'en', 1, 'https://ror.org/03bc19b89 Korean Endocrine Society 대한내분비학회'),
(54734, 'https://ror.org/01rjj8a34', 'en', 1, 'https://ror.org/01rjj8a34 Bruce W. Carter VA Medical Center'),
(54735, 'https://ror.org/04xvc2q17', 'en', 1, 'https://ror.org/04xvc2q17 Lancaster Royal Grammar School'),
(54736, 'https://ror.org/01vaht437', 'en', 1, 'https://ror.org/01vaht437 Korean Society of Radiology'),
(54737, 'https://ror.org/054kry619', 'en', 1, 'https://ror.org/054kry619 Korean Society of Medical Ultrasound'),
(54738, 'https://ror.org/03s8dv541', 'en', 1, 'https://ror.org/03s8dv541 Magnetic Health Science Foundation 公益財団法人 磁気健康科学研究振興財団'),
(54739, 'https://ror.org/01pz9tv63', 'en', 1, 'https://ror.org/01pz9tv63 A*STAR Joint Council Office'),
(54740, 'https://ror.org/03hj69t32', 'en', 1, 'https://ror.org/03hj69t32 Max Planck Center for Visual Computing and Communication'),
(54741, 'https://ror.org/03zf8zy80', 'en', 1, 'https://ror.org/03zf8zy80 Metanexus Institute'),
(54742, 'https://ror.org/05tte3254', 'en', 1, 'https://ror.org/05tte3254 Federal Government of Mexico Gobierno de la República'),
(54743, 'https://ror.org/046g3bm52', 'no_lang_code', 1, 'https://ror.org/046g3bm52 MEC'),
(54744, 'https://ror.org/03114vz20', 'en', 1, 'https://ror.org/03114vz20 Central New York Research Corporation'),
(54745, 'https://ror.org/05g1gph86', 'en', 1, 'https://ror.org/05g1gph86 Nutrition International'),
(54746, 'https://ror.org/037042411', 'en', 1, 'https://ror.org/037042411 International Fistball Association'),
(54747, 'https://ror.org/01g7pk335', 'en', 1, 'https://ror.org/01g7pk335 Martinez VA Medical Center'),
(54748, 'https://ror.org/045vn2806', 'en', 1, 'https://ror.org/045vn2806 AIMS@JCU'),
(54749, 'https://ror.org/05rdz5425', 'en', 1, 'https://ror.org/05rdz5425 Ministerstwo Rolnictwa i Rozwoju Wsi Ministry of Agriculture and Rural Development'),
(54750, 'https://ror.org/056hf8h17', 'en', 1, 'https://ror.org/056hf8h17 Ministry of Commerce of the People''s Republic of China 对外贸易经济合作部'),
(54751, 'https://ror.org/02yrzyf97', 'en', 1, 'https://ror.org/02yrzyf97 Office of Research Services'),
(54752, 'https://ror.org/00y2wtn40', 'en', 1, 'https://ror.org/00y2wtn40 Office of Minority Health'),
(54753, 'https://ror.org/01c75m640', 'en', 1, 'https://ror.org/01c75m640 Office of Minority Health and Health Equity'),
(54754, 'https://ror.org/03jt5gp45', 'en', 1, 'https://ror.org/03jt5gp45 John Cochran VA Medical Center'),
(54755, 'https://ror.org/02v6f4y51', 'en', 1, 'https://ror.org/02v6f4y51 National Academy of Sciences India राष्ट्रीय विज्ञान अकादमी, भारत'),
(54756, 'https://ror.org/0417t4z61', 'en', 1, 'https://ror.org/0417t4z61 Minnesota Partnership for Biotechnology and Medical Genomics'),
(54757, 'https://ror.org/054jfj847', 'en', 1, 'https://ror.org/054jfj847 Banque nationale de Belgique Belgische Nationalbank National Bank of Belgium Nationale Bank van België'),
(54758, 'https://ror.org/021p56f43', 'en', 1, 'https://ror.org/021p56f43 Laboratory for Social and Neural Systems Research'),
(54759, 'https://ror.org/01x29k385', 'en', 1, 'https://ror.org/01x29k385 Northwell Health Orthopaedic Institute'),
(54760, 'https://ror.org/028dac806', 'en', 1, 'https://ror.org/028dac806 Arthur Smith Institute for Urology'),
(54761, 'https://ror.org/04xam4r33', 'en', 1, 'https://ror.org/04xam4r33 Institute for Social and Environmental Research-Nepal'),
(54762, 'https://ror.org/04ackq833', 'en', 1, 'https://ror.org/04ackq833 Lumbini Eye Institute'),
(54763, 'https://ror.org/01h0swx54', 'en', 1, 'https://ror.org/01h0swx54 Municipality De Malargue'),
(54764, 'https://ror.org/01rmhx355', 'en', 1, 'https://ror.org/01rmhx355 Muscular Dystrophy Ireland'),
(54765, 'https://ror.org/02kvhs631', 'en', 1, 'https://ror.org/02kvhs631 Benson-Henry Institute'),
(54766, 'https://ror.org/00ps92954', 'no_lang_code', 1, 'https://ror.org/00ps92954 Nagase (Japan) 長瀬産業株式会社'),
(54767, 'https://ror.org/0067hwx77', 'en', 1, 'https://ror.org/0067hwx77 Nanjing Health and Health Commission 南京市卫生局'),
(54768, 'https://ror.org/026bfbm57', 'en', 1, 'https://ror.org/026bfbm57 Nanocem'),
(54769, 'https://ror.org/04zdeh149', 'en', 1, 'https://ror.org/04zdeh149 VA Sepulveda Ambulatory Care Center'),
(54770, 'https://ror.org/03gzs6562', 'no_lang_code', 1, 'https://ror.org/03gzs6562 Narishige (Japan)'),
(54771, 'https://ror.org/01xz9k981', 'en', 1, 'https://ror.org/01xz9k981 National Research Institute of Cultural Heritage 국립문화재연구소'),
(54772, 'https://ror.org/053abfv27', 'en', 1, 'https://ror.org/053abfv27 Canadian Automotive Partnership Council Conseil du Partenariat du Secteur Canadien de l''Automobile'),
(54773, 'https://ror.org/00m5y7t24', 'en', 1, 'https://ror.org/00m5y7t24 BIGCCS'),
(54774, 'https://ror.org/05nzc1r88', 'en', 1, 'https://ror.org/05nzc1r88 The Synergetic Innovation Center for Advanced Materials 江苏先进生物与化学制造协同创新中心'),
(54775, 'https://ror.org/05f8ada11', 'no_lang_code', 1, 'https://ror.org/05f8ada11 Neurotrack Technologies (United States)'),
(54776, 'https://ror.org/05nf05q11', 'en', 1, 'https://ror.org/05nf05q11 Nebraska Game and Parks Commission'),
(54777, 'https://ror.org/0135zve36', 'en', 1, 'https://ror.org/0135zve36 California Native Plant Society'),
(54778, 'https://ror.org/05ezpt146', 'no_lang_code', 1, 'https://ror.org/05ezpt146 China Ningbo International Cooperation (China) 中国宁波国际合作'),
(54779, 'https://ror.org/0392hft58', 'en', 1, 'https://ror.org/0392hft58 Nissay Culture Foundation 日本生命保険相互会社'),
(54780, 'https://ror.org/02nnywp42', 'en', 1, 'https://ror.org/02nnywp42 North Carolina Department of Public Safety'),
(54781, 'https://ror.org/03982hf34', 'en', 1, 'https://ror.org/03982hf34 New Huadu Business School 新华都商学院'),
(54782, 'https://ror.org/04zwxgg32', 'no_lang_code', 1, 'https://ror.org/04zwxgg32 Nexen (Canada)'),
(54783, 'https://ror.org/008cqbc52', 'en', 1, 'https://ror.org/008cqbc52 Next Generation Infrastructures Stichting Next Generation Infrastructures'),
(54784, 'https://ror.org/05kzgnp84', 'en', 1, 'https://ror.org/05kzgnp84 Changchun Bureau of Science and Technology 长春市科技局'),
(54785, 'https://ror.org/04g2fg147', 'en', 1, 'https://ror.org/04g2fg147 Ohio Water Development Authority'),
(54786, 'https://ror.org/03h4b0p21', 'no_lang_code', 1, 'https://ror.org/03h4b0p21 Oil India (India)'),
(54787, 'https://ror.org/05a15vf47', 'en', 1, 'https://ror.org/05a15vf47 Oil Industry Development Board'),
(54788, 'https://ror.org/0520gqb12', 'en', 1, 'https://ror.org/0520gqb12 Oklahoma Center for Adult Stem Cell Research'),
(54789, 'https://ror.org/0246a9012', 'en', 1, 'https://ror.org/0246a9012 Direction générale Statistique Statistics Belgium'),
(54790, 'https://ror.org/01nmsj266', 'en', 1, 'https://ror.org/01nmsj266 Pacific Alzheimer Research Foundation'),
(54791, 'https://ror.org/00hxz0s44', 'no_lang_code', 1, 'https://ror.org/00hxz0s44 Bodycote (Canada)'),
(54792, 'https://ror.org/014pp1s07', 'en', 1, 'https://ror.org/014pp1s07 Port Authority of New York and New Jersey'),
(54793, 'https://ror.org/006t5z227', 'no_lang_code', 1, 'https://ror.org/006t5z227 OP Financial Group (Finland)'),
(54794, 'https://ror.org/04tac1482', 'en', 1, 'https://ror.org/04tac1482 Pittsburgh Supercomputing Center'),
(54795, 'https://ror.org/02k4dcs46', 'en', 1, 'https://ror.org/02k4dcs46 National Engineering Research Center of Electromagnetic Radiation Control Materials 国家电磁辐射控制材料工程技术研究中心'),
(54796, 'https://ror.org/047939x15', 'en', 1, 'https://ror.org/047939x15 Penn Center for AIDS Research'),
(54797, 'https://ror.org/05ehreb88', 'en', 1, 'https://ror.org/05ehreb88 Pennsylvania Commission on Crime and Delinquency'),
(54798, 'https://ror.org/05j159997', 'nl', 1, 'https://ror.org/05j159997 Prins Bernhard Cultuurfonds'),
(54799, 'https://ror.org/03teh1j22', 'es', 1, 'https://ror.org/03teh1j22 Fundación Pro CNIC'),
(54800, 'https://ror.org/04ts80387', 'en', 1, 'https://ror.org/04ts80387 Project ALS'),
(54801, 'https://ror.org/0004a4056', 'en', 1, 'https://ror.org/0004a4056 Alabama Department of Senior Services'),
(54802, 'https://ror.org/05fbtm431', 'en', 1, 'https://ror.org/05fbtm431 R and D Center for Valuable Recycling'),
(54803, 'https://ror.org/05qjt5a38', 'en', 1, 'https://ror.org/05qjt5a38 Royal Canadian Military Institute'),
(54804, 'https://ror.org/04dacya36', 'en', 1, 'https://ror.org/04dacya36 Renewable Energy and Energy Efficiency Organization به تارنمای سازمان انرژی های تجدیدپذیر و بهره وری انرژی برق خوش آمدید.'),
(54805, 'https://ror.org/036p2ma86', 'en', 1, 'https://ror.org/036p2ma86 Research Partnership to Secure Energy for America'),
(54806, 'https://ror.org/00z4tjm61', 'en', 1, 'https://ror.org/00z4tjm61 Reservoir Engineering Research Institute'),
(54807, 'https://ror.org/02vmzh064', 'nl', 1, 'https://ror.org/02vmzh064 Revalidatiefonds'),
(54808, 'https://ror.org/02md09461', 'en', 1, 'https://ror.org/02md09461 World Bank Group'),
(54809, 'https://ror.org/03kxdn807', 'ms', 1, 'https://ror.org/03kxdn807 Universiti Tenaga Nasional'),
(54810, 'https://ror.org/05x0m9n95', 'en', 1, 'https://ror.org/05x0m9n95 Heilongjiang Institute of Technology'),
(54811, 'https://ror.org/02s9kjn30', 'en', 1, 'https://ror.org/02s9kjn30 Robert W Deutsch Foundation'),
(54812, 'https://ror.org/00k9vtb32', 'en', 1, 'https://ror.org/00k9vtb32 Schweizerische Hochschulkonferen Swiss University Conference'),
(54813, 'https://ror.org/046ckcg70', 'no_lang_code', 1, 'https://ror.org/046ckcg70 Zeal (United Kingdom)'),
(54814, 'https://ror.org/00ppegh42', 'en', 1, 'https://ror.org/00ppegh42 Scientific Research Support Fund صندوق دعم البحث العلمي'),
(54815, 'https://ror.org/01rdc9p22', 'en', 1, 'https://ror.org/01rdc9p22 Shepherd Foundation'),
(54816, 'https://ror.org/04ndcjq03', 'en', 1, 'https://ror.org/04ndcjq03 Shanghai Nanotechnology Promotion Center 上海市纳米科技与产业发展促进中心'),
(54817, 'https://ror.org/045ejp222', 'en', 1, 'https://ror.org/045ejp222 Shandong Provincial Agriculture Department 山东省农业厅 承办'),
(54818, 'https://ror.org/041qqrw82', 'en', 1, 'https://ror.org/041qqrw82 Singapore Centre for Environmental Life Sciences Engineering'),
(54819, 'https://ror.org/056d4s875', 'fr', 1, 'https://ror.org/056d4s875 Société Académique Vaudoise'),
(54820, 'https://ror.org/020gjh112', 'en', 1, 'https://ror.org/020gjh112 Sino-Danish Centre for Education and Research 中国丹麦科研教育中心'),
(54821, 'https://ror.org/04trax135', 'en', 1, 'https://ror.org/04trax135 Sophia Foundation for Children'),
(54822, 'https://ror.org/059091v77', 'fr', 1, 'https://ror.org/059091v77 Onco Lille'),
(54823, 'https://ror.org/02wpjr618', 'en', 1, 'https://ror.org/02wpjr618 Government of Austria Österreichische Bundesregierung'),
(54824, 'https://ror.org/01xzvwk54', 'es', 1, 'https://ror.org/01xzvwk54 Universidad Latinoamericana'),
(54825, 'https://ror.org/01dkyny41', 'es', 1, 'https://ror.org/01dkyny41 Universidad UNIACC'),
(54826, 'https://ror.org/03ht51987', 'en', 1, 'https://ror.org/03ht51987 Norwegian Agriculture Agency'),
(54827, 'https://ror.org/05ak1kg07', 'en', 1, 'https://ror.org/05ak1kg07 Foundation for Japanese Chemical Research 公益財団法人日本化学研究会'),
(54828, 'https://ror.org/049k08p55', 'en', 1, 'https://ror.org/049k08p55 STandUP for Energy'),
(54829, 'https://ror.org/032rnvf90', 'no_lang_code', 1, 'https://ror.org/032rnvf90 BBMG (China) 北京金隅控股有限公司'),
(54830, 'https://ror.org/01wyt3891', 'en', 1, 'https://ror.org/01wyt3891 State and Federal Contractors Water Agency'),
(54831, 'https://ror.org/00mjd8b34', 'en', 1, 'https://ror.org/00mjd8b34 Ministerstvo financí České republiky Ministry of Finance of the Czech Republic'),
(54832, 'https://ror.org/054chcy06', 'no_lang_code', 1, 'https://ror.org/054chcy06 Hong Kong Standards and Testing Centre (China) 香港标准及检定中心'),
(54833, 'https://ror.org/00rwprq91', 'no_lang_code', 1, 'https://ror.org/00rwprq91 StemSoft Software (Canada)'),
(54834, 'https://ror.org/033hwwn95', 'nl', 1, 'https://ror.org/033hwwn95 Stichting Achmea Slachtoffer en Samenleving'),
(54835, 'https://ror.org/03bwk9n44', 'en', 1, 'https://ror.org/03bwk9n44 Strategic Initiative Materials in Flanders'),
(54836, 'https://ror.org/03bc5w075', 'en', 1, 'https://ror.org/03bc5w075 State Committee on Science and Technology'),
(54837, 'https://ror.org/00zps9v98', 'en', 1, 'https://ror.org/00zps9v98 Swedish Rheumatism Association'),
(54838, 'https://ror.org/04rmevh30', 'en', 1, 'https://ror.org/04rmevh30 Stiftelsen Hästforskning Swedish Norwegian Foundation for Equine Research'),
(54839, 'https://ror.org/03g2j2c90', 'en', 1, 'https://ror.org/03g2j2c90 St Andrews Community Hospital'),
(54840, 'https://ror.org/02w30ae27', 'en', 1, 'https://ror.org/02w30ae27 SYSU-CMU International Joint Research Institute'),
(54841, 'https://ror.org/034eg5a26', 'en', 1, 'https://ror.org/034eg5a26 Government of Ghana'),
(54842, 'https://ror.org/04eqn7j88', 'en', 1, 'https://ror.org/04eqn7j88 Swartz Foundation'),
(54843, 'https://ror.org/00xtmkg39', 'no_lang_code', 1, 'https://ror.org/00xtmkg39 Taiwan Power (Taiwan) 台灣電力公司'),
(54844, 'https://ror.org/044ktnx96', 'en', 1, 'https://ror.org/044ktnx96 Bureau of Energy 經濟部能源局'),
(54845, 'https://ror.org/037866t57', 'en', 1, 'https://ror.org/037866t57 Tenovus Scotland'),
(54846, 'https://ror.org/02r88m968', 'en', 1, 'https://ror.org/02r88m968 Tamkin Foundation'),
(54847, 'https://ror.org/030ebc654', 'en', 1, 'https://ror.org/030ebc654 Hefei Material Science and Technology Center 合肥物质科学技术中心'),
(54848, 'https://ror.org/015xp8e19', 'de', 1, 'https://ror.org/015xp8e19 Thüringer Ministerium für Bildung, Jugend und Sport'),
(54849, 'https://ror.org/059fv9z04', 'en', 1, 'https://ror.org/059fv9z04 Fok Ying Tung Foundation'),
(54850, 'https://ror.org/04zwrha85', 'en', 1, 'https://ror.org/04zwrha85 Victorian Responsible Gambling Foundation'),
(54851, 'https://ror.org/00qmvrz07', 'en', 1, 'https://ror.org/00qmvrz07 Vietnam International Education Cooperation Department'),
(54852, 'https://ror.org/01vddpb46', 'no_lang_code', 1, 'https://ror.org/01vddpb46 Winetech (South Africa)'),
(54853, 'https://ror.org/05gbven85', 'en', 1, 'https://ror.org/05gbven85 Wisconsin Institutes for Discovery'),
(54854, 'https://ror.org/01m84dy33', 'en', 1, 'https://ror.org/01m84dy33 WonKwang Health Science University'),
(54855, 'https://ror.org/02n1y8269', 'en', 1, 'https://ror.org/02n1y8269 Wales Institute of Cognitive Neuroscience'),
(54856, 'https://ror.org/0380vn954', 'en', 1, 'https://ror.org/0380vn954 Department of Information Technology, Biotechnology and Science and Technology'),
(54857, 'https://ror.org/02zhp7e72', 'en', 1, 'https://ror.org/02zhp7e72 World Federation of Scientists'),
(54858, 'https://ror.org/04qe38n20', 'en', 1, 'https://ror.org/04qe38n20 World Horse Welfare'),
(54859, 'https://ror.org/03bpesm64', 'pt', 1, 'https://ror.org/03bpesm64 Instituto Nacional de Ciência e Tecnologia em Entomologia Molecular'),
(54860, 'https://ror.org/00twt5233', 'en', 1, 'https://ror.org/00twt5233 Wyoming Water Development Commission'),
(54861, 'https://ror.org/02gvfwj85', 'en', 1, 'https://ror.org/02gvfwj85 Jilin Province Youth Development Foundation 吉林省青少年发展基金会'),
(54862, 'https://ror.org/00mwckg53', 'no_lang_code', 1, 'https://ror.org/00mwckg53 Wesco (Japan) 株式会社ウエスコホールディングス'),
(54863, 'https://ror.org/05g1thn98', 'en', 1, 'https://ror.org/05g1thn98 Shanxi Province Youth Development Foundation 山西省青少年发展基金会'),
(54864, 'https://ror.org/04dbch786', 'no_lang_code', 1, 'https://ror.org/04dbch786 Yandex (Russia) Яндекс'),
(54865, 'https://ror.org/00zez7q62', 'no_lang_code', 1, 'https://ror.org/00zez7q62 Armatury Group (Czechia)'),
(54866, 'https://ror.org/01zk2ze43', 'no_lang_code', 1, 'https://ror.org/01zk2ze43 Lukrom (Czechia)'),
(54867, 'https://ror.org/006x9vy35', 'no_lang_code', 1, 'https://ror.org/006x9vy35 Air Jihlava Service (Czechia)'),
(54868, 'https://ror.org/00f2df561', 'no_lang_code', 1, 'https://ror.org/00f2df561 Arming (Czechia)'),
(54869, 'https://ror.org/0459rmv61', 'en', 1, 'https://ror.org/0459rmv61 Society for the History of Czechoslovak Jews Společnost pro dějiny židů v Československé republice'),
(54870, 'https://ror.org/00xxcdz88', 'no_lang_code', 1, 'https://ror.org/00xxcdz88 Air Technic (Czechia)'),
(54871, 'https://ror.org/03acjy802', 'no_lang_code', 1, 'https://ror.org/03acjy802 Aroma Praha (Czechia)'),
(54872, 'https://ror.org/0526qf682', 'no_lang_code', 1, 'https://ror.org/0526qf682 AirshipClub (Czechia)'),
(54873, 'https://ror.org/00fxeax19', 'no_lang_code', 1, 'https://ror.org/00fxeax19 AIS (Czechia)'),
(54874, 'https://ror.org/015dee208', 'no_lang_code', 1, 'https://ror.org/015dee208 FCC Austria Abfall Service AG'),
(54875, 'https://ror.org/04xyg3765', 'no_lang_code', 1, 'https://ror.org/04xyg3765 Arthrocentrum'),
(54876, 'https://ror.org/01vhsvw18', 'no_lang_code', 1, 'https://ror.org/01vhsvw18 Artinel (Czechia)'),
(54877, 'https://ror.org/0306jpb35', 'no_lang_code', 1, 'https://ror.org/0306jpb35 AK signal Brno (Czechia)'),
(54878, 'https://ror.org/02e6vz398', 'en', 1, 'https://ror.org/02e6vz398 Agentura regionálního rozvoje Regional Development Agency'),
(54879, 'https://ror.org/01mpb1315', 'no_lang_code', 1, 'https://ror.org/01mpb1315 Artisys (Czechia)'),
(54880, 'https://ror.org/0176j2f59', 'no_lang_code', 1, 'https://ror.org/0176j2f59 AK Svejkovský, Kabelková, Šlauf (Czechia)'),
(54881, 'https://ror.org/000r42360', 'no_lang_code', 1, 'https://ror.org/000r42360 M Plus (Czechia)'),
(54882, 'https://ror.org/02k7tdq49', 'no_lang_code', 1, 'https://ror.org/02k7tdq49 Pokorný (Czechia)'),
(54883, 'https://ror.org/02hb3dy29', 'cs', 1, 'https://ror.org/02hb3dy29 Asociace Českých a Slovenských Zinkoven'),
(54884, 'https://ror.org/02ky4wg41', 'no_lang_code', 1, 'https://ror.org/02ky4wg41 Asekol (Czechia)'),
(54885, 'https://ror.org/03bmbxh67', 'no_lang_code', 1, 'https://ror.org/03bmbxh67 Ateliéry Tapisérií sro'),
(54886, 'https://ror.org/019m3rc39', 'no_lang_code', 1, 'https://ror.org/019m3rc39 Asipo (Czechia)'),
(54887, 'https://ror.org/01w3da479', 'no_lang_code', 1, 'https://ror.org/01w3da479 Asistenční Centrum (Czechia)'),
(54888, 'https://ror.org/02f66na56', 'no_lang_code', 1, 'https://ror.org/02f66na56 Akzo Nobel (Czechia)'),
(54889, 'https://ror.org/03kyg9945', 'no_lang_code', 1, 'https://ror.org/03kyg9945 Asklepion'),
(54890, 'https://ror.org/03mbvnm11', 'no_lang_code', 1, 'https://ror.org/03mbvnm11 ALB expert (Czechia)'),
(54891, 'https://ror.org/03kpfb968', 'cs', 1, 'https://ror.org/03kpfb968 Centrum Léčebné Rehabilitace Liberec'),
(54892, 'https://ror.org/032j4xk85', 'cs', 1, 'https://ror.org/032j4xk85 Asociace Financování Infrastruktury Pro Mobilitu'),
(54893, 'https://ror.org/02brgbw95', 'no_lang_code', 1, 'https://ror.org/02brgbw95 Albertina icome Praha (Czechia)'),
(54894, 'https://ror.org/02f0a4552', 'en', 1, 'https://ror.org/02f0a4552 Czech Scientific Society for Mycology Česká Vědecká Společnost Pro Mykologii'),
(54895, 'https://ror.org/037hw2x70', 'no_lang_code', 1, 'https://ror.org/037hw2x70 Asociace Gumárenské Technologie Zlín (Czechia)'),
(54896, 'https://ror.org/01w4md275', 'en', 1, 'https://ror.org/01w4md275 Asociace hotelů a restaurací České republiky Czech Association of Hotels and Restaurants'),
(54897, 'https://ror.org/04hd4af29', 'no_lang_code', 1, 'https://ror.org/04hd4af29 Alcoma (Czechia)'),
(54898, 'https://ror.org/03zk5vq23', 'cs', 1, 'https://ror.org/03zk5vq23 Asociace Korozních Inženýrů'),
(54899, 'https://ror.org/00t83rb52', 'no_lang_code', 1, 'https://ror.org/00t83rb52 Ales (Czechia)'),
(54900, 'https://ror.org/04bt71y08', 'en', 1, 'https://ror.org/04bt71y08 Asociace leteckých výrobců Association of the Czech AeroSpace Industry'),
(54901, 'https://ror.org/02kx3za73', 'no_lang_code', 1, 'https://ror.org/02kx3za73 Alfarma (Czechia)'),
(54902, 'https://ror.org/05wjqtf52', 'cs', 1, 'https://ror.org/05wjqtf52 Asociace Pedagogů Základního Školství České Republiky'),
(54903, 'https://ror.org/02t4ead83', 'cs', 1, 'https://ror.org/02t4ead83 Expresní Astronomické Informace'),
(54904, 'https://ror.org/01bmmtg52', 'cs', 1, 'https://ror.org/01bmmtg52 Asociace Poskytovatelů Sociálních Služeb České Republiky'),
(54905, 'https://ror.org/011jwng84', 'en', 1, 'https://ror.org/011jwng84 Kolin Institute of Technology Kolínský Technologický Institut'),
(54906, 'https://ror.org/005zs1640', 'cs', 1, 'https://ror.org/005zs1640 Asociace Pro Mládež Vědu a Techniku'),
(54907, 'https://ror.org/028vpwk62', 'no_lang_code', 1, 'https://ror.org/028vpwk62 Sady Klášterec nad Ohří (Czechia)'),
(54908, 'https://ror.org/04d3cgn96', 'no_lang_code', 1, 'https://ror.org/04d3cgn96 Alginit (Czechia)'),
(54909, 'https://ror.org/02m4t4k66', 'en', 1, 'https://ror.org/02m4t4k66 Asociace Pro Vodu ČR Czech Water Association'),
(54910, 'https://ror.org/05qnx7t56', 'cs', 1, 'https://ror.org/05qnx7t56 Svaz Chovatelů Prasat v Čechách a na Moravě'),
(54911, 'https://ror.org/00wqy9447', 'no_lang_code', 1, 'https://ror.org/00wqy9447 Algon (Czechia)'),
(54912, 'https://ror.org/02gw7aa83', 'no_lang_code', 1, 'https://ror.org/02gw7aa83 Alimpex Food (Czechia)'),
(54913, 'https://ror.org/00akda788', 'no_lang_code', 1, 'https://ror.org/00akda788 1 - Cube (Czechia)'),
(54914, 'https://ror.org/02cttc493', 'en', 1, 'https://ror.org/02cttc493 Alliance Forum Foundation'),
(54915, 'https://ror.org/02ss2ye92', 'cs', 1, 'https://ror.org/02ss2ye92 Obnovitelných Zdrojů Energie'),
(54916, 'https://ror.org/036dc0221', 'no_lang_code', 1, 'https://ror.org/036dc0221 2EL (Czechia)'),
(54917, 'https://ror.org/03tts4y20', 'no_lang_code', 1, 'https://ror.org/03tts4y20 Allowance (Czechia)'),
(54918, 'https://ror.org/02dmdfh75', 'no_lang_code', 1, 'https://ror.org/02dmdfh75 2VV (Czechia)'),
(54919, 'https://ror.org/00k602276', 'cs', 1, 'https://ror.org/00k602276 Asociace Svazů Chovatelů Koní České Republiky'),
(54920, 'https://ror.org/02nw2dj06', 'no_lang_code', 1, 'https://ror.org/02nw2dj06 3E Praha Engineering (Czechia)'),
(54921, 'https://ror.org/005tr1q75', 'no_lang_code', 1, 'https://ror.org/005tr1q75 Alpiq Generation (Czechia)'),
(54922, 'https://ror.org/002ah4568', 'no_lang_code', 1, 'https://ror.org/002ah4568 3Dim Laboratory (Czechia)'),
(54923, 'https://ror.org/01j8jme87', 'no_lang_code', 1, 'https://ror.org/01j8jme87 ASPK'),
(54924, 'https://ror.org/02z4xsh88', 'no_lang_code', 1, 'https://ror.org/02z4xsh88 3G Consulting Engineers (Czechia)'),
(54925, 'https://ror.org/00d45ws96', 'no_lang_code', 1, 'https://ror.org/00d45ws96 Asseco (Czechia)'),
(54926, 'https://ror.org/04ansg437', 'no_lang_code', 1, 'https://ror.org/04ansg437 Altech (Czechia)'),
(54927, 'https://ror.org/00g0srg04', 'no_lang_code', 1, 'https://ror.org/00g0srg04 3S Sedlak (Czechia)'),
(54928, 'https://ror.org/04d51r796', 'no_lang_code', 1, 'https://ror.org/04d51r796 Altron (Czechia)'),
(54929, 'https://ror.org/03q6nea03', 'no_lang_code', 1, 'https://ror.org/03q6nea03 Alucast (Czechia)'),
(54930, 'https://ror.org/01ex2n145', 'no_lang_code', 1, 'https://ror.org/01ex2n145 Alumistr (Czechia)'),
(54931, 'https://ror.org/00n8cd549', 'en', 1, 'https://ror.org/00n8cd549 JGC-S Scholarship Foundation 公益財団法人 日揮・実吉奨学会'),
(54932, 'https://ror.org/00ddb1628', 'no_lang_code', 1, 'https://ror.org/00ddb1628 Ataco (Czechia)'),
(54933, 'https://ror.org/03yqdcb49', 'no_lang_code', 1, 'https://ror.org/03yqdcb49 A-Spektrum (Czechia)'),
(54934, 'https://ror.org/028mkng75', 'no_lang_code', 1, 'https://ror.org/028mkng75 ATE (Czechia)'),
(54935, 'https://ror.org/03bbymp68', 'no_lang_code', 1, 'https://ror.org/03bbymp68 Amati-Denak (Czechia)'),
(54936, 'https://ror.org/03pww3q25', 'no_lang_code', 1, 'https://ror.org/03pww3q25 Atea Praha (Czechia)'),
(54937, 'https://ror.org/02cw1xf64', 'no_lang_code', 1, 'https://ror.org/02cw1xf64 A. KTI (Czechia)'),
(54938, 'https://ror.org/03a2v5m77', 'no_lang_code', 1, 'https://ror.org/03a2v5m77 Atega (Czechia)'),
(54939, 'https://ror.org/00fpjma30', 'no_lang_code', 1, 'https://ror.org/00fpjma30 Atelier Fontes (Czechia)'),
(54940, 'https://ror.org/03s5bsk62', 'no_lang_code', 1, 'https://ror.org/03s5bsk62 Amberg (Czechia)'),
(54941, 'https://ror.org/02gkttc21', 'no_lang_code', 1, 'https://ror.org/02gkttc21 Atelier T plan (Czechia)'),
(54942, 'https://ror.org/04a9esj71', 'no_lang_code', 1, 'https://ror.org/04a9esj71 Amec Foster Wheeler (Czechia)'),
(54943, 'https://ror.org/02mgem015', 'no_lang_code', 1, 'https://ror.org/02mgem015 Abegu (Czechia)'),
(54944, 'https://ror.org/016h91621', 'no_lang_code', 1, 'https://ror.org/016h91621 Amest (Czechia)'),
(54945, 'https://ror.org/049a7m162', 'no_lang_code', 1, 'https://ror.org/049a7m162 Abitec (Czechia)'),
(54946, 'https://ror.org/02n50e113', 'no_lang_code', 1, 'https://ror.org/02n50e113 Atro Rýmařov (Czechia)'),
(54947, 'https://ror.org/00qbq1b12', 'no_lang_code', 1, 'https://ror.org/00qbq1b12 ABM Architekti (Czechia)'),
(54948, 'https://ror.org/03bfvr743', 'no_lang_code', 1, 'https://ror.org/03bfvr743 ATS Telcom Praha (Czechia)'),
(54949, 'https://ror.org/0298sz047', 'no_lang_code', 1, 'https://ror.org/0298sz047 AMI Communications (Czechia)'),
(54950, 'https://ror.org/00s7jd712', 'no_lang_code', 1, 'https://ror.org/00s7jd712 ABS Jets (Czechia)'),
(54951, 'https://ror.org/005q35q21', 'no_lang_code', 1, 'https://ror.org/005q35q21 AMT (Czechia)'),
(54952, 'https://ror.org/0007v1468', 'no_lang_code', 1, 'https://ror.org/0007v1468 Amtek (Czechia)'),
(54953, 'https://ror.org/04wk76v17', 'cs', 1, 'https://ror.org/04wk76v17 ACCENDO – Centrum pro vědu a výzkum'),
(54954, 'https://ror.org/05kvwxg84', 'no_lang_code', 1, 'https://ror.org/05kvwxg84 Amylon (Czechia)'),
(54955, 'https://ror.org/03nc73a98', 'no_lang_code', 1, 'https://ror.org/03nc73a98 Aura (Czechia)'),
(54956, 'https://ror.org/03hsrn882', 'no_lang_code', 1, 'https://ror.org/03hsrn882 ANAKAN (Czechia)'),
(54957, 'https://ror.org/04btwgw22', 'no_lang_code', 1, 'https://ror.org/04btwgw22 Aura (Czechia)'),
(54958, 'https://ror.org/05ybw6w30', 'no_lang_code', 1, 'https://ror.org/05ybw6w30 ACRE (Czechia)'),
(54959, 'https://ror.org/03n40zw95', 'no_lang_code', 1, 'https://ror.org/03n40zw95 Analytika (Czechia)'),
(54960, 'https://ror.org/02qa5kg76', 'en', 1, 'https://ror.org/02qa5kg76 Australian Regenerative Medicine Institute'),
(54961, 'https://ror.org/042q5vh09', 'no_lang_code', 1, 'https://ror.org/042q5vh09 Acrea (Czechia)'),
(54962, 'https://ror.org/02z2my330', 'no_lang_code', 1, 'https://ror.org/02z2my330 Anapartners (Czechia)'),
(54963, 'https://ror.org/04ntbmy72', 'no_lang_code', 1, 'https://ror.org/04ntbmy72 ANC Components (Czechia)'),
(54964, 'https://ror.org/02spbvv79', 'no_lang_code', 1, 'https://ror.org/02spbvv79 Activair (Czechia)'),
(54965, 'https://ror.org/013nc8024', 'no_lang_code', 1, 'https://ror.org/013nc8024 Angermeier (Czechia)'),
(54966, 'https://ror.org/01v9ehc48', 'no_lang_code', 1, 'https://ror.org/01v9ehc48 ADA Akustická Emise (Czechia)'),
(54967, 'https://ror.org/03n2rkn85', 'no_lang_code', 1, 'https://ror.org/03n2rkn85 Autel (Czechia)'),
(54968, 'https://ror.org/01makav45', 'no_lang_code', 1, 'https://ror.org/01makav45 AutoCont (Czechia)'),
(54969, 'https://ror.org/00vy0bt98', 'no_lang_code', 1, 'https://ror.org/00vy0bt98 Anita B (Czechia)'),
(54970, 'https://ror.org/018rnp883', 'no_lang_code', 1, 'https://ror.org/018rnp883 Adamovské Strojírny (Czechia)'),
(54971, 'https://ror.org/03pzt8k43', 'no_lang_code', 1, 'https://ror.org/03pzt8k43 Ankara (Czechia)'),
(54972, 'https://ror.org/00h588p66', 'no_lang_code', 1, 'https://ror.org/00h588p66 ADP (Czechia)'),
(54973, 'https://ror.org/0030qrq56', 'no_lang_code', 1, 'https://ror.org/0030qrq56 Anopress IT (Czechia)'),
(54974, 'https://ror.org/04evkr214', 'no_lang_code', 1, 'https://ror.org/04evkr214 Advacam (Czechia)'),
(54975, 'https://ror.org/03zszr857', 'no_lang_code', 1, 'https://ror.org/03zszr857 Apex (Czechia)'),
(54976, 'https://ror.org/03zh8em07', 'no_lang_code', 1, 'https://ror.org/03zh8em07 Advanced World Transport (Czechia)'),
(54977, 'https://ror.org/05tz0an20', 'cs', 1, 'https://ror.org/05tz0an20 Autoklub České Republiky'),
(54978, 'https://ror.org/00ggtj069', 'no_lang_code', 1, 'https://ror.org/00ggtj069 ADW (Czechia)'),
(54979, 'https://ror.org/00jyvgk83', 'no_lang_code', 1, 'https://ror.org/00jyvgk83 Autometal (Czechia)'),
(54980, 'https://ror.org/02e18ra65', 'no_lang_code', 1, 'https://ror.org/02e18ra65 Av Engineering (Czechia)'),
(54981, 'https://ror.org/0161kev09', 'no_lang_code', 1, 'https://ror.org/0161kev09 APPLIC (Czechia)'),
(54982, 'https://ror.org/034v70g29', 'no_lang_code', 1, 'https://ror.org/034v70g29 AEV (Czechia)'),
(54983, 'https://ror.org/03n0h8b63', 'no_lang_code', 1, 'https://ror.org/03n0h8b63 Applycon (Czechia)'),
(54984, 'https://ror.org/040n64385', 'no_lang_code', 1, 'https://ror.org/040n64385 AVE (Czechia)'),
(54985, 'https://ror.org/001p94d66', 'no_lang_code', 1, 'https://ror.org/001p94d66 Aveflor (Czechia)'),
(54986, 'https://ror.org/02yzb7x61', 'no_lang_code', 1, 'https://ror.org/02yzb7x61 ÅF (Czechia)'),
(54987, 'https://ror.org/04wk0vx02', 'no_lang_code', 1, 'https://ror.org/04wk0vx02 Aveko Servomotory (Czechia)'),
(54988, 'https://ror.org/051y3re62', 'no_lang_code', 1, 'https://ror.org/051y3re62 Aproks (Czechia)'),
(54989, 'https://ror.org/01psvhy06', 'no_lang_code', 1, 'https://ror.org/01psvhy06 AG COM (Czechia)'),
(54990, 'https://ror.org/03vccbd52', 'no_lang_code', 1, 'https://ror.org/03vccbd52 AVG Technologies (Czechia)'),
(54991, 'https://ror.org/01njzmh10', 'no_lang_code', 1, 'https://ror.org/01njzmh10 AG Info (Czechia)'),
(54992, 'https://ror.org/03nrthd98', 'no_lang_code', 1, 'https://ror.org/03nrthd98 Avia Propeller (Czechia)'),
(54993, 'https://ror.org/045vf4q62', 'no_lang_code', 1, 'https://ror.org/045vf4q62 Apronex (Czechia)'),
(54994, 'https://ror.org/00yswm660', 'en', 1, 'https://ror.org/00yswm660 Japan National Society for the Prevent of Blindness 公益財団法人 日本失明予防協会'),
(54995, 'https://ror.org/00w282m94', 'no_lang_code', 1, 'https://ror.org/00w282m94 APT (Czechia)'),
(54996, 'https://ror.org/0264aj944', 'no_lang_code', 1, 'https://ror.org/0264aj944 AWIK House Production (Czechia)'),
(54997, 'https://ror.org/004ef5a73', 'no_lang_code', 1, 'https://ror.org/004ef5a73 AGC Flat Glass Czech (Czechia)'),
(54998, 'https://ror.org/01y3wh736', 'no_lang_code', 1, 'https://ror.org/01y3wh736 Agenda (Czechia)'),
(54999, 'https://ror.org/02bed6993', 'no_lang_code', 1, 'https://ror.org/02bed6993 Axys Varilab (Czechia)'),
(55000, 'https://ror.org/00zwvxv21', 'no_lang_code', 1, 'https://ror.org/00zwvxv21 AQ SPOL (Czechia)'),
(55001, 'https://ror.org/01cfx5y86', 'no_lang_code', 1, 'https://ror.org/01cfx5y86 AZ Consult (Czechia)'),
(55002, 'https://ror.org/00s796p60', 'no_lang_code', 1, 'https://ror.org/00s796p60 Agentura Motiv P (Czechia)'),
(55003, 'https://ror.org/0102bq490', 'no_lang_code', 1, 'https://ror.org/0102bq490 AQD-envitest (Czechia)'),
(55004, 'https://ror.org/00002d369', 'no_lang_code', 1, 'https://ror.org/00002d369 Azacycles (Czechia)'),
(55005, 'https://ror.org/007t9rq67', 'no_lang_code', 1, 'https://ror.org/007t9rq67 Aqua Procon (Czechia)'),
(55006, 'https://ror.org/01w6ccy36', 'no_lang_code', 1, 'https://ror.org/01w6ccy36 AZS 98 (Czechia)'),
(55007, 'https://ror.org/04g6hvq78', 'no_lang_code', 1, 'https://ror.org/04g6hvq78 Agentura Pro Regionální Rozvoj (Czechia)'),
(55008, 'https://ror.org/045e9yd97', 'no_lang_code', 1, 'https://ror.org/045e9yd97 Aqua-contact (Czechia)'),
(55009, 'https://ror.org/056tpcd64', 'no_lang_code', 1, 'https://ror.org/056tpcd64 Ageris (Czechia)'),
(55010, 'https://ror.org/031xm4t96', 'no_lang_code', 1, 'https://ror.org/031xm4t96 BeHo (Czechia)'),
(55011, 'https://ror.org/03tvfzx75', 'no_lang_code', 1, 'https://ror.org/03tvfzx75 Kovofiniš (Czechia)'),
(55012, 'https://ror.org/03w670d24', 'no_lang_code', 1, 'https://ror.org/03w670d24 Agico (Czechia)'),
(55013, 'https://ror.org/02qsttk04', 'no_lang_code', 1, 'https://ror.org/02qsttk04 AQUAdem (Czechia)'),
(55014, 'https://ror.org/03weyxt18', 'no_lang_code', 1, 'https://ror.org/03weyxt18 Aquamonitoring (Czechia)'),
(55015, 'https://ror.org/05hw2fa25', 'no_lang_code', 1, 'https://ror.org/05hw2fa25 Agra Group (Czechia)'),
(55016, 'https://ror.org/041swdb02', 'no_lang_code', 1, 'https://ror.org/041swdb02 B. Braun (Czechia) B. Braun Avitum'),
(55017, 'https://ror.org/02p1hm914', 'no_lang_code', 1, 'https://ror.org/02p1hm914 AgriKomp Bohemia (Czechia)'),
(55018, 'https://ror.org/04xatxw44', 'no_lang_code', 1, 'https://ror.org/04xatxw44 Aquion (Czechia)'),
(55019, 'https://ror.org/04jmfdf65', 'no_lang_code', 1, 'https://ror.org/04jmfdf65 BFP Lesy a statky Tomáše Bati'),
(55020, 'https://ror.org/00413jh46', 'no_lang_code', 1, 'https://ror.org/00413jh46 Agrio (Czechia)'),
(55021, 'https://ror.org/045mezg88', 'no_lang_code', 1, 'https://ror.org/045mezg88 Arcdata (Czechia)'),
(55022, 'https://ror.org/03y443x30', 'no_lang_code', 1, 'https://ror.org/03y443x30 AGRO-Merin (Czechia)'),
(55023, 'https://ror.org/033h71b08', 'cs', 1, 'https://ror.org/033h71b08 Archeologické Centrum Olomouc'),
(55024, 'https://ror.org/04e25nh11', 'no_lang_code', 1, 'https://ror.org/04e25nh11 Agro Chomutice (Czechia)'),
(55025, 'https://ror.org/03s5ftr79', 'cs', 1, 'https://ror.org/03s5ftr79 Architektonická Kancelář Burian Křivinka'),
(55026, 'https://ror.org/005ft2876', 'no_lang_code', 1, 'https://ror.org/005ft2876 Ardeapharma (Czechia)'),
(55027, 'https://ror.org/00y9v7w55', 'no_lang_code', 1, 'https://ror.org/00y9v7w55 Agro (Czechia)'),
(55028, 'https://ror.org/02kez5066', 'no_lang_code', 1, 'https://ror.org/02kez5066 Backer Elektro (Czechia)'),
(55029, 'https://ror.org/05v629t58', 'no_lang_code', 1, 'https://ror.org/05v629t58 Argo-Hytos (Czechia)'),
(55030, 'https://ror.org/00y4c9c34', 'no_lang_code', 1, 'https://ror.org/00y4c9c34 Agro Podlesí (Czechia)'),
(55031, 'https://ror.org/00wphza66', 'no_lang_code', 1, 'https://ror.org/00wphza66 Argus Geo Systém (Czechia)'),
(55032, 'https://ror.org/03v1j6q03', 'no_lang_code', 1, 'https://ror.org/03v1j6q03 BaHa (Czechia)'),
(55033, 'https://ror.org/01dt2yc71', 'no_lang_code', 1, 'https://ror.org/01dt2yc71 Agro Rubín (Czechia)'),
(55034, 'https://ror.org/05k1g7h17', 'no_lang_code', 1, 'https://ror.org/05k1g7h17 Aries (Czechia)'),
(55035, 'https://ror.org/04gk7sd03', 'no_lang_code', 1, 'https://ror.org/04gk7sd03 Benes A Lat (Czechia)'),
(55036, 'https://ror.org/02ebsfr31', 'no_lang_code', 1, 'https://ror.org/02ebsfr31 AGRO Stošíkovice (Czechia)'),
(55037, 'https://ror.org/054rd8b94', 'no_lang_code', 1, 'https://ror.org/054rd8b94 ARKO Consult (Czechia)'),
(55038, 'https://ror.org/03nq3xp69', 'no_lang_code', 1, 'https://ror.org/03nq3xp69 Balak (Czechia)'),
(55039, 'https://ror.org/05rv0ab64', 'no_lang_code', 1, 'https://ror.org/05rv0ab64 Báňské projekty Teplice'),
(55040, 'https://ror.org/00tvd2s73', 'no_lang_code', 1, 'https://ror.org/00tvd2s73 AGRO-Partner (Czechia)'),
(55041, 'https://ror.org/00v6wgj18', 'no_lang_code', 1, 'https://ror.org/00v6wgj18 BBT-Materials Processing (Czechia)'),
(55042, 'https://ror.org/05vkhtr02', 'no_lang_code', 1, 'https://ror.org/05vkhtr02 BCS Engineering (Czechia)'),
(55043, 'https://ror.org/026gpk522', 'no_lang_code', 1, 'https://ror.org/026gpk522 AgroBio Opava (Czechia)'),
(55044, 'https://ror.org/00fb2p217', 'no_lang_code', 1, 'https://ror.org/00fb2p217 Barco (Czechia)'),
(55045, 'https://ror.org/02vznf045', 'no_lang_code', 1, 'https://ror.org/02vznf045 BDO Audit (Czechia)'),
(55046, 'https://ror.org/027x0q215', 'no_lang_code', 1, 'https://ror.org/027x0q215 Agroeko Žamberk (Czechia)'),
(55047, 'https://ror.org/00p9cwr43', 'no_lang_code', 1, 'https://ror.org/00p9cwr43 Barekol (Czechia)');
INSERT INTO `rors` VALUES
(55048, 'https://ror.org/011m09981', 'no_lang_code', 1, 'https://ror.org/011m09981 Agroel (Czechia)'),
(55049, 'https://ror.org/00qw13455', 'no_lang_code', 1, 'https://ror.org/00qw13455 Bednar Fmt (Czechia)'),
(55050, 'https://ror.org/03brbzh91', 'no_lang_code', 1, 'https://ror.org/03brbzh91 Baroza (Czechia)'),
(55051, 'https://ror.org/05sdnkt23', 'no_lang_code', 1, 'https://ror.org/05sdnkt23 Agrofarm (Czechia)'),
(55052, 'https://ror.org/03z4thr66', 'no_lang_code', 1, 'https://ror.org/03z4thr66 Barvy a laky Hostivař (Czechia)'),
(55053, 'https://ror.org/03f196d58', 'no_lang_code', 1, 'https://ror.org/03f196d58 Agrogen (Czechia)'),
(55054, 'https://ror.org/05337tn35', 'no_lang_code', 1, 'https://ror.org/05337tn35 Beleco (Czechia)'),
(55055, 'https://ror.org/05y0h1m73', 'no_lang_code', 1, 'https://ror.org/05y0h1m73 Agrointeg (Czechia)'),
(55056, 'https://ror.org/004cqq657', 'no_lang_code', 1, 'https://ror.org/004cqq657 Bemagro (Czechia)'),
(55057, 'https://ror.org/01s1asf08', 'no_lang_code', 1, 'https://ror.org/01s1asf08 Agrokomplex Ohře (Czechia)'),
(55058, 'https://ror.org/0476y1408', 'no_lang_code', 1, 'https://ror.org/0476y1408 Basaltex (Czechia)'),
(55059, 'https://ror.org/04t6d6d70', 'no_lang_code', 1, 'https://ror.org/04t6d6d70 BASF (Czechia)'),
(55060, 'https://ror.org/00jqzcd41', 'no_lang_code', 1, 'https://ror.org/00jqzcd41 Benefit CZ (Czechia)'),
(55061, 'https://ror.org/04xs06471', 'no_lang_code', 1, 'https://ror.org/04xs06471 AgroKonzulta Žamberk (Czechia)'),
(55062, 'https://ror.org/00rknv324', 'no_lang_code', 1, 'https://ror.org/00rknv324 Agromont Vimperk (Czechia)'),
(55063, 'https://ror.org/03c5aw809', 'no_lang_code', 1, 'https://ror.org/03c5aw809 BENEKOVterm (Czechia)'),
(55064, 'https://ror.org/046xnnd03', 'no_lang_code', 1, 'https://ror.org/046xnnd03 Benet Gold (Czechia)'),
(55065, 'https://ror.org/05ffbqz77', 'no_lang_code', 1, 'https://ror.org/05ffbqz77 Baťa (Czechia)'),
(55066, 'https://ror.org/03qk9fj07', 'no_lang_code', 1, 'https://ror.org/03qk9fj07 Agropodnik Kosetice (Czechia)'),
(55067, 'https://ror.org/01vtfdn94', 'no_lang_code', 1, 'https://ror.org/01vtfdn94 Bentglass (Czechia)'),
(55068, 'https://ror.org/05gc01c65', 'no_lang_code', 1, 'https://ror.org/05gc01c65 Agroprojekce Litomyšl (Czechia)'),
(55069, 'https://ror.org/035ppa085', 'no_lang_code', 1, 'https://ror.org/035ppa085 Bentley Czech (Czechia)'),
(55070, 'https://ror.org/022wy8e87', 'no_lang_code', 1, 'https://ror.org/022wy8e87 Bauer Technics'),
(55071, 'https://ror.org/01ns2nc58', 'no_lang_code', 1, 'https://ror.org/01ns2nc58 BENZ-HMB CZECH (Czechia)'),
(55072, 'https://ror.org/02whm6n40', 'no_lang_code', 1, 'https://ror.org/02whm6n40 Agroprojekt (Czechia)'),
(55073, 'https://ror.org/02k8hq379', 'no_lang_code', 1, 'https://ror.org/02k8hq379 Berman Group (Czechia)'),
(55074, 'https://ror.org/00be7h315', 'no_lang_code', 1, 'https://ror.org/00be7h315 Bayer (Czechia)'),
(55075, 'https://ror.org/0142b0n41', 'no_lang_code', 1, 'https://ror.org/0142b0n41 Berry Servis (Czechia)'),
(55076, 'https://ror.org/04avh2p37', 'no_lang_code', 1, 'https://ror.org/04avh2p37 AGROSAD Velké Bílovice (Czechia)'),
(55077, 'https://ror.org/03kc1ze55', 'no_lang_code', 1, 'https://ror.org/03kc1ze55 Beskyd Fryčovice (Czechia)'),
(55078, 'https://ror.org/00wb1mn80', 'no_lang_code', 1, 'https://ror.org/00wb1mn80 Bestex (Czechia)'),
(55079, 'https://ror.org/059r9r992', 'no_lang_code', 1, 'https://ror.org/059r9r992 Agrosoft Tábor (Czechia)'),
(55080, 'https://ror.org/02a412665', 'no_lang_code', 1, 'https://ror.org/02a412665 Beton Těšovice (Czechia)'),
(55081, 'https://ror.org/00bx5zt27', 'no_lang_code', 1, 'https://ror.org/00bx5zt27 Bazar strojů (Czechia)'),
(55082, 'https://ror.org/0584khc13', 'no_lang_code', 1, 'https://ror.org/0584khc13 Agrospol Velká Bystřice (Czechia)'),
(55083, 'https://ror.org/012qa0c42', 'no_lang_code', 1, 'https://ror.org/012qa0c42 Betonconsult (Czechia)'),
(55084, 'https://ror.org/00bat7f70', 'no_lang_code', 1, 'https://ror.org/00bat7f70 Buzuluk (Czechia)'),
(55085, 'https://ror.org/01ej37345', 'no_lang_code', 1, 'https://ror.org/01ej37345 Betonika Spol (Czechia)'),
(55086, 'https://ror.org/0333r2w37', 'no_lang_code', 1, 'https://ror.org/0333r2w37 ŽDB Drátovna (Czechia)'),
(55087, 'https://ror.org/02b31q323', 'no_lang_code', 1, 'https://ror.org/02b31q323 Agrospol Agrární Družstvo (Czechia)'),
(55088, 'https://ror.org/01bhb9v37', 'no_lang_code', 1, 'https://ror.org/01bhb9v37 Betotech (Czechia)'),
(55089, 'https://ror.org/01kzkqx40', 'no_lang_code', 1, 'https://ror.org/01kzkqx40 Agrostis Trávníky (Czechia)'),
(55090, 'https://ror.org/03pxb4090', 'no_lang_code', 1, 'https://ror.org/03pxb4090 Betula Pendula (Czechia)'),
(55091, 'https://ror.org/038trbs43', 'cs', 1, 'https://ror.org/038trbs43 BEZK'),
(55092, 'https://ror.org/04ekm7c52', 'no_lang_code', 1, 'https://ror.org/04ekm7c52 C Modul (Czechia)'),
(55093, 'https://ror.org/04ke7v690', 'no_lang_code', 1, 'https://ror.org/04ke7v690 C and D (Czechia)'),
(55094, 'https://ror.org/01xpnt789', 'en', 1, 'https://ror.org/01xpnt789 Czech Society of Biomechanics'),
(55095, 'https://ror.org/019fb4526', 'no_lang_code', 1, 'https://ror.org/019fb4526 BG Sys HT (Czechia)'),
(55096, 'https://ror.org/00ey19s74', 'no_lang_code', 1, 'https://ror.org/00ey19s74 Bilfinger MCE (Czechia)'),
(55097, 'https://ror.org/05x8mfj57', 'en', 1, 'https://ror.org/05x8mfj57 Czech Society for Quality Česká Společnost pro Jakost'),
(55098, 'https://ror.org/033bq7c05', 'no_lang_code', 1, 'https://ror.org/033bq7c05 Bioconsult (Czechia)'),
(55099, 'https://ror.org/03ymdxs56', 'en', 1, 'https://ror.org/03ymdxs56 Biocom'),
(55100, 'https://ror.org/0592xtw71', 'en', 1, 'https://ror.org/0592xtw71 Czech Society Of International Law Česká společnost pro mezinárodní právo'),
(55101, 'https://ror.org/048mh8s80', 'no_lang_code', 1, 'https://ror.org/048mh8s80 Calimmune (United States)'),
(55102, 'https://ror.org/02fx0j357', 'no_lang_code', 1, 'https://ror.org/02fx0j357 Continuous Acquisition and Lifecycle Support (Czechia)'),
(55103, 'https://ror.org/05kntkn59', 'no_lang_code', 1, 'https://ror.org/05kntkn59 Biocont Laboratory (Czechia)'),
(55104, 'https://ror.org/015vtg089', 'no_lang_code', 1, 'https://ror.org/015vtg089 Biodegradace (Czechia)'),
(55105, 'https://ror.org/04pjk3w61', 'no_lang_code', 1, 'https://ror.org/04pjk3w61 Can Superconductors (Czechia)'),
(55106, 'https://ror.org/0232e8038', 'no_lang_code', 1, 'https://ror.org/0232e8038 BioEnviro (Czechia)'),
(55107, 'https://ror.org/05n2b6e77', 'en', 1, 'https://ror.org/05n2b6e77 Czech Bat Conservation Society Česká společnost pro ochranu netopýrů'),
(55108, 'https://ror.org/00y6ymy93', 'no_lang_code', 1, 'https://ror.org/00y6ymy93 Nutreco (Czechia)'),
(55109, 'https://ror.org/05r8b0p26', 'no_lang_code', 1, 'https://ror.org/05r8b0p26 Biofarm Dora (Czechia)'),
(55110, 'https://ror.org/00z3pv627', 'no_lang_code', 1, 'https://ror.org/00z3pv627 BioFish (Czechia)'),
(55111, 'https://ror.org/02szs1583', 'en', 1, 'https://ror.org/02szs1583 Czech Society for Building Law'),
(55112, 'https://ror.org/029mmrr68', 'no_lang_code', 1, 'https://ror.org/029mmrr68 Capricor Therapeutics (United States)'),
(55113, 'https://ror.org/05s7vvm14', 'no_lang_code', 1, 'https://ror.org/05s7vvm14 Bioinstitut'),
(55114, 'https://ror.org/05ah2fk15', 'cs', 1, 'https://ror.org/05ah2fk15 Česká Spořitelna'),
(55115, 'https://ror.org/00zfhgg86', 'no_lang_code', 1, 'https://ror.org/00zfhgg86 AeskuLab (Czechia)'),
(55116, 'https://ror.org/02b2zxh20', 'no_lang_code', 1, 'https://ror.org/02b2zxh20 Biologicals (Czechia)'),
(55117, 'https://ror.org/05nrfbq13', 'en', 1, 'https://ror.org/05nrfbq13 Czech Welding Society Česká Svářečská Společnost ANB'),
(55118, 'https://ror.org/01kqpfp08', 'no_lang_code', 1, 'https://ror.org/01kqpfp08 Biomedica (Czechia)'),
(55119, 'https://ror.org/02gktfy53', 'no_lang_code', 1, 'https://ror.org/02gktfy53 Tyrolit (Czechia)'),
(55120, 'https://ror.org/04t4d1t15', 'no_lang_code', 1, 'https://ror.org/04t4d1t15 Cardion (Czechia)'),
(55121, 'https://ror.org/04e3g2b28', 'no_lang_code', 1, 'https://ror.org/04e3g2b28 Biopol Paints (Czechia)'),
(55122, 'https://ror.org/047909p37', 'no_lang_code', 1, 'https://ror.org/047909p37 ČAS Service (Czechia)'),
(55123, 'https://ror.org/00tjk7247', 'no_lang_code', 1, 'https://ror.org/00tjk7247 Biopreparáty (Czechia)'),
(55124, 'https://ror.org/00927ty10', 'no_lang_code', 1, 'https://ror.org/00927ty10 Cayman Chemical (United States)'),
(55125, 'https://ror.org/047nxq723', 'en', 1, 'https://ror.org/047nxq723 Czech Forum for Development Cooperation České fórum pro rozvojovou spolupráci'),
(55126, 'https://ror.org/038vzy124', 'no_lang_code', 1, 'https://ror.org/038vzy124 Bios Služby Výpočetní Techniky (Czechia)'),
(55127, 'https://ror.org/003z52m74', 'no_lang_code', 1, 'https://ror.org/003z52m74 CCS (Czechia)'),
(55128, 'https://ror.org/02x4y2b54', 'cs', 1, 'https://ror.org/02x4y2b54 České Loděnice'),
(55129, 'https://ror.org/059aa2e10', 'no_lang_code', 1, 'https://ror.org/059aa2e10 ČD Informační Systémy (Czechia)'),
(55130, 'https://ror.org/01b2xa564', 'no_lang_code', 1, 'https://ror.org/01b2xa564 Czech Radiocommunications (Czechia) České Radiokomunikace'),
(55131, 'https://ror.org/042t14b38', 'no_lang_code', 1, 'https://ror.org/042t14b38 iBioTech (Czechia)'),
(55132, 'https://ror.org/03g34vx58', 'no_lang_code', 1, 'https://ror.org/03g34vx58 ČD Telematika (Czechia)'),
(55133, 'https://ror.org/0381s2a22', 'no_lang_code', 1, 'https://ror.org/0381s2a22 CE Traffic (Czechia)'),
(55134, 'https://ror.org/05etrt910', 'no_lang_code', 1, 'https://ror.org/05etrt910 BioVendor (Czechia)'),
(55135, 'https://ror.org/01zsbqm47', 'en', 1, 'https://ror.org/01zsbqm47 Electrotechnical Association of the Czech Republic Českomoravská elektrotechnická asociace'),
(55136, 'https://ror.org/025decp49', 'no_lang_code', 1, 'https://ror.org/025decp49 Cech Engineering (Czechia)'),
(55137, 'https://ror.org/01v6a8g28', 'en', 1, 'https://ror.org/01v6a8g28 Czech Moravian Commodity Exchange Kladno Českomoravská komoditní burza Kladno'),
(55138, 'https://ror.org/02vmhk782', 'no_lang_code', 1, 'https://ror.org/02vmhk782 Cecho Bohumil Cempírek (Czechia)'),
(55139, 'https://ror.org/00v1gsr34', 'no_lang_code', 1, 'https://ror.org/00v1gsr34 Blata (Czechia)'),
(55140, 'https://ror.org/058ypfn29', 'cs', 1, 'https://ror.org/058ypfn29 Diecéze litoměřická'),
(55141, 'https://ror.org/03ztqsz78', 'cs', 1, 'https://ror.org/03ztqsz78 Českomoravská Společnost Chovatelů'),
(55142, 'https://ror.org/00fkcvn38', 'no_lang_code', 1, 'https://ror.org/00fkcvn38 Blatenská ryba (Czechia)'),
(55143, 'https://ror.org/04dkxv608', 'no_lang_code', 1, 'https://ror.org/04dkxv608 Českomoravský Cement (Czechia)'),
(55144, 'https://ror.org/04sevde02', 'cs', 1, 'https://ror.org/04sevde02 Českomoravský Svaz Mlékárenský'),
(55145, 'https://ror.org/01fpb1t36', 'no_lang_code', 1, 'https://ror.org/01fpb1t36 Blue Ray (Czechia)'),
(55146, 'https://ror.org/053tymx43', 'cs', 1, 'https://ror.org/053tymx43 Československá Obchodní Banka'),
(55147, 'https://ror.org/018ze1g95', 'no_lang_code', 1, 'https://ror.org/018ze1g95 Good Sailors (Czechia)'),
(55148, 'https://ror.org/05m9zbc57', 'no_lang_code', 1, 'https://ror.org/05m9zbc57 Československá Plavba Labská (Czechia) Československá Plavební Akciová Společnost Labská'),
(55149, 'https://ror.org/00h1t5780', 'no_lang_code', 1, 'https://ror.org/00h1t5780 Bmto Group (Czechia)'),
(55150, 'https://ror.org/024xpqd61', 'no_lang_code', 1, 'https://ror.org/024xpqd61 AB Neo (Czechia)'),
(55151, 'https://ror.org/05xa8nr60', 'no_lang_code', 1, 'https://ror.org/05xa8nr60 Bodycote (Czechia)'),
(55152, 'https://ror.org/05rz5mc59', 'no_lang_code', 1, 'https://ror.org/05rz5mc59 Cellular Biomedicine Group (United States)'),
(55153, 'https://ror.org/04jtx4r25', 'no_lang_code', 1, 'https://ror.org/04jtx4r25 Bogges (Czechia)'),
(55154, 'https://ror.org/014tm9824', 'no_lang_code', 1, 'https://ror.org/014tm9824 Czechoslovak Society for Microbiology (Czechia) Československá společnost mikrobiologická'),
(55155, 'https://ror.org/00exwt685', 'en', 1, 'https://ror.org/00exwt685 Czechoslovak Society for Forensic Genetics Československé společnosti pro forenzní genetiku'),
(55156, 'https://ror.org/02zwqdg19', 'no_lang_code', 1, 'https://ror.org/02zwqdg19 Bohemian Software Consulting (Czechia)'),
(55157, 'https://ror.org/04fe4pq10', 'no_lang_code', 1, 'https://ror.org/04fe4pq10 Cemex (Czechia)'),
(55158, 'https://ror.org/05bdnn452', 'no_lang_code', 1, 'https://ror.org/05bdnn452 Bohemiaseed (Czechia)'),
(55159, 'https://ror.org/00cwx0b58', 'no_lang_code', 1, 'https://ror.org/00cwx0b58 Bohemilk (Czechia)'),
(55160, 'https://ror.org/03jnwsv20', 'no_lang_code', 1, 'https://ror.org/03jnwsv20 Československý Lloyd (Czechia)'),
(55161, 'https://ror.org/053jawq64', 'no_lang_code', 1, 'https://ror.org/053jawq64 Centaurea (Czechia)'),
(55162, 'https://ror.org/03ajhc397', 'no_lang_code', 1, 'https://ror.org/03ajhc397 Bohušovická Mlékárna (Czechia)'),
(55163, 'https://ror.org/01ef7dt45', 'no_lang_code', 1, 'https://ror.org/01ef7dt45 Centec (Czechia)'),
(55164, 'https://ror.org/05y1gzz92', 'no_lang_code', 1, 'https://ror.org/05y1gzz92 GHH-Bonatrans (Czechia)'),
(55165, 'https://ror.org/029kacy52', 'no_lang_code', 1, 'https://ror.org/029kacy52 Český Mák (Czechia)'),
(55166, 'https://ror.org/055tc0a50', 'no_lang_code', 1, 'https://ror.org/055tc0a50 Central European Biosystems (Czechia)'),
(55167, 'https://ror.org/048e5wt68', 'no_lang_code', 1, 'https://ror.org/048e5wt68 Bonnel Technologie (Czechia)'),
(55168, 'https://ror.org/05f6xwx81', 'en', 1, 'https://ror.org/05f6xwx81 Czech Otter Foundation Fund Český nadační fond pro vydru'),
(55169, 'https://ror.org/034fvq480', 'en', 1, 'https://ror.org/034fvq480 Czech Olympic Committee Český Olympijský Výbor'),
(55170, 'https://ror.org/039rjaf45', 'no_lang_code', 1, 'https://ror.org/039rjaf45 Bosch Rexroth (Czechia)'),
(55171, 'https://ror.org/013vrgb28', 'en', 1, 'https://ror.org/013vrgb28 Czech Radio Český rozhlas'),
(55172, 'https://ror.org/02zk59x78', 'en', 1, 'https://ror.org/02zk59x78 Central European Advisory Group'),
(55173, 'https://ror.org/001esq883', 'en', 1, 'https://ror.org/001esq883 Czech Fishing Union Český rybářský svaz'),
(55174, 'https://ror.org/03w948j83', 'en', 1, 'https://ror.org/03w948j83 Czech Statistical Office Český statistický úřad'),
(55175, 'https://ror.org/00yktj852', 'no_lang_code', 1, 'https://ror.org/00yktj852 BOVA Březnice (Czechia)'),
(55176, 'https://ror.org/0111g6367', 'no_lang_code', 1, 'https://ror.org/0111g6367 Suez (Czechia)'),
(55177, 'https://ror.org/03reeyx55', 'en', 1, 'https://ror.org/03reeyx55 Czech Beef Breeders Association Český svaz chovatelů masného skotu'),
(55178, 'https://ror.org/049hp1z35', 'no_lang_code', 1, 'https://ror.org/049hp1z35 Bratři Horákové (Czechia)'),
(55179, 'https://ror.org/018dfgy98', 'no_lang_code', 1, 'https://ror.org/018dfgy98 Centro de Calculo Igs Software (Czechia)'),
(55180, 'https://ror.org/02058sj25', 'no_lang_code', 1, 'https://ror.org/02058sj25 Brazzale Moravia (Czechia)'),
(55181, 'https://ror.org/01q9t2q68', 'cs', 1, 'https://ror.org/01q9t2q68 Česká Unie Sportu'),
(55182, 'https://ror.org/00v4fnn72', 'no_lang_code', 1, 'https://ror.org/00v4fnn72 Briklis (Czechia)'),
(55183, 'https://ror.org/02p4b8678', 'cs', 1, 'https://ror.org/02p4b8678 Český Svaz Včelařů'),
(55184, 'https://ror.org/0064vct34', 'no_lang_code', 1, 'https://ror.org/0064vct34 Brněnské Vodárny a Kanalizace (Czechia)'),
(55185, 'https://ror.org/04kwb2d55', 'en', 1, 'https://ror.org/04kwb2d55 Czech Proof House for Arms and Ammunition Český úřad pro zkoušení zbraní a střeliva'),
(55186, 'https://ror.org/04zksj147', 'en', 1, 'https://ror.org/04zksj147 Centre For Innovation And Development Centrum Inovací a Rozvoje'),
(55187, 'https://ror.org/00rtz3610', 'en', 1, 'https://ror.org/00rtz3610 Centre for Investment Development and Innovation Centrum investic, rozvoje a inovací'),
(55188, 'https://ror.org/00cmkfq61', 'no_lang_code', 1, 'https://ror.org/00cmkfq61 Appecastro (Czechia)'),
(55189, 'https://ror.org/01fve6x10', 'cs', 1, 'https://ror.org/01fve6x10 Centrum Pasivního Domu'),
(55190, 'https://ror.org/01qh4pm19', 'en', 1, 'https://ror.org/01qh4pm19 Korea Meteorological Institute'),
(55191, 'https://ror.org/029y5xd69', 'cs', 1, 'https://ror.org/029y5xd69 Centrum pro Bezpečný Stát'),
(55192, 'https://ror.org/02dknz829', 'no_lang_code', 1, 'https://ror.org/02dknz829 Cezea - Šlechtitelská Stanice (Czechia)'),
(55193, 'https://ror.org/04f7gm277', 'no_lang_code', 1, 'https://ror.org/04f7gm277 Junker (Czechia)'),
(55194, 'https://ror.org/02e9grz11', 'no_lang_code', 1, 'https://ror.org/02e9grz11 CIMTO (Czechia) Centrum pro informace a mechanické testování obalů'),
(55195, 'https://ror.org/0586vk124', 'en', 1, 'https://ror.org/0586vk124 CGB Laboratory CGB laboratoř'),
(55196, 'https://ror.org/01yxxeq63', 'en', 1, 'https://ror.org/01yxxeq63 Centre for Mental Health Care Development Centrum pro rozvoj péče o duševní zdraví'),
(55197, 'https://ror.org/03wk3qv94', 'no_lang_code', 1, 'https://ror.org/03wk3qv94 CGI (Czechia)'),
(55198, 'https://ror.org/03mw0t712', 'no_lang_code', 1, 'https://ror.org/03mw0t712 Atos (Czechia)'),
(55199, 'https://ror.org/00qks3d19', 'en', 1, 'https://ror.org/00qks3d19 Kansas Department of Commerce'),
(55200, 'https://ror.org/051p4pj36', 'no_lang_code', 1, 'https://ror.org/051p4pj36 Chaps (Czechia)'),
(55201, 'https://ror.org/02r51sa72', 'no_lang_code', 1, 'https://ror.org/02r51sa72 Charvat AXL (Czechia)'),
(55202, 'https://ror.org/00kbr7y65', 'no_lang_code', 1, 'https://ror.org/00kbr7y65 BurgSys (Czechia)'),
(55203, 'https://ror.org/04a8hmx75', 'no_lang_code', 1, 'https://ror.org/04a8hmx75 Chateau Bzenec (Czechia)'),
(55204, 'https://ror.org/05mygvq15', 'no_lang_code', 1, 'https://ror.org/05mygvq15 Sportas (Czechia)'),
(55205, 'https://ror.org/01t0sgr89', 'no_lang_code', 1, 'https://ror.org/01t0sgr89 Chemcosport (Czechia)'),
(55206, 'https://ror.org/033v4eh59', 'no_lang_code', 1, 'https://ror.org/033v4eh59 Clutex (Czechia)'),
(55207, 'https://ror.org/040hz3y05', 'no_lang_code', 1, 'https://ror.org/040hz3y05 CNC Technology (Czechia)'),
(55208, 'https://ror.org/01zchyr17', 'no_lang_code', 1, 'https://ror.org/01zchyr17 Chemispol (Czechia)'),
(55209, 'https://ror.org/00zyea842', 'no_lang_code', 1, 'https://ror.org/00zyea842 CNS (Czechia)'),
(55210, 'https://ror.org/05sgndn97', 'no_lang_code', 1, 'https://ror.org/05sgndn97 Code Creator (Czechia)'),
(55211, 'https://ror.org/03c7h8w67', 'en', 1, 'https://ror.org/03c7h8w67 Centre for the Study of Democracy and Culture Centrum pro Studium Demokracie a Kultury'),
(55212, 'https://ror.org/017dxtw95', 'en', 1, 'https://ror.org/017dxtw95 Centre for Research Development and Innovation Centrum pro výzkum, vývoj a inovace'),
(55213, 'https://ror.org/01km9ds98', 'no_lang_code', 1, 'https://ror.org/01km9ds98 Codep (Czechia)'),
(55214, 'https://ror.org/04dg1g218', 'no_lang_code', 1, 'https://ror.org/04dg1g218 Cisco Systems (Czechia)'),
(55215, 'https://ror.org/04x99ga69', 'no_lang_code', 1, 'https://ror.org/04x99ga69 Čepro (Czechia)'),
(55216, 'https://ror.org/00bjp5r54', 'no_lang_code', 1, 'https://ror.org/00bjp5r54 Color Spectrum (Czechia)'),
(55217, 'https://ror.org/05s5wce38', 'no_lang_code', 1, 'https://ror.org/05s5wce38 Chemopharma (Austria)'),
(55218, 'https://ror.org/047107639', 'no_lang_code', 1, 'https://ror.org/047107639 Cernin (Czechia)'),
(55219, 'https://ror.org/00vp7bk08', 'no_lang_code', 1, 'https://ror.org/00vp7bk08 Casale Project (Czechia)'),
(55220, 'https://ror.org/01rpma152', 'no_lang_code', 1, 'https://ror.org/01rpma152 Colorlak (Czechia)'),
(55221, 'https://ror.org/01g0s0p65', 'no_lang_code', 1, 'https://ror.org/01g0s0p65 Colosseum (Czechia)'),
(55222, 'https://ror.org/04p78q286', 'no_lang_code', 1, 'https://ror.org/04p78q286 Colsys (Czechia)'),
(55223, 'https://ror.org/054hgcr68', 'no_lang_code', 1, 'https://ror.org/054hgcr68 Chemoprojekt (Czechia)'),
(55224, 'https://ror.org/056vxkd58', 'en', 1, 'https://ror.org/056vxkd58 CzechTrade Česká Agentura na Podporu Obchodu'),
(55225, 'https://ror.org/00qcg1942', 'no_lang_code', 1, 'https://ror.org/00qcg1942 CHemProtect (Czechia)'),
(55226, 'https://ror.org/054746w96', 'no_lang_code', 1, 'https://ror.org/054746w96 Columna Centrum'),
(55227, 'https://ror.org/01ss91v48', 'no_lang_code', 1, 'https://ror.org/01ss91v48 Com-Sys Trade (Czechia)'),
(55228, 'https://ror.org/03f6vnx95', 'no_lang_code', 1, 'https://ror.org/03f6vnx95 Comet System (Czechia)'),
(55229, 'https://ror.org/00tqvk397', 'en', 1, 'https://ror.org/00tqvk397 Czech Association of Fire Officers Česká Asociace Hasičských Důstojníků'),
(55230, 'https://ror.org/00rq99817', 'no_lang_code', 1, 'https://ror.org/00rq99817 ChipInvest (Czechia)'),
(55231, 'https://ror.org/04d23mg64', 'no_lang_code', 1, 'https://ror.org/04d23mg64 Chirana (Czechia)'),
(55232, 'https://ror.org/03h43ej82', 'no_lang_code', 1, 'https://ror.org/03h43ej82 Comimpex (Czechia)'),
(55233, 'https://ror.org/04051ah92', 'cs', 1, 'https://ror.org/04051ah92 Česká Asociace Pedagogického Výzkumu'),
(55234, 'https://ror.org/022q21023', 'en', 1, 'https://ror.org/022q21023 Czech Association of Petroleum Industry and Trade Česká asociace petrolejářského průmyslu a obchodu'),
(55235, 'https://ror.org/0293b6371', 'no_lang_code', 1, 'https://ror.org/0293b6371 Chirastar KDT (Czechia)'),
(55236, 'https://ror.org/04kkref88', 'en', 1, 'https://ror.org/04kkref88 Czech ICT Alliance Česká asociace pro IT služby'),
(55237, 'https://ror.org/05smkqj74', 'no_lang_code', 1, 'https://ror.org/05smkqj74 Compact Bohemia (Czechia)'),
(55238, 'https://ror.org/01kmxmj87', 'no_lang_code', 1, 'https://ror.org/01kmxmj87 Brantner Walter (Czechia)'),
(55239, 'https://ror.org/02w29b595', 'no_lang_code', 1, 'https://ror.org/02w29b595 Chmelarstvi Druzstvo Žatec (Czechia)'),
(55240, 'https://ror.org/04jq2dg02', 'cs', 1, 'https://ror.org/04jq2dg02 Česká Asociace Steeplachase'),
(55241, 'https://ror.org/05ef3yq64', 'cs', 1, 'https://ror.org/05ef3yq64 Academia Nakladatelství'),
(55242, 'https://ror.org/031zns335', 'no_lang_code', 1, 'https://ror.org/031zns335 Compas Automatizace (Czechia)'),
(55243, 'https://ror.org/02t98da76', 'en', 1, 'https://ror.org/02t98da76 Czech Biogas Association Česká Bioplynová Asociace'),
(55244, 'https://ror.org/03apfzf38', 'no_lang_code', 1, 'https://ror.org/03apfzf38 Choceňská Mlékárn (Czechia)'),
(55245, 'https://ror.org/020vrbx29', 'no_lang_code', 1, 'https://ror.org/020vrbx29 F.P.S. Arco (Czechia)'),
(55246, 'https://ror.org/037ax5f60', 'no_lang_code', 1, 'https://ror.org/037ax5f60 Breeding Cooperative Impuls (Czechia) Chovatelské Družstvo Impuls'),
(55247, 'https://ror.org/01zj3x449', 'no_lang_code', 1, 'https://ror.org/01zj3x449 Chovservis (Czechia)'),
(55248, 'https://ror.org/014bj9h93', 'cs', 1, 'https://ror.org/014bj9h93 Česká Energetická Asociace'),
(55249, 'https://ror.org/05j45ps30', 'no_lang_code', 1, 'https://ror.org/05j45ps30 Compotech (Czechia)'),
(55250, 'https://ror.org/000kmds53', 'no_lang_code', 1, 'https://ror.org/000kmds53 Chryso (United States)'),
(55251, 'https://ror.org/01h724050', 'no_lang_code', 1, 'https://ror.org/01h724050 CI2'),
(55252, 'https://ror.org/010zgd654', 'cs', 1, 'https://ror.org/010zgd654 Česká Geografická Společnost'),
(55253, 'https://ror.org/01dhtjr14', 'no_lang_code', 1, 'https://ror.org/01dhtjr14 Composite Components (Czechia)'),
(55254, 'https://ror.org/05s7bjk78', 'no_lang_code', 1, 'https://ror.org/05s7bjk78 Cicero (Czechia)'),
(55255, 'https://ror.org/0308hqt67', 'no_lang_code', 1, 'https://ror.org/0308hqt67 Compuplast International (Czechia)'),
(55256, 'https://ror.org/00f4jy747', 'no_lang_code', 1, 'https://ror.org/00f4jy747 CID International (Czechia)'),
(55257, 'https://ror.org/05q6e7g57', 'no_lang_code', 1, 'https://ror.org/05q6e7g57 Cidem Hranice (Czechia)'),
(55258, 'https://ror.org/02pb4ss95', 'cs', 1, 'https://ror.org/02pb4ss95 Česká Hlava'),
(55259, 'https://ror.org/05t395q46', 'no_lang_code', 1, 'https://ror.org/05t395q46 Cígler Software (Czechia)'),
(55260, 'https://ror.org/0497wpq23', 'no_lang_code', 1, 'https://ror.org/0497wpq23 ČIP Plus (Czechia)'),
(55261, 'https://ror.org/046nvcx94', 'cs', 1, 'https://ror.org/046nvcx94 Česká Hutnická Společnost'),
(55262, 'https://ror.org/02445zq85', 'no_lang_code', 1, 'https://ror.org/02445zq85 Tec 21'),
(55263, 'https://ror.org/04bag3882', 'no_lang_code', 1, 'https://ror.org/04bag3882 CIUR (Czechia)'),
(55264, 'https://ror.org/00dcm7m32', 'no_lang_code', 1, 'https://ror.org/00dcm7m32 Civitas per Populi'),
(55265, 'https://ror.org/031mphy63', 'no_lang_code', 1, 'https://ror.org/031mphy63 Comtes DFM (Czechia)'),
(55266, 'https://ror.org/05de2f050', 'no_lang_code', 1, 'https://ror.org/05de2f050 ČKD Blansko (Czechia)'),
(55267, 'https://ror.org/02efjfe53', 'cs', 1, 'https://ror.org/02efjfe53 Česká Kinantropologická Společnost'),
(55268, 'https://ror.org/0252gcq98', 'no_lang_code', 1, 'https://ror.org/0252gcq98 Consultest (Czechia)'),
(55269, 'https://ror.org/00w5csc43', 'en', 1, 'https://ror.org/00w5csc43 Chamber and Offices Authorized Persons Engineering Česká Komora Autorizovaných Inženýrů a Techniků Činných ve Výstavbě'),
(55270, 'https://ror.org/01s4ptg67', 'no_lang_code', 1, 'https://ror.org/01s4ptg67 Clasic (Czechia)'),
(55271, 'https://ror.org/0453b8r94', 'cs', 1, 'https://ror.org/0453b8r94 Česká Krajina'),
(55272, 'https://ror.org/026xhpy07', 'no_lang_code', 1, 'https://ror.org/026xhpy07 Consulting Company Novasoft (Czechia)'),
(55273, 'https://ror.org/03w38en78', 'no_lang_code', 1, 'https://ror.org/03w38en78 Classic Oil (Czechia)'),
(55274, 'https://ror.org/01gdbxe81', 'en', 1, 'https://ror.org/01gdbxe81 Czech Medical Chamber Česká lékařská komora'),
(55275, 'https://ror.org/05x1f4x57', 'no_lang_code', 1, 'https://ror.org/05x1f4x57 Consygen CZ (Czechia)'),
(55276, 'https://ror.org/009g2k883', 'no_lang_code', 1, 'https://ror.org/009g2k883 Cleantex (Czechia)'),
(55277, 'https://ror.org/04vmsv961', 'cs', 1, 'https://ror.org/04vmsv961 Česká Membránová Platforma'),
(55278, 'https://ror.org/037fjvr70', 'no_lang_code', 1, 'https://ror.org/037fjvr70 CleverMaps (Czechia)'),
(55279, 'https://ror.org/04t5tgf48', 'no_lang_code', 1, 'https://ror.org/04t5tgf48 Conte Energy (Czechia)'),
(55280, 'https://ror.org/05mtsfd08', 'no_lang_code', 1, 'https://ror.org/05mtsfd08 CleverTech (Czechia)'),
(55281, 'https://ror.org/051mfdq62', 'cs', 1, 'https://ror.org/051mfdq62 Česká Národopisná Společnost'),
(55282, 'https://ror.org/02dw1m470', 'no_lang_code', 1, 'https://ror.org/02dw1m470 Conteg (Czechia)'),
(55283, 'https://ror.org/04jcq5y30', 'no_lang_code', 1, 'https://ror.org/04jcq5y30 Denas Color (Czechia)'),
(55284, 'https://ror.org/035kbp941', 'no_lang_code', 1, 'https://ror.org/035kbp941 Dendera (Czechia)'),
(55285, 'https://ror.org/01a1e7r70', 'no_lang_code', 1, 'https://ror.org/01a1e7r70 Dendria (Czechia)'),
(55286, 'https://ror.org/02b0bmh39', 'no_lang_code', 1, 'https://ror.org/02b0bmh39 Hutnická zaměstnanecká pojišťovna Česká Průmyslová Zdravotní Pojišťovna (Czechia)'),
(55287, 'https://ror.org/00meg4816', 'no_lang_code', 1, 'https://ror.org/00meg4816 Veolia (Czechia)'),
(55288, 'https://ror.org/043tgen92', 'no_lang_code', 1, 'https://ror.org/043tgen92 Coprosys-LVI (Czechia)'),
(55289, 'https://ror.org/015j7rx80', 'no_lang_code', 1, 'https://ror.org/015j7rx80 Ders (Czechia)'),
(55290, 'https://ror.org/00yy4rd30', 'no_lang_code', 1, 'https://ror.org/00yy4rd30 Descent (Czechia)'),
(55291, 'https://ror.org/00g3hdg93', 'en', 1, 'https://ror.org/00g3hdg93 Kancelář Poslanecké sněmovny Office of the Chamber of Deputies'),
(55292, 'https://ror.org/05chynf20', 'no_lang_code', 1, 'https://ror.org/05chynf20 Designfoods (Czechia)'),
(55293, 'https://ror.org/05whaqa79', 'cs', 1, 'https://ror.org/05whaqa79 Česká Rozvojová Agentura'),
(55294, 'https://ror.org/05ypkce93', 'no_lang_code', 1, 'https://ror.org/05ypkce93 Cortis Consulting'),
(55295, 'https://ror.org/019w0cd69', 'no_lang_code', 1, 'https://ror.org/019w0cd69 Despa ok (Czechia)'),
(55296, 'https://ror.org/05fy92604', 'no_lang_code', 1, 'https://ror.org/05fy92604 Destrux (Czechia)'),
(55297, 'https://ror.org/00pg1wz48', 'no_lang_code', 1, 'https://ror.org/00pg1wz48 Detas (Czechia)'),
(55298, 'https://ror.org/046q5nj25', 'cs', 1, 'https://ror.org/046q5nj25 Česká Speleologická Společnost'),
(55299, 'https://ror.org/020d0v548', 'no_lang_code', 1, 'https://ror.org/020d0v548 Crea Hydro&Energy (Czechia)'),
(55300, 'https://ror.org/02jmje486', 'cs', 1, 'https://ror.org/02jmje486 Dětské Centrum Paprsek'),
(55301, 'https://ror.org/05y0t3w48', 'no_lang_code', 1, 'https://ror.org/05y0t3w48 Creative Connections (Czechia)'),
(55302, 'https://ror.org/0063kr105', 'cs', 1, 'https://ror.org/0063kr105 Dětské Krizové Centrum'),
(55303, 'https://ror.org/03zdztk57', 'no_lang_code', 1, 'https://ror.org/03zdztk57 Czech Credit Bureau (Czechia)'),
(55304, 'https://ror.org/01ejq3n45', 'cs', 1, 'https://ror.org/01ejq3n45 Children’s Centre Little House Dzieckie Centrum Domeczek Dětské Centrum Domeček Dětský Domov pro Děti do 3 Let'),
(55305, 'https://ror.org/026qmmw74', 'cs', 1, 'https://ror.org/026qmmw74 Česká Společnost Chemického Inženýrství'),
(55306, 'https://ror.org/044jgn488', 'no_lang_code', 1, 'https://ror.org/044jgn488 DevCom (Czechia)'),
(55307, 'https://ror.org/011fc5j67', 'no_lang_code', 1, 'https://ror.org/011fc5j67 Augur Consulting (Czechia)'),
(55308, 'https://ror.org/00wac5p69', 'no_lang_code', 1, 'https://ror.org/00wac5p69 Devimex (Czechia)'),
(55309, 'https://ror.org/00r01p496', 'no_lang_code', 1, 'https://ror.org/00r01p496 Crystalex (Czechia)'),
(55310, 'https://ror.org/02af9ge32', 'no_lang_code', 1, 'https://ror.org/02af9ge32 CS Plasting (Czechia)'),
(55311, 'https://ror.org/03q8z7066', 'no_lang_code', 1, 'https://ror.org/03q8z7066 DFC Design (Czechia)'),
(55312, 'https://ror.org/0405wn630', 'cs', 1, 'https://ror.org/0405wn630 Česká Společnost Entomologická'),
(55313, 'https://ror.org/03yjc5j10', 'no_lang_code', 1, 'https://ror.org/03yjc5j10 CS Soft (Czechia)'),
(55314, 'https://ror.org/008jcqh21', 'no_lang_code', 1, 'https://ror.org/008jcqh21 CS-Beton (Czechia)'),
(55315, 'https://ror.org/00xb8n835', 'no_lang_code', 1, 'https://ror.org/00xb8n835 CS-Project (Czechia)'),
(55316, 'https://ror.org/037d48q80', 'en', 1, 'https://ror.org/037d48q80 Czech Society of Experimental Plant Biology Česká společnost experimentální biologie rostlin'),
(55317, 'https://ror.org/048fh6562', 'en', 1, 'https://ror.org/048fh6562 Czech Society for Histo and Cytochemistry Česká společnost histo-a cytochemická'),
(55318, 'https://ror.org/03b6b6988', 'no_lang_code', 1, 'https://ror.org/03b6b6988 Diamo (Czechia)'),
(55319, 'https://ror.org/00bn3c948', 'no_lang_code', 1, 'https://ror.org/00bn3c948 Czech Space Research Centre (Czechia)'),
(55320, 'https://ror.org/01efe3143', 'no_lang_code', 1, 'https://ror.org/01efe3143 DT Výhybkárna a Strojírna (Czechia)'),
(55321, 'https://ror.org/00svnts80', 'no_lang_code', 1, 'https://ror.org/00svnts80 DTO (Czechia)'),
(55322, 'https://ror.org/010nah411', 'no_lang_code', 1, 'https://ror.org/010nah411 DTZ (Czechia)'),
(55323, 'https://ror.org/036ef8v07', 'no_lang_code', 1, 'https://ror.org/036ef8v07 Cubespace (Czechia)'),
(55324, 'https://ror.org/03fp7s507', 'cs', 1, 'https://ror.org/03fp7s507 Armáda Spásy'),
(55325, 'https://ror.org/03gd5r229', 'no_lang_code', 1, 'https://ror.org/03gd5r229 Grupo Dibaq (Spain)'),
(55326, 'https://ror.org/043290w89', 'no_lang_code', 1, 'https://ror.org/043290w89 CVP Galvanika (Czechia)'),
(55327, 'https://ror.org/01wrq2g34', 'no_lang_code', 1, 'https://ror.org/01wrq2g34 Dvořák (Czechia)'),
(55328, 'https://ror.org/04r6z2s60', 'no_lang_code', 1, 'https://ror.org/04r6z2s60 Dinel (Czechia)'),
(55329, 'https://ror.org/0091az632', 'no_lang_code', 1, 'https://ror.org/0091az632 Dynamic Future (Czechia)'),
(55330, 'https://ror.org/05jpnvr67', 'no_lang_code', 1, 'https://ror.org/05jpnvr67 Unicorn (Czechia)'),
(55331, 'https://ror.org/022580115', 'no_lang_code', 1, 'https://ror.org/022580115 Dynex (Czechia)'),
(55332, 'https://ror.org/04bm96s59', 'no_lang_code', 1, 'https://ror.org/04bm96s59 CZ Bijo (Czechia)'),
(55333, 'https://ror.org/01ct81870', 'cs', 1, 'https://ror.org/01ct81870 CZ Biom'),
(55334, 'https://ror.org/01aaykq16', 'no_lang_code', 1, 'https://ror.org/01aaykq16 Diram (Czechia)'),
(55335, 'https://ror.org/012et2c70', 'no_lang_code', 1, 'https://ror.org/012et2c70 CZ Fruit (Czechia)'),
(55336, 'https://ror.org/03g0bh391', 'no_lang_code', 1, 'https://ror.org/03g0bh391 Disam RT (Czechia)'),
(55337, 'https://ror.org/017fxz195', 'no_lang_code', 1, 'https://ror.org/017fxz195 Dyntec (Czechia)'),
(55338, 'https://ror.org/019dgfy14', 'no_lang_code', 1, 'https://ror.org/019dgfy14 Dystiff (Czechia)'),
(55339, 'https://ror.org/03g1xh439', 'no_lang_code', 1, 'https://ror.org/03g1xh439 ESL (Czechia)'),
(55340, 'https://ror.org/03fqv7d77', 'no_lang_code', 1, 'https://ror.org/03fqv7d77 Dispechem (Czechia)'),
(55341, 'https://ror.org/00ez64n04', 'no_lang_code', 1, 'https://ror.org/00ez64n04 Ditana (Czechia)'),
(55342, 'https://ror.org/008je7023', 'no_lang_code', 1, 'https://ror.org/008je7023 E therm TZ (Czechia)'),
(55343, 'https://ror.org/05a2qqv55', 'no_lang_code', 1, 'https://ror.org/05a2qqv55 DIZ Bohemia (Czechia)'),
(55344, 'https://ror.org/00k7st669', 'no_lang_code', 1, 'https://ror.org/00k7st669 Czech Aeroholding (Czechia) Český Aeroholding'),
(55345, 'https://ror.org/055m4g098', 'no_lang_code', 1, 'https://ror.org/055m4g098 E and H Services (Czechia)'),
(55346, 'https://ror.org/00138a023', 'no_lang_code', 1, 'https://ror.org/00138a023 E4t Electronics for Transportation (Czechia)'),
(55347, 'https://ror.org/04wjdbs69', 'no_lang_code', 1, 'https://ror.org/04wjdbs69 Czech Industry Group (Czechia)'),
(55348, 'https://ror.org/05nrryz05', 'no_lang_code', 1, 'https://ror.org/05nrryz05 Eago Systems (Czechia)'),
(55349, 'https://ror.org/03gjtay97', 'no_lang_code', 1, 'https://ror.org/03gjtay97 DLF Trifolium Hladké Životice (Czechia)'),
(55350, 'https://ror.org/010rabn19', 'no_lang_code', 1, 'https://ror.org/010rabn19 Electronic Control and Measurement (Czechia)'),
(55351, 'https://ror.org/02syz0429', 'no_lang_code', 1, 'https://ror.org/02syz0429 Eco Building Brno (Czechia)'),
(55352, 'https://ror.org/00qp6gv29', 'no_lang_code', 1, 'https://ror.org/00qp6gv29 ECO (Czechia)'),
(55353, 'https://ror.org/035rg2c54', 'no_lang_code', 1, 'https://ror.org/035rg2c54 ECO Management (Czechia)'),
(55354, 'https://ror.org/051bbpq39', 'no_lang_code', 1, 'https://ror.org/051bbpq39 Czech Machines (Czechia)'),
(55355, 'https://ror.org/04d730y78', 'cs', 1, 'https://ror.org/04d730y78 Domov Na Jarošce, Příspěvková Organizace'),
(55356, 'https://ror.org/05xqftd54', 'no_lang_code', 1, 'https://ror.org/05xqftd54 Ecofer (Czechia)'),
(55357, 'https://ror.org/014we6j04', 'no_lang_code', 1, 'https://ror.org/014we6j04 Ecofuel Laboratories (Czechia)'),
(55358, 'https://ror.org/02bx6dk74', 'no_lang_code', 1, 'https://ror.org/02bx6dk74 Orbital 2 (Czechia)'),
(55359, 'https://ror.org/0126c8978', 'no_lang_code', 1, 'https://ror.org/0126c8978 Ecolab Znojmo (Czechia)'),
(55360, 'https://ror.org/01edvza61', 'no_lang_code', 1, 'https://ror.org/01edvza61 Dopravní akademie (Czechia)'),
(55361, 'https://ror.org/00qdgd523', 'no_lang_code', 1, 'https://ror.org/00qdgd523 Czech Precision Forge (Czechia)'),
(55362, 'https://ror.org/032ap5553', 'no_lang_code', 1, 'https://ror.org/032ap5553 Ecological Consulting (Czechia)'),
(55363, 'https://ror.org/008kw6k79', 'no_lang_code', 1, 'https://ror.org/008kw6k79 Ecoprogress (Czechia)'),
(55364, 'https://ror.org/050ha9v33', 'en', 1, 'https://ror.org/050ha9v33 Czech River Restoration Centre'),
(55365, 'https://ror.org/03hn7q415', 'no_lang_code', 1, 'https://ror.org/03hn7q415 Ecoprotect (Czechia)'),
(55366, 'https://ror.org/04sh8kd50', 'cs', 1, 'https://ror.org/04sh8kd50 Dopravní Podnik Hlavniho Mesta Prahy'),
(55367, 'https://ror.org/031xey008', 'no_lang_code', 1, 'https://ror.org/031xey008 Ecowasteenergy (Czechia)'),
(55368, 'https://ror.org/00qdrdx13', 'no_lang_code', 1, 'https://ror.org/00qdrdx13 Ecosoft (Czechia)'),
(55369, 'https://ror.org/04mhdyd20', 'no_lang_code', 1, 'https://ror.org/04mhdyd20 Dopravní podnik Karlovy Vary (Czechia)'),
(55370, 'https://ror.org/014bftp96', 'no_lang_code', 1, 'https://ror.org/014bftp96 Dopravní Podnik Měst Liberce a Jablonce nad Nisou (Czechia) Dopravní podnik města Liberce'),
(55371, 'https://ror.org/045g2fs27', 'no_lang_code', 1, 'https://ror.org/045g2fs27 Ecotex (Czechia)'),
(55372, 'https://ror.org/04k4tkg23', 'no_lang_code', 1, 'https://ror.org/04k4tkg23 DSK (Czechia)'),
(55373, 'https://ror.org/03088af90', 'no_lang_code', 1, 'https://ror.org/03088af90 D3Soft (Czechia)'),
(55374, 'https://ror.org/00efyhw94', 'cs', 1, 'https://ror.org/00efyhw94 Editio Janáček'),
(55375, 'https://ror.org/04m3vtn72', 'no_lang_code', 1, 'https://ror.org/04m3vtn72 Dopravní podnik města Ústí nad Labem (Czechia)'),
(55376, 'https://ror.org/05wrfa149', 'no_lang_code', 1, 'https://ror.org/05wrfa149 Dako Brno (Czechia)'),
(55377, 'https://ror.org/0190tnk59', 'no_lang_code', 1, 'https://ror.org/0190tnk59 Dopravní Podnik Ostrava Transport Company Ostrava (Czechia)'),
(55378, 'https://ror.org/01705m837', 'no_lang_code', 1, 'https://ror.org/01705m837 Dako-CZ (Czechia)'),
(55379, 'https://ror.org/03w4fjd93', 'no_lang_code', 1, 'https://ror.org/03w4fjd93 Edscha (Czechia)'),
(55380, 'https://ror.org/00nedks60', 'en', 1, 'https://ror.org/00nedks60 Wuxi Municipal Health Bureau 无锡市卫计委'),
(55381, 'https://ror.org/0206pct05', 'no_lang_code', 1, 'https://ror.org/0206pct05 Dopravoprojekt (Czechia)'),
(55382, 'https://ror.org/028mhjw69', 'no_lang_code', 1, 'https://ror.org/028mhjw69 Eduard Model Accessories (Czechia)'),
(55383, 'https://ror.org/04jan1235', 'no_lang_code', 1, 'https://ror.org/04jan1235 Dálniční Stavby Praha (Czechia)'),
(55384, 'https://ror.org/02z9x0k36', 'no_lang_code', 1, 'https://ror.org/02z9x0k36 Dosing - Dopravoprojekt Brno Group (Czechia)'),
(55385, 'https://ror.org/01sjfkd19', 'no_lang_code', 1, 'https://ror.org/01sjfkd19 EG Expert (Czechia)'),
(55386, 'https://ror.org/00b8vr735', 'no_lang_code', 1, 'https://ror.org/00b8vr735 Danone (Czechia)'),
(55387, 'https://ror.org/00jw9yq80', 'no_lang_code', 1, 'https://ror.org/00jw9yq80 Dosting (Czechia)'),
(55388, 'https://ror.org/02xem8119', 'no_lang_code', 1, 'https://ror.org/02xem8119 EGE (Czechia)'),
(55389, 'https://ror.org/0554h3h71', 'no_lang_code', 1, 'https://ror.org/0554h3h71 Ego Zlin (Czechia)'),
(55390, 'https://ror.org/00kcmem28', 'no_lang_code', 1, 'https://ror.org/00kcmem28 DAP Services (Czechia)'),
(55391, 'https://ror.org/052dd1f02', 'no_lang_code', 1, 'https://ror.org/052dd1f02 EGÚ Brno (Czechia)'),
(55392, 'https://ror.org/04jen3t84', 'no_lang_code', 1, 'https://ror.org/04jen3t84 Dasfos (Czechia)'),
(55393, 'https://ror.org/04jkk5b46', 'no_lang_code', 1, 'https://ror.org/04jkk5b46 Tech Aid Czech Branch (Czechia)'),
(55394, 'https://ror.org/04qyktt41', 'no_lang_code', 1, 'https://ror.org/04qyktt41 Datacon (Czechia)'),
(55395, 'https://ror.org/02ja04815', 'no_lang_code', 1, 'https://ror.org/02ja04815 Druchema (Czechia)'),
(55396, 'https://ror.org/0234nw002', 'no_lang_code', 1, 'https://ror.org/0234nw002 DSA (Czechia)'),
(55397, 'https://ror.org/01y7tp893', 'no_lang_code', 1, 'https://ror.org/01y7tp893 EGÚ Praha Engineering (Czechia)'),
(55398, 'https://ror.org/04pkthn83', 'no_lang_code', 1, 'https://ror.org/04pkthn83 Bech Akku Power Batteries (Czechia)'),
(55399, 'https://ror.org/01ht9nq84', 'no_lang_code', 1, 'https://ror.org/01ht9nq84 Dsd - Dostál (Czechia)'),
(55400, 'https://ror.org/01cmyeg51', 'no_lang_code', 1, 'https://ror.org/01cmyeg51 ENBRA (Czechia)'),
(55401, 'https://ror.org/0402z8r91', 'no_lang_code', 1, 'https://ror.org/0402z8r91 Dega (Czechia)'),
(55402, 'https://ror.org/04k71ka82', 'no_lang_code', 1, 'https://ror.org/04k71ka82 EkoBio (Czechia)'),
(55403, 'https://ror.org/02czagv77', 'no_lang_code', 1, 'https://ror.org/02czagv77 SusChem České Technologické Platformy pro Udržitelnou Chemii'),
(55404, 'https://ror.org/01stqh938', 'no_lang_code', 1, 'https://ror.org/01stqh938 Eko-Kom (Czechia)'),
(55405, 'https://ror.org/011s5g254', 'no_lang_code', 1, 'https://ror.org/011s5g254 DEL (Czechia)'),
(55406, 'https://ror.org/05xj6ej51', 'cs', 1, 'https://ror.org/05xj6ej51 Energetické Třebíčsko'),
(55407, 'https://ror.org/047mjng73', 'no_lang_code', 1, 'https://ror.org/047mjng73 Delacon Biotechnik (Czechia)'),
(55408, 'https://ror.org/00qmpe609', 'no_lang_code', 1, 'https://ror.org/00qmpe609 Energocentrum (Czechia)'),
(55409, 'https://ror.org/05r434x22', 'no_lang_code', 1, 'https://ror.org/05r434x22 Ekogalva (Czechia)'),
(55410, 'https://ror.org/03jtbaq34', 'no_lang_code', 1, 'https://ror.org/03jtbaq34 F Air (Czechia)'),
(55411, 'https://ror.org/03p9qk185', 'no_lang_code', 1, 'https://ror.org/03p9qk185 FMP (Czechia)'),
(55412, 'https://ror.org/039azq733', 'no_lang_code', 1, 'https://ror.org/039azq733 Ekogroup Czech (Czechia)'),
(55413, 'https://ror.org/005wff754', 'no_lang_code', 1, 'https://ror.org/005wff754 Focam (Czechia)'),
(55414, 'https://ror.org/01b3d1c61', 'no_lang_code', 1, 'https://ror.org/01b3d1c61 Energoservis (Czechia)'),
(55415, 'https://ror.org/01s5pxv91', 'no_lang_code', 1, 'https://ror.org/01s5pxv91 Ekohydrogeo Žitný (Czechia)'),
(55416, 'https://ror.org/03jmp7p62', 'no_lang_code', 1, 'https://ror.org/03jmp7p62 FSC Bezpečnostní Poradenství (Czechia)'),
(55417, 'https://ror.org/00x1wf347', 'no_lang_code', 1, 'https://ror.org/00x1wf347 Ekoles Projekt (Czechia)'),
(55418, 'https://ror.org/0204cak81', 'no_lang_code', 1, 'https://ror.org/0204cak81 Energostav (Czechia)'),
(55419, 'https://ror.org/04fkj8104', 'no_lang_code', 1, 'https://ror.org/04fkj8104 Fabconworks (Czechia)'),
(55420, 'https://ror.org/01zj9vv73', 'no_lang_code', 1, 'https://ror.org/01zj9vv73 Factorio Solutions (Czechia)'),
(55421, 'https://ror.org/01mwf3284', 'no_lang_code', 1, 'https://ror.org/01mwf3284 FaF Top-Color (Czechia)'),
(55422, 'https://ror.org/041kcnq11', 'no_lang_code', 1, 'https://ror.org/041kcnq11 Ekomor (Czechia)'),
(55423, 'https://ror.org/05vm6v844', 'no_lang_code', 1, 'https://ror.org/05vm6v844 Entracon (Czechia)'),
(55424, 'https://ror.org/05bs0r528', 'no_lang_code', 1, 'https://ror.org/05bs0r528 Ekopanely Servis (Czechia)'),
(55425, 'https://ror.org/00h59gj21', 'no_lang_code', 1, 'https://ror.org/00h59gj21 Faiveley Transport (Czechia)'),
(55426, 'https://ror.org/04j1khh38', 'no_lang_code', 1, 'https://ror.org/04j1khh38 Ekomont Litoměřice (Czechia)'),
(55427, 'https://ror.org/052161p79', 'no_lang_code', 1, 'https://ror.org/052161p79 Ekoplant (Slovakia)'),
(55428, 'https://ror.org/00h1tez17', 'no_lang_code', 1, 'https://ror.org/00h1tez17 Ekoport'),
(55429, 'https://ror.org/04szn7861', 'no_lang_code', 1, 'https://ror.org/04szn7861 ENVI (Czechia)'),
(55430, 'https://ror.org/04pzwgb48', 'no_lang_code', 1, 'https://ror.org/04pzwgb48 Fapros družstvo (Czechia)'),
(55431, 'https://ror.org/00m1w1e65', 'no_lang_code', 1, 'https://ror.org/00m1w1e65 Envi-Pur (Czechia)'),
(55432, 'https://ror.org/03yvmmw58', 'no_lang_code', 1, 'https://ror.org/03yvmmw58 Farma Žiro (Czechia)'),
(55433, 'https://ror.org/03tb0zs04', 'no_lang_code', 1, 'https://ror.org/03tb0zs04 Ekopron Metal (Czechia)'),
(55434, 'https://ror.org/05x9m4736', 'no_lang_code', 1, 'https://ror.org/05x9m4736 Farmak Moravia (Czechia)'),
(55435, 'https://ror.org/012hjj416', 'no_lang_code', 1, 'https://ror.org/012hjj416 Farmak (Czechia)'),
(55436, 'https://ror.org/00hhge266', 'no_lang_code', 1, 'https://ror.org/00hhge266 Agrofert (Czechia)'),
(55437, 'https://ror.org/036p1z483', 'no_lang_code', 1, 'https://ror.org/036p1z483 Enviconsult (Slovakia)'),
(55438, 'https://ror.org/05dyyxv94', 'no_lang_code', 1, 'https://ror.org/05dyyxv94 Ekostavby Brno (Czechia)'),
(55439, 'https://ror.org/05r866132', 'no_lang_code', 1, 'https://ror.org/05r866132 Ekosystem (Czechia)'),
(55440, 'https://ror.org/023b5vx71', 'no_lang_code', 1, 'https://ror.org/023b5vx71 Envipor (Czechia)'),
(55441, 'https://ror.org/05cpjt441', 'no_lang_code', 1, 'https://ror.org/05cpjt441 FEM Consulting (Czechia)'),
(55442, 'https://ror.org/02dbdb897', 'no_lang_code', 1, 'https://ror.org/02dbdb897 Ekotechnika (Czechia)'),
(55443, 'https://ror.org/046sbgc47', 'cs', 1, 'https://ror.org/046sbgc47 Envirex'),
(55444, 'https://ror.org/02p0kfv62', 'no_lang_code', 1, 'https://ror.org/02p0kfv62 Ekozink Praha (Czechia)'),
(55445, 'https://ror.org/03tyavm03', 'no_lang_code', 1, 'https://ror.org/03tyavm03 Envirmine (Czechia)'),
(55446, 'https://ror.org/02w3svm50', 'no_lang_code', 1, 'https://ror.org/02w3svm50 Femma (Czechia)'),
(55447, 'https://ror.org/00kxjhp06', 'no_lang_code', 1, 'https://ror.org/00kxjhp06 Feramat Cybernetics (Czechia)'),
(55448, 'https://ror.org/04605x106', 'no_lang_code', 1, 'https://ror.org/04605x106 Envirmine-Energo (Czechia)'),
(55449, 'https://ror.org/05k7znz17', 'no_lang_code', 1, 'https://ror.org/05k7znz17 Elcom (Czechia)'),
(55450, 'https://ror.org/04j9fty21', 'no_lang_code', 1, 'https://ror.org/04j9fty21 Elektrometall (Czechia)'),
(55451, 'https://ror.org/04c4xmn37', 'no_lang_code', 1, 'https://ror.org/04c4xmn37 Fermat (Czechia)'),
(55452, 'https://ror.org/04mmccm14', 'no_lang_code', 1, 'https://ror.org/04mmccm14 Elfe (Czechia)'),
(55453, 'https://ror.org/002ek1q97', 'no_lang_code', 1, 'https://ror.org/002ek1q97 Elisa Development (Czechia)'),
(55454, 'https://ror.org/03hscv116', 'no_lang_code', 1, 'https://ror.org/03hscv116 ENVItech Bohemia (Czechia)'),
(55455, 'https://ror.org/04s2v1839', 'no_lang_code', 1, 'https://ror.org/04s2v1839 Elisabeth Pharmacon (Czechia)'),
(55456, 'https://ror.org/054nzx465', 'no_lang_code', 1, 'https://ror.org/054nzx465 Ferring Pharmaceuticals (Czechia)'),
(55457, 'https://ror.org/02mt5a451', 'no_lang_code', 1, 'https://ror.org/02mt5a451 Ferro OK (Czechia)'),
(55458, 'https://ror.org/03nmqee71', 'no_lang_code', 1, 'https://ror.org/03nmqee71 Enzymix (Czechia)'),
(55459, 'https://ror.org/02c024156', 'no_lang_code', 1, 'https://ror.org/02c024156 Elmet (Czechia)'),
(55460, 'https://ror.org/00ahtnc04', 'no_lang_code', 1, 'https://ror.org/00ahtnc04 Festool (Czechia)'),
(55461, 'https://ror.org/02j12yp62', 'no_lang_code', 1, 'https://ror.org/02j12yp62 Elsklo (Czechia)'),
(55462, 'https://ror.org/03cd5c095', 'no_lang_code', 1, 'https://ror.org/03cd5c095 Fiedler Zdeněk (Czechia)'),
(55463, 'https://ror.org/05dq51n70', 'no_lang_code', 1, 'https://ror.org/05dq51n70 Filák (Czechia)'),
(55464, 'https://ror.org/0332e1g86', 'no_lang_code', 1, 'https://ror.org/0332e1g86 ERGOWORK (Czechia)'),
(55465, 'https://ror.org/04q9gyp88', 'no_lang_code', 1, 'https://ror.org/04q9gyp88 Mesit (Czechia)'),
(55466, 'https://ror.org/03ydrze65', 'no_lang_code', 1, 'https://ror.org/03ydrze65 Eltek (Czechia)'),
(55467, 'https://ror.org/0283yyc15', 'no_lang_code', 1, 'https://ror.org/0283yyc15 Erilens (Czechia)'),
(55468, 'https://ror.org/05wrzfv03', 'no_lang_code', 1, 'https://ror.org/05wrzfv03 Firel (Czechia)'),
(55469, 'https://ror.org/04kwhpd73', 'no_lang_code', 1, 'https://ror.org/04kwhpd73 Fish Farm Bohemia (Czechia)'),
(55470, 'https://ror.org/041yznd79', 'no_lang_code', 1, 'https://ror.org/041yznd79 Flash Steel Power (Czechia)'),
(55471, 'https://ror.org/0302b9e58', 'no_lang_code', 1, 'https://ror.org/0302b9e58 Elzaco (Czechia)'),
(55472, 'https://ror.org/008226x45', 'no_lang_code', 1, 'https://ror.org/008226x45 EM Brno (Czechia)'),
(55473, 'https://ror.org/02ny9ar26', 'no_lang_code', 1, 'https://ror.org/02ny9ar26 Escape Therapeutics (United States)'),
(55474, 'https://ror.org/04ye0br83', 'no_lang_code', 1, 'https://ror.org/04ye0br83 Flaveko (Czechia)'),
(55475, 'https://ror.org/031dfcr56', 'no_lang_code', 1, 'https://ror.org/031dfcr56 Em Test ČR (Czechia)'),
(55476, 'https://ror.org/02etwv439', 'no_lang_code', 1, 'https://ror.org/02etwv439 Flexisander (Czechia)'),
(55477, 'https://ror.org/02gyk4017', 'no_lang_code', 1, 'https://ror.org/02gyk4017 Espace Morava (Czechia)'),
(55478, 'https://ror.org/04e3kdv87', 'no_lang_code', 1, 'https://ror.org/04e3kdv87 Essa (Czechia)'),
(55479, 'https://ror.org/02rwb5s17', 'no_lang_code', 1, 'https://ror.org/02rwb5s17 Flowmon Networks (Czechia)'),
(55480, 'https://ror.org/03ce03q08', 'no_lang_code', 1, 'https://ror.org/03ce03q08 Essence Line (Czechia)'),
(55481, 'https://ror.org/04zp00x83', 'no_lang_code', 1, 'https://ror.org/04zp00x83 FLSmidth (Czechia)'),
(55482, 'https://ror.org/03pxknc36', 'no_lang_code', 1, 'https://ror.org/03pxknc36 Emerson (Czechia)'),
(55483, 'https://ror.org/01m4nmn07', 'no_lang_code', 1, 'https://ror.org/01m4nmn07 Emg Zlín (Czechia)'),
(55484, 'https://ror.org/01sddvn57', 'no_lang_code', 1, 'https://ror.org/01sddvn57 Elektro-System-Technik (Slovakia)'),
(55485, 'https://ror.org/04q79jy11', 'no_lang_code', 1, 'https://ror.org/04q79jy11 Fluxamat (Czechia)'),
(55486, 'https://ror.org/02szgft37', 'no_lang_code', 1, 'https://ror.org/02szgft37 Empo Praha (Czechia)'),
(55487, 'https://ror.org/04ngy9w38', 'no_lang_code', 1, 'https://ror.org/04ngy9w38 Estcom (Czechia)'),
(55488, 'https://ror.org/00wmkg231', 'no_lang_code', 1, 'https://ror.org/00wmkg231 FMP Lignum (Czechia)'),
(55489, 'https://ror.org/04nefpm69', 'no_lang_code', 1, 'https://ror.org/04nefpm69 Esto Cheb (Czechia)'),
(55490, 'https://ror.org/031nm9f90', 'no_lang_code', 1, 'https://ror.org/031nm9f90 Enantis (Czechia)'),
(55491, 'https://ror.org/05pmpsf41', 'no_lang_code', 1, 'https://ror.org/05pmpsf41 Fokus (Czechia)'),
(55492, 'https://ror.org/00fjx2954', 'no_lang_code', 1, 'https://ror.org/00fjx2954 Frentech Aerospace (Czechia)'),
(55493, 'https://ror.org/02yc7cj12', 'no_lang_code', 1, 'https://ror.org/02yc7cj12 ETD Transformatory (Czechia) Výkonové Transformátory'),
(55494, 'https://ror.org/00z9exx28', 'no_lang_code', 1, 'https://ror.org/00z9exx28 Eteria (Czechia)'),
(55495, 'https://ror.org/028a9tw57', 'no_lang_code', 1, 'https://ror.org/028a9tw57 Fritagro Nížkov (Czechia)'),
(55496, 'https://ror.org/00cbksp73', 'no_lang_code', 1, 'https://ror.org/00cbksp73 Foller (Czechia)'),
(55497, 'https://ror.org/05757bv38', 'no_lang_code', 1, 'https://ror.org/05757bv38 Fomex Team (Czechia)'),
(55498, 'https://ror.org/05rbv1z92', 'no_lang_code', 1, 'https://ror.org/05rbv1z92 Froněk (Czechia)'),
(55499, 'https://ror.org/05ps69x32', 'cs', 1, 'https://ror.org/05ps69x32 Fond Dalšího Vzdělávání');
INSERT INTO `rors` VALUES
(55500, 'https://ror.org/00c8vzn79', 'no_lang_code', 1, 'https://ror.org/00c8vzn79 Fruko Schulz (Czechia)'),
(55501, 'https://ror.org/04vn0m402', 'no_lang_code', 1, 'https://ror.org/04vn0m402 Fytovita (Czechia)'),
(55502, 'https://ror.org/01ya98z16', 'no_lang_code', 1, 'https://ror.org/01ya98z16 ETK Kolín (Czechia)'),
(55503, 'https://ror.org/046dvcc04', 'no_lang_code', 1, 'https://ror.org/046dvcc04 Forensic DNA Service (Czechia) Forenzní DNA servis'),
(55504, 'https://ror.org/02nfy1824', 'no_lang_code', 1, 'https://ror.org/02nfy1824 Eurofins (Czechia)'),
(55505, 'https://ror.org/0523ytz80', 'en', 1, 'https://ror.org/0523ytz80 Fyzikálně Technický Zkušební Ústav Physical Technical Testing Institute'),
(55506, 'https://ror.org/03gvq6m28', 'no_lang_code', 1, 'https://ror.org/03gvq6m28 Forest - Agro (Czechia)'),
(55507, 'https://ror.org/01qdk2c93', 'no_lang_code', 1, 'https://ror.org/01qdk2c93 G Mar Plus (Czechia)'),
(55508, 'https://ror.org/05mz3p784', 'no_lang_code', 1, 'https://ror.org/05mz3p784 Eurogas (Czechia)'),
(55509, 'https://ror.org/045bnzp02', 'no_lang_code', 1, 'https://ror.org/045bnzp02 Foresta (Czechia)'),
(55510, 'https://ror.org/00c2hgn02', 'no_lang_code', 1, 'https://ror.org/00c2hgn02 GDK (Czechia)'),
(55511, 'https://ror.org/03wnpwa90', 'no_lang_code', 1, 'https://ror.org/03wnpwa90 Eurom (Czechia)'),
(55512, 'https://ror.org/025twqg64', 'no_lang_code', 1, 'https://ror.org/025twqg64 EuroMISE (Czechia)'),
(55513, 'https://ror.org/02smhb616', 'no_lang_code', 1, 'https://ror.org/02smhb616 Form (Czechia)'),
(55514, 'https://ror.org/05fx9dg28', 'no_lang_code', 1, 'https://ror.org/05fx9dg28 G E M A, s.r.o. Automatizace Technologických Procesů General Engineering Measurement and Automation (Czechia)'),
(55515, 'https://ror.org/045668z75', 'no_lang_code', 1, 'https://ror.org/045668z75 Forsapi (Czechia)'),
(55516, 'https://ror.org/02bf3yr97', 'no_lang_code', 1, 'https://ror.org/02bf3yr97 Euronics Engineering (Czechia)'),
(55517, 'https://ror.org/05cvapf18', 'no_lang_code', 1, 'https://ror.org/05cvapf18 Gesko (Czechia)'),
(55518, 'https://ror.org/047znkp64', 'no_lang_code', 1, 'https://ror.org/047znkp64 Europanel (Czechia)'),
(55519, 'https://ror.org/044xp1b57', 'no_lang_code', 1, 'https://ror.org/044xp1b57 Fortex-AGS (Czechia)'),
(55520, 'https://ror.org/04fv8gj73', 'no_lang_code', 1, 'https://ror.org/04fv8gj73 European Business Enterprise (Czechia)'),
(55521, 'https://ror.org/02n6s9z93', 'no_lang_code', 1, 'https://ror.org/02n6s9z93 G M Chemie (Czechia)'),
(55522, 'https://ror.org/03b3zsb94', 'no_lang_code', 1, 'https://ror.org/03b3zsb94 Fosfa (Czechia)'),
(55523, 'https://ror.org/050awrw49', 'en', 1, 'https://ror.org/050awrw49 GEP Clinic'),
(55524, 'https://ror.org/00k5q8r19', 'no_lang_code', 1, 'https://ror.org/00k5q8r19 Gaben (Czechia)'),
(55525, 'https://ror.org/02ktqga51', 'no_lang_code', 1, 'https://ror.org/02ktqga51 Euroseal (Czechia)'),
(55526, 'https://ror.org/021vvf198', 'no_lang_code', 1, 'https://ror.org/021vvf198 Gabriel Chemie Bohemia (Czechia)'),
(55527, 'https://ror.org/03ff67370', 'no_lang_code', 1, 'https://ror.org/03ff67370 Eurosignal (Czechia)'),
(55528, 'https://ror.org/00mrdq115', 'no_lang_code', 1, 'https://ror.org/00mrdq115 EuroTec JKR (Czechia)'),
(55529, 'https://ror.org/0402k2258', 'no_lang_code', 1, 'https://ror.org/0402k2258 FPOS (Czechia)'),
(55530, 'https://ror.org/02phptz08', 'no_lang_code', 1, 'https://ror.org/02phptz08 Eutit (Czechia)'),
(55531, 'https://ror.org/01dxzkc83', 'no_lang_code', 1, 'https://ror.org/01dxzkc83 Gala (Czechia)'),
(55532, 'https://ror.org/02gkjb077', 'no_lang_code', 1, 'https://ror.org/02gkjb077 EVC Group (Czechia)'),
(55533, 'https://ror.org/043bw8c75', 'no_lang_code', 1, 'https://ror.org/043bw8c75 Eveco (Czechia)'),
(55534, 'https://ror.org/04mspgk29', 'no_lang_code', 1, 'https://ror.org/04mspgk29 Free Energy (Slovakia)'),
(55535, 'https://ror.org/02pfqzk70', 'no_lang_code', 1, 'https://ror.org/02pfqzk70 Galatek (Czechia)'),
(55536, 'https://ror.org/02nf56k69', 'cs', 1, 'https://ror.org/02nf56k69 Galerie Klatovy'),
(55537, 'https://ror.org/05h1ve754', 'no_lang_code', 1, 'https://ror.org/05h1ve754 NXP (Czechia)'),
(55538, 'https://ror.org/00a9x6k20', 'no_lang_code', 1, 'https://ror.org/00a9x6k20 Exact Control System (Czechia)'),
(55539, 'https://ror.org/05vq00593', 'en', 1, 'https://ror.org/05vq00593 Galerie Moderního Umění v Roudnici nad Labem Gallery of Modern Art Roudnice nad Labem'),
(55540, 'https://ror.org/028r88847', 'no_lang_code', 1, 'https://ror.org/028r88847 Excalibur Army (Czechia)'),
(55541, 'https://ror.org/058tqt210', 'no_lang_code', 1, 'https://ror.org/058tqt210 Gallopro (Czechia)'),
(55542, 'https://ror.org/04z360s37', 'no_lang_code', 1, 'https://ror.org/04z360s37 EVPÚ Defence (Czechia)'),
(55543, 'https://ror.org/05rrc9f79', 'no_lang_code', 1, 'https://ror.org/05rrc9f79 Úsporné Bydlení (Czechia)'),
(55544, 'https://ror.org/02ngeps21', 'no_lang_code', 1, 'https://ror.org/02ngeps21 Garmin (Czechia)'),
(55545, 'https://ror.org/0521vgb23', 'no_lang_code', 1, 'https://ror.org/0521vgb23 Gas Komplet (Czechia)'),
(55546, 'https://ror.org/01cvk6k60', 'no_lang_code', 1, 'https://ror.org/01cvk6k60 Eyedea Recognition (Czechia)'),
(55547, 'https://ror.org/00hbgc813', 'no_lang_code', 1, 'https://ror.org/00hbgc813 H1.cz (Czechia)'),
(55548, 'https://ror.org/01qfgqn02', 'no_lang_code', 1, 'https://ror.org/01qfgqn02 Gascontrol Plast (Czechia)'),
(55549, 'https://ror.org/04e2w0r26', 'no_lang_code', 1, 'https://ror.org/04e2w0r26 Excon (Czechia)'),
(55550, 'https://ror.org/03sksgt72', 'no_lang_code', 1, 'https://ror.org/03sksgt72 Haal Elektro (Czechia)'),
(55551, 'https://ror.org/038sxqg91', 'no_lang_code', 1, 'https://ror.org/038sxqg91 Kelvion (Czechia)'),
(55552, 'https://ror.org/05mv2zc24', 'no_lang_code', 1, 'https://ror.org/05mv2zc24 Habena (Czechia)'),
(55553, 'https://ror.org/03zga9n09', 'no_lang_code', 1, 'https://ror.org/03zga9n09 Gemec Union (Czechia)'),
(55554, 'https://ror.org/02g3wex31', 'no_lang_code', 1, 'https://ror.org/02g3wex31 Halíř A Diviš (Czechia)'),
(55555, 'https://ror.org/051bde843', 'no_lang_code', 1, 'https://ror.org/051bde843 Hanácká Zemědělská Společnost Jevíčko (Czechia)'),
(55556, 'https://ror.org/04waxaa96', 'en', 1, 'https://ror.org/04waxaa96 Gemini Eye Clinic Oční klinika Gemini'),
(55557, 'https://ror.org/04nwny503', 'no_lang_code', 1, 'https://ror.org/04nwny503 Explat (Czechia)'),
(55558, 'https://ror.org/00s66s868', 'no_lang_code', 1, 'https://ror.org/00s66s868 Gemos (Czechia)'),
(55559, 'https://ror.org/03h6sns07', 'no_lang_code', 1, 'https://ror.org/03h6sns07 Gen Trend (Czechia)'),
(55560, 'https://ror.org/03r54xm51', 'no_lang_code', 1, 'https://ror.org/03r54xm51 Extrudo Bečice (Czechia)'),
(55561, 'https://ror.org/01mw5kc41', 'no_lang_code', 1, 'https://ror.org/01mw5kc41 Hanka Mochov (Czechia)'),
(55562, 'https://ror.org/05w383724', 'no_lang_code', 1, 'https://ror.org/05w383724 Hansen Electric (Czechia)'),
(55563, 'https://ror.org/039e1zg46', 'no_lang_code', 1, 'https://ror.org/039e1zg46 Immobiliser Central Europe (Czechia)'),
(55564, 'https://ror.org/02sk8y875', 'no_lang_code', 1, 'https://ror.org/02sk8y875 Genetrac (Czechia)'),
(55565, 'https://ror.org/047a1qt28', 'no_lang_code', 1, 'https://ror.org/047a1qt28 Balakryl (Czechia)'),
(55566, 'https://ror.org/032tfbg84', 'no_lang_code', 1, 'https://ror.org/032tfbg84 Danaher (Czechia)'),
(55567, 'https://ror.org/027e2aw51', 'no_lang_code', 1, 'https://ror.org/027e2aw51 HaSaM (Czechia)'),
(55568, 'https://ror.org/017sk3p30', 'no_lang_code', 1, 'https://ror.org/017sk3p30 Geniczech M (Czechia)'),
(55569, 'https://ror.org/05tsgwq26', 'no_lang_code', 1, 'https://ror.org/05tsgwq26 Gennet'),
(55570, 'https://ror.org/0018kxj28', 'no_lang_code', 1, 'https://ror.org/0018kxj28 Heat Transfer Systems (Czechia)'),
(55571, 'https://ror.org/0420a9r52', 'no_lang_code', 1, 'https://ror.org/0420a9r52 IMPS (Czechia)'),
(55572, 'https://ror.org/02z71hx86', 'no_lang_code', 1, 'https://ror.org/02z71hx86 Genomac'),
(55573, 'https://ror.org/04pg34p42', 'no_lang_code', 1, 'https://ror.org/04pg34p42 IMS-Drašnar (Czechia)'),
(55574, 'https://ror.org/00zm06h90', 'en', 1, 'https://ror.org/00zm06h90 Genservice'),
(55575, 'https://ror.org/05f07wy20', 'no_lang_code', 1, 'https://ror.org/05f07wy20 In-Eko Team (Czechia)'),
(55576, 'https://ror.org/010bska32', 'no_lang_code', 1, 'https://ror.org/010bska32 Gentop Engineering (Czechia)'),
(55577, 'https://ror.org/0403h5q85', 'no_lang_code', 1, 'https://ror.org/0403h5q85 Indel (Slovakia)'),
(55578, 'https://ror.org/02nq7pz60', 'no_lang_code', 1, 'https://ror.org/02nq7pz60 Hedva (Czechia)'),
(55579, 'https://ror.org/01m08fh61', 'no_lang_code', 1, 'https://ror.org/01m08fh61 Help Forest (Czechia)'),
(55580, 'https://ror.org/021819p14', 'no_lang_code', 1, 'https://ror.org/021819p14 Geo Vision (Czechia)'),
(55581, 'https://ror.org/01tztjf78', 'no_lang_code', 1, 'https://ror.org/01tztjf78 Indet Safety Systems (Czechia)'),
(55582, 'https://ror.org/05bhj1f22', 'no_lang_code', 1, 'https://ror.org/05bhj1f22 Industrial Technology Systems (Czechia)'),
(55583, 'https://ror.org/01jzn1575', 'no_lang_code', 1, 'https://ror.org/01jzn1575 Inekon Group (Czechia)'),
(55584, 'https://ror.org/0470csm54', 'no_lang_code', 1, 'https://ror.org/0470csm54 Geocart (Czechia)'),
(55585, 'https://ror.org/009xyca19', 'no_lang_code', 1, 'https://ror.org/009xyca19 Heltos (Czechia)'),
(55586, 'https://ror.org/01w5cr084', 'no_lang_code', 1, 'https://ror.org/01w5cr084 Inflex (Czechia)'),
(55587, 'https://ror.org/02jpkyy67', 'no_lang_code', 1, 'https://ror.org/02jpkyy67 Geodézie Topos (Czechia)'),
(55588, 'https://ror.org/01t9z0h93', 'no_lang_code', 1, 'https://ror.org/01t9z0h93 Geodézie ČS (Czechia)'),
(55589, 'https://ror.org/00x0dmc73', 'no_lang_code', 1, 'https://ror.org/00x0dmc73 InfoScience (Czechia)'),
(55590, 'https://ror.org/059xss029', 'no_lang_code', 1, 'https://ror.org/059xss029 Geodézie Ledeč nad Sázavou (Czechia)'),
(55591, 'https://ror.org/04bf2vs71', 'no_lang_code', 1, 'https://ror.org/04bf2vs71 Hemp Production (Czechia)'),
(55592, 'https://ror.org/02z625e97', 'no_lang_code', 1, 'https://ror.org/02z625e97 Herbacos Recordati (Czechia)'),
(55593, 'https://ror.org/02f0cvc21', 'no_lang_code', 1, 'https://ror.org/02f0cvc21 Hestego (Czechia)'),
(55594, 'https://ror.org/05xeax323', 'no_lang_code', 1, 'https://ror.org/05xeax323 Hestia (Czechia)'),
(55595, 'https://ror.org/05aqqa384', 'no_lang_code', 1, 'https://ror.org/05aqqa384 HET (Czechia)'),
(55596, 'https://ror.org/049g0ca30', 'no_lang_code', 1, 'https://ror.org/049g0ca30 Synthomer (Czechia)'),
(55597, 'https://ror.org/04mn22671', 'no_lang_code', 1, 'https://ror.org/04mn22671 HF-Czechforge (Czechia)'),
(55598, 'https://ror.org/005tenx48', 'no_lang_code', 1, 'https://ror.org/005tenx48 Geodrill (Czechia)'),
(55599, 'https://ror.org/001dcya02', 'no_lang_code', 1, 'https://ror.org/001dcya02 Hillex (Czechia)'),
(55600, 'https://ror.org/026k95836', 'no_lang_code', 1, 'https://ror.org/026k95836 Geodyn (Czechia)'),
(55601, 'https://ror.org/04vtyaw83', 'no_lang_code', 1, 'https://ror.org/04vtyaw83 GEOline (Czechia)'),
(55602, 'https://ror.org/01544jt07', 'no_lang_code', 1, 'https://ror.org/01544jt07 Hit Hofman (Czechia)'),
(55603, 'https://ror.org/02mfb9z52', 'no_lang_code', 1, 'https://ror.org/02mfb9z52 Geomin (Czechia)'),
(55604, 'https://ror.org/02ddz0p49', 'no_lang_code', 1, 'https://ror.org/02ddz0p49 Inomech (Czechia)'),
(55605, 'https://ror.org/021kzz686', 'no_lang_code', 1, 'https://ror.org/021kzz686 HOBAS (Czechia)'),
(55606, 'https://ror.org/0225hcv43', 'no_lang_code', 1, 'https://ror.org/0225hcv43 Georadis (Czechia)'),
(55607, 'https://ror.org/0089p6r11', 'no_lang_code', 1, 'https://ror.org/0089p6r11 Hobl & Pech (Czechia)'),
(55608, 'https://ror.org/012v1rw43', 'no_lang_code', 1, 'https://ror.org/012v1rw43 Dodávky Automatizace (Czechia)'),
(55609, 'https://ror.org/05ft9p311', 'no_lang_code', 1, 'https://ror.org/05ft9p311 Hobra Školník (Czechia)'),
(55610, 'https://ror.org/03tz15v17', 'no_lang_code', 1, 'https://ror.org/03tz15v17 Hochtief (Czechia)'),
(55611, 'https://ror.org/05tqtn688', 'no_lang_code', 1, 'https://ror.org/05tqtn688 Inpek (Czechia)'),
(55612, 'https://ror.org/01mv6b823', 'no_lang_code', 1, 'https://ror.org/01mv6b823 Holík International (Czechia)'),
(55613, 'https://ror.org/01ddpks56', 'no_lang_code', 1, 'https://ror.org/01ddpks56 Georeal (Czechia)'),
(55614, 'https://ror.org/01yg8x810', 'no_lang_code', 1, 'https://ror.org/01yg8x810 Holzbecher (Czechia)'),
(55615, 'https://ror.org/0375hkv63', 'no_lang_code', 1, 'https://ror.org/0375hkv63 Geostar (Czechia)'),
(55616, 'https://ror.org/04ynnbp72', 'en', 1, 'https://ror.org/04ynnbp72 Czech Chamber of Commerce Hospodářská komora České republiky'),
(55617, 'https://ror.org/01a134x88', 'no_lang_code', 1, 'https://ror.org/01a134x88 GeoTec GS (Czechia)'),
(55618, 'https://ror.org/038h93e72', 'no_lang_code', 1, 'https://ror.org/038h93e72 Inset (Czechia)'),
(55619, 'https://ror.org/03t06c531', 'cs', 1, 'https://ror.org/03t06c531 Geova'),
(55620, 'https://ror.org/013esgc34', 'no_lang_code', 1, 'https://ror.org/013esgc34 Instar ITS (Czechia)'),
(55621, 'https://ror.org/003dv1r84', 'no_lang_code', 1, 'https://ror.org/003dv1r84 Hostýnské Papírny (Czechia)'),
(55622, 'https://ror.org/03pjfjx36', 'no_lang_code', 1, 'https://ror.org/03pjfjx36 Institute of Bohuslav Martinů (Czechia)'),
(55623, 'https://ror.org/00v43af83', 'no_lang_code', 1, 'https://ror.org/00v43af83 Geovap (Czechia)'),
(55624, 'https://ror.org/04f1wge97', 'no_lang_code', 1, 'https://ror.org/04f1wge97 Houfek (Czechia)'),
(55625, 'https://ror.org/02s1wmc12', 'no_lang_code', 1, 'https://ror.org/02s1wmc12 Gepro (Czechia)'),
(55626, 'https://ror.org/03epajw45', 'no_lang_code', 1, 'https://ror.org/03epajw45 Howden (Czechia)'),
(55627, 'https://ror.org/02e281029', 'no_lang_code', 1, 'https://ror.org/02e281029 Institut Ocelových Konstrukcí (Czechia)'),
(55628, 'https://ror.org/056gmd082', 'no_lang_code', 1, 'https://ror.org/056gmd082 GfK (Czechia)'),
(55629, 'https://ror.org/04313jv58', 'no_lang_code', 1, 'https://ror.org/04313jv58 HST TechnoLogic (Czechia)'),
(55630, 'https://ror.org/04gzpwh55', 'no_lang_code', 1, 'https://ror.org/04gzpwh55 GGC Energy (Czechia)'),
(55631, 'https://ror.org/01hzc1x24', 'no_lang_code', 1, 'https://ror.org/01hzc1x24 Huddy Diamonds (Czechia)'),
(55632, 'https://ror.org/00s3nyy34', 'no_lang_code', 1, 'https://ror.org/00s3nyy34 Cemvin (Czechia)'),
(55633, 'https://ror.org/0233hap27', 'no_lang_code', 1, 'https://ror.org/0233hap27 Gist (Czechia)'),
(55634, 'https://ror.org/03z79c042', 'no_lang_code', 1, 'https://ror.org/03z79c042 Rybářství Třeboň (Czechia)'),
(55635, 'https://ror.org/024zd3a64', 'no_lang_code', 1, 'https://ror.org/024zd3a64 Glass Atelier Morava (Czechia)'),
(55636, 'https://ror.org/0164z4p75', 'no_lang_code', 1, 'https://ror.org/0164z4p75 Glass Service (Czechia)'),
(55637, 'https://ror.org/01w0yqe56', 'en', 1, 'https://ror.org/01w0yqe56 Human Organ Project'),
(55638, 'https://ror.org/012djrr37', 'en', 1, 'https://ror.org/012djrr37 Institut plánování a rozvoje hlavního města Prahy Prague Institute of Planning and Development'),
(55639, 'https://ror.org/05c5mh451', 'no_lang_code', 1, 'https://ror.org/05c5mh451 Glentor (Czechia)'),
(55640, 'https://ror.org/021zj1e70', 'no_lang_code', 1, 'https://ror.org/021zj1e70 Hutní Montáže (Czechia)'),
(55641, 'https://ror.org/05qwteg84', 'no_lang_code', 1, 'https://ror.org/05qwteg84 GME (Czechia)'),
(55642, 'https://ror.org/03awcax09', 'no_lang_code', 1, 'https://ror.org/03awcax09 Hutní Projekt Frýdek-Místek (Czechia)'),
(55643, 'https://ror.org/0281ksw84', 'en', 1, 'https://ror.org/0281ksw84 Brno Observatory and Planetarium Hvězdárna a planetárium Brno'),
(55644, 'https://ror.org/0507zc831', 'no_lang_code', 1, 'https://ror.org/0507zc831 GNSS Centre of Excellence'),
(55645, 'https://ror.org/025rzbp22', 'no_lang_code', 1, 'https://ror.org/025rzbp22 Hydraulické Stroje A Zařízení (Czechia)'),
(55646, 'https://ror.org/03dcymj98', 'no_lang_code', 1, 'https://ror.org/03dcymj98 Institut pro testování a certifikaci Institute for Testing and Certification (Czechia)'),
(55647, 'https://ror.org/050ahe644', 'no_lang_code', 1, 'https://ror.org/050ahe644 Hydroma (Czechia)'),
(55648, 'https://ror.org/04k417520', 'no_lang_code', 1, 'https://ror.org/04k417520 GoodMills Česko'),
(55649, 'https://ror.org/05gfvgk18', 'no_lang_code', 1, 'https://ror.org/05gfvgk18 Hydrosoft Veleslavín (Czechia)'),
(55650, 'https://ror.org/01zrvxg38', 'no_lang_code', 1, 'https://ror.org/01zrvxg38 Hydrostatika (Czechia)'),
(55651, 'https://ror.org/00v986r94', 'no_lang_code', 1, 'https://ror.org/00v986r94 Grade Medical (Czechia)'),
(55652, 'https://ror.org/02smzzj60', 'en', 1, 'https://ror.org/02smzzj60 Institut regionálních informací Institute for Regional Information'),
(55653, 'https://ror.org/04ypeyk27', 'no_lang_code', 1, 'https://ror.org/04ypeyk27 S&T (Czechia)'),
(55654, 'https://ror.org/01avhp493', 'no_lang_code', 1, 'https://ror.org/01avhp493 Institut Strategické Podpory (Czechia)'),
(55655, 'https://ror.org/0326x9e38', 'no_lang_code', 1, 'https://ror.org/0326x9e38 Fosil Partner (Czechia)'),
(55656, 'https://ror.org/04etxq867', 'cs', 1, 'https://ror.org/04etxq867 Domov pro Seniory Ďáblice'),
(55657, 'https://ror.org/02eas8236', 'no_lang_code', 1, 'https://ror.org/02eas8236 Ernst Leopold (Czechia)'),
(55658, 'https://ror.org/03bqgx731', 'no_lang_code', 1, 'https://ror.org/03bqgx731 Ingredia (Czechia)'),
(55659, 'https://ror.org/04r1srr11', 'en', 1, 'https://ror.org/04r1srr11 Institut Evaluací a Sociálních Analýz Institute for Evaluation and Social Analyses'),
(55660, 'https://ror.org/03qs9kr26', 'no_lang_code', 1, 'https://ror.org/03qs9kr26 Benteler (Czechia)'),
(55661, 'https://ror.org/011bbc947', 'no_lang_code', 1, 'https://ror.org/011bbc947 Dopravní Podnik Města České Budějovice'),
(55662, 'https://ror.org/05eft0257', 'no_lang_code', 1, 'https://ror.org/05eft0257 Hytech (Czechia)'),
(55663, 'https://ror.org/008jjpw82', 'no_lang_code', 1, 'https://ror.org/008jjpw82 ITA Intertact (Czechia)'),
(55664, 'https://ror.org/02qyrzz82', 'no_lang_code', 1, 'https://ror.org/02qyrzz82 I2L Research (Czechia)'),
(55665, 'https://ror.org/02n79p323', 'no_lang_code', 1, 'https://ror.org/02n79p323 ib1.cz (Czechia)'),
(55666, 'https://ror.org/04dzqh472', 'no_lang_code', 1, 'https://ror.org/04dzqh472 IBM (Czechia)'),
(55667, 'https://ror.org/0451k0g64', 'no_lang_code', 1, 'https://ror.org/0451k0g64 Institute of Applied Biotechnologies (Czechia)'),
(55668, 'https://ror.org/02p2rdc82', 'no_lang_code', 1, 'https://ror.org/02p2rdc82 Green Solution (Czechia)'),
(55669, 'https://ror.org/028s8ff87', 'no_lang_code', 1, 'https://ror.org/028s8ff87 Iconics (Czechia)'),
(55670, 'https://ror.org/00kkxjg31', 'no_lang_code', 1, 'https://ror.org/00kkxjg31 GreyCortex (Czechia)'),
(55671, 'https://ror.org/03t71q954', 'no_lang_code', 1, 'https://ror.org/03t71q954 GRYF (Czechia)'),
(55672, 'https://ror.org/013t7dx52', 'no_lang_code', 1, 'https://ror.org/013t7dx52 ICT Unie'),
(55673, 'https://ror.org/03vdw8k15', 'no_lang_code', 1, 'https://ror.org/03vdw8k15 ICZ (Czechia)'),
(55674, 'https://ror.org/01ydd6106', 'en', 1, 'https://ror.org/01ydd6106 INstrategy'),
(55675, 'https://ror.org/013g68144', 'en', 1, 'https://ror.org/013g68144 GS1 Czech Republic'),
(55676, 'https://ror.org/05nef8h70', 'no_lang_code', 1, 'https://ror.org/05nef8h70 GSP (Czechia)'),
(55677, 'https://ror.org/03wgey566', 'no_lang_code', 1, 'https://ror.org/03wgey566 INT-Informace a Technologie (Czechia)'),
(55678, 'https://ror.org/017g8xy67', 'no_lang_code', 1, 'https://ror.org/017g8xy67 IDEA StatiCa (Czechia)'),
(55679, 'https://ror.org/02rfvew21', 'no_lang_code', 1, 'https://ror.org/02rfvew21 Integrated Micro-Electronics (Czechia)'),
(55680, 'https://ror.org/04wsk8226', 'no_lang_code', 1, 'https://ror.org/04wsk8226 Idea-Envi (Czechia)'),
(55681, 'https://ror.org/016r49y78', 'no_lang_code', 1, 'https://ror.org/016r49y78 IntellMed (Czechia)'),
(55682, 'https://ror.org/0049tkm42', 'no_lang_code', 1, 'https://ror.org/0049tkm42 Intemac Solutions (Czechia)'),
(55683, 'https://ror.org/034bznj45', 'no_lang_code', 1, 'https://ror.org/034bznj45 Fresenius Kabi (Czechia)'),
(55684, 'https://ror.org/05dz4gs85', 'no_lang_code', 1, 'https://ror.org/05dz4gs85 Deutsche Telekom (Czechia)'),
(55685, 'https://ror.org/049gvsd25', 'no_lang_code', 1, 'https://ror.org/049gvsd25 Knorr-Bremse (Czechia)'),
(55686, 'https://ror.org/05tx9ga45', 'no_lang_code', 1, 'https://ror.org/05tx9ga45 InterEco (Czechia)'),
(55687, 'https://ror.org/05xm6zq64', 'no_lang_code', 1, 'https://ror.org/05xm6zq64 Iguassu Software Systems (Czechia)'),
(55688, 'https://ror.org/007wcet58', 'no_lang_code', 1, 'https://ror.org/007wcet58 GTW Bearings (Czechia)'),
(55689, 'https://ror.org/0168cex60', 'no_lang_code', 1, 'https://ror.org/0168cex60 Interfluid (Czechia)'),
(55690, 'https://ror.org/05ymvmg49', 'no_lang_code', 1, 'https://ror.org/05ymvmg49 Gumárny Zubří (Czechia)'),
(55691, 'https://ror.org/03shzfz43', 'no_lang_code', 1, 'https://ror.org/03shzfz43 IKE (Slovakia)'),
(55692, 'https://ror.org/01764mn96', 'no_lang_code', 1, 'https://ror.org/01764mn96 Gumotex (Czechia)'),
(55693, 'https://ror.org/05behat95', 'en', 1, 'https://ror.org/05behat95 Gymnázium Jana Palacha Jan Palach Private High School'),
(55694, 'https://ror.org/0078wde10', 'no_lang_code', 1, 'https://ror.org/0078wde10 IKP Consulting Engineers (Czechia)'),
(55695, 'https://ror.org/04bbdb654', 'cs', 1, 'https://ror.org/04bbdb654 Gymnázium Žamberk'),
(55696, 'https://ror.org/02tma6r06', 'no_lang_code', 1, 'https://ror.org/02tma6r06 Gypstrend (Czechia)'),
(55697, 'https://ror.org/050dy3g96', 'no_lang_code', 1, 'https://ror.org/050dy3g96 IKT Advanced Technologies (Czechia)'),
(55698, 'https://ror.org/051fr8g96', 'no_lang_code', 1, 'https://ror.org/051fr8g96 GZ Media (Czechia)'),
(55699, 'https://ror.org/034xn6p88', 'no_lang_code', 1, 'https://ror.org/034xn6p88 ILD (Czechia)'),
(55700, 'https://ror.org/04f776z76', 'no_lang_code', 1, 'https://ror.org/04f776z76 Ircon (Czechia)'),
(55701, 'https://ror.org/04qv6zr56', 'no_lang_code', 1, 'https://ror.org/04qv6zr56 Ireks Enzyma (Czechia)'),
(55702, 'https://ror.org/0202hwy21', 'no_lang_code', 1, 'https://ror.org/0202hwy21 INTOS (Czechia)'),
(55703, 'https://ror.org/03az84415', 'no_lang_code', 1, 'https://ror.org/03az84415 Intriple (Czechia)'),
(55704, 'https://ror.org/04vkaw234', 'no_lang_code', 1, 'https://ror.org/04vkaw234 Imatech (Czechia)'),
(55705, 'https://ror.org/01teb0938', 'no_lang_code', 1, 'https://ror.org/01teb0938 Iscare I.V.F Klinické Centrum ISCARE'),
(55706, 'https://ror.org/01b883r40', 'no_lang_code', 1, 'https://ror.org/01b883r40 INTV (Czechia)'),
(55707, 'https://ror.org/021z27d52', 'no_lang_code', 1, 'https://ror.org/021z27d52 Kaiser (Czechia)'),
(55708, 'https://ror.org/00pkj5048', 'no_lang_code', 1, 'https://ror.org/00pkj5048 Invaz (Czechia)'),
(55709, 'https://ror.org/02y0wsa73', 'no_lang_code', 1, 'https://ror.org/02y0wsa73 Institut pro Sociální a Ekonomické Analýzy'),
(55710, 'https://ror.org/05s6mnc45', 'no_lang_code', 1, 'https://ror.org/05s6mnc45 Invelt Industry International (Czechia)'),
(55711, 'https://ror.org/042nzp779', 'cs', 1, 'https://ror.org/042nzp779 ISES'),
(55712, 'https://ror.org/03vy9zw30', 'no_lang_code', 1, 'https://ror.org/03vy9zw30 Kalma (Czechia)'),
(55713, 'https://ror.org/032b9vb83', 'no_lang_code', 1, 'https://ror.org/032b9vb83 Ish Pumps Olomouc (Czechia)'),
(55714, 'https://ror.org/05b71ga35', 'no_lang_code', 1, 'https://ror.org/05b71ga35 Km - Kámen (Czechia)'),
(55715, 'https://ror.org/00s2ktz06', 'no_lang_code', 1, 'https://ror.org/00s2ktz06 Isolit-Bravo (Czechia)'),
(55716, 'https://ror.org/04vnqft85', 'no_lang_code', 1, 'https://ror.org/04vnqft85 Kapa Zlín (Czechia)'),
(55717, 'https://ror.org/010qg4v35', 'en', 1, 'https://ror.org/010qg4v35 International Organization for Migration Mezinárodní organizace pro migraci'),
(55718, 'https://ror.org/039qk4e20', 'no_lang_code', 1, 'https://ror.org/039qk4e20 Isotra (Czechia)'),
(55719, 'https://ror.org/02r10ma13', 'no_lang_code', 1, 'https://ror.org/02r10ma13 IHI Corporation (Czechia)'),
(55720, 'https://ror.org/059c3dd05', 'no_lang_code', 1, 'https://ror.org/059c3dd05 Issa Czech (Czechia)'),
(55721, 'https://ror.org/02rffwf78', 'no_lang_code', 1, 'https://ror.org/02rffwf78 Kapsch (Czechia)'),
(55722, 'https://ror.org/04kkpea39', 'no_lang_code', 1, 'https://ror.org/04kkpea39 ITA (Czechia)'),
(55723, 'https://ror.org/054jtdj73', 'no_lang_code', 1, 'https://ror.org/054jtdj73 IQ Structures (Czechia)'),
(55724, 'https://ror.org/05v9bqs40', 'no_lang_code', 1, 'https://ror.org/05v9bqs40 ITAB'),
(55725, 'https://ror.org/04prad579', 'no_lang_code', 1, 'https://ror.org/04prad579 Karel Řehák (Czechia)'),
(55726, 'https://ror.org/03722ks09', 'en', 1, 'https://ror.org/03722ks09 Institut pro Udržitelný Rozvoj Sídel Institute for Sustainable Development of Settlements'),
(55727, 'https://ror.org/01wa9sg17', 'no_lang_code', 1, 'https://ror.org/01wa9sg17 IQLANDIA'),
(55728, 'https://ror.org/035jk1w68', 'no_lang_code', 1, 'https://ror.org/035jk1w68 IVAR (Czechia)'),
(55729, 'https://ror.org/00z9nr140', 'cs', 1, 'https://ror.org/00z9nr140 Karlovarská Krajská Nemocnice'),
(55730, 'https://ror.org/054v7pb78', 'no_lang_code', 1, 'https://ror.org/054v7pb78 Teva Pharmaceuticals (Czechia)'),
(55731, 'https://ror.org/039x2ss79', 'no_lang_code', 1, 'https://ror.org/039x2ss79 Irbis (Czechia)'),
(55732, 'https://ror.org/01ry8n211', 'no_lang_code', 1, 'https://ror.org/01ry8n211 CNH Industrial (Czechia)'),
(55733, 'https://ror.org/039dcrv13', 'cs', 1, 'https://ror.org/039dcrv13 Muzeum Karlovy Vary'),
(55734, 'https://ror.org/05g3kjm83', 'no_lang_code', 1, 'https://ror.org/05g3kjm83 IVEP (Czechia)'),
(55735, 'https://ror.org/000zqbq25', 'no_lang_code', 1, 'https://ror.org/000zqbq25 Ivitas (Czechia)'),
(55736, 'https://ror.org/00sq92q44', 'no_lang_code', 1, 'https://ror.org/00sq92q44 Thun 1794 (Czechia)'),
(55737, 'https://ror.org/05ss23q56', 'no_lang_code', 1, 'https://ror.org/05ss23q56 KSK Precise Motion (Czechia)'),
(55738, 'https://ror.org/03ntvfv97', 'no_lang_code', 1, 'https://ror.org/03ntvfv97 IVV Engineering (Czechia)'),
(55739, 'https://ror.org/048npsb62', 'no_lang_code', 1, 'https://ror.org/048npsb62 Karned Tools (Czechia)'),
(55740, 'https://ror.org/045tr8m18', 'no_lang_code', 1, 'https://ror.org/045tr8m18 Kaspe (Czechia)'),
(55741, 'https://ror.org/0501jzx23', 'no_lang_code', 1, 'https://ror.org/0501jzx23 Kunst (Czechia)'),
(55742, 'https://ror.org/02q7wh890', 'no_lang_code', 1, 'https://ror.org/02q7wh890 J-VST (Czechia)'),
(55743, 'https://ror.org/05vh91d34', 'no_lang_code', 1, 'https://ror.org/05vh91d34 KB - Blok (Czechia)'),
(55744, 'https://ror.org/02gkz9k46', 'no_lang_code', 1, 'https://ror.org/02gkz9k46 Kvados (Czechia)'),
(55745, 'https://ror.org/03azdp011', 'no_lang_code', 1, 'https://ror.org/03azdp011 J. Jindra (Czechia)'),
(55746, 'https://ror.org/0484yn593', 'no_lang_code', 1, 'https://ror.org/0484yn593 KVS Ekodivize (Czechia)'),
(55747, 'https://ror.org/01yg7sq26', 'no_lang_code', 1, 'https://ror.org/01yg7sq26 Koenig & Bauer (Czechia)'),
(55748, 'https://ror.org/000qcd088', 'no_lang_code', 1, 'https://ror.org/000qcd088 L.E.T. Optomechanika (Czechia)'),
(55749, 'https://ror.org/021syp484', 'no_lang_code', 1, 'https://ror.org/021syp484 Jablonecká Nástrojárna (Czechia)'),
(55750, 'https://ror.org/01vf7qd54', 'no_lang_code', 1, 'https://ror.org/01vf7qd54 L.K. Engineering (Czechia)'),
(55751, 'https://ror.org/00902kb83', 'no_lang_code', 1, 'https://ror.org/00902kb83 Kell (Czechia)'),
(55752, 'https://ror.org/05smskk65', 'no_lang_code', 1, 'https://ror.org/05smskk65 LabMediaServis (Czechia)'),
(55753, 'https://ror.org/04158f936', 'no_lang_code', 1, 'https://ror.org/04158f936 Kemwater ProChemie (Czechia)'),
(55754, 'https://ror.org/03q88m992', 'no_lang_code', 1, 'https://ror.org/03q88m992 Keramost (Czechia)'),
(55755, 'https://ror.org/00hm3z611', 'no_lang_code', 1, 'https://ror.org/00hm3z611 Keramtech (Czechia)'),
(55756, 'https://ror.org/01krcaf49', 'no_lang_code', 1, 'https://ror.org/01krcaf49 Kerima (Czechia)'),
(55757, 'https://ror.org/020v2gz03', 'no_lang_code', 1, 'https://ror.org/020v2gz03 Kessl (Czechia)'),
(55758, 'https://ror.org/04bv5ph58', 'no_lang_code', 1, 'https://ror.org/04bv5ph58 KHSanace (Czechia)'),
(55759, 'https://ror.org/0561waf62', 'no_lang_code', 1, 'https://ror.org/0561waf62 Laboratory Imaging (Czechia)'),
(55760, 'https://ror.org/028b18z22', 'en', 1, 'https://ror.org/028b18z22 Carbon Cycle and Ecosystems'),
(55761, 'https://ror.org/00pecb659', 'no_lang_code', 1, 'https://ror.org/00pecb659 Labrys'),
(55762, 'https://ror.org/00k5y4z24', 'no_lang_code', 1, 'https://ror.org/00k5y4z24 Kitl (Czechia)'),
(55763, 'https://ror.org/03rswp691', 'cs', 1, 'https://ror.org/03rswp691 Klasické a španělské Gymnázium, Brno-Bystrc'),
(55764, 'https://ror.org/048a8ap39', 'cs', 1, 'https://ror.org/048a8ap39 Labyrint'),
(55765, 'https://ror.org/04jfdra48', 'cs', 1, 'https://ror.org/04jfdra48 Klášter Chotěšov'),
(55766, 'https://ror.org/00wxgkf94', 'no_lang_code', 1, 'https://ror.org/00wxgkf94 LAC (Czechia)'),
(55767, 'https://ror.org/01vrx7006', 'no_lang_code', 1, 'https://ror.org/01vrx7006 Klatovské Rybářství (Czechia)'),
(55768, 'https://ror.org/05gv51k44', 'no_lang_code', 1, 'https://ror.org/05gv51k44 KM Beta (Czechia)'),
(55769, 'https://ror.org/007h7ca29', 'no_lang_code', 1, 'https://ror.org/007h7ca29 KMC Group (Czechia)'),
(55770, 'https://ror.org/04x4bx294', 'no_lang_code', 1, 'https://ror.org/04x4bx294 Lach-Ner (Czechia)'),
(55771, 'https://ror.org/041fb0y12', 'no_lang_code', 1, 'https://ror.org/041fb0y12 Jakape (Czechia)'),
(55772, 'https://ror.org/05hvp7v67', 'no_lang_code', 1, 'https://ror.org/05hvp7v67 Lacrum Velké Meziříčí (Czechia)'),
(55773, 'https://ror.org/059cchq73', 'no_lang_code', 1, 'https://ror.org/059cchq73 Knauf (Czechia)'),
(55774, 'https://ror.org/00pn2q632', 'no_lang_code', 1, 'https://ror.org/00pn2q632 Knitva (Czechia)'),
(55775, 'https://ror.org/02fn5yv16', 'no_lang_code', 1, 'https://ror.org/02fn5yv16 KNZ (Czechia)'),
(55776, 'https://ror.org/01wkabt06', 'no_lang_code', 1, 'https://ror.org/01wkabt06 Lammb Systems (Czechia)'),
(55777, 'https://ror.org/038r0kk66', 'no_lang_code', 1, 'https://ror.org/038r0kk66 Kobra Údlice (Czechia)'),
(55778, 'https://ror.org/04are6b10', 'no_lang_code', 1, 'https://ror.org/04are6b10 Sincon (Czechia)'),
(55779, 'https://ror.org/03d8wad17', 'no_lang_code', 1, 'https://ror.org/03d8wad17 Lanex (Czechia)'),
(55780, 'https://ror.org/02tr26h84', 'no_lang_code', 1, 'https://ror.org/02tr26h84 Koh-I-Noor (Czechia)'),
(55781, 'https://ror.org/03hwv4250', 'no_lang_code', 1, 'https://ror.org/03hwv4250 LAO - Průmyslové Systémy (Czechia)'),
(55782, 'https://ror.org/004s1x176', 'no_lang_code', 1, 'https://ror.org/004s1x176 JaP Jacina (Czechia)'),
(55783, 'https://ror.org/00c798y78', 'no_lang_code', 1, 'https://ror.org/00c798y78 Laser-Tech (Czechia)'),
(55784, 'https://ror.org/00j558r43', 'no_lang_code', 1, 'https://ror.org/00j558r43 Kolejconsult & Servis (Czechia)'),
(55785, 'https://ror.org/02bzbbw22', 'no_lang_code', 1, 'https://ror.org/02bzbbw22 LaserTherm (Czechia)'),
(55786, 'https://ror.org/04sr19j82', 'no_lang_code', 1, 'https://ror.org/04sr19j82 Lasvit (Czechia)'),
(55787, 'https://ror.org/02h5et257', 'no_lang_code', 1, 'https://ror.org/02h5et257 Koma (Czechia)'),
(55788, 'https://ror.org/03smjaw84', 'no_lang_code', 1, 'https://ror.org/03smjaw84 Lavaris (Czechia)'),
(55789, 'https://ror.org/02sn3n814', 'cs', 1, 'https://ror.org/02sn3n814 Lázně Poděbrady (Czechia)'),
(55790, 'https://ror.org/01fgqjd55', 'no_lang_code', 1, 'https://ror.org/01fgqjd55 Masoma (Czechia)'),
(55791, 'https://ror.org/006rtrx18', 'no_lang_code', 1, 'https://ror.org/006rtrx18 Komerční Železniční Výzkum (Czechia)'),
(55792, 'https://ror.org/010tdmk44', 'no_lang_code', 1, 'https://ror.org/010tdmk44 Lec (Czechia)'),
(55793, 'https://ror.org/0252ba684', 'no_lang_code', 1, 'https://ror.org/0252ba684 Komfort (Czechia)'),
(55794, 'https://ror.org/056y2jv89', 'cs', 1, 'https://ror.org/056y2jv89 Jazykovědné Sdružení České Republiky'),
(55795, 'https://ror.org/00gr9gj95', 'no_lang_code', 1, 'https://ror.org/00gr9gj95 jCyte (United States)'),
(55796, 'https://ror.org/030pxca80', 'no_lang_code', 1, 'https://ror.org/030pxca80 Komix (Czechia)'),
(55797, 'https://ror.org/02k13v236', 'no_lang_code', 1, 'https://ror.org/02k13v236 Komutex (Czechia)'),
(55798, 'https://ror.org/005yyvy03', 'no_lang_code', 1, 'https://ror.org/005yyvy03 Lena Chemical (Czechia)'),
(55799, 'https://ror.org/00k2e8z33', 'no_lang_code', 1, 'https://ror.org/00k2e8z33 Koneko (Czechia)'),
(55800, 'https://ror.org/02505ds21', 'cs', 1, 'https://ror.org/02505ds21 Jednota Hudebního Divadla'),
(55801, 'https://ror.org/01kj93b22', 'no_lang_code', 1, 'https://ror.org/01kj93b22 Jeku (Czechia)'),
(55802, 'https://ror.org/00j2jd568', 'no_lang_code', 1, 'https://ror.org/00j2jd568 LentiKat''s (Czechia)'),
(55803, 'https://ror.org/0395qzd79', 'no_lang_code', 1, 'https://ror.org/0395qzd79 KonekTel (Czechia)'),
(55804, 'https://ror.org/04fpmef97', 'no_lang_code', 1, 'https://ror.org/04fpmef97 Kontron (Czechia)'),
(55805, 'https://ror.org/011drtn64', 'no_lang_code', 1, 'https://ror.org/011drtn64 Jet Company (Czechia)'),
(55806, 'https://ror.org/016wa7380', 'no_lang_code', 1, 'https://ror.org/016wa7380 JHV Engineering'),
(55807, 'https://ror.org/01qk03z44', 'no_lang_code', 1, 'https://ror.org/01qk03z44 Lescus Cetkovice (Czechia)'),
(55808, 'https://ror.org/01ttd1h48', 'no_lang_code', 1, 'https://ror.org/01ttd1h48 Lesoškolky (Czechia)'),
(55809, 'https://ror.org/02pe0yp46', 'cs', 1, 'https://ror.org/02pe0yp46 JIC'),
(55810, 'https://ror.org/048y92s67', 'en', 1, 'https://ror.org/048y92s67 Jihočeská agentura pro podporu inovačního podnikání o.p.s South Bohemian Agency for Support to Innovative Enterprising'),
(55811, 'https://ror.org/037dpnh08', 'no_lang_code', 1, 'https://ror.org/037dpnh08 Lesprojekt Východní Čechy (Czechia)'),
(55812, 'https://ror.org/037kt1n40', 'cs', 1, 'https://ror.org/037kt1n40 Koordinační Středisko pro Resortní Zdravotnické Informační Systémy'),
(55813, 'https://ror.org/03p0pyx76', 'cs', 1, 'https://ror.org/03p0pyx76 Lesy Jáchymov'),
(55814, 'https://ror.org/015r3hp96', 'en', 1, 'https://ror.org/015r3hp96 Grundinformationen über Südböhmische Wirtschaftskammer Jihočeská hospodářská komora South Bohemian Chamber of Commerce'),
(55815, 'https://ror.org/04w2f6891', 'no_lang_code', 1, 'https://ror.org/04w2f6891 Heidenhain (Slovakia)'),
(55816, 'https://ror.org/031ph5b56', 'en', 1, 'https://ror.org/031ph5b56 Forests of the Town of Jirkov Lesy Města Jirkova'),
(55817, 'https://ror.org/0266xtw32', 'cs', 1, 'https://ror.org/0266xtw32 Jihočeské Muzeum v Českých Budějovicích'),
(55818, 'https://ror.org/03q5d1a68', 'no_lang_code', 1, 'https://ror.org/03q5d1a68 Lets Fly (Czechia)'),
(55819, 'https://ror.org/0068cft64', 'no_lang_code', 1, 'https://ror.org/0068cft64 Kornet (Czechia)'),
(55820, 'https://ror.org/02aezqa22', 'no_lang_code', 1, 'https://ror.org/02aezqa22 Letiště Ostrava Ostrava Airport (Czechia)'),
(55821, 'https://ror.org/04nthjy68', 'no_lang_code', 1, 'https://ror.org/04nthjy68 Jimi (Czechia)'),
(55822, 'https://ror.org/02dkk5v76', 'no_lang_code', 1, 'https://ror.org/02dkk5v76 Letiště Vodochody (Czechia) Vodochody Airport'),
(55823, 'https://ror.org/05twg5e95', 'no_lang_code', 1, 'https://ror.org/05twg5e95 Korund Benátky (Czechia)'),
(55824, 'https://ror.org/0008w9y84', 'no_lang_code', 1, 'https://ror.org/0008w9y84 Jinpo Plus (Czechia)'),
(55825, 'https://ror.org/02shrym55', 'no_lang_code', 1, 'https://ror.org/02shrym55 Kotouč Štramberk (Czechia)'),
(55826, 'https://ror.org/03mjxex31', 'no_lang_code', 1, 'https://ror.org/03mjxex31 Kotrbatý (Czechia)'),
(55827, 'https://ror.org/0028a6m81', 'no_lang_code', 1, 'https://ror.org/0028a6m81 Koutný (Czechia)'),
(55828, 'https://ror.org/05v80mh43', 'no_lang_code', 1, 'https://ror.org/05v80mh43 Jizerské Pekárny (Czechia)'),
(55829, 'https://ror.org/00bf8wg73', 'no_lang_code', 1, 'https://ror.org/00bf8wg73 Kovo Novak (Czechia)'),
(55830, 'https://ror.org/045jxwb84', 'no_lang_code', 1, 'https://ror.org/045jxwb84 JK envi (Czechia)'),
(55831, 'https://ror.org/01emwg098', 'no_lang_code', 1, 'https://ror.org/01emwg098 Kovolis Hedvikov (Czechia)'),
(55832, 'https://ror.org/033qwae34', 'cs', 1, 'https://ror.org/033qwae34 Liberální institut'),
(55833, 'https://ror.org/02zc9dy23', 'no_lang_code', 1, 'https://ror.org/02zc9dy23 Kovolit (Czechia)'),
(55834, 'https://ror.org/02dddyz58', 'no_lang_code', 1, 'https://ror.org/02dddyz58 Johnson Controls (Czechia)'),
(55835, 'https://ror.org/03s8zxa22', 'no_lang_code', 1, 'https://ror.org/03s8zxa22 Josa (Czechia)'),
(55836, 'https://ror.org/00ajs1721', 'no_lang_code', 1, 'https://ror.org/00ajs1721 Koyo Bearings (Czechia)'),
(55837, 'https://ror.org/016241e94', 'no_lang_code', 1, 'https://ror.org/016241e94 Liberecké Kotlárny Hölter (Czechia)'),
(55838, 'https://ror.org/037xrhm50', 'no_lang_code', 1, 'https://ror.org/037xrhm50 Liberecké Strojírny (Czechia)'),
(55839, 'https://ror.org/02jzd3t55', 'no_lang_code', 1, 'https://ror.org/02jzd3t55 KP Projekt (Czechia)'),
(55840, 'https://ror.org/0218gpe46', 'no_lang_code', 1, 'https://ror.org/0218gpe46 Licolor (Czechia)'),
(55841, 'https://ror.org/04vvq5g41', 'no_lang_code', 1, 'https://ror.org/04vvq5g41 KR Důlní služby (Czechia)'),
(55842, 'https://ror.org/022pcr506', 'no_lang_code', 1, 'https://ror.org/022pcr506 Licon Heat (Czechia)'),
(55843, 'https://ror.org/024tjte62', 'cs', 1, 'https://ror.org/024tjte62 Krajská Hygienická Stanice Olomouci'),
(55844, 'https://ror.org/02341a605', 'cs', 1, 'https://ror.org/02341a605 Krajská nemocnice T. Bati'),
(55845, 'https://ror.org/00f9cn816', 'no_lang_code', 1, 'https://ror.org/00f9cn816 Lifetech (Czechia)'),
(55846, 'https://ror.org/050t4db88', 'cs', 1, 'https://ror.org/050t4db88 Sokolov Muzeum'),
(55847, 'https://ror.org/04g481a83', 'no_lang_code', 1, 'https://ror.org/04g481a83 Lift Servis (Czechia)'),
(55848, 'https://ror.org/00rng3h03', 'no_lang_code', 1, 'https://ror.org/00rng3h03 JV Projekt (Czechia)'),
(55849, 'https://ror.org/010b9pv54', 'no_lang_code', 1, 'https://ror.org/010b9pv54 LightGate (Czechia)'),
(55850, 'https://ror.org/03w4cze07', 'cs', 1, 'https://ror.org/03w4cze07 Královská kanonie premonstrátů na Strahově Strahov Monastery'),
(55851, 'https://ror.org/03vcy9z87', 'no_lang_code', 1, 'https://ror.org/03vcy9z87 KrampeHarex (Czechia)'),
(55852, 'https://ror.org/01rwf0y22', 'no_lang_code', 1, 'https://ror.org/01rwf0y22 Krill (Czechia)'),
(55853, 'https://ror.org/003a1f534', 'no_lang_code', 1, 'https://ror.org/003a1f534 Central European Media Enterprises (Czechia)'),
(55854, 'https://ror.org/05rgmyf21', 'no_lang_code', 1, 'https://ror.org/05rgmyf21 Kappa-P (Czechia)'),
(55855, 'https://ror.org/040z48t11', 'no_lang_code', 1, 'https://ror.org/040z48t11 KMB systems (Czechia)'),
(55856, 'https://ror.org/04h1j5a33', 'no_lang_code', 1, 'https://ror.org/04h1j5a33 K Profi (Czechia)'),
(55857, 'https://ror.org/00zbgzk38', 'cs', 1, 'https://ror.org/00zbgzk38 Kristina Colloredo-Mansfeldová'),
(55858, 'https://ror.org/046yszb07', 'no_lang_code', 1, 'https://ror.org/046yszb07 Ligranit (Czechia)'),
(55859, 'https://ror.org/0491jra02', 'no_lang_code', 1, 'https://ror.org/0491jra02 KBK fire (Czechia)'),
(55860, 'https://ror.org/00r9ry950', 'no_lang_code', 1, 'https://ror.org/00r9ry950 K and K Technology (Czechia)'),
(55861, 'https://ror.org/05bz35w69', 'cs', 1, 'https://ror.org/05bz35w69 Krkonošská Realitní'),
(55862, 'https://ror.org/04vn8dh18', 'no_lang_code', 1, 'https://ror.org/04vn8dh18 K2pharm (Czechia)'),
(55863, 'https://ror.org/038nh6c68', 'no_lang_code', 1, 'https://ror.org/038nh6c68 Kromilk (Czechia)'),
(55864, 'https://ror.org/01mz2aa07', 'no_lang_code', 1, 'https://ror.org/01mz2aa07 Kabelovna Kabex (Czechia)'),
(55865, 'https://ror.org/04qt5ez29', 'no_lang_code', 1, 'https://ror.org/04qt5ez29 Lihovar Lžín (Czechia)'),
(55866, 'https://ror.org/01b34qr50', 'no_lang_code', 1, 'https://ror.org/01b34qr50 Slovacke Strojirny (Czechia)'),
(55867, 'https://ror.org/0435zxb65', 'no_lang_code', 1, 'https://ror.org/0435zxb65 Kaipan (Czechia)'),
(55868, 'https://ror.org/003c3rv52', 'no_lang_code', 1, 'https://ror.org/003c3rv52 KŠ Prefa (Czechia)'),
(55869, 'https://ror.org/04m7h9q42', 'no_lang_code', 1, 'https://ror.org/04m7h9q42 Limagrain (Czechia)'),
(55870, 'https://ror.org/01a1d1t26', 'no_lang_code', 1, 'https://ror.org/01a1d1t26 Lime Business Consulting (Czechia)'),
(55871, 'https://ror.org/03nd93634', 'no_lang_code', 1, 'https://ror.org/03nd93634 KSM Castings (Czechia)'),
(55872, 'https://ror.org/05r1nkw66', 'no_lang_code', 1, 'https://ror.org/05r1nkw66 Lineq (Czechia)'),
(55873, 'https://ror.org/026nvac34', 'no_lang_code', 1, 'https://ror.org/026nvac34 Lingea (Czechia)'),
(55874, 'https://ror.org/02tj78555', 'no_lang_code', 1, 'https://ror.org/02tj78555 Metra Blansko (Czechia)'),
(55875, 'https://ror.org/009qbz979', 'no_lang_code', 1, 'https://ror.org/009qbz979 Lintech (Czechia)'),
(55876, 'https://ror.org/05qrxbp40', 'no_lang_code', 1, 'https://ror.org/05qrxbp40 Lisi Automotive Form (Czechia)'),
(55877, 'https://ror.org/03qj6qh62', 'no_lang_code', 1, 'https://ror.org/03qj6qh62 Lyckeby Amylex (Czechia)'),
(55878, 'https://ror.org/0212my482', 'no_lang_code', 1, 'https://ror.org/0212my482 Metroprojekt Praha (Czechia)'),
(55879, 'https://ror.org/02md2rw68', 'no_lang_code', 1, 'https://ror.org/02md2rw68 Logis (Czechia)'),
(55880, 'https://ror.org/05hakte81', 'no_lang_code', 1, 'https://ror.org/05hakte81 Logopedická společnost Miloše Sováka (Czechia)'),
(55881, 'https://ror.org/05xk8yj88', 'no_lang_code', 1, 'https://ror.org/05xk8yj88 M Silnice (Czechia)'),
(55882, 'https://ror.org/05mk8pj48', 'no_lang_code', 1, 'https://ror.org/05mk8pj48 Metrostav (Czechia)'),
(55883, 'https://ror.org/053v42m50', 'no_lang_code', 1, 'https://ror.org/053v42m50 BrainScope (Czechia)'),
(55884, 'https://ror.org/02aaqrp97', 'no_lang_code', 1, 'https://ror.org/02aaqrp97 Lovochemie (Czechia)'),
(55885, 'https://ror.org/02273n860', 'no_lang_code', 1, 'https://ror.org/02273n860 Elvia (Czechia)'),
(55886, 'https://ror.org/029p38t95', 'no_lang_code', 1, 'https://ror.org/029p38t95 MEZ (Czechia)'),
(55887, 'https://ror.org/03qv00g45', 'no_lang_code', 1, 'https://ror.org/03qv00g45 Mavel (Czechia)'),
(55888, 'https://ror.org/03btg9194', 'cs', 1, 'https://ror.org/03btg9194 Mezinárodní Testování Drůbeže'),
(55889, 'https://ror.org/02ps7ts75', 'no_lang_code', 1, 'https://ror.org/02ps7ts75 MGE Data (Czechia)'),
(55890, 'https://ror.org/04wxr5s39', 'no_lang_code', 1, 'https://ror.org/04wxr5s39 MIA Studio (Czechia)'),
(55891, 'https://ror.org/05q9d6816', 'no_lang_code', 1, 'https://ror.org/05q9d6816 Mefi (Czechia)'),
(55892, 'https://ror.org/03g5kfc06', 'no_lang_code', 1, 'https://ror.org/03g5kfc06 MICo (Czechia)'),
(55893, 'https://ror.org/04pcraj31', 'en', 1, 'https://ror.org/04pcraj31 Museum of the Bohemian Paradise in Turnov Muzeum Českého ráje v Turnově'),
(55894, 'https://ror.org/03f1tq367', 'no_lang_code', 1, 'https://ror.org/03f1tq367 M line (Czechia)'),
(55895, 'https://ror.org/00hf9b998', 'no_lang_code', 1, 'https://ror.org/00hf9b998 Micos (Czechia)'),
(55896, 'https://ror.org/003prxb56', 'cs', 1, 'https://ror.org/003prxb56 Muzeum Cheb'),
(55897, 'https://ror.org/026xyq320', 'no_lang_code', 1, 'https://ror.org/026xyq320 Mikroelektronika (Czechia)'),
(55898, 'https://ror.org/00hf8n006', 'no_lang_code', 1, 'https://ror.org/00hf8n006 Mikroklima (Czechia)'),
(55899, 'https://ror.org/05cvdz556', 'cs', 1, 'https://ror.org/05cvdz556 Muzeum Jana Amose Komenského'),
(55900, 'https://ror.org/01ktyn983', 'cs', 1, 'https://ror.org/01ktyn983 Muzeum jihovýchodní Moravy ve Zlíně'),
(55901, 'https://ror.org/02dzmns02', 'no_lang_code', 1, 'https://ror.org/02dzmns02 Mikrop Čebín (Czechia)'),
(55902, 'https://ror.org/058g1v616', 'no_lang_code', 1, 'https://ror.org/058g1v616 Madeta (Czechia)'),
(55903, 'https://ror.org/02jygx492', 'cs', 1, 'https://ror.org/02jygx492 Museum of Kroměříž'),
(55904, 'https://ror.org/01dbp7q39', 'no_lang_code', 1, 'https://ror.org/01dbp7q39 Mikrotechna Praha (Czechia)'),
(55905, 'https://ror.org/04nh5he21', 'no_lang_code', 1, 'https://ror.org/04nh5he21 MaDeX (Czechia)'),
(55906, 'https://ror.org/049efks73', 'en', 1, 'https://ror.org/049efks73 Museum of the City of Usti nad Labem'),
(55907, 'https://ror.org/05nazff88', 'cs', 1, 'https://ror.org/05nazff88 Muzeum Novojičínska'),
(55908, 'https://ror.org/02ak6z209', 'no_lang_code', 1, 'https://ror.org/02ak6z209 Mvb Opava (Czechia)'),
(55909, 'https://ror.org/05qxpp357', 'no_lang_code', 1, 'https://ror.org/05qxpp357 Magna Exteriors (Czechia)'),
(55910, 'https://ror.org/03f889737', 'no_lang_code', 1, 'https://ror.org/03f889737 Milcom Servis (Czechia)'),
(55911, 'https://ror.org/02ean3b70', 'no_lang_code', 1, 'https://ror.org/02ean3b70 Mvvs (Czechia)'),
(55912, 'https://ror.org/01d1a4y61', 'no_lang_code', 1, 'https://ror.org/01d1a4y61 Malina Safety (Czechia)'),
(55913, 'https://ror.org/02askmp96', 'no_lang_code', 1, 'https://ror.org/02askmp96 Mycroft Mind (Czechia)'),
(55914, 'https://ror.org/01xtr4h58', 'no_lang_code', 1, 'https://ror.org/01xtr4h58 Mydlářka (Czechia)'),
(55915, 'https://ror.org/03xcw7h27', 'no_lang_code', 1, 'https://ror.org/03xcw7h27 Malus (Czechia)'),
(55916, 'https://ror.org/0042d3p02', 'no_lang_code', 1, 'https://ror.org/0042d3p02 MZ Liberec (Czechia)'),
(55917, 'https://ror.org/05t9frg20', 'no_lang_code', 1, 'https://ror.org/05t9frg20 MAP Systems (Czechia)'),
(55918, 'https://ror.org/04cmg3c10', 'no_lang_code', 1, 'https://ror.org/04cmg3c10 Foundation of the Baroque Theater in Český Krumlov Nadace barokního divadla zámku Český Krumlov'),
(55919, 'https://ror.org/02vw2x065', 'no_lang_code', 1, 'https://ror.org/02vw2x065 Minerva Boskovice (Czechia)'),
(55920, 'https://ror.org/03pzk8p04', 'no_lang_code', 1, 'https://ror.org/03pzk8p04 MARAT Engineering (Czechia)'),
(55921, 'https://ror.org/031ykaj51', 'no_lang_code', 1, 'https://ror.org/031ykaj51 Markent (Czechia)'),
(55922, 'https://ror.org/04f1k6x45', 'no_lang_code', 1, 'https://ror.org/04f1k6x45 Marshal Logistic (Czechia)'),
(55923, 'https://ror.org/013kx3552', 'cs', 1, 'https://ror.org/013kx3552 Bohuslav Martinu Foundation Nadace Bohuslava Martinů'),
(55924, 'https://ror.org/00hbn9p31', 'no_lang_code', 1, 'https://ror.org/00hbn9p31 MP Krásno (Czechia)'),
(55925, 'https://ror.org/04d9jqv19', 'no_lang_code', 1, 'https://ror.org/04d9jqv19 Minova Bohemia (Czechia)'),
(55926, 'https://ror.org/00c4q9a37', 'no_lang_code', 1, 'https://ror.org/00c4q9a37 Materialise (Czechia)'),
(55927, 'https://ror.org/01hrdvm22', 'cs', 1, 'https://ror.org/01hrdvm22 Leoš Janáček Foundation Nadace Leoše Janáčka'),
(55928, 'https://ror.org/05mcn5a93', 'cs', 1, 'https://ror.org/05mcn5a93 MAS Dolní Morava'),
(55929, 'https://ror.org/00debpx34', 'cs', 1, 'https://ror.org/00debpx34 MŠ Na Smetance'),
(55930, 'https://ror.org/03t5pkx69', 'cs', 1, 'https://ror.org/03t5pkx69 Mateřská školka Sokolovská'),
(55931, 'https://ror.org/028gfev79', 'no_lang_code', 1, 'https://ror.org/028gfev79 Mitas (Czechia)'),
(55932, 'https://ror.org/0542dkz21', 'en', 1, 'https://ror.org/0542dkz21 Czech Environmental Partnership Foundation Nadace Partnerství'),
(55933, 'https://ror.org/00gfyj628', 'no_lang_code', 1, 'https://ror.org/00gfyj628 Matex PM (Czechia)'),
(55934, 'https://ror.org/02t9fdk79', 'no_lang_code', 1, 'https://ror.org/02t9fdk79 MJM Litovel (Czechia)'),
(55935, 'https://ror.org/04xvyz885', 'no_lang_code', 1, 'https://ror.org/04xvyz885 Mavet (Czechia)'),
(55936, 'https://ror.org/0222yz688', 'cs', 1, 'https://ror.org/0222yz688 Nadace pro rozvoj architektury a stavitelství'),
(55937, 'https://ror.org/01g7zqg94', 'cs', 1, 'https://ror.org/01g7zqg94 Olešnice Dairy'),
(55938, 'https://ror.org/016xeth45', 'no_lang_code', 1, 'https://ror.org/016xeth45 Nadop-výroba Nábytku (Czechia)'),
(55939, 'https://ror.org/00w673w61', 'no_lang_code', 1, 'https://ror.org/00w673w61 MB Pharma (Czechia)'),
(55940, 'https://ror.org/02csezg26', 'no_lang_code', 1, 'https://ror.org/02csezg26 MND Drilling & Services (Czechia)'),
(55941, 'https://ror.org/03vb3t637', 'no_lang_code', 1, 'https://ror.org/03vb3t637 Mc Velox (Czechia)'),
(55942, 'https://ror.org/05d5vda41', 'no_lang_code', 1, 'https://ror.org/05d5vda41 Nafigate Corporation (Czechia)'),
(55943, 'https://ror.org/05fg5zm77', 'no_lang_code', 1, 'https://ror.org/05fg5zm77 Modeco (Czechia)'),
(55944, 'https://ror.org/04320pg53', 'no_lang_code', 1, 'https://ror.org/04320pg53 MEAS Prog (Czechia)'),
(55945, 'https://ror.org/01pm3bs44', 'no_lang_code', 1, 'https://ror.org/01pm3bs44 Mechanical Design (Czechia)'),
(55946, 'https://ror.org/00tcadq57', 'no_lang_code', 1, 'https://ror.org/00tcadq57 Plastové Stavební (Czechia)'),
(55947, 'https://ror.org/018hfge71', 'no_lang_code', 1, 'https://ror.org/018hfge71 Měď Povrly (Czechia)'),
(55948, 'https://ror.org/0268cyt91', 'no_lang_code', 1, 'https://ror.org/0268cyt91 Medetron (Czechia)'),
(55949, 'https://ror.org/02v9vwf84', 'no_lang_code', 1, 'https://ror.org/02v9vwf84 ModemTec (Czechia)'),
(55950, 'https://ror.org/04gf6tr14', 'no_lang_code', 1, 'https://ror.org/04gf6tr14 Fraus Publishing (Czechia) Nakladatelství Fraus'),
(55951, 'https://ror.org/036cdfc81', 'no_lang_code', 1, 'https://ror.org/036cdfc81 Modřany Power (Czechia)'),
(55952, 'https://ror.org/03er5fw87', 'no_lang_code', 1, 'https://ror.org/03er5fw87 Nakladatelství Triáda (Czechia)'),
(55953, 'https://ror.org/027pdc339', 'no_lang_code', 1, 'https://ror.org/027pdc339 NAM System (Czechia)'),
(55954, 'https://ror.org/04ztzvw60', 'no_lang_code', 1, 'https://ror.org/04ztzvw60 ModularTest (Czechia)'),
(55955, 'https://ror.org/01ndypd13', 'no_lang_code', 1, 'https://ror.org/01ndypd13 NanoTrade (Czechia)'),
(55956, 'https://ror.org/05n4ryh34', 'no_lang_code', 1, 'https://ror.org/05n4ryh34 Median (Czechia)'),
(55957, 'https://ror.org/02gx1h855', 'no_lang_code', 1, 'https://ror.org/02gx1h855 Mediap (Czechia)'),
(55958, 'https://ror.org/059wezj60', 'no_lang_code', 1, 'https://ror.org/059wezj60 Medicalc Software (Czechia)'),
(55959, 'https://ror.org/01z78yd74', 'cs', 1, 'https://ror.org/01z78yd74 Medico'),
(55960, 'https://ror.org/026bcj513', 'no_lang_code', 1, 'https://ror.org/026bcj513 MediCom (Czechia)'),
(55961, 'https://ror.org/043xc7z89', 'no_lang_code', 1, 'https://ror.org/043xc7z89 Molaris (Czechia)');
INSERT INTO `rors` VALUES
(55962, 'https://ror.org/0431dgb36', 'no_lang_code', 1, 'https://ror.org/0431dgb36 Medicprogress (Czechia)'),
(55963, 'https://ror.org/012eyjh05', 'no_lang_code', 1, 'https://ror.org/012eyjh05 Nanovia (Czechia)'),
(55964, 'https://ror.org/03f585086', 'no_lang_code', 1, 'https://ror.org/03f585086 Narex Sat (Czechia)'),
(55965, 'https://ror.org/04j3tfg80', 'no_lang_code', 1, 'https://ror.org/04j3tfg80 Medicton (Czechia)'),
(55966, 'https://ror.org/03cse4829', 'no_lang_code', 1, 'https://ror.org/03cse4829 Laboratoř Monitoring Praha (Czechia)'),
(55967, 'https://ror.org/01f827628', 'no_lang_code', 1, 'https://ror.org/01f827628 Mood International (Czechia)'),
(55968, 'https://ror.org/02bvkk348', 'cs', 1, 'https://ror.org/02bvkk348 Národní Akademie Regionálního Managementu'),
(55969, 'https://ror.org/055q9j131', 'no_lang_code', 1, 'https://ror.org/055q9j131 Moraprim (Czechia)'),
(55970, 'https://ror.org/043mq8146', 'no_lang_code', 1, 'https://ror.org/043mq8146 MediGEN'),
(55971, 'https://ror.org/05b4e2111', 'cs', 1, 'https://ror.org/05b4e2111 National Stud at Kladruby nad Labem Národní hřebčín Kladruby nad Labem'),
(55972, 'https://ror.org/05ej13b74', 'cs', 1, 'https://ror.org/05ej13b74 Národní Rada Osob se Zdravotním Postižením'),
(55973, 'https://ror.org/04n2a2465', 'no_lang_code', 1, 'https://ror.org/04n2a2465 Medihope (Czechia)'),
(55974, 'https://ror.org/04f2mnw52', 'no_lang_code', 1, 'https://ror.org/04f2mnw52 Moravia Cans (Czechia)'),
(55975, 'https://ror.org/04z4rna54', 'no_lang_code', 1, 'https://ror.org/04z4rna54 Interlacto (Czechia)'),
(55976, 'https://ror.org/05rjrds16', 'no_lang_code', 1, 'https://ror.org/05rjrds16 Moravoseed (Czechia)'),
(55977, 'https://ror.org/04gm8yz40', 'no_lang_code', 1, 'https://ror.org/04gm8yz40 MeDiLa'),
(55978, 'https://ror.org/03pt8bk73', 'cs', 1, 'https://ror.org/03pt8bk73 Národní Referenční Centrum'),
(55979, 'https://ror.org/00qdpx246', 'en', 1, 'https://ror.org/00qdpx246 National Network of Healthy Cities Národní Síť Zdravých Měst'),
(55980, 'https://ror.org/04pgpfa18', 'no_lang_code', 1, 'https://ror.org/04pgpfa18 Mediware (Czechia)'),
(55981, 'https://ror.org/056kzn313', 'cs', 1, 'https://ror.org/056kzn313 Národní Ústav Lidové Kultury'),
(55982, 'https://ror.org/05nynx616', 'en', 1, 'https://ror.org/05nynx616 EUC Group'),
(55983, 'https://ror.org/02gbye032', 'no_lang_code', 1, 'https://ror.org/02gbye032 Medkonsult (Czechia)'),
(55984, 'https://ror.org/037m48527', 'no_lang_code', 1, 'https://ror.org/037m48527 Native PR (Czechia)'),
(55985, 'https://ror.org/03ddp7810', 'no_lang_code', 1, 'https://ror.org/03ddp7810 Agrana (Czechia)'),
(55986, 'https://ror.org/02wys4090', 'no_lang_code', 1, 'https://ror.org/02wys4090 Natura (Czechia)'),
(55987, 'https://ror.org/00jpc6f46', 'no_lang_code', 1, 'https://ror.org/00jpc6f46 Megat (Czechia)'),
(55988, 'https://ror.org/042c1f005', 'no_lang_code', 1, 'https://ror.org/042c1f005 Moravian-Silesian Energy Cluster (Czechia)'),
(55989, 'https://ror.org/02bg32h47', 'no_lang_code', 1, 'https://ror.org/02bg32h47 Natural (Czechia)'),
(55990, 'https://ror.org/01y7r8c03', 'no_lang_code', 1, 'https://ror.org/01y7r8c03 NaturaServis (Czechia)'),
(55991, 'https://ror.org/03w8r3912', 'no_lang_code', 1, 'https://ror.org/03w8r3912 More (Czechia)'),
(55992, 'https://ror.org/05774jg90', 'no_lang_code', 1, 'https://ror.org/05774jg90 NAUPO (Czechia)'),
(55993, 'https://ror.org/00z95qt34', 'no_lang_code', 1, 'https://ror.org/00z95qt34 NAV Flight Services (Czechia)'),
(55994, 'https://ror.org/00mv65m72', 'no_lang_code', 1, 'https://ror.org/00mv65m72 Mosaic Event Management (United States)'),
(55995, 'https://ror.org/00wjmzv89', 'no_lang_code', 1, 'https://ror.org/00wjmzv89 Mepatek (Czechia)'),
(55996, 'https://ror.org/05mh9zj78', 'no_lang_code', 1, 'https://ror.org/05mh9zj78 Navertica (Czechia)'),
(55997, 'https://ror.org/04ygsjk43', 'no_lang_code', 1, 'https://ror.org/04ygsjk43 NELAN (Czechia)'),
(55998, 'https://ror.org/02djs4g52', 'no_lang_code', 1, 'https://ror.org/02djs4g52 Moser (Czechia)'),
(55999, 'https://ror.org/038evr161', 'no_lang_code', 1, 'https://ror.org/038evr161 Merci (Czechia)'),
(56000, 'https://ror.org/02vq7pf97', 'no_lang_code', 1, 'https://ror.org/02vq7pf97 SCIA (Czechia)'),
(56001, 'https://ror.org/0417bae26', 'no_lang_code', 1, 'https://ror.org/0417bae26 Merica (Czechia)'),
(56002, 'https://ror.org/0223gc275', 'cs', 1, 'https://ror.org/0223gc275 Nemocnice Atlas'),
(56003, 'https://ror.org/055vwz968', 'en', 1, 'https://ror.org/055vwz968 Blansko Hospital Nemocnice Blansko'),
(56004, 'https://ror.org/029081n45', 'no_lang_code', 1, 'https://ror.org/029081n45 FGR Factory (Czechia)'),
(56005, 'https://ror.org/044k3hm62', 'cs', 1, 'https://ror.org/044k3hm62 Nemocnice Břeclav'),
(56006, 'https://ror.org/03eh0pq56', 'no_lang_code', 1, 'https://ror.org/03eh0pq56 Merko'),
(56007, 'https://ror.org/054tjtv41', 'no_lang_code', 1, 'https://ror.org/054tjtv41 Motor Jikov (Czechia)'),
(56008, 'https://ror.org/01deknt13', 'no_lang_code', 1, 'https://ror.org/01deknt13 Motorpal (Czechia)'),
(56009, 'https://ror.org/016scq007', 'en', 1, 'https://ror.org/016scq007 Havlíčkův Brod Hospital Nemocnice Havlíčkův Brod'),
(56010, 'https://ror.org/01ghhpv55', 'no_lang_code', 1, 'https://ror.org/01ghhpv55 Motran Research (Czechia)'),
(56011, 'https://ror.org/0377qb339', 'no_lang_code', 1, 'https://ror.org/0377qb339 Merkurtoys (Czechia)'),
(56012, 'https://ror.org/017pyf298', 'cs', 1, 'https://ror.org/017pyf298 Nemocnice Jablonec nad Nisou'),
(56013, 'https://ror.org/02k944677', 'no_lang_code', 1, 'https://ror.org/02k944677 Mero Čr (Czechia)'),
(56014, 'https://ror.org/03qmjt802', 'no_lang_code', 1, 'https://ror.org/03qmjt802 MPD Plus (Czechia)'),
(56015, 'https://ror.org/00g6aeb47', 'cs', 1, 'https://ror.org/00g6aeb47 Oblastní nemocnice Kladno'),
(56016, 'https://ror.org/022gdx219', 'no_lang_code', 1, 'https://ror.org/022gdx219 MPower (Czechia)'),
(56017, 'https://ror.org/00j45v080', 'no_lang_code', 1, 'https://ror.org/00j45v080 Mráz Agro (Czechia)'),
(56018, 'https://ror.org/04w0pnx62', 'cs', 1, 'https://ror.org/04w0pnx62 Nemocnice Milosrdných bratří'),
(56019, 'https://ror.org/04yp9az05', 'no_lang_code', 1, 'https://ror.org/04yp9az05 MRB Sazovice (Czechia)'),
(56020, 'https://ror.org/04tj33k86', 'en', 1, 'https://ror.org/04tj33k86 Church of the Merciful Sisters of Sts. Karel Boromejský'),
(56021, 'https://ror.org/04fwbdj26', 'cs', 1, 'https://ror.org/04fwbdj26 Městská Nemocnice Čáslav'),
(56022, 'https://ror.org/05hy29v76', 'cs', 1, 'https://ror.org/05hy29v76 Nemocnice Na Pleši'),
(56023, 'https://ror.org/05gvxpc78', 'no_lang_code', 1, 'https://ror.org/05gvxpc78 MSA (Czechia)'),
(56024, 'https://ror.org/0558ky526', 'cs', 1, 'https://ror.org/0558ky526 Městská Nemocnice Ostrava'),
(56025, 'https://ror.org/03hh11c46', 'no_lang_code', 1, 'https://ror.org/03hh11c46 MSV Metal Studénka (Czechia)'),
(56026, 'https://ror.org/04gc4rt71', 'cs', 1, 'https://ror.org/04gc4rt71 Nemocnice Prachatice'),
(56027, 'https://ror.org/036x9s723', 'no_lang_code', 1, 'https://ror.org/036x9s723 MTMP (Czechia)'),
(56028, 'https://ror.org/03n2kr187', 'cs', 1, 'https://ror.org/03n2kr187 Městské lesy Chomutov'),
(56029, 'https://ror.org/01fgq2q09', 'cs', 1, 'https://ror.org/01fgq2q09 Městské lesy Doksy'),
(56030, 'https://ror.org/022040e63', 'no_lang_code', 1, 'https://ror.org/022040e63 Murus (Czechia)'),
(56031, 'https://ror.org/02p4zk941', 'cs', 1, 'https://ror.org/02p4zk941 Nemocnice Sokolov'),
(56032, 'https://ror.org/00ar31v66', 'cs', 1, 'https://ror.org/00ar31v66 Městské lesy Hradec Králové'),
(56033, 'https://ror.org/05hwjr867', 'en', 1, 'https://ror.org/05hwjr867 Municipal Museum in Celakovice Městské muzeum v Čelákovicích'),
(56034, 'https://ror.org/05bqykp48', 'cs', 1, 'https://ror.org/05bqykp48 Nemocnice Třebíč'),
(56035, 'https://ror.org/03ne0ps53', 'cs', 1, 'https://ror.org/03ne0ps53 Nemocnice u Sv. Jiří'),
(56036, 'https://ror.org/02pw80027', 'cs', 1, 'https://ror.org/02pw80027 Nemocnice Vyškov'),
(56037, 'https://ror.org/046cz2w20', 'no_lang_code', 1, 'https://ror.org/046cz2w20 Nicolet (Czechia)'),
(56038, 'https://ror.org/05cf3m547', 'cs', 1, 'https://ror.org/05cf3m547 Nemocnice Znojmo'),
(56039, 'https://ror.org/00xv3af28', 'no_lang_code', 1, 'https://ror.org/00xv3af28 Nakladatelství Lidové Noviny (Czechia)'),
(56040, 'https://ror.org/01t9ygb95', 'no_lang_code', 1, 'https://ror.org/01t9ygb95 NMS Market Research (Czechia)'),
(56041, 'https://ror.org/02tg1a160', 'no_lang_code', 1, 'https://ror.org/02tg1a160 Ness Technologies'),
(56042, 'https://ror.org/01c8asw96', 'no_lang_code', 1, 'https://ror.org/01c8asw96 Nodus (Norway)'),
(56043, 'https://ror.org/051hq3021', 'no_lang_code', 1, 'https://ror.org/051hq3021 CTS Corporation (Czechia)'),
(56044, 'https://ror.org/02zsesr42', 'no_lang_code', 1, 'https://ror.org/02zsesr42 Net-system'),
(56045, 'https://ror.org/01vf7th45', 'no_lang_code', 1, 'https://ror.org/01vf7th45 Nortech (Czechia)'),
(56046, 'https://ror.org/04fwb5b39', 'no_lang_code', 1, 'https://ror.org/04fwb5b39 Net4gas (Czechia)'),
(56047, 'https://ror.org/00609hp35', 'no_lang_code', 1, 'https://ror.org/00609hp35 Netcope Technologies (Czechia)'),
(56048, 'https://ror.org/0447ggh32', 'no_lang_code', 1, 'https://ror.org/0447ggh32 Nethost (Czechia)'),
(56049, 'https://ror.org/055hmgs82', 'no_lang_code', 1, 'https://ror.org/055hmgs82 Network Group (Czechia)'),
(56050, 'https://ror.org/028yqyj67', 'no_lang_code', 1, 'https://ror.org/028yqyj67 New Gen (Czechia)'),
(56051, 'https://ror.org/03d795g20', 'no_lang_code', 1, 'https://ror.org/03d795g20 Newton Media (Czechia)'),
(56052, 'https://ror.org/011cj7r81', 'no_lang_code', 1, 'https://ror.org/011cj7r81 Ostravské Městské Lesy a Zeleň (Czechia)'),
(56053, 'https://ror.org/000kv2m87', 'no_lang_code', 1, 'https://ror.org/000kv2m87 Ostroj (Czechia)'),
(56054, 'https://ror.org/0059c0s27', 'no_lang_code', 1, 'https://ror.org/0059c0s27 Newton Technologies (Czechia)'),
(56055, 'https://ror.org/0430gjw29', 'no_lang_code', 1, 'https://ror.org/0430gjw29 Valbek (Czechia)'),
(56056, 'https://ror.org/04r05zv91', 'no_lang_code', 1, 'https://ror.org/04r05zv91 Osvětlení Černoch (Czechia)'),
(56057, 'https://ror.org/025k4tn70', 'no_lang_code', 1, 'https://ror.org/025k4tn70 Novatisk (Czechia)'),
(56058, 'https://ror.org/0349gkc55', 'no_lang_code', 1, 'https://ror.org/0349gkc55 Obchodní Tiskárny Kolín'),
(56059, 'https://ror.org/04v75js20', 'no_lang_code', 1, 'https://ror.org/04v75js20 Noventis (Czechia)'),
(56060, 'https://ror.org/038ntmm55', 'no_lang_code', 1, 'https://ror.org/038ntmm55 Nexum Trilog (Czechia)'),
(56061, 'https://ror.org/02pgy4q18', 'no_lang_code', 1, 'https://ror.org/02pgy4q18 Noza (Czechia)'),
(56062, 'https://ror.org/041wbg141', 'no_lang_code', 1, 'https://ror.org/041wbg141 Ovus (Czechia)'),
(56063, 'https://ror.org/04cs4hx53', 'no_lang_code', 1, 'https://ror.org/04cs4hx53 NTD Group (Czechia)'),
(56064, 'https://ror.org/0209axq03', 'no_lang_code', 1, 'https://ror.org/0209axq03 OZM Research (Czechia)'),
(56065, 'https://ror.org/01xx5km06', 'no_lang_code', 1, 'https://ror.org/01xx5km06 NutriVet (Czechia)'),
(56066, 'https://ror.org/010xshk05', 'no_lang_code', 1, 'https://ror.org/010xshk05 Polabské Mlékárny (Czechia)'),
(56067, 'https://ror.org/01f3d0y31', 'no_lang_code', 1, 'https://ror.org/01f3d0y31 Nuvia (Czechia)'),
(56068, 'https://ror.org/002jh6a02', 'no_lang_code', 1, 'https://ror.org/002jh6a02 P and L (Czechia)'),
(56069, 'https://ror.org/02kxz7t24', 'no_lang_code', 1, 'https://ror.org/02kxz7t24 NWT (Czechia)'),
(56070, 'https://ror.org/055h4jb02', 'no_lang_code', 1, 'https://ror.org/055h4jb02 P and S (Czechia)'),
(56071, 'https://ror.org/01pfc0902', 'no_lang_code', 1, 'https://ror.org/01pfc0902 Nyklíček (Czechia)'),
(56072, 'https://ror.org/01nkde212', 'no_lang_code', 1, 'https://ror.org/01nkde212 Pardam (Czechia)'),
(56073, 'https://ror.org/02mnc6m50', 'cs', 1, 'https://ror.org/02mnc6m50 Polabské Muzeum'),
(56074, 'https://ror.org/05pq72r61', 'cs', 1, 'https://ror.org/05pq72r61 Poliklinika Budějovická'),
(56075, 'https://ror.org/00v4k2341', 'no_lang_code', 1, 'https://ror.org/00v4k2341 O.K. Servis Plus (Czechia)'),
(56076, 'https://ror.org/02d03yg51', 'no_lang_code', 1, 'https://ror.org/02d03yg51 Poll (Czechia)'),
(56077, 'https://ror.org/00q0ej829', 'no_lang_code', 1, 'https://ror.org/00q0ej829 PPF (Czechia)'),
(56078, 'https://ror.org/03s703b14', 'no_lang_code', 1, 'https://ror.org/03s703b14 Polpur (Czechia)'),
(56079, 'https://ror.org/01rq3me18', 'no_lang_code', 1, 'https://ror.org/01rq3me18 Polycase (Czechia)'),
(56080, 'https://ror.org/010e8xz82', 'no_lang_code', 1, 'https://ror.org/010e8xz82 Polycom (Czechia)'),
(56081, 'https://ror.org/03x1kny90', 'no_lang_code', 1, 'https://ror.org/03x1kny90 Palivový Kombinát Ústí (Czechia)'),
(56082, 'https://ror.org/022psyh04', 'no_lang_code', 1, 'https://ror.org/022psyh04 Polyos (Czechia)'),
(56083, 'https://ror.org/05h3e9g05', 'cs', 1, 'https://ror.org/05h3e9g05 Obchodní Akademie'),
(56084, 'https://ror.org/05akn9t25', 'no_lang_code', 1, 'https://ror.org/05akn9t25 Polypress (Czechia)'),
(56085, 'https://ror.org/0235qjz17', 'no_lang_code', 1, 'https://ror.org/0235qjz17 Panasonic (Czechia)'),
(56086, 'https://ror.org/01fjwg942', 'no_lang_code', 1, 'https://ror.org/01fjwg942 Ponast (Czechia)'),
(56087, 'https://ror.org/04cpbr209', 'en', 1, 'https://ror.org/04cpbr209 Regional Art Gallery Liberec'),
(56088, 'https://ror.org/03npdgz04', 'no_lang_code', 1, 'https://ror.org/03npdgz04 Papouch (Czechia)'),
(56089, 'https://ror.org/037fsex72', 'cs', 1, 'https://ror.org/037fsex72 Oblastní galerie Vysočiny v Jihlavě Vysočina Regional Gallery in Jihlava'),
(56090, 'https://ror.org/055g4ha47', 'cs', 1, 'https://ror.org/055g4ha47 Oblastní muzeum v Chomutově'),
(56091, 'https://ror.org/04z0vpw75', 'no_lang_code', 1, 'https://ror.org/04z0vpw75 Paramo (Czechia)'),
(56092, 'https://ror.org/00ef2rd26', 'cs', 1, 'https://ror.org/00ef2rd26 Oblastní muzeum v Litoměřicích'),
(56093, 'https://ror.org/049z4x724', 'no_lang_code', 1, 'https://ror.org/049z4x724 Pooslaví Nová Ves (Slovakia)'),
(56094, 'https://ror.org/02d7qtk86', 'no_lang_code', 1, 'https://ror.org/02d7qtk86 Parkservis (Czechia)'),
(56095, 'https://ror.org/05ccjec47', 'cs', 1, 'https://ror.org/05ccjec47 Oblastní nemocnice Kolín'),
(56096, 'https://ror.org/05s5ecm57', 'no_lang_code', 1, 'https://ror.org/05s5ecm57 Parma Technik (Czechia)'),
(56097, 'https://ror.org/01t6xt429', 'no_lang_code', 1, 'https://ror.org/01t6xt429 Porfix (Czechia)'),
(56098, 'https://ror.org/02dhhnz05', 'no_lang_code', 1, 'https://ror.org/02dhhnz05 Pars Komponenty (Czechia)'),
(56099, 'https://ror.org/028rwje97', 'cs', 1, 'https://ror.org/028rwje97 Ochrana fauny ČR'),
(56100, 'https://ror.org/04mtx5741', 'no_lang_code', 1, 'https://ror.org/04mtx5741 Pars Nova (Czechia)'),
(56101, 'https://ror.org/03k2mft71', 'no_lang_code', 1, 'https://ror.org/03k2mft71 Porsenna (Czechia)'),
(56102, 'https://ror.org/01d4cz113', 'no_lang_code', 1, 'https://ror.org/01d4cz113 Ochrana Podzemních Vod (Czechia)'),
(56103, 'https://ror.org/04vhskt34', 'no_lang_code', 1, 'https://ror.org/04vhskt34 Patria Kobylí (Czechia)'),
(56104, 'https://ror.org/0016gwv87', 'no_lang_code', 1, 'https://ror.org/0016gwv87 PositronLabs (Czechia)'),
(56105, 'https://ror.org/04ec59978', 'en', 1, 'https://ror.org/04ec59978 Ocular Research Symposia Foundation'),
(56106, 'https://ror.org/01dykse44', 'no_lang_code', 1, 'https://ror.org/01dykse44 Patriot (Czechia)'),
(56107, 'https://ror.org/03ppytd12', 'no_lang_code', 1, 'https://ror.org/03ppytd12 Povodí Labe (Czechia)'),
(56108, 'https://ror.org/00njbc474', 'cs', 1, 'https://ror.org/00njbc474 Odborový Svaz Pracovníků Hornictví, Geologie a Naftového Průmyslu'),
(56109, 'https://ror.org/00d7dzb74', 'no_lang_code', 1, 'https://ror.org/00d7dzb74 PavEx (Czechia)'),
(56110, 'https://ror.org/04f5yeh75', 'no_lang_code', 1, 'https://ror.org/04f5yeh75 Rheinmetall (Czechia)'),
(56111, 'https://ror.org/01nf9fw76', 'no_lang_code', 1, 'https://ror.org/01nf9fw76 AFRY (Czechia)'),
(56112, 'https://ror.org/05fc31f73', 'no_lang_code', 1, 'https://ror.org/05fc31f73 PPG Deco Czech (Czechia)'),
(56113, 'https://ror.org/03ff99w93', 'no_lang_code', 1, 'https://ror.org/03ff99w93 OGResearch (Czechia)'),
(56114, 'https://ror.org/03scrbh72', 'no_lang_code', 1, 'https://ror.org/03scrbh72 Pavus (Czechia)'),
(56115, 'https://ror.org/00z8jse46', 'cs', 1, 'https://ror.org/00z8jse46 Prachatice Museum'),
(56116, 'https://ror.org/00pehtc22', 'no_lang_code', 1, 'https://ror.org/00pehtc22 Oikoymenh (Czechia)'),
(56117, 'https://ror.org/01c3yj543', 'no_lang_code', 1, 'https://ror.org/01c3yj543 Peter Brett Associates (Czechia)'),
(56118, 'https://ror.org/01zgn9c85', 'no_lang_code', 1, 'https://ror.org/01zgn9c85 Pragis (Czechia)'),
(56119, 'https://ror.org/02gsfpt44', 'no_lang_code', 1, 'https://ror.org/02gsfpt44 Pragochema (Czechia)'),
(56120, 'https://ror.org/046kv4j11', 'no_lang_code', 1, 'https://ror.org/046kv4j11 Pragoimex (Czechia)'),
(56121, 'https://ror.org/019bmyc06', 'no_lang_code', 1, 'https://ror.org/019bmyc06 PBS Power Equipment (Czechia)'),
(56122, 'https://ror.org/03aps1n19', 'no_lang_code', 1, 'https://ror.org/03aps1n19 Pragolab (Czechia)'),
(56123, 'https://ror.org/02s9m7114', 'no_lang_code', 1, 'https://ror.org/02s9m7114 PBT Rožnov (Czechia)'),
(56124, 'https://ror.org/00qma8b89', 'no_lang_code', 1, 'https://ror.org/00qma8b89 OKD (Czechia) Ostravsko-karvinské doly'),
(56125, 'https://ror.org/05e3xsx31', 'no_lang_code', 1, 'https://ror.org/05e3xsx31 Pragolet (Czechia)'),
(56126, 'https://ror.org/03r3f8722', 'no_lang_code', 1, 'https://ror.org/03r3f8722 Pragometal (Czechia)'),
(56127, 'https://ror.org/003ghjh61', 'no_lang_code', 1, 'https://ror.org/003ghjh61 Pragoprojekt (Czechia)'),
(56128, 'https://ror.org/02vvdqe24', 'no_lang_code', 1, 'https://ror.org/02vvdqe24 OKF (Czechia)'),
(56129, 'https://ror.org/02krm5y67', 'no_lang_code', 1, 'https://ror.org/02krm5y67 Prague Casting Services (Czechia)'),
(56130, 'https://ror.org/02tqwr834', 'no_lang_code', 1, 'https://ror.org/02tqwr834 Pegas Gonda (Czechia)'),
(56131, 'https://ror.org/033gq4890', 'no_lang_code', 1, 'https://ror.org/033gq4890 Ökoplant International (Czechia)'),
(56132, 'https://ror.org/05qv1wg20', 'en', 1, 'https://ror.org/05qv1wg20 Prague Security Studies Institute'),
(56133, 'https://ror.org/00dkwfy62', 'cs', 1, 'https://ror.org/00dkwfy62 Okresní Hospodářská Komora'),
(56134, 'https://ror.org/02cyn6b25', 'cs', 1, 'https://ror.org/02cyn6b25 Pelčák a Partner Architekti'),
(56135, 'https://ror.org/0587n1k08', 'no_lang_code', 1, 'https://ror.org/0587n1k08 Prakab Prazska Kabelovna (Czechia)'),
(56136, 'https://ror.org/00269pf69', 'no_lang_code', 1, 'https://ror.org/00269pf69 Pramacom-Ht (Czechia)'),
(56137, 'https://ror.org/057qqaz54', 'no_lang_code', 1, 'https://ror.org/057qqaz54 Pražské služby (Czechia)'),
(56138, 'https://ror.org/00hg23335', 'no_lang_code', 1, 'https://ror.org/00hg23335 Pražské Vodovody a Kanalizace'),
(56139, 'https://ror.org/0406evy55', 'no_lang_code', 1, 'https://ror.org/0406evy55 Perník (Czechia)'),
(56140, 'https://ror.org/028qhp125', 'no_lang_code', 1, 'https://ror.org/028qhp125 Preciosa Beauty (Czechia)'),
(56141, 'https://ror.org/0432ndn22', 'cs', 1, 'https://ror.org/0432ndn22 Jindřichův Hradec Hospital Nemocnice Jindřichův Hradec'),
(56142, 'https://ror.org/03y2whj58', 'no_lang_code', 1, 'https://ror.org/03y2whj58 PREdistribuce (Czechia)'),
(56143, 'https://ror.org/0514py963', 'no_lang_code', 1, 'https://ror.org/0514py963 OlChemIm (Czechia)'),
(56144, 'https://ror.org/03yqdkz93', 'no_lang_code', 1, 'https://ror.org/03yqdkz93 Preditest (Czechia)'),
(56145, 'https://ror.org/03yn3d916', 'no_lang_code', 1, 'https://ror.org/03yn3d916 Pexidr (Czechia)'),
(56146, 'https://ror.org/051tvr365', 'no_lang_code', 1, 'https://ror.org/051tvr365 Pharmaceutical Biotechnology (Czechia)'),
(56147, 'https://ror.org/01vqza407', 'no_lang_code', 1, 'https://ror.org/01vqza407 Phoenix Air (Czechia)'),
(56148, 'https://ror.org/03a2yyf19', 'no_lang_code', 1, 'https://ror.org/03a2yyf19 Prefa Praha (Czechia)'),
(56149, 'https://ror.org/0229km412', 'no_lang_code', 1, 'https://ror.org/0229km412 Photon Energy (Czechia)'),
(56150, 'https://ror.org/029kcrm61', 'no_lang_code', 1, 'https://ror.org/029kcrm61 Olma (Czechia)'),
(56151, 'https://ror.org/02yn1mx87', 'no_lang_code', 1, 'https://ror.org/02yn1mx87 Prikner - Tepelné zpracování kovů (Czechia)'),
(56152, 'https://ror.org/022sj0h09', 'no_lang_code', 1, 'https://ror.org/022sj0h09 Primis (Czechia)'),
(56153, 'https://ror.org/01q216d88', 'no_lang_code', 1, 'https://ror.org/01q216d88 Phonexia (Czechia)'),
(56154, 'https://ror.org/0044gqz05', 'no_lang_code', 1, 'https://ror.org/0044gqz05 Perrigo (Czechia)'),
(56155, 'https://ror.org/05353z471', 'no_lang_code', 1, 'https://ror.org/05353z471 Pro-Aqua (Czechia)'),
(56156, 'https://ror.org/04h84s498', 'no_lang_code', 1, 'https://ror.org/04h84s498 Pilana (Czechia)'),
(56157, 'https://ror.org/022z4zx74', 'en', 1, 'https://ror.org/022z4zx74 PRO-BIO Association of Organic Farmers'),
(56158, 'https://ror.org/01gwjjy86', 'no_lang_code', 1, 'https://ror.org/01gwjjy86 PRO-BIO (Czechia)'),
(56159, 'https://ror.org/03nnhtv03', 'no_lang_code', 1, 'https://ror.org/03nnhtv03 PRO.MED.CS Praha (Czechia)'),
(56160, 'https://ror.org/022a5hk55', 'no_lang_code', 1, 'https://ror.org/022a5hk55 Pinkerton (Czechia)'),
(56161, 'https://ror.org/04jd3jd90', 'no_lang_code', 1, 'https://ror.org/04jd3jd90 Procter & Gamble - Rakona (Czechia)'),
(56162, 'https://ror.org/01evw4s98', 'no_lang_code', 1, 'https://ror.org/01evw4s98 Pipelife (Czechia)'),
(56163, 'https://ror.org/02a102m23', 'no_lang_code', 1, 'https://ror.org/02a102m23 OptimSys (Czechia)'),
(56164, 'https://ror.org/01x0syc85', 'no_lang_code', 1, 'https://ror.org/01x0syc85 Prodeco (Czechia)'),
(56165, 'https://ror.org/04wq40h64', 'no_lang_code', 1, 'https://ror.org/04wq40h64 Orange Controls (Czechia)'),
(56166, 'https://ror.org/05aaf8p37', 'no_lang_code', 1, 'https://ror.org/05aaf8p37 Pivo Praha (Czechia)'),
(56167, 'https://ror.org/0194wdc61', 'cs', 1, 'https://ror.org/0194wdc61 Profesní Komora Sociálních Pracovníků'),
(56168, 'https://ror.org/01tcbbe23', 'no_lang_code', 1, 'https://ror.org/01tcbbe23 Organa (Czechia)'),
(56169, 'https://ror.org/02qvg6n57', 'no_lang_code', 1, 'https://ror.org/02qvg6n57 PROFiber Networking (Czechia)'),
(56170, 'https://ror.org/04yxwsj75', 'no_lang_code', 1, 'https://ror.org/04yxwsj75 Proficomms (Czechia)'),
(56171, 'https://ror.org/02vp0nc21', 'no_lang_code', 1, 'https://ror.org/02vp0nc21 Pivovar Kácov (Czechia)'),
(56172, 'https://ror.org/023y6dh84', 'cs', 1, 'https://ror.org/023y6dh84 Akademie Jana Amose Komenského'),
(56173, 'https://ror.org/0450y4k66', 'cs', 1, 'https://ror.org/0450y4k66 Orlické Muzeum Choceň'),
(56174, 'https://ror.org/049vb3221', 'no_lang_code', 1, 'https://ror.org/049vb3221 Profinit (Czechia)'),
(56175, 'https://ror.org/01jak0h04', 'no_lang_code', 1, 'https://ror.org/01jak0h04 Orlik (Czechia)'),
(56176, 'https://ror.org/00bmwn733', 'no_lang_code', 1, 'https://ror.org/00bmwn733 Progeo (Czechia)'),
(56177, 'https://ror.org/01c8rdt53', 'no_lang_code', 1, 'https://ror.org/01c8rdt53 PKS holding (Czechia)'),
(56178, 'https://ror.org/006ag2j20', 'no_lang_code', 1, 'https://ror.org/006ag2j20 Progres Ekotech (Czechia)'),
(56179, 'https://ror.org/01k07rn44', 'no_lang_code', 1, 'https://ror.org/01k07rn44 Plasmametal (Czechia)'),
(56180, 'https://ror.org/00c5qfd88', 'no_lang_code', 1, 'https://ror.org/00c5qfd88 Ortotika (Czechia)'),
(56181, 'https://ror.org/015g04494', 'no_lang_code', 1, 'https://ror.org/015g04494 Projekt HTL (Czechia)'),
(56182, 'https://ror.org/036bzjr85', 'cs', 1, 'https://ror.org/036bzjr85 Projekt Odyssea'),
(56183, 'https://ror.org/024qfyn78', 'no_lang_code', 1, 'https://ror.org/024qfyn78 ACL Anodizing (Czechia)'),
(56184, 'https://ror.org/030q3v026', 'no_lang_code', 1, 'https://ror.org/030q3v026 Project Design and Development Agency (Czechia)'),
(56185, 'https://ror.org/03wex2p68', 'no_lang_code', 1, 'https://ror.org/03wex2p68 Plastmetal Engineering (Czechia)'),
(56186, 'https://ror.org/00dp6v107', 'no_lang_code', 1, 'https://ror.org/00dp6v107 Projekty Vodam (Czechia)'),
(56187, 'https://ror.org/05bfra354', 'no_lang_code', 1, 'https://ror.org/05bfra354 PTV (Czechia)'),
(56188, 'https://ror.org/02pw0we48', 'no_lang_code', 1, 'https://ror.org/02pw0we48 Pure Bohemia (Czechia)'),
(56189, 'https://ror.org/02rw4zb55', 'no_lang_code', 1, 'https://ror.org/02rw4zb55 Puruplast (Czechia)'),
(56190, 'https://ror.org/023rd7223', 'no_lang_code', 1, 'https://ror.org/023rd7223 Plosab (Czechia)'),
(56191, 'https://ror.org/00cjhk544', 'no_lang_code', 1, 'https://ror.org/00cjhk544 EP Energy (Czechia)'),
(56192, 'https://ror.org/009gady73', 'no_lang_code', 1, 'https://ror.org/009gady73 Prokop Rail (Czechia)'),
(56193, 'https://ror.org/03g6vn746', 'no_lang_code', 1, 'https://ror.org/03g6vn746 Proma Reha (Czechia)'),
(56194, 'https://ror.org/01vacyq18', 'no_lang_code', 1, 'https://ror.org/01vacyq18 PZP Komplet (Czechia)'),
(56195, 'https://ror.org/03xqzrz13', 'no_lang_code', 1, 'https://ror.org/03xqzrz13 QIP (Czechia)'),
(56196, 'https://ror.org/0593djr05', 'no_lang_code', 1, 'https://ror.org/0593djr05 Quality Quantity Time (Czechia)'),
(56197, 'https://ror.org/05a6fy491', 'no_lang_code', 1, 'https://ror.org/05a6fy491 Prometheus (Czechia)'),
(56198, 'https://ror.org/05y33cq80', 'no_lang_code', 1, 'https://ror.org/05y33cq80 FCC (Czechia)'),
(56199, 'https://ror.org/01zh1d994', 'no_lang_code', 1, 'https://ror.org/01zh1d994 Plzeňské Městské Dopravní Podniky (Czechia)'),
(56200, 'https://ror.org/00effcn18', 'no_lang_code', 1, 'https://ror.org/00effcn18 Qualiform (Czechia)'),
(56201, 'https://ror.org/02h3yx664', 'no_lang_code', 1, 'https://ror.org/02h3yx664 Protean (Czechia)'),
(56202, 'https://ror.org/02vtg9w10', 'no_lang_code', 1, 'https://ror.org/02vtg9w10 Plzensky Prazdroj (Czechia)'),
(56203, 'https://ror.org/04g34ca09', 'no_lang_code', 1, 'https://ror.org/04g34ca09 Quinta Analytica (Czechia)'),
(56204, 'https://ror.org/03neag539', 'no_lang_code', 1, 'https://ror.org/03neag539 ProTyS (Czechia)'),
(56205, 'https://ror.org/0435cyx83', 'no_lang_code', 1, 'https://ror.org/0435cyx83 R-Princip (Czechia)'),
(56206, 'https://ror.org/04nr3tm35', 'no_lang_code', 1, 'https://ror.org/04nr3tm35 Provisco CS (Czechia)'),
(56207, 'https://ror.org/04znkfj06', 'cs', 1, 'https://ror.org/04znkfj06 Podještědské Museum'),
(56208, 'https://ror.org/02rbzf697', 'no_lang_code', 1, 'https://ror.org/02rbzf697 Huawei Technologies (France)'),
(56209, 'https://ror.org/04r287r86', 'no_lang_code', 1, 'https://ror.org/04r287r86 Provod (Czechia)'),
(56210, 'https://ror.org/05yjxqy63', 'no_lang_code', 1, 'https://ror.org/05yjxqy63 Podravka (Czechia)'),
(56211, 'https://ror.org/03m41z132', 'no_lang_code', 1, 'https://ror.org/03m41z132 Pohorelec (Czechia)'),
(56212, 'https://ror.org/02rp0e007', 'no_lang_code', 1, 'https://ror.org/02rp0e007 Air Navigation Services (Czechia) Řízení letového provozu České republiky'),
(56213, 'https://ror.org/02n2bgz18', 'en', 1, 'https://ror.org/02n2bgz18 Institute of Plasma Physics Istituto di Fisica del Plasma "Piero Caldirola"'),
(56214, 'https://ror.org/0280ypy82', 'no_lang_code', 1, 'https://ror.org/0280ypy82 Prvni Brnenska Strojirna (Czechia)'),
(56215, 'https://ror.org/03aagvh91', 'no_lang_code', 1, 'https://ror.org/03aagvh91 První regionální rozvojová (Czechia)'),
(56216, 'https://ror.org/04yxgd218', 'no_lang_code', 1, 'https://ror.org/04yxgd218 RobotSystem (Czechia)'),
(56217, 'https://ror.org/04p055k28', 'no_lang_code', 1, 'https://ror.org/04p055k28 První Signální (Czechia)'),
(56218, 'https://ror.org/0369h0f23', 'no_lang_code', 1, 'https://ror.org/0369h0f23 RDS-CZ (Czechia)'),
(56219, 'https://ror.org/03ynzzx94', 'en', 1, 'https://ror.org/03ynzzx94 Indo Korea Science and Technology'),
(56220, 'https://ror.org/03b1jj954', 'no_lang_code', 1, 'https://ror.org/03b1jj954 PS Profi (Czechia)'),
(56221, 'https://ror.org/01gvgct71', 'no_lang_code', 1, 'https://ror.org/01gvgct71 RSC Spol (Czechia)'),
(56222, 'https://ror.org/00xj6v282', 'no_lang_code', 1, 'https://ror.org/00xj6v282 Rabbit Chotýšany (Czechia)'),
(56223, 'https://ror.org/05jpbj586', 'no_lang_code', 1, 'https://ror.org/05jpbj586 Rabbit (Czechia)'),
(56224, 'https://ror.org/023sc6050', 'no_lang_code', 1, 'https://ror.org/023sc6050 Roko (Czechia)'),
(56225, 'https://ror.org/028tpvk07', 'no_lang_code', 1, 'https://ror.org/028tpvk07 PSP Pohony (Czechia)'),
(56226, 'https://ror.org/0328zx757', 'no_lang_code', 1, 'https://ror.org/0328zx757 Rolnické Družstvo Bezno (Czechia)'),
(56227, 'https://ror.org/02yrkqr67', 'cs', 1, 'https://ror.org/02yrkqr67 Psychiatrická Nemocnice Bohnice'),
(56228, 'https://ror.org/0550sx673', 'no_lang_code', 1, 'https://ror.org/0550sx673 Racom (Czechia)'),
(56229, 'https://ror.org/03adg5y95', 'no_lang_code', 1, 'https://ror.org/03adg5y95 Romill (Czechia)'),
(56230, 'https://ror.org/014j4nz90', 'no_lang_code', 1, 'https://ror.org/014j4nz90 Rosomac (Czechia)'),
(56231, 'https://ror.org/04nd4kk51', 'en', 1, 'https://ror.org/04nd4kk51 Ceramic Synthesis and Functionalization Laboratory Laboratoire de Synthèse et Fonctionnalisation des Céramiques'),
(56232, 'https://ror.org/04tv6wz75', 'en', 1, 'https://ror.org/04tv6wz75 Czech Council on Foreign Relations Rada pro mezinárodní vztahy'),
(56233, 'https://ror.org/05w2mbr20', 'no_lang_code', 1, 'https://ror.org/05w2mbr20 Sellier & Bellot (Czechia)'),
(56234, 'https://ror.org/03rm6vq41', 'no_lang_code', 1, 'https://ror.org/03rm6vq41 Rotana (Czechia)'),
(56235, 'https://ror.org/00srskr42', 'no_lang_code', 1, 'https://ror.org/00srskr42 Rotas Strojírny (Czechia)'),
(56236, 'https://ror.org/04nknev17', 'no_lang_code', 1, 'https://ror.org/04nknev17 Semix Pluso (Czechia)'),
(56237, 'https://ror.org/006v2ze46', 'no_lang_code', 1, 'https://ror.org/006v2ze46 Prokop (Czechia)'),
(56238, 'https://ror.org/047rda748', 'no_lang_code', 1, 'https://ror.org/047rda748 Radanal (Czechia)'),
(56239, 'https://ror.org/03g1x1714', 'no_lang_code', 1, 'https://ror.org/03g1x1714 Materials Design (France)'),
(56240, 'https://ror.org/05k438q37', 'no_lang_code', 1, 'https://ror.org/05k438q37 Semma Therapeutics (United States)'),
(56241, 'https://ror.org/02ayg8518', 'no_lang_code', 1, 'https://ror.org/02ayg8518 Radioterapie Holešov (Czechia)'),
(56242, 'https://ror.org/02wkzst19', 'no_lang_code', 1, 'https://ror.org/02wkzst19 RPIC ViP (Czechia)'),
(56243, 'https://ror.org/01vgs6512', 'no_lang_code', 1, 'https://ror.org/01vgs6512 Semo (Czechia)'),
(56244, 'https://ror.org/04trkh314', 'no_lang_code', 1, 'https://ror.org/04trkh314 Rigetti Computing (United States)'),
(56245, 'https://ror.org/04244e638', 'no_lang_code', 1, 'https://ror.org/04244e638 RPS Ostrava (Czechia)'),
(56246, 'https://ror.org/01v2c2791', 'en', 1, 'https://ror.org/01v2c2791 Singapore Institute of Technology'),
(56247, 'https://ror.org/04ezttg26', 'no_lang_code', 1, 'https://ror.org/04ezttg26 Radom (Czechia)'),
(56248, 'https://ror.org/055bk3y86', 'no_lang_code', 1, 'https://ror.org/055bk3y86 Skill (Czechia)'),
(56249, 'https://ror.org/007e93p80', 'no_lang_code', 1, 'https://ror.org/007e93p80 Radon vos (Czechia)'),
(56250, 'https://ror.org/03cxpjh03', 'no_lang_code', 1, 'https://ror.org/03cxpjh03 Rumi Scientific (United States)'),
(56251, 'https://ror.org/04xhmxk63', 'no_lang_code', 1, 'https://ror.org/04xhmxk63 Ruml (Czechia)'),
(56252, 'https://ror.org/00w8qrj53', 'no_lang_code', 1, 'https://ror.org/00w8qrj53 Senagro (Czechia)'),
(56253, 'https://ror.org/02bcjkv07', 'no_lang_code', 1, 'https://ror.org/02bcjkv07 Rumpold (Czechia)'),
(56254, 'https://ror.org/04eet1p35', 'no_lang_code', 1, 'https://ror.org/04eet1p35 Rajmont (Czechia)'),
(56255, 'https://ror.org/026sz7x33', 'no_lang_code', 1, 'https://ror.org/026sz7x33 Innogy (Czechia)'),
(56256, 'https://ror.org/03p343x23', 'no_lang_code', 1, 'https://ror.org/03p343x23 Ramet (Czechia)'),
(56257, 'https://ror.org/058ke7e65', 'no_lang_code', 1, 'https://ror.org/058ke7e65 Rybářství Hluboká (Czechia)'),
(56258, 'https://ror.org/02hzadm05', 'cs', 1, 'https://ror.org/02hzadm05 Rybářství Kardašova Řečice'),
(56259, 'https://ror.org/04k588f75', 'no_lang_code', 1, 'https://ror.org/04k588f75 Sev Litovel (Czechia)'),
(56260, 'https://ror.org/05j34w995', 'no_lang_code', 1, 'https://ror.org/05j34w995 Rašelina (Czechia)'),
(56261, 'https://ror.org/01y7wy577', 'no_lang_code', 1, 'https://ror.org/01y7wy577 Rataj (Czechia)'),
(56262, 'https://ror.org/039309z32', 'no_lang_code', 1, 'https://ror.org/039309z32 Seva – Flora (Czechia)'),
(56263, 'https://ror.org/05vc7zb27', 'no_lang_code', 1, 'https://ror.org/05vc7zb27 Sevaron (Czechia)'),
(56264, 'https://ror.org/04061m789', 'no_lang_code', 1, 'https://ror.org/04061m789 Rybářství Litomyšl (Rybářství Litomyšl)'),
(56265, 'https://ror.org/0021ty105', 'cs', 1, 'https://ror.org/0021ty105 Rybářství Mariánské Lázně'),
(56266, 'https://ror.org/019zz2s13', 'no_lang_code', 1, 'https://ror.org/019zz2s13 Rybářství Nové Hrady (Czechia)'),
(56267, 'https://ror.org/01yhceq35', 'no_lang_code', 1, 'https://ror.org/01yhceq35 Rybníkářství Pohořelice'),
(56268, 'https://ror.org/02b513n57', 'no_lang_code', 1, 'https://ror.org/02b513n57 Severofrukt (Czechia)'),
(56269, 'https://ror.org/05gjmqb84', 'no_lang_code', 1, 'https://ror.org/05gjmqb84 Rawat Consulting (Czechia)'),
(56270, 'https://ror.org/049px2k81', 'no_lang_code', 1, 'https://ror.org/049px2k81 RCS Kladno (Czechia)'),
(56271, 'https://ror.org/05yexgq55', 'no_lang_code', 1, 'https://ror.org/05yexgq55 Severomoravské Vodovody a Kanalizace Ostrava (Czechia)'),
(56272, 'https://ror.org/02c7agb90', 'no_lang_code', 1, 'https://ror.org/02c7agb90 Ryor (Czechia)'),
(56273, 'https://ror.org/01nqp5d86', 'no_lang_code', 1, 'https://ror.org/01nqp5d86 RD Rýmařov (Czechia)'),
(56274, 'https://ror.org/03evznq35', 'no_lang_code', 1, 'https://ror.org/03evznq35 Sewaco (Czechia)'),
(56275, 'https://ror.org/00qrjwk72', 'no_lang_code', 1, 'https://ror.org/00qrjwk72 Sewio Networks (Czechia)'),
(56276, 'https://ror.org/05b3xjz72', 'no_lang_code', 1, 'https://ror.org/05b3xjz72 Reacont (Czechia)'),
(56277, 'https://ror.org/04yedeq20', 'no_lang_code', 1, 'https://ror.org/04yedeq20 SG - Geoinenring (Czechia)'),
(56278, 'https://ror.org/018vsyr42', 'no_lang_code', 1, 'https://ror.org/018vsyr42 SG-Geoprojekt (Czechia)'),
(56279, 'https://ror.org/02e72p904', 'no_lang_code', 1, 'https://ror.org/02e72p904 SGS (Czechia)'),
(56280, 'https://ror.org/05enwqt08', 'no_lang_code', 1, 'https://ror.org/05enwqt08 Real Eco Technik (Czechia)'),
(56281, 'https://ror.org/02eftzg28', 'no_lang_code', 1, 'https://ror.org/02eftzg28 Sherlog Trace (Czechia)'),
(56282, 'https://ror.org/00cw9jq79', 'no_lang_code', 1, 'https://ror.org/00cw9jq79 Sicar (Czechia)'),
(56283, 'https://ror.org/02mw71d90', 'no_lang_code', 1, 'https://ror.org/02mw71d90 Realistic (Czechia)'),
(56284, 'https://ror.org/04858sf96', 'no_lang_code', 1, 'https://ror.org/04858sf96 Sido (Czechia)'),
(56285, 'https://ror.org/04xg8v068', 'no_lang_code', 1, 'https://ror.org/04xg8v068 S.A.M. Metalizační společnost'),
(56286, 'https://ror.org/01zk5hm10', 'no_lang_code', 1, 'https://ror.org/01zk5hm10 Siga (Czechia)'),
(56287, 'https://ror.org/02ctvf237', 'no_lang_code', 1, 'https://ror.org/02ctvf237 SAM Holding (Czechia)'),
(56288, 'https://ror.org/02tga0d11', 'no_lang_code', 1, 'https://ror.org/02tga0d11 Saar Gummi (Czechia)'),
(56289, 'https://ror.org/00jz21w71', 'no_lang_code', 1, 'https://ror.org/00jz21w71 Ricardo Prague (Czechia)'),
(56290, 'https://ror.org/04q6jhb10', 'no_lang_code', 1, 'https://ror.org/04q6jhb10 Signal Projekt (Czechia)'),
(56291, 'https://ror.org/01z4tdd83', 'no_lang_code', 1, 'https://ror.org/01z4tdd83 Sady (Czechia)'),
(56292, 'https://ror.org/01brpj081', 'no_lang_code', 1, 'https://ror.org/01brpj081 Recutech (Czechia)'),
(56293, 'https://ror.org/05hy51730', 'no_lang_code', 1, 'https://ror.org/05hy51730 Sage Energo (Czechia)'),
(56294, 'https://ror.org/03sy7mc39', 'no_lang_code', 1, 'https://ror.org/03sy7mc39 Silmos (Czechia)'),
(56295, 'https://ror.org/05pafsz05', 'no_lang_code', 1, 'https://ror.org/05pafsz05 Sagittaria'),
(56296, 'https://ror.org/03tphp044', 'no_lang_code', 1, 'https://ror.org/03tphp044 Silnice Group (Czechia)'),
(56297, 'https://ror.org/00j4rmt21', 'no_lang_code', 1, 'https://ror.org/00j4rmt21 Redam (Czechia)'),
(56298, 'https://ror.org/031shee24', 'no_lang_code', 1, 'https://ror.org/031shee24 Silvi Nova (Czechia)'),
(56299, 'https://ror.org/02c51sy34', 'cs', 1, 'https://ror.org/02c51sy34 Ředitelství Silnic a Dálnic'),
(56300, 'https://ror.org/01ap43e37', 'no_lang_code', 1, 'https://ror.org/01ap43e37 Šimeček (Czechia)'),
(56301, 'https://ror.org/05mq1qn32', 'no_lang_code', 1, 'https://ror.org/05mq1qn32 Simgeo (Czechia)'),
(56302, 'https://ror.org/035zqsp67', 'no_lang_code', 1, 'https://ror.org/035zqsp67 Regent Plus Žlutice (Czechia)'),
(56303, 'https://ror.org/01aee7q96', 'no_lang_code', 1, 'https://ror.org/01aee7q96 Saint-Gobain (Czechia)'),
(56304, 'https://ror.org/039t6ws48', 'no_lang_code', 1, 'https://ror.org/039t6ws48 Sindat (Czechia)'),
(56305, 'https://ror.org/01hkkxq34', 'no_lang_code', 1, 'https://ror.org/01hkkxq34 Sindlar (Czechia)'),
(56306, 'https://ror.org/04h32es78', 'no_lang_code', 1, 'https://ror.org/04h32es78 Sinpol (Czechia)'),
(56307, 'https://ror.org/04rjezz78', 'no_lang_code', 1, 'https://ror.org/04rjezz78 Samumed (United States)'),
(56308, 'https://ror.org/050g95t43', 'en', 1, 'https://ror.org/050g95t43 Regional Museum and Gallery Jicin'),
(56309, 'https://ror.org/016gtw459', 'no_lang_code', 1, 'https://ror.org/016gtw459 Sitel (Czechia)'),
(56310, 'https://ror.org/01x8yx033', 'no_lang_code', 1, 'https://ror.org/01x8yx033 Regional Museum of K. A. Polanek'),
(56311, 'https://ror.org/05qtdkf53', 'cs', 1, 'https://ror.org/05qtdkf53 Regionální muzeum v Kolíně'),
(56312, 'https://ror.org/00qjy4068', 'no_lang_code', 1, 'https://ror.org/00qjy4068 Regionální Poradenská Agentura (Czechia)'),
(56313, 'https://ror.org/03z152744', 'no_lang_code', 1, 'https://ror.org/03z152744 Sanborn (Czechia)'),
(56314, 'https://ror.org/05f65w564', 'cs', 1, 'https://ror.org/05f65w564 Sjednocená Organizace Nevidomých a Slabozrakých'),
(56315, 'https://ror.org/003fbkt80', 'en', 1, 'https://ror.org/003fbkt80 Czech Association of Development Agencies Česká asociace rozvojových agentur'),
(56316, 'https://ror.org/03z3t3x80', 'no_lang_code', 1, 'https://ror.org/03z3t3x80 Skd Trade (Czechia)'),
(56317, 'https://ror.org/03wp1bk10', 'no_lang_code', 1, 'https://ror.org/03wp1bk10 Regutec (Czechia)'),
(56318, 'https://ror.org/032wvex55', 'no_lang_code', 1, 'https://ror.org/032wvex55 Sangreen (Czechia)'),
(56319, 'https://ror.org/034qg4250', 'no_lang_code', 1, 'https://ror.org/034qg4250 Kavalier (Czechia)'),
(56320, 'https://ror.org/015cskm63', 'no_lang_code', 1, 'https://ror.org/015cskm63 Sat (Czechia)'),
(56321, 'https://ror.org/01ne55s87', 'no_lang_code', 1, 'https://ror.org/01ne55s87 Sklářský Ústav Hradec Králové (Czechia)'),
(56322, 'https://ror.org/018pszt58', 'no_lang_code', 1, 'https://ror.org/018pszt58 Rekultivační Výstavba Most (Czechia)'),
(56323, 'https://ror.org/05tmxnq68', 'no_lang_code', 1, 'https://ror.org/05tmxnq68 Reliant (Czechia)'),
(56324, 'https://ror.org/00kwyj403', 'no_lang_code', 1, 'https://ror.org/00kwyj403 Sklopan Liberec (Czechia)'),
(56325, 'https://ror.org/05gnj5y10', 'no_lang_code', 1, 'https://ror.org/05gnj5y10 Rema Systém (Czechia)'),
(56326, 'https://ror.org/05f6rx494', 'cs', 1, 'https://ror.org/05f6rx494 Sativa Keřkov'),
(56327, 'https://ror.org/043yr1e87', 'no_lang_code', 1, 'https://ror.org/043yr1e87 Remedis (Czechia)'),
(56328, 'https://ror.org/00mp5e421', 'no_lang_code', 1, 'https://ror.org/00mp5e421 Satra (Czechia)'),
(56329, 'https://ror.org/02fy0bw29', 'no_lang_code', 1, 'https://ror.org/02fy0bw29 Remerx (Czechia)'),
(56330, 'https://ror.org/01fw5px83', 'no_lang_code', 1, 'https://ror.org/01fw5px83 Sklostroj Turnov (Czechia)'),
(56331, 'https://ror.org/00xk4q268', 'no_lang_code', 1, 'https://ror.org/00xk4q268 Škoda JS (Czechia)'),
(56332, 'https://ror.org/04mc4tx89', 'no_lang_code', 1, 'https://ror.org/04mc4tx89 Saurer (Czechia)'),
(56333, 'https://ror.org/00fakpg77', 'no_lang_code', 1, 'https://ror.org/00fakpg77 Rent-Pharm (Czechia)'),
(56334, 'https://ror.org/01wdvpr49', 'no_lang_code', 1, 'https://ror.org/01wdvpr49 Skoda Machine Tool (Czechia)'),
(56335, 'https://ror.org/03xb1vx63', 'no_lang_code', 1, 'https://ror.org/03xb1vx63 SBA-Expert (Czechia)'),
(56336, 'https://ror.org/00rtxv182', 'no_lang_code', 1, 'https://ror.org/00rtxv182 Rentel (Czechia)'),
(56337, 'https://ror.org/01zxt6b74', 'no_lang_code', 1, 'https://ror.org/01zxt6b74 SC & C (Czechia)'),
(56338, 'https://ror.org/05t0aaa57', 'no_lang_code', 1, 'https://ror.org/05t0aaa57 Scaled Biolabs (United States)'),
(56339, 'https://ror.org/00zyq8158', 'no_lang_code', 1, 'https://ror.org/00zyq8158 Reprogen (Czechia)'),
(56340, 'https://ror.org/02bfrst79', 'cs', 1, 'https://ror.org/02bfrst79 Socioklub'),
(56341, 'https://ror.org/01h2p6e89', 'no_lang_code', 1, 'https://ror.org/01h2p6e89 Scriptorium'),
(56342, 'https://ror.org/05adwpb80', 'en', 1, 'https://ror.org/05adwpb80 Regional Development Agency of South Bohemia'),
(56343, 'https://ror.org/02rs7f491', 'no_lang_code', 1, 'https://ror.org/02rs7f491 Resec (Czechia)'),
(56344, 'https://ror.org/02qd9nw41', 'no_lang_code', 1, 'https://ror.org/02qd9nw41 Škola Welding (Czechia)'),
(56345, 'https://ror.org/05qepz429', 'no_lang_code', 1, 'https://ror.org/05qepz429 Resim (Czechia)'),
(56346, 'https://ror.org/00r1n9v29', 'cs', 1, 'https://ror.org/00r1n9v29 Sdružené ambulantní zařízení'),
(56347, 'https://ror.org/019206e14', 'en', 1, 'https://ror.org/019206e14 Automotive Industry Association Sdružení Automobilového Průmyslu'),
(56348, 'https://ror.org/00gpmkq36', 'cs', 1, 'https://ror.org/00gpmkq36 Česmad Bohemia'),
(56349, 'https://ror.org/05b1fze65', 'cs', 1, 'https://ror.org/05b1fze65 Sdružení Celiaků České Republiky'),
(56350, 'https://ror.org/04xks6074', 'no_lang_code', 1, 'https://ror.org/04xks6074 Skrivanek (Czechia)'),
(56351, 'https://ror.org/03tkf6a63', 'cs', 1, 'https://ror.org/03tkf6a63 Sdružení CEPAC'),
(56352, 'https://ror.org/03et8cz85', 'cs', 1, 'https://ror.org/03et8cz85 Asociace Nemocnic ČR'),
(56353, 'https://ror.org/05mjfsy88', 'en', 1, 'https://ror.org/05mjfsy88 National Laboratory for High Performance Computing'),
(56354, 'https://ror.org/044jcs946', 'cs', 1, 'https://ror.org/044jcs946 Sdružení Historiků České Republiky'),
(56355, 'https://ror.org/014dka479', 'no_lang_code', 1, 'https://ror.org/014dka479 Sky Paragliders (Czechia)'),
(56356, 'https://ror.org/05nhp5y26', 'en', 1, 'https://ror.org/05nhp5y26 Forest Nursery Association Sdružení lesních školkařů'),
(56357, 'https://ror.org/04b65h134', 'cs', 1, 'https://ror.org/04b65h134 Sládeček Museum of Local History'),
(56358, 'https://ror.org/055phnh91', 'en', 1, 'https://ror.org/055phnh91 Linka bezpečí Safety Line Helpline'),
(56359, 'https://ror.org/04c792r17', 'cs', 1, 'https://ror.org/04c792r17 Sdružení obcí Orlicko'),
(56360, 'https://ror.org/0243qpk28', 'cs', 1, 'https://ror.org/0243qpk28 Sdružení Ozdravoven A Léčeben Okresu Trutnov'),
(56361, 'https://ror.org/00hat9k49', 'no_lang_code', 1, 'https://ror.org/00hat9k49 Sladovny Soufflet (Czechia)'),
(56362, 'https://ror.org/043m7sc03', 'en', 1, 'https://ror.org/043m7sc03 Association of Grass and Legumes Seed Growers Sdružení pěstitelů travních a jetelových semen'),
(56363, 'https://ror.org/01jxgkt53', 'no_lang_code', 1, 'https://ror.org/01jxgkt53 Slavona (Czechia)'),
(56364, 'https://ror.org/03pc1y818', 'no_lang_code', 1, 'https://ror.org/03pc1y818 Resta (Czechia)'),
(56365, 'https://ror.org/01xkm9f48', 'no_lang_code', 1, 'https://ror.org/01xkm9f48 Retap (Czechia)'),
(56366, 'https://ror.org/04chjhs81', 'no_lang_code', 1, 'https://ror.org/04chjhs81 Slévárna a Modelárna Nové Ransko'),
(56367, 'https://ror.org/05t81tk93', 'no_lang_code', 1, 'https://ror.org/05t81tk93 Retex (Czechia)'),
(56368, 'https://ror.org/03hj0ge77', 'no_lang_code', 1, 'https://ror.org/03hj0ge77 Slévárna Chomutov (Czechia)'),
(56369, 'https://ror.org/01ch84g48', 'no_lang_code', 1, 'https://ror.org/01ch84g48 Rex Controls (Czechia)'),
(56370, 'https://ror.org/05mvk0v07', 'no_lang_code', 1, 'https://ror.org/05mvk0v07 RFspin (Czechia)'),
(56371, 'https://ror.org/05506bz51', 'no_lang_code', 1, 'https://ror.org/05506bz51 Sofigen (Czechia)'),
(56372, 'https://ror.org/052rfqh94', 'no_lang_code', 1, 'https://ror.org/052rfqh94 Heunisch Brno (Czechia)'),
(56373, 'https://ror.org/05mxwbv26', 'no_lang_code', 1, 'https://ror.org/05mxwbv26 Soft Targets Protection Institute (Czechia)'),
(56374, 'https://ror.org/01ex2ev57', 'no_lang_code', 1, 'https://ror.org/01ex2ev57 Sokolovské Strojírny (Czechia)'),
(56375, 'https://ror.org/02bzv8r58', 'en', 1, 'https://ror.org/02bzv8r58 American Comparative Literature Association'),
(56376, 'https://ror.org/05bg8j971', 'en', 1, 'https://ror.org/05bg8j971 American Oil Chemists Society'),
(56377, 'https://ror.org/04y37vj38', 'en', 1, 'https://ror.org/04y37vj38 Association for Information Science and Technology'),
(56378, 'https://ror.org/052bv2m37', 'en', 1, 'https://ror.org/052bv2m37 Association of Fire and Safety Engineering Sdružení požárního a bezpečnostního inženýrství'),
(56379, 'https://ror.org/03qy0hv94', 'en', 1, 'https://ror.org/03qy0hv94 ITS and S Sdružení pro dopravní telematiku'),
(56380, 'https://ror.org/03tvvt638', 'en', 1, 'https://ror.org/03tvvt638 American Society of Church History'),
(56381, 'https://ror.org/02cynnb40', 'en', 1, 'https://ror.org/02cynnb40 The American Society of Criminology'),
(56382, 'https://ror.org/00qmtfb26', 'en', 1, 'https://ror.org/00qmtfb26 Agricultural And Forestry Machinery Association'),
(56383, 'https://ror.org/01akd1s31', 'no_lang_code', 1, 'https://ror.org/01akd1s31 SDS Exmost (Czechia)'),
(56384, 'https://ror.org/05dgj4s02', 'en', 1, 'https://ror.org/05dgj4s02 Association for Jewish Studies'),
(56385, 'https://ror.org/03t173c87', 'no_lang_code', 1, 'https://ror.org/03t173c87 Secar Bohemia (Czechia)'),
(56386, 'https://ror.org/00dnz1633', 'no_lang_code', 1, 'https://ror.org/00dnz1633 Seco Group (Czechia)'),
(56387, 'https://ror.org/05b409c22', 'en', 1, 'https://ror.org/05b409c22 Association of Clinical Scientists'),
(56388, 'https://ror.org/053j1ga94', 'no_lang_code', 1, 'https://ror.org/053j1ga94 Sedium (Czechia)'),
(56389, 'https://ror.org/05c84ff54', 'no_lang_code', 1, 'https://ror.org/05c84ff54 Sedlecký kaolin (Czechia)'),
(56390, 'https://ror.org/05dm26171', 'en', 1, 'https://ror.org/05dm26171 Behavior Genetics Association'),
(56391, 'https://ror.org/0086yq776', 'no_lang_code', 1, 'https://ror.org/0086yq776 SEEIF Ceramic (Czechia)'),
(56392, 'https://ror.org/04dc7cj39', 'no_lang_code', 1, 'https://ror.org/04dc7cj39 SEKO Brno (Czechia)'),
(56393, 'https://ror.org/003vk8x91', 'cs', 1, 'https://ror.org/003vk8x91 Selekta Pacov'),
(56394, 'https://ror.org/040anqg48', 'no_lang_code', 1, 'https://ror.org/040anqg48 Störi Mantel (Czechia)'),
(56395, 'https://ror.org/045htpw71', 'en', 1, 'https://ror.org/045htpw71 Dictionary Society of North America'),
(56396, 'https://ror.org/02g63mv84', 'no_lang_code', 1, 'https://ror.org/02g63mv84 Strabag Rail (Czechia)'),
(56397, 'https://ror.org/04yqshc53', 'en', 1, 'https://ror.org/04yqshc53 German Studies Association'),
(56398, 'https://ror.org/00qm34c52', 'no_lang_code', 1, 'https://ror.org/00qm34c52 Strasky Husty and Partners (Czechia)'),
(56399, 'https://ror.org/0009bne42', 'en', 1, 'https://ror.org/0009bne42 Immigration and Ethnic History Society'),
(56400, 'https://ror.org/01zn7n052', 'cs', 1, 'https://ror.org/01zn7n052 Střední Průmyslová škola a Obchodní Akademie Uherský Brod'),
(56401, 'https://ror.org/02va58e96', 'en', 1, 'https://ror.org/02va58e96 Central Bohemian Research Library Středočeská vědecká knihovka v Kladně'),
(56402, 'https://ror.org/03nm3et74', 'en', 1, 'https://ror.org/03nm3et74 Whiting Foundation'),
(56403, 'https://ror.org/017w1jt07', 'no_lang_code', 1, 'https://ror.org/017w1jt07 Strojírenské Inovační Centrum (Czechia)'),
(56404, 'https://ror.org/03frxfd09', 'no_lang_code', 1, 'https://ror.org/03frxfd09 Smart Software (Czechia)'),
(56405, 'https://ror.org/011np0p15', 'cs', 1, 'https://ror.org/011np0p15 Strojírenský Zkušební Ústav'),
(56406, 'https://ror.org/03c6bbm42', 'no_lang_code', 1, 'https://ror.org/03c6bbm42 Smart Technik (Czechia)'),
(56407, 'https://ror.org/02bspcn72', 'no_lang_code', 1, 'https://ror.org/02bspcn72 Strojírna Novotný (Czechia)'),
(56408, 'https://ror.org/05d3q8024', 'no_lang_code', 1, 'https://ror.org/05d3q8024 SmartMotion (Czechia)'),
(56409, 'https://ror.org/04c7mjp03', 'en', 1, 'https://ror.org/04c7mjp03 Latin American Studies Association'),
(56410, 'https://ror.org/03c8sng38', 'no_lang_code', 1, 'https://ror.org/03c8sng38 SMP (Czechia)'),
(56411, 'https://ror.org/02cf3zf10', 'no_lang_code', 1, 'https://ror.org/02cf3zf10 Strojírna Tyc (Czechia)'),
(56412, 'https://ror.org/02k0pre66', 'no_lang_code', 1, 'https://ror.org/02k0pre66 Strojírny Bohdalice (Czechia)'),
(56413, 'https://ror.org/03mb0qq13', 'en', 1, 'https://ror.org/03mb0qq13 National Book Critics Circle'),
(56414, 'https://ror.org/00tzc0330', 'no_lang_code', 1, 'https://ror.org/00tzc0330 SMTplus (Czechia)'),
(56415, 'https://ror.org/0049pvf34', 'no_lang_code', 1, 'https://ror.org/0049pvf34 Strojírny Olšovec (Czechia)'),
(56416, 'https://ror.org/015cg7d75', 'cs', 1, 'https://ror.org/015cg7d75 Sociální Agentura'),
(56417, 'https://ror.org/01g3ety71', 'no_lang_code', 1, 'https://ror.org/01g3ety71 SocioFactor (Czechia)'),
(56418, 'https://ror.org/05anxz392', 'no_lang_code', 1, 'https://ror.org/05anxz392 Strojírny Podzimek (Czechia)'),
(56419, 'https://ror.org/02zp2vk95', 'en', 1, 'https://ror.org/02zp2vk95 National Inventors Hall of Fame'),
(56420, 'https://ror.org/00cyfpb31', 'no_lang_code', 1, 'https://ror.org/00cyfpb31 Strojírny a stavby Třinec (Czechia)'),
(56421, 'https://ror.org/00c7xe135', 'no_lang_code', 1, 'https://ror.org/00c7xe135 Strojmetal Aluminium Forging (Czechia)'),
(56422, 'https://ror.org/05pzshy96', 'no_lang_code', 1, 'https://ror.org/05pzshy96 Tenez (Czechia)'),
(56423, 'https://ror.org/05d81xr24', 'en', 1, 'https://ror.org/05d81xr24 National Organization for the Professional Advancement of Black Chemists and Chemical Engineers'),
(56424, 'https://ror.org/054xw4485', 'no_lang_code', 1, 'https://ror.org/054xw4485 Tenzováhy (Czechia)');
INSERT INTO `rors` VALUES
(56425, 'https://ror.org/005a9av86', 'no_lang_code', 1, 'https://ror.org/005a9av86 STS Prachatice (Czechia)'),
(56426, 'https://ror.org/054tqs184', 'no_lang_code', 1, 'https://ror.org/054tqs184 Teramed (Czechia)'),
(56427, 'https://ror.org/03tbk6q11', 'no_lang_code', 1, 'https://ror.org/03tbk6q11 Terezia (Czechia)'),
(56428, 'https://ror.org/01ykng114', 'en', 1, 'https://ror.org/01ykng114 National Science and Technology Medals Foundation'),
(56429, 'https://ror.org/019vv3z40', 'en', 1, 'https://ror.org/019vv3z40 Pen-Faulkner Foundation'),
(56430, 'https://ror.org/05j15g034', 'no_lang_code', 1, 'https://ror.org/05j15g034 STÚ K (Czechia)'),
(56431, 'https://ror.org/04e14gy75', 'no_lang_code', 1, 'https://ror.org/04e14gy75 Styl Plzeň (Czechia)'),
(56432, 'https://ror.org/04s9b1414', 'no_lang_code', 1, 'https://ror.org/04s9b1414 Sudop Group (Czechia)'),
(56433, 'https://ror.org/00nzvp437', 'en', 1, 'https://ror.org/00nzvp437 Population Association of America'),
(56434, 'https://ror.org/05cv4ab20', 'en', 1, 'https://ror.org/05cv4ab20 Poultry Science Association'),
(56435, 'https://ror.org/045661064', 'no_lang_code', 1, 'https://ror.org/045661064 Svárovský (Czechia)'),
(56436, 'https://ror.org/037vq0a20', 'en', 1, 'https://ror.org/037vq0a20 Svaz českých a moravských výrobních družstev Union of Czech Production Co-operatives'),
(56437, 'https://ror.org/05h7qq668', 'cs', 1, 'https://ror.org/05h7qq668 Svaz Chovatelů Českého Strakatého Skotu'),
(56438, 'https://ror.org/04arfmc53', 'cs', 1, 'https://ror.org/04arfmc53 Svaz Chovatelů Holštýnského Skotu ČR'),
(56439, 'https://ror.org/01x9abe66', 'cs', 1, 'https://ror.org/01x9abe66 Svaz Chovatelů Ovcí a Koz'),
(56440, 'https://ror.org/0165j6v88', 'cs', 1, 'https://ror.org/0165j6v88 Unie Geologických Asociací'),
(56441, 'https://ror.org/03ryswf50', 'no_lang_code', 1, 'https://ror.org/03ryswf50 Solar Monitor (Czechia)'),
(56442, 'https://ror.org/033zy3080', 'no_lang_code', 1, 'https://ror.org/033zy3080 Union Lesní Brána (Czechia)'),
(56443, 'https://ror.org/00fg6ye96', 'cs', 1, 'https://ror.org/00fg6ye96 Svaz Pěstitelů A Zpracovatelů Olejnin'),
(56444, 'https://ror.org/04e9mhs65', 'no_lang_code', 1, 'https://ror.org/04e9mhs65 SolarEnvi (Czechia)'),
(56445, 'https://ror.org/020k5bg95', 'no_lang_code', 1, 'https://ror.org/020k5bg95 Fujirebio (Czechia)'),
(56446, 'https://ror.org/03tg5rf69', 'no_lang_code', 1, 'https://ror.org/03tg5rf69 Uniplast Pardubice (Czechia)'),
(56447, 'https://ror.org/04dedrk57', 'en', 1, 'https://ror.org/04dedrk57 Association of Foundries'),
(56448, 'https://ror.org/05afyvv15', 'no_lang_code', 1, 'https://ror.org/05afyvv15 Sonberk (Czechia)'),
(56449, 'https://ror.org/01xz6zr49', 'no_lang_code', 1, 'https://ror.org/01xz6zr49 Vamet (Czechia)'),
(56450, 'https://ror.org/040ppeb55', 'no_lang_code', 1, 'https://ror.org/040ppeb55 Unique Textiles (Czechia)'),
(56451, 'https://ror.org/04wrbmd83', 'no_lang_code', 1, 'https://ror.org/04wrbmd83 Vanessa air (Czechia)'),
(56452, 'https://ror.org/01d5z1p97', 'cs', 1, 'https://ror.org/01d5z1p97 Svaz Vinařů České Republiky'),
(56453, 'https://ror.org/00nxfq722', 'no_lang_code', 1, 'https://ror.org/00nxfq722 Vápenka Vitošov (Czechia)'),
(56454, 'https://ror.org/0293bgt12', 'no_lang_code', 1, 'https://ror.org/0293bgt12 Unites Systems (Czechia)'),
(56455, 'https://ror.org/005jnhy27', 'cs', 1, 'https://ror.org/005jnhy27 Svaz Výrobců Cementu'),
(56456, 'https://ror.org/01d2pjm58', 'no_lang_code', 1, 'https://ror.org/01d2pjm58 Universal Production Partners (Czechia)'),
(56457, 'https://ror.org/0197zpg25', 'no_lang_code', 1, 'https://ror.org/0197zpg25 SOR Libchavy (Czechia)'),
(56458, 'https://ror.org/030ceys03', 'no_lang_code', 1, 'https://ror.org/030ceys03 Vapos (Czechia)'),
(56459, 'https://ror.org/02w9wt917', 'no_lang_code', 1, 'https://ror.org/02w9wt917 Space Devices (Czechia)'),
(56460, 'https://ror.org/02r44k041', 'no_lang_code', 1, 'https://ror.org/02r44k041 Svit (Czechia)'),
(56461, 'https://ror.org/0506vaz69', 'no_lang_code', 1, 'https://ror.org/0506vaz69 Varroc Lighting Systems (United States)'),
(56462, 'https://ror.org/05fsqes40', 'no_lang_code', 1, 'https://ror.org/05fsqes40 SpeechTech (Czechia)'),
(56463, 'https://ror.org/04cd0p048', 'no_lang_code', 1, 'https://ror.org/04cd0p048 Svoboda (Czechia)'),
(56464, 'https://ror.org/01w2v6t15', 'cs', 1, 'https://ror.org/01w2v6t15 Spektroskopická Společnost Jana Marka Marci'),
(56465, 'https://ror.org/0491q1q03', 'no_lang_code', 1, 'https://ror.org/0491q1q03 Spel (Czechia)'),
(56466, 'https://ror.org/056p5a020', 'no_lang_code', 1, 'https://ror.org/056p5a020 SVS FEM (Czechia)'),
(56467, 'https://ror.org/02hhv3y44', 'no_lang_code', 1, 'https://ror.org/02hhv3y44 Speltronic (Czechia)'),
(56468, 'https://ror.org/03ftcvv28', 'en', 1, 'https://ror.org/03ftcvv28 Science & Technology Park (Czechia) Vědecko Technologický Park'),
(56469, 'https://ror.org/056028189', 'no_lang_code', 1, 'https://ror.org/056028189 Swietelsky (Austria)'),
(56470, 'https://ror.org/00pxr4197', 'no_lang_code', 1, 'https://ror.org/00pxr4197 Security Paper Mill (Czechia)'),
(56471, 'https://ror.org/045b4zv25', 'no_lang_code', 1, 'https://ror.org/045b4zv25 Vega (Czechia)'),
(56472, 'https://ror.org/00dtszh11', 'no_lang_code', 1, 'https://ror.org/00dtszh11 S Group Holding (Czechia)'),
(56473, 'https://ror.org/00ca8m310', 'cs', 1, 'https://ror.org/00ca8m310 Společenstvo Kominíků České republiky'),
(56474, 'https://ror.org/01qv89346', 'cs', 1, 'https://ror.org/01qv89346 Společná Vize'),
(56475, 'https://ror.org/03rez2z80', 'no_lang_code', 1, 'https://ror.org/03rez2z80 Libri Prohibiti'),
(56476, 'https://ror.org/01hqrb170', 'no_lang_code', 1, 'https://ror.org/01hqrb170 Synlab Czech (Czechia)'),
(56477, 'https://ror.org/05q2t4173', 'no_lang_code', 1, 'https://ror.org/05q2t4173 Vejce (Czechia)'),
(56478, 'https://ror.org/02c4b8082', 'no_lang_code', 1, 'https://ror.org/02c4b8082 Velaz (Czechia)'),
(56479, 'https://ror.org/0073d8m13', 'no_lang_code', 1, 'https://ror.org/0073d8m13 Velvana (Czechia)'),
(56480, 'https://ror.org/035r6h173', 'no_lang_code', 1, 'https://ror.org/035r6h173 Glasiert (Czechia)'),
(56481, 'https://ror.org/00wacrh06', 'no_lang_code', 1, 'https://ror.org/00wacrh06 Solitea (Czechia)'),
(56482, 'https://ror.org/02tq1vp04', 'no_lang_code', 1, 'https://ror.org/02tq1vp04 Ventura-Venkov (Czechia)'),
(56483, 'https://ror.org/03harvh27', 'no_lang_code', 1, 'https://ror.org/03harvh27 Technika Pro Měření a Automatizaci (Czechia)'),
(56484, 'https://ror.org/02vpeth71', 'en', 1, 'https://ror.org/02vpeth71 Museum of Romani Culture Muzeum romské kultury'),
(56485, 'https://ror.org/055wsxp82', 'no_lang_code', 1, 'https://ror.org/055wsxp82 Divadelní Noviny (Czechia)'),
(56486, 'https://ror.org/01b9jf692', 'no_lang_code', 1, 'https://ror.org/01b9jf692 Vepaspol Olomouc (Czechia)'),
(56487, 'https://ror.org/029xeav48', 'no_lang_code', 1, 'https://ror.org/029xeav48 T-string Pardubice (Czechia)'),
(56488, 'https://ror.org/020drq148', 'no_lang_code', 1, 'https://ror.org/020drq148 Vesa Velhartice (Czechia)'),
(56489, 'https://ror.org/050gvvy47', 'no_lang_code', 1, 'https://ror.org/050gvvy47 TFA (Czechia)'),
(56490, 'https://ror.org/02vaxhm79', 'cs', 1, 'https://ror.org/02vaxhm79 Společnost pro Studium Sekt a Nových Náboženských Směrů'),
(56491, 'https://ror.org/02w58yh14', 'no_lang_code', 1, 'https://ror.org/02w58yh14 Veskom (Czechia)'),
(56492, 'https://ror.org/052pcv042', 'no_lang_code', 1, 'https://ror.org/052pcv042 TCC (Czechia)'),
(56493, 'https://ror.org/05wggj048', 'no_lang_code', 1, 'https://ror.org/05wggj048 Vestado (Czechia)'),
(56494, 'https://ror.org/05yh12c19', 'cs', 1, 'https://ror.org/05yh12c19 Společnost pro Technologie Ochrany Památek'),
(56495, 'https://ror.org/05hxrt533', 'no_lang_code', 1, 'https://ror.org/05hxrt533 Tatra (Czechia)'),
(56496, 'https://ror.org/0027ecy34', 'cs', 1, 'https://ror.org/0027ecy34 Společnost pro Trvale Udržitelný Život'),
(56497, 'https://ror.org/00mdxht46', 'en', 1, 'https://ror.org/00mdxht46 Prison Service of the Czech Republic Vězeňská služba České republiky'),
(56498, 'https://ror.org/05herht24', 'en', 1, 'https://ror.org/05herht24 Czechoslovak Society of Arts and Sciences'),
(56499, 'https://ror.org/0373b8g76', 'no_lang_code', 1, 'https://ror.org/0373b8g76 Tagro (Czechia)'),
(56500, 'https://ror.org/04d7xaq68', 'no_lang_code', 1, 'https://ror.org/04d7xaq68 Takt (Czechia)'),
(56501, 'https://ror.org/010g1a428', 'no_lang_code', 1, 'https://ror.org/010g1a428 VHS Brno (Czechia)'),
(56502, 'https://ror.org/01yx6f755', 'cs', 1, 'https://ror.org/01yx6f755 Společnost pro Veřejnou Dopravu'),
(56503, 'https://ror.org/05k6wtk05', 'no_lang_code', 1, 'https://ror.org/05k6wtk05 Taktici (Czechia)'),
(56504, 'https://ror.org/0509gz575', 'no_lang_code', 1, 'https://ror.org/0509gz575 Via Alta (Czechia)'),
(56505, 'https://ror.org/02h6xem40', 'en', 1, 'https://ror.org/02h6xem40 Czech Society for Nutrition Společnost pro výživu'),
(56506, 'https://ror.org/03xr48a26', 'cs', 1, 'https://ror.org/03xr48a26 Společnost pro Výzkum a Vzdělávání'),
(56507, 'https://ror.org/02en4cz69', 'no_lang_code', 1, 'https://ror.org/02en4cz69 Viapont (Czechia)'),
(56508, 'https://ror.org/05jkrds81', 'no_lang_code', 1, 'https://ror.org/05jkrds81 Vibrom (Czechia)'),
(56509, 'https://ror.org/00rtnjm51', 'no_lang_code', 1, 'https://ror.org/00rtnjm51 Taranis Invest (Czechia)'),
(56510, 'https://ror.org/05rgnr577', 'en', 1, 'https://ror.org/05rgnr577 Science and Technology Parks Association Společnost Vědeckotechnických Parků'),
(56511, 'https://ror.org/0276snn96', 'no_lang_code', 1, 'https://ror.org/0276snn96 Tarpo (Czechia)'),
(56512, 'https://ror.org/05gn2nm29', 'no_lang_code', 1, 'https://ror.org/05gn2nm29 Viditech (Czechia)'),
(56513, 'https://ror.org/02nwjr777', 'cs', 1, 'https://ror.org/02nwjr777 Spolek PRO BIO Poradenství'),
(56514, 'https://ror.org/01wx7v544', 'no_lang_code', 1, 'https://ror.org/01wx7v544 Tatsuno Europe (Czechia)'),
(56515, 'https://ror.org/01kq7c949', 'no_lang_code', 1, 'https://ror.org/01kq7c949 Wine cellars Kutná Hora (Czechia)'),
(56516, 'https://ror.org/05k7j3y71', 'no_lang_code', 1, 'https://ror.org/05k7j3y71 Sportovní Centrum Atlas (Czechia)'),
(56517, 'https://ror.org/02pasr011', 'no_lang_code', 1, 'https://ror.org/02pasr011 Teaz (Czechia)'),
(56518, 'https://ror.org/00aw6xe57', 'en', 1, 'https://ror.org/00aw6xe57 Cave Administration of the Czech Republic Správa Jeskyní České Republiky'),
(56519, 'https://ror.org/02d57p683', 'cs', 1, 'https://ror.org/02d57p683 Administration of the National Park České Švýcarsko'),
(56520, 'https://ror.org/003garz92', 'no_lang_code', 1, 'https://ror.org/003garz92 Techem (Czechia)'),
(56521, 'https://ror.org/05mddv816', 'cs', 1, 'https://ror.org/05mddv816 Správa Národního Parku Podyjí'),
(56522, 'https://ror.org/04wf28y22', 'no_lang_code', 1, 'https://ror.org/04wf28y22 Techmix (Czechia)'),
(56523, 'https://ror.org/04k2s8g66', 'cs', 1, 'https://ror.org/04k2s8g66 Vítkovická Nemocnice'),
(56524, 'https://ror.org/0482qwy81', 'cs', 1, 'https://ror.org/0482qwy81 Správa Železniční Dopravní Cesty'),
(56525, 'https://ror.org/02xtbq882', 'en', 1, 'https://ror.org/02xtbq882 Institute of Theoretical Physics 中国科学院理论物理研究所'),
(56526, 'https://ror.org/00r8ne687', 'no_lang_code', 1, 'https://ror.org/00r8ne687 Viton (Czechia)'),
(56527, 'https://ror.org/02bbbxs36', 'no_lang_code', 1, 'https://ror.org/02bbbxs36 Spyron (Czechia)'),
(56528, 'https://ror.org/01reter38', 'no_lang_code', 1, 'https://ror.org/01reter38 VKV Praha (Czechia)'),
(56529, 'https://ror.org/00bzcvv61', 'en', 1, 'https://ror.org/00bzcvv61 Technical and Test Institute for Construction Prague Technický a zkušební ústav stavební Praha, s.p.'),
(56530, 'https://ror.org/00jr9ks41', 'no_lang_code', 1, 'https://ror.org/00jr9ks41 Techniserv (Czechia)'),
(56531, 'https://ror.org/03twrdm38', 'no_lang_code', 1, 'https://ror.org/03twrdm38 Technistone (Czechia)'),
(56532, 'https://ror.org/003b2vh96', 'no_lang_code', 1, 'https://ror.org/003b2vh96 Stavební Geologie - Geoprůzkum České Budějovice (Czechia)'),
(56533, 'https://ror.org/03310k523', 'no_lang_code', 1, 'https://ror.org/03310k523 Technofiber (Czechia)'),
(56534, 'https://ror.org/01b2z3d97', 'cs', 1, 'https://ror.org/01b2z3d97 Vlastivědné Muzeum v Šumperku'),
(56535, 'https://ror.org/00v2c3q38', 'no_lang_code', 1, 'https://ror.org/00v2c3q38 Stap (Czechia)'),
(56536, 'https://ror.org/03rrdjf11', 'no_lang_code', 1, 'https://ror.org/03rrdjf11 Vlnovice Špís (Czechia)'),
(56537, 'https://ror.org/02f0n4z35', 'en', 1, 'https://ror.org/02f0n4z35 Technologická platforma Energetická bezpečnost ČR Technology Platform Energy Security'),
(56538, 'https://ror.org/056yng194', 'no_lang_code', 1, 'https://ror.org/056yng194 Stapro (Czechia)'),
(56539, 'https://ror.org/02fcpv249', 'en', 1, 'https://ror.org/02fcpv249 Technologická Platforma Udržitelná energetika Technology Platform Sustainable Energy for the Czech Republic'),
(56540, 'https://ror.org/04w6hdb78', 'no_lang_code', 1, 'https://ror.org/04w6hdb78 Starmon (Czechia)'),
(56541, 'https://ror.org/02ghv2v70', 'no_lang_code', 1, 'https://ror.org/02ghv2v70 Statek Horní Dvorce (Czechia)'),
(56542, 'https://ror.org/00dqzma51', 'no_lang_code', 1, 'https://ror.org/00dqzma51 Výrobní družstvo Slezská Hořina (Czechia)'),
(56543, 'https://ror.org/00ccse471', 'en', 1, 'https://ror.org/00ccse471 State Regional Archives Litomerice Státní oblastní archiv v Litoměřicích'),
(56544, 'https://ror.org/04avma498', 'no_lang_code', 1, 'https://ror.org/04avma498 Vodárenská Akciová Společnost (Czechia)'),
(56545, 'https://ror.org/03pmr7d81', 'en', 1, 'https://ror.org/03pmr7d81 National Technology Platform for Road Transport Technologická platforma silniční doprava'),
(56546, 'https://ror.org/01e6knz33', 'cs', 1, 'https://ror.org/01e6knz33 Technologické centrum Písek'),
(56547, 'https://ror.org/00ammxx28', 'en', 1, 'https://ror.org/00ammxx28 Regional State Archives in Trebon Státní oblastní archiv v Třeboni'),
(56548, 'https://ror.org/0444qc238', 'no_lang_code', 1, 'https://ror.org/0444qc238 Vodárenská Společnost Chrudim (Czechia)'),
(56549, 'https://ror.org/04mt41a04', 'no_lang_code', 1, 'https://ror.org/04mt41a04 TechTest (Czechia)'),
(56550, 'https://ror.org/010w5rh03', 'no_lang_code', 1, 'https://ror.org/010w5rh03 Vodárna Káraný (Czechia)'),
(56551, 'https://ror.org/01vv4bg03', 'no_lang_code', 1, 'https://ror.org/01vv4bg03 Vodní Cesty (Czechia)'),
(56552, 'https://ror.org/055p3bc36', 'no_lang_code', 1, 'https://ror.org/055p3bc36 Teknia (Czechia)'),
(56553, 'https://ror.org/02eh4at60', 'no_lang_code', 1, 'https://ror.org/02eh4at60 VODNI DILA - TBD (Czechia)'),
(56554, 'https://ror.org/05dbs4128', 'no_lang_code', 1, 'https://ror.org/05dbs4128 O2 Czech Republic (Czechia)'),
(56555, 'https://ror.org/05rhhvk61', 'no_lang_code', 1, 'https://ror.org/05rhhvk61 Vodní zdroje Chrudim (Czechia)'),
(56556, 'https://ror.org/01r2m8t59', 'en', 1, 'https://ror.org/01r2m8t59 State Veterinary Administration'),
(56557, 'https://ror.org/00396dy63', 'no_lang_code', 1, 'https://ror.org/00396dy63 Vodní Zdroje Ekomonitor (Czechia)'),
(56558, 'https://ror.org/03harpv89', 'no_lang_code', 1, 'https://ror.org/03harpv89 Vodní Zdroje GLS Praha (Czechia)'),
(56559, 'https://ror.org/019d8yq85', 'no_lang_code', 1, 'https://ror.org/019d8yq85 Vyrtych TPI (Czechia)'),
(56560, 'https://ror.org/02j9na081', 'no_lang_code', 1, 'https://ror.org/02j9na081 Vodní zdroje Holešov (Czechia)'),
(56561, 'https://ror.org/045cfxc86', 'no_lang_code', 1, 'https://ror.org/045cfxc86 Vodohospodářský podnik (Czechia)'),
(56562, 'https://ror.org/00n2epv23', 'no_lang_code', 1, 'https://ror.org/00n2epv23 Státní Výzkumný Ústav pro Stavbu Strojů (Czechia)'),
(56563, 'https://ror.org/015t1sz24', 'en', 1, 'https://ror.org/015t1sz24 College of Information Management Business Administration and Law Vysoká škola manažerské informatiky, ekonomiky a práva'),
(56564, 'https://ror.org/05vsweb26', 'no_lang_code', 1, 'https://ror.org/05vsweb26 Government Testing Laboratory of Machines (Czechia) Státní zkušebna strojů'),
(56565, 'https://ror.org/038hy2g58', 'no_lang_code', 1, 'https://ror.org/038hy2g58 Vojenské Lesy a Statky ČR (Czechia)'),
(56566, 'https://ror.org/00rvj3h03', 'no_lang_code', 1, 'https://ror.org/00rvj3h03 Vp Agro (Czechia)'),
(56567, 'https://ror.org/02bam3g77', 'cs', 1, 'https://ror.org/02bam3g77 Vyšší Odborná Škola Informačních Služeb'),
(56568, 'https://ror.org/001fdsm10', 'cs', 1, 'https://ror.org/001fdsm10 Vyšší Odborná Škola Pedagogická a Sociální Střední Odborná Škola Pedagogická a Gymnázium Praha 6'),
(56569, 'https://ror.org/0489x2521', 'no_lang_code', 1, 'https://ror.org/0489x2521 Vrsanska Uhelna (Czechia)'),
(56570, 'https://ror.org/01n85sk92', 'no_lang_code', 1, 'https://ror.org/01n85sk92 Stavoprojekta (Czechia)'),
(56571, 'https://ror.org/02nn2c651', 'no_lang_code', 1, 'https://ror.org/02nn2c651 Stavos Brno (Czechia)'),
(56572, 'https://ror.org/02z0tm307', 'no_lang_code', 1, 'https://ror.org/02z0tm307 Vrtný a Geologický Průzkum (Czechia)'),
(56573, 'https://ror.org/00cpjsn56', 'no_lang_code', 1, 'https://ror.org/00cpjsn56 VTL Blansko (Czechia)'),
(56574, 'https://ror.org/02faz3r42', 'cs', 1, 'https://ror.org/02faz3r42 Vyšší Odborná Škola Střední Průmyslová Škola'),
(56575, 'https://ror.org/055y56x88', 'en', 1, 'https://ror.org/055y56x88 Stein Resort'),
(56576, 'https://ror.org/04b2avy95', 'no_lang_code', 1, 'https://ror.org/04b2avy95 Vuchz (Czechia)'),
(56577, 'https://ror.org/03dsw3e52', 'no_lang_code', 1, 'https://ror.org/03dsw3e52 Steinhauser (Czechia)'),
(56578, 'https://ror.org/00vnx7m69', 'cs', 1, 'https://ror.org/00vnx7m69 Výzkumná Stanice Vinohradnická'),
(56579, 'https://ror.org/059hma273', 'no_lang_code', 1, 'https://ror.org/059hma273 Vums Legend (Czechia)'),
(56580, 'https://ror.org/02mh2m364', 'no_lang_code', 1, 'https://ror.org/02mh2m364 Vupek - Economy (Czechia)'),
(56581, 'https://ror.org/051h8nm81', 'no_lang_code', 1, 'https://ror.org/051h8nm81 Vuste - Apis (Czechia)'),
(56582, 'https://ror.org/0241sqg91', 'no_lang_code', 1, 'https://ror.org/0241sqg91 Stinchcombe Technology (Czechia)'),
(56583, 'https://ror.org/04h0yyj73', 'cs', 1, 'https://ror.org/04h0yyj73 Vzdělávací centrum pro veřejnou Správu'),
(56584, 'https://ror.org/055df5q89', 'no_lang_code', 1, 'https://ror.org/055df5q89 Vuvl (Czechia)'),
(56585, 'https://ror.org/03c7ss521', 'no_lang_code', 1, 'https://ror.org/03c7ss521 STMicroelectronics (Czechia)'),
(56586, 'https://ror.org/0549nvv93', 'no_lang_code', 1, 'https://ror.org/0549nvv93 Vws Memsep (Czechia)'),
(56587, 'https://ror.org/04cgmq851', 'en', 1, 'https://ror.org/04cgmq851 Society for Ethnomusicology'),
(56588, 'https://ror.org/01p67ns08', 'no_lang_code', 1, 'https://ror.org/01p67ns08 Výrobně Obchodní Družstvo Zdislavice (Czechia)'),
(56589, 'https://ror.org/01wa1cb54', 'no_lang_code', 1, 'https://ror.org/01wa1cb54 TESCO SW (Czechia)'),
(56590, 'https://ror.org/030jevs33', 'no_lang_code', 1, 'https://ror.org/030jevs33 TESLA Electrontubes (Czechia)'),
(56591, 'https://ror.org/008rtq165', 'en', 1, 'https://ror.org/008rtq165 Society for the Study of Social Problems'),
(56592, 'https://ror.org/048xrz015', 'no_lang_code', 1, 'https://ror.org/048xrz015 Testima (Czechia)'),
(56593, 'https://ror.org/000yxte11', 'en', 1, 'https://ror.org/000yxte11 Southern Historical Association'),
(56594, 'https://ror.org/037xwh335', 'no_lang_code', 1, 'https://ror.org/037xwh335 Maspex (Czechia)'),
(56595, 'https://ror.org/00fq8a754', 'en', 1, 'https://ror.org/00fq8a754 Svenska Akademien Swedish Academy'),
(56596, 'https://ror.org/036vxea50', 'no_lang_code', 1, 'https://ror.org/036vxea50 Walramcom (Czechia)'),
(56597, 'https://ror.org/052p9pa08', 'en', 1, 'https://ror.org/052p9pa08 Theatre Library Association'),
(56598, 'https://ror.org/043agw178', 'no_lang_code', 1, 'https://ror.org/043agw178 TG Drives (Czechia)'),
(56599, 'https://ror.org/04pyjfp28', 'no_lang_code', 1, 'https://ror.org/04pyjfp28 Watrex (Czechia)'),
(56600, 'https://ror.org/0335xmv35', 'en', 1, 'https://ror.org/0335xmv35 Weed Science Society of America'),
(56601, 'https://ror.org/03pfa6e38', 'no_lang_code', 1, 'https://ror.org/03pfa6e38 TGS Nastroje-Stroje-Technologicke Sluzby (Czechia)'),
(56602, 'https://ror.org/05m135a87', 'no_lang_code', 1, 'https://ror.org/05m135a87 Wekus (Czechia)'),
(56603, 'https://ror.org/010ssmx53', 'en', 1, 'https://ror.org/010ssmx53 Prague Castle Správa Pražského Hradu'),
(56604, 'https://ror.org/00t8egy48', 'no_lang_code', 1, 'https://ror.org/00t8egy48 Thermona (Czechia)'),
(56605, 'https://ror.org/007gnnh23', 'no_lang_code', 1, 'https://ror.org/007gnnh23 Welltest (Czechia)'),
(56606, 'https://ror.org/05dart064', 'no_lang_code', 1, 'https://ror.org/05dart064 Továrna Hasicí Techniky Polička (Czechia)'),
(56607, 'https://ror.org/03ha1m790', 'no_lang_code', 1, 'https://ror.org/03ha1m790 Wienerberger (Czechia)'),
(56608, 'https://ror.org/00270m654', 'no_lang_code', 1, 'https://ror.org/00270m654 Wiesner Hager (Czechia)'),
(56609, 'https://ror.org/05ra0f154', 'no_lang_code', 1, 'https://ror.org/05ra0f154 TIRSO (Czechia)'),
(56610, 'https://ror.org/00p8gje40', 'no_lang_code', 1, 'https://ror.org/00p8gje40 Tiú-Plast (Czechia)'),
(56611, 'https://ror.org/025db4c72', 'no_lang_code', 1, 'https://ror.org/025db4c72 TLP (Czechia)'),
(56612, 'https://ror.org/04a2jrr93', 'no_lang_code', 1, 'https://ror.org/04a2jrr93 Wista (Czechia)'),
(56613, 'https://ror.org/00q6td368', 'no_lang_code', 1, 'https://ror.org/00q6td368 Wolf and Danniel (Czechia)'),
(56614, 'https://ror.org/006atkg72', 'no_lang_code', 1, 'https://ror.org/006atkg72 Wolfsberg Letecká Továrna (Czechia)'),
(56615, 'https://ror.org/02hg9fh47', 'no_lang_code', 1, 'https://ror.org/02hg9fh47 Univerza (Czechia)'),
(56616, 'https://ror.org/00dbv2r88', 'no_lang_code', 1, 'https://ror.org/00dbv2r88 Wombat (Czechia)'),
(56617, 'https://ror.org/039nme287', 'no_lang_code', 1, 'https://ror.org/039nme287 Woodcomp (Czechia)'),
(56618, 'https://ror.org/01g152h78', 'no_lang_code', 1, 'https://ror.org/01g152h78 TNS Servis (Czechia)'),
(56619, 'https://ror.org/05x13kz70', 'no_lang_code', 1, 'https://ror.org/05x13kz70 Workswell (Czechia)'),
(56620, 'https://ror.org/027z29k25', 'no_lang_code', 1, 'https://ror.org/027z29k25 UPS Technology (Czechia)'),
(56621, 'https://ror.org/03q3ejp70', 'no_lang_code', 1, 'https://ror.org/03q3ejp70 X Com Base (Czechia)'),
(56622, 'https://ror.org/02jkxh593', 'no_lang_code', 1, 'https://ror.org/02jkxh593 Tocoen (Czechia)'),
(56623, 'https://ror.org/00rcr5k60', 'no_lang_code', 1, 'https://ror.org/00rcr5k60 UpVision (Czechia)'),
(56624, 'https://ror.org/01pg8d938', 'no_lang_code', 1, 'https://ror.org/01pg8d938 X Therma'),
(56625, 'https://ror.org/02pp0vd17', 'no_lang_code', 1, 'https://ror.org/02pp0vd17 Toma (Czechia)'),
(56626, 'https://ror.org/05js6gq32', 'no_lang_code', 1, 'https://ror.org/05js6gq32 Urbanismus Architektura Design Studio (Czechia)'),
(56627, 'https://ror.org/046s0ap47', 'no_lang_code', 1, 'https://ror.org/046s0ap47 XT Card (Czechia)'),
(56628, 'https://ror.org/003rrdh33', 'no_lang_code', 1, 'https://ror.org/003rrdh33 Tomst (Czechia)'),
(56629, 'https://ror.org/05t4n3357', 'no_lang_code', 1, 'https://ror.org/05t4n3357 Ybux (Czechia)'),
(56630, 'https://ror.org/009d05f16', 'no_lang_code', 1, 'https://ror.org/009d05f16 Top - Modern (Czechia)'),
(56631, 'https://ror.org/04ffchc57', 'no_lang_code', 1, 'https://ror.org/04ffchc57 Top Alulit (Czechia)'),
(56632, 'https://ror.org/02xzfn017', 'no_lang_code', 1, 'https://ror.org/02xzfn017 Top-Bio (Czechia)'),
(56633, 'https://ror.org/00ptgc951', 'no_lang_code', 1, 'https://ror.org/00ptgc951 Zepo Bělohrad (Czechia)'),
(56634, 'https://ror.org/03enna516', 'no_lang_code', 1, 'https://ror.org/03enna516 Z Group Steel Holding (Czechia)'),
(56635, 'https://ror.org/01tmqyy34', 'no_lang_code', 1, 'https://ror.org/01tmqyy34 Zakládání Staveb (Czechia)'),
(56636, 'https://ror.org/00ecyj017', 'no_lang_code', 1, 'https://ror.org/00ecyj017 TOS Svitavy (Czechia)'),
(56637, 'https://ror.org/05jxt4a42', 'no_lang_code', 1, 'https://ror.org/05jxt4a42 Toseda (Czechia)'),
(56638, 'https://ror.org/036skbs59', 'cs', 1, 'https://ror.org/036skbs59 Základní Škola a Mateřská Škola Angel'),
(56639, 'https://ror.org/041d7vh36', 'no_lang_code', 1, 'https://ror.org/041d7vh36 Total (Czechia)'),
(56640, 'https://ror.org/00bdtcm28', 'en', 1, 'https://ror.org/00bdtcm28 Institute for State Control of Veterinary Biologicals and Medicines Ústav pro státní kontrolu veterinárních biopreparátů a léčiv'),
(56641, 'https://ror.org/00jcm9s26', 'cs', 1, 'https://ror.org/00jcm9s26 Toulcův Dvůr'),
(56642, 'https://ror.org/04bej5z04', 'no_lang_code', 1, 'https://ror.org/04bej5z04 Tovek (Czechia)'),
(56643, 'https://ror.org/018ryqx18', 'cs', 1, 'https://ror.org/018ryqx18 Základní škola Brno'),
(56644, 'https://ror.org/04ef3fk55', 'en', 1, 'https://ror.org/04ef3fk55 Institute for the Study of Totalitarian Regimes Ústav pro Studium Totalitních Režimů'),
(56645, 'https://ror.org/01dr2x580', 'cs', 1, 'https://ror.org/01dr2x580 Základní Škola Vachkova'),
(56646, 'https://ror.org/04cbqcv03', 'no_lang_code', 1, 'https://ror.org/04cbqcv03 Tpa Čr (Czechia)'),
(56647, 'https://ror.org/0021qzn44', 'cs', 1, 'https://ror.org/0021qzn44 Ústav Sportovní Medicíny'),
(56648, 'https://ror.org/02shpxe08', 'no_lang_code', 1, 'https://ror.org/02shpxe08 Transcon Electronic Systems (Czechia)'),
(56649, 'https://ror.org/04ys5fv56', 'cs', 1, 'https://ror.org/04ys5fv56 Západočeská Galerie v Plzni'),
(56650, 'https://ror.org/05j6a3y70', 'no_lang_code', 1, 'https://ror.org/05j6a3y70 ZAS Věž (Czechia)'),
(56651, 'https://ror.org/004542426', 'cs', 1, 'https://ror.org/004542426 Ústav T. G. Masaryka'),
(56652, 'https://ror.org/05vgxgc56', 'no_lang_code', 1, 'https://ror.org/05vgxgc56 Trask Solutions (Czechia)'),
(56653, 'https://ror.org/0258a5n35', 'en', 1, 'https://ror.org/0258a5n35 Institute for Spatial Development Ústav územního rozvoje'),
(56654, 'https://ror.org/04maqxw13', 'no_lang_code', 1, 'https://ror.org/04maqxw13 Tratec (Czechia)'),
(56655, 'https://ror.org/03xrsh834', 'no_lang_code', 1, 'https://ror.org/03xrsh834 Trendex Nova (Czechia)'),
(56656, 'https://ror.org/025dke180', 'no_lang_code', 1, 'https://ror.org/025dke180 Žatec (Czechia)'),
(56657, 'https://ror.org/02tfw2a59', 'no_lang_code', 1, 'https://ror.org/02tfw2a59 Trevos Kostalov (Czechia)'),
(56658, 'https://ror.org/02aa8pv85', 'no_lang_code', 1, 'https://ror.org/02aa8pv85 Ústav Využití Plynu (Czechia)'),
(56659, 'https://ror.org/03b364z86', 'no_lang_code', 1, 'https://ror.org/03b364z86 Trevos (Czechia)'),
(56660, 'https://ror.org/00t6k4c45', 'cs', 1, 'https://ror.org/00t6k4c45 ZD Krásná Hora Nad Vltavou (Czechia)'),
(56661, 'https://ror.org/045ykqf07', 'no_lang_code', 1, 'https://ror.org/045ykqf07 Triangolo (Czechia)'),
(56662, 'https://ror.org/01rrva872', 'en', 1, 'https://ror.org/01rrva872 Central Institute for Supervising and Testing in Agriculture Ústřední kontrolní a zkušební ústav zemědělský'),
(56663, 'https://ror.org/021sjh871', 'no_lang_code', 1, 'https://ror.org/021sjh871 TriFoil Imaging (United States)'),
(56664, 'https://ror.org/04e3nxf09', 'no_lang_code', 1, 'https://ror.org/04e3nxf09 Triga (Czechia)'),
(56665, 'https://ror.org/028gzd671', 'no_lang_code', 1, 'https://ror.org/028gzd671 Trigad (Czechia)'),
(56666, 'https://ror.org/019z0b657', 'no_lang_code', 1, 'https://ror.org/019z0b657 V-Projekt (Czechia)'),
(56667, 'https://ror.org/00a2crp77', 'no_lang_code', 1, 'https://ror.org/00a2crp77 ViDiS (Czechia)'),
(56668, 'https://ror.org/04pxnww65', 'no_lang_code', 1, 'https://ror.org/04pxnww65 TriloByte Statistical Software (Czechia)'),
(56669, 'https://ror.org/024s9tn87', 'no_lang_code', 1, 'https://ror.org/024s9tn87 Trimill (Czechia)'),
(56670, 'https://ror.org/01c2pab95', 'no_lang_code', 1, 'https://ror.org/01c2pab95 Vial (Norway)'),
(56671, 'https://ror.org/00716cx46', 'no_lang_code', 1, 'https://ror.org/00716cx46 VMK (Czechia)'),
(56672, 'https://ror.org/02pb4xx87', 'cs', 1, 'https://ror.org/02pb4xx87 Zdravotní Ústav Se Sídlem v Ústí nad Labem'),
(56673, 'https://ror.org/035qjfd74', 'no_lang_code', 1, 'https://ror.org/035qjfd74 Třinecký Inženýring (Czechia)'),
(56674, 'https://ror.org/03b3dd703', 'no_lang_code', 1, 'https://ror.org/03b3dd703 Trios (Czechia)'),
(56675, 'https://ror.org/05yq91m89', 'cs', 1, 'https://ror.org/05yq91m89 Zdravotnická Záchranná Služba Hlavního Města Prahy'),
(56676, 'https://ror.org/00wnsmv12', 'cs', 1, 'https://ror.org/00wnsmv12 Zdravotnická Záchranná Služba Jihočeského Kraje'),
(56677, 'https://ror.org/05rgkkt42', 'no_lang_code', 1, 'https://ror.org/05rgkkt42 Vafo Praha (Czechia)'),
(56678, 'https://ror.org/048dgbt58', 'no_lang_code', 1, 'https://ror.org/048dgbt58 Triton Turnov (Czechia)'),
(56679, 'https://ror.org/01y0rs066', 'cs', 1, 'https://ror.org/01y0rs066 Zdravotnická Záchranná Služba Královéhradeckého Kraje'),
(56680, 'https://ror.org/0450ydh81', 'no_lang_code', 1, 'https://ror.org/0450ydh81 Vakabrnocz (Czechia)'),
(56681, 'https://ror.org/01ey4aq86', 'no_lang_code', 1, 'https://ror.org/01ey4aq86 Trs (Czechia)'),
(56682, 'https://ror.org/04m08s625', 'no_lang_code', 1, 'https://ror.org/04m08s625 Vaklima (Czechia)'),
(56683, 'https://ror.org/02h4pfs82', 'en', 1, 'https://ror.org/02h4pfs82 Institute of Industrial Engineering'),
(56684, 'https://ror.org/030nks913', 'no_lang_code', 1, 'https://ror.org/030nks913 ZEAS Lysice (Czechia)'),
(56685, 'https://ror.org/006jv7t09', 'no_lang_code', 1, 'https://ror.org/006jv7t09 TSI System (Czechia)'),
(56686, 'https://ror.org/019h4w337', 'no_lang_code', 1, 'https://ror.org/019h4w337 Válcovna Trub (Czechia)'),
(56687, 'https://ror.org/00nq6zy28', 'no_lang_code', 1, 'https://ror.org/00nq6zy28 Zebr (Czechia)'),
(56688, 'https://ror.org/05rbqz184', 'no_lang_code', 1, 'https://ror.org/05rbqz184 Valeo (Czechia)'),
(56689, 'https://ror.org/03cnpnn47', 'no_lang_code', 1, 'https://ror.org/03cnpnn47 TT Servis (Czechia)'),
(56690, 'https://ror.org/01y5dqg31', 'no_lang_code', 1, 'https://ror.org/01y5dqg31 Zeelandia (Czechia)'),
(56691, 'https://ror.org/01356gm80', 'cs', 1, 'https://ror.org/01356gm80 Zelinářská unie Čech a Moravy'),
(56692, 'https://ror.org/04mcr1694', 'no_lang_code', 1, 'https://ror.org/04mcr1694 Walmark (Czechia)'),
(56693, 'https://ror.org/01xy5wy39', 'no_lang_code', 1, 'https://ror.org/01xy5wy39 Želivka (Czechia)'),
(56694, 'https://ror.org/04c5v7077', 'no_lang_code', 1, 'https://ror.org/04c5v7077 TTC Marconi (Czechia)'),
(56695, 'https://ror.org/024hftt26', 'no_lang_code', 1, 'https://ror.org/024hftt26 Zemědělské Družstvo Šitbořice (Czechia)'),
(56696, 'https://ror.org/02fmfgp89', 'no_lang_code', 1, 'https://ror.org/02fmfgp89 Termosondy Kladno (Czechia)'),
(56697, 'https://ror.org/02gkvw867', 'no_lang_code', 1, 'https://ror.org/02gkvw867 Zemcheba (Czechia)'),
(56698, 'https://ror.org/02atyww07', 'no_lang_code', 1, 'https://ror.org/02atyww07 TM Jesenice (Czechia)'),
(56699, 'https://ror.org/008rnfn31', 'no_lang_code', 1, 'https://ror.org/008rnfn31 TTS Group (Czechia)'),
(56700, 'https://ror.org/0534tk365', 'no_lang_code', 1, 'https://ror.org/0534tk365 Zemědělská a Dopravní Technika (Czechia)'),
(56701, 'https://ror.org/03tyvpq48', 'en', 1, 'https://ror.org/03tyvpq48 Prague Zoo Zoologická Zahrada'),
(56702, 'https://ror.org/02876kb37', 'no_lang_code', 1, 'https://ror.org/02876kb37 ZP Otice (Czechia)'),
(56703, 'https://ror.org/03x8v6f75', 'no_lang_code', 1, 'https://ror.org/03x8v6f75 Zemědělská Agentura (Czechia)'),
(56704, 'https://ror.org/04r8jnk80', 'no_lang_code', 1, 'https://ror.org/04r8jnk80 Sloveč (Czechia)'),
(56705, 'https://ror.org/05jngx315', 'no_lang_code', 1, 'https://ror.org/05jngx315 ZPA Smart Energy (Czechia)'),
(56706, 'https://ror.org/014r06x83', 'no_lang_code', 1, 'https://ror.org/014r06x83 ZPA Ekoreg (Czechia)'),
(56707, 'https://ror.org/018vhj234', 'no_lang_code', 1, 'https://ror.org/018vhj234 Turnex (Czechia)'),
(56708, 'https://ror.org/03q51sy36', 'no_lang_code', 1, 'https://ror.org/03q51sy36 ZPA Pecky (Czechia)'),
(56709, 'https://ror.org/01tp4m681', 'no_lang_code', 1, 'https://ror.org/01tp4m681 TÜV Nord (Czechia)'),
(56710, 'https://ror.org/01jhs2k85', 'no_lang_code', 1, 'https://ror.org/01jhs2k85 TVD Technická Výroba (Czechia)'),
(56711, 'https://ror.org/05wmvrv56', 'no_lang_code', 1, 'https://ror.org/05wmvrv56 Slezská Dubina (Czechia)'),
(56712, 'https://ror.org/03eeyeh88', 'cs', 1, 'https://ror.org/03eeyeh88 TyfloCentrum Brno'),
(56713, 'https://ror.org/04mhfc493', 'no_lang_code', 1, 'https://ror.org/04mhfc493 Agroholding (Czechia)'),
(56714, 'https://ror.org/01aej3c59', 'no_lang_code', 1, 'https://ror.org/01aej3c59 Tylex Letovice (Czechia)'),
(56715, 'https://ror.org/04b2kpa50', 'no_lang_code', 1, 'https://ror.org/04b2kpa50 Zemědělské družstvo Bašnice (Czechia)'),
(56716, 'https://ror.org/00jgvmv83', 'no_lang_code', 1, 'https://ror.org/00jgvmv83 ŽPSV (Czechia)'),
(56717, 'https://ror.org/05cpqn402', 'no_lang_code', 1, 'https://ror.org/05cpqn402 ZPT Vigantice (Czechia)'),
(56718, 'https://ror.org/0404zsw10', 'no_lang_code', 1, 'https://ror.org/0404zsw10 ZPV Rožnov (Czechia)'),
(56719, 'https://ror.org/034f13e71', 'no_lang_code', 1, 'https://ror.org/034f13e71 ŽSD (Czechia)'),
(56720, 'https://ror.org/05bb2ws56', 'no_lang_code', 1, 'https://ror.org/05bb2ws56 ZUD (Czechia)'),
(56721, 'https://ror.org/05q0yrx29', 'no_lang_code', 1, 'https://ror.org/05q0yrx29 ZVU (Czechia)'),
(56722, 'https://ror.org/011jzth85', 'no_lang_code', 1, 'https://ror.org/011jzth85 ZVU Kovárna (Czechia)'),
(56723, 'https://ror.org/01xjdvt46', 'no_lang_code', 1, 'https://ror.org/01xjdvt46 ZVVZ (Czechia)'),
(56724, 'https://ror.org/02q6y5t34', 'cs', 1, 'https://ror.org/02q6y5t34 Týmová iniciativa pro místní udržitelný rozvoj'),
(56725, 'https://ror.org/04wsg8a03', 'no_lang_code', 1, 'https://ror.org/04wsg8a03 U-24 (Czechia)'),
(56726, 'https://ror.org/05b3j8482', 'no_lang_code', 1, 'https://ror.org/05b3j8482 Unex (Czechia)'),
(56727, 'https://ror.org/04zkpdz50', 'no_lang_code', 1, 'https://ror.org/04zkpdz50 ZZN Pelhřimov (Czechia)'),
(56728, 'https://ror.org/05f3wa926', 'no_lang_code', 1, 'https://ror.org/05f3wa926 Unica Technologies (Czechia)'),
(56729, 'https://ror.org/02jmdhd96', 'no_lang_code', 1, 'https://ror.org/02jmdhd96 Unidataz (Czechia)'),
(56730, 'https://ror.org/01ddk2e73', 'cs', 1, 'https://ror.org/01ddk2e73 Zemědělské Družstvo Čechtice'),
(56731, 'https://ror.org/03ff02h25', 'no_lang_code', 1, 'https://ror.org/03ff02h25 Zemědělská a ekologická regionální agentura (Czechia)'),
(56732, 'https://ror.org/0422vfg55', 'cs', 1, 'https://ror.org/0422vfg55 Zemědělské Družstvo Dolany'),
(56733, 'https://ror.org/01rjx0g69', 'cs', 1, 'https://ror.org/01rjx0g69 Zemědělské Družstvo Jeseník'),
(56734, 'https://ror.org/01dx78504', 'no_lang_code', 1, 'https://ror.org/01dx78504 ZEZ Praha (Czechia)'),
(56735, 'https://ror.org/04gffqv96', 'no_lang_code', 1, 'https://ror.org/04gffqv96 ZF Engineering (Czechia)'),
(56736, 'https://ror.org/03429t854', 'cs', 1, 'https://ror.org/03429t854 Zemědělské Družstvo Kojčice'),
(56737, 'https://ror.org/02mfcc374', 'no_lang_code', 1, 'https://ror.org/02mfcc374 Živa (Czechia)'),
(56738, 'https://ror.org/02fwjaz02', 'cs', 1, 'https://ror.org/02fwjaz02 Život90'),
(56739, 'https://ror.org/045tder48', 'cs', 1, 'https://ror.org/045tder48 Zemědělské družstvo Liběšice'),
(56740, 'https://ror.org/00a9saw63', 'cs', 1, 'https://ror.org/00a9saw63 Zkušebna Kamene a Kameniva'),
(56741, 'https://ror.org/00cagd171', 'cs', 1, 'https://ror.org/00cagd171 Zemědělské Družstvo Maleč'),
(56742, 'https://ror.org/00g92jb54', 'no_lang_code', 1, 'https://ror.org/00g92jb54 Zlín Precision (Czechia)'),
(56743, 'https://ror.org/05515m078', 'no_lang_code', 1, 'https://ror.org/05515m078 Značky Plzeň (Czechia)'),
(56744, 'https://ror.org/0546ny985', 'en', 1, 'https://ror.org/0546ny985 Adriatic Research Institute'),
(56745, 'https://ror.org/047xr9y18', 'cs', 1, 'https://ror.org/047xr9y18 Znalecký Ústav Bezpečnosti a Ochrany Zdraví'),
(56746, 'https://ror.org/03bzwhy87', 'cs', 1, 'https://ror.org/03bzwhy87 Zemědělské Družstvo Vlastníků Mrákotín'),
(56747, 'https://ror.org/01gshs668', 'cs', 1, 'https://ror.org/01gshs668 Český Svaz Ochránců Přírody Vlašim'),
(56748, 'https://ror.org/030zp3k15', 'no_lang_code', 1, 'https://ror.org/030zp3k15 Zemědělské Družstvo Vrchovina (Czechia)'),
(56749, 'https://ror.org/044kfsb93', 'cs', 1, 'https://ror.org/044kfsb93 Zemědělské Obchodní Družstvo Kámen'),
(56750, 'https://ror.org/01ct6ew56', 'no_lang_code', 1, 'https://ror.org/01ct6ew56 ZONER software (Czechia)'),
(56751, 'https://ror.org/00fzxtk71', 'en', 1, 'https://ror.org/00fzxtk71 Joint Laboratory for Extreme Conditions Matter Properties 西南科技大学极端条件物质特性联合实验室'),
(56752, 'https://ror.org/04m55z708', 'no_lang_code', 1, 'https://ror.org/04m55z708 Zemos (Czechia)'),
(56753, 'https://ror.org/05ghvzc65', 'no_lang_code', 1, 'https://ror.org/05ghvzc65 Sanofi (Czechia)'),
(56754, 'https://ror.org/00me50c36', 'en', 1, 'https://ror.org/00me50c36 Avraham Y. Goldratt Institute'),
(56755, 'https://ror.org/01datx010', 'en', 1, 'https://ror.org/01datx010 Designability'),
(56756, 'https://ror.org/00e8pgs50', 'de', 1, 'https://ror.org/00e8pgs50 Beckmann-Institut für Technologieentwicklung'),
(56757, 'https://ror.org/01eb88c92', 'en', 1, 'https://ror.org/01eb88c92 Animal Health Institute'),
(56758, 'https://ror.org/05bhnv771', 'en', 1, 'https://ror.org/05bhnv771 Board Institute'),
(56759, 'https://ror.org/058kkmh35', 'en', 1, 'https://ror.org/058kkmh35 Asbestos Institute'),
(56760, 'https://ror.org/0493txn47', 'en', 1, 'https://ror.org/0493txn47 Canadian Energy Research Institute'),
(56761, 'https://ror.org/03md8p445', 'en', 1, 'https://ror.org/03md8p445 The Cancer Institute Hospital がん研有明病院'),
(56762, 'https://ror.org/05kk1a757', 'no_lang_code', 1, 'https://ror.org/05kk1a757 Daikin (United States) ダイキン工業株式会社'),
(56763, 'https://ror.org/0091pmq63', 'en', 1, 'https://ror.org/0091pmq63 DermaCare Neuroscience Institute'),
(56764, 'https://ror.org/04tshyq54', 'en', 1, 'https://ror.org/04tshyq54 Deutsches Institut für Zell und Gewebeersatz German Institute for Cell and Tissue Replacement'),
(56765, 'https://ror.org/041c3d085', 'en', 1, 'https://ror.org/041c3d085 JSC Scientific Research Institute of Motor Transport ОАО Научно-исследовательский институт автомобильного транспорта'),
(56766, 'https://ror.org/05smnbn20', 'no_lang_code', 1, 'https://ror.org/05smnbn20 Foerster (United States)'),
(56767, 'https://ror.org/04gam2n80', 'en', 1, 'https://ror.org/04gam2n80 Gravure Association of the Americas'),
(56768, 'https://ror.org/04mwbja62', 'en', 1, 'https://ror.org/04mwbja62 Guangzhou Special Pressure Equipment Testing and Research Institute 广州特种承压设备检测研究院'),
(56769, 'https://ror.org/0225cyg31', 'de', 1, 'https://ror.org/0225cyg31 Senatsverwaltung für Wirtschaft, Energie und Betriebe'),
(56770, 'https://ror.org/01a29cf93', 'de', 1, 'https://ror.org/01a29cf93 Institut für Industrielle Pharmazie'),
(56771, 'https://ror.org/02v8n3s74', 'en', 1, 'https://ror.org/02v8n3s74 Institute for Advanced Engineering 고급 공학 연구소'),
(56772, 'https://ror.org/051f1yf64', 'de', 1, 'https://ror.org/051f1yf64 Institut Kardiale Diagnostik und Therapie'),
(56773, 'https://ror.org/05v0k1d18', 'de', 1, 'https://ror.org/05v0k1d18 Institut für Korrosionsschutz Dresden'),
(56774, 'https://ror.org/05dad0z78', 'de', 1, 'https://ror.org/05dad0z78 ICM Chemnitz'),
(56775, 'https://ror.org/010c2f249', 'en', 1, 'https://ror.org/010c2f249 Institute of Electrodynamics Інститут електродинаміки НАН України'),
(56776, 'https://ror.org/019ngyx76', 'en', 1, 'https://ror.org/019ngyx76 Institute for Environmental Management'),
(56777, 'https://ror.org/043b3da62', 'es', 1, 'https://ror.org/043b3da62 Instituto Holográfico Terrasun Terrasun Holographic Institute'),
(56778, 'https://ror.org/02737yq40', 'en', 1, 'https://ror.org/02737yq40 Fesenkov Astrophysical Institute Астрофизический институт имени В. Г. Фесенкова'),
(56779, 'https://ror.org/04r6r5p42', 'az', 1, 'https://ror.org/04r6r5p42 Neft Kimya Prosesləri Institutu'),
(56780, 'https://ror.org/01cm3mn51', 'no_lang_code', 1, 'https://ror.org/01cm3mn51 Liaison Technologies (United States)'),
(56781, 'https://ror.org/01f15r266', 'en', 1, 'https://ror.org/01f15r266 Inha University in Tashkent Toshkent Shahridagi Inha Universiteti'),
(56782, 'https://ror.org/05d1wpf45', 'en', 1, 'https://ror.org/05d1wpf45 Islamic Azad University, Dezful Branch دانشگاه آزاد اسلامی، دزفول'),
(56783, 'https://ror.org/03sxhq344', 'pl', 1, 'https://ror.org/03sxhq344 Instytut Innowacji Przemysłu Mleczarskiego'),
(56784, 'https://ror.org/05qp2sp52', 'en', 1, 'https://ror.org/05qp2sp52 Beijing Dongfang Hongsheng New Energy Application Technology Research Institute 北京东方红升新能源应用技术研究院有限公司简介'),
(56785, 'https://ror.org/030qj9p34', 'no_lang_code', 1, 'https://ror.org/030qj9p34 Čisté Kovy (Czechia)'),
(56786, 'https://ror.org/04ve9h794', 'no_lang_code', 1, 'https://ror.org/04ve9h794 Bernard (Czechia)'),
(56787, 'https://ror.org/03d013e69', 'no_lang_code', 1, 'https://ror.org/03d013e69 Ipra (Czechia)'),
(56788, 'https://ror.org/03b9ne411', 'no_lang_code', 1, 'https://ror.org/03b9ne411 VH Pharma (Czechia)'),
(56789, 'https://ror.org/04h006113', 'pt', 1, 'https://ror.org/04h006113 Instituto Sapientia'),
(56790, 'https://ror.org/04hp0zc29', 'en', 1, 'https://ror.org/04hp0zc29 Institut für Telematik Institute for Telematics'),
(56791, 'https://ror.org/03pkbp732', 'en', 1, 'https://ror.org/03pkbp732 Brick and Tile Research Institute Institut für Ziegelforschung Essen e. V.'),
(56792, 'https://ror.org/00emm5t38', 'en', 1, 'https://ror.org/00emm5t38 The International Heart Institute of Montana'),
(56793, 'https://ror.org/00wfp9c14', 'pt', 1, 'https://ror.org/00wfp9c14 Instituto de Pesquisas da Marinha'),
(56794, 'https://ror.org/03p2b2376', 'en', 1, 'https://ror.org/03p2b2376 Laser Spine Institute'),
(56795, 'https://ror.org/03xpstx66', 'en', 1, 'https://ror.org/03xpstx66 Korea Testing & Research Institute 한국화학융합시험연구원'),
(56796, 'https://ror.org/02cxqcz78', 'en', 1, 'https://ror.org/02cxqcz78 Korean Institute of Footwear and Leather Technology 한국신발피혁연구원'),
(56797, 'https://ror.org/05923xh51', 'en', 1, 'https://ror.org/05923xh51 Ludwig Cancer Research'),
(56798, 'https://ror.org/02vq4f039', 'no_lang_code', 1, 'https://ror.org/02vq4f039 Mitsubishi Research Institute (Japan) 三菱総合研究所'),
(56799, 'https://ror.org/02c2fwh71', 'en', 1, 'https://ror.org/02c2fwh71 Molecular Medicine Research Institute'),
(56800, 'https://ror.org/04pdw9n09', 'en', 1, 'https://ror.org/04pdw9n09 Medipolis Medical Research Institute'),
(56801, 'https://ror.org/04s36mr71', 'en', 1, 'https://ror.org/04s36mr71 Northeast Maritime Institute'),
(56802, 'https://ror.org/03bqmms96', 'en', 1, 'https://ror.org/03bqmms96 Southern African Institute of Mining and Metallurgy'),
(56803, 'https://ror.org/0483kh086', 'en', 1, 'https://ror.org/0483kh086 Ukrainian Oil and Gas Institute Ukrainsky neftegazovy institut'),
(56804, 'https://ror.org/007fdqr82', 'no_lang_code', 1, 'https://ror.org/007fdqr82 Kemira (Germany)'),
(56805, 'https://ror.org/02q5hpt66', 'en', 1, 'https://ror.org/02q5hpt66 Shazhou Professional Institute Of Technology 沙洲职业工学院'),
(56806, 'https://ror.org/02jtr7413', 'no_lang_code', 1, 'https://ror.org/02jtr7413 Takasago (United States)'),
(56807, 'https://ror.org/03ycssf34', 'no_lang_code', 1, 'https://ror.org/03ycssf34 ArcelorMittal (United States)'),
(56808, 'https://ror.org/02v6ch155', 'en', 1, 'https://ror.org/02v6ch155 Steel Tank Institute'),
(56809, 'https://ror.org/00y3jnz30', 'en', 1, 'https://ror.org/00y3jnz30 Huaneng Clean Energy Research Institute 清洁能源技术研究院有限公司'),
(56810, 'https://ror.org/04sqxkj61', 'no_lang_code', 1, 'https://ror.org/04sqxkj61 Business Innovation Center (Bulgaria)'),
(56811, 'https://ror.org/059g52507', 'no_lang_code', 1, 'https://ror.org/059g52507 3Bar Biologics (United States)'),
(56812, 'https://ror.org/04sgcdd21', 'no_lang_code', 1, 'https://ror.org/04sgcdd21 Accelerated Ag Technologies (United States)'),
(56813, 'https://ror.org/008trbj46', 'no_lang_code', 1, 'https://ror.org/008trbj46 Aging Community Coordinated Enterprises and Supportive Services (United States)'),
(56814, 'https://ror.org/04zgrks73', 'no_lang_code', 1, 'https://ror.org/04zgrks73 Access Sensor Technologies (United States)'),
(56815, 'https://ror.org/03xt1x768', 'en', 1, 'https://ror.org/03xt1x768 State Key Laboratory of Oncogene and Related Genes 癌基因及相关基因国家重点实验室'),
(56816, 'https://ror.org/00re71s87', 'en', 1, 'https://ror.org/00re71s87 Advanced Heliophysics'),
(56817, 'https://ror.org/012a3nb13', 'no_lang_code', 1, 'https://ror.org/012a3nb13 Aeolis Research (United States)'),
(56818, 'https://ror.org/00hg21s64', 'no_lang_code', 1, 'https://ror.org/00hg21s64 AgraTek (United States)'),
(56819, 'https://ror.org/0369xey85', 'no_lang_code', 1, 'https://ror.org/0369xey85 Agren (United States)'),
(56820, 'https://ror.org/02mtem749', 'no_lang_code', 1, 'https://ror.org/02mtem749 Airfoils (United States)'),
(56821, 'https://ror.org/0205xz563', 'en', 1, 'https://ror.org/0205xz563 State Key Laboratory of Plant Genomics 植物基因组学国家重点实验室'),
(56822, 'https://ror.org/02zedqe26', 'no_lang_code', 1, 'https://ror.org/02zedqe26 AlgaXperts (United States)'),
(56823, 'https://ror.org/043534r75', 'en', 1, 'https://ror.org/043534r75 Alliance of Community Assistance Ministries'),
(56824, 'https://ror.org/010s15j79', 'en', 1, 'https://ror.org/010s15j79 Calypso Farm and Ecology Center'),
(56825, 'https://ror.org/04fr05v05', 'en', 1, 'https://ror.org/04fr05v05 Carolina Farm Stewardship Association'),
(56826, 'https://ror.org/04v4gsn35', 'no_lang_code', 1, 'https://ror.org/04v4gsn35 Allyke (United States)'),
(56827, 'https://ror.org/0553gct64', 'no_lang_code', 1, 'https://ror.org/0553gct64 Catalina Sea Ranch (United States)'),
(56828, 'https://ror.org/04dr38k67', 'no_lang_code', 1, 'https://ror.org/04dr38k67 Alpha Space Test and Research Alliance (United States)'),
(56829, 'https://ror.org/00kg1dd44', 'en', 1, 'https://ror.org/00kg1dd44 The American Chestnut Foundation'),
(56830, 'https://ror.org/01ccqrj78', 'en', 1, 'https://ror.org/01ccqrj78 American Olive Oil Producers Association'),
(56831, 'https://ror.org/01tra1r17', 'no_lang_code', 1, 'https://ror.org/01tra1r17 American Solar (United States)'),
(56832, 'https://ror.org/02fyz1125', 'no_lang_code', 1, 'https://ror.org/02fyz1125 AmeriQual Group (United States)'),
(56833, 'https://ror.org/05rngf387', 'en', 1, 'https://ror.org/05rngf387 Ear and Balance Institute'),
(56834, 'https://ror.org/05ddm8177', 'en', 1, 'https://ror.org/05ddm8177 Center of Southwest Culture'),
(56835, 'https://ror.org/05yas2736', 'nl', 1, 'https://ror.org/05yas2736 Nederlands Oogheelkundig Onderzoek'),
(56836, 'https://ror.org/05kg16203', 'en', 1, 'https://ror.org/05kg16203 Center Of Theological Inquiry'),
(56837, 'https://ror.org/02rkywr68', 'no_lang_code', 1, 'https://ror.org/02rkywr68 Annidis (Canada)'),
(56838, 'https://ror.org/023w52n18', 'no_lang_code', 1, 'https://ror.org/023w52n18 EarthDance'),
(56839, 'https://ror.org/04dc5j714', 'no_lang_code', 1, 'https://ror.org/04dc5j714 Antimicrobial Materials (United States)'),
(56840, 'https://ror.org/045g9rz48', 'no_lang_code', 1, 'https://ror.org/045g9rz48 Applied Coherent Technology (United States)'),
(56841, 'https://ror.org/0037kdt92', 'no_lang_code', 1, 'https://ror.org/0037kdt92 Aptimmune Biologics (United States)'),
(56842, 'https://ror.org/02hdsgf16', 'no_lang_code', 1, 'https://ror.org/02hdsgf16 Cereon Biotechnology (United States)'),
(56843, 'https://ror.org/04pm9rq79', 'no_lang_code', 1, 'https://ror.org/04pm9rq79 Ceres Imaging (United States)'),
(56844, 'https://ror.org/01km6z968', 'en', 1, 'https://ror.org/01km6z968 Arcadia'),
(56845, 'https://ror.org/028xfa567', 'en', 1, 'https://ror.org/028xfa567 Arkansas Hunger Relief Alliance'),
(56846, 'https://ror.org/00b6h7f51', 'en', 1, 'https://ror.org/00b6h7f51 Economic Development Commission of Floridas Space Coast'),
(56847, 'https://ror.org/03zp7y418', 'en', 1, 'https://ror.org/03zp7y418 McAuliffe-Shepard Discovery Center'),
(56848, 'https://ror.org/04r0vb371', 'no_lang_code', 1, 'https://ror.org/04r0vb371 Asilomar Bio (United States)'),
(56849, 'https://ror.org/00x9jsn18', 'en', 1, 'https://ror.org/00x9jsn18 EdVenture'),
(56850, 'https://ror.org/024p2bs62', 'en', 1, 'https://ror.org/024p2bs62 City Schoolyard Garden'),
(56851, 'https://ror.org/04m281x40', 'no_lang_code', 1, 'https://ror.org/04m281x40 Clairvoyant Technology (United States)'),
(56852, 'https://ror.org/02nx6st79', 'no_lang_code', 1, 'https://ror.org/02nx6st79 Eloret (United States)'),
(56853, 'https://ror.org/04fdch955', 'no_lang_code', 1, 'https://ror.org/04fdch955 Clean Energy (United States)'),
(56854, 'https://ror.org/01pbm8h26', 'no_lang_code', 1, 'https://ror.org/01pbm8h26 ClearSign Combustion (United States)'),
(56855, 'https://ror.org/00da4yk20', 'en', 1, 'https://ror.org/00da4yk20 Association of Africans Living in Vermont'),
(56856, 'https://ror.org/05f5ptb49', 'no_lang_code', 1, 'https://ror.org/05f5ptb49 CBS Corporation (United States)'),
(56857, 'https://ror.org/04pn65m27', 'no_lang_code', 1, 'https://ror.org/04pn65m27 Eltopia Communications (United States)'),
(56858, 'https://ror.org/05n0new61', 'no_lang_code', 1, 'https://ror.org/05n0new61 Enterade (United States)'),
(56859, 'https://ror.org/020rm3x22', 'en', 1, 'https://ror.org/020rm3x22 Community EnCompass'),
(56860, 'https://ror.org/01qfzbz52', 'en', 1, 'https://ror.org/01qfzbz52 College of the Muscogee Nation'),
(56861, 'https://ror.org/016q8y748', 'no_lang_code', 1, 'https://ror.org/016q8y748 Bilcare Research (United States)'),
(56862, 'https://ror.org/05s4v9088', 'no_lang_code', 1, 'https://ror.org/05s4v9088 BioChemInsights (United States)'),
(56863, 'https://ror.org/029nby494', 'no_lang_code', 1, 'https://ror.org/029nby494 Epicrop Technologies (United States)');
INSERT INTO `rors` VALUES
(56864, 'https://ror.org/039vvd931', 'en', 1, 'https://ror.org/039vvd931 Community Action Agency of St. Louis County'),
(56865, 'https://ror.org/02mf43q40', 'en', 1, 'https://ror.org/02mf43q40 Community Action of Skagit County'),
(56866, 'https://ror.org/03w1ne740', 'en', 1, 'https://ror.org/03w1ne740 Community Alliance with Family Farmers'),
(56867, 'https://ror.org/054vyqa42', 'sv', 1, 'https://ror.org/054vyqa42 Sven och Dagmar Salén Stiftelse'),
(56868, 'https://ror.org/03g9fv045', 'en', 1, 'https://ror.org/03g9fv045 Community Food and Agriculture Coalition'),
(56869, 'https://ror.org/055y0va06', 'sv', 1, 'https://ror.org/055y0va06 Jerringfonden'),
(56870, 'https://ror.org/008c8w304', 'no_lang_code', 1, 'https://ror.org/008c8w304 BotaniPharm (United States)'),
(56871, 'https://ror.org/05feyk235', 'en', 1, 'https://ror.org/05feyk235 Comparative Aircraft Flight Efficiency Foundation'),
(56872, 'https://ror.org/03fcyc593', 'no_lang_code', 1, 'https://ror.org/03fcyc593 Concurrent Solutions (United States)'),
(56873, 'https://ror.org/02afgrw28', 'no_lang_code', 1, 'https://ror.org/02afgrw28 BrioBiotech (United States)'),
(56874, 'https://ror.org/02ghcyg39', 'en', 1, 'https://ror.org/02ghcyg39 Läkemedelsakademin Swedish Academy of Pharmaceutical Sciences'),
(56875, 'https://ror.org/05j1paw03', 'en', 1, 'https://ror.org/05j1paw03 Conference of Research Workers in Animal Diseases'),
(56876, 'https://ror.org/05g9y6w44', 'no_lang_code', 1, 'https://ror.org/05g9y6w44 Connecting Health Innovations (United States)'),
(56877, 'https://ror.org/04m8am631', 'no_lang_code', 1, 'https://ror.org/04m8am631 eWind Solutions (United States)'),
(56878, 'https://ror.org/0032wbe47', 'no_lang_code', 1, 'https://ror.org/0032wbe47 Exosome Diagnostics (United States)'),
(56879, 'https://ror.org/055hhfr85', 'en', 1, 'https://ror.org/055hhfr85 Cornell Cooperative Extension Association of Jefferson County'),
(56880, 'https://ror.org/031aht432', 'no_lang_code', 1, 'https://ror.org/031aht432 ExoTerra Resources (United States)'),
(56881, 'https://ror.org/01pvt8a36', 'en', 1, 'https://ror.org/01pvt8a36 Experimental Station'),
(56882, 'https://ror.org/02g867t84', 'no_lang_code', 1, 'https://ror.org/02g867t84 Impact Instruments (South Africa)'),
(56883, 'https://ror.org/05snsev90', 'en', 1, 'https://ror.org/05snsev90 Cornell Cooperative Extension Sullivan County'),
(56884, 'https://ror.org/01m61nc85', 'en', 1, 'https://ror.org/01m61nc85 Exploration Place'),
(56885, 'https://ror.org/01p1h7798', 'no_lang_code', 1, 'https://ror.org/01p1h7798 Harry Saul Minnow Farm (United States)'),
(56886, 'https://ror.org/01sqsqt89', 'no_lang_code', 1, 'https://ror.org/01sqsqt89 Cottage Systems (United States)'),
(56887, 'https://ror.org/02hv5e369', 'no_lang_code', 1, 'https://ror.org/02hv5e369 Roche (China)'),
(56888, 'https://ror.org/00qa5z221', 'en', 1, 'https://ror.org/00qa5z221 Hart Community Homes'),
(56889, 'https://ror.org/01eqtac57', 'no_lang_code', 1, 'https://ror.org/01eqtac57 Crabtree (United States)'),
(56890, 'https://ror.org/04re16484', 'en', 1, 'https://ror.org/04re16484 Farmer Veteran Coalition'),
(56891, 'https://ror.org/023kj5402', 'no_lang_code', 1, 'https://ror.org/023kj5402 Craig Technologies (United States)'),
(56892, 'https://ror.org/00s1r6f43', 'en', 1, 'https://ror.org/00s1r6f43 Fayette County Community Action Agency'),
(56893, 'https://ror.org/04y8ye406', 'en', 1, 'https://ror.org/04y8ye406 Harvest Home Farmer’s Market'),
(56894, 'https://ror.org/03ytvxz34', 'en', 1, 'https://ror.org/03ytvxz34 Crossroads Community Food Network'),
(56895, 'https://ror.org/042x2ns13', 'en', 1, 'https://ror.org/042x2ns13 Field and Fork Network'),
(56896, 'https://ror.org/038v7k315', 'en', 1, 'https://ror.org/038v7k315 Hawthorne Valley Association'),
(56897, 'https://ror.org/043m6pv20', 'en', 1, 'https://ror.org/043m6pv20 DC Central Kitchen'),
(56898, 'https://ror.org/01xc6q930', 'no_lang_code', 1, 'https://ror.org/01xc6q930 Florida Maxima (United States)'),
(56899, 'https://ror.org/01xxyhd49', 'no_lang_code', 1, 'https://ror.org/01xxyhd49 Hazel Technologies (United States)'),
(56900, 'https://ror.org/03ky6bg94', 'en', 1, 'https://ror.org/03ky6bg94 Food Bank of Northeast Georgia'),
(56901, 'https://ror.org/04dg8np90', 'en', 1, 'https://ror.org/04dg8np90 Food Basket (United States)'),
(56902, 'https://ror.org/035jj1q51', 'no_lang_code', 1, 'https://ror.org/035jj1q51 Heartland Plant Innovations (United States)'),
(56903, 'https://ror.org/05tv0zk25', 'en', 1, 'https://ror.org/05tv0zk25 The Food Group'),
(56904, 'https://ror.org/033bpfz21', 'no_lang_code', 1, 'https://ror.org/033bpfz21 Deep Space Industries (United States)'),
(56905, 'https://ror.org/007vffa52', 'no_lang_code', 1, 'https://ror.org/007vffa52 Foodlink'),
(56906, 'https://ror.org/05v4v2w58', 'en', 1, 'https://ror.org/05v4v2w58 Hebron Theological College'),
(56907, 'https://ror.org/006c4xb83', 'en', 1, 'https://ror.org/006c4xb83 Foundation for Agricultural and Rural Resource Management and Sustainability'),
(56908, 'https://ror.org/05j6b7w15', 'no_lang_code', 1, 'https://ror.org/05j6b7w15 Foundation Instruments (United States)'),
(56909, 'https://ror.org/0257x6t90', 'en', 1, 'https://ror.org/0257x6t90 Delta Water Management Research Unit'),
(56910, 'https://ror.org/05bcrb290', 'en', 1, 'https://ror.org/05bcrb290 Franklinton Gardens'),
(56911, 'https://ror.org/02m1c9x13', 'no_lang_code', 1, 'https://ror.org/02m1c9x13 Kellogg’s Research Labs (United States)'),
(56912, 'https://ror.org/01tphyy47', 'en', 1, 'https://ror.org/01tphyy47 Gagarin Research and Test Cosmonaut Training Center Центр подготовки космонавтов имени Ю. А. Гагарина'),
(56913, 'https://ror.org/02yv37y71', 'en', 1, 'https://ror.org/02yv37y71 Dunn''s Fish Farm'),
(56914, 'https://ror.org/04wjnw514', 'en', 1, 'https://ror.org/04wjnw514 Kona Pacific Public Charter School'),
(56915, 'https://ror.org/03ymtvg12', 'no_lang_code', 1, 'https://ror.org/03ymtvg12 Garner Industries (United States)'),
(56916, 'https://ror.org/04q0q2e16', 'en', 1, 'https://ror.org/04q0q2e16 Gateway Greening'),
(56917, 'https://ror.org/02zwrab63', 'no_lang_code', 1, 'https://ror.org/02zwrab63 ePaint (United States)'),
(56918, 'https://ror.org/049p61e38', 'en', 1, 'https://ror.org/049p61e38 Lantern Community Services'),
(56919, 'https://ror.org/00b3qfx47', 'no_lang_code', 1, 'https://ror.org/00b3qfx47 Larad (United States)'),
(56920, 'https://ror.org/006j60y94', 'no_lang_code', 1, 'https://ror.org/006j60y94 GeoControl Systems (United States)'),
(56921, 'https://ror.org/04rahxj70', 'en', 1, 'https://ror.org/04rahxj70 Arkansas Land and Community Development'),
(56922, 'https://ror.org/01xtnj706', 'no_lang_code', 1, 'https://ror.org/01xtnj706 Latitude Engineering (United States)'),
(56923, 'https://ror.org/01xfxak12', 'no_lang_code', 1, 'https://ror.org/01xfxak12 Hill Manufacturing (United States)'),
(56924, 'https://ror.org/017hkkd29', 'en', 1, 'https://ror.org/017hkkd29 Leadership for Urban Renewal Network'),
(56925, 'https://ror.org/05e1aft90', 'en', 1, 'https://ror.org/05e1aft90 Hmong American Farmers Association'),
(56926, 'https://ror.org/00hg0yg56', 'en', 1, 'https://ror.org/00hg0yg56 Gleaners Food Bank of Indiana'),
(56927, 'https://ror.org/02amm2b67', 'no_lang_code', 1, 'https://ror.org/02amm2b67 Global Algae Innovations (United States)'),
(56928, 'https://ror.org/03m6q2j85', 'en', 1, 'https://ror.org/03m6q2j85 Ho Chunk Community Development Corporation'),
(56929, 'https://ror.org/04sz6yt35', 'en', 1, 'https://ror.org/04sz6yt35 Level Playing Field Institute'),
(56930, 'https://ror.org/00671p325', 'en', 1, 'https://ror.org/00671p325 Honey Bee Research Institute and Nature Center'),
(56931, 'https://ror.org/0504frq03', 'en', 1, 'https://ror.org/0504frq03 Global Growers'),
(56932, 'https://ror.org/010vrw806', 'no_lang_code', 1, 'https://ror.org/010vrw806 GMEP Engineers (United States)'),
(56933, 'https://ror.org/01sfj0e28', 'en', 1, 'https://ror.org/01sfj0e28 Live Well Colorado'),
(56934, 'https://ror.org/03zyvg021', 'en', 1, 'https://ror.org/03zyvg021 Horizon Performance'),
(56935, 'https://ror.org/04vrse873', 'no_lang_code', 1, 'https://ror.org/04vrse873 Grafted Growers (United States)'),
(56936, 'https://ror.org/02drx6g21', 'en', 1, 'https://ror.org/02drx6g21 The Local Crowd'),
(56937, 'https://ror.org/01nw9t679', 'en', 1, 'https://ror.org/01nw9t679 Horn Canna Farm'),
(56938, 'https://ror.org/05wng9697', 'en', 1, 'https://ror.org/05wng9697 Greening of Detroit'),
(56939, 'https://ror.org/05wqf0473', 'no_lang_code', 1, 'https://ror.org/05wqf0473 Gross Wen Technologies (United States)'),
(56940, 'https://ror.org/00rnjkw50', 'en', 1, 'https://ror.org/00rnjkw50 Huerta del Valle'),
(56941, 'https://ror.org/01rkjqk76', 'en', 1, 'https://ror.org/01rkjqk76 Local Food Hub'),
(56942, 'https://ror.org/022k30226', 'en', 1, 'https://ror.org/022k30226 Local Matters'),
(56943, 'https://ror.org/02a03v538', 'en', 1, 'https://ror.org/02a03v538 The Harley School'),
(56944, 'https://ror.org/00v5n6851', 'no_lang_code', 1, 'https://ror.org/00v5n6851 Malin Space Science Systems (United States)'),
(56945, 'https://ror.org/02d641m75', 'fr', 1, 'https://ror.org/02d641m75 Télévie'),
(56946, 'https://ror.org/05hehnx86', 'en', 1, 'https://ror.org/05hehnx86 Hunger Task Force'),
(56947, 'https://ror.org/05jtrhd14', 'en', 1, 'https://ror.org/05jtrhd14 Department of Early Education and Care'),
(56948, 'https://ror.org/010wkhc71', 'en', 1, 'https://ror.org/010wkhc71 MEF Associates'),
(56949, 'https://ror.org/004j18068', 'no_lang_code', 1, 'https://ror.org/004j18068 ILC Dover (United States)'),
(56950, 'https://ror.org/057mm6758', 'no_lang_code', 1, 'https://ror.org/057mm6758 MEI Technologies (United States)'),
(56951, 'https://ror.org/02xx53s78', 'no_lang_code', 1, 'https://ror.org/02xx53s78 Membrane Protective Technologies (United States)'),
(56952, 'https://ror.org/018whpc62', 'no_lang_code', 1, 'https://ror.org/018whpc62 MEP Equine Solutions (United States)'),
(56953, 'https://ror.org/02tbvs543', 'no_lang_code', 1, 'https://ror.org/02tbvs543 Indigo Information Services (United States)'),
(56954, 'https://ror.org/0294hqc16', 'no_lang_code', 1, 'https://ror.org/0294hqc16 LZ Technology (United States)'),
(56955, 'https://ror.org/05qepn613', 'no_lang_code', 1, 'https://ror.org/05qepn613 Merrill (United States)'),
(56956, 'https://ror.org/0304fdb16', 'no_lang_code', 1, 'https://ror.org/0304fdb16 Infinite Eversole Specialty Crop Services (United states)'),
(56957, 'https://ror.org/022vfzj49', 'no_lang_code', 1, 'https://ror.org/022vfzj49 mAbDx (United States)'),
(56958, 'https://ror.org/022dzrb13', 'no_lang_code', 1, 'https://ror.org/022dzrb13 InnovaSea Systems (United States)'),
(56959, 'https://ror.org/049yngf89', 'no_lang_code', 1, 'https://ror.org/049yngf89 Made In Space (United States)'),
(56960, 'https://ror.org/048f13k87', 'no_lang_code', 1, 'https://ror.org/048f13k87 Inquiry Technologies (United States)'),
(56961, 'https://ror.org/02ew8y783', 'no_lang_code', 1, 'https://ror.org/02ew8y783 Magnetic Development (United States)'),
(56962, 'https://ror.org/01zrfm954', 'en', 1, 'https://ror.org/01zrfm954 Mid Ohio Foodbank'),
(56963, 'https://ror.org/04z9gtp37', 'no_lang_code', 1, 'https://ror.org/04z9gtp37 Integrated Concurrent Systems Associates (United States)'),
(56964, 'https://ror.org/02rkz3z54', 'no_lang_code', 1, 'https://ror.org/02rkz3z54 Phytosynthetix (United States)'),
(56965, 'https://ror.org/03nffrn19', 'en', 1, 'https://ror.org/03nffrn19 Niagara County'),
(56966, 'https://ror.org/00tcg9r48', 'en', 1, 'https://ror.org/00tcg9r48 Pinnacle Prevention'),
(56967, 'https://ror.org/0403nr398', 'en', 1, 'https://ror.org/0403nr398 Presbyterian Healthcare Services'),
(56968, 'https://ror.org/03t1z6m58', 'en', 1, 'https://ror.org/03t1z6m58 Central Scientific Research Diesel Institute Центральный научно-исследовательский дизельный институт'),
(56969, 'https://ror.org/05m7ng931', 'en', 1, 'https://ror.org/05m7ng931 Professional Beef Services'),
(56970, 'https://ror.org/01xves834', 'no_lang_code', 1, 'https://ror.org/01xves834 IRISNDT (United States)'),
(56971, 'https://ror.org/037e0dj26', 'no_lang_code', 1, 'https://ror.org/037e0dj26 Professional Solutions (United States)'),
(56972, 'https://ror.org/05mspvn40', 'no_lang_code', 1, 'https://ror.org/05mspvn40 Isuzu Motors (United States)'),
(56973, 'https://ror.org/00rb4m505', 'en', 1, 'https://ror.org/00rb4m505 The Nurture Nature Center'),
(56974, 'https://ror.org/0536ez586', 'no_lang_code', 1, 'https://ror.org/0536ez586 NWB Sensors (United States)'),
(56975, 'https://ror.org/02kqef212', 'en', 1, 'https://ror.org/02kqef212 Spark Imagination and Science Center'),
(56976, 'https://ror.org/00s4b3607', 'no_lang_code', 1, 'https://ror.org/00s4b3607 J M Malone and Son (United States)'),
(56977, 'https://ror.org/029pg7f58', 'no_lang_code', 1, 'https://ror.org/029pg7f58 Oculogica (United States)'),
(56978, 'https://ror.org/01c5qhp69', 'no_lang_code', 1, 'https://ror.org/01c5qhp69 SciGlob (United States)'),
(56979, 'https://ror.org/05bh15594', 'no_lang_code', 1, 'https://ror.org/05bh15594 Odysea (United States)'),
(56980, 'https://ror.org/00ns9df65', 'no_lang_code', 1, 'https://ror.org/00ns9df65 Seattle Photonics Associates (United States)'),
(56981, 'https://ror.org/017bbk264', 'en', 1, 'https://ror.org/017bbk264 Ohio Ecological Food and Farm Association'),
(56982, 'https://ror.org/04x7s4297', 'no_lang_code', 1, 'https://ror.org/04x7s4297 Chart Industries (United States)'),
(56983, 'https://ror.org/05k1j1x39', 'no_lang_code', 1, 'https://ror.org/05k1j1x39 JES Tech (United States)'),
(56984, 'https://ror.org/025506c66', 'no_lang_code', 1, 'https://ror.org/025506c66 Smart Vision Works International (United States)'),
(56985, 'https://ror.org/04v51kr79', 'en', 1, 'https://ror.org/04v51kr79 Ola Grimsby Institute'),
(56986, 'https://ror.org/05yjjky95', 'no_lang_code', 1, 'https://ror.org/05yjjky95 One Resonance Sensors (United States)'),
(56987, 'https://ror.org/03247gm88', 'no_lang_code', 1, 'https://ror.org/03247gm88 Solidtech Animal Health (United States)'),
(56988, 'https://ror.org/03hd5ck45', 'en', 1, 'https://ror.org/03hd5ck45 Rochester Roots'),
(56989, 'https://ror.org/05pw2f159', 'en', 1, 'https://ror.org/05pw2f159 Somali Bantu Community Association of Maine'),
(56990, 'https://ror.org/00pw0tx86', 'en', 1, 'https://ror.org/00pw0tx86 Open Source Robotics Foundation'),
(56991, 'https://ror.org/02bhr4m87', 'en', 1, 'https://ror.org/02bhr4m87 Rodale Institute'),
(56992, 'https://ror.org/00r36q916', 'no_lang_code', 1, 'https://ror.org/00r36q916 Sonomotion (United States)'),
(56993, 'https://ror.org/01ppth096', 'en', 1, 'https://ror.org/01ppth096 Opportunity Link'),
(56994, 'https://ror.org/019qmfe51', 'en', 1, 'https://ror.org/019qmfe51 South Central Community Action Programs'),
(56995, 'https://ror.org/05ezypx20', 'en', 1, 'https://ror.org/05ezypx20 Southeast Island School District'),
(56996, 'https://ror.org/011x9em51', 'en', 1, 'https://ror.org/011x9em51 Southern Appalachian Highlands Conservancy'),
(56997, 'https://ror.org/04634r813', 'en', 1, 'https://ror.org/04634r813 Southwest Badger Resource Conservation and Development Council'),
(56998, 'https://ror.org/03rr2e670', 'no_lang_code', 1, 'https://ror.org/03rr2e670 STS International'),
(56999, 'https://ror.org/03bwbnb24', 'en', 1, 'https://ror.org/03bwbnb24 Southwestern Community College - North Carolina'),
(57000, 'https://ror.org/00pqvxn28', 'no_lang_code', 1, 'https://ror.org/00pqvxn28 ORB Studio (United States)'),
(57001, 'https://ror.org/01afvgj08', 'en', 1, 'https://ror.org/01afvgj08 Sacramento Food Bank and Family Services'),
(57002, 'https://ror.org/000pgrd37', 'no_lang_code', 1, 'https://ror.org/000pgrd37 Kairosys (United States)'),
(57003, 'https://ror.org/00s5m1b41', 'no_lang_code', 1, 'https://ror.org/00s5m1b41 Oregon Tilth'),
(57004, 'https://ror.org/04qes5008', 'no_lang_code', 1, 'https://ror.org/04qes5008 Stony Creek Colors (United States)'),
(57005, 'https://ror.org/000jc2g50', 'no_lang_code', 1, 'https://ror.org/000jc2g50 Stratacor (United States)'),
(57006, 'https://ror.org/0070hxd21', 'no_lang_code', 1, 'https://ror.org/0070hxd21 Sunhai Bioadhesive Technologies (United States)'),
(57007, 'https://ror.org/03z550b52', 'en', 1, 'https://ror.org/03z550b52 Sustainable Molokai'),
(57008, 'https://ror.org/05ax3zs14', 'no_lang_code', 1, 'https://ror.org/05ax3zs14 Abzena (United States)'),
(57009, 'https://ror.org/03ps0vw43', 'en', 1, 'https://ror.org/03ps0vw43 Organization for Refugee and Immigrant Success'),
(57010, 'https://ror.org/043xkan55', 'no_lang_code', 1, 'https://ror.org/043xkan55 San Miguel Produce (United States)'),
(57011, 'https://ror.org/00gyg9a78', 'en', 1, 'https://ror.org/00gyg9a78 Sustainable Aviation Foundation'),
(57012, 'https://ror.org/04hzhm502', 'no_lang_code', 1, 'https://ror.org/04hzhm502 SyncThink (United States)'),
(57013, 'https://ror.org/026z1cz75', 'no_lang_code', 1, 'https://ror.org/026z1cz75 PathSensors (United States)'),
(57014, 'https://ror.org/045x5q326', 'en', 1, 'https://ror.org/045x5q326 Sciencenter'),
(57015, 'https://ror.org/01gg29e32', 'no_lang_code', 1, 'https://ror.org/01gg29e32 System Science Applications (United States)'),
(57016, 'https://ror.org/031yv9651', 'en', 1, 'https://ror.org/031yv9651 Thunder Valley Community Development Corporation'),
(57017, 'https://ror.org/0092jp739', 'en', 1, 'https://ror.org/0092jp739 Thundermist Health Center'),
(57018, 'https://ror.org/01xbswg83', 'no_lang_code', 1, 'https://ror.org/01xbswg83 Tea Hawaii (United States)'),
(57019, 'https://ror.org/03fyfhn57', 'en', 1, 'https://ror.org/03fyfhn57 Town and Country Veterinary Clinic'),
(57020, 'https://ror.org/057721542', 'no_lang_code', 1, 'https://ror.org/057721542 TeamScape (United States)'),
(57021, 'https://ror.org/052gh5147', 'en', 1, 'https://ror.org/052gh5147 Tenagra Observatories'),
(57022, 'https://ror.org/038ypnm26', 'es', 1, 'https://ror.org/038ypnm26 Ministerio del Poder Popular para la Educación Universitaria, Ciencia y Tecnología'),
(57023, 'https://ror.org/00xzncb58', 'en', 1, 'https://ror.org/00xzncb58 Texas Organic Farmers and Gardeners Association'),
(57024, 'https://ror.org/02ykqap15', 'no_lang_code', 1, 'https://ror.org/02ykqap15 XploSafe (United States)'),
(57025, 'https://ror.org/05m8j0776', 'no_lang_code', 1, 'https://ror.org/05m8j0776 Trotti and Associates (United States)'),
(57026, 'https://ror.org/03rdhpn16', 'en', 1, 'https://ror.org/03rdhpn16 Trumbull Neighborhood Partnership'),
(57027, 'https://ror.org/00964b496', 'en', 1, 'https://ror.org/00964b496 Young Men''s Christian Association Of Greater Grand Rapids'),
(57028, 'https://ror.org/04s5w2j10', 'en', 1, 'https://ror.org/04s5w2j10 Trust for Conservation Innovation'),
(57029, 'https://ror.org/00r2wb002', 'en', 1, 'https://ror.org/00r2wb002 Youth Policy Institute'),
(57030, 'https://ror.org/005tvtr96', 'en', 1, 'https://ror.org/005tvtr96 Youthprise'),
(57031, 'https://ror.org/009759b62', 'no_lang_code', 1, 'https://ror.org/009759b62 ZetrOZ Systems (United States)'),
(57032, 'https://ror.org/01e6r0071', 'no_lang_code', 1, 'https://ror.org/01e6r0071 Tubs (United States)'),
(57033, 'https://ror.org/01bgvrv25', 'no_lang_code', 1, 'https://ror.org/01bgvrv25 Valeo Physical Therapy (United States)'),
(57034, 'https://ror.org/01h6jr916', 'no_lang_code', 1, 'https://ror.org/01h6jr916 Visolis (United States)'),
(57035, 'https://ror.org/04jjxvn13', 'no_lang_code', 1, 'https://ror.org/04jjxvn13 Unmanned Experts (United States)'),
(57036, 'https://ror.org/04fb46f50', 'no_lang_code', 1, 'https://ror.org/04fb46f50 VisuGen Global (United States)'),
(57037, 'https://ror.org/00gxcsd97', 'en', 1, 'https://ror.org/00gxcsd97 TLC Foundation'),
(57038, 'https://ror.org/05htqbc94', 'no_lang_code', 1, 'https://ror.org/05htqbc94 VRM Labs (United States)'),
(57039, 'https://ror.org/011f1xp18', 'no_lang_code', 1, 'https://ror.org/011f1xp18 Waste Hub (United States)'),
(57040, 'https://ror.org/0053tww73', 'no_lang_code', 1, 'https://ror.org/0053tww73 Web Vision Centers (United States)'),
(57041, 'https://ror.org/02v6y4f91', 'en', 1, 'https://ror.org/02v6y4f91 Wholesome Wave Foundation Charitable Ventures'),
(57042, 'https://ror.org/04r70jx96', 'no_lang_code', 1, 'https://ror.org/04r70jx96 Windcall Manufacturing (United States)'),
(57043, 'https://ror.org/01a1zts48', 'en', 1, 'https://ror.org/01a1zts48 Windham Regional Community Council'),
(57044, 'https://ror.org/022kqm498', 'en', 1, 'https://ror.org/022kqm498 Wings of Eagles Discovery Center'),
(57045, 'https://ror.org/026mffr50', 'en', 1, 'https://ror.org/026mffr50 Wisconsin Cheese Makers Association'),
(57046, 'https://ror.org/045eygx28', 'en', 1, 'https://ror.org/045eygx28 Wisconsin Veterinary Medical Association'),
(57047, 'https://ror.org/014f0f469', 'en', 1, 'https://ror.org/014f0f469 Working Landscapes'),
(57048, 'https://ror.org/00fran495', 'en', 1, 'https://ror.org/00fran495 World Farmers'),
(57049, 'https://ror.org/00h9czn48', 'no_lang_code', 1, 'https://ror.org/00h9czn48 Mill City Grows (United States)'),
(57050, 'https://ror.org/00vgnwa79', 'no_lang_code', 1, 'https://ror.org/00vgnwa79 N&R Engineering Management & Services (United States)'),
(57051, 'https://ror.org/03qc9s178', 'en', 1, 'https://ror.org/03qc9s178 Minorities in Agriculture, Natural Resources and Related Sciences'),
(57052, 'https://ror.org/00jb81722', 'en', 1, 'https://ror.org/00jb81722 National Sustainable Agriculture Coalition'),
(57053, 'https://ror.org/04zgf8140', 'no_lang_code', 1, 'https://ror.org/04zgf8140 Mirtech (United States)'),
(57054, 'https://ror.org/05xqnpb54', 'en', 1, 'https://ror.org/05xqnpb54 National Young Farmers Coalition'),
(57055, 'https://ror.org/01jfc8691', 'en', 1, 'https://ror.org/01jfc8691 The Wild Ramp'),
(57056, 'https://ror.org/014tfzt26', 'no_lang_code', 1, 'https://ror.org/014tfzt26 Metabolic Modeling Services (New Zealand)'),
(57057, 'https://ror.org/031f8aj53', 'en', 1, 'https://ror.org/031f8aj53 Missouri Department of Agriculture'),
(57058, 'https://ror.org/055kj8f51', 'en', 1, 'https://ror.org/055kj8f51 Mitchell School District'),
(57059, 'https://ror.org/04hwhvs78', 'no_lang_code', 1, 'https://ror.org/04hwhvs78 Model Software (United States)'),
(57060, 'https://ror.org/04hv8pj43', 'no_lang_code', 1, 'https://ror.org/04hv8pj43 NBD Nanotechnologies (United States)'),
(57061, 'https://ror.org/04h3a1y15', 'en', 1, 'https://ror.org/04h3a1y15 Mountain Comprehensive Health'),
(57062, 'https://ror.org/038dc1s14', 'no_lang_code', 1, 'https://ror.org/038dc1s14 Crew Services (United States)'),
(57063, 'https://ror.org/05qryz546', 'en', 1, 'https://ror.org/05qryz546 National Farmers Organization'),
(57064, 'https://ror.org/04m37yt03', 'en', 1, 'https://ror.org/04m37yt03 New Mexico Farmers’ Marketing Association'),
(57065, 'https://ror.org/02hswyz47', 'no_lang_code', 1, 'https://ror.org/02hswyz47 Next Generation Technology (United States)'),
(57066, 'https://ror.org/04tvb5e69', 'en', 1, 'https://ror.org/04tvb5e69 Wolfe’s Neck Farm'),
(57067, 'https://ror.org/057fxch52', 'en', 1, 'https://ror.org/057fxch52 Matthew 25'),
(57068, 'https://ror.org/05tpefp81', 'cs', 1, 'https://ror.org/05tpefp81 Povodí Moravy'),
(57069, 'https://ror.org/03w4xck32', 'cs', 1, 'https://ror.org/03w4xck32 Povodí Ohře'),
(57070, 'https://ror.org/038q8t720', 'cs', 1, 'https://ror.org/038q8t720 Povodí Vltavy'),
(57071, 'https://ror.org/00vxg2528', 'en', 1, 'https://ror.org/00vxg2528 Yokohama Foundation for Advancement of Medical Science 横浜総合医学振興財団'),
(57072, 'https://ror.org/035kjdm29', 'en', 1, 'https://ror.org/035kjdm29 Head of Government of the Republic of Tunisia'),
(57073, 'https://ror.org/02p1epn78', 'no_lang_code', 1, 'https://ror.org/02p1epn78 Soair (United States)'),
(57074, 'https://ror.org/04vqztg05', 'en', 1, 'https://ror.org/04vqztg05 North South Institute'),
(57075, 'https://ror.org/047asg479', 'en', 1, 'https://ror.org/047asg479 Organic Farm School'),
(57076, 'https://ror.org/00wvdj807', 'no_lang_code', 1, 'https://ror.org/00wvdj807 XtendWave (United States)'),
(57077, 'https://ror.org/04jmzkq74', 'en', 1, 'https://ror.org/04jmzkq74 Alzheimer Disease International'),
(57078, 'https://ror.org/04x0p4p48', 'no_lang_code', 1, 'https://ror.org/04x0p4p48 Abbott (Belgium)'),
(57079, 'https://ror.org/02jvzs806', 'en', 1, 'https://ror.org/02jvzs806 East Midlands Academic Health Science Network'),
(57080, 'https://ror.org/00yrbts90', 'en', 1, 'https://ror.org/00yrbts90 H&M Foundation'),
(57081, 'https://ror.org/05aq4y378', 'en', 1, 'https://ror.org/05aq4y378 Clinica Valle Giulia'),
(57082, 'https://ror.org/05972na11', 'no_lang_code', 1, 'https://ror.org/05972na11 CryoLife (United Kingdom)'),
(57083, 'https://ror.org/00d0m6v41', 'en', 1, 'https://ror.org/00d0m6v41 Aid Health and Development Onlus'),
(57084, 'https://ror.org/00555bk04', 'no_lang_code', 1, 'https://ror.org/00555bk04 Cultech (United Kingdom)'),
(57085, 'https://ror.org/04fhhgs91', 'en', 1, 'https://ror.org/04fhhgs91 ALERTAsia Foundation'),
(57086, 'https://ror.org/03y9bvk93', 'en', 1, 'https://ror.org/03y9bvk93 Bolton NHS Foundation Trust'),
(57087, 'https://ror.org/00d9y8h06', 'ca', 1, 'https://ror.org/00d9y8h06 Servei de Salut de les Illes Balears'),
(57088, 'https://ror.org/005f11v91', 'no_lang_code', 1, 'https://ror.org/005f11v91 EndoSphere (United States)'),
(57089, 'https://ror.org/00q1rv339', 'en', 1, 'https://ror.org/00q1rv339 CURE International UK'),
(57090, 'https://ror.org/03x3d2a47', 'no_lang_code', 1, 'https://ror.org/03x3d2a47 All American Pharmaceutical (United States)'),
(57091, 'https://ror.org/013bz8f47', 'no_lang_code', 1, 'https://ror.org/013bz8f47 Enteromed (United Kingdom)'),
(57092, 'https://ror.org/025e2dr05', 'es', 1, 'https://ror.org/025e2dr05 Fundación Cerebro y Mente'),
(57093, 'https://ror.org/001zd1d95', 'no_lang_code', 1, 'https://ror.org/001zd1d95 Alliance Pharmaceuticals (United Kingdom)'),
(57094, 'https://ror.org/02e801388', 'no_lang_code', 1, 'https://ror.org/02e801388 Bio-Competence Centre of Healthy Dairy Products (Estonia) Tervisliku Piima Biotehnoloogiate Arenduskeskus'),
(57095, 'https://ror.org/00rh52j13', 'en', 1, 'https://ror.org/00rh52j13 Cwm Taf University Health Board Ymddiriedolaeth GIG Cwm Taf'),
(57096, 'https://ror.org/040fx6j66', 'no_lang_code', 1, 'https://ror.org/040fx6j66 EpiPharm (Switzerland)'),
(57097, 'https://ror.org/03tw90478', 'nl', 1, 'https://ror.org/03tw90478 Hartcentrum Hasselt'),
(57098, 'https://ror.org/05tgveb11', 'no_lang_code', 1, 'https://ror.org/05tgveb11 Altana (Netherlands)'),
(57099, 'https://ror.org/02bpbnv34', 'no_lang_code', 1, 'https://ror.org/02bpbnv34 AM–Pharma (Netherlands)'),
(57100, 'https://ror.org/04zqw9t81', 'en', 1, 'https://ror.org/04zqw9t81 Helsingin Diakonissalaitos Helsinki Deaconess Institute'),
(57101, 'https://ror.org/042gk2p39', 'no_lang_code', 1, 'https://ror.org/042gk2p39 Herba Naturalle (United Kingdom)'),
(57102, 'https://ror.org/02fwyek38', 'no_lang_code', 1, 'https://ror.org/02fwyek38 Cycleurope (Sweden)'),
(57103, 'https://ror.org/02jcwga55', 'es', 1, 'https://ror.org/02jcwga55 Federación Alba Andalucía'),
(57104, 'https://ror.org/05enx7587', 'en', 1, 'https://ror.org/05enx7587 Hong Kong Council on Smoking and Health 香港吸煙與健康委員會'),
(57105, 'https://ror.org/032hfv632', 'no_lang_code', 1, 'https://ror.org/032hfv632 Bristol-Myers Squibb (Germany)'),
(57106, 'https://ror.org/02t7mb865', 'fr', 1, 'https://ror.org/02t7mb865 Hôpital de Saint-Loup'),
(57107, 'https://ror.org/003n34405', 'no_lang_code', 1, 'https://ror.org/003n34405 Horphag Research (Switzerland)'),
(57108, 'https://ror.org/05gwp6g74', 'en', 1, 'https://ror.org/05gwp6g74 Accredited Private Hospital Villa Regina Ospedale Privato Accreditato Villa Regina'),
(57109, 'https://ror.org/01rqhg698', 'no_lang_code', 1, 'https://ror.org/01rqhg698 Europastry (Spain)'),
(57110, 'https://ror.org/02800a946', 'tr', 1, 'https://ror.org/02800a946 Ankara Fıtık Merkezi'),
(57111, 'https://ror.org/00s7ek396', 'pt', 1, 'https://ror.org/00s7ek396 Hospital Estadual Mário Covas'),
(57112, 'https://ror.org/05c2q0q08', 'no_lang_code', 1, 'https://ror.org/05c2q0q08 Applied Pharma Research (Switzerland)'),
(57113, 'https://ror.org/00cfkaw62', 'en', 1, 'https://ror.org/00cfkaw62 The European Academy of Gynaecological Surgery'),
(57114, 'https://ror.org/05pwp0t27', 'no_lang_code', 1, 'https://ror.org/05pwp0t27 Getinge (United States)'),
(57115, 'https://ror.org/01k4dy133', 'no_lang_code', 1, 'https://ror.org/01k4dy133 TheraTears (United States)'),
(57116, 'https://ror.org/056p0fy66', 'no_lang_code', 1, 'https://ror.org/056p0fy66 Daval International (United Kingdom)'),
(57117, 'https://ror.org/03sfwdd85', 'fr', 1, 'https://ror.org/03sfwdd85 AlterSanté'),
(57118, 'https://ror.org/00v8tzb98', 'no_lang_code', 1, 'https://ror.org/00v8tzb98 Archemix (United States)'),
(57119, 'https://ror.org/053qhtw56', 'no_lang_code', 1, 'https://ror.org/053qhtw56 Imam Hossein Hospital'),
(57120, 'https://ror.org/02n9shp96', 'no_lang_code', 1, 'https://ror.org/02n9shp96 Dentaid (Spain)'),
(57121, 'https://ror.org/022w0b336', 'no_lang_code', 1, 'https://ror.org/022w0b336 ALK-Abelló (Netherlands)'),
(57122, 'https://ror.org/00828d816', 'it', 1, 'https://ror.org/00828d816 Studio Odontoiatrico Mangano'),
(57123, 'https://ror.org/02pqj5664', 'no_lang_code', 1, 'https://ror.org/02pqj5664 Eurosets (Italy)'),
(57124, 'https://ror.org/038jmw351', 'en', 1, 'https://ror.org/038jmw351 Department of Health Canton of Zurich Gesundheitsdirektion Kanton Zürich'),
(57125, 'https://ror.org/054q96n74', 'no_lang_code', 1, 'https://ror.org/054q96n74 AstraZeneca (Germany)'),
(57126, 'https://ror.org/02fyj2e56', 'en', 1, 'https://ror.org/02fyj2e56 Calderdale and Huddersfield NHS Foundation Trust'),
(57127, 'https://ror.org/05w8yzs02', 'es', 1, 'https://ror.org/05w8yzs02 Innpulsa'),
(57128, 'https://ror.org/04r796168', 'no_lang_code', 1, 'https://ror.org/04r796168 DiagNodus (United Kingdom)'),
(57129, 'https://ror.org/03ds2he10', 'no_lang_code', 1, 'https://ror.org/03ds2he10 Atrium Medical (Australia)'),
(57130, 'https://ror.org/01xc3wx73', 'en', 1, 'https://ror.org/01xc3wx73 Exeter Primary Care'),
(57131, 'https://ror.org/044sr7e96', 'no_lang_code', 1, 'https://ror.org/044sr7e96 Difa Cooper (Italy)'),
(57132, 'https://ror.org/00qe6gb33', 'no_lang_code', 1, 'https://ror.org/00qe6gb33 Nuvo Pharmaceuticals (Canada)'),
(57133, 'https://ror.org/02cf8gj49', 'no_lang_code', 1, 'https://ror.org/02cf8gj49 IBSA Farmaceutici (Italy)'),
(57134, 'https://ror.org/03krr1g45', 'nl', 1, 'https://ror.org/03krr1g45 Aveleijn'),
(57135, 'https://ror.org/001m0em47', 'en', 1, 'https://ror.org/001m0em47 German Doctors'),
(57136, 'https://ror.org/03jx7ar65', 'no_lang_code', 1, 'https://ror.org/03jx7ar65 DOCxcellence (Germany)'),
(57137, 'https://ror.org/03be8p176', 'en', 1, 'https://ror.org/03be8p176 Dolan Park Hospital'),
(57138, 'https://ror.org/03haydy69', 'no_lang_code', 1, 'https://ror.org/03haydy69 Cambridge Weight Plan (United Kingdom)'),
(57139, 'https://ror.org/02t15ae18', 'no_lang_code', 1, 'https://ror.org/02t15ae18 AXA Health (United Kingdom)'),
(57140, 'https://ror.org/02s113s62', 'en', 1, 'https://ror.org/02s113s62 Eyehope'),
(57141, 'https://ror.org/04sdeyq07', 'no_lang_code', 1, 'https://ror.org/04sdeyq07 B. Braun (Spain)'),
(57142, 'https://ror.org/05hqyp882', 'no_lang_code', 1, 'https://ror.org/05hqyp882 MedSkin Solutions (Germany)'),
(57143, 'https://ror.org/053ax5y02', 'no_lang_code', 1, 'https://ror.org/053ax5y02 Barry Callebaut (Belgium)'),
(57144, 'https://ror.org/00wcjzh22', 'no_lang_code', 1, 'https://ror.org/00wcjzh22 Dr. Peithner KG (Austria)'),
(57145, 'https://ror.org/04sw4ge25', 'en', 1, 'https://ror.org/04sw4ge25 DSC Services'),
(57146, 'https://ror.org/0278syk25', 'en', 1, 'https://ror.org/0278syk25 Canadian Foundation for Women’s Health'),
(57147, 'https://ror.org/02kf9ya90', 'no_lang_code', 1, 'https://ror.org/02kf9ya90 Baxter (Italy)'),
(57148, 'https://ror.org/05ceh6345', 'no_lang_code', 1, 'https://ror.org/05ceh6345 Dukat (Croatia)'),
(57149, 'https://ror.org/04qqvvm35', 'no_lang_code', 1, 'https://ror.org/04qqvvm35 EyeSonix (United States)'),
(57150, 'https://ror.org/048q77b60', 'en', 1, 'https://ror.org/048q77b60 Irish Pharmacy Union'),
(57151, 'https://ror.org/02d4f0r15', 'no_lang_code', 1, 'https://ror.org/02d4f0r15 Fazer (Finland)'),
(57152, 'https://ror.org/00z1c3x88', 'en', 1, 'https://ror.org/00z1c3x88 Bergman Clinics'),
(57153, 'https://ror.org/04dg86p75', 'no_lang_code', 1, 'https://ror.org/04dg86p75 Isdin (Spain)'),
(57154, 'https://ror.org/020yxp837', 'de', 1, 'https://ror.org/020yxp837 Berliner Krebsgesellschaft'),
(57155, 'https://ror.org/0151f9x82', 'no_lang_code', 1, 'https://ror.org/0151f9x82 BHR Pharmaceuticals (United Kingdom)'),
(57156, 'https://ror.org/05bzbnj80', 'no_lang_code', 1, 'https://ror.org/05bzbnj80 Bifodan (Denmark)'),
(57157, 'https://ror.org/054c9y537', 'en', 1, 'https://ror.org/054c9y537 Bundeszentrale für Gesundheitliche Aufklärung Federal Centre for Health Education'),
(57158, 'https://ror.org/013aa1717', 'en', 1, 'https://ror.org/013aa1717 Isle of Wight NHS Trust'),
(57159, 'https://ror.org/03by5ya49', 'no_lang_code', 1, 'https://ror.org/03by5ya49 Epiim (Estonia)'),
(57160, 'https://ror.org/00z3eck08', 'it', 1, 'https://ror.org/00z3eck08 Casa di Cura San Michele'),
(57161, 'https://ror.org/045xrc244', 'no_lang_code', 1, 'https://ror.org/045xrc244 ISO Arzneimittel (Germany)'),
(57162, 'https://ror.org/02tx52885', 'no_lang_code', 1, 'https://ror.org/02tx52885 Nutrition & Santé (Spain)'),
(57163, 'https://ror.org/02wmh7s95', 'no_lang_code', 1, 'https://ror.org/02wmh7s95 CasaLuker (Colombia)'),
(57164, 'https://ror.org/01aagfe76', 'no_lang_code', 1, 'https://ror.org/01aagfe76 Efamol (United Kingdom)'),
(57165, 'https://ror.org/03n30a589', 'no_lang_code', 1, 'https://ror.org/03n30a589 U.S. Stem Cell (United States)'),
(57166, 'https://ror.org/0381nq624', 'fr', 1, 'https://ror.org/0381nq624 Fédération Internationale de Football Association'),
(57167, 'https://ror.org/00a1wp308', 'en', 1, 'https://ror.org/00a1wp308 Effective Intervention'),
(57168, 'https://ror.org/004q7a047', 'no_lang_code', 1, 'https://ror.org/004q7a047 Bioline Products (Czechia)'),
(57169, 'https://ror.org/032skq703', 'no_lang_code', 1, 'https://ror.org/032skq703 Joimax (Germany)'),
(57170, 'https://ror.org/03fvjvp95', 'no_lang_code', 1, 'https://ror.org/03fvjvp95 GDI Integrated Facility Services (Canada)'),
(57171, 'https://ror.org/02c19c733', 'no_lang_code', 1, 'https://ror.org/02c19c733 Femeda (United Kingdom)'),
(57172, 'https://ror.org/05jhd9y87', 'no_lang_code', 1, 'https://ror.org/05jhd9y87 Biosignatures (United Kingdom)'),
(57173, 'https://ror.org/04tgkyt11', 'no_lang_code', 1, 'https://ror.org/04tgkyt11 Froceth (Lithuania)'),
(57174, 'https://ror.org/03vrwsp35', 'no_lang_code', 1, 'https://ror.org/03vrwsp35 Ferring Pharmaceuticals (France)'),
(57175, 'https://ror.org/00jsvb253', 'no_lang_code', 1, 'https://ror.org/00jsvb253 Biotropics Malaysia (Malaysia)'),
(57176, 'https://ror.org/02t9kcf24', 'it', 1, 'https://ror.org/02t9kcf24 Istituto Europeo di Microchirurgia Oculare'),
(57177, 'https://ror.org/00feyy410', 'it', 1, 'https://ror.org/00feyy410 Associaizone per lo Studio della Sclerosi Sistemica e delle Malattie'),
(57178, 'https://ror.org/0451etm15', 'it', 1, 'https://ror.org/0451etm15 Associazione Medici Diabetologi'),
(57179, 'https://ror.org/031g1ba05', 'no_lang_code', 1, 'https://ror.org/031g1ba05 Mannatech (United States)'),
(57180, 'https://ror.org/02h2r8882', 'en', 1, 'https://ror.org/02h2r8882 Central Council for Research in Yoga & Naturopathy'),
(57181, 'https://ror.org/03kj3qm29', 'it', 1, 'https://ror.org/03kj3qm29 Associazione Italiana Vulvodinia Onlus'),
(57182, 'https://ror.org/04hb5tw27', 'no_lang_code', 1, 'https://ror.org/04hb5tw27 Jafco (Japan)'),
(57183, 'https://ror.org/05kmpn815', 'no_lang_code', 1, 'https://ror.org/05kmpn815 Marigot (Ireland)'),
(57184, 'https://ror.org/01cabyw47', 'no_lang_code', 1, 'https://ror.org/01cabyw47 Marinomed Biotech (Austria)'),
(57185, 'https://ror.org/003r56a21', 'no_lang_code', 1, 'https://ror.org/003r56a21 Mastelli (Italy)'),
(57186, 'https://ror.org/05rpby975', 'en', 1, 'https://ror.org/05rpby975 Chios Mastiha Growers Association'),
(57187, 'https://ror.org/02cnwya81', 'no_lang_code', 1, 'https://ror.org/02cnwya81 Nordic Sugar (Finland)'),
(57188, 'https://ror.org/03h1ytk17', 'en', 1, 'https://ror.org/03h1ytk17 Kindercare Pediatrics'),
(57189, 'https://ror.org/01m15jk16', 'no_lang_code', 1, 'https://ror.org/01m15jk16 Maywufa (Taiwan)'),
(57190, 'https://ror.org/02ztj7h33', 'it', 1, 'https://ror.org/02ztj7h33 Federazione Ordini Farmacisti Italiani'),
(57191, 'https://ror.org/011xgdn77', 'no_lang_code', 1, 'https://ror.org/011xgdn77 Medical Cañada (Spain)'),
(57192, 'https://ror.org/0469pxf24', 'en', 1, 'https://ror.org/0469pxf24 Medicor Foundation'),
(57193, 'https://ror.org/03kkjyc12', 'no_lang_code', 1, 'https://ror.org/03kkjyc12 Medigene (Germany)'),
(57194, 'https://ror.org/01nvbq395', 'en', 1, 'https://ror.org/01nvbq395 Food for Health Ireland'),
(57195, 'https://ror.org/02skr9c69', 'es', 1, 'https://ror.org/02skr9c69 Cerveceros de España The Brewers of Spain'),
(57196, 'https://ror.org/02htkw777', 'de', 1, 'https://ror.org/02htkw777 Stiftung Chance Stiftung Chance für das kritisch kranke Kind'),
(57197, 'https://ror.org/004cvgs24', 'en', 1, 'https://ror.org/004cvgs24 Food Ingredient and Health Research Institute'),
(57198, 'https://ror.org/03wfcm341', 'no_lang_code', 1, 'https://ror.org/03wfcm341 Nobilis Therapeutics (United States)'),
(57199, 'https://ror.org/05841h928', 'en', 1, 'https://ror.org/05841h928 North Central London Research Consortium'),
(57200, 'https://ror.org/00y3snf11', 'en', 1, 'https://ror.org/00y3snf11 Warrington and Halton Teaching Hospitals NHS Foundation Trust'),
(57201, 'https://ror.org/043xarp69', 'no_lang_code', 1, 'https://ror.org/043xarp69 Knop Laboratories (Chile)'),
(57202, 'https://ror.org/04kz28h20', 'no_lang_code', 1, 'https://ror.org/04kz28h20 Meril Life Sciences (India)'),
(57203, 'https://ror.org/04zzrht05', 'en', 1, 'https://ror.org/04zzrht05 North Tees and Hartlepool NHS Foundation Trust'),
(57204, 'https://ror.org/052hty126', 'no_lang_code', 1, 'https://ror.org/052hty126 Konpharma (Italy)'),
(57205, 'https://ror.org/01dq08926', 'nl', 1, 'https://ror.org/01dq08926 Stichting Kinderpostzegels Nederland'),
(57206, 'https://ror.org/04kvtp152', 'no_lang_code', 1, 'https://ror.org/04kvtp152 Danone (Germany)'),
(57207, 'https://ror.org/03p4nrj93', 'es', 1, 'https://ror.org/03p4nrj93 Fundación para la Fibromialgia y el Síndrome de Fatiga Crónica'),
(57208, 'https://ror.org/032d9sg77', 'en', 1, 'https://ror.org/032d9sg77 Kumasi Centre for Collaborative Research in Tropical Medicine'),
(57209, 'https://ror.org/03xhdc358', 'fr', 1, 'https://ror.org/03xhdc358 Direction Générale de la Pharmacie, du Médicament et des Laboratoires'),
(57210, 'https://ror.org/03tygvc25', 'en', 1, 'https://ror.org/03tygvc25 Chinese Association for the Study of Pain'),
(57211, 'https://ror.org/00svmjx28', 'en', 1, 'https://ror.org/00svmjx28 Centro per il Controllo e la Prevenzione delle Malattie National Centre for Disease Prevention and Control'),
(57212, 'https://ror.org/02pv1pj08', 'no_lang_code', 1, 'https://ror.org/02pv1pj08 Northern Therapeutics (Canada)'),
(57213, 'https://ror.org/02kctrc72', 'nl', 1, 'https://ror.org/02kctrc72 Stichting Wetenschappelijk Onderzoek het Oogziekenhuis'),
(57214, 'https://ror.org/018qejt38', 'no_lang_code', 1, 'https://ror.org/018qejt38 Bausch & Lomb (France)'),
(57215, 'https://ror.org/02czvz038', 'no', 1, 'https://ror.org/02czvz038 Norsk Ergoterapeutforbund Norwegian Occupational Therapist Association - Occupational Therapists'),
(57216, 'https://ror.org/01y0zfy93', 'no_lang_code', 1, 'https://ror.org/01y0zfy93 Medtronic (Singapore)'),
(57217, 'https://ror.org/030ybgp98', 'en', 1, 'https://ror.org/030ybgp98 Mother and Child Foundation'),
(57218, 'https://ror.org/04hrwvd56', 'no_lang_code', 1, 'https://ror.org/04hrwvd56 Moximed (United States)'),
(57219, 'https://ror.org/05ypvb778', 'no_lang_code', 1, 'https://ror.org/05ypvb778 Novintethical Pharma (Switzerland)'),
(57220, 'https://ror.org/05am7x020', 'id', 1, 'https://ror.org/05am7x020 Dr. National Center General Hospital Cipto Mangunkusumo Rumah Sakit Umum Pusat Nasional Dr. Cipto Mangunkusumo'),
(57221, 'https://ror.org/032wae568', 'no_lang_code', 1, 'https://ror.org/032wae568 Elea (Argentina)'),
(57222, 'https://ror.org/02h420k27', 'no_lang_code', 1, 'https://ror.org/02h420k27 Nuga Medical (South Korea)'),
(57223, 'https://ror.org/05xc9cz73', 'en', 1, 'https://ror.org/05xc9cz73 Nutraveris'),
(57224, 'https://ror.org/02g1dfh62', 'no_lang_code', 1, 'https://ror.org/02g1dfh62 Fulltec (Switzerland)'),
(57225, 'https://ror.org/007hfqg84', 'no_lang_code', 1, 'https://ror.org/007hfqg84 Nutricia (United Kingdom)'),
(57226, 'https://ror.org/02htmn026', 'en', 1, 'https://ror.org/02htmn026 Civil Service Council مجلس الخدمة المدنية'),
(57227, 'https://ror.org/03k4rxa78', 'no_lang_code', 1, 'https://ror.org/03k4rxa78 Obalon (United States)'),
(57228, 'https://ror.org/02xqq7c82', 'no_lang_code', 1, 'https://ror.org/02xqq7c82 Octapharma (France)'),
(57229, 'https://ror.org/00zpf2822', 'no_lang_code', 1, 'https://ror.org/00zpf2822 Laboratorios Sophia (Mexico)'),
(57230, 'https://ror.org/04e5xac72', 'no_lang_code', 1, 'https://ror.org/04e5xac72 Clasado BioSciences (United Kingdom)'),
(57231, 'https://ror.org/00wsb3r63', 'no_lang_code', 1, 'https://ror.org/00wsb3r63 Ocutec (United Kingdom)'),
(57232, 'https://ror.org/03we5jj07', 'de', 1, 'https://ror.org/03we5jj07 OH DO KWAN Stiftung Ludmilla Pankofer und Carl Wiedmeier'),
(57233, 'https://ror.org/05nmp7m26', 'no_lang_code', 1, 'https://ror.org/05nmp7m26 Laccure (Sweden)'),
(57234, 'https://ror.org/0261c1d14', 'no_lang_code', 1, 'https://ror.org/0261c1d14 Okhotsk Kai Hospital オホーツク海病院'),
(57235, 'https://ror.org/01rjdjc72', 'en', 1, 'https://ror.org/01rjdjc72 Olberon (United Kingdom)'),
(57236, 'https://ror.org/04rmmk750', 'no_lang_code', 1, 'https://ror.org/04rmmk750 GAIA (Germany)'),
(57237, 'https://ror.org/05q6g7072', 'no_lang_code', 1, 'https://ror.org/05q6g7072 Laila Impex (India)'),
(57238, 'https://ror.org/04g5zwy64', 'de', 1, 'https://ror.org/04g5zwy64 Clinic for Sleep Medicine Klinik für Schlafmedizin'),
(57239, 'https://ror.org/01cbq7w74', 'it', 1, 'https://ror.org/01cbq7w74 Clinica Odontoiatrica Salzano Tirone'),
(57240, 'https://ror.org/05nh4qq71', 'en', 1, 'https://ror.org/05nh4qq71 Orchid'),
(57241, 'https://ror.org/00jtnvh80', 'en', 1, 'https://ror.org/00jtnvh80 Netherlands Center for Occupational Diseases Netherlands Centrum for Occupational Diseases'),
(57242, 'https://ror.org/044s3bf07', 'nl', 1, 'https://ror.org/044s3bf07 Nederlandse Hoofdpijn Vereniging'),
(57243, 'https://ror.org/04fqe7a64', 'no_lang_code', 1, 'https://ror.org/04fqe7a64 OrganOx (United Kingdom)'),
(57244, 'https://ror.org/008mcnd42', 'no_lang_code', 1, 'https://ror.org/008mcnd42 Origin BioMed (Canada)'),
(57245, 'https://ror.org/01mgtdr23', 'no_lang_code', 1, 'https://ror.org/01mgtdr23 Baxter (France)'),
(57246, 'https://ror.org/0503fq502', 'no_lang_code', 1, 'https://ror.org/0503fq502 Neuren Pharmaceuticals (New Zealand)'),
(57247, 'https://ror.org/00fsjhf77', 'es', 1, 'https://ror.org/00fsjhf77 Instituto Neurológico de Colombia'),
(57248, 'https://ror.org/018ct3570', 'en', 1, 'https://ror.org/018ct3570 Oslo Sports Trauma Research Center Senter for Idrettsskadeforskning'),
(57249, 'https://ror.org/00y1hj465', 'no_lang_code', 1, 'https://ror.org/00y1hj465 Baxter (South Korea)'),
(57250, 'https://ror.org/03hmb2468', 'no_lang_code', 1, 'https://ror.org/03hmb2468 Neurotechnics (United Kingdom)'),
(57251, 'https://ror.org/01ambd593', 'no_lang_code', 1, 'https://ror.org/01ambd593 Otsuka (Indonesia)'),
(57252, 'https://ror.org/02bexj159', 'no_lang_code', 1, 'https://ror.org/02bexj159 Lead Chemical (Japan)'),
(57253, 'https://ror.org/011bzst67', 'no_lang_code', 1, 'https://ror.org/011bzst67 Leiber (Germany)'),
(57254, 'https://ror.org/02q0ygf45', 'no_lang_code', 1, 'https://ror.org/02q0ygf45 OBS Medical (United Kingdom)'),
(57255, 'https://ror.org/04qx49k93', 'no_lang_code', 1, 'https://ror.org/04qx49k93 Gehrlicher (Germany)'),
(57256, 'https://ror.org/02mcwd725', 'en', 1, 'https://ror.org/02mcwd725 Bòrd SSN Dùn Phris agus an Gall-Ghaidhealaibh NHS Dumfries and Galloway'),
(57257, 'https://ror.org/055kp8612', 'no_lang_code', 1, 'https://ror.org/055kp8612 Libbs (Brazil)'),
(57258, 'https://ror.org/03wdref81', 'no_lang_code', 1, 'https://ror.org/03wdref81 Remedial Centre Hospital'),
(57259, 'https://ror.org/05aqc8c91', 'de', 1, 'https://ror.org/05aqc8c91 Gelenkpunkt'),
(57260, 'https://ror.org/0116f3t39', 'no_lang_code', 1, 'https://ror.org/0116f3t39 Verman (Finland)'),
(57261, 'https://ror.org/02a9kts05', 'no_lang_code', 1, 'https://ror.org/02a9kts05 Baxter (Colombia)'),
(57262, 'https://ror.org/02ra2yn55', 'fr', 1, 'https://ror.org/02ra2yn55 Ligue Pulmonaire Genevoise'),
(57263, 'https://ror.org/01g15q926', 'no_lang_code', 1, 'https://ror.org/01g15q926 Origin Sciences (United Kingdom)'),
(57264, 'https://ror.org/01spx4y35', 'en', 1, 'https://ror.org/01spx4y35 London Eye Hospital'),
(57265, 'https://ror.org/0172dx143', 'no_lang_code', 1, 'https://ror.org/0172dx143 Advanced Medical Solutions (Germany)'),
(57266, 'https://ror.org/01x62am17', 'no_lang_code', 1, 'https://ror.org/01x62am17 Paladin Pharma (Italy)'),
(57267, 'https://ror.org/00c5hbd86', 'no_lang_code', 1, 'https://ror.org/00c5hbd86 Panin (Italy)'),
(57268, 'https://ror.org/02cfx3y90', 'en', 1, 'https://ror.org/02cfx3y90 Community Information, Empowerment and Transparency'),
(57269, 'https://ror.org/00m48tn76', 'no_lang_code', 1, 'https://ror.org/00m48tn76 LiveLeaf (United States)'),
(57270, 'https://ror.org/03mfyst18', 'no_lang_code', 1, 'https://ror.org/03mfyst18 Perseus PCI (United States)'),
(57271, 'https://ror.org/05kagrs11', 'no_lang_code', 1, 'https://ror.org/05kagrs11 Competence Centre on Health Technologies (Estonia) Tervisetehnoloogiate Arenduskeskus'),
(57272, 'https://ror.org/00447xj53', 'no_lang_code', 1, 'https://ror.org/00447xj53 Lombard Medical (United Kingdom)'),
(57273, 'https://ror.org/039k72k82', 'en', 1, 'https://ror.org/039k72k82 Concept Foundation'),
(57274, 'https://ror.org/02gaw4292', 'de', 1, 'https://ror.org/02gaw4292 Verwaltungs-Berufsgenossenschaft'),
(57275, 'https://ror.org/03jvn6861', 'no_lang_code', 1, 'https://ror.org/03jvn6861 PharmaFGP (Germany)'),
(57276, 'https://ror.org/00hz19x62', 'no_lang_code', 1, 'https://ror.org/00hz19x62 Pharma Nord (United Kingdom)'),
(57277, 'https://ror.org/04yy1mz94', 'en', 1, 'https://ror.org/04yy1mz94 Royal Belgian Society for Surgery'),
(57278, 'https://ror.org/011nmry48', 'no_lang_code', 1, 'https://ror.org/011nmry48 PharmEcosse (United Kingdom)'),
(57279, 'https://ror.org/01ecxzf56', 'no_lang_code', 1, 'https://ror.org/01ecxzf56 Cool Down (Switzerland)'),
(57280, 'https://ror.org/032951a18', 'no_lang_code', 1, 'https://ror.org/032951a18 Lycotec (United Kingdom)'),
(57281, 'https://ror.org/01e2zk874', 'en', 1, 'https://ror.org/01e2zk874 Lymphoma Research Trust'),
(57282, 'https://ror.org/011ccs949', 'no_lang_code', 1, 'https://ror.org/011ccs949 Phoenix (Italy)'),
(57283, 'https://ror.org/012pz6314', 'no_lang_code', 1, 'https://ror.org/012pz6314 TRB Chemedica International (Switzerland)'),
(57284, 'https://ror.org/00k065b17', 'it', 1, 'https://ror.org/00k065b17 Fondazione Crescere Insieme al Sant''Anna'),
(57285, 'https://ror.org/01w50vm31', 'no_lang_code', 1, 'https://ror.org/01w50vm31 SMART Medical Systems (Israel)'),
(57286, 'https://ror.org/01hd27x96', 'de', 1, 'https://ror.org/01hd27x96 Deutsche Gesellschaft für Psychoanalyse, Psychotherapie, Psychosomatik und Tiefenpsychologie'),
(57287, 'https://ror.org/02ww5xj89', 'en', 1, 'https://ror.org/02ww5xj89 Samnium Medica'),
(57288, 'https://ror.org/01vvp4329', 'no_lang_code', 1, 'https://ror.org/01vvp4329 Smart Salt (United States)'),
(57289, 'https://ror.org/03a2dk673', 'no_lang_code', 1, 'https://ror.org/03a2dk673 Snap40 (United Kingdom)'),
(57290, 'https://ror.org/03cn5jj91', 'pt', 1, 'https://ror.org/03cn5jj91 Hospital Municipal São José'),
(57291, 'https://ror.org/02hanc252', 'no_lang_code', 1, 'https://ror.org/02hanc252 Social Security Office (Thailand)'),
(57292, 'https://ror.org/023j1w312', 'sv', 1, 'https://ror.org/023j1w312 Skandinaviska Kiropraktorhögskolan'),
(57293, 'https://ror.org/048gkn792', 'no_lang_code', 1, 'https://ror.org/048gkn792 Inversago Pharma (Canada)'),
(57294, 'https://ror.org/035aahr55', 'en', 1, 'https://ror.org/035aahr55 The Egyptian IVF-ET Center المركز المصري لأطفال الأنابيب'),
(57295, 'https://ror.org/0165tjs71', 'fr', 1, 'https://ror.org/0165tjs71 Eurasanté'),
(57296, 'https://ror.org/01t825428', 'en', 1, 'https://ror.org/01t825428 The Eve Appeal'),
(57297, 'https://ror.org/03fs77m09', 'no_lang_code', 1, 'https://ror.org/03fs77m09 GILUPI (Germany)'),
(57298, 'https://ror.org/02qnzpb65', 'en', 1, 'https://ror.org/02qnzpb65 The Farah Hospital'),
(57299, 'https://ror.org/00sb6vz77', 'no_lang_code', 1, 'https://ror.org/00sb6vz77 Valid International (United Kingdom)'),
(57300, 'https://ror.org/03psr2094', 'de', 1, 'https://ror.org/03psr2094 GKV Spitzenverband'),
(57301, 'https://ror.org/034dekp80', 'en', 1, 'https://ror.org/034dekp80 Great Orchestra of Christmas Charity Wielka Orkiestra Świątecznej Pomocy'),
(57302, 'https://ror.org/04z435g27', 'en', 1, 'https://ror.org/04z435g27 South Asian Clinical Toxicology Research Collaboration'),
(57303, 'https://ror.org/03x5tah73', 'no_lang_code', 1, 'https://ror.org/03x5tah73 Vaximm (Germany)'),
(57304, 'https://ror.org/00fan0f25', 'no_lang_code', 1, 'https://ror.org/00fan0f25 Servier (China)'),
(57305, 'https://ror.org/00mjfwd15', 'no_lang_code', 1, 'https://ror.org/00mjfwd15 Vectorite Biomedical (Taiwan) 鑫品生医科技'),
(57306, 'https://ror.org/05wk4ae67', 'no_lang_code', 1, 'https://ror.org/05wk4ae67 Servier (Germany)'),
(57307, 'https://ror.org/00v3zdx13', 'no_lang_code', 1, 'https://ror.org/00v3zdx13 Servier (Egypt)'),
(57308, 'https://ror.org/03ywwjy69', 'en', 1, 'https://ror.org/03ywwjy69 The Howard Foundation'),
(57309, 'https://ror.org/02fj56008', 'no_lang_code', 1, 'https://ror.org/02fj56008 Vestergaard (Switzerland)'),
(57310, 'https://ror.org/04t4g7j44', 'en', 1, 'https://ror.org/04t4g7j44 Changhua County Public Health Bureau 彰化縣衛生局');
INSERT INTO `rors` VALUES
(57311, 'https://ror.org/05319p535', 'no_lang_code', 1, 'https://ror.org/05319p535 SilverCloud (Ireland)'),
(57312, 'https://ror.org/02c0pn910', 'no_lang_code', 1, 'https://ror.org/02c0pn910 Winclove Probiotics (Netherlands)'),
(57313, 'https://ror.org/0279am519', 'no_lang_code', 1, 'https://ror.org/0279am519 KSL Consulting (Denmark)'),
(57314, 'https://ror.org/026xgbm91', 'en', 1, 'https://ror.org/026xgbm91 Viewpoint Vision'),
(57315, 'https://ror.org/02fjtnt35', 'en', 1, 'https://ror.org/02fjtnt35 Southern Health and Social Care Trust'),
(57316, 'https://ror.org/028mrxf52', 'en', 1, 'https://ror.org/028mrxf52 Wrightington, Wigan and Leigh NHS Foundation Trust'),
(57317, 'https://ror.org/02ynj6025', 'en', 1, 'https://ror.org/02ynj6025 Vision Impact Institute'),
(57318, 'https://ror.org/00pcyna40', 'en', 1, 'https://ror.org/00pcyna40 Hyderabad Cleft Society'),
(57319, 'https://ror.org/010knjd35', 'no_lang_code', 1, 'https://ror.org/010knjd35 Vivostat (Denmark)'),
(57320, 'https://ror.org/041mqc477', 'no_lang_code', 1, 'https://ror.org/041mqc477 Zija International (United States)'),
(57321, 'https://ror.org/04mg7be43', 'no_lang_code', 1, 'https://ror.org/04mg7be43 Guna (Italy)'),
(57322, 'https://ror.org/00qdbgv91', 'no_lang_code', 1, 'https://ror.org/00qdbgv91 Soylent (United States)'),
(57323, 'https://ror.org/04zrd1t35', 'no_lang_code', 1, 'https://ror.org/04zrd1t35 Zambon (Switzerland)'),
(57324, 'https://ror.org/02msz7b29', 'en', 1, 'https://ror.org/02msz7b29 Zankli Medical Centre'),
(57325, 'https://ror.org/011af0v55', 'en', 1, 'https://ror.org/011af0v55 Spectrum Community Health CIC'),
(57326, 'https://ror.org/01tq9ra93', 'en', 1, 'https://ror.org/01tq9ra93 War Child'),
(57327, 'https://ror.org/03segdh23', 'en', 1, 'https://ror.org/03segdh23 GynePro Medical'),
(57328, 'https://ror.org/01e98yd03', 'no_lang_code', 1, 'https://ror.org/01e98yd03 Water-Jel Technologies (United Kingdom)'),
(57329, 'https://ror.org/05xv38e59', 'no_lang_code', 1, 'https://ror.org/05xv38e59 Brf (Brazil)'),
(57330, 'https://ror.org/017qmh907', 'no_lang_code', 1, 'https://ror.org/017qmh907 Zhejiang Yongning Pharma (China)'),
(57331, 'https://ror.org/01y84kk86', 'no_lang_code', 1, 'https://ror.org/01y84kk86 Wepa Apothekenbedarf (Germany)'),
(57332, 'https://ror.org/04ykj1118', 'no_lang_code', 1, 'https://ror.org/04ykj1118 Gynius (Sweden)'),
(57333, 'https://ror.org/00yerav41', 'no_lang_code', 1, 'https://ror.org/00yerav41 Quantum Pharmaceutical (United Kingdom)'),
(57334, 'https://ror.org/0180s3q15', 'nl', 1, 'https://ror.org/0180s3q15 Omring'),
(57335, 'https://ror.org/008545842', 'en', 1, 'https://ror.org/008545842 White Clinic'),
(57336, 'https://ror.org/050fgea76', 'no_lang_code', 1, 'https://ror.org/050fgea76 Kazahstanskoe Obshchestvo Bariatricheskih i Metabolicheskih Hirurgov Казахстанское общество бариатрических и метаболических хирургов РОО'),
(57337, 'https://ror.org/02nwyam20', 'no_lang_code', 1, 'https://ror.org/02nwyam20 Stryker (Netherlands)'),
(57338, 'https://ror.org/02y9vw172', 'no_lang_code', 1, 'https://ror.org/02y9vw172 Plethora Solutions (United Kingdom)'),
(57339, 'https://ror.org/05pe6et34', 'no_lang_code', 1, 'https://ror.org/05pe6et34 Recuperat-ion (Spain)'),
(57340, 'https://ror.org/04h6ep125', 'no_lang_code', 1, 'https://ror.org/04h6ep125 Synairgen (United Kingdom)'),
(57341, 'https://ror.org/04t7jet59', 'no_lang_code', 1, 'https://ror.org/04t7jet59 Stryker (Switzerland)'),
(57342, 'https://ror.org/03c0asn85', 'no_lang_code', 1, 'https://ror.org/03c0asn85 Redax (Italy)'),
(57343, 'https://ror.org/00frd0c49', 'no_lang_code', 1, 'https://ror.org/00frd0c49 Thornton and Ross (United Kingdom)'),
(57344, 'https://ror.org/01vx59p26', 'no_lang_code', 1, 'https://ror.org/01vx59p26 Synapse (Greece)'),
(57345, 'https://ror.org/04yeh2x21', 'de', 1, 'https://ror.org/04yeh2x21 Refonet'),
(57346, 'https://ror.org/014fa1z03', 'da', 1, 'https://ror.org/014fa1z03 Regionshospital Nordjylland'),
(57347, 'https://ror.org/04030gz13', 'en', 1, 'https://ror.org/04030gz13 Kriminalvården Swedish Prison and Probation Service'),
(57348, 'https://ror.org/002jv8g15', 'es', 1, 'https://ror.org/002jv8g15 Fundación para La Investigación del Vino y La Nutrición'),
(57349, 'https://ror.org/03bvd4t69', 'no_lang_code', 1, 'https://ror.org/03bvd4t69 Kyowa Kirin (France)'),
(57350, 'https://ror.org/046pkq184', 'no_lang_code', 1, 'https://ror.org/046pkq184 Provexis (United Kingdom)'),
(57351, 'https://ror.org/03yf63872', 'sv', 1, 'https://ror.org/03yf63872 Probi'),
(57352, 'https://ror.org/051mqhp34', 'no_lang_code', 1, 'https://ror.org/051mqhp34 Psicon (United Kingdom)'),
(57353, 'https://ror.org/05yp06a73', 'de', 1, 'https://ror.org/05yp06a73 Schweizerische Gesellschaft für Pulmonale Hypertonie'),
(57354, 'https://ror.org/00dv58j78', 'en', 1, 'https://ror.org/00dv58j78 Protexin'),
(57355, 'https://ror.org/05h876969', 'de', 1, 'https://ror.org/05h876969 Stiftung Mandacaru'),
(57356, 'https://ror.org/043vk3t22', 'no_lang_code', 1, 'https://ror.org/043vk3t22 Terumo (Belgium)'),
(57357, 'https://ror.org/05d2j9p36', 'en', 1, 'https://ror.org/05d2j9p36 Texas Life Science Foundation'),
(57358, 'https://ror.org/037hmn502', 'no_lang_code', 1, 'https://ror.org/037hmn502 PROGAL (Colombia)'),
(57359, 'https://ror.org/023sxys58', 'no_lang_code', 1, 'https://ror.org/023sxys58 Purdue Pharma (Canada)'),
(57360, 'https://ror.org/01nw8jb24', 'en', 1, 'https://ror.org/01nw8jb24 Aim Foundation'),
(57361, 'https://ror.org/023k9vr64', 'no_lang_code', 1, 'https://ror.org/023k9vr64 PROGE FARM (Italy)'),
(57362, 'https://ror.org/049x86d03', 'en', 1, 'https://ror.org/049x86d03 Academic Health Science Partnership'),
(57363, 'https://ror.org/03gc62f43', 'no_lang_code', 1, 'https://ror.org/03gc62f43 Laxdale Foodservice (United Kingdom)'),
(57364, 'https://ror.org/01vb7db28', 'en', 1, 'https://ror.org/01vb7db28 Bionomics International'),
(57365, 'https://ror.org/00s1jty20', 'en', 1, 'https://ror.org/00s1jty20 Biotechnology Institute'),
(57366, 'https://ror.org/03e1kgt76', 'en', 1, 'https://ror.org/03e1kgt76 Council of State Governments Midwest'),
(57367, 'https://ror.org/041s25165', 'en', 1, 'https://ror.org/041s25165 National Association of Attorneys General'),
(57368, 'https://ror.org/0113xgn62', 'en', 1, 'https://ror.org/0113xgn62 Ahtna Heritage Foundation'),
(57369, 'https://ror.org/0394zmz22', 'en', 1, 'https://ror.org/0394zmz22 Building Child and Family Initiatives'),
(57370, 'https://ror.org/01kbfg076', 'en', 1, 'https://ror.org/01kbfg076 American Water Resources Association'),
(57371, 'https://ror.org/008qz0n88', 'no_lang_code', 1, 'https://ror.org/008qz0n88 Blue Sky Research (United States)'),
(57372, 'https://ror.org/05nvpz682', 'en', 1, 'https://ror.org/05nvpz682 AI Access Foundation'),
(57373, 'https://ror.org/0317vxn45', 'en', 1, 'https://ror.org/0317vxn45 Chaminade College Preparatory School'),
(57374, 'https://ror.org/03383wt55', 'en', 1, 'https://ror.org/03383wt55 Broome-Tioga Board of Cooperative Educational Services'),
(57375, 'https://ror.org/0332tkb18', 'en', 1, 'https://ror.org/0332tkb18 Amiq Institute'),
(57376, 'https://ror.org/024rjga53', 'en', 1, 'https://ror.org/024rjga53 Monroe 2-Orleans BOCES'),
(57377, 'https://ror.org/0579h7m09', 'no_lang_code', 1, 'https://ror.org/0579h7m09 Creative Research Enterprises (United States)'),
(57378, 'https://ror.org/04gfyfa37', 'en', 1, 'https://ror.org/04gfyfa37 Boston Partners in Education'),
(57379, 'https://ror.org/04n8xcj92', 'en', 1, 'https://ror.org/04n8xcj92 Alabama School of Fine Arts'),
(57380, 'https://ror.org/04z3y3b74', 'en', 1, 'https://ror.org/04z3y3b74 Chicago Children’s Museum'),
(57381, 'https://ror.org/005wqmj88', 'en', 1, 'https://ror.org/005wqmj88 Alaska Geological Society'),
(57382, 'https://ror.org/03yh6aq45', 'en', 1, 'https://ror.org/03yh6aq45 Alaska Institute for Justice'),
(57383, 'https://ror.org/008v85a91', 'en', 1, 'https://ror.org/008v85a91 Alaska Native Heritage Center'),
(57384, 'https://ror.org/024wpqc10', 'en', 1, 'https://ror.org/024wpqc10 Alaska Native Science Commission'),
(57385, 'https://ror.org/02em8e723', 'en', 1, 'https://ror.org/02em8e723 Brunswick Community College'),
(57386, 'https://ror.org/010y9qk38', 'en', 1, 'https://ror.org/010y9qk38 Center for the Advancement of Hispanics in Science and Engineering Education'),
(57387, 'https://ror.org/040ctp848', 'en', 1, 'https://ror.org/040ctp848 Aleut International Association'),
(57388, 'https://ror.org/01g62gh72', 'en', 1, 'https://ror.org/01g62gh72 Buehler Challenger & Science Center'),
(57389, 'https://ror.org/04z9wzt26', 'en', 1, 'https://ror.org/04z9wzt26 Appalachia-Science in the Public Interest'),
(57390, 'https://ror.org/00fk5gz64', 'en', 1, 'https://ror.org/00fk5gz64 Bunker Hill Elementary School'),
(57391, 'https://ror.org/02bwxd425', 'no_lang_code', 1, 'https://ror.org/02bwxd425 Applied Dynamics International (United States)'),
(57392, 'https://ror.org/01r32p017', 'en', 1, 'https://ror.org/01r32p017 North Texas Regional Center for Innovation and Commercialization'),
(57393, 'https://ror.org/02mtnaz94', 'en', 1, 'https://ror.org/02mtnaz94 Cyber Innovation Center'),
(57394, 'https://ror.org/02qscpy04', 'no_lang_code', 1, 'https://ror.org/02qscpy04 Applied Scientific Research (United States)'),
(57395, 'https://ror.org/05pgfe605', 'no_lang_code', 1, 'https://ror.org/05pgfe605 Dansk Sundhedssikring'),
(57396, 'https://ror.org/00k4wxv40', 'en', 1, 'https://ror.org/00k4wxv40 American Academy of Political and Social Science'),
(57397, 'https://ror.org/0128rbw31', 'en', 1, 'https://ror.org/0128rbw31 American Academy of Underwater Sciences'),
(57398, 'https://ror.org/04zd8zs90', 'en', 1, 'https://ror.org/04zd8zs90 California Indian Museum and Cultural Center'),
(57399, 'https://ror.org/02b5w5t35', 'en', 1, 'https://ror.org/02b5w5t35 American Arbitration Association'),
(57400, 'https://ror.org/0264mj391', 'en', 1, 'https://ror.org/0264mj391 Grace Hudson Museum and Sun House'),
(57401, 'https://ror.org/0269gkq77', 'en', 1, 'https://ror.org/0269gkq77 Perot Museum of Nature and Science'),
(57402, 'https://ror.org/05jp2s596', 'en', 1, 'https://ror.org/05jp2s596 California Public Interest Research Group'),
(57403, 'https://ror.org/041wcwm28', 'en', 1, 'https://ror.org/041wcwm28 American Association of Physical Anthropologists'),
(57404, 'https://ror.org/04z0aed53', 'en', 1, 'https://ror.org/04z0aed53 The Clay Minerals Society'),
(57405, 'https://ror.org/035zsgw07', 'no_lang_code', 1, 'https://ror.org/035zsgw07 Cambridge Collaborative (United States)'),
(57406, 'https://ror.org/05fqw3447', 'en', 1, 'https://ror.org/05fqw3447 Carter County Museum'),
(57407, 'https://ror.org/04gm2d409', 'no_lang_code', 1, 'https://ror.org/04gm2d409 Cellulose Sciences International (United States)'),
(57408, 'https://ror.org/04a409h19', 'en', 1, 'https://ror.org/04a409h19 Dawson Education Cooperative'),
(57409, 'https://ror.org/04c275n83', 'en', 1, 'https://ror.org/04c275n83 Center for Accessible Technology'),
(57410, 'https://ror.org/007ca3v86', 'en', 1, 'https://ror.org/007ca3v86 Council for Advancement and Support of Education'),
(57411, 'https://ror.org/03qhz4n98', 'en', 1, 'https://ror.org/03qhz4n98 Center for Excellence in Education'),
(57412, 'https://ror.org/007tk2m83', 'no_lang_code', 1, 'https://ror.org/007tk2m83 Cleveland-Cliffs (United States)'),
(57413, 'https://ror.org/01sr4q713', 'en', 1, 'https://ror.org/01sr4q713 Center for International Environmental Law'),
(57414, 'https://ror.org/024r4w520', 'en', 1, 'https://ror.org/024r4w520 Island Press'),
(57415, 'https://ror.org/05mrk2t44', 'en', 1, 'https://ror.org/05mrk2t44 Center for Snow and Avalanche Studies'),
(57416, 'https://ror.org/047yyd552', 'en', 1, 'https://ror.org/047yyd552 American Foundry Society'),
(57417, 'https://ror.org/05e2tvq95', 'en', 1, 'https://ror.org/05e2tvq95 Defense Contract Management Agency'),
(57418, 'https://ror.org/04pz1vx14', 'en', 1, 'https://ror.org/04pz1vx14 Coastal Marine Biolabs'),
(57419, 'https://ror.org/04z256d90', 'en', 1, 'https://ror.org/04z256d90 Governor''s Office of Planning and Research'),
(57420, 'https://ror.org/04kzcc298', 'en', 1, 'https://ror.org/04kzcc298 Cognitive Medical Systems'),
(57421, 'https://ror.org/01v8fa928', 'en', 1, 'https://ror.org/01v8fa928 American Institute of Hydrology'),
(57422, 'https://ror.org/00gxvz816', 'en', 1, 'https://ror.org/00gxvz816 Associated Colleges of Central Kansas'),
(57423, 'https://ror.org/04bsbyy14', 'en', 1, 'https://ror.org/04bsbyy14 Delmarva Advisory Council'),
(57424, 'https://ror.org/003438m13', 'en', 1, 'https://ror.org/003438m13 Associated Colleges of the Twin Cities'),
(57425, 'https://ror.org/00cnyek90', 'en', 1, 'https://ror.org/00cnyek90 American Institute of Professional Geologists'),
(57426, 'https://ror.org/02ypxp350', 'en', 1, 'https://ror.org/02ypxp350 Metal Powder Industries Federation'),
(57427, 'https://ror.org/03q9mj749', 'en', 1, 'https://ror.org/03q9mj749 American Public Works Association'),
(57428, 'https://ror.org/02dpw9611', 'en', 1, 'https://ror.org/02dpw9611 Digital Harbor Foundation'),
(57429, 'https://ror.org/037mx5d24', 'en', 1, 'https://ror.org/037mx5d24 American Society for Clinical Investigation'),
(57430, 'https://ror.org/04304fr42', 'en', 1, 'https://ror.org/04304fr42 National Finance Center'),
(57431, 'https://ror.org/01d0zv889', 'en', 1, 'https://ror.org/01d0zv889 Milton J. Rubenstein Museum of Science and Technology'),
(57432, 'https://ror.org/00v8kbs06', 'en', 1, 'https://ror.org/00v8kbs06 Discovery Museum and Planetarium'),
(57433, 'https://ror.org/05y6ppz60', 'en', 1, 'https://ror.org/05y6ppz60 Don Harrington Discovery Center'),
(57434, 'https://ror.org/030bv9h77', 'en', 1, 'https://ror.org/030bv9h77 Holloman Air Force Base'),
(57435, 'https://ror.org/05n07wm39', 'en', 1, 'https://ror.org/05n07wm39 Colorado Community College System'),
(57436, 'https://ror.org/04j2vda74', 'en', 1, 'https://ror.org/04j2vda74 DuPage Children''s Museum'),
(57437, 'https://ror.org/00ayb2728', 'en', 1, 'https://ror.org/00ayb2728 Patrick Air Force Base'),
(57438, 'https://ror.org/055tvcv06', 'en', 1, 'https://ror.org/055tvcv06 Four Corners School of Outdoor Education'),
(57439, 'https://ror.org/03772c153', 'en', 1, 'https://ror.org/03772c153 Future of Privacy Forum'),
(57440, 'https://ror.org/00bkg1j27', 'en', 1, 'https://ror.org/00bkg1j27 The Astronauts Memorial Foundation'),
(57441, 'https://ror.org/050tgz329', 'en', 1, 'https://ror.org/050tgz329 Eastern Maine Community College'),
(57442, 'https://ror.org/01wgg7498', 'en', 1, 'https://ror.org/01wgg7498 Atomic Heritage Foundation'),
(57443, 'https://ror.org/01fdfdf14', 'en', 1, 'https://ror.org/01fdfdf14 The Econometric Society'),
(57444, 'https://ror.org/046tgw891', 'en', 1, 'https://ror.org/046tgw891 New Hampshire Audubon'),
(57445, 'https://ror.org/029b3y474', 'en', 1, 'https://ror.org/029b3y474 Edgecombe Community College'),
(57446, 'https://ror.org/04x4dcg02', 'en', 1, 'https://ror.org/04x4dcg02 Thinkery'),
(57447, 'https://ror.org/009tt1y46', 'en', 1, 'https://ror.org/009tt1y46 Autodesk Foundation'),
(57448, 'https://ror.org/05x4n5887', 'en', 1, 'https://ror.org/05x4n5887 Information Systems Audit and Control Association'),
(57449, 'https://ror.org/01ck0ze30', 'en', 1, 'https://ror.org/01ck0ze30 Metropolitan Educational Cooperative Service Unit'),
(57450, 'https://ror.org/04h15t444', 'en', 1, 'https://ror.org/04h15t444 Bay Area Discovery Museum'),
(57451, 'https://ror.org/02gfcne25', 'en', 1, 'https://ror.org/02gfcne25 Eidos Education'),
(57452, 'https://ror.org/018w38s46', 'en', 1, 'https://ror.org/018w38s46 Giant Screen Cinema Association'),
(57453, 'https://ror.org/05a90wj20', 'en', 1, 'https://ror.org/05a90wj20 Girl Scouts of NE Kansas and NW Missouri'),
(57454, 'https://ror.org/001f8m487', 'en', 1, 'https://ror.org/001f8m487 Global Environment and Technology Foundation'),
(57455, 'https://ror.org/02kh18p78', 'en', 1, 'https://ror.org/02kh18p78 Elementary Institute of Science'),
(57456, 'https://ror.org/001zdb338', 'it', 1, 'https://ror.org/001zdb338 Fondazione ISAL'),
(57457, 'https://ror.org/029qv0y24', 'en', 1, 'https://ror.org/029qv0y24 The Connecticut Audubon Society'),
(57458, 'https://ror.org/03m84n725', 'en', 1, 'https://ror.org/03m84n725 California Governor’s Office of Emergency Services'),
(57459, 'https://ror.org/000y51230', 'en', 1, 'https://ror.org/000y51230 Vermont Natural Resources Council'),
(57460, 'https://ror.org/01g6k1070', 'en', 1, 'https://ror.org/01g6k1070 HighScope'),
(57461, 'https://ror.org/03ze2q110', 'en', 1, 'https://ror.org/03ze2q110 Essex Westford School District'),
(57462, 'https://ror.org/04ngqwc75', 'en', 1, 'https://ror.org/04ngqwc75 Hilton Pond Center for Piedmont Natural History'),
(57463, 'https://ror.org/05h5s3f74', 'no_lang_code', 1, 'https://ror.org/05h5s3f74 Holtec International (United States)'),
(57464, 'https://ror.org/00a8x7j67', 'en', 1, 'https://ror.org/00a8x7j67 Federal Law Enforcement Training Centers'),
(57465, 'https://ror.org/03b6wj477', 'en', 1, 'https://ror.org/03b6wj477 Corning Museum of Glass'),
(57466, 'https://ror.org/00ck5vv44', 'en', 1, 'https://ror.org/00ck5vv44 Ignited'),
(57467, 'https://ror.org/027vp5j60', 'en', 1, 'https://ror.org/027vp5j60 Huntsville Madison County Chamber'),
(57468, 'https://ror.org/0308e9714', 'no_lang_code', 1, 'https://ror.org/0308e9714 Insite Medical Technologies (United States)'),
(57469, 'https://ror.org/04c6zpp14', 'en', 1, 'https://ror.org/04c6zpp14 InSites'),
(57470, 'https://ror.org/05bp5yn81', 'en', 1, 'https://ror.org/05bp5yn81 Fiber Optic Association'),
(57471, 'https://ror.org/04705pk24', 'en', 1, 'https://ror.org/04705pk24 California Institute Of Medical Science'),
(57472, 'https://ror.org/05c3kx226', 'en', 1, 'https://ror.org/05c3kx226 First Alaskans Institute'),
(57473, 'https://ror.org/02wq1wf87', 'en', 1, 'https://ror.org/02wq1wf87 Council for Opportunity in Education'),
(57474, 'https://ror.org/02zhc2371', 'no_lang_code', 1, 'https://ror.org/02zhc2371 Innovative Technology Laboratories (United States)'),
(57475, 'https://ror.org/03g2qrf69', 'en', 1, 'https://ror.org/03g2qrf69 Florida Council of Teachers of Mathematics'),
(57476, 'https://ror.org/00g3t0998', 'en', 1, 'https://ror.org/00g3t0998 The Bureau of Overseas Buildings Operations'),
(57477, 'https://ror.org/03chvfw61', 'en', 1, 'https://ror.org/03chvfw61 International Community for Auditory Display'),
(57478, 'https://ror.org/04bbrxk94', 'en', 1, 'https://ror.org/04bbrxk94 Council of Athabascan Tribal Governments'),
(57479, 'https://ror.org/01j2f9q17', 'en', 1, 'https://ror.org/01j2f9q17 TerrainWorks'),
(57480, 'https://ror.org/00pwy8p79', 'en', 1, 'https://ror.org/00pwy8p79 International Foundation for Entrepreneurship, Science, and Technology'),
(57481, 'https://ror.org/042dk7821', 'en', 1, 'https://ror.org/042dk7821 Madison Children''s Museum'),
(57482, 'https://ror.org/04yxf9085', 'en', 1, 'https://ror.org/04yxf9085 Maine Discovery Museum'),
(57483, 'https://ror.org/0464wn274', 'en', 1, 'https://ror.org/0464wn274 Sericultural Research Institute 养殖研究所'),
(57484, 'https://ror.org/012n4jm27', 'en', 1, 'https://ror.org/012n4jm27 State Technical College of Missouri'),
(57485, 'https://ror.org/05tt58068', 'en', 1, 'https://ror.org/05tt58068 Nevin Scrimshaw International Nutrition Foundation'),
(57486, 'https://ror.org/001vtsp98', 'en', 1, 'https://ror.org/001vtsp98 Institute for Educational Inquiry'),
(57487, 'https://ror.org/02cj39680', 'en', 1, 'https://ror.org/02cj39680 Malheur Field Station'),
(57488, 'https://ror.org/006rzj065', 'en', 1, 'https://ror.org/006rzj065 Institute for Environmental Research and Education'),
(57489, 'https://ror.org/00gens972', 'en', 1, 'https://ror.org/00gens972 Living Tongues Institute for Endangered Languages'),
(57490, 'https://ror.org/044vvxq04', 'en', 1, 'https://ror.org/044vvxq04 International Society for Chronobiology'),
(57491, 'https://ror.org/05qtxj124', 'en', 1, 'https://ror.org/05qtxj124 National Academy of Public Administration'),
(57492, 'https://ror.org/02cqykx88', 'en', 1, 'https://ror.org/02cqykx88 International Society of Service Innovation Professionals'),
(57493, 'https://ror.org/041n62j20', 'en', 1, 'https://ror.org/041n62j20 Maryland Department of Legislative Services'),
(57494, 'https://ror.org/02r2n8660', 'en', 1, 'https://ror.org/02r2n8660 The Loka Institute'),
(57495, 'https://ror.org/01va9fe31', 'no_lang_code', 1, 'https://ror.org/01va9fe31 Inslaw (United States)'),
(57496, 'https://ror.org/02krjt890', 'en', 1, 'https://ror.org/02krjt890 Institute for Learning Innovation'),
(57497, 'https://ror.org/01hz8zy20', 'en', 1, 'https://ror.org/01hz8zy20 Los Angeles Council of Black Professional Engineers'),
(57498, 'https://ror.org/01e32p682', 'en', 1, 'https://ror.org/01e32p682 Island Resources Foundation'),
(57499, 'https://ror.org/0075qjc87', 'en', 1, 'https://ror.org/0075qjc87 Mathematics Education Collaborative'),
(57500, 'https://ror.org/015w53b07', 'en', 1, 'https://ror.org/015w53b07 NACE International'),
(57501, 'https://ror.org/03h007a78', 'en', 1, 'https://ror.org/03h007a78 Association for Tropical Biology and Conservation'),
(57502, 'https://ror.org/05vfzkq36', 'en', 1, 'https://ror.org/05vfzkq36 National Association of Counties'),
(57503, 'https://ror.org/0215tq732', 'no_lang_code', 1, 'https://ror.org/0215tq732 MEI Asset Protection (United States)'),
(57504, 'https://ror.org/053xtf838', 'en', 1, 'https://ror.org/053xtf838 Mendocino Coast District Hospital'),
(57505, 'https://ror.org/003c3g222', 'en', 1, 'https://ror.org/003c3g222 Mental Research Institute'),
(57506, 'https://ror.org/01x3y4k69', 'en', 1, 'https://ror.org/01x3y4k69 Kalamazoo Psychiatric Hospital'),
(57507, 'https://ror.org/05m94vg70', 'en', 1, 'https://ror.org/05m94vg70 National Association of Home Builders'),
(57508, 'https://ror.org/048ga6v20', 'en', 1, 'https://ror.org/048ga6v20 Mesa Public Schools'),
(57509, 'https://ror.org/01axx9y09', 'en', 1, 'https://ror.org/01axx9y09 Kawaiisu Language and Cultural Center'),
(57510, 'https://ror.org/039xvf459', 'en', 1, 'https://ror.org/039xvf459 Kentucky Department of Revenue'),
(57511, 'https://ror.org/00be8q935', 'en', 1, 'https://ror.org/00be8q935 National Board for Professional Teaching Standards'),
(57512, 'https://ror.org/043jpam45', 'en', 1, 'https://ror.org/043jpam45 Keystone Initiative for Network Based Education and Research'),
(57513, 'https://ror.org/05bw8dc26', 'en', 1, 'https://ror.org/05bw8dc26 Newfound Harbor Marine Institute'),
(57514, 'https://ror.org/00w8p4b22', 'en', 1, 'https://ror.org/00w8p4b22 Peoria Hospital'),
(57515, 'https://ror.org/041x9ee87', 'no_lang_code', 1, 'https://ror.org/041x9ee87 Klar Scientific (United States)'),
(57516, 'https://ror.org/01ecxwt20', 'en', 1, 'https://ror.org/01ecxwt20 Center for Teaching Thinking'),
(57517, 'https://ror.org/01ehh4g09', 'en', 1, 'https://ror.org/01ehh4g09 Metropolitan Washington Council of Governments'),
(57518, 'https://ror.org/03sbhxr82', 'en', 1, 'https://ror.org/03sbhxr82 Mid-Pacific Institute'),
(57519, 'https://ror.org/00kk4ng10', 'en', 1, 'https://ror.org/00kk4ng10 The Institute for Advanced Physics'),
(57520, 'https://ror.org/01kr18419', 'en', 1, 'https://ror.org/01kr18419 Middle East Institute'),
(57521, 'https://ror.org/05jr0p734', 'en', 1, 'https://ror.org/05jr0p734 Joint Interoperability Test Command'),
(57522, 'https://ror.org/04vs51a50', 'en', 1, 'https://ror.org/04vs51a50 Midtown Educational Foundation'),
(57523, 'https://ror.org/00nyscn52', 'en', 1, 'https://ror.org/00nyscn52 National Council for Advanced Manufacturing'),
(57524, 'https://ror.org/02jddhc12', 'en', 1, 'https://ror.org/02jddhc12 Laguna Research'),
(57525, 'https://ror.org/03r4phk79', 'en', 1, 'https://ror.org/03r4phk79 Land Information Access Association'),
(57526, 'https://ror.org/00cjqwv82', 'en', 1, 'https://ror.org/00cjqwv82 Minnesota''s Private Colleges'),
(57527, 'https://ror.org/014gzk937', 'en', 1, 'https://ror.org/014gzk937 Langley Porter Psychiatric Hospital and Clinics'),
(57528, 'https://ror.org/0580n4369', 'en', 1, 'https://ror.org/0580n4369 Minnesota Science Teachers Association'),
(57529, 'https://ror.org/03jykpa72', 'en', 1, 'https://ror.org/03jykpa72 National Congress of American Indians'),
(57530, 'https://ror.org/03jm9y996', 'en', 1, 'https://ror.org/03jm9y996 Lawrence Semiconductor Research Laboratory'),
(57531, 'https://ror.org/012n40c33', 'en', 1, 'https://ror.org/012n40c33 Mississippi Museum of Natural Science'),
(57532, 'https://ror.org/03p2pvt93', 'en', 1, 'https://ror.org/03p2pvt93 National Council on Crime and Delinquency'),
(57533, 'https://ror.org/00nv0e804', 'en', 1, 'https://ror.org/00nv0e804 Nebraska Council on Economic Education'),
(57534, 'https://ror.org/04vs52k24', 'en', 1, 'https://ror.org/04vs52k24 Legacy International'),
(57535, 'https://ror.org/00g7amd04', 'en', 1, 'https://ror.org/00g7amd04 Missouri Academy of Science'),
(57536, 'https://ror.org/05sf78r66', 'en', 1, 'https://ror.org/05sf78r66 Organizations Concerned About Rural Education'),
(57537, 'https://ror.org/05e0am895', 'en', 1, 'https://ror.org/05e0am895 Mobile Area Education Foundation'),
(57538, 'https://ror.org/01mj0ma27', 'en', 1, 'https://ror.org/01mj0ma27 Orlando Science Center'),
(57539, 'https://ror.org/05ne0js61', 'en', 1, 'https://ror.org/05ne0js61 Modoc County Office of Education'),
(57540, 'https://ror.org/04ex7c508', 'en', 1, 'https://ror.org/04ex7c508 Oshkosh Public Museum'),
(57541, 'https://ror.org/05rpe4a45', 'en', 1, 'https://ror.org/05rpe4a45 Nebraska State College System'),
(57542, 'https://ror.org/0211h1012', 'en', 1, 'https://ror.org/0211h1012 GC Media'),
(57543, 'https://ror.org/03rjqyx74', 'en', 1, 'https://ror.org/03rjqyx74 Montana Science Teachers Association'),
(57544, 'https://ror.org/03p03fd83', 'en', 1, 'https://ror.org/03p03fd83 Montgomery Botanical Center'),
(57545, 'https://ror.org/017g1tr52', 'en', 1, 'https://ror.org/017g1tr52 Morrison Tech'),
(57546, 'https://ror.org/02hbjq124', 'no_lang_code', 1, 'https://ror.org/02hbjq124 Network Foundation Technologies (United States)'),
(57547, 'https://ror.org/0290cy459', 'no_lang_code', 1, 'https://ror.org/0290cy459 Motion Scientific (United States)'),
(57548, 'https://ror.org/05712eb04', 'en', 1, 'https://ror.org/05712eb04 Pacific Sociological Association'),
(57549, 'https://ror.org/056jvp908', 'en', 1, 'https://ror.org/056jvp908 Nebraska Independent College Foundation'),
(57550, 'https://ror.org/03vvy2n47', 'en', 1, 'https://ror.org/03vvy2n47 Mountain Studies Institute'),
(57551, 'https://ror.org/02f3qjz81', 'en', 1, 'https://ror.org/02f3qjz81 PaleoCultural Research Group'),
(57552, 'https://ror.org/01zzpzt34', 'en', 1, 'https://ror.org/01zzpzt34 RNA Society'),
(57553, 'https://ror.org/006wckc26', 'en', 1, 'https://ror.org/006wckc26 Neutron Scattering Society of America'),
(57554, 'https://ror.org/030gep771', 'en', 1, 'https://ror.org/030gep771 Roanoke-Chowan Community College'),
(57555, 'https://ror.org/05htm1j67', 'en', 1, 'https://ror.org/05htm1j67 National Gardening Association'),
(57556, 'https://ror.org/01w36fb33', 'it', 1, 'https://ror.org/01w36fb33 Agenzia Sanitaria e Sociale Regionale'),
(57557, 'https://ror.org/00ks0x650', 'en', 1, 'https://ror.org/00ks0x650 Neville Public Museum'),
(57558, 'https://ror.org/03anfar33', 'en', 1, 'https://ror.org/03anfar33 Rocky Mountain Institute'),
(57559, 'https://ror.org/01vjv9396', 'en', 1, 'https://ror.org/01vjv9396 Virginia Living Museum'),
(57560, 'https://ror.org/00xy72355', 'en', 1, 'https://ror.org/00xy72355 Rocky Mountain School of Expeditionary Learning'),
(57561, 'https://ror.org/04hfn2h85', 'en', 1, 'https://ror.org/04hfn2h85 National Health Council'),
(57562, 'https://ror.org/00yeqdq24', 'en', 1, 'https://ror.org/00yeqdq24 Center for Aquatic Sciences'),
(57563, 'https://ror.org/03jp2xz10', 'en', 1, 'https://ror.org/03jp2xz10 Intercultural Center for Research in Education'),
(57564, 'https://ror.org/01tdq4v27', 'en', 1, 'https://ror.org/01tdq4v27 RUTE Foundations'),
(57565, 'https://ror.org/01cs7w326', 'en', 1, 'https://ror.org/01cs7w326 NTL Institute for Applied Behavioral Science'),
(57566, 'https://ror.org/051nkwd95', 'en', 1, 'https://ror.org/051nkwd95 New Renaissance Institute'),
(57567, 'https://ror.org/04w70m307', 'en', 1, 'https://ror.org/04w70m307 Centro Intercultural de Estudios de Desiertos y Océanos Intercultural Center for the Study of Deserts and Oceans'),
(57568, 'https://ror.org/041b88186', 'en', 1, 'https://ror.org/041b88186 Intercultural Development Research Association'),
(57569, 'https://ror.org/039ngxv93', 'en', 1, 'https://ror.org/039ngxv93 Saginaw Chippewa Tribal College'),
(57570, 'https://ror.org/03exkkm57', 'no_lang_code', 1, 'https://ror.org/03exkkm57 Polaris Research and Development (United States)'),
(57571, 'https://ror.org/03nkqys97', 'en', 1, 'https://ror.org/03nkqys97 New York City Police Department'),
(57572, 'https://ror.org/024hyfk31', 'en', 1, 'https://ror.org/024hyfk31 Polish Institute of Arts and Sciences of America'),
(57573, 'https://ror.org/05mphpp98', 'en', 1, 'https://ror.org/05mphpp98 Saint Mary''s School'),
(57574, 'https://ror.org/01d7a8h40', 'en', 1, 'https://ror.org/01d7a8h40 NewPath Research'),
(57575, 'https://ror.org/05q2w8v63', 'en', 1, 'https://ror.org/05q2w8v63 Salvadori Center'),
(57576, 'https://ror.org/01xhd2w58', 'no_lang_code', 1, 'https://ror.org/01xhd2w58 Prescient Surgical (United States)'),
(57577, 'https://ror.org/032h4fk17', 'en', 1, 'https://ror.org/032h4fk17 San Francisco Zoo'),
(57578, 'https://ror.org/02r0j1w74', 'en', 1, 'https://ror.org/02r0j1w74 Program Support Center'),
(57579, 'https://ror.org/02qa68339', 'en', 1, 'https://ror.org/02qa68339 National Parks Conservation Association'),
(57580, 'https://ror.org/010tc4s75', 'en', 1, 'https://ror.org/010tc4s75 Sanibel-Captiva Conservation Foundation'),
(57581, 'https://ror.org/003y38f74', 'en', 1, 'https://ror.org/003y38f74 National Recreation and Park Association'),
(57582, 'https://ror.org/02dyt2y09', 'en', 1, 'https://ror.org/02dyt2y09 Public Laboratory for Open Technology and Science'),
(57583, 'https://ror.org/05be8g764', 'en', 1, 'https://ror.org/05be8g764 Public Responsibility in Medicine and Research'),
(57584, 'https://ror.org/039fmvr98', 'en', 1, 'https://ror.org/039fmvr98 Southwestern Vermont Health Care'),
(57585, 'https://ror.org/020mhtx24', 'en', 1, 'https://ror.org/020mhtx24 Southeast Career Technical Academy'),
(57586, 'https://ror.org/056w6an22', 'en', 1, 'https://ror.org/056w6an22 North Carolina Department of Administration'),
(57587, 'https://ror.org/02wwqa894', 'en', 1, 'https://ror.org/02wwqa894 Central Carolina Technical College'),
(57588, 'https://ror.org/02ewxar05', 'en', 1, 'https://ror.org/02ewxar05 School for Field Studies'),
(57589, 'https://ror.org/04xj4zj95', 'en', 1, 'https://ror.org/04xj4zj95 Southeast Tech'),
(57590, 'https://ror.org/01r2vqh34', 'en', 1, 'https://ror.org/01r2vqh34 North Carolina Office of the Governor'),
(57591, 'https://ror.org/03h9qwy97', 'en', 1, 'https://ror.org/03h9qwy97 Southeastern Regional Education Service Center'),
(57592, 'https://ror.org/02zvcx647', 'en', 1, 'https://ror.org/02zvcx647 Science Club'),
(57593, 'https://ror.org/00kh9dy12', 'en', 1, 'https://ror.org/00kh9dy12 Science Museum of Western Virginia'),
(57594, 'https://ror.org/004xnky59', 'en', 1, 'https://ror.org/004xnky59 Science Museum of Virginia'),
(57595, 'https://ror.org/05gb36730', 'en', 1, 'https://ror.org/05gb36730 Levin Institute'),
(57596, 'https://ror.org/02wsg8t40', 'en', 1, 'https://ror.org/02wsg8t40 Scientists Center for Animal Welfare'),
(57597, 'https://ror.org/00szg4x05', 'en', 1, 'https://ror.org/00szg4x05 Technology Student Association'),
(57598, 'https://ror.org/01vw8ee97', 'en', 1, 'https://ror.org/01vw8ee97 Rhode Island Department of Elementary and Secondary Education'),
(57599, 'https://ror.org/0370kn134', 'en', 1, 'https://ror.org/0370kn134 Southwest Center for Educational Excellence'),
(57600, 'https://ror.org/0598gge11', 'en', 1, 'https://ror.org/0598gge11 Ridgewater College'),
(57601, 'https://ror.org/03cr9cq69', 'no_lang_code', 1, 'https://ror.org/03cr9cq69 Rivanna Medical (United States)'),
(57602, 'https://ror.org/045znsy82', 'en', 1, 'https://ror.org/045znsy82 River Valley Community College'),
(57603, 'https://ror.org/03vnp0789', 'en', 1, 'https://ror.org/03vnp0789 Siskiyou County Office of Education'),
(57604, 'https://ror.org/03hx4df17', 'en', 1, 'https://ror.org/03hx4df17 Instructional Research Group'),
(57605, 'https://ror.org/04bt3ez84', 'no_lang_code', 1, 'https://ror.org/04bt3ez84 SmalTec International (United States)'),
(57606, 'https://ror.org/01xpn7z95', 'en', 1, 'https://ror.org/01xpn7z95 Sustainable Horizons Institute'),
(57607, 'https://ror.org/03nawys62', 'en', 1, 'https://ror.org/03nawys62 Thorne Nature Experience'),
(57608, 'https://ror.org/05t04rb70', 'en', 1, 'https://ror.org/05t04rb70 National Consumer Law Center'),
(57609, 'https://ror.org/03ggp5v59', 'en', 1, 'https://ror.org/03ggp5v59 Society For Applied Spectroscopy'),
(57610, 'https://ror.org/02gx2rj64', 'en', 1, 'https://ror.org/02gx2rj64 Tahoe Regional Planning Agency'),
(57611, 'https://ror.org/004ehjz87', 'en', 1, 'https://ror.org/004ehjz87 Society for Biomaterials'),
(57612, 'https://ror.org/042z8c185', 'en', 1, 'https://ror.org/042z8c185 Tarkio College'),
(57613, 'https://ror.org/003s9de04', 'en', 1, 'https://ror.org/003s9de04 TMT Observatory'),
(57614, 'https://ror.org/053pqt666', 'en', 1, 'https://ror.org/053pqt666 Society for Modeling and Simulation International'),
(57615, 'https://ror.org/006ab0n43', 'en', 1, 'https://ror.org/006ab0n43 Community Frameworks'),
(57616, 'https://ror.org/052farg34', 'en', 1, 'https://ror.org/052farg34 Trenholm State Community College'),
(57617, 'https://ror.org/04wx5ek40', 'en', 1, 'https://ror.org/04wx5ek40 Tau Beta Pi Association'),
(57618, 'https://ror.org/01q3wpv10', 'en', 1, 'https://ror.org/01q3wpv10 St. Mark''s School of Texas'),
(57619, 'https://ror.org/01bbdh545', 'en', 1, 'https://ror.org/01bbdh545 The Nurture Nature Foundation'),
(57620, 'https://ror.org/034hg1w33', 'en', 1, 'https://ror.org/034hg1w33 Tribal Nations Research Group'),
(57621, 'https://ror.org/00h2dy637', 'en', 1, 'https://ror.org/00h2dy637 Teachers Development Group'),
(57622, 'https://ror.org/053t8d971', 'en', 1, 'https://ror.org/053t8d971 Teaching Channel'),
(57623, 'https://ror.org/03574zr06', 'en', 1, 'https://ror.org/03574zr06 Ocean Institute'),
(57624, 'https://ror.org/02vf9n064', 'en', 1, 'https://ror.org/02vf9n064 Oceanic Research Group'),
(57625, 'https://ror.org/029hj0c48', 'en', 1, 'https://ror.org/029hj0c48 Space Foundation'),
(57626, 'https://ror.org/048sptm58', 'en', 1, 'https://ror.org/048sptm58 OCTANE FOUNDATION'),
(57627, 'https://ror.org/00xma8d72', 'en', 1, 'https://ror.org/00xma8d72 Stonewall Learning Center'),
(57628, 'https://ror.org/00qedn974', 'en', 1, 'https://ror.org/00qedn974 Strategic Education Research Partnership'),
(57629, 'https://ror.org/046df5t56', 'en', 1, 'https://ror.org/046df5t56 U.S. Space and Rocket Center'),
(57630, 'https://ror.org/02wq0c278', 'en', 1, 'https://ror.org/02wq0c278 Success for All Foundation'),
(57631, 'https://ror.org/00hygje57', 'en', 1, 'https://ror.org/00hygje57 Undersea and Hyperbaric Medical Society'),
(57632, 'https://ror.org/01093dx30', 'en', 1, 'https://ror.org/01093dx30 Urban Land Institute'),
(57633, 'https://ror.org/02c3t8t42', 'en', 1, 'https://ror.org/02c3t8t42 West Virginia Research Technology Park'),
(57634, 'https://ror.org/049hac046', 'en', 1, 'https://ror.org/049hac046 Oklahoma State Regents for Higher Education'),
(57635, 'https://ror.org/019164h44', 'en', 1, 'https://ror.org/019164h44 OSU-University Multispectral Laboratories'),
(57636, 'https://ror.org/02q1t6t25', 'en', 1, 'https://ror.org/02q1t6t25 Usenix Association'),
(57637, 'https://ror.org/04phz6672', 'en', 1, 'https://ror.org/04phz6672 Old Colorado City Historical Society'),
(57638, 'https://ror.org/05k8f3f74', 'en', 1, 'https://ror.org/05k8f3f74 Utah Society for Environmental Education'),
(57639, 'https://ror.org/02q3wwm43', 'en', 1, 'https://ror.org/02q3wwm43 Telluride Science Research Center'),
(57640, 'https://ror.org/05dweaz25', 'en', 1, 'https://ror.org/05dweaz25 Vision Education and Media'),
(57641, 'https://ror.org/04mqvep70', 'en', 1, 'https://ror.org/04mqvep70 Orange County Department of Education'),
(57642, 'https://ror.org/0151kez15', 'en', 1, 'https://ror.org/0151kez15 United Negro College Fund'),
(57643, 'https://ror.org/02abmp507', 'en', 1, 'https://ror.org/02abmp507 United States Postal Service Office of Inspector General'),
(57644, 'https://ror.org/05262w896', 'en', 1, 'https://ror.org/05262w896 US Virtual Astronomical Observatory'),
(57645, 'https://ror.org/02jf05b83', 'en', 1, 'https://ror.org/02jf05b83 The 21st Century Partnership for STEM Education'),
(57646, 'https://ror.org/001smqx66', 'no_lang_code', 1, 'https://ror.org/001smqx66 ZSX Medical (United States)'),
(57647, 'https://ror.org/00kc1k067', 'en', 1, 'https://ror.org/00kc1k067 The White Oak Institute'),
(57648, 'https://ror.org/04ngsnt90', 'en', 1, 'https://ror.org/04ngsnt90 The Baum Foundation'),
(57649, 'https://ror.org/05syayg48', 'en', 1, 'https://ror.org/05syayg48 Wyoming Outdoor Council'),
(57650, 'https://ror.org/04kqymn96', 'en', 1, 'https://ror.org/04kqymn96 Wild Salmon Center'),
(57651, 'https://ror.org/02v8jq558', 'en', 1, 'https://ror.org/02v8jq558 Xerces Society'),
(57652, 'https://ror.org/02rhspt79', 'en', 1, 'https://ror.org/02rhspt79 University of Hawaii Maui College'),
(57653, 'https://ror.org/05gjj8523', 'en', 1, 'https://ror.org/05gjj8523 Yellowstone Forever'),
(57654, 'https://ror.org/041twma66', 'en', 1, 'https://ror.org/041twma66 Science Factory'),
(57655, 'https://ror.org/03kqtp318', 'en', 1, 'https://ror.org/03kqtp318 BioBricks Foundation'),
(57656, 'https://ror.org/058s7pp59', 'en', 1, 'https://ror.org/058s7pp59 Northcentral Arkansas Education Cooperative'),
(57657, 'https://ror.org/03qx3mk66', 'en', 1, 'https://ror.org/03qx3mk66 New York City Foundation for Computer Science Education'),
(57658, 'https://ror.org/05je0gs16', 'en', 1, 'https://ror.org/05je0gs16 San Diego Archaeological Center'),
(57659, 'https://ror.org/05mavg897', 'en', 1, 'https://ror.org/05mavg897 Society for Organizational Learning'),
(57660, 'https://ror.org/056npsb07', 'en', 1, 'https://ror.org/056npsb07 Union City Public Schools'),
(57661, 'https://ror.org/02rzjbv15', 'en', 1, 'https://ror.org/02rzjbv15 Virtual Reality Medical Center'),
(57662, 'https://ror.org/00cdkww69', 'en', 1, 'https://ror.org/00cdkww69 Williamsburg Technical College'),
(57663, 'https://ror.org/028vbzs83', 'en', 1, 'https://ror.org/028vbzs83 Children’s Museum of Houston'),
(57664, 'https://ror.org/025c18611', 'en', 1, 'https://ror.org/025c18611 Wildlands Network'),
(57665, 'https://ror.org/03xx7rp81', 'en', 1, 'https://ror.org/03xx7rp81 Council for Adult and Experiential Learning'),
(57666, 'https://ror.org/04qb91x19', 'en', 1, 'https://ror.org/04qb91x19 Latin School of Chicago'),
(57667, 'https://ror.org/01yjps198', 'en', 1, 'https://ror.org/01yjps198 Long Now Foundation'),
(57668, 'https://ror.org/04s679e90', 'en', 1, 'https://ror.org/04s679e90 Western Foundation of Vertebrate Zoology'),
(57669, 'https://ror.org/014n97p37', 'en', 1, 'https://ror.org/014n97p37 Wisconsin Legislative Council'),
(57670, 'https://ror.org/00mks2g63', 'en', 1, 'https://ror.org/00mks2g63 Foundation for Human Potential'),
(57671, 'https://ror.org/01m9n6c96', 'en', 1, 'https://ror.org/01m9n6c96 National Science & Technology Education Partnership'),
(57672, 'https://ror.org/04sy1dy83', 'en', 1, 'https://ror.org/04sy1dy83 West Virginia Network'),
(57673, 'https://ror.org/00ame3479', 'en', 1, 'https://ror.org/00ame3479 Work Opportunity Center'),
(57674, 'https://ror.org/008nyfh72', 'en', 1, 'https://ror.org/008nyfh72 World Future Society'),
(57675, 'https://ror.org/003bxg127', 'en', 1, 'https://ror.org/003bxg127 Whitaker Center for Science and the Arts'),
(57676, 'https://ror.org/05g7jpw53', 'no_lang_code', 1, 'https://ror.org/05g7jpw53 Cory Laboratories'),
(57677, 'https://ror.org/00j6ana21', 'no_lang_code', 1, 'https://ror.org/00j6ana21 Abcombi Biosciences (United States)'),
(57678, 'https://ror.org/047bx1161', 'no_lang_code', 1, 'https://ror.org/047bx1161 Alaska Biological Research (United States)'),
(57679, 'https://ror.org/01mkr0b50', 'no_lang_code', 1, 'https://ror.org/01mkr0b50 InsightFinder (United States)'),
(57680, 'https://ror.org/00jtqvs23', 'en', 1, 'https://ror.org/00jtqvs23 Fraser Research'),
(57681, 'https://ror.org/02xpekp13', 'en', 1, 'https://ror.org/02xpekp13 Community Living'),
(57682, 'https://ror.org/01cbsja09', 'no_lang_code', 1, 'https://ror.org/01cbsja09 Acadia Harvest (United States)'),
(57683, 'https://ror.org/0518w2v98', 'en', 1, 'https://ror.org/0518w2v98 Benjamin Banneker Association'),
(57684, 'https://ror.org/04sv8h433', 'no_lang_code', 1, 'https://ror.org/04sv8h433 Activated Research Company (United States)'),
(57685, 'https://ror.org/025222y07', 'en', 1, 'https://ror.org/025222y07 Council of the Inspectors General on Integrity and Efficiency'),
(57686, 'https://ror.org/02dhsf930', 'no_lang_code', 1, 'https://ror.org/02dhsf930 CSD Nano (United States)'),
(57687, 'https://ror.org/02r0j7m07', 'en', 1, 'https://ror.org/02r0j7m07 Addiction Research Foundation'),
(57688, 'https://ror.org/05ye26511', 'no_lang_code', 1, 'https://ror.org/05ye26511 TechSolve (United States)'),
(57689, 'https://ror.org/0073whr05', 'no_lang_code', 1, 'https://ror.org/0073whr05 Fujitsu (United States)'),
(57690, 'https://ror.org/05kkspf37', 'en', 1, 'https://ror.org/05kkspf37 CueThink'),
(57691, 'https://ror.org/007jwqb84', 'en', 1, 'https://ror.org/007jwqb84 French River Education Center'),
(57692, 'https://ror.org/0082g5x07', 'en', 1, 'https://ror.org/0082g5x07 Better Education Inc'),
(57693, 'https://ror.org/032y37w70', 'en', 1, 'https://ror.org/032y37w70 American Distance Education Consortium'),
(57694, 'https://ror.org/05hzdqf47', 'en', 1, 'https://ror.org/05hzdqf47 Adirondack Area Network'),
(57695, 'https://ror.org/03qb61g53', 'no_lang_code', 1, 'https://ror.org/03qb61g53 Adnoviv (United States)'),
(57696, 'https://ror.org/028jtth96', 'en', 1, 'https://ror.org/028jtth96 Intelecom Learning'),
(57697, 'https://ror.org/02he45g63', 'en', 1, 'https://ror.org/02he45g63 Discovery Center of Idaho'),
(57698, 'https://ror.org/02zcey775', 'en', 1, 'https://ror.org/02zcey775 Bijhem Scientific'),
(57699, 'https://ror.org/02z7cqw59', 'no_lang_code', 1, 'https://ror.org/02z7cqw59 Inter-Mountain Laboratories (United States)'),
(57700, 'https://ror.org/008e4jj26', 'en', 1, 'https://ror.org/008e4jj26 Delaware Valley Industrial Resource Center'),
(57701, 'https://ror.org/02nqpk824', 'no_lang_code', 1, 'https://ror.org/02nqpk824 Advantageous Systems (United States)'),
(57702, 'https://ror.org/01mz87517', 'no_lang_code', 1, 'https://ror.org/01mz87517 BioInspira (United States)'),
(57703, 'https://ror.org/02tg91795', 'en', 1, 'https://ror.org/02tg91795 Aegean Conferences'),
(57704, 'https://ror.org/021m7am85', 'no_lang_code', 1, 'https://ror.org/021m7am85 BioMat Sciences (United States)'),
(57705, 'https://ror.org/05xet3f85', 'en', 1, 'https://ror.org/05xet3f85 Interlochen Center for the Arts'),
(57706, 'https://ror.org/04j7z5d67', 'no_lang_code', 1, 'https://ror.org/04j7z5d67 Aerospace Testing (United States)'),
(57707, 'https://ror.org/03taj9579', 'en', 1, 'https://ror.org/03taj9579 East Bay Consortium of Educational Institutions'),
(57708, 'https://ror.org/01hfvmc98', 'no_lang_code', 1, 'https://ror.org/01hfvmc98 Akervall Technologies (United States)'),
(57709, 'https://ror.org/0003h1s51', 'en', 1, 'https://ror.org/0003h1s51 International Adsorption Society'),
(57710, 'https://ror.org/04shda628', 'no_lang_code', 1, 'https://ror.org/04shda628 Biorasis (United States)'),
(57711, 'https://ror.org/02nrkmk47', 'no_lang_code', 1, 'https://ror.org/02nrkmk47 Edison Agrosciences (United States)'),
(57712, 'https://ror.org/02dc84z12', 'en', 1, 'https://ror.org/02dc84z12 International Archaeological Research Institute'),
(57713, 'https://ror.org/00fpjmb27', 'en', 1, 'https://ror.org/00fpjmb27 Alignment Nashville'),
(57714, 'https://ror.org/05ma3wj87', 'no_lang_code', 1, 'https://ror.org/05ma3wj87 Genoverde Biosciences (United States)'),
(57715, 'https://ror.org/0362ndm62', 'en', 1, 'https://ror.org/0362ndm62 Educational Media Resources'),
(57716, 'https://ror.org/00zkc0z81', 'no_lang_code', 1, 'https://ror.org/00zkc0z81 SteelCloud (United States)'),
(57717, 'https://ror.org/05f6hbt77', 'no_lang_code', 1, 'https://ror.org/05f6hbt77 AmebaGone (United States)'),
(57718, 'https://ror.org/042xens09', 'no_lang_code', 1, 'https://ror.org/042xens09 BiotecEra (United States)'),
(57719, 'https://ror.org/04j2nkn49', 'no_lang_code', 1, 'https://ror.org/04j2nkn49 Educational Solutions (United States)'),
(57720, 'https://ror.org/02tpd3k28', 'no_lang_code', 1, 'https://ror.org/02tpd3k28 IntellADAPT (United States)'),
(57721, 'https://ror.org/012729810', 'no_lang_code', 1, 'https://ror.org/012729810 GeoEngineers (United States)'),
(57722, 'https://ror.org/03wh2ff79', 'no_lang_code', 1, 'https://ror.org/03wh2ff79 International Isotopes (United States)'),
(57723, 'https://ror.org/046n2mh17', 'no_lang_code', 1, 'https://ror.org/046n2mh17 Electrocon International (United States)'),
(57724, 'https://ror.org/02sy4cy69', 'en', 1, 'https://ror.org/02sy4cy69 Palynological Society'),
(57725, 'https://ror.org/01wvkcg78', 'en', 1, 'https://ror.org/01wvkcg78 Eli Whitney Museum'),
(57726, 'https://ror.org/006zme475', 'no_lang_code', 1, 'https://ror.org/006zme475 Embedded Research Solutions (United States)'),
(57727, 'https://ror.org/05kjrdd45', 'no_lang_code', 1, 'https://ror.org/05kjrdd45 Enable Biosciences (United States)'),
(57728, 'https://ror.org/054khgx03', 'en', 1, 'https://ror.org/054khgx03 International Science and Technology Institute'),
(57729, 'https://ror.org/0055vz979', 'no_lang_code', 1, 'https://ror.org/0055vz979 Glauconix (United States)'),
(57730, 'https://ror.org/05gdr4s75', 'en', 1, 'https://ror.org/05gdr4s75 Amerind Museum'),
(57731, 'https://ror.org/05bt97174', 'no_lang_code', 1, 'https://ror.org/05bt97174 enEvolv (United States)'),
(57732, 'https://ror.org/02627jy68', 'no_lang_code', 1, 'https://ror.org/02627jy68 Amriton (United States)'),
(57733, 'https://ror.org/02b9nqj69', 'no_lang_code', 1, 'https://ror.org/02b9nqj69 Bluewater International (United States)'),
(57734, 'https://ror.org/01x6mgf32', 'no_lang_code', 1, 'https://ror.org/01x6mgf32 Anchor Science (United States)'),
(57735, 'https://ror.org/00qrpbx56', 'en', 1, 'https://ror.org/00qrpbx56 Angstron Materials (United States)'),
(57736, 'https://ror.org/00vc9tk32', 'en', 1, 'https://ror.org/00vc9tk32 Inuit Circumpolar Council'),
(57737, 'https://ror.org/01tsmdw03', 'no_lang_code', 1, 'https://ror.org/01tsmdw03 Equinosis (United States)'),
(57738, 'https://ror.org/0079d7396', 'no_lang_code', 1, 'https://ror.org/0079d7396 Bountiful Applied Research Corporation (United States)'),
(57739, 'https://ror.org/05bfdfr32', 'en', 1, 'https://ror.org/05bfdfr32 Anoka-Hennepin School District'),
(57740, 'https://ror.org/05wcjxp35', 'no_lang_code', 1, 'https://ror.org/05wcjxp35 Great Minds in STEM (United States)'),
(57741, 'https://ror.org/05v8dvy39', 'no_lang_code', 1, 'https://ror.org/05v8dvy39 Essentium Materials (United States)'),
(57742, 'https://ror.org/01583x474', 'no_lang_code', 1, 'https://ror.org/01583x474 Invictus Medical (United States)'),
(57743, 'https://ror.org/03edzye91', 'no_lang_code', 1, 'https://ror.org/03edzye91 Apama Medical (United States)'),
(57744, 'https://ror.org/00fg6ww52', 'no_lang_code', 1, 'https://ror.org/00fg6ww52 Buck Research Instruments (United States)'),
(57745, 'https://ror.org/00evne535', 'no_lang_code', 1, 'https://ror.org/00evne535 Apollo Medical Devices (United States)'),
(57746, 'https://ror.org/00tpyts80', 'no_lang_code', 1, 'https://ror.org/00tpyts80 H-Tech Laboratories (United States)'),
(57747, 'https://ror.org/00d435084', 'no_lang_code', 1, 'https://ror.org/00d435084 Factory Physics (United States)'),
(57748, 'https://ror.org/031wqxd08', 'no_lang_code', 1, 'https://ror.org/031wqxd08 IONEX Research Corporation (United States)'),
(57749, 'https://ror.org/04fdxtz57', 'no_lang_code', 1, 'https://ror.org/04fdxtz57 Far Eastern Shipping (United States)'),
(57750, 'https://ror.org/03srr7476', 'en', 1, 'https://ror.org/03srr7476 Iridescent'),
(57751, 'https://ror.org/054a8d283', 'no_lang_code', 1, 'https://ror.org/054a8d283 Applied LifeSciences & Systems (United States)'),
(57752, 'https://ror.org/02hptfp27', 'no_lang_code', 1, 'https://ror.org/02hptfp27 Caduceus Intelligence Corporation (United States)'),
(57753, 'https://ror.org/01903zs91', 'no_lang_code', 1, 'https://ror.org/01903zs91 iSono Health (United States)'),
(57754, 'https://ror.org/04ft4my53', 'no_lang_code', 1, 'https://ror.org/04ft4my53 Filament Games (United States)'),
(57755, 'https://ror.org/04ade1b90', 'en', 1, 'https://ror.org/04ade1b90 Calista Education and Culture'),
(57756, 'https://ror.org/02d750026', 'no_lang_code', 1, 'https://ror.org/02d750026 Fossil Energy Research (United States)'),
(57757, 'https://ror.org/01df9n019', 'no_lang_code', 1, 'https://ror.org/01df9n019 Applied Science Associates (United States)'),
(57758, 'https://ror.org/0301h9a14', 'no_lang_code', 1, 'https://ror.org/0301h9a14 AppScale (United States)'),
(57759, 'https://ror.org/01fsv3111', 'no_lang_code', 1, 'https://ror.org/01fsv3111 Health Fidelity (United States)'),
(57760, 'https://ror.org/04r7wpm53', 'no_lang_code', 1, 'https://ror.org/04r7wpm53 HealthMyne (United States)'),
(57761, 'https://ror.org/03w26j609', 'no_lang_code', 1, 'https://ror.org/03w26j609 Cardiac Motion (United States)'),
(57762, 'https://ror.org/0012k7s49', 'en', 1, 'https://ror.org/0012k7s49 Apri Health'),
(57763, 'https://ror.org/050hmr449', 'en', 1, 'https://ror.org/050hmr449 Jackson Hole Wildlife Film Festival'),
(57764, 'https://ror.org/05rezdz06', 'no_lang_code', 1, 'https://ror.org/05rezdz06 Heat Transfer Research & Development (United States)'),
(57765, 'https://ror.org/04z76wj11', 'no_lang_code', 1, 'https://ror.org/04z76wj11 Caribou Biosciences (United States)'),
(57766, 'https://ror.org/05tb20n61', 'no_lang_code', 1, 'https://ror.org/05tb20n61 AquaMatrix International (United States)'),
(57767, 'https://ror.org/015xqq593', 'no_lang_code', 1, 'https://ror.org/015xqq593 Heat Transfer Research (United States)'),
(57768, 'https://ror.org/02evzb864', 'en', 1, 'https://ror.org/02evzb864 JES & Co'),
(57769, 'https://ror.org/01jt2k297', 'no_lang_code', 1, 'https://ror.org/01jt2k297 MaxQ (United States)');
INSERT INTO `rors` VALUES
(57770, 'https://ror.org/03188nr56', 'no_lang_code', 1, 'https://ror.org/03188nr56 Heavystone Laboratory (United States)'),
(57771, 'https://ror.org/03znth086', 'no_lang_code', 1, 'https://ror.org/03znth086 Carthago International Solutions (United States)'),
(57772, 'https://ror.org/0305w4x35', 'no_lang_code', 1, 'https://ror.org/0305w4x35 Art & Science Productions (United States)'),
(57773, 'https://ror.org/00ddrsv17', 'no_lang_code', 1, 'https://ror.org/00ddrsv17 Splitvane Engineers (United States)'),
(57774, 'https://ror.org/04a2d1y86', 'no_lang_code', 1, 'https://ror.org/04a2d1y86 Media Health Technologies (United States)'),
(57775, 'https://ror.org/042qe4k74', 'no_lang_code', 1, 'https://ror.org/042qe4k74 OESH Shoes (United States)'),
(57776, 'https://ror.org/021ayq160', 'no_lang_code', 1, 'https://ror.org/021ayq160 Arytha Biosciences (United States)'),
(57777, 'https://ror.org/00ettzs98', 'no_lang_code', 1, 'https://ror.org/00ettzs98 Ascent Bio-Nano Technologies (United States)'),
(57778, 'https://ror.org/0261z1079', 'en', 1, 'https://ror.org/0261z1079 Joint Educational Facilities'),
(57779, 'https://ror.org/04v2xy120', 'no_lang_code', 1, 'https://ror.org/04v2xy120 Higher Education Services (United States)'),
(57780, 'https://ror.org/04d7j1v83', 'no_lang_code', 1, 'https://ror.org/04d7j1v83 CCI Reprographics (United States)'),
(57781, 'https://ror.org/01nb8yv40', 'no_lang_code', 1, 'https://ror.org/01nb8yv40 Histogen (United States)'),
(57782, 'https://ror.org/00vcp8875', 'no_lang_code', 1, 'https://ror.org/00vcp8875 Mental Canvas (United States)'),
(57783, 'https://ror.org/025zg9b48', 'en', 1, 'https://ror.org/025zg9b48 Asset Stem Education'),
(57784, 'https://ror.org/053y21h59', 'no_lang_code', 1, 'https://ror.org/053y21h59 Metcut Research (United States)'),
(57785, 'https://ror.org/02zsjtp80', 'en', 1, 'https://ror.org/02zsjtp80 Associated Scientists at Woods Hole'),
(57786, 'https://ror.org/02v8ews69', 'no_lang_code', 1, 'https://ror.org/02v8ews69 Mid Michigan Research (United States)'),
(57787, 'https://ror.org/02xrnet37', 'no_lang_code', 1, 'https://ror.org/02xrnet37 Horizon Communications (United States)'),
(57788, 'https://ror.org/00xx1nv47', 'en', 1, 'https://ror.org/00xx1nv47 K2 Communications'),
(57789, 'https://ror.org/051k3ba49', 'no_lang_code', 1, 'https://ror.org/051k3ba49 Minnesota HealthSolutions (United States)'),
(57790, 'https://ror.org/038vwxf79', 'no_lang_code', 1, 'https://ror.org/038vwxf79 Miromatrix Medical (United States)'),
(57791, 'https://ror.org/01p4er784', 'en', 1, 'https://ror.org/01p4er784 Kawerak'),
(57792, 'https://ror.org/04kf58w92', 'en', 1, 'https://ror.org/04kf58w92 Autonomous Healthcare'),
(57793, 'https://ror.org/05ekyck71', 'no_lang_code', 1, 'https://ror.org/05ekyck71 KelaHealth (United States)'),
(57794, 'https://ror.org/036erhh43', 'no_lang_code', 1, 'https://ror.org/036erhh43 Chemsultants International (United States)'),
(57795, 'https://ror.org/05dd14b17', 'no_lang_code', 1, 'https://ror.org/05dd14b17 Ketron Optimization (United States)'),
(57796, 'https://ror.org/00h7mt060', 'no_lang_code', 1, 'https://ror.org/00h7mt060 HXI (United States)'),
(57797, 'https://ror.org/05t3jtz40', 'en', 1, 'https://ror.org/05t3jtz40 Baltimore Symphony Orchestra'),
(57798, 'https://ror.org/05v0wb549', 'en', 1, 'https://ror.org/05v0wb549 Kieve-Wavus Education'),
(57799, 'https://ror.org/004q2nj38', 'no_lang_code', 1, 'https://ror.org/004q2nj38 Hobi Instrument Services (United States)'),
(57800, 'https://ror.org/037xt0e18', 'no_lang_code', 1, 'https://ror.org/037xt0e18 MSTM (United States)'),
(57801, 'https://ror.org/03q9ez861', 'en', 1, 'https://ror.org/03q9ez861 Minorities in Mathematics, Science & Engineering'),
(57802, 'https://ror.org/00vkg4j33', 'en', 1, 'https://ror.org/00vkg4j33 Kinema Research & Software'),
(57803, 'https://ror.org/01wrzk743', 'no_lang_code', 1, 'https://ror.org/01wrzk743 MTPV Power (United States)'),
(57804, 'https://ror.org/01yj5pp70', 'no_lang_code', 1, 'https://ror.org/01yj5pp70 BBC Worldwide (United States)'),
(57805, 'https://ror.org/03jya5r16', 'no_lang_code', 1, 'https://ror.org/03jya5r16 MultiModel Research (United States)'),
(57806, 'https://ror.org/01tcmg746', 'no_lang_code', 1, 'https://ror.org/01tcmg746 Knox Medical Diagnostics (United States)'),
(57807, 'https://ror.org/00a1kgg63', 'no_lang_code', 1, 'https://ror.org/00a1kgg63 ACR Electronics (United States)'),
(57808, 'https://ror.org/02xejyg29', 'no_lang_code', 1, 'https://ror.org/02xejyg29 Nano Hydrophobics (United States)'),
(57809, 'https://ror.org/016df8p53', 'en', 1, 'https://ror.org/016df8p53 Koliber Biosciences'),
(57810, 'https://ror.org/051r8dh72', 'no_lang_code', 1, 'https://ror.org/051r8dh72 Nano3D Biosciences (United States)'),
(57811, 'https://ror.org/04ejqwk94', 'en', 1, 'https://ror.org/04ejqwk94 Ocean Research & Conservation Association'),
(57812, 'https://ror.org/00y0as388', 'no_lang_code', 1, 'https://ror.org/00y0as388 NanoAffix Science (United States)'),
(57813, 'https://ror.org/00mvezj69', 'no_lang_code', 1, 'https://ror.org/00mvezj69 Odorcept (United States)'),
(57814, 'https://ror.org/04c1q3311', 'no_lang_code', 1, 'https://ror.org/04c1q3311 NanoSynth Materials and Sensors (United States)'),
(57815, 'https://ror.org/02c2ejr08', 'en', 1, 'https://ror.org/02c2ejr08 National Black Graduate Student Association'),
(57816, 'https://ror.org/014a78w41', 'no_lang_code', 1, 'https://ror.org/014a78w41 Ideum (United States)'),
(57817, 'https://ror.org/04s8yyn61', 'en', 1, 'https://ror.org/04s8yyn61 National Committee on United States China Relations'),
(57818, 'https://ror.org/036k9cx83', 'en', 1, 'https://ror.org/036k9cx83 Las Vegas Academy of the Arts'),
(57819, 'https://ror.org/051jvhq51', 'no_lang_code', 1, 'https://ror.org/051jvhq51 Imbed Biosciences (United States)'),
(57820, 'https://ror.org/040s1e839', 'no_lang_code', 1, 'https://ror.org/040s1e839 Launchpad Central (United States)'),
(57821, 'https://ror.org/002kney35', 'no_lang_code', 1, 'https://ror.org/002kney35 Optical Polymer Research (United States)'),
(57822, 'https://ror.org/055ryq086', 'no_lang_code', 1, 'https://ror.org/055ryq086 TRC Companies (United States)'),
(57823, 'https://ror.org/01ywgyp97', 'no_lang_code', 1, 'https://ror.org/01ywgyp97 Independence Science (United States)'),
(57824, 'https://ror.org/038gq7z31', 'en', 1, 'https://ror.org/038gq7z31 Navajo Language Academy'),
(57825, 'https://ror.org/02c0af132', 'en', 1, 'https://ror.org/02c0af132 Indiana State Museum'),
(57826, 'https://ror.org/01yh14f85', 'no_lang_code', 1, 'https://ror.org/01yh14f85 OtoNexus Medical Technologies (United States)'),
(57827, 'https://ror.org/052ycjw90', 'en', 1, 'https://ror.org/052ycjw90 Corporation for Research and Educational Networking'),
(57828, 'https://ror.org/012x9fa64', 'no_lang_code', 1, 'https://ror.org/012x9fa64 NeuraMedica (United States)'),
(57829, 'https://ror.org/0365qmq92', 'no_lang_code', 1, 'https://ror.org/0365qmq92 Lena Biosciences (United States)'),
(57830, 'https://ror.org/02g2dv858', 'en', 1, 'https://ror.org/02g2dv858 New England Council'),
(57831, 'https://ror.org/03d4teb38', 'no_lang_code', 1, 'https://ror.org/03d4teb38 Infinitesimal (United States)'),
(57832, 'https://ror.org/047xpay52', 'no_lang_code', 1, 'https://ror.org/047xpay52 PAX Scientific (United States)'),
(57833, 'https://ror.org/05069qg36', 'no_lang_code', 1, 'https://ror.org/05069qg36 Infinity HealthCare (United States)'),
(57834, 'https://ror.org/03a5ewm40', 'no_lang_code', 1, 'https://ror.org/03a5ewm40 Rao Research and Consulting (United States)'),
(57835, 'https://ror.org/02fgqtv27', 'no_lang_code', 1, 'https://ror.org/02fgqtv27 LighTopTech (United States)'),
(57836, 'https://ror.org/02w74ad83', 'no_lang_code', 1, 'https://ror.org/02w74ad83 Nexmatix (United States)'),
(57837, 'https://ror.org/02g7z3v47', 'no_lang_code', 1, 'https://ror.org/02g7z3v47 List Biological Laboratories (United States)'),
(57838, 'https://ror.org/05r52pz56', 'no_lang_code', 1, 'https://ror.org/05r52pz56 Ratrix Technologies (United States)'),
(57839, 'https://ror.org/05baejf18', 'no_lang_code', 1, 'https://ror.org/05baejf18 PhylloTech (United States)'),
(57840, 'https://ror.org/00fr16483', 'no_lang_code', 1, 'https://ror.org/00fr16483 Leighton (United States)'),
(57841, 'https://ror.org/01nsm8h24', 'no_lang_code', 1, 'https://ror.org/01nsm8h24 Physical Devices (United States)'),
(57842, 'https://ror.org/03qm3c405', 'no_lang_code', 1, 'https://ror.org/03qm3c405 TerraFly (United States)'),
(57843, 'https://ror.org/05whcgs91', 'no_lang_code', 1, 'https://ror.org/05whcgs91 Picosense (United States)'),
(57844, 'https://ror.org/0134vhg32', 'en', 1, 'https://ror.org/0134vhg32 Haitian American Community Development Corporation'),
(57845, 'https://ror.org/04k175063', 'en', 1, 'https://ror.org/04k175063 Nona Research Foundation'),
(57846, 'https://ror.org/05fep0t76', 'no_lang_code', 1, 'https://ror.org/05fep0t76 LogicMill Technology (United States)'),
(57847, 'https://ror.org/03pjrzs58', 'no_lang_code', 1, 'https://ror.org/03pjrzs58 Pioneer Valley Books (United States)'),
(57848, 'https://ror.org/0501ptv55', 'no_lang_code', 1, 'https://ror.org/0501ptv55 nView Medical (United States)'),
(57849, 'https://ror.org/04cznqd05', 'en', 1, 'https://ror.org/04cznqd05 O’Donnell Associates'),
(57850, 'https://ror.org/03vjak553', 'no_lang_code', 1, 'https://ror.org/03vjak553 Plymouth Grating Laboratory (United States)'),
(57851, 'https://ror.org/05akv3y05', 'en', 1, 'https://ror.org/05akv3y05 National Association of Conservation Districts'),
(57852, 'https://ror.org/03zbwg385', 'no_lang_code', 1, 'https://ror.org/03zbwg385 Lumenware (United States)'),
(57853, 'https://ror.org/01d34f369', 'no_lang_code', 1, 'https://ror.org/01d34f369 Polnox (United States)'),
(57854, 'https://ror.org/00kzjzm37', 'no_lang_code', 1, 'https://ror.org/00kzjzm37 Brainly (United States)'),
(57855, 'https://ror.org/00nkq5n66', 'no_lang_code', 1, 'https://ror.org/00nkq5n66 Solinas Medical (United States)'),
(57856, 'https://ror.org/039ng5344', 'en', 1, 'https://ror.org/039ng5344 LXD Research & Display'),
(57857, 'https://ror.org/00evjez55', 'no_lang_code', 1, 'https://ror.org/00evjez55 Tethys Research (United States)'),
(57858, 'https://ror.org/05f6zz720', 'no_lang_code', 1, 'https://ror.org/05f6zz720 SolRayo (United States)'),
(57859, 'https://ror.org/01vwxjv55', 'no_lang_code', 1, 'https://ror.org/01vwxjv55 Prevail Health Solutions (United States)'),
(57860, 'https://ror.org/03e4xsk06', 'no_lang_code', 1, 'https://ror.org/03e4xsk06 Thalchemy (United States)'),
(57861, 'https://ror.org/00qahme67', 'no_lang_code', 1, 'https://ror.org/00qahme67 McCormick Environmental (United States)'),
(57862, 'https://ror.org/023mmvm94', 'no_lang_code', 1, 'https://ror.org/023mmvm94 Occipital (United States)'),
(57863, 'https://ror.org/01a0k3v66', 'no_lang_code', 1, 'https://ror.org/01a0k3v66 SonoVol (United States)'),
(57864, 'https://ror.org/04jey9359', 'no_lang_code', 1, 'https://ror.org/04jey9359 M4 Sciences (United States)'),
(57865, 'https://ror.org/05w7fem48', 'en', 1, 'https://ror.org/05w7fem48 South Bronx Overall Economic Development'),
(57866, 'https://ror.org/02bjfq514', 'no_lang_code', 1, 'https://ror.org/02bjfq514 MAA Laboratories (United States)'),
(57867, 'https://ror.org/0071kdv81', 'no_lang_code', 1, 'https://ror.org/0071kdv81 Chedd Angier Production (United States)'),
(57868, 'https://ror.org/01jtjrm75', 'no_lang_code', 1, 'https://ror.org/01jtjrm75 Provivi (United States)'),
(57869, 'https://ror.org/00ftkzk68', 'en', 1, 'https://ror.org/00ftkzk68 Children’s Museum of Atlanta'),
(57870, 'https://ror.org/000b1qx78', 'no_lang_code', 1, 'https://ror.org/000b1qx78 Revolution Research'),
(57871, 'https://ror.org/0154h5d61', 'no_lang_code', 1, 'https://ror.org/0154h5d61 Proximity Biosciences (United States)'),
(57872, 'https://ror.org/05sjtd719', 'en', 1, 'https://ror.org/05sjtd719 Southern Oregon Public Television'),
(57873, 'https://ror.org/04gckzn88', 'no_lang_code', 1, 'https://ror.org/04gckzn88 PuraCath Medical (United States)'),
(57874, 'https://ror.org/03mg8fc79', 'no_lang_code', 1, 'https://ror.org/03mg8fc79 Fred Rogers (United States)'),
(57875, 'https://ror.org/01jeebd83', 'en', 1, 'https://ror.org/01jeebd83 Rochester Engineering Society'),
(57876, 'https://ror.org/00f3p5990', 'no_lang_code', 1, 'https://ror.org/00f3p5990 Pyrochem Catalyst Company (United States)'),
(57877, 'https://ror.org/01tzn5f02', 'no_lang_code', 1, 'https://ror.org/01tzn5f02 Spectral MD (United States)'),
(57878, 'https://ror.org/03k57wy12', 'no_lang_code', 1, 'https://ror.org/03k57wy12 VesselTek Biomedical (United States)'),
(57879, 'https://ror.org/04vxvsq82', 'no_lang_code', 1, 'https://ror.org/04vxvsq82 Spectrum Research (United States)'),
(57880, 'https://ror.org/0108f5051', 'no_lang_code', 1, 'https://ror.org/0108f5051 Video Collaboratory (United States)'),
(57881, 'https://ror.org/03sp3a378', 'no_lang_code', 1, 'https://ror.org/03sp3a378 Expedeon (United States)'),
(57882, 'https://ror.org/02ffpzw40', 'no_lang_code', 1, 'https://ror.org/02ffpzw40 Spectrum Scientific (United States)'),
(57883, 'https://ror.org/00aw4mh72', 'no_lang_code', 1, 'https://ror.org/00aw4mh72 Madison Group (United States)'),
(57884, 'https://ror.org/053kqnj57', 'no_lang_code', 1, 'https://ror.org/053kqnj57 SpringActive (United States)'),
(57885, 'https://ror.org/03bvvfk64', 'no_lang_code', 1, 'https://ror.org/03bvvfk64 Quintara Biosciences (United States)'),
(57886, 'https://ror.org/0149vtr75', 'en', 1, 'https://ror.org/0149vtr75 Virginia Cooperative Extension'),
(57887, 'https://ror.org/011h51195', 'no_lang_code', 1, 'https://ror.org/011h51195 StabiLux Biosciences (United States)'),
(57888, 'https://ror.org/01m3r9s26', 'en', 1, 'https://ror.org/01m3r9s26 The Tor Project'),
(57889, 'https://ror.org/029fxva34', 'no_lang_code', 1, 'https://ror.org/029fxva34 Virta Laboratories (United States)'),
(57890, 'https://ror.org/000rhcj53', 'en', 1, 'https://ror.org/000rhcj53 Rainbow Research'),
(57891, 'https://ror.org/00485nf12', 'no_lang_code', 1, 'https://ror.org/00485nf12 TheBeamer (United States)'),
(57892, 'https://ror.org/009mmg508', 'no_lang_code', 1, 'https://ror.org/009mmg508 Vistex Composites (United States)'),
(57893, 'https://ror.org/05enva623', 'en', 1, 'https://ror.org/05enva623 Stark Education Partnership'),
(57894, 'https://ror.org/05r7sx321', 'en', 1, 'https://ror.org/05r7sx321 Workit Health'),
(57895, 'https://ror.org/041mscx66', 'no_lang_code', 1, 'https://ror.org/041mscx66 Vortex Hydro Energy (United States)'),
(57896, 'https://ror.org/00abcs339', 'no_lang_code', 1, 'https://ror.org/00abcs339 Stasys Medical (United States)'),
(57897, 'https://ror.org/01wzg5e03', 'no_lang_code', 1, 'https://ror.org/01wzg5e03 Topasol (United States)'),
(57898, 'https://ror.org/043emz428', 'en', 1, 'https://ror.org/043emz428 Institute for Science and Human Values'),
(57899, 'https://ror.org/005ebyb46', 'no_lang_code', 1, 'https://ror.org/005ebyb46 TutorGen (United States)'),
(57900, 'https://ror.org/00p24wc27', 'no_lang_code', 1, 'https://ror.org/00p24wc27 Zenwa (United States)'),
(57901, 'https://ror.org/05340km55', 'no_lang_code', 1, 'https://ror.org/05340km55 Sterling International (United States)'),
(57902, 'https://ror.org/03c9gd523', 'no_lang_code', 1, 'https://ror.org/03c9gd523 Yosemite International Consultants (United States)'),
(57903, 'https://ror.org/05jy2cf97', 'en', 1, 'https://ror.org/05jy2cf97 Science Center of Pinellas'),
(57904, 'https://ror.org/04kyvt253', 'no_lang_code', 1, 'https://ror.org/04kyvt253 ZeroUI (United States)'),
(57905, 'https://ror.org/0555sjc23', 'no_lang_code', 1, 'https://ror.org/0555sjc23 Universal Dialog (United States)'),
(57906, 'https://ror.org/010p8p018', 'en', 1, 'https://ror.org/010p8p018 Zoo Miami'),
(57907, 'https://ror.org/04fgkvt12', 'no_lang_code', 1, 'https://ror.org/04fgkvt12 ScienceMedia (United States)'),
(57908, 'https://ror.org/05kd3hv35', 'no_lang_code', 1, 'https://ror.org/05kd3hv35 V&R Energy Systems Research (United States)'),
(57909, 'https://ror.org/04jx2gq17', 'en', 1, 'https://ror.org/04jx2gq17 zyBooks'),
(57910, 'https://ror.org/01f80h865', 'no_lang_code', 1, 'https://ror.org/01f80h865 Varigen Biosciences (United States)'),
(57911, 'https://ror.org/02wj4f624', 'no_lang_code', 1, 'https://ror.org/02wj4f624 Scientific Imaging and Visualization (United States)'),
(57912, 'https://ror.org/05g1qrw85', 'no_lang_code', 1, 'https://ror.org/05g1qrw85 Yes Technologies (United States)'),
(57913, 'https://ror.org/04tsbxb91', 'no_lang_code', 1, 'https://ror.org/04tsbxb91 TAO Connect (United States)'),
(57914, 'https://ror.org/01kd1b507', 'no_lang_code', 1, 'https://ror.org/01kd1b507 Sunstream Scientific (United States)'),
(57915, 'https://ror.org/03faca780', 'no_lang_code', 1, 'https://ror.org/03faca780 Screenscope (United States)'),
(57916, 'https://ror.org/001d7gs74', 'no_lang_code', 1, 'https://ror.org/001d7gs74 DDC-I (United States)'),
(57917, 'https://ror.org/02zxj2k87', 'no_lang_code', 1, 'https://ror.org/02zxj2k87 Finn Partners (United States)'),
(57918, 'https://ror.org/04v7c9d77', 'no_lang_code', 1, 'https://ror.org/04v7c9d77 SoundRocket (United States)'),
(57919, 'https://ror.org/03j64fn02', 'no_lang_code', 1, 'https://ror.org/03j64fn02 MacKichan Software (United States)'),
(57920, 'https://ror.org/03ga0ws30', 'no_lang_code', 1, 'https://ror.org/03ga0ws30 Seismic Isolation Engineering (United States)'),
(57921, 'https://ror.org/0089jr070', 'en', 1, 'https://ror.org/0089jr070 Techbridge (United States)'),
(57922, 'https://ror.org/04h92e089', 'no_lang_code', 1, 'https://ror.org/04h92e089 Sintact Medical Systems (United States)'),
(57923, 'https://ror.org/02feh5a48', 'no_lang_code', 1, 'https://ror.org/02feh5a48 SHINE Medical Technologies (United States)'),
(57924, 'https://ror.org/03bd5dw30', 'no_lang_code', 1, 'https://ror.org/03bd5dw30 T3 Scientific (United States)'),
(57925, 'https://ror.org/05gz5te09', 'no_lang_code', 1, 'https://ror.org/05gz5te09 Sepragen Corporation (United States)'),
(57926, 'https://ror.org/013jg8087', 'no_lang_code', 1, 'https://ror.org/013jg8087 Solarmer Energy (United States)'),
(57927, 'https://ror.org/05fxqy444', 'no_lang_code', 1, 'https://ror.org/05fxqy444 Solarno (United States)'),
(57928, 'https://ror.org/01rdp0h57', 'en', 1, 'https://ror.org/01rdp0h57 Gansu Provincial Agriculture and Animal Husbandry'),
(57929, 'https://ror.org/01kfnjv17', 'en', 1, 'https://ror.org/01kfnjv17 Kunming Metallurgical Research Institute 昆明冶金研究所'),
(57930, 'https://ror.org/04nqrq322', 'en', 1, 'https://ror.org/04nqrq322 Shenzhen Entry-Exit Inspection and Quarantine Bureau'),
(57931, 'https://ror.org/04vqtes97', 'en', 1, 'https://ror.org/04vqtes97 Creedmoor Psychiatric Center'),
(57932, 'https://ror.org/04bymxx89', 'en', 1, 'https://ror.org/04bymxx89 Anhui and Huaihe River Institute of Hydraulic Research 安徽省水利部淮委水利科学研究院'),
(57933, 'https://ror.org/03pkj2z67', 'en', 1, 'https://ror.org/03pkj2z67 Lanzhou Petrochemical Polytechnic 兰州石化职业技术学院'),
(57934, 'https://ror.org/003ayef58', 'en', 1, 'https://ror.org/003ayef58 Beijing Academy of Social Sciences 北京市社会科学院'),
(57935, 'https://ror.org/038w3gx54', 'en', 1, 'https://ror.org/038w3gx54 Marine Biology Institute of Shandong Province 山东省海洋生物研究院 地址'),
(57936, 'https://ror.org/02csejj07', 'en', 1, 'https://ror.org/02csejj07 Chinese People ''s Liberation Army No.455 Hospital 中国人民解放军第四五五医院'),
(57937, 'https://ror.org/04vmpyg44', 'en', 1, 'https://ror.org/04vmpyg44 Fujian Academy of Medical Sciences 福建省医学科学院'),
(57938, 'https://ror.org/04svmxd14', 'en', 1, 'https://ror.org/04svmxd14 Changzhi University 长治学院'),
(57939, 'https://ror.org/05901gg63', 'en', 1, 'https://ror.org/05901gg63 Chemical Industry Press 化学工业出版社'),
(57940, 'https://ror.org/04t69c375', 'en', 1, 'https://ror.org/04t69c375 Baoshan College 宝山学院'),
(57941, 'https://ror.org/041100z65', 'en', 1, 'https://ror.org/041100z65 State Radio Regulation Of China 国家无线电监测中心'),
(57942, 'https://ror.org/00wztsq19', 'en', 1, 'https://ror.org/00wztsq19 Qilu Normal University 齐鲁师范学院'),
(57943, 'https://ror.org/00d6bjs95', 'en', 1, 'https://ror.org/00d6bjs95 China Guangzhou Analysis and Testing Center 中国广州分析测试中心'),
(57944, 'https://ror.org/00kr06185', 'en', 1, 'https://ror.org/00kr06185 China Institute of Electronics 中国电子学会'),
(57945, 'https://ror.org/02h3k6w11', 'en', 1, 'https://ror.org/02h3k6w11 The Environmental Literacy Council'),
(57946, 'https://ror.org/0019sn611', 'en', 1, 'https://ror.org/0019sn611 Planning and Conservation League'),
(57947, 'https://ror.org/02rsv1244', 'en', 1, 'https://ror.org/02rsv1244 Gansu Research Academy of Forestry Science and Technology 甘肃林业科技研究院'),
(57948, 'https://ror.org/050ct8k07', 'en', 1, 'https://ror.org/050ct8k07 Beijing Institute of Labor Protection Science 北京市劳动保护科学研究所'),
(57949, 'https://ror.org/02160gj87', 'en', 1, 'https://ror.org/02160gj87 Shaanxi Blood Center 陕西省血液中心'),
(57950, 'https://ror.org/03cxfcq46', 'en', 1, 'https://ror.org/03cxfcq46 Beijing Urban Systems Engineering Research Center 北京城市系统工程研究中心'),
(57951, 'https://ror.org/059b2sn04', 'no_lang_code', 1, 'https://ror.org/059b2sn04 Guangdong Inspection and Quarantine Technology Center (China)'),
(57952, 'https://ror.org/04qkqhe87', 'en', 1, 'https://ror.org/04qkqhe87 Shandong Binzhou Pasturage Veterinary Academy 山东省滨州畜牧兽医研究院'),
(57953, 'https://ror.org/01qtkgt88', 'en', 1, 'https://ror.org/01qtkgt88 Beijing Municipal Commission of Urban Planning 北京市规划和国土资源管理委员会'),
(57954, 'https://ror.org/01tqkhn82', 'en', 1, 'https://ror.org/01tqkhn82 Shandong Entry-Exit Inspection and Quarantine Bureau 山东出入境检验检疫局'),
(57955, 'https://ror.org/01v11cc68', 'en', 1, 'https://ror.org/01v11cc68 Tianjin International Joint Academy of Biomedicine 天津国际联合生物医学研究所'),
(57956, 'https://ror.org/01b2j5886', 'en', 1, 'https://ror.org/01b2j5886 Shandong University of Political Science and Law 山东政法学院'),
(57957, 'https://ror.org/03rjzr314', 'en', 1, 'https://ror.org/03rjzr314 Guangdong Provincial Academy of Environmental Science'),
(57958, 'https://ror.org/00qhrkk71', 'en', 1, 'https://ror.org/00qhrkk71 Shandong Yingcai University 山东英才学院'),
(57959, 'https://ror.org/032gz0g45', 'en', 1, 'https://ror.org/032gz0g45 Shanghai Entry-Exit Inspection and Quarantine Bureau 上海出入境检验检疫局'),
(57960, 'https://ror.org/01gqah619', 'en', 1, 'https://ror.org/01gqah619 Guangxi Buffalo Research Institute'),
(57961, 'https://ror.org/00zcefp03', 'en', 1, 'https://ror.org/00zcefp03 Shanghai Institute of Measurement and Testing Technology 上海测量与测试技术研究所'),
(57962, 'https://ror.org/03dgcmw96', 'en', 1, 'https://ror.org/03dgcmw96 Yunnan Earthquake Prevention and Disaster Reduction 云南省地震局'),
(57963, 'https://ror.org/01xm48j65', 'en', 1, 'https://ror.org/01xm48j65 Shaanxi Provincial Seismological Bureau 陕西省地震局'),
(57964, 'https://ror.org/03haahd66', 'en', 1, 'https://ror.org/03haahd66 Environmental Protection Research Institute of Light Industry 轻工业环境保护研究所'),
(57965, 'https://ror.org/04xfd0826', 'en', 1, 'https://ror.org/04xfd0826 Shanghai Research Center for Wireless Communications 上海无线通信研究中心'),
(57966, 'https://ror.org/02bjyz323', 'en', 1, 'https://ror.org/02bjyz323 Hebei University of Environmental Engineering 河北环境工程学院'),
(57967, 'https://ror.org/02cejc171', 'en', 1, 'https://ror.org/02cejc171 Guangxi Normal University for Nationalities'),
(57968, 'https://ror.org/02490t938', 'en', 1, 'https://ror.org/02490t938 Sichuan Entry-Exit Inspection and Quarantine Bureau 四川出入境检验检疫局检验检疫技术中心'),
(57969, 'https://ror.org/04hqa8c89', 'en', 1, 'https://ror.org/04hqa8c89 Gansu Qilian Mountains Water Conservation Forest Research Institute 祁连山水源涵养林研究院'),
(57970, 'https://ror.org/01vcw4681', 'en', 1, 'https://ror.org/01vcw4681 Guangzhou Institute of Advanced Technology 广州中国科学院先进技术研究所'),
(57971, 'https://ror.org/041682e62', 'en', 1, 'https://ror.org/041682e62 Shenzhen Habitat Environment Committee 深圳市人居环境委员会'),
(57972, 'https://ror.org/023xep540', 'en', 1, 'https://ror.org/023xep540 Qinghai Red Cross Hospital'),
(57973, 'https://ror.org/058wr8j84', 'en', 1, 'https://ror.org/058wr8j84 China Academy of Fiscal Science 中国财政科学研究院'),
(57974, 'https://ror.org/02r23w007', 'en', 1, 'https://ror.org/02r23w007 Xi''an Botanical Garden of Shaanxi Province 陕西西安植物园'),
(57975, 'https://ror.org/026a9y278', 'en', 1, 'https://ror.org/026a9y278 Guizhou Forestry Science Research Institute 贵州省林业科学研究院'),
(57976, 'https://ror.org/04evm3p62', 'en', 1, 'https://ror.org/04evm3p62 Nanjing Product Quality Supervision and Inspection Institute'),
(57977, 'https://ror.org/0463yzy10', 'en', 1, 'https://ror.org/0463yzy10 Chongqing Population and Family Planning Science and Technology Research Institute 重庆市人口和计划生育科学技术研究院'),
(57978, 'https://ror.org/05x9nc097', 'en', 1, 'https://ror.org/05x9nc097 Xiamen Maternal and Child Health Hospital 厦门妇幼保健院'),
(57979, 'https://ror.org/041drfb04', 'en', 1, 'https://ror.org/041drfb04 Fruit Research Institute 广东省农业科学院果树研究所'),
(57980, 'https://ror.org/03pentr35', 'en', 1, 'https://ror.org/03pentr35 Wuhan Applied Science and Technology School 武汉应用科技学院'),
(57981, 'https://ror.org/00c11v577', 'en', 1, 'https://ror.org/00c11v577 Rice Research Institute 广东省农业科学院水稻研究所'),
(57982, 'https://ror.org/054dq1w53', 'en', 1, 'https://ror.org/054dq1w53 Sericulture and Agricultural Products Research Institute 广东省农业科学院蚕业与农产品加工研究所'),
(57983, 'https://ror.org/01n5xv175', 'en', 1, 'https://ror.org/01n5xv175 China Metallurgical Geology Bureau'),
(57984, 'https://ror.org/03gfeke93', 'en', 1, 'https://ror.org/03gfeke93 Guangdong Province Environmental Monitoring Center 广东省环境监测中心'),
(57985, 'https://ror.org/01qwf4k77', 'en', 1, 'https://ror.org/01qwf4k77 Jiangsu Province Blood Center 江苏省血液中心'),
(57986, 'https://ror.org/03cvc1094', 'en', 1, 'https://ror.org/03cvc1094 Jiangsu Provincial Academy of Environmental Science 江苏省环境科学研究院'),
(57987, 'https://ror.org/04m27xb90', 'en', 1, 'https://ror.org/04m27xb90 Jiangsu Provincial Quality Supervision and Inspection Institute'),
(57988, 'https://ror.org/01sbpdt14', 'en', 1, 'https://ror.org/01sbpdt14 Nanchang Normal University 南昌师范学院'),
(57989, 'https://ror.org/00at6yb56', 'en', 1, 'https://ror.org/00at6yb56 Jiangxi Province Soil and Water Conservation Science Research Institute 江西省水土保持科学研究院'),
(57990, 'https://ror.org/02xkaan08', 'en', 1, 'https://ror.org/02xkaan08 Jinan Municipal Environmental Protection Bureau 济南市环保局'),
(57991, 'https://ror.org/05d0y1j25', 'en', 1, 'https://ror.org/05d0y1j25 Hubei Provincial Hospital of Integrative Medicine'),
(57992, 'https://ror.org/00yt18j75', 'en', 1, 'https://ror.org/00yt18j75 Animal Science Research Institute 广东省农业科学院动物科学研究所'),
(57993, 'https://ror.org/03r782805', 'en', 1, 'https://ror.org/03r782805 Danish Pain Research Center'),
(57994, 'https://ror.org/00px03f62', 'no_lang_code', 1, 'https://ror.org/00px03f62 Boehringer Ingelheim (Italy)'),
(57995, 'https://ror.org/04fh1gw55', 'no_lang_code', 1, 'https://ror.org/04fh1gw55 Boehringer Ingelheim (Netherlands)'),
(57996, 'https://ror.org/01v1pqp42', 'no_lang_code', 1, 'https://ror.org/01v1pqp42 Across (Spain)'),
(57997, 'https://ror.org/015k6vv14', 'no_lang_code', 1, 'https://ror.org/015k6vv14 Boehringer Ingelheim (Finland)'),
(57998, 'https://ror.org/04x8czz63', 'no_lang_code', 1, 'https://ror.org/04x8czz63 Bracco (Germany)'),
(57999, 'https://ror.org/02qbaz641', 'no_lang_code', 1, 'https://ror.org/02qbaz641 Luye Pharma (Switzerland)'),
(58000, 'https://ror.org/01pf0ts81', 'no_lang_code', 1, 'https://ror.org/01pf0ts81 Addex Therapeutics (Switzerland)'),
(58001, 'https://ror.org/014sv9994', 'en', 1, 'https://ror.org/014sv9994 Fujian Entry - Exit Inspection and Quarantine Bureau'),
(58002, 'https://ror.org/044mt4802', 'en', 1, 'https://ror.org/044mt4802 Central European Cooperative Oncology Group'),
(58003, 'https://ror.org/05r9t2t65', 'es', 1, 'https://ror.org/05r9t2t65 Fundación Teknon'),
(58004, 'https://ror.org/053qwyf63', 'no_lang_code', 1, 'https://ror.org/053qwyf63 Japan Tobacco (United States)'),
(58005, 'https://ror.org/00yggrf40', 'en', 1, 'https://ror.org/00yggrf40 Fondazione Italiana Sindromi Mielodisplastiche Italian Foundation of Myelodysplastic Syndromes'),
(58006, 'https://ror.org/05hkjyh45', 'no_lang_code', 1, 'https://ror.org/05hkjyh45 Alexion Pharma (Switzerland)'),
(58007, 'https://ror.org/04h6zzz03', 'no_lang_code', 1, 'https://ror.org/04h6zzz03 General Electric (Finland)'),
(58008, 'https://ror.org/04bharj65', 'no_lang_code', 1, 'https://ror.org/04bharj65 ALK-Abelló (Italy)'),
(58009, 'https://ror.org/05vtewd28', 'no_lang_code', 1, 'https://ror.org/05vtewd28 Chiasma (United States)'),
(58010, 'https://ror.org/04s4dtk79', 'no_lang_code', 1, 'https://ror.org/04s4dtk79 Mertiva (Sweden)'),
(58011, 'https://ror.org/013zs6k48', 'no_lang_code', 1, 'https://ror.org/013zs6k48 Immunogenics (United States)'),
(58012, 'https://ror.org/00xvtm334', 'no_lang_code', 1, 'https://ror.org/00xvtm334 Aqualis (Norway)'),
(58013, 'https://ror.org/0106jdf02', 'en', 1, 'https://ror.org/0106jdf02 The Lymphoma Academic Research Organisation'),
(58014, 'https://ror.org/02nkfan21', 'en', 1, 'https://ror.org/02nkfan21 Clinical Evaluation Research Unit'),
(58015, 'https://ror.org/03pejh002', 'no_lang_code', 1, 'https://ror.org/03pejh002 AMW (Germany)'),
(58016, 'https://ror.org/020j24g35', 'no_lang_code', 1, 'https://ror.org/020j24g35 Allergan (Netherlands)'),
(58017, 'https://ror.org/04jszep51', 'no_lang_code', 1, 'https://ror.org/04jszep51 Clinuvel Pharmaceuticals (Australia)'),
(58018, 'https://ror.org/03rmvk095', 'no_lang_code', 1, 'https://ror.org/03rmvk095 Genexine (South Korea)'),
(58019, 'https://ror.org/03zbwg482', 'no_lang_code', 1, 'https://ror.org/03zbwg482 Kowa (United States)'),
(58020, 'https://ror.org/05d0e9y67', 'no_lang_code', 1, 'https://ror.org/05d0e9y67 Eli Lilly (Italy)'),
(58021, 'https://ror.org/024fpfc76', 'no_lang_code', 1, 'https://ror.org/024fpfc76 CSL (Japan)'),
(58022, 'https://ror.org/01400tq86', 'no_lang_code', 1, 'https://ror.org/01400tq86 CSL (Switzerland)'),
(58023, 'https://ror.org/024w4dn76', 'no_lang_code', 1, 'https://ror.org/024w4dn76 GERCOR (France)'),
(58024, 'https://ror.org/01yac3k46', 'no_lang_code', 1, 'https://ror.org/01yac3k46 Engelhard Arzneimittel (Germany)'),
(58025, 'https://ror.org/0062ps924', 'no_lang_code', 1, 'https://ror.org/0062ps924 LABCATAL (France)'),
(58026, 'https://ror.org/049kvfv38', 'no_lang_code', 1, 'https://ror.org/049kvfv38 Daacro (Germany)'),
(58027, 'https://ror.org/04kej9b21', 'no_lang_code', 1, 'https://ror.org/04kej9b21 Ardeypharm (Germany)'),
(58028, 'https://ror.org/011nsnr29', 'no_lang_code', 1, 'https://ror.org/011nsnr29 LIDDS (Sweden)'),
(58029, 'https://ror.org/0291wkh90', 'no_lang_code', 1, 'https://ror.org/0291wkh90 Ethicare (Germany)'),
(58030, 'https://ror.org/05dh8ar36', 'no_lang_code', 1, 'https://ror.org/05dh8ar36 Gilead Sciences (Germany)'),
(58031, 'https://ror.org/02qacef07', 'no_lang_code', 1, 'https://ror.org/02qacef07 Gilead Sciences (Spain)'),
(58032, 'https://ror.org/03hxqcn24', 'no_lang_code', 1, 'https://ror.org/03hxqcn24 Gilead Sciences (Italy)'),
(58033, 'https://ror.org/045dptz13', 'en', 1, 'https://ror.org/045dptz13 Associazione QOL-ONE QOL-ONE Association'),
(58034, 'https://ror.org/04anq5q02', 'en', 1, 'https://ror.org/04anq5q02 Danish Multiple Sclerosis Center'),
(58035, 'https://ror.org/035n56j11', 'no_lang_code', 1, 'https://ror.org/035n56j11 AstraZeneca (Finland)'),
(58036, 'https://ror.org/04cd7aa36', 'no_lang_code', 1, 'https://ror.org/04cd7aa36 Farmaceutici Damor (Italy)'),
(58037, 'https://ror.org/03kphbm02', 'no_lang_code', 1, 'https://ror.org/03kphbm02 Lofarma (Italy)'),
(58038, 'https://ror.org/036zzh557', 'no_lang_code', 1, 'https://ror.org/036zzh557 Allergan (Canada)'),
(58039, 'https://ror.org/01jxkq910', 'no_lang_code', 1, 'https://ror.org/01jxkq910 Glaxosmithkline (Finland)'),
(58040, 'https://ror.org/01p9emh29', 'no_lang_code', 1, 'https://ror.org/01p9emh29 AXON Neuroscience (Cyprus)'),
(58041, 'https://ror.org/054df3r05', 'no_lang_code', 1, 'https://ror.org/054df3r05 GlaxoSmithKline (Sweden)'),
(58042, 'https://ror.org/04wt3vp12', 'no_lang_code', 1, 'https://ror.org/04wt3vp12 Roivant Sciences (Bermuda)'),
(58043, 'https://ror.org/046bcwj93', 'no_lang_code', 1, 'https://ror.org/046bcwj93 Associated Management Services (United States)'),
(58044, 'https://ror.org/01tvt4d48', 'no_lang_code', 1, 'https://ror.org/01tvt4d48 GlaxoSmithKline (India)'),
(58045, 'https://ror.org/029rf8d44', 'en', 1, 'https://ror.org/029rf8d44 Institut für Atemwegsforschung GmbH Respiratory Research Institute'),
(58046, 'https://ror.org/05xqrcz80', 'no_lang_code', 1, 'https://ror.org/05xqrcz80 Lundbeck (Italy)'),
(58047, 'https://ror.org/03ncmjy81', 'no_lang_code', 1, 'https://ror.org/03ncmjy81 Lusofarmaco (Italy)'),
(58048, 'https://ror.org/02j45y774', 'de', 1, 'https://ror.org/02j45y774 St. Hedwig-Krankenhaus'),
(58049, 'https://ror.org/00x56mf13', 'it', 1, 'https://ror.org/00x56mf13 Azienda Usl 8 Arezzo'),
(58050, 'https://ror.org/00xsr8926', 'fr', 1, 'https://ror.org/00xsr8926 Groupe d''Oncologie Radiothérapie Tête et Cou'),
(58051, 'https://ror.org/040dw4657', 'no_lang_code', 1, 'https://ror.org/040dw4657 Baxter (Belgium)'),
(58052, 'https://ror.org/02vpbac71', 'no_lang_code', 1, 'https://ror.org/02vpbac71 Bayer (Italy)'),
(58053, 'https://ror.org/01kkp5g91', 'es', 1, 'https://ror.org/01kkp5g91 Grupo Español de Cáncer de Pulmón'),
(58054, 'https://ror.org/02dq5y823', 'no_lang_code', 1, 'https://ror.org/02dq5y823 Bionorica (Austria)'),
(58055, 'https://ror.org/054m0e665', 'en', 1, 'https://ror.org/054m0e665 Grupo Español de Investigación en Sarcomas Spanish Research Group on Sarcomas'),
(58056, 'https://ror.org/04xhnhj86', 'en', 1, 'https://ror.org/04xhnhj86 Grupo Español de Tratamiento de Tumores de Cabeza y Cuello Spanish Head & Neck Cancer Cooperative Group'),
(58057, 'https://ror.org/01g4e8585', 'en', 1, 'https://ror.org/01g4e8585 Andalusian Institute of Sexology and Psychology Instituto Andaluz de Sexología y Psicología'),
(58058, 'https://ror.org/05mz4e808', 'no_lang_code', 1, 'https://ror.org/05mz4e808 N-Gene (United States)'),
(58059, 'https://ror.org/05taw7c97', 'no_lang_code', 1, 'https://ror.org/05taw7c97 NanoCarrier (Japan) ナノキャリア株式会社'),
(58060, 'https://ror.org/05p1s7a78', 'no_lang_code', 1, 'https://ror.org/05p1s7a78 Napp Pharmaceuticals (United Kingdom)'),
(58061, 'https://ror.org/04pp96p75', 'no_lang_code', 1, 'https://ror.org/04pp96p75 MediWound (Israel)'),
(58062, 'https://ror.org/00hj12c83', 'en', 1, 'https://ror.org/00hj12c83 Hammersmith Medicines Research'),
(58063, 'https://ror.org/0066zpp98', 'en', 1, 'https://ror.org/0066zpp98 Agricultural Genomics Institute at Shenzhen 中国农业科学院深圳农业基因组研究所'),
(58064, 'https://ror.org/013x1pp52', 'no_lang_code', 1, 'https://ror.org/013x1pp52 Hanmi Pharmaceutical (South Korea) 한미약품'),
(58065, 'https://ror.org/057w77e54', 'no_lang_code', 1, 'https://ror.org/057w77e54 Leo Pharma (United States)'),
(58066, 'https://ror.org/01k7ze855', 'no_lang_code', 1, 'https://ror.org/01k7ze855 Novasep (Belgium)'),
(58067, 'https://ror.org/055rf7657', 'no_lang_code', 1, 'https://ror.org/055rf7657 Roche (Sweden)'),
(58068, 'https://ror.org/02ta1jp69', 'no_lang_code', 1, 'https://ror.org/02ta1jp69 Roche (Hungary)'),
(58069, 'https://ror.org/00awvt671', 'no_lang_code', 1, 'https://ror.org/00awvt671 Roche (Finland)'),
(58070, 'https://ror.org/00f2tsn51', 'no_lang_code', 1, 'https://ror.org/00f2tsn51 Takeda (Italy)'),
(58071, 'https://ror.org/04qr62034', 'no_lang_code', 1, 'https://ror.org/04qr62034 Roche (Romania)'),
(58072, 'https://ror.org/01hyc1n91', 'no_lang_code', 1, 'https://ror.org/01hyc1n91 Roche (Czechia)'),
(58073, 'https://ror.org/04c5d0e65', 'no_lang_code', 1, 'https://ror.org/04c5d0e65 Minerva Neurosciences (United States)'),
(58074, 'https://ror.org/03nqfwv49', 'no_lang_code', 1, 'https://ror.org/03nqfwv49 IDEA (Germany)'),
(58075, 'https://ror.org/0441v1872', 'no_lang_code', 1, 'https://ror.org/0441v1872 Mipharm (Italy)'),
(58076, 'https://ror.org/02yq5yf84', 'no_lang_code', 1, 'https://ror.org/02yq5yf84 Morphotek (United States)'),
(58077, 'https://ror.org/058g8jq83', 'no_lang_code', 1, 'https://ror.org/058g8jq83 Sanofi (Brazil)'),
(58078, 'https://ror.org/040s9t622', 'no_lang_code', 1, 'https://ror.org/040s9t622 Novo Nordisk (Italy)'),
(58079, 'https://ror.org/0144enb05', 'no_lang_code', 1, 'https://ror.org/0144enb05 Novo Nordisk (Finland)'),
(58080, 'https://ror.org/053h97f78', 'no_lang_code', 1, 'https://ror.org/053h97f78 M’s Science Corporation (Japan)'),
(58081, 'https://ror.org/03n7jkz36', 'no_lang_code', 1, 'https://ror.org/03n7jkz36 Immunodiagnostic Systems (Denmark)'),
(58082, 'https://ror.org/00t52h563', 'no_lang_code', 1, 'https://ror.org/00t52h563 Luye Pharma (Germany)'),
(58083, 'https://ror.org/01mhc8r12', 'no_lang_code', 1, 'https://ror.org/01mhc8r12 Santen (Finland)'),
(58084, 'https://ror.org/01hzc1b78', 'en', 1, 'https://ror.org/01hzc1b78 Inamed'),
(58085, 'https://ror.org/00qsxq433', 'no_lang_code', 1, 'https://ror.org/00qsxq433 Santhera Pharmaceuticals (Switzerland)'),
(58086, 'https://ror.org/02mkrd102', 'no_lang_code', 1, 'https://ror.org/02mkrd102 Innovacell Biotechnologie (Austria)'),
(58087, 'https://ror.org/04dh3fc08', 'en', 1, 'https://ror.org/04dh3fc08 Office of the Secretary of Health and Human Services'),
(58088, 'https://ror.org/04p31sb09', 'no_lang_code', 1, 'https://ror.org/04p31sb09 Myovant Sciences (United States)'),
(58089, 'https://ror.org/03cmx5943', 'no_lang_code', 1, 'https://ror.org/03cmx5943 Bayer (Finland)'),
(58090, 'https://ror.org/026vbm280', 'no_lang_code', 1, 'https://ror.org/026vbm280 Theraclone Sciences (United States)'),
(58091, 'https://ror.org/02en9dz36', 'no_lang_code', 1, 'https://ror.org/02en9dz36 Valeas (Italy)'),
(58092, 'https://ror.org/05mrzft53', 'no_lang_code', 1, 'https://ror.org/05mrzft53 CSL (United Kingdom)'),
(58093, 'https://ror.org/02ww26h70', 'no_lang_code', 1, 'https://ror.org/02ww26h70 Shionogi (United States)'),
(58094, 'https://ror.org/04g1gk322', 'no_lang_code', 1, 'https://ror.org/04g1gk322 Pharmacosmos (Denmark)'),
(58095, 'https://ror.org/02w4b7q15', 'no_lang_code', 1, 'https://ror.org/02w4b7q15 Pharmaxis (United Kingdom)'),
(58096, 'https://ror.org/04x814r93', 'de', 1, 'https://ror.org/04x814r93 Vinforce'),
(58097, 'https://ror.org/030z9kz64', 'no_lang_code', 1, 'https://ror.org/030z9kz64 UCB Pharma (Japan) ユーシービージャパン株式会社'),
(58098, 'https://ror.org/05q0wnh95', 'no_lang_code', 1, 'https://ror.org/05q0wnh95 Actigen (Denmark)'),
(58099, 'https://ror.org/018fcay07', 'no_lang_code', 1, 'https://ror.org/018fcay07 SLA Pharma (United Kingdom)'),
(58100, 'https://ror.org/048g8j049', 'no_lang_code', 1, 'https://ror.org/048g8j049 Oncoscience (Germany)'),
(58101, 'https://ror.org/04f3x2j17', 'no_lang_code', 1, 'https://ror.org/04f3x2j17 Sofar (Italy)'),
(58102, 'https://ror.org/02msncm75', 'no_lang_code', 1, 'https://ror.org/02msncm75 Zogenix (United Kingdom)'),
(58103, 'https://ror.org/02a7ejh44', 'no_lang_code', 1, 'https://ror.org/02a7ejh44 Stragen (France)'),
(58104, 'https://ror.org/05dhprc49', 'en', 1, 'https://ror.org/05dhprc49 Afeka College of Engineering אפקה - המכללה האקדמית להנדסה בתל אביב'),
(58105, 'https://ror.org/044cwq841', 'de', 1, 'https://ror.org/044cwq841 AGO Austria'),
(58106, 'https://ror.org/03q33dp04', 'en', 1, 'https://ror.org/03q33dp04 Sichuan Provincial Hospital of Traditional Chinese Medicine 四川省中医院'),
(58107, 'https://ror.org/04zvdfd56', 'de', 1, 'https://ror.org/04zvdfd56 Universitätszahnklinik Wien'),
(58108, 'https://ror.org/00qc9m834', 'en', 1, 'https://ror.org/00qc9m834 American College of Allergy, Asthma and Immunology'),
(58109, 'https://ror.org/03bpe7b73', 'en', 1, 'https://ror.org/03bpe7b73 American College of Nurse-Midwives'),
(58110, 'https://ror.org/00zb9ns77', 'en', 1, 'https://ror.org/00zb9ns77 American College of Phlebology'),
(58111, 'https://ror.org/0008ypy64', 'de', 1, 'https://ror.org/0008ypy64 BrustGesundheitZentrum Tirol'),
(58112, 'https://ror.org/058fx5466', 'en', 1, 'https://ror.org/058fx5466 University Radiology'),
(58113, 'https://ror.org/05nmdmf57', 'en', 1, 'https://ror.org/05nmdmf57 European Optical Society'),
(58114, 'https://ror.org/02n5pfm79', 'no_lang_code', 1, 'https://ror.org/02n5pfm79 Alfasigma (Italy)'),
(58115, 'https://ror.org/03waxp229', 'en', 1, 'https://ror.org/03waxp229 Acıbadem University Atakent Hospital'),
(58116, 'https://ror.org/03dw28302', 'en', 1, 'https://ror.org/03dw28302 BAU International University'),
(58117, 'https://ror.org/05fqhmm52', 'en', 1, 'https://ror.org/05fqhmm52 Chicago College of Oriental Medicine'),
(58118, 'https://ror.org/029zxzd20', 'en', 1, 'https://ror.org/029zxzd20 Antoni Jurasz University Hospital Szpital Uniwersytecki im. A. Jurasza'),
(58119, 'https://ror.org/04pj7f452', 'en', 1, 'https://ror.org/04pj7f452 Chirayu Medical College & Hospital'),
(58120, 'https://ror.org/05qf3bt68', 'fr', 1, 'https://ror.org/05qf3bt68 Centre Hospitalo-Universitaire Bab El Oued'),
(58121, 'https://ror.org/009fgen45', 'en', 1, 'https://ror.org/009fgen45 Chitwan Medical College'),
(58122, 'https://ror.org/05pz4ws32', 'en', 1, 'https://ror.org/05pz4ws32 Children''s Hospital of Chongqing Medical University'),
(58123, 'https://ror.org/036hbav43', 'en', 1, 'https://ror.org/036hbav43 Canadian College of Osteopathy'),
(58124, 'https://ror.org/03rk6g530', 'en', 1, 'https://ror.org/03rk6g530 Hospital Universitario HM Puerta del Sur University Hospital HM Puerta del Sur'),
(58125, 'https://ror.org/02ezjve56', 'en', 1, 'https://ror.org/02ezjve56 Canadian College of Massage and Hydrotherapy'),
(58126, 'https://ror.org/05165er51', 'en', 1, 'https://ror.org/05165er51 Danish College of General Practitioners Dansk Selskab for Almen Medicin'),
(58127, 'https://ror.org/00nmy1597', 'en', 1, 'https://ror.org/00nmy1597 College & Association of Registered Nurses of Alberta'),
(58128, 'https://ror.org/00d18j871', 'fr', 1, 'https://ror.org/00d18j871 Collège d''Études Ostéopathiques de Montréal'),
(58129, 'https://ror.org/00gygke76', 'en', 1, 'https://ror.org/00gygke76 Guangxi Academy of Special Crops 广西壮族自治区柑桔研究所'),
(58130, 'https://ror.org/019pev732', 'en', 1, 'https://ror.org/019pev732 College of Pharmacists of British Columbia'),
(58131, 'https://ror.org/021g17t44', 'en', 1, 'https://ror.org/021g17t44 College of Physicians and Surgeons of Ontario'),
(58132, 'https://ror.org/0310zet56', 'no_lang_code', 1, 'https://ror.org/0310zet56 Shanghai Han Guan Bio Chip (China) 上海华冠生物芯片有限公司简介'),
(58133, 'https://ror.org/050qytm65', 'en', 1, 'https://ror.org/050qytm65 Qingdao Party School of CPC 中国共产党青岛市委员会党校'),
(58134, 'https://ror.org/00n7f0287', 'en', 1, 'https://ror.org/00n7f0287 Shenzhen International Travel Health Care Center 深圳出入境检验检疫局 深圳国际旅行卫生保健中心'),
(58135, 'https://ror.org/0059g0z40', 'en', 1, 'https://ror.org/0059g0z40 Council of Colleges of Acupuncture and Oriental Medicine'),
(58136, 'https://ror.org/01kr22f12', 'en', 1, 'https://ror.org/01kr22f12 Tianjin Product Quality Supervision and Testing Technology Institute 天津产品质量监督检验技术研究所'),
(58137, 'https://ror.org/05khxfe53', 'en', 1, 'https://ror.org/05khxfe53 University of Bojnord دانشگاه بجنورد'),
(58138, 'https://ror.org/04en0yf19', 'id', 1, 'https://ror.org/04en0yf19 Rumah Sakit Umum Pusat Sanglah Denpasar'),
(58139, 'https://ror.org/02jwahm23', 'en', 1, 'https://ror.org/02jwahm23 Doctors with Africa Cuamm Medici con l’Africa Cuamm'),
(58140, 'https://ror.org/0559vb332', 'en', 1, 'https://ror.org/0559vb332 D.A.V Centenary Dental College'),
(58141, 'https://ror.org/007322p37', 'en', 1, 'https://ror.org/007322p37 Dunsan Korean Medicine Hospital 단산 한의원 병원'),
(58142, 'https://ror.org/00x4qp065', 'en', 1, 'https://ror.org/00x4qp065 He University 辽宁何氏医学院'),
(58143, 'https://ror.org/00dfpj523', 'en', 1, 'https://ror.org/00dfpj523 Heliodor Swiecicki Clinical Hospital Szpital Kliniczny im. Heliodora Święcickiego w Poznaniu'),
(58144, 'https://ror.org/045w1wd13', 'en', 1, 'https://ror.org/045w1wd13 Hellenic College of Treatment of Atherosclerosis Ελληνικό Κολέγιο Θεραπείας της Αθηροσκλήρωσης'),
(58145, 'https://ror.org/00p59qs14', 'en', 1, 'https://ror.org/00p59qs14 Ain Shams University Hospital'),
(58146, 'https://ror.org/054jdkk48', 'en', 1, 'https://ror.org/054jdkk48 Hanoi Medical University Hospital'),
(58147, 'https://ror.org/03k18qw23', 'en', 1, 'https://ror.org/03k18qw23 Hainan Eye Hospital'),
(58148, 'https://ror.org/003jb2109', 'en', 1, 'https://ror.org/003jb2109 European School of Osteopathy'),
(58149, 'https://ror.org/03y9rwp16', 'fr', 1, 'https://ror.org/03y9rwp16 Hôpitaux Universitaires Grand Ouest'),
(58150, 'https://ror.org/033ezdy84', 'es', 1, 'https://ror.org/033ezdy84 Hospital Universitario del Sureste'),
(58151, 'https://ror.org/03gtg9w20', 'es', 1, 'https://ror.org/03gtg9w20 Hospital Universitario del Vinalopó'),
(58152, 'https://ror.org/03rehvw54', 'pt', 1, 'https://ror.org/03rehvw54 Hospital das Clínicas da Universidade Federal de Pernambuco'),
(58153, 'https://ror.org/05xvh6h11', 'es', 1, 'https://ror.org/05xvh6h11 Los Comuneros Hospital Universitario de Bucaramanga'),
(58154, 'https://ror.org/02bh05k02', 'no_lang_code', 1, 'https://ror.org/02bh05k02 Chemo (Spain)'),
(58155, 'https://ror.org/02b082946', 'pt', 1, 'https://ror.org/02b082946 Hospital Universitário Oswaldo Cruz'),
(58156, 'https://ror.org/03pxttn44', 'pl', 1, 'https://ror.org/03pxttn44 Szpital Kliniczny Nr 1 we Wrocławiu'),
(58157, 'https://ror.org/018q88z15', 'es', 1, 'https://ror.org/018q88z15 Hospital Universitario Quirónsalud Madrid'),
(58158, 'https://ror.org/02mgs7839', 'en', 1, 'https://ror.org/02mgs7839 ESE University Hospital San Jorge Pereira'),
(58159, 'https://ror.org/05ymjt203', 'no_lang_code', 1, 'https://ror.org/05ymjt203 Kedrion (Italy)'),
(58160, 'https://ror.org/0039g6563', 'pt', 1, 'https://ror.org/0039g6563 Hospital Universitário - Universidade Federal de Juiz de Fora'),
(58161, 'https://ror.org/01d9cfw89', 'pt', 1, 'https://ror.org/01d9cfw89 Hospital Universitário Walter Cantídio'),
(58162, 'https://ror.org/00bqttt79', 'en', 1, 'https://ror.org/00bqttt79 Islamic Azad University, Marvdasht دانشگاه آزاد اسلامی واحد مرودشت'),
(58163, 'https://ror.org/02emvpp12', 'no_lang_code', 1, 'https://ror.org/02emvpp12 Sarossa (Jersey)'),
(58164, 'https://ror.org/00xzj9k32', 'en', 1, 'https://ror.org/00xzj9k32 Clinical Investigation Center Plurithematic Tours'),
(58165, 'https://ror.org/01xevy941', 'pt', 1, 'https://ror.org/01xevy941 Hospital Universitário Lauro Wanderley Lauro Wanderley University Hospital'),
(58166, 'https://ror.org/01pyynr06', 'it', 1, 'https://ror.org/01pyynr06 SIOTEMA'),
(58167, 'https://ror.org/05f9vfg11', 'en', 1, 'https://ror.org/05f9vfg11 Huazhong University of Science and Technology Hospital'),
(58168, 'https://ror.org/007r4ws88', 'en', 1, 'https://ror.org/007r4ws88 Krishnadevaraya College of Dental Sciences and Hospital ಕೃಷ್ಣದೇವರಾಯ ದಂತ ವಿಜ್ಞಾನ ಮಹಾವಿದ್ಯಾಲಯ ಮತ್ತು ಆಸ್ಪತ್ರೆ'),
(58169, 'https://ror.org/04wk3wd50', 'fr', 1, 'https://ror.org/04wk3wd50 Académie de Nancy-Metz'),
(58170, 'https://ror.org/01rd68671', 'en', 1, 'https://ror.org/01rd68671 Mae Fah Luang University Hospital โรงพยาบาลมหาวิทยาลัยแม่ฟ้าหลวง'),
(58171, 'https://ror.org/05d585f89', 'en', 1, 'https://ror.org/05d585f89 Mahesh Bhattacharyya Homeopathic Medical College and Hospital'),
(58172, 'https://ror.org/01vvdem88', 'en', 1, 'https://ror.org/01vvdem88 National University Heart Centre Singapore'),
(58173, 'https://ror.org/02apyk545', 'en', 1, 'https://ror.org/02apyk545 Orygen'),
(58174, 'https://ror.org/031hkyx15', 'no_lang_code', 1, 'https://ror.org/031hkyx15 Johnson & Johnson (Hungary)'),
(58175, 'https://ror.org/0397v4g85', 'no_lang_code', 1, 'https://ror.org/0397v4g85 N-Gene (Hungary)'),
(58176, 'https://ror.org/041b8s785', 'no_lang_code', 1, 'https://ror.org/041b8s785 Clinipace (United States)'),
(58177, 'https://ror.org/04qfvk625', 'en', 1, 'https://ror.org/04qfvk625 William P. Clements Jr. University Hospital'),
(58178, 'https://ror.org/04113mk23', 'no_lang_code', 1, 'https://ror.org/04113mk23 Akupunkturforeningen'),
(58179, 'https://ror.org/058rwr454', 'en', 1, 'https://ror.org/058rwr454 University of Ottawa Skills and Simulation Centre'),
(58180, 'https://ror.org/04j032963', 'en', 1, 'https://ror.org/04j032963 New York School of Regional Anesthesia'),
(58181, 'https://ror.org/04jqt3k72', 'en', 1, 'https://ror.org/04jqt3k72 Minia University Hospital دليل الصحة المصري'),
(58182, 'https://ror.org/04tkkqy57', 'en', 1, 'https://ror.org/04tkkqy57 Nam Dinh University of Nursing'),
(58183, 'https://ror.org/00gp99k74', 'en', 1, 'https://ror.org/00gp99k74 Shanghai Third People''s Hospital 上海交通大学医学院附属第三人民医院'),
(58184, 'https://ror.org/02h7wt813', 'en', 1, 'https://ror.org/02h7wt813 Scottish School of Primary Care'),
(58185, 'https://ror.org/00ss42h10', 'en', 1, 'https://ror.org/00ss42h10 Riga East University Hospital Rīgas Austrumu klīniskā universitātes slimnīca'),
(58186, 'https://ror.org/020448x84', 'en', 1, 'https://ror.org/020448x84 Riverside University Health System - Medical Center');
INSERT INTO `rors` VALUES
(58187, 'https://ror.org/04v1ay816', 'es', 1, 'https://ror.org/04v1ay816 Hospital Universitario San Rafael San Rafael University Hospital'),
(58188, 'https://ror.org/00syaya36', 'en', 1, 'https://ror.org/00syaya36 Singapore College of Traditional Chinese Medicine'),
(58189, 'https://ror.org/03e4r0p06', 'en', 1, 'https://ror.org/03e4r0p06 The Royal College Of Anesthesiologists Of Thailand ราชวิทยาลัยวิสัญญีวิทยาแห่งประเทศไทย'),
(58190, 'https://ror.org/037s05q15', 'en', 1, 'https://ror.org/037s05q15 Reidman College'),
(58191, 'https://ror.org/005pe1772', 'en', 1, 'https://ror.org/005pe1772 Sixth Affiliated Hospital of Sun Yat-sen University 中山大学附属第六医院'),
(58192, 'https://ror.org/04yw93c88', 'en', 1, 'https://ror.org/04yw93c88 Lagos State Health Service Commission'),
(58193, 'https://ror.org/02tnw4027', 'ro', 1, 'https://ror.org/02tnw4027 Spitalul Universitar de Urgență Elias'),
(58194, 'https://ror.org/03ceh0618', 'en', 1, 'https://ror.org/03ceh0618 Sri Lanka College of Obstetricians & Gynaecologists'),
(58195, 'https://ror.org/00da4q652', 'en', 1, 'https://ror.org/00da4q652 Sutherland Cranial College of Osteopathy'),
(58196, 'https://ror.org/05ks75x17', 'no_lang_code', 1, 'https://ror.org/05ks75x17 Suyash Hospital'),
(58197, 'https://ror.org/00768sz96', 'en', 1, 'https://ror.org/00768sz96 Chinese People''s Armed Police Force Medical College Affiliated Hospital 中国人民武装警察部队医学院附属医院'),
(58198, 'https://ror.org/005gwb033', 'en', 1, 'https://ror.org/005gwb033 Taiwan College of Healthcare Executive'),
(58199, 'https://ror.org/01jkda844', 'en', 1, 'https://ror.org/01jkda844 West Cancer Center'),
(58200, 'https://ror.org/0146zsf67', 'en', 1, 'https://ror.org/0146zsf67 Tatyasaheb Kore Dental College and Research Centre'),
(58201, 'https://ror.org/04th56x69', 'en', 1, 'https://ror.org/04th56x69 THIM van der Laan University College Physiotherapy'),
(58202, 'https://ror.org/00fwp4v27', 'pt', 1, 'https://ror.org/00fwp4v27 Unidade Integrada de Farmacologia e Gastroenterologia'),
(58203, 'https://ror.org/036csaq39', 'en', 1, 'https://ror.org/036csaq39 The Third Affiliated Hospital of Guangzhou University of Traditional Chinese Medicine 广州中医药大学附属第三医院'),
(58204, 'https://ror.org/03wnxd135', 'en', 1, 'https://ror.org/03wnxd135 Second Affiliated Hospital of Fujian Medical University 福建医科大学附属第二医院'),
(58205, 'https://ror.org/00bhbea87', 'en', 1, 'https://ror.org/00bhbea87 Second Affiliated Hospital of Jiangxi University of TCM 江西中医药大学附属第二医院'),
(58206, 'https://ror.org/057bhmh42', 'en', 1, 'https://ror.org/057bhmh42 Second Affiliated Hospital of Shandong University of TCM 山东中医药大学附属第二医院'),
(58207, 'https://ror.org/03qwdkr25', 'en', 1, 'https://ror.org/03qwdkr25 First Affiliated Hospital of Shihezi University Medical College 石河子大学医学院第一附属医院'),
(58208, 'https://ror.org/05kgqvw68', 'en', 1, 'https://ror.org/05kgqvw68 University MRI & Diagnostic Imaging Centers'),
(58209, 'https://ror.org/03esvmb28', 'en', 1, 'https://ror.org/03esvmb28 Kinderklinik Tübingen University Children''s Hospital Tübingen'),
(58210, 'https://ror.org/00a0bqh48', 'de', 1, 'https://ror.org/00a0bqh48 Klinik für Frauenheilkunde'),
(58211, 'https://ror.org/02d9e4911', 'de', 1, 'https://ror.org/02d9e4911 Universitätsklinik für Frauenheilkunde und Geburtshilfe'),
(58212, 'https://ror.org/04jgrem26', 'en', 1, 'https://ror.org/04jgrem26 Ospidéal Máithreachais na hOllscoile, Luimneach University Maternity Hospital Limerick'),
(58213, 'https://ror.org/014knbk35', 'en', 1, 'https://ror.org/014knbk35 Tokyo Women''s Medical University Hospital 東京女子医科大学病院'),
(58214, 'https://ror.org/00pap0267', 'it', 1, 'https://ror.org/00pap0267 Azienda Universitaria Ospedaliera Consorziale - Policlinico Bari'),
(58215, 'https://ror.org/051fvq837', 'en', 1, 'https://ror.org/051fvq837 Hospital General Universitario Santa Lucía Santa Lucía University General Hospital'),
(58216, 'https://ror.org/04n8nb568', 'da', 1, 'https://ror.org/04n8nb568 Universitetshospitalernes Center for Sundhedsfaglig Forskning'),
(58217, 'https://ror.org/05rg5xr95', 'en', 1, 'https://ror.org/05rg5xr95 University General Surgeons'),
(58218, 'https://ror.org/043yx1v14', 'en', 1, 'https://ror.org/043yx1v14 University and Rehabilitation Clinics Ulm Universitäts und Rehabilitationskliniken Ulm'),
(58219, 'https://ror.org/05svdww41', 'en', 1, 'https://ror.org/05svdww41 University Hospital Medical Center Bezanijska kosa'),
(58220, 'https://ror.org/05kg2q446', 'en', 1, 'https://ror.org/05kg2q446 University Health Conway'),
(58221, 'https://ror.org/04ej3kx94', 'en', 1, 'https://ror.org/04ej3kx94 Bach & Godofsky Infectious Diseases'),
(58222, 'https://ror.org/015e4mc09', 'de', 1, 'https://ror.org/015e4mc09 Universitäts Kinder Frauenzentrum'),
(58223, 'https://ror.org/04a3njz22', 'en', 1, 'https://ror.org/04a3njz22 University Dermatology'),
(58224, 'https://ror.org/01mpr3h03', 'en', 1, 'https://ror.org/01mpr3h03 University Diagnostic Institute'),
(58225, 'https://ror.org/05y7rdz72', 'sl', 1, 'https://ror.org/05y7rdz72 Očesna Klinika UKC Ljubljana'),
(58226, 'https://ror.org/056gvz809', 'de', 1, 'https://ror.org/056gvz809 Klinik und Poliklinik für Augenheilkunde am Universitätsklinikum Carl Gustav Carus'),
(58227, 'https://ror.org/01vzx5p25', 'de', 1, 'https://ror.org/01vzx5p25 Universitätsaugenklinik Magdeburg'),
(58228, 'https://ror.org/01vs0xq55', 'de', 1, 'https://ror.org/01vs0xq55 Universitätsklinik für Augenheilkunde'),
(58229, 'https://ror.org/02zmrd443', 'de', 1, 'https://ror.org/02zmrd443 Klinik und Poliklinik für Augenheilkunde Universitätsklinikum Regensburg'),
(58230, 'https://ror.org/028gw7a54', 'en', 1, 'https://ror.org/028gw7a54 University Gastroenterology'),
(58231, 'https://ror.org/00j1phe22', 'en', 1, 'https://ror.org/00j1phe22 University Clinical Hospital In Bialystok Uniwersyteckim Szpitalu Klinicznym w Białymstoku'),
(58232, 'https://ror.org/02psj8r24', 'en', 1, 'https://ror.org/02psj8r24 University Multipurpose Hospital for Active Treatment "Sveti Georgi" Университетската многопрофилна болница за активно лечение „Свети Георги“'),
(58233, 'https://ror.org/05k40gs40', 'en', 1, 'https://ror.org/05k40gs40 University hospital Medical Information Network 大学病院医療情報ネットワーク'),
(58234, 'https://ror.org/00w7fxv12', 'en', 1, 'https://ror.org/00w7fxv12 University Hospital Dr. Georgi Stranski Университетската болница за активно лечение “Д-р Георги Странски”'),
(58235, 'https://ror.org/04backa61', 'no_lang_code', 1, 'https://ror.org/04backa61 Scientific Centre of Personalized Psychiatry ЗАО "Научный центр персонализированной психиатрии"'),
(58236, 'https://ror.org/0061w5363', 'sk', 1, 'https://ror.org/0061w5363 Fakultná Nemocnica Trnava'),
(58237, 'https://ror.org/02ebx7v45', 'en', 1, 'https://ror.org/02ebx7v45 Frontière humaine International Human Frontier Science Program Organization'),
(58238, 'https://ror.org/0154qvp54', 'en', 1, 'https://ror.org/0154qvp54 Trung tâm Y tế Đại học Hồ Chí Minh University Medical Center HCMC'),
(58239, 'https://ror.org/00ygteq35', 'no_lang_code', 1, 'https://ror.org/00ygteq35 Australian Coal Research (Australia)'),
(58240, 'https://ror.org/00ej70p06', 'en', 1, 'https://ror.org/00ej70p06 Orygen Youth Health'),
(58241, 'https://ror.org/03jt4bv90', 'en', 1, 'https://ror.org/03jt4bv90 University Hospitals Sharon Health Center'),
(58242, 'https://ror.org/01teb6y78', 'en', 1, 'https://ror.org/01teb6y78 Foundation for Glacier and Environmental Research'),
(58243, 'https://ror.org/00aqfrr40', 'pt', 1, 'https://ror.org/00aqfrr40 Hospital Universitário de Santa Maria'),
(58244, 'https://ror.org/00at08b36', 'es', 1, 'https://ror.org/00at08b36 Hospital Universitario de Torrejón'),
(58245, 'https://ror.org/01aq2mh35', 'en', 1, 'https://ror.org/01aq2mh35 UNM Children''s Hospital'),
(58246, 'https://ror.org/02veq1j93', 'de', 1, 'https://ror.org/02veq1j93 Universitäts Frauenklinik'),
(58247, 'https://ror.org/00xnymf93', 'nl', 1, 'https://ror.org/00xnymf93 Militaire Geestelijke Gezondheidszorg'),
(58248, 'https://ror.org/007nw9a41', 'en', 1, 'https://ror.org/007nw9a41 University Orthopaedic Associates'),
(58249, 'https://ror.org/00f378f80', 'sv', 1, 'https://ror.org/00f378f80 Akademiska Barnsjukhuset'),
(58250, 'https://ror.org/03khf7306', 'en', 1, 'https://ror.org/03khf7306 University Orthopedics Center'),
(58251, 'https://ror.org/0204j6811', 'en', 1, 'https://ror.org/0204j6811 Specialized Hospital for Active Treatment of Children''s Diseases Специализирана болница за активно лечение по детски болести'),
(58252, 'https://ror.org/05hadjh66', 'en', 1, 'https://ror.org/05hadjh66 Marshall Health'),
(58253, 'https://ror.org/03sqnmh94', 'en', 1, 'https://ror.org/03sqnmh94 Vienna School of Clinical Research'),
(58254, 'https://ror.org/0029et149', 'en', 1, 'https://ror.org/0029et149 University Reproductive Associates'),
(58255, 'https://ror.org/04fbjgg20', 'tr', 1, 'https://ror.org/04fbjgg20 Higher Specialization University Yüksek İhtisas Üniversitesi'),
(58256, 'https://ror.org/00sx7n004', 'en', 1, 'https://ror.org/00sx7n004 University Surgical Associates'),
(58257, 'https://ror.org/01xf55557', 'en', 1, 'https://ror.org/01xf55557 Altius Institute for Biomedical Sciences'),
(58258, 'https://ror.org/0561hjj97', 'en', 1, 'https://ror.org/0561hjj97 Milwaukee Health Department'),
(58259, 'https://ror.org/02084tv33', 'en', 1, 'https://ror.org/02084tv33 Herrin Hospital'),
(58260, 'https://ror.org/04wfzj177', 'en', 1, 'https://ror.org/04wfzj177 PeaceHealth St. Joseph Medical Center'),
(58261, 'https://ror.org/0460whz58', 'en', 1, 'https://ror.org/0460whz58 Orange County Global Medical Center'),
(58262, 'https://ror.org/05at6ra83', 'en', 1, 'https://ror.org/05at6ra83 Orange Regional Medical Center'),
(58263, 'https://ror.org/00n4f0h74', 'en', 1, 'https://ror.org/00n4f0h74 Johnson City Medical Center'),
(58264, 'https://ror.org/02pjd1n70', 'en', 1, 'https://ror.org/02pjd1n70 Children''s Hospital at Saint Francis'),
(58265, 'https://ror.org/01hpypq56', 'en', 1, 'https://ror.org/01hpypq56 Angeline Elizabeth Kirby Memorial Health Center'),
(58266, 'https://ror.org/01fqh9j23', 'en', 1, 'https://ror.org/01fqh9j23 Elmhurst Memorial Hospital'),
(58267, 'https://ror.org/05q3jcj22', 'en', 1, 'https://ror.org/05q3jcj22 Miami Serpentarium Laboratories'),
(58268, 'https://ror.org/00aeyav11', 'en', 1, 'https://ror.org/00aeyav11 Foundation for Biomedical Research'),
(58269, 'https://ror.org/02hbmed43', 'no_lang_code', 1, 'https://ror.org/02hbmed43 Safety Management Systems Aotearoa (New Zealand)'),
(58270, 'https://ror.org/01gmqt203', 'en', 1, 'https://ror.org/01gmqt203 Mental Health Foundation'),
(58271, 'https://ror.org/03zdy0d17', 'en', 1, 'https://ror.org/03zdy0d17 Motu Economic and Public Policy Research'),
(58272, 'https://ror.org/0132cpq10', 'en', 1, 'https://ror.org/0132cpq10 Edith Kanaka''ole Foundation'),
(58273, 'https://ror.org/05c9swc26', 'en', 1, 'https://ror.org/05c9swc26 Museum of New Zealand Te Papa Tongarewa'),
(58274, 'https://ror.org/02a8zfv27', 'en', 1, 'https://ror.org/02a8zfv27 Hokotehi Moriori Trust'),
(58275, 'https://ror.org/0585bbm72', 'en', 1, 'https://ror.org/0585bbm72 Clinical Infectious Disease Hospital named after S.P. Botkin Клиническая инфекционная больница имени С. П. Боткина'),
(58276, 'https://ror.org/029pazr57', 'en', 1, 'https://ror.org/029pazr57 Bon Secours Heart & Vascular Institute'),
(58277, 'https://ror.org/03ckvbj98', 'en', 1, 'https://ror.org/03ckvbj98 Bon Secours Liver Institute of Richmond'),
(58278, 'https://ror.org/02hk27r53', 'en', 1, 'https://ror.org/02hk27r53 Asian Institute of Medical Sciences'),
(58279, 'https://ror.org/05evjvn31', 'en', 1, 'https://ror.org/05evjvn31 Bon Secours Liver Institute of Hampton Roads'),
(58280, 'https://ror.org/042bx3y66', 'en', 1, 'https://ror.org/042bx3y66 Ablon Skin Institute and Research Center'),
(58281, 'https://ror.org/04cghs078', 'en', 1, 'https://ror.org/04cghs078 Catalina Research Institute'),
(58282, 'https://ror.org/02m901r68', 'en', 1, 'https://ror.org/02m901r68 Abrams Eye Institute'),
(58283, 'https://ror.org/00tt93p95', 'no_lang_code', 1, 'https://ror.org/00tt93p95 Healthycell (United States)'),
(58284, 'https://ror.org/03creye80', 'en', 1, 'https://ror.org/03creye80 Boucher Institute of Naturopathic Medicine'),
(58285, 'https://ror.org/0439nps09', 'en', 1, 'https://ror.org/0439nps09 Assil Eye Institute'),
(58286, 'https://ror.org/02cn88225', 'en', 1, 'https://ror.org/02cn88225 Boulder Institute for Sports Medicine'),
(58287, 'https://ror.org/05sa2hd66', 'en', 1, 'https://ror.org/05sa2hd66 Academic Medical Research Institute'),
(58288, 'https://ror.org/05b0t4w03', 'en', 1, 'https://ror.org/05b0t4w03 Association of Microfinance Institutions in Rwanda'),
(58289, 'https://ror.org/02smhv438', 'no_lang_code', 1, 'https://ror.org/02smhv438 BQS Institut für Qualität und Patientensicherheit (Germany)'),
(58290, 'https://ror.org/04zncpe92', 'en', 1, 'https://ror.org/04zncpe92 Access to Wholistic and Productive Living Institute'),
(58291, 'https://ror.org/005489b68', 'en', 1, 'https://ror.org/005489b68 Institute of Mind Control & Brain Development'),
(58292, 'https://ror.org/045z78c59', 'en', 1, 'https://ror.org/045z78c59 ADD Centre'),
(58293, 'https://ror.org/027h0s442', 'en', 1, 'https://ror.org/027h0s442 Brazosport Eye Institute'),
(58294, 'https://ror.org/04ppky291', 'en', 1, 'https://ror.org/04ppky291 Advanced Medical Research Institute'),
(58295, 'https://ror.org/03dsbfb14', 'en', 1, 'https://ror.org/03dsbfb14 Australian Institute of Tropical Health and Medicine'),
(58296, 'https://ror.org/05887gz78', 'lt', 1, 'https://ror.org/05887gz78 Centro poliklinika'),
(58297, 'https://ror.org/00cm7z053', 'en', 1, 'https://ror.org/00cm7z053 Health First'),
(58298, 'https://ror.org/052vdf235', 'en', 1, 'https://ror.org/052vdf235 Central Florida Neurosurgery Institute'),
(58299, 'https://ror.org/02dndmg40', 'en', 1, 'https://ror.org/02dndmg40 Advanced Heart and Vascular Institute of Hunterdon'),
(58300, 'https://ror.org/0445eft26', 'en', 1, 'https://ror.org/0445eft26 Advanced Memory Research Institute of New Jersey'),
(58301, 'https://ror.org/02kc8gm46', 'en', 1, 'https://ror.org/02kc8gm46 Brisbane Hand & Upper Limb Research Institute'),
(58302, 'https://ror.org/00gked521', 'en', 1, 'https://ror.org/00gked521 Advanced Vision Institute'),
(58303, 'https://ror.org/05vbgdg34', 'en', 1, 'https://ror.org/05vbgdg34 Central Texas Spine Institute'),
(58304, 'https://ror.org/05h3wd214', 'en', 1, 'https://ror.org/05h3wd214 Adventist Heart Institute'),
(58305, 'https://ror.org/02pj2bt04', 'en', 1, 'https://ror.org/02pj2bt04 Bucci Laser Vision Institute'),
(58306, 'https://ror.org/022bv4r09', 'en', 1, 'https://ror.org/022bv4r09 African Institute for Health and Development'),
(58307, 'https://ror.org/04t8gaz30', 'en', 1, 'https://ror.org/04t8gaz30 Ayurvedic Institute'),
(58308, 'https://ror.org/025pp2a41', 'en', 1, 'https://ror.org/025pp2a41 Bacharach Institute for Rehabilitation'),
(58309, 'https://ror.org/02yxqm243', 'en', 1, 'https://ror.org/02yxqm243 Budgetary Healthcare Institution of Omsk Region Regional Clinical Hospital'),
(58310, 'https://ror.org/02qktq607', 'en', 1, 'https://ror.org/02qktq607 Bulgarian Cardiac Institute'),
(58311, 'https://ror.org/042eeg142', 'en', 1, 'https://ror.org/042eeg142 Adelaide Institute for Sleep Health'),
(58312, 'https://ror.org/043dsjh82', 'en', 1, 'https://ror.org/043dsjh82 The Advanced IVF Institute'),
(58313, 'https://ror.org/02dtse057', 'en', 1, 'https://ror.org/02dtse057 The Ageless Aesthetic Institute'),
(58314, 'https://ror.org/02vwqfb11', 'en', 1, 'https://ror.org/02vwqfb11 Ainsworth Institute of Pain Management'),
(58315, 'https://ror.org/0021y6a82', 'en', 1, 'https://ror.org/0021y6a82 California Life Sciences Association'),
(58316, 'https://ror.org/01va8fr66', 'en', 1, 'https://ror.org/01va8fr66 Baim Institute for Clinical Research'),
(58317, 'https://ror.org/02q9v7665', 'en', 1, 'https://ror.org/02q9v7665 California Liver Research Institute'),
(58318, 'https://ror.org/02h4hqt24', 'en', 1, 'https://ror.org/02h4hqt24 Alberta Bone and Joint Health Institute'),
(58319, 'https://ror.org/05f508233', 'en', 1, 'https://ror.org/05f508233 Chan Heart Rhythm Institute'),
(58320, 'https://ror.org/04rtgxf38', 'en', 1, 'https://ror.org/04rtgxf38 Canadian Institute of Natural and Integrative Medicine'),
(58321, 'https://ror.org/01sgsyh36', 'en', 1, 'https://ror.org/01sgsyh36 Charleston Research Institute'),
(58322, 'https://ror.org/02jnh1883', 'en', 1, 'https://ror.org/02jnh1883 Canadian Sugar Institute'),
(58323, 'https://ror.org/01arb1p52', 'en', 1, 'https://ror.org/01arb1p52 Charlotte Sports Medicine Institute'),
(58324, 'https://ror.org/03ydnrx14', 'en', 1, 'https://ror.org/03ydnrx14 Connecticut Skin Institute'),
(58325, 'https://ror.org/00max4143', 'en', 1, 'https://ror.org/00max4143 Chattanooga Eye Institute'),
(58326, 'https://ror.org/005vqqr19', 'pt', 1, 'https://ror.org/005vqqr19 Instituto do Câncer do Estado de São Paulo'),
(58327, 'https://ror.org/030kcs678', 'en', 1, 'https://ror.org/030kcs678 Allergy Asthma Research Institute'),
(58328, 'https://ror.org/00hx49s62', 'en', 1, 'https://ror.org/00hx49s62 Cooper Institute for Reproductive Hormonal Disorders'),
(58329, 'https://ror.org/04p7je888', 'en', 1, 'https://ror.org/04p7je888 Alliance Integrative Medicine'),
(58330, 'https://ror.org/01yf7sx51', 'sk', 1, 'https://ror.org/01yf7sx51 Východoslovenský Onkologický Ústav'),
(58331, 'https://ror.org/00dd2mx78', 'en', 1, 'https://ror.org/00dd2mx78 Allied Biomedical Research Institute'),
(58332, 'https://ror.org/0447hzq61', 'en', 1, 'https://ror.org/0447hzq61 Cornea and Laser Eye Institute - Hersh Vision Group'),
(58333, 'https://ror.org/023t01j49', 'en', 1, 'https://ror.org/023t01j49 Bariatric Medical Institute of Texas'),
(58334, 'https://ror.org/02qsnza70', 'en', 1, 'https://ror.org/02qsnza70 Cornea Eye Institute'),
(58335, 'https://ror.org/02v72sd52', 'en', 1, 'https://ror.org/02v72sd52 Chhattisgarh Dental College & Research Institute'),
(58336, 'https://ror.org/0155dcf85', 'lt', 1, 'https://ror.org/0155dcf85 Alytaus Apskrities S. Kudirkos Ligoninė'),
(58337, 'https://ror.org/0216ch235', 'en', 1, 'https://ror.org/0216ch235 Coyle Institute'),
(58338, 'https://ror.org/003ebr303', 'en', 1, 'https://ror.org/003ebr303 Child Psychopharmacology Institute'),
(58339, 'https://ror.org/0293zyz69', 'en', 1, 'https://ror.org/0293zyz69 Cantor Spine Institute'),
(58340, 'https://ror.org/04fn5zr38', 'en', 1, 'https://ror.org/04fn5zr38 American SIDS Institute'),
(58341, 'https://ror.org/00rgw2q98', 'en', 1, 'https://ror.org/00rgw2q98 Canyon Ranch Institute'),
(58342, 'https://ror.org/04k24ww57', 'en', 1, 'https://ror.org/04k24ww57 Capital Region Special Surgery'),
(58343, 'https://ror.org/03feft235', 'en', 1, 'https://ror.org/03feft235 The Cardiac and Vascular Institute'),
(58344, 'https://ror.org/01kmtg526', 'en', 1, 'https://ror.org/01kmtg526 Children’s Institute'),
(58345, 'https://ror.org/047get849', 'en', 1, 'https://ror.org/047get849 Dallas Ear Institute'),
(58346, 'https://ror.org/01hf2y314', 'pt', 1, 'https://ror.org/01hf2y314 Instituto de Cardiologia do Distrito Federal'),
(58347, 'https://ror.org/03vxfws77', 'en', 1, 'https://ror.org/03vxfws77 Beals institute'),
(58348, 'https://ror.org/01ct2ab72', 'en', 1, 'https://ror.org/01ct2ab72 Angeles Clinic and Research Institute'),
(58349, 'https://ror.org/03c4ay951', 'en', 1, 'https://ror.org/03c4ay951 Cardiovascular Institute of Central Florida'),
(58350, 'https://ror.org/03003by36', 'fr', 1, 'https://ror.org/03003by36 Centre Hospitalier Interrégional Edith Cavell'),
(58351, 'https://ror.org/0515efc31', 'no_lang_code', 1, 'https://ror.org/0515efc31 Danone (China)'),
(58352, 'https://ror.org/05g8gd021', 'en', 1, 'https://ror.org/05g8gd021 Cardiovascular Institute of Michigan P.C'),
(58353, 'https://ror.org/01ztgpx39', 'en', 1, 'https://ror.org/01ztgpx39 Chongqing Institute of Genetics and Reproduction'),
(58354, 'https://ror.org/04gzrzz80', 'en', 1, 'https://ror.org/04gzrzz80 Apex Heart Institute'),
(58355, 'https://ror.org/00paktj46', 'no_lang_code', 1, 'https://ror.org/00paktj46 DARTNet Institute'),
(58356, 'https://ror.org/0590c4t82', 'en', 1, 'https://ror.org/0590c4t82 Academic Research in Complementary and Integrative Medicine'),
(58357, 'https://ror.org/01w5bhe03', 'en', 1, 'https://ror.org/01w5bhe03 Cardiovascular Institute of Northwest Florida'),
(58358, 'https://ror.org/029041c41', 'en', 1, 'https://ror.org/029041c41 Christiana Institute of Advanced Surgery'),
(58359, 'https://ror.org/04b0ys521', 'en', 1, 'https://ror.org/04b0ys521 CHRISTUS Transplant Institute'),
(58360, 'https://ror.org/00yqqsx19', 'en', 1, 'https://ror.org/00yqqsx19 Care Institute of Medical Sciences'),
(58361, 'https://ror.org/057b57860', 'en', 1, 'https://ror.org/057b57860 Dattoli Cancer Center and Brachytherapy Research Institute'),
(58362, 'https://ror.org/04tx7n689', 'en', 1, 'https://ror.org/04tx7n689 Chu Vision Institute'),
(58363, 'https://ror.org/059hsbq74', 'en', 1, 'https://ror.org/059hsbq74 Dearborn-Sah Institute For Joint Restoration'),
(58364, 'https://ror.org/00htvrc11', 'en', 1, 'https://ror.org/00htvrc11 Carolina BioOncology Institute'),
(58365, 'https://ror.org/039h4qc17', 'en', 1, 'https://ror.org/039h4qc17 DeClaire LaMacchia Orthopaedic Institute'),
(58366, 'https://ror.org/01e0c9e09', 'en', 1, 'https://ror.org/01e0c9e09 Carolina Headache Institute'),
(58367, 'https://ror.org/0062czq56', 'en', 1, 'https://ror.org/0062czq56 DeGarmo Institute of Medical Research'),
(58368, 'https://ror.org/05jd5rm48', 'en', 1, 'https://ror.org/05jd5rm48 Carolina Musculoskeletal Institute'),
(58369, 'https://ror.org/020cs7q41', 'en', 1, 'https://ror.org/020cs7q41 Clearview Cancer Institute'),
(58370, 'https://ror.org/001g69757', 'en', 1, 'https://ror.org/001g69757 Phelps County Regional Medical Center'),
(58371, 'https://ror.org/04prh3p48', 'en', 1, 'https://ror.org/04prh3p48 Full Plate Living'),
(58372, 'https://ror.org/03m0npv78', 'en', 1, 'https://ror.org/03m0npv78 Digestive Health Associates of Texas'),
(58373, 'https://ror.org/05fstx905', 'sk', 1, 'https://ror.org/05fstx905 Národný Endokrinologický a Diabetologický Ústav'),
(58374, 'https://ror.org/026b8fb58', 'en', 1, 'https://ror.org/026b8fb58 Carolinas Pain Institute'),
(58375, 'https://ror.org/03egr7630', 'de', 1, 'https://ror.org/03egr7630 Diabetesinstitut Heidelberg'),
(58376, 'https://ror.org/000txyc96', 'en', 1, 'https://ror.org/000txyc96 Clinical Institute of Brain'),
(58377, 'https://ror.org/05ty37s47', 'en', 1, 'https://ror.org/05ty37s47 Clinical Hospital No 122 named after. L.G.Sokolova'),
(58378, 'https://ror.org/01g06kj70', 'no_lang_code', 1, 'https://ror.org/01g06kj70 Clinstile (Mexico)'),
(58379, 'https://ror.org/01vrgp187', 'en', 1, 'https://ror.org/01vrgp187 CODET Vision Institute'),
(58380, 'https://ror.org/008nt0z81', 'en', 1, 'https://ror.org/008nt0z81 Central Clinical Hospital of Civil Aviation'),
(58381, 'https://ror.org/05ane1z80', 'en', 1, 'https://ror.org/05ane1z80 Sheth M. L. Vaduwala Charitable Eye Hospital and Dr. Thakorbhai V. Patel Eye Institute'),
(58382, 'https://ror.org/040pncp85', 'en', 1, 'https://ror.org/040pncp85 Colorado Blood Cancer Institute'),
(58383, 'https://ror.org/00c5s4m23', 'en', 1, 'https://ror.org/00c5s4m23 State Scientific Center of Coloproctology'),
(58384, 'https://ror.org/00nqj3y93', 'en', 1, 'https://ror.org/00nqj3y93 Grand Rapids Women''s Health'),
(58385, 'https://ror.org/03xtgc164', 'en', 1, 'https://ror.org/03xtgc164 DuPage Medical Group'),
(58386, 'https://ror.org/00hchbn59', 'en', 1, 'https://ror.org/00hchbn59 Fetal Diagnostic Institute of the Pacific'),
(58387, 'https://ror.org/02n0p7v71', 'en', 1, 'https://ror.org/02n0p7v71 Desert Institute For Spine Care'),
(58388, 'https://ror.org/00w2zvp73', 'en', 1, 'https://ror.org/00w2zvp73 The Few Institute'),
(58389, 'https://ror.org/025wz7r34', 'en', 1, 'https://ror.org/025wz7r34 Gene Therapy Research Institution 株式会社遺伝子研究所'),
(58390, 'https://ror.org/037q5gj93', 'en', 1, 'https://ror.org/037q5gj93 First Coast Cardiovascular Institute'),
(58391, 'https://ror.org/035vbe686', 'en', 1, 'https://ror.org/035vbe686 Bel-Rea Institute'),
(58392, 'https://ror.org/02pjn5k45', 'de', 1, 'https://ror.org/02pjn5k45 Deutsches Institut für Telemedizin und Gesundheitsförderung'),
(58393, 'https://ror.org/01tt8er74', 'en', 1, 'https://ror.org/01tt8er74 Chongqing Maternal and Child Health Hospital'),
(58394, 'https://ror.org/05pv0dd97', 'en', 1, 'https://ror.org/05pv0dd97 Florida Cancer Care'),
(58395, 'https://ror.org/02g08q683', 'nl', 1, 'https://ror.org/02g08q683 Nederlands Paramedisch Instituut'),
(58396, 'https://ror.org/0501yf769', 'en', 1, 'https://ror.org/0501yf769 George Huntington Institute George-Huntington-Institut'),
(58397, 'https://ror.org/00tvc4894', 'en', 1, 'https://ror.org/00tvc4894 Florida Digestive Health Specialists'),
(58398, 'https://ror.org/00zc8sp15', 'en', 1, 'https://ror.org/00zc8sp15 Georgia Arrhythmia Consultants'),
(58399, 'https://ror.org/01t3v1178', 'en', 1, 'https://ror.org/01t3v1178 Florida Eye Microsurgical Institute'),
(58400, 'https://ror.org/04cas2957', 'no_lang_code', 1, 'https://ror.org/04cas2957 Non-Surgical Orthopaedics (United States)'),
(58401, 'https://ror.org/03aw1bv52', 'en', 1, 'https://ror.org/03aw1bv52 Rajamangala Institute of kidney disease ราชมงคลสถาบันโรคไตโรค'),
(58402, 'https://ror.org/00zrvqw87', 'en', 1, 'https://ror.org/00zrvqw87 Georgia Nasal and Sinus Institute'),
(58403, 'https://ror.org/00tfz0s96', 'en', 1, 'https://ror.org/00tfz0s96 Biomed Research Institute'),
(58404, 'https://ror.org/05kxwfj75', 'en', 1, 'https://ror.org/05kxwfj75 East Florida Eye Institute'),
(58405, 'https://ror.org/03p2tn002', 'en', 1, 'https://ror.org/03p2tn002 Florida Pain Institute'),
(58406, 'https://ror.org/02z7tpb72', 'en', 1, 'https://ror.org/02z7tpb72 Amita Health'),
(58407, 'https://ror.org/010nxj438', 'en', 1, 'https://ror.org/010nxj438 Floridian Research Institute'),
(58408, 'https://ror.org/01tz5vj85', 'no_lang_code', 1, 'https://ror.org/01tz5vj85 Earlogic (South Korea)'),
(58409, 'https://ror.org/052ec2555', 'en', 1, 'https://ror.org/052ec2555 HealthCare Partners Institute for Applied Research and Education'),
(58410, 'https://ror.org/04w8qq712', 'es', 1, 'https://ror.org/04w8qq712 Instituto Ecuatoriano de Enfermedades Digestivas'),
(58411, 'https://ror.org/04y1ahe28', 'en', 1, 'https://ror.org/04y1ahe28 EEC Institute'),
(58412, 'https://ror.org/00ht9y350', 'en', 1, 'https://ror.org/00ht9y350 Elite Research Institute'),
(58413, 'https://ror.org/006t1gb51', 'en', 1, 'https://ror.org/006t1gb51 Heart & Vascular Institute of Florida'),
(58414, 'https://ror.org/02qmfy413', 'en', 1, 'https://ror.org/02qmfy413 Gibson Institute of Cognitive Research'),
(58415, 'https://ror.org/04njrx155', 'en', 1, 'https://ror.org/04njrx155 ELZA Institute'),
(58416, 'https://ror.org/04ew55674', 'en', 1, 'https://ror.org/04ew55674 Heart & Vascular Outcomes Research Institute'),
(58417, 'https://ror.org/04jm04j52', 'en', 1, 'https://ror.org/04jm04j52 Black Hills Regional Eye Institute'),
(58418, 'https://ror.org/02awj9960', 'de', 1, 'https://ror.org/02awj9960 Forschungsinstitut Havelhöhe'),
(58419, 'https://ror.org/01yqwf941', 'en', 1, 'https://ror.org/01yqwf941 Kalispell Regional Healthcare'),
(58420, 'https://ror.org/00zrhn916', 'en', 1, 'https://ror.org/00zrhn916 Bleeding & Clotting Disorders Institute'),
(58421, 'https://ror.org/00en0kf81', 'en', 1, 'https://ror.org/00en0kf81 Glendale Heart Institute'),
(58422, 'https://ror.org/00ezhaq65', 'en', 1, 'https://ror.org/00ezhaq65 Fort Wayne Medical Institute'),
(58423, 'https://ror.org/05m9b9906', 'en', 1, 'https://ror.org/05m9b9906 Boise Kidney & Hypertension Institute'),
(58424, 'https://ror.org/0108d5e42', 'en', 1, 'https://ror.org/0108d5e42 Fox Valley Orthopedics'),
(58425, 'https://ror.org/049mk3j45', 'en', 1, 'https://ror.org/049mk3j45 Heart Institute'),
(58426, 'https://ror.org/01p02as95', 'it', 1, 'https://ror.org/01p02as95 Istituto Europeo per la Medicina Osteopatica'),
(58427, 'https://ror.org/04cj95h53', 'no_lang_code', 1, 'https://ror.org/04cj95h53 Global Medical Institutes (United States)'),
(58428, 'https://ror.org/02qzyds37', 'en', 1, 'https://ror.org/02qzyds37 Gordon Schanzlin New Vision Institute'),
(58429, 'https://ror.org/007492963', 'en', 1, 'https://ror.org/007492963 Grupo de Apoio ao Adolescente e à Criança com Câncer Support group for adolescents and children with cancer'),
(58430, 'https://ror.org/0466ghp25', 'en', 1, 'https://ror.org/0466ghp25 Heekin Clinic'),
(58431, 'https://ror.org/047a78m29', 'en', 1, 'https://ror.org/047a78m29 Farzan Knowledge Development, Research and Technology Institute'),
(58432, 'https://ror.org/0585r9546', 'en', 1, 'https://ror.org/0585r9546 Farr Institute'),
(58433, 'https://ror.org/053dfbb70', 'en', 1, 'https://ror.org/053dfbb70 Immunology Research Institute in Gifu 岐阜县免疫学研究所'),
(58434, 'https://ror.org/02w1djg46', 'es', 1, 'https://ror.org/02w1djg46 Fecunditas Instituto de Medicina Reproductiva'),
(58435, 'https://ror.org/015wgw417', 'de', 1, 'https://ror.org/015wgw417 Heidelberger Institut für Radioonkologie'),
(58436, 'https://ror.org/05e9aes39', 'en', 1, 'https://ror.org/05e9aes39 Chelyabinsk Regional Clinical Oncology Center Челябинский областной клинический онкологический диспансер'),
(58437, 'https://ror.org/036awca68', 'en', 1, 'https://ror.org/036awca68 Institute of Ophthalmology'),
(58438, 'https://ror.org/04hgg9s59', 'es', 1, 'https://ror.org/04hgg9s59 Fundacion Instituto de Reumatologia Fernando Chalem'),
(58439, 'https://ror.org/0425mk239', 'en', 1, 'https://ror.org/0425mk239 Gruter Institute'),
(58440, 'https://ror.org/05ppn2f94', 'no_lang_code', 1, 'https://ror.org/05ppn2f94 Institute for Quality Indicators (Sweden) Institutet för kvalitetsindikatorer'),
(58441, 'https://ror.org/044a30492', 'en', 1, 'https://ror.org/044a30492 Gantt Clinical Research Institute'),
(58442, 'https://ror.org/027ybey37', 'en', 1, 'https://ror.org/027ybey37 Guangdong Institute of Biological Products and Drugs'),
(58443, 'https://ror.org/026c8da16', 'en', 1, 'https://ror.org/026c8da16 Gateway Aesthetic Institute and Laser Center'),
(58444, 'https://ror.org/01bdtz792', 'no_lang_code', 1, 'https://ror.org/01bdtz792 Burning Rock Biotech (China)'),
(58445, 'https://ror.org/05a3ksk07', 'en', 1, 'https://ror.org/05a3ksk07 GVK Emergency Management and Research Institute'),
(58446, 'https://ror.org/05980vk77', 'en', 1, 'https://ror.org/05980vk77 Hernando Eye Institute'),
(58447, 'https://ror.org/04rf3en62', 'no_lang_code', 1, 'https://ror.org/04rf3en62 El Instituto Hero de Nutrición Infantil Hero Institute for Infant Nutrition (Spain)'),
(58448, 'https://ror.org/05gsbmf62', 'en', 1, 'https://ror.org/05gsbmf62 Herzig Eye Institute'),
(58449, 'https://ror.org/051d1hf40', 'es', 1, 'https://ror.org/051d1hf40 Halitus Instituto Médico'),
(58450, 'https://ror.org/05yjkn316', 'en', 1, 'https://ror.org/05yjkn316 Hamburg Institute for Therapy Research Hamburger Institut für Therapieforschung'),
(58451, 'https://ror.org/03wr2ty35', 'fr', 1, 'https://ror.org/03wr2ty35 Groupe Hospitalier de l''Institut Catholique de Lille'),
(58452, 'https://ror.org/01skcdk50', 'ca', 1, 'https://ror.org/01skcdk50 Catalan Retina Institute Institut Català de Retina'),
(58453, 'https://ror.org/01an94380', 'fr', 1, 'https://ror.org/01an94380 Institut Emergences'),
(58454, 'https://ror.org/01ee26j42', 'ca', 1, 'https://ror.org/01ee26j42 Catalan Institute of Traumatology and Sports Medicine Institut Català de Traumatologia i Medicina de l''Esport'),
(58455, 'https://ror.org/01zmatx12', 'en', 1, 'https://ror.org/01zmatx12 Hassman Research Institute'),
(58456, 'https://ror.org/0194xa029', 'en', 1, 'https://ror.org/0194xa029 Oncology Institute of Vojvodina Институт за онкологију Војводине'),
(58457, 'https://ror.org/0546j8a61', 'en', 1, 'https://ror.org/0546j8a61 Institute for Pulmonary Diseases of Vojvodina'),
(58458, 'https://ror.org/04kb8af13', 'en', 1, 'https://ror.org/04kb8af13 Havana Research Institute'),
(58459, 'https://ror.org/03ke8w717', 'en', 1, 'https://ror.org/03ke8w717 Houston Fertility Institute'),
(58460, 'https://ror.org/02n3gey39', 'en', 1, 'https://ror.org/02n3gey39 Institute for Advanced Laser Dentistry'),
(58461, 'https://ror.org/010h4w402', 'en', 1, 'https://ror.org/010h4w402 HCA Midwest Division'),
(58462, 'https://ror.org/00s65k733', 'en', 1, 'https://ror.org/00s65k733 Institute for Advanced Reconstruction'),
(58463, 'https://ror.org/02ztxmr86', 'en', 1, 'https://ror.org/02ztxmr86 Institute for Asthma and Allergy'),
(58464, 'https://ror.org/02xss3674', 'en', 1, 'https://ror.org/02xss3674 Institut für Klinisch Onkologische Forschung Institute of Clinical Cancer Research'),
(58465, 'https://ror.org/0398sv340', 'en', 1, 'https://ror.org/0398sv340 Vienna Challenge Chamber'),
(58466, 'https://ror.org/01bm8vs30', 'no_lang_code', 1, 'https://ror.org/01bm8vs30 Hubei Bio Pharmaceutical Industry Technology Institute (China)'),
(58467, 'https://ror.org/05mhs9m77', 'es', 1, 'https://ror.org/05mhs9m77 Instituto Privado de Hematología e Investigación Clínica'),
(58468, 'https://ror.org/05g37hp80', 'en', 1, 'https://ror.org/05g37hp80 Institute of Applied Economics and Health Research ApS'),
(58469, 'https://ror.org/05gqsqy69', 'de', 1, 'https://ror.org/05gqsqy69 Institut für Lungenforschung'),
(58470, 'https://ror.org/011ypec60', 'no_lang_code', 1, 'https://ror.org/011ypec60 Human Stem Cells Institute PJSC (Russia) Институт Стволовых Клеток Человека'),
(58471, 'https://ror.org/049w74f06', 'de', 1, 'https://ror.org/049w74f06 Institut für Medizinische Diagnostik Berlin-Potsdam'),
(58472, 'https://ror.org/027jqx654', 'en', 1, 'https://ror.org/027jqx654 Institute for Human Reproduction'),
(58473, 'https://ror.org/036mqzt31', 'en', 1, 'https://ror.org/036mqzt31 Hunan Province Chest Hospital 湖南省胸科医院'),
(58474, 'https://ror.org/019wxyf39', 'de', 1, 'https://ror.org/019wxyf39 Helios Klinik Hagen Ambrock'),
(58475, 'https://ror.org/03gv0kc08', 'fr', 1, 'https://ror.org/03gv0kc08 Oncolie'),
(58476, 'https://ror.org/03tr83233', 'en', 1, 'https://ror.org/03tr83233 Institute for Interdisciplinary Medicine ifi–Institut für interdisziplinäre Medizin'),
(58477, 'https://ror.org/02437h829', 'sr', 1, 'https://ror.org/02437h829 Zavod ''''Konzilijum'''''),
(58478, 'https://ror.org/04azstb81', 'en', 1, 'https://ror.org/04azstb81 Hypertension Institute'),
(58479, 'https://ror.org/00gd0s828', 'en', 1, 'https://ror.org/00gd0s828 Institute For European Expertise in Physiology'),
(58480, 'https://ror.org/030nkeg78', 'es', 1, 'https://ror.org/030nkeg78 Insituto de Asistencia Reumatólogica Integral'),
(58481, 'https://ror.org/00wjdp131', 'en', 1, 'https://ror.org/00wjdp131 Institute for Food Safety and Health'),
(58482, 'https://ror.org/03n9p4x69', 'en', 1, 'https://ror.org/03n9p4x69 Institute for Orthopaedic Surgery & Sports Medicine'),
(58483, 'https://ror.org/02my3ed83', 'en', 1, 'https://ror.org/02my3ed83 Institute of Health Management Pachod'),
(58484, 'https://ror.org/0153n9c45', 'en', 1, 'https://ror.org/0153n9c45 Institute for Personal Excellence'),
(58485, 'https://ror.org/00ap4jg40', 'sl', 1, 'https://ror.org/00ap4jg40 Inštitut za preventivno medicino'),
(58486, 'https://ror.org/04xqmb911', 'en', 1, 'https://ror.org/04xqmb911 Institut für Mikrobiologie und Hygiene Institute of Medical Microbiology and Hygiene'),
(58487, 'https://ror.org/0150fxq66', 'en', 1, 'https://ror.org/0150fxq66 Institute of Virology, Vaccines and Sera “Torlak”'),
(58488, 'https://ror.org/03epm2r70', 'en', 1, 'https://ror.org/03epm2r70 ICARE Eye Hospital & Postgraduate Institute'),
(58489, 'https://ror.org/04zp4vp65', 'en', 1, 'https://ror.org/04zp4vp65 Institute of Mental Health Институт за ментално здравље'),
(58490, 'https://ror.org/00w2ggs58', 'en', 1, 'https://ror.org/00w2ggs58 Circle of Care'),
(58491, 'https://ror.org/012pts076', 'en', 1, 'https://ror.org/012pts076 Danish Institute for Quality and Accreditation in Healthcare Institut for Kvalitet og Akkreditering i Sundhedsvaesenet'),
(58492, 'https://ror.org/02qhn7905', 'en', 1, 'https://ror.org/02qhn7905 Idaho Urologic Institute'),
(58493, 'https://ror.org/01kc06n62', 'no_lang_code', 1, 'https://ror.org/01kc06n62 Vantage View (United States)'),
(58494, 'https://ror.org/01yt2c947', 'en', 1, 'https://ror.org/01yt2c947 The Institute for Scientific Information on Coffee'),
(58495, 'https://ror.org/0201xt342', 'en', 1, 'https://ror.org/0201xt342 Institute of Cosmetic and Laser Surgery'),
(58496, 'https://ror.org/04h0t7y80', 'pt', 1, 'https://ror.org/04h0t7y80 Instituto de Implantologia'),
(58497, 'https://ror.org/04ngt6a58', 'no_lang_code', 1, 'https://ror.org/04ngt6a58 Institute for Skin Research (Israel)'),
(58498, 'https://ror.org/04c9g9234', 'es', 1, 'https://ror.org/04c9g9234 Instituto de Investigación Biomédica de A Coruña'),
(58499, 'https://ror.org/027gkye86', 'fr', 1, 'https://ror.org/027gkye86 Geneva home care institution Institution Genevoise de Maintien à Domicile'),
(58500, 'https://ror.org/02bd5jp47', 'en', 1, 'https://ror.org/02bd5jp47 Institute for the Study of Urologic Diseases Ινστιτούτο Μελέτης Ουρολογικών Παθήσεων'),
(58501, 'https://ror.org/00gvwhq75', 'en', 1, 'https://ror.org/00gvwhq75 Institute for Transformative Technologies'),
(58502, 'https://ror.org/05a4m8k76', 'es', 1, 'https://ror.org/05a4m8k76 Hospital de Especialidades José Carrasco Arteaga'),
(58503, 'https://ror.org/03bpyhp77', 'en', 1, 'https://ror.org/03bpyhp77 Social Insurance Institute Ίδρυμα Κοινωνικών Ασφαλίσεων'),
(58504, 'https://ror.org/02k3jph89', 'pt', 1, 'https://ror.org/02k3jph89 Instituto de Ciências Farmacêuticas'),
(58505, 'https://ror.org/01tr7z120', 'en', 1, 'https://ror.org/01tr7z120 Institut National de la Santé Publique National Institute of Public Health'),
(58506, 'https://ror.org/00r9kn296', 'es', 1, 'https://ror.org/00r9kn296 Instituto Oncológico Dr. Rosell'),
(58507, 'https://ror.org/03eyfxj96', 'ro', 1, 'https://ror.org/03eyfxj96 Spitalul Clinic Judeţean de Urgenţe "Sf. Spiridon" Iaşi'),
(58508, 'https://ror.org/00hg1xm75', 'pt', 1, 'https://ror.org/00hg1xm75 ABCD Institute Instituto ABCD'),
(58509, 'https://ror.org/01p894e02', 'en', 1, 'https://ror.org/01p894e02 Institute of Health Visiting'),
(58510, 'https://ror.org/02jgzx216', 'en', 1, 'https://ror.org/02jgzx216 The Institute of Addiction Medicine'),
(58511, 'https://ror.org/03ckfsa43', 'en', 1, 'https://ror.org/03ckfsa43 Institute of Population, Health and Development'),
(58512, 'https://ror.org/007c43p06', 'pt', 1, 'https://ror.org/007c43p06 Brazilian Institute of Osteopathy Instituto Brasileiro de Osteopatia'),
(58513, 'https://ror.org/05vhw2a70', 'en', 1, 'https://ror.org/05vhw2a70 Institute of Kidney Lifescience Technologies'),
(58514, 'https://ror.org/05sa02996', 'en', 1, 'https://ror.org/05sa02996 The Institute of Aesthetic Surgery'),
(58515, 'https://ror.org/00s6s1191', 'en', 1, 'https://ror.org/00s6s1191 Institute for Progressive Medicine'),
(58516, 'https://ror.org/03fmtg610', 'de', 1, 'https://ror.org/03fmtg610 Institut für alternative und nachhaltige Ernährung'),
(58517, 'https://ror.org/03xmq3f10', 'en', 1, 'https://ror.org/03xmq3f10 Institute for Regenerative and Cellular Medicine'),
(58518, 'https://ror.org/02bttzs67', 'pt', 1, 'https://ror.org/02bttzs67 Instituto Brasiliense de Otorrinolaringologia'),
(58519, 'https://ror.org/046np1j53', 'sr', 1, 'https://ror.org/046np1j53 Institut za Reumatologiju'),
(58520, 'https://ror.org/053n8e896', 'pt', 1, 'https://ror.org/053n8e896 Instituto do Sono'),
(58521, 'https://ror.org/05c25gm39', 'es', 1, 'https://ror.org/05c25gm39 Cardiovascular Institute of Rosario Instituto Cardiovascular de Rosario'),
(58522, 'https://ror.org/0130pvq33', 'en', 1, 'https://ror.org/0130pvq33 Institute of Skin and Product Evaluation'),
(58523, 'https://ror.org/0160xcw76', 'pt', 1, 'https://ror.org/0160xcw76 Fundação Saúde'),
(58524, 'https://ror.org/02q13mm97', 'en', 1, 'https://ror.org/02q13mm97 Regenerative Medicine Institute'),
(58525, 'https://ror.org/040a4rx48', 'fr', 1, 'https://ror.org/040a4rx48 Institut Supérieur du Sport et de l’Éducation Physique de Sfax'),
(58526, 'https://ror.org/00t6f7r78', 'pt', 1, 'https://ror.org/00t6f7r78 Instituto Financeiro para o Desenvolvimento Regional'),
(58527, 'https://ror.org/01fyfmc75', 'es', 1, 'https://ror.org/01fyfmc75 Instituto Médico DAMIC'),
(58528, 'https://ror.org/014fcp763', 'pt', 1, 'https://ror.org/014fcp763 Instituto de Gastroenterologia de Goiânia'),
(58529, 'https://ror.org/053q96737', 'en', 1, 'https://ror.org/053q96737 International Renal Research Institute of Vicenza'),
(58530, 'https://ror.org/02ffj8167', 'es', 1, 'https://ror.org/02ffj8167 Instituto Hispalense de Pediatria'),
(58531, 'https://ror.org/00113vt82', 'en', 1, 'https://ror.org/00113vt82 International Spine and Pain Institute'),
(58532, 'https://ror.org/05s432v08', 'en', 1, 'https://ror.org/05s432v08 Institute of Vaccine and Medical Biologicals'),
(58533, 'https://ror.org/00k87m820', 'es', 1, 'https://ror.org/00k87m820 Instituto de Cancerología Las Américas'),
(58534, 'https://ror.org/00jzckp39', 'es', 1, 'https://ror.org/00jzckp39 Instituto Dr. Jaime Slullitel'),
(58535, 'https://ror.org/05xte2s27', 'de', 1, 'https://ror.org/05xte2s27 Institut für Versorgungsforschung in der Onkologie'),
(58536, 'https://ror.org/04bzrjn90', 'es', 1, 'https://ror.org/04bzrjn90 Instituto Jalisciense de Cancerología'),
(58537, 'https://ror.org/05jrvwk92', 'pt', 1, 'https://ror.org/05jrvwk92 Clínica e Instituto de Oftalmologia Ivo Corrêa Meyer'),
(58538, 'https://ror.org/04ftscg80', 'pt', 1, 'https://ror.org/04ftscg80 Instituto Paulista de Estudos e Pesquisas em Oftalmologia'),
(58539, 'https://ror.org/00xmdg797', 'en', 1, 'https://ror.org/00xmdg797 Canary Institute of Cancer Research Instituto Canario de Investigación del Cáncer'),
(58540, 'https://ror.org/00rq8s219', 'en', 1, 'https://ror.org/00rq8s219 Knight Dermatology Institute'),
(58541, 'https://ror.org/01hq5vx73', 'en', 1, 'https://ror.org/01hq5vx73 Irish Nutrition & Dietetic Institute'),
(58542, 'https://ror.org/059hprj06', 'es', 1, 'https://ror.org/059hprj06 Hospital Recoletas Campo Grande'),
(58543, 'https://ror.org/001czh282', 'en', 1, 'https://ror.org/001czh282 The Irvine Institute of Medicine & Cosmetic Surgery'),
(58544, 'https://ror.org/054azm735', 'es', 1, 'https://ror.org/054azm735 Instituto de Oncología de Rosario'),
(58545, 'https://ror.org/0130c0t65', 'no_lang_code', 1, 'https://ror.org/0130c0t65 Instituto Lala (Mexico)'),
(58546, 'https://ror.org/01wq36e29', 'en', 1, 'https://ror.org/01wq36e29 Kochan Institute for Healing Arts Research'),
(58547, 'https://ror.org/01tt4qx37', 'en', 1, 'https://ror.org/01tt4qx37 Kuwait Institute for Medical Specialization'),
(58548, 'https://ror.org/02t771148', 'en', 1, 'https://ror.org/02t771148 National Cancer Institute'),
(58549, 'https://ror.org/03x78vf16', 'es', 1, 'https://ror.org/03x78vf16 Instituto Médico Platense'),
(58550, 'https://ror.org/011yfra46', 'pt', 1, 'https://ror.org/011yfra46 Instituto Ivo Pitanguy'),
(58551, 'https://ror.org/000kkgk42', 'es', 1, 'https://ror.org/000kkgk42 Instituto de Oncología y Radiobiología'),
(58552, 'https://ror.org/00qa3s733', 'es', 1, 'https://ror.org/00qa3s733 Heart Institute Bucaramanga Instituto del Corazón de Bucaramanga'),
(58553, 'https://ror.org/01gycem28', 'pt', 1, 'https://ror.org/01gycem28 Dermatological Center Dona Libânia Instituto de Dermatologia Dona Libania'),
(58554, 'https://ror.org/02ebs9s22', 'es', 1, 'https://ror.org/02ebs9s22 Instituto Médico Tinerfeño'),
(58555, 'https://ror.org/02et0er40', 'en', 1, 'https://ror.org/02et0er40 Institut Jaques-Dalcroze'),
(58556, 'https://ror.org/02x8fdg77', 'en', 1, 'https://ror.org/02x8fdg77 Lake Erie Research Institute'),
(58557, 'https://ror.org/05dd2e480', 'en', 1, 'https://ror.org/05dd2e480 JEM Research Institute'),
(58558, 'https://ror.org/00d619908', 'es', 1, 'https://ror.org/00d619908 Instituto Mexicano de Oftalmología IAP'),
(58559, 'https://ror.org/00nvqm770', 'pt', 1, 'https://ror.org/00nvqm770 Instituto de Medicina Avançada'),
(58560, 'https://ror.org/05dd4dx68', 'es', 1, 'https://ror.org/05dd4dx68 Institute of Hematology and Immunology Instituto de Hematología e Inmunología'),
(58561, 'https://ror.org/01zhtdv64', 'es', 1, 'https://ror.org/01zhtdv64 Hospital General De Zona'),
(58562, 'https://ror.org/012pnb193', 'en', 1, 'https://ror.org/012pnb193 Instituto Milenio para la Investigación en Depresión y Personalidad Millennium Institute for Research in Depression and Personality'),
(58563, 'https://ror.org/006gcvq32', 'en', 1, 'https://ror.org/006gcvq32 The Milton H. Erickson Foundation'),
(58564, 'https://ror.org/04caxkq63', 'en', 1, 'https://ror.org/04caxkq63 LCC Medical Research Institute'),
(58565, 'https://ror.org/004znty77', 'en', 1, 'https://ror.org/004znty77 Joint Replacement Institute'),
(58566, 'https://ror.org/02cdcxq67', 'es', 1, 'https://ror.org/02cdcxq67 Instituto de Salud de Bucaramanga'),
(58567, 'https://ror.org/03n4vgh07', 'en', 1, 'https://ror.org/03n4vgh07 Jordan-Young Institute'),
(58568, 'https://ror.org/03z7zv664', 'es', 1, 'https://ror.org/03z7zv664 Instituto de Salud del Estado de México'),
(58569, 'https://ror.org/0575y1m09', 'es', 1, 'https://ror.org/0575y1m09 Instituto de Salud Musculoesquelética'),
(58570, 'https://ror.org/04wnsdv29', 'en', 1, 'https://ror.org/04wnsdv29 Mandya Institute of Medical Sciences ಮಂಡ್ಯ ಇನ್ಸ್ಟಿಟ್ಯೂಟ್ ಆಫ್ ಮೆಡಿಕಲ್ ಸೈನ್ಸ್'),
(58571, 'https://ror.org/00fq8t576', 'en', 1, 'https://ror.org/00fq8t576 Liberian Institute for Biomedical Research'),
(58572, 'https://ror.org/054bkqx30', 'pt', 1, 'https://ror.org/054bkqx30 Instituto de Terapia Integrada e Oriental'),
(58573, 'https://ror.org/03zqa2346', 'en', 1, 'https://ror.org/03zqa2346 Manitoba Institute for Patient Safety'),
(58574, 'https://ror.org/045ayna68', 'en', 1, 'https://ror.org/045ayna68 Justin Parker Neurological Institute'),
(58575, 'https://ror.org/02qthww36', 'en', 1, 'https://ror.org/02qthww36 Libin Cardiovascular Institute of Alberta'),
(58576, 'https://ror.org/05pnxjq94', 'no_lang_code', 1, 'https://ror.org/05pnxjq94 Kaali Institute Kaali Intezet'),
(58577, 'https://ror.org/014w2tt04', 'en', 1, 'https://ror.org/014w2tt04 Life Care Institute of Medical Sciences & Research'),
(58578, 'https://ror.org/01mze9517', 'it', 1, 'https://ror.org/01mze9517 Istituto di Ematologia di Bologna'),
(58579, 'https://ror.org/01sp6c076', 'en', 1, 'https://ror.org/01sp6c076 Kansas City Area Life Sciences Institute'),
(58580, 'https://ror.org/02s8t4443', 'en', 1, 'https://ror.org/02s8t4443 Kansas City Research Institute'),
(58581, 'https://ror.org/04gw1ym87', 'pt', 1, 'https://ror.org/04gw1ym87 Instituto do Cérebro de Brasília'),
(58582, 'https://ror.org/00xt7wr93', 'en', 1, 'https://ror.org/00xt7wr93 Michigan Institute of Urology'),
(58583, 'https://ror.org/02qq1pn56', 'es', 1, 'https://ror.org/02qq1pn56 Liga Nacional Contra el Cáncer'),
(58584, 'https://ror.org/02ze9rw51', 'en', 1, 'https://ror.org/02ze9rw51 KaRaMinds'),
(58585, 'https://ror.org/04xg96b46', 'pt', 1, 'https://ror.org/04xg96b46 Instituto de Oncologia do Paraná'),
(58586, 'https://ror.org/02sxbsz55', 'en', 1, 'https://ror.org/02sxbsz55 Castanera Institute of Ophthalmology Instituto de Oftalmología Castanera'),
(58587, 'https://ror.org/023grzj16', 'en', 1, 'https://ror.org/023grzj16 Karachi Institute of Heart Diseases'),
(58588, 'https://ror.org/03e5wjh27', 'en', 1, 'https://ror.org/03e5wjh27 Mayfield Brain & Spine'),
(58589, 'https://ror.org/04hc4vy44', 'en', 1, 'https://ror.org/04hc4vy44 Los Angeles Neurological Institute'),
(58590, 'https://ror.org/00y3gz942', 'eu', 1, 'https://ror.org/00y3gz942 Clinic IMQ Zorrotzaurre'),
(58591, 'https://ror.org/00hf4ew78', 'en', 1, 'https://ror.org/00hf4ew78 OpenBiome'),
(58592, 'https://ror.org/013cqn582', 'en', 1, 'https://ror.org/013cqn582 McGuire Institute'),
(58593, 'https://ror.org/03n556v93', 'es', 1, 'https://ror.org/03n556v93 Instituto para la Atención y Prevención de las Adicciones'),
(58594, 'https://ror.org/049snp549', 'es', 1, 'https://ror.org/049snp549 Instituto para Niños Ciegos y Sordos del Valle del Cauca'),
(58595, 'https://ror.org/022vsje77', 'pt', 1, 'https://ror.org/022vsje77 Hospital IPO Instituto Paranaense de Otorrinolaringologia'),
(58596, 'https://ror.org/04vkz4w22', 'en', 1, 'https://ror.org/04vkz4w22 Rowe Neurology Institute'),
(58597, 'https://ror.org/009xczs96', 'en', 1, 'https://ror.org/009xczs96 Midas Multispeciality Hospital'),
(58598, 'https://ror.org/000emaz53', 'en', 1, 'https://ror.org/000emaz53 Midwest Aortic & Vascular Institute'),
(58599, 'https://ror.org/03ddhm954', 'en', 1, 'https://ror.org/03ddhm954 Keogh Institute for Medical Research'),
(58600, 'https://ror.org/00108f448', 'en', 1, 'https://ror.org/00108f448 Midwest Institute for Minimally Invasive Therapies'),
(58601, 'https://ror.org/014qd2j86', 'pt', 1, 'https://ror.org/014qd2j86 Instituto Scribner'),
(58602, 'https://ror.org/05x5j6e28', 'en', 1, 'https://ror.org/05x5j6e28 The Hospital of Central Connecticut'),
(58603, 'https://ror.org/03ypq8732', 'es', 1, 'https://ror.org/03ypq8732 Instituto Sexológico Murciano'),
(58604, 'https://ror.org/03f5v0b74', 'en', 1, 'https://ror.org/03f5v0b74 Midwest Stone Institute'),
(58605, 'https://ror.org/005zj1y35', 'es', 1, 'https://ror.org/005zj1y35 Somdex Ginecologia Dr. Santiago Dexeus'),
(58606, 'https://ror.org/016978714', 'en', 1, 'https://ror.org/016978714 Lung Institute'),
(58607, 'https://ror.org/04rd2ca50', 'pt', 1, 'https://ror.org/04rd2ca50 Instituto Tropical de Medicina Reprodutiva'),
(58608, 'https://ror.org/00wa55978', 'en', 1, 'https://ror.org/00wa55978 Lymphatic Malformation Institute');
INSERT INTO `rors` VALUES
(58609, 'https://ror.org/00c7tye13', 'pt', 1, 'https://ror.org/00c7tye13 Medcin Dermatologia'),
(58610, 'https://ror.org/00b168w70', 'es', 1, 'https://ror.org/00b168w70 Clínica IVI Alicante'),
(58611, 'https://ror.org/03707xt68', 'en', 1, 'https://ror.org/03707xt68 Minimally Invasive Pain Institute'),
(58612, 'https://ror.org/046h4sg67', 'pt', 1, 'https://ror.org/046h4sg67 Instituto Vascular BH'),
(58613, 'https://ror.org/04zymc478', 'en', 1, 'https://ror.org/04zymc478 National Cancer Institute of Sri Lanka'),
(58614, 'https://ror.org/00a34ea95', 'ro', 1, 'https://ror.org/00a34ea95 Institutul Regional de Gastroenterologie Prof. Dr. Octavian Fodor'),
(58615, 'https://ror.org/03vkvz969', 'en', 1, 'https://ror.org/03vkvz969 National Institute of Lymphology'),
(58616, 'https://ror.org/02d893y24', 'en', 1, 'https://ror.org/02d893y24 Medical Mission Institute Missionsärztliches Institut Würzburg'),
(58617, 'https://ror.org/02qs4wf90', 'en', 1, 'https://ror.org/02qs4wf90 National Institute of Neurosciences & Hospital'),
(58618, 'https://ror.org/04sqj7m79', 'en', 1, 'https://ror.org/04sqj7m79 National Heart Foundation Hospital & Research Institute'),
(58619, 'https://ror.org/055273664', 'en', 1, 'https://ror.org/055273664 National Heart Institute'),
(58620, 'https://ror.org/01krara14', 'en', 1, 'https://ror.org/01krara14 Metropolitan Jewish Health System'),
(58621, 'https://ror.org/03vkvcw90', 'en', 1, 'https://ror.org/03vkvcw90 Montana Health Research Institute'),
(58622, 'https://ror.org/0405m4551', 'en', 1, 'https://ror.org/0405m4551 MedStar Heart & Vascular Institute'),
(58623, 'https://ror.org/04sc54484', 'en', 1, 'https://ror.org/04sc54484 Cổng thông tin điện tử Viện Kiểm Định Quốc Gia Vắc Xin Và Sinh National Institute for Control of Vaccines and Biologicals'),
(58624, 'https://ror.org/03kh2bz92', 'en', 1, 'https://ror.org/03kh2bz92 National Institute of Public Health ສະຖາບັນສາທາລະນະສຸກແຫ່ງຊາດ'),
(58625, 'https://ror.org/04vvsta47', 'en', 1, 'https://ror.org/04vvsta47 National Institute for Health Care Reform'),
(58626, 'https://ror.org/04atyxw20', 'en', 1, 'https://ror.org/04atyxw20 Morrison Vein Institute'),
(58627, 'https://ror.org/016d4cn96', 'en', 1, 'https://ror.org/016d4cn96 Memorial Healthcare System'),
(58628, 'https://ror.org/043m5qs92', 'en', 1, 'https://ror.org/043m5qs92 New Mexico Heart Institute'),
(58629, 'https://ror.org/01xsmp527', 'en', 1, 'https://ror.org/01xsmp527 New York Glaucoma Research Institute'),
(58630, 'https://ror.org/04xbtey77', 'en', 1, 'https://ror.org/04xbtey77 National Institute for Public Safety Health'),
(58631, 'https://ror.org/05psxec48', 'en', 1, 'https://ror.org/05psxec48 Hunan Institute of Mental Health 湖南省心理卫生研究所'),
(58632, 'https://ror.org/039mjhc39', 'no_lang_code', 1, 'https://ror.org/039mjhc39 Masih Daneshvari Hospital موسسه تحقیقات ملی سل و بیماریهای ریوی'),
(58633, 'https://ror.org/004fmny49', 'en', 1, 'https://ror.org/004fmny49 Mercy NeuroScience Institute'),
(58634, 'https://ror.org/05bvayz93', 'no_lang_code', 1, 'https://ror.org/05bvayz93 Muhimbili Orthopaedic Institute'),
(58635, 'https://ror.org/02201aj62', 'en', 1, 'https://ror.org/02201aj62 National Research Institute'),
(58636, 'https://ror.org/00t9eqw18', 'en', 1, 'https://ror.org/00t9eqw18 NZ Respiratory & Sleep Institute'),
(58637, 'https://ror.org/04dn07m96', 'es', 1, 'https://ror.org/04dn07m96 Instituto Nacional de las Mujeres National Institute of Women'),
(58638, 'https://ror.org/01kkh1557', 'en', 1, 'https://ror.org/01kkh1557 Miami Dermatology and Laser Institute'),
(58639, 'https://ror.org/054zhk838', 'en', 1, 'https://ror.org/054zhk838 National Scientific Center "M.D. Strazhesko Institute of Cardiology" Національний науковий центр ''М.Д. Інститут кардіології ім. Стражеска'),
(58640, 'https://ror.org/012m33j29', 'en', 1, 'https://ror.org/012m33j29 NKP Salve Institute of Medical Sciences and Lata Mangeshkar Hospital'),
(58641, 'https://ror.org/018akcp84', 'en', 1, 'https://ror.org/018akcp84 Multiple Sclerosis Research Institute'),
(58642, 'https://ror.org/04vr72n28', 'en', 1, 'https://ror.org/04vr72n28 Michigan Head and Spine Institute'),
(58643, 'https://ror.org/03zgxjc71', 'en', 1, 'https://ror.org/03zgxjc71 Ohio Gastroenterology and Liver Institute'),
(58644, 'https://ror.org/04x7hfy59', 'en', 1, 'https://ror.org/04x7hfy59 Naples Community Hospital Healthcare System'),
(58645, 'https://ror.org/04avexy41', 'en', 1, 'https://ror.org/04avexy41 North American Family Institute'),
(58646, 'https://ror.org/01zgn7x32', 'en', 1, 'https://ror.org/01zgn7x32 Ohio Sinus Institute'),
(58647, 'https://ror.org/03rp11m69', 'en', 1, 'https://ror.org/03rp11m69 Municipal Autonomous Healthcare Institution'),
(58648, 'https://ror.org/00hsk0n38', 'en', 1, 'https://ror.org/00hsk0n38 Sonoma West Medical Center'),
(58649, 'https://ror.org/002rp9w47', 'en', 1, 'https://ror.org/002rp9w47 National Institute of Emergency Medicine "Pirogov"'),
(58650, 'https://ror.org/017ymfm59', 'en', 1, 'https://ror.org/017ymfm59 Oklahoma Cancer Specialists and Research Institute'),
(58651, 'https://ror.org/05amk1r13', 'en', 1, 'https://ror.org/05amk1r13 Children''s City Clinical Hospital №11'),
(58652, 'https://ror.org/03z71e370', 'en', 1, 'https://ror.org/03z71e370 Municipal Budgetary Health care Institution "Clinical and Diagnostic Center" Health'),
(58653, 'https://ror.org/02smpkw21', 'en', 1, 'https://ror.org/02smpkw21 Northern Cancer Institute'),
(58654, 'https://ror.org/049kj1302', 'es', 1, 'https://ror.org/049kj1302 Instituto de Gastroenterología'),
(58655, 'https://ror.org/00h4bp382', 'en', 1, 'https://ror.org/00h4bp382 Oklahoma Heart Institute'),
(58656, 'https://ror.org/008vha608', 'no_lang_code', 1, 'https://ror.org/008vha608 Nestlé (South Africa)'),
(58657, 'https://ror.org/03s477z20', 'en', 1, 'https://ror.org/03s477z20 Penny George Institute for Health and Healing'),
(58658, 'https://ror.org/024r17c76', 'en', 1, 'https://ror.org/024r17c76 17-я городская детская клиническая поликлиника 17th City Children''s Clinical Polyclinic'),
(58659, 'https://ror.org/00qb56q84', 'en', 1, 'https://ror.org/00qb56q84 Hospital at Smolensk Station НУЗ Отделенческая больница на ст. Смоленск ОАО «РЖД»'),
(58660, 'https://ror.org/04q14s497', 'en', 1, 'https://ror.org/04q14s497 Peregrine Eye and Laser Institute'),
(58661, 'https://ror.org/0431xay97', 'no_lang_code', 1, 'https://ror.org/0431xay97 pfm medical (Germany)'),
(58662, 'https://ror.org/04v9dga39', 'en', 1, 'https://ror.org/04v9dga39 NOVO Cellular Medicine Institute'),
(58663, 'https://ror.org/03r2ppv49', 'en', 1, 'https://ror.org/03r2ppv49 The state budgetary institution of public health of the Perm Krai "City Children''s Clinical Polyclinic No. 5"'),
(58664, 'https://ror.org/00yjka566', 'en', 1, 'https://ror.org/00yjka566 Neurogen Brain & Spine Institute'),
(58665, 'https://ror.org/032q9qk24', 'no_lang_code', 1, 'https://ror.org/032q9qk24 Novum Pharmaceutical Research Services (United States)'),
(58666, 'https://ror.org/0346nyf55', 'en', 1, 'https://ror.org/0346nyf55 Oncology Institute of Hope and Innovation'),
(58667, 'https://ror.org/01zwbyz86', 'en', 1, 'https://ror.org/01zwbyz86 Pharmacology Research Institute'),
(58668, 'https://ror.org/02ea83075', 'en', 1, 'https://ror.org/02ea83075 Neurological Research Institute'),
(58669, 'https://ror.org/02fp4k302', 'en', 1, 'https://ror.org/02fp4k302 City Hospital № 1 named after. ON. Semashko'),
(58670, 'https://ror.org/01bn2tj09', 'en', 1, 'https://ror.org/01bn2tj09 Palm Beach Neurology'),
(58671, 'https://ror.org/05am1q986', 'en', 1, 'https://ror.org/05am1q986 Pharmalog (Germany)'),
(58672, 'https://ror.org/02mtbpn10', 'en', 1, 'https://ror.org/02mtbpn10 NeuroModulation Technique'),
(58673, 'https://ror.org/05tfxp741', 'en', 1, 'https://ror.org/05tfxp741 Ocean Road Cancer Institute'),
(58674, 'https://ror.org/048d4kk91', 'no_lang_code', 1, 'https://ror.org/048d4kk91 National Bioproducts Institute (South Africa)'),
(58675, 'https://ror.org/03jxkz251', 'it', 1, 'https://ror.org/03jxkz251 Istituto Tumori Bari'),
(58676, 'https://ror.org/049gtbp49', 'en', 1, 'https://ror.org/049gtbp49 ProCare Odessa Heart Institute'),
(58677, 'https://ror.org/05ng5j404', 'en', 1, 'https://ror.org/05ng5j404 Saratov City Clinical Hospital № 2 named. IN AND. Razumovsky'),
(58678, 'https://ror.org/050p5yf06', 'en', 1, 'https://ror.org/050p5yf06 Open Medicine Institute'),
(58679, 'https://ror.org/049at5m16', 'en', 1, 'https://ror.org/049at5m16 Cypress Pointe Pain Management'),
(58680, 'https://ror.org/0307hqx04', 'en', 1, 'https://ror.org/0307hqx04 Vinnytsya Regional Psychoneurological Hospital named after Academician O.I. Yushchenko'),
(58681, 'https://ror.org/042j4et55', 'en', 1, 'https://ror.org/042j4et55 Philippines Tuberculosis Society'),
(58682, 'https://ror.org/01bs4z154', 'en', 1, 'https://ror.org/01bs4z154 NeuroSpine Institute'),
(58683, 'https://ror.org/05pnggp67', 'en', 1, 'https://ror.org/05pnggp67 Oregon Urology Institute'),
(58684, 'https://ror.org/05qz4m566', 'en', 1, 'https://ror.org/05qz4m566 Regional Clinical Hospital named after II Mechnikov'),
(58685, 'https://ror.org/02pzmtt36', 'en', 1, 'https://ror.org/02pzmtt36 Physician’s Hair Institute'),
(58686, 'https://ror.org/013cjx333', 'en', 1, 'https://ror.org/013cjx333 Physicians Laser and Dermatology Institute'),
(58687, 'https://ror.org/030ss4c03', 'en', 1, 'https://ror.org/030ss4c03 Bharath Hospital & Institute of Oncology'),
(58688, 'https://ror.org/04x5fjw90', 'en', 1, 'https://ror.org/04x5fjw90 OrthoCarolina Research Institute'),
(58689, 'https://ror.org/02xtw2e05', 'en', 1, 'https://ror.org/02xtw2e05 Plano Cancer Institute'),
(58690, 'https://ror.org/01b1d2r15', 'en', 1, 'https://ror.org/01b1d2r15 Plastic Surgery Institute of San Francisco'),
(58691, 'https://ror.org/018w1ab26', 'en', 1, 'https://ror.org/018w1ab26 Instituto Salgado de Saúde Integral Salgado Institute of Integral Health'),
(58692, 'https://ror.org/03r50rc39', 'en', 1, 'https://ror.org/03r50rc39 Orthopaedic Institute for Children'),
(58693, 'https://ror.org/04901sx27', 'en', 1, 'https://ror.org/04901sx27 Port Macquarie Base Hospital'),
(58694, 'https://ror.org/02yvvjz71', 'en', 1, 'https://ror.org/02yvvjz71 Orthopaedic Institute of Western Kentucky'),
(58695, 'https://ror.org/04c0eje39', 'en', 1, 'https://ror.org/04c0eje39 Regional Public Health Care Institution "City Hospital No. 5, Barnaul" Краевое государственное бюджетное учреждение здравоохранения «Городская больница №5, г. Барнаул»'),
(58696, 'https://ror.org/01r157087', 'en', 1, 'https://ror.org/01r157087 Orthopaedic Specialty Institute'),
(58697, 'https://ror.org/05kv4r135', 'en', 1, 'https://ror.org/05kv4r135 Regional State Budget Health Care Institution "Regional Clinical Hospital" Краевое государственное бюджетное учреждение здравоохранения «Краевая клиническая больница»'),
(58698, 'https://ror.org/04dv35865', 'en', 1, 'https://ror.org/04dv35865 San Antonio Endovascular & Heart Institute'),
(58699, 'https://ror.org/040gwjm94', 'no_lang_code', 1, 'https://ror.org/040gwjm94 MusclePharm Sports Science Institute (United States)'),
(58700, 'https://ror.org/00p75zw90', 'en', 1, 'https://ror.org/00p75zw90 Regional State Budgetary Healthcare Institution "Smolensk Regional Clinical Hospital" Областное государственное бюджетное учреждение здравоохранения «Смоленская областная клиническая больница»'),
(58701, 'https://ror.org/05js1ap63', 'en', 1, 'https://ror.org/05js1ap63 Prairie Vascular Institute'),
(58702, 'https://ror.org/04n43dm09', 'en', 1, 'https://ror.org/04n43dm09 Colorado Sleep Institute'),
(58703, 'https://ror.org/003y1qj16', 'en', 1, 'https://ror.org/003y1qj16 Sanyu Africa Research Institute'),
(58704, 'https://ror.org/0101p7966', 'en', 1, 'https://ror.org/0101p7966 Orthopedic Sports Medicine & Spine Care Institute'),
(58705, 'https://ror.org/045jrd330', 'en', 1, 'https://ror.org/045jrd330 Dallas Nephrology Associates'),
(58706, 'https://ror.org/045d8mm77', 'en', 1, 'https://ror.org/045d8mm77 Precision Research Institute'),
(58707, 'https://ror.org/03kc8nj63', 'de', 1, 'https://ror.org/03kc8nj63 Medizinisches Wirtschaftsinstitut'),
(58708, 'https://ror.org/05ccbwp98', 'en', 1, 'https://ror.org/05ccbwp98 Premier Clinical Research Institute'),
(58709, 'https://ror.org/044xe3t49', 'lt', 1, 'https://ror.org/044xe3t49 Respublikinės Kauno Ligoninės'),
(58710, 'https://ror.org/01r8yv121', 'en', 1, 'https://ror.org/01r8yv121 Research & Development Institute'),
(58711, 'https://ror.org/032y5sx52', 'en', 1, 'https://ror.org/032y5sx52 HealthONE'),
(58712, 'https://ror.org/023swa857', 'en', 1, 'https://ror.org/023swa857 Sarasota Retina Institute'),
(58713, 'https://ror.org/00qtj8f75', 'en', 1, 'https://ror.org/00qtj8f75 Princeton Medical Institute'),
(58714, 'https://ror.org/04qzmty18', 'en', 1, 'https://ror.org/04qzmty18 Saroj Gupta Cancer Centre & Research Institute'),
(58715, 'https://ror.org/04ssr4v64', 'en', 1, 'https://ror.org/04ssr4v64 Research Institute for Child Psychology and Pathopsychology Vyskumny Ustav Detskej Psychologie a Patopsychologie'),
(58716, 'https://ror.org/011z6ge83', 'no_lang_code', 1, 'https://ror.org/011z6ge83 Proderm (Germany)'),
(58717, 'https://ror.org/04xkx8s32', 'en', 1, 'https://ror.org/04xkx8s32 Nasser Institute hospital'),
(58718, 'https://ror.org/04fx78583', 'en', 1, 'https://ror.org/04fx78583 CalNeuro Research Group'),
(58719, 'https://ror.org/05w3mbc13', 'no_lang_code', 1, 'https://ror.org/05w3mbc13 Shenzhen Hanke Bioengineering (China)'),
(58720, 'https://ror.org/04fap3q60', 'en', 1, 'https://ror.org/04fap3q60 Pacific Rim Electrophysiology Research Institute'),
(58721, 'https://ror.org/028gsb865', 'en', 1, 'https://ror.org/028gsb865 Research Institute of South Florida'),
(58722, 'https://ror.org/05avj5s69', 'en', 1, 'https://ror.org/05avj5s69 Shenzhen Genoimmune Medical Institute'),
(58723, 'https://ror.org/03rzd8715', 'en', 1, 'https://ror.org/03rzd8715 Michigan Healthcare Professionals'),
(58724, 'https://ror.org/00878jj67', 'en', 1, 'https://ror.org/00878jj67 Pain Management Institute'),
(58725, 'https://ror.org/01ntyhv86', 'en', 1, 'https://ror.org/01ntyhv86 Prostate Institute of America'),
(58726, 'https://ror.org/00bpfyj89', 'en', 1, 'https://ror.org/00bpfyj89 Shenzhen Inno Translational Medicine Institute'),
(58727, 'https://ror.org/00gdw7f12', 'en', 1, 'https://ror.org/00gdw7f12 Royal Dutch Pharmacists Association'),
(58728, 'https://ror.org/0168gzc62', 'en', 1, 'https://ror.org/0168gzc62 Public institution Respublikinė Šiauliai Hospital'),
(58729, 'https://ror.org/05x6pvv95', 'en', 1, 'https://ror.org/05x6pvv95 Retina Institute'),
(58730, 'https://ror.org/00gteb412', 'en', 1, 'https://ror.org/00gteb412 Retina Macula Institute'),
(58731, 'https://ror.org/0260mkc43', 'en', 1, 'https://ror.org/0260mkc43 Retina Research Institute of Texas'),
(58732, 'https://ror.org/01pk0nx86', 'en', 1, 'https://ror.org/01pk0nx86 Retina Specialty Institute'),
(58733, 'https://ror.org/04pnmxh23', 'en', 1, 'https://ror.org/04pnmxh23 Public Health Research Institute Of India'),
(58734, 'https://ror.org/021ayzg23', 'no_lang_code', 1, 'https://ror.org/021ayzg23 Institut Mérieux (United States)'),
(58735, 'https://ror.org/03k6pst70', 'en', 1, 'https://ror.org/03k6pst70 Kharkiv Regional Clinical Psychiatric Hospital No 3 Харківська обласна клінічна психіатрична лікарня'),
(58736, 'https://ror.org/008pyjt05', 'en', 1, 'https://ror.org/008pyjt05 Institut für Pathologie Celle Institute of Pathology Celle'),
(58737, 'https://ror.org/00gnc0t86', 'en', 1, 'https://ror.org/00gnc0t86 Sleep to Live Institute'),
(58738, 'https://ror.org/00fb1n669', 'en', 1, 'https://ror.org/00fb1n669 Rhode Island Mood and Memory Research Institute'),
(58739, 'https://ror.org/001av7v52', 'en', 1, 'https://ror.org/001av7v52 Dr. h.c. Robert Mathys Stiftung für Forschung RMS Foundation'),
(58740, 'https://ror.org/00dmsga81', 'en', 1, 'https://ror.org/00dmsga81 Palomar Health'),
(58741, 'https://ror.org/01m9bke74', 'en', 1, 'https://ror.org/01m9bke74 State Clinical Hospital "Clinical Oncology Center No. 1'),
(58742, 'https://ror.org/03gv2tj61', 'no_lang_code', 1, 'https://ror.org/03gv2tj61 Scottsdale Research Institute (United States)'),
(58743, 'https://ror.org/03pnhfc19', 'no_lang_code', 1, 'https://ror.org/03pnhfc19 Dermatrendz'),
(58744, 'https://ror.org/04cmvex31', 'ru', 1, 'https://ror.org/04cmvex31 Arkhangel''skiy Klinicheskiy Onkologicheskiy Dispanser Архангельский клинический онкологический диспансер'),
(58745, 'https://ror.org/05prbcv50', 'en', 1, 'https://ror.org/05prbcv50 Ruane Medical'),
(58746, 'https://ror.org/02trxcb02', 'en', 1, 'https://ror.org/02trxcb02 Pyatigorsk Oncology Center Пятигорский онкологический диспансер'),
(58747, 'https://ror.org/02207mt46', 'en', 1, 'https://ror.org/02207mt46 Pelvic & Sexual Health Institute'),
(58748, 'https://ror.org/01jykf083', 'en', 1, 'https://ror.org/01jykf083 The Seattle Institute for Cardiac Research'),
(58749, 'https://ror.org/005hc0b16', 'en', 1, 'https://ror.org/005hc0b16 Stavropol Regional Clinical Oncology Center Ставропольский областной клинический онкологический диспансер'),
(58750, 'https://ror.org/02wx2j769', 'en', 1, 'https://ror.org/02wx2j769 South Coast Dermatology Institute'),
(58751, 'https://ror.org/00hkez230', 'en', 1, 'https://ror.org/00hkez230 Leningrad Regional Cancer Center Ленинградский областной онкологический диспансер'),
(58752, 'https://ror.org/04evbhe06', 'en', 1, 'https://ror.org/04evbhe06 Arkhangelsk Children''s Clinical Hospital named P.G.Vyzhletsova Архангельская областная детская клиническая больница им. П.Г. Выжцовой'),
(58753, 'https://ror.org/04jzqr098', 'en', 1, 'https://ror.org/04jzqr098 Texas Institute for Hip & Knee Surgery'),
(58754, 'https://ror.org/0012pe324', 'en', 1, 'https://ror.org/0012pe324 Maharaj Institute of Immune Regenerative Medicine'),
(58755, 'https://ror.org/00wz6jq51', 'en', 1, 'https://ror.org/00wz6jq51 Sentara CarePlex Hospital'),
(58756, 'https://ror.org/024s37521', 'en', 1, 'https://ror.org/024s37521 Scientific Research Institute of First Aid to them. N.V. Sklifosovsky Научно-исследовательский институт чрезвычайных ситуаций. Н. В. Склифосовский'),
(58757, 'https://ror.org/02rgedp64', 'en', 1, 'https://ror.org/02rgedp64 Southeast Renal Research Institute'),
(58758, 'https://ror.org/04ffwr418', 'en', 1, 'https://ror.org/04ffwr418 City Clinical Hospital No15 named. O. M. Filatova Городская клиническая больница №15 n.a O.M. Филатов'),
(58759, 'https://ror.org/02rpznn70', 'en', 1, 'https://ror.org/02rpznn70 Sinus & Respiratory Disease Center'),
(58760, 'https://ror.org/0075ba798', 'en', 1, 'https://ror.org/0075ba798 Southeastern Spine Center & Research Institute'),
(58761, 'https://ror.org/055j6t743', 'en', 1, 'https://ror.org/055j6t743 Texas Institute of Dermatology Laser and Cosmetic Surgery'),
(58762, 'https://ror.org/03yk6x532', 'en', 1, 'https://ror.org/03yk6x532 Texas Liver Institute'),
(58763, 'https://ror.org/01wsec828', 'en', 1, 'https://ror.org/01wsec828 Sentara Heart Hospital'),
(58764, 'https://ror.org/05q50g776', 'en', 1, 'https://ror.org/05q50g776 Republican Clinical Hospital named after G.G. Kuvatova Республиканская клиническая больница №. G.G. Куватов'),
(58765, 'https://ror.org/032wmfz20', 'no_lang_code', 1, 'https://ror.org/032wmfz20 Tower Clinical Trials (United States)'),
(58766, 'https://ror.org/0194n5932', 'no_lang_code', 1, 'https://ror.org/0194n5932 Thanyarak Institute วัติสถาบันธัญญารักษ์'),
(58767, 'https://ror.org/041avvw93', 'en', 1, 'https://ror.org/041avvw93 Riverside Transplantation Institute'),
(58768, 'https://ror.org/05a9rbd10', 'en', 1, 'https://ror.org/05a9rbd10 Sage Bariatric Institute'),
(58769, 'https://ror.org/02dqwa472', 'en', 1, 'https://ror.org/02dqwa472 SerenaGroup Research Institute'),
(58770, 'https://ror.org/054p08670', 'en', 1, 'https://ror.org/054p08670 Regional Children''s Hospital No1'),
(58771, 'https://ror.org/009w6v212', 'en', 1, 'https://ror.org/009w6v212 Nizhny Novgorod Regional Clinical Hospital named after Semashko Нижегородская областная клиническая больница им. Н.А.Семашко'),
(58772, 'https://ror.org/02t4fs169', 'en', 1, 'https://ror.org/02t4fs169 Southwest Kidney Institute'),
(58773, 'https://ror.org/05hgkmq81', 'en', 1, 'https://ror.org/05hgkmq81 Servy Institute for Reproductive Endocrinology'),
(58774, 'https://ror.org/02ez87631', 'en', 1, 'https://ror.org/02ez87631 Samara City Children''s Clinical Hospital No. 1 named after NN Ivanova Самарская городская детская клиническая больница №1 им. Н.Н. Иванов'),
(58775, 'https://ror.org/021as9859', 'en', 1, 'https://ror.org/021as9859 City Children''s Hospital No. 22 Детская больница №22'),
(58776, 'https://ror.org/0425kp210', 'en', 1, 'https://ror.org/0425kp210 San Diego Spine Institute'),
(58777, 'https://ror.org/03yef6m79', 'en', 1, 'https://ror.org/03yef6m79 Oncological Dispensary No. 2 Онкологический диспансер № 2'),
(58778, 'https://ror.org/04gbkes05', 'en', 1, 'https://ror.org/04gbkes05 National Retina Institute'),
(58779, 'https://ror.org/02w9pcv48', 'en', 1, 'https://ror.org/02w9pcv48 Orenburg Regional Clinical Oncology Center Оренбургский областной клинический онкологический диспансер'),
(58780, 'https://ror.org/04g6dp887', 'en', 1, 'https://ror.org/04g6dp887 NeuroCognitive Institute'),
(58781, 'https://ror.org/021x2ed48', 'en', 1, 'https://ror.org/021x2ed48 Sports Concussion Institute'),
(58782, 'https://ror.org/000g2fe29', 'en', 1, 'https://ror.org/000g2fe29 Perm Regional Oncology Center Пермский областной онкологический диспансер'),
(58783, 'https://ror.org/05ty23t08', 'en', 1, 'https://ror.org/05ty23t08 The Neurological Institute'),
(58784, 'https://ror.org/02zv70s92', 'en', 1, 'https://ror.org/02zv70s92 Tyumen Regional Oncological Dispensary Тюменский областной онкологический диспансер'),
(58785, 'https://ror.org/0169ka518', 'en', 1, 'https://ror.org/0169ka518 Shandong Provincial Institute of Dermatology and Venereology 山东省皮肤性病研究所'),
(58786, 'https://ror.org/00zsz8144', 'en', 1, 'https://ror.org/00zsz8144 Ulyanovsk Regional Clinical Hospital Ульяновская областная клиническая больница'),
(58787, 'https://ror.org/03crycs56', 'en', 1, 'https://ror.org/03crycs56 Regional Center for the Prevention and Control of AIDS Volgograd Волгоградский областной центр профилактики и борьбы со СПИДом'),
(58788, 'https://ror.org/056v2vw30', 'en', 1, 'https://ror.org/056v2vw30 The Orthopaedic Institute'),
(58789, 'https://ror.org/05kcpxy10', 'en', 1, 'https://ror.org/05kcpxy10 Tula Regional Clinical Hospital Тульская областная клиническая больница'),
(58790, 'https://ror.org/044ef5h76', 'en', 1, 'https://ror.org/044ef5h76 Shanghai Cell Therapy Research Institute'),
(58791, 'https://ror.org/02hapf869', 'en', 1, 'https://ror.org/02hapf869 Institute of Early Childhood Research Staatsinstitut für Frühpädagogik'),
(58792, 'https://ror.org/01ncxv941', 'en', 1, 'https://ror.org/01ncxv941 St. Petersburg State Medical Academy "City Hospital No. 26"'),
(58793, 'https://ror.org/04hprbe92', 'en', 1, 'https://ror.org/04hprbe92 The Pelvic Floor Institute'),
(58794, 'https://ror.org/00wdh3g19', 'en', 1, 'https://ror.org/00wdh3g19 St. Francis Sleep, Allergy, and Lung Institute'),
(58795, 'https://ror.org/0530nw968', 'en', 1, 'https://ror.org/0530nw968 The Prompt Institute'),
(58796, 'https://ror.org/04m0x6q45', 'en', 1, 'https://ror.org/04m0x6q45 Republican Scientific and Practical Centre for Traumatology and Orthopedics'),
(58797, 'https://ror.org/00ctszj26', 'en', 1, 'https://ror.org/00ctszj26 Cleveland Shoulder Institute'),
(58798, 'https://ror.org/02rgbry52', 'en', 1, 'https://ror.org/02rgbry52 ShangHai JiAi Genetics & IVF Institute 上海吉爱遗传与体外受精研究所'),
(58799, 'https://ror.org/009914361', 'en', 1, 'https://ror.org/009914361 Zaporizhzhia Medical Academy of Post-Graduate Education Ministry of Health of Ukraine Запорізька медична академія післядипломної освіти Міністерства охорони здоров’я України'),
(58800, 'https://ror.org/04akv9b62', 'en', 1, 'https://ror.org/04akv9b62 Shanghai Pudong Institute of Education Development'),
(58801, 'https://ror.org/05qsrmb73', 'en', 1, 'https://ror.org/05qsrmb73 Shanxi Institute of Endemic Diseases'),
(58802, 'https://ror.org/05x0bqw91', 'en', 1, 'https://ror.org/05x0bqw91 Infectious Diseases and the Research Institute'),
(58803, 'https://ror.org/02w7z1d65', 'en', 1, 'https://ror.org/02w7z1d65 Stem Cell Institute'),
(58804, 'https://ror.org/05tgjcd06', 'en', 1, 'https://ror.org/05tgjcd06 National Institute of Brain and Rehabilitation Sciences'),
(58805, 'https://ror.org/01bxb2y87', 'en', 1, 'https://ror.org/01bxb2y87 The Core Institute'),
(58806, 'https://ror.org/038k26971', 'en', 1, 'https://ror.org/038k26971 The Roxbury Institute'),
(58807, 'https://ror.org/05tg5qm65', 'en', 1, 'https://ror.org/05tg5qm65 Stiles Eyecare Excellence'),
(58808, 'https://ror.org/01mxmb797', 'en', 1, 'https://ror.org/01mxmb797 Stockholm Environment Institute'),
(58809, 'https://ror.org/01xz2wh36', 'en', 1, 'https://ror.org/01xz2wh36 The Eye Care Institute'),
(58810, 'https://ror.org/03r6h3t89', 'en', 1, 'https://ror.org/03r6h3t89 St. Petersburg State Medical Academy "City Polyclinic №44" Санкт-Петербургское государственное бюджетное учреждение здравоохранения "Городская поликлиника №44"'),
(58811, 'https://ror.org/028pd3m58', 'en', 1, 'https://ror.org/028pd3m58 Female Pelvic Medicine Institute of Virginia'),
(58812, 'https://ror.org/010rnsd21', 'en', 1, 'https://ror.org/010rnsd21 Consultative and Diagnostic Center'),
(58813, 'https://ror.org/03qacnx75', 'en', 1, 'https://ror.org/03qacnx75 Kursk Regional Clinical Oncology Center курский областной онкологический диспансер'),
(58814, 'https://ror.org/05wd4ca48', 'en', 1, 'https://ror.org/05wd4ca48 Nikiforov Russian Center of Emergency and Radiation Medicine Никифоров Российский центр экстренной и радиационной медицины'),
(58815, 'https://ror.org/0426yhw42', 'en', 1, 'https://ror.org/0426yhw42 St. Petersburg State Health Care Institution "Elizabethan Hospital" Санкт-Петербургское государственное бюджетное учреждение здравоохранения Елизаветинская больница'),
(58816, 'https://ror.org/05geszq97', 'en', 1, 'https://ror.org/05geszq97 The Speech and Stuttering Institute'),
(58817, 'https://ror.org/00ddc4178', 'en', 1, 'https://ror.org/00ddc4178 Voronezh Regional Clinical Oncology Center Воронежский областной клинический онкологический диспансер'),
(58818, 'https://ror.org/02dg40g44', 'en', 1, 'https://ror.org/02dg40g44 St. Petersburg State Budgetary Healthcare Institution "City Polyclinic No. 106"'),
(58819, 'https://ror.org/03bx4c072', 'en', 1, 'https://ror.org/03bx4c072 The Spine Institute'),
(58820, 'https://ror.org/025w0ga63', 'en', 1, 'https://ror.org/025w0ga63 Spine Institute on the Emerald Coast'),
(58821, 'https://ror.org/02yy16t83', 'en', 1, 'https://ror.org/02yy16t83 St. Petersburg State Health Care Foundation "Mariinsky City Hospital"'),
(58822, 'https://ror.org/059vcy092', 'en', 1, 'https://ror.org/059vcy092 State Autonomous Institution of Health Interregional Clinical Diagnostic Center Политика конфиденциальности персональных данных сайта'),
(58823, 'https://ror.org/03jz6qp63', 'en', 1, 'https://ror.org/03jz6qp63 Murmansk Regional Oncology Center Мурманский областной онкологический диспансер'),
(58824, 'https://ror.org/018332h72', 'en', 1, 'https://ror.org/018332h72 Samara City N.I. Pirogov Clinical Hospital №1 Самара Н.И. Пироговская клиническая больница №1'),
(58825, 'https://ror.org/00mjzz278', 'en', 1, 'https://ror.org/00mjzz278 Unimed Medical Institute'),
(58826, 'https://ror.org/00vc32940', 'en', 1, 'https://ror.org/00vc32940 Children''s City Policlinic No. 45'),
(58827, 'https://ror.org/03grgqr35', 'en', 1, 'https://ror.org/03grgqr35 Moscow City Clinical Hospital after V.M. Buyanov Городская клиническая больница им. В. М. Буянова'),
(58828, 'https://ror.org/033knrw51', 'en', 1, 'https://ror.org/033knrw51 Republican Center for the Prevention and Control of AIDS and Infectious Diseases'),
(58829, 'https://ror.org/04y9nj467', 'en', 1, 'https://ror.org/04y9nj467 Healing Institute'),
(58830, 'https://ror.org/00hrr4a84', 'en', 1, 'https://ror.org/00hrr4a84 Regional Clinical Hospital No 4 ГБУЗ Областная клиническая больница №4'),
(58831, 'https://ror.org/00pdz5e98', 'en', 1, 'https://ror.org/00pdz5e98 Strimling Dermatology, Laser & Vein Institute'),
(58832, 'https://ror.org/05fch8r16', 'en', 1, 'https://ror.org/05fch8r16 Specialized Clinical Psychiatric Hospital No. 1 Специализированная клиническая психиатрическая больница № 1'),
(58833, 'https://ror.org/02jwr3j75', 'en', 1, 'https://ror.org/02jwr3j75 City Clinical Oncology Center Городской клинический онкологический диспансер'),
(58834, 'https://ror.org/03bjjd024', 'en', 1, 'https://ror.org/03bjjd024 Woolfson Eye Institute'),
(58835, 'https://ror.org/0010r2q05', 'en', 1, 'https://ror.org/0010r2q05 United Medical Research Institute'),
(58836, 'https://ror.org/02jhtag43', 'en', 1, 'https://ror.org/02jhtag43 Sun Research Institute'),
(58837, 'https://ror.org/03vgzp053', 'en', 1, 'https://ror.org/03vgzp053 Regional Children''s Clinical Hospital No. 1 Государственное бюджетное учреждение здравоохранения Свердловской области Областная детская клиническая больница №1'),
(58838, 'https://ror.org/00dtsng04', 'en', 1, 'https://ror.org/00dtsng04 Republican Clinical Hospital of the Ministry of Health of the Republic of Tatarstan'),
(58839, 'https://ror.org/04z0cdx68', 'en', 1, 'https://ror.org/04z0cdx68 SurgOne Foregut Institute'),
(58840, 'https://ror.org/03swmst19', 'en', 1, 'https://ror.org/03swmst19 State Autonomous Healthcare Institution of the Novosibirsk Region "City Clinical Polyclinic No. 1"'),
(58841, 'https://ror.org/03jbnw407', 'fr', 1, 'https://ror.org/03jbnw407 Brides-les-Bains Thermes de Brides-les-Bains'),
(58842, 'https://ror.org/030s5fz93', 'en', 1, 'https://ror.org/030s5fz93 Thomas John Vision Institute'),
(58843, 'https://ror.org/04n4wd093', 'en', 1, 'https://ror.org/04n4wd093 Institute for Respiratory Health'),
(58844, 'https://ror.org/05kk2ma90', 'en', 1, 'https://ror.org/05kk2ma90 TobaccoFree Research Institute'),
(58845, 'https://ror.org/040hgf597', 'en', 1, 'https://ror.org/040hgf597 Institute for Liver Health'),
(58846, 'https://ror.org/0350na611', 'en', 1, 'https://ror.org/0350na611 Institute for Patient- and Family-Centered Care'),
(58847, 'https://ror.org/019wc4e54', 'en', 1, 'https://ror.org/019wc4e54 Tallahassee Cancer Institute'),
(58848, 'https://ror.org/01nsbm866', 'en', 1, 'https://ror.org/01nsbm866 Moscow Research and Clinical Center for Neuropsychiatry'),
(58849, 'https://ror.org/02j0qcn83', 'en', 1, 'https://ror.org/02j0qcn83 Institute for the Blind and Partially Sighted Instituttet for Blinde og Svagsynede'),
(58850, 'https://ror.org/03gqc7y13', 'en', 1, 'https://ror.org/03gqc7y13 Institute for Exercise and Environmental Medicine'),
(58851, 'https://ror.org/00ermfs73', 'en', 1, 'https://ror.org/00ermfs73 Budgetary Health Care Institution of the Omsk Region "Clinical Oncology Center"'),
(58852, 'https://ror.org/04r5abx10', 'en', 1, 'https://ror.org/04r5abx10 Territory Neurology & Research Institute'),
(58853, 'https://ror.org/02qhvwx61', 'no_lang_code', 1, 'https://ror.org/02qhvwx61 Guz "Tul''skiy Oblastnoy Onkologicheskiy Dispanser'),
(58854, 'https://ror.org/00v9j9683', 'en', 1, 'https://ror.org/00v9j9683 Institute for Diabetes Discovery'),
(58855, 'https://ror.org/03gj9g134', 'en', 1, 'https://ror.org/03gj9g134 Translational Research Institute for Metabolism and Diabetes'),
(58856, 'https://ror.org/041e7q719', 'en', 1, 'https://ror.org/041e7q719 Institute of Molecular and Translational Medicine Ústav molekulární a translační medicíny'),
(58857, 'https://ror.org/03zrdj512', 'en', 1, 'https://ror.org/03zrdj512 GOUZ YaO "Solovyov NV Clinical Emergency Hospital"'),
(58858, 'https://ror.org/01m92rg76', 'ro', 1, 'https://ror.org/01m92rg76 Institutul Oncologic din Republica Moldova Oncological Institute of the Republic of Moldova'),
(58859, 'https://ror.org/055jf3p69', 'de', 1, 'https://ror.org/055jf3p69 Wissenschaftliches Institut der AOK'),
(58860, 'https://ror.org/04j5wtv36', 'en', 1, 'https://ror.org/04j5wtv36 Centre commun de recherche Directorate-General Joint Research Centre Gemeinsame Forschungsstelle'),
(58861, 'https://ror.org/00p7q3334', 'en', 1, 'https://ror.org/00p7q3334 Women''s Pelvic Health Institute'),
(58862, 'https://ror.org/02xq21g71', 'en', 1, 'https://ror.org/02xq21g71 International Heart and Lung Institute'),
(58863, 'https://ror.org/00arjmf19', 'en', 1, 'https://ror.org/00arjmf19 Triple O Medical Services'),
(58864, 'https://ror.org/04vz3bz63', 'en', 1, 'https://ror.org/04vz3bz63 Inspired Spine'),
(58865, 'https://ror.org/01g868933', 'no_lang_code', 1, 'https://ror.org/01g868933 The Johrei Institute'),
(58866, 'https://ror.org/01abhxy31', 'no_lang_code', 1, 'https://ror.org/01abhxy31 Würzburg Institute for Traffic Sciences (Germany) Würzburger Institut für Verkehrswissenschaften'),
(58867, 'https://ror.org/02p046236', 'en', 1, 'https://ror.org/02p046236 Turner Eye Institute'),
(58868, 'https://ror.org/01g73y611', 'en', 1, 'https://ror.org/01g73y611 Jones Institute'),
(58869, 'https://ror.org/0002rg505', 'en', 1, 'https://ror.org/0002rg505 Vascular Institute of Virginia'),
(58870, 'https://ror.org/05a4nj078', 'en', 1, 'https://ror.org/05a4nj078 Centro Común de Investigación Joint Research Center'),
(58871, 'https://ror.org/011wa8w96', 'en', 1, 'https://ror.org/011wa8w96 Yunnan Institute For Drug Abuse 云南省药物滥用研究所'),
(58872, 'https://ror.org/03cne5517', 'en', 1, 'https://ror.org/03cne5517 Kotsanis Institute'),
(58873, 'https://ror.org/018ymm591', 'en', 1, 'https://ror.org/018ymm591 Vimhans PrimaMed Super Speciality Hospital'),
(58874, 'https://ror.org/031334b36', 'en', 1, 'https://ror.org/031334b36 Krongrad Institute'),
(58875, 'https://ror.org/00xhgth11', 'de', 1, 'https://ror.org/00xhgth11 Zydolab - Institut für Zytologie und Immunzytochemie'),
(58876, 'https://ror.org/01q2pxs68', 'en', 1, 'https://ror.org/01q2pxs68 Vinmec International Hospital'),
(58877, 'https://ror.org/01ece3a48', 'en', 1, 'https://ror.org/01ece3a48 The Mayer Institute'),
(58878, 'https://ror.org/00st10j60', 'en', 1, 'https://ror.org/00st10j60 Virginia Cancer Institute'),
(58879, 'https://ror.org/02v14dw26', 'en', 1, 'https://ror.org/02v14dw26 Virginia Gastroenterology Institute'),
(58880, 'https://ror.org/035ts5t23', 'en', 1, 'https://ror.org/035ts5t23 Virginia Spine Institute'),
(58881, 'https://ror.org/047e6a566', 'en', 1, 'https://ror.org/047e6a566 Westwood Institute for Anxiety Disorders'),
(58882, 'https://ror.org/03tdp3e45', 'en', 1, 'https://ror.org/03tdp3e45 Wellish Vision Institute'),
(58883, 'https://ror.org/055m95h02', 'en', 1, 'https://ror.org/055m95h02 Werlhof Institute'),
(58884, 'https://ror.org/04erj2z02', 'en', 1, 'https://ror.org/04erj2z02 Virpiniemen liikuntaopisto Virpiniemi Sports Institute'),
(58885, 'https://ror.org/02g9smc25', 'no_lang_code', 1, 'https://ror.org/02g9smc25 VRR Diagnostic Services (India)'),
(58886, 'https://ror.org/01yrsvz42', 'en', 1, 'https://ror.org/01yrsvz42 Vitality Institute'),
(58887, 'https://ror.org/02ksqjt48', 'en', 1, 'https://ror.org/02ksqjt48 VitalStrategic Research Institute'),
(58888, 'https://ror.org/03j81hg31', 'fr', 1, 'https://ror.org/03j81hg31 Association de Musicothérapie Applications et Recherches Cliniques'),
(58889, 'https://ror.org/00ngrws44', 'en', 1, 'https://ror.org/00ngrws44 China Anti-Aging Association 中国抗衰老促进会'),
(58890, 'https://ror.org/04t1yja74', 'fr', 1, 'https://ror.org/04t1yja74 Association des Neuro-Oncologues d’Expression Française'),
(58891, 'https://ror.org/04957ke43', 'en', 1, 'https://ror.org/04957ke43 Coalition of Asian-American Independent Practice Association'),
(58892, 'https://ror.org/00a2ywd05', 'en', 1, 'https://ror.org/00a2ywd05 Acid Maltase Deficiency Association'),
(58893, 'https://ror.org/021nbzt76', 'fr', 1, 'https://ror.org/021nbzt76 Association Française de Lutte Anti-Rhumastismale'),
(58894, 'https://ror.org/00m4xrb97', 'en', 1, 'https://ror.org/00m4xrb97 Toronto Sleep Institute'),
(58895, 'https://ror.org/0173wmw02', 'fr', 1, 'https://ror.org/0173wmw02 Association des Médecins d''Urgence du Québec'),
(58896, 'https://ror.org/04z8yvn47', 'en', 1, 'https://ror.org/04z8yvn47 Chinese Anti-Cancer Association 中国抗癌协会'),
(58897, 'https://ror.org/01t34hq68', 'en', 1, 'https://ror.org/01t34hq68 Association Rwandaise Des Diabetiques Rwanda Diabetes Association'),
(58898, 'https://ror.org/017cay976', 'en', 1, 'https://ror.org/017cay976 Orlovsky Oncology Dispensary'),
(58899, 'https://ror.org/03t4ktv29', 'fr', 1, 'https://ror.org/03t4ktv29 Association Clinique et Thérapeutique Infantile du Val de Marne'),
(58900, 'https://ror.org/05wz0rz65', 'fr', 1, 'https://ror.org/05wz0rz65 Association Sahélienne de Recherche Appliquée pour le Développement Durable'),
(58901, 'https://ror.org/00jk33f78', 'en', 1, 'https://ror.org/00jk33f78 Acute Leukemia French Association'),
(58902, 'https://ror.org/04babz459', 'fr', 1, 'https://ror.org/04babz459 Association Schizo Oui'),
(58903, 'https://ror.org/01z9be204', 'en', 1, 'https://ror.org/01z9be204 ADIR Association'),
(58904, 'https://ror.org/00kv52794', 'en', 1, 'https://ror.org/00kv52794 Chinese Medical Doctor Association 中国医师协会'),
(58905, 'https://ror.org/00axvkc03', 'fr', 1, 'https://ror.org/00axvkc03 Association Française de Chirurgie'),
(58906, 'https://ror.org/0345t3q13', 'en', 1, 'https://ror.org/0345t3q13 Interdisciplinary Dental Education Academy'),
(58907, 'https://ror.org/04p9njy36', 'fr', 1, 'https://ror.org/04p9njy36 Association Française pour le Dépistage et la Prévention des Handicaps de l’Enfant'),
(58908, 'https://ror.org/01w8qz314', 'fr', 1, 'https://ror.org/01w8qz314 Association Tunisienne Contre le Cancer'),
(58909, 'https://ror.org/05gt42d74', 'en', 1, 'https://ror.org/05gt42d74 Cardiovascular and Interventional Radiological Society of Europe'),
(58910, 'https://ror.org/0085er114', 'en', 1, 'https://ror.org/0085er114 Asthma Society of Ireland'),
(58911, 'https://ror.org/039wqqg43', 'en', 1, 'https://ror.org/039wqqg43 Association for Children at Risk העמותה לילדים בסיכון'),
(58912, 'https://ror.org/015t3ef28', 'de', 1, 'https://ror.org/015t3ef28 Augenstern'),
(58913, 'https://ror.org/04bmdeb43', 'fr', 1, 'https://ror.org/04bmdeb43 Ages et Vie'),
(58914, 'https://ror.org/03d5zbb55', 'en', 1, 'https://ror.org/03d5zbb55 Alberta Pharmacists Association'),
(58915, 'https://ror.org/054wms778', 'fr', 1, 'https://ror.org/054wms778 Association pour l''Utilisation du Rein Artificiel'),
(58916, 'https://ror.org/0050bt095', 'en', 1, 'https://ror.org/0050bt095 Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine'),
(58917, 'https://ror.org/02ywc9x30', 'en', 1, 'https://ror.org/02ywc9x30 The Korean Society of Blood and Marrow Transplantation 대한 혈액 순환 학회'),
(58918, 'https://ror.org/00zrhqg94', 'en', 1, 'https://ror.org/00zrhqg94 Ikatan Dokter Anak Indonesia Indonesian Pediatric Society'),
(58919, 'https://ror.org/007847151', 'en', 1, 'https://ror.org/007847151 Australian and New Zealand Intensive Care Society'),
(58920, 'https://ror.org/00eytwa65', 'en', 1, 'https://ror.org/00eytwa65 Allied Research Society'),
(58921, 'https://ror.org/05f1s6j82', 'en', 1, 'https://ror.org/05f1s6j82 Association for Pediatric Pulmonary Hypertension'),
(58922, 'https://ror.org/00cr1ar81', 'en', 1, 'https://ror.org/00cr1ar81 Australian and New Zealand Society of Palliative Medicine'),
(58923, 'https://ror.org/023vxq234', 'en', 1, 'https://ror.org/023vxq234 Association for the Advancement of Medical Instrumentation'),
(58924, 'https://ror.org/036yga598', 'de', 1, 'https://ror.org/036yga598 Arbeitsgemeinschaft für Klinische Ernährung'),
(58925, 'https://ror.org/01cv0ss35', 'en', 1, 'https://ror.org/01cv0ss35 American Academy of Orthopaedic Manual Physical Therapists'),
(58926, 'https://ror.org/046sm3c31', 'de', 1, 'https://ror.org/046sm3c31 Austrian Society of Hypertension Österreichische Gesellschaft für Hypertensiologie'),
(58927, 'https://ror.org/01f2r3t53', 'en', 1, 'https://ror.org/01f2r3t53 Jinan Disabled Persons Federation'),
(58928, 'https://ror.org/057e5kw77', 'en', 1, 'https://ror.org/057e5kw77 American Academy of Osteopathy'),
(58929, 'https://ror.org/04hfec795', 'de', 1, 'https://ror.org/04hfec795 Österreichische Gesellschaft für Parodontologie'),
(58930, 'https://ror.org/0250yzd02', 'en', 1, 'https://ror.org/0250yzd02 Beacon Hill Academy'),
(58931, 'https://ror.org/05qgkbs55', 'en', 1, 'https://ror.org/05qgkbs55 Belgian Hematological Society'),
(58932, 'https://ror.org/03p0wky60', 'en', 1, 'https://ror.org/03p0wky60 American Association for Bronchology and Interventional Pulmonology'),
(58933, 'https://ror.org/03y2n4b36', 'en', 1, 'https://ror.org/03y2n4b36 Japanese Academy of Maxillofacial Implants'),
(58934, 'https://ror.org/00vhe9s39', 'en', 1, 'https://ror.org/00vhe9s39 American Association of Chairs of Departments of Psychiatry'),
(58935, 'https://ror.org/02ceryg42', 'en', 1, 'https://ror.org/02ceryg42 Belgian Society for Pneumology Belgische Vereniging voor Pneumologie'),
(58936, 'https://ror.org/032jj2n15', 'en', 1, 'https://ror.org/032jj2n15 American Association of Gynecologic Laparoscopists'),
(58937, 'https://ror.org/03n3nk688', 'en', 1, 'https://ror.org/03n3nk688 American Association of Kidney Patients'),
(58938, 'https://ror.org/04w87a187', 'fr', 1, 'https://ror.org/04w87a187 Adema 80'),
(58939, 'https://ror.org/024bsq388', 'en', 1, 'https://ror.org/024bsq388 Finnish Mass Spectrometry Society Suomen Massaspektrometrian Seura'),
(58940, 'https://ror.org/0095qtr23', 'en', 1, 'https://ror.org/0095qtr23 Finnish Society of Obstetrics and Gynaecology Suomen Gynekologiyhdistys'),
(58941, 'https://ror.org/018b60f22', 'en', 1, 'https://ror.org/018b60f22 Belgian Society for Pediatric Gastroenterology Hepatology and Nutrition'),
(58942, 'https://ror.org/012rrxx37', 'en', 1, 'https://ror.org/012rrxx37 Copenhagen Academy for Medical Education and Simulation Københavns Akademi for Medicinsk Uddannelse og Simulation'),
(58943, 'https://ror.org/05y75g627', 'fr', 1, 'https://ror.org/05y75g627 Association des Familles de Traumatisés Crâniens d''Alsace'),
(58944, 'https://ror.org/03vf2kf90', 'en', 1, 'https://ror.org/03vf2kf90 Benelux Society of Phlebology Secretariat of the Benelux Society of Phlebology'),
(58945, 'https://ror.org/03d9g9t35', 'en', 1, 'https://ror.org/03d9g9t35 Finnish Society of Surgery Suomen Kirurgiyhdistys'),
(58946, 'https://ror.org/05parng43', 'en', 1, 'https://ror.org/05parng43 Bethlehem Arab Society for Rehabilitation جمعية بيت لحم العربية للتأهيل'),
(58947, 'https://ror.org/05abb3j67', 'en', 1, 'https://ror.org/05abb3j67 Croatian Society of Regional Anaesthesia and Analgesia Hrvatsko društvo regionalne anestezije i analgezije'),
(58948, 'https://ror.org/05bgdck98', 'pt', 1, 'https://ror.org/05bgdck98 Instituto Nefrológico de Campinas'),
(58949, 'https://ror.org/011znd796', 'en', 1, 'https://ror.org/011znd796 American Medical Group Association'),
(58950, 'https://ror.org/05v4fng20', 'fr', 1, 'https://ror.org/05v4fng20 Association Française pour la Recherche Thermale'),
(58951, 'https://ror.org/04asxht25', 'en', 1, 'https://ror.org/04asxht25 Czech Society for Hypertension Česká Společnost pro Hypertenzi'),
(58952, 'https://ror.org/057kxm327', 'fr', 1, 'https://ror.org/057kxm327 Société Francophone d’Arthroscopie'),
(58953, 'https://ror.org/05v7vyj84', 'en', 1, 'https://ror.org/05v7vyj84 American Orthotic and Prosthetic Association'),
(58954, 'https://ror.org/006mdd626', 'pt', 1, 'https://ror.org/006mdd626 Sociedade Brasileira de Cirurgia de Cabeça e Pescoço'),
(58955, 'https://ror.org/03mbb6708', 'fr', 1, 'https://ror.org/03mbb6708 Gérontopôle Pierre Pfitzenmeyer'),
(58956, 'https://ror.org/00r4a9d75', 'pt', 1, 'https://ror.org/00r4a9d75 Sociedade Brasileira de Cirurgia Torácica'),
(58957, 'https://ror.org/033x4t230', 'fr', 1, 'https://ror.org/033x4t230 Société Française d''Allergologie'),
(58958, 'https://ror.org/01dszxr35', 'en', 1, 'https://ror.org/01dszxr35 American Pulse Association'),
(58959, 'https://ror.org/04qmha372', 'en', 1, 'https://ror.org/04qmha372 British Association of Urological Surgeons'),
(58960, 'https://ror.org/04bf36351', 'fr', 1, 'https://ror.org/04bf36351 Société Nationale Française de Colo-Proctologie'),
(58961, 'https://ror.org/01gw2gb17', 'fr', 1, 'https://ror.org/01gw2gb17 Société Française d''Endoscopie Digestive'),
(58962, 'https://ror.org/03dnhfz27', 'en', 1, 'https://ror.org/03dnhfz27 British Cardiovascular Intervention Society'),
(58963, 'https://ror.org/04k4egd33', 'fr', 1, 'https://ror.org/04k4egd33 Association Keoogo'),
(58964, 'https://ror.org/03benq302', 'fr', 1, 'https://ror.org/03benq302 Association Francophone pour les Soins Oncologiques de Support'),
(58965, 'https://ror.org/05dtj8q67', 'en', 1, 'https://ror.org/05dtj8q67 Obesity Medicine Association'),
(58966, 'https://ror.org/03fsf0027', 'en', 1, 'https://ror.org/03fsf0027 British Columbia Dental Hygienists'' Association'),
(58967, 'https://ror.org/00wp9fx28', 'fr', 1, 'https://ror.org/00wp9fx28 Association Mucoviscidose - ABCF2'),
(58968, 'https://ror.org/00c6acq81', 'nl', 1, 'https://ror.org/00c6acq81 Galactosemie Vereniging Nederland'),
(58969, 'https://ror.org/02kpbdq88', 'en', 1, 'https://ror.org/02kpbdq88 Danish Society of Cardiology Dansk Cardiologisk Selskab'),
(58970, 'https://ror.org/00rnp5y61', 'en', 1, 'https://ror.org/00rnp5y61 Kidney Care UK'),
(58971, 'https://ror.org/05smc1464', 'fr', 1, 'https://ror.org/05smc1464 Association Nationale d’Aide aux personnes Handicapées'),
(58972, 'https://ror.org/05vx20690', 'es', 1, 'https://ror.org/05vx20690 Sociedad Española de Patología Digestiva'),
(58973, 'https://ror.org/03djwcj59', 'en', 1, 'https://ror.org/03djwcj59 The Dementia Association of Thailand สมาคมโรคสมองเสื่อมประเทศไทย'),
(58974, 'https://ror.org/04ded4967', 'en', 1, 'https://ror.org/04ded4967 British Tinnitus Association'),
(58975, 'https://ror.org/05gvf0x42', 'en', 1, 'https://ror.org/05gvf0x42 Bulgarian Neuromuscular Diseases Association БЪЛГАРСКА АСОЦИАЦИЯ ЗА НЕВРОМУСКУЛНИ ЗАБОЛЯВАНИЯ'),
(58976, 'https://ror.org/0269vww35', 'fr', 1, 'https://ror.org/0269vww35 Association Nationale des Hépato-Gastroentérologues des Hôpitaux Généraux de France'),
(58977, 'https://ror.org/04bkxkh03', 'de', 1, 'https://ror.org/04bkxkh03 Bundesverband Medizintechnologie German Medical Technology Association'),
(58978, 'https://ror.org/02bx28580', 'en', 1, 'https://ror.org/02bx28580 Dermatological Society of Thailand สมาคมแพทย์ผิวหนังแห่งประเทศไทย'),
(58979, 'https://ror.org/02nn2tc47', 'de', 1, 'https://ror.org/02nn2tc47 Arbeitsgemeinschaft Urologische Onkologie'),
(58980, 'https://ror.org/000re6s27', 'no_lang_code', 1, 'https://ror.org/000re6s27 CHO America (Canada)'),
(58981, 'https://ror.org/05dp34n52', 'es', 1, 'https://ror.org/05dp34n52 Asociación Argentina de Tenis'),
(58982, 'https://ror.org/05gsvv626', 'en', 1, 'https://ror.org/05gsvv626 Dermatology Society of South Africa'),
(58983, 'https://ror.org/02sxqb906', 'fr', 1, 'https://ror.org/02sxqb906 Association Nationale pour le Developpement de la Qualité Dans les Hôpitaux et Les Cliniques'),
(58984, 'https://ror.org/01bx1ra43', 'en', 1, 'https://ror.org/01bx1ra43 Bundesärztekammer German Medical Association'),
(58985, 'https://ror.org/00ffe3313', 'en', 1, 'https://ror.org/00ffe3313 Deutsche Gesellschaft für Pneumologie und Beatmungsmedizin German Respiratory Society'),
(58986, 'https://ror.org/020kqbk80', 'en', 1, 'https://ror.org/020kqbk80 Cameroon Nutritional Science Society'),
(58987, 'https://ror.org/00zpm8f70', 'fr', 1, 'https://ror.org/00zpm8f70 Fédération Antadir'),
(58988, 'https://ror.org/004vymz43', 'en', 1, 'https://ror.org/004vymz43 Diabetes Association of Thailand สมาคมโรคเบาหวานแห่งประเทศไทย'),
(58989, 'https://ror.org/0047xfq17', 'de', 1, 'https://ror.org/0047xfq17 Deutsche Gesellschaft für Neurogastroenterologie und Motilität');
INSERT INTO `rors` VALUES
(58990, 'https://ror.org/049xawg80', 'en', 1, 'https://ror.org/049xawg80 Deutsche Gesellschaft für Thorax-, Herz- und Gefäßchirurgie German Society for Thoracic and Cardiovascular Surgery'),
(58991, 'https://ror.org/0359pwd41', 'en', 1, 'https://ror.org/0359pwd41 Down Syndrome Association of Greater Toledo'),
(58992, 'https://ror.org/05jksah37', 'en', 1, 'https://ror.org/05jksah37 Asia Cornea Society'),
(58993, 'https://ror.org/050y6sw38', 'en', 1, 'https://ror.org/050y6sw38 Deutsche Stiftung Organtransplantation German Organ Transplantation Foundation'),
(58994, 'https://ror.org/022dwdg85', 'de', 1, 'https://ror.org/022dwdg85 Deutsche Gesellschaft für Angiologie Gesellschaft für Gefäßmedizin e.V.'),
(58995, 'https://ror.org/00322eq64', 'en', 1, 'https://ror.org/00322eq64 Association Canadienne des Chirurgiens Généraux Canadian Association of General Surgeons'),
(58996, 'https://ror.org/013z6ae41', 'en', 1, 'https://ror.org/013z6ae41 Deutsche Krebsgesellschaft German Cancer Society'),
(58997, 'https://ror.org/05k3yhz56', 'en', 1, 'https://ror.org/05k3yhz56 Association Canadienne de Protection Médicale Canadian Medical Protective Association'),
(58998, 'https://ror.org/05mht2065', 'en', 1, 'https://ror.org/05mht2065 Chinese Gerontology Society 中国老年学和老年医学学会'),
(58999, 'https://ror.org/04qczj105', 'en', 1, 'https://ror.org/04qczj105 American Association of Sensory Electrodiagnostic Medicine'),
(59000, 'https://ror.org/034nqx294', 'en', 1, 'https://ror.org/034nqx294 Canadian Orthopaedic Foot and Ankle Society'),
(59001, 'https://ror.org/05qaf7a32', 'nl', 1, 'https://ror.org/05qaf7a32 Dutch Society for Obstetrics and Gynecology Nederlandse Vereniging voor Obstetrie en Gynaecologie'),
(59002, 'https://ror.org/0376sq070', 'en', 1, 'https://ror.org/0376sq070 Gifu Prefecture Medical Association 岐阜県医師会'),
(59003, 'https://ror.org/01p1gwk51', 'da', 1, 'https://ror.org/01p1gwk51 Landsforeningen Værn om Synet Øjenforeningen'),
(59004, 'https://ror.org/03vwqmf10', 'en', 1, 'https://ror.org/03vwqmf10 Global Health Association of Miami'),
(59005, 'https://ror.org/03e7cxq04', 'en', 1, 'https://ror.org/03e7cxq04 Canadian Society of Colon and Rectal Surgeons'),
(59006, 'https://ror.org/03rs9zz96', 'en', 1, 'https://ror.org/03rs9zz96 Government Medical Officers Association'),
(59007, 'https://ror.org/01nw4gp55', 'en', 1, 'https://ror.org/01nw4gp55 Canadian Society of Intestinal Research'),
(59008, 'https://ror.org/01aq0vw42', 'nl', 1, 'https://ror.org/01aq0vw42 Ergotherapie Nederland Nederlandse Vereniging van Ergotherapie'),
(59009, 'https://ror.org/037jjwb78', 'fr', 1, 'https://ror.org/037jjwb78 Association Pharmaceutique Belge'),
(59010, 'https://ror.org/0567gec15', 'en', 1, 'https://ror.org/0567gec15 The Memory Clinic'),
(59011, 'https://ror.org/02d0b6k80', 'en', 1, 'https://ror.org/02d0b6k80 Association Canadienne des Greffes Canadian Transplant Association'),
(59012, 'https://ror.org/03e7fa829', 'en', 1, 'https://ror.org/03e7fa829 Association of British Clinical Diabetologists'),
(59013, 'https://ror.org/034weys19', 'fr', 1, 'https://ror.org/034weys19 AMIS FSH'),
(59014, 'https://ror.org/021fhy603', 'en', 1, 'https://ror.org/021fhy603 Association of Cancer Online Resources'),
(59015, 'https://ror.org/00gkwfd59', 'en', 1, 'https://ror.org/00gkwfd59 Pathway'),
(59016, 'https://ror.org/000x2q781', 'en', 1, 'https://ror.org/000x2q781 Arthritis Associates of Southern California'),
(59017, 'https://ror.org/01t0tr298', 'en', 1, 'https://ror.org/01t0tr298 Academy of Cardiovascular Society Kardiyovasküler Akademi Derneği'),
(59018, 'https://ror.org/0214xre54', 'en', 1, 'https://ror.org/0214xre54 Guelph Wellington Seniors Association'),
(59019, 'https://ror.org/01s902n79', 'en', 1, 'https://ror.org/01s902n79 Association of Extremity Nerve Surgeons'),
(59020, 'https://ror.org/04zy2vv30', 'en', 1, 'https://ror.org/04zy2vv30 Gulf Heart Association'),
(59021, 'https://ror.org/01pxs4m78', 'en', 1, 'https://ror.org/01pxs4m78 Association of Gynaecologists and Obstetricians'),
(59022, 'https://ror.org/00t043b19', 'da', 1, 'https://ror.org/00t043b19 Dansk Selskab For Klassisk Homøopati'),
(59023, 'https://ror.org/055tmjh12', 'en', 1, 'https://ror.org/055tmjh12 Asthma Association Асоциация Астма'),
(59024, 'https://ror.org/031f8xv45', 'en', 1, 'https://ror.org/031f8xv45 Children’s Aid Society of Hamilton'),
(59025, 'https://ror.org/01h5tah83', 'en', 1, 'https://ror.org/01h5tah83 Alliance Against Diabetes'),
(59026, 'https://ror.org/0206dgg42', 'pt', 1, 'https://ror.org/0206dgg42 Association of Brazilian Intensive Medicine Associação de Medicina Intensiva Brasileira'),
(59027, 'https://ror.org/00m0c9422', 'en', 1, 'https://ror.org/00m0c9422 Charleston Hematology Oncology Associates'),
(59028, 'https://ror.org/01zcmzh38', 'en', 1, 'https://ror.org/01zcmzh38 Health Informatics Society of Ireland'),
(59029, 'https://ror.org/03ad34z63', 'en', 1, 'https://ror.org/03ad34z63 Association of Children and Preventive Dentists of Serbia'),
(59030, 'https://ror.org/03ks8z635', 'en', 1, 'https://ror.org/03ks8z635 International Hyperbarics Association'),
(59031, 'https://ror.org/0031gef94', 'es', 1, 'https://ror.org/0031gef94 Sociedad Española de Medicina Interna'),
(59032, 'https://ror.org/053gt7v47', 'en', 1, 'https://ror.org/053gt7v47 Association of Pediatric Program Directors'),
(59033, 'https://ror.org/04h407e94', 'en', 1, 'https://ror.org/04h407e94 Chest Wall Injury Society'),
(59034, 'https://ror.org/03eg7wq38', 'tr', 1, 'https://ror.org/03eg7wq38 Turkish Emergency Medical Association Türkiye Acil Tıp Derneği'),
(59035, 'https://ror.org/039p74p43', 'en', 1, 'https://ror.org/039p74p43 Hellenic Cancer Society Ελληνική Αντικαρκινική Εταιρεία'),
(59036, 'https://ror.org/04qmeyd63', 'en', 1, 'https://ror.org/04qmeyd63 Association of Academic Professionals in Obstetrics and Gynaecology'),
(59037, 'https://ror.org/00bbh3b38', 'en', 1, 'https://ror.org/00bbh3b38 International Piezoelectric Surgery Academy'),
(59038, 'https://ror.org/016208791', 'en', 1, 'https://ror.org/016208791 Children’s Aid Society'),
(59039, 'https://ror.org/03jgde213', 'en', 1, 'https://ror.org/03jgde213 Hellenic Food Industries Association Σύνδεσμος Ελληνικών Βιομηχανιών Τροφίμων'),
(59040, 'https://ror.org/001vn6g34', 'en', 1, 'https://ror.org/001vn6g34 Association of Specialty Physicians'),
(59041, 'https://ror.org/047zejf54', 'en', 1, 'https://ror.org/047zejf54 Chimes Society'),
(59042, 'https://ror.org/020616e42', 'en', 1, 'https://ror.org/020616e42 Senologic Hellenic Society Ελληνική Εταιρεία Μαστολογία'),
(59043, 'https://ror.org/02rc09k84', 'en', 1, 'https://ror.org/02rc09k84 Hellenic Society for Chemotherapy Ελληνική Εταιρεία Χημειοθεραπείας'),
(59044, 'https://ror.org/03p2hyg63', 'en', 1, 'https://ror.org/03p2hyg63 National Association of Area Agencies on Aging'),
(59045, 'https://ror.org/05dsxqn95', 'en', 1, 'https://ror.org/05dsxqn95 ELEPAP-Rehabilitation for The Disabled Ελληνική Εταιρία Προστασίας & Αποκαταστάσεως Αναπήρων Προσώπων-ΕΛΕΠΑΠ'),
(59046, 'https://ror.org/037695w38', 'en', 1, 'https://ror.org/037695w38 National Association for Black Veterans'),
(59047, 'https://ror.org/02pe43019', 'en', 1, 'https://ror.org/02pe43019 National Asociation of General Practitioners in Bulgaria'),
(59048, 'https://ror.org/03w2j7e67', 'en', 1, 'https://ror.org/03w2j7e67 Xinhua Translational Institute for Cancer Pain 上海交通大学医学院附属新华医院'),
(59049, 'https://ror.org/03a011y73', 'et', 1, 'https://ror.org/03a011y73 Eesti Reumatoloogia Selts Estonian Rheumatology Society'),
(59050, 'https://ror.org/00ebjgp93', 'en', 1, 'https://ror.org/00ebjgp93 National Association of People with HIV Australia'),
(59051, 'https://ror.org/02jwgg565', 'en', 1, 'https://ror.org/02jwgg565 National Association of Statutory Health Insurance Physicians'),
(59052, 'https://ror.org/05gczn822', 'en', 1, 'https://ror.org/05gczn822 Hellenic Society of Hypertension Ελληνική Εταιρεία Υπέρτασης'),
(59053, 'https://ror.org/026r68s65', 'en', 1, 'https://ror.org/026r68s65 International Thyroid Eye Disease Society'),
(59054, 'https://ror.org/03j3es427', 'de', 1, 'https://ror.org/03j3es427 Association of European Ayurvedic Physicians & Therapists Verband Europäischer Ayurveda-Mediziner & Therapeuten'),
(59055, 'https://ror.org/04h6ghc51', 'en', 1, 'https://ror.org/04h6ghc51 International WAGR Syndrome Association'),
(59056, 'https://ror.org/02hgpw430', 'en', 1, 'https://ror.org/02hgpw430 Association of the British Pharmaceutical Industry'),
(59057, 'https://ror.org/00r1f1395', 'en', 1, 'https://ror.org/00r1f1395 National Hematology Society Национальное гематологическое общество'),
(59058, 'https://ror.org/04erbf175', 'en', 1, 'https://ror.org/04erbf175 Russian Respiratory Society Межрегиональная общественная организация Российское Респираторное Общество'),
(59059, 'https://ror.org/00q768c32', 'en', 1, 'https://ror.org/00q768c32 National Pecan Shellers Association'),
(59060, 'https://ror.org/039zvcc43', 'en', 1, 'https://ror.org/039zvcc43 Conemaugh Health System'),
(59061, 'https://ror.org/05d85fb80', 'en', 1, 'https://ror.org/05d85fb80 Hong Kong Island Women''s Association 香 港 島 婦 女 聯 會'),
(59062, 'https://ror.org/00pqehw64', 'en', 1, 'https://ror.org/00pqehw64 National Stroke Association of Malaysia'),
(59063, 'https://ror.org/03h0ds251', 'en', 1, 'https://ror.org/03h0ds251 European Dairy Association'),
(59064, 'https://ror.org/02c9xpj15', 'en', 1, 'https://ror.org/02c9xpj15 National Stroke Association'),
(59065, 'https://ror.org/01hhggr08', 'en', 1, 'https://ror.org/01hhggr08 Humboldt Independent Practice Association'),
(59066, 'https://ror.org/05q35d534', 'fr', 1, 'https://ror.org/05q35d534 Association pour l''Information et la Recherche sur les maladies rénales Génétiques'),
(59067, 'https://ror.org/001qjw859', 'en', 1, 'https://ror.org/001qjw859 European Neuroendocrine Tumor Society'),
(59068, 'https://ror.org/02a5vfy19', 'en', 1, 'https://ror.org/02a5vfy19 Hunan Academy of Traditional Chinese Medicine 湖南省中医药研究院'),
(59069, 'https://ror.org/02xq0ba35', 'en', 1, 'https://ror.org/02xq0ba35 European Pathway Association'),
(59070, 'https://ror.org/0468xyb13', 'en', 1, 'https://ror.org/0468xyb13 Icelandic Félag sjúkraþjálfara The Icelandic Physiotherapy Association'),
(59071, 'https://ror.org/02vzhpz25', 'en', 1, 'https://ror.org/02vzhpz25 Irish Society of Chartered Physiotherapists'),
(59072, 'https://ror.org/03sk8zw22', 'nl', 1, 'https://ror.org/03sk8zw22 Nederlandse Internisten Vereniging'),
(59073, 'https://ror.org/029fymz93', 'fr', 1, 'https://ror.org/029fymz93 Association de Cardiologie - Ile de France'),
(59074, 'https://ror.org/03d8cnv56', 'en', 1, 'https://ror.org/03d8cnv56 Neighbourhood Pharmacy Association of Canada'),
(59075, 'https://ror.org/01nhpee59', 'en', 1, 'https://ror.org/01nhpee59 European Society for Intravenous Anaesthesia'),
(59076, 'https://ror.org/02pfg4167', 'en', 1, 'https://ror.org/02pfg4167 International Association for Human Values'),
(59077, 'https://ror.org/03wkx9d81', 'en', 1, 'https://ror.org/03wkx9d81 Israel Medical Association'),
(59078, 'https://ror.org/03r92yv86', 'en', 1, 'https://ror.org/03r92yv86 European Society for Surgical Research'),
(59079, 'https://ror.org/048m0by09', 'en', 1, 'https://ror.org/048m0by09 Indian Society of Critical Care Medicine'),
(59080, 'https://ror.org/01y2g0378', 'fr', 1, 'https://ror.org/01y2g0378 Association pour la Promotion du Sport chez l''Enfant Malade'),
(59081, 'https://ror.org/02qyyew72', 'en', 1, 'https://ror.org/02qyyew72 Nepal Red Cross Society'),
(59082, 'https://ror.org/015jb2v95', 'en', 1, 'https://ror.org/015jb2v95 Nepalese Psychological Association'),
(59083, 'https://ror.org/043cmyb92', 'en', 1, 'https://ror.org/043cmyb92 Israel Diabetes Association אגודה ישראלית לסוכרת'),
(59084, 'https://ror.org/051bqjh49', 'en', 1, 'https://ror.org/051bqjh49 European Society of Cutaneous Lupus Erythematosus Europäische Gesellschaft für kutanen Lupus erythematodes'),
(59085, 'https://ror.org/02gzjez53', 'en', 1, 'https://ror.org/02gzjez53 Indiana Athletic Trainers Association'),
(59086, 'https://ror.org/013c16d18', 'en', 1, 'https://ror.org/013c16d18 European Society of Gynaecological Oncology'),
(59087, 'https://ror.org/01g0k2717', 'en', 1, 'https://ror.org/01g0k2717 Israeli Yoga Teachers Association ארגון מורי היוגה בישראל'),
(59088, 'https://ror.org/01kn7pj21', 'fr', 1, 'https://ror.org/01kn7pj21 Association pour la Recherche en Physiologie de l’Environnement'),
(59089, 'https://ror.org/05jxfq030', 'en', 1, 'https://ror.org/05jxfq030 Kidney Disease Association of Thailand'),
(59090, 'https://ror.org/03wjb0y70', 'en', 1, 'https://ror.org/03wjb0y70 Israeli Association for Cardiovascular Trials'),
(59091, 'https://ror.org/0480n9h26', 'nl', 1, 'https://ror.org/0480n9h26 Nederlandse Vereniging voor Radiologie'),
(59092, 'https://ror.org/01hga1v29', 'en', 1, 'https://ror.org/01hga1v29 New Brunswick Pharmacists’ Association'),
(59093, 'https://ror.org/02pqkyr67', 'en', 1, 'https://ror.org/02pqkyr67 New Jersey Psychological Association'),
(59094, 'https://ror.org/04qkw0x88', 'en', 1, 'https://ror.org/04qkw0x88 International CTEPH Association'),
(59095, 'https://ror.org/03hghb841', 'ro', 1, 'https://ror.org/03hghb841 Societatea Română de Anestezie şi Terapie Intensivă'),
(59096, 'https://ror.org/013kwyq90', 'en', 1, 'https://ror.org/013kwyq90 Nigerian Cardiac Society'),
(59097, 'https://ror.org/003tbyf39', 'en', 1, 'https://ror.org/003tbyf39 Romanian Society of Nephrology Societatii Romane de Nefrologie'),
(59098, 'https://ror.org/013848a06', 'en', 1, 'https://ror.org/013848a06 Italian Society of Physiotherapy Società Italiana Fisioterapia'),
(59099, 'https://ror.org/00pbws926', 'en', 1, 'https://ror.org/00pbws926 Family Life Association of Swaziland'),
(59100, 'https://ror.org/0432mp741', 'en', 1, 'https://ror.org/0432mp741 Royal Health Awareness Society'),
(59101, 'https://ror.org/01skcyw40', 'ca', 1, 'https://ror.org/01skcyw40 Departament de Benestar i Drets Socials'),
(59102, 'https://ror.org/0472xf465', 'en', 1, 'https://ror.org/0472xf465 Nordic Society for Pediatric Hematology and Oncology'),
(59103, 'https://ror.org/021z2yz21', 'en', 1, 'https://ror.org/021z2yz21 Russian Society of Clinical Oncology Российское общество клинической онкологии'),
(59104, 'https://ror.org/02nwfp582', 'en', 1, 'https://ror.org/02nwfp582 Russian Society of Cardiology Российское кардиологическое общество'),
(59105, 'https://ror.org/008vhq233', 'en', 1, 'https://ror.org/008vhq233 North American Skull Base Society'),
(59106, 'https://ror.org/03hmdrw82', 'en', 1, 'https://ror.org/03hmdrw82 Russian Phlebology Association Ассоциация флебологов России'),
(59107, 'https://ror.org/03ct3tn05', 'en', 1, 'https://ror.org/03ct3tn05 Italian Society of Periodontology and Implantology Società Italiana di Parodontologia e Implantologia'),
(59108, 'https://ror.org/00vn3f760', 'en', 1, 'https://ror.org/00vn3f760 Rwanda Pediatric Association'),
(59109, 'https://ror.org/00jfqw572', 'de', 1, 'https://ror.org/00jfqw572 Austrian Society of Pneumology Österreichische Gesellschaft für Pneumologie'),
(59110, 'https://ror.org/04qs1qk86', 'de', 1, 'https://ror.org/04qs1qk86 Nord-Ostdeutsche Gesellschaft für Gynäkologische Onkologie'),
(59111, 'https://ror.org/030xn4p61', 'en', 1, 'https://ror.org/030xn4p61 Sadir Assistance'),
(59112, 'https://ror.org/05k2jeg48', 'en', 1, 'https://ror.org/05k2jeg48 North Suffolk Mental Health Association'),
(59113, 'https://ror.org/04njkp570', 'no_lang_code', 1, 'https://ror.org/04njkp570 Rahnuma'),
(59114, 'https://ror.org/00z31b133', 'no', 1, 'https://ror.org/00z31b133 Norsk Kiropraktorforening'),
(59115, 'https://ror.org/02mmpfj40', 'en', 1, 'https://ror.org/02mmpfj40 Bundesverband Deutscher Apothekerverbände Federal Union of German Associations of Pharmacists'),
(59116, 'https://ror.org/0376avp13', 'en', 1, 'https://ror.org/0376avp13 Svenska Fotbollförbundet Swedish Football Association'),
(59117, 'https://ror.org/026mq3948', 'en', 1, 'https://ror.org/026mq3948 Scandinavian College of Neuropsychopharmacology'),
(59118, 'https://ror.org/05wbdm460', 'en', 1, 'https://ror.org/05wbdm460 Swiss Ankylosing Spondylitis Association'),
(59119, 'https://ror.org/03m0x9887', 'en', 1, 'https://ror.org/03m0x9887 Schizophrenia Society of Ontario'),
(59120, 'https://ror.org/02a8scr35', 'no_lang_code', 1, 'https://ror.org/02a8scr35 Veikkaus (Finland)'),
(59121, 'https://ror.org/00t68m327', 'de', 1, 'https://ror.org/00t68m327 Balgrist Beteiligungs AG'),
(59122, 'https://ror.org/0043mrk19', 'en', 1, 'https://ror.org/0043mrk19 Norsk Smerteforening Norwegian Pain Society'),
(59123, 'https://ror.org/01ymyg650', 'en', 1, 'https://ror.org/01ymyg650 Japan Society of Laparoscopic Colorectal Surgery 第6回腹腔鏡下大腸切除研究会'),
(59124, 'https://ror.org/04yxf9667', 'en', 1, 'https://ror.org/04yxf9667 European Society of Hypertension Società europea di ipertensione'),
(59125, 'https://ror.org/01yjcwm15', 'de', 1, 'https://ror.org/01yjcwm15 Schweizerische Gesellschaft für Cystische Fibrose Società Svizzera per la fFbrosi Cisitica Société Suisse pour la Mucoviscidose'),
(59126, 'https://ror.org/001pkzr89', 'en', 1, 'https://ror.org/001pkzr89 Apotekforeningen Norwegian Pharmacy Association'),
(59127, 'https://ror.org/058nqnd90', 'en', 1, 'https://ror.org/058nqnd90 Japanese Society of CT Screening 日本CT検診学会'),
(59128, 'https://ror.org/02097xt92', 'en', 1, 'https://ror.org/02097xt92 Iranian Orthopedic Association انجمن جراحان ارتوپدی ایران'),
(59129, 'https://ror.org/017gepd12', 'no', 1, 'https://ror.org/017gepd12 Landsforeningen Uventet Barnedød'),
(59130, 'https://ror.org/011e6t090', 'en', 1, 'https://ror.org/011e6t090 The Japanese Society of Intensive Care Medicine 日本集中治療医学会'),
(59131, 'https://ror.org/002yjkk86', 'en', 1, 'https://ror.org/002yjkk86 Czech Surgical Society Česká Chirurgická Společnost'),
(59132, 'https://ror.org/05ktmtk53', 'en', 1, 'https://ror.org/05ktmtk53 Kanagawa Prefecture Medical Association 神奈川県医師会'),
(59133, 'https://ror.org/01svr1620', 'fr', 1, 'https://ror.org/01svr1620 PharmaSuisse'),
(59134, 'https://ror.org/04jxvq020', 'en', 1, 'https://ror.org/04jxvq020 Nurse Maude Association'),
(59135, 'https://ror.org/043afx341', 'en', 1, 'https://ror.org/043afx341 Kaohsiung Breast Cancer Promotion and Education Society 社團法人高雄市乳癌防治衛教學會'),
(59136, 'https://ror.org/04k3a2264', 'en', 1, 'https://ror.org/04k3a2264 Turkish Ophthalmological Association Türk Oftalmoloji Derneği'),
(59137, 'https://ror.org/04n7wm262', 'en', 1, 'https://ror.org/04n7wm262 Sickle Cell Disease Association of America'),
(59138, 'https://ror.org/03mpzae61', 'en', 1, 'https://ror.org/03mpzae61 Kazakhstan Academy of Preventive Medicine Академии профилактической медицины'),
(59139, 'https://ror.org/050p4bn34', 'en', 1, 'https://ror.org/050p4bn34 Oakland Colon and Rectal Associates'),
(59140, 'https://ror.org/015aser35', 'en', 1, 'https://ror.org/015aser35 Psychiatric Association of Turkey Türkiye Psikiyatri Derneği'),
(59141, 'https://ror.org/02s7ywx66', 'en', 1, 'https://ror.org/02s7ywx66 Lions Eye Bank at Albany'),
(59142, 'https://ror.org/04hqw2h62', 'en', 1, 'https://ror.org/04hqw2h62 Kazakhstan Association on Sexual and Reproductive Health Казахстанская ассоциация по половому и репродуктивному здоровью'),
(59143, 'https://ror.org/00yeh8c54', 'de', 1, 'https://ror.org/00yeh8c54 Schweizerische Ärztegesellschaft für Manuelle Medizin'),
(59144, 'https://ror.org/035gkt554', 'en', 1, 'https://ror.org/035gkt554 Sjögren’s Society of Canada'),
(59145, 'https://ror.org/02ckr4v59', 'ca', 1, 'https://ror.org/02ckr4v59 Collegi Oficial d''Infermeres i Infermers de Barcelona'),
(59146, 'https://ror.org/05kaht993', 'en', 1, 'https://ror.org/05kaht993 Skin of Color Society'),
(59147, 'https://ror.org/05m54mx02', 'en', 1, 'https://ror.org/05m54mx02 Ohio Dermatological Association'),
(59148, 'https://ror.org/02pndtz33', 'en', 1, 'https://ror.org/02pndtz33 Ohio Pediatric Research Association'),
(59149, 'https://ror.org/05t1byf51', 'en', 1, 'https://ror.org/05t1byf51 Ohio Physical Therapy Association'),
(59150, 'https://ror.org/05gxm7d74', 'en', 1, 'https://ror.org/05gxm7d74 Korea Pharmaceutical and Bio-Pharma Manufacturers Association 한국제약바이오협회'),
(59151, 'https://ror.org/043sczt09', 'en', 1, 'https://ror.org/043sczt09 Ontario Association of Optometrists'),
(59152, 'https://ror.org/01ed1kg72', 'en', 1, 'https://ror.org/01ed1kg72 Ontario Ginseng Growers Association'),
(59153, 'https://ror.org/02c518c71', 'en', 1, 'https://ror.org/02c518c71 Swiss Society of Hypertension'),
(59154, 'https://ror.org/013mm0e79', 'en', 1, 'https://ror.org/013mm0e79 Korean Association for the Study of Targeted Therapy 표적치료연구회 가입'),
(59155, 'https://ror.org/04bsc0v25', 'en', 1, 'https://ror.org/04bsc0v25 Society for Cardiovascular Angiography and Interventions'),
(59156, 'https://ror.org/031mxab46', 'en', 1, 'https://ror.org/031mxab46 Turkish Society of Hypertension and Renal Diseases Türk Hipertansiyon ve Böbrek Hastalıkları Derneği'),
(59157, 'https://ror.org/033yj6a03', 'en', 1, 'https://ror.org/033yj6a03 Korean Association of Thyroid and Endocrine Surgeons 대한갑상선내분비외과학회'),
(59158, 'https://ror.org/02xypxj44', 'en', 1, 'https://ror.org/02xypxj44 Taiwan Association of Gynecologic Oncologists'),
(59159, 'https://ror.org/02349xy14', 'en', 1, 'https://ror.org/02349xy14 Korean Glaucoma Society 한국녹내장학회'),
(59160, 'https://ror.org/024bhvy46', 'no_lang_code', 1, 'https://ror.org/024bhvy46 Population Services International'),
(59161, 'https://ror.org/05988vk42', 'en', 1, 'https://ror.org/05988vk42 Korean Society of Coloproctology 대한대장항문학회'),
(59162, 'https://ror.org/03wkbzm88', 'en', 1, 'https://ror.org/03wkbzm88 Turkish Thoracic Society Türk Toraks Derneği'),
(59163, 'https://ror.org/00sqvb698', 'en', 1, 'https://ror.org/00sqvb698 Taiwan Lung Cancer Society'),
(59164, 'https://ror.org/04trvzz06', 'en', 1, 'https://ror.org/04trvzz06 Ontario Rheumatology Association'),
(59165, 'https://ror.org/03xaqy997', 'en', 1, 'https://ror.org/03xaqy997 Society for Minimally Invasive Spine Surgery'),
(59166, 'https://ror.org/00z2zyd49', 'en', 1, 'https://ror.org/00z2zyd49 US Apple Association'),
(59167, 'https://ror.org/042gx3p69', 'en', 1, 'https://ror.org/042gx3p69 Society For Pediatric Dermatology'),
(59168, 'https://ror.org/00j2yyv15', 'en', 1, 'https://ror.org/00j2yyv15 Taiwan Society of Cardiology'),
(59169, 'https://ror.org/04y25zx85', 'en', 1, 'https://ror.org/04y25zx85 Taiwan Society of Thrombosis and Hemostasis'),
(59170, 'https://ror.org/01kn25t14', 'en', 1, 'https://ror.org/01kn25t14 Korean Society of Interventional Cardiology 대한심혈관중재학회'),
(59171, 'https://ror.org/00zzaka68', 'en', 1, 'https://ror.org/00zzaka68 Society for Technology in Anesthesia'),
(59172, 'https://ror.org/05mv95n98', 'fr', 1, 'https://ror.org/05mv95n98 France Alzheimer et maladies apparentées France Alzheimer''s and related diseases'),
(59173, 'https://ror.org/04py26v74', 'en', 1, 'https://ror.org/04py26v74 Korean Society of Lipidology and Atherosclerosis 한국지질·동맥경화학회'),
(59174, 'https://ror.org/02a4npq92', 'en', 1, 'https://ror.org/02a4npq92 Society for the Advancement of Blood Management'),
(59175, 'https://ror.org/014v0ay52', 'en', 1, 'https://ror.org/014v0ay52 Society for Promoting Participative Ecosystem Management'),
(59176, 'https://ror.org/02q2ct796', 'en', 1, 'https://ror.org/02q2ct796 Union Settlement'),
(59177, 'https://ror.org/00z3tee21', 'en', 1, 'https://ror.org/00z3tee21 Outpatient Endovascular and Interventional Society'),
(59178, 'https://ror.org/009vxx508', 'en', 1, 'https://ror.org/009vxx508 Tennessee Physical Therapy Association'),
(59179, 'https://ror.org/01e2b1f74', 'en', 1, 'https://ror.org/01e2b1f74 Society for Vascular Surgery'),
(59180, 'https://ror.org/029pcyp29', 'en', 1, 'https://ror.org/029pcyp29 Texas Academy of Family Physicians Foundation'),
(59181, 'https://ror.org/04d9c7c50', 'en', 1, 'https://ror.org/04d9c7c50 Society Hill Reproductive Medicine'),
(59182, 'https://ror.org/04mz17v36', 'en', 1, 'https://ror.org/04mz17v36 Texas Physical Therapy Association'),
(59183, 'https://ror.org/00zfpsw25', 'en', 1, 'https://ror.org/00zfpsw25 The Lung Association Saskatchewan'),
(59184, 'https://ror.org/033bt1t53', 'en', 1, 'https://ror.org/033bt1t53 Palestinian Family Planning and Protection Association'),
(59185, 'https://ror.org/0329bem96', 'en', 1, 'https://ror.org/0329bem96 Malaysian Endocrine and Metabolic Society'),
(59186, 'https://ror.org/057hq8k55', 'en', 1, 'https://ror.org/057hq8k55 Texas Society of Allied Health Professions'),
(59187, 'https://ror.org/01hpbbx98', 'fr', 1, 'https://ror.org/01hpbbx98 Académie de Paris'),
(59188, 'https://ror.org/03kbgb212', 'en', 1, 'https://ror.org/03kbgb212 Society of Alcoholism and other Addictions'),
(59189, 'https://ror.org/01zfzpp43', 'en', 1, 'https://ror.org/01zfzpp43 Malaysian Oil Scientists and Technologists Association'),
(59190, 'https://ror.org/02ymb2422', 'vi', 1, 'https://ror.org/02ymb2422 Hội Tim mạch học Việt Nam Vietnam Heart Association'),
(59191, 'https://ror.org/03v5eb747', 'en', 1, 'https://ror.org/03v5eb747 Malaysian Society of Anaesthesiologists'),
(59192, 'https://ror.org/00f054b56', 'en', 1, 'https://ror.org/00f054b56 Thai Dietetic Association'),
(59193, 'https://ror.org/049yrqz47', 'vi', 1, 'https://ror.org/049yrqz47 Hội Gastroenterology Việt Nam Vietnam Association of Gastroenterology'),
(59194, 'https://ror.org/05vvd0y68', 'en', 1, 'https://ror.org/05vvd0y68 Alzheimer Society London Middlesex'),
(59195, 'https://ror.org/03q39mv91', 'en', 1, 'https://ror.org/03q39mv91 Massage Therapist Association of Alberta'),
(59196, 'https://ror.org/022ktbf55', 'en', 1, 'https://ror.org/022ktbf55 Massage Therapists Association of British Columbia'),
(59197, 'https://ror.org/00krb3q77', 'de', 1, 'https://ror.org/00krb3q77 Freiwillige Akademische Gesellschaft Voluntary Academic Society'),
(59198, 'https://ror.org/01r34sc48', 'en', 1, 'https://ror.org/01r34sc48 Philippine Medical Association'),
(59199, 'https://ror.org/033wnk810', 'en', 1, 'https://ror.org/033wnk810 Voluntary Health Association of Goa'),
(59200, 'https://ror.org/04hgryz27', 'en', 1, 'https://ror.org/04hgryz27 American Professional Society of ADHD and Related Disorders'),
(59201, 'https://ror.org/02607jq78', 'en', 1, 'https://ror.org/02607jq78 Society of Military Orthopaedic Surgeons'),
(59202, 'https://ror.org/0229q5b07', 'en', 1, 'https://ror.org/0229q5b07 Medicon Valley Alliance'),
(59203, 'https://ror.org/023erdr66', 'en', 1, 'https://ror.org/023erdr66 Society of Musculoskeletal Medicine'),
(59204, 'https://ror.org/04z5nag80', 'en', 1, 'https://ror.org/04z5nag80 Medirex Group Academy'),
(59205, 'https://ror.org/01pyv5j09', 'en', 1, 'https://ror.org/01pyv5j09 American Pistachio Growers'),
(59206, 'https://ror.org/04883bn66', 'en', 1, 'https://ror.org/04883bn66 Western Trauma Association'),
(59207, 'https://ror.org/02vdkna52', 'en', 1, 'https://ror.org/02vdkna52 Wisconsin Elks Association'),
(59208, 'https://ror.org/024asvc11', 'en', 1, 'https://ror.org/024asvc11 Wisconsin Parkinson Association'),
(59209, 'https://ror.org/01f233332', 'en', 1, 'https://ror.org/01f233332 Asociación Mexicana para la Investigación Clínica Mexican Association for the Clinical Research'),
(59210, 'https://ror.org/006ds0328', 'en', 1, 'https://ror.org/006ds0328 World Molecular Imaging Society'),
(59211, 'https://ror.org/032k2hj66', 'pt', 1, 'https://ror.org/032k2hj66 Associação Portuguesa de Fertilidade'),
(59212, 'https://ror.org/01t2wgx84', 'pt', 1, 'https://ror.org/01t2wgx84 Associação Portuguesa de Hemofilia e de outras Coagulopatias Congénitas'),
(59213, 'https://ror.org/01xzv1t06', 'en', 1, 'https://ror.org/01xzv1t06 Somali Association of Arizona'),
(59214, 'https://ror.org/0245hme54', 'en', 1, 'https://ror.org/0245hme54 Himalayan Rescue Association'),
(59215, 'https://ror.org/05wry3s62', 'en', 1, 'https://ror.org/05wry3s62 Prader Willi Syndrome Association'),
(59216, 'https://ror.org/012recq09', 'en', 1, 'https://ror.org/012recq09 Society for Pediatric Anesthesia'),
(59217, 'https://ror.org/04z0csp04', 'en', 1, 'https://ror.org/04z0csp04 Primary Care Diabetes Society'),
(59218, 'https://ror.org/04bkr1a40', 'da', 1, 'https://ror.org/04bkr1a40 Psoriasisforeningen'),
(59219, 'https://ror.org/01yn20z87', 'en', 1, 'https://ror.org/01yn20z87 South African Society of Anaesthesiologists'),
(59220, 'https://ror.org/02z8q9w63', 'de', 1, 'https://ror.org/02z8q9w63 Schweizerische Ärztegesellschaft für Psycholytische Therapie'),
(59221, 'https://ror.org/0297tm887', 'en', 1, 'https://ror.org/0297tm887 Vascular Society of Southern Africa'),
(59222, 'https://ror.org/00te3yw40', 'en', 1, 'https://ror.org/00te3yw40 Medical Group of the Carolinas'),
(59223, 'https://ror.org/04kxpwr66', 'en', 1, 'https://ror.org/04kxpwr66 European Society for Diseases of the Esophagus'),
(59224, 'https://ror.org/046sb0j13', 'es', 1, 'https://ror.org/046sb0j13 Asociación Española de Psiquiatría del Niño y el Adolescente'),
(59225, 'https://ror.org/05a3a1625', 'en', 1, 'https://ror.org/05a3a1625 Professional Footballers'' Association'),
(59226, 'https://ror.org/039hp9c94', 'en', 1, 'https://ror.org/039hp9c94 Family Planning Association of Hong Kong'),
(59227, 'https://ror.org/04xpvy130', 'en', 1, 'https://ror.org/04xpvy130 Difficult Airways Society'),
(59228, 'https://ror.org/00ts5sd59', 'en', 1, 'https://ror.org/00ts5sd59 New York Society for the Prevention of Cruelty to Children'),
(59229, 'https://ror.org/03dq7j590', 'es', 1, 'https://ror.org/03dq7j590 Sociedad Española de Cuidados Intensivos Pediátricos'),
(59230, 'https://ror.org/03k553r38', 'en', 1, 'https://ror.org/03k553r38 Qatar Diabetes Association'),
(59231, 'https://ror.org/03t9hh016', 'en', 1, 'https://ror.org/03t9hh016 Mountain Medicine Society of Nepal'),
(59232, 'https://ror.org/01y1na882', 'en', 1, 'https://ror.org/01y1na882 Finnish Association of People with Physical Disabilities'),
(59233, 'https://ror.org/01spyz863', 'es', 1, 'https://ror.org/01spyz863 Sociedad Española de Endoscopia Digestiva'),
(59234, 'https://ror.org/0209kwd29', 'en', 1, 'https://ror.org/0209kwd29 Western Michigan Society of Health Systems Pharmacists'),
(59235, 'https://ror.org/02wspvn72', 'en', 1, 'https://ror.org/02wspvn72 Yin Huo Health Association 银火健康协会'),
(59236, 'https://ror.org/04f2wpy12', 'no', 1, 'https://ror.org/04f2wpy12 Norsk Cøliakiforening'),
(59237, 'https://ror.org/04e72pa13', 'en', 1, 'https://ror.org/04e72pa13 The Radiosurgery Society'),
(59238, 'https://ror.org/02f12qk21', 'en', 1, 'https://ror.org/02f12qk21 The Korean Society of Pediatric Hematology-Oncology'),
(59239, 'https://ror.org/048jjj865', 'es', 1, 'https://ror.org/048jjj865 Sociedad Española de Cirugía Pediátrica'),
(59240, 'https://ror.org/022txv590', 'en', 1, 'https://ror.org/022txv590 The Society for the Relief of Disabled Children 香港弱能兒童護助會'),
(59241, 'https://ror.org/032kph469', 'en', 1, 'https://ror.org/032kph469 The Korean Urological Oncology Society 한국 비뇨기 종양 학회'),
(59242, 'https://ror.org/05j35jp78', 'en', 1, 'https://ror.org/05j35jp78 The Lok Sin Tong Benevolent Society Kowloon 九龍樂善堂'),
(59243, 'https://ror.org/02n3wzn79', 'en', 1, 'https://ror.org/02n3wzn79 The Taiwanese Osteoporosis Association 中華民國骨質疏鬆症學會'),
(59244, 'https://ror.org/05cven481', 'en', 1, 'https://ror.org/05cven481 UK Thalassaemia Society'),
(59245, 'https://ror.org/03t64vv46', 'en', 1, 'https://ror.org/03t64vv46 Phoenix Society for Burn Survivors'),
(59246, 'https://ror.org/01hkxy133', 'es', 1, 'https://ror.org/01hkxy133 Sociedad Española de Periodoncia y Osteointegración'),
(59247, 'https://ror.org/01bvxq084', 'es', 1, 'https://ror.org/01bvxq084 Sociedad Española de Trombosis y Hemostasia'),
(59248, 'https://ror.org/004d7av08', 'en', 1, 'https://ror.org/004d7av08 Sutherland Society'),
(59249, 'https://ror.org/02k7x9210', 'en', 1, 'https://ror.org/02k7x9210 The Korean Academy of Tuberculosis and Respiratory Diseases'),
(59250, 'https://ror.org/03kz34w09', 'en', 1, 'https://ror.org/03kz34w09 Sport Medicine Council of Alberta'),
(59251, 'https://ror.org/04nv6s061', 'en', 1, 'https://ror.org/04nv6s061 Canadian Heart Research Centre'),
(59252, 'https://ror.org/01xepk867', 'en', 1, 'https://ror.org/01xepk867 IMMUNOe Research Center'),
(59253, 'https://ror.org/04q33ey84', 'fr', 1, 'https://ror.org/04q33ey84 Centre Hospitalier Charles Perrens'),
(59254, 'https://ror.org/01pwm0502', 'en', 1, 'https://ror.org/01pwm0502 Canadian VIGOUR Centre'),
(59255, 'https://ror.org/033bq3134', 'en', 1, 'https://ror.org/033bq3134 Israeli Society for the Prevention of Heart Attacks'),
(59256, 'https://ror.org/027tkf265', 'en', 1, 'https://ror.org/027tkf265 Island Hospital'),
(59257, 'https://ror.org/05y1zs562', 'en', 1, 'https://ror.org/05y1zs562 404 General Military Hospital 404 Γενικό Στρατιωτικό Νοσοκομείο'),
(59258, 'https://ror.org/01kebx220', 'en', 1, 'https://ror.org/01kebx220 Clinical Research Organization'),
(59259, 'https://ror.org/01txxxh71', 'fr', 1, 'https://ror.org/01txxxh71 Centre Hospitalier du Pays d''Aix'),
(59260, 'https://ror.org/02h8c3526', 'en', 1, 'https://ror.org/02h8c3526 Cancer Care Specialists of Illinois'),
(59261, 'https://ror.org/056xm2x07', 'ro', 1, 'https://ror.org/056xm2x07 Spitalul Clinic Judetean de Urgenta Sibiu'),
(59262, 'https://ror.org/0267er755', 'fr', 1, 'https://ror.org/0267er755 Les Hôpitaux de Chartres'),
(59263, 'https://ror.org/04pfm8b84', 'en', 1, 'https://ror.org/04pfm8b84 Acadia Hospital'),
(59264, 'https://ror.org/02d741577', 'fr', 1, 'https://ror.org/02d741577 Centre Hospitalier Régional de Metz-Thionville'),
(59265, 'https://ror.org/01rxc2g24', 'no_lang_code', 1, 'https://ror.org/01rxc2g24 Accurate Clinical Management (United States)'),
(59266, 'https://ror.org/025yckn40', 'en', 1, 'https://ror.org/025yckn40 KSK Medical'),
(59267, 'https://ror.org/002d8xd40', 'no_lang_code', 1, 'https://ror.org/002d8xd40 Accurate Clinical Research (United States)'),
(59268, 'https://ror.org/03z5qqj48', 'en', 1, 'https://ror.org/03z5qqj48 Adam International Hospital'),
(59269, 'https://ror.org/03gsbap19', 'en', 1, 'https://ror.org/03gsbap19 Clinical Trial Center Maastricht'),
(59270, 'https://ror.org/00dyr0c82', 'en', 1, 'https://ror.org/00dyr0c82 Adena Regional Medical Center'),
(59271, 'https://ror.org/05908bk79', 'en', 1, 'https://ror.org/05908bk79 Cancer Center of Western Wisconsin'),
(59272, 'https://ror.org/0055t9634', 'en', 1, 'https://ror.org/0055t9634 Clinical Trials of South Carolina'),
(59273, 'https://ror.org/02wqv1w77', 'fr', 1, 'https://ror.org/02wqv1w77 Clinique du Pont Saint-Vaast'),
(59274, 'https://ror.org/0487c1f17', 'en', 1, 'https://ror.org/0487c1f17 Advanced Radiation Centers of New York'),
(59275, 'https://ror.org/023p7x818', 'en', 1, 'https://ror.org/023p7x818 Advocate Center for Pediatric Research'),
(59276, 'https://ror.org/03743p518', 'fr', 1, 'https://ror.org/03743p518 Imagerie Médicale et Radiothérapie Drôme Ardèche'),
(59277, 'https://ror.org/02hxr7787', 'en', 1, 'https://ror.org/02hxr7787 Cancer Centers of Southwest Oklahoma'),
(59278, 'https://ror.org/04pmj8905', 'no_lang_code', 1, 'https://ror.org/04pmj8905 CM Hospital'),
(59279, 'https://ror.org/01fepwa31', 'fr', 1, 'https://ror.org/01fepwa31 Clinique du Sport'),
(59280, 'https://ror.org/05xfh8p29', 'no_lang_code', 1, 'https://ror.org/05xfh8p29 Baoji City Central Hospital 宝鸡市中心医院'),
(59281, 'https://ror.org/052w8rh87', 'no_lang_code', 1, 'https://ror.org/052w8rh87 Agunco'),
(59282, 'https://ror.org/02pedxm79', 'en', 1, 'https://ror.org/02pedxm79 The Centre of Chinese Medicine'),
(59283, 'https://ror.org/031pkxq11', 'no_lang_code', 1, 'https://ror.org/031pkxq11 Baotou Central Hospital 包头市中心医院'),
(59284, 'https://ror.org/03yhxyz98', 'en', 1, 'https://ror.org/03yhxyz98 Chinese Medical Center'),
(59285, 'https://ror.org/03abchz62', 'en', 1, 'https://ror.org/03abchz62 Adventist Health Bakersfield'),
(59286, 'https://ror.org/02ak4m037', 'fr', 1, 'https://ror.org/02ak4m037 Institut de Cancérologie de Bourgogne'),
(59287, 'https://ror.org/03bq83s83', 'en', 1, 'https://ror.org/03bq83s83 Capital Health Medical Center Hopewell'),
(59288, 'https://ror.org/01yegct87', 'en', 1, 'https://ror.org/01yegct87 Commonwealth Cancer Center'),
(59289, 'https://ror.org/033brdk22', 'no_lang_code', 1, 'https://ror.org/033brdk22 Centrexion Therapeutics (United States)'),
(59290, 'https://ror.org/049w02t38', 'en', 1, 'https://ror.org/049w02t38 Cardiovascular Clinical Science Foundation'),
(59291, 'https://ror.org/05rtpzn26', 'pt', 1, 'https://ror.org/05rtpzn26 Centro Hospitalar do Baixo Vouga'),
(59292, 'https://ror.org/0025r1k74', 'pt', 1, 'https://ror.org/0025r1k74 Centro Hospitalar Tondela-Viseu'),
(59293, 'https://ror.org/01a4ndw62', 'en', 1, 'https://ror.org/01a4ndw62 Chaitanya Hospital And Nursing Home'),
(59294, 'https://ror.org/02s70bh95', 'en', 1, 'https://ror.org/02s70bh95 Cardiovascular Research Center'),
(59295, 'https://ror.org/01krfgm39', 'en', 1, 'https://ror.org/01krfgm39 Alabama Clincal Therapeutics'),
(59296, 'https://ror.org/01cqbdz44', 'en', 1, 'https://ror.org/01cqbdz44 Community Health Center of Franklin County'),
(59297, 'https://ror.org/04kqtxx50', 'en', 1, 'https://ror.org/04kqtxx50 Chang Hua Hospital 衛生福利部彰化醫院'),
(59298, 'https://ror.org/03det7895', 'en', 1, 'https://ror.org/03det7895 Oncology Hematology Associates of Saginaw Valley'),
(59299, 'https://ror.org/02tzmns59', 'en', 1, 'https://ror.org/02tzmns59 Community Hospital of Anaconda'),
(59300, 'https://ror.org/00zn0ha79', 'en', 1, 'https://ror.org/00zn0ha79 Aljazeera Hospital'),
(59301, 'https://ror.org/04pgw5133', 'en', 1, 'https://ror.org/04pgw5133 Charlotte Hungerford Hospital'),
(59302, 'https://ror.org/057r18x87', 'no_lang_code', 1, 'https://ror.org/057r18x87 All Sum Research Center (Canada)'),
(59303, 'https://ror.org/035wxqn98', 'en', 1, 'https://ror.org/035wxqn98 Carolinas Center for Advanced Management of Pain'),
(59304, 'https://ror.org/008x2am79', 'en', 1, 'https://ror.org/008x2am79 Chengdu Women''s and Children''s Central Hospital 成都市妇女儿童中心医院'),
(59305, 'https://ror.org/00mfnf459', 'en', 1, 'https://ror.org/00mfnf459 Carson Tahoe Regional Medical Center'),
(59306, 'https://ror.org/059ape351', 'no_lang_code', 1, 'https://ror.org/059ape351 CCM Clinical Research Group (United States)'),
(59307, 'https://ror.org/01f8v1064', 'en', 1, 'https://ror.org/01f8v1064 Altru Health System'),
(59308, 'https://ror.org/02vz7hv03', 'en', 1, 'https://ror.org/02vz7hv03 Comprehensive Blood & Cancer Center'),
(59309, 'https://ror.org/0576xfs30', 'en', 1, 'https://ror.org/0576xfs30 Behman Hospital'),
(59310, 'https://ror.org/04v67sh61', 'en', 1, 'https://ror.org/04v67sh61 Centeno-Schultz Clinic'),
(59311, 'https://ror.org/0581hjr43', 'en', 1, 'https://ror.org/0581hjr43 Bendigo Hospital'),
(59312, 'https://ror.org/022k58k47', 'en', 1, 'https://ror.org/022k58k47 Anchorage and Valley Radiation Therapy Centers'),
(59313, 'https://ror.org/019g4tc51', 'pt', 1, 'https://ror.org/019g4tc51 Androfert'),
(59314, 'https://ror.org/00m7jsz42', 'en', 1, 'https://ror.org/00m7jsz42 European Society for Hyperthermic Oncology'),
(59315, 'https://ror.org/009py3f05', 'en', 1, 'https://ror.org/009py3f05 Center for Child and Family Health'),
(59316, 'https://ror.org/020wka979', 'en', 1, 'https://ror.org/020wka979 CHRISTUS Highland Medical Center'),
(59317, 'https://ror.org/01qwms897', 'en', 1, 'https://ror.org/01qwms897 Bernstein Clinical Research Center'),
(59318, 'https://ror.org/05gdxv139', 'en', 1, 'https://ror.org/05gdxv139 Andros Clinica Day Surgery'),
(59319, 'https://ror.org/05trqa150', 'en', 1, 'https://ror.org/05trqa150 CHRISTUS St. Frances Cabrini Hospital'),
(59320, 'https://ror.org/04je70584', 'en', 1, 'https://ror.org/04je70584 Anhui Provincial Children''s Hospital 安徽省儿童医院'),
(59321, 'https://ror.org/00j1j3213', 'en', 1, 'https://ror.org/00j1j3213 Beverly Hills Cancer Center'),
(59322, 'https://ror.org/019ph5n64', 'en', 1, 'https://ror.org/019ph5n64 AnMed Health'),
(59323, 'https://ror.org/02pg06c63', 'en', 1, 'https://ror.org/02pg06c63 CHRISTUS St. Vincent Regional Cancer Center'),
(59324, 'https://ror.org/01t2rqa20', 'en', 1, 'https://ror.org/01t2rqa20 Annie Penn Hospital'),
(59325, 'https://ror.org/046ww9q34', 'it', 1, 'https://ror.org/046ww9q34 Casa di Cura Città di Roma'),
(59326, 'https://ror.org/05fzfv584', 'en', 1, 'https://ror.org/05fzfv584 Berlin Center for Epidemiology and Health Research'),
(59327, 'https://ror.org/005cttr84', 'en', 1, 'https://ror.org/005cttr84 Clackamas Radiation Oncology Center'),
(59328, 'https://ror.org/00dt6z133', 'en', 1, 'https://ror.org/00dt6z133 Big Horn Basin Regional Cancer Center'),
(59329, 'https://ror.org/03vrg9x02', 'en', 1, 'https://ror.org/03vrg9x02 Arkansas Heart Hospital'),
(59330, 'https://ror.org/03dp65d64', 'en', 1, 'https://ror.org/03dp65d64 Billings Clinic Cody'),
(59331, 'https://ror.org/053gtbc96', 'no_lang_code', 1, 'https://ror.org/053gtbc96 QPS (United States)'),
(59332, 'https://ror.org/022ases92', 'en', 1, 'https://ror.org/022ases92 Coram Clinical Trials'),
(59333, 'https://ror.org/00ppwb536', 'en', 1, 'https://ror.org/00ppwb536 Cleveland Sleep Research Center'),
(59334, 'https://ror.org/041045722', 'en', 1, 'https://ror.org/041045722 Bloom Fertility Centre'),
(59335, 'https://ror.org/04qjz7g79', 'sr', 1, 'https://ror.org/04qjz7g79 Klinika za Psihijatrijske Bolesti Dr Laza Lazarević'),
(59336, 'https://ror.org/00znarq76', 'en', 1, 'https://ror.org/00znarq76 Blanchard Valley Health System'),
(59337, 'https://ror.org/0498ha267', 'en', 1, 'https://ror.org/0498ha267 Armstrong Center for Medicine & Health'),
(59338, 'https://ror.org/018djsc63', 'fr', 1, 'https://ror.org/018djsc63 Espoir pour la Sante'),
(59339, 'https://ror.org/05hk5hv71', 'en', 1, 'https://ror.org/05hk5hv71 Stormont Vail Health'),
(59340, 'https://ror.org/05p9zq845', 'no_lang_code', 1, 'https://ror.org/05p9zq845 QPS (India)'),
(59341, 'https://ror.org/02trmev56', 'no_lang_code', 1, 'https://ror.org/02trmev56 Twist Bioscience (United States)'),
(59342, 'https://ror.org/02dx38m31', 'en', 1, 'https://ror.org/02dx38m31 Scientific Medical School Dr. Synergetic'),
(59343, 'https://ror.org/01gdexd83', 'en', 1, 'https://ror.org/01gdexd83 Clinica Gastrobese'),
(59344, 'https://ror.org/043gt9j70', 'en', 1, 'https://ror.org/043gt9j70 Arthritis Treatment Center'),
(59345, 'https://ror.org/01jscks03', 'en', 1, 'https://ror.org/01jscks03 Clinical Alliance for Research and Education-Infectious Diseases'),
(59346, 'https://ror.org/03pj64m52', 'en', 1, 'https://ror.org/03pj64m52 Bone and Joint Clinic of Baton Rouge'),
(59347, 'https://ror.org/015dptv07', 'en', 1, 'https://ror.org/015dptv07 Athens Orthopedic Clinic'),
(59348, 'https://ror.org/00axjbs56', 'en', 1, 'https://ror.org/00axjbs56 Borland Groover Clinic'),
(59349, 'https://ror.org/03ynpnz81', 'en', 1, 'https://ror.org/03ynpnz81 Atlantia Food Clinical Trials'),
(59350, 'https://ror.org/03b5vk392', 'en', 1, 'https://ror.org/03b5vk392 Center for Neurosciences'),
(59351, 'https://ror.org/026g21e16', 'en', 1, 'https://ror.org/026g21e16 Center for Atlantic Oral Surgery'),
(59352, 'https://ror.org/04pmrdd93', 'no_lang_code', 1, 'https://ror.org/04pmrdd93 ATP Clinical Research (United States)'),
(59353, 'https://ror.org/01kjnq750', 'en', 1, 'https://ror.org/01kjnq750 Atrium Medical Cente'),
(59354, 'https://ror.org/033hhy390', 'en', 1, 'https://ror.org/033hhy390 Boushahri Clinic'),
(59355, 'https://ror.org/04tf0ye64', 'en', 1, 'https://ror.org/04tf0ye64 Center for Psychiatry and Behavioral Medicine'),
(59356, 'https://ror.org/02wvtac27', 'en', 1, 'https://ror.org/02wvtac27 Clinical Pharmacology of Miami'),
(59357, 'https://ror.org/03nye1643', 'es', 1, 'https://ror.org/03nye1643 Complejo Hospitalario Dr. Arnulfo Arias Madrid'),
(59358, 'https://ror.org/057q38q18', 'en', 1, 'https://ror.org/057q38q18 Aurora BayCare Medical Center'),
(59359, 'https://ror.org/019a4hz49', 'en', 1, 'https://ror.org/019a4hz49 Clinical Research Atlanta'),
(59360, 'https://ror.org/041hmmv49', 'en', 1, 'https://ror.org/041hmmv49 Bronx Psychiatric Center'),
(59361, 'https://ror.org/04g9ryv67', 'en', 1, 'https://ror.org/04g9ryv67 Brooklyn Chest Hospital'),
(59362, 'https://ror.org/030edbc02', 'no_lang_code', 1, 'https://ror.org/030edbc02 Clinical Research Consultants (United States)'),
(59363, 'https://ror.org/026z0sj95', 'en', 1, 'https://ror.org/026z0sj95 California Center for Sleep Disorders'),
(59364, 'https://ror.org/01vy2pz67', 'en', 1, 'https://ror.org/01vy2pz67 Genesis Healthcare'),
(59365, 'https://ror.org/03xphxk37', 'es', 1, 'https://ror.org/03xphxk37 Centro de Implantología Cirugía Oral y Maxilofacial'),
(59366, 'https://ror.org/05d7dmk69', 'en', 1, 'https://ror.org/05d7dmk69 ProHealth Care'),
(59367, 'https://ror.org/00m4szf61', 'en', 1, 'https://ror.org/00m4szf61 Aurora Medical Center in Summit'),
(59368, 'https://ror.org/042rbpa77', 'en', 1, 'https://ror.org/042rbpa77 Damascus Hospital مستشفى دمشق'),
(59369, 'https://ror.org/00qbrqy09', 'en', 1, 'https://ror.org/00qbrqy09 Centerpoint Medical Center'),
(59370, 'https://ror.org/01pne6c96', 'no_lang_code', 1, 'https://ror.org/01pne6c96 Dar AlMaraa Center'),
(59371, 'https://ror.org/035ntcd25', 'en', 1, 'https://ror.org/035ntcd25 Central Vermont Medical Center'),
(59372, 'https://ror.org/02996kw76', 'en', 1, 'https://ror.org/02996kw76 Delaware Clinical & Laboratory Physicians'),
(59373, 'https://ror.org/04t5pq748', 'en', 1, 'https://ror.org/04t5pq748 Delos Clinical'),
(59374, 'https://ror.org/02j2pa220', 'en', 1, 'https://ror.org/02j2pa220 Delray Medical Center'),
(59375, 'https://ror.org/02f5z8140', 'en', 1, 'https://ror.org/02f5z8140 Alberta Hip and Knee Clinic'),
(59376, 'https://ror.org/018a3b122', 'en', 1, 'https://ror.org/018a3b122 Moriggia Pelascini Hospital Ospedale Moriggia Pelascini'),
(59377, 'https://ror.org/05p7ffb87', 'en', 1, 'https://ror.org/05p7ffb87 Riyadh Fertility and Reproductive Health Center مركز الرياض للصحة الانجابية'),
(59378, 'https://ror.org/02hd7d161', 'en', 1, 'https://ror.org/02hd7d161 Deyang Stomatological Hospital 德阳口腔医院'),
(59379, 'https://ror.org/04rg77e64', 'fr', 1, 'https://ror.org/04rg77e64 Centre d''Etudes et de Recherches pour l''Intensification du Traitement du Diabète'),
(59380, 'https://ror.org/02tj1w674', 'no_lang_code', 1, 'https://ror.org/02tj1w674 Shahid Kamyab Hospital بیمارستان شهید کامیاب'),
(59381, 'https://ror.org/01zjzsn17', 'en', 1, 'https://ror.org/01zjzsn17 Marshfield Clinic Weston Center'),
(59382, 'https://ror.org/047xc1q35', 'no_lang_code', 1, 'https://ror.org/047xc1q35 Eminence Clinical Research (United States)'),
(59383, 'https://ror.org/01qsyak13', 'nl', 1, 'https://ror.org/01qsyak13 Dianet'),
(59384, 'https://ror.org/03xhmcf52', 'en', 1, 'https://ror.org/03xhmcf52 Digestive Health Center of Louisiana'),
(59385, 'https://ror.org/05bn46e89', 'en', 1, 'https://ror.org/05bn46e89 Emory University Orthopaedics and Spine Hospital'),
(59386, 'https://ror.org/01cn1vy21', 'no_lang_code', 1, 'https://ror.org/01cn1vy21 Empire Clinical Research (United States)'),
(59387, 'https://ror.org/00pwnk256', 'it', 1, 'https://ror.org/00pwnk256 Centro Medicina della Riproduzione'),
(59388, 'https://ror.org/00yh56t79', 'en', 1, 'https://ror.org/00yh56t79 Doctors Hospital at Renaissance'),
(59389, 'https://ror.org/045xrnk02', 'fr', 1, 'https://ror.org/045xrnk02 Doctors Without Borders Médecins Sans Frontières'),
(59390, 'https://ror.org/03d5yat74', 'en', 1, 'https://ror.org/03d5yat74 Fuzhou Pulmonary Hospital of Fujian'),
(59391, 'https://ror.org/05ntm4g04', 'en', 1, 'https://ror.org/05ntm4g04 eSwiss Medical and Surgical Center'),
(59392, 'https://ror.org/05fbm4611', 'en', 1, 'https://ror.org/05fbm4611 University Hospitals Geauga Medical Center'),
(59393, 'https://ror.org/05fcjtk81', 'no_lang_code', 1, 'https://ror.org/05fcjtk81 Ethica (Canada)'),
(59394, 'https://ror.org/04td0jm23', 'en', 1, 'https://ror.org/04td0jm23 Euromedic'),
(59395, 'https://ror.org/038079n45', 'en', 1, 'https://ror.org/038079n45 Holy Family Memorial Hospital'),
(59396, 'https://ror.org/00z5hk082', 'en', 1, 'https://ror.org/00z5hk082 Cardiovascular European Research Center'),
(59397, 'https://ror.org/05fvh4506', 'en', 1, 'https://ror.org/05fvh4506 General Hospital of Filiates Γενικό Νοσοκομείο – Κ.Υ. Φιλιατών'),
(59398, 'https://ror.org/03fttgk04', 'en', 1, 'https://ror.org/03fttgk04 Hong Kong Eye Hospital 香港眼科醫院'),
(59399, 'https://ror.org/025ryw752', 'en', 1, 'https://ror.org/025ryw752 Evergreen General Hospital'),
(59400, 'https://ror.org/003vps097', 'en', 1, 'https://ror.org/003vps097 Hope Cancer Clinic'),
(59401, 'https://ror.org/05xgv5563', 'de', 1, 'https://ror.org/05xgv5563 Tauern Hospital Zell am See Tauernkrankenhaus Zell am See'),
(59402, 'https://ror.org/01bs2hb43', 'en', 1, 'https://ror.org/01bs2hb43 Eye Center of North Florida'),
(59403, 'https://ror.org/04z99zb45', 'en', 1, 'https://ror.org/04z99zb45 Genesee Cancer & Blood Disease'),
(59404, 'https://ror.org/00dqec984', 'en', 1, 'https://ror.org/00dqec984 Hope Women''s Cancer Centers'),
(59405, 'https://ror.org/00tmbhz16', 'en', 1, 'https://ror.org/00tmbhz16 Genuine Research Center'),
(59406, 'https://ror.org/057601z40', 'en', 1, 'https://ror.org/057601z40 Tidelands Health'),
(59407, 'https://ror.org/005w1rm61', 'pt', 1, 'https://ror.org/005w1rm61 Hospital Alvorada'),
(59408, 'https://ror.org/05vvryp86', 'de', 1, 'https://ror.org/05vvryp86 Deutsches Zentrum für Musiktherapieforschung');
INSERT INTO `rors` VALUES
(59409, 'https://ror.org/04aercx33', 'pt', 1, 'https://ror.org/04aercx33 Hospital Ana Nery'),
(59410, 'https://ror.org/03kyy9y42', 'pt', 1, 'https://ror.org/03kyy9y42 Hospital Beatriz Ângelo'),
(59411, 'https://ror.org/02rcdta59', 'fr', 1, 'https://ror.org/02rcdta59 Centre Hospitalier d''Angoulême'),
(59412, 'https://ror.org/043hdf156', 'no_lang_code', 1, 'https://ror.org/043hdf156 Global BioClinical (United States)'),
(59413, 'https://ror.org/01twnqc61', 'en', 1, 'https://ror.org/01twnqc61 Good Samaritan Hospital'),
(59414, 'https://ror.org/05mx4yp68', 'en', 1, 'https://ror.org/05mx4yp68 Kennedy Clinic Hospital'),
(59415, 'https://ror.org/04rdhz191', 'es', 1, 'https://ror.org/04rdhz191 Hospital Comarcal de Inca'),
(59416, 'https://ror.org/022j22r70', 'pt', 1, 'https://ror.org/022j22r70 CUF Porto Hospital'),
(59417, 'https://ror.org/00pbfjy25', 'en', 1, 'https://ror.org/00pbfjy25 Grandview Medical Center'),
(59418, 'https://ror.org/0412yvb02', 'en', 1, 'https://ror.org/0412yvb02 Graves Gilbert Clinic'),
(59419, 'https://ror.org/050fnhx85', 'en', 1, 'https://ror.org/050fnhx85 Great Falls Clinic'),
(59420, 'https://ror.org/04t455g84', 'en', 1, 'https://ror.org/04t455g84 Great Lakes Cancer Management Specialists'),
(59421, 'https://ror.org/05w107e31', 'en', 1, 'https://ror.org/05w107e31 Great Lakes Clinical Trials'),
(59422, 'https://ror.org/01zqbjs16', 'pt', 1, 'https://ror.org/01zqbjs16 Hospital de Messejana'),
(59423, 'https://ror.org/0546e1p84', 'en', 1, 'https://ror.org/0546e1p84 Great Plains Regional Medical Center'),
(59424, 'https://ror.org/00tp6cr77', 'en', 1, 'https://ror.org/00tp6cr77 Fertility Centers of Illinois'),
(59425, 'https://ror.org/00dd86343', 'es', 1, 'https://ror.org/00dd86343 Hospital de Nens de Barcelona'),
(59426, 'https://ror.org/01y9dza79', 'en', 1, 'https://ror.org/01y9dza79 Florida Academic Dermatology Center'),
(59427, 'https://ror.org/04x0cjk42', 'en', 1, 'https://ror.org/04x0cjk42 Greater Regional Medical Center'),
(59428, 'https://ror.org/01qts1d13', 'en', 1, 'https://ror.org/01qts1d13 St. Mary''s Hospital Medical Center'),
(59429, 'https://ror.org/01ddyfs17', 'en', 1, 'https://ror.org/01ddyfs17 Group Health Centre'),
(59430, 'https://ror.org/04raj3421', 'es', 1, 'https://ror.org/04raj3421 Hospital El Escorial'),
(59431, 'https://ror.org/02d1y4603', 'pt', 1, 'https://ror.org/02d1y4603 Hospital Ernesto Dornelles'),
(59432, 'https://ror.org/0221nva21', 'en', 1, 'https://ror.org/0221nva21 Footscray Hospital'),
(59433, 'https://ror.org/054jcxz87', 'fr', 1, 'https://ror.org/054jcxz87 Groupe Hospitalier de la Région de Mulhouse et Sud Alsace'),
(59434, 'https://ror.org/04cd6tt69', 'pt', 1, 'https://ror.org/04cd6tt69 Hospital Estadual Centra'),
(59435, 'https://ror.org/05a55tn50', 'en', 1, 'https://ror.org/05a55tn50 Forbes Hospital'),
(59436, 'https://ror.org/03vxcm824', 'es', 1, 'https://ror.org/03vxcm824 Hospital Pedro de Elizalde'),
(59437, 'https://ror.org/05jpvp811', 'en', 1, 'https://ror.org/05jpvp811 Fortius Clinic'),
(59438, 'https://ror.org/01zwdgr60', 'fr', 1, 'https://ror.org/01zwdgr60 Groupe Hospitalier Diaconesses Croix Saint-Simon'),
(59439, 'https://ror.org/05ngx7r22', 'es', 1, 'https://ror.org/05ngx7r22 Hospital de Guadarrama'),
(59440, 'https://ror.org/0595wzt18', 'en', 1, 'https://ror.org/0595wzt18 Guangdong 999 Brain Hospital 广东999脑科医院'),
(59441, 'https://ror.org/02hrfw153', 'es', 1, 'https://ror.org/02hrfw153 Hospital Regional de Concepción'),
(59442, 'https://ror.org/04dr2j587', 'es', 1, 'https://ror.org/04dr2j587 Hospital Dr. Gustavo Fricke'),
(59443, 'https://ror.org/03trtgn80', 'pt', 1, 'https://ror.org/03trtgn80 Hospital Infantil Albert Sabin'),
(59444, 'https://ror.org/01v2qkv12', 'en', 1, 'https://ror.org/01v2qkv12 NEA Baptist Memorial Hospital'),
(59445, 'https://ror.org/04zdsga82', 'en', 1, 'https://ror.org/04zdsga82 Ruikang Affiliated Hospital of Guangxi Medical University 广西中医药大学附属瑞康医院'),
(59446, 'https://ror.org/01xst2e75', 'es', 1, 'https://ror.org/01xst2e75 Hospital General Mateu Orfila'),
(59447, 'https://ror.org/01y1pf628', 'en', 1, 'https://ror.org/01y1pf628 Gwinnett Medical Center'),
(59448, 'https://ror.org/01b9fxp59', 'es', 1, 'https://ror.org/01b9fxp59 Hospital HLA Mediterráneo'),
(59449, 'https://ror.org/02v97gj05', 'en', 1, 'https://ror.org/02v97gj05 Firma Clinical Research'),
(59450, 'https://ror.org/02rh62014', 'en', 1, 'https://ror.org/02rh62014 US Cancer Management Corporation'),
(59451, 'https://ror.org/00apfzg17', 'pt', 1, 'https://ror.org/00apfzg17 Hospital Ortopédico de Passo Fundo'),
(59452, 'https://ror.org/021h7aq11', 'en', 1, 'https://ror.org/021h7aq11 Hand and Upper Limb Clinic'),
(59453, 'https://ror.org/044jw3b45', 'pt', 1, 'https://ror.org/044jw3b45 Hospital Pitangueiras'),
(59454, 'https://ror.org/05mrmvf37', 'no_lang_code', 1, 'https://ror.org/05mrmvf37 Hanzhong Central Hospital 汉中市中心医院'),
(59455, 'https://ror.org/04ym85q78', 'es', 1, 'https://ror.org/04ym85q78 Hospital Plató'),
(59456, 'https://ror.org/03d4twy92', 'en', 1, 'https://ror.org/03d4twy92 Fuling Center Hospital of Chongqing 重庆市涪陵中心医院'),
(59457, 'https://ror.org/0188pyf14', 'en', 1, 'https://ror.org/0188pyf14 Hattiesburg Clinic'),
(59458, 'https://ror.org/01775kt69', 'es', 1, 'https://ror.org/01775kt69 Hospitales Regionales de Alta Especialidad'),
(59459, 'https://ror.org/03xzqpb53', 'pt', 1, 'https://ror.org/03xzqpb53 Hospital Regional de Presidente Prudente'),
(59460, 'https://ror.org/01ncapf89', 'en', 1, 'https://ror.org/01ncapf89 Healthpoint'),
(59461, 'https://ror.org/052zacv77', 'pt', 1, 'https://ror.org/052zacv77 Hospital Regional Publico do Araguaia'),
(59462, 'https://ror.org/05f8fxj66', 'pt', 1, 'https://ror.org/05f8fxj66 Hospital Risoleta Tolentino Neves'),
(59463, 'https://ror.org/000n8re15', 'es', 1, 'https://ror.org/000n8re15 Hospital San Juan de la Cruz'),
(59464, 'https://ror.org/006gamx40', 'es', 1, 'https://ror.org/006gamx40 Hospital Universitari de Santa Maria'),
(59465, 'https://ror.org/01yvh4c79', 'en', 1, 'https://ror.org/01yvh4c79 Hebei Yiling Hospital'),
(59466, 'https://ror.org/05ng03c96', 'pt', 1, 'https://ror.org/05ng03c96 Hospital São Domingos'),
(59467, 'https://ror.org/01v1wt982', 'no_lang_code', 1, 'https://ror.org/01v1wt982 Imam Abdulrahman Al Faisal Hospital'),
(59468, 'https://ror.org/02r8sh830', 'de', 1, 'https://ror.org/02r8sh830 Helios Universitätsklinikum Wuppertal'),
(59469, 'https://ror.org/00mvdvy94', 'pt', 1, 'https://ror.org/00mvdvy94 Hospital São José do Avaí'),
(59470, 'https://ror.org/00d5ej794', 'en', 1, 'https://ror.org/00d5ej794 Hematology\\Oncology Clinic'),
(59471, 'https://ror.org/015c7cy32', 'pt', 1, 'https://ror.org/015c7cy32 Hospital TotalCor'),
(59472, 'https://ror.org/016acvd35', 'en', 1, 'https://ror.org/016acvd35 Henry Ford Macomb Hospital'),
(59473, 'https://ror.org/03247yf20', 'de', 1, 'https://ror.org/03247yf20 Hernienzentrum Rottenburg am Neckar'),
(59474, 'https://ror.org/00ezv4e18', 'es', 1, 'https://ror.org/00ezv4e18 Hospital Viamed Valvanera'),
(59475, 'https://ror.org/02wn5ed02', 'es', 1, 'https://ror.org/02wn5ed02 Hospitales Nisa'),
(59476, 'https://ror.org/04xwcs454', 'en', 1, 'https://ror.org/04xwcs454 Inner Mongolia International Mongolian Hospital 内蒙古国际蒙医院官网'),
(59477, 'https://ror.org/00k24ct23', 'en', 1, 'https://ror.org/00k24ct23 Hillcrest Hospital'),
(59478, 'https://ror.org/04ywqtw26', 'en', 1, 'https://ror.org/04ywqtw26 Houston Methodist Sugar Land Hospital'),
(59479, 'https://ror.org/02sdeme12', 'en', 1, 'https://ror.org/02sdeme12 Innovation Research Center'),
(59480, 'https://ror.org/0152qcr22', 'en', 1, 'https://ror.org/0152qcr22 HSHS St. Nicholas Hospital'),
(59481, 'https://ror.org/01zjb9d64', 'no_lang_code', 1, 'https://ror.org/01zjb9d64 Hiroshima Kyoritsu Hospital 広島共立病院'),
(59482, 'https://ror.org/004s4b254', 'en', 1, 'https://ror.org/004s4b254 Inspira Medical Center Vineland'),
(59483, 'https://ror.org/00sgef587', 'en', 1, 'https://ror.org/00sgef587 Inspira Medical Center Woodbury'),
(59484, 'https://ror.org/00p36v374', 'en', 1, 'https://ror.org/00p36v374 Humanity & Health'),
(59485, 'https://ror.org/0043n7w07', 'en', 1, 'https://ror.org/0043n7w07 Integrative Clinical Trials'),
(59486, 'https://ror.org/04gnkpp77', 'en', 1, 'https://ror.org/04gnkpp77 Jingzhou Central Hospital 荆州市中心医院'),
(59487, 'https://ror.org/05mnrce88', 'el', 1, 'https://ror.org/05mnrce88 Iakentro'),
(59488, 'https://ror.org/00126za90', 'fr', 1, 'https://ror.org/00126za90 Hôpital d''Instruction des Armées Clermont-Tonnerre'),
(59489, 'https://ror.org/023gzq092', 'en', 1, 'https://ror.org/023gzq092 José R. Reyes Memorial Medical Center'),
(59490, 'https://ror.org/00131m973', 'en', 1, 'https://ror.org/00131m973 Mack Eye Center'),
(59491, 'https://ror.org/01xyh8d66', 'en', 1, 'https://ror.org/01xyh8d66 Magrabi Hospitals and Centers'),
(59492, 'https://ror.org/038t4rm13', 'en', 1, 'https://ror.org/038t4rm13 Kadlec Clinic'),
(59493, 'https://ror.org/0549yzf33', 'en', 1, 'https://ror.org/0549yzf33 Main Line Center for Laser Surgery'),
(59494, 'https://ror.org/04ac7y941', 'en', 1, 'https://ror.org/04ac7y941 Kaiping Central Hospital 开平市中心医院'),
(59495, 'https://ror.org/02vw1hj64', 'en', 1, 'https://ror.org/02vw1hj64 Main Line Fertility'),
(59496, 'https://ror.org/05w1qwk94', 'en', 1, 'https://ror.org/05w1qwk94 Kaiser Permanente Vacaville Medical Center'),
(59497, 'https://ror.org/00p327v48', 'en', 1, 'https://ror.org/00p327v48 International Clinic of Rehabilitation'),
(59498, 'https://ror.org/05xenh663', 'en', 1, 'https://ror.org/05xenh663 Kaiser Permanente Tysons Corner Medical Center'),
(59499, 'https://ror.org/05v5gqt78', 'en', 1, 'https://ror.org/05v5gqt78 International Spine, Pain & Performance'),
(59500, 'https://ror.org/03ecr5c85', 'en', 1, 'https://ror.org/03ecr5c85 Kaiser Permanente Burke Medical Center'),
(59501, 'https://ror.org/05ek56k41', 'en', 1, 'https://ror.org/05ek56k41 Kaiser Permanente Capitol Hill Medical Center'),
(59502, 'https://ror.org/02jng7h30', 'en', 1, 'https://ror.org/02jng7h30 Kaiser Permanente Gaithersburg Medical Center'),
(59503, 'https://ror.org/03h6d4166', 'en', 1, 'https://ror.org/03h6d4166 Iowa Lutheran Hospital'),
(59504, 'https://ror.org/00qjyeh27', 'en', 1, 'https://ror.org/00qjyeh27 Kaiser Permanente Rancho Cordova Medical Offices'),
(59505, 'https://ror.org/05ykvn529', 'en', 1, 'https://ror.org/05ykvn529 Manhattan Psychiatric Center'),
(59506, 'https://ror.org/03t30gb84', 'en', 1, 'https://ror.org/03t30gb84 Kaiser Permanente Woodlawn Medical Center'),
(59507, 'https://ror.org/04z5qv209', 'en', 1, 'https://ror.org/04z5qv209 Kalispell Regional Medical Center'),
(59508, 'https://ror.org/00w9n5q09', 'en', 1, 'https://ror.org/00w9n5q09 University Hospitals Landerbrook Health Center'),
(59509, 'https://ror.org/03qz9r039', 'en', 1, 'https://ror.org/03qz9r039 Rwanda Military Hospital'),
(59510, 'https://ror.org/029485619', 'en', 1, 'https://ror.org/029485619 Israel Sports Center for the Disabled מרכז הספורט לנכים בישראל'),
(59511, 'https://ror.org/03t3mc268', 'en', 1, 'https://ror.org/03t3mc268 Pardee Hospital'),
(59512, 'https://ror.org/00r7hs904', 'it', 1, 'https://ror.org/00r7hs904 Istituto Clinico Sant''Ambrogio'),
(59513, 'https://ror.org/04x3fmq96', 'en', 1, 'https://ror.org/04x3fmq96 IVI Middle East Fertility Clinic'),
(59514, 'https://ror.org/05teqzw32', 'tr', 1, 'https://ror.org/05teqzw32 Özel Ankara Umut Hastanesi'),
(59515, 'https://ror.org/038rjzg81', 'en', 1, 'https://ror.org/038rjzg81 Maria Parham Hospital'),
(59516, 'https://ror.org/017w9st76', 'en', 1, 'https://ror.org/017w9st76 Jackson-Madison County General Hospital'),
(59517, 'https://ror.org/03ftkmq63', 'en', 1, 'https://ror.org/03ftkmq63 Jacksonville Center for Clinical Research'),
(59518, 'https://ror.org/01pbcje80', 'en', 1, 'https://ror.org/01pbcje80 Key-Whitman Eye Center'),
(59519, 'https://ror.org/05gt5r361', 'de', 1, 'https://ror.org/05gt5r361 Marienhospital Osnabrück'),
(59520, 'https://ror.org/02nh1np55', 'en', 1, 'https://ror.org/02nh1np55 Kim''s Eye Hospital 金眼科病院'),
(59521, 'https://ror.org/01jv6d279', 'en', 1, 'https://ror.org/01jv6d279 Vidant Beaufort Hospital'),
(59522, 'https://ror.org/02k6byd47', 'da', 1, 'https://ror.org/02k6byd47 Kong Christian X''s Gigthospital'),
(59523, 'https://ror.org/039nzp647', 'en', 1, 'https://ror.org/039nzp647 King''s Daughters Medical Center'),
(59524, 'https://ror.org/01e3d3j88', 'en', 1, 'https://ror.org/01e3d3j88 Jefferson County Health Center'),
(59525, 'https://ror.org/0566emh82', 'en', 1, 'https://ror.org/0566emh82 KKT Orthopedic Spine Center'),
(59526, 'https://ror.org/03s54zb62', 'en', 1, 'https://ror.org/03s54zb62 Jefferson Hospital'),
(59527, 'https://ror.org/00etqq360', 'en', 1, 'https://ror.org/00etqq360 Marshfield Clinic'),
(59528, 'https://ror.org/035p50w29', 'en', 1, 'https://ror.org/035p50w29 Knox Community Hospital'),
(59529, 'https://ror.org/01kn5qq40', 'en', 1, 'https://ror.org/01kn5qq40 Maruyama Memorial General Hospital 丸山記念総合病院'),
(59530, 'https://ror.org/04scta677', 'en', 1, 'https://ror.org/04scta677 Japan Clinical Cancer Research Organization 特定非営利活動法人 日本がん臨床試験推進機構'),
(59531, 'https://ror.org/01t45et45', 'en', 1, 'https://ror.org/01t45et45 Methodist West Hospital'),
(59532, 'https://ror.org/00s528j33', 'no_lang_code', 1, 'https://ror.org/00s528j33 Mianyang Central Hospital 绵阳市中心医院'),
(59533, 'https://ror.org/01kxhkq76', 'en', 1, 'https://ror.org/01kxhkq76 Mary Greeley Medical Center'),
(59534, 'https://ror.org/026mkby59', 'en', 1, 'https://ror.org/026mkby59 Microclinic International'),
(59535, 'https://ror.org/027mnhk47', 'en', 1, 'https://ror.org/027mnhk47 Korea National Enterprise for Clinical Trials 한국임상시험산업본부'),
(59536, 'https://ror.org/03cbwdg94', 'en', 1, 'https://ror.org/03cbwdg94 Catalan Society of Family and Community Medicine'),
(59537, 'https://ror.org/0408r6k10', 'en', 1, 'https://ror.org/0408r6k10 Mary Washington Hospital'),
(59538, 'https://ror.org/01pt9mg14', 'en', 1, 'https://ror.org/01pt9mg14 MidMichigan Medical Center - Midland'),
(59539, 'https://ror.org/03bf8xe98', 'en', 1, 'https://ror.org/03bf8xe98 Midstate Medical Center'),
(59540, 'https://ror.org/000z10z62', 'en', 1, 'https://ror.org/000z10z62 VA National Center of Oncology after Fanarjyan Վ.Ա. Ֆանարջյանի անվան ուռուցքաբանության ազգային կենտրոն'),
(59541, 'https://ror.org/020vypr53', 'no', 1, 'https://ror.org/020vypr53 Kristiansund Sykehus'),
(59542, 'https://ror.org/04fasw929', 'no_lang_code', 1, 'https://ror.org/04fasw929 MB Clinical Research and Consulting (United States)'),
(59543, 'https://ror.org/03rhbz403', 'en', 1, 'https://ror.org/03rhbz403 Kuala Lumpur Sports Medicine Centre'),
(59544, 'https://ror.org/00rg8e315', 'en', 1, 'https://ror.org/00rg8e315 Foshan Maternity and Child Health Care Hospital 佛山市妇幼保健院'),
(59545, 'https://ror.org/00sash423', 'no_lang_code', 1, 'https://ror.org/00sash423 Kunming Tongren Hospital 昆明同仁医院'),
(59546, 'https://ror.org/000pw2z54', 'es', 1, 'https://ror.org/000pw2z54 Maternal Perinatal Hospital Mónica Pretelini'),
(59547, 'https://ror.org/05qqdh613', 'en', 1, 'https://ror.org/05qqdh613 Nebraska Cancer Research Center'),
(59548, 'https://ror.org/04eme8h94', 'en', 1, 'https://ror.org/04eme8h94 Los Angeles Clinical Trials'),
(59549, 'https://ror.org/02f4m9w39', 'en', 1, 'https://ror.org/02f4m9w39 Lake Huron Medical Center'),
(59550, 'https://ror.org/049s06a25', 'en', 1, 'https://ror.org/049s06a25 Southeast Radiation Oncology Group'),
(59551, 'https://ror.org/02tkzg027', 'en', 1, 'https://ror.org/02tkzg027 Lakeland Community Hospital'),
(59552, 'https://ror.org/00pk3rj18', 'en', 1, 'https://ror.org/00pk3rj18 Neuro Pain Medical Center'),
(59553, 'https://ror.org/036yzwp60', 'en', 1, 'https://ror.org/036yzwp60 Lakeview Hospital'),
(59554, 'https://ror.org/02qpa9w62', 'en', 1, 'https://ror.org/02qpa9w62 Larue Carter Hospital'),
(59555, 'https://ror.org/02p9va007', 'id', 1, 'https://ror.org/02p9va007 Rumah Sakit Umum Haji Surabaya'),
(59556, 'https://ror.org/02sv3b352', 'en', 1, 'https://ror.org/02sv3b352 NeuroVita Clinic Клиника Нейровита'),
(59557, 'https://ror.org/01x55sj80', 'en', 1, 'https://ror.org/01x55sj80 Smilow Cancer Hospital Care Center'),
(59558, 'https://ror.org/000dspf25', 'en', 1, 'https://ror.org/000dspf25 McNeel Eye Center'),
(59559, 'https://ror.org/05kwbcj56', 'en', 1, 'https://ror.org/05kwbcj56 Legacy Meridian Park Medical Center'),
(59560, 'https://ror.org/011d4mb30', 'en', 1, 'https://ror.org/011d4mb30 Legacy Mount Hood Medical Center'),
(59561, 'https://ror.org/05jfknj25', 'en', 1, 'https://ror.org/05jfknj25 Legacy Salmon Creek Medical Center'),
(59562, 'https://ror.org/03r5kty13', 'en', 1, 'https://ror.org/03r5kty13 Lehigh Center for Clinical Research'),
(59563, 'https://ror.org/042yx6h67', 'de', 1, 'https://ror.org/042yx6h67 Medalp Imst - Zentrum für ambulante Chirurgie Betriebs'),
(59564, 'https://ror.org/04h3x0y40', 'en', 1, 'https://ror.org/04h3x0y40 Geisinger Lewistown Hospital'),
(59565, 'https://ror.org/00cj4je85', 'no_lang_code', 1, 'https://ror.org/00cj4je85 Worldwide Clinical Trials (United States)'),
(59566, 'https://ror.org/00rkprb29', 'no_lang_code', 1, 'https://ror.org/00rkprb29 Lianyungang Oriental Hospital 连云港市东方医院'),
(59567, 'https://ror.org/05b9hfy12', 'en', 1, 'https://ror.org/05b9hfy12 Lifecenter Hospital'),
(59568, 'https://ror.org/02gg23171', 'de', 1, 'https://ror.org/02gg23171 Medizinisches Versorgungszentrum Prof. Mathey, Prof. Schofer'),
(59569, 'https://ror.org/01xv43c68', 'en', 1, 'https://ror.org/01xv43c68 Lindner Center of HOPE'),
(59570, 'https://ror.org/02by0qa70', 'az', 1, 'https://ror.org/02by0qa70 Akademik Zərifə Əliyeva adına Milli Oftalmologiya Mərkəzi'),
(59571, 'https://ror.org/000zjtf98', 'en', 1, 'https://ror.org/000zjtf98 Medical Center of South Arkansas'),
(59572, 'https://ror.org/05vnpr825', 'en', 1, 'https://ror.org/05vnpr825 Linear Clinical Research'),
(59573, 'https://ror.org/036mshe20', 'en', 1, 'https://ror.org/036mshe20 London Vision Clinic'),
(59574, 'https://ror.org/04h783r90', 'en', 1, 'https://ror.org/04h783r90 Lung Center of the Philippines'),
(59575, 'https://ror.org/013fdz725', 'en', 1, 'https://ror.org/013fdz725 Melbourne Sexual Health Centre'),
(59576, 'https://ror.org/03r29tc70', 'de', 1, 'https://ror.org/03r29tc70 Lungenklinik Hemer'),
(59577, 'https://ror.org/05393h285', 'en', 1, 'https://ror.org/05393h285 Memorial Hermann Memorial City Medical Center'),
(59578, 'https://ror.org/055zj4e19', 'en', 1, 'https://ror.org/055zj4e19 Centra Health'),
(59579, 'https://ror.org/03dvtch96', 'en', 1, 'https://ror.org/03dvtch96 Fairbanks Memorial Hospital'),
(59580, 'https://ror.org/00vwet919', 'en', 1, 'https://ror.org/00vwet919 Memorial Hospital of Carbondale'),
(59581, 'https://ror.org/02nz06f09', 'en', 1, 'https://ror.org/02nz06f09 Noran Neurological Clinic'),
(59582, 'https://ror.org/03g0fcj72', 'en', 1, 'https://ror.org/03g0fcj72 Sovah Health Martinsville'),
(59583, 'https://ror.org/02hngq018', 'en', 1, 'https://ror.org/02hngq018 Centre de fertilité d''Ottawa Ottawa Fertility Centre'),
(59584, 'https://ror.org/021e99k21', 'en', 1, 'https://ror.org/021e99k21 Memorial Sisli Hospital'),
(59585, 'https://ror.org/03pxwfh12', 'en', 1, 'https://ror.org/03pxwfh12 Ottumwa Regional Health Center'),
(59586, 'https://ror.org/03bbcet56', 'fr', 1, 'https://ror.org/03bbcet56 Etablissements de Santé Mentale'),
(59587, 'https://ror.org/04tj2nz36', 'en', 1, 'https://ror.org/04tj2nz36 Northeast Center for Rehabilitation and Brain Injury'),
(59588, 'https://ror.org/03fgher32', 'en', 1, 'https://ror.org/03fgher32 UC Irvine Health'),
(59589, 'https://ror.org/027se6721', 'en', 1, 'https://ror.org/027se6721 Pacific Centre for Reproductive Medicine'),
(59590, 'https://ror.org/04n79vf04', 'en', 1, 'https://ror.org/04n79vf04 Northeast Radiation Oncology Center'),
(59591, 'https://ror.org/02k4egv76', 'en', 1, 'https://ror.org/02k4egv76 Pacific Fertility Center'),
(59592, 'https://ror.org/02x8t7c47', 'en', 1, 'https://ror.org/02x8t7c47 Northern California Melanoma Center'),
(59593, 'https://ror.org/02wtq1680', 'en', 1, 'https://ror.org/02wtq1680 Pain Cure Center'),
(59594, 'https://ror.org/024ws4n60', 'en', 1, 'https://ror.org/024ws4n60 McFarland Clinic - Boone'),
(59595, 'https://ror.org/007wy9707', 'en', 1, 'https://ror.org/007wy9707 Pali Momi Medical Center'),
(59596, 'https://ror.org/00dx38855', 'en', 1, 'https://ror.org/00dx38855 McFarland Clinic - Jefferson'),
(59597, 'https://ror.org/03w45gf56', 'en', 1, 'https://ror.org/03w45gf56 CHI Health Mercy Council Bluffs'),
(59598, 'https://ror.org/04we5xg30', 'en', 1, 'https://ror.org/04we5xg30 McFarland Clinic - Marshalltown'),
(59599, 'https://ror.org/0028e8s02', 'en', 1, 'https://ror.org/0028e8s02 McFarland Clinic - Fort Dodge'),
(59600, 'https://ror.org/04v2tad62', 'en', 1, 'https://ror.org/04v2tad62 Palm Beach Neurological Center'),
(59601, 'https://ror.org/052eqw254', 'en', 1, 'https://ror.org/052eqw254 Northwest Cancer Clinic'),
(59602, 'https://ror.org/05bq6d892', 'en', 1, 'https://ror.org/05bq6d892 Pamoja Tunaweza Women''s Centre'),
(59603, 'https://ror.org/00w440229', 'en', 1, 'https://ror.org/00w440229 Mercy Hospital Springfield'),
(59604, 'https://ror.org/0168g2651', 'en', 1, 'https://ror.org/0168g2651 Pan Am Clinic'),
(59605, 'https://ror.org/042k68148', 'en', 1, 'https://ror.org/042k68148 Mercy Regional Medical Center'),
(59606, 'https://ror.org/0345pts96', 'en', 1, 'https://ror.org/0345pts96 Paoli Hospital'),
(59607, 'https://ror.org/03fhrtz10', 'en', 1, 'https://ror.org/03fhrtz10 Northwestern Medicine Lake Forest Hospital'),
(59608, 'https://ror.org/008aexf53', 'en', 1, 'https://ror.org/008aexf53 Merrion Fertility Clinic'),
(59609, 'https://ror.org/02nds3w86', 'en', 1, 'https://ror.org/02nds3w86 Methodist Children’s Hospital'),
(59610, 'https://ror.org/042dbq096', 'en', 1, 'https://ror.org/042dbq096 Parker Adventist Hospital'),
(59611, 'https://ror.org/03z68z654', 'pl', 1, 'https://ror.org/03z68z654 Samodzielny Publiczny Szpital Specjalistyczny Chorób Płuc im. dr O. Sokołowskiego'),
(59612, 'https://ror.org/015dsp568', 'en', 1, 'https://ror.org/015dsp568 Rocky Mountain Multiple Sclerosis Clinic'),
(59613, 'https://ror.org/05f1hc953', 'en', 1, 'https://ror.org/05f1hc953 Parkland Health Center'),
(59614, 'https://ror.org/04e10fw49', 'en', 1, 'https://ror.org/04e10fw49 Parkview Hospital Randallia'),
(59615, 'https://ror.org/04q5vh665', 'no_lang_code', 1, 'https://ror.org/04q5vh665 Novindiet Clinic'),
(59616, 'https://ror.org/042s1np65', 'en', 1, 'https://ror.org/042s1np65 City Clinical Hospital No. 2 Городская Клиническая Больница № 2'),
(59617, 'https://ror.org/01pyacx21', 'en', 1, 'https://ror.org/01pyacx21 Rogers Behavioral Health'),
(59618, 'https://ror.org/051ws8490', 'en', 1, 'https://ror.org/051ws8490 Rogue Regional Medical Center'),
(59619, 'https://ror.org/04jqvgn14', 'no_lang_code', 1, 'https://ror.org/04jqvgn14 Rose Research Center (United States)'),
(59620, 'https://ror.org/01zz40j33', 'en', 1, 'https://ror.org/01zz40j33 Nutrition Center of the Philippines'),
(59621, 'https://ror.org/05mg0j941', 'en', 1, 'https://ror.org/05mg0j941 Radiation Oncology Centers of Nevada'),
(59622, 'https://ror.org/02tyedh23', 'en', 1, 'https://ror.org/02tyedh23 Peninsula Cancer Center'),
(59623, 'https://ror.org/01zra9c68', 'en', 1, 'https://ror.org/01zra9c68 9-я клиника Минска 9th City Clinical Hospital'),
(59624, 'https://ror.org/046xv3q50', 'en', 1, 'https://ror.org/046xv3q50 Running Injury Clinic'),
(59625, 'https://ror.org/01sv4m290', 'en', 1, 'https://ror.org/01sv4m290 Randolph Health'),
(59626, 'https://ror.org/007aefc66', 'en', 1, 'https://ror.org/007aefc66 Pen Bay Medical Center'),
(59627, 'https://ror.org/03p352e02', 'en', 1, 'https://ror.org/03p352e02 Ophtalmological Center After S.V.Malayan'),
(59628, 'https://ror.org/00d110q75', 'en', 1, 'https://ror.org/00d110q75 Sacred Heart Hospital'),
(59629, 'https://ror.org/04k3xq990', 'en', 1, 'https://ror.org/04k3xq990 Phoenixville Hospital'),
(59630, 'https://ror.org/04sxdc114', 'en', 1, 'https://ror.org/04sxdc114 OhioHealth Mansfield Hospital'),
(59631, 'https://ror.org/059w81j32', 'en', 1, 'https://ror.org/059w81j32 Olathe Medical Center'),
(59632, 'https://ror.org/03qa48d48', 'en', 1, 'https://ror.org/03qa48d48 RSUD Prof. Dr. Saiful Anwar Malang'),
(59633, 'https://ror.org/02m6w0m37', 'en', 1, 'https://ror.org/02m6w0m37 St. Agnes Hospital'),
(59634, 'https://ror.org/03rc1y879', 'en', 1, 'https://ror.org/03rc1y879 Physicians'' Clinic of Iowa'),
(59635, 'https://ror.org/01waq5k48', 'en', 1, 'https://ror.org/01waq5k48 Academic Alliance in Dermatology'),
(59636, 'https://ror.org/03b9cq520', 'en', 1, 'https://ror.org/03b9cq520 Olympic Medical Center'),
(59637, 'https://ror.org/022bpxw56', 'en', 1, 'https://ror.org/022bpxw56 SOUSEIKAI Global Clinical Research Center'),
(59638, 'https://ror.org/053a2h986', 'en', 1, 'https://ror.org/053a2h986 Saint Alphonsus Health System'),
(59639, 'https://ror.org/00sdedd93', 'en', 1, 'https://ror.org/00sdedd93 UPMC Central Pa'),
(59640, 'https://ror.org/02tnzjs62', 'no_lang_code', 1, 'https://ror.org/02tnzjs62 Oliak Center'),
(59641, 'https://ror.org/05nc6an52', 'en', 1, 'https://ror.org/05nc6an52 Saint Alphonsus Medical Center'),
(59642, 'https://ror.org/00gyq3v51', 'no_lang_code', 1, 'https://ror.org/00gyq3v51 Hospital Pitas'),
(59643, 'https://ror.org/02b6wm085', 'en', 1, 'https://ror.org/02b6wm085 Sanford Broadway Medical Center'),
(59644, 'https://ror.org/05vg37x37', 'en', 1, 'https://ror.org/05vg37x37 Saint Alphonsus Medical Center'),
(59645, 'https://ror.org/01ga08073', 'en', 1, 'https://ror.org/01ga08073 Saint Alphonsus Medical Center'),
(59646, 'https://ror.org/01w09ak35', 'en', 1, 'https://ror.org/01w09ak35 Lehigh Valley Hospital-Pocono'),
(59647, 'https://ror.org/01r4qbv69', 'en', 1, 'https://ror.org/01r4qbv69 Patras Olympian Hospital Ολύμπιον Θεραπευτήριο Πάτρας'),
(59648, 'https://ror.org/04r55zh03', 'fr', 1, 'https://ror.org/04r55zh03 Clinique Mutualiste de l''Estuaire'),
(59649, 'https://ror.org/003smky23', 'en', 1, 'https://ror.org/003smky23 Sanford Health'),
(59650, 'https://ror.org/02gc95f39', 'en', 1, 'https://ror.org/02gc95f39 Omid Fertility Clinic کلینیک باروری امید'),
(59651, 'https://ror.org/03557sb27', 'es', 1, 'https://ror.org/03557sb27 Policlinica Metropolitana'),
(59652, 'https://ror.org/04pgck314', 'en', 1, 'https://ror.org/04pgck314 Mount Carmel St. Ann''s'),
(59653, 'https://ror.org/05qa66z68', 'en', 1, 'https://ror.org/05qa66z68 MISH Hospital and Clinics'),
(59654, 'https://ror.org/03tyb0e26', 'en', 1, 'https://ror.org/03tyb0e26 St. Anthony Hospital'),
(59655, 'https://ror.org/01hgbws94', 'en', 1, 'https://ror.org/01hgbws94 St. Catherine Hospital'),
(59656, 'https://ror.org/02dfv3292', 'en', 1, 'https://ror.org/02dfv3292 Portsmouth Regional Hospital'),
(59657, 'https://ror.org/003w29077', 'en', 1, 'https://ror.org/003w29077 Ontario Clinical Oncology Group'),
(59658, 'https://ror.org/04cm10r73', 'en', 1, 'https://ror.org/04cm10r73 Jon J van Rood Centre for Clinical Transfusion Research'),
(59659, 'https://ror.org/01mn8sk35', 'en', 1, 'https://ror.org/01mn8sk35 Presbyterian Kaseman Hospital'),
(59660, 'https://ror.org/03s1pms78', 'en', 1, 'https://ror.org/03s1pms78 Presbyterian Rust Medical Center'),
(59661, 'https://ror.org/03fszbf20', 'en', 1, 'https://ror.org/03fszbf20 Optimus Clinical Research'),
(59662, 'https://ror.org/00e81jd95', 'no_lang_code', 1, 'https://ror.org/00e81jd95 Sapporo Higashi Tokushukai Hospital 札幌東急百貨店'),
(59663, 'https://ror.org/00kh76710', 'en', 1, 'https://ror.org/00kh76710 Rasool Akram Hospital بیمارستان حضرت رسول اکرم'),
(59664, 'https://ror.org/01zekf440', 'en', 1, 'https://ror.org/01zekf440 Missouri Baptist Sullivan Hospital'),
(59665, 'https://ror.org/02b2vbn56', 'en', 1, 'https://ror.org/02b2vbn56 Saud Al-babtain Cardiac Centre مركز سعود البابطين للقلب'),
(59666, 'https://ror.org/01kpv7172', 'en', 1, 'https://ror.org/01kpv7172 Saviour Hospital'),
(59667, 'https://ror.org/0440a2x91', 'en', 1, 'https://ror.org/0440a2x91 St. Francis Regional Medical Center'),
(59668, 'https://ror.org/00m3xsv93', 'nl', 1, 'https://ror.org/00m3xsv93 Revalidatieziekenhuis RevArte'),
(59669, 'https://ror.org/033s1aj42', 'en', 1, 'https://ror.org/033s1aj42 Moorabbin Hospital'),
(59670, 'https://ror.org/03hgdak73', 'no_lang_code', 1, 'https://ror.org/03hgdak73 Clinic Asklepio Larissa Θεραπευτήριο Ασκληπιείο Λάρισας ΕΠΕ'),
(59671, 'https://ror.org/05vcqrs05', 'de', 1, 'https://ror.org/05vcqrs05 Rehaklinik Zihlschlacht'),
(59672, 'https://ror.org/04fr6kc62', 'de', 1, 'https://ror.org/04fr6kc62 Schön Klinik Bad Aibling'),
(59673, 'https://ror.org/01ffp9w12', 'en', 1, 'https://ror.org/01ffp9w12 Schwartz Laser Eye Center'),
(59674, 'https://ror.org/03tcxks04', 'en', 1, 'https://ror.org/03tcxks04 St. James Healthcare'),
(59675, 'https://ror.org/00pfyq622', 'no_lang_code', 1, 'https://ror.org/00pfyq622 Procare Riaya Hospital مستشفى بروكار ريايا'),
(59676, 'https://ror.org/02kx02a45', 'en', 1, 'https://ror.org/02kx02a45 Mon Health Medical Center'),
(59677, 'https://ror.org/0276cxx52', 'en', 1, 'https://ror.org/0276cxx52 Prostate Cancer Clinical Trials Consortium'),
(59678, 'https://ror.org/015z2xk75', 'en', 1, 'https://ror.org/015z2xk75 Providence Holy Cross Medical Center'),
(59679, 'https://ror.org/05dshav68', 'en', 1, 'https://ror.org/05dshav68 Providence Regional Medical Center Everett'),
(59680, 'https://ror.org/0260x4r86', 'en', 1, 'https://ror.org/0260x4r86 Mercy Clinic Cancer and Hematology'),
(59681, 'https://ror.org/055bjxf28', 'en', 1, 'https://ror.org/055bjxf28 Retina Clinic'),
(59682, 'https://ror.org/01vfhjf72', 'en', 1, 'https://ror.org/01vfhjf72 Mount Sinai Rehabilitation Hospital'),
(59683, 'https://ror.org/02d21y725', 'en', 1, 'https://ror.org/02d21y725 Rice Memorial Hospital'),
(59684, 'https://ror.org/008dhsm98', 'en', 1, 'https://ror.org/008dhsm98 Saint Joseph Hospital East'),
(59685, 'https://ror.org/04xkbx134', 'en', 1, 'https://ror.org/04xkbx134 Providence Saint Joseph Medical Center'),
(59686, 'https://ror.org/00vxq6174', 'en', 1, 'https://ror.org/00vxq6174 Mountain Blue Cancer Care Center'),
(59687, 'https://ror.org/05maag353', 'en', 1, 'https://ror.org/05maag353 Providence Willamette Falls Medical Center'),
(59688, 'https://ror.org/05b1whg73', 'en', 1, 'https://ror.org/05b1whg73 OSF St. Joseph Medical Center'),
(59689, 'https://ror.org/05a76fs70', 'en', 1, 'https://ror.org/05a76fs70 Sentara Virginia Beach General Hospital'),
(59690, 'https://ror.org/04nz0rp18', 'en', 1, 'https://ror.org/04nz0rp18 Riverton Hospital'),
(59691, 'https://ror.org/04zdc2070', 'en', 1, 'https://ror.org/04zdc2070 Mountain Diabetes and Endocrine Center'),
(59692, 'https://ror.org/03mwphj92', 'en', 1, 'https://ror.org/03mwphj92 Rochester Center for Behavioral Medicine'),
(59693, 'https://ror.org/047j0w511', 'en', 1, 'https://ror.org/047j0w511 St. Joseph Mercy Canton'),
(59694, 'https://ror.org/04kazdy71', 'en', 1, 'https://ror.org/04kazdy71 Shaanxi Provincial Hospital of Traditional Chinese Medicine'),
(59695, 'https://ror.org/02yfds142', 'en', 1, 'https://ror.org/02yfds142 SoutheastHEALTH'),
(59696, 'https://ror.org/04rh37t51', 'en', 1, 'https://ror.org/04rh37t51 Shafran Gastroenterology Center'),
(59697, 'https://ror.org/04p3m1723', 'en', 1, 'https://ror.org/04p3m1723 MultiCare Auburn Medical Center'),
(59698, 'https://ror.org/05fwfqf82', 'en', 1, 'https://ror.org/05fwfqf82 Charlotte Eye Ear Nose & Throat Associates'),
(59699, 'https://ror.org/03exf6a43', 'en', 1, 'https://ror.org/03exf6a43 Reproductive Science Medical Center'),
(59700, 'https://ror.org/02k6hv566', 'en', 1, 'https://ror.org/02k6hv566 Shahid Gangalal National Heart Centre'),
(59701, 'https://ror.org/051gnmd75', 'no_lang_code', 1, 'https://ror.org/051gnmd75 Musculoskeletal Clinical Regulatory Advisers (United States)'),
(59702, 'https://ror.org/01cv9kh50', 'en', 1, 'https://ror.org/01cv9kh50 Southeast Nebraska Cancer Center'),
(59703, 'https://ror.org/03drnws57', 'fr', 1, 'https://ror.org/03drnws57 Sheikh Ragheb Harb Hospital'),
(59704, 'https://ror.org/05q11w119', 'en', 1, 'https://ror.org/05q11w119 Southeast Retina Center'),
(59705, 'https://ror.org/05htkf588', 'en', 1, 'https://ror.org/05htkf588 Shandong Eye Hospital'),
(59706, 'https://ror.org/00v1ygn94', 'en', 1, 'https://ror.org/00v1ygn94 Southeastern Medical Oncology Center'),
(59707, 'https://ror.org/02mfv5g23', 'en', 1, 'https://ror.org/02mfv5g23 Cancer Clinic'),
(59708, 'https://ror.org/05w9jxk76', 'es', 1, 'https://ror.org/05w9jxk76 Nueva Opción'),
(59709, 'https://ror.org/003z39n14', 'en', 1, 'https://ror.org/003z39n14 Shanghai International Medical Center'),
(59710, 'https://ror.org/0362zrb32', 'en', 1, 'https://ror.org/0362zrb32 Swanson Center'),
(59711, 'https://ror.org/05kbmt076', 'en', 1, 'https://ror.org/05kbmt076 Southeastern Health'),
(59712, 'https://ror.org/05j8e7885', 'en', 1, 'https://ror.org/05j8e7885 St. Luke''s Hospital'),
(59713, 'https://ror.org/029ra6018', 'en', 1, 'https://ror.org/029ra6018 Saint Luke''s South Hospital'),
(59714, 'https://ror.org/03ma3hr46', 'en', 1, 'https://ror.org/03ma3hr46 St. Mary-Corwin Medical Center'),
(59715, 'https://ror.org/02van6g18', 'en', 1, 'https://ror.org/02van6g18 Syrentis Clinical Research'),
(59716, 'https://ror.org/00tna7897', 'en', 1, 'https://ror.org/00tna7897 Sheltering Arms Physical Rehabilitation Centers'),
(59717, 'https://ror.org/04snwz472', 'en', 1, 'https://ror.org/04snwz472 Southern Cross Fertility & IVF Centre'),
(59718, 'https://ror.org/020whm440', 'en', 1, 'https://ror.org/020whm440 St. Mary Mercy Livonia'),
(59719, 'https://ror.org/005snq210', 'en', 1, 'https://ror.org/005snq210 Southern Ocean Medical Center'),
(59720, 'https://ror.org/04m17xs91', 'en', 1, 'https://ror.org/04m17xs91 National Center of Cardiology and Internal Medicine'),
(59721, 'https://ror.org/00qy8yz42', 'en', 1, 'https://ror.org/00qy8yz42 Children’s Hospital at Erlanger'),
(59722, 'https://ror.org/05xwdg192', 'en', 1, 'https://ror.org/05xwdg192 Southern Ohio Medical Center'),
(59723, 'https://ror.org/046nba540', 'en', 1, 'https://ror.org/046nba540 St. Mary''s Medical Center'),
(59724, 'https://ror.org/03h7ehw84', 'en', 1, 'https://ror.org/03h7ehw84 Saint Mary''s Regional Medical Center'),
(59725, 'https://ror.org/00vkrpr95', 'en', 1, 'https://ror.org/00vkrpr95 Southwest Regional Wound Care Center'),
(59726, 'https://ror.org/01m1xx561', 'en', 1, 'https://ror.org/01m1xx561 Taizhou Fourth People''s Hospital 温岭市第四人民医院'),
(59727, 'https://ror.org/03fc2zn41', 'en', 1, 'https://ror.org/03fc2zn41 Tallahassee Orthopedic Clinic'),
(59728, 'https://ror.org/017dyf006', 'en', 1, 'https://ror.org/017dyf006 Pediatric Hospital of Sinaloa'),
(59729, 'https://ror.org/03f6gnd82', 'en', 1, 'https://ror.org/03f6gnd82 St. Rita''s Medical Center'),
(59730, 'https://ror.org/042agnp26', 'en', 1, 'https://ror.org/042agnp26 Sparta Cancer Center'),
(59731, 'https://ror.org/01ytv0571', 'en', 1, 'https://ror.org/01ytv0571 SingHealth Polyclinics'),
(59732, 'https://ror.org/03pe5z861', 'en', 1, 'https://ror.org/03pe5z861 Kirklin Clinic'),
(59733, 'https://ror.org/004zscr15', 'en', 1, 'https://ror.org/004zscr15 St. Peter''s Hospital'),
(59734, 'https://ror.org/05h4bcs36', 'en', 1, 'https://ror.org/05h4bcs36 June E. Nylen Cancer Center'),
(59735, 'https://ror.org/01bg37c61', 'no_lang_code', 1, 'https://ror.org/01bg37c61 Spaulding Clinical Research (United States)'),
(59736, 'https://ror.org/03k706h10', 'en', 1, 'https://ror.org/03k706h10 Mark H. Zangmeister Cancer Center'),
(59737, 'https://ror.org/04m7qna91', 'en', 1, 'https://ror.org/04m7qna91 Sirindhorn National Medical Rehabilitation Institute สถาบันสิรินธรเพื่อการฟื้นฟูสมรรถภาพทางการแพทย์แห่งชาติ'),
(59738, 'https://ror.org/05hm3dk81', 'en', 1, 'https://ror.org/05hm3dk81 Tennessee Orthopaedic Clinics'),
(59739, 'https://ror.org/04qw37741', 'en', 1, 'https://ror.org/04qw37741 The Medical Center of Aurora'),
(59740, 'https://ror.org/00w52p532', 'en', 1, 'https://ror.org/00w52p532 Specialized Arab Hospital مستشفى عربي متخصص'),
(59741, 'https://ror.org/05jm48923', 'sv', 1, 'https://ror.org/05jm48923 Ryggkirurgiska Kliniken i Strängnäs'),
(59742, 'https://ror.org/04qmnd212', 'en', 1, 'https://ror.org/04qmnd212 Ste. Genevieve County Memorial Hospital'),
(59743, 'https://ror.org/034q4hd34', 'en', 1, 'https://ror.org/034q4hd34 Sts. Mary & Elizabeth Hospital'),
(59744, 'https://ror.org/01ckkpd50', 'en', 1, 'https://ror.org/01ckkpd50 Orthopaedic Specialty Clinic'),
(59745, 'https://ror.org/04masrj05', 'en', 1, 'https://ror.org/04masrj05 Salina Regional Health Center'),
(59746, 'https://ror.org/00rcpde19', 'en', 1, 'https://ror.org/00rcpde19 Qinhuangdao Second Hospital'),
(59747, 'https://ror.org/01kwfx619', 'en', 1, 'https://ror.org/01kwfx619 Second Hospital of Tangshan'),
(59748, 'https://ror.org/00djc6h11', 'en', 1, 'https://ror.org/00djc6h11 UW Cancer Center Johnson Creek'),
(59749, 'https://ror.org/01zyk3031', 'en', 1, 'https://ror.org/01zyk3031 Sydney Hernia Specialists Clinic'),
(59750, 'https://ror.org/04qd1fg21', 'en', 1, 'https://ror.org/04qd1fg21 Springfield Clinic'),
(59751, 'https://ror.org/0065jhh26', 'en', 1, 'https://ror.org/0065jhh26 Cancer Center of Hawaii'),
(59752, 'https://ror.org/01jrr6c68', 'en', 1, 'https://ror.org/01jrr6c68 Springfield Regional Medical Center'),
(59753, 'https://ror.org/04r7rm468', 'en', 1, 'https://ror.org/04r7rm468 The Center for Mind-Body Medicine'),
(59754, 'https://ror.org/03c0nts38', 'en', 1, 'https://ror.org/03c0nts38 Woman’s Hospital of Texas'),
(59755, 'https://ror.org/0270p7k56', 'no_lang_code', 1, 'https://ror.org/0270p7k56 Shin Nippon Biomedical Laboratories (United States)'),
(59756, 'https://ror.org/01mr7bg63', 'en', 1, 'https://ror.org/01mr7bg63 The Women’s Imaging Center'),
(59757, 'https://ror.org/008n6hb03', 'en', 1, 'https://ror.org/008n6hb03 Vachira Phuket Hospital โรงพยาบาลศูนย์วชิระภูเก็ต'),
(59758, 'https://ror.org/01nqn2b57', 'no_lang_code', 1, 'https://ror.org/01nqn2b57 SocraTec R&D (Germany)'),
(59759, 'https://ror.org/02bkhhg93', 'en', 1, 'https://ror.org/02bkhhg93 Arthritis and Rheumatism Associates'),
(59760, 'https://ror.org/01pagm392', 'en', 1, 'https://ror.org/01pagm392 Valmontone Hospital'),
(59761, 'https://ror.org/00kpegb17', 'de', 1, 'https://ror.org/00kpegb17 St.-Antonius-Hospital Gronau'),
(59762, 'https://ror.org/00kcr8113', 'en', 1, 'https://ror.org/00kcr8113 Charleston County''s Department of Alcohol and Other Drug Abuse Services'),
(59763, 'https://ror.org/03aysbj82', 'de', 1, 'https://ror.org/03aysbj82 OncoRay OncoRay – Nationales Zentrum für Strahlenforschung in der Onkologie'),
(59764, 'https://ror.org/02qk94m81', 'en', 1, 'https://ror.org/02qk94m81 Vancouver Clinic'),
(59765, 'https://ror.org/00yvr3a11', 'en', 1, 'https://ror.org/00yvr3a11 Children’s Hospital at TriStar Centennial'),
(59766, 'https://ror.org/01jygxx11', 'no_lang_code', 1, 'https://ror.org/01jygxx11 ThedaCare'),
(59767, 'https://ror.org/05grhsk96', 'no_lang_code', 1, 'https://ror.org/05grhsk96 Vanderbilt Health'),
(59768, 'https://ror.org/0118bqm57', 'en', 1, 'https://ror.org/0118bqm57 Vanderbilt Psychiatric Hospital'),
(59769, 'https://ror.org/055kjct22', 'en', 1, 'https://ror.org/055kjct22 Asante Three Rivers Medical Center'),
(59770, 'https://ror.org/04c2qqq25', 'en', 1, 'https://ror.org/04c2qqq25 St. Vincent Carmel Hospital'),
(59771, 'https://ror.org/05jy72h47', 'en', 1, 'https://ror.org/05jy72h47 The Fifth People’s Hospital of Suzhou 苏州市第五人民医院'),
(59772, 'https://ror.org/056bmw021', 'hr', 1, 'https://ror.org/056bmw021 Opća Bolnica Varaždin'),
(59773, 'https://ror.org/0405wpw62', 'en', 1, 'https://ror.org/0405wpw62 Vasan Eye Care Hospital'),
(59774, 'https://ror.org/01mjp5v83', 'en', 1, 'https://ror.org/01mjp5v83 South Jordan Health Center'),
(59775, 'https://ror.org/00nt56514', 'en', 1, 'https://ror.org/00nt56514 First People''s Hospital of Yuhang District 杭州市余杭区第一人民医院'),
(59776, 'https://ror.org/04n800n16', 'en', 1, 'https://ror.org/04n800n16 South Pointe Hospital'),
(59777, 'https://ror.org/02t4nzq07', 'en', 1, 'https://ror.org/02t4nzq07 Fuzhou Second Hospital 福州市第二医院'),
(59778, 'https://ror.org/019wqcg20', 'en', 1, 'https://ror.org/019wqcg20 Stanford Health Care'),
(59779, 'https://ror.org/01fd5y629', 'no_lang_code', 1, 'https://ror.org/01fd5y629 Tomitahama Hospital'),
(59780, 'https://ror.org/00qjf4t92', 'en', 1, 'https://ror.org/00qjf4t92 Stanger Hospital'),
(59781, 'https://ror.org/052eesz64', 'no_lang_code', 1, 'https://ror.org/052eesz64 Veeda Clinical Research (India)'),
(59782, 'https://ror.org/03w71jp71', 'en', 1, 'https://ror.org/03w71jp71 Toledo Clinic Cancer Center'),
(59783, 'https://ror.org/03m412394', 'en', 1, 'https://ror.org/03m412394 START Clinic'),
(59784, 'https://ror.org/0336dfn75', 'en', 1, 'https://ror.org/0336dfn75 Toledo Clinic Cancer Center'),
(59785, 'https://ror.org/05j54qh77', 'en', 1, 'https://ror.org/05j54qh77 Chagrin Highlands Health Center'),
(59786, 'https://ror.org/02h07t345', 'en', 1, 'https://ror.org/02h07t345 Queen Square Radiosurgery Centre'),
(59787, 'https://ror.org/02cy2d039', 'en', 1, 'https://ror.org/02cy2d039 Westlake Health Center'),
(59788, 'https://ror.org/02mwqcj16', 'en', 1, 'https://ror.org/02mwqcj16 Memorial Health System'),
(59789, 'https://ror.org/02d950z41', 'en', 1, 'https://ror.org/02d950z41 Altasciences Clinical Research Vince & Associates'),
(59790, 'https://ror.org/058ma0d84', 'en', 1, 'https://ror.org/058ma0d84 Töölö Hospital'),
(59791, 'https://ror.org/02kcjwx60', 'en', 1, 'https://ror.org/02kcjwx60 Suburban Community Hospital'),
(59792, 'https://ror.org/01efeew70', 'en', 1, 'https://ror.org/01efeew70 Vince Lombardi Cancer Clinic'),
(59793, 'https://ror.org/03kgjaz64', 'en', 1, 'https://ror.org/03kgjaz64 Vince Lombardi Cancer Clinic'),
(59794, 'https://ror.org/01736k933', 'en', 1, 'https://ror.org/01736k933 Vince Lombardi Cancer Clinic'),
(59795, 'https://ror.org/01wqw7p30', 'en', 1, 'https://ror.org/01wqw7p30 Wuhou District People''s Hospital, Chengdu 成都市武侯区人民医院'),
(59796, 'https://ror.org/04thvph49', 'en', 1, 'https://ror.org/04thvph49 Virginia Center for Reproductive Medicine'),
(59797, 'https://ror.org/01dfa6f88', 'en', 1, 'https://ror.org/01dfa6f88 West Suburban Medical Center'),
(59798, 'https://ror.org/01derjp85', 'en', 1, 'https://ror.org/01derjp85 Western Illinois Cancer Treatment Center'),
(59799, 'https://ror.org/05arjk578', 'en', 1, 'https://ror.org/05arjk578 Trinity Health'),
(59800, 'https://ror.org/0079qbp72', 'en', 1, 'https://ror.org/0079qbp72 Uniontown Hospital Radiation Oncology'),
(59801, 'https://ror.org/00396f155', 'no_lang_code', 1, 'https://ror.org/00396f155 Yuli Hospital 玉里醫院本部'),
(59802, 'https://ror.org/045m3df12', 'en', 1, 'https://ror.org/045m3df12 Tseung Kwan O Hospital 將軍澳醫院'),
(59803, 'https://ror.org/00a43s158', 'nl', 1, 'https://ror.org/00a43s158 Hart voor Research Aalst'),
(59804, 'https://ror.org/05xd60306', 'en', 1, 'https://ror.org/05xd60306 Yulin Orthopedics Hospital of Chinese and Western Medicine 玉林市中西医结合骨科医院是'),
(59805, 'https://ror.org/03bqkge93', 'en', 1, 'https://ror.org/03bqkge93 Upper Valley Medical Center'),
(59806, 'https://ror.org/02c4a9n85', 'en', 1, 'https://ror.org/02c4a9n85 Yuma Oncology Center'),
(59807, 'https://ror.org/05wsh0y70', 'en', 1, 'https://ror.org/05wsh0y70 Williams Plastic Surgery Specialists'),
(59808, 'https://ror.org/01cny4f98', 'en', 1, 'https://ror.org/01cny4f98 Zhangzhou Municipal Hospital of Fujian Province 福建省漳州市医院'),
(59809, 'https://ror.org/0101cd070', 'en', 1, 'https://ror.org/0101cd070 Women''s Cancer Center of Nevada'),
(59810, 'https://ror.org/05sgvn942', 'en', 1, 'https://ror.org/05sgvn942 Valor Health'),
(59811, 'https://ror.org/01jfd9z49', 'en', 1, 'https://ror.org/01jfd9z49 Zhengzhou Children''s Hospital 河南省儿童医院'),
(59812, 'https://ror.org/04e69hx24', 'en', 1, 'https://ror.org/04e69hx24 Bristol Regional Medical Center'),
(59813, 'https://ror.org/01z5evd58', 'en', 1, 'https://ror.org/01z5evd58 Zhengzhou City Hospital 郑州市中医院'),
(59814, 'https://ror.org/00js7yw33', 'en', 1, 'https://ror.org/00js7yw33 Holston Valley Medical Center'),
(59815, 'https://ror.org/03xzqj858', 'en', 1, 'https://ror.org/03xzqj858 Piramal Clinical Research'),
(59816, 'https://ror.org/058q6bh20', 'en', 1, 'https://ror.org/058q6bh20 Sheridan Memorial Hospital'),
(59817, 'https://ror.org/03jfdh841', 'en', 1, 'https://ror.org/03jfdh841 Japan Petroleum Energy Center 石油エネルギーセンター'),
(59818, 'https://ror.org/03wnr4x73', 'en', 1, 'https://ror.org/03wnr4x73 Samsung Life Public Welfare Foundation 삼성 생명 복지 재단'),
(59819, 'https://ror.org/01g0kzv83', 'no_lang_code', 1, 'https://ror.org/01g0kzv83 Biosearch Life (Spain)'),
(59820, 'https://ror.org/031afvj24', 'en', 1, 'https://ror.org/031afvj24 Agency for Community Treatment Services'),
(59821, 'https://ror.org/054gy5e97', 'en', 1, 'https://ror.org/054gy5e97 Agency for Integrated Care'),
(59822, 'https://ror.org/05hdpwb59', 'en', 1, 'https://ror.org/05hdpwb59 Fatmawati Hospital Rumah Sakit Umum Pusat Fatmawati'),
(59823, 'https://ror.org/02076gf69', 'en', 1, 'https://ror.org/02076gf69 Psychiatry Region Zealand Psykiatrien Region Sjælland'),
(59824, 'https://ror.org/049fybn29', 'en', 1, 'https://ror.org/049fybn29 Northern Area Armed Forces Hospital'),
(59825, 'https://ror.org/045qrr805', 'en', 1, 'https://ror.org/045qrr805 Ministry of Economy and Finance'),
(59826, 'https://ror.org/022yxs707', 'en', 1, 'https://ror.org/022yxs707 Intermutualist Agency'),
(59827, 'https://ror.org/015a8sc23', 'en', 1, 'https://ror.org/015a8sc23 Bell County Public Health District'),
(59828, 'https://ror.org/019ntzn33', 'no_lang_code', 1, 'https://ror.org/019ntzn33 International Drug Agency for Pharmaceutical Industry (Egypt)'),
(59829, 'https://ror.org/04nyjea81', 'en', 1, 'https://ror.org/04nyjea81 Capital Health'),
(59830, 'https://ror.org/04jbh8n08', 'en', 1, 'https://ror.org/04jbh8n08 Detroit Area Agency on Aging'),
(59831, 'https://ror.org/04vdzam19', 'en', 1, 'https://ror.org/04vdzam19 Ministry of Local Government, Rural Development and Co-operatives স্থানীয় সরকার, পল্লী উন্নয়ন ও সমবায় মন্ত্রণালয়'),
(59832, 'https://ror.org/00s8c9279', 'de', 1, 'https://ror.org/00s8c9279 Knappschaftsklinikum Saar'),
(59833, 'https://ror.org/003dfn956', 'en', 1, 'https://ror.org/003dfn956 Department of Health & Family Welfare'),
(59834, 'https://ror.org/05p017741', 'en', 1, 'https://ror.org/05p017741 Centre of Excellence for Health, Immunity and Infections'),
(59835, 'https://ror.org/03zn9nd89', 'en', 1, 'https://ror.org/03zn9nd89 Department of Health Kagawaran ng Kalusugan'),
(59836, 'https://ror.org/05kzst346', 'en', 1, 'https://ror.org/05kzst346 Maricopa County Department of Public Health'),
(59837, 'https://ror.org/023j0b748', 'es', 1, 'https://ror.org/023j0b748 Clínica Diagonal'),
(59838, 'https://ror.org/02ccsj972', 'de', 1, 'https://ror.org/02ccsj972 Cnopf Children''s Hospital Cnopf´sche Kinderklinik'),
(59839, 'https://ror.org/02zfmm828', 'en', 1, 'https://ror.org/02zfmm828 Community Ministry of Prince George’s County'),
(59840, 'https://ror.org/044q6km85', 'en', 1, 'https://ror.org/044q6km85 Ministry of Health and Quality of Life'),
(59841, 'https://ror.org/05gtere25', 'no_lang_code', 1, 'https://ror.org/05gtere25 Vabiotech (Vietnam)'),
(59842, 'https://ror.org/03qv0rv36', 'no_lang_code', 1, 'https://ror.org/03qv0rv36 Eisai (Taiwan)'),
(59843, 'https://ror.org/02v8db677', 'de', 1, 'https://ror.org/02v8db677 KRH Klinikum Agnes Karll Laatzen'),
(59844, 'https://ror.org/0590fg074', 'en', 1, 'https://ror.org/0590fg074 Environmental Health'),
(59845, 'https://ror.org/05xs81d10', 'no_lang_code', 1, 'https://ror.org/05xs81d10 "Hadji Dimitar" Hospital MHAT “Hadji Dimitar” МБАЛ "Хаджи Димитър"'),
(59846, 'https://ror.org/00msj0306', 'no_lang_code', 1, 'https://ror.org/00msj0306 St.Caridad Hospital'),
(59847, 'https://ror.org/04p7qvm31', 'en', 1, 'https://ror.org/04p7qvm31 Ministry of Health'),
(59848, 'https://ror.org/00xgg4d44', 'tr', 1, 'https://ror.org/00xgg4d44 Erzincan Mengücek Gazi Eğitim ve Araştırma Hastanesi'),
(59849, 'https://ror.org/040frxb47', 'en', 1, 'https://ror.org/040frxb47 Niger State Ministry of Health'),
(59850, 'https://ror.org/02cesks36', 'en', 1, 'https://ror.org/02cesks36 Family Service Agency of the Central Coast'),
(59851, 'https://ror.org/00knv0d66', 'en', 1, 'https://ror.org/00knv0d66 Ministry for Social Equality המשרד לשוויון חברתי'),
(59852, 'https://ror.org/04mjpp490', 'en', 1, 'https://ror.org/04mjpp490 Finnish Medicines Agency Fimea'),
(59853, 'https://ror.org/01txxvd81', 'pl', 1, 'https://ror.org/01txxvd81 Uniwersytecki Szpital Kliniczny w Opolu'),
(59854, 'https://ror.org/01yzgk702', 'en', 1, 'https://ror.org/01yzgk702 Ministry of Public Health وزارت صحت عامه'),
(59855, 'https://ror.org/00eggnv95', 'en', 1, 'https://ror.org/00eggnv95 Finnish Safety and Chemicals Agency Säkerhets- och kemikalieverket Turvallisuus- ja kemikaalivirasto'),
(59856, 'https://ror.org/00x3k5x70', 'de', 1, 'https://ror.org/00x3k5x70 Ministerium für Wirtschaft, Verkehr, Landwirtschaft und Weinbau Ministry of Economy, Transport, Agriculture and Viticulture'),
(59857, 'https://ror.org/057s1m822', 'en', 1, 'https://ror.org/057s1m822 Florida Department of Citrus'),
(59858, 'https://ror.org/04ee1hr21', 'en', 1, 'https://ror.org/04ee1hr21 Ministry of Education and Skills Development'),
(59859, 'https://ror.org/00zryte34', 'en', 1, 'https://ror.org/00zryte34 Ministry of Foreign and European Affairs Ministère des Affaires étrangères et européennes'),
(59860, 'https://ror.org/01fse5k28', 'en', 1, 'https://ror.org/01fse5k28 Eesti Siseministeerium Ministry of the Interior'),
(59861, 'https://ror.org/00g25n390', 'en', 1, 'https://ror.org/00g25n390 Ministry of Tourism, Sport and the Arts');
INSERT INTO `rors` VALUES
(59862, 'https://ror.org/03nzaax06', 'en', 1, 'https://ror.org/03nzaax06 Ministry of Foreign Affairs 中華民國外交部'),
(59863, 'https://ror.org/05kp26h23', 'en', 1, 'https://ror.org/05kp26h23 National Nutrition Agency'),
(59864, 'https://ror.org/02wymnj87', 'en', 1, 'https://ror.org/02wymnj87 Osaka Prefectural Government 大阪府'),
(59865, 'https://ror.org/01dd1x730', 'fr', 1, 'https://ror.org/01dd1x730 Clinique Saint Jean'),
(59866, 'https://ror.org/01f19gv14', 'en', 1, 'https://ror.org/01f19gv14 New York City Department for the Aging'),
(59867, 'https://ror.org/00r8ksq80', 'en', 1, 'https://ror.org/00r8ksq80 Ministry of Health'),
(59868, 'https://ror.org/057schw20', 'de', 1, 'https://ror.org/057schw20 Schön Klinik Berchtesgadener Land'),
(59869, 'https://ror.org/030yqfm02', 'es', 1, 'https://ror.org/030yqfm02 Ministerio de Salud'),
(59870, 'https://ror.org/01va37t86', 'en', 1, 'https://ror.org/01va37t86 New York City Department of Correction'),
(59871, 'https://ror.org/00cb3r984', 'fr', 1, 'https://ror.org/00cb3r984 Ministry of Public Health Ministère de la Santé Publique'),
(59872, 'https://ror.org/02kyv4s47', 'en', 1, 'https://ror.org/02kyv4s47 Ministry of National Health Services Regulation and Coordination وزارت صحت'),
(59873, 'https://ror.org/03z77se46', 'en', 1, 'https://ror.org/03z77se46 Hawaii Department of Human Services'),
(59874, 'https://ror.org/02r17me31', 'en', 1, 'https://ror.org/02r17me31 Ministry Of Health'),
(59875, 'https://ror.org/03nszce13', 'it', 1, 'https://ror.org/03nszce13 Ospedale Pediatrico Giovanni XXIII'),
(59876, 'https://ror.org/029p55913', 'en', 1, 'https://ror.org/029p55913 Ministry of Public Health and Social Assistance'),
(59877, 'https://ror.org/035btw704', 'de', 1, 'https://ror.org/035btw704 Johanna-Etienne-Krankenhaus'),
(59878, 'https://ror.org/02465hh03', 'en', 1, 'https://ror.org/02465hh03 Ministry of Health, Community Development, Gender, Elderly and Children'),
(59879, 'https://ror.org/05j4tjy04', 'en', 1, 'https://ror.org/05j4tjy04 Ministry of Health and Social Welfare'),
(59880, 'https://ror.org/00v8gng44', 'en', 1, 'https://ror.org/00v8gng44 The American Legion Department of Wisconsin'),
(59881, 'https://ror.org/05d788x61', 'en', 1, 'https://ror.org/05d788x61 Redmond Fire Department'),
(59882, 'https://ror.org/05d0mtf30', 'en', 1, 'https://ror.org/05d0mtf30 Ministry of Public Health'),
(59883, 'https://ror.org/022ebn524', 'no_lang_code', 1, 'https://ror.org/022ebn524 Hennepin County'),
(59884, 'https://ror.org/00fymwf34', 'en', 1, 'https://ror.org/00fymwf34 UnaSource Health'),
(59885, 'https://ror.org/04v719x65', 'en', 1, 'https://ror.org/04v719x65 Beat Nb'),
(59886, 'https://ror.org/01dje3226', 'en', 1, 'https://ror.org/01dje3226 The Stern Cardiovascular Foundation'),
(59887, 'https://ror.org/058x4qg04', 'en', 1, 'https://ror.org/058x4qg04 A Step Ahead Foundation'),
(59888, 'https://ror.org/03w7cqb73', 'en', 1, 'https://ror.org/03w7cqb73 Jack Jablonski BEL13VE in Miracles Foundation'),
(59889, 'https://ror.org/036cvn086', 'it', 1, 'https://ror.org/036cvn086 Fondazione A.R. Card Onlus'),
(59890, 'https://ror.org/02yy1n467', 'en', 1, 'https://ror.org/02yy1n467 Belgian Burn Foundation'),
(59891, 'https://ror.org/023pcfd52', 'en', 1, 'https://ror.org/023pcfd52 Foundation for Cardiac Surgery'),
(59892, 'https://ror.org/018et7876', 'en', 1, 'https://ror.org/018et7876 Columbus Ophthalmology Associates'),
(59893, 'https://ror.org/05fp5vn06', 'en', 1, 'https://ror.org/05fp5vn06 Absenger Cancer Education Foundation'),
(59894, 'https://ror.org/00xvxvn83', 'en', 1, 'https://ror.org/00xvxvn83 European Foundation for the Study of Chronic Liver Failure'),
(59895, 'https://ror.org/03j7zd787', 'es', 1, 'https://ror.org/03j7zd787 Colombian Foundation Center for Epilepsy and Neurological Diseases Fundacion Centro Colombiano de Epilepsia y en Enfermedades Neurologicas'),
(59896, 'https://ror.org/036wdbz11', 'en', 1, 'https://ror.org/036wdbz11 Auto Dealers Caring for Kids Foundation'),
(59897, 'https://ror.org/056xgt572', 'en', 1, 'https://ror.org/056xgt572 Colorado Springs Osteopathic Foundation'),
(59898, 'https://ror.org/01zqwsv76', 'it', 1, 'https://ror.org/01zqwsv76 Fondazione FADOI'),
(59899, 'https://ror.org/03bjx6g30', 'en', 1, 'https://ror.org/03bjx6g30 Africa Mental Health Foundation'),
(59900, 'https://ror.org/000dkqr98', 'en', 1, 'https://ror.org/000dkqr98 Community Eye Care Foundation'),
(59901, 'https://ror.org/003akqg03', 'en', 1, 'https://ror.org/003akqg03 Aidan Foundation'),
(59902, 'https://ror.org/044dx6h83', 'en', 1, 'https://ror.org/044dx6h83 AIDS Healthcare Foundation'),
(59903, 'https://ror.org/005mppy75', 'en', 1, 'https://ror.org/005mppy75 Community Pharmacy Foundation'),
(59904, 'https://ror.org/00j1czq77', 'en', 1, 'https://ror.org/00j1czq77 Foundation for Cardiovascular Biomedical Research and Gene and Cell Therapy'),
(59905, 'https://ror.org/002jbbs61', 'nl', 1, 'https://ror.org/002jbbs61 Continentie Stichting Nederland'),
(59906, 'https://ror.org/05aaaax52', 'en', 1, 'https://ror.org/05aaaax52 Alana''s Foundation'),
(59907, 'https://ror.org/03yqmy809', 'de', 1, 'https://ror.org/03yqmy809 Albert und Barbara von Metzler-Stiftung'),
(59908, 'https://ror.org/036khbq65', 'en', 1, 'https://ror.org/036khbq65 The Alberta Paraplegic Foundation'),
(59909, 'https://ror.org/03kps0c77', 'no_lang_code', 1, 'https://ror.org/03kps0c77 Cool Sorption (Denmark)'),
(59910, 'https://ror.org/02fmwa274', 'en', 1, 'https://ror.org/02fmwa274 Brain and Cognition Discovery Foundation'),
(59911, 'https://ror.org/02a22wk73', 'it', 1, 'https://ror.org/02a22wk73 Fondazione Farmacogenomica FiorGen'),
(59912, 'https://ror.org/0592a5f63', 'en', 1, 'https://ror.org/0592a5f63 Foundation for Spinal Cord Research Moelle Epinière et Motricité Québec'),
(59913, 'https://ror.org/057kybq87', 'en', 1, 'https://ror.org/057kybq87 Bridgewater Community Healthcare NHS Foundation Trust'),
(59914, 'https://ror.org/00fztf021', 'en', 1, 'https://ror.org/00fztf021 Alliance Foundation Trials'),
(59915, 'https://ror.org/01jgxbq59', 'en', 1, 'https://ror.org/01jgxbq59 AlterMed Research Foundation'),
(59916, 'https://ror.org/03xrx2656', 'en', 1, 'https://ror.org/03xrx2656 Cure Foundation'),
(59917, 'https://ror.org/03jgzzv46', 'en', 1, 'https://ror.org/03jgzzv46 Alternating Hemiplegia of Childhood Foundation'),
(59918, 'https://ror.org/00kxda681', 'en', 1, 'https://ror.org/00kxda681 American Foundation for Addiction Research'),
(59919, 'https://ror.org/01q02kv80', 'en', 1, 'https://ror.org/01q02kv80 Foundation for Faces of Children'),
(59920, 'https://ror.org/02a1x2s63', 'en', 1, 'https://ror.org/02a1x2s63 American Legion of Iowa Foundation'),
(59921, 'https://ror.org/04zv2wf02', 'no_lang_code', 1, 'https://ror.org/04zv2wf02 Damien Foundation'),
(59922, 'https://ror.org/05epcyx33', 'en', 1, 'https://ror.org/05epcyx33 Foundation for Education and Musculoskeletal Research'),
(59923, 'https://ror.org/05dyf1y62', 'no_lang_code', 1, 'https://ror.org/05dyf1y62 Byrraju Foundation'),
(59924, 'https://ror.org/02jsea915', 'en', 1, 'https://ror.org/02jsea915 De Cavel Family SIDS Foundation'),
(59925, 'https://ror.org/026envs24', 'en', 1, 'https://ror.org/026envs24 Paradigm Foundation'),
(59926, 'https://ror.org/03e0ext69', 'en', 1, 'https://ror.org/03e0ext69 Andrews Research & Education Foundation'),
(59927, 'https://ror.org/05ya6s054', 'en', 1, 'https://ror.org/05ya6s054 Canadian Foundation for Dental Hygiene Research and Education'),
(59928, 'https://ror.org/03qx0ne83', 'en', 1, 'https://ror.org/03qx0ne83 Dean Foundation'),
(59929, 'https://ror.org/00j8m2v88', 'en', 1, 'https://ror.org/00j8m2v88 Foundation for Southwest Orthopedic Research'),
(59930, 'https://ror.org/04pxn5h75', 'en', 1, 'https://ror.org/04pxn5h75 Arab Foundation For Freedoms And Equality'),
(59931, 'https://ror.org/04ge4r742', 'en', 1, 'https://ror.org/04ge4r742 Capio Research Foundation'),
(59932, 'https://ror.org/04yjzvg70', 'en', 1, 'https://ror.org/04yjzvg70 Arizona Oncology Foundation'),
(59933, 'https://ror.org/03tv7jf42', 'en', 1, 'https://ror.org/03tv7jf42 Fondazione per la Ricerca Farmacologica Gianni Benzi Gianni Benzi Pharmacological Research Foundation'),
(59934, 'https://ror.org/050mwvy04', 'no_lang_code', 1, 'https://ror.org/050mwvy04 Admin Partners (Switzerland)'),
(59935, 'https://ror.org/05c9r4685', 'en', 1, 'https://ror.org/05c9r4685 Dignity Health'),
(59936, 'https://ror.org/037dqnd52', 'en', 1, 'https://ror.org/037dqnd52 The Goldfarb Foundation'),
(59937, 'https://ror.org/03bh0nj27', 'en', 1, 'https://ror.org/03bh0nj27 Goldseker Foundation'),
(59938, 'https://ror.org/0192sgm30', 'sv', 1, 'https://ror.org/0192sgm30 Gorthonstiftelsen'),
(59939, 'https://ror.org/04ktmrv21', 'en', 1, 'https://ror.org/04ktmrv21 Graham Boeckh Foundation'),
(59940, 'https://ror.org/053kvet57', 'en', 1, 'https://ror.org/053kvet57 Dolfinger-McMahon Foundation'),
(59941, 'https://ror.org/026qrcc48', 'en', 1, 'https://ror.org/026qrcc48 Gujarat Kidney Foundation'),
(59942, 'https://ror.org/04ewmmy12', 'en', 1, 'https://ror.org/04ewmmy12 The Challenging Behaviour Foundation'),
(59943, 'https://ror.org/049w8dr20', 'en', 1, 'https://ror.org/049w8dr20 Gwendolyn Strong Foundation'),
(59944, 'https://ror.org/01emd7z98', 'en', 1, 'https://ror.org/01emd7z98 Asia Diabetes Foundation 亚洲糖尿病基金会'),
(59945, 'https://ror.org/04qjgaa08', 'en', 1, 'https://ror.org/04qjgaa08 Foundation Children with Spinal Muscular Atrophy'),
(59946, 'https://ror.org/03cyvc844', 'en', 1, 'https://ror.org/03cyvc844 "Woman Health & Family Planning" Charity Foundation Благодійний фонд "Жінка здоров''я та сімейного планування"'),
(59947, 'https://ror.org/0550wc655', 'en', 1, 'https://ror.org/0550wc655 Charles H. Hood Foundation'),
(59948, 'https://ror.org/053p3yh76', 'no_lang_code', 1, 'https://ror.org/053p3yh76 Walder Wyss (Switzerland)'),
(59949, 'https://ror.org/023p1v236', 'en', 1, 'https://ror.org/023p1v236 Australian Childhood Foundation'),
(59950, 'https://ror.org/01tf40c53', 'en', 1, 'https://ror.org/01tf40c53 Healing Touch Worldwide Foundation'),
(59951, 'https://ror.org/018695p26', 'en', 1, 'https://ror.org/018695p26 Health and Social Development Foundation Фондация "Здраве и социално развитие"'),
(59952, 'https://ror.org/010xh5279', 'en', 1, 'https://ror.org/010xh5279 Fragile X Research Foundation Of Canada'),
(59953, 'https://ror.org/02psfb488', 'en', 1, 'https://ror.org/02psfb488 China Soong Ching Ling Foundation'),
(59954, 'https://ror.org/05xrv5316', 'en', 1, 'https://ror.org/05xrv5316 Hellenic Osteoporosis Foundation Ελληνικό Ίδρυμα Οστεοπόρωσης'),
(59955, 'https://ror.org/05ngdrj30', 'fr', 1, 'https://ror.org/05ngdrj30 Fondation Française pour la Recherche sur l''Epilepsie'),
(59956, 'https://ror.org/04gqrmc82', 'en', 1, 'https://ror.org/04gqrmc82 Australasian Gastro Intestinal Research Foundation'),
(59957, 'https://ror.org/00wz52266', 'es', 1, 'https://ror.org/00wz52266 Fundación Hermano Miguel'),
(59958, 'https://ror.org/019pd0m31', 'en', 1, 'https://ror.org/019pd0m31 Hildegard Grunow Foundation Hildegard-Grunow-Stiftung'),
(59959, 'https://ror.org/0208m9g76', 'en', 1, 'https://ror.org/0208m9g76 The Hubbard Foundation'),
(59960, 'https://ror.org/01q00j872', 'en', 1, 'https://ror.org/01q00j872 HipKnee Arkansas Foundation'),
(59961, 'https://ror.org/04jx66z14', 'pt', 1, 'https://ror.org/04jx66z14 Fundação Edson Queiroz'),
(59962, 'https://ror.org/055g9vf08', 'en', 1, 'https://ror.org/055g9vf08 Human Development Research Foundation'),
(59963, 'https://ror.org/024603t93', 'en', 1, 'https://ror.org/024603t93 Interventional Orthopedics Foundation'),
(59964, 'https://ror.org/0052b4n21', 'pt', 1, 'https://ror.org/0052b4n21 Fundação Ataulpho de Paiva'),
(59965, 'https://ror.org/03cj17c02', 'en', 1, 'https://ror.org/03cj17c02 Holistic Health Research Centre'),
(59966, 'https://ror.org/04wwppp44', 'en', 1, 'https://ror.org/04wwppp44 The O.P. and W.E. Edwards Foundation'),
(59967, 'https://ror.org/04ak3w704', 'en', 1, 'https://ror.org/04ak3w704 Italian Network for Tumor Biotherapy Foundation Network Italiano per la Bioterapia dei Tumori Fondazione'),
(59968, 'https://ror.org/05p5naa72', 'en', 1, 'https://ror.org/05p5naa72 IWK Foundation'),
(59969, 'https://ror.org/05sgz5r12', 'da', 1, 'https://ror.org/05sgz5r12 Ensomme Gamles Vaern'),
(59970, 'https://ror.org/03ckmzz49', 'en', 1, 'https://ror.org/03ckmzz49 Egyptian Foundation for Cancer Research'),
(59971, 'https://ror.org/036da3063', 'en', 1, 'https://ror.org/036da3063 Hôpital Libanais Geitaoui - CHU Lebanese Hospital Geitaoui-University Medical Center المستشفى اللبناني الجعيتاوي'),
(59972, 'https://ror.org/04h3kb791', 'en', 1, 'https://ror.org/04h3kb791 Electrophysiology Research Foundation'),
(59973, 'https://ror.org/0156jsd27', 'en', 1, 'https://ror.org/0156jsd27 James B. and Lois R. Archer Charitable Foundation'),
(59974, 'https://ror.org/021qj7h23', 'en', 1, 'https://ror.org/021qj7h23 Hypersomnia Foundation'),
(59975, 'https://ror.org/01mzwmh52', 'en', 1, 'https://ror.org/01mzwmh52 British Columbia Rehabilitation Foundation'),
(59976, 'https://ror.org/04vt5s449', 'en', 1, 'https://ror.org/04vt5s449 Cure CP'),
(59977, 'https://ror.org/00rrdxz53', 'en', 1, 'https://ror.org/00rrdxz53 Nambudripad''s Allergy Research Foundation'),
(59978, 'https://ror.org/02vzd2x77', 'en', 1, 'https://ror.org/02vzd2x77 Life Extension Foundation'),
(59979, 'https://ror.org/01b0d9a10', 'en', 1, 'https://ror.org/01b0d9a10 Lifelong Vision Foundation'),
(59980, 'https://ror.org/03xrhty12', 'en', 1, 'https://ror.org/03xrhty12 JH Rahn Foundation'),
(59981, 'https://ror.org/03qcwne61', 'en', 1, 'https://ror.org/03qcwne61 Nashville Public Library'),
(59982, 'https://ror.org/0306c2632', 'en', 1, 'https://ror.org/0306c2632 Inflammation Research Foundation'),
(59983, 'https://ror.org/02ww9rk15', 'en', 1, 'https://ror.org/02ww9rk15 National Foundation for Autism Research'),
(59984, 'https://ror.org/022p9j404', 'nl', 1, 'https://ror.org/022p9j404 Nationale Intensive Care Evaluatie Stichting'),
(59985, 'https://ror.org/01wpjz328', 'en', 1, 'https://ror.org/01wpjz328 The IBC Network Foundation'),
(59986, 'https://ror.org/01pt05f05', 'en', 1, 'https://ror.org/01pt05f05 The Living Legacy Foundation'),
(59987, 'https://ror.org/00knzje15', 'en', 1, 'https://ror.org/00knzje15 Lloyd A. Fry Foundation'),
(59988, 'https://ror.org/03k7rfp93', 'en', 1, 'https://ror.org/03k7rfp93 NEGES Foundation'),
(59989, 'https://ror.org/04vjj4994', 'en', 1, 'https://ror.org/04vjj4994 Nepal Family Development Foundation'),
(59990, 'https://ror.org/0556qd820', 'en', 1, 'https://ror.org/0556qd820 Inland Empire Liver Foundation'),
(59991, 'https://ror.org/04rrktd29', 'en', 1, 'https://ror.org/04rrktd29 Joseph M. Still Research Foundation'),
(59992, 'https://ror.org/030ehsk26', 'no_lang_code', 1, 'https://ror.org/030ehsk26 Luther Marketing Group (United Kingdom)'),
(59993, 'https://ror.org/058ab9q40', 'en', 1, 'https://ror.org/058ab9q40 The Lynn Sage Foundation'),
(59994, 'https://ror.org/02neq6p97', 'en', 1, 'https://ror.org/02neq6p97 M.S.I. Foundation'),
(59995, 'https://ror.org/05aznfd39', 'en', 1, 'https://ror.org/05aznfd39 Network of European Foundations'),
(59996, 'https://ror.org/04wkxh813', 'en', 1, 'https://ror.org/04wkxh813 Neurologique Foundation'),
(59997, 'https://ror.org/04y8jf896', 'en', 1, 'https://ror.org/04y8jf896 Interventional Stroke Therapy Outcomes Registry'),
(59998, 'https://ror.org/05cfhyk75', 'en', 1, 'https://ror.org/05cfhyk75 Neys-van Hoogstraten Foundation'),
(59999, 'https://ror.org/044zwp896', 'es', 1, 'https://ror.org/044zwp896 Fundación Andrés Marcio Marcio Andres Foundation'),
(60000, 'https://ror.org/02x62c182', 'en', 1, 'https://ror.org/02x62c182 Her Many Voices Foundation'),
(60001, 'https://ror.org/057c4v611', 'en', 1, 'https://ror.org/057c4v611 International Brain Research Foundation'),
(60002, 'https://ror.org/04fxbva21', 'en', 1, 'https://ror.org/04fxbva21 Marine Corps – Law Enforcement Foundation'),
(60003, 'https://ror.org/00vsg4120', 'en', 1, 'https://ror.org/00vsg4120 North Georgia Heart Foundation'),
(60004, 'https://ror.org/057sba841', 'en', 1, 'https://ror.org/057sba841 Keloid Research Foundation'),
(60005, 'https://ror.org/01g373s33', 'en', 1, 'https://ror.org/01g373s33 International Hyperbaric Medical Foundation'),
(60006, 'https://ror.org/05wgs8j78', 'en', 1, 'https://ror.org/05wgs8j78 Northwest Oklahoma Osteopathic Foundation'),
(60007, 'https://ror.org/03wqpgn56', 'en', 1, 'https://ror.org/03wqpgn56 Kigezi Healthcare Foundation'),
(60008, 'https://ror.org/00t32cq90', 'en', 1, 'https://ror.org/00t32cq90 Fødselsstiftelsen Maternity Foundation'),
(60009, 'https://ror.org/04zame467', 'en', 1, 'https://ror.org/04zame467 Kulas Foundation'),
(60010, 'https://ror.org/03nas4306', 'en', 1, 'https://ror.org/03nas4306 Fisheries Administration រដ្ឋបាល ជលផល'),
(60011, 'https://ror.org/03k50x073', 'en', 1, 'https://ror.org/03k50x073 Mats Uldal Humanitarian Foundation'),
(60012, 'https://ror.org/00qtc6702', 'en', 1, 'https://ror.org/00qtc6702 Nurses for Newborns'),
(60013, 'https://ror.org/03s92re04', 'en', 1, 'https://ror.org/03s92re04 Nursing Science Foundation Switzerland Stiftung Pflegewissenschaften Schweiz'),
(60014, 'https://ror.org/05hs5ga57', 'en', 1, 'https://ror.org/05hs5ga57 Qualitouch-HC Foundation'),
(60015, 'https://ror.org/01659vw12', 'en', 1, 'https://ror.org/01659vw12 Nutritional Research Foundation'),
(60016, 'https://ror.org/04cd54f48', 'en', 1, 'https://ror.org/04cd54f48 Landon Pediatric Foundation'),
(60017, 'https://ror.org/020nhna33', 'en', 1, 'https://ror.org/020nhna33 American College of Osteopathic Obstetricians & Gynecologists'),
(60018, 'https://ror.org/05c4jjy50', 'en', 1, 'https://ror.org/05c4jjy50 Medica Foundation'),
(60019, 'https://ror.org/048qh2s42', 'en', 1, 'https://ror.org/048qh2s42 OASI Bioresearch Foundation'),
(60020, 'https://ror.org/00bkk2469', 'en', 1, 'https://ror.org/00bkk2469 Medarva Healthcare'),
(60021, 'https://ror.org/04khtec53', 'en', 1, 'https://ror.org/04khtec53 Paul Ruby Foundation for Parkinson’s Research'),
(60022, 'https://ror.org/02687k192', 'en', 1, 'https://ror.org/02687k192 Barbara Lee Family Foundation'),
(60023, 'https://ror.org/00jdndk37', 'en', 1, 'https://ror.org/00jdndk37 The Lee Spark NF Foundation'),
(60024, 'https://ror.org/03gnnp686', 'en', 1, 'https://ror.org/03gnnp686 Ocular Immunology and Uveitis Foundation'),
(60025, 'https://ror.org/0415b1145', 'en', 1, 'https://ror.org/0415b1145 Leiomyosarcoma Direct Research Foundation'),
(60026, 'https://ror.org/02zx70081', 'en', 1, 'https://ror.org/02zx70081 Omair Sana Foundation'),
(60027, 'https://ror.org/00g5rbh32', 'en', 1, 'https://ror.org/00g5rbh32 Michigan Pharmacists Association'),
(60028, 'https://ror.org/02m0hdc77', 'en', 1, 'https://ror.org/02m0hdc77 Jesse & Julie Rasch Foundation'),
(60029, 'https://ror.org/02s04ww23', 'en', 1, 'https://ror.org/02s04ww23 Ronan Thompson Foundation'),
(60030, 'https://ror.org/042t5qg73', 'en', 1, 'https://ror.org/042t5qg73 Miina Sillanpää Foundation Miina Sillanpään Säätiö'),
(60031, 'https://ror.org/051ay2y67', 'en', 1, 'https://ror.org/051ay2y67 Rashi Foundation קרן רש"י'),
(60032, 'https://ror.org/01hgadp56', 'en', 1, 'https://ror.org/01hgadp56 ALS Finding a Cure'),
(60033, 'https://ror.org/031rmrw34', 'en', 1, 'https://ror.org/031rmrw34 Pediatric Blood and Marrow Transplant Foundation'),
(60034, 'https://ror.org/017s9e951', 'en', 1, 'https://ror.org/017s9e951 Institute for Rehabilitation and Research Foundation'),
(60035, 'https://ror.org/05wzgbw88', 'en', 1, 'https://ror.org/05wzgbw88 Mitsukoshi Health and Welfare Foundation 財団法人三越厚生事業団'),
(60036, 'https://ror.org/02gxv2217', 'en', 1, 'https://ror.org/02gxv2217 Pedorthic Research Foundation of Canada'),
(60037, 'https://ror.org/020vv3w23', 'fi', 1, 'https://ror.org/020vv3w23 Invalidisäätiö'),
(60038, 'https://ror.org/05jyzkb74', 'en', 1, 'https://ror.org/05jyzkb74 Pennsylvania Allergy and Asthma Association'),
(60039, 'https://ror.org/04q1tq423', 'en', 1, 'https://ror.org/04q1tq423 The Sandra A. Daugherty Foundation'),
(60040, 'https://ror.org/00wk6gg04', 'en', 1, 'https://ror.org/00wk6gg04 Musculoskeletal Orthopedic Research and Education Foundation'),
(60041, 'https://ror.org/041ee2w62', 'en', 1, 'https://ror.org/041ee2w62 Michael Reese Research and Education Foundation'),
(60042, 'https://ror.org/00yy1mz70', 'en', 1, 'https://ror.org/00yy1mz70 Osteopathic Founders Foundation'),
(60043, 'https://ror.org/039m3qq17', 'en', 1, 'https://ror.org/039m3qq17 Choroideremia Research Foundation'),
(60044, 'https://ror.org/058g4tt51', 'da', 1, 'https://ror.org/058g4tt51 Edgar Schnohr og hustru Gilberte Schnohr''s Fond'),
(60045, 'https://ror.org/0413e4b06', 'no', 1, 'https://ror.org/0413e4b06 Solveig and Johan P. Sommer''s foundation Solveig og Johan P. Sommers stiftelse'),
(60046, 'https://ror.org/007d0bq34', 'en', 1, 'https://ror.org/007d0bq34 Maier Foundation'),
(60047, 'https://ror.org/03yjh4902', 'en', 1, 'https://ror.org/03yjh4902 ResOrtho Foundation ResOrtho Stiftung'),
(60048, 'https://ror.org/002jbzp90', 'en', 1, 'https://ror.org/002jbzp90 Sceptor Pain Foundation'),
(60049, 'https://ror.org/05mb9sm33', 'en', 1, 'https://ror.org/05mb9sm33 Texas Cardiac Arrhythmia'),
(60050, 'https://ror.org/03bv7bz63', 'en', 1, 'https://ror.org/03bv7bz63 South Sound Care Foundation'),
(60051, 'https://ror.org/01p3c7261', 'en', 1, 'https://ror.org/01p3c7261 The Peter and Elizabeth C. Tower Foundation'),
(60052, 'https://ror.org/03s58x415', 'no_lang_code', 1, 'https://ror.org/03s58x415 Deichmann (Germany)'),
(60053, 'https://ror.org/0087pxt17', 'es', 1, 'https://ror.org/0087pxt17 Fundación Pethema'),
(60054, 'https://ror.org/058yj6h98', 'en', 1, 'https://ror.org/058yj6h98 Respiratory Clinical Trials'),
(60055, 'https://ror.org/0049tqy16', 'en', 1, 'https://ror.org/0049tqy16 St. Hope Foundation'),
(60056, 'https://ror.org/000518j63', 'no', 1, 'https://ror.org/000518j63 Stavanger Acute Medicine Foundation for Education and Research Stavanger Akuttmedisinfond for utdanning og forskning'),
(60057, 'https://ror.org/0212s7037', 'en', 1, 'https://ror.org/0212s7037 The Asper Foundation'),
(60058, 'https://ror.org/01frh6r56', 'no_lang_code', 1, 'https://ror.org/01frh6r56 Seguros Caracas Liberty Mutual (Venezuela)'),
(60059, 'https://ror.org/0066mxd71', 'de', 1, 'https://ror.org/0066mxd71 Rexrodt von Fircks Stiftung'),
(60060, 'https://ror.org/025qj9586', 'en', 1, 'https://ror.org/025qj9586 Semmes Murphey Foundation'),
(60061, 'https://ror.org/01gxyxa13', 'en', 1, 'https://ror.org/01gxyxa13 Setting Scoliosis Straight Foundation'),
(60062, 'https://ror.org/03h79ns34', 'en', 1, 'https://ror.org/03h79ns34 Bowmen Family Foundation'),
(60063, 'https://ror.org/029tn0z88', 'en', 1, 'https://ror.org/029tn0z88 Strabismus Research Foundation'),
(60064, 'https://ror.org/002smyn79', 'en', 1, 'https://ror.org/002smyn79 Sun Protection Foundation'),
(60065, 'https://ror.org/00k82d071', 'en', 1, 'https://ror.org/00k82d071 The Chopra Foundation'),
(60066, 'https://ror.org/04t7xhp38', 'en', 1, 'https://ror.org/04t7xhp38 Side-Out Foundation'),
(60067, 'https://ror.org/016006q30', 'en', 1, 'https://ror.org/016006q30 Slocum Research and Education Foundation'),
(60068, 'https://ror.org/00yyvga88', 'en', 1, 'https://ror.org/00yyvga88 Small Enterprise Foundation'),
(60069, 'https://ror.org/02t63ax82', 'en', 1, 'https://ror.org/02t63ax82 Surya Chest Foundation'),
(60070, 'https://ror.org/0205c6c55', 'en', 1, 'https://ror.org/0205c6c55 Pine Street Foundation'),
(60071, 'https://ror.org/04mddwq63', 'en', 1, 'https://ror.org/04mddwq63 Susan L. Bader Foundation of Hope'),
(60072, 'https://ror.org/04bhbrs76', 'en', 1, 'https://ror.org/04bhbrs76 River Styx Foundation'),
(60073, 'https://ror.org/02p6m2x11', 'en', 1, 'https://ror.org/02p6m2x11 The Piton Foundation'),
(60074, 'https://ror.org/05jgnq975', 'en', 1, 'https://ror.org/05jgnq975 Early Childhood Initiative Foundation'),
(60075, 'https://ror.org/0193k3909', 'en', 1, 'https://ror.org/0193k3909 Swedish Nutrition Foundation'),
(60076, 'https://ror.org/0300tx783', 'en', 1, 'https://ror.org/0300tx783 Planet Water Foundation'),
(60077, 'https://ror.org/00dbfqh37', 'en', 1, 'https://ror.org/00dbfqh37 Golden Helix Foundation'),
(60078, 'https://ror.org/0172qgn96', 'en', 1, 'https://ror.org/0172qgn96 The Eisner Foundation'),
(60079, 'https://ror.org/02asz3j87', 'en', 1, 'https://ror.org/02asz3j87 Stiftung Swiss Foundation for Excellence and Talent in Biomedical Research Swiss Foundation for Excellence and Talent in Biomedical Research'),
(60080, 'https://ror.org/05q2kbw66', 'en', 1, 'https://ror.org/05q2kbw66 The Heartburn Foundation'),
(60081, 'https://ror.org/025n23k97', 'en', 1, 'https://ror.org/025n23k97 Planet Wheeler Foundation'),
(60082, 'https://ror.org/0212kmf07', 'en', 1, 'https://ror.org/0212kmf07 Saving Faces'),
(60083, 'https://ror.org/00k98as45', 'en', 1, 'https://ror.org/00k98as45 Perinatal Quality Foundation'),
(60084, 'https://ror.org/03n2efg67', 'en', 1, 'https://ror.org/03n2efg67 Hoffberger Family Philanthropies'),
(60085, 'https://ror.org/035d5ht51', 'en', 1, 'https://ror.org/035d5ht51 The Fan Fox and Leslie R. Samuels Foundation'),
(60086, 'https://ror.org/0560yf995', 'en', 1, 'https://ror.org/0560yf995 Feminist Majority Foundation'),
(60087, 'https://ror.org/033nznn12', 'en', 1, 'https://ror.org/033nznn12 Hong Kong Blood Cancer Foundation 香港血癌基金'),
(60088, 'https://ror.org/040emdb43', 'en', 1, 'https://ror.org/040emdb43 Fetal Medicine Foundation Belgium Foetale Geneeskunde'),
(60089, 'https://ror.org/04pmb3j40', 'en', 1, 'https://ror.org/04pmb3j40 Hong Kong Lung Foundation'),
(60090, 'https://ror.org/00c0e8k87', 'en', 1, 'https://ror.org/00c0e8k87 Pothecary Witham Weld Solicitors'),
(60091, 'https://ror.org/01p47g940', 'es', 1, 'https://ror.org/01p47g940 Fundación Huésped'),
(60092, 'https://ror.org/05v54nj07', 'en', 1, 'https://ror.org/05v54nj07 Finnish Research Foundation for Orthopaedics and Traumatology Ortopedian ja traumatologian tutkimussäätiö'),
(60093, 'https://ror.org/019fmzd26', 'en', 1, 'https://ror.org/019fmzd26 Plough Foundation'),
(60094, 'https://ror.org/04e40d584', 'en', 1, 'https://ror.org/04e40d584 Taipei Fubon Bank Philanthropy Foundation 台北富邦銀行公益慈善基金會'),
(60095, 'https://ror.org/017t5ge61', 'en', 1, 'https://ror.org/017t5ge61 Polk Bros. Foundation'),
(60096, 'https://ror.org/03q5gxs50', 'en', 1, 'https://ror.org/03q5gxs50 Peter G. Dodge Foundation'),
(60097, 'https://ror.org/02hk1y795', 'en', 1, 'https://ror.org/02hk1y795 TargetCancer Foundation'),
(60098, 'https://ror.org/004n9g494', 'en', 1, 'https://ror.org/004n9g494 Task Applied Science'),
(60099, 'https://ror.org/04c8g2w89', 'en', 1, 'https://ror.org/04c8g2w89 Mulago Foundation'),
(60100, 'https://ror.org/04tagby45', 'en', 1, 'https://ror.org/04tagby45 Triodos Bank'),
(60101, 'https://ror.org/02k3h7m33', 'en', 1, 'https://ror.org/02k3h7m33 The Stop ALD Foundation'),
(60102, 'https://ror.org/002pzb313', 'en', 1, 'https://ror.org/002pzb313 The Kidney Foundation of Thailand มูลนิธิโรคไตแห่งประเทศไทย'),
(60103, 'https://ror.org/02dgz7m30', 'en', 1, 'https://ror.org/02dgz7m30 Tahija Foundation Yayasan Tahija'),
(60104, 'https://ror.org/03greb419', 'en', 1, 'https://ror.org/03greb419 Turkish Metabolic Surgery Foundation'),
(60105, 'https://ror.org/02c7gw327', 'en', 1, 'https://ror.org/02c7gw327 Thistle Foundation'),
(60106, 'https://ror.org/05724sa39', 'en', 1, 'https://ror.org/05724sa39 Fondation Sandra Schmirler Sandra Schmirler Foundation'),
(60107, 'https://ror.org/05rtsqz84', 'en', 1, 'https://ror.org/05rtsqz84 Ben''s Dream'),
(60108, 'https://ror.org/00nx7kq05', 'en', 1, 'https://ror.org/00nx7kq05 Wayne D Kuni & Joan E Kuni Foundation'),
(60109, 'https://ror.org/03rsvnv92', 'en', 1, 'https://ror.org/03rsvnv92 The Sashbear Foundation'),
(60110, 'https://ror.org/04p9df934', 'en', 1, 'https://ror.org/04p9df934 Winnicott Foundation'),
(60111, 'https://ror.org/0223m1p35', 'en', 1, 'https://ror.org/0223m1p35 Shade Foundation'),
(60112, 'https://ror.org/05kj9dv08', 'en', 1, 'https://ror.org/05kj9dv08 The SHM Foundation'),
(60113, 'https://ror.org/021tj2a07', 'en', 1, 'https://ror.org/021tj2a07 National Urea Cycle Disorders Foundation'),
(60114, 'https://ror.org/03q4enq27', 'en', 1, 'https://ror.org/03q4enq27 Thomas & Jeanne Elmezzi Foundation'),
(60115, 'https://ror.org/01t307872', 'en', 1, 'https://ror.org/01t307872 Progressive Agriculture Foundation'),
(60116, 'https://ror.org/00hech464', 'en', 1, 'https://ror.org/00hech464 The Ojai Foundation'),
(60117, 'https://ror.org/03naec835', 'en', 1, 'https://ror.org/03naec835 The Solomon Foundation'),
(60118, 'https://ror.org/0582awy59', 'en', 1, 'https://ror.org/0582awy59 Sparrow Thoracic Cardiovascular Institute'),
(60119, 'https://ror.org/03n2zvn26', 'en', 1, 'https://ror.org/03n2zvn26 United Healthcare Children''s Foundation'),
(60120, 'https://ror.org/04qm5g479', 'en', 1, 'https://ror.org/04qm5g479 Thought Field Therapy Foundation'),
(60121, 'https://ror.org/0385e6y24', 'en', 1, 'https://ror.org/0385e6y24 Urological Research Foundation'),
(60122, 'https://ror.org/04t03ph12', 'en', 1, 'https://ror.org/04t03ph12 Danish Agency for Institutions and Educational Grants'),
(60123, 'https://ror.org/00brfrj94', 'en', 1, 'https://ror.org/00brfrj94 Veterans for America'),
(60124, 'https://ror.org/032eyp751', 'en', 1, 'https://ror.org/032eyp751 Vietnamese Voluntary Foundation'),
(60125, 'https://ror.org/013t72710', 'en', 1, 'https://ror.org/013t72710 Windward Islands Research and Education Foundation'),
(60126, 'https://ror.org/0364jg040', 'en', 1, 'https://ror.org/0364jg040 Pure North'),
(60127, 'https://ror.org/050htcf02', 'en', 1, 'https://ror.org/050htcf02 Proliance Orthopedic Associates'),
(60128, 'https://ror.org/0305pf426', 'no_lang_code', 1, 'https://ror.org/0305pf426 Wadsworth Golf Construction Company (United States)'),
(60129, 'https://ror.org/04krek379', 'en', 1, 'https://ror.org/04krek379 Watching Over Mothers & Babies'),
(60130, 'https://ror.org/045d4st33', 'en', 1, 'https://ror.org/045d4st33 Yoga Science Foundation'),
(60131, 'https://ror.org/04ybb1s66', 'en', 1, 'https://ror.org/04ybb1s66 Foundation Van Goethem-Brichant'),
(60132, 'https://ror.org/04bvb7577', 'en', 1, 'https://ror.org/04bvb7577 WellMed Charitable Foundation'),
(60133, 'https://ror.org/00hz6qz36', 'en', 1, 'https://ror.org/00hz6qz36 Western States Endurance Run Foundation'),
(60134, 'https://ror.org/05pegpf07', 'en', 1, 'https://ror.org/05pegpf07 Western Orthopedics Foundation'),
(60135, 'https://ror.org/050782b52', 'no_lang_code', 1, 'https://ror.org/050782b52 A-SKIN (Netherlands)'),
(60136, 'https://ror.org/00vbx3555', 'en', 1, 'https://ror.org/00vbx3555 White Clover Wellness and Research Center'),
(60137, 'https://ror.org/0181jsv49', 'no_lang_code', 1, 'https://ror.org/0181jsv49 Cromsource (Netherlands)'),
(60138, 'https://ror.org/030nx8440', 'no_lang_code', 1, 'https://ror.org/030nx8440 A.S. Watson (Netherlands)'),
(60139, 'https://ror.org/05ea7a262', 'en', 1, 'https://ror.org/05ea7a262 Eat2Move'),
(60140, 'https://ror.org/02xb05b57', 'no_lang_code', 1, 'https://ror.org/02xb05b57 Crospon (Ireland)'),
(60141, 'https://ror.org/03qhzdc37', 'no_lang_code', 1, 'https://ror.org/03qhzdc37 Bühlmann (Switzerland)'),
(60142, 'https://ror.org/05fwtr092', 'nl', 1, 'https://ror.org/05fwtr092 Arbo Unie'),
(60143, 'https://ror.org/041a6v281', 'nl', 1, 'https://ror.org/041a6v281 Centrum Verslavings Onderzoek'),
(60144, 'https://ror.org/04m55rk62', 'no_lang_code', 1, 'https://ror.org/04m55rk62 Archipel Zorggroep (Netherlands)'),
(60145, 'https://ror.org/03rmatq71', 'nl', 1, 'https://ror.org/03rmatq71 CED Groep'),
(60146, 'https://ror.org/05jrbdv26', 'en', 1, 'https://ror.org/05jrbdv26 Expertise Center Vocational Education Expertisecentrum Beroepsonderwijs'),
(60147, 'https://ror.org/017ecm653', 'en', 1, 'https://ror.org/017ecm653 Academic Center for Evidence-Based Sports Medicine'),
(60148, 'https://ror.org/0452c3x52', 'nl', 1, 'https://ror.org/0452c3x52 D.H. Heijne Stichting'),
(60149, 'https://ror.org/052bwcm79', 'nl', 1, 'https://ror.org/052bwcm79 Capri Hartrevalidatie'),
(60150, 'https://ror.org/02x67gd16', 'no_lang_code', 1, 'https://ror.org/02x67gd16 CameraPil (Netherlands)'),
(60151, 'https://ror.org/00r83s510', 'nl', 1, 'https://ror.org/00r83s510 Virenze'),
(60152, 'https://ror.org/05d63m431', 'en', 1, 'https://ror.org/05d63m431 Carbohydrate Competence Center'),
(60153, 'https://ror.org/03tx1jp34', 'nl', 1, 'https://ror.org/03tx1jp34 De Forensische Zorgspecialisten'),
(60154, 'https://ror.org/02tgb3473', 'en', 1, 'https://ror.org/02tgb3473 Reach-Aut Academic Centre for Autism'),
(60155, 'https://ror.org/01xhgcw67', 'no_lang_code', 1, 'https://ror.org/01xhgcw67 De Friesland Zorgverzekeraar (Netherlands)'),
(60156, 'https://ror.org/04r5kab60', 'no_lang_code', 1, 'https://ror.org/04r5kab60 Arteg (Netherlands)'),
(60157, 'https://ror.org/01jrsap74', 'nl', 1, 'https://ror.org/01jrsap74 Stichting De Opbouw'),
(60158, 'https://ror.org/00y5txd68', 'no_lang_code', 1, 'https://ror.org/00y5txd68 Elfi-Tech (Israel)'),
(60159, 'https://ror.org/01fqyr702', 'nl', 1, 'https://ror.org/01fqyr702 De Twentse Zorgcentra'),
(60160, 'https://ror.org/03vjvtz41', 'no_lang_code', 1, 'https://ror.org/03vjvtz41 PronoKal Group (Spain)'),
(60161, 'https://ror.org/00dfdhy47', 'nl', 1, 'https://ror.org/00dfdhy47 Stichting Artrose Zorg'),
(60162, 'https://ror.org/03g9a1538', 'no_lang_code', 1, 'https://ror.org/03g9a1538 Embedded Fitness (Netherlands)'),
(60163, 'https://ror.org/05vgtss27', 'en', 1, 'https://ror.org/05vgtss27 C Care Orthopedics'),
(60164, 'https://ror.org/04wqn7h33', 'no_lang_code', 1, 'https://ror.org/04wqn7h33 AEGEA Medical (United States)'),
(60165, 'https://ror.org/013k8vr26', 'en', 1, 'https://ror.org/013k8vr26 Deltaplan Dementie Deltaplan dementia'),
(60166, 'https://ror.org/018wek193', 'no_lang_code', 1, 'https://ror.org/018wek193 The eNose (Netherlands)'),
(60167, 'https://ror.org/043mdy139', 'no_lang_code', 1, 'https://ror.org/043mdy139 Dentaid (Netherlands)'),
(60168, 'https://ror.org/01523c327', 'no_lang_code', 1, 'https://ror.org/01523c327 Centraal Ziekenfonds (Netherlands)'),
(60169, 'https://ror.org/02rycyg15', 'nl', 1, 'https://ror.org/02rycyg15 Depressie Vereniging'),
(60170, 'https://ror.org/02s8ewa53', 'no_lang_code', 1, 'https://ror.org/02s8ewa53 Hemics (Netherlands)'),
(60171, 'https://ror.org/04md5tc32', 'nl', 1, 'https://ror.org/04md5tc32 Entrea'),
(60172, 'https://ror.org/003n39s44', 'nl', 1, 'https://ror.org/003n39s44 Apotheek Haagse Ziekenhuizen Pharmacy Hague Hospital'),
(60173, 'https://ror.org/008a4xs91', 'en', 1, 'https://ror.org/008a4xs91 Alan Turing Institute Almere'),
(60174, 'https://ror.org/03ed6ba60', 'nl', 1, 'https://ror.org/03ed6ba60 Epilepsiefonds'),
(60175, 'https://ror.org/01qyj3s68', 'en', 1, 'https://ror.org/01qyj3s68 Koninklijke Nederlandse Atletiek Unie Royal Dutch Athletics Federation'),
(60176, 'https://ror.org/03n243a44', 'nl', 1, 'https://ror.org/03n243a44 Atria'),
(60177, 'https://ror.org/033zc3t08', 'nl', 1, 'https://ror.org/033zc3t08 Stichting Erasmus Trustfonds'),
(60178, 'https://ror.org/032vv2x86', 'nl', 1, 'https://ror.org/032vv2x86 Diapriva Diapriva Dialysezentrum Amsterdam'),
(60179, 'https://ror.org/05k9gkx37', 'nl', 1, 'https://ror.org/05k9gkx37 Erfelijke Stofwisselingsziekten Nederland'),
(60180, 'https://ror.org/010jxjq13', 'nl', 1, 'https://ror.org/010jxjq13 Dimence'),
(60181, 'https://ror.org/014ef6110', 'nl', 1, 'https://ror.org/014ef6110 Alexander Monro Ziekenhuis'),
(60182, 'https://ror.org/003meye08', 'en', 1, 'https://ror.org/003meye08 Avans+'),
(60183, 'https://ror.org/03p00z818', 'en', 1, 'https://ror.org/03p00z818 Dutch Lung Cancer Research Group'),
(60184, 'https://ror.org/0392bhy50', 'nl', 1, 'https://ror.org/0392bhy50 DOH Zorggroep'),
(60185, 'https://ror.org/01a2crk92', 'nl', 1, 'https://ror.org/01a2crk92 Dokter Izak Wessel Stichting'),
(60186, 'https://ror.org/007sjwq14', 'nl', 1, 'https://ror.org/007sjwq14 Dokter Wittenberg Stichting'),
(60187, 'https://ror.org/01qyj4j90', 'en', 1, 'https://ror.org/01qyj4j90 CityLab010'),
(60188, 'https://ror.org/03nx7mw09', 'no_lang_code', 1, 'https://ror.org/03nx7mw09 B. Braun (Netherlands)'),
(60189, 'https://ror.org/04c4nbz33', 'nl', 1, 'https://ror.org/04c4nbz33 AmbulanceZorg Rotterdam-Rijnmond'),
(60190, 'https://ror.org/01zacdj41', 'nl', 1, 'https://ror.org/01zacdj41 Amstelland Fysiotherapie'),
(60191, 'https://ror.org/00hbvz117', 'en', 1, 'https://ror.org/00hbvz117 Dutch Association for Regional Anesthesia'),
(60192, 'https://ror.org/0153zg311', 'no_lang_code', 1, 'https://ror.org/0153zg311 Bauerfeind (Netherlands)'),
(60193, 'https://ror.org/05qwpv987', 'nl', 1, 'https://ror.org/05qwpv987 VeiligheidNL'),
(60194, 'https://ror.org/00zbyrh97', 'nl', 1, 'https://ror.org/00zbyrh97 Bavo Stichting Heemstede'),
(60195, 'https://ror.org/05e2s1y16', 'no_lang_code', 1, 'https://ror.org/05e2s1y16 AngioDynamics (Netherlands)'),
(60196, 'https://ror.org/03bz8z424', 'nl', 1, 'https://ror.org/03bz8z424 Dystonie Vereniging'),
(60197, 'https://ror.org/02xztvm24', 'en', 1, 'https://ror.org/02xztvm24 Dutch Endovascular Alliance'),
(60198, 'https://ror.org/048bjga67', 'no_lang_code', 1, 'https://ror.org/048bjga67 Evalan (Netherlands)'),
(60199, 'https://ror.org/01442sk86', 'no_lang_code', 1, 'https://ror.org/01442sk86 Bayer (Netherlands)'),
(60200, 'https://ror.org/00cfpf441', 'nl', 1, 'https://ror.org/00cfpf441 Evean'),
(60201, 'https://ror.org/05wwhq151', 'de', 1, 'https://ror.org/05wwhq151 Technologiestiftung Berlin Technologiestiftung Innovationszentrum Berlin'),
(60202, 'https://ror.org/02bc7xp68', 'en', 1, 'https://ror.org/02bc7xp68 Dutch Healthcare Authority Nederlandse Zorgautoriteit'),
(60203, 'https://ror.org/009v0hs75', 'nl', 1, 'https://ror.org/009v0hs75 Stichting Bergh in het Zadel'),
(60204, 'https://ror.org/04zmc7w78', 'en', 1, 'https://ror.org/04zmc7w78 Netherlands Nutrition Centre Stichting Voedingscentrum'),
(60205, 'https://ror.org/01bqsaw31', 'en', 1, 'https://ror.org/01bqsaw31 Parkwood Institute'),
(60206, 'https://ror.org/0598b8w92', 'nl', 1, 'https://ror.org/0598b8w92 Nederlandse Vereniging voor Hepatologie'),
(60207, 'https://ror.org/05qce6816', 'no_lang_code', 1, 'https://ror.org/05qce6816 BioClin (Netherlands)'),
(60208, 'https://ror.org/028248q44', 'nl', 1, 'https://ror.org/028248q44 Nederlandse Vereniging van Podotherapeuten'),
(60209, 'https://ror.org/04kcgyj43', 'en', 1, 'https://ror.org/04kcgyj43 The Microsoft Research - University of Trento Centre for Computational and Systems Biology'),
(60210, 'https://ror.org/04ja13179', 'no_lang_code', 1, 'https://ror.org/04ja13179 AQLANE Medical (Netherlands)'),
(60211, 'https://ror.org/05hcyxs26', 'nl', 1, 'https://ror.org/05hcyxs26 Fietsersbond'),
(60212, 'https://ror.org/034k8cv93', 'no_lang_code', 1, 'https://ror.org/034k8cv93 Zimmer Biomet (Netherlands)'),
(60213, 'https://ror.org/00mw0j492', 'en', 1, 'https://ror.org/00mw0j492 Fit Kids Foundation'),
(60214, 'https://ror.org/059rjv992', 'no_lang_code', 1, 'https://ror.org/059rjv992 EarlySense (Israel)'),
(60215, 'https://ror.org/04318hx17', 'nl', 1, 'https://ror.org/04318hx17 Antes'),
(60216, 'https://ror.org/00yvav781', 'no_lang_code', 1, 'https://ror.org/00yvav781 FluxPlus (Netherlands)'),
(60217, 'https://ror.org/05grjt380', 'no_lang_code', 1, 'https://ror.org/05grjt380 Focal Meditech (Netherlands)'),
(60218, 'https://ror.org/01mm9kz68', 'no_lang_code', 1, 'https://ror.org/01mm9kz68 GD Medical Pharma (Netherlands)'),
(60219, 'https://ror.org/01ks64q75', 'no_lang_code', 1, 'https://ror.org/01ks64q75 BIRR (Netherlands)'),
(60220, 'https://ror.org/01cwg1p04', 'en', 1, 'https://ror.org/01cwg1p04 Foundation Centrum ''45 Stichting Centrum ''45'),
(60221, 'https://ror.org/01xazqf25', 'nl', 1, 'https://ror.org/01xazqf25 Geriant'),
(60222, 'https://ror.org/01j5rwt89', 'en', 1, 'https://ror.org/01j5rwt89 Influenza Foundation of Thailand มูลนิธิส่งเสิรมการศึกษาไข้หวัดใหญ่'),
(60223, 'https://ror.org/01tx2e407', 'nl', 1, 'https://ror.org/01tx2e407 Vlaams Agentschap Zorg en Gezondheid'),
(60224, 'https://ror.org/03h83vk17', 'fr', 1, 'https://ror.org/03h83vk17 Ministère De La Santé'),
(60225, 'https://ror.org/04jntfm70', 'de', 1, 'https://ror.org/04jntfm70 Deutsche Lepra- und Tuberkulosehilfe'),
(60226, 'https://ror.org/00c9v5g25', 'nl', 1, 'https://ror.org/00c9v5g25 Stichting FORCE'),
(60227, 'https://ror.org/02fyhvd52', 'nl', 1, 'https://ror.org/02fyhvd52 Fonds de Gavere'),
(60228, 'https://ror.org/00dkp4z50', 'nl', 1, 'https://ror.org/00dkp4z50 GGD Rotterdam-Rijnmond Gemeentelijke gezondheidsdienst Rotterdam-Rijnmond'),
(60229, 'https://ror.org/042s2nd27', 'nl', 1, 'https://ror.org/042s2nd27 GGD Zeeland Gemeentelijke gezondheidsdienst Zeeland'),
(60230, 'https://ror.org/04ms2sw50', 'nl', 1, 'https://ror.org/04ms2sw50 Dienst Gezondheid & Jeugd'),
(60231, 'https://ror.org/02kj9za59', 'nl', 1, 'https://ror.org/02kj9za59 GGD West-Brabant Gemeentelijke gezondheidsdienst West-Brabant'),
(60232, 'https://ror.org/00ysd3163', 'nl', 1, 'https://ror.org/00ysd3163 Fonds voor het Hart'),
(60233, 'https://ror.org/00394zv26', 'en', 1, 'https://ror.org/00394zv26 Department of Disease Control'),
(60234, 'https://ror.org/01nsg2f90', 'nl', 1, 'https://ror.org/01nsg2f90 Robuust'),
(60235, 'https://ror.org/00zdfr649', 'nl', 1, 'https://ror.org/00zdfr649 Stichting Zonnige Jeugd'),
(60236, 'https://ror.org/056v13058', 'nl', 1, 'https://ror.org/056v13058 Fonds Verstandelijk Gehandicapten'),
(60237, 'https://ror.org/04c0z9s56', 'nl', 1, 'https://ror.org/04c0z9s56 GGZ Delfland'),
(60238, 'https://ror.org/05g52s684', 'nl', 1, 'https://ror.org/05g52s684 Kijvelanden'),
(60239, 'https://ror.org/02xjdnj70', 'nl', 1, 'https://ror.org/02xjdnj70 Amstelring'),
(60240, 'https://ror.org/01kmd8x15', 'nl', 1, 'https://ror.org/01kmd8x15 Oostvaarderskliniek'),
(60241, 'https://ror.org/00b3xjw51', 'nl', 1, 'https://ror.org/00b3xjw51 GGZ Noord-Holland-Noord'),
(60242, 'https://ror.org/00354aw77', 'no_lang_code', 1, 'https://ror.org/00354aw77 Bristol-Myers Squibb (Netherlands)'),
(60243, 'https://ror.org/00byb9q66', 'no_lang_code', 1, 'https://ror.org/00byb9q66 Fractyl (United States)'),
(60244, 'https://ror.org/03ph8dz38', 'nl', 1, 'https://ror.org/03ph8dz38 GGZ Westelijk Noord-Brabant'),
(60245, 'https://ror.org/05atcw115', 'no_lang_code', 1, 'https://ror.org/05atcw115 GlaxoSmithKline (Netherlands)'),
(60246, 'https://ror.org/01x4thh14', 'en', 1, 'https://ror.org/01x4thh14 CR2O'),
(60247, 'https://ror.org/01j0j2s89', 'nl', 1, 'https://ror.org/01j0j2s89 Zeeuws Hand & Pols Centrum'),
(60248, 'https://ror.org/04g22a016', 'en', 1, 'https://ror.org/04g22a016 Vision Research ROPARD Foundation'),
(60249, 'https://ror.org/0492chx91', 'en', 1, 'https://ror.org/0492chx91 Go4children'),
(60250, 'https://ror.org/03n3g7r56', 'no_lang_code', 1, 'https://ror.org/03n3g7r56 Goodlife (Netherlands)'),
(60251, 'https://ror.org/05mpph804', 'no_lang_code', 1, 'https://ror.org/05mpph804 Frisian Flag (Indonesia)'),
(60252, 'https://ror.org/0204aj955', 'nl', 1, 'https://ror.org/0204aj955 Gouverneur Kremers Centrum'),
(60253, 'https://ror.org/02hp0cc95', 'en', 1, 'https://ror.org/02hp0cc95 Health & Motion'),
(60254, 'https://ror.org/042xwgm79', 'nl', 1, 'https://ror.org/042xwgm79 Fysio Schambergen'),
(60255, 'https://ror.org/01s361a76', 'no_lang_code', 1, 'https://ror.org/01s361a76 Boston Scientific (Belgium)'),
(60256, 'https://ror.org/04wpjg525', 'en', 1, 'https://ror.org/04wpjg525 Food & Nutrition'),
(60257, 'https://ror.org/031m0hs53', 'en', 1, 'https://ror.org/031m0hs53 Commit'),
(60258, 'https://ror.org/004xe4a74', 'no_lang_code', 1, 'https://ror.org/004xe4a74 Fyzzio (Netherlands)'),
(60259, 'https://ror.org/01bcv2838', 'no_lang_code', 1, 'https://ror.org/01bcv2838 Haemonetics (Netherlands)'),
(60260, 'https://ror.org/03qjsg132', 'no_lang_code', 1, 'https://ror.org/03qjsg132 Gadeta (Netherlands)'),
(60261, 'https://ror.org/0015kmr33', 'nl', 1, 'https://ror.org/0015kmr33 OHRA Onderlinge ziektekostenverzekeringsfonds van Hoogere RijksAmbtenaren'),
(60262, 'https://ror.org/04xg9g962', 'nl', 1, 'https://ror.org/04xg9g962 Condite'),
(60263, 'https://ror.org/03vkbjy63', 'nl', 1, 'https://ror.org/03vkbjy63 Conrisq Groep'),
(60264, 'https://ror.org/02pd5tw33', 'en', 1, 'https://ror.org/02pd5tw33 Kenniscentrum Sport Knowledge Centre for Sport Netherlands'),
(60265, 'https://ror.org/04488aw82', 'no_lang_code', 1, 'https://ror.org/04488aw82 Kellogg’s (Belgium)'),
(60266, 'https://ror.org/047qv2c31', 'no_lang_code', 1, 'https://ror.org/047qv2c31 Mammoet (Netherlands)'),
(60267, 'https://ror.org/007b8s847', 'nl', 1, 'https://ror.org/007b8s847 GGD Haaglanden Gemeentelijke gezondheidsdienst Haaglanden'),
(60268, 'https://ror.org/04abjbr81', 'da', 1, 'https://ror.org/04abjbr81 Danish Agency for Labour Market and Recruitment Styrelsen for Arbejdsmarked og Rekruttering'),
(60269, 'https://ror.org/04eqf2x52', 'no_lang_code', 1, 'https://ror.org/04eqf2x52 Heelkunde Friesland (Netherlands)'),
(60270, 'https://ror.org/03x67yw88', 'nl', 1, 'https://ror.org/03x67yw88 Orthopedie Groot Eindhoven'),
(60271, 'https://ror.org/04g9szr12', 'nl', 1, 'https://ror.org/04g9szr12 Marti-Keuning Eckhardt Stichting'),
(60272, 'https://ror.org/033zx3z52', 'nl', 1, 'https://ror.org/033zx3z52 Kennisinstituut Bier'),
(60273, 'https://ror.org/011rkqa43', 'no_lang_code', 1, 'https://ror.org/011rkqa43 Nano-Ditech (United States)'),
(60274, 'https://ror.org/05bmt9g57', 'no_lang_code', 1, 'https://ror.org/05bmt9g57 Hero Benelux (Netherlands)'),
(60275, 'https://ror.org/046dq9976', 'nl', 1, 'https://ror.org/046dq9976 Cordaid'),
(60276, 'https://ror.org/05321n235', 'nl', 1, 'https://ror.org/05321n235 Kenter Jeugdhulp'),
(60277, 'https://ror.org/00vj56071', 'no_lang_code', 1, 'https://ror.org/00vj56071 Mathys (Netherlands)'),
(60278, 'https://ror.org/0460chp58', 'en', 1, 'https://ror.org/0460chp58 Nationaal Initiatief Hersenen & Cognitie National Initiative Brain & Cognition'),
(60279, 'https://ror.org/04v6y1533', 'nl', 1, 'https://ror.org/04v6y1533 Maurits en Anna de Kock Stichting'),
(60280, 'https://ror.org/054d83h93', 'nl', 1, 'https://ror.org/054d83h93 Cornelia-Stichting'),
(60281, 'https://ror.org/03g7v9982', 'nl', 1, 'https://ror.org/03g7v9982 HilverZorg'),
(60282, 'https://ror.org/030kv0w79', 'nl', 1, 'https://ror.org/030kv0w79 Medisch Coördinerend Centrum Omnes'),
(60283, 'https://ror.org/02qw11p11', 'no_lang_code', 1, 'https://ror.org/02qw11p11 Hollister (Germany)'),
(60284, 'https://ror.org/028fe5j11', 'no_lang_code', 1, 'https://ror.org/028fe5j11 Halyard (United Kingdom)'),
(60285, 'https://ror.org/04fb0r664', 'en', 1, 'https://ror.org/04fb0r664 National Foundation for the Elderly Stichting Nationaal Ouderenfonds'),
(60286, 'https://ror.org/03s453j88', 'no_lang_code', 1, 'https://ror.org/03s453j88 Cristal Therapeutics (Netherlands)'),
(60287, 'https://ror.org/02drjk215', 'no_lang_code', 1, 'https://ror.org/02drjk215 Nestlé (Netherlands)'),
(60288, 'https://ror.org/02258bk69', 'nl', 1, 'https://ror.org/02258bk69 Kliniek ViaSana'),
(60289, 'https://ror.org/04ctmwv54', 'nl', 1, 'https://ror.org/04ctmwv54 MeanderGroep Zuid-Limburg'),
(60290, 'https://ror.org/02hcvyf40', 'nl', 1, 'https://ror.org/02hcvyf40 HSK Groep'),
(60291, 'https://ror.org/01mgbxm56', 'nl', 1, 'https://ror.org/01mgbxm56 Kliniek voor Parodontologie Rotterdam'),
(60292, 'https://ror.org/03meq3766', 'nl', 1, 'https://ror.org/03meq3766 Stichting OFOM'),
(60293, 'https://ror.org/034nhtc63', 'nl', 1, 'https://ror.org/034nhtc63 Oogvereniging The Eye Association Netherlands'),
(60294, 'https://ror.org/00gtzdm25', 'nl', 1, 'https://ror.org/00gtzdm25 Natuur- en GezondheidsProducten Nederland'),
(60295, 'https://ror.org/02tj1ha51', 'no_lang_code', 1, 'https://ror.org/02tj1ha51 Ophtec (Netherlands)'),
(60296, 'https://ror.org/03ktrr903', 'no_lang_code', 1, 'https://ror.org/03ktrr903 Hu-Friedy (United States)'),
(60297, 'https://ror.org/03b7e6556', 'no_lang_code', 1, 'https://ror.org/03b7e6556 Nea International (Netherlands)'),
(60298, 'https://ror.org/057a13j38', 'nl', 1, 'https://ror.org/057a13j38 Mediant Geestelijke Gezondheidszorg'),
(60299, 'https://ror.org/033zmys03', 'nl', 1, 'https://ror.org/033zmys03 Nederlands Astmacentrum Davos'),
(60300, 'https://ror.org/02162rn53', 'en', 1, 'https://ror.org/02162rn53 Koninklijke Nederlandse Organisatie van Verloskundigen Royal Dutch Organization of Midwives'),
(60301, 'https://ror.org/02a1s0g57', 'nl', 1, 'https://ror.org/02a1s0g57 Huis voor de Zorg'),
(60302, 'https://ror.org/057ybbc09', 'no_lang_code', 1, 'https://ror.org/057ybbc09 N. V. Pharma (India)'),
(60303, 'https://ror.org/04p56b975', 'no_lang_code', 1, 'https://ror.org/04p56b975 Medimate (Netherlands)'),
(60304, 'https://ror.org/0357qk965', 'nl', 1, 'https://ror.org/0357qk965 Huisartsen Oostelijk Zuid Limburg'),
(60305, 'https://ror.org/056vah748', 'nl', 1, 'https://ror.org/056vah748 Federatie Medisch Specialisten'),
(60306, 'https://ror.org/048qt5n54', 'nl', 1, 'https://ror.org/048qt5n54 Koninklijke Nederlandse Klim- en Bergsport Vereniging'),
(60307, 'https://ror.org/01y36r136', 'no_lang_code', 1, 'https://ror.org/01y36r136 Orthica (Netherlands)'),
(60308, 'https://ror.org/04ph6g561', 'no_lang_code', 1, 'https://ror.org/04ph6g561 Brocacef Groep (Netherlands)'),
(60309, 'https://ror.org/018q2vm69', 'no_lang_code', 1, 'https://ror.org/018q2vm69 MediRisk (Netherlands)'),
(60310, 'https://ror.org/03en95y37', 'nl', 1, 'https://ror.org/03en95y37 Merem'),
(60311, 'https://ror.org/04e53cd15', 'nl', 1, 'https://ror.org/04e53cd15 Nederlandse Obesitas Kliniek'),
(60312, 'https://ror.org/02dn5sb95', 'no_lang_code', 1, 'https://ror.org/02dn5sb95 Medivis (Italy)'),
(60313, 'https://ror.org/043dpra13', 'no_lang_code', 1, 'https://ror.org/043dpra13 Eurocept Groep Eurocept Group (Netherlands)'),
(60314, 'https://ror.org/006gr2m12', 'nl', 1, 'https://ror.org/006gr2m12 Nederlandse Vereniging van Orthodontisten'),
(60315, 'https://ror.org/02ndam774', 'no_lang_code', 1, 'https://ror.org/02ndam774 Medspray (Netherlands)'),
(60316, 'https://ror.org/02v1bhf02', 'nl', 1, 'https://ror.org/02v1bhf02 Nederlandse Vereniging voor Acupunctuur'),
(60317, 'https://ror.org/04dm9th67', 'nl', 1, 'https://ror.org/04dm9th67 Nederlandse Vereniging voor Heelkunde'),
(60318, 'https://ror.org/00g49cs57', 'nl', 1, 'https://ror.org/00g49cs57 Mentaal Beter');
INSERT INTO `rors` VALUES
(60319, 'https://ror.org/059gs6g36', 'en', 1, 'https://ror.org/059gs6g36 KSYOS TeleMedical Centre KSYOS TeleMedisch Centrum'),
(60320, 'https://ror.org/04cjq4e24', 'nl', 1, 'https://ror.org/04cjq4e24 Nederlandse Vereniging voor Reumatologie'),
(60321, 'https://ror.org/010vx8x83', 'no_lang_code', 1, 'https://ror.org/010vx8x83 Menzis (Netherlands)'),
(60322, 'https://ror.org/01wjwqr61', 'nl', 1, 'https://ror.org/01wjwqr61 Innofeet Voetencentrum Nijenhuis'),
(60323, 'https://ror.org/05sj77784', 'en', 1, 'https://ror.org/05sj77784 Dutch Hospital Association'),
(60324, 'https://ror.org/012chae64', 'no_lang_code', 1, 'https://ror.org/012chae64 Merck (Netherlands)'),
(60325, 'https://ror.org/04dz2w781', 'no_lang_code', 1, 'https://ror.org/04dz2w781 Nemo Healthcare (Netherlands)'),
(60326, 'https://ror.org/03c8kfz86', 'no_lang_code', 1, 'https://ror.org/03c8kfz86 Innopastry (Netherlands)'),
(60327, 'https://ror.org/02crgsc42', 'no_lang_code', 1, 'https://ror.org/02crgsc42 Innospense (Netherlands)'),
(60328, 'https://ror.org/05a8epj20', 'en', 1, 'https://ror.org/05a8epj20 Pension Fund for Care and Well-Being Stichting Pensioenfonds Zorg en Welzijn'),
(60329, 'https://ror.org/047b6h508', 'no_lang_code', 1, 'https://ror.org/047b6h508 Lamepro Benelux (Netherlands)'),
(60330, 'https://ror.org/00pfepj55', 'no_lang_code', 1, 'https://ror.org/00pfepj55 Metrisquare (Netherlands)'),
(60331, 'https://ror.org/04qh1sk44', 'en', 1, 'https://ror.org/04qh1sk44 Stoke Mandeville Spinal Research'),
(60332, 'https://ror.org/053p3br36', 'no_lang_code', 1, 'https://ror.org/053p3br36 PharmaJet (United States)'),
(60333, 'https://ror.org/02braec51', 'en', 1, 'https://ror.org/02braec51 Dutch Expert Centre for Screening Landelijk ReferentieCentrum voor Bevolkingsonderzoek'),
(60334, 'https://ror.org/00qxws716', 'en', 1, 'https://ror.org/00qxws716 InnoSportLab'),
(60335, 'https://ror.org/0230gcj41', 'nl', 1, 'https://ror.org/0230gcj41 Phelps Stichting voor Spastici'),
(60336, 'https://ror.org/051y5hr89', 'no_lang_code', 1, 'https://ror.org/051y5hr89 Landsbond der Christelijke Mutualiteiten (Belgium)'),
(60337, 'https://ror.org/04gv1ap07', 'nl', 1, 'https://ror.org/04gv1ap07 Nederlandse Vereniging van Artsen voor Musculoskeletale Geneeskunde'),
(60338, 'https://ror.org/01d2t6428', 'nl', 1, 'https://ror.org/01d2t6428 Laurens'),
(60339, 'https://ror.org/04g1f3s05', 'nl', 1, 'https://ror.org/04g1f3s05 Gemeente Leiden'),
(60340, 'https://ror.org/05vxg1z76', 'no_lang_code', 1, 'https://ror.org/05vxg1z76 Physeon (Switzerland)'),
(60341, 'https://ror.org/05dwehn62', 'no_lang_code', 1, 'https://ror.org/05dwehn62 Physiol (Belgium)'),
(60342, 'https://ror.org/04qnj3s85', 'en', 1, 'https://ror.org/04qnj3s85 InSpine'),
(60343, 'https://ror.org/038kt0m24', 'nl', 1, 'https://ror.org/038kt0m24 Lelie Zorggroep'),
(60344, 'https://ror.org/01ydthg97', 'en', 1, 'https://ror.org/01ydthg97 Nijmegen Institute for Scientist Practitioners in Addiction'),
(60345, 'https://ror.org/043e6bd18', 'nl', 1, 'https://ror.org/043e6bd18 NIM Maatschappelijk Werk'),
(60346, 'https://ror.org/05hnxef10', 'no_lang_code', 1, 'https://ror.org/05hnxef10 NinePoint Medical (United States)'),
(60347, 'https://ror.org/00vkpdt16', 'nl', 1, 'https://ror.org/00vkpdt16 Movisie'),
(60348, 'https://ror.org/04htftw90', 'no_lang_code', 1, 'https://ror.org/04htftw90 Pluryn'),
(60349, 'https://ror.org/00mptwf92', 'en', 1, 'https://ror.org/00mptwf92 MS4 Research Institute'),
(60350, 'https://ror.org/01scra789', 'nl', 1, 'https://ror.org/01scra789 Instituut voor Positieve Psychologie'),
(60351, 'https://ror.org/03exh6913', 'nl', 1, 'https://ror.org/03exh6913 Podocentrum Alkmaar'),
(60352, 'https://ror.org/04zs9v841', 'no_lang_code', 1, 'https://ror.org/04zs9v841 Multi Electrical System (Suriname)'),
(60353, 'https://ror.org/01tm5k604', 'nl', 1, 'https://ror.org/01tm5k604 Treant Zorggroep'),
(60354, 'https://ror.org/037tym531', 'no_lang_code', 1, 'https://ror.org/037tym531 InterMed (United States)'),
(60355, 'https://ror.org/0182mv832', 'nl', 1, 'https://ror.org/0182mv832 Multiple Sclerose Vereniging Nederland'),
(60356, 'https://ror.org/044g5sj75', 'nl', 1, 'https://ror.org/044g5sj75 Departement Cultuur, Jeugd en Media'),
(60357, 'https://ror.org/021hkh665', 'no_lang_code', 1, 'https://ror.org/021hkh665 Polyganics (Netherlands)'),
(60358, 'https://ror.org/01an3vn51', 'no_lang_code', 1, 'https://ror.org/01an3vn51 MDxHealth (Netherlands)'),
(60359, 'https://ror.org/03naar428', 'nl', 1, 'https://ror.org/03naar428 Postmaster Psychologie Opleidingen'),
(60360, 'https://ror.org/057r0z941', 'nl', 1, 'https://ror.org/057r0z941 Praktijkondersteuning Zuidoost-Brabant'),
(60361, 'https://ror.org/04sce8194', 'nl', 1, 'https://ror.org/04sce8194 Praktikon'),
(60362, 'https://ror.org/05eqpm581', 'no_lang_code', 1, 'https://ror.org/05eqpm581 LINK (Netherlands)'),
(60363, 'https://ror.org/020sarg10', 'nl', 1, 'https://ror.org/020sarg10 Stichting Stimuleringsfonds Rouw'),
(60364, 'https://ror.org/04vz2j713', 'no_lang_code', 1, 'https://ror.org/04vz2j713 Interpolis (Netherlands)'),
(60365, 'https://ror.org/00xe2gs46', 'nl', 1, 'https://ror.org/00xe2gs46 Stichting Artsenlaboratorium en Trombosedienst'),
(60366, 'https://ror.org/05nvt9206', 'no_lang_code', 1, 'https://ror.org/05nvt9206 NutriLeads (Netherlands)'),
(60367, 'https://ror.org/035thvx71', 'nl', 1, 'https://ror.org/035thvx71 Proteion'),
(60368, 'https://ror.org/018g01631', 'de', 1, 'https://ror.org/018g01631 Salus Klinik'),
(60369, 'https://ror.org/01crhqr30', 'nl', 1, 'https://ror.org/01crhqr30 Ipse de Bruggen'),
(60370, 'https://ror.org/02nr63q87', 'en', 1, 'https://ror.org/02nr63q87 Psychotherapy & Movement'),
(60371, 'https://ror.org/04tg2rn58', 'no_lang_code', 1, 'https://ror.org/04tg2rn58 IQ Medical Ventures (Netherlands)'),
(60372, 'https://ror.org/05x6vad86', 'en', 1, 'https://ror.org/05x6vad86 Save by Seva Foundation Stichting Save by Seva'),
(60373, 'https://ror.org/02fxhk514', 'nl', 1, 'https://ror.org/02fxhk514 Nederlandse Vereniging voor Plastische Chirurgie'),
(60374, 'https://ror.org/02axh0j46', 'nl', 1, 'https://ror.org/02axh0j46 PsyQ'),
(60375, 'https://ror.org/015nq5b13', 'nl', 1, 'https://ror.org/015nq5b13 Nederlandse Ski Vereniging'),
(60376, 'https://ror.org/03z4x4n61', 'no_lang_code', 1, 'https://ror.org/03z4x4n61 Lysosomal Therapeutics (United States)'),
(60377, 'https://ror.org/04wnnpk31', 'no_lang_code', 1, 'https://ror.org/04wnnpk31 Pulmonx (United States)'),
(60378, 'https://ror.org/012m0jg51', 'nl', 1, 'https://ror.org/012m0jg51 Instituut voor Verantwoord Medicijngebruik'),
(60379, 'https://ror.org/0516ccm91', 'no_lang_code', 1, 'https://ror.org/0516ccm91 OIM Orthopedie (Netherlands)'),
(60380, 'https://ror.org/055vbz424', 'no_lang_code', 1, 'https://ror.org/055vbz424 Score (Netherlands)'),
(60381, 'https://ror.org/009cq8s89', 'no_lang_code', 1, 'https://ror.org/009cq8s89 Olympus (Netherlands)'),
(60382, 'https://ror.org/042yqf226', 'nl', 1, 'https://ror.org/042yqf226 Sint Maartenskliniek'),
(60383, 'https://ror.org/01574pc21', 'no_lang_code', 1, 'https://ror.org/01574pc21 Ferring Läkemedel (Sweden)'),
(60384, 'https://ror.org/0215ym372', 'no_lang_code', 1, 'https://ror.org/0215ym372 Sense Textile (Netherlands)'),
(60385, 'https://ror.org/03w498803', 'en', 1, 'https://ror.org/03w498803 IVO Addiction Research Institute'),
(60386, 'https://ror.org/048a4sn26', 'nl', 1, 'https://ror.org/048a4sn26 Stichting Adriaan Metius'),
(60387, 'https://ror.org/05cej7184', 'nl', 1, 'https://ror.org/05cej7184 SIDN Fonds'),
(60388, 'https://ror.org/02xqfym19', 'nl', 1, 'https://ror.org/02xqfym19 Stichting Afasie Nederland'),
(60389, 'https://ror.org/01htfbe02', 'en', 1, 'https://ror.org/01htfbe02 Sight and Life'),
(60390, 'https://ror.org/054svy457', 'no_lang_code', 1, 'https://ror.org/054svy457 SilverFit (Netherlands)'),
(60391, 'https://ror.org/01are8h73', 'nl', 1, 'https://ror.org/01are8h73 Regio Gooi en Vechtstreek'),
(60392, 'https://ror.org/03fd2y933', 'nl', 1, 'https://ror.org/03fd2y933 Stichting Agis Zorginnovatiefonds'),
(60393, 'https://ror.org/0540d1y92', 'nl', 1, 'https://ror.org/0540d1y92 AO Nederland'),
(60394, 'https://ror.org/02jky7c94', 'no_lang_code', 1, 'https://ror.org/02jky7c94 Skånemejerier (Sweden)'),
(60395, 'https://ror.org/00m3p9e86', 'nl', 1, 'https://ror.org/00m3p9e86 Stichting Semmy'),
(60396, 'https://ror.org/04t5qmm38', 'nl', 1, 'https://ror.org/04t5qmm38 Agora'),
(60397, 'https://ror.org/02nmj4h80', 'en', 1, 'https://ror.org/02nmj4h80 Roessingh Concern'),
(60398, 'https://ror.org/04p16rp27', 'no_lang_code', 1, 'https://ror.org/04p16rp27 Slow Control (France)'),
(60399, 'https://ror.org/034a28j20', 'no_lang_code', 1, 'https://ror.org/034a28j20 Smith & Nephew (Switzerland)'),
(60400, 'https://ror.org/0164nmw44', 'en', 1, 'https://ror.org/0164nmw44 AGIS'),
(60401, 'https://ror.org/00jaff906', 'no_lang_code', 1, 'https://ror.org/00jaff906 Surgimab (France)'),
(60402, 'https://ror.org/02dsghr34', 'no_lang_code', 1, 'https://ror.org/02dsghr34 Happiest Baby (United States)'),
(60403, 'https://ror.org/01jbeyb43', 'en', 1, 'https://ror.org/01jbeyb43 SPRINT'),
(60404, 'https://ror.org/03pp2ae67', 'nl', 1, 'https://ror.org/03pp2ae67 Surinaamse Postspaarbank'),
(60405, 'https://ror.org/04v5fn795', 'nl', 1, 'https://ror.org/04v5fn795 Stichting Apotheek der Haarlemse Ziekenhuizen'),
(60406, 'https://ror.org/00q6rn894', 'nl', 1, 'https://ror.org/00q6rn894 Stichting Urologisch Wetenschappelijk Onderzoek'),
(60407, 'https://ror.org/04e796m94', 'fr', 1, 'https://ror.org/04e796m94 Société Francophone Posture Equilibre Locomotion'),
(60408, 'https://ror.org/01qvdp131', 'no_lang_code', 1, 'https://ror.org/01qvdp131 Solace Therapeutics (United States)'),
(60409, 'https://ror.org/001hc9y40', 'no_lang_code', 1, 'https://ror.org/001hc9y40 ResMed (Netherlands)'),
(60410, 'https://ror.org/03za4at61', 'nl', 1, 'https://ror.org/03za4at61 Nationaal MS Fonds'),
(60411, 'https://ror.org/04byjbp28', 'nl', 1, 'https://ror.org/04byjbp28 Centrum Aquamarijn'),
(60412, 'https://ror.org/01erpqc93', 'nl', 1, 'https://ror.org/01erpqc93 Revalidatie Nederland'),
(60413, 'https://ror.org/02qpd5a14', 'nl', 1, 'https://ror.org/02qpd5a14 Volandis'),
(60414, 'https://ror.org/00740sw32', 'en', 1, 'https://ror.org/00740sw32 Asklepios Foundation'),
(60415, 'https://ror.org/03m7jfm83', 'nl', 1, 'https://ror.org/03m7jfm83 Sophia Revalidatie'),
(60416, 'https://ror.org/00ccsy875', 'nl', 1, 'https://ror.org/00ccsy875 Tante Louise'),
(60417, 'https://ror.org/03b60ep93', 'nl', 1, 'https://ror.org/03b60ep93 Stichting Bio Stichting Bio Kinderrevalidatie'),
(60418, 'https://ror.org/04qc37m11', 'no_lang_code', 1, 'https://ror.org/04qc37m11 TeamAlert'),
(60419, 'https://ror.org/036qh7831', 'nl', 1, 'https://ror.org/036qh7831 Revant medisch specialistische revalidatie'),
(60420, 'https://ror.org/058x0nn53', 'nl', 1, 'https://ror.org/058x0nn53 Centrum Oosterwal'),
(60421, 'https://ror.org/05fnnp231', 'no_lang_code', 1, 'https://ror.org/05fnnp231 Revive Therapeutics (Canada)'),
(60422, 'https://ror.org/01w48gk31', 'nl', 1, 'https://ror.org/01w48gk31 Lange Land Ziekenhuis'),
(60423, 'https://ror.org/02wmkpz59', 'nl', 1, 'https://ror.org/02wmkpz59 Sport Medisch Centrum Papendal'),
(60424, 'https://ror.org/04jxcha86', 'nl', 1, 'https://ror.org/04jxcha86 Stichting Vooruit'),
(60425, 'https://ror.org/059gavv29', 'nl', 1, 'https://ror.org/059gavv29 Rijnlands Revalidatie Centrum'),
(60426, 'https://ror.org/03t8qvt86', 'en', 1, 'https://ror.org/03t8qvt86 Team Westland'),
(60427, 'https://ror.org/030zk4850', 'nl', 1, 'https://ror.org/030zk4850 RINO Zuid'),
(60428, 'https://ror.org/02a0z8v73', 'nl', 1, 'https://ror.org/02a0z8v73 Stichting de Verre Bergen'),
(60429, 'https://ror.org/052c2ng98', 'nl', 1, 'https://ror.org/052c2ng98 ROC Leeuwenborgh'),
(60430, 'https://ror.org/04jfsvb44', 'nl', 1, 'https://ror.org/04jfsvb44 Star Medisch Diagnostisch Centrum'),
(60431, 'https://ror.org/03k261948', 'nl', 1, 'https://ror.org/03k261948 Roessingh, Centrum voor Revalidatie'),
(60432, 'https://ror.org/05xzd4n85', 'nl', 1, 'https://ror.org/05xzd4n85 Stichting Roomsch Catholyk Oude Armen kantoor'),
(60433, 'https://ror.org/05j0e3q89', 'en', 1, 'https://ror.org/05j0e3q89 Roparun Foundation Stichting Roparun'),
(60434, 'https://ror.org/02s6t9r74', 'no_lang_code', 1, 'https://ror.org/02s6t9r74 Teva Pharmaceuticals (Netherlands)'),
(60435, 'https://ror.org/04whgpk43', 'nl', 1, 'https://ror.org/04whgpk43 Brijder Brijder Verslavingszorg'),
(60436, 'https://ror.org/05pabx459', 'nl', 1, 'https://ror.org/05pabx459 STECR'),
(60437, 'https://ror.org/01k2ap794', 'nl', 1, 'https://ror.org/01k2ap794 Stichting Zorgondersteuningsfonds'),
(60438, 'https://ror.org/03czygt47', 'nl', 1, 'https://ror.org/03czygt47 Stichting Gereformeerd of Burgerweeshuis te Haarlem'),
(60439, 'https://ror.org/00qmvv685', 'nl', 1, 'https://ror.org/00qmvv685 Stichting Emmafonds'),
(60440, 'https://ror.org/03tdgzq48', 'nl', 1, 'https://ror.org/03tdgzq48 Vrienden van het Sophia'),
(60441, 'https://ror.org/02cwrcd13', 'nl', 1, 'https://ror.org/02cwrcd13 Stichting Gezondheidscentra Eindhoven'),
(60442, 'https://ror.org/0029ghb74', 'nl', 1, 'https://ror.org/0029ghb74 Stichting Vrienden van het Hart'),
(60443, 'https://ror.org/04w0g9c06', 'no_lang_code', 1, 'https://ror.org/04w0g9c06 RR Mechatronics (Netherlands)'),
(60444, 'https://ror.org/00gqmky69', 'no_lang_code', 1, 'https://ror.org/00gqmky69 Achmea (Netherlands)'),
(60445, 'https://ror.org/01braxd57', 'nl', 1, 'https://ror.org/01braxd57 Stichting Warande'),
(60446, 'https://ror.org/01e2kx306', 'no_lang_code', 1, 'https://ror.org/01e2kx306 Stichting Handbike Events'),
(60447, 'https://ror.org/00wtffy45', 'nl', 1, 'https://ror.org/00wtffy45 Stichting Westelijke Tuinsteden'),
(60448, 'https://ror.org/03bzzj274', 'nl', 1, 'https://ror.org/03bzzj274 Stichting Hartcentrum Twente'),
(60449, 'https://ror.org/00s3sar63', 'nl', 1, 'https://ror.org/00s3sar63 Stichting Hartekind'),
(60450, 'https://ror.org/00x5ydx53', 'nl', 1, 'https://ror.org/00x5ydx53 Stichting HemoBase'),
(60451, 'https://ror.org/003dey933', 'nl', 1, 'https://ror.org/003dey933 Stichting Hofje Codde en Van Beresteyn'),
(60452, 'https://ror.org/03ghw7z04', 'nl', 1, 'https://ror.org/03ghw7z04 Uitvoeringsinstituut Werknemersverzekeringen'),
(60453, 'https://ror.org/05g6kcv24', 'nl', 1, 'https://ror.org/05g6kcv24 IZZ Zorgverzekering'),
(60454, 'https://ror.org/0345gq170', 'nl', 1, 'https://ror.org/0345gq170 Thebe'),
(60455, 'https://ror.org/010xsbj02', 'nl', 1, 'https://ror.org/010xsbj02 Stichting Kenniscentrum Dementie op Jonge Leeftijd'),
(60456, 'https://ror.org/03cev2h16', 'nl', 1, 'https://ror.org/03cev2h16 Stichting Kinderen en Kansen'),
(60457, 'https://ror.org/01nzrnn89', 'nl', 1, 'https://ror.org/01nzrnn89 Vanboeijen'),
(60458, 'https://ror.org/036br4307', 'en', 1, 'https://ror.org/036br4307 TKI Agri & Food'),
(60459, 'https://ror.org/036187n68', 'nl', 1, 'https://ror.org/036187n68 Lyvore'),
(60460, 'https://ror.org/03qdk1w56', 'en', 1, 'https://ror.org/03qdk1w56 Dutch Health Care Inspectorate Inspectie voor de Gezondheidszorg'),
(60461, 'https://ror.org/02vja3r71', 'no_lang_code', 1, 'https://ror.org/02vja3r71 Vascular Insights (United States)'),
(60462, 'https://ror.org/01gy2bm93', 'no_lang_code', 1, 'https://ror.org/01gy2bm93 VDL Groep (Netherlands)'),
(60463, 'https://ror.org/054zktz40', 'nl', 1, 'https://ror.org/054zktz40 TKI Treco'),
(60464, 'https://ror.org/02etw4c89', 'nl', 1, 'https://ror.org/02etw4c89 Vereniging EMDR'),
(60465, 'https://ror.org/02z138x11', 'nl', 1, 'https://ror.org/02z138x11 Maatschap Friese Longartsen'),
(60466, 'https://ror.org/0479zah75', 'nl', 1, 'https://ror.org/0479zah75 Stichting LOOP'),
(60467, 'https://ror.org/001edkr35', 'nl', 1, 'https://ror.org/001edkr35 Vereniging Nederland-Davos'),
(60468, 'https://ror.org/01sf6dn24', 'no_lang_code', 1, 'https://ror.org/01sf6dn24 Procter & Gamble (Netherlands)'),
(60469, 'https://ror.org/03thqn741', 'nl', 1, 'https://ror.org/03thqn741 Vereniging Nederlandse Cateringorganisaties'),
(60470, 'https://ror.org/01fw4cw44', 'en', 1, 'https://ror.org/01fw4cw44 Transcare'),
(60471, 'https://ror.org/00srb9238', 'nl', 1, 'https://ror.org/00srb9238 Stichting Mitialto'),
(60472, 'https://ror.org/05beaz940', 'nl', 1, 'https://ror.org/05beaz940 Vereniging van Zorgaanbieders voor Zorgcommunicatie'),
(60473, 'https://ror.org/01r4eh644', 'en', 1, 'https://ror.org/01r4eh644 Lunar and Planetary Institute'),
(60474, 'https://ror.org/02nray311', 'no_lang_code', 1, 'https://ror.org/02nray311 Meda (Germany)'),
(60475, 'https://ror.org/017cm0005', 'nl', 1, 'https://ror.org/017cm0005 Nieuwegein Fonds'),
(60476, 'https://ror.org/013e4mp15', 'nl', 1, 'https://ror.org/013e4mp15 Wantveld'),
(60477, 'https://ror.org/05n521861', 'nl', 1, 'https://ror.org/05n521861 Vereniging van Groothandelaren in Bloemkwekerijprodukten'),
(60478, 'https://ror.org/02vsng207', 'nl', 1, 'https://ror.org/02vsng207 Jellinek'),
(60479, 'https://ror.org/019rxjv66', 'no_lang_code', 1, 'https://ror.org/019rxjv66 Tricolast (Belgium)'),
(60480, 'https://ror.org/03deszr39', 'en', 1, 'https://ror.org/03deszr39 Defence Against Cancer Foundation'),
(60481, 'https://ror.org/04983vw43', 'no_lang_code', 1, 'https://ror.org/04983vw43 Coöperatie VGZ (Netherlands)'),
(60482, 'https://ror.org/02r0jj466', 'nl', 1, 'https://ror.org/02r0jj466 Stichting Weeshuis der Doopsgezinden'),
(60483, 'https://ror.org/04wfwab40', 'no_lang_code', 1, 'https://ror.org/04wfwab40 Vion Food Group (Netherlands)'),
(60484, 'https://ror.org/04jddfp89', 'no_lang_code', 1, 'https://ror.org/04jddfp89 Vision2Health (Netherlands)'),
(60485, 'https://ror.org/03791x537', 'en', 1, 'https://ror.org/03791x537 U-center'),
(60486, 'https://ror.org/01nxgy670', 'no_lang_code', 1, 'https://ror.org/01nxgy670 Welzijnservices (Netherlands)'),
(60487, 'https://ror.org/04q3h7t52', 'nl', 1, 'https://ror.org/04q3h7t52 Stichting Nationaal Fonds Het Gehandicapte Kind'),
(60488, 'https://ror.org/04gca2h74', 'no_lang_code', 1, 'https://ror.org/04gca2h74 UCB Pharma (Netherlands)'),
(60489, 'https://ror.org/05cygvk74', 'en', 1, 'https://ror.org/05cygvk74 Pactive Motion'),
(60490, 'https://ror.org/01nxgpa50', 'nl', 1, 'https://ror.org/01nxgpa50 Stofberg Preventie & Coaching'),
(60491, 'https://ror.org/00rybq012', 'en', 1, 'https://ror.org/00rybq012 VitalinQ'),
(60492, 'https://ror.org/0013dpg50', 'no_lang_code', 1, 'https://ror.org/0013dpg50 Umenz (Netherlands)'),
(60493, 'https://ror.org/0413n0f20', 'fr', 1, 'https://ror.org/0413n0f20 Loterie Nationale Nationale loterij Nationallotterie'),
(60494, 'https://ror.org/04t2ed417', 'en', 1, 'https://ror.org/04t2ed417 Vitalis WoonZorg Group'),
(60495, 'https://ror.org/04yv75396', 'no_lang_code', 1, 'https://ror.org/04yv75396 Univé (Netherlands)'),
(60496, 'https://ror.org/01a0jnf88', 'nl', 1, 'https://ror.org/01a0jnf88 Landsteiner Instituut'),
(60497, 'https://ror.org/05k3cv262', 'nl', 1, 'https://ror.org/05k3cv262 Willem Meindert de Hoop Stichting'),
(60498, 'https://ror.org/00remyc86', 'nl', 1, 'https://ror.org/00remyc86 Stichting Panta Rhei'),
(60499, 'https://ror.org/00af9q554', 'no_lang_code', 1, 'https://ror.org/00af9q554 Vitromics (Netherlands)'),
(60500, 'https://ror.org/03ytsc046', 'nl', 1, 'https://ror.org/03ytsc046 IJsselheem'),
(60501, 'https://ror.org/00cdpwj98', 'no_lang_code', 1, 'https://ror.org/00cdpwj98 Vivisol (Netherlands)'),
(60502, 'https://ror.org/00g715g80', 'nl', 1, 'https://ror.org/00g715g80 Stichting Physico'),
(60503, 'https://ror.org/04chanh47', 'nl', 1, 'https://ror.org/04chanh47 ZorgKeuzeLab'),
(60504, 'https://ror.org/03vn3r884', 'nl', 1, 'https://ror.org/03vn3r884 Zorg in Ontwikkeling'),
(60505, 'https://ror.org/0297r6906', 'nl', 1, 'https://ror.org/0297r6906 Vlaamse Vereniging voor Obstetrie en Gynaecolo'),
(60506, 'https://ror.org/05dw0jd27', 'no_lang_code', 1, 'https://ror.org/05dw0jd27 Xendo (Netherlands)'),
(60507, 'https://ror.org/0356ywp11', 'nl', 1, 'https://ror.org/0356ywp11 Stichting Rehabilitatie ‘92'),
(60508, 'https://ror.org/0564c7p76', 'nl', 1, 'https://ror.org/0564c7p76 Verslavingszorg Noord Nederland'),
(60509, 'https://ror.org/056jbdt18', 'no_lang_code', 1, 'https://ror.org/056jbdt18 Yakult (Netherlands)'),
(60510, 'https://ror.org/04phw6a61', 'nl', 1, 'https://ror.org/04phw6a61 de Posten'),
(60511, 'https://ror.org/00feb6h18', 'nl', 1, 'https://ror.org/00feb6h18 Stichting RevaZorg'),
(60512, 'https://ror.org/042v6ch48', 'nl', 1, 'https://ror.org/042v6ch48 Zorgverzekeraars Nederland'),
(60513, 'https://ror.org/004pfc251', 'nl', 1, 'https://ror.org/004pfc251 Middelbaar Beroeps Onderwijs'),
(60514, 'https://ror.org/04gpeah71', 'nl', 1, 'https://ror.org/04gpeah71 Zorggroep Kans'),
(60515, 'https://ror.org/00vtp3850', 'nl', 1, 'https://ror.org/00vtp3850 Zorggroep Meander'),
(60516, 'https://ror.org/03m1gem82', 'no_lang_code', 1, 'https://ror.org/03m1gem82 Zambon (Netherlands)'),
(60517, 'https://ror.org/0320z2q35', 'nl', 1, 'https://ror.org/0320z2q35 Zorggroep Sint Maarten'),
(60518, 'https://ror.org/014epsm02', 'no_lang_code', 1, 'https://ror.org/014epsm02 Novamedia (Netherlands)'),
(60519, 'https://ror.org/05m0fyt06', 'nl', 1, 'https://ror.org/05m0fyt06 Zorggroep Solis'),
(60520, 'https://ror.org/024gr4122', 'nl', 1, 'https://ror.org/024gr4122 Vrienden WKZ'),
(60521, 'https://ror.org/00xs43h36', 'nl', 1, 'https://ror.org/00xs43h36 Vrienden van Heideheuvel'),
(60522, 'https://ror.org/053ad7843', 'nl', 1, 'https://ror.org/053ad7843 ZZG zorggroep'),
(60523, 'https://ror.org/00d7qnf81', 'nl', 1, 'https://ror.org/00d7qnf81 Zorg voor innoveren'),
(60524, 'https://ror.org/05nxrmr92', 'no_lang_code', 1, 'https://ror.org/05nxrmr92 Werk-Goed Bedrijfskleding alle rechten voorbehouden Werkgoed (Netherlands)'),
(60525, 'https://ror.org/05cj0xg89', 'de', 1, 'https://ror.org/05cj0xg89 Akademie Für Osteopathie'),
(60526, 'https://ror.org/04dhrzj96', 'de', 1, 'https://ror.org/04dhrzj96 Aturo'),
(60527, 'https://ror.org/01e5bev19', 'no_lang_code', 1, 'https://ror.org/01e5bev19 480 Biomedical (United States)'),
(60528, 'https://ror.org/00v3fhy84', 'nl', 1, 'https://ror.org/00v3fhy84 Stichting Zorgdraad'),
(60529, 'https://ror.org/008adck89', 'no_lang_code', 1, 'https://ror.org/008adck89 Analyze & Realize (Germany)'),
(60530, 'https://ror.org/04n9aye53', 'en', 1, 'https://ror.org/04n9aye53 Bundesverwaltungsamt Federal Office of Administration'),
(60531, 'https://ror.org/049kfbr47', 'de', 1, 'https://ror.org/049kfbr47 Aktion Benni'),
(60532, 'https://ror.org/01pa6t272', 'no_lang_code', 1, 'https://ror.org/01pa6t272 Abbott (Austria)'),
(60533, 'https://ror.org/033n2wq55', 'de', 1, 'https://ror.org/033n2wq55 Aktion Mensch'),
(60534, 'https://ror.org/01ap05s72', 'de', 1, 'https://ror.org/01ap05s72 Bundeswehrkrankenhaus'),
(60535, 'https://ror.org/04a7kqd39', 'de', 1, 'https://ror.org/04a7kqd39 Asklepios Klinik Langen'),
(60536, 'https://ror.org/032b8d361', 'en', 1, 'https://ror.org/032b8d361 Minneapolis VA Medical Center'),
(60537, 'https://ror.org/05c3qep79', 'no_lang_code', 1, 'https://ror.org/05c3qep79 C-RAD (Sweden)'),
(60538, 'https://ror.org/04dqgsa85', 'en', 1, 'https://ror.org/04dqgsa85 CS Diagnostics'),
(60539, 'https://ror.org/001nh6z22', 'no_lang_code', 1, 'https://ror.org/001nh6z22 CA DIGITAL (Germany)'),
(60540, 'https://ror.org/036qh8f11', 'de', 1, 'https://ror.org/036qh8f11 Augencentrum Rosenheim'),
(60541, 'https://ror.org/03rpvpe67', 'de', 1, 'https://ror.org/03rpvpe67 Geriatrische Gesundheitszentren'),
(60542, 'https://ror.org/0431amh23', 'en', 1, 'https://ror.org/0431amh23 Klinik für Augenheilkunde Ophthalmology Clinic'),
(60543, 'https://ror.org/04x747113', 'de', 1, 'https://ror.org/04x747113 Evangelisches Krankenhaus Hamm'),
(60544, 'https://ror.org/00zqz6907', 'no_lang_code', 1, 'https://ror.org/00zqz6907 Alder (United States)'),
(60545, 'https://ror.org/04b0dke26', 'no_lang_code', 1, 'https://ror.org/04b0dke26 Cancer Prevention Pharmaceuticals (United States)'),
(60546, 'https://ror.org/03q5c2s89', 'pl', 1, 'https://ror.org/03q5c2s89 Centralny Szpital Kliniczny'),
(60547, 'https://ror.org/05fdgz909', 'de', 1, 'https://ror.org/05fdgz909 Evangelische Kliniken Gelsenkirchen'),
(60548, 'https://ror.org/037rv3j62', 'de', 1, 'https://ror.org/037rv3j62 Klinik Blankenstein'),
(60549, 'https://ror.org/05y6zv446', 'en', 1, 'https://ror.org/05y6zv446 Capio Clinic in the Park Capio Klinik im Park'),
(60550, 'https://ror.org/012g7b973', 'no_lang_code', 1, 'https://ror.org/012g7b973 axios Pharma (Germany)'),
(60551, 'https://ror.org/05tt0dn44', 'en', 1, 'https://ror.org/05tt0dn44 Alesco Concepts'),
(60552, 'https://ror.org/01cyatv27', 'no_lang_code', 1, 'https://ror.org/01cyatv27 CTI BioPharma (United Kingdom)'),
(60553, 'https://ror.org/00vh0j257', 'no_lang_code', 1, 'https://ror.org/00vh0j257 Alexion (Germany)'),
(60554, 'https://ror.org/058wnr349', 'no_lang_code', 1, 'https://ror.org/058wnr349 Cardialysis (Netherlands)'),
(60555, 'https://ror.org/05xn2x639', 'no_lang_code', 1, 'https://ror.org/05xn2x639 Curacyte (Germany)'),
(60556, 'https://ror.org/01j6p1p64', 'no_lang_code', 1, 'https://ror.org/01j6p1p64 Alimera Sciences (Germany)'),
(60557, 'https://ror.org/01wc8t239', 'no_lang_code', 1, 'https://ror.org/01wc8t239 Curaden (Switzerland)'),
(60558, 'https://ror.org/0149ncr63', 'no_lang_code', 1, 'https://ror.org/0149ncr63 Alvotech (Germany)'),
(60559, 'https://ror.org/00dvqrz49', 'de', 1, 'https://ror.org/00dvqrz49 Helios Amper-Klinikum Dachau'),
(60560, 'https://ror.org/02b941k82', 'no_lang_code', 1, 'https://ror.org/02b941k82 Korian (Germany)'),
(60561, 'https://ror.org/00qwmz024', 'no_lang_code', 1, 'https://ror.org/00qwmz024 CardioSec (Germany)'),
(60562, 'https://ror.org/01fmvjf05', 'no_lang_code', 1, 'https://ror.org/01fmvjf05 Curetis (Germany)'),
(60563, 'https://ror.org/01kkj4786', 'de', 1, 'https://ror.org/01kkj4786 BARMER GEK'),
(60564, 'https://ror.org/04dg4zc02', 'de', 1, 'https://ror.org/04dg4zc02 Gemeinschaftskrankenhaus Herdecke'),
(60565, 'https://ror.org/01qkbtc88', 'no_lang_code', 1, 'https://ror.org/01qkbtc88 CVRx (United States)'),
(60566, 'https://ror.org/03p371b74', 'en', 1, 'https://ror.org/03p371b74 Herford Hospital Klinikum Herford'),
(60567, 'https://ror.org/04w9ddv64', 'de', 1, 'https://ror.org/04w9ddv64 Caritas-Krankenhaus St. Josef'),
(60568, 'https://ror.org/02xyd6272', 'no_lang_code', 1, 'https://ror.org/02xyd6272 Bauerfeind (Germany)'),
(60569, 'https://ror.org/00pz61m54', 'de', 1, 'https://ror.org/00pz61m54 Schön Klinik Hamburg Eilbek'),
(60570, 'https://ror.org/050kj6p21', 'no_lang_code', 1, 'https://ror.org/050kj6p21 Alloheim (Germany)'),
(60571, 'https://ror.org/04pjs3n80', 'en', 1, 'https://ror.org/04pjs3n80 Cyclomed medical services & consulting'),
(60572, 'https://ror.org/05jjc0y03', 'no_lang_code', 1, 'https://ror.org/05jjc0y03 Alphamade (Berlin)'),
(60573, 'https://ror.org/03weyyh46', 'de', 1, 'https://ror.org/03weyyh46 Asklepios Klinikum Harburg'),
(60574, 'https://ror.org/02xs7rw35', 'no_lang_code', 1, 'https://ror.org/02xs7rw35 Almased (Germany)'),
(60575, 'https://ror.org/01ej30k87', 'de', 1, 'https://ror.org/01ej30k87 Kompetenznetz Darmerkrankungen'),
(60576, 'https://ror.org/00w2wr428', 'no_lang_code', 1, 'https://ror.org/00w2wr428 Cefak (Germany)'),
(60577, 'https://ror.org/01bs6bj47', 'de', 1, 'https://ror.org/01bs6bj47 BDH Bundesverband Rehabilitation'),
(60578, 'https://ror.org/00ec18z53', 'no_lang_code', 1, 'https://ror.org/00ec18z53 BEGO Implant Systems (Germany)'),
(60579, 'https://ror.org/0196d3y13', 'en', 1, 'https://ror.org/0196d3y13 Ambulantes Reha-Zentrum Berlin Adlershof Ambulatory Rehabilitation Center Berlin Adlershof'),
(60580, 'https://ror.org/04f2wf871', 'de', 1, 'https://ror.org/04f2wf871 Centrum für Integrierte Onkologie'),
(60581, 'https://ror.org/03c7ycp20', 'de', 1, 'https://ror.org/03c7ycp20 Deutsche Neurodermitis Stiftung'),
(60582, 'https://ror.org/054ey2125', 'de', 1, 'https://ror.org/054ey2125 Behandlungszentrum Aschau'),
(60583, 'https://ror.org/01erge413', 'no_lang_code', 1, 'https://ror.org/01erge413 Amedon (Germany)'),
(60584, 'https://ror.org/02mdj2060', 'de', 1, 'https://ror.org/02mdj2060 Zentrum Überleben'),
(60585, 'https://ror.org/03cmwaa13', 'no_lang_code', 1, 'https://ror.org/03cmwaa13 ABX-CRO Advanced Pharmaceutical Services (Germany)'),
(60586, 'https://ror.org/01jekr004', 'de', 1, 'https://ror.org/01jekr004 Centrum für Operative Urologie Bremen'),
(60587, 'https://ror.org/045qccw34', 'no_lang_code', 1, 'https://ror.org/045qccw34 Bemer (Liechtenstein)'),
(60588, 'https://ror.org/030arp767', 'no_lang_code', 1, 'https://ror.org/030arp767 Acandis (Germany)'),
(60589, 'https://ror.org/02dfbwd57', 'no_lang_code', 1, 'https://ror.org/02dfbwd57 Amedrix (Germany)'),
(60590, 'https://ror.org/0157gcv59', 'no_lang_code', 1, 'https://ror.org/0157gcv59 Acarix (Denmark)'),
(60591, 'https://ror.org/01zmdh962', 'de', 1, 'https://ror.org/01zmdh962 Arbeiterwohlfahrt München'),
(60592, 'https://ror.org/03famzf42', 'de', 1, 'https://ror.org/03famzf42 Acqua Klinik'),
(60593, 'https://ror.org/02rdz4018', 'en', 1, 'https://ror.org/02rdz4018 Karen Horney Institut'),
(60594, 'https://ror.org/0203bxz75', 'no_lang_code', 1, 'https://ror.org/0203bxz75 Cerbomed (Germany)'),
(60595, 'https://ror.org/010fhjt40', 'de', 1, 'https://ror.org/010fhjt40 Stiftung Berliner Sparkasse'),
(60596, 'https://ror.org/00frk6j35', 'de', 1, 'https://ror.org/00frk6j35 Berner Augenklinik am Lindenhofspital'),
(60597, 'https://ror.org/04zkhyt19', 'de', 1, 'https://ror.org/04zkhyt19 Deutsche Parkinson Vereinigung e.V'),
(60598, 'https://ror.org/009j5xv46', 'de', 1, 'https://ror.org/009j5xv46 Berufsgenossenschaft für Gesundheitsdienst und Wohlfahrtspflege'),
(60599, 'https://ror.org/05ngmaw16', 'no_lang_code', 1, 'https://ror.org/05ngmaw16 Certmedica (Germany)'),
(60600, 'https://ror.org/04kt7f841', 'de', 1, 'https://ror.org/04kt7f841 Berufsgenossenschaftliche Unfallklinik Frankfurt am Main'),
(60601, 'https://ror.org/01q428f30', 'no_lang_code', 1, 'https://ror.org/01q428f30 Cesra (Germany)'),
(60602, 'https://ror.org/03572ah39', 'no_lang_code', 1, 'https://ror.org/03572ah39 Actelion (Germany)'),
(60603, 'https://ror.org/00afzcs08', 'no_lang_code', 1, 'https://ror.org/00afzcs08 HumanTotalCare (Netherlands)'),
(60604, 'https://ror.org/01ex7e298', 'de', 1, 'https://ror.org/01ex7e298 Berufsverband der Frauenärzte'),
(60605, 'https://ror.org/02w1dxn42', 'nl', 1, 'https://ror.org/02w1dxn42 Rugpoli'),
(60606, 'https://ror.org/022fkpc23', 'no_lang_code', 1, 'https://ror.org/022fkpc23 Dr. Reddy''s Laboratories (Germany)'),
(60607, 'https://ror.org/00nvb4q10', 'no_lang_code', 1, 'https://ror.org/00nvb4q10 Active Bio Life Science (Germany)'),
(60608, 'https://ror.org/035gsd054', 'no_lang_code', 1, 'https://ror.org/035gsd054 Chemie³ (Germany)'),
(60609, 'https://ror.org/058n6ep94', 'de', 1, 'https://ror.org/058n6ep94 Bethlehem Gesundheitszentrum Stolberg'),
(60610, 'https://ror.org/04w4jta18', 'de', 1, 'https://ror.org/04w4jta18 Acura Kliniken'),
(60611, 'https://ror.org/03vc76c84', 'de', 1, 'https://ror.org/03vc76c84 BG Klinikum Duisburg'),
(60612, 'https://ror.org/03phvnn05', 'no_lang_code', 1, 'https://ror.org/03phvnn05 Andair AG (Switzerland)'),
(60613, 'https://ror.org/042g9vq32', 'de', 1, 'https://ror.org/042g9vq32 BG Klinikum Bergmannstrost Halle'),
(60614, 'https://ror.org/01zrbp537', 'no_lang_code', 1, 'https://ror.org/01zrbp537 Chiesi (Germany)'),
(60615, 'https://ror.org/04x84m665', 'de', 1, 'https://ror.org/04x84m665 Adipositas Zentrum Oberhausen'),
(60616, 'https://ror.org/05mv0x382', 'no_lang_code', 1, 'https://ror.org/05mv0x382 Biebertaler Blutegelzucht (Germany)'),
(60617, 'https://ror.org/04y5tkt43', 'de', 1, 'https://ror.org/04y5tkt43 BIG Direkt Gesund'),
(60618, 'https://ror.org/03xhpsm17', 'nl', 1, 'https://ror.org/03xhpsm17 Andros Mannenkliniek'),
(60619, 'https://ror.org/04nkwzq76', 'en', 1, 'https://ror.org/04nkwzq76 Anfomed Society for Applied Research in Medicine'),
(60620, 'https://ror.org/01xfewa62', 'de', 1, 'https://ror.org/01xfewa62 Arbeitsgemeinschaft Dermatologische Onkologie'),
(60621, 'https://ror.org/04p3kfc87', 'no_lang_code', 1, 'https://ror.org/04p3kfc87 ClinAssess (Germany)'),
(60622, 'https://ror.org/059gjhp96', 'no_lang_code', 1, 'https://ror.org/059gjhp96 Adtec Plasma Technology (United Kingdom)'),
(60623, 'https://ror.org/05hnk1p44', 'de', 1, 'https://ror.org/05hnk1p44 Klinik für Herzchirurgie Karlsruhe'),
(60624, 'https://ror.org/045k5xj29', 'de', 1, 'https://ror.org/045k5xj29 Allgemeiner Deutscher Tanzlehrerverband'),
(60625, 'https://ror.org/0266fnb18', 'no_lang_code', 1, 'https://ror.org/0266fnb18 BioTeSys (Germany)'),
(60626, 'https://ror.org/03w1b6j67', 'no_lang_code', 1, 'https://ror.org/03w1b6j67 Bitop (Germany)'),
(60627, 'https://ror.org/03fack110', 'de', 1, 'https://ror.org/03fack110 Anna Mueller Grocholski-Stiftung'),
(60628, 'https://ror.org/05sw1mq09', 'en', 1, 'https://ror.org/05sw1mq09 Clinical Research Center Kiel'),
(60629, 'https://ror.org/02c1jfh03', 'de', 1, 'https://ror.org/02c1jfh03 Aenne Speck Stiftung'),
(60630, 'https://ror.org/03xd8mt09', 'en', 1, 'https://ror.org/03xd8mt09 ANOA'),
(60631, 'https://ror.org/03gzy9q74', 'de', 1, 'https://ror.org/03gzy9q74 Agaplesion Bethesda Klinik'),
(60632, 'https://ror.org/0182jz384', 'de', 1, 'https://ror.org/0182jz384 Age Stiftung'),
(60633, 'https://ror.org/02w6f6b92', 'de', 1, 'https://ror.org/02w6f6b92 Deutsche Rheuma-Liga'),
(60634, 'https://ror.org/03y9g2t13', 'no_lang_code', 1, 'https://ror.org/03y9g2t13 Boehringer Ingelheim (Denmark)'),
(60635, 'https://ror.org/03r76e753', 'de', 1, 'https://ror.org/03r76e753 Rheinisch-Bergische Verlagsgesellschaft'),
(60636, 'https://ror.org/03nsv9b85', 'de', 1, 'https://ror.org/03nsv9b85 Reproduktionsmedizin München'),
(60637, 'https://ror.org/01rfvvq43', 'no_lang_code', 1, 'https://ror.org/01rfvvq43 Boston Scientific (Germany)'),
(60638, 'https://ror.org/021bvd011', 'no_lang_code', 1, 'https://ror.org/021bvd011 Boston Scientific (Netherlands)'),
(60639, 'https://ror.org/01pwcqj21', 'no_lang_code', 1, 'https://ror.org/01pwcqj21 Columbia Shipmanagement (Germany)'),
(60640, 'https://ror.org/01z8ch088', 'en', 1, 'https://ror.org/01z8ch088 Compliant Concept'),
(60641, 'https://ror.org/00jwb3477', 'nl', 1, 'https://ror.org/00jwb3477 Flemish Taekwondo Association Vlaamse Taekwondo Bond'),
(60642, 'https://ror.org/00wj7ww55', 'de', 1, 'https://ror.org/00wj7ww55 Deutscher Berufsverband der Hals-Nasen-Ohrenärzte e. V'),
(60643, 'https://ror.org/02qfg2147', 'de', 1, 'https://ror.org/02qfg2147 Brost Stiftung'),
(60644, 'https://ror.org/0217f6q14', 'de', 1, 'https://ror.org/0217f6q14 D•A•CH-Gesellschaft'),
(60645, 'https://ror.org/05qkht728', 'no_lang_code', 1, 'https://ror.org/05qkht728 Credentis (Switzerland)'),
(60646, 'https://ror.org/004cmqw89', 'no_lang_code', 1, 'https://ror.org/004cmqw89 AOK Allgemeine Ortskrankenkasse'),
(60647, 'https://ror.org/024bw4368', 'de', 1, 'https://ror.org/024bw4368 Bund gegen Alkohol und Drogen im Straßenverkehr'),
(60648, 'https://ror.org/02e9sbg40', 'de', 1, 'https://ror.org/02e9sbg40 Deutscher Berufsverband Rettungsdienst e.V'),
(60649, 'https://ror.org/05ygse102', 'no_lang_code', 1, 'https://ror.org/05ygse102 Shell (Germany)'),
(60650, 'https://ror.org/04xj8xr09', 'de', 1, 'https://ror.org/04xj8xr09 Deutscher Psoriasis Bund'),
(60651, 'https://ror.org/01tpy1912', 'de', 1, 'https://ror.org/01tpy1912 Bundesverband der Hörgeräte-Industrie'),
(60652, 'https://ror.org/04a87yd07', 'de', 1, 'https://ror.org/04a87yd07 Bundesverband Selbstständiger Physiotherapeuten'),
(60653, 'https://ror.org/054vkyc79', 'de', 1, 'https://ror.org/054vkyc79 Evangelisches Krankenhaus Königin Elisabeth Herzberge'),
(60654, 'https://ror.org/056y4sn81', 'de', 1, 'https://ror.org/056y4sn81 Evangelisches Krankenhaus Göttingen-Weende'),
(60655, 'https://ror.org/05q4r1796', 'de', 1, 'https://ror.org/05q4r1796 Evangelische Lungenklinik Berlin'),
(60656, 'https://ror.org/02ahksm63', 'de', 1, 'https://ror.org/02ahksm63 Diakonie Baden'),
(60657, 'https://ror.org/03ysbjx45', 'de', 1, 'https://ror.org/03ysbjx45 Fachklinik 360°'),
(60658, 'https://ror.org/03a3zhd98', 'es', 1, 'https://ror.org/03a3zhd98 Fundación Neumosur'),
(60659, 'https://ror.org/05ns7k858', 'nl', 1, 'https://ror.org/05ns7k858 Espérance Stichting Esperance'),
(60660, 'https://ror.org/04qstxt95', 'no_lang_code', 1, 'https://ror.org/04qstxt95 Apomedica (Austria)'),
(60661, 'https://ror.org/02qmczs49', 'no_lang_code', 1, 'https://ror.org/02qmczs49 Devicia (Sweden)'),
(60662, 'https://ror.org/00nc2d154', 'no_lang_code', 1, 'https://ror.org/00nc2d154 Nestlé (Germany)'),
(60663, 'https://ror.org/019dx5122', 'de', 1, 'https://ror.org/019dx5122 Deutsche Gesellschaft für Ultraschall in der Medizin'),
(60664, 'https://ror.org/051md9f18', 'de', 1, 'https://ror.org/051md9f18 Apothekerstiftung Westfalen-Lippe'),
(60665, 'https://ror.org/054zxwt86', 'de', 1, 'https://ror.org/054zxwt86 Evangelisches Krankenhaus Mettmann'),
(60666, 'https://ror.org/0479nnv27', 'no_lang_code', 1, 'https://ror.org/0479nnv27 Dentium (South Korea)'),
(60667, 'https://ror.org/00k19bf64', 'no_lang_code', 1, 'https://ror.org/00k19bf64 AppPeople (Germany)'),
(60668, 'https://ror.org/03m85x183', 'no_lang_code', 1, 'https://ror.org/03m85x183 KLS Martin (Germany)'),
(60669, 'https://ror.org/0395pak08', 'en', 1, 'https://ror.org/0395pak08 AAB College Kolegji AAB'),
(60670, 'https://ror.org/04xx57w85', 'no_lang_code', 1, 'https://ror.org/04xx57w85 Gelita (Germany)'),
(60671, 'https://ror.org/02ztdvb08', 'de', 1, 'https://ror.org/02ztdvb08 Stiftung Empiris'),
(60672, 'https://ror.org/03vbmcv19', 'no_lang_code', 1, 'https://ror.org/03vbmcv19 E&L Medical Systems (Germany)'),
(60673, 'https://ror.org/02skrkk58', 'de', 1, 'https://ror.org/02skrkk58 Gemeinschaftskrankenhaus Havelhöhe'),
(60674, 'https://ror.org/02z2af868', 'no_lang_code', 1, 'https://ror.org/02z2af868 K-Implant (Germany)'),
(60675, 'https://ror.org/04b98k103', 'de', 1, 'https://ror.org/04b98k103 Döpfer Schulen Regensburg'),
(60676, 'https://ror.org/04swy5694', 'nl', 1, 'https://ror.org/04swy5694 Dokter Bosman'),
(60677, 'https://ror.org/00pvtfc31', 'no_lang_code', 1, 'https://ror.org/00pvtfc31 Serag-Wiessner (Germany)'),
(60678, 'https://ror.org/00w7n4066', 'en', 1, 'https://ror.org/00w7n4066 Mikaelyan Institute of Surgery ՄԻՔԱՅԵԼՅԱՆ ՎԻՐԱԲՈՒԺՈՒԹՅԱՆ ԻՆՍՏԻՏՈՒՏ'),
(60679, 'https://ror.org/04578ze73', 'no_lang_code', 1, 'https://ror.org/04578ze73 Derma Consult (Germany)'),
(60680, 'https://ror.org/01ccgqb68', 'de', 1, 'https://ror.org/01ccgqb68 Dermatologie Freiburg'),
(60681, 'https://ror.org/01mvtpp50', 'de', 1, 'https://ror.org/01mvtpp50 Arbeitsgemeinschaft für Krebsbekämpfung'),
(60682, 'https://ror.org/04rcd2e35', 'de', 1, 'https://ror.org/04rcd2e35 Fachklinik St. Marienstift Dammer Berge'),
(60683, 'https://ror.org/00pvgnv60', 'de', 1, 'https://ror.org/00pvgnv60 Fachklinik Weinböhla'),
(60684, 'https://ror.org/0513wsw42', 'de', 1, 'https://ror.org/0513wsw42 Deutsche AIDS-Gesellschaft'),
(60685, 'https://ror.org/03zzm8134', 'en', 1, 'https://ror.org/03zzm8134 Deutschen Akademie für Flug- und Reisemedizin German Academy for Aviation and Travel Medicine'),
(60686, 'https://ror.org/01j811c15', 'en', 1, 'https://ror.org/01j811c15 German Inflammatory Bowel Diseases Study Group'),
(60687, 'https://ror.org/01545pc85', 'de', 1, 'https://ror.org/01545pc85 Fachkrankenhaus Hubertusburg'),
(60688, 'https://ror.org/05cc53v60', 'de', 1, 'https://ror.org/05cc53v60 Fachverband SAPV Hessen'),
(60689, 'https://ror.org/03hmqk966', 'de', 1, 'https://ror.org/03hmqk966 Albert Schweitzer Klinik'),
(60690, 'https://ror.org/018hhzz02', 'nl', 1, 'https://ror.org/018hhzz02 Bouman GGZ Bouman Geestelijke Gezondheidszorg'),
(60691, 'https://ror.org/046gp2614', 'de', 1, 'https://ror.org/046gp2614 Deutsche Gesellschaft für Anästhesiologie und Intensivmedizin'),
(60692, 'https://ror.org/057hhh802', 'de', 1, 'https://ror.org/057hhh802 Verband Deutscher Mineralbrunnen'),
(60693, 'https://ror.org/03rr0h512', 'de', 1, 'https://ror.org/03rr0h512 Feuerwehr Brühl'),
(60694, 'https://ror.org/03kqk1x83', 'de', 1, 'https://ror.org/03kqk1x83 Deutsche Gesellschaft für Transaktionsanalyse'),
(60695, 'https://ror.org/00ha4p191', 'de', 1, 'https://ror.org/00ha4p191 Diakonie Klinikum Jung-Stilling'),
(60696, 'https://ror.org/048knfw55', 'no_lang_code', 1, 'https://ror.org/048knfw55 Gesundes Kinzigtal (Germany)'),
(60697, 'https://ror.org/00hndgp31', 'de', 1, 'https://ror.org/00hndgp31 Deutsche Interdisziplinäre Vereinigung für Intensiv- und Notfallmedizin'),
(60698, 'https://ror.org/02x8kf546', 'en', 1, 'https://ror.org/02x8kf546 ARCUS Sportkliniken ARCUS Sports Clinic'),
(60699, 'https://ror.org/00m42s140', 'de', 1, 'https://ror.org/00m42s140 Deutsche Gesellschaft für Internationale Zusammenarbeit German Corporation for International Cooperation'),
(60700, 'https://ror.org/057484769', 'no_lang_code', 1, 'https://ror.org/057484769 Fine Treatment (United Kingdom)'),
(60701, 'https://ror.org/03hvx4842', 'de', 1, 'https://ror.org/03hvx4842 Gesundheitsnetz Rhein-Neckar'),
(60702, 'https://ror.org/006ggeh68', 'no_lang_code', 1, 'https://ror.org/006ggeh68 Bentley (Germany)'),
(60703, 'https://ror.org/04by43e81', 'de', 1, 'https://ror.org/04by43e81 GOIN Gesundheitsorganisation'),
(60704, 'https://ror.org/007emtd94', 'no_lang_code', 1, 'https://ror.org/007emtd94 Nielsen (Germany)'),
(60705, 'https://ror.org/05cvd1d02', 'no_lang_code', 1, 'https://ror.org/05cvd1d02 Diamed Medizintechnik (Germany)'),
(60706, 'https://ror.org/03zxn7k97', 'de', 1, 'https://ror.org/03zxn7k97 Die Zahnärzte.ch'),
(60707, 'https://ror.org/039kzrb23', 'no_lang_code', 1, 'https://ror.org/039kzrb23 Nuvisan (Germany)'),
(60708, 'https://ror.org/001xy0e42', 'de', 1, 'https://ror.org/001xy0e42 Ärztliche Akademie für Psychotherapie von Kindern und Jugendlichen'),
(60709, 'https://ror.org/039phvz68', 'no_lang_code', 1, 'https://ror.org/039phvz68 GHD GesundHeits GmbH Deutschland (Germany)'),
(60710, 'https://ror.org/05d4yeg66', 'de', 1, 'https://ror.org/05d4yeg66 Ria & Arthur Dietschweiler Stiftung'),
(60711, 'https://ror.org/049n8jv26', 'en', 1, 'https://ror.org/049n8jv26 Diagnostic and Treatment Centre Berlin Diagnostisch Therapeutisches Zentrum'),
(60712, 'https://ror.org/01ne3xe80', 'de', 1, 'https://ror.org/01ne3xe80 Ärztliche Gesellschaft zur Gesundheitsförderung e.V'),
(60713, 'https://ror.org/03erpd422', 'de', 1, 'https://ror.org/03erpd422 Förderkreis Hilfe für krebskranke Kinder'),
(60714, 'https://ror.org/02ts4qr04', 'no_lang_code', 1, 'https://ror.org/02ts4qr04 Disphar International (Netherlands)'),
(60715, 'https://ror.org/05129cd91', 'no_lang_code', 1, 'https://ror.org/05129cd91 Dürr Dental (Germany)'),
(60716, 'https://ror.org/008cpgt80', 'no_lang_code', 1, 'https://ror.org/008cpgt80 DJO Global (Germany)'),
(60717, 'https://ror.org/00fdh5j55', 'no_lang_code', 1, 'https://ror.org/00fdh5j55 Given Imaging (Germany)'),
(60718, 'https://ror.org/03qafw071', 'de', 1, 'https://ror.org/03qafw071 Vitos'),
(60719, 'https://ror.org/02j4hfc40', 'no_lang_code', 1, 'https://ror.org/02j4hfc40 Glaukos (United States)'),
(60720, 'https://ror.org/04xh4nj31', 'no_lang_code', 1, 'https://ror.org/04xh4nj31 EDAP TMS (Germany)'),
(60721, 'https://ror.org/052vnzp53', 'de', 1, 'https://ror.org/052vnzp53 Förderverein Hilfe bei Prostatakrebs'),
(60722, 'https://ror.org/05916vc09', 'no_lang_code', 1, 'https://ror.org/05916vc09 DMG (Germany)'),
(60723, 'https://ror.org/01m5mwt22', 'de', 1, 'https://ror.org/01m5mwt22 Asklepios Fachklinikum Tiefenbrunn'),
(60724, 'https://ror.org/050t8nt82', 'no_lang_code', 1, 'https://ror.org/050t8nt82 Glycemicon (Switzerland)'),
(60725, 'https://ror.org/001gp6102', 'de', 1, 'https://ror.org/001gp6102 Edel + weiss Zahnärzte'),
(60726, 'https://ror.org/05pp3ka35', 'no_lang_code', 1, 'https://ror.org/05pp3ka35 Dr. Ausbüttel (Germany)'),
(60727, 'https://ror.org/04gbqr315', 'de', 1, 'https://ror.org/04gbqr315 Forschungsgesellschaft Atemwegerkrankungen'),
(60728, 'https://ror.org/0041kxp69', 'en', 1, 'https://ror.org/0041kxp69 Dr.Heiko Pult Optometry and Vision Research'),
(60729, 'https://ror.org/02zkjhv23', 'de', 1, 'https://ror.org/02zkjhv23 Eifelklinik Manderscheid'),
(60730, 'https://ror.org/05rtjbe93', 'de', 1, 'https://ror.org/05rtjbe93 Asklepios Orthopädische Klinik Lindenlohe'),
(60731, 'https://ror.org/01t10vs30', 'no_lang_code', 1, 'https://ror.org/01t10vs30 Eisai (Germany)'),
(60732, 'https://ror.org/008gj9m82', 'de', 1, 'https://ror.org/008gj9m82 Lesmüller-Stiftung'),
(60733, 'https://ror.org/036arc746', 'de', 1, 'https://ror.org/036arc746 Kompetenznetz Leukämien'),
(60734, 'https://ror.org/02b3z0y06', 'de', 1, 'https://ror.org/02b3z0y06 Asklepios Kliniken Schildautal'),
(60735, 'https://ror.org/050pcsr04', 'en', 1, 'https://ror.org/050pcsr04 Dr. Becker Rhein-Sieg Clinic Dr. Becker Rhein-Sieg-Klinik'),
(60736, 'https://ror.org/015d6sb27', 'no_lang_code', 1, 'https://ror.org/015d6sb27 GP Pharm (Spain)'),
(60737, 'https://ror.org/00t1kaa78', 'no_lang_code', 1, 'https://ror.org/00t1kaa78 Grifols (Germany)'),
(60738, 'https://ror.org/05hbymd96', 'de', 1, 'https://ror.org/05hbymd96 Hauschka Stiftung'),
(60739, 'https://ror.org/03zfqb242', 'de', 1, 'https://ror.org/03zfqb242 Elefanten Apotheke'),
(60740, 'https://ror.org/036gpm141', 'de', 1, 'https://ror.org/036gpm141 Asklepios Neurologische Klinik Falkenstein'),
(60741, 'https://ror.org/02kjx8221', 'no_lang_code', 1, 'https://ror.org/02kjx8221 Dr. Loges (Germany)'),
(60742, 'https://ror.org/055tk9p53', 'de', 1, 'https://ror.org/055tk9p53 Asklepios'),
(60743, 'https://ror.org/023ytjs26', 'no_lang_code', 1, 'https://ror.org/023ytjs26 Hasomed (Germany)'),
(60744, 'https://ror.org/00sn12234', 'no_lang_code', 1, 'https://ror.org/00sn12234 GS Elektromed. Geräte G. Stemple (Germany)'),
(60745, 'https://ror.org/04d3z1s95', 'no_lang_code', 1, 'https://ror.org/04d3z1s95 Dr. Mattiola & Partner AG (Switzerland)'),
(60746, 'https://ror.org/05955c602', 'de', 1, 'https://ror.org/05955c602 Hausärzteverband Sachsen-Anhalt'),
(60747, 'https://ror.org/034fc8f37', 'no_lang_code', 1, 'https://ror.org/034fc8f37 Guangdong Junfeng Spectrum (China)'),
(60748, 'https://ror.org/05hgx8v86', 'no_lang_code', 1, 'https://ror.org/05hgx8v86 Elixir Medical (United States)'),
(60749, 'https://ror.org/01x1jpq68', 'no_lang_code', 1, 'https://ror.org/01x1jpq68 Dr. Niedermaier Pharma (Germany)'),
(60750, 'https://ror.org/01cpc0e60', 'no_lang_code', 1, 'https://ror.org/01cpc0e60 Haider Bioswing (Germany)'),
(60751, 'https://ror.org/007rj1t21', 'nl', 1, 'https://ror.org/007rj1t21 Janusz Korczak Stichting'),
(60752, 'https://ror.org/050ja5z71', 'no_lang_code', 1, 'https://ror.org/050ja5z71 HausMed (Germany)'),
(60753, 'https://ror.org/00jhkj736', 'no_lang_code', 1, 'https://ror.org/00jhkj736 Dr. Pfleger Arzneimittel (Germany)'),
(60754, 'https://ror.org/04ayaxc32', 'de', 1, 'https://ror.org/04ayaxc32 Elterninitiative Krebskranker Kinder im Saarland'),
(60755, 'https://ror.org/053x0fn40', 'de', 1, 'https://ror.org/053x0fn40 IKK Classic'),
(60756, 'https://ror.org/03y40yh62', 'de', 1, 'https://ror.org/03y40yh62 Stiftung Depressionsforschung'),
(60757, 'https://ror.org/05epfm497', 'en', 1, 'https://ror.org/05epfm497 Hautok + Hautok Cosmetics'),
(60758, 'https://ror.org/05dx5b564', 'de', 1, 'https://ror.org/05dx5b564 Immanuel Klinikum Bernau'),
(60759, 'https://ror.org/0335jxq92', 'no_lang_code', 1, 'https://ror.org/0335jxq92 Immundiagnostik (Germany)'),
(60760, 'https://ror.org/02fqx5560', 'no_lang_code', 1, 'https://ror.org/02fqx5560 Implandata Ophthalmic Products (Germany)'),
(60761, 'https://ror.org/01h0snt56', 'no_lang_code', 1, 'https://ror.org/01h0snt56 Emmedi (Italy)'),
(60762, 'https://ror.org/036cpmb86', 'no_lang_code', 1, 'https://ror.org/036cpmb86 Emotra (Sweden)'),
(60763, 'https://ror.org/038phvh31', 'no_lang_code', 1, 'https://ror.org/038phvh31 INC Research (United Kingdom)'),
(60764, 'https://ror.org/00m64hf65', 'de', 1, 'https://ror.org/00m64hf65 Emovis'),
(60765, 'https://ror.org/047tk1g21', 'no_lang_code', 1, 'https://ror.org/047tk1g21 Indena (France)'),
(60766, 'https://ror.org/04mftqn06', 'no_lang_code', 1, 'https://ror.org/04mftqn06 Heimomed Heinze (Germany)'),
(60767, 'https://ror.org/05ncexg51', 'en', 1, 'https://ror.org/05ncexg51 Atos Medical'),
(60768, 'https://ror.org/02mez3a16', 'de', 1, 'https://ror.org/02mez3a16 Integrierte Psychiatrie Winterthur'),
(60769, 'https://ror.org/03psazt82', 'no_lang_code', 1, 'https://ror.org/03psazt82 Ingredia (France)'),
(60770, 'https://ror.org/00ey8ew03', 'no_lang_code', 1, 'https://ror.org/00ey8ew03 Löwenstein Medical (Germany)'),
(60771, 'https://ror.org/030mnsr75', 'no_lang_code', 1, 'https://ror.org/030mnsr75 Helbo Photodynamic Systems (Germany)'),
(60772, 'https://ror.org/0525jdx88', 'de', 1, 'https://ror.org/0525jdx88 Diakonie Kork'),
(60773, 'https://ror.org/04sdwnk70', 'de', 1, 'https://ror.org/04sdwnk70 Werner und Erika Messmer Stiftung'),
(60774, 'https://ror.org/04d2erj26', 'de', 1, 'https://ror.org/04d2erj26 Buchinger Wilhelmi'),
(60775, 'https://ror.org/036vjnj69', 'no_lang_code', 1, 'https://ror.org/036vjnj69 Innomedis (Germany)'),
(60776, 'https://ror.org/00g63xj11', 'de', 1, 'https://ror.org/00g63xj11 Helios Klinik Kipfenberg'),
(60777, 'https://ror.org/026rvyt77', 'de', 1, 'https://ror.org/026rvyt77 Klinik Bavaria'),
(60778, 'https://ror.org/04sr0hc76', 'de', 1, 'https://ror.org/04sr0hc76 Helios Kliniken Mittelweser'),
(60779, 'https://ror.org/04y18m106', 'de', 1, 'https://ror.org/04y18m106 Helios Klinikum Erfurt'),
(60780, 'https://ror.org/018gc9r78', 'en', 1, 'https://ror.org/018gc9r78 Helios Hospital Schwerin Helios Kliniken Schwerin'),
(60781, 'https://ror.org/05hgh1g19', 'en', 1, 'https://ror.org/05hgh1g19 Helios Hospital Berlin-Buch Helios Klinikum Berlin-Buch'),
(60782, 'https://ror.org/049yad652', 'de', 1, 'https://ror.org/049yad652 Erwin Röver Stiftung'),
(60783, 'https://ror.org/0013xzr62', 'en', 1, 'https://ror.org/0013xzr62 International Maitland Teacher Association'),
(60784, 'https://ror.org/05ktfmr66', 'de', 1, 'https://ror.org/05ktfmr66 Helios Vogtland Klinikum Plauen'),
(60785, 'https://ror.org/029cqm867', 'de', 1, 'https://ror.org/029cqm867 Hospital Krefeld-Düsseldorf'),
(60786, 'https://ror.org/0528jqb23', 'no_lang_code', 1, 'https://ror.org/0528jqb23 Inspire Medical Systems (United States)'),
(60787, 'https://ror.org/04z28dj81', 'fr', 1, 'https://ror.org/04z28dj81 Institut Aguettant'),
(60788, 'https://ror.org/028v8ft65', 'en', 1, 'https://ror.org/028v8ft65 HELIOS Klinikum Bad Saarow Helios Hospital Bad Saarow'),
(60789, 'https://ror.org/00qtpwp08', 'de', 1, 'https://ror.org/00qtpwp08 Institut Dr. Schauerte'),
(60790, 'https://ror.org/02tzf4h03', 'en', 1, 'https://ror.org/02tzf4h03 Hermann Buhl Institut');
INSERT INTO `rors` VALUES
(60791, 'https://ror.org/00jp3t114', 'de', 1, 'https://ror.org/00jp3t114 Helios Hospital Siegburg Helios Klinikum Siegburg'),
(60792, 'https://ror.org/03kz92t11', 'no_lang_code', 1, 'https://ror.org/03kz92t11 Hermes Arzneimittel (Germany)'),
(60793, 'https://ror.org/04r88rm51', 'no_lang_code', 1, 'https://ror.org/04r88rm51 Intersurgical (Germany)'),
(60794, 'https://ror.org/048kfq149', 'de', 1, 'https://ror.org/048kfq149 HIZ Berlin'),
(60795, 'https://ror.org/00td6v066', 'de', 1, 'https://ror.org/00td6v066 HELIOS Klinikum Emil von Behring Helios Klinikum Emil von Behring'),
(60796, 'https://ror.org/022r80268', 'no_lang_code', 1, 'https://ror.org/022r80268 Intuitive Surgical (Switzerland)'),
(60797, 'https://ror.org/00vppgp96', 'de', 1, 'https://ror.org/00vppgp96 Marienhaus Klinikum Hetzelstift Neustadt'),
(60798, 'https://ror.org/00dkbxq38', 'no_lang_code', 1, 'https://ror.org/00dkbxq38 Hikma Pharmaceuticals (Germany)'),
(60799, 'https://ror.org/00wqjrk21', 'de', 1, 'https://ror.org/00wqjrk21 Institut für Medizinische Informatik, Biometrie und Epidemiologie'),
(60800, 'https://ror.org/0151g7j48', 'en', 1, 'https://ror.org/0151g7j48 Histiocyte Society'),
(60801, 'https://ror.org/00dhqzt16', 'de', 1, 'https://ror.org/00dhqzt16 INVADE Institut für Versorgungsforschung'),
(60802, 'https://ror.org/026jf4w16', 'en', 1, 'https://ror.org/026jf4w16 Hessian Ministry for Social Affairs and Integration Hessisches Ministerium für Soziales und Integration'),
(60803, 'https://ror.org/04b85d432', 'de', 1, 'https://ror.org/04b85d432 Universitäts-HNO-Klinik Heidelberg'),
(60804, 'https://ror.org/001b17f86', 'en', 1, 'https://ror.org/001b17f86 Conseil Européen European Council Europäischer Rat'),
(60805, 'https://ror.org/01pndgw26', 'de', 1, 'https://ror.org/01pndgw26 Klinik und Poliklinik für Hals-Nasen-Ohren-Heilkunde'),
(60806, 'https://ror.org/03zvpee43', 'de', 1, 'https://ror.org/03zvpee43 Hochschule für Gesundheitsorientierte Wissenschaften Rhein-Neckar'),
(60807, 'https://ror.org/04yx65w97', 'de', 1, 'https://ror.org/04yx65w97 Institut für Palliative Care'),
(60808, 'https://ror.org/033gvjm02', 'de', 1, 'https://ror.org/033gvjm02 Klinik Lüneburger Heide'),
(60809, 'https://ror.org/022rrds39', 'de', 1, 'https://ror.org/022rrds39 Hoffnungsbaum'),
(60810, 'https://ror.org/007zn4n28', 'no_lang_code', 1, 'https://ror.org/007zn4n28 Hologic (Germany)'),
(60811, 'https://ror.org/03h1j4f11', 'de', 1, 'https://ror.org/03h1j4f11 Krankenhäuser Landkreis Freudenstadt'),
(60812, 'https://ror.org/02722xq19', 'de', 1, 'https://ror.org/02722xq19 Klinik Niederrhein'),
(60813, 'https://ror.org/0230sdn30', 'no_lang_code', 1, 'https://ror.org/0230sdn30 Hoya Surgical Optics (Germany)'),
(60814, 'https://ror.org/04s366p63', 'de', 1, 'https://ror.org/04s366p63 Klinikum Sindelfingen-Böblingen'),
(60815, 'https://ror.org/00x1td960', 'de', 1, 'https://ror.org/00x1td960 Klinik Roderbirke'),
(60816, 'https://ror.org/007857862', 'no_lang_code', 1, 'https://ror.org/007857862 Kreiskrankenhaus Gummersbach'),
(60817, 'https://ror.org/00ekwj913', 'no_lang_code', 1, 'https://ror.org/00ekwj913 Humedics (Germany)'),
(60818, 'https://ror.org/033x1wr64', 'de', 1, 'https://ror.org/033x1wr64 Klinik Rosenberg'),
(60819, 'https://ror.org/01dgzjt17', 'de', 1, 'https://ror.org/01dgzjt17 Hospital Märkisch-Oderland Krankenhaus Märkisch-Oderland'),
(60820, 'https://ror.org/00esbf302', 'de', 1, 'https://ror.org/00esbf302 St. Elisabeth-Krankenhaus Leipzig'),
(60821, 'https://ror.org/01mp0e364', 'de', 1, 'https://ror.org/01mp0e364 Infektionsmedizinisches Centrum Hamburg'),
(60822, 'https://ror.org/049btft62', 'de', 1, 'https://ror.org/049btft62 Netzwerk der Rehabilitationsforschung in Nordrhein-Westfalen'),
(60823, 'https://ror.org/04cba8s74', 'en', 1, 'https://ror.org/04cba8s74 Competence Network Multiple Sclerosis Kompetenznetz Multiple Sklerose'),
(60824, 'https://ror.org/01v6tyf80', 'de', 1, 'https://ror.org/01v6tyf80 Institut für Ganzheitliche Medizin und Wissenschaft'),
(60825, 'https://ror.org/02q1k8269', 'de', 1, 'https://ror.org/02q1k8269 Krebsgesellschaft Nordrhein-Westfalen'),
(60826, 'https://ror.org/04ztvxe73', 'de', 1, 'https://ror.org/04ztvxe73 Kreiskrankenhaus Emmendingen'),
(60827, 'https://ror.org/03326wy09', 'en', 1, 'https://ror.org/03326wy09 Institut für Therapie- und Gesundheitsforschung Institute for Therapy and Health Research'),
(60828, 'https://ror.org/04mae1e30', 'de', 1, 'https://ror.org/04mae1e30 Deutsche Wirbelsäulengesellschaft'),
(60829, 'https://ror.org/041kzk395', 'no_lang_code', 1, 'https://ror.org/041kzk395 Elektror Airsystems (Germany)'),
(60830, 'https://ror.org/0093yfm43', 'de', 1, 'https://ror.org/0093yfm43 Institut für Verhaltenstherapie-Ausbildung Hamburg'),
(60831, 'https://ror.org/01ddazc14', 'de', 1, 'https://ror.org/01ddazc14 Marienkrankenhaus Kassel'),
(60832, 'https://ror.org/02psykc67', 'de', 1, 'https://ror.org/02psykc67 Marienkrankenhaus Hamburg'),
(60833, 'https://ror.org/02bxvq813', 'de', 1, 'https://ror.org/02bxvq813 Klinik und Poliklinik für Frauenheilkunde und Fortpflanzungsmedizin'),
(60834, 'https://ror.org/01vb5ks25', 'de', 1, 'https://ror.org/01vb5ks25 Martini-Klinik'),
(60835, 'https://ror.org/02j2kw336', 'no_lang_code', 1, 'https://ror.org/02j2kw336 Molteni Farmaceutici (Italy)'),
(60836, 'https://ror.org/04p94z953', 'de', 1, 'https://ror.org/04p94z953 Klinikum Rheine'),
(60837, 'https://ror.org/01sq6ck73', 'de', 1, 'https://ror.org/01sq6ck73 Monika Kutzner Stiftung'),
(60838, 'https://ror.org/03cr5e788', 'de', 1, 'https://ror.org/03cr5e788 Klinik und Poliklinik für Hals-, Nasen-, Ohrenheilkunde'),
(60839, 'https://ror.org/02skjv125', 'no_lang_code', 1, 'https://ror.org/02skjv125 Mathys (Switzerland)'),
(60840, 'https://ror.org/02wv74f83', 'no_lang_code', 1, 'https://ror.org/02wv74f83 Mathys (Germany)'),
(60841, 'https://ror.org/05k64t167', 'de', 1, 'https://ror.org/05k64t167 Lahntalklinik'),
(60842, 'https://ror.org/02bkjp178', 'no_lang_code', 1, 'https://ror.org/02bkjp178 Max Zeller Söhne (Switzerland)'),
(60843, 'https://ror.org/02j0fhg41', 'de', 1, 'https://ror.org/02j0fhg41 Moritz Klinik'),
(60844, 'https://ror.org/04hd04g86', 'en', 1, 'https://ror.org/04hd04g86 Agaplesion Markus Hospital Agaplesion Markus Krankenhaus'),
(60845, 'https://ror.org/0101mv631', 'de', 1, 'https://ror.org/0101mv631 Klinik und Poliklinik für Kinder- und Jugendmedizin'),
(60846, 'https://ror.org/05y895e77', 'de', 1, 'https://ror.org/05y895e77 Landesuntersuchungsanstalt Sachsen'),
(60847, 'https://ror.org/049g3g548', 'de', 1, 'https://ror.org/049g3g548 Sana Kliniken Leipziger Land'),
(60848, 'https://ror.org/00tdtmz24', 'no_lang_code', 1, 'https://ror.org/00tdtmz24 Lapharm (Germany)'),
(60849, 'https://ror.org/04pse2556', 'de', 1, 'https://ror.org/04pse2556 Klinik und Poliklinik für Kinder- und Jugendpsychiatrie'),
(60850, 'https://ror.org/000p04g78', 'de', 1, 'https://ror.org/000p04g78 Ministerium für Soziales, Arbeit, Gesundheit und Demografie'),
(60851, 'https://ror.org/02kbfhq14', 'de', 1, 'https://ror.org/02kbfhq14 Laserklinik Karlsruhe'),
(60852, 'https://ror.org/01g4jev56', 'no_lang_code', 1, 'https://ror.org/01g4jev56 Philips (Finland) Philips Oy'),
(60853, 'https://ror.org/04dbahf95', 'de', 1, 'https://ror.org/04dbahf95 Klinik und Poliklinik für Mund-, Kiefer- und Gesichtschirurgie'),
(60854, 'https://ror.org/03h3mye18', 'de', 1, 'https://ror.org/03h3mye18 NBank'),
(60855, 'https://ror.org/0430haf92', 'no_lang_code', 1, 'https://ror.org/0430haf92 Medartis (Switzerland)'),
(60856, 'https://ror.org/019a9a780', 'de', 1, 'https://ror.org/019a9a780 Klinik König-Ludwig Haus'),
(60857, 'https://ror.org/03477rg40', 'no_lang_code', 1, 'https://ror.org/03477rg40 Neomedic International (Spain)'),
(60858, 'https://ror.org/04s3ast04', 'de', 1, 'https://ror.org/04s3ast04 Klinik und Poliklinik für Neurologie'),
(60859, 'https://ror.org/02g4bxh77', 'en', 1, 'https://ror.org/02g4bxh77 Medbase'),
(60860, 'https://ror.org/00qqw1b44', 'de', 1, 'https://ror.org/00qqw1b44 Klinik und Poliklinik für Nuklearmedizin'),
(60861, 'https://ror.org/05pax0z40', 'no_lang_code', 1, 'https://ror.org/05pax0z40 Medi (Germany)'),
(60862, 'https://ror.org/02kj91m96', 'en', 1, 'https://ror.org/02kj91m96 Leipzig Heart Institute'),
(60863, 'https://ror.org/04h9drp94', 'no_lang_code', 1, 'https://ror.org/04h9drp94 Leo Pharma (Germany)'),
(60864, 'https://ror.org/05y922z47', 'en', 1, 'https://ror.org/05y922z47 Leonardis Foundation'),
(60865, 'https://ror.org/035mdk862', 'no_lang_code', 1, 'https://ror.org/035mdk862 Medi-Tate (Israel)'),
(60866, 'https://ror.org/05pzx1a74', 'no_lang_code', 1, 'https://ror.org/05pzx1a74 Lipogen (Israel)'),
(60867, 'https://ror.org/01a7n9s35', 'no_lang_code', 1, 'https://ror.org/01a7n9s35 Medico-Academic Consultings (Germany)'),
(60868, 'https://ror.org/03h8wam21', 'de', 1, 'https://ror.org/03h8wam21 Schön Klinik München Schwabing'),
(60869, 'https://ror.org/01hf1z671', 'no_lang_code', 1, 'https://ror.org/01hf1z671 LIV Pharma (Germany)'),
(60870, 'https://ror.org/029705428', 'en', 1, 'https://ror.org/029705428 Department of Education'),
(60871, 'https://ror.org/03xgnab40', 'de', 1, 'https://ror.org/03xgnab40 Neurologisches Fachkrankenhaus für Bewegungsstörungen/Parkinson'),
(60872, 'https://ror.org/05sqsny02', 'no_lang_code', 1, 'https://ror.org/05sqsny02 Lophius Biosciences (Germany)'),
(60873, 'https://ror.org/04zys7342', 'de', 1, 'https://ror.org/04zys7342 Klinik und Poliklinik für Psychiatrie und Psychotherapie des Kindes- und Jugendalters'),
(60874, 'https://ror.org/05ch34p88', 'de', 1, 'https://ror.org/05ch34p88 Neurologisches Rehabilitationszentrum Leipzig'),
(60875, 'https://ror.org/05agddf32', 'de', 1, 'https://ror.org/05agddf32 MVZ - Kurfürstendamm'),
(60876, 'https://ror.org/00f180m78', 'de', 1, 'https://ror.org/00f180m78 Klinik und Poliklinik für Psychosomatik und Psychotherapie'),
(60877, 'https://ror.org/01b4gqk18', 'de', 1, 'https://ror.org/01b4gqk18 Sana Klinikum'),
(60878, 'https://ror.org/04bpnyr93', 'en', 1, 'https://ror.org/04bpnyr93 Aesthetico'),
(60879, 'https://ror.org/027nwsc63', 'en', 1, 'https://ror.org/027nwsc63 Medical Genetics Center Medizinisch Genetisches Zentrum'),
(60880, 'https://ror.org/01dc7nx94', 'de', 1, 'https://ror.org/01dc7nx94 Luisenkrankenhaus'),
(60881, 'https://ror.org/01nxxp011', 'de', 1, 'https://ror.org/01nxxp011 Klinik und Poliklinik für Psychosomatische Medizin und Psychotherapie'),
(60882, 'https://ror.org/01rhjvw42', 'no_lang_code', 1, 'https://ror.org/01rhjvw42 NewConceptOncology (Germany)'),
(60883, 'https://ror.org/039skw388', 'no_lang_code', 1, 'https://ror.org/039skw388 Lundbeck (Germany)'),
(60884, 'https://ror.org/02mqqja67', 'de', 1, 'https://ror.org/02mqqja67 Lungenheilkunde München-Pasing'),
(60885, 'https://ror.org/036w42389', 'de', 1, 'https://ror.org/036w42389 Niedersächsisches Landesamt für Soziales, Jugend und Familie'),
(60886, 'https://ror.org/01ec7fw73', 'de', 1, 'https://ror.org/01ec7fw73 Klinik und Poliklinik für Psychosomatische Medizin und Psychotherapie'),
(60887, 'https://ror.org/03qv69876', 'de', 1, 'https://ror.org/03qv69876 Lungenklinik Köln-Merheim'),
(60888, 'https://ror.org/01nwbp351', 'de', 1, 'https://ror.org/01nwbp351 Nierenzentrum Heidelberg'),
(60889, 'https://ror.org/04h616z85', 'de', 1, 'https://ror.org/04h616z85 LVR-Klinik Bonn'),
(60890, 'https://ror.org/00gfym921', 'de', 1, 'https://ror.org/00gfym921 Klinik und Poliklinik für Urologie'),
(60891, 'https://ror.org/00aj8m584', 'no_lang_code', 1, 'https://ror.org/00aj8m584 Optana (Germany)'),
(60892, 'https://ror.org/05g6ncb39', 'de', 1, 'https://ror.org/05g6ncb39 Niederösterreichischer Gesundheits- und Sozialfond'),
(60893, 'https://ror.org/05my1gr06', 'nl', 1, 'https://ror.org/05my1gr06 Stichting Toegepast Wetenschappelijk Instituut voor Neuromodulatie'),
(60894, 'https://ror.org/00ef78t34', 'no_lang_code', 1, 'https://ror.org/00ef78t34 Novaliq (Germany)'),
(60895, 'https://ror.org/056efxn58', 'de', 1, 'https://ror.org/056efxn58 Klinik und Poliklinik für Urologie, Kinderurologie und Andrologie'),
(60896, 'https://ror.org/00rmx3f80', 'no_lang_code', 1, 'https://ror.org/00rmx3f80 Novatex (Germany)'),
(60897, 'https://ror.org/0264gwr07', 'no_lang_code', 1, 'https://ror.org/0264gwr07 Novel (Germany)'),
(60898, 'https://ror.org/02r15q206', 'no_lang_code', 1, 'https://ror.org/02r15q206 Novitas BKK (Germany)'),
(60899, 'https://ror.org/02fxb8p51', 'de', 1, 'https://ror.org/02fxb8p51 Familie Mehdorn Stiftung'),
(60900, 'https://ror.org/03nyzw632', 'no_lang_code', 1, 'https://ror.org/03nyzw632 Novo Nordisk (Germany)'),
(60901, 'https://ror.org/0584knp84', 'no_lang_code', 1, 'https://ror.org/0584knp84 Nucleix (Israel)'),
(60902, 'https://ror.org/002hjb015', 'de', 1, 'https://ror.org/002hjb015 Klinik und Poliklinik für Mund-, Kiefer- und Plastische Gesichtschirurgie'),
(60903, 'https://ror.org/037da6921', 'pl', 1, 'https://ror.org/037da6921 Fundacja NUTRICIA NUTRICIA Foundation'),
(60904, 'https://ror.org/05t6cb670', 'no_lang_code', 1, 'https://ror.org/05t6cb670 MetaX - Institut für Diätetik (Germany)'),
(60905, 'https://ror.org/05r2zqh89', 'no_lang_code', 1, 'https://ror.org/05r2zqh89 Nutricia (Germany)'),
(60906, 'https://ror.org/028e4qh46', 'no_lang_code', 1, 'https://ror.org/028e4qh46 New Valve Technology (Germany)'),
(60907, 'https://ror.org/01awb6242', 'de', 1, 'https://ror.org/01awb6242 Kliniken des Bezirks Oberbayern'),
(60908, 'https://ror.org/05wsbcr05', 'de', 1, 'https://ror.org/05wsbcr05 Medprevent Ottobrunn'),
(60909, 'https://ror.org/040h2ty70', 'no_lang_code', 1, 'https://ror.org/040h2ty70 Optima Pharmazeutische (Germany)'),
(60910, 'https://ror.org/049sbnt53', 'no_lang_code', 1, 'https://ror.org/049sbnt53 Migros (Switzerland)'),
(60911, 'https://ror.org/052c7xn57', 'de', 1, 'https://ror.org/052c7xn57 Oberberg Stiftung'),
(60912, 'https://ror.org/0007f0665', 'no_lang_code', 1, 'https://ror.org/0007f0665 MicroPort Orthopedics (Netherlands)'),
(60913, 'https://ror.org/02amn3y43', 'cs', 1, 'https://ror.org/02amn3y43 Committee of Good Will - Olga Havel Foundation Výbor dobré vůle Nadace Olgy Havlové'),
(60914, 'https://ror.org/02dt6qg89', 'no_lang_code', 1, 'https://ror.org/02dt6qg89 Organ Recovery Systems (Belgium)'),
(60915, 'https://ror.org/04hjayk14', 'no_lang_code', 1, 'https://ror.org/04hjayk14 Terumo (Germany)'),
(60916, 'https://ror.org/04n052q31', 'no_lang_code', 1, 'https://ror.org/04n052q31 Miha Bodytec (Germany)'),
(60917, 'https://ror.org/01jw20968', 'no_lang_code', 1, 'https://ror.org/01jw20968 Orochemie (Germany)'),
(60918, 'https://ror.org/00qr9d796', 'no_lang_code', 1, 'https://ror.org/00qr9d796 Perrigo (Germany)'),
(60919, 'https://ror.org/03sk0gd87', 'no_lang_code', 1, 'https://ror.org/03sk0gd87 Orthofix (Italy)'),
(60920, 'https://ror.org/05j6kar92', 'no_lang_code', 1, 'https://ror.org/05j6kar92 Omnicare Pharma (Germany)'),
(60921, 'https://ror.org/01qwfvp91', 'no_lang_code', 1, 'https://ror.org/01qwfvp91 Orthogen (Germany)'),
(60922, 'https://ror.org/0372q3g13', 'no_lang_code', 1, 'https://ror.org/0372q3g13 oncgnostics (Germany)'),
(60923, 'https://ror.org/0581as286', 'en', 1, 'https://ror.org/0581as286 Square Hospitals'),
(60924, 'https://ror.org/045axgc25', 'de', 1, 'https://ror.org/045axgc25 Ministerium für Arbeit, Gesundheit und Soziales des Landes Nordrhein-Westfalen'),
(60925, 'https://ror.org/01anv7k29', 'de', 1, 'https://ror.org/01anv7k29 Klinikum am Weissenhof'),
(60926, 'https://ror.org/0439wry26', 'de', 1, 'https://ror.org/0439wry26 Ministerium für Heimat, Kommunales, Bau und Gleichstellung des Landes Nordrhein-Westfalen'),
(60927, 'https://ror.org/03z5ka349', 'de', 1, 'https://ror.org/03z5ka349 Klinikum Konstanz'),
(60928, 'https://ror.org/01249zp52', 'en', 1, 'https://ror.org/01249zp52 Osteopathie Plus'),
(60929, 'https://ror.org/03fsnw247', 'no_lang_code', 1, 'https://ror.org/03fsnw247 OnkoDataMed (Germany)'),
(60930, 'https://ror.org/05w3d1m46', 'de', 1, 'https://ror.org/05w3d1m46 Österreichische Gesellschaft für Anästhesiologie, Reanimation und Intensivmedizin'),
(60931, 'https://ror.org/029hy6086', 'de', 1, 'https://ror.org/029hy6086 Klinikverbund Südwest'),
(60932, 'https://ror.org/01f23xx77', 'de', 1, 'https://ror.org/01f23xx77 Misereor'),
(60933, 'https://ror.org/01h6pad21', 'de', 1, 'https://ror.org/01h6pad21 Psychologische Praxengemeinschaft'),
(60934, 'https://ror.org/000ad3960', 'no_lang_code', 1, 'https://ror.org/000ad3960 Oystershell (Belgium)'),
(60935, 'https://ror.org/0198kn518', 'de', 1, 'https://ror.org/0198kn518 Sächsisches Staatsministerium für Soziales und Verbraucherschutz'),
(60936, 'https://ror.org/05mvyv273', 'de', 1, 'https://ror.org/05mvyv273 Das Onkologische und Palliativmedizinische Netzwerk Landshut'),
(60937, 'https://ror.org/018w9fc90', 'no_lang_code', 1, 'https://ror.org/018w9fc90 Sachtleben (Germany)'),
(60938, 'https://ror.org/05dyfnr03', 'de', 1, 'https://ror.org/05dyfnr03 Park-Klinik Birkenwerder'),
(60939, 'https://ror.org/0071tdq26', 'de', 1, 'https://ror.org/0071tdq26 Sana Klinikum Lichtenberg'),
(60940, 'https://ror.org/01w1m0197', 'de', 1, 'https://ror.org/01w1m0197 Park-Klinik Weißensee'),
(60941, 'https://ror.org/04wbedy98', 'no_lang_code', 1, 'https://ror.org/04wbedy98 Storch und Beller'),
(60942, 'https://ror.org/05yh2yz22', 'de', 1, 'https://ror.org/05yh2yz22 Krankenhaus Jerusalem'),
(60943, 'https://ror.org/055w00q26', 'de', 1, 'https://ror.org/055w00q26 Parkinson-Klinik Ortenau'),
(60944, 'https://ror.org/02wr5jh59', 'no_lang_code', 1, 'https://ror.org/02wr5jh59 Pulmonx (Switzerland)'),
(60945, 'https://ror.org/03y7y3w57', 'de', 1, 'https://ror.org/03y7y3w57 Parkklinik Wiesbaden Schlangenbad'),
(60946, 'https://ror.org/05b58s093', 'no_lang_code', 1, 'https://ror.org/05b58s093 Pentracor (Germany)'),
(60947, 'https://ror.org/04zj53020', 'no_lang_code', 1, 'https://ror.org/04zj53020 Onkotrakt (Germany)'),
(60948, 'https://ror.org/04gj3vw69', 'de', 1, 'https://ror.org/04gj3vw69 Physiotherapie und Lauftherapie Zentrum'),
(60949, 'https://ror.org/03n61m405', 'no_lang_code', 1, 'https://ror.org/03n61m405 Onkovis (Germany)'),
(60950, 'https://ror.org/0022e0327', 'no_lang_code', 1, 'https://ror.org/0022e0327 Schaper & Brümmer (Germany)'),
(60951, 'https://ror.org/00rad0v56', 'no_lang_code', 1, 'https://ror.org/00rad0v56 Kona Medical (United States)'),
(60952, 'https://ror.org/055x1zb82', 'no_lang_code', 1, 'https://ror.org/055x1zb82 Osypka (Germany)'),
(60953, 'https://ror.org/05090cn78', 'de', 1, 'https://ror.org/05090cn78 Onkozentrum Dresden'),
(60954, 'https://ror.org/029zvxp24', 'no_lang_code', 1, 'https://ror.org/029zvxp24 Diamant (Germany)'),
(60955, 'https://ror.org/02xw5a882', 'no_lang_code', 1, 'https://ror.org/02xw5a882 QD Laser (Germany)'),
(60956, 'https://ror.org/00bvdsg05', 'de', 1, 'https://ror.org/00bvdsg05 Krankenhaus Agatharied'),
(60957, 'https://ror.org/050k6mb72', 'no_lang_code', 1, 'https://ror.org/050k6mb72 PharmaCept (Germany)'),
(60958, 'https://ror.org/02devh349', 'de', 1, 'https://ror.org/02devh349 Schön Klinik Neustadt'),
(60959, 'https://ror.org/04cm8jr24', 'de', 1, 'https://ror.org/04cm8jr24 Klinikum Würzburg Mitte'),
(60960, 'https://ror.org/039g7tm38', 'de', 1, 'https://ror.org/039g7tm38 Alzheimer Schweiz'),
(60961, 'https://ror.org/057889117', 'de', 1, 'https://ror.org/057889117 Investitionsbank Sachsen-Anhalt'),
(60962, 'https://ror.org/02mgzgr95', 'it', 1, 'https://ror.org/02mgzgr95 Istituto delle Scienze Neurologiche di Bologna'),
(60963, 'https://ror.org/05pkc2853', 'no_lang_code', 1, 'https://ror.org/05pkc2853 SCHWIND eye-tech-solutions (Germany)'),
(60964, 'https://ror.org/05xp1nk14', 'no_lang_code', 1, 'https://ror.org/05xp1nk14 Isarna Therapeutics (Germany)'),
(60965, 'https://ror.org/01gm5fk44', 'de', 1, 'https://ror.org/01gm5fk44 Informationszentrum für Sexualität und Gesundheit'),
(60966, 'https://ror.org/04vdm6x24', 'de', 1, 'https://ror.org/04vdm6x24 Senatsverwaltung für Gesundheit, Pflege und Gleichstellung'),
(60967, 'https://ror.org/0118ke170', 'no_lang_code', 1, 'https://ror.org/0118ke170 Itamar Medical (Israel)'),
(60968, 'https://ror.org/016sspy41', 'no_lang_code', 1, 'https://ror.org/016sspy41 SeneCura Kliniken und Heime (Austria)'),
(60969, 'https://ror.org/03tre7r66', 'no_lang_code', 1, 'https://ror.org/03tre7r66 Isotopen Technologien München (Germany)'),
(60970, 'https://ror.org/03qb4sg13', 'no_lang_code', 1, 'https://ror.org/03qb4sg13 Septodont (France)'),
(60971, 'https://ror.org/02z8m4v62', 'en', 1, 'https://ror.org/02z8m4v62 IVF Centers Prof. Zech Willkommen in den IVF Zentren Prof. Zech'),
(60972, 'https://ror.org/02wv88v83', 'no_lang_code', 1, 'https://ror.org/02wv88v83 Ivoclar Vivadent (Germany)'),
(60973, 'https://ror.org/03xsf0n03', 'no_lang_code', 1, 'https://ror.org/03xsf0n03 Sevika Medical (Switzerland)'),
(60974, 'https://ror.org/04cwh4511', 'no_lang_code', 1, 'https://ror.org/04cwh4511 KPMG (Australia)'),
(60975, 'https://ror.org/01zpcsk19', 'no_lang_code', 1, 'https://ror.org/01zpcsk19 SIGNUS Medizintechnik (Germany)'),
(60976, 'https://ror.org/008zpgd78', 'no_lang_code', 1, 'https://ror.org/008zpgd78 Qualissima (France)'),
(60977, 'https://ror.org/04crn0128', 'no_lang_code', 1, 'https://ror.org/04crn0128 Agrokor (Croatia)'),
(60978, 'https://ror.org/04w65pb91', 'no_lang_code', 1, 'https://ror.org/04w65pb91 SIGVARIS Group (Switzerland)'),
(60979, 'https://ror.org/014hhbt69', 'nl', 1, 'https://ror.org/014hhbt69 ALS Centrum Nederland'),
(60980, 'https://ror.org/00ab7gt92', 'no_lang_code', 1, 'https://ror.org/00ab7gt92 Sinclair Pharma'),
(60981, 'https://ror.org/02xa21y06', 'en', 1, 'https://ror.org/02xa21y06 QUIRIS Healthcare'),
(60982, 'https://ror.org/05jnah305', 'no_lang_code', 1, 'https://ror.org/05jnah305 novacare (Germany)'),
(60983, 'https://ror.org/00vsbee25', 'de', 1, 'https://ror.org/00vsbee25 Jüdisches Krankenhaus Berlin'),
(60984, 'https://ror.org/02q7g9n47', 'no_lang_code', 1, 'https://ror.org/02q7g9n47 Phonak (Germany)'),
(60985, 'https://ror.org/044s59k57', 'de', 1, 'https://ror.org/044s59k57 Sächsisches Krankenhaus Rodewisch'),
(60986, 'https://ror.org/03rmb1244', 'no_lang_code', 1, 'https://ror.org/03rmb1244 Radiometer (Germany)'),
(60987, 'https://ror.org/03y9e9713', 'de', 1, 'https://ror.org/03y9e9713 Raphaelsklinik Münster'),
(60988, 'https://ror.org/01kdwe889', 'no_lang_code', 1, 'https://ror.org/01kdwe889 Juzo (Germany)'),
(60989, 'https://ror.org/038c74q03', 'no_lang_code', 1, 'https://ror.org/038c74q03 Reck Technik (Germany)'),
(60990, 'https://ror.org/04v9hjm42', 'de', 1, 'https://ror.org/04v9hjm42 Juliusspital Foundation Stiftung Juliusspital'),
(60991, 'https://ror.org/04q550429', 'de', 1, 'https://ror.org/04q550429 Sozialversicherung für Landwirtschaft, Forsten und Gartenbau'),
(60992, 'https://ror.org/04q81mh44', 'no_lang_code', 1, 'https://ror.org/04q81mh44 Piramal (United Kingdom)'),
(60993, 'https://ror.org/00mwvbx98', 'no_lang_code', 1, 'https://ror.org/00mwvbx98 K2M (United States)'),
(60994, 'https://ror.org/03y5bbq43', 'no_lang_code', 1, 'https://ror.org/03y5bbq43 PlantTec Medical (Germany)'),
(60995, 'https://ror.org/00nganv68', 'no_lang_code', 1, 'https://ror.org/00nganv68 Regedent (Switzerland)'),
(60996, 'https://ror.org/026p92b89', 'no_lang_code', 1, 'https://ror.org/026p92b89 KA Medical (United States)'),
(60997, 'https://ror.org/009gj6k64', 'de', 1, 'https://ror.org/009gj6k64 DRK Kamillus Klinik'),
(60998, 'https://ror.org/0084rd854', 'en', 1, 'https://ror.org/0084rd854 Institute for Sports Medicine Sportmedizinische Institut'),
(60999, 'https://ror.org/01prj4323', 'de', 1, 'https://ror.org/01prj4323 Regio Kliniken'),
(61000, 'https://ror.org/03a1e0438', 'no_lang_code', 1, 'https://ror.org/03a1e0438 Kaneka (Germany)'),
(61001, 'https://ror.org/013ne8p22', 'de', 1, 'https://ror.org/013ne8p22 Poliklinik für Endokrinologie, Diabetologie und Präventivmedizin'),
(61002, 'https://ror.org/02rw7eq98', 'de', 1, 'https://ror.org/02rw7eq98 Rehaklinik Glotterbad'),
(61003, 'https://ror.org/02mj1v005', 'de', 1, 'https://ror.org/02mj1v005 Poliklinik für Präventive Zahnheilkunde und Kinderzahnheilkunde'),
(61004, 'https://ror.org/00q236z92', 'de', 1, 'https://ror.org/00q236z92 SRH Wald-Klinikum Gera'),
(61005, 'https://ror.org/03rswdy10', 'de', 1, 'https://ror.org/03rswdy10 Poliklinik für Zahnärztliche Prothetik'),
(61006, 'https://ror.org/01ynege53', 'no_lang_code', 1, 'https://ror.org/01ynege53 Rehaptix'),
(61007, 'https://ror.org/03rf7pf16', 'de', 1, 'https://ror.org/03rf7pf16 Karl Schlecht Stiftung'),
(61008, 'https://ror.org/01bavmk12', 'de', 1, 'https://ror.org/01bavmk12 Poliklinik für Zahnärztliche Prothetik mit Propädeutik'),
(61009, 'https://ror.org/020f8h126', 'de', 1, 'https://ror.org/020f8h126 Poliklinik für Zahnärztliche Prothetik und Werkstoffkunde'),
(61010, 'https://ror.org/050wz9j65', 'de', 1, 'https://ror.org/050wz9j65 Rehazentrum Wilhelmshaven'),
(61011, 'https://ror.org/028vdf012', 'no_lang_code', 1, 'https://ror.org/028vdf012 RelaxBogen (Germany)'),
(61012, 'https://ror.org/045xvrw74', 'en', 1, 'https://ror.org/045xvrw74 German Insurance Association Gesamtverband der Deutschen Versicherungswirtschaft'),
(61013, 'https://ror.org/038esqp30', 'de', 1, 'https://ror.org/038esqp30 St. Elisabethen-Krankenhaus Frankfurt'),
(61014, 'https://ror.org/04gpj3340', 'de', 1, 'https://ror.org/04gpj3340 Poliklinik für Zahnerhaltung und Parodontologie'),
(61015, 'https://ror.org/03nemnn25', 'no_lang_code', 1, 'https://ror.org/03nemnn25 Karr Dental (Switzerland)'),
(61016, 'https://ror.org/00nkf9b38', 'de', 1, 'https://ror.org/00nkf9b38 St. Marien- und St. Annastiftskrankenhaus'),
(61017, 'https://ror.org/04gxk9y84', 'de', 1, 'https://ror.org/04gxk9y84 Kassenärztliche Vereinigung Baden-Württemberg'),
(61018, 'https://ror.org/0470v5z93', 'de', 1, 'https://ror.org/0470v5z93 Post Apotheke'),
(61019, 'https://ror.org/02c30a260', 'en', 1, 'https://ror.org/02c30a260 Republican Scientific and Practical Centre of Pulmonology and Tuberculosis Республиканский научно-практический центр пульмонологии и туберкулеза Рэспубліканскі навукова-практычны цэнтр пульманалогіі і туберкулёзу'),
(61020, 'https://ror.org/04eqa0k17', 'de', 1, 'https://ror.org/04eqa0k17 Kassenärztliche Vereinigung Sachsen-Anhalt'),
(61021, 'https://ror.org/05scpew87', 'de', 1, 'https://ror.org/05scpew87 St. Josefskrankenhaus Freiburg'),
(61022, 'https://ror.org/02paqmq68', 'de', 1, 'https://ror.org/02paqmq68 St. Vinzenz Kliniken Pfronten im Allgäu'),
(61023, 'https://ror.org/00snsrx64', 'no_lang_code', 1, 'https://ror.org/00snsrx64 Precisis (Germany)'),
(61024, 'https://ror.org/019v04n80', 'de', 1, 'https://ror.org/019v04n80 Katholisches Krankenhaus St. Johann Nepomuk'),
(61025, 'https://ror.org/01arv1h94', 'en', 1, 'https://ror.org/01arv1h94 St. Josefs-Hospital Cloppenburg'),
(61026, 'https://ror.org/03dn8ag70', 'de', 1, 'https://ror.org/03dn8ag70 Kaufmännische Krankenkasse'),
(61027, 'https://ror.org/01zv88x17', 'no_lang_code', 1, 'https://ror.org/01zv88x17 Juno Therapeutics (Germany)'),
(61028, 'https://ror.org/04a59jq61', 'no_lang_code', 1, 'https://ror.org/04a59jq61 Procon (Germany)'),
(61029, 'https://ror.org/03wkdtr38', 'no_lang_code', 1, 'https://ror.org/03wkdtr38 Profound Medical (Canada)'),
(61030, 'https://ror.org/023pbyr02', 'no_lang_code', 1, 'https://ror.org/023pbyr02 SteadySense (Austria)'),
(61031, 'https://ror.org/00zy6xm60', 'no_lang_code', 1, 'https://ror.org/00zy6xm60 KCI (Germany)'),
(61032, 'https://ror.org/05dyssa78', 'no_lang_code', 1, 'https://ror.org/05dyssa78 Provascular (Germany)'),
(61033, 'https://ror.org/00reds669', 'de', 1, 'https://ror.org/00reds669 St. Mauritius Therapieklinik'),
(61034, 'https://ror.org/01dwwvh23', 'de', 1, 'https://ror.org/01dwwvh23 rgb Onkologisches Management'),
(61035, 'https://ror.org/03vhzfd61', 'no_lang_code', 1, 'https://ror.org/03vhzfd61 SteriPharm (Germany)'),
(61036, 'https://ror.org/01jm7yc11', 'no_lang_code', 1, 'https://ror.org/01jm7yc11 KCI (Netherlands)'),
(61037, 'https://ror.org/0208vms90', 'de', 1, 'https://ror.org/0208vms90 Landesbank Baden-Württemberg'),
(61038, 'https://ror.org/00pw9bg10', 'no_lang_code', 1, 'https://ror.org/00pw9bg10 Merz (United States)'),
(61039, 'https://ror.org/04xhn5b95', 'de', 1, 'https://ror.org/04xhn5b95 Universitätsklinik für Kinder und Jugendpsychiatrie'),
(61040, 'https://ror.org/03d8ync95', 'de', 1, 'https://ror.org/03d8ync95 Stiftung Deutsche Depressionshilfe'),
(61041, 'https://ror.org/009xp9857', 'de', 1, 'https://ror.org/009xp9857 Deutsche Stiftung Eierstockkrebs'),
(61042, 'https://ror.org/04f6tvf20', 'no_lang_code', 1, 'https://ror.org/04f6tvf20 PSI CRO (United Kingdom)'),
(61043, 'https://ror.org/03rmqr166', 'de', 1, 'https://ror.org/03rmqr166 KfH Kuratorium für Dialyse und Nierentransplantation'),
(61044, 'https://ror.org/050eva982', 'en', 1, 'https://ror.org/050eva982 German Council for Scientific Information Infrastructures Rat für Informationsinfrastrukturen'),
(61045, 'https://ror.org/021crbk07', 'sv', 1, 'https://ror.org/021crbk07 Riddargatan 1'),
(61046, 'https://ror.org/01n8j6z65', 'en', 1, 'https://ror.org/01n8j6z65 Deutsches Zentrum für Hochschul- und Wissenschaftsforschung German Centre for Higher Education Research and Science Studies'),
(61047, 'https://ror.org/04xdas356', 'no_lang_code', 1, 'https://ror.org/04xdas356 Unfallkasse Rheinland-Pfalz (Germany)'),
(61048, 'https://ror.org/055kyaa64', 'de', 1, 'https://ror.org/055kyaa64 Rheinhessen-Fachklinik Mainz'),
(61049, 'https://ror.org/0137q5a72', 'en', 1, 'https://ror.org/0137q5a72 University Clinic for Nephrology and Hypertension, Diabetology and Endocrinology Universitätsklinik für Nieren- und Hochdruckkrankheiten, Diabetologie und Endokrinologie'),
(61050, 'https://ror.org/02ntwx703', 'de', 1, 'https://ror.org/02ntwx703 Stiftung Irene'),
(61051, 'https://ror.org/01ezw9n40', 'de', 1, 'https://ror.org/01ezw9n40 Orthopädische Universitätsklinik'),
(61052, 'https://ror.org/031nmyb26', 'en', 1, 'https://ror.org/031nmyb26 Reference Institute for Bioanalytics Referenzinstitut für Bioanalytik'),
(61053, 'https://ror.org/00adthh60', 'de', 1, 'https://ror.org/00adthh60 Vestische Caritas-Kliniken'),
(61054, 'https://ror.org/05nvfzh19', 'de', 1, 'https://ror.org/05nvfzh19 Leppermühle'),
(61055, 'https://ror.org/05nhtke22', 'de', 1, 'https://ror.org/05nhtke22 Vinzenzkrankenhaus Hannover'),
(61056, 'https://ror.org/04kn1yz10', 'de', 1, 'https://ror.org/04kn1yz10 Rosenpark Klinik'),
(61057, 'https://ror.org/04janzm11', 'de', 1, 'https://ror.org/04janzm11 Rotkreuzklinikum München'),
(61058, 'https://ror.org/053k58g56', 'de', 1, 'https://ror.org/053k58g56 Rückenzentrum am Michel'),
(61059, 'https://ror.org/05c06xk76', 'de', 1, 'https://ror.org/05c06xk76 Universitätsklinik für Stereotaktische Neurochirurgie'),
(61060, 'https://ror.org/02w0smy45', 'de', 1, 'https://ror.org/02w0smy45 Universitätsklinik für Strahlentherapie'),
(61061, 'https://ror.org/00dpz6e68', 'de', 1, 'https://ror.org/00dpz6e68 Rut- und Klaus-Bahlsen-Stiftung'),
(61062, 'https://ror.org/03nayh382', 'no_lang_code', 1, 'https://ror.org/03nayh382 VITA (Germany)'),
(61063, 'https://ror.org/037rc8f81', 'no_lang_code', 1, 'https://ror.org/037rc8f81 S-Biomedic (Germany)'),
(61064, 'https://ror.org/00cgpr989', 'en', 1, 'https://ror.org/00cgpr989 Lucamed'),
(61065, 'https://ror.org/05jpsw268', 'de', 1, 'https://ror.org/05jpsw268 Sächsische Krebsgesellschaft'),
(61066, 'https://ror.org/05sxgd993', 'de', 1, 'https://ror.org/05sxgd993 Stiftung Leben mit Krebs'),
(61067, 'https://ror.org/02zvbmm61', 'en', 1, 'https://ror.org/02zvbmm61 Vitos Orthopedic Clinic Kassel Vitos Orthopädische Klinik Kassel'),
(61068, 'https://ror.org/00mx9kh08', 'de', 1, 'https://ror.org/00mx9kh08 MEDIAN Klaus-Miehlke-Klinik Wiesbaden'),
(61069, 'https://ror.org/05medrv10', 'de', 1, 'https://ror.org/05medrv10 Klinik und Poliklinik für Psychotherapie und Psychosomatik'),
(61070, 'https://ror.org/0309b0n18', 'no_lang_code', 1, 'https://ror.org/0309b0n18 VOCO (Germany)'),
(61071, 'https://ror.org/03hw0pv02', 'de', 1, 'https://ror.org/03hw0pv02 Vogtland-Klinik'),
(61072, 'https://ror.org/02t7cwz48', 'de', 1, 'https://ror.org/02t7cwz48 Stiftung Tumorforschung Kopf-Hals'),
(61073, 'https://ror.org/032b8z185', 'no_lang_code', 1, 'https://ror.org/032b8z185 Vygon (Germany)'),
(61074, 'https://ror.org/02dqsp291', 'de', 1, 'https://ror.org/02dqsp291 Universitäts-Frauenklinik des Saarlandes'),
(61075, 'https://ror.org/05b6jwz86', 'no_lang_code', 1, 'https://ror.org/05b6jwz86 World of Medicine (Germany)'),
(61076, 'https://ror.org/04rr26086', 'de', 1, 'https://ror.org/04rr26086 Universitätskinderklinik'),
(61077, 'https://ror.org/00ktr8190', 'no_lang_code', 1, 'https://ror.org/00ktr8190 Fujifilm (Germany)'),
(61078, 'https://ror.org/041n30849', 'de', 1, 'https://ror.org/041n30849 Union zur Förderung von Oel- und Proteinpflanzen e.V.'),
(61079, 'https://ror.org/03h9eev95', 'de', 1, 'https://ror.org/03h9eev95 Theo und Friedl Schöller-Stiftung'),
(61080, 'https://ror.org/03gsjff75', 'de', 1, 'https://ror.org/03gsjff75 Waldburg-Zeil Kliniken'),
(61081, 'https://ror.org/04nqf3887', 'de', 1, 'https://ror.org/04nqf3887 Schön Klinik Nürnberg Fürth'),
(61082, 'https://ror.org/00v2d0427', 'de', 1, 'https://ror.org/00v2d0427 Waldkrankenhaus Rudolf Elle'),
(61083, 'https://ror.org/049fxhe24', 'de', 1, 'https://ror.org/049fxhe24 Klinik Bad Bergzabern'),
(61084, 'https://ror.org/001x5fb42', 'de', 1, 'https://ror.org/001x5fb42 Therapiezentrum Harburg'),
(61085, 'https://ror.org/002rstz54', 'no_lang_code', 1, 'https://ror.org/002rstz54 TherapySelect (Germany)'),
(61086, 'https://ror.org/02ts9m233', 'en', 1, 'https://ror.org/02ts9m233 Sudan Medical Specialization Board'),
(61087, 'https://ror.org/056ha9e61', 'de', 1, 'https://ror.org/056ha9e61 Urologische Klinik München'),
(61088, 'https://ror.org/002jry571', 'no_lang_code', 1, 'https://ror.org/002jry571 Ypsomed (Switzerland)'),
(61089, 'https://ror.org/01m5aac17', 'no_lang_code', 1, 'https://ror.org/01m5aac17 Ypsomed (Germany)'),
(61090, 'https://ror.org/00w93yd70', 'no_lang_code', 1, 'https://ror.org/00w93yd70 Süddeutsche Zuckerrübenverwertungs-Genossenschaft (Germany)'),
(61091, 'https://ror.org/04ppvf629', 'no_lang_code', 1, 'https://ror.org/04ppvf629 Weleda (Switzerland)'),
(61092, 'https://ror.org/02kfmqh26', 'de', 1, 'https://ror.org/02kfmqh26 Zahnärzte an der Kleinmachnower Schleuse Stahnsdorf'),
(61093, 'https://ror.org/04rwyp244', 'de', 1, 'https://ror.org/04rwyp244 St. Maria-Hilf-Krankenhaus'),
(61094, 'https://ror.org/03hcgt996', 'no_lang_code', 1, 'https://ror.org/03hcgt996 Top Caredent (Switzerland)'),
(61095, 'https://ror.org/04enecq37', 'de', 1, 'https://ror.org/04enecq37 Dental Clinic of Bochum Zahnklinik Bochum'),
(61096, 'https://ror.org/01599jv46', 'no_lang_code', 1, 'https://ror.org/01599jv46 Zambon (Germany)'),
(61097, 'https://ror.org/05tkcx517', 'no_lang_code', 1, 'https://ror.org/05tkcx517 Töpfer (Germany)'),
(61098, 'https://ror.org/028fgzq86', 'de', 1, 'https://ror.org/028fgzq86 Aktion Pink'),
(61099, 'https://ror.org/00qbqb540', 'de', 1, 'https://ror.org/00qbqb540 Verbundkrankenhaus Bernkastel'),
(61100, 'https://ror.org/008xssk57', 'no_lang_code', 1, 'https://ror.org/008xssk57 gesetzlichen Krankenversicherungen gkv informatik (Germany)'),
(61101, 'https://ror.org/00mtc2v89', 'no_lang_code', 1, 'https://ror.org/00mtc2v89 WH Pharmawerk (Germany)'),
(61102, 'https://ror.org/046dsav87', 'no_lang_code', 1, 'https://ror.org/046dsav87 Swisstom (Switzerland)'),
(61103, 'https://ror.org/019ca7044', 'en', 1, 'https://ror.org/019ca7044 Starnberg Hospital'),
(61104, 'https://ror.org/035f67744', 'en', 1, 'https://ror.org/035f67744 Labor Pachmann'),
(61105, 'https://ror.org/025z7kb61', 'de', 1, 'https://ror.org/025z7kb61 Willi Drache Stiftung'),
(61106, 'https://ror.org/02et29s96', 'no_lang_code', 1, 'https://ror.org/02et29s96 Remedent (Belgium)'),
(61107, 'https://ror.org/05kfwsr87', 'de', 1, 'https://ror.org/05kfwsr87 Wirbelsäulen-Institut München'),
(61108, 'https://ror.org/03twz1019', 'de', 1, 'https://ror.org/03twz1019 Wissenschaftliche Gesellschaft Freiburg'),
(61109, 'https://ror.org/03cba0s60', 'de', 1, 'https://ror.org/03cba0s60 Klinik für Neuropädiatrie und Muskelerkrankungen'),
(61110, 'https://ror.org/000466g76', 'no_lang_code', 1, 'https://ror.org/000466g76 Techniker Krankenkasse (Germany)'),
(61111, 'https://ror.org/022n0hr86', 'no_lang_code', 1, 'https://ror.org/022n0hr86 Synimmune (Germany)'),
(61112, 'https://ror.org/03z1g1222', 'no_lang_code', 1, 'https://ror.org/03z1g1222 TransTissue (Germany)'),
(61113, 'https://ror.org/03b69tw84', 'de', 1, 'https://ror.org/03b69tw84 HNO Bad Bramstedt'),
(61114, 'https://ror.org/05cbe5r14', 'de', 1, 'https://ror.org/05cbe5r14 Zentrum für Psychiatrie Emmendingen'),
(61115, 'https://ror.org/005hh6506', 'no_lang_code', 1, 'https://ror.org/005hh6506 Syntellix (Germany)'),
(61116, 'https://ror.org/05q7twd40', 'de', 1, 'https://ror.org/05q7twd40 Zentrum für Psychiatrie Südwürttemberg'),
(61117, 'https://ror.org/01ztfkn28', 'no_lang_code', 1, 'https://ror.org/01ztfkn28 Trautwein (Germany)'),
(61118, 'https://ror.org/0440mmj74', 'en', 1, 'https://ror.org/0440mmj74 World Childhood Foundation'),
(61119, 'https://ror.org/00p41ea31', 'de', 1, 'https://ror.org/00p41ea31 Verband der Privaten Krankenversicherung'),
(61120, 'https://ror.org/007416t51', 'no_lang_code', 1, 'https://ror.org/007416t51 Sysmex (Germany)'),
(61121, 'https://ror.org/00tnb5p85', 'de', 1, 'https://ror.org/00tnb5p85 Zentrum für Therapeutisches Reiten Johannisberg e.V.'),
(61122, 'https://ror.org/0188ecd37', 'en', 1, 'https://ror.org/0188ecd37 Slovenian Society of Anaesthesiology and Intensive Care Medicine Slovensko združenje za anesteziologijo in intenzivno medicino'),
(61123, 'https://ror.org/050g10a24', 'no_lang_code', 1, 'https://ror.org/050g10a24 Zimmer Biomet (Switzerland)'),
(61124, 'https://ror.org/00dr70705', 'de', 1, 'https://ror.org/00dr70705 Frauenklinik an der Elbe'),
(61125, 'https://ror.org/040cmp171', 'no_lang_code', 1, 'https://ror.org/040cmp171 Asahi Kasei (Germany)'),
(61126, 'https://ror.org/00s64g989', 'de', 1, 'https://ror.org/00s64g989 Zentrum für Zahn-, Mund- und Kieferheilkunde Poliklinik für Zahnerhaltung und Parodontologie'),
(61127, 'https://ror.org/032kej893', 'de', 1, 'https://ror.org/032kej893 Poliklinik für Zahnärztliche Prothetik'),
(61128, 'https://ror.org/01612ta13', 'en', 1, 'https://ror.org/01612ta13 Aboriginal Health and Medical Research Council of New South Wales'),
(61129, 'https://ror.org/05qtv1p74', 'de', 1, 'https://ror.org/05qtv1p74 Zentrum für Pathologie und Zytodiagnostik'),
(61130, 'https://ror.org/04ps8kg42', 'en', 1, 'https://ror.org/04ps8kg42 Central and North West Queensland Medicare Local'),
(61131, 'https://ror.org/039d9wk42', 'en', 1, 'https://ror.org/039d9wk42 Adventist HealthCare'),
(61132, 'https://ror.org/04mp3v976', 'no_lang_code', 1, 'https://ror.org/04mp3v976 Zur Rose Pharma (Germany)'),
(61133, 'https://ror.org/05knza467', 'en', 1, 'https://ror.org/05knza467 Central Australian Remote Health Development Services'),
(61134, 'https://ror.org/02c4vbg64', 'en', 1, 'https://ror.org/02c4vbg64 Maari Ma Health'),
(61135, 'https://ror.org/05p2gad32', 'en', 1, 'https://ror.org/05p2gad32 Malabam Health Board Aboriginal Corporation'),
(61136, 'https://ror.org/02t9tba68', 'en', 1, 'https://ror.org/02t9tba68 Rare Cancers Australia'),
(61137, 'https://ror.org/03w9gyy65', 'en', 1, 'https://ror.org/03w9gyy65 GI Cancer Institute'),
(61138, 'https://ror.org/01e5pnp05', 'en', 1, 'https://ror.org/01e5pnp05 Bloomhill Cancer Care'),
(61139, 'https://ror.org/004gchq58', 'en', 1, 'https://ror.org/004gchq58 Cooperative Trials Group for Neuro-Oncology'),
(61140, 'https://ror.org/05y9nr091', 'en', 1, 'https://ror.org/05y9nr091 Arts OutWest'),
(61141, 'https://ror.org/04vxexg79', 'en', 1, 'https://ror.org/04vxexg79 MiiMi Aboriginal Corporation'),
(61142, 'https://ror.org/015jr2d68', 'en', 1, 'https://ror.org/015jr2d68 Dandenong Ranges Music Council'),
(61143, 'https://ror.org/00m6z3x97', 'en', 1, 'https://ror.org/00m6z3x97 Boronia Multicultural Services'),
(61144, 'https://ror.org/01dmsg505', 'en', 1, 'https://ror.org/01dmsg505 South Coast Medical Service Aboriginal Corporation'),
(61145, 'https://ror.org/02z84jh79', 'en', 1, 'https://ror.org/02z84jh79 Brain Tumour Alliance Australia'),
(61146, 'https://ror.org/00x1yxe92', 'en', 1, 'https://ror.org/00x1yxe92 Far West Local Health District'),
(61147, 'https://ror.org/0198gqt55', 'en', 1, 'https://ror.org/0198gqt55 Australia and New Zealand Melanoma Trials Group'),
(61148, 'https://ror.org/05rnrcn92', 'en', 1, 'https://ror.org/05rnrcn92 Counterpart'),
(61149, 'https://ror.org/0552kvw18', 'en', 1, 'https://ror.org/0552kvw18 Australia New Zealand Gynaecological Oncology Group'),
(61150, 'https://ror.org/03dfj7v30', 'en', 1, 'https://ror.org/03dfj7v30 ANZCHOG'),
(61151, 'https://ror.org/03vq6fv28', 'en', 1, 'https://ror.org/03vq6fv28 Breast Cancer Network Australia'),
(61152, 'https://ror.org/0239ann44', 'en', 1, 'https://ror.org/0239ann44 Goulburn Valley Health'),
(61153, 'https://ror.org/0468zsk48', 'en', 1, 'https://ror.org/0468zsk48 Bulgarr Ngaru Medical Aboriginal Corporation'),
(61154, 'https://ror.org/04vjrjb03', 'en', 1, 'https://ror.org/04vjrjb03 Illawarra Women''s Health Centre'),
(61155, 'https://ror.org/02hpc5z27', 'en', 1, 'https://ror.org/02hpc5z27 Maralinga Tjarutja'),
(61156, 'https://ror.org/00pc21z31', 'en', 1, 'https://ror.org/00pc21z31 Tharawal Aboriginal'),
(61157, 'https://ror.org/00zxvps74', 'en', 1, 'https://ror.org/00zxvps74 Indigenous Wellbeing Centre'),
(61158, 'https://ror.org/05mty4w15', 'en', 1, 'https://ror.org/05mty4w15 Paediatric Integrated Cancer Service'),
(61159, 'https://ror.org/01aw97q13', 'en', 1, 'https://ror.org/01aw97q13 Ishar Multicultural Women''s Health Centre'),
(61160, 'https://ror.org/01f8wmr43', 'en', 1, 'https://ror.org/01f8wmr43 Jacaranda Community Centre'),
(61161, 'https://ror.org/042xrv022', 'da', 1, 'https://ror.org/042xrv022 Dansk Centralbibliotek for Sydslesvig'),
(61162, 'https://ror.org/04jbfxj71', 'no_lang_code', 1, 'https://ror.org/04jbfxj71 Kalwun (Australia)'),
(61163, 'https://ror.org/020yhzm14', 'en', 1, 'https://ror.org/020yhzm14 Kildonan UnitingCare'),
(61164, 'https://ror.org/058avwz62', 'en', 1, 'https://ror.org/058avwz62 CanRevive'),
(61165, 'https://ror.org/03wtz8b43', 'en', 1, 'https://ror.org/03wtz8b43 Kimberley Aboriginal Medical Services'),
(61166, 'https://ror.org/00mn1ve16', 'en', 1, 'https://ror.org/00mn1ve16 Kurranulla Aboriginal Corporation'),
(61167, 'https://ror.org/00at7nn49', 'en', 1, 'https://ror.org/00at7nn49 Liverpool Women''s Health Centre'),
(61168, 'https://ror.org/02mpkkr38', 'en', 1, 'https://ror.org/02mpkkr38 Aboriginal Health Council of South Australia'),
(61169, 'https://ror.org/014cpc426', 'en', 1, 'https://ror.org/014cpc426 Walgett Aboriginal Medical Service'),
(61170, 'https://ror.org/02agbat11', 'en', 1, 'https://ror.org/02agbat11 Wellington Aboriginal Corporation Health Service'),
(61171, 'https://ror.org/04h3xw934', 'en', 1, 'https://ror.org/04h3xw934 Western Sydney Community Forum'),
(61172, 'https://ror.org/019y11h89', 'en', 1, 'https://ror.org/019y11h89 Western NSW Local Health District'),
(61173, 'https://ror.org/03k4avy53', 'no_lang_code', 1, 'https://ror.org/03k4avy53 Winanga-Li'),
(61174, 'https://ror.org/03gy9dj46', 'en', 1, 'https://ror.org/03gy9dj46 Bear Valley'),
(61175, 'https://ror.org/03z7gnm21', 'en', 1, 'https://ror.org/03z7gnm21 Center for the Improvement of Child Caring'),
(61176, 'https://ror.org/02aers703', 'en', 1, 'https://ror.org/02aers703 Gemstone Foundation'),
(61177, 'https://ror.org/03sevk723', 'en', 1, 'https://ror.org/03sevk723 Divya Shanthi Christian Association and Trust'),
(61178, 'https://ror.org/01jngdt03', 'en', 1, 'https://ror.org/01jngdt03 Genetic Information Research Institute'),
(61179, 'https://ror.org/04w908n49', 'en', 1, 'https://ror.org/04w908n49 Center for the Study of State and Society Centro para el Estudio del Estado y la Sociedad'),
(61180, 'https://ror.org/004w3b772', 'en', 1, 'https://ror.org/004w3b772 Alice Hamilton Occupational Health Center'),
(61181, 'https://ror.org/01p78m944', 'en', 1, 'https://ror.org/01p78m944 Dominican Women''s Development Center'),
(61182, 'https://ror.org/0562b6777', 'en', 1, 'https://ror.org/0562b6777 Center for World Indigenous Studies'),
(61183, 'https://ror.org/05cb6kb05', 'en', 1, 'https://ror.org/05cb6kb05 Penn Highlands DuBois'),
(61184, 'https://ror.org/0471rft76', 'en', 1, 'https://ror.org/0471rft76 Global Alzheimer''s Platform Foundation'),
(61185, 'https://ror.org/052hwbh23', 'no_lang_code', 1, 'https://ror.org/052hwbh23 Centerline Digital (United States)'),
(61186, 'https://ror.org/04sn1zv12', 'en', 1, 'https://ror.org/04sn1zv12 Global Biological Standards Institute'),
(61187, 'https://ror.org/03y902w77', 'en', 1, 'https://ror.org/03y902w77 MidMichigan Medical Center - Alpena'),
(61188, 'https://ror.org/035ws6k56', 'en', 1, 'https://ror.org/035ws6k56 Bioelectromagnetics Society'),
(61189, 'https://ror.org/03849s113', 'en', 1, 'https://ror.org/03849s113 Central Brain Tumor Registry of the United States'),
(61190, 'https://ror.org/01xcb3b67', 'en', 1, 'https://ror.org/01xcb3b67 American Academy of Health Behavior'),
(61191, 'https://ror.org/00tc0zx28', 'en', 1, 'https://ror.org/00tc0zx28 Aspirus Ironwood Hospital'),
(61192, 'https://ror.org/018w9pb03', 'en', 1, 'https://ror.org/018w9pb03 Central Park West Health Center'),
(61193, 'https://ror.org/00bcgyq51', 'en', 1, 'https://ror.org/00bcgyq51 Great Lakes Environmental Center'),
(61194, 'https://ror.org/04e6xj170', 'en', 1, 'https://ror.org/04e6xj170 Centre For Digestive Diseases'),
(61195, 'https://ror.org/03waq1x26', 'en', 1, 'https://ror.org/03waq1x26 Lakewood Health System'),
(61196, 'https://ror.org/051y66958', 'en', 1, 'https://ror.org/051y66958 Grinnell Regional Medical Center'),
(61197, 'https://ror.org/04he90472', 'en', 1, 'https://ror.org/04he90472 American Association for Cancer Education'),
(61198, 'https://ror.org/03djmp837', 'en', 1, 'https://ror.org/03djmp837 Gritman Medical Center'),
(61199, 'https://ror.org/036501p19', 'en', 1, 'https://ror.org/036501p19 Gulf Marine Institute of Technology'),
(61200, 'https://ror.org/00byypm17', 'en', 1, 'https://ror.org/00byypm17 American Health Research Institute'),
(61201, 'https://ror.org/03f9y3f86', 'en', 1, 'https://ror.org/03f9y3f86 Chesterfield Family Practice Center'),
(61202, 'https://ror.org/03h4vsb09', 'en', 1, 'https://ror.org/03h4vsb09 St. Francis Foundation'),
(61203, 'https://ror.org/01n46fg04', 'en', 1, 'https://ror.org/01n46fg04 Everglades Area Health Education Center'),
(61204, 'https://ror.org/03xvt9b17', 'en', 1, 'https://ror.org/03xvt9b17 Hayward Area Memorial Hospital'),
(61205, 'https://ror.org/009tgn030', 'en', 1, 'https://ror.org/009tgn030 American Pancreatic Association'),
(61206, 'https://ror.org/05jb7jk98', 'en', 1, 'https://ror.org/05jb7jk98 Southeast Health District'),
(61207, 'https://ror.org/00awtmg03', 'en', 1, 'https://ror.org/00awtmg03 Northern New Mexico Health Center'),
(61208, 'https://ror.org/00a4sne40', 'en', 1, 'https://ror.org/00a4sne40 The Evolution Institute'),
(61209, 'https://ror.org/02dn5zf89', 'en', 1, 'https://ror.org/02dn5zf89 American Psychopathological Association'),
(61210, 'https://ror.org/02jk45x82', 'en', 1, 'https://ror.org/02jk45x82 Health Strategy and Policy Institute Viện Chiến lược và Chính sách Y tế'),
(61211, 'https://ror.org/04cakc678', 'en', 1, 'https://ror.org/04cakc678 Healthcare Association of New York State'),
(61212, 'https://ror.org/014b0sj15', 'en', 1, 'https://ror.org/014b0sj15 Kansas City Indian Center'),
(61213, 'https://ror.org/03pab6q64', 'en', 1, 'https://ror.org/03pab6q64 Children''s Diagnostic & Treatment Center'),
(61214, 'https://ror.org/02wg7hx42', 'en', 1, 'https://ror.org/02wg7hx42 American Society for Apheresis'),
(61215, 'https://ror.org/02sqx2x96', 'en', 1, 'https://ror.org/02sqx2x96 Heart Valve Society of America'),
(61216, 'https://ror.org/05q3rkb48', 'en', 1, 'https://ror.org/05q3rkb48 Mile Bluff Medical Center'),
(61217, 'https://ror.org/03yv08q03', 'en', 1, 'https://ror.org/03yv08q03 Family Guidance Centers'),
(61218, 'https://ror.org/04stq9b42', 'en', 1, 'https://ror.org/04stq9b42 Family Healthcare'),
(61219, 'https://ror.org/02vrnsq93', 'en', 1, 'https://ror.org/02vrnsq93 Hilo Medical Center'),
(61220, 'https://ror.org/0299yrd21', 'en', 1, 'https://ror.org/0299yrd21 Ferre Institute'),
(61221, 'https://ror.org/03h0d2228', 'en', 1, 'https://ror.org/03h0d2228 California Northstate University'),
(61222, 'https://ror.org/04en82c62', 'en', 1, 'https://ror.org/04en82c62 American Tai Chi and Qigong Association'),
(61223, 'https://ror.org/04mnk3a22', 'en', 1, 'https://ror.org/04mnk3a22 Lutheran SeniorLife'),
(61224, 'https://ror.org/04nfn2y71', 'en', 1, 'https://ror.org/04nfn2y71 Ferry County Memorial Hospital'),
(61225, 'https://ror.org/03sc3x439', 'en', 1, 'https://ror.org/03sc3x439 Flagstaff Medical Center'),
(61226, 'https://ror.org/05teweq93', 'en', 1, 'https://ror.org/05teweq93 Androgen Excess and PCOS Society'),
(61227, 'https://ror.org/02cw3t849', 'en', 1, 'https://ror.org/02cw3t849 Suncoast Hospice Institute'),
(61228, 'https://ror.org/00536jb56', 'en', 1, 'https://ror.org/00536jb56 Hospital Consortium of San Mateo County'),
(61229, 'https://ror.org/02bec1n20', 'en', 1, 'https://ror.org/02bec1n20 Milwaukee Emergency Center for Animals'),
(61230, 'https://ror.org/00pejz095', 'en', 1, 'https://ror.org/00pejz095 Foundation for Worker, Veteran and Environmental Health'),
(61231, 'https://ror.org/033jqx441', 'de', 1, 'https://ror.org/033jqx441 Hospital zum Heiligen Geist'),
(61232, 'https://ror.org/025nas141', 'es', 1, 'https://ror.org/025nas141 CONAPAC Civil Association for Conservation of the Peruvian Amazon Environment'),
(61233, 'https://ror.org/03m723j50', 'en', 1, 'https://ror.org/03m723j50 Anson County Health Department'),
(61234, 'https://ror.org/017pp1416', 'en', 1, 'https://ror.org/017pp1416 St. Gallen Oncology Conferences'),
(61235, 'https://ror.org/009ewjt73', 'en', 1, 'https://ror.org/009ewjt73 Four Winds Hospital'),
(61236, 'https://ror.org/04crv0223', 'en', 1, 'https://ror.org/04crv0223 Clear Lake Medical Foundation'),
(61237, 'https://ror.org/015q26m05', 'en', 1, 'https://ror.org/015q26m05 Clearwater Valley Hospital and Clinics'),
(61238, 'https://ror.org/05dcdha72', 'en', 1, 'https://ror.org/05dcdha72 Canton-Potsdam Hospital'),
(61239, 'https://ror.org/04tyx7m15', 'en', 1, 'https://ror.org/04tyx7m15 Carolinas Hospital System');
INSERT INTO `rors` VALUES
(61240, 'https://ror.org/02cp0yq73', 'no_lang_code', 1, 'https://ror.org/02cp0yq73 Cleveland Research (United States)'),
(61241, 'https://ror.org/05415x202', 'en', 1, 'https://ror.org/05415x202 Caron'),
(61242, 'https://ror.org/013213t18', 'en', 1, 'https://ror.org/013213t18 Catholic Leadership Institute'),
(61243, 'https://ror.org/03szj8a51', 'en', 1, 'https://ror.org/03szj8a51 Hussman Institute for Autism'),
(61244, 'https://ror.org/05vstp197', 'en', 1, 'https://ror.org/05vstp197 Association of American Cancer Institutes'),
(61245, 'https://ror.org/022vwef69', 'en', 1, 'https://ror.org/022vwef69 G.A. Carmichael Family Health Center'),
(61246, 'https://ror.org/023kfdf75', 'en', 1, 'https://ror.org/023kfdf75 Association for Chemoreception Sciences'),
(61247, 'https://ror.org/055bwx684', 'en', 1, 'https://ror.org/055bwx684 Association for Utah Community Health'),
(61248, 'https://ror.org/01smr1h94', 'en', 1, 'https://ror.org/01smr1h94 Telligen'),
(61249, 'https://ror.org/02qxd8910', 'en', 1, 'https://ror.org/02qxd8910 Columbus Center'),
(61250, 'https://ror.org/01fg1c160', 'en', 1, 'https://ror.org/01fg1c160 Association of Black Cardiologists'),
(61251, 'https://ror.org/020rmwt56', 'en', 1, 'https://ror.org/020rmwt56 Institute for Global Ethics'),
(61252, 'https://ror.org/01gcrbc43', 'en', 1, 'https://ror.org/01gcrbc43 Center for Human Genetics'),
(61253, 'https://ror.org/029ctf279', 'en', 1, 'https://ror.org/029ctf279 Association of Black Health-System Pharmacists'),
(61254, 'https://ror.org/02ygjtg18', 'en', 1, 'https://ror.org/02ygjtg18 Association of Oncology Social Work'),
(61255, 'https://ror.org/01khddn76', 'en', 1, 'https://ror.org/01khddn76 Conquer Chiari'),
(61256, 'https://ror.org/02c81d080', 'en', 1, 'https://ror.org/02c81d080 Institute for Rare and Neglected Diseases Drug Discovery'),
(61257, 'https://ror.org/018fz1017', 'en', 1, 'https://ror.org/018fz1017 Institute for Research and Evaluation'),
(61258, 'https://ror.org/01d1z3k86', 'en', 1, 'https://ror.org/01d1z3k86 Iron Disorders Institute'),
(61259, 'https://ror.org/00h92wx89', 'en', 1, 'https://ror.org/00h92wx89 Cooley Dickinson Health Care'),
(61260, 'https://ror.org/00fzvsb30', 'en', 1, 'https://ror.org/00fzvsb30 The Coordinating Center'),
(61261, 'https://ror.org/02sz82d98', 'en', 1, 'https://ror.org/02sz82d98 Center for Neurologic Study'),
(61262, 'https://ror.org/02e6fp975', 'en', 1, 'https://ror.org/02e6fp975 Copper Queen Community Hospital'),
(61263, 'https://ror.org/053w4zz03', 'en', 1, 'https://ror.org/053w4zz03 Association for Academic Minority Physicians'),
(61264, 'https://ror.org/01bhvb147', 'en', 1, 'https://ror.org/01bhvb147 Critical Illness & Trauma Foundation'),
(61265, 'https://ror.org/02gee2j04', 'en', 1, 'https://ror.org/02gee2j04 Center for Public Service Communications'),
(61266, 'https://ror.org/04gsrxt60', 'en', 1, 'https://ror.org/04gsrxt60 J.C. Blair Memorial Hospital'),
(61267, 'https://ror.org/01kqrgb09', 'en', 1, 'https://ror.org/01kqrgb09 Banner Thunderbird Medical Center'),
(61268, 'https://ror.org/04mjm3795', 'en', 1, 'https://ror.org/04mjm3795 Jackson Medical Mall Thad Cochran Center'),
(61269, 'https://ror.org/03n4cgv79', 'en', 1, 'https://ror.org/03n4cgv79 Memphis Center For Reproductive Health'),
(61270, 'https://ror.org/0540mv626', 'en', 1, 'https://ror.org/0540mv626 AHEC West'),
(61271, 'https://ror.org/00w4apt74', 'en', 1, 'https://ror.org/00w4apt74 Jefferson Healthcare'),
(61272, 'https://ror.org/004nvjv21', 'en', 1, 'https://ror.org/004nvjv21 Center for Research Strategies'),
(61273, 'https://ror.org/00w22yy94', 'en', 1, 'https://ror.org/00w22yy94 Bartlett Regional Hospital'),
(61274, 'https://ror.org/02ntzaq32', 'en', 1, 'https://ror.org/02ntzaq32 International Society for Applied Cardiovascular Biology'),
(61275, 'https://ror.org/00gzx6s15', 'en', 1, 'https://ror.org/00gzx6s15 Johns Hopkins Berman Institute of Bioethics'),
(61276, 'https://ror.org/04rk3mm93', 'en', 1, 'https://ror.org/04rk3mm93 International Cannabinoid Research Society'),
(61277, 'https://ror.org/05yf87y86', 'en', 1, 'https://ror.org/05yf87y86 Juvenile Protective Association'),
(61278, 'https://ror.org/04devjv87', 'en', 1, 'https://ror.org/04devjv87 International Eosinophil Society'),
(61279, 'https://ror.org/012zbs470', 'en', 1, 'https://ror.org/012zbs470 Maryland Medical Research Institute'),
(61280, 'https://ror.org/03vf6ym20', 'en', 1, 'https://ror.org/03vf6ym20 Kawasaki Disease Foundation'),
(61281, 'https://ror.org/04jj1kk85', 'en', 1, 'https://ror.org/04jj1kk85 International Neuroethics Society'),
(61282, 'https://ror.org/04q7gws66', 'en', 1, 'https://ror.org/04q7gws66 Natural Philosophy Institute'),
(61283, 'https://ror.org/03frm6q70', 'en', 1, 'https://ror.org/03frm6q70 Trios Health'),
(61284, 'https://ror.org/00fh64z73', 'en', 1, 'https://ror.org/00fh64z73 The Performance Institute'),
(61285, 'https://ror.org/05b7by496', 'en', 1, 'https://ror.org/05b7by496 International Neuromodulation Society'),
(61286, 'https://ror.org/05tmk0k30', 'en', 1, 'https://ror.org/05tmk0k30 Massachusetts Health & Hospital Association'),
(61287, 'https://ror.org/03j0gg417', 'en', 1, 'https://ror.org/03j0gg417 The Knee Society'),
(61288, 'https://ror.org/02vra9861', 'no_lang_code', 1, 'https://ror.org/02vra9861 International Pemphigus & Pemphigoid Foundation'),
(61289, 'https://ror.org/05rmea943', 'en', 1, 'https://ror.org/05rmea943 International Society for Heart Research'),
(61290, 'https://ror.org/031h5e705', 'en', 1, 'https://ror.org/031h5e705 International Society of Differentiation'),
(61291, 'https://ror.org/00hmegz79', 'en', 1, 'https://ror.org/00hmegz79 International Society for Neuroethology'),
(61292, 'https://ror.org/0487hf333', 'en', 1, 'https://ror.org/0487hf333 Pikeville Medical Center'),
(61293, 'https://ror.org/05dc02738', 'en', 1, 'https://ror.org/05dc02738 International Society for Cellular Therapy'),
(61294, 'https://ror.org/04cvz3k71', 'en', 1, 'https://ror.org/04cvz3k71 Kona Community Hospital'),
(61295, 'https://ror.org/03rwphv90', 'en', 1, 'https://ror.org/03rwphv90 International Society for Quality of Life Research'),
(61296, 'https://ror.org/04rw83w19', 'en', 1, 'https://ror.org/04rw83w19 Avera McKennan Hospital & University Health Center'),
(61297, 'https://ror.org/04w47cg22', 'en', 1, 'https://ror.org/04w47cg22 Neosho Memorial Regional Medical Center'),
(61298, 'https://ror.org/03t3y2m33', 'en', 1, 'https://ror.org/03t3y2m33 International Behavioral Neuroscience Society'),
(61299, 'https://ror.org/03wwk8c55', 'en', 1, 'https://ror.org/03wwk8c55 Nepal Fertility Care Center'),
(61300, 'https://ror.org/03m5a3737', 'en', 1, 'https://ror.org/03m5a3737 Shandong Chest Hospital'),
(61301, 'https://ror.org/008qav573', 'en', 1, 'https://ror.org/008qav573 The Foundation for Peripheral Neuropathy'),
(61302, 'https://ror.org/05gshbf51', 'no_lang_code', 1, 'https://ror.org/05gshbf51 Sign Media (United States)'),
(61303, 'https://ror.org/048vgwq64', 'en', 1, 'https://ror.org/048vgwq64 New Hampshire Nurses'' Association'),
(61304, 'https://ror.org/04vj7nb44', 'en', 1, 'https://ror.org/04vj7nb44 Mercy Fitzgerald Hospital'),
(61305, 'https://ror.org/04pk7nd85', 'en', 1, 'https://ror.org/04pk7nd85 Providence Community Health Centers'),
(61306, 'https://ror.org/02j787g88', 'en', 1, 'https://ror.org/02j787g88 Skin Science Institute'),
(61307, 'https://ror.org/01zt8rh15', 'en', 1, 'https://ror.org/01zt8rh15 Foundation of New York State Nurses'),
(61308, 'https://ror.org/029tztb09', 'en', 1, 'https://ror.org/029tztb09 Society for Acupuncture Research'),
(61309, 'https://ror.org/03x3mrm69', 'es', 1, 'https://ror.org/03x3mrm69 Insitituto Mexicano de Investigación de Familia y Población Yo quiero Yo puedo'),
(61310, 'https://ror.org/00cde8652', 'en', 1, 'https://ror.org/00cde8652 Laureate Psychiatric Clinic and Hospital'),
(61311, 'https://ror.org/02b184226', 'en', 1, 'https://ror.org/02b184226 Niagara Falls Memorial Medical Center'),
(61312, 'https://ror.org/052w5jd94', 'en', 1, 'https://ror.org/052w5jd94 Microcirculatory Society'),
(61313, 'https://ror.org/02pg9t310', 'en', 1, 'https://ror.org/02pg9t310 PrimaryPlus'),
(61314, 'https://ror.org/03w65s121', 'en', 1, 'https://ror.org/03w65s121 Noyes Memorial Hospital'),
(61315, 'https://ror.org/05gff4a37', 'en', 1, 'https://ror.org/05gff4a37 Society for Invertebrate Pathology'),
(61316, 'https://ror.org/0138yyw30', 'en', 1, 'https://ror.org/0138yyw30 Society for Neuroeconomics'),
(61317, 'https://ror.org/01h0pkb03', 'no_lang_code', 1, 'https://ror.org/01h0pkb03 MizMedi Hospital'),
(61318, 'https://ror.org/042y6y279', 'en', 1, 'https://ror.org/042y6y279 The Lloyd Society'),
(61319, 'https://ror.org/02a9re713', 'en', 1, 'https://ror.org/02a9re713 Moebius Syndrome Foundation'),
(61320, 'https://ror.org/053hn4213', 'en', 1, 'https://ror.org/053hn4213 North American Hair Research Society'),
(61321, 'https://ror.org/056pp8v93', 'en', 1, 'https://ror.org/056pp8v93 Monadnock Community Hospital'),
(61322, 'https://ror.org/04816wc22', 'en', 1, 'https://ror.org/04816wc22 Society on Neuroimmune Pharmacology'),
(61323, 'https://ror.org/04ckqjc98', 'en', 1, 'https://ror.org/04ckqjc98 South Bend Medical Foundation'),
(61324, 'https://ror.org/00ngea848', 'en', 1, 'https://ror.org/00ngea848 Mercy Health - Lorain Hospital'),
(61325, 'https://ror.org/021z26c54', 'en', 1, 'https://ror.org/021z26c54 The Morton Center'),
(61326, 'https://ror.org/0468q7p56', 'en', 1, 'https://ror.org/0468q7p56 North Little Rock Health Department'),
(61327, 'https://ror.org/00cj1jz35', 'en', 1, 'https://ror.org/00cj1jz35 Catholic Charities Archdiocese of Washington'),
(61328, 'https://ror.org/041zgk078', 'en', 1, 'https://ror.org/041zgk078 Northeastern Mental Health Center'),
(61329, 'https://ror.org/03rcjma25', 'en', 1, 'https://ror.org/03rcjma25 Spanish Peaks Regional Health Center'),
(61330, 'https://ror.org/00dw21h32', 'en', 1, 'https://ror.org/00dw21h32 Flint Hills Community Health Center'),
(61331, 'https://ror.org/05540q762', 'en', 1, 'https://ror.org/05540q762 Northern Westchester Hospital'),
(61332, 'https://ror.org/001pef276', 'no_lang_code', 1, 'https://ror.org/001pef276 Safecor (United States)'),
(61333, 'https://ror.org/03qan5r71', 'no_lang_code', 1, 'https://ror.org/03qan5r71 Macrogen (South Korea) 마크로젠'),
(61334, 'https://ror.org/03swt5851', 'en', 1, 'https://ror.org/03swt5851 St. James Mercy Hospital'),
(61335, 'https://ror.org/042gsyn68', 'en', 1, 'https://ror.org/042gsyn68 Odessa Memorial Healthcare Center'),
(61336, 'https://ror.org/03z2eez35', 'en', 1, 'https://ror.org/03z2eez35 Madison County Health Department'),
(61337, 'https://ror.org/002e72m14', 'en', 1, 'https://ror.org/002e72m14 St. Joseph Hospital'),
(61338, 'https://ror.org/03zx2vv67', 'en', 1, 'https://ror.org/03zx2vv67 Oklahoma Blood Institute'),
(61339, 'https://ror.org/01nz0vz73', 'en', 1, 'https://ror.org/01nz0vz73 FamilieSCN2A Foundation'),
(61340, 'https://ror.org/02fm2jq60', 'en', 1, 'https://ror.org/02fm2jq60 Maine Hospital Association'),
(61341, 'https://ror.org/03yazg833', 'en', 1, 'https://ror.org/03yazg833 St. Peter’s Child Development Center'),
(61342, 'https://ror.org/01a1t3a07', 'en', 1, 'https://ror.org/01a1t3a07 Oregon Law Center'),
(61343, 'https://ror.org/05jxxs868', 'en', 1, 'https://ror.org/05jxxs868 Tropical Disease Foundation'),
(61344, 'https://ror.org/05qv09308', 'en', 1, 'https://ror.org/05qv09308 St. Petersburg School of Religion and Philosophy Центр научно-просветительских и религиозно-философских программ'),
(61345, 'https://ror.org/00rca3h04', 'en', 1, 'https://ror.org/00rca3h04 Our Lady of the Lake Children''s Hospital'),
(61346, 'https://ror.org/02ez32078', 'en', 1, 'https://ror.org/02ez32078 Stereology Resource Center'),
(61347, 'https://ror.org/02sp87b11', 'en', 1, 'https://ror.org/02sp87b11 Pacific Tuberculosis and Cancer Research'),
(61348, 'https://ror.org/00nkysz86', 'en', 1, 'https://ror.org/00nkysz86 European School of Oncology'),
(61349, 'https://ror.org/04dst9624', 'en', 1, 'https://ror.org/04dst9624 The PANSS Institute'),
(61350, 'https://ror.org/024gbbh50', 'en', 1, 'https://ror.org/024gbbh50 Syosset Hospital'),
(61351, 'https://ror.org/00n5sdz31', 'en', 1, 'https://ror.org/00n5sdz31 Taylor Regional Hospital'),
(61352, 'https://ror.org/04typ7821', 'en', 1, 'https://ror.org/04typ7821 Tri Center'),
(61353, 'https://ror.org/003tvwa79', 'en', 1, 'https://ror.org/003tvwa79 Tri-State Community Health Center'),
(61354, 'https://ror.org/05g8axa09', 'en', 1, 'https://ror.org/05g8axa09 Tri-County Community Mental Health Center'),
(61355, 'https://ror.org/017emx724', 'en', 1, 'https://ror.org/017emx724 San Francisco Medical Society'),
(61356, 'https://ror.org/04vpsne51', 'en', 1, 'https://ror.org/04vpsne51 Facial Pain Association'),
(61357, 'https://ror.org/022hz3j90', 'de', 1, 'https://ror.org/022hz3j90 Krankenhaus Waldfriede'),
(61358, 'https://ror.org/00am1hd38', 'en', 1, 'https://ror.org/00am1hd38 United Leukodystrophy Foundation'),
(61359, 'https://ror.org/00343zp30', 'en', 1, 'https://ror.org/00343zp30 Action Potential'),
(61360, 'https://ror.org/02tgkny75', 'en', 1, 'https://ror.org/02tgkny75 Weisenthal Cancer Group'),
(61361, 'https://ror.org/015sdn055', 'no_lang_code', 1, 'https://ror.org/015sdn055 Universal Cells (United States)'),
(61362, 'https://ror.org/05ggj5w37', 'en', 1, 'https://ror.org/05ggj5w37 Utah AIDS Foundation'),
(61363, 'https://ror.org/0088a9521', 'no_lang_code', 1, 'https://ror.org/0088a9521 Universe Technical Translation (United States)'),
(61364, 'https://ror.org/02c9etv94', 'en', 1, 'https://ror.org/02c9etv94 West End Revitalization Association'),
(61365, 'https://ror.org/05ctk4y92', 'en', 1, 'https://ror.org/05ctk4y92 William W Backus Hospital'),
(61366, 'https://ror.org/01z1n5c47', 'en', 1, 'https://ror.org/01z1n5c47 Raymond G. Murphy VA Medical Center'),
(61367, 'https://ror.org/03z1jm984', 'en', 1, 'https://ror.org/03z1jm984 Western Governors Association'),
(61368, 'https://ror.org/01zynd687', 'en', 1, 'https://ror.org/01zynd687 Wind Hollow Foundation'),
(61369, 'https://ror.org/0127psw24', 'en', 1, 'https://ror.org/0127psw24 Visiting Nurse Association'),
(61370, 'https://ror.org/02snnvx48', 'en', 1, 'https://ror.org/02snnvx48 Wound Healing Society'),
(61371, 'https://ror.org/0295gwn16', 'en', 1, 'https://ror.org/0295gwn16 National Association of Hispanic Nurses'),
(61372, 'https://ror.org/05ya9gp75', 'no_lang_code', 1, 'https://ror.org/05ya9gp75 Winston Pharmaceuticals (United States)'),
(61373, 'https://ror.org/015fhgq54', 'en', 1, 'https://ror.org/015fhgq54 National Association of Women Judges'),
(61374, 'https://ror.org/00m4vvn06', 'en', 1, 'https://ror.org/00m4vvn06 National Association on Drug Abuse Problems'),
(61375, 'https://ror.org/00zma5460', 'es', 1, 'https://ror.org/00zma5460 Instituto Nacional de Investigación en Salud Pública'),
(61376, 'https://ror.org/05r643345', 'en', 1, 'https://ror.org/05r643345 Women''s Resource Center'),
(61377, 'https://ror.org/00jpddv49', 'no_lang_code', 1, 'https://ror.org/00jpddv49 Algomedix (United States)'),
(61378, 'https://ror.org/01yfz8598', 'en', 1, 'https://ror.org/01yfz8598 National Center of Security and Protection'),
(61379, 'https://ror.org/02dts1820', 'no_lang_code', 1, 'https://ror.org/02dts1820 Delpor (United States)'),
(61380, 'https://ror.org/04898h931', 'no_lang_code', 1, 'https://ror.org/04898h931 Dfusion (United States)'),
(61381, 'https://ror.org/03bwk1778', 'no_lang_code', 1, 'https://ror.org/03bwk1778 Behavioral Diagnostics (United States)'),
(61382, 'https://ror.org/052e10e62', 'no_lang_code', 1, 'https://ror.org/052e10e62 IsoPlexis (United States)'),
(61383, 'https://ror.org/05msdft16', 'no_lang_code', 1, 'https://ror.org/05msdft16 PDX Pharmaceuticals (United States)'),
(61384, 'https://ror.org/02r7ybh06', 'no_lang_code', 1, 'https://ror.org/02r7ybh06 Seven Bridges Genomics (United States)'),
(61385, 'https://ror.org/01rsq7s41', 'no_lang_code', 1, 'https://ror.org/01rsq7s41 JT Pharmaceuticals (United States)'),
(61386, 'https://ror.org/04dk78q10', 'no_lang_code', 1, 'https://ror.org/04dk78q10 BioVinc (United States)'),
(61387, 'https://ror.org/01g4c0s50', 'no_lang_code', 1, 'https://ror.org/01g4c0s50 Digital Artefacts (United States)'),
(61388, 'https://ror.org/00933dx23', 'no_lang_code', 1, 'https://ror.org/00933dx23 Perfusion Solution (United States)'),
(61389, 'https://ror.org/04f6ttz68', 'no_lang_code', 1, 'https://ror.org/04f6ttz68 GeneTAG Technology (United States)'),
(61390, 'https://ror.org/04m718665', 'no_lang_code', 1, 'https://ror.org/04m718665 Collaborations Pharmaceuticals (United States)'),
(61391, 'https://ror.org/053q9dm05', 'no_lang_code', 1, 'https://ror.org/053q9dm05 Progenitec (United States)'),
(61392, 'https://ror.org/03vn93v04', 'no_lang_code', 1, 'https://ror.org/03vn93v04 GlucoSentient (United States)'),
(61393, 'https://ror.org/01fsqmr25', 'no_lang_code', 1, 'https://ror.org/01fsqmr25 CrossLife Technologies (United States)'),
(61394, 'https://ror.org/00jnayz98', 'no_lang_code', 1, 'https://ror.org/00jnayz98 HelixBind (United States)'),
(61395, 'https://ror.org/057j2mw04', 'no_lang_code', 1, 'https://ror.org/057j2mw04 NanoHybrids (United States)'),
(61396, 'https://ror.org/000jtf850', 'no_lang_code', 1, 'https://ror.org/000jtf850 Sinopia Biosciences (United States)'),
(61397, 'https://ror.org/03h3pc979', 'no_lang_code', 1, 'https://ror.org/03h3pc979 Media Rez (United States)'),
(61398, 'https://ror.org/054zjpg49', 'no_lang_code', 1, 'https://ror.org/054zjpg49 OneVax (United States)'),
(61399, 'https://ror.org/00b5yqe44', 'no_lang_code', 1, 'https://ror.org/00b5yqe44 Myolex (United States)'),
(61400, 'https://ror.org/020254c55', 'en', 1, 'https://ror.org/020254c55 Caucaseco Scientific Research Center Centro de Investigación Científica Caucaseco'),
(61401, 'https://ror.org/03x91xm81', 'no_lang_code', 1, 'https://ror.org/03x91xm81 Vascular BioSciences (United States)'),
(61402, 'https://ror.org/01pwq1j60', 'no_lang_code', 1, 'https://ror.org/01pwq1j60 N2 Biomedical (United States)'),
(61403, 'https://ror.org/01a5kys78', 'no_lang_code', 1, 'https://ror.org/01a5kys78 Q-State Biosciences (United States)'),
(61404, 'https://ror.org/02827mj70', 'no_lang_code', 1, 'https://ror.org/02827mj70 Regenerative Medical Solutions (United States)'),
(61405, 'https://ror.org/03w55an86', 'no_lang_code', 1, 'https://ror.org/03w55an86 NutritionQuest (United States)'),
(61406, 'https://ror.org/02tge6s12', 'no_lang_code', 1, 'https://ror.org/02tge6s12 Accutest (India)'),
(61407, 'https://ror.org/0185gtc53', 'no_lang_code', 1, 'https://ror.org/0185gtc53 Drs. Fine, Hoffman & Sims'),
(61408, 'https://ror.org/049yq6285', 'no_lang_code', 1, 'https://ror.org/049yq6285 ActivMed Practices & Research (United States)'),
(61409, 'https://ror.org/00b095n33', 'no_lang_code', 1, 'https://ror.org/00b095n33 Ribometrix (United States)'),
(61410, 'https://ror.org/05m074r21', 'en', 1, 'https://ror.org/05m074r21 Berkshire Health Systems'),
(61411, 'https://ror.org/01cbz4y30', 'en', 1, 'https://ror.org/01cbz4y30 Christiana Gynecologic Oncology'),
(61412, 'https://ror.org/0044b0b76', 'en', 1, 'https://ror.org/0044b0b76 HealthCare Partners Medical Group'),
(61413, 'https://ror.org/0270xn642', 'no_lang_code', 1, 'https://ror.org/0270xn642 Bio-Images Drug Delivery (United Kingdom)'),
(61414, 'https://ror.org/05k71bz17', 'no_lang_code', 1, 'https://ror.org/05k71bz17 Biocinese (Brazil) Centro de Estudos Biofarmacêuticos'),
(61415, 'https://ror.org/04rhwda32', 'en', 1, 'https://ror.org/04rhwda32 Heartland Hematology and Oncology'),
(61416, 'https://ror.org/03vnkza15', 'en', 1, 'https://ror.org/03vnkza15 Aga Khan Development Network'),
(61417, 'https://ror.org/00q3dem22', 'no_lang_code', 1, 'https://ror.org/00q3dem22 Aggredyne (United States)'),
(61418, 'https://ror.org/05bgwpv79', 'no_lang_code', 1, 'https://ror.org/05bgwpv79 Bioenergy Life Science (United States)'),
(61419, 'https://ror.org/02f5ccn55', 'no_lang_code', 1, 'https://ror.org/02f5ccn55 Sun Pharma (United States)'),
(61420, 'https://ror.org/031yrna52', 'no_lang_code', 1, 'https://ror.org/031yrna52 Ajinomoto (United States)'),
(61421, 'https://ror.org/03vsr5p38', 'no_lang_code', 1, 'https://ror.org/03vsr5p38 BioScience Laboratories (United States)'),
(61422, 'https://ror.org/01907r966', 'en', 1, 'https://ror.org/01907r966 Eastern Connecticut Hematology and Oncology Associates'),
(61423, 'https://ror.org/04h35xj16', 'en', 1, 'https://ror.org/04h35xj16 Alaska Breast Care & Surgery'),
(61424, 'https://ror.org/05sdkg034', 'no_lang_code', 1, 'https://ror.org/05sdkg034 Boehringer Ingelheim (Argentina)'),
(61425, 'https://ror.org/0044j7z53', 'en', 1, 'https://ror.org/0044j7z53 Hematology and Oncology Associates of Northeastern Pennsylvania'),
(61426, 'https://ror.org/04bzrt549', 'no_lang_code', 1, 'https://ror.org/04bzrt549 Boston Medical Group (Colombia)'),
(61427, 'https://ror.org/006dhhj35', 'en', 1, 'https://ror.org/006dhhj35 Alaska Oncology & Hematology'),
(61428, 'https://ror.org/00waaf760', 'no_lang_code', 1, 'https://ror.org/00waaf760 Eugonia Ευγονία'),
(61429, 'https://ror.org/02kp6ds19', 'en', 1, 'https://ror.org/02kp6ds19 Boulder Neurosurgical & Spine Associates'),
(61430, 'https://ror.org/03epcb283', 'en', 1, 'https://ror.org/03epcb283 Brain Matters Research'),
(61431, 'https://ror.org/00vs5xf39', 'en', 1, 'https://ror.org/00vs5xf39 Hematology Oncology Associates of Fredericksburg'),
(61432, 'https://ror.org/00sqneq52', 'en', 1, 'https://ror.org/00sqneq52 Bronson Battle Creek Hospital'),
(61433, 'https://ror.org/00vhpak23', 'no_lang_code', 1, 'https://ror.org/00vhpak23 Evidation Health (United States)'),
(61434, 'https://ror.org/05hc6gd57', 'en', 1, 'https://ror.org/05hc6gd57 C.I. Trials'),
(61435, 'https://ror.org/020wh9z45', 'no', 1, 'https://ror.org/020wh9z45 Evjeklinikken'),
(61436, 'https://ror.org/03sw8j870', 'en', 1, 'https://ror.org/03sw8j870 Center for Environment and Community Assets Development Trung tâm Môi trường và Phát triển Nguồn lực Cộng đồng'),
(61437, 'https://ror.org/048n17y91', 'en', 1, 'https://ror.org/048n17y91 Excelsior Orthopaedics'),
(61438, 'https://ror.org/01m5a8633', 'en', 1, 'https://ror.org/01m5a8633 Alaska Women''s Cancer Care'),
(61439, 'https://ror.org/01n95cx06', 'no_lang_code', 1, 'https://ror.org/01n95cx06 Chugai Pharma (United States)'),
(61440, 'https://ror.org/010n18211', 'en', 1, 'https://ror.org/010n18211 California Allergy and Asthma Medical Group'),
(61441, 'https://ror.org/04w3zd882', 'en', 1, 'https://ror.org/04w3zd882 Hematology Oncology Associates'),
(61442, 'https://ror.org/011h26k47', 'no_lang_code', 1, 'https://ror.org/011h26k47 Investor (Sweden)'),
(61443, 'https://ror.org/02yaq1v87', 'pt', 1, 'https://ror.org/02yaq1v87 Faculdade de Medicina de Petrópolis'),
(61444, 'https://ror.org/01bftyb90', 'en', 1, 'https://ror.org/01bftyb90 Hematology Oncology Consultants'),
(61445, 'https://ror.org/04qqn5v91', 'en', 1, 'https://ror.org/04qqn5v91 Hematology Oncology Consultants'),
(61446, 'https://ror.org/02va7tv42', 'no_lang_code', 1, 'https://ror.org/02va7tv42 Allergan (Taiwan)'),
(61447, 'https://ror.org/04h8ph678', 'en', 1, 'https://ror.org/04h8ph678 Cancer Care of Western North Carolina'),
(61448, 'https://ror.org/059rgaq66', 'sv', 1, 'https://ror.org/059rgaq66 Fertilitetscentrum'),
(61449, 'https://ror.org/03vgg3427', 'en', 1, 'https://ror.org/03vgg3427 American Joint Replacement Registry'),
(61450, 'https://ror.org/05tn6ve98', 'en', 1, 'https://ror.org/05tn6ve98 First Dayton CyberKnife'),
(61451, 'https://ror.org/00geycx93', 'en', 1, 'https://ror.org/00geycx93 Hematology & Oncology Consultants'),
(61452, 'https://ror.org/02rmzps48', 'no_lang_code', 1, 'https://ror.org/02rmzps48 Cliantha (India)'),
(61453, 'https://ror.org/017esgv14', 'en', 1, 'https://ror.org/017esgv14 Anchorage Associates in Radiation Medicine'),
(61454, 'https://ror.org/05b8d3v21', 'en', 1, 'https://ror.org/05b8d3v21 Antalya IVF'),
(61455, 'https://ror.org/047bp3m73', 'en', 1, 'https://ror.org/047bp3m73 Florida Urology Associates'),
(61456, 'https://ror.org/035e6q027', 'fr', 1, 'https://ror.org/035e6q027 Languedoc Mutualité'),
(61457, 'https://ror.org/04e456155', 'en', 1, 'https://ror.org/04e456155 Cardiovascular Research Associates'),
(61458, 'https://ror.org/00ynkhx66', 'no_lang_code', 1, 'https://ror.org/00ynkhx66 Care Team Solutions (United States)'),
(61459, 'https://ror.org/036mx0561', 'fr', 1, 'https://ror.org/036mx0561 Clinique Claude-Bernard'),
(61460, 'https://ror.org/02y1vmj66', 'it', 1, 'https://ror.org/02y1vmj66 Epatocentro Ticino'),
(61461, 'https://ror.org/04wh5hg83', 'no_lang_code', 1, 'https://ror.org/04wh5hg83 Caris Life Sciences (United States)'),
(61462, 'https://ror.org/01k1j7593', 'en', 1, 'https://ror.org/01k1j7593 Highlands Oncology Group'),
(61463, 'https://ror.org/01v2w4d05', 'fr', 1, 'https://ror.org/01v2w4d05 Clinique Mutualiste La Sagesse'),
(61464, 'https://ror.org/02b3f5j20', 'no_lang_code', 1, 'https://ror.org/02b3f5j20 Apollo Endosurgery (United States)'),
(61465, 'https://ror.org/05cvcn611', 'fr', 1, 'https://ror.org/05cvcn611 Clinique du Grand Large'),
(61466, 'https://ror.org/05v5gb241', 'en', 1, 'https://ror.org/05v5gb241 Carolina Arthritis Associates'),
(61467, 'https://ror.org/00kw4g054', 'no_lang_code', 1, 'https://ror.org/00kw4g054 Apotex (United States)'),
(61468, 'https://ror.org/04nmnyc35', 'en', 1, 'https://ror.org/04nmnyc35 Carolina Performance'),
(61469, 'https://ror.org/01ya56e34', 'fr', 1, 'https://ror.org/01ya56e34 Clinique du Millénaire'),
(61470, 'https://ror.org/00jmmae07', 'en', 1, 'https://ror.org/00jmmae07 Fox Valley Surgical Associates'),
(61471, 'https://ror.org/058196w54', 'en', 1, 'https://ror.org/058196w54 Carolina Urology Partners'),
(61472, 'https://ror.org/05set4688', 'en', 1, 'https://ror.org/05set4688 Aria - Jefferson Health'),
(61473, 'https://ror.org/00dxw4v18', 'fr', 1, 'https://ror.org/00dxw4v18 Hôpital Couple Enfant'),
(61474, 'https://ror.org/04z27mz17', 'fr', 1, 'https://ror.org/04z27mz17 Clinique Hartmann'),
(61475, 'https://ror.org/018x1j412', 'en', 1, 'https://ror.org/018x1j412 Franciscan Health Indianapolis'),
(61476, 'https://ror.org/048hv9z27', 'es', 1, 'https://ror.org/048hv9z27 Centro de Infertilidad y Reproducción Humana'),
(61477, 'https://ror.org/02qkddx94', 'en', 1, 'https://ror.org/02qkddx94 Arizona Pain Specialists'),
(61478, 'https://ror.org/00128qj25', 'fr', 1, 'https://ror.org/00128qj25 Clinique Neuro-Outaouais'),
(61479, 'https://ror.org/01tfhsg94', 'fr', 1, 'https://ror.org/01tfhsg94 Hôpital Européen'),
(61480, 'https://ror.org/05tja9q19', 'no_lang_code', 1, 'https://ror.org/05tja9q19 Teva Pharmaceuticals (Spain)'),
(61481, 'https://ror.org/02yzgv231', 'en', 1, 'https://ror.org/02yzgv231 Franciscan Health Mooresville'),
(61482, 'https://ror.org/00n3baz54', 'en', 1, 'https://ror.org/00n3baz54 Arthritis and Rheumatic Disease Specialties'),
(61483, 'https://ror.org/04jf1d362', 'fr', 1, 'https://ror.org/04jf1d362 Hôpital Jean Jaurès'),
(61484, 'https://ror.org/05vctz765', 'en', 1, 'https://ror.org/05vctz765 Arthritis Northwest'),
(61485, 'https://ror.org/028a0s046', 'en', 1, 'https://ror.org/028a0s046 Franciscan St Anthony Health – Michigan City'),
(61486, 'https://ror.org/04qvenw96', 'fr', 1, 'https://ror.org/04qvenw96 Clinique Victor Hugo'),
(61487, 'https://ror.org/014xwn672', 'en', 1, 'https://ror.org/014xwn672 Asheville Hematology & Oncology'),
(61488, 'https://ror.org/036rq4p38', 'en', 1, 'https://ror.org/036rq4p38 Freeman Health System'),
(61489, 'https://ror.org/04rkyw928', 'fr', 1, 'https://ror.org/04rkyw928 L''Hôpital Nord Franche-Comté'),
(61490, 'https://ror.org/02chsc169', 'fr', 1, 'https://ror.org/02chsc169 Centre Hospitalier Compiègne-Noyon'),
(61491, 'https://ror.org/031h5rk76', 'es', 1, 'https://ror.org/031h5rk76 Asociación Colombiana de Diabetes'),
(61492, 'https://ror.org/027yanw18', 'no_lang_code', 1, 'https://ror.org/027yanw18 CMIC Group (Japan)'),
(61493, 'https://ror.org/02nn5y377', 'fr', 1, 'https://ror.org/02nn5y377 Hôpital Privé Jean Mermo'),
(61494, 'https://ror.org/025009514', 'en', 1, 'https://ror.org/025009514 Coastal Orthopedics'),
(61495, 'https://ror.org/00xhn5c68', 'pt', 1, 'https://ror.org/00xhn5c68 Fundação Altino Ventura'),
(61496, 'https://ror.org/024hscy29', 'fr', 1, 'https://ror.org/024hscy29 Centre Hospitalier de Bigorre'),
(61497, 'https://ror.org/00g0ak246', 'en', 1, 'https://ror.org/00g0ak246 Assisting Nature'),
(61498, 'https://ror.org/01rsw3c42', 'pt', 1, 'https://ror.org/01rsw3c42 Fundação Bahiana de Infectologia'),
(61499, 'https://ror.org/03ambf510', 'en', 1, 'https://ror.org/03ambf510 Horizon Oncology Center'),
(61500, 'https://ror.org/04eynfz47', 'en', 1, 'https://ror.org/04eynfz47 Collier Neurologic Specialists'),
(61501, 'https://ror.org/0572qg377', 'en', 1, 'https://ror.org/0572qg377 Associated Neurologists of Southern Connecticut'),
(61502, 'https://ror.org/02j5f0439', 'es', 1, 'https://ror.org/02j5f0439 Fundación Neumológica Colombiana'),
(61503, 'https://ror.org/05tr65377', 'en', 1, 'https://ror.org/05tr65377 Associates in Women’s Health'),
(61504, 'https://ror.org/05rg8gm93', 'en', 1, 'https://ror.org/05rg8gm93 Hôtel-Dieu Grace Healthcare'),
(61505, 'https://ror.org/02hyv7840', 'no_lang_code', 1, 'https://ror.org/02hyv7840 Columbia Asia'),
(61506, 'https://ror.org/00cftt483', 'no_lang_code', 1, 'https://ror.org/00cftt483 Hoya Surgical Optics (United States)'),
(61507, 'https://ror.org/036yvkz90', 'no_lang_code', 1, 'https://ror.org/036yvkz90 Nestlé (Belgium)'),
(61508, 'https://ror.org/04gc7k725', 'en', 1, 'https://ror.org/04gc7k725 Chesapeake Urology Associates'),
(61509, 'https://ror.org/00qj38h30', 'en', 1, 'https://ror.org/00qj38h30 Columbus Oncology and Hematology Associates'),
(61510, 'https://ror.org/023z23g03', 'en', 1, 'https://ror.org/023z23g03 Galiz Research'),
(61511, 'https://ror.org/00562d506', 'en', 1, 'https://ror.org/00562d506 Chicago Anesthesia Pain Specialists'),
(61512, 'https://ror.org/057qnv003', 'en', 1, 'https://ror.org/057qnv003 Gaston Hematology & Oncology Associates'),
(61513, 'https://ror.org/01zdv2629', 'en', 1, 'https://ror.org/01zdv2629 Joliet Oncology-Hematology Associates'),
(61514, 'https://ror.org/00np8k310', 'pt', 1, 'https://ror.org/00np8k310 Gastrocirurgia de Brasília'),
(61515, 'https://ror.org/04dpmwx08', 'en', 1, 'https://ror.org/04dpmwx08 Compassionate Cancer Care'),
(61516, 'https://ror.org/0514yze14', 'no_lang_code', 1, 'https://ror.org/0514yze14 Huons (South Korea)'),
(61517, 'https://ror.org/01jj3v002', 'en', 1, 'https://ror.org/01jj3v002 Austin Speech Labs'),
(61518, 'https://ror.org/03308zq86', 'en', 1, 'https://ror.org/03308zq86 Huron Gastro'),
(61519, 'https://ror.org/04gbh9b75', 'no_lang_code', 1, 'https://ror.org/04gbh9b75 General Electric (Spain)'),
(61520, 'https://ror.org/03cb3w715', 'en', 1, 'https://ror.org/03cb3w715 Congenital Muscle Disease International Registry'),
(61521, 'https://ror.org/00fgz4k79', 'no_lang_code', 1, 'https://ror.org/00fgz4k79 Novita Healthcare (Australia)'),
(61522, 'https://ror.org/03vyf7w04', 'en', 1, 'https://ror.org/03vyf7w04 Kaiser Permanente Baldwin Park Medical Center'),
(61523, 'https://ror.org/031caxb92', 'en', 1, 'https://ror.org/031caxb92 Kaiser Permanente West Los Angeles Medical Center'),
(61524, 'https://ror.org/052yr7741', 'no_lang_code', 1, 'https://ror.org/052yr7741 Azienda di Servizi alla Persona di Pavia (Italy)'),
(61525, 'https://ror.org/05258cy55', 'no_lang_code', 1, 'https://ror.org/05258cy55 Genmab (United States)'),
(61526, 'https://ror.org/05a9k3463', 'en', 1, 'https://ror.org/05a9k3463 Kaiser Permanente Franklin Medical Offices'),
(61527, 'https://ror.org/0188v8a70', 'no_lang_code', 1, 'https://ror.org/0188v8a70 Icon (United States)'),
(61528, 'https://ror.org/05535a176', 'en', 1, 'https://ror.org/05535a176 Kaiser Permanente Orange County Irvine Medical Center'),
(61529, 'https://ror.org/031q6s296', 'no_lang_code', 1, 'https://ror.org/031q6s296 Cosmos Technologies (United States)'),
(61530, 'https://ror.org/015sq8750', 'en', 1, 'https://ror.org/015sq8750 Kaiser Permanente Lone Tree Medical Offices'),
(61531, 'https://ror.org/01mwnbk39', 'en', 1, 'https://ror.org/01mwnbk39 Kaiser Permanente Modesto Medical Center and Medical Offices'),
(61532, 'https://ror.org/05d14ax96', 'no_lang_code', 1, 'https://ror.org/05d14ax96 Gilead Sciences (France)'),
(61533, 'https://ror.org/01a13fh38', 'en', 1, 'https://ror.org/01a13fh38 Icon Early Phase Services'),
(61534, 'https://ror.org/05gkev856', 'en', 1, 'https://ror.org/05gkev856 European Society for Blood and Marrow Transplantation'),
(61535, 'https://ror.org/01q9c7s07', 'en', 1, 'https://ror.org/01q9c7s07 Kaiser Permanente Richmond Medical Center'),
(61536, 'https://ror.org/022wfr829', 'en', 1, 'https://ror.org/022wfr829 Kaiser Permanente Rock Creek Medical Offices'),
(61537, 'https://ror.org/03vdexs55', 'en', 1, 'https://ror.org/03vdexs55 Global Alliance for Regenerative Medicine'),
(61538, 'https://ror.org/05jtxmk62', 'en', 1, 'https://ror.org/05jtxmk62 Baptist Health Corbin'),
(61539, 'https://ror.org/02j0s2m43', 'en', 1, 'https://ror.org/02j0s2m43 Barney''s Pharmacy'),
(61540, 'https://ror.org/042y18291', 'en', 1, 'https://ror.org/042y18291 Kaiser Permanente Zion Medical Center'),
(61541, 'https://ror.org/056tvxc50', 'en', 1, 'https://ror.org/056tvxc50 Baptist Health Paducah'),
(61542, 'https://ror.org/018d0rc68', 'en', 1, 'https://ror.org/018d0rc68 Kaiser Permanente San Marcos Medical Offices'),
(61543, 'https://ror.org/04z5qk104', 'en', 1, 'https://ror.org/04z5qk104 Community Hospital'),
(61544, 'https://ror.org/0031x0638', 'en', 1, 'https://ror.org/0031x0638 Barrie Urology Group'),
(61545, 'https://ror.org/05czd8n07', 'en', 1, 'https://ror.org/05czd8n07 Illinois Retina Associates'),
(61546, 'https://ror.org/05vbevg81', 'en', 1, 'https://ror.org/05vbevg81 Kaiser Permanente San Jose Medical Center'),
(61547, 'https://ror.org/00nrk9x91', 'en', 1, 'https://ror.org/00nrk9x91 Kaiser Permanente South Sacramento Medical Center'),
(61548, 'https://ror.org/00jrz2221', 'en', 1, 'https://ror.org/00jrz2221 Kaiser Permanente Stockton Medical Offices'),
(61549, 'https://ror.org/02r4exx90', 'en', 1, 'https://ror.org/02r4exx90 Barrow Brain and Spine'),
(61550, 'https://ror.org/015jb5761', 'en', 1, 'https://ror.org/015jb5761 Bay Area Breast Surgeons'),
(61551, 'https://ror.org/045wd8a95', 'en', 1, 'https://ror.org/045wd8a95 OSF St. Francis Hospital & Medical Group'),
(61552, 'https://ror.org/007g95547', 'no_lang_code', 1, 'https://ror.org/007g95547 Immunitor (Mongolia)'),
(61553, 'https://ror.org/02vmgqy82', 'en', 1, 'https://ror.org/02vmgqy82 Bay Area Retina Associates'),
(61554, 'https://ror.org/030yhh648', 'da', 1, 'https://ror.org/030yhh648 Dansk Fertilitetsklinik'),
(61555, 'https://ror.org/01qtxzw29', 'en', 1, 'https://ror.org/01qtxzw29 Kentuckiana Pulmonary Associates'),
(61556, 'https://ror.org/01fr3sh36', 'en', 1, 'https://ror.org/01fr3sh36 Beebe Healthcare'),
(61557, 'https://ror.org/02pq1z922', 'en', 1, 'https://ror.org/02pq1z922 Behavioral Health of the Palm Beaches'),
(61558, 'https://ror.org/02xbtxj19', 'en', 1, 'https://ror.org/02xbtxj19 Door County Medical Center'),
(61559, 'https://ror.org/03by80w61', 'en', 1, 'https://ror.org/03by80w61 Dayton Interventional Radiology'),
(61560, 'https://ror.org/0365ym773', 'en', 1, 'https://ror.org/0365ym773 Kinston Medical Specialists'),
(61561, 'https://ror.org/03t0g0q91', 'es', 1, 'https://ror.org/03t0g0q91 Grupo Gallego de Cáncer de Pulmón'),
(61562, 'https://ror.org/053nf2720', 'no_lang_code', 1, 'https://ror.org/053nf2720 Inion (Finland)'),
(61563, 'https://ror.org/03sywc351', 'en', 1, 'https://ror.org/03sywc351 Dayton Physicians Network'),
(61564, 'https://ror.org/054dhkd21', 'en', 1, 'https://ror.org/054dhkd21 Rheumatology Consultants'),
(61565, 'https://ror.org/03y6mg459', 'en', 1, 'https://ror.org/03y6mg459 Meditation De-Addiction Health AIDS Nutrition Trust'),
(61566, 'https://ror.org/00apa5z77', 'no_lang_code', 1, 'https://ror.org/00apa5z77 InquisitHealth (United States)'),
(61567, 'https://ror.org/05vpy0b11', 'no_lang_code', 1, 'https://ror.org/05vpy0b11 Integrative Health Technologies (United States)'),
(61568, 'https://ror.org/02h1dt688', 'de', 1, 'https://ror.org/02h1dt688 Klinikum Frankfurt Höchst'),
(61569, 'https://ror.org/03vct0j86', 'en', 1, 'https://ror.org/03vct0j86 Gynecologic Oncology Associates'),
(61570, 'https://ror.org/01g7wf911', 'en', 1, 'https://ror.org/01g7wf911 Manhattan Physical Medicine and Rehabilitation'),
(61571, 'https://ror.org/034yah449', 'en', 1, 'https://ror.org/034yah449 Martin Foot and Ankle'),
(61572, 'https://ror.org/03pn50n78', 'no_lang_code', 1, 'https://ror.org/03pn50n78 DC2 (United States)'),
(61573, 'https://ror.org/00npraj80', 'en', 1, 'https://ror.org/00npraj80 Maryland Oncology Hematology'),
(61574, 'https://ror.org/05gag8m64', 'de', 1, 'https://ror.org/05gag8m64 Kreiskrankenhaus Dormagen'),
(61575, 'https://ror.org/04q43a127', 'no_lang_code', 1, 'https://ror.org/04q43a127 IPS Research (United States)'),
(61576, 'https://ror.org/01xs14k38', 'no_lang_code', 1, 'https://ror.org/01xs14k38 Medacta (United States)'),
(61577, 'https://ror.org/00k009k96', 'en', 1, 'https://ror.org/00k009k96 Kuchnir Dermatology & Dermatologic Surgery'),
(61578, 'https://ror.org/02n172j55', 'en', 1, 'https://ror.org/02n172j55 MedDerm Associates'),
(61579, 'https://ror.org/04dgj3g22', 'en', 1, 'https://ror.org/04dgj3g22 Coatesville Veterans Affairs Medical Center'),
(61580, 'https://ror.org/027w0yp05', 'en', 1, 'https://ror.org/027w0yp05 William C. Tallent Outpatient Clinic'),
(61581, 'https://ror.org/03cryrv62', 'en', 1, 'https://ror.org/03cryrv62 Denova Research'),
(61582, 'https://ror.org/03q7ay915', 'en', 1, 'https://ror.org/03q7ay915 TIAS School for Business and Society'),
(61583, 'https://ror.org/01yk61783', 'en', 1, 'https://ror.org/01yk61783 Lake Norman Oncology'),
(61584, 'https://ror.org/05mmjzg49', 'en', 1, 'https://ror.org/05mmjzg49 iResearch Atlanta'),
(61585, 'https://ror.org/00nvney28', 'en', 1, 'https://ror.org/00nvney28 Lake City VA Medical Center'),
(61586, 'https://ror.org/01b3ys956', 'en', 1, 'https://ror.org/01b3ys956 Doris Miller Department of Veterans Affairs Medical Center'),
(61587, 'https://ror.org/01yx43d58', 'en', 1, 'https://ror.org/01yx43d58 Medical Oncology Hematology Consultants'),
(61588, 'https://ror.org/04st1y556', 'it', 1, 'https://ror.org/04st1y556 La Maddalena'),
(61589, 'https://ror.org/0456c8v85', 'en', 1, 'https://ror.org/0456c8v85 Lake Norman Oncology'),
(61590, 'https://ror.org/00gxa5343', 'en', 1, 'https://ror.org/00gxa5343 Lake Region Healthcare'),
(61591, 'https://ror.org/04x50ay81', 'no_lang_code', 1, 'https://ror.org/04x50ay81 Lambda Therapeutic Research (India)'),
(61592, 'https://ror.org/01e542834', 'nl', 1, 'https://ror.org/01e542834 IrisZorg'),
(61593, 'https://ror.org/0055a4990', 'en', 1, 'https://ror.org/0055a4990 Dermatology Consulting Services'),
(61594, 'https://ror.org/00fjyk033', 'en', 1, 'https://ror.org/00fjyk033 Desert Medical Imaging'),
(61595, 'https://ror.org/02r89nc92', 'no_lang_code', 1, 'https://ror.org/02r89nc92 Medication Management (United States)'),
(61596, 'https://ror.org/023h0re83', 'en', 1, 'https://ror.org/023h0re83 Hawaii Cancer Care'),
(61597, 'https://ror.org/01dyphc41', 'es', 1, 'https://ror.org/01dyphc41 Diagnostico Maipú'),
(61598, 'https://ror.org/00r23c464', 'no_lang_code', 1, 'https://ror.org/00r23c464 MediciNova (United States)'),
(61599, 'https://ror.org/04y9b7t58', 'en', 1, 'https://ror.org/04y9b7t58 Italian Resuscitation Council'),
(61600, 'https://ror.org/02zkb9v82', 'no_lang_code', 1, 'https://ror.org/02zkb9v82 Revenue Management Solutions (United States)'),
(61601, 'https://ror.org/00n36xb70', 'es', 1, 'https://ror.org/00n36xb70 Liga Contra el Cancer Liga Peruana de Lucha contra el Cáncer'),
(61602, 'https://ror.org/01fnh4d22', 'en', 1, 'https://ror.org/01fnh4d22 Hazleton Eye Specialists'),
(61603, 'https://ror.org/03mmtg035', 'en', 1, 'https://ror.org/03mmtg035 Digestive & Liver Disease Specialists'),
(61604, 'https://ror.org/0093ach88', 'en', 1, 'https://ror.org/0093ach88 CHI Memorial Medical Group'),
(61605, 'https://ror.org/01kb5b139', 'no_lang_code', 1, 'https://ror.org/01kb5b139 Rite Aid (United States)'),
(61606, 'https://ror.org/0528hwm66', 'en', 1, 'https://ror.org/0528hwm66 The Japan-Multinational Trial Organization 日本・多国間臨床試験機構'),
(61607, 'https://ror.org/04gpc6733', 'it', 1, 'https://ror.org/04gpc6733 Ospedale Santa Maria Goretti'),
(61608, 'https://ror.org/04qvz3512', 'en', 1, 'https://ror.org/04qvz3512 Louisiana Hematology Oncology Associates'),
(61609, 'https://ror.org/049s51r41', 'en', 1, 'https://ror.org/049s51r41 Men''s Health Boston'),
(61610, 'https://ror.org/03eq4wq29', 'no_lang_code', 1, 'https://ror.org/03eq4wq29 Metacure (United States)'),
(61611, 'https://ror.org/046k3mr17', 'en', 1, 'https://ror.org/046k3mr17 Healthcare Global Enterprises'),
(61612, 'https://ror.org/04a5jy818', 'en', 1, 'https://ror.org/04a5jy818 Michigan Orthopaedic Spine Surgeons'),
(61613, 'https://ror.org/04gqr8882', 'en', 1, 'https://ror.org/04gqr8882 Oncology Hematology Care'),
(61614, 'https://ror.org/05kn06p84', 'en', 1, 'https://ror.org/05kn06p84 Michigan Reproductive Medicine'),
(61615, 'https://ror.org/020szg916', 'en', 1, 'https://ror.org/020szg916 Newland Medical Associates'),
(61616, 'https://ror.org/05fr3nj53', 'en', 1, 'https://ror.org/05fr3nj53 Miller Orthopedic Specialist'),
(61617, 'https://ror.org/01gxkhe25', 'no_lang_code', 1, 'https://ror.org/01gxkhe25 Lumos Labs (United States)'),
(61618, 'https://ror.org/052z1v370', 'en', 1, 'https://ror.org/052z1v370 Nebraska Cancer Specialists'),
(61619, 'https://ror.org/01q8w7b22', 'no_lang_code', 1, 'https://ror.org/01q8w7b22 Mimetogen (United States)'),
(61620, 'https://ror.org/00hw4nh44', 'en', 1, 'https://ror.org/00hw4nh44 Newman Regional Health'),
(61621, 'https://ror.org/039b8pv66', 'en', 1, 'https://ror.org/039b8pv66 Oncology Specialists of Charlotte'),
(61622, 'https://ror.org/043rqx383', 'en', 1, 'https://ror.org/043rqx383 Pinnacle Oncology Hematology'),
(61623, 'https://ror.org/05vmsw483', 'en', 1, 'https://ror.org/05vmsw483 Minnesota Oncology'),
(61624, 'https://ror.org/01vzjtk91', 'en', 1, 'https://ror.org/01vzjtk91 Rocky Mountain Retina Consultants'),
(61625, 'https://ror.org/00g11cc66', 'en', 1, 'https://ror.org/00g11cc66 ATI Physical Therapy'),
(61626, 'https://ror.org/010xeam31', 'no_lang_code', 1, 'https://ror.org/010xeam31 Ono Pharmaceutical (United States)'),
(61627, 'https://ror.org/02309hn07', 'es', 1, 'https://ror.org/02309hn07 Via Libre'),
(61628, 'https://ror.org/044p0sr27', 'no_lang_code', 1, 'https://ror.org/044p0sr27 ProMetic Life Sciences (United States)'),
(61629, 'https://ror.org/00h93zw30', 'no_lang_code', 1, 'https://ror.org/00h93zw30 Optimata (Israel)'),
(61630, 'https://ror.org/05x1ves75', 'en', 1, 'https://ror.org/05x1ves75 NHS Fife'),
(61631, 'https://ror.org/019z87133', 'it', 1, 'https://ror.org/019z87133 Azienda Sanitaria Locale di Asti'),
(61632, 'https://ror.org/05k150873', 'en', 1, 'https://ror.org/05k150873 OASIS Clinic'),
(61633, 'https://ror.org/021px0753', 'en', 1, 'https://ror.org/021px0753 Moy, Fincher, Chipps Medical Group'),
(61634, 'https://ror.org/00zxr2615', 'no_lang_code', 1, 'https://ror.org/00zxr2615 Nordic Pharma (France)'),
(61635, 'https://ror.org/02cagam23', 'en', 1, 'https://ror.org/02cagam23 MultiCare Gig Harbor Medical Park'),
(61636, 'https://ror.org/02eyfd807', 'en', 1, 'https://ror.org/02eyfd807 Sacred Heart Medical Center at RiverBend'),
(61637, 'https://ror.org/04hc0rs25', 'en', 1, 'https://ror.org/04hc0rs25 Providence Regional Cancer Partnership'),
(61638, 'https://ror.org/05gctgr03', 'en', 1, 'https://ror.org/05gctgr03 Nebraska Hematology-Oncology'),
(61639, 'https://ror.org/05qmfrv53', 'en', 1, 'https://ror.org/05qmfrv53 St John of God Murdoch Hospital'),
(61640, 'https://ror.org/01zh1d121', 'it', 1, 'https://ror.org/01zh1d121 Ospedale Misericordia e Dolce'),
(61641, 'https://ror.org/03s49qk39', 'en', 1, 'https://ror.org/03s49qk39 NephroCare'),
(61642, 'https://ror.org/04f17kc16', 'it', 1, 'https://ror.org/04f17kc16 Ospedale S.Gennaro'),
(61643, 'https://ror.org/02r6d9v55', 'no_lang_code', 1, 'https://ror.org/02r6d9v55 Equilab International (Indonesia)'),
(61644, 'https://ror.org/048xg4d81', 'en', 1, 'https://ror.org/048xg4d81 Northern Indiana Cancer Research Consortium'),
(61645, 'https://ror.org/052s3m976', 'en', 1, 'https://ror.org/052s3m976 Neurosurgeons of New Jersey'),
(61646, 'https://ror.org/03tqdk258', 'en', 1, 'https://ror.org/03tqdk258 Saint Luke''s East Hospital'),
(61647, 'https://ror.org/03f4hd425', 'en', 1, 'https://ror.org/03f4hd425 Northshore Oncology Associates'),
(61648, 'https://ror.org/05hrw6q11', 'en', 1, 'https://ror.org/05hrw6q11 Ovation Fertility'),
(61649, 'https://ror.org/044jq0109', 'no_lang_code', 1, 'https://ror.org/044jq0109 NeuroTrials Research (United States)'),
(61650, 'https://ror.org/03gn7k041', 'no_lang_code', 1, 'https://ror.org/03gn7k041 Nestlé (China)'),
(61651, 'https://ror.org/00rq7v092', 'en', 1, 'https://ror.org/00rq7v092 Compass Oncology'),
(61652, 'https://ror.org/04ed27a31', 'en', 1, 'https://ror.org/04ed27a31 New England Retina Associates'),
(61653, 'https://ror.org/01ta1nw48', 'no_lang_code', 1, 'https://ror.org/01ta1nw48 Alivation (United States)'),
(61654, 'https://ror.org/05hr4m393', 'en', 1, 'https://ror.org/05hr4m393 Northwest Medical Specialties'),
(61655, 'https://ror.org/0135q5188', 'en', 1, 'https://ror.org/0135q5188 Q-Pharm'),
(61656, 'https://ror.org/03emyr182', 'en', 1, 'https://ror.org/03emyr182 New Mexico Cancer Center'),
(61657, 'https://ror.org/059151f39', 'pl', 1, 'https://ror.org/059151f39 Samodzielny Publiczny Szpital Kliniczny im. prof. W. Orłowskiego CMKP'),
(61658, 'https://ror.org/05ep1jp78', 'no_lang_code', 1, 'https://ror.org/05ep1jp78 SGS (Belgium)'),
(61659, 'https://ror.org/03dsbzv79', 'en', 1, 'https://ror.org/03dsbzv79 Radiation Oncology Associates'),
(61660, 'https://ror.org/02dbytc62', 'no_lang_code', 1, 'https://ror.org/02dbytc62 Novartis (Mexico)'),
(61661, 'https://ror.org/04yctj498', 'en', 1, 'https://ror.org/04yctj498 Panhandle Eye Group'),
(61662, 'https://ror.org/04gpmm421', 'en', 1, 'https://ror.org/04gpmm421 Invision Sally Jobe'),
(61663, 'https://ror.org/00wa5kg71', 'en', 1, 'https://ror.org/00wa5kg71 Shenandoah Oncology'),
(61664, 'https://ror.org/05c1xy536', 'en', 1, 'https://ror.org/05c1xy536 Arizona Oncology'),
(61665, 'https://ror.org/04mpvkk30', 'no_lang_code', 1, 'https://ror.org/04mpvkk30 Sientra (United States)'),
(61666, 'https://ror.org/013f5rs96', 'en', 1, 'https://ror.org/013f5rs96 PCR Oncology'),
(61667, 'https://ror.org/04v77c541', 'en', 1, 'https://ror.org/04v77c541 Sierra Eye Associates'),
(61668, 'https://ror.org/00jts5t62', 'no_lang_code', 1, 'https://ror.org/00jts5t62 SIFI Medtech (Italy)'),
(61669, 'https://ror.org/00zsny525', 'en', 1, 'https://ror.org/00zsny525 Pediatric Nephrology of Alabama'),
(61670, 'https://ror.org/05btveq09', 'de', 1, 'https://ror.org/05btveq09 SLK-Kliniken Heilbronn'),
(61671, 'https://ror.org/05nqjs332', 'en', 1, 'https://ror.org/05nqjs332 Regeneris Medical'),
(61672, 'https://ror.org/04pfbqx48', 'en', 1, 'https://ror.org/04pfbqx48 South Health Campus'),
(61673, 'https://ror.org/05d3c1829', 'no_lang_code', 1, 'https://ror.org/05d3c1829 Pfizer (India)'),
(61674, 'https://ror.org/05aatnq11', 'en', 1, 'https://ror.org/05aatnq11 Respiratory and Meningeal Pathogens Research Unit'),
(61675, 'https://ror.org/00fjzr749', 'no_lang_code', 1, 'https://ror.org/00fjzr749 Sanguine Biosciences (United States)'),
(61676, 'https://ror.org/039868y11', 'no_lang_code', 1, 'https://ror.org/039868y11 Pharma Medica Research (Canada)'),
(61677, 'https://ror.org/02x8dnq97', 'no_lang_code', 1, 'https://ror.org/02x8dnq97 Sanofi (Argentina)'),
(61678, 'https://ror.org/0389djt38', 'no_lang_code', 1, 'https://ror.org/0389djt38 Nu Skin (United States)'),
(61679, 'https://ror.org/04rhkcf19', 'no_lang_code', 1, 'https://ror.org/04rhkcf19 Santech (United States)'),
(61680, 'https://ror.org/05rnt2n49', 'no_lang_code', 1, 'https://ror.org/05rnt2n49 National Power (United Kingdom)'),
(61681, 'https://ror.org/01p4cs333', 'en', 1, 'https://ror.org/01p4cs333 Saskatoon Medical Imaging'),
(61682, 'https://ror.org/03vx7r377', 'en', 1, 'https://ror.org/03vx7r377 Retina Associates of Florida'),
(61683, 'https://ror.org/03vfc4p83', 'no_lang_code', 1, 'https://ror.org/03vfc4p83 Octapharma (United States)'),
(61684, 'https://ror.org/05157de90', 'en', 1, 'https://ror.org/05157de90 Philadelphia Eye Associates'),
(61685, 'https://ror.org/032e5zb24', 'en', 1, 'https://ror.org/032e5zb24 Save the Children'),
(61686, 'https://ror.org/04993ye45', 'en', 1, 'https://ror.org/04993ye45 Retina Vitreous Associates of Florida'),
(61687, 'https://ror.org/00xg0sp11', 'en', 1, 'https://ror.org/00xg0sp11 Phoenix Molecular Imaging'),
(61688, 'https://ror.org/02hrkdj18', 'no_lang_code', 1, 'https://ror.org/02hrkdj18 Willow Wood (United States)'),
(61689, 'https://ror.org/04hk0mm26', 'en', 1, 'https://ror.org/04hk0mm26 Phoenix Neurological Associates'),
(61690, 'https://ror.org/03r4ey572', 'no_lang_code', 1, 'https://ror.org/03r4ey572 Schweiger Dermatology Group (United States)'),
(61691, 'https://ror.org/057kz9b56', 'en', 1, 'https://ror.org/057kz9b56 Southern Oncology Specialists'),
(61692, 'https://ror.org/05f4jn380', 'no_lang_code', 1, 'https://ror.org/05f4jn380 Omni Med'),
(61693, 'https://ror.org/01n51hq73', 'en', 1, 'https://ror.org/01n51hq73 Self Regional Healthcare'),
(61694, 'https://ror.org/03yx5ta37', 'en', 1, 'https://ror.org/03yx5ta37 Richmond Behavioral Associates'),
(61695, 'https://ror.org/00zbyy251', 'en', 1, 'https://ror.org/00zbyy251 Southwest Women''s Oncology'),
(61696, 'https://ror.org/0135fer63', 'no_lang_code', 1, 'https://ror.org/0135fer63 Senju Pharmaceutical (United States)'),
(61697, 'https://ror.org/03twnzp51', 'en', 1, 'https://ror.org/03twnzp51 YMCA of Greater Vancouver'),
(61698, 'https://ror.org/05qvwyg13', 'de', 1, 'https://ror.org/05qvwyg13 Spitalzentrum Centre hospitalier Biel- Bienne'),
(61699, 'https://ror.org/02p0etp25', 'en', 1, 'https://ror.org/02p0etp25 St. Joseph Heritage Medical Group'),
(61700, 'https://ror.org/000crk757', 'en', 1, 'https://ror.org/000crk757 St. Vincent''s Birmingham'),
(61701, 'https://ror.org/050g5gp35', 'no_lang_code', 1, 'https://ror.org/050g5gp35 Premaitha Health (United Kingdom)'),
(61702, 'https://ror.org/05q4t9480', 'en', 1, 'https://ror.org/05q4t9480 Star Spine & Sport'),
(61703, 'https://ror.org/05vp7ha71', 'en', 1, 'https://ror.org/05vp7ha71 Thrombolysis in Myocardial Infarction Study Group');
INSERT INTO `rors` VALUES
(61704, 'https://ror.org/01e5m5282', 'no_lang_code', 1, 'https://ror.org/01e5m5282 Swedish Orphan Biovitrum (United States)'),
(61705, 'https://ror.org/00maba543', 'en', 1, 'https://ror.org/00maba543 Groupe suisse d''oncologie pédiatrique Gruppo svizzero di oncologia pediatrica Schweizer Pädiatrische Onkologie Gruppe Swiss Paediatric Oncology Group'),
(61706, 'https://ror.org/03h96m993', 'fr', 1, 'https://ror.org/03h96m993 Les Thermes d’Allevard'),
(61707, 'https://ror.org/03d5cyq12', 'en', 1, 'https://ror.org/03d5cyq12 TriWest Research Associates'),
(61708, 'https://ror.org/025t8a623', 'no_lang_code', 1, 'https://ror.org/025t8a623 StemGenex (United States)'),
(61709, 'https://ror.org/02p2ybt36', 'no_lang_code', 1, 'https://ror.org/02p2ybt36 Stryker (Japan)'),
(61710, 'https://ror.org/01e38mp30', 'en', 1, 'https://ror.org/01e38mp30 Surgical Associates of Neenah'),
(61711, 'https://ror.org/00qt5a094', 'en', 1, 'https://ror.org/00qt5a094 Tropical Gastroenterology & Nutrition group'),
(61712, 'https://ror.org/02rxx7m82', 'no_lang_code', 1, 'https://ror.org/02rxx7m82 Sewon Cellontech (South Korea)'),
(61713, 'https://ror.org/03ssybn81', 'en', 1, 'https://ror.org/03ssybn81 Synergy Health'),
(61714, 'https://ror.org/01csjxv16', 'no_lang_code', 1, 'https://ror.org/01csjxv16 Targeted Medical Pharma (United States)'),
(61715, 'https://ror.org/007rr9202', 'en', 1, 'https://ror.org/007rr9202 Utah Cancer Specialists'),
(61716, 'https://ror.org/01krbfc31', 'en', 1, 'https://ror.org/01krbfc31 Tennessee Cancer Specialists'),
(61717, 'https://ror.org/01r74wp43', 'no_lang_code', 1, 'https://ror.org/01r74wp43 Syneos Health (United States)'),
(61718, 'https://ror.org/0102aw075', 'en', 1, 'https://ror.org/0102aw075 Valley Health System'),
(61719, 'https://ror.org/00st8mg19', 'it', 1, 'https://ror.org/00st8mg19 L''organizzazione Ospedale di Civitanova M'),
(61720, 'https://ror.org/055papc77', 'en', 1, 'https://ror.org/055papc77 Tennessee Retina'),
(61721, 'https://ror.org/03754ky26', 'en', 1, 'https://ror.org/03754ky26 Tennessee Oncology'),
(61722, 'https://ror.org/04fj57991', 'en', 1, 'https://ror.org/04fj57991 Westside Medical Associates of Los Angeles'),
(61723, 'https://ror.org/01gsv1y98', 'no_lang_code', 1, 'https://ror.org/01gsv1y98 Vimta (India)'),
(61724, 'https://ror.org/03tbabt10', 'en', 1, 'https://ror.org/03tbabt10 Virginia Cancer Specialists'),
(61725, 'https://ror.org/02vv8px12', 'en', 1, 'https://ror.org/02vv8px12 Texas Dermatology and Laser Specialists'),
(61726, 'https://ror.org/03vb1w478', 'en', 1, 'https://ror.org/03vb1w478 Texas Digestive Disease Consultants'),
(61727, 'https://ror.org/00vhf1j84', 'en', 1, 'https://ror.org/00vhf1j84 Whitten Laser Eye'),
(61728, 'https://ror.org/0252twa85', 'en', 1, 'https://ror.org/0252twa85 Virtua Memorial Hospital'),
(61729, 'https://ror.org/00mystw63', 'en', 1, 'https://ror.org/00mystw63 Texas Plastic Surgery'),
(61730, 'https://ror.org/00gy3sh45', 'en', 1, 'https://ror.org/00gy3sh45 Virtua Voorhees Hospital'),
(61731, 'https://ror.org/04t6gkr49', 'en', 1, 'https://ror.org/04t6gkr49 Alliance for Canadian Health Outcomes Research in Diabetes'),
(61732, 'https://ror.org/03048zv53', 'en', 1, 'https://ror.org/03048zv53 Western Sky Medical Research'),
(61733, 'https://ror.org/02awhp844', 'en', 1, 'https://ror.org/02awhp844 Vision Specialists of Michigan'),
(61734, 'https://ror.org/020ay6p95', 'en', 1, 'https://ror.org/020ay6p95 Z Urology'),
(61735, 'https://ror.org/01dvqbe93', 'en', 1, 'https://ror.org/01dvqbe93 Children''s Health Council'),
(61736, 'https://ror.org/01st9qd69', 'de', 1, 'https://ror.org/01st9qd69 Vista Klinik'),
(61737, 'https://ror.org/059j7sj66', 'no_lang_code', 1, 'https://ror.org/059j7sj66 Wockhardt (United States)'),
(61738, 'https://ror.org/04vnjb193', 'en', 1, 'https://ror.org/04vnjb193 Vascular Interventional Advances'),
(61739, 'https://ror.org/00jemq805', 'en', 1, 'https://ror.org/00jemq805 World Vision International'),
(61740, 'https://ror.org/01ha8kc92', 'en', 1, 'https://ror.org/01ha8kc92 Waverly Hematology Oncology'),
(61741, 'https://ror.org/01fytb163', 'no_lang_code', 1, 'https://ror.org/01fytb163 Ciclo de Mutação (Brazil)'),
(61742, 'https://ror.org/0059chz26', 'no_lang_code', 1, 'https://ror.org/0059chz26 International Medical Research (Germany)'),
(61743, 'https://ror.org/038420j04', 'en', 1, 'https://ror.org/038420j04 Abalone Council Australia'),
(61744, 'https://ror.org/00e765c94', 'no_lang_code', 1, 'https://ror.org/00e765c94 Goolwa Pipi (Australia)'),
(61745, 'https://ror.org/03jh4jw93', 'en', 1, 'https://ror.org/03jh4jw93 CSIRO Health and Biosecurity'),
(61746, 'https://ror.org/05d3qwz48', 'no_lang_code', 1, 'https://ror.org/05d3qwz48 Honey & Fox (Australia)'),
(61747, 'https://ror.org/004myp730', 'en', 1, 'https://ror.org/004myp730 Northern Territory Seafood Council'),
(61748, 'https://ror.org/01saavf11', 'en', 1, 'https://ror.org/01saavf11 Australian Recreational Fishing Foundation'),
(61749, 'https://ror.org/002zcct17', 'en', 1, 'https://ror.org/002zcct17 Australian Rural Leadership Foundation'),
(61750, 'https://ror.org/013v77n27', 'no_lang_code', 1, 'https://ror.org/013v77n27 Australian Seafood Industries (Australia)'),
(61751, 'https://ror.org/01qx93189', 'en', 1, 'https://ror.org/01qx93189 Amateur Fishermen''s Association of the Northern Territory'),
(61752, 'https://ror.org/00wy8pn71', 'en', 1, 'https://ror.org/00wy8pn71 Aquaculture Council of Western Australia'),
(61753, 'https://ror.org/0286p2f78', 'en', 1, 'https://ror.org/0286p2f78 NZ Rock Lobster Industry Council'),
(61754, 'https://ror.org/0161ee609', 'en', 1, 'https://ror.org/0161ee609 Australian Southern Bluefin Tuna Industry Association'),
(61755, 'https://ror.org/05fp35w93', 'no_lang_code', 1, 'https://ror.org/05fp35w93 Ausvet (Australia)'),
(61756, 'https://ror.org/04k5a4r11', 'en', 1, 'https://ror.org/04k5a4r11 Futurefish Foundation'),
(61757, 'https://ror.org/03acet573', 'no_lang_code', 1, 'https://ror.org/03acet573 IC Independent Consulting (Australia)'),
(61758, 'https://ror.org/03aggr754', 'no_lang_code', 1, 'https://ror.org/03aggr754 Infofish (Australia)'),
(61759, 'https://ror.org/014m2qe90', 'no_lang_code', 1, 'https://ror.org/014m2qe90 Australian Aquaculture Support Services (Australia)'),
(61760, 'https://ror.org/049gpxk45', 'en', 1, 'https://ror.org/049gpxk45 OceanWatch Australia'),
(61761, 'https://ror.org/0481c6y41', 'en', 1, 'https://ror.org/0481c6y41 Australian Barramundi Farmers Association'),
(61762, 'https://ror.org/03ta38n35', 'en', 1, 'https://ror.org/03ta38n35 Inland Fisheries Service'),
(61763, 'https://ror.org/04tv9yw85', 'en', 1, 'https://ror.org/04tv9yw85 C-AID Consultants'),
(61764, 'https://ror.org/00tmrk624', 'en', 1, 'https://ror.org/00tmrk624 Australian Council of Prawn Fisheries'),
(61765, 'https://ror.org/02tb42851', 'en', 1, 'https://ror.org/02tb42851 Cairns Professional Game Fishing Association'),
(61766, 'https://ror.org/02n59hk56', 'en', 1, 'https://ror.org/02n59hk56 Australian Farm Institute'),
(61767, 'https://ror.org/03fcke922', 'en', 1, 'https://ror.org/03fcke922 Australian Institute of Food Science and Technology'),
(61768, 'https://ror.org/01h90nm51', 'en', 1, 'https://ror.org/01h90nm51 Marine Discovery Centre'),
(61769, 'https://ror.org/03zqjf227', 'en', 1, 'https://ror.org/03zqjf227 Panaquatic'),
(61770, 'https://ror.org/0037fca11', 'en', 1, 'https://ror.org/0037fca11 Australian Maritime and Fisheries Academy'),
(61771, 'https://ror.org/0505n3394', 'en', 1, 'https://ror.org/0505n3394 Pearl Producers Association'),
(61772, 'https://ror.org/05fmyxw97', 'no_lang_code', 1, 'https://ror.org/05fmyxw97 Fishwell Consulting (Australia)'),
(61773, 'https://ror.org/04x80tf13', 'en', 1, 'https://ror.org/04x80tf13 Recfish Australia'),
(61774, 'https://ror.org/054rg6027', 'en', 1, 'https://ror.org/054rg6027 Port Kennedy Association'),
(61775, 'https://ror.org/032fd8x63', 'en', 1, 'https://ror.org/032fd8x63 Primary Industries Education Foundation Australia'),
(61776, 'https://ror.org/05hx1v477', 'en', 1, 'https://ror.org/05hx1v477 Moreton Bay Seafood Industry Association'),
(61777, 'https://ror.org/05s2x3814', 'en', 1, 'https://ror.org/05s2x3814 Recfishwest'),
(61778, 'https://ror.org/00kgh8k48', 'en', 1, 'https://ror.org/00kgh8k48 Recreational Fishing Alliance of NSW'),
(61779, 'https://ror.org/0295j0z22', 'en', 1, 'https://ror.org/0295j0z22 Professional Fishermen’s Association'),
(61780, 'https://ror.org/03n17ds51', 'en', 1, 'https://ror.org/03n17ds51 Agriculture and Food'),
(61781, 'https://ror.org/01fjcp824', 'en', 1, 'https://ror.org/01fjcp824 Tasmania Mures'),
(61782, 'https://ror.org/03p14dc73', 'en', 1, 'https://ror.org/03p14dc73 Queensland Seafood Industry Association'),
(61783, 'https://ror.org/0267w9f76', 'en', 1, 'https://ror.org/0267w9f76 Rural Training Initiatives'),
(61784, 'https://ror.org/02hp35j69', 'en', 1, 'https://ror.org/02hp35j69 RDS Partners'),
(61785, 'https://ror.org/026px0m21', 'en', 1, 'https://ror.org/026px0m21 Spencer Gulf King Prawns'),
(61786, 'https://ror.org/04vw6de50', 'en', 1, 'https://ror.org/04vw6de50 Seafood South Australia'),
(61787, 'https://ror.org/04yqk3j23', 'en', 1, 'https://ror.org/04yqk3j23 Seafood Industry Victoria'),
(61788, 'https://ror.org/02yndaw76', 'no_lang_code', 1, 'https://ror.org/02yndaw76 Sydney Fish Market (Australia)'),
(61789, 'https://ror.org/01t96az37', 'en', 1, 'https://ror.org/01t96az37 Oysters South Australia'),
(61790, 'https://ror.org/013ebq793', 'it', 1, 'https://ror.org/013ebq793 Consorzio Interuniversitario Nazionale La Chimica Per L''Ambiente'),
(61791, 'https://ror.org/03qy1wr49', 'no_lang_code', 1, 'https://ror.org/03qy1wr49 Tasmanian Abalone Council (Australia)'),
(61792, 'https://ror.org/03sg89w32', 'en', 1, 'https://ror.org/03sg89w32 Western Australian Fishing Industry Council'),
(61793, 'https://ror.org/024jrfp78', 'en', 1, 'https://ror.org/024jrfp78 South Australian Sardine Industry Association'),
(61794, 'https://ror.org/01g1xp238', 'en', 1, 'https://ror.org/01g1xp238 Western Rock Lobster Council'),
(61795, 'https://ror.org/038tfar48', 'sq', 1, 'https://ror.org/038tfar48 Spitali Universitar Shefqet Ndroqi'),
(61796, 'https://ror.org/05fnerq37', 'en', 1, 'https://ror.org/05fnerq37 Parks and Wildlife Service'),
(61797, 'https://ror.org/016dnyj85', 'en', 1, 'https://ror.org/016dnyj85 Tasmanian Salmonid Growers Association'),
(61798, 'https://ror.org/00vc39d35', 'en', 1, 'https://ror.org/00vc39d35 South East Trawl Fishing Industry Association'),
(61799, 'https://ror.org/00f91fg22', 'en', 1, 'https://ror.org/00f91fg22 Tasmanian Seafood Industry Council'),
(61800, 'https://ror.org/006bc1e54', 'en', 1, 'https://ror.org/006bc1e54 Southern Fishermen Association'),
(61801, 'https://ror.org/02bzsgg26', 'en', 1, 'https://ror.org/02bzsgg26 Association of University Presses'),
(61802, 'https://ror.org/05y8mf384', 'it', 1, 'https://ror.org/05y8mf384 Centro Interuniversitario di Ricerca Per lo Sviluppo sostenibile'),
(61803, 'https://ror.org/038f5ab46', 'en', 1, 'https://ror.org/038f5ab46 University Colleges Australia'),
(61804, 'https://ror.org/025scfy30', 'no_lang_code', 1, 'https://ror.org/025scfy30 VivaTech (United States)'),
(61805, 'https://ror.org/055cpj147', 'it', 1, 'https://ror.org/055cpj147 Centro Interuniversitario di Ricerca sui Peptidi Bioattivi'),
(61806, 'https://ror.org/052414247', 'en', 1, 'https://ror.org/052414247 Centre for Studies in Economics and Finance'),
(61807, 'https://ror.org/03b8cqm18', 'it', 1, 'https://ror.org/03b8cqm18 Consorzio Interuniversitario Regionale Pugliese'),
(61808, 'https://ror.org/00qf73c06', 'it', 1, 'https://ror.org/00qf73c06 Associazione Istituzione Libera Università Nuorese'),
(61809, 'https://ror.org/02mywds70', 'it', 1, 'https://ror.org/02mywds70 Consorzio Interuniversitario Reattività Chimica e Catalisi'),
(61810, 'https://ror.org/0443rrm71', 'it', 1, 'https://ror.org/0443rrm71 Consorzio inter-Universitario per la previsione e la prevenzione dei Grandi RIschi'),
(61811, 'https://ror.org/00gdq8383', 'fr', 1, 'https://ror.org/00gdq8383 Alliance Université-Entreprise de Grenoble'),
(61812, 'https://ror.org/05t3agv77', 'en', 1, 'https://ror.org/05t3agv77 American University of Beirut New York Office'),
(61813, 'https://ror.org/03k2mbt67', 'it', 1, 'https://ror.org/03k2mbt67 Consorzio Universitario per l''Ateneo della Sicilia occidentale e del bacino del Mediterraneo UNISOM'),
(61814, 'https://ror.org/00jms8c74', 'no_lang_code', 1, 'https://ror.org/00jms8c74 Applied University Research (United States)'),
(61815, 'https://ror.org/015mpw953', 'es', 1, 'https://ror.org/015mpw953 Corporación Universitaria para el Desarrollo de Internet'),
(61816, 'https://ror.org/03t7h7x05', 'es', 1, 'https://ror.org/03t7h7x05 Asociación de Universidades Grupo Montevideo'),
(61817, 'https://ror.org/036d1z676', 'pt', 1, 'https://ror.org/036d1z676 Associação Rede de Universidades da Terceira Idade'),
(61818, 'https://ror.org/03vhd0091', 'en', 1, 'https://ror.org/03vhd0091 Alma'),
(61819, 'https://ror.org/02b3gtx40', 'it', 1, 'https://ror.org/02b3gtx40 Ente Regionale per il Diritto allo Studio Universitario del Piemonte'),
(61820, 'https://ror.org/0541h6s03', 'es', 1, 'https://ror.org/0541h6s03 Fundación Universitaria Iberoamericana'),
(61821, 'https://ror.org/04r4esr16', 'es', 1, 'https://ror.org/04r4esr16 Hospital Odontológico Universidad de Barcelona'),
(61822, 'https://ror.org/05wk1qp57', 'ro', 1, 'https://ror.org/05wk1qp57 Fundaţia pentru Formare Profesională şi Învăţământ Preuniversitar - Viitor'),
(61823, 'https://ror.org/03eyr3b88', 'es', 1, 'https://ror.org/03eyr3b88 Fundación Empresa-Universidad Gallega'),
(61824, 'https://ror.org/05nf6pg47', 'en', 1, 'https://ror.org/05nf6pg47 European Inter-University Association of Society, Science and Technology'),
(61825, 'https://ror.org/02y9p0566', 'es', 1, 'https://ror.org/02y9p0566 Centro Cultural de España en Malabo'),
(61826, 'https://ror.org/0278r4c85', 'en', 1, 'https://ror.org/0278r4c85 First Affiliated Hospital of Xinxiang Medical University'),
(61827, 'https://ror.org/03d6gdk92', 'sv', 1, 'https://ror.org/03d6gdk92 Folkuniversitetet'),
(61828, 'https://ror.org/04drdn069', 'fr', 1, 'https://ror.org/04drdn069 Presses Universitaires de France'),
(61829, 'https://ror.org/00cf1wm13', 'es', 1, 'https://ror.org/00cf1wm13 Conferencia de Rectores de las Universidades Españolas'),
(61830, 'https://ror.org/012738550', 'no_lang_code', 1, 'https://ror.org/012738550 INiTS (Austria)'),
(61831, 'https://ror.org/026g05v14', 'fr', 1, 'https://ror.org/026g05v14 Conseil Interuniversitaire de la Communauté Française de Belgique'),
(61832, 'https://ror.org/04pexwy87', 'it', 1, 'https://ror.org/04pexwy87 Consorzio Interuniversitario Nazionale EnSiEL Consorzio Interuniversitario Nazionale per Energia e Sistemi Elettrici'),
(61833, 'https://ror.org/03hdhwe72', 'it', 1, 'https://ror.org/03hdhwe72 Consorzio Interuniversitario Nazionale per la Bio-Oncologia'),
(61834, 'https://ror.org/01kq0a723', 'it', 1, 'https://ror.org/01kq0a723 CINFAI Consorzio Interuniversitario Nazionale per la Fisica delle Atmosfere e delle Idrosfere'),
(61835, 'https://ror.org/03j503z69', 'fr', 1, 'https://ror.org/03j503z69 Institut Interuniversitaire pour les Relations entre l''Europe l''Amérique Latine et les Caraïbes'),
(61836, 'https://ror.org/02f3rf591', 'en', 1, 'https://ror.org/02f3rf591 Russian Venture Company Российская венчурная компания'),
(61837, 'https://ror.org/03rshf720', 'de', 1, 'https://ror.org/03rshf720 Innovationsgesellschaft Technische Universität Braunschweig'),
(61838, 'https://ror.org/05110bn15', 'en', 1, 'https://ror.org/05110bn15 Euskoiker Foundation'),
(61839, 'https://ror.org/03jmcnx26', 'en', 1, 'https://ror.org/03jmcnx26 Southern Shark Industry Alliance'),
(61840, 'https://ror.org/02svxyd97', 'en', 1, 'https://ror.org/02svxyd97 League of European Research Universities'),
(61841, 'https://ror.org/02j3yct66', 'en', 1, 'https://ror.org/02j3yct66 Interuniversity Graduate School of Psychometrics and Sociometrics'),
(61842, 'https://ror.org/01n4hxm67', 'en', 1, 'https://ror.org/01n4hxm67 Interuniversitair Centrum voor Onderwijswetenschappen Interuniversity Center for Educational Research'),
(61843, 'https://ror.org/03t7mrd69', 'en', 1, 'https://ror.org/03t7mrd69 Quality Assurance Netherlands Universities'),
(61844, 'https://ror.org/04dammg70', 'en', 1, 'https://ror.org/04dammg70 Penza State Technological University'),
(61845, 'https://ror.org/052q1fv39', 'it', 1, 'https://ror.org/052q1fv39 Istituto Nazionale per le Ricerche Cardiovascolari'),
(61846, 'https://ror.org/04q2cc503', 'en', 1, 'https://ror.org/04q2cc503 Network of the Universities from the Capitals of Europe Réseau des universités des capitales de l''Europe'),
(61847, 'https://ror.org/02s28z540', 'en', 1, 'https://ror.org/02s28z540 Nacionalna i univerzitetska biblioteka Bosne i Hercegovine National and University Library of Bosnia and Herzegovina Национална и универзитетска библиотека Босне и Херцеговине'),
(61848, 'https://ror.org/05p20q348', 'pt', 1, 'https://ror.org/05p20q348 Sindicato Nacional dos Professores Licenciados pelos Politécnicos e Universidades'),
(61849, 'https://ror.org/00d36eq66', 'en', 1, 'https://ror.org/00d36eq66 National and University Library "St. Kliment of Ohrid" Национална и универзитетска библиотека „Св. Климент Охридски “'),
(61850, 'https://ror.org/00qpnm303', 'no_lang_code', 1, 'https://ror.org/00qpnm303 Phranakhon Rajabhat University'),
(61851, 'https://ror.org/05xzsm645', 'en', 1, 'https://ror.org/05xzsm645 Trung Vuong University Đại học Trưng Vương'),
(61852, 'https://ror.org/029ted261', 'ga', 1, 'https://ror.org/029ted261 Sabhal Mòr Ostaig'),
(61853, 'https://ror.org/04gg6jm72', 'en', 1, 'https://ror.org/04gg6jm72 European Center for Peace and Development'),
(61854, 'https://ror.org/02v2jvk84', 'no_lang_code', 1, 'https://ror.org/02v2jvk84 Univa (United States)'),
(61855, 'https://ror.org/03t4faz67', 'en', 1, 'https://ror.org/03t4faz67 Russell Group'),
(61856, 'https://ror.org/01txy2515', 'no_lang_code', 1, 'https://ror.org/01txy2515 Greenyard Fresh (Germany)'),
(61857, 'https://ror.org/005vj6496', 'no_lang_code', 1, 'https://ror.org/005vj6496 Greenyard Fresh (United Kingdom)'),
(61858, 'https://ror.org/02kaggc24', 'no_lang_code', 1, 'https://ror.org/02kaggc24 Univercell-Biosolutions (France)'),
(61859, 'https://ror.org/03gtaf306', 'no_lang_code', 1, 'https://ror.org/03gtaf306 Univerexport (Serbia)'),
(61860, 'https://ror.org/04cyd9q39', 'en', 1, 'https://ror.org/04cyd9q39 Universities and Colleges Admissions Service'),
(61861, 'https://ror.org/01hzh7w96', 'en', 1, 'https://ror.org/01hzh7w96 University Industry Demonstration Partnership'),
(61862, 'https://ror.org/0114pns79', 'fr', 1, 'https://ror.org/0114pns79 Université du Travail Paul Pastur'),
(61863, 'https://ror.org/05abkk781', 'en', 1, 'https://ror.org/05abkk781 Universities Scotland'),
(61864, 'https://ror.org/00mmfs450', 'en', 1, 'https://ror.org/00mmfs450 Universities UK'),
(61865, 'https://ror.org/042pj0j50', 'fr', 1, 'https://ror.org/042pj0j50 Agence Universitaire de la Francophonie'),
(61866, 'https://ror.org/05kbg7k66', 'en', 1, 'https://ror.org/05kbg7k66 Berkeley Art Museum and Pacific Film Archive'),
(61867, 'https://ror.org/02m6eba18', 'en', 1, 'https://ror.org/02m6eba18 Mountview Theatre School'),
(61868, 'https://ror.org/03q1wc761', 'fr', 1, 'https://ror.org/03q1wc761 Université Jean Lorougnon Guédé'),
(61869, 'https://ror.org/03jmahf97', 'en', 1, 'https://ror.org/03jmahf97 Institut de Recherche de l''Agriculture Biologique Research Institute of Organic Agriculture'),
(61870, 'https://ror.org/01a51dp76', 'en', 1, 'https://ror.org/01a51dp76 University High School'),
(61871, 'https://ror.org/01wywr782', 'en', 1, 'https://ror.org/01wywr782 Institut National des Radioéléments Institute for Radioelements'),
(61872, 'https://ror.org/019q9za18', 'es', 1, 'https://ror.org/019q9za18 Instituto de Tecnología Cerámica'),
(61873, 'https://ror.org/04318pf64', 'es', 1, 'https://ror.org/04318pf64 Instituto Nicaraguense de Pesca y Acuicultura'),
(61874, 'https://ror.org/04erjjt33', 'en', 1, 'https://ror.org/04erjjt33 Trường Đại học Lao Động - Xã Hội University of Labor and Social Affairs'),
(61875, 'https://ror.org/029qzhb32', 'en', 1, 'https://ror.org/029qzhb32 Zvitambo Institute for Maternal and Child Health Research'),
(61876, 'https://ror.org/0319y6677', 'en', 1, 'https://ror.org/0319y6677 Stafford University'),
(61877, 'https://ror.org/038zxmy79', 'en', 1, 'https://ror.org/038zxmy79 University Vocational Awards Council'),
(61878, 'https://ror.org/04c1ham66', 'bs', 1, 'https://ror.org/04c1ham66 Univerzitet Za Poslovne Studije'),
(61879, 'https://ror.org/058tkvp17', 'en', 1, 'https://ror.org/058tkvp17 University Resident Theatre Association'),
(61880, 'https://ror.org/019bv8923', 'en', 1, 'https://ror.org/019bv8923 University Specialized Hospital for Active Treatment of Endocrinology Университетска специализирана болница за активно лечение по ендокринология'),
(61881, 'https://ror.org/050ept838', 'en', 1, 'https://ror.org/050ept838 Road Safety Institute Panos Mylonas Ινστιτούτο Οδικής Ασφάλειας "Πάνος Μυλωνάς"'),
(61882, 'https://ror.org/02nb5ap42', 'en', 1, 'https://ror.org/02nb5ap42 Deutsche Evangelische Institut für Altertumswissenschaft German Protestant Institute of Archaeology'),
(61883, 'https://ror.org/01ckbyj78', 'en', 1, 'https://ror.org/01ckbyj78 Foundation Institute for Regional Development Fundacja Instytut Rozwoju Regionalnego'),
(61884, 'https://ror.org/01tdaqj45', 'de', 1, 'https://ror.org/01tdaqj45 FWU Institut für Film und Bild in Wissenschaft und Unterricht'),
(61885, 'https://ror.org/05ksnhc43', 'en', 1, 'https://ror.org/05ksnhc43 Physical-Chemical Institute O. Bogatsky Фізико-хімічний інститут ім. О.В. Богатського НАН України'),
(61886, 'https://ror.org/02xffg312', 'en', 1, 'https://ror.org/02xffg312 Buildings Performance Institute Europe'),
(61887, 'https://ror.org/001m64s20', 'en', 1, 'https://ror.org/001m64s20 Bulgarian Antarctic Institute БЪЛГАРСКИ АНТАРКТИЧЕСКИ ИНСТИТУТ'),
(61888, 'https://ror.org/02x2pnc94', 'no_lang_code', 1, 'https://ror.org/02x2pnc94 Advanced Sports Installations (Estonia)'),
(61889, 'https://ror.org/02bt8sv61', 'en', 1, 'https://ror.org/02bt8sv61 Cacapon Institute'),
(61890, 'https://ror.org/021b7gr78', 'en', 1, 'https://ror.org/021b7gr78 The Africa-America Institute'),
(61891, 'https://ror.org/00dehxn63', 'en', 1, 'https://ror.org/00dehxn63 Canadian Fasteners Institute'),
(61892, 'https://ror.org/02c02vy89', 'en', 1, 'https://ror.org/02c02vy89 African Institute for Mathematical Sciences Taasisi ya Afrika ya Sayansi ya Hisabati'),
(61893, 'https://ror.org/05v57yz73', 'en', 1, 'https://ror.org/05v57yz73 Against Abuse'),
(61894, 'https://ror.org/01eas6g83', 'en', 1, 'https://ror.org/01eas6g83 Canadian Precast Prestressed Concrete Institute'),
(61895, 'https://ror.org/01bqcrq32', 'en', 1, 'https://ror.org/01bqcrq32 Against Violence & Abuse'),
(61896, 'https://ror.org/05we0sj60', 'en', 1, 'https://ror.org/05we0sj60 Food Research and Development Institute Институт за изследване и развитие на храните'),
(61897, 'https://ror.org/005ajjs97', 'en', 1, 'https://ror.org/005ajjs97 Caribbean Agricultural Research and Development Institute'),
(61898, 'https://ror.org/050dmq329', 'en', 1, 'https://ror.org/050dmq329 The AIDS Institute'),
(61899, 'https://ror.org/04dtt7385', 'en', 1, 'https://ror.org/04dtt7385 The Casco Bay Assyriological Institute'),
(61900, 'https://ror.org/01fhhqb25', 'en', 1, 'https://ror.org/01fhhqb25 Albert Einstein Academy'),
(61901, 'https://ror.org/03dpet089', 'en', 1, 'https://ror.org/03dpet089 Organisation of European Cancer Institutes'),
(61902, 'https://ror.org/04hg8qq17', 'en', 1, 'https://ror.org/04hg8qq17 Royal Incorporation of Architects in Scotland'),
(61903, 'https://ror.org/032mk7q57', 'en', 1, 'https://ror.org/032mk7q57 American Institute for Afghanistan Studies'),
(61904, 'https://ror.org/04d42nn29', 'no_lang_code', 1, 'https://ror.org/04d42nn29 DWA (Netherlands)'),
(61905, 'https://ror.org/054mtjm83', 'en', 1, 'https://ror.org/054mtjm83 NatureBridge'),
(61906, 'https://ror.org/007nc6623', 'en', 1, 'https://ror.org/007nc6623 The American Law Institute'),
(61907, 'https://ror.org/030f3bz67', 'en', 1, 'https://ror.org/030f3bz67 Amsterdam Institute for International Development'),
(61908, 'https://ror.org/00ppzj833', 'en', 1, 'https://ror.org/00ppzj833 The Applied Research Institute - Jerusalem معهد الابحاث التطبيقية - القدس'),
(61909, 'https://ror.org/03jqhsm88', 'en', 1, 'https://ror.org/03jqhsm88 Gaidar Institute for Economic Policy Институт экономической политики имени Е. Т. Гайдара'),
(61910, 'https://ror.org/001g4fr45', 'nl', 1, 'https://ror.org/001g4fr45 Het Nieuwe Instituut'),
(61911, 'https://ror.org/02je6ph26', 'fr', 1, 'https://ror.org/02je6ph26 Institut Paul Bocuse'),
(61912, 'https://ror.org/01n8pm979', 'no_lang_code', 1, 'https://ror.org/01n8pm979 Insta (Finland)'),
(61913, 'https://ror.org/03kzw7k63', 'no_lang_code', 1, 'https://ror.org/03kzw7k63 Insta (Germany)'),
(61914, 'https://ror.org/04y6cx804', 'en', 1, 'https://ror.org/04y6cx804 EGMONT – The Royal Institute for International Relations'),
(61915, 'https://ror.org/043gdn302', 'en', 1, 'https://ror.org/043gdn302 Association of Ethiopian Microfinance Institutions የኢትዮጵያ ማይክሮ ፋይናንስ ተቋማት ማህበር'),
(61916, 'https://ror.org/0440bgy37', 'no_lang_code', 1, 'https://ror.org/0440bgy37 EHI Retail Institute (Germany)'),
(61917, 'https://ror.org/01n69pc33', 'de', 1, 'https://ror.org/01n69pc33 Instand'),
(61918, 'https://ror.org/05cxhm587', 'en', 1, 'https://ror.org/05cxhm587 Channel Islands Marine & Wildlife Institute'),
(61919, 'https://ror.org/05yh4az66', 'no_lang_code', 1, 'https://ror.org/05yh4az66 Instant Advice (Sweden)'),
(61920, 'https://ror.org/026v7sm97', 'en', 1, 'https://ror.org/026v7sm97 Eidos Institute'),
(61921, 'https://ror.org/02tr9yc56', 'en', 1, 'https://ror.org/02tr9yc56 Horizon House'),
(61922, 'https://ror.org/00ftze589', 'en', 1, 'https://ror.org/00ftze589 Einstein Institute of Science'),
(61923, 'https://ror.org/02hfr4n62', 'no_lang_code', 1, 'https://ror.org/02hfr4n62 Hamburg Port Consulting (Germany)'),
(61924, 'https://ror.org/05acg0e96', 'no_lang_code', 1, 'https://ror.org/05acg0e96 High Speed Sustainable Manufacturing Institute (United Kingdom)'),
(61925, 'https://ror.org/026d46e20', 'en', 1, 'https://ror.org/026d46e20 Chartered Institute of Environmental Health'),
(61926, 'https://ror.org/01nhpc584', 'en', 1, 'https://ror.org/01nhpc584 Huther Doyle'),
(61927, 'https://ror.org/02zw96388', 'en', 1, 'https://ror.org/02zw96388 Chartered Institute of Housing'),
(61928, 'https://ror.org/00np5jz23', 'en', 1, 'https://ror.org/00np5jz23 Chartered Institute of Taxation'),
(61929, 'https://ror.org/00dav3y17', 'nl', 1, 'https://ror.org/00dav3y17 Huygen Installatie Adviseurs'),
(61930, 'https://ror.org/04xer1p89', 'en', 1, 'https://ror.org/04xer1p89 Austrian Standards Österreichisches Normungsinstitut'),
(61931, 'https://ror.org/035ysxq78', 'sl', 1, 'https://ror.org/035ysxq78 Energetska agencija za Podravje Energy Agency of Podravje'),
(61932, 'https://ror.org/04mhcqm57', 'en', 1, 'https://ror.org/04mhcqm57 QMI Solutions'),
(61933, 'https://ror.org/05v6ze002', 'de', 1, 'https://ror.org/05v6ze002 Energieinstitut Vorarlberg'),
(61934, 'https://ror.org/049a2sy14', 'en', 1, 'https://ror.org/049a2sy14 Chautauqua Institution'),
(61935, 'https://ror.org/049skrn36', 'en', 1, 'https://ror.org/049skrn36 Baltic Institute of Social Sciences Baltijas Sociālo zinātņu institūts'),
(61936, 'https://ror.org/01ezxj338', 'en', 1, 'https://ror.org/01ezxj338 TAFE Queensland Gold Coast'),
(61937, 'https://ror.org/05g0bc010', 'en', 1, 'https://ror.org/05g0bc010 Baltic Institute of Advanced Technology Baltijos pažangių technologijų institutas'),
(61938, 'https://ror.org/03e9v4151', 'en', 1, 'https://ror.org/03e9v4151 I4CE – Institute for Climate Economics'),
(61939, 'https://ror.org/04yw4y185', 'en', 1, 'https://ror.org/04yw4y185 Entrada Institute'),
(61940, 'https://ror.org/02vfq9e70', 'en', 1, 'https://ror.org/02vfq9e70 Bangladesh Institute of ICT in Development উন্নয়ন আইসিটি বাংলাদেশ ইনস্টিটিউট'),
(61941, 'https://ror.org/0352fvv75', 'de', 1, 'https://ror.org/0352fvv75 Institut für Arbeitsmedizin, Sicherheitstechnik und Ergonomie'),
(61942, 'https://ror.org/039rx1821', 'no_lang_code', 1, 'https://ror.org/039rx1821 Institut für Angewandte Produktions-Technologie (Germany)'),
(61943, 'https://ror.org/03b7av255', 'en', 1, 'https://ror.org/03b7av255 CMC Research Institutes'),
(61944, 'https://ror.org/04w19j463', 'en', 1, 'https://ror.org/04w19j463 European Alliance Against Depression'),
(61945, 'https://ror.org/05wbxb284', 'de', 1, 'https://ror.org/05wbxb284 Bifa Umweltinstitut'),
(61946, 'https://ror.org/05ttdgs63', 'en', 1, 'https://ror.org/05ttdgs63 Heilbronn Institute for Mathematical Research'),
(61947, 'https://ror.org/05vqf7304', 'en', 1, 'https://ror.org/05vqf7304 Panhellenic Confederation of Unions of Agricultural Cooperatives Πανελλήνια Συνομοσπονδία Ενώσεων Αγροτικών Συνεταιρισμών'),
(61948, 'https://ror.org/03yqjpf13', 'en', 1, 'https://ror.org/03yqjpf13 Icelandic Institute for Intelligent Machines'),
(61949, 'https://ror.org/03gq7nj97', 'en', 1, 'https://ror.org/03gq7nj97 Community Action for Safe Alternatives'),
(61950, 'https://ror.org/038wz3345', 'en', 1, 'https://ror.org/038wz3345 European Association of Development Research and Training Institutes association Européenne des Instituts de Recherche et de Formation en Matière de Développement'),
(61951, 'https://ror.org/05h9ndr48', 'en', 1, 'https://ror.org/05h9ndr48 Institute Of Historic Building Conservation'),
(61952, 'https://ror.org/00ggq9934', 'en', 1, 'https://ror.org/00ggq9934 European Conference of Transport Research Institutes'),
(61953, 'https://ror.org/01ber0266', 'fr', 1, 'https://ror.org/01ber0266 Institut D’Eco-Pédagogie'),
(61954, 'https://ror.org/00540tm93', 'en', 1, 'https://ror.org/00540tm93 Conservative Institute of M. R. Štefánik Konzervatívny inštitút M. R. Štefánika'),
(61955, 'https://ror.org/05kemy048', 'en', 1, 'https://ror.org/05kemy048 European Forest Institute'),
(61956, 'https://ror.org/04ng8qp45', 'pt', 1, 'https://ror.org/04ng8qp45 Instituto da Habitação e da Reabilitação Urbana'),
(61957, 'https://ror.org/043qm9c80', 'es', 1, 'https://ror.org/043qm9c80 Instituto tecnológico de Matemática Industrial'),
(61958, 'https://ror.org/01r0fjf28', 'en', 1, 'https://ror.org/01r0fjf28 European Institute of Education and Social Policy'),
(61959, 'https://ror.org/01j6bp769', 'en', 1, 'https://ror.org/01j6bp769 European Network of Building Research Institutes'),
(61960, 'https://ror.org/0536ax941', 'en', 1, 'https://ror.org/0536ax941 Copenhagen Institute of Interaction Design'),
(61961, 'https://ror.org/00ykfqt39', 'en', 1, 'https://ror.org/00ykfqt39 European Nuclear Safety Training & Tutoring Institute'),
(61962, 'https://ror.org/01ctr9c93', 'en', 1, 'https://ror.org/01ctr9c93 European Science Communication Institute'),
(61963, 'https://ror.org/02w083059', 'en', 1, 'https://ror.org/02w083059 Immigrant Institute Immigrant-institutet'),
(61964, 'https://ror.org/03rywge40', 'no_lang_code', 1, 'https://ror.org/03rywge40 Beijing Institute of Architectural Design (China)'),
(61965, 'https://ror.org/01qe70573', 'en', 1, 'https://ror.org/01qe70573 Families and Work Institute'),
(61966, 'https://ror.org/00gxft621', 'en', 1, 'https://ror.org/00gxft621 Belgian Welding Institute Belgisch Instituut voor Lastechniek'),
(61967, 'https://ror.org/041azcz03', 'en', 1, 'https://ror.org/041azcz03 Cultural Heritage & Education'),
(61968, 'https://ror.org/0516brw47', 'en', 1, 'https://ror.org/0516brw47 Indian Institute of Wheat and Barley Research भारतीय गेहूं और जौ अनुसंधान संस्थान'),
(61969, 'https://ror.org/00g55y949', 'no_lang_code', 1, 'https://ror.org/00g55y949 BGI Europe (Denmark)'),
(61970, 'https://ror.org/0198za406', 'en', 1, 'https://ror.org/0198za406 Palm Research Center Pusat Penelitian Kelapa Sawit'),
(61971, 'https://ror.org/00hn6vp12', 'no_lang_code', 1, 'https://ror.org/00hn6vp12 Indutherm (Spain)'),
(61972, 'https://ror.org/01j3dkq17', 'fr', 1, 'https://ror.org/01j3dkq17 Institut de Recherches en Ingénierie des Surfaces'),
(61973, 'https://ror.org/007ht4b44', 'en', 1, 'https://ror.org/007ht4b44 Financial Services Institute of Australasia'),
(61974, 'https://ror.org/05nm1mt28', 'de', 1, 'https://ror.org/05nm1mt28 DBI - Gastechnologisches Institut'),
(61975, 'https://ror.org/025jpkh15', 'fr', 1, 'https://ror.org/025jpkh15 Institut Eco-Conseil'),
(61976, 'https://ror.org/05b9wad22', 'en', 1, 'https://ror.org/05b9wad22 Flint Institute Of Arts'),
(61977, 'https://ror.org/03gh3xj41', 'en', 1, 'https://ror.org/03gh3xj41 Institut ekonomskih nauka Institute of Economic Sciences'),
(61978, 'https://ror.org/05p0jfk72', 'no_lang_code', 1, 'https://ror.org/05p0jfk72 Infas Institut für Angewandte Sozialwissenschaft (Germany)'),
(61979, 'https://ror.org/04qn48008', 'no_lang_code', 1, 'https://ror.org/04qn48008 BioSense Institute'),
(61980, 'https://ror.org/00ad1c858', 'no_lang_code', 1, 'https://ror.org/00ad1c858 Botswana Vaccine Institute (Botswana)'),
(61981, 'https://ror.org/02gf6fa33', 'en', 1, 'https://ror.org/02gf6fa33 Forschungsinstitut für Musiktheater Research Institute for Music Theater Studies'),
(61982, 'https://ror.org/029drer02', 'de', 1, 'https://ror.org/029drer02 Institut für Chemo- und Biosensorik'),
(61983, 'https://ror.org/05rgt3j80', 'en', 1, 'https://ror.org/05rgt3j80 International Institute of Refrigeration'),
(61984, 'https://ror.org/02h91ww72', 'en', 1, 'https://ror.org/02h91ww72 Institute for Research and Innovation in Social Services'),
(61985, 'https://ror.org/03gsqqb61', 'de', 1, 'https://ror.org/03gsqqb61 Institut für Soziale Infrastruktur'),
(61986, 'https://ror.org/01qdggq75', 'cs', 1, 'https://ror.org/01qdggq75 Institut Restaurování a Konzervačních Technik'),
(61987, 'https://ror.org/046ra5d44', 'en', 1, 'https://ror.org/046ra5d44 Institut für angewandte Bauinformatik Institute of Applied Building Informatics'),
(61988, 'https://ror.org/04e3xe586', 'fr', 1, 'https://ror.org/04e3xe586 Institut National d''Excellence en Santé et en Services Sociaux'),
(61989, 'https://ror.org/03b68tz43', 'en', 1, 'https://ror.org/03b68tz43 Institut für Bau- Umwelt- und Solarforschung Institute for Construction, Environmental and Solar Research'),
(61990, 'https://ror.org/02936ek65', 'fr', 1, 'https://ror.org/02936ek65 Institut Pierre Vernier'),
(61991, 'https://ror.org/04rafa332', 'en', 1, 'https://ror.org/04rafa332 Institut za tehnologiju nuklearnih i drugih mineralnih sirovina Institute for Technology of Nuclear and other Mineral Raw Materials'),
(61992, 'https://ror.org/01dxqkr82', 'en', 1, 'https://ror.org/01dxqkr82 Institute of Biophysics and Biomedical Engineering Институт по биофизика и биомедицинско инженерство'),
(61993, 'https://ror.org/00fr2wv68', 'en', 1, 'https://ror.org/00fr2wv68 "Professor Tsvetan Lazarov" Defence Institute'),
(61994, 'https://ror.org/041v5wj47', 'en', 1, 'https://ror.org/041v5wj47 Institute of Mineralogy, Geochemistry and Crystallochemistry of Rare Elements Институт минералогии и геохимии редких элементов'),
(61995, 'https://ror.org/04w3zk015', 'no_lang_code', 1, 'https://ror.org/04w3zk015 IDEXX Laboratories (France)'),
(61996, 'https://ror.org/03q1bec86', 'en', 1, 'https://ror.org/03q1bec86 Slovak Governance Institute'),
(61997, 'https://ror.org/02p5pfd82', 'pt', 1, 'https://ror.org/02p5pfd82 Instituto de Gestão Financeira e Equipamentos da Justiça'),
(61998, 'https://ror.org/032cggj38', 'en', 1, 'https://ror.org/032cggj38 Institute of Alcohol Studies'),
(61999, 'https://ror.org/03zrdpv47', 'en', 1, 'https://ror.org/03zrdpv47 Institute of Molecular Biology and Biotechnology'),
(62000, 'https://ror.org/05ck6jr09', 'de', 1, 'https://ror.org/05ck6jr09 Universum Bremen'),
(62001, 'https://ror.org/045pm7d82', 'en', 1, 'https://ror.org/045pm7d82 Peace Action, Training and Research Institute of Romania'),
(62002, 'https://ror.org/021scha67', 'en', 1, 'https://ror.org/021scha67 Institute of Biological Problems of the North Институт биологических проблем Севера ДВО'),
(62003, 'https://ror.org/03t4ypp04', 'es', 1, 'https://ror.org/03t4ypp04 Instituto de Medicina Genómica'),
(62004, 'https://ror.org/05fz3xt27', 'en', 1, 'https://ror.org/05fz3xt27 Institute of Polymer Materials and Technologies Институт физиологии растений, генетики и биоинженерии'),
(62005, 'https://ror.org/00q03be40', 'fr', 1, 'https://ror.org/00q03be40 L’Institut Wallon de l’Évaluation, de la Prospective et de la Statistique'),
(62006, 'https://ror.org/017k7p668', 'en', 1, 'https://ror.org/017k7p668 Institute of Public Affairs Instytut Spraw Publicznych'),
(62007, 'https://ror.org/000372389', 'en', 1, 'https://ror.org/000372389 Intellectual Property Institute'),
(62008, 'https://ror.org/04a3nbd69', 'en', 1, 'https://ror.org/04a3nbd69 Institut za jadranske kulture i melioraciju krša Institute for Adriatic Crops and Karst Reclamation'),
(62009, 'https://ror.org/01em1bx15', 'no_lang_code', 1, 'https://ror.org/01em1bx15 Inston (United States)'),
(62010, 'https://ror.org/00nhtf127', 'no_lang_code', 1, 'https://ror.org/00nhtf127 InStream Fisheries Research (Canada)'),
(62011, 'https://ror.org/05gjkvy96', 'en', 1, 'https://ror.org/05gjkvy96 Institute of Cultural Affairs'),
(62012, 'https://ror.org/036xccj73', 'en', 1, 'https://ror.org/036xccj73 Institute for Research and Development “Utrip” Inštitut za raziskave in razvoj "Utrip"'),
(62013, 'https://ror.org/050w2w956', 'no_lang_code', 1, 'https://ror.org/050w2w956 inStream Media (United States)'),
(62014, 'https://ror.org/02vj92h59', 'en', 1, 'https://ror.org/02vj92h59 IAM RoadSmart'),
(62015, 'https://ror.org/041gbt667', 'en', 1, 'https://ror.org/041gbt667 Institute of Semitic Studies'),
(62016, 'https://ror.org/030v00e77', 'en', 1, 'https://ror.org/030v00e77 Institute for the International Education of Students'),
(62017, 'https://ror.org/00rv22c87', 'de', 1, 'https://ror.org/00rv22c87 ift Rosenheim'),
(62018, 'https://ror.org/00f23qy62', 'en', 1, 'https://ror.org/00f23qy62 Institute for Bulgarian Language Институт за български език'),
(62019, 'https://ror.org/02mts0a81', 'en', 1, 'https://ror.org/02mts0a81 Institut de Recherches Sociales Internationales Institute for International Social Research'),
(62020, 'https://ror.org/03cdkd641', 'en', 1, 'https://ror.org/03cdkd641 Institute of Social and Economic Studies of Population'),
(62021, 'https://ror.org/04ye58e76', 'pl', 1, 'https://ror.org/04ye58e76 Instytut Europy Środkowo-Wschodniej'),
(62022, 'https://ror.org/00vaeh811', 'en', 1, 'https://ror.org/00vaeh811 Institute for Environmental Security'),
(62023, 'https://ror.org/011fdmv87', 'no_lang_code', 1, 'https://ror.org/011fdmv87 InSysBio (Russia) Институт системной биологии'),
(62024, 'https://ror.org/05v384f19', 'pt', 1, 'https://ror.org/05v384f19 Instituto dos Vinhos do Douro e Porto'),
(62025, 'https://ror.org/021a9n650', 'en', 1, 'https://ror.org/021a9n650 Institute of Technology and Development Foundation'),
(62026, 'https://ror.org/003wpag88', 'es', 1, 'https://ror.org/003wpag88 Instituto Geofísico de la Escuela Politécnica Nacional'),
(62027, 'https://ror.org/025vxa670', 'es', 1, 'https://ror.org/025vxa670 Instituto Interamericano de Cooperación para la Agricultura'),
(62028, 'https://ror.org/05cctmc18', 'en', 1, 'https://ror.org/05cctmc18 Institute of Transport and Communications Институт по транспорт и комуникации'),
(62029, 'https://ror.org/03ypsgm65', 'en', 1, 'https://ror.org/03ypsgm65 Institute of Information Technologies ИНСТИТУТ ПО ИНФОРМАЦИОННИ ТЕХНОЛОГИИ'),
(62030, 'https://ror.org/00qrrpk64', 'en', 1, 'https://ror.org/00qrrpk64 International Health Central American Institute Foundation'),
(62031, 'https://ror.org/01g8e7412', 'es', 1, 'https://ror.org/01g8e7412 Instituto Interamericano de Cooperación para la Agricultura'),
(62032, 'https://ror.org/01t3xs363', 'en', 1, 'https://ror.org/01t3xs363 Institute for Governance & Sustainable Development'),
(62033, 'https://ror.org/00fr05644', 'en', 1, 'https://ror.org/00fr05644 Institute for International Economic and Political Studies Институт международных экономических и политических исследований'),
(62034, 'https://ror.org/01tjqkz09', 'en', 1, 'https://ror.org/01tjqkz09 Institute for Government'),
(62035, 'https://ror.org/03ppy8d91', 'en', 1, 'https://ror.org/03ppy8d91 International Institute for Mesopotamian Area Studies'),
(62036, 'https://ror.org/00xms2q31', 'en', 1, 'https://ror.org/00xms2q31 Institute of International Visual Arts'),
(62037, 'https://ror.org/02kk3jn69', 'en', 1, 'https://ror.org/02kk3jn69 Institute of Women and Ethnic Studies'),
(62038, 'https://ror.org/00142p479', 'en', 1, 'https://ror.org/00142p479 Institute for Human Development'),
(62039, 'https://ror.org/043z96f51', 'en', 1, 'https://ror.org/043z96f51 International League Against Epilepsy'),
(62040, 'https://ror.org/04cykn118', 'es', 1, 'https://ror.org/04cykn118 Instituto Mayor Campesino'),
(62041, 'https://ror.org/025kvpn26', 'en', 1, 'https://ror.org/025kvpn26 International Institute for Humanistic Studies'),
(62042, 'https://ror.org/057wrv854', 'en', 1, 'https://ror.org/057wrv854 International Minerals Innovation Institute'),
(62043, 'https://ror.org/05hte8b97', 'en', 1, 'https://ror.org/05hte8b97 Institute on Social Theory and Dynamics 社会理論・動態研究所'),
(62044, 'https://ror.org/050wsc124', 'en', 1, 'https://ror.org/050wsc124 Institute of Licensing'),
(62045, 'https://ror.org/04hc7z719', 'en', 1, 'https://ror.org/04hc7z719 International Theatre Institute'),
(62046, 'https://ror.org/00e4n7b29', 'en', 1, 'https://ror.org/00e4n7b29 Institutet för Språk och Folkminnen Swedish Institute for Language and Folklore'),
(62047, 'https://ror.org/052fc5r55', 'en', 1, 'https://ror.org/052fc5r55 International Water Institute'),
(62048, 'https://ror.org/03y8xgp13', 'es', 1, 'https://ror.org/03y8xgp13 Instituto Nacional de Higiene, Epidemiología y Microbiología'),
(62049, 'https://ror.org/01qa6vq89', 'pl', 1, 'https://ror.org/01qa6vq89 Instytutu Melioracji i Użytków Zielonych'),
(62050, 'https://ror.org/01x87jt81', 'en', 1, 'https://ror.org/01x87jt81 Institute of Macromolecular Chemistry Інститут хімії високомолекулярних сполук'),
(62051, 'https://ror.org/04veg0s53', 'en', 1, 'https://ror.org/04veg0s53 International Institute for Information Design'),
(62052, 'https://ror.org/03s6z8117', 'en', 1, 'https://ror.org/03s6z8117 Institution of Chemical Engineers'),
(62053, 'https://ror.org/03vfz6856', 'en', 1, 'https://ror.org/03vfz6856 Institute for Public Policy Research'),
(62054, 'https://ror.org/01y0vt648', 'no_lang_code', 1, 'https://ror.org/01y0vt648 Institute for Quality, Safety and Transportation (Germany)'),
(62055, 'https://ror.org/00xq2zb07', 'en', 1, 'https://ror.org/00xq2zb07 Institute of Nature Management Институт природопользования'),
(62056, 'https://ror.org/05ymqz659', 'es', 1, 'https://ror.org/05ymqz659 Instituto Nacional de Silicosis'),
(62057, 'https://ror.org/04jxbkz90', 'en', 1, 'https://ror.org/04jxbkz90 Institute for Programming research and Algorithmics'),
(62058, 'https://ror.org/05v0b3r22', 'en', 1, 'https://ror.org/05v0b3r22 Institute for Public Affairs Inštitút pre verejné otázky'),
(62059, 'https://ror.org/05xsbq070', 'en', 1, 'https://ror.org/05xsbq070 Institute of Medical Ethics and Bioethics, n. f Ústav medicínskej etiky a bioetiky'),
(62060, 'https://ror.org/037p5ng50', 'en', 1, 'https://ror.org/037p5ng50 Bolivian Forest Research Institute Instituto Boliviano de Investigación Forestal'),
(62061, 'https://ror.org/05hxzkx81', 'es', 1, 'https://ror.org/05hxzkx81 Instituto Canario de Investigaciones Agrarias'),
(62062, 'https://ror.org/0335k6h22', 'en', 1, 'https://ror.org/0335k6h22 International Security and Emergency Management Institute Inštitút pre medzinárodnú bezpečnosť a krízové riadenie'),
(62063, 'https://ror.org/01w4b7951', 'en', 1, 'https://ror.org/01w4b7951 Institute for Recent History of Serbia Институт за новију историју'),
(62064, 'https://ror.org/05jsj3p18', 'en', 1, 'https://ror.org/05jsj3p18 National Agricultural Research Institute'),
(62065, 'https://ror.org/01gpc7s59', 'es', 1, 'https://ror.org/01gpc7s59 Instituto Colombiano de Medicina Tropical'),
(62066, 'https://ror.org/0147q3t04', 'es', 1, 'https://ror.org/0147q3t04 Instituto Cubano de Investigaciones de los Derivados de la Caña de Azúcar'),
(62067, 'https://ror.org/0529ecj14', 'no_lang_code', 1, 'https://ror.org/0529ecj14 Institut für Solartechnologien (Germany)'),
(62068, 'https://ror.org/02f9nks69', 'es', 1, 'https://ror.org/02f9nks69 Instituto Tecnico Agronómico Provincial'),
(62069, 'https://ror.org/01zdajg53', 'de', 1, 'https://ror.org/01zdajg53 Österreichische Lateinamerika-Institut'),
(62070, 'https://ror.org/0133gy754', 'en', 1, 'https://ror.org/0133gy754 Oglebay Institute'),
(62071, 'https://ror.org/016d1vx88', 'en', 1, 'https://ror.org/016d1vx88 Institute Society and Technology Instituut Samenleving en Technologie'),
(62072, 'https://ror.org/00bcsba68', 'pt', 1, 'https://ror.org/00bcsba68 Instituto das Tecnologias de Informação na Justiça'),
(62073, 'https://ror.org/01cqv3m94', 'no_lang_code', 1, 'https://ror.org/01cqv3m94 Indear (Argentina)'),
(62074, 'https://ror.org/02vm8jd66', 'no_lang_code', 1, 'https://ror.org/02vm8jd66 RT-RK Institute for Computer Based Systems (Serbia)'),
(62075, 'https://ror.org/01w723627', 'en', 1, 'https://ror.org/01w723627 Austrian Institute of Ecology Österreichische Ökologie Institut'),
(62076, 'https://ror.org/027n77q19', 'no', 1, 'https://ror.org/027n77q19 Institutt for Eksperimentell Medisinsk Forskning'),
(62077, 'https://ror.org/048b33h38', 'en', 1, 'https://ror.org/048b33h38 JBI International'),
(62078, 'https://ror.org/005n4rr58', 'en', 1, 'https://ror.org/005n4rr58 Scientific Research Institute of Introscopy Научно-исследовательский институт интроскопии'),
(62079, 'https://ror.org/0165m4813', 'en', 1, 'https://ror.org/0165m4813 Research Institute of Radiology'),
(62080, 'https://ror.org/029z1nr51', 'fr', 1, 'https://ror.org/029z1nr51 Réseau Français des Instituts d''Études Avancées'),
(62081, 'https://ror.org/0041k0688', 'en', 1, 'https://ror.org/0041k0688 Institute of Food Safety, Animal Health and Environment “BIOR” Pārtikas drošības, dzīvnieku veselības un vides zinātniskais institūts „BIOR”'),
(62082, 'https://ror.org/015sgx450', 'de', 1, 'https://ror.org/015sgx450 Richard-Strauss-Institut'),
(62083, 'https://ror.org/0253bfw77', 'en', 1, 'https://ror.org/0253bfw77 The National Institute for Strategic Studies Національний інститут стратегічних досліджень'),
(62084, 'https://ror.org/000ffa622', 'en', 1, 'https://ror.org/000ffa622 Patriarchal Institute of Patristic Studies Πατριαρχικόν Ιδρυμα Πατερικών Μελετών'),
(62085, 'https://ror.org/03m3ca021', 'en', 1, 'https://ror.org/03m3ca021 RMIT Europe'),
(62086, 'https://ror.org/0246b6g90', 'en', 1, 'https://ror.org/0246b6g90 Kansas Coalition Against Sexual and Domestic Violence'),
(62087, 'https://ror.org/041t9rh23', 'en', 1, 'https://ror.org/041t9rh23 People of Color Against AIDS Network'),
(62088, 'https://ror.org/033w89p27', 'en', 1, 'https://ror.org/033w89p27 Kansas Health Institute'),
(62089, 'https://ror.org/05kp0wh78', 'en', 1, 'https://ror.org/05kp0wh78 Sagamore Institute'),
(62090, 'https://ror.org/02esr1a07', 'en', 1, 'https://ror.org/02esr1a07 Saint Joseph’s Translational Research Institute'),
(62091, 'https://ror.org/04aa9an38', 'ro', 1, 'https://ror.org/04aa9an38 Institutul Naţional al Patrimoniului'),
(62092, 'https://ror.org/008dffq15', 'hu', 1, 'https://ror.org/008dffq15 Nemzeti Szakképzési és Felnőttképzési Hivatal'),
(62093, 'https://ror.org/01z230y48', 'en', 1, 'https://ror.org/01z230y48 Canadian National Institute Of Health'),
(62094, 'https://ror.org/02scqqt19', 'en', 1, 'https://ror.org/02scqqt19 Institutul National de Cercetare – Dezvoltare pentru Ecologie Industriala National Institute for Research and Development for Industrial Ecology'),
(62095, 'https://ror.org/004rbvh98', 'en', 1, 'https://ror.org/004rbvh98 Phi Delta Phi'),
(62096, 'https://ror.org/05v6zeb66', 'en', 1, 'https://ror.org/05v6zeb66 Koninklijk Nederlands Instituut te Rome Royal Netherlands Institute in Rome'),
(62097, 'https://ror.org/040696g13', 'no_lang_code', 1, 'https://ror.org/040696g13 PI Photovoltaik-Institut (Germany)'),
(62098, 'https://ror.org/03jraf938', 'en', 1, 'https://ror.org/03jraf938 The Piegan Institute'),
(62099, 'https://ror.org/05h9fft46', 'en', 1, 'https://ror.org/05h9fft46 North Carolina Coalition Against Domestic Violence'),
(62100, 'https://ror.org/03nz9nk15', 'no_lang_code', 1, 'https://ror.org/03nz9nk15 Selekt Výskumný a Šľachtiteľský Ústav (Slovakia)'),
(62101, 'https://ror.org/00ga74481', 'en', 1, 'https://ror.org/00ga74481 Hollanda Araştırma Enstitüsü Netherlands Institute in Turkey'),
(62102, 'https://ror.org/0556k3d61', 'hu', 1, 'https://ror.org/0556k3d61 Puskás Tivadar Távközlési Technikum'),
(62103, 'https://ror.org/024h8zy86', 'en', 1, 'https://ror.org/024h8zy86 Schothorst Feed Research'),
(62104, 'https://ror.org/01w2qw957', 'no_lang_code', 1, 'https://ror.org/01w2qw957 Shanghai Research Institute of Building Sciences (China) 上海建筑科学研究院');
INSERT INTO `rors` VALUES
(62105, 'https://ror.org/04vbm7a71', 'en', 1, 'https://ror.org/04vbm7a71 Nederlands Instituut voor Internationale Betrekkingen Clingendael Netherlands Institute of International Relations Clingendael'),
(62106, 'https://ror.org/04132ev69', 'nl', 1, 'https://ror.org/04132ev69 Nederlands Instituut voor Lastechniek'),
(62107, 'https://ror.org/04c2c2109', 'de', 1, 'https://ror.org/04c2c2109 Kunststoff-Institut Lüdenscheid Kunststoff-Institut für das mittelständische Wirtschaft NRW GmbH'),
(62108, 'https://ror.org/008gsg955', 'en', 1, 'https://ror.org/008gsg955 Liga Portuguesa Contra a Epilepsia Portuguese League Against Epilepsy'),
(62109, 'https://ror.org/03kke0n21', 'en', 1, 'https://ror.org/03kke0n21 Stockholm Environment Institute'),
(62110, 'https://ror.org/02xdygm42', 'en', 1, 'https://ror.org/02xdygm42 Prevention Institute'),
(62111, 'https://ror.org/03wr30131', 'en', 1, 'https://ror.org/03wr30131 Laban/Bartenieff Institute of Movement Studies'),
(62112, 'https://ror.org/02g0sqt82', 'en', 1, 'https://ror.org/02g0sqt82 Social Care Institute for Excellence'),
(62113, 'https://ror.org/0444szm67', 'en', 1, 'https://ror.org/0444szm67 Stockholm Institute of Communication Science'),
(62114, 'https://ror.org/04syg0e16', 'en', 1, 'https://ror.org/04syg0e16 Nederlands Instituut voor Meerpartijendemocratie Netherlands Institute for Multiparty Democracy'),
(62115, 'https://ror.org/01am91k72', 'en', 1, 'https://ror.org/01am91k72 Prospex Institute'),
(62116, 'https://ror.org/02kxkxq59', 'en', 1, 'https://ror.org/02kxkxq59 Working Men’s Institute'),
(62117, 'https://ror.org/01kh6gx25', 'en', 1, 'https://ror.org/01kh6gx25 Sustainable Europe Research Institute'),
(62118, 'https://ror.org/0028eqh41', 'en', 1, 'https://ror.org/0028eqh41 Recovery Institute of Southwest Michigan'),
(62119, 'https://ror.org/00qc4yc66', 'en', 1, 'https://ror.org/00qc4yc66 New Mexico Military Institute'),
(62120, 'https://ror.org/0348jjn37', 'es', 1, 'https://ror.org/0348jjn37 Redit'),
(62121, 'https://ror.org/01cg3ht11', 'en', 1, 'https://ror.org/01cg3ht11 Institutet för Kvalitetsutveckling Swedish Institute for Quality'),
(62122, 'https://ror.org/02q9rf286', 'en', 1, 'https://ror.org/02q9rf286 Sustainable Development Institute'),
(62123, 'https://ror.org/00bqgmr50', 'en', 1, 'https://ror.org/00bqgmr50 Svenska Institutet i Athen Swedish Institute at Athens'),
(62124, 'https://ror.org/01qvrd474', 'en', 1, 'https://ror.org/01qvrd474 Institutul National de Cercetare-Dezvoltare pentru Metale si Resurse Radioactive Research and Development National Institute for Metals and Radioactive Resources'),
(62125, 'https://ror.org/052hz8t89', 'en', 1, 'https://ror.org/052hz8t89 Lietuvos Istorijos Institutas Lithuanian Institute of History'),
(62126, 'https://ror.org/05s6qms04', 'fr', 1, 'https://ror.org/05s6qms04 Institut Jacques Delors'),
(62127, 'https://ror.org/03skdv165', 'en', 1, 'https://ror.org/03skdv165 Institute of Educational Policy Ινστιτούτο Εκπαιδευτικής Πολιτικής'),
(62128, 'https://ror.org/001561737', 'en', 1, 'https://ror.org/001561737 Research Institute Orion'),
(62129, 'https://ror.org/013fj3d42', 'en', 1, 'https://ror.org/013fj3d42 State Enterprise "State Road Research Institute named M.P.Shulgina'),
(62130, 'https://ror.org/0480smc83', 'en', 1, 'https://ror.org/0480smc83 Lietuvos agrarinių ir miškų mokslų centro filialas Lithuanian Research Centre for Agriculture and Forestry'),
(62131, 'https://ror.org/01pr5e984', 'en', 1, 'https://ror.org/01pr5e984 New York State Coalition Against Domestic Violence'),
(62132, 'https://ror.org/009fecc06', 'no_lang_code', 1, 'https://ror.org/009fecc06 Staten Island Museum'),
(62133, 'https://ror.org/03rtrf513', 'en', 1, 'https://ror.org/03rtrf513 New Energy Coalition'),
(62134, 'https://ror.org/015r8jj75', 'en', 1, 'https://ror.org/015r8jj75 The European Institute for Crime Prevention and Control, affiliated with the United Nations Yhdistyneiden Kansakuntien kanssa toimiva Euroopan rikoksentorjunta- ja torjuntaelin'),
(62135, 'https://ror.org/03yt10624', 'en', 1, 'https://ror.org/03yt10624 Loretto Community'),
(62136, 'https://ror.org/02srhtt90', 'en', 1, 'https://ror.org/02srhtt90 Ukrainian Institute for Public Policy'),
(62137, 'https://ror.org/05re20904', 'en', 1, 'https://ror.org/05re20904 Westminster Cathedral'),
(62138, 'https://ror.org/04e91sk65', 'en', 1, 'https://ror.org/04e91sk65 The Westminster Historical Society'),
(62139, 'https://ror.org/04aax7b26', 'en', 1, 'https://ror.org/04aax7b26 The Health Care Science Institute ヘルスケア科学研究所'),
(62140, 'https://ror.org/02cpxnn28', 'en', 1, 'https://ror.org/02cpxnn28 Wilmington Public Library'),
(62141, 'https://ror.org/00qmy0x85', 'en', 1, 'https://ror.org/00qmy0x85 Internationaal Instituut voor de stedelijke omgeving International Institute for the Urban Environment'),
(62142, 'https://ror.org/05c45t605', 'en', 1, 'https://ror.org/05c45t605 Internationale Lignin-Institut The International Lignin Institute'),
(62143, 'https://ror.org/00pgef156', 'en', 1, 'https://ror.org/00pgef156 End Domestic Abuse Wisconsin'),
(62144, 'https://ror.org/02rr12038', 'de', 1, 'https://ror.org/02rr12038 LVR-Institut für Landeskunde und Regionalgeschichte'),
(62145, 'https://ror.org/038z8c944', 'en', 1, 'https://ror.org/038z8c944 WiseEuropa'),
(62146, 'https://ror.org/04kpjf880', 'en', 1, 'https://ror.org/04kpjf880 Mexican Cultural Institute'),
(62147, 'https://ror.org/033p8v660', 'no_lang_code', 1, 'https://ror.org/033p8v660 Wita Proteomics (Germany)'),
(62148, 'https://ror.org/03vnkwk82', 'en', 1, 'https://ror.org/03vnkwk82 The Mussar Institute'),
(62149, 'https://ror.org/02qwdgg40', 'no_lang_code', 1, 'https://ror.org/02qwdgg40 VDE Prüf- und Zertifizierungsinstitut (Germany)'),
(62150, 'https://ror.org/0555zm156', 'en', 1, 'https://ror.org/0555zm156 Middle East Research Institute'),
(62151, 'https://ror.org/02z02sq57', 'en', 1, 'https://ror.org/02z02sq57 Maine Central Institute'),
(62152, 'https://ror.org/004skt070', 'fi', 1, 'https://ror.org/004skt070 TTS Työtehoseura'),
(62153, 'https://ror.org/02eez3a27', 'en', 1, 'https://ror.org/02eez3a27 The Nautical Institute'),
(62154, 'https://ror.org/003d4z032', 'en', 1, 'https://ror.org/003d4z032 World Music Institute'),
(62155, 'https://ror.org/01hg8wj19', 'en', 1, 'https://ror.org/01hg8wj19 Migration Institute of Australia'),
(62156, 'https://ror.org/01c3bft48', 'no_lang_code', 1, 'https://ror.org/01c3bft48 MainStream Aquaculture (Australia)'),
(62157, 'https://ror.org/02djm4k77', 'no_lang_code', 1, 'https://ror.org/02djm4k77 Wowiwe Instruction (United States)'),
(62158, 'https://ror.org/01mkcqs35', 'en', 1, 'https://ror.org/01mkcqs35 Public Policy and Management Institute Viešosios politikos ir vadybos institutas'),
(62159, 'https://ror.org/01m3vxn57', 'en', 1, 'https://ror.org/01m3vxn57 York Minster'),
(62160, 'https://ror.org/01px69d78', 'en', 1, 'https://ror.org/01px69d78 The Research Institute for the Care of Older People'),
(62161, 'https://ror.org/05x8k4a38', 'en', 1, 'https://ror.org/05x8k4a38 Health Insurance Institute of Slovenia Zavod za zdravstveno zavarovanje Slovenije'),
(62162, 'https://ror.org/00s50z725', 'en', 1, 'https://ror.org/00s50z725 Metamorphose VI AISBL'),
(62163, 'https://ror.org/04s1wfe13', 'en', 1, 'https://ror.org/04s1wfe13 Jewish Historical Institute Żydowski Instytut Historyczny im. Emanuela Ringelbluma'),
(62164, 'https://ror.org/04f49yt17', 'en', 1, 'https://ror.org/04f49yt17 The Wiener Library'),
(62165, 'https://ror.org/00j4jtq38', 'en', 1, 'https://ror.org/00j4jtq38 Thelonious Monk Institute of Jazz'),
(62166, 'https://ror.org/02r4hr462', 'en', 1, 'https://ror.org/02r4hr462 Istituto Virtuale dei Nano Film Virtual Institute of Nano Films'),
(62167, 'https://ror.org/02vhnq558', 'sq', 1, 'https://ror.org/02vhnq558 Instituti Kombëtar i Shëndetësisë Publike'),
(62168, 'https://ror.org/016frzz57', 'en', 1, 'https://ror.org/016frzz57 Welding Technology Institute of Australia'),
(62169, 'https://ror.org/03ydr6t04', 'en', 1, 'https://ror.org/03ydr6t04 Maritime Institute of Eastern Mediterranean'),
(62170, 'https://ror.org/051wgfj58', 'en', 1, 'https://ror.org/051wgfj58 Institute of Biological, Environmental and Rural Sciences'),
(62171, 'https://ror.org/008pe8240', 'en', 1, 'https://ror.org/008pe8240 West Asia-North Africa Institute معهد غرب آسيا - شمال أفريقيا'),
(62172, 'https://ror.org/04g4j1336', 'nl', 1, 'https://ror.org/04g4j1336 Vlaams Instituut Gezond Leven'),
(62173, 'https://ror.org/05rg3v683', 'en', 1, 'https://ror.org/05rg3v683 West Virginia Coalition Against Domestic Violence'),
(62174, 'https://ror.org/02s322r10', 'en', 1, 'https://ror.org/02s322r10 Narodowy Instytut Audiowizualny National Audiovisual Institute'),
(62175, 'https://ror.org/02dzzqz47', 'en', 1, 'https://ror.org/02dzzqz47 Mount Fuji Research Institute 富士総合研究所'),
(62176, 'https://ror.org/02xyxjs42', 'no_lang_code', 1, 'https://ror.org/02xyxjs42 Cthulhu Ventures (United States)'),
(62177, 'https://ror.org/05qxkh644', 'no_lang_code', 1, 'https://ror.org/05qxkh644 INSEAD'),
(62178, 'https://ror.org/024jtk794', 'en', 1, 'https://ror.org/024jtk794 Munson-Williams-Proctor Arts Institute'),
(62179, 'https://ror.org/02xfvtk67', 'en', 1, 'https://ror.org/02xfvtk67 Mechanics'' Institute'),
(62180, 'https://ror.org/03349yg63', 'en', 1, 'https://ror.org/03349yg63 Mediterranean Institute for Primary Care'),
(62181, 'https://ror.org/0405fd303', 'no_lang_code', 1, 'https://ror.org/0405fd303 Medica (United States)'),
(62182, 'https://ror.org/00k388f40', 'no_lang_code', 1, 'https://ror.org/00k388f40 NanoBioImaging (China)'),
(62183, 'https://ror.org/0032hsp73', 'no_lang_code', 1, 'https://ror.org/0032hsp73 Athenex (China)'),
(62184, 'https://ror.org/05e59pk11', 'no_lang_code', 1, 'https://ror.org/05e59pk11 Green Tomato (China)'),
(62185, 'https://ror.org/04jx53751', 'no_lang_code', 1, 'https://ror.org/04jx53751 ConvenientPower Systems (China)'),
(62186, 'https://ror.org/036wd5777', 'no_lang_code', 1, 'https://ror.org/036wd5777 Group Sense (China) 權智集團'),
(62187, 'https://ror.org/016hga078', 'no_lang_code', 1, 'https://ror.org/016hga078 Infowise (China)'),
(62188, 'https://ror.org/01vjf9109', 'no_lang_code', 1, 'https://ror.org/01vjf9109 Coolsure (China)'),
(62189, 'https://ror.org/035c0tw34', 'no_lang_code', 1, 'https://ror.org/035c0tw34 GS1 Hong Kong'),
(62190, 'https://ror.org/01af2ae87', 'no_lang_code', 1, 'https://ror.org/01af2ae87 Innopage (China)'),
(62191, 'https://ror.org/0164s1237', 'no_lang_code', 1, 'https://ror.org/0164s1237 New A Innovation (China)'),
(62192, 'https://ror.org/02k6fy602', 'no_lang_code', 1, 'https://ror.org/02k6fy602 Guangdong Hiway Integrated Circuit Technology (China)'),
(62193, 'https://ror.org/04ttbbx73', 'no_lang_code', 1, 'https://ror.org/04ttbbx73 Innovation Team (China) 創新團隊有限公司'),
(62194, 'https://ror.org/0522a8916', 'no_lang_code', 1, 'https://ror.org/0522a8916 Print-Rite (China) 天威 (安捷)'),
(62195, 'https://ror.org/05aaad433', 'no_lang_code', 1, 'https://ror.org/05aaad433 Heartisans (China)'),
(62196, 'https://ror.org/02w1g8568', 'en', 1, 'https://ror.org/02w1g8568 The Academy of Sciences of Hong Kong 香港科学院'),
(62197, 'https://ror.org/018ek4r92', 'no_lang_code', 1, 'https://ror.org/018ek4r92 Cosmact (China)'),
(62198, 'https://ror.org/008jsgk36', 'no_lang_code', 1, 'https://ror.org/008jsgk36 Fano Labs (China) 法诺实验室'),
(62199, 'https://ror.org/00vx9pd91', 'en', 1, 'https://ror.org/00vx9pd91 Hong Kong Cosmetic Association 香港化粧品同業協會有限公司'),
(62200, 'https://ror.org/038vtqc18', 'no_lang_code', 1, 'https://ror.org/038vtqc18 Acoustic Arc (China) 声波国际有限公司'),
(62201, 'https://ror.org/015rkeq20', 'no_lang_code', 1, 'https://ror.org/015rkeq20 Innoverz (China)'),
(62202, 'https://ror.org/0007q9r82', 'no_lang_code', 1, 'https://ror.org/0007q9r82 NiCADa Research & Development (China)'),
(62203, 'https://ror.org/040f9jx84', 'no_lang_code', 1, 'https://ror.org/040f9jx84 Acumen Environmental Engineering & Technologies (China) 敏锐环境工程与技术'),
(62204, 'https://ror.org/010t34638', 'no_lang_code', 1, 'https://ror.org/010t34638 Insight (China)'),
(62205, 'https://ror.org/011qk9n39', 'en', 1, 'https://ror.org/011qk9n39 Hong Kong Electro-Plating Merchants Association'),
(62206, 'https://ror.org/00gxm5663', 'no_lang_code', 1, 'https://ror.org/00gxm5663 Craft Group (China)'),
(62207, 'https://ror.org/0437bmy49', 'no_lang_code', 1, 'https://ror.org/0437bmy49 Admomo Media (China)'),
(62208, 'https://ror.org/02gtpap31', 'en', 1, 'https://ror.org/02gtpap31 Institute of Industrial Engineers 工业工程师学会'),
(62209, 'https://ror.org/02ns8zp42', 'no_lang_code', 1, 'https://ror.org/02ns8zp42 Numerical Method (China)'),
(62210, 'https://ror.org/0317vtg57', 'no_lang_code', 1, 'https://ror.org/0317vtg57 Advanced Card Systems (China) 先进的卡片系统'),
(62211, 'https://ror.org/059vdg789', 'no_lang_code', 1, 'https://ror.org/059vdg789 nwStor (China)'),
(62212, 'https://ror.org/02q5b4225', 'en', 1, 'https://ror.org/02q5b4225 Hong Kong Association For Integration Of Chinese-Western Medicine'),
(62213, 'https://ror.org/02x6qh956', 'no_lang_code', 1, 'https://ror.org/02x6qh956 Cybersys Computer (China)'),
(62214, 'https://ror.org/00zgs1h87', 'no_lang_code', 1, 'https://ror.org/00zgs1h87 Advanced Interconnect Technologies (China) 先进的互连技术'),
(62215, 'https://ror.org/02pyy0k06', 'en', 1, 'https://ror.org/02pyy0k06 Interactive Systems & Technologies'),
(62216, 'https://ror.org/00fhzqb79', 'en', 1, 'https://ror.org/00fhzqb79 Hong Kong Association for the Advancement of Science and Technology 香港科技協進會'),
(62217, 'https://ror.org/033ptv654', 'no_lang_code', 1, 'https://ror.org/033ptv654 Objective Solutions (China)'),
(62218, 'https://ror.org/04r2ex566', 'no_lang_code', 1, 'https://ror.org/04r2ex566 Cypress (China)'),
(62219, 'https://ror.org/007h50662', 'no_lang_code', 1, 'https://ror.org/007h50662 Advanced Materials Enterprises (China) 先进材料企业'),
(62220, 'https://ror.org/01cnhdd85', 'en', 1, 'https://ror.org/01cnhdd85 Hong Kong Association of Registered Tour Co-ordinators 香港註冊導遊協會'),
(62221, 'https://ror.org/01e8kt239', 'no_lang_code', 1, 'https://ror.org/01e8kt239 International Transport Information Systems (China)'),
(62222, 'https://ror.org/052wkga64', 'no_lang_code', 1, 'https://ror.org/052wkga64 APT Electronics (China)'),
(62223, 'https://ror.org/01yn40g02', 'en', 1, 'https://ror.org/01yn40g02 Hong Kong Bar Association 香港大律師公會'),
(62224, 'https://ror.org/0347rqq77', 'no_lang_code', 1, 'https://ror.org/0347rqq77 OceanX Technology (China)'),
(62225, 'https://ror.org/02gze7m48', 'en', 1, 'https://ror.org/02gze7m48 Hong Kong Biotechnology Organization 香港生物科技協會'),
(62226, 'https://ror.org/000j5qy96', 'no_lang_code', 1, 'https://ror.org/000j5qy96 AdvanPro (China)'),
(62227, 'https://ror.org/0474e7473', 'no_lang_code', 1, 'https://ror.org/0474e7473 Hong Kong Blind Union 香港失明人協進會'),
(62228, 'https://ror.org/044z1kj72', 'en', 1, 'https://ror.org/044z1kj72 Internet Professional Association 互聯網專業協會'),
(62229, 'https://ror.org/02a7a3437', 'no_lang_code', 1, 'https://ror.org/02a7a3437 DiagCor (China)'),
(62230, 'https://ror.org/04kddx345', 'en', 1, 'https://ror.org/04kddx345 Hong Kong Business Angel Network 香港商业天使网'),
(62231, 'https://ror.org/03k7e2020', 'no_lang_code', 1, 'https://ror.org/03k7e2020 Ironfly Technologies (China)'),
(62232, 'https://ror.org/026rmwf78', 'no_lang_code', 1, 'https://ror.org/026rmwf78 Aesi (China) 光一系統(香港)'),
(62233, 'https://ror.org/003ydcg07', 'no_lang_code', 1, 'https://ror.org/003ydcg07 Aidyia (China)'),
(62234, 'https://ror.org/04ptvr660', 'no_lang_code', 1, 'https://ror.org/04ptvr660 Gene (China) 香港基因有限公司'),
(62235, 'https://ror.org/03vfggs20', 'en', 1, 'https://ror.org/03vfggs20 One Earth Designs'),
(62236, 'https://ror.org/03fxqrk78', 'no_lang_code', 1, 'https://ror.org/03fxqrk78 AiSoft Technology (China)'),
(62237, 'https://ror.org/0455r8m48', 'no_lang_code', 1, 'https://ror.org/0455r8m48 IT Channel (China) 科技导航'),
(62238, 'https://ror.org/04b6wfh41', 'no_lang_code', 1, 'https://ror.org/04b6wfh41 Alford Industries (China) 阿尔福德工业'),
(62239, 'https://ror.org/0510xwc60', 'no_lang_code', 1, 'https://ror.org/0510xwc60 Oursky (China)'),
(62240, 'https://ror.org/01en03795', 'no_lang_code', 1, 'https://ror.org/01en03795 Amasic (China)'),
(62241, 'https://ror.org/01cqas505', 'en', 1, 'https://ror.org/01cqas505 Hong Kong General Chamber of Commerce'),
(62242, 'https://ror.org/02ey7f844', 'no_lang_code', 1, 'https://ror.org/02ey7f844 Pacific Medical (China)'),
(62243, 'https://ror.org/00251mh42', 'no_lang_code', 1, 'https://ror.org/00251mh42 Amonics (China)'),
(62244, 'https://ror.org/047qrwb61', 'no_lang_code', 1, 'https://ror.org/047qrwb61 Amos Enterprise (China) 阿莫斯企业有限公司'),
(62245, 'https://ror.org/04b4psm33', 'no_lang_code', 1, 'https://ror.org/04b4psm33 Anpac Semiconductor (China) 安帕克半导体有限公司'),
(62246, 'https://ror.org/04r9c8c47', 'en', 1, 'https://ror.org/04r9c8c47 Hong Kong Computer Society'),
(62247, 'https://ror.org/02c3k5572', 'no_lang_code', 1, 'https://ror.org/02c3k5572 AP Photonics (China) 愛佩儀光電技術有限公司'),
(62248, 'https://ror.org/009y9e888', 'no_lang_code', 1, 'https://ror.org/009y9e888 Pacific Satellite (China)'),
(62249, 'https://ror.org/03rfsht69', 'no_lang_code', 1, 'https://ror.org/03rfsht69 Jason Medical Holdings (China) 傑森醫療控股'),
(62250, 'https://ror.org/01820fp17', 'en', 1, 'https://ror.org/01820fp17 Hong Kong Convention and Exhibition Centre 香港會議展覽中心'),
(62251, 'https://ror.org/024hh3630', 'no_lang_code', 1, 'https://ror.org/024hh3630 Dracaena Life (China) 龙血树生命技术'),
(62252, 'https://ror.org/00ebpsa72', 'en', 1, 'https://ror.org/00ebpsa72 Cyberport 數碼港'),
(62253, 'https://ror.org/036f01c07', 'no_lang_code', 1, 'https://ror.org/036f01c07 Pacific World Industrial (China)'),
(62254, 'https://ror.org/055f7gc82', 'no_lang_code', 1, 'https://ror.org/055f7gc82 Dragonchip (China)'),
(62255, 'https://ror.org/04g1tx361', 'no_lang_code', 1, 'https://ror.org/04g1tx361 AppoTech (China) 卓榮集成電路科技有限公司'),
(62256, 'https://ror.org/03t5ky459', 'no_lang_code', 1, 'https://ror.org/03t5ky459 Tech Dragon Limited (China)'),
(62257, 'https://ror.org/03f617c76', 'no_lang_code', 1, 'https://ror.org/03f617c76 ASD Technology (China)'),
(62258, 'https://ror.org/04b4yfd09', 'no_lang_code', 1, 'https://ror.org/04b4yfd09 DSP4YOU (China)'),
(62259, 'https://ror.org/02hbtf857', 'en', 1, 'https://ror.org/02hbtf857 Hong Kong Design Centre 香港設計中心'),
(62260, 'https://ror.org/035ttr831', 'no_lang_code', 1, 'https://ror.org/035ttr831 Pantarei Design (China)'),
(62261, 'https://ror.org/03wj3bs34', 'no_lang_code', 1, 'https://ror.org/03wj3bs34 Hai Kang Life (China) 海康生命科技有限公司'),
(62262, 'https://ror.org/04rttan30', 'no_lang_code', 1, 'https://ror.org/04rttan30 Tech Pro (China)'),
(62263, 'https://ror.org/01nfhmh79', 'no_lang_code', 1, 'https://ror.org/01nfhmh79 E I L (China)'),
(62264, 'https://ror.org/00hw06340', 'no_lang_code', 1, 'https://ror.org/00hw06340 Pedorthic Technology (China)'),
(62265, 'https://ror.org/057hps485', 'no_lang_code', 1, 'https://ror.org/057hps485 Atpath Technologies (China)'),
(62266, 'https://ror.org/0252z0n87', 'no_lang_code', 1, 'https://ror.org/0252z0n87 Peer Intelligence Technology (China)'),
(62267, 'https://ror.org/030wgts54', 'en', 1, 'https://ror.org/030wgts54 Hong Kong Electrical Appliances Manufacturers Association 香港电器制造商协会'),
(62268, 'https://ror.org/050d32d16', 'no_lang_code', 1, 'https://ror.org/050d32d16 Hong Kong Telecommunications Limited (China)'),
(62269, 'https://ror.org/05wgqxk32', 'en', 1, 'https://ror.org/05wgqxk32 Hong Kong Electronic Industries Association 香港電子業商會'),
(62270, 'https://ror.org/02zn0w908', 'no_lang_code', 1, 'https://ror.org/02zn0w908 Auvi (China)'),
(62271, 'https://ror.org/0317nyv30', 'en', 1, 'https://ror.org/0317nyv30 Hong Kong Export Credit Insurance Corporation'),
(62272, 'https://ror.org/00vdwj549', 'en', 1, 'https://ror.org/00vdwj549 Textile Council of Hong Kong'),
(62273, 'https://ror.org/02s0pv682', 'en', 1, 'https://ror.org/02s0pv682 Hong Kong Exporters’ Association 香港出口商协会'),
(62274, 'https://ror.org/03890pj38', 'no_lang_code', 1, 'https://ror.org/03890pj38 Axiom (China)'),
(62275, 'https://ror.org/03kj2mz58', 'en', 1, 'https://ror.org/03kj2mz58 Hong Kong Far Infrared Rays Association 香港遠紅外線協會'),
(62276, 'https://ror.org/04pb98034', 'no_lang_code', 1, 'https://ror.org/04pb98034 TFI Digital Media Limited (China)'),
(62277, 'https://ror.org/049naj365', 'no_lang_code', 1, 'https://ror.org/049naj365 B-Free Technology (China)'),
(62278, 'https://ror.org/002mt0228', 'no_lang_code', 1, 'https://ror.org/002mt0228 Eltis Microelectronics (China)'),
(62279, 'https://ror.org/00v70rk54', 'no_lang_code', 1, 'https://ror.org/00v70rk54 BBPOS (China)'),
(62280, 'https://ror.org/05hjg3r73', 'en', 1, 'https://ror.org/05hjg3r73 Hong Kong Federation of Innovative Technologies and Manufacturing Industries 香港創新科技及製造業聯合總會'),
(62281, 'https://ror.org/04nga4641', 'no_lang_code', 1, 'https://ror.org/04nga4641 Diodes (China)'),
(62282, 'https://ror.org/01n6k5w94', 'en', 1, 'https://ror.org/01n6k5w94 BEAM Society'),
(62283, 'https://ror.org/02jr9jv46', 'en', 1, 'https://ror.org/02jr9jv46 Hong Kong Federation of Youth Groups 香港青年協會'),
(62284, 'https://ror.org/03pcp9q42', 'no_lang_code', 1, 'https://ror.org/03pcp9q42 PharmacoGenetics (China)'),
(62285, 'https://ror.org/038xegj08', 'no_lang_code', 1, 'https://ror.org/038xegj08 TPC (China)'),
(62286, 'https://ror.org/03metqd67', 'no_lang_code', 1, 'https://ror.org/03metqd67 eNano Health (China)'),
(62287, 'https://ror.org/029eyr524', 'en', 1, 'https://ror.org/029eyr524 Hong Kong Food Council 香港食品委員會'),
(62288, 'https://ror.org/03kb01078', 'en', 1, 'https://ror.org/03kb01078 Hong Kong Green Building Council 香港綠色建築議會'),
(62289, 'https://ror.org/01h3wfb62', 'en', 1, 'https://ror.org/01h3wfb62 Trade and Industry Department 工業貿易署'),
(62290, 'https://ror.org/03ag4ep03', 'no_lang_code', 1, 'https://ror.org/03ag4ep03 Pixel Magic Systems (China)'),
(62291, 'https://ror.org/056s60883', 'en', 1, 'https://ror.org/056s60883 Hong Kong Hide & Leather Traders'' Association 香港皮業商會有限公司'),
(62292, 'https://ror.org/05tbpks29', 'no_lang_code', 1, 'https://ror.org/05tbpks29 TradeCity Cybersoft (China)'),
(62293, 'https://ror.org/00h8mkp41', 'no_lang_code', 1, 'https://ror.org/00h8mkp41 Bloombase (China)'),
(62294, 'https://ror.org/045t4ag71', 'en', 1, 'https://ror.org/045t4ag71 Hong Kong Hotels Association 香港酒店业协会'),
(62295, 'https://ror.org/00vs6f587', 'en', 1, 'https://ror.org/00vs6f587 Hong Kong Information Technology Federation 香港資訊科技商會'),
(62296, 'https://ror.org/02hnfym30', 'no_lang_code', 1, 'https://ror.org/02hnfym30 Platysens (China)'),
(62297, 'https://ror.org/00t8z0x94', 'en', 1, 'https://ror.org/00t8z0x94 Hong Kong Information Technology Joint Council 香港資訊科技聯會'),
(62298, 'https://ror.org/03ca37b25', 'en', 1, 'https://ror.org/03ca37b25 Hong Kong Institute of Biotechnology 香港生物科技学院'),
(62299, 'https://ror.org/00ag0s904', 'en', 1, 'https://ror.org/00ag0s904 The Boys'' & Girls'' Clubs Association of Hong Kong 香港小童群益會'),
(62300, 'https://ror.org/0233w8s77', 'no_lang_code', 1, 'https://ror.org/0233w8s77 Playnote (China)'),
(62301, 'https://ror.org/05xpxhd51', 'no_lang_code', 1, 'https://ror.org/05xpxhd51 Portable Innovation Technology (China)'),
(62302, 'https://ror.org/01dmaez27', 'en', 1, 'https://ror.org/01dmaez27 Hong Kong Institute of Vocational Education 香港專業教育學院'),
(62303, 'https://ror.org/03e6wzs70', 'no_lang_code', 1, 'https://ror.org/03e6wzs70 Unisen Group (China)'),
(62304, 'https://ror.org/016ksqd60', 'en', 1, 'https://ror.org/016ksqd60 Hong Kong Institution of Engineers 香港工程师学会'),
(62305, 'https://ror.org/05jv1dg95', 'no_lang_code', 1, 'https://ror.org/05jv1dg95 eSpot Lighting (China)'),
(62306, 'https://ror.org/02w8vq828', 'en', 1, 'https://ror.org/02w8vq828 Hong Kong International Arbitration Centre 香港国际仲裁中心'),
(62307, 'https://ror.org/02k2g5975', 'no_lang_code', 1, 'https://ror.org/02k2g5975 PowerELab (China)'),
(62308, 'https://ror.org/05ec5ky31', 'no_lang_code', 1, 'https://ror.org/05ec5ky31 Eternal East Group (China)'),
(62309, 'https://ror.org/034twfm68', 'en', 1, 'https://ror.org/034twfm68 Hong Kong Jewellery & Jade Manufacturers Association 香港珠宝玉石厂商会'),
(62310, 'https://ror.org/02fttt453', 'no_lang_code', 1, 'https://ror.org/02fttt453 VCAST (China)'),
(62311, 'https://ror.org/05b4q6y22', 'en', 1, 'https://ror.org/05b4q6y22 Hong Kong Jewelry Manufacturers'' Association 香港珠寶製造業廠商會'),
(62312, 'https://ror.org/00w4zfe96', 'no_lang_code', 1, 'https://ror.org/00w4zfe96 Chaowei Group (China)'),
(62313, 'https://ror.org/00c6gyc33', 'no_lang_code', 1, 'https://ror.org/00c6gyc33 Everplant Technology (China)'),
(62314, 'https://ror.org/011rk9932', 'no_lang_code', 1, 'https://ror.org/011rk9932 Prenetics (China)'),
(62315, 'https://ror.org/05wany963', 'en', 1, 'https://ror.org/05wany963 Hong Kong Footwear Federation'),
(62316, 'https://ror.org/01hbaf921', 'en', 1, 'https://ror.org/01hbaf921 Hong Kong Medical and Healthcare Device Industries Association 香港醫療及保健器材行業協會'),
(62317, 'https://ror.org/02qze4h25', 'no_lang_code', 1, 'https://ror.org/02qze4h25 Caching Technology (China)'),
(62318, 'https://ror.org/02kmbbe05', 'en', 1, 'https://ror.org/02kmbbe05 Hong Kong Surface Finishing Society 香港表面处理学会'),
(62319, 'https://ror.org/00905q798', 'en', 1, 'https://ror.org/00905q798 Hong Kong Metals Manufacturers Association 香港金屬製造業協會'),
(62320, 'https://ror.org/04q57k124', 'en', 1, 'https://ror.org/04q57k124 Hong Kong New Generation Cultural Association 香港新一代文化協會'),
(62321, 'https://ror.org/02pvf2m42', 'no_lang_code', 1, 'https://ror.org/02pvf2m42 Progressive Technology (China)'),
(62322, 'https://ror.org/00qvnyw14', 'no_lang_code', 1, 'https://ror.org/00qvnyw14 Jets Technics (China)'),
(62323, 'https://ror.org/04zhz8n61', 'en', 1, 'https://ror.org/04zhz8n61 Hong Kong Optical Manufacturers Association 香港光学制造商协会'),
(62324, 'https://ror.org/03rkn9a03', 'en', 1, 'https://ror.org/03rkn9a03 Federation of Hong Kong Industries'),
(62325, 'https://ror.org/04b3dps61', 'no_lang_code', 1, 'https://ror.org/04b3dps61 CapitaLogic (China)'),
(62326, 'https://ror.org/01scxhk26', 'no_lang_code', 1, 'https://ror.org/01scxhk26 Fern (China)'),
(62327, 'https://ror.org/02rqvg733', 'en', 1, 'https://ror.org/02rqvg733 Hong Kong Organic Waste Recycling Centre 香港有機資源再生中'),
(62328, 'https://ror.org/01hyggk46', 'no_lang_code', 1, 'https://ror.org/01hyggk46 PSP Security (China)'),
(62329, 'https://ror.org/01x23ex04', 'no_lang_code', 1, 'https://ror.org/01x23ex04 CAS Logistics (China)'),
(62330, 'https://ror.org/00wmar339', 'no_lang_code', 1, 'https://ror.org/00wmar339 JSAB Technologies (China)'),
(62331, 'https://ror.org/051451b66', 'no_lang_code', 1, 'https://ror.org/051451b66 Finima Innovations (China)'),
(62332, 'https://ror.org/00g2ec863', 'en', 1, 'https://ror.org/00g2ec863 Hong Kong Pharmaceutical Manufacturers Association 香港制药商协会有限公司'),
(62333, 'https://ror.org/00ytg8k67', 'en', 1, 'https://ror.org/00ytg8k67 Hong Kong Principals’ Institute 香港校长会'),
(62334, 'https://ror.org/05mp1w822', 'no_lang_code', 1, 'https://ror.org/05mp1w822 Cathay Photonics (China) 國泰光電有限公司'),
(62335, 'https://ror.org/04jyhzm90', 'no_lang_code', 1, 'https://ror.org/04jyhzm90 FirsTune (China)'),
(62336, 'https://ror.org/01txhcw25', 'no_lang_code', 1, 'https://ror.org/01txhcw25 Cell Technology (China)'),
(62337, 'https://ror.org/03qsja474', 'no_lang_code', 1, 'https://ror.org/03qsja474 Radica Systems (China)'),
(62338, 'https://ror.org/04sdv1b42', 'no_lang_code', 1, 'https://ror.org/04sdv1b42 JSpectrum (China)'),
(62339, 'https://ror.org/003km8q97', 'en', 1, 'https://ror.org/003km8q97 Hong Kong Opto-Mechatronics Industries Association 香港中華眼鏡製造廠商會有限公司'),
(62340, 'https://ror.org/04w41nt03', 'no_lang_code', 1, 'https://ror.org/04w41nt03 Kalloc Studios (China)'),
(62341, 'https://ror.org/00gncg762', 'en', 1, 'https://ror.org/00gncg762 Hong Kong Plastic Machinery Association 香港塑料机械协会'),
(62342, 'https://ror.org/037qebp73', 'no_lang_code', 1, 'https://ror.org/037qebp73 Ram-Chem (China)'),
(62343, 'https://ror.org/04x5g9003', 'en', 1, 'https://ror.org/04x5g9003 Hong Kong Plastics Manufacturers Association 香港塑膠業廠商有限公司'),
(62344, 'https://ror.org/003f1a217', 'no_lang_code', 1, 'https://ror.org/003f1a217 Bizconline (China)'),
(62345, 'https://ror.org/054vdk688', 'no_lang_code', 1, 'https://ror.org/054vdk688 KanHan Technologies (China)'),
(62346, 'https://ror.org/03c57q417', 'en', 1, 'https://ror.org/03c57q417 Hong Kong Policy Research Institute 香港願景'),
(62347, 'https://ror.org/04nh45n53', 'no_lang_code', 1, 'https://ror.org/04nh45n53 Reasonable Software House (China)'),
(62348, 'https://ror.org/02gbmxj61', 'no_lang_code', 1, 'https://ror.org/02gbmxj61 Certizen (China) 翹晉電子商務有限公司'),
(62349, 'https://ror.org/02nyad521', 'no_lang_code', 1, 'https://ror.org/02nyad521 CHTC Fong’s Industries (China)'),
(62350, 'https://ror.org/025z7st22', 'en', 1, 'https://ror.org/025z7st22 Hong Kong Printed Circuit Association 香港印制电路协会'),
(62351, 'https://ror.org/02apbtx51', 'en', 1, 'https://ror.org/02apbtx51 Hong Kong Printers Association 香港印刷業商會'),
(62352, 'https://ror.org/01ncm8z56', 'no_lang_code', 1, 'https://ror.org/01ncm8z56 CET Opto (China)'),
(62353, 'https://ror.org/01bq0yy21', 'no_lang_code', 1, 'https://ror.org/01bq0yy21 RediSem (China)'),
(62354, 'https://ror.org/01dzptr68', 'no_lang_code', 1, 'https://ror.org/01dzptr68 Four Directions (China)'),
(62355, 'https://ror.org/03nm59d75', 'en', 1, 'https://ror.org/03nm59d75 Hong Kong R&D Centre for Logistics and Supply Chain Management Enabling Technologies 香港物流及供应链管理应用技术研发中心'),
(62356, 'https://ror.org/04ffj1463', 'no_lang_code', 1, 'https://ror.org/04ffj1463 Kingdee (China)'),
(62357, 'https://ror.org/05cxhgh47', 'en', 1, 'https://ror.org/05cxhgh47 China Aircraft Services Limited 中國飛機服務有限公司'),
(62358, 'https://ror.org/040kksw48', 'no_lang_code', 1, 'https://ror.org/040kksw48 Rehab-Robotics (China)'),
(62359, 'https://ror.org/05hwkqh71', 'no_lang_code', 1, 'https://ror.org/05hwkqh71 Frenzoo (China)'),
(62360, 'https://ror.org/02r82ad48', 'en', 1, 'https://ror.org/02r82ad48 Hong Kong Retail Management Association 香港零售管理协会'),
(62361, 'https://ror.org/05xqdb208', 'no_lang_code', 1, 'https://ror.org/05xqdb208 Frontier Advanced Technology (China)'),
(62362, 'https://ror.org/059n2nf73', 'no_lang_code', 1, 'https://ror.org/059n2nf73 Hong Kong RFID (China)'),
(62363, 'https://ror.org/0024e4j94', 'no_lang_code', 1, 'https://ror.org/0024e4j94 China Financial Services Holdings (China) 中國金融投資管理有限公司'),
(62364, 'https://ror.org/03gtgjs38', 'no_lang_code', 1, 'https://ror.org/03gtgjs38 Retraction (China)'),
(62365, 'https://ror.org/0246sc786', 'no_lang_code', 1, 'https://ror.org/0246sc786 Kontel Microsystems (China)'),
(62366, 'https://ror.org/0026yhs27', 'no_lang_code', 1, 'https://ror.org/0026yhs27 China Resources (China) 華潤集團'),
(62367, 'https://ror.org/04w4yzw62', 'no_lang_code', 1, 'https://ror.org/04w4yzw62 Fujitsu (China)'),
(62368, 'https://ror.org/00c671n77', 'en', 1, 'https://ror.org/00c671n77 Hong Kong Small and Medium Enterprises Association 香港中小企业联会'),
(62369, 'https://ror.org/01fhjwb62', 'en', 1, 'https://ror.org/01fhjwb62 Chinese General Chamber of Commerce 香港中華總商會'),
(62370, 'https://ror.org/03ry0z171', 'no_lang_code', 1, 'https://ror.org/03ry0z171 Koofy Development (China)'),
(62371, 'https://ror.org/01ba3f557', 'en', 1, 'https://ror.org/01ba3f557 Chinese Manufacturers'' Association of Hong Kong 香港中華廠商聯合會'),
(62372, 'https://ror.org/00sw6qf69', 'en', 1, 'https://ror.org/00sw6qf69 Hong Kong Statistical Society 香港統計學會'),
(62373, 'https://ror.org/0058pdq21', 'no_lang_code', 1, 'https://ror.org/0058pdq21 Rodsum Wireless (China)'),
(62374, 'https://ror.org/00ar42c47', 'no_lang_code', 1, 'https://ror.org/00ar42c47 Fustec (China) 富達科技國際有限公司'),
(62375, 'https://ror.org/00ws3fz89', 'en', 1, 'https://ror.org/00ws3fz89 Hong Kong Tourism Board 香港旅遊發展局'),
(62376, 'https://ror.org/02bh71182', 'no_lang_code', 1, 'https://ror.org/02bh71182 Chuang''s Consortium International (China) 庄氏国际财团'),
(62377, 'https://ror.org/01dx9ap19', 'no_lang_code', 1, 'https://ror.org/01dx9ap19 Gameone Holdings (China) 智傲控股有限公司'),
(62378, 'https://ror.org/05wnrmt13', 'en', 1, 'https://ror.org/05wnrmt13 Hong Kong Watch Manufacturers Association 香港表廠商會有限公司'),
(62379, 'https://ror.org/002j3c366', 'en', 1, 'https://ror.org/002j3c366 Hong Kong Wireless Technology Industry Association 香港无线科技工业协会'),
(62380, 'https://ror.org/04kxcwc73', 'en', 1, 'https://ror.org/04kxcwc73 Law Society of Hong Kong 香港律師會'),
(62381, 'https://ror.org/05kxkht56', 'en', 1, 'https://ror.org/05kxkht56 The Gemmological Association of Hong Kong'),
(62382, 'https://ror.org/04ff87f07', 'no_lang_code', 1, 'https://ror.org/04ff87f07 Gene Tech (China)'),
(62383, 'https://ror.org/03r2hkg16', 'no_lang_code', 1, 'https://ror.org/03r2hkg16 Chungnam Group (China) 忠南集团'),
(62384, 'https://ror.org/044bvzh33', 'no_lang_code', 1, 'https://ror.org/044bvzh33 Sanwa Technologies (China)'),
(62385, 'https://ror.org/03gpgyd64', 'no_lang_code', 1, 'https://ror.org/03gpgyd64 GeneHarbor (China)'),
(62386, 'https://ror.org/0119xsz74', 'no_lang_code', 1, 'https://ror.org/0119xsz74 City Image Technology (China) 城市形象技术'),
(62387, 'https://ror.org/02ewh7078', 'en', 1, 'https://ror.org/02ewh7078 Clothing Industry Training Authority 制衣业训练局'),
(62388, 'https://ror.org/01tbd0258', 'no_lang_code', 1, 'https://ror.org/01tbd0258 Lexiwave Technology (China)'),
(62389, 'https://ror.org/037jwt041', 'no_lang_code', 1, 'https://ror.org/037jwt041 Clover Seed (China) 高華種子'),
(62390, 'https://ror.org/0493mnj50', 'no_lang_code', 1, 'https://ror.org/0493mnj50 Clovergreen (China)'),
(62391, 'https://ror.org/00z0gd065', 'no_lang_code', 1, 'https://ror.org/00z0gd065 Idealand Electronics (China) 理想和电子'),
(62392, 'https://ror.org/008ztbx56', 'no_lang_code', 1, 'https://ror.org/008ztbx56 Global Technic Enterprises (China)'),
(62393, 'https://ror.org/01pcjfy81', 'en', 1, 'https://ror.org/01pcjfy81 Savantas Policy Institute'),
(62394, 'https://ror.org/04fmkfb67', 'no_lang_code', 1, 'https://ror.org/04fmkfb67 Dà-Jiāng Innovations Science and Technology (China) 大疆创新科技有限公司'),
(62395, 'https://ror.org/04sjk7a65', 'no_lang_code', 1, 'https://ror.org/04sjk7a65 LinkedTech Solutions (China)'),
(62396, 'https://ror.org/01dshmj81', 'no_lang_code', 1, 'https://ror.org/01dshmj81 New Universe Environmental Group (China) 新宇國際實業(集團)有限公司'),
(62397, 'https://ror.org/00sdawb83', 'en', 1, 'https://ror.org/00sdawb83 Co-operatives of Innovative Intellectuals 创新知识分子合作社'),
(62398, 'https://ror.org/053afye15', 'no_lang_code', 1, 'https://ror.org/053afye15 iMusicTech (China)'),
(62399, 'https://ror.org/04jj4c328', 'no_lang_code', 1, 'https://ror.org/04jj4c328 AECOM (China)'),
(62400, 'https://ror.org/05aana297', 'no_lang_code', 1, 'https://ror.org/05aana297 Glory Sky Group (China)'),
(62401, 'https://ror.org/03r9sb108', 'no_lang_code', 1, 'https://ror.org/03r9sb108 LinkPowerTechnology (China)'),
(62402, 'https://ror.org/00k7bh212', 'no_lang_code', 1, 'https://ror.org/00k7bh212 Sengital (China)'),
(62403, 'https://ror.org/00fagmh73', 'no_lang_code', 1, 'https://ror.org/00fagmh73 LiteMagic (China) 磊明科技'),
(62404, 'https://ror.org/05yaab071', 'no_lang_code', 1, 'https://ror.org/05yaab071 Googol Technology (China)'),
(62405, 'https://ror.org/00r2ty054', 'no_lang_code', 1, 'https://ror.org/00r2ty054 Lively Impact (China)'),
(62406, 'https://ror.org/04hhsd771', 'no_lang_code', 1, 'https://ror.org/04hhsd771 Solomon Systech (China)'),
(62407, 'https://ror.org/054hrx607', 'no_lang_code', 1, 'https://ror.org/054hrx607 ShaoLin Microsystems (China)'),
(62408, 'https://ror.org/02thf7b44', 'no_lang_code', 1, 'https://ror.org/02thf7b44 SillyCube Technology (China)'),
(62409, 'https://ror.org/04esny758', 'en', 1, 'https://ror.org/04esny758 Hong Kong Cytogenetics and Medical Genetics Centre 医疗基因中心有限公司'),
(62410, 'https://ror.org/04r6pf442', 'no_lang_code', 1, 'https://ror.org/04r6pf442 Logital (China)'),
(62411, 'https://ror.org/05rpz9w55', 'no_lang_code', 1, 'https://ror.org/05rpz9w55 Gowell (China)'),
(62412, 'https://ror.org/04rjcfg43', 'no_lang_code', 1, 'https://ror.org/04rjcfg43 Star Vision (China)'),
(62413, 'https://ror.org/03aeycp46', 'no_lang_code', 1, 'https://ror.org/03aeycp46 Meyer (China) 美亞廚具旗艦店'),
(62414, 'https://ror.org/03w7z8f72', 'no_lang_code', 1, 'https://ror.org/03w7z8f72 GP Batteries (China)'),
(62415, 'https://ror.org/00ahxp428', 'no_lang_code', 1, 'https://ror.org/00ahxp428 Micom Tech (China)'),
(62416, 'https://ror.org/04d0zy231', 'no_lang_code', 1, 'https://ror.org/04d0zy231 Grant Technology (China)'),
(62417, 'https://ror.org/04g67gh56', 'no_lang_code', 1, 'https://ror.org/04g67gh56 Studio-R'),
(62418, 'https://ror.org/059wdnr97', 'no_lang_code', 1, 'https://ror.org/059wdnr97 Lotus Innovative Health (China)'),
(62419, 'https://ror.org/0128g9342', 'no_lang_code', 1, 'https://ror.org/0128g9342 Storage Computer (China) 儲存電腦'),
(62420, 'https://ror.org/026cpqs41', 'en', 1, 'https://ror.org/026cpqs41 Graphic Arts Association of Hong Kong'),
(62421, 'https://ror.org/04b5qs470', 'no_lang_code', 1, 'https://ror.org/04b5qs470 SinoCDN (China)'),
(62422, 'https://ror.org/0341fmf68', 'no_lang_code', 1, 'https://ror.org/0341fmf68 Lucky Technology (China) 幸运技术'),
(62423, 'https://ror.org/02t3k2v42', 'no_lang_code', 1, 'https://ror.org/02t3k2v42 Suga International Holdings (China)'),
(62424, 'https://ror.org/04zr3n007', 'no_lang_code', 1, 'https://ror.org/04zr3n007 Green Energy Engineering Consultancy (China)'),
(62425, 'https://ror.org/0029tjt59', 'no_lang_code', 1, 'https://ror.org/0029tjt59 Milescan Technologies (China)'),
(62426, 'https://ror.org/046fssx10', 'no_lang_code', 1, 'https://ror.org/046fssx10 Sun Cupid Technology (China) 太阳丘比特科技'),
(62427, 'https://ror.org/00h644t73', 'no_lang_code', 1, 'https://ror.org/00h644t73 Green Island Chinese Medicine International Group (China)'),
(62428, 'https://ror.org/0122c9a54', 'no_lang_code', 1, 'https://ror.org/0122c9a54 Suntek Computer Systems (China) 三江電腦科技'),
(62429, 'https://ror.org/05r783042', 'no_lang_code', 1, 'https://ror.org/05r783042 Vitargent (China)'),
(62430, 'https://ror.org/03yyvfk78', 'no_lang_code', 1, 'https://ror.org/03yyvfk78 Milo''s Knitwear (China) 米洛的针织品'),
(62431, 'https://ror.org/04bcbnh21', 'no_lang_code', 1, 'https://ror.org/04bcbnh21 Zensis (China)'),
(62432, 'https://ror.org/02xs6t089', 'en', 1, 'https://ror.org/02xs6t089 SupBuyer (China)'),
(62433, 'https://ror.org/03dkatp24', 'no_lang_code', 1, 'https://ror.org/03dkatp24 Longchang Group (China)'),
(62434, 'https://ror.org/05bfb6c92', 'no_lang_code', 1, 'https://ror.org/05bfb6c92 Zetakey Solutions (China)'),
(62435, 'https://ror.org/01jsj3b27', 'no_lang_code', 1, 'https://ror.org/01jsj3b27 Suren Systems (China) 西榮科技有限公司'),
(62436, 'https://ror.org/046mdph26', 'no_lang_code', 1, 'https://ror.org/046mdph26 Vitelic Technology (China)'),
(62437, 'https://ror.org/02wks8h31', 'no_lang_code', 1, 'https://ror.org/02wks8h31 MixSemi (China)'),
(62438, 'https://ror.org/00bazmd55', 'no_lang_code', 1, 'https://ror.org/00bazmd55 Well Being Digital (China)'),
(62439, 'https://ror.org/01tn6aq30', 'no_lang_code', 1, 'https://ror.org/01tn6aq30 Da Tang Xi Shi Group (China)'),
(62440, 'https://ror.org/03jpdh152', 'no_lang_code', 1, 'https://ror.org/03jpdh152 Well Synergy International (China)'),
(62441, 'https://ror.org/00y9w2r94', 'no_lang_code', 1, 'https://ror.org/00y9w2r94 Ta Solutions (China)'),
(62442, 'https://ror.org/03f20tk20', 'no_lang_code', 1, 'https://ror.org/03f20tk20 Pixelworks (China)'),
(62443, 'https://ror.org/051h3ee29', 'no_lang_code', 1, 'https://ror.org/051h3ee29 M-Gen Mobile Technology (China)'),
(62444, 'https://ror.org/01ctr6v45', 'no_lang_code', 1, 'https://ror.org/01ctr6v45 Wincas Technology (China)'),
(62445, 'https://ror.org/02eh06394', 'no_lang_code', 1, 'https://ror.org/02eh06394 Made in Sense (China)'),
(62446, 'https://ror.org/05pf8rm83', 'en', 1, 'https://ror.org/05pf8rm83 Modernized Chinese Medicine International Association 国际现代化中药'),
(62447, 'https://ror.org/048byev10', 'no_lang_code', 1, 'https://ror.org/048byev10 MotherApp (China)'),
(62448, 'https://ror.org/02pr5zn71', 'no_lang_code', 1, 'https://ror.org/02pr5zn71 Wisers (China)'),
(62449, 'https://ror.org/00bz31e77', 'no_lang_code', 1, 'https://ror.org/00bz31e77 Waste & Environmental Technologies (China)'),
(62450, 'https://ror.org/01q8yy239', 'no_lang_code', 1, 'https://ror.org/01q8yy239 Manicon Technology (China)'),
(62451, 'https://ror.org/03573kt53', 'no_lang_code', 1, 'https://ror.org/03573kt53 Mosway Semiconductor (China)'),
(62452, 'https://ror.org/00zgbag39', 'no_lang_code', 1, 'https://ror.org/00zgbag39 WiseSpot (China)'),
(62453, 'https://ror.org/012adm074', 'no_lang_code', 1, 'https://ror.org/012adm074 Multi Base (China)'),
(62454, 'https://ror.org/02qy75381', 'no_lang_code', 1, 'https://ror.org/02qy75381 Cisco Systems (China)'),
(62455, 'https://ror.org/00h6s9634', 'no_lang_code', 1, 'https://ror.org/00h6s9634 Yfisoft (China)'),
(62456, 'https://ror.org/0100xdb42', 'no_lang_code', 1, 'https://ror.org/0100xdb42 Multichannel (China) 多通道'),
(62457, 'https://ror.org/01b7f0c49', 'no_lang_code', 1, 'https://ror.org/01b7f0c49 WCW Technology (China)'),
(62458, 'https://ror.org/028ngh465', 'en', 1, 'https://ror.org/028ngh465 Young Entrepreneurs Development Council'),
(62459, 'https://ror.org/01bjkqp85', 'no_lang_code', 1, 'https://ror.org/01bjkqp85 Maxful (China)'),
(62460, 'https://ror.org/043ca0x76', 'no_lang_code', 1, 'https://ror.org/043ca0x76 Nam Kwong Electric (China) 南光電品有限公司'),
(62461, 'https://ror.org/05vd34735', 'en', 1, 'https://ror.org/05vd34735 National Centre for Immunisation Research & Surveillance'),
(62462, 'https://ror.org/011rjve03', 'en', 1, 'https://ror.org/011rjve03 Health Education and Training Institute'),
(62463, 'https://ror.org/02nhpf205', 'fr', 1, 'https://ror.org/02nhpf205 Cancéropôle Lyon Auvergne-Rhône-Alpes'),
(62464, 'https://ror.org/03s3cgk74', 'fr', 1, 'https://ror.org/03s3cgk74 Laboratoire de Mesure du Carbone 14'),
(62465, 'https://ror.org/058h5ns38', 'fr', 1, 'https://ror.org/058h5ns38 Cancéropôle Grand Sud-Ouest'),
(62466, 'https://ror.org/04rhf8d87', 'fr', 1, 'https://ror.org/04rhf8d87 Cancéropôle Nord-Ouest'),
(62467, 'https://ror.org/013ctv878', 'fr', 1, 'https://ror.org/013ctv878 Centre d''étude des solidarités sociales'),
(62468, 'https://ror.org/058snr381', 'fr', 1, 'https://ror.org/058snr381 Observatoire Régional de la Santé et du Social'),
(62469, 'https://ror.org/01q447526', 'fr', 1, 'https://ror.org/01q447526 Observatoire Régional de la Santé d’Alsace'),
(62470, 'https://ror.org/01xw83c56', 'fr', 1, 'https://ror.org/01xw83c56 Registre général des cancers de Lille et de sa région'),
(62471, 'https://ror.org/051eb2f11', 'fr', 1, 'https://ror.org/051eb2f11 Centre Hospitalier de la Dracénie'),
(62472, 'https://ror.org/02bn1dj67', 'fr', 1, 'https://ror.org/02bn1dj67 Centre d''Épidémiologie sur les Causes Médicales de Décès'),
(62473, 'https://ror.org/035qztk95', 'en', 1, 'https://ror.org/035qztk95 Riga Energy Agency Rīgas enerģētikas aģentūra'),
(62474, 'https://ror.org/01x4jh294', 'fr', 1, 'https://ror.org/01x4jh294 ARPE PACA Agence Régionale Pour l’Environnement & l’écodéveloppement Provence-Alpes-Côte d’Azur'),
(62475, 'https://ror.org/00m8yma53', 'en', 1, 'https://ror.org/00m8yma53 Architectural Design Agency Архитектурно-Дизайнерска Агенция ООД'),
(62476, 'https://ror.org/043xhrz72', 'en', 1, 'https://ror.org/043xhrz72 Badan Meteorologi, Klimatologi, dan Geofisika Meteorological, Climatological, And Geophysical Agency'),
(62477, 'https://ror.org/003rwad73', 'de', 1, 'https://ror.org/003rwad73 Bundesverband Herzkranke Kinder'),
(62478, 'https://ror.org/00z6nt756', 'en', 1, 'https://ror.org/00z6nt756 Aberdeen Harbour Board'),
(62479, 'https://ror.org/02fx3wf30', 'de', 1, 'https://ror.org/02fx3wf30 Bundesverband IT-Mittelstand'),
(62480, 'https://ror.org/038ravk06', 'en', 1, 'https://ror.org/038ravk06 Abraham Lincoln Bicentennial Foundation'),
(62481, 'https://ror.org/029v5kx43', 'en', 1, 'https://ror.org/029v5kx43 Bahá''í Agency for Social and Economic Development'),
(62482, 'https://ror.org/01n78v775', 'de', 1, 'https://ror.org/01n78v775 Bundesverband Kalksandsteinindustrie'),
(62483, 'https://ror.org/059q78r10', 'en', 1, 'https://ror.org/059q78r10 Ministry of Health'),
(62484, 'https://ror.org/055ehs005', 'no_lang_code', 1, 'https://ror.org/055ehs005 Bundesverbandes Keramische Industrie (Germany)'),
(62485, 'https://ror.org/02tn9qe75', 'en', 1, 'https://ror.org/02tn9qe75 Accreditation and Quality Assurance Commission لجنة الاعتماد وضمان الجودة'),
(62486, 'https://ror.org/002pjp005', 'en', 1, 'https://ror.org/002pjp005 Baltic Marine Environment Protection Commission'),
(62487, 'https://ror.org/02qp22n14', 'en', 1, 'https://ror.org/02qp22n14 Association for Supply Chain Management, Procurement and Logistics Bundesverband Materialwirtschaft, Einkauf und Logistik'),
(62488, 'https://ror.org/0211fbv71', 'en', 1, 'https://ror.org/0211fbv71 Academy of Engineering Sciences أكاديمية العلوم الهندسية'),
(62489, 'https://ror.org/029bt1211', 'en', 1, 'https://ror.org/029bt1211 Sudan Academy for Banking and Financial Sciences أكاديمية السودان للعلوم المصرفية والمالية'),
(62490, 'https://ror.org/04hwz0a59', 'de', 1, 'https://ror.org/04hwz0a59 Bundesverband mittelständische Wirtschaft'),
(62491, 'https://ror.org/00pw5mk76', 'de', 1, 'https://ror.org/00pw5mk76 Bundesverband Naturkost Naturwaren'),
(62492, 'https://ror.org/00vcfn567', 'en', 1, 'https://ror.org/00vcfn567 Association of German Public Banks Bundesverband Öffentlicher Banken Deutschlands'),
(62493, 'https://ror.org/04mrvfq25', 'fr', 1, 'https://ror.org/04mrvfq25 Agence pour l’Entreprise & l’Innovation'),
(62494, 'https://ror.org/013bx1v37', 'no_lang_code', 1, 'https://ror.org/013bx1v37 Banedanmark (Denmark)'),
(62495, 'https://ror.org/03v2qmr34', 'fr', 1, 'https://ror.org/03v2qmr34 Agence pour le développement de l''emploi'),
(62496, 'https://ror.org/004zxvq64', 'en', 1, 'https://ror.org/004zxvq64 Bundesministerium der Finanzen Federal Ministry of Finance'),
(62497, 'https://ror.org/03428zt70', 'en', 1, 'https://ror.org/03428zt70 Bangladesh Medical Research Council'),
(62498, 'https://ror.org/02s2m5c86', 'de', 1, 'https://ror.org/02s2m5c86 Bundesverband Reifenhandel und Vulkaniseur-Handwerk'),
(62499, 'https://ror.org/01ve3tk51', 'en', 1, 'https://ror.org/01ve3tk51 Administrative Conference of the United States'),
(62500, 'https://ror.org/05d0pa414', 'en', 1, 'https://ror.org/05d0pa414 Bundesverband Solarwirtschaft German Solar Association'),
(62501, 'https://ror.org/01w3c2c15', 'fr', 1, 'https://ror.org/01w3c2c15 Belga'),
(62502, 'https://ror.org/04pdkbc41', 'de', 1, 'https://ror.org/04pdkbc41 VAF Bundesverband Telekommunikation'),
(62503, 'https://ror.org/026p9k915', 'pl', 1, 'https://ror.org/026p9k915 Agencja Rozwoju Miasta'),
(62504, 'https://ror.org/00nypd214', 'en', 1, 'https://ror.org/00nypd214 Bundesverband WindEnergie German Wind Energy Association'),
(62505, 'https://ror.org/03gaznv39', 'en', 1, 'https://ror.org/03gaznv39 Bundesministerium für Justiz Federal Ministry of Justice'),
(62506, 'https://ror.org/024cyxm63', 'fr', 1, 'https://ror.org/024cyxm63 Bruxelles-Propreté'),
(62507, 'https://ror.org/01tevac66', 'no_lang_code', 1, 'https://ror.org/01tevac66 Agencja Rozwoju Przemysłu SA Industrial Development Agency JSC (Poland)'),
(62508, 'https://ror.org/00ch65t46', 'en', 1, 'https://ror.org/00ch65t46 Auvergne-Rhone-Alpes Entreprises'),
(62509, 'https://ror.org/04nfvqg35', 'es', 1, 'https://ror.org/04nfvqg35 Barcelona Energia'),
(62510, 'https://ror.org/04pxj3v44', 'en', 1, 'https://ror.org/04pxj3v44 Agency for Innovation and Technology Transfer Agenția pentru Inovare și Transfer Tehnologic Агентство по Иновации и Технологическому'),
(62511, 'https://ror.org/03f53yd09', 'fr', 1, 'https://ror.org/03f53yd09 Certifer'),
(62512, 'https://ror.org/03bsery98', 'en', 1, 'https://ror.org/03bsery98 Bundesministerium für Soziales, Gesundheit, Pflege und Konsumentenschutz Federal Ministry of Social Affairs, Health, Care and Consumer Protection'),
(62513, 'https://ror.org/01tp7ze67', 'fr', 1, 'https://ror.org/01tp7ze67 Energieagence'),
(62514, 'https://ror.org/0462w7z59', 'en', 1, 'https://ror.org/0462w7z59 German Agency for Quality in Medicine Ärztliches Zentrum für Qualität in der Medizin (ÄZQ)'),
(62515, 'https://ror.org/00d2xk240', 'de', 1, 'https://ror.org/00d2xk240 Bayerisches Staatsministerium der Finanzen, für Landesentwicklung und Heimat'),
(62516, 'https://ror.org/01h1t5f62', 'en', 1, 'https://ror.org/01h1t5f62 Bulgarian Small and Medium Enterprises Promotion Agency'),
(62517, 'https://ror.org/03taw0g66', 'en', 1, 'https://ror.org/03taw0g66 Agency for Social Analyses Агенцията за социални анализи');
INSERT INTO `rors` VALUES
(62518, 'https://ror.org/015gyv119', 'no_lang_code', 1, 'https://ror.org/015gyv119 Austrian Federal Computing Centre Bundesrechenzentrum (Austria)'),
(62519, 'https://ror.org/00169v428', 'en', 1, 'https://ror.org/00169v428 The Sitia Development Organisation Ο Οργανισμός Ανάπτυξης Σητείας'),
(62520, 'https://ror.org/03p7qab35', 'en', 1, 'https://ror.org/03p7qab35 Atlantic Arc Commission'),
(62521, 'https://ror.org/01yx4gk53', 'en', 1, 'https://ror.org/01yx4gk53 Office of the Secretary of Natural Resources'),
(62522, 'https://ror.org/046ec1h37', 'de', 1, 'https://ror.org/046ec1h37 Bundesverband Baustoffe - Steine und Erden German Building Materials Association'),
(62523, 'https://ror.org/007dnkv23', 'en', 1, 'https://ror.org/007dnkv23 Presidential Executive Office Администрация Президента'),
(62524, 'https://ror.org/05rr45446', 'de', 1, 'https://ror.org/05rr45446 Bundesverband CarSharing'),
(62525, 'https://ror.org/010m1c258', 'fr', 1, 'https://ror.org/010m1c258 Agence eSanté'),
(62526, 'https://ror.org/02m0d9n15', 'de', 1, 'https://ror.org/02m0d9n15 Bundesverband der Deutschen Binnenschiffahrt'),
(62527, 'https://ror.org/01y335991', 'en', 1, 'https://ror.org/01y335991 Institute of Transport Engineering Всероссийский научно-исследовательский институт транспортного машиностроения'),
(62528, 'https://ror.org/011k1kc60', 'en', 1, 'https://ror.org/011k1kc60 Bundesverband der Deutschen Luft- und Raumfahrtindustrie German Aerospace Industries Association'),
(62529, 'https://ror.org/04gdd6b52', 'en', 1, 'https://ror.org/04gdd6b52 European Youth Information and Counselling Agency Europäesch Jugendinformatioun an Berodungsassistent'),
(62530, 'https://ror.org/03zqt7766', 'de', 1, 'https://ror.org/03zqt7766 Bundesverband der Deutschen Tourismuswirtschaft Federal Association of the German Tourism Industry'),
(62531, 'https://ror.org/04fjx8e69', 'en', 1, 'https://ror.org/04fjx8e69 The Deputy Prime Minister''s Office'),
(62532, 'https://ror.org/04340b392', 'no_lang_code', 1, 'https://ror.org/04340b392 Agency9 (Sweden)'),
(62533, 'https://ror.org/03eszxk44', 'en', 1, 'https://ror.org/03eszxk44 Berkeley-Charleston-Dorchester Council of Governments'),
(62534, 'https://ror.org/00aakw318', 'en', 1, 'https://ror.org/00aakw318 Ministry of Foreign Affairs 新加坡外交部'),
(62535, 'https://ror.org/05hrscm27', 'fr', 1, 'https://ror.org/05hrscm27 CRIIRAD Commission de Recherche et d’Information Indépendantes sur la Radioactivité'),
(62536, 'https://ror.org/03dnebc81', 'en', 1, 'https://ror.org/03dnebc81 Bundesverband der Deutschen Volksbanken und Raiffeisenbanken National Association of German Cooperative Bank'),
(62537, 'https://ror.org/02k9k1t09', 'pt', 1, 'https://ror.org/02k9k1t09 Administração e Gestão de Sistemas de Salubridade'),
(62538, 'https://ror.org/05dzk5241', 'en', 1, 'https://ror.org/05dzk5241 Bern Economic Development Agency Standortförderung Kanton Bern'),
(62539, 'https://ror.org/02738s524', 'de', 1, 'https://ror.org/02738s524 Bundesverband der Deutschen Ziegelindustrie'),
(62540, 'https://ror.org/00a7jw027', 'fr', 1, 'https://ror.org/00a7jw027 Agence Française pour le Développement et la Promotion de l’Agriculture Biologique'),
(62541, 'https://ror.org/01cdkgk90', 'en', 1, 'https://ror.org/01cdkgk90 Churches’ Commission for Migrants in Europe'),
(62542, 'https://ror.org/015jj1011', 'fr', 1, 'https://ror.org/015jj1011 Minister of the Interior Ministère de l''Intérieur'),
(62543, 'https://ror.org/01w34q495', 'de', 1, 'https://ror.org/01w34q495 Bundesvereinigung der Deutschen Ernährungsindustrie Federation of German Food and Drink Industries'),
(62544, 'https://ror.org/03x58gj82', 'en', 1, 'https://ror.org/03x58gj82 Alabama Bicentennial Commission'),
(62545, 'https://ror.org/03r7ya547', 'de', 1, 'https://ror.org/03r7ya547 Der Österreichische Weinbauverband'),
(62546, 'https://ror.org/03hfst573', 'en', 1, 'https://ror.org/03hfst573 Arizona Secretary of State''s Office'),
(62547, 'https://ror.org/04ckzvj54', 'en', 1, 'https://ror.org/04ckzvj54 Consumer Protection Commission Комисия за защита на потребителите'),
(62548, 'https://ror.org/00h05fc28', 'en', 1, 'https://ror.org/00h05fc28 Alabama Department of Economic and Community Affairs'),
(62549, 'https://ror.org/03knart10', 'fr', 1, 'https://ror.org/03knart10 Agence France-Presse'),
(62550, 'https://ror.org/03e3mtv29', 'en', 1, 'https://ror.org/03e3mtv29 Frank and Rosemary Iovieno Caring for Children Foundation'),
(62551, 'https://ror.org/001amex23', 'en', 1, 'https://ror.org/001amex23 Missouri Secretary of State''s Office'),
(62552, 'https://ror.org/04951gp18', 'en', 1, 'https://ror.org/04951gp18 Alabama Historical Commission'),
(62553, 'https://ror.org/01dznag44', 'en', 1, 'https://ror.org/01dznag44 Office of Washington Secretary of State'),
(62554, 'https://ror.org/0580q1236', 'en', 1, 'https://ror.org/0580q1236 Alaska Department of Commerce, Community and Economic Development'),
(62555, 'https://ror.org/001hybk69', 'en', 1, 'https://ror.org/001hybk69 Association of German Banks Bundesverband deutscher Banken'),
(62556, 'https://ror.org/00vdwtt91', 'en', 1, 'https://ror.org/00vdwtt91 National Black Leadership Commission on AIDS'),
(62557, 'https://ror.org/056kqr545', 'fr', 1, 'https://ror.org/056kqr545 Agence Locale de l''Energie et du Climat de la Métropole de Lyon'),
(62558, 'https://ror.org/03751qd82', 'en', 1, 'https://ror.org/03751qd82 The Alaska Sea Otter and Steller Sea Lion Commission'),
(62559, 'https://ror.org/04ynzkj24', 'no_lang_code', 1, 'https://ror.org/04ynzkj24 Blackboard (United States)'),
(62560, 'https://ror.org/05m9b8032', 'fr', 1, 'https://ror.org/05m9b8032 Agence Luxembourgeoise d''Action Culturelle'),
(62561, 'https://ror.org/05jzn3892', 'de', 1, 'https://ror.org/05jzn3892 Bundesverband Flachglas Federal Flat Glass Association'),
(62562, 'https://ror.org/05aw74s61', 'en', 1, 'https://ror.org/05aw74s61 Commission Internationale des Examens de Conduite Automobile The International Commission for Driver Testing'),
(62563, 'https://ror.org/049x6dn19', 'en', 1, 'https://ror.org/049x6dn19 Irish Blood Transfusion Service Seirbhís Fuilaistriúcháin na hÉireann'),
(62564, 'https://ror.org/03rf8vd59', 'de', 1, 'https://ror.org/03rf8vd59 Bundesverband Freier Radios'),
(62565, 'https://ror.org/010sks923', 'en', 1, 'https://ror.org/010sks923 The Mediterranean Science Commission'),
(62566, 'https://ror.org/00khsrq71', 'de', 1, 'https://ror.org/00khsrq71 Bundesverband Garten- Landschafts- und Sportplatzbau'),
(62567, 'https://ror.org/04txdsx22', 'de', 1, 'https://ror.org/04txdsx22 Allgemeiner Deutscher Fahrrad-Club'),
(62568, 'https://ror.org/01q4pmw61', 'de', 1, 'https://ror.org/01q4pmw61 Bundesverband Glaukom-Selbsthilfe'),
(62569, 'https://ror.org/01syk7628', 'fr', 1, 'https://ror.org/01syk7628 Agence Nationale de Protection de l''Environnement'),
(62570, 'https://ror.org/01cv6t012', 'no_lang_code', 1, 'https://ror.org/01cv6t012 Board of Innovation (Belgium)'),
(62571, 'https://ror.org/05wwp6197', 'de', 1, 'https://ror.org/05wwp6197 Bundeswehrzentralkrankenhaus Koblenz'),
(62572, 'https://ror.org/00dfw9p58', 'fr', 1, 'https://ror.org/00dfw9p58 Santé Publique France'),
(62573, 'https://ror.org/035t6ww14', 'en', 1, 'https://ror.org/035t6ww14 National Museum of Ireland'),
(62574, 'https://ror.org/02kp07769', 'en', 1, 'https://ror.org/02kp07769 American Conference of Governmental Industrial Hygienists'),
(62575, 'https://ror.org/041wbs441', 'it', 1, 'https://ror.org/041wbs441 Commissione Nazionale per le Società e la Borsa'),
(62576, 'https://ror.org/03r7nme33', 'de', 1, 'https://ror.org/03r7nme33 Bundesverband Sekundärrohstoffe und Entsorgung'),
(62577, 'https://ror.org/050m8a892', 'en', 1, 'https://ror.org/050m8a892 Commodity Futures Trading Commission'),
(62578, 'https://ror.org/01cad8852', 'ga', 1, 'https://ror.org/01cad8852 Fáilte Ireland'),
(62579, 'https://ror.org/01scdmg11', 'fr', 1, 'https://ror.org/01scdmg11 Agence des Systèmes d’information Partagés de Santé'),
(62580, 'https://ror.org/006424y87', 'en', 1, 'https://ror.org/006424y87 Office of the Attorney General'),
(62581, 'https://ror.org/03dp0nd82', 'en', 1, 'https://ror.org/03dp0nd82 British Board of Agrément'),
(62582, 'https://ror.org/04vbsjz82', 'en', 1, 'https://ror.org/04vbsjz82 Danish Ministry of Children and Education Undervisningsministeriet'),
(62583, 'https://ror.org/02tf3z094', 'en', 1, 'https://ror.org/02tf3z094 British Board of Film Classification'),
(62584, 'https://ror.org/02pn32n10', 'en', 1, 'https://ror.org/02pn32n10 British High Commission Singapore'),
(62585, 'https://ror.org/025ypjv50', 'en', 1, 'https://ror.org/025ypjv50 Community Water and Sanitation Agency'),
(62586, 'https://ror.org/03aqz1r62', 'en', 1, 'https://ror.org/03aqz1r62 British High Commission Nairobi'),
(62587, 'https://ror.org/01nm2rj64', 'fr', 1, 'https://ror.org/01nm2rj64 Agence pour la Coopération Scientifique Afrique Luxembourg'),
(62588, 'https://ror.org/04stwsr82', 'fr', 1, 'https://ror.org/04stwsr82 Agence pour la Promotion de la Création Industrielle'),
(62589, 'https://ror.org/01s1egc39', 'no_lang_code', 1, 'https://ror.org/01s1egc39 Dashboard (United Kingdom)'),
(62590, 'https://ror.org/05hn8j260', 'no_lang_code', 1, 'https://ror.org/05hn8j260 Administrația Porturilor Maritime Constantza Port (Romania)'),
(62591, 'https://ror.org/03ddkyw71', 'en', 1, 'https://ror.org/03ddkyw71 Bulgarian Food Safety Agency Българска Агенция по Безопасност на Храните'),
(62592, 'https://ror.org/00jztws02', 'en', 1, 'https://ror.org/00jztws02 Defence Equipment and Support'),
(62593, 'https://ror.org/02t4g5c48', 'en', 1, 'https://ror.org/02t4g5c48 Arab Civil Aviation Commission الهيئة العربية للطيران المدني'),
(62594, 'https://ror.org/021m1ad11', 'de', 1, 'https://ror.org/021m1ad11 AWO Bundesverband Arbeiterwohlfahrt Bundesverband'),
(62595, 'https://ror.org/053amty26', 'en', 1, 'https://ror.org/053amty26 Delaware Heritage Commission'),
(62596, 'https://ror.org/03rd9h303', 'en', 1, 'https://ror.org/03rd9h303 Delaware River Basin Commission'),
(62597, 'https://ror.org/03d4vn886', 'it', 1, 'https://ror.org/03d4vn886 Consorzio Mipa'),
(62598, 'https://ror.org/032a11168', 'de', 1, 'https://ror.org/032a11168 Arbeitsgemeinschaft Mauerziegel'),
(62599, 'https://ror.org/029kkqw66', 'en', 1, 'https://ror.org/029kkqw66 Democratic Commission for Human Development'),
(62600, 'https://ror.org/05wdqnb80', 'en', 1, 'https://ror.org/05wdqnb80 Construction Industry Training Board'),
(62601, 'https://ror.org/008923h68', 'en', 1, 'https://ror.org/008923h68 Archives State Agency Държавна агенция "Архиви"'),
(62602, 'https://ror.org/01y6s8j60', 'en', 1, 'https://ror.org/01y6s8j60 Cyprus Post Kıbrıs Posta Ofisi'),
(62603, 'https://ror.org/045kyae46', 'en', 1, 'https://ror.org/045kyae46 Ministry of Agriculture and Fisheries'),
(62604, 'https://ror.org/03w4n2z21', 'de', 1, 'https://ror.org/03w4n2z21 Bundesamt für Weinbau'),
(62605, 'https://ror.org/02gg0at36', 'en', 1, 'https://ror.org/02gg0at36 Council of European Aerospace Societies'),
(62606, 'https://ror.org/021pght82', 'en', 1, 'https://ror.org/021pght82 An Roinn Caiteachais Phoiblí agus Athchóirithe Department of Public Expenditure and Reform'),
(62607, 'https://ror.org/02xh5g973', 'en', 1, 'https://ror.org/02xh5g973 Ministry of Healthcare Հայաստանի Հանրապետության առողջապահության նախարարություն'),
(62608, 'https://ror.org/056te6132', 'en', 1, 'https://ror.org/056te6132 Ceemet'),
(62609, 'https://ror.org/02f8fjx04', 'en', 1, 'https://ror.org/02f8fjx04 Ashtabula County Mental Health & Recovery Services Board'),
(62610, 'https://ror.org/00j1gmf24', 'en', 1, 'https://ror.org/00j1gmf24 The Department of Arkansas Heritage'),
(62611, 'https://ror.org/04a6pz225', 'de', 1, 'https://ror.org/04a6pz225 HBLFA Tirol Höhere Bundeslehr- und Forschungsanstalt für Landwirtschaft und Ernährung, Lebensmittel- und Biotechnologie Tirol'),
(62612, 'https://ror.org/00rdva175', 'en', 1, 'https://ror.org/00rdva175 Bundesagentur für Arbeit Federal Employment Agency'),
(62613, 'https://ror.org/04gjwsq09', 'en', 1, 'https://ror.org/04gjwsq09 European Association for Local Democracy'),
(62614, 'https://ror.org/05hamn538', 'en', 1, 'https://ror.org/05hamn538 Bundesanstalt für Agrarwirtschaft Federal Institute of Agricultural Economics'),
(62615, 'https://ror.org/04xxknx59', 'en', 1, 'https://ror.org/04xxknx59 Council on Health Research for Development'),
(62616, 'https://ror.org/046hgyp50', 'en', 1, 'https://ror.org/046hgyp50 Cowlitz-Wahkiakum Council of Governments'),
(62617, 'https://ror.org/002z7gg85', 'en', 1, 'https://ror.org/002z7gg85 Department of the Taoiseach Roinn an Taoisigh'),
(62618, 'https://ror.org/04k9aq609', 'en', 1, 'https://ror.org/04k9aq609 ECDL Foundation'),
(62619, 'https://ror.org/02jnvb825', 'en', 1, 'https://ror.org/02jnvb825 Department of Cultural Heritage Kultūros paveldo departamentas'),
(62620, 'https://ror.org/042tbn311', 'en', 1, 'https://ror.org/042tbn311 Department of Defence'),
(62621, 'https://ror.org/05b0gd358', 'en', 1, 'https://ror.org/05b0gd358 Detroit Rescue Mission Ministries'),
(62622, 'https://ror.org/0546h2150', 'en', 1, 'https://ror.org/0546h2150 Department of Disaster Prevention and Mitigation กรมป้องกันและบรรเทาสาธารณภัย'),
(62623, 'https://ror.org/03r8s5d09', 'en', 1, 'https://ror.org/03r8s5d09 Coimisean nan Croitearan Crofting Commission'),
(62624, 'https://ror.org/02d0ewh10', 'en', 1, 'https://ror.org/02d0ewh10 Florida Department of Economic Opportunity'),
(62625, 'https://ror.org/003jehd84', 'en', 1, 'https://ror.org/003jehd84 Cromarty Firth Fishery Board'),
(62626, 'https://ror.org/00d01mn47', 'de', 1, 'https://ror.org/00d01mn47 ECOVIN Bundesverband Ökologischer Weinbau'),
(62627, 'https://ror.org/013gmhc80', 'en', 1, 'https://ror.org/013gmhc80 Development Agency for Amvrakikos Αναπτυξιακός Οργανισμός Αμβρακικού'),
(62628, 'https://ror.org/032331w61', 'en', 1, 'https://ror.org/032331w61 Development Agency of Karditsa'),
(62629, 'https://ror.org/00n0egr15', 'en', 1, 'https://ror.org/00n0egr15 Development Agency of Serbia Развојна агенција Србије'),
(62630, 'https://ror.org/04dt6nf05', 'en', 1, 'https://ror.org/04dt6nf05 European Plasticisers'),
(62631, 'https://ror.org/04zyrd219', 'cs', 1, 'https://ror.org/04zyrd219 Agentura pro podporu podnikání a investic CzechInvest'),
(62632, 'https://ror.org/03q2s0610', 'no_lang_code', 1, 'https://ror.org/03q2s0610 Edgewater Federal Solutions (United States)'),
(62633, 'https://ror.org/03h6a8753', 'en', 1, 'https://ror.org/03h6a8753 Education and Early Childhood Development'),
(62634, 'https://ror.org/027shs254', 'en', 1, 'https://ror.org/027shs254 Development Agency of Thessaloniki Αναπτυξιακή Νομού Θεσσαλονίκης Α.Ε'),
(62635, 'https://ror.org/03acn2870', 'en', 1, 'https://ror.org/03acn2870 Executive Agency Electronic Communication Networks and Information Systems'),
(62636, 'https://ror.org/01p93xj71', 'en', 1, 'https://ror.org/01p93xj71 Danish Board of District Heating'),
(62637, 'https://ror.org/05b2ydd02', 'en', 1, 'https://ror.org/05b2ydd02 Executive Agency Maritime Administration Изпълнителна агенция "Морска Администрация"'),
(62638, 'https://ror.org/00n92fc55', 'en', 1, 'https://ror.org/00n92fc55 Danish Business Authority'),
(62639, 'https://ror.org/0210g9419', 'no_lang_code', 1, 'https://ror.org/0210g9419 Åre Skidfabrik (Sweden)'),
(62640, 'https://ror.org/0126xra53', 'en', 1, 'https://ror.org/0126xra53 Hellenic Agency for Local Development and Local Government Ελληνική Εταιρία Τοπικής Ανάπτυξης και Αυτοδιοίκησης'),
(62641, 'https://ror.org/02vmmpc69', 'en', 1, 'https://ror.org/02vmmpc69 Fairfax-Falls Church Community Services Board'),
(62642, 'https://ror.org/00kzfz874', 'en', 1, 'https://ror.org/00kzfz874 Latvijas Republikas Ekonomikas ministrija Ministry of Economics'),
(62643, 'https://ror.org/04w5qyg24', 'en', 1, 'https://ror.org/04w5qyg24 Maryland Emergency Management Agency'),
(62644, 'https://ror.org/02w5vdf29', 'en', 1, 'https://ror.org/02w5vdf29 Caribbean Health Research Council'),
(62645, 'https://ror.org/055gtbq27', 'en', 1, 'https://ror.org/055gtbq27 Tennessee Emergency Management Agency'),
(62646, 'https://ror.org/05xyc2351', 'en', 1, 'https://ror.org/05xyc2351 All-Russian Scientific Research Institute of Freshwater Fisheries Всероссийский научно-исследовательский институт пресноводного рыбного хозяйствa'),
(62647, 'https://ror.org/01vdscs87', 'en', 1, 'https://ror.org/01vdscs87 All-Russian Research Institute for Animal Health Всероссийский научно-исследовательский институт здоровья животных'),
(62648, 'https://ror.org/00ebq8d78', 'en', 1, 'https://ror.org/00ebq8d78 Catholic Agency for Overseas Development'),
(62649, 'https://ror.org/00jb49g69', 'en', 1, 'https://ror.org/00jb49g69 JSC Federal Center for Geoecological Systems'),
(62650, 'https://ror.org/0262wvq91', 'no_lang_code', 1, 'https://ror.org/0262wvq91 Celerity (United States)'),
(62651, 'https://ror.org/03pm9cy40', 'it', 1, 'https://ror.org/03pm9cy40 Agenzia Energetica Della Provincia Di Livorno'),
(62652, 'https://ror.org/05dbmr667', 'en', 1, 'https://ror.org/05dbmr667 Entidade de Serviços Partilhados da Administração Pública Government Shared Services Entity'),
(62653, 'https://ror.org/0410sm148', 'en', 1, 'https://ror.org/0410sm148 Federal Management Partners'),
(62654, 'https://ror.org/009tmjw71', 'en', 1, 'https://ror.org/009tmjw71 Environmental Centre for Administration and Technology Viešoji įstaiga Aplinkosaugos valdymo ir technologijų'),
(62655, 'https://ror.org/04b855715', 'en', 1, 'https://ror.org/04b855715 Pakistan Environmental Protection Agency'),
(62656, 'https://ror.org/05rjfmp35', 'no_lang_code', 1, 'https://ror.org/05rjfmp35 Alexium (United States)'),
(62657, 'https://ror.org/02b5y2p11', 'en', 1, 'https://ror.org/02b5y2p11 Department of Fisheries and Marine Research Τμήματος Αλιείας και Θαλασσίων Ερευνών'),
(62658, 'https://ror.org/00y22s337', 'en', 1, 'https://ror.org/00y22s337 Directia pentru Evidenta Persoanelor si Administrarea Bazelor de Date Directorate for Persons Record and Databases Management'),
(62659, 'https://ror.org/0003ang68', 'en', 1, 'https://ror.org/0003ang68 Federal Forestry Agency of Russia Федеральная лесная служба России'),
(62660, 'https://ror.org/03drbv102', 'pt', 1, 'https://ror.org/03drbv102 Escola de Negócios e Administração'),
(62661, 'https://ror.org/02hf3eh91', 'no_lang_code', 1, 'https://ror.org/02hf3eh91 Eska (Netherlands)'),
(62662, 'https://ror.org/00pqj0a35', 'en', 1, 'https://ror.org/00pqj0a35 An Roinn Dlí agus Cirt Department of Justice'),
(62663, 'https://ror.org/04gwfmd61', 'en', 1, 'https://ror.org/04gwfmd61 Department of Livestock Development กรมปศุสัตว์'),
(62664, 'https://ror.org/04y9x6j75', 'en', 1, 'https://ror.org/04y9x6j75 All-Russian Research Geological Oil Institute Всероссийский научно-исследовательский геологический институт нефти'),
(62665, 'https://ror.org/04896fz93', 'fr', 1, 'https://ror.org/04896fz93 Commission Internationale pour la Protection des Alpes'),
(62666, 'https://ror.org/02f0tm013', 'id', 1, 'https://ror.org/02f0tm013 Direktorat Jenderal Peternakan dan Kesehatan Hewan'),
(62667, 'https://ror.org/05pwe3434', 'en', 1, 'https://ror.org/05pwe3434 The Federal Trust'),
(62668, 'https://ror.org/01scevc62', 'en', 1, 'https://ror.org/01scevc62 Directorate of Fisheries Fiskeridirektoratet'),
(62669, 'https://ror.org/00sxe1e69', 'en', 1, 'https://ror.org/00sxe1e69 Citizens Committee for Historic Preservation'),
(62670, 'https://ror.org/01bka6482', 'en', 1, 'https://ror.org/01bka6482 FOD Werkgelegenheid, Arbeid en Sociaal Overleg Federal Public Service Employment, Labour and Social Dialogue FÖD Beschäftigung, Arbeit und Soziale Konzertierung SPF Emploi, Travail et Concertation sociale'),
(62671, 'https://ror.org/01t85ct65', 'en', 1, 'https://ror.org/01t85ct65 European Association of Research Managers and Administrators'),
(62672, 'https://ror.org/018hb5750', 'en', 1, 'https://ror.org/018hb5750 European Aviation Safety Agency'),
(62673, 'https://ror.org/038ntq021', 'en', 1, 'https://ror.org/038ntq021 European Biodiesel Board'),
(62674, 'https://ror.org/039exhw19', 'no_lang_code', 1, 'https://ror.org/039exhw19 Federalimentare (Italy)'),
(62675, 'https://ror.org/04h6dc762', 'en', 1, 'https://ror.org/04h6dc762 State Board of Education'),
(62676, 'https://ror.org/02ng64w29', 'en', 1, 'https://ror.org/02ng64w29 Dobrich Local Agency for Energy Management Добрич Агенция за управление на енергията'),
(62677, 'https://ror.org/036qa5g72', 'en', 1, 'https://ror.org/036qa5g72 Coachella Valley Association of Governments'),
(62678, 'https://ror.org/02gww2486', 'bs', 1, 'https://ror.org/02gww2486 Federalni hidrometeorološki zavod'),
(62679, 'https://ror.org/03n6ptv32', 'en', 1, 'https://ror.org/03n6ptv32 Coastal Watershed Council'),
(62680, 'https://ror.org/003vwv291', 'en', 1, 'https://ror.org/003vwv291 Asiantaeth Trwyddedu Gyrwyr a Cherbydau Driver and Vehicle Licensing Agency'),
(62681, 'https://ror.org/008s4ef43', 'en', 1, 'https://ror.org/008s4ef43 European Federation of Agencies and Regions for Energy and Environment'),
(62682, 'https://ror.org/01k814a06', 'en', 1, 'https://ror.org/01k814a06 Coconut Industry Board'),
(62683, 'https://ror.org/04xytpa07', 'en', 1, 'https://ror.org/04xytpa07 European Council for an Energy Efficient Economy'),
(62684, 'https://ror.org/01rc3sz57', 'en', 1, 'https://ror.org/01rc3sz57 European Shippers'' Council'),
(62685, 'https://ror.org/04c9j0t17', 'en', 1, 'https://ror.org/04c9j0t17 Collingswood Public Schools'),
(62686, 'https://ror.org/02fse8e52', 'en', 1, 'https://ror.org/02fse8e52 Federation of Sri Lankan Local Government Authorities'),
(62687, 'https://ror.org/04f41jv37', 'en', 1, 'https://ror.org/04f41jv37 Flanders Environment Agency Vlaamse Milieumaatschappij'),
(62688, 'https://ror.org/018y30a94', 'en', 1, 'https://ror.org/018y30a94 Dutch Fish Marketing Board Nederlands Visbureau'),
(62689, 'https://ror.org/01g3jyj45', 'no_lang_code', 1, 'https://ror.org/01g3jyj45 Fermion Government Services (United States)'),
(62690, 'https://ror.org/04qs09z04', 'en', 1, 'https://ror.org/04qs09z04 Florida Certification Board'),
(62691, 'https://ror.org/02wy0xt13', 'en', 1, 'https://ror.org/02wy0xt13 European Council on Refugees and Exiles'),
(62692, 'https://ror.org/026kkn784', 'en', 1, 'https://ror.org/026kkn784 Columbus Consolidated Government'),
(62693, 'https://ror.org/03njbda75', 'en', 1, 'https://ror.org/03njbda75 Danish Ministry of Finance Finansministeriet'),
(62694, 'https://ror.org/049sf4b15', 'de', 1, 'https://ror.org/049sf4b15 Finanzministerium des Landes Schleswig-Holstein'),
(62695, 'https://ror.org/05sj3q575', 'en', 1, 'https://ror.org/05sj3q575 European Union Agency for Law Enforcement Cooperation'),
(62696, 'https://ror.org/05cendc56', 'en', 1, 'https://ror.org/05cendc56 East Baton Rouge Parish School System'),
(62697, 'https://ror.org/05tnntp68', 'en', 1, 'https://ror.org/05tnntp68 Commission de Formation de l''Est Ontarien Eastern Ontario Training Board'),
(62698, 'https://ror.org/03b2mxf68', 'en', 1, 'https://ror.org/03b2mxf68 European Transport Safety Council'),
(62699, 'https://ror.org/01pdtb768', 'en', 1, 'https://ror.org/01pdtb768 Health Protection Agency'),
(62700, 'https://ror.org/050s4mf29', 'en', 1, 'https://ror.org/050s4mf29 Danish Nature Agency Naturstyrelsen'),
(62701, 'https://ror.org/04g526d38', 'en', 1, 'https://ror.org/04g526d38 European Utilities Telecom Council'),
(62702, 'https://ror.org/04fc1vj20', 'en', 1, 'https://ror.org/04fc1vj20 International Commission for the Hydrology of the Rhine Basin Internationale Kommission für die Hydrologie des Rheingebietes'),
(62703, 'https://ror.org/0498wda10', 'en', 1, 'https://ror.org/0498wda10 European Writers'' Council'),
(62704, 'https://ror.org/0445snd35', 'en', 1, 'https://ror.org/0445snd35 Federal Motor Transport Authority Kraftfahrt-Bundesamt'),
(62705, 'https://ror.org/05w2j5k62', 'en', 1, 'https://ror.org/05w2j5k62 International Commission on Illumination Internationale Beleuchtungskommission'),
(62706, 'https://ror.org/00xe3w941', 'en', 1, 'https://ror.org/00xe3w941 Applied Energy Lab Εργαστήριο Εφαρμογών Ενέργειας'),
(62707, 'https://ror.org/02gefwx29', 'en', 1, 'https://ror.org/02gefwx29 Department of Metropolitan Development'),
(62708, 'https://ror.org/00q3w5456', 'en', 1, 'https://ror.org/00q3w5456 Hellenic Civil Aviation Authority Υπηρεσία Πολιτικής Αεροπορίας'),
(62709, 'https://ror.org/04yvash73', 'en', 1, 'https://ror.org/04yvash73 International Commission on Non-Ionizing Radiation Protection'),
(62710, 'https://ror.org/05shez493', 'en', 1, 'https://ror.org/05shez493 Employment and Economic Development Office Työ- ja elinkeinotoimisto'),
(62711, 'https://ror.org/02xgad785', 'en', 1, 'https://ror.org/02xgad785 Maryland Commission on African American History and Culture'),
(62712, 'https://ror.org/03qjg1411', 'en', 1, 'https://ror.org/03qjg1411 Maryland-National Capital Park and Planning Commission'),
(62713, 'https://ror.org/01h8pyj37', 'en', 1, 'https://ror.org/01h8pyj37 International Commission on Radiological Protection'),
(62714, 'https://ror.org/013kktc25', 'en', 1, 'https://ror.org/013kktc25 Tsehootsooi Medical Center'),
(62715, 'https://ror.org/017sz1f45', 'en', 1, 'https://ror.org/017sz1f45 ICLEI - Local Governments for Sustainability Canada'),
(62716, 'https://ror.org/02cme9q04', 'en', 1, 'https://ror.org/02cme9q04 NHS Forth Valley'),
(62717, 'https://ror.org/059rsrh95', 'en', 1, 'https://ror.org/059rsrh95 FORZA, Agency For Sustainable Development of The Carpathian Region Агентство сприяння сталому розвитку Карпатського регіону ФОРЗА'),
(62718, 'https://ror.org/00bbwmf07', 'en', 1, 'https://ror.org/00bbwmf07 International Council of Associations for Science Education'),
(62719, 'https://ror.org/00hbkpf98', 'en', 1, 'https://ror.org/00hbkpf98 Commission de la Sante Mentale du Canada Mental Health Commission of Canada'),
(62720, 'https://ror.org/04c3g7r30', 'en', 1, 'https://ror.org/04c3g7r30 ICLEI - Local Governments for Sustainability'),
(62721, 'https://ror.org/01y434d35', 'en', 1, 'https://ror.org/01y434d35 International Council of Marine Industry Associations'),
(62722, 'https://ror.org/03k3ymr68', 'en', 1, 'https://ror.org/03k3ymr68 Mental Health and Recovery Services Board of Seneca, Sandusky and Wyandot Counties'),
(62723, 'https://ror.org/05eg09m10', 'en', 1, 'https://ror.org/05eg09m10 Fujian Province Science and Technology Association 福建省科学技术协会'),
(62724, 'https://ror.org/02px07p57', 'no_lang_code', 1, 'https://ror.org/02px07p57 Siniat (United Kingdom)'),
(62725, 'https://ror.org/037qvtm25', 'de', 1, 'https://ror.org/037qvtm25 Hessisches Kultusministerium'),
(62726, 'https://ror.org/00nv19w68', 'en', 1, 'https://ror.org/00nv19w68 International Council of Museums'),
(62727, 'https://ror.org/03f5qdn26', 'pt', 1, 'https://ror.org/03f5qdn26 Fundace Fundação para Pesquisa e Desenvolvimento da Administração, Contabilidade e Economia'),
(62728, 'https://ror.org/01rjhdz41', 'de', 1, 'https://ror.org/01rjhdz41 Hessisches Ministerium für Umwelt, Klimaschutz, Landwirtschaft und Verbraucherschutz'),
(62729, 'https://ror.org/029rs5v28', 'en', 1, 'https://ror.org/029rs5v28 Mental Health, Drug & Alcohol Services Board of Logan and Champaign'),
(62730, 'https://ror.org/020h7tk57', 'en', 1, 'https://ror.org/020h7tk57 Lafourche Parish School District'),
(62731, 'https://ror.org/00e8eg742', 'no_lang_code', 1, 'https://ror.org/00e8eg742 LAMA (Italy)'),
(62732, 'https://ror.org/05bfjdn05', 'en', 1, 'https://ror.org/05bfjdn05 Learning and Skills Development Agency'),
(62733, 'https://ror.org/03r97zp68', 'pt', 1, 'https://ror.org/03r97zp68 Direcção dos Serviços da Reforma Jurídica e do Direito Internacional'),
(62734, 'https://ror.org/03r9dgm57', 'en', 1, 'https://ror.org/03r9dgm57 Alaska Native Health Board'),
(62735, 'https://ror.org/05v791212', 'en', 1, 'https://ror.org/05v791212 International Food & Agricultural Trade Policy Council'),
(62736, 'https://ror.org/04dr8r009', 'no_lang_code', 1, 'https://ror.org/04dr8r009 Technologisches Gewerbemuseum Tgm'),
(62737, 'https://ror.org/04pqc7b65', 'en', 1, 'https://ror.org/04pqc7b65 Granite Falls Family Medical Care Center'),
(62738, 'https://ror.org/044b5hs67', 'en', 1, 'https://ror.org/044b5hs67 Greater Lafourche Port Commission'),
(62739, 'https://ror.org/017cark40', 'en', 1, 'https://ror.org/017cark40 Hopi Cultural Center'),
(62740, 'https://ror.org/03mdx1k69', 'en', 1, 'https://ror.org/03mdx1k69 Greater Portland Council of Governments'),
(62741, 'https://ror.org/000z10w71', 'en', 1, 'https://ror.org/000z10w71 Boston Landmarks Commission'),
(62742, 'https://ror.org/05763y646', 'en', 1, 'https://ror.org/05763y646 General Directorate for National Roads and Motorways Generalna Dyrekcja Dróg Krajowych i Autostrad'),
(62743, 'https://ror.org/05b2nvq86', 'no_lang_code', 1, 'https://ror.org/05b2nvq86 Hotblock Onboard (France)'),
(62744, 'https://ror.org/00sg44t81', 'no_lang_code', 1, 'https://ror.org/00sg44t81 Houot Agencement (France)'),
(62745, 'https://ror.org/02xzsz056', 'no_lang_code', 1, 'https://ror.org/02xzsz056 Masquelier’s (Netherlands)'),
(62746, 'https://ror.org/04s4yxp35', 'es', 1, 'https://ror.org/04s4yxp35 Asociación de Informáticos del Uruguay'),
(62747, 'https://ror.org/00z9txv30', 'en', 1, 'https://ror.org/00z9txv30 Investment and Development Agency of Latvia Latvijas Investīciju un attīstības aģentūra'),
(62748, 'https://ror.org/04ahnh094', 'no_lang_code', 1, 'https://ror.org/04ahnh094 Lattice Government Services (United States)'),
(62749, 'https://ror.org/00ynr1103', 'en', 1, 'https://ror.org/00ynr1103 Houston Parks Board'),
(62750, 'https://ror.org/04dvm6828', 'en', 1, 'https://ror.org/04dvm6828 Human Service Agency'),
(62751, 'https://ror.org/0006wrh30', 'en', 1, 'https://ror.org/0006wrh30 Consejo Oleícola Internacional International Olive Council'),
(62752, 'https://ror.org/04n0xnb78', 'no_lang_code', 1, 'https://ror.org/04n0xnb78 Latvian Environment, Geology and Meteorology Centre (Latvia) Latvijas Vides, ģeoloģijas un meteoroloģijas centrs'),
(62753, 'https://ror.org/00929bm89', 'en', 1, 'https://ror.org/00929bm89 Iberia Parish Government'),
(62754, 'https://ror.org/01fgay757', 'en', 1, 'https://ror.org/01fgay757 Guyana Forestry Commission'),
(62755, 'https://ror.org/05tj70371', 'en', 1, 'https://ror.org/05tj70371 International Council on Clean Transportation Internationaler Rat für sauberen Verkehr'),
(62756, 'https://ror.org/0057p6x39', 'en', 1, 'https://ror.org/0057p6x39 International Risk Governance Council'),
(62757, 'https://ror.org/04qkwfk36', 'en', 1, 'https://ror.org/04qkwfk36 Icelandic Transport Authority Samgönguráðuneytið'),
(62758, 'https://ror.org/01rakqm07', 'en', 1, 'https://ror.org/01rakqm07 General Directorate of Highways Türkiye Cumhuriyeti Karayolları Genel Müdürlüğü'),
(62759, 'https://ror.org/013pbgw67', 'fr', 1, 'https://ror.org/013pbgw67 ID Champagne-Ardenne'),
(62760, 'https://ror.org/03t6zfb73', 'en', 1, 'https://ror.org/03t6zfb73 Idaho State Department of Agriculture'),
(62761, 'https://ror.org/03sh73423', 'en', 1, 'https://ror.org/03sh73423 State Environmental Service Valsts vides dienests'),
(62762, 'https://ror.org/00wq2sy59', 'no_lang_code', 1, 'https://ror.org/00wq2sy59 Iggesund Paperboard (Sweden)'),
(62763, 'https://ror.org/00avkj256', 'en', 1, 'https://ror.org/00avkj256 Interstate Commission for Water Coordination of Central Asia Межгосударственная координационная водохозяйственная комиссия'),
(62764, 'https://ror.org/05ad53425', 'en', 1, 'https://ror.org/05ad53425 Maryland Department of General Services'),
(62765, 'https://ror.org/032ab1973', 'en', 1, 'https://ror.org/032ab1973 Geological Survey Department'),
(62766, 'https://ror.org/00yy4hw75', 'de', 1, 'https://ror.org/00yy4hw75 Industrievereinigung Kunststoffverpackungen'),
(62767, 'https://ror.org/04q4xms21', 'en', 1, 'https://ror.org/04q4xms21 Independent Expert Consulting Board to Promote Scientific Research Activity in Kazakhstan Қазақстандағы ғылыми-зерттеу қызметін дамытуға арналған тәуелсіз сараптамалық кеңес беру кеңесі'),
(62768, 'https://ror.org/03kjbs929', 'en', 1, 'https://ror.org/03kjbs929 Rural Payments Agency'),
(62769, 'https://ror.org/04qbxvw09', 'no_lang_code', 1, 'https://ror.org/04qbxvw09 MAMA-86'),
(62770, 'https://ror.org/04zk0zd97', 'en', 1, 'https://ror.org/04zk0zd97 Georgia Department of Juvenile Justice'),
(62771, 'https://ror.org/00ce2eb04', 'en', 1, 'https://ror.org/00ce2eb04 Georgia Emergency Management Agency'),
(62772, 'https://ror.org/02gr2xd08', 'en', 1, 'https://ror.org/02gr2xd08 Lietuvos geologijos tarnyba Lithuanian Geological Survey'),
(62773, 'https://ror.org/00809fn97', 'en', 1, 'https://ror.org/00809fn97 Lietuvos Respublikos Aplinkos Ministerija Ministry of Environment of the Republic of Lithuania'),
(62774, 'https://ror.org/0352k4r92', 'en', 1, 'https://ror.org/0352k4r92 Indian Nations Council of Governments'),
(62775, 'https://ror.org/00b1efb93', 'en', 1, 'https://ror.org/00b1efb93 Lietuvos Respublikos energetikos ministerija Ministry of Energy of the Republic of Lithuania'),
(62776, 'https://ror.org/00bhqk118', 'en', 1, 'https://ror.org/00bhqk118 Terviseamet Health Board'),
(62777, 'https://ror.org/020y5qm10', 'en', 1, 'https://ror.org/020y5qm10 Ministry of Health of the Republic of Lithuania'),
(62778, 'https://ror.org/032y2wk86', 'en', 1, 'https://ror.org/032y2wk86 Georgia Public Broadcasting'),
(62779, 'https://ror.org/0137z3b32', 'en', 1, 'https://ror.org/0137z3b32 Lietuvos Respublikos švietimo ir mokslo ministerija Ministry of Education and Science of the Republic of Lithuania'),
(62780, 'https://ror.org/003dqz155', 'en', 1, 'https://ror.org/003dqz155 Indiana Professional Licensing Agency'),
(62781, 'https://ror.org/04k414517', 'en', 1, 'https://ror.org/04k414517 Lietuvos Respublikos teisingumo ministerija Ministry of Justice of the Republic of Lithuania'),
(62782, 'https://ror.org/04npq0213', 'en', 1, 'https://ror.org/04npq0213 Contact Helpline'),
(62783, 'https://ror.org/042qxra19', 'en', 1, 'https://ror.org/042qxra19 Lietuvos saugios laivybos administracija The Lithuanian Maritime Safety Administration'),
(62784, 'https://ror.org/0181x9z82', 'en', 1, 'https://ror.org/0181x9z82 National Agency for Technological Development'),
(62785, 'https://ror.org/03fvsys22', 'lt', 1, 'https://ror.org/03fvsys22 Jonavos Rajono Savivaldybė'),
(62786, 'https://ror.org/03dmmx952', 'en', 1, 'https://ror.org/03dmmx952 Israel-Europe R&D Directorate'),
(62787, 'https://ror.org/00p3a2r17', 'en', 1, 'https://ror.org/00p3a2r17 Lietuvos automobilių kelių direkcija prie Susisiekimo ministerijos Lithuanian Road Administration under the Ministry of Transport and Communications'),
(62788, 'https://ror.org/043ch9202', 'de', 1, 'https://ror.org/043ch9202 Ministerium der Justiz Nordrhein-Westfalen'),
(62789, 'https://ror.org/048favk11', 'no_lang_code', 1, 'https://ror.org/048favk11 Isastur (Spain)'),
(62790, 'https://ror.org/00wt3rj94', 'no_lang_code', 1, 'https://ror.org/00wt3rj94 Technopolis (Finland)'),
(62791, 'https://ror.org/00ve9f380', 'de', 1, 'https://ror.org/00ve9f380 Ministerium des Innern des Landes Nordrhein-Westfalen'),
(62792, 'https://ror.org/033zvg385', 'no_lang_code', 1, 'https://ror.org/033zvg385 Kab Bygge-Og Boligadministration (Denmark)'),
(62793, 'https://ror.org/05ez11m68', 'en', 1, 'https://ror.org/05ez11m68 Kahoolawe Island Reserve Commission'),
(62794, 'https://ror.org/019rn2x79', 'en', 1, 'https://ror.org/019rn2x79 Kansas Board of Pharmacy'),
(62795, 'https://ror.org/030q87z73', 'en', 1, 'https://ror.org/030q87z73 Loughs Agency'),
(62796, 'https://ror.org/03qffpf96', 'fr', 1, 'https://ror.org/03qffpf96 Agence pour l''Observation de la Réunion'),
(62797, 'https://ror.org/026bgaz55', 'en', 1, 'https://ror.org/026bgaz55 Louisiana Organ Procurement Agency'),
(62798, 'https://ror.org/0410wtw69', 'fr', 1, 'https://ror.org/0410wtw69 Gouvernement de la Nouvelle-Calédonie'),
(62799, 'https://ror.org/02cq13n41', 'en', 1, 'https://ror.org/02cq13n41 Kentucky Commission on Human Rights'),
(62800, 'https://ror.org/05dtnxd20', 'en', 1, 'https://ror.org/05dtnxd20 Israel Olive Oil Board'),
(62801, 'https://ror.org/02e8y3865', 'en', 1, 'https://ror.org/02e8y3865 Keskkonnaministeerium Ministry of the Environment'),
(62802, 'https://ror.org/02qk9nj07', 'en', 1, 'https://ror.org/02qk9nj07 Ministero delle Infrastrutture e dei Trasporti Ministry of Infrastructures and Transport'),
(62803, 'https://ror.org/05hfj9732', 'en', 1, 'https://ror.org/05hfj9732 Minsk Regional Institute of Education Development Минский областной институт развития образования'),
(62804, 'https://ror.org/03zx5da06', 'en', 1, 'https://ror.org/03zx5da06 Government of Nova Scotia'),
(62805, 'https://ror.org/03n983v14', 'en', 1, 'https://ror.org/03n983v14 Federal Aviation Office Luftfahrt-Bundesamt'),
(62806, 'https://ror.org/0518zn197', 'en', 1, 'https://ror.org/0518zn197 International Commission on Radiation Units and Measurements'),
(62807, 'https://ror.org/05qw5qh97', 'en', 1, 'https://ror.org/05qw5qh97 Macedonian Information Agency Македонска информативна агенција'),
(62808, 'https://ror.org/0279ce674', 'no_lang_code', 1, 'https://ror.org/0279ce674 Econboard (Italy)'),
(62809, 'https://ror.org/0266pt959', 'lt', 1, 'https://ror.org/0266pt959 Klaipėdos Miesto Savivaldybė'),
(62810, 'https://ror.org/00tqqep04', 'en', 1, 'https://ror.org/00tqqep04 Jewish Agency for Israel הסוכנות היהודית לארץ ישראל'),
(62811, 'https://ror.org/0240hhb81', 'en', 1, 'https://ror.org/0240hhb81 Konsumentverket Swedish Consumer Agency'),
(62812, 'https://ror.org/01gwe4v50', 'en', 1, 'https://ror.org/01gwe4v50 International Association for the Exchange of Students for Technical Experience Меѓународна асоцијација за размена на студенти за техничко искуство'),
(62813, 'https://ror.org/00p2smd09', 'en', 1, 'https://ror.org/00p2smd09 Manchester Climate Change Agency'),
(62814, 'https://ror.org/02atm6p71', 'en', 1, 'https://ror.org/02atm6p71 Marches Energy Agency'),
(62815, 'https://ror.org/050r87w51', 'en', 1, 'https://ror.org/050r87w51 North Atlantic Salmon Conservation Organization'),
(62816, 'https://ror.org/03cz3xh96', 'lt', 1, 'https://ror.org/03cz3xh96 Marijampolė municipality Marijampolės savivaldybė'),
(62817, 'https://ror.org/03n603b32', 'de', 1, 'https://ror.org/03n603b32 Bundesverband der Selbständigen Deutscher Gewerbeverband'),
(62818, 'https://ror.org/00j38z902', 'en', 1, 'https://ror.org/00j38z902 Malta Intelligent Energy Management Agency'),
(62819, 'https://ror.org/02ybk0k36', 'en', 1, 'https://ror.org/02ybk0k36 Ministarstvo komunikacija i prometa Ministry of Communication and Transport'),
(62820, 'https://ror.org/00gpshd30', 'en', 1, 'https://ror.org/00gpshd30 Midcoast Watersheds Council'),
(62821, 'https://ror.org/038631f57', 'en', 1, 'https://ror.org/038631f57 Ministry of Economy of the Republic of Bulgaria Министерство на икономиката на Република България'),
(62822, 'https://ror.org/01zn9ea79', 'fr', 1, 'https://ror.org/01zn9ea79 Ministère de la Production Animale et des Ressources Halieutiques'),
(62823, 'https://ror.org/00bjnxh67', 'en', 1, 'https://ror.org/00bjnxh67 Ministry of Economy'),
(62824, 'https://ror.org/05evttw71', 'es', 1, 'https://ror.org/05evttw71 Ministerio de Salud - Provincia de Buenos Aires'),
(62825, 'https://ror.org/04zxd7e56', 'en', 1, 'https://ror.org/04zxd7e56 Ministarstvo finansija-uprava carina Ministry of Finance and Economy'),
(62826, 'https://ror.org/01pva1129', 'bs', 1, 'https://ror.org/01pva1129 Ministarstvo Gospodarstva'),
(62827, 'https://ror.org/010x6sj87', 'en', 1, 'https://ror.org/010x6sj87 Ministry of Culture and Sport of the Republic of Kazakhstan Қазақстан Республикасының Мәдениет және спорт министрлігі'),
(62828, 'https://ror.org/05g1fka72', 'de', 1, 'https://ror.org/05g1fka72 Ministerium der Deutschsprachigen Gemeinschaft'),
(62829, 'https://ror.org/01j5rta38', 'es', 1, 'https://ror.org/01j5rta38 Ministerio de Salud'),
(62830, 'https://ror.org/04zrq7c15', 'en', 1, 'https://ror.org/04zrq7c15 Ministria e Financave dhe Ekonomisë Ministry of Finance'),
(62831, 'https://ror.org/03pdr1e82', 'en', 1, 'https://ror.org/03pdr1e82 Ministarstvo graditeljstva i prostornoga uređenja Ministry of Construction and Physical Planning'),
(62832, 'https://ror.org/0408v1a31', 'fr', 1, 'https://ror.org/0408v1a31 Ministère de la Santé'),
(62833, 'https://ror.org/03tqbke55', 'en', 1, 'https://ror.org/03tqbke55 Ministarstvo nauke i Tehnologije Ministry of Science and Technology'),
(62834, 'https://ror.org/0289qmg93', 'en', 1, 'https://ror.org/0289qmg93 Ministarstvo Pravosuđa Ministry of Justice'),
(62835, 'https://ror.org/039jt6988', 'en', 1, 'https://ror.org/039jt6988 Ministrstvo za infrastrukturo Ministry of Infrastructure'),
(62836, 'https://ror.org/052w5r042', 'en', 1, 'https://ror.org/052w5r042 Ministry of Natural Resources and Environment Министерство природных ресурсов и экологии Российской Федерации'),
(62837, 'https://ror.org/016p05413', 'es', 1, 'https://ror.org/016p05413 Ministerio de Salud Pública y Asistencia Social'),
(62838, 'https://ror.org/052qbca19', 'en', 1, 'https://ror.org/052qbca19 Ministrstvo za javno upravo Ministry of Public Administration'),
(62839, 'https://ror.org/01zvw4x71', 'en', 1, 'https://ror.org/01zvw4x71 Ministry of Ecology and Natural Resources of Ukraine Міністерство екології та природних ресурсів України'),
(62840, 'https://ror.org/05c2g3729', 'en', 1, 'https://ror.org/05c2g3729 Ministarstvo vanjskih poslova Ministarstvo vanjskih poslova Ministry of Foreign Affairs Министарство иностраних послова'),
(62841, 'https://ror.org/00s8pzv55', 'en', 1, 'https://ror.org/00s8pzv55 Ministry of Economic Development and Trade Міністерство економічного розвитку і торгівлі України'),
(62842, 'https://ror.org/046w98q07', 'pt', 1, 'https://ror.org/046w98q07 Ministério da Saúde'),
(62843, 'https://ror.org/058fm6761', 'en', 1, 'https://ror.org/058fm6761 Ministrstvo za Obrambo Republike Slovenije Ministry of Defence'),
(62844, 'https://ror.org/04p4jbz48', 'de', 1, 'https://ror.org/04p4jbz48 Ministerium für Umwelt und Verbraucherschutz'),
(62845, 'https://ror.org/04nars592', 'en', 1, 'https://ror.org/04nars592 Ministrstvo za okolje in prostor Ministry of the Environment and Spatial Planning'),
(62846, 'https://ror.org/046bz5635', 'en', 1, 'https://ror.org/046bz5635 Ministry of Economy of the Republic of Belarus Міністэрства эканомікі Рэспублікі Беларусь'),
(62847, 'https://ror.org/03vapwt48', 'en', 1, 'https://ror.org/03vapwt48 Lietuvos Respublikos ūkio ministerija Ministry of Economy of the Republic of Lithuania'),
(62848, 'https://ror.org/041hf3v66', 'fr', 1, 'https://ror.org/041hf3v66 Ministre de la Forêt,de la Mer et de l''Environnement'),
(62849, 'https://ror.org/04m6gem67', 'en', 1, 'https://ror.org/04m6gem67 Ministry of Education and Science of Georgia საქართველოს განათლებისა და მეცნიერების სამინისტრო'),
(62850, 'https://ror.org/039k9vd92', 'en', 1, 'https://ror.org/039k9vd92 Ministry of Education and Culture Υπουργείο Παιδείας και Πολιτισμού'),
(62851, 'https://ror.org/048nyba16', 'en', 1, 'https://ror.org/048nyba16 Ministry of Mines and Geology Ministère des Mines et de la Géologie'),
(62852, 'https://ror.org/00sp8me03', 'en', 1, 'https://ror.org/00sp8me03 Flemish Community'),
(62853, 'https://ror.org/05k7qec05', 'fr', 1, 'https://ror.org/05k7qec05 Ministère de l''Education Nationale de Côte d''Ivoire'),
(62854, 'https://ror.org/0055wm418', 'de', 1, 'https://ror.org/0055wm418 Ministerium der Finanzen des Landes Sachsen-Anhalt'),
(62855, 'https://ror.org/01cvj0j25', 'de', 1, 'https://ror.org/01cvj0j25 Ministerium des Innern und für Sport Rheinland-Pfalz'),
(62856, 'https://ror.org/004hsfv29', 'en', 1, 'https://ror.org/004hsfv29 Ministry for Finance'),
(62857, 'https://ror.org/05mk8j583', 'en', 1, 'https://ror.org/05mk8j583 Ministry of Labour, Employment and the Social and Solidarity Economy Ministère du Travail, de l''Emploi et de l''Économie Sociale et Solidaire'),
(62858, 'https://ror.org/02dcxvm61', 'de', 1, 'https://ror.org/02dcxvm61 Ministerium für Umwelt, Energie, Ernährung und Forsten Rheinland Pfalz'),
(62859, 'https://ror.org/03qgxqd23', 'fr', 1, 'https://ror.org/03qgxqd23 Ministère de l''Agriculture, de l''Elevage et de l''Hydraulique'),
(62860, 'https://ror.org/01y9p8471', 'en', 1, 'https://ror.org/01y9p8471 Ministry of Labour, Social Insurance and Social Solidarity Υπουργείο Εργασίας και Κοινωνικής Ασφάλειας & Κοινωνικής Αλληλεγγύης'),
(62861, 'https://ror.org/058atjp47', 'en', 1, 'https://ror.org/058atjp47 Ministry of Energy of the Republic of Bulgaria Министерство на енергетиката на Република България'),
(62862, 'https://ror.org/016bxe465', 'en', 1, 'https://ror.org/016bxe465 Ministry of Energy, Commerce, Industry and Tourism Υπουργείο Ενέργειας, Εμπορίου, Βιομηχανίας και Τουρισμού,'),
(62863, 'https://ror.org/049ragm77', 'de', 1, 'https://ror.org/049ragm77 Ministerium für Verkehr des Landes Nordrhein-Westfalen'),
(62864, 'https://ror.org/05fc6mp70', 'en', 1, 'https://ror.org/05fc6mp70 General Directorate of Forestry ORMAN GENEL MÜDÜRLÜĞÜ'),
(62865, 'https://ror.org/01y69kh47', 'en', 1, 'https://ror.org/01y69kh47 Ministry of Environment and Physical Planning Министерство за животна средина и просторно планирање'),
(62866, 'https://ror.org/041hn9r79', 'en', 1, 'https://ror.org/041hn9r79 Ministry of Agriculture and Agrarian Reform وزارة الزراعة والإصلاح الزراعي'),
(62867, 'https://ror.org/05vr8kn83', 'en', 1, 'https://ror.org/05vr8kn83 Ministry of Agriculture, Food and Forestry Министерство на земеделието и горите, Ministerstvo na zemedelieto i gorite'),
(62868, 'https://ror.org/05x7v0b39', 'en', 1, 'https://ror.org/05x7v0b39 Ministry of Agriculture and Forestry ກະຊວງ ກະສິກຳ ແລະ ປ່າໄມ້'),
(62869, 'https://ror.org/00xtpf729', 'pt', 1, 'https://ror.org/00xtpf729 Ministério da Ciência e Tecnologia'),
(62870, 'https://ror.org/00exf0825', 'en', 1, 'https://ror.org/00exf0825 Ministry of Agriculture and Food Министерство сельского хозяйства и продовольствия Республики Беларусь'),
(62871, 'https://ror.org/01k218104', 'en', 1, 'https://ror.org/01k218104 Fjármála- og efnahagsráðuneytið Ministry of Finance and Economic Affairs'),
(62872, 'https://ror.org/015aajy26', 'en', 1, 'https://ror.org/015aajy26 Ministry of Finance Министар за финансии'),
(62873, 'https://ror.org/02vfbts58', 'en', 1, 'https://ror.org/02vfbts58 Ministerstwo Finansów Ministry of Finance'),
(62874, 'https://ror.org/044d6nj38', 'en', 1, 'https://ror.org/044d6nj38 Ministry of Agriculture'),
(62875, 'https://ror.org/04b8rvg36', 'en', 1, 'https://ror.org/04b8rvg36 Ministero del lavoro e delle politiche sociali Ministry of Labour and Social Policies'),
(62876, 'https://ror.org/03y9jct87', 'en', 1, 'https://ror.org/03y9jct87 Ministry of Finance מִשְׂרַד הַאוֹצָר'),
(62877, 'https://ror.org/03pbjsf94', 'en', 1, 'https://ror.org/03pbjsf94 Danish Ministry of Industry, Business and Financial Affairs Erhvervsministeriets opgave'),
(62878, 'https://ror.org/02benpk44', 'fr', 1, 'https://ror.org/02benpk44 Ministère de la Famille, de l''Intégration et à la Grande Région'),
(62879, 'https://ror.org/02vjrna94', 'fr', 1, 'https://ror.org/02vjrna94 Ministère de la Fonction Publique et de la Réforme Administrative'),
(62880, 'https://ror.org/0157pp245', 'en', 1, 'https://ror.org/0157pp245 Ministry of Communications and Technology وزارة الإتصالات والتكنولوجيا'),
(62881, 'https://ror.org/05y6t7072', 'lt', 1, 'https://ror.org/05y6t7072 Birštono Savivaldybė'),
(62882, 'https://ror.org/012r2dp17', 'ro', 1, 'https://ror.org/012r2dp17 Ministerul Comunicațiilor și Societății Informaționale'),
(62883, 'https://ror.org/04vkaka98', 'en', 1, 'https://ror.org/04vkaka98 Ministry of Foreign Affairs Міністерство закордонних справ України'),
(62884, 'https://ror.org/03jm70514', 'en', 1, 'https://ror.org/03jm70514 Ministry of Foreign Affairs Министерство на външните работи'),
(62885, 'https://ror.org/017jvt967', 'en', 1, 'https://ror.org/017jvt967 Ministerul Sănătății, Muncii și Protecției Sociale Ministry of Health, Labour and Social Protection'),
(62886, 'https://ror.org/0393kd737', 'en', 1, 'https://ror.org/0393kd737 Ministry of Health'),
(62887, 'https://ror.org/04b78z783', 'en', 1, 'https://ror.org/04b78z783 Ministerstvo hospodárstva Slovenskej republiky Ministry of Economy of the Slovak Republic');
INSERT INTO `rors` VALUES
(62888, 'https://ror.org/03jswvp59', 'en', 1, 'https://ror.org/03jswvp59 Ministry for Health'),
(62889, 'https://ror.org/0175bfp64', 'en', 1, 'https://ror.org/0175bfp64 Ministria e Shëndetësisë dhe Mbrojtjes Sociale Ministry of Health and Social Protection'),
(62890, 'https://ror.org/02vf30q73', 'en', 1, 'https://ror.org/02vf30q73 Ministry of Health Эрүүл мэндийн яам'),
(62891, 'https://ror.org/05dx52749', 'en', 1, 'https://ror.org/05dx52749 Ministry of Health and Wellness'),
(62892, 'https://ror.org/02hzqtm46', 'pl', 1, 'https://ror.org/02hzqtm46 Ministerstwo Infrastruktury'),
(62893, 'https://ror.org/04yydwx07', 'nl', 1, 'https://ror.org/04yydwx07 Ministerie van Volksgezondheid'),
(62894, 'https://ror.org/043smtf02', 'en', 1, 'https://ror.org/043smtf02 Ministry of Health'),
(62895, 'https://ror.org/05ryb2603', 'en', 1, 'https://ror.org/05ryb2603 Ministerstwo Rodziny, Pracy i Polityki Społecznej Ministry of Family, Labour and Social Policy'),
(62896, 'https://ror.org/05yay3q52', 'en', 1, 'https://ror.org/05yay3q52 Ministry of Education and Higher Education'),
(62897, 'https://ror.org/00w1qwz28', 'en', 1, 'https://ror.org/00w1qwz28 Ministerstwo Inwestycji i Rozwoju Ministry of Investment and Development'),
(62898, 'https://ror.org/05yd2zc58', 'en', 1, 'https://ror.org/05yd2zc58 Ministry of Industry, Commerce, Agriculture and Fisheries'),
(62899, 'https://ror.org/007zske95', 'en', 1, 'https://ror.org/007zske95 Ministerstwo Sprawiedliwośc Ministry of Justice of the Republic of Poland'),
(62900, 'https://ror.org/034kyps37', 'en', 1, 'https://ror.org/034kyps37 Ministry of Information Society and Administration'),
(62901, 'https://ror.org/0415vh479', 'en', 1, 'https://ror.org/0415vh479 Ministry of Interior Mинистерство на вътрешните работи'),
(62902, 'https://ror.org/045z49291', 'en', 1, 'https://ror.org/045z49291 Ministerul Apărării Naționale Ministry of National Defence'),
(62903, 'https://ror.org/03cej8561', 'en', 1, 'https://ror.org/03cej8561 Ministarstvo unutarnjih poslova Republike Hrvatske Ministry of the Interior'),
(62904, 'https://ror.org/03519pp33', 'en', 1, 'https://ror.org/03519pp33 Agenţia Naţională Antidrog National Anti-drug Agency'),
(62905, 'https://ror.org/05nhh6248', 'en', 1, 'https://ror.org/05nhh6248 Ministry of the Interior Υπουργείο Εσωτερικών'),
(62906, 'https://ror.org/051y11y24', 'en', 1, 'https://ror.org/051y11y24 Justitiedepartementet Ministry of Justice'),
(62907, 'https://ror.org/00nhyfw74', 'en', 1, 'https://ror.org/00nhyfw74 Ministry of Justice Oikeusministeriö'),
(62908, 'https://ror.org/02bv86w93', 'en', 1, 'https://ror.org/02bv86w93 Danish Ministry of Justice Justitsministeriet'),
(62909, 'https://ror.org/04pgsn829', 'en', 1, 'https://ror.org/04pgsn829 Ministry of Justice of the Republic of Kazakhstan Қазақстан Республикасы Әділет министрлігі'),
(62910, 'https://ror.org/00mjzrw90', 'en', 1, 'https://ror.org/00mjzrw90 Ministarstvo Pravde u Vladi Crne Gore Ministry of Justice'),
(62911, 'https://ror.org/02d5jky69', 'en', 1, 'https://ror.org/02d5jky69 Ministry of Communication and Information Technology ዓ.ም የመገናኛና ኢንፎርሜሽን ቴክኖሎጂ ሚኒስቴር'),
(62912, 'https://ror.org/03anhbw86', 'en', 1, 'https://ror.org/03anhbw86 Regional Energy Agency Регионална енергийна агенция - Русе'),
(62913, 'https://ror.org/01v434r56', 'es', 1, 'https://ror.org/01v434r56 Agencia Tributaria'),
(62914, 'https://ror.org/04vm99k83', 'en', 1, 'https://ror.org/04vm99k83 Ministerul Tineretului şi Sportului Ministry of Youth and Sports'),
(62915, 'https://ror.org/00dxjhh32', 'fr', 1, 'https://ror.org/00dxjhh32 Agence Nationale pour l''Emploi National Employment Agency'),
(62916, 'https://ror.org/04gjr7b93', 'de', 1, 'https://ror.org/04gjr7b93 Ministerium für Kinder, Familie, Flüchtlinge und Integration des Landes Nordrhein-Westfalen'),
(62917, 'https://ror.org/026h0ny75', 'en', 1, 'https://ror.org/026h0ny75 Igazságügyi Minisztérium Ministry of Justice'),
(62918, 'https://ror.org/03b58r953', 'en', 1, 'https://ror.org/03b58r953 Bộ Lao động, Thương binh và Xã hội Ministry of Labour, Invalids and Social Affairs'),
(62919, 'https://ror.org/0094xtm76', 'en', 1, 'https://ror.org/0094xtm76 Georgia Sakartvelos shromis, janmrtelobisa ads sotsialuri datsvis saministro Ministry of Labour, Health and Social Affairs'),
(62920, 'https://ror.org/03jpstz64', 'en', 1, 'https://ror.org/03jpstz64 Ministry of Science and Technology ກະຊວງວິທະຍາສາດ ແລະເຕັກໂນໂລຊີ'),
(62921, 'https://ror.org/02q7gp705', 'en', 1, 'https://ror.org/02q7gp705 Ministry of Science and Technology ሳይንስ እና ቴክኖሎጂ ሚኒስቴር'),
(62922, 'https://ror.org/014h86b15', 'en', 1, 'https://ror.org/014h86b15 Ministry of Shipping and Island Policy Υπουργείο Εμπορικής Ναυτιλίας'),
(62923, 'https://ror.org/032ttbd57', 'en', 1, 'https://ror.org/032ttbd57 Ministry of Security of Bosnia and Herzegovina'),
(62924, 'https://ror.org/02yx0ge43', 'en', 1, 'https://ror.org/02yx0ge43 Eesti Sotsiaalministeerium Ministry of Social Affairs'),
(62925, 'https://ror.org/02nkkj123', 'en', 1, 'https://ror.org/02nkkj123 Danish Ministry of Taxation Skatteministeriet'),
(62926, 'https://ror.org/025mfxt76', 'en', 1, 'https://ror.org/025mfxt76 Human Resources Agency of New Britain'),
(62927, 'https://ror.org/00c480063', 'en', 1, 'https://ror.org/00c480063 New Hampshire Association of Conservation Commissions'),
(62928, 'https://ror.org/01r1k7826', 'en', 1, 'https://ror.org/01r1k7826 New Jersey Sports and Exposition Authority'),
(62929, 'https://ror.org/02hp6vh93', 'en', 1, 'https://ror.org/02hp6vh93 New Jersey Pinelands Commission'),
(62930, 'https://ror.org/02g8v2v69', 'en', 1, 'https://ror.org/02g8v2v69 National Cancer Registry'),
(62931, 'https://ror.org/01mf87c05', 'de', 1, 'https://ror.org/01mf87c05 Paritätisches Bildungswerk Bundesverband'),
(62932, 'https://ror.org/000275q75', 'en', 1, 'https://ror.org/000275q75 Department of Public Service'),
(62933, 'https://ror.org/01bz76d25', 'no_lang_code', 1, 'https://ror.org/01bz76d25 NextGen Federal Systems (United States)'),
(62934, 'https://ror.org/01nmnpy52', 'en', 1, 'https://ror.org/01nmnpy52 Ministry for Tourism'),
(62935, 'https://ror.org/041cran12', 'en', 1, 'https://ror.org/041cran12 National House Building Council'),
(62936, 'https://ror.org/05wx2c490', 'en', 1, 'https://ror.org/05wx2c490 NHS Bradford Districts Clinical Commissioning Group'),
(62937, 'https://ror.org/039p5as73', 'en', 1, 'https://ror.org/039p5as73 NHS Eastern Cheshire Clinical Commissioning Group'),
(62938, 'https://ror.org/05jrpd556', 'de', 1, 'https://ror.org/05jrpd556 Niedersächsisches Ministerium für Wirtschaft, Arbeit und Verkehr'),
(62939, 'https://ror.org/03ms7da52', 'de', 1, 'https://ror.org/03ms7da52 Niedersächsisches Ministerium für Inneres und Sport'),
(62940, 'https://ror.org/003mgr108', 'de', 1, 'https://ror.org/003mgr108 Bundesverband Photovoltaic Austria'),
(62941, 'https://ror.org/00tmwt177', 'en', 1, 'https://ror.org/00tmwt177 Agency of European innovations'),
(62942, 'https://ror.org/03w3tb520', 'en', 1, 'https://ror.org/03w3tb520 National Commission on Correctional Health Care'),
(62943, 'https://ror.org/025sfcn53', 'en', 1, 'https://ror.org/025sfcn53 Pioneer Valley Planning Commission'),
(62944, 'https://ror.org/02nsc9n54', 'en', 1, 'https://ror.org/02nsc9n54 Local Enterprise Office Cork North & West'),
(62945, 'https://ror.org/036gs9v48', 'en', 1, 'https://ror.org/036gs9v48 North East Atlantic Fisheries Commission'),
(62946, 'https://ror.org/04y3hfp43', 'en', 1, 'https://ror.org/04y3hfp43 Ministry of Agriculture of the Russian Federation Министерство сельского хозяйства Российской Федерации'),
(62947, 'https://ror.org/053zb8g23', 'en', 1, 'https://ror.org/053zb8g23 Plaquemines Parish Government'),
(62948, 'https://ror.org/04kgekf96', 'no_lang_code', 1, 'https://ror.org/04kgekf96 Sputnik Спутник'),
(62949, 'https://ror.org/02t6vd455', 'en', 1, 'https://ror.org/02t6vd455 Hội đồng Chính sách KH&CN quốc gia National Council for Science and Technology Policy'),
(62950, 'https://ror.org/00yjk3k17', 'en', 1, 'https://ror.org/00yjk3k17 Ministry of Transport, Communications and Works Υπουργείο Μεταφορών, Επικοινωνιών και Έργων'),
(62951, 'https://ror.org/01pd36221', 'en', 1, 'https://ror.org/01pd36221 Police Department Policijos departamentas'),
(62952, 'https://ror.org/04ebkyp66', 'en', 1, 'https://ror.org/04ebkyp66 National Council of Teachers of English'),
(62953, 'https://ror.org/0554q2022', 'en', 1, 'https://ror.org/0554q2022 Ministry of Transport, Information Technology and Communications Министерство на транспорта, информационните технологии и съобщенията на Република България'),
(62954, 'https://ror.org/05dbddb11', 'en', 1, 'https://ror.org/05dbddb11 Northern Cheyenne Tribal Board of Health'),
(62955, 'https://ror.org/00q7qmn76', 'en', 1, 'https://ror.org/00q7qmn76 Polish Air Navigation Services Agency Polska Agencja Żeglugi Powietrznej'),
(62956, 'https://ror.org/05j4s2c10', 'en', 1, 'https://ror.org/05j4s2c10 Northern Ireland Commissioner for Children and Young People'),
(62957, 'https://ror.org/00d6ce877', 'en', 1, 'https://ror.org/00d6ce877 National Council on Patient Information and Education'),
(62958, 'https://ror.org/01nfbwg92', 'en', 1, 'https://ror.org/01nfbwg92 Northern Ireland Statistics and Research Agency'),
(62959, 'https://ror.org/044y4ky78', 'en', 1, 'https://ror.org/044y4ky78 Northern Ireland Tourist Board'),
(62960, 'https://ror.org/04mja2r14', 'it', 1, 'https://ror.org/04mja2r14 Pontificia commissione di archeologia sacra Pontificium consilium archaeologiae sacrae'),
(62961, 'https://ror.org/02eyayb49', 'en', 1, 'https://ror.org/02eyayb49 Northern Lighthouse Board'),
(62962, 'https://ror.org/005n3jc56', 'en', 1, 'https://ror.org/005n3jc56 Ministry of Water Resources and Meteorology ក្រសួងធនធានទឹកនិងឧតុនិយម'),
(62963, 'https://ror.org/04n0kdq05', 'en', 1, 'https://ror.org/04n0kdq05 Samsø Energiakademi Samsø Energy Academy'),
(62964, 'https://ror.org/05wnw8q41', 'en', 1, 'https://ror.org/05wnw8q41 San Francisco Bay Conservation and Development Commission'),
(62965, 'https://ror.org/05xdfr133', 'en', 1, 'https://ror.org/05xdfr133 North-West Public Health Research Center'),
(62966, 'https://ror.org/020a52n70', 'en', 1, 'https://ror.org/020a52n70 Department of Planning & Building'),
(62967, 'https://ror.org/052z4cr88', 'en', 1, 'https://ror.org/052z4cr88 Chemins de fer fédéraux suisses Schweizerische Bundesbahnen Swiss Federal Railways'),
(62968, 'https://ror.org/03sjfbk05', 'en', 1, 'https://ror.org/03sjfbk05 National Environment Commission'),
(62969, 'https://ror.org/044qm0e47', 'en', 1, 'https://ror.org/044qm0e47 Ministry of Petroleum and Energy Olje- og energidepartementet'),
(62970, 'https://ror.org/046qfjt27', 'en', 1, 'https://ror.org/046qfjt27 National Evaluation and Accreditation Agency Национална агенция за оценяване и акредитация'),
(62971, 'https://ror.org/04acy3777', 'en', 1, 'https://ror.org/04acy3777 Science Council'),
(62972, 'https://ror.org/05f96jg21', 'it', 1, 'https://ror.org/05f96jg21 PromoFirenze PromoFirenze Azienda Speciale della Camera di Commercio di Firenze'),
(62973, 'https://ror.org/02yhdrk95', 'en', 1, 'https://ror.org/02yhdrk95 Mississippi Blues Trail'),
(62974, 'https://ror.org/046rj3t65', 'en', 1, 'https://ror.org/046rj3t65 Lembaga Warisan Negara National Heritage Board தேசிய மரபுடைமைக் கழகம் 国家文物局'),
(62975, 'https://ror.org/052gbj065', 'en', 1, 'https://ror.org/052gbj065 Mississippi Board of Pharmacy'),
(62976, 'https://ror.org/057mvkb89', 'en', 1, 'https://ror.org/057mvkb89 Agência de Empreendedores Sociais Social Entrepreneurs Agency'),
(62977, 'https://ror.org/02xcbvq61', 'en', 1, 'https://ror.org/02xcbvq61 Public Limited Company for Radioactive Waste Management Radioaktív Hulladékokat Kezelő Közhasznú'),
(62978, 'https://ror.org/04fs1av96', 'en', 1, 'https://ror.org/04fs1av96 Public Health Accreditation Board'),
(62979, 'https://ror.org/05bk3hg51', 'en', 1, 'https://ror.org/05bk3hg51 Montana Department of Labor & Industry'),
(62980, 'https://ror.org/023a7m452', 'en', 1, 'https://ror.org/023a7m452 Jewish Community Centre Association of North America'),
(62981, 'https://ror.org/009neaa43', 'en', 1, 'https://ror.org/009neaa43 Public Investment Development Agency Viešųjų investicijų plėtros agentūra'),
(62982, 'https://ror.org/035jb5191', 'en', 1, 'https://ror.org/035jb5191 Nova Scotia Advisory Commission on AIDS'),
(62983, 'https://ror.org/01fh2dk93', 'en', 1, 'https://ror.org/01fh2dk93 Montana Department of Justice'),
(62984, 'https://ror.org/029z8r738', 'en', 1, 'https://ror.org/029z8r738 Olympic Council of Ireland'),
(62985, 'https://ror.org/00rwx5a44', 'en', 1, 'https://ror.org/00rwx5a44 National Directorate General for Disaster Management'),
(62986, 'https://ror.org/012rg8a11', 'en', 1, 'https://ror.org/012rg8a11 Icelandic Road and Coastal Administration Vegagerðin'),
(62987, 'https://ror.org/000ak5281', 'en', 1, 'https://ror.org/000ak5281 Missouri Department of Public Safety'),
(62988, 'https://ror.org/01pv9g403', 'en', 1, 'https://ror.org/01pv9g403 Nacionaline mokejimo agentura National Paying Agency'),
(62989, 'https://ror.org/01jr0rj76', 'en', 1, 'https://ror.org/01jr0rj76 Texas Department of Public Safety'),
(62990, 'https://ror.org/04xf9tg94', 'en', 1, 'https://ror.org/04xf9tg94 Sewerage Board of Limassol – Amathus Συμβούλιο Αποχετεύσεων Λεμεσού - Αμαθούντας'),
(62991, 'https://ror.org/029bb7n62', 'no_lang_code', 1, 'https://ror.org/029bb7n62 Industrias Peñoles Peñoles (Mexico)'),
(62992, 'https://ror.org/002jr8r89', 'en', 1, 'https://ror.org/002jr8r89 Public Service Development Agency სახელმწიფო სერვისების განვითარების სააგენტო'),
(62993, 'https://ror.org/051hnz082', 'no_lang_code', 1, 'https://ror.org/051hnz082 Silvapa (Portugal)'),
(62994, 'https://ror.org/01zq0ty45', 'en', 1, 'https://ror.org/01zq0ty45 Public Waste Agency of Flanders'),
(62995, 'https://ror.org/02z491a27', 'pt', 1, 'https://ror.org/02z491a27 Sindicato Dos Trabalhadores Da Administração Pública e de Entidades com Fins Públicos'),
(62996, 'https://ror.org/0376fv627', 'en', 1, 'https://ror.org/0376fv627 Department of Public Works Τμήμα Δημοσίων Έργων'),
(62997, 'https://ror.org/04t5t5q13', 'en', 1, 'https://ror.org/04t5t5q13 State of Ohio Board of Pharmacy'),
(62998, 'https://ror.org/05ybbth24', 'en', 1, 'https://ror.org/05ybbth24 National Youth Agency'),
(62999, 'https://ror.org/03s9rtw86', 'en', 1, 'https://ror.org/03s9rtw86 National Adult Literacy Agency'),
(63000, 'https://ror.org/00jmt8d06', 'en', 1, 'https://ror.org/00jmt8d06 Agentschap Telecom Radiocommunications Agency'),
(63001, 'https://ror.org/0221pe749', 'en', 1, 'https://ror.org/0221pe749 Pakistan Council of Research in Water Resources'),
(63002, 'https://ror.org/009mwch30', 'en', 1, 'https://ror.org/009mwch30 Slovenian Nuclear Safety Administration Uprava Republike Slovenije za Jedrsko Varnost'),
(63003, 'https://ror.org/041dptm21', 'en', 1, 'https://ror.org/041dptm21 Sofia Energy Agency АСОЦИАЦИЯ НА АГЕНЦИЯТА ЗА ЕНЕРГИЙНА СОФИЯ'),
(63004, 'https://ror.org/01ejspd55', 'no_lang_code', 1, 'https://ror.org/01ejspd55 Ranheim Paper & Board (Norway)'),
(63005, 'https://ror.org/038wqs208', 'en', 1, 'https://ror.org/038wqs208 National Agency for Education Skolverket'),
(63006, 'https://ror.org/01h2zyy62', 'pt', 1, 'https://ror.org/01h2zyy62 Serviços Partilhados do Ministério da Saúde'),
(63007, 'https://ror.org/031hazy16', 'en', 1, 'https://ror.org/031hazy16 Springboard'),
(63008, 'https://ror.org/024b0tx86', 'it', 1, 'https://ror.org/024b0tx86 Scuola Nazionale dell''Amministrazione'),
(63009, 'https://ror.org/04zpnp088', 'en', 1, 'https://ror.org/04zpnp088 Southern States Energy Board'),
(63010, 'https://ror.org/008d47791', 'no_lang_code', 1, 'https://ror.org/008d47791 Novem (Netherlands)'),
(63011, 'https://ror.org/03rb53j96', 'en', 1, 'https://ror.org/03rb53j96 Directorate for Inland Waterways Direkcija za vodne puteve Plovput Дирекција за водне путеве Пловпут'),
(63012, 'https://ror.org/0073p9c35', 'en', 1, 'https://ror.org/0073p9c35 National Board for Certified Counselors'),
(63013, 'https://ror.org/04j8mbe63', 'en', 1, 'https://ror.org/04j8mbe63 Nevada State Board of Pharmacy'),
(63014, 'https://ror.org/02xq4xp48', 'en', 1, 'https://ror.org/02xq4xp48 State Agency for Metrological and Technical Surveillance Държавна агенция за метрологичен и технически надзор'),
(63015, 'https://ror.org/036j7gs78', 'en', 1, 'https://ror.org/036j7gs78 Nevada Dairy Commission'),
(63016, 'https://ror.org/0280brb18', 'en', 1, 'https://ror.org/0280brb18 Southington Public School'),
(63017, 'https://ror.org/005ds8z67', 'en', 1, 'https://ror.org/005ds8z67 Nevada Department of Agriculture'),
(63018, 'https://ror.org/00m0pp561', 'en', 1, 'https://ror.org/00m0pp561 National Board of Patents and Registration of Finland Patentti- ja rekisterihallitus'),
(63019, 'https://ror.org/04egyjm03', 'en', 1, 'https://ror.org/04egyjm03 Nevada Department of Education'),
(63020, 'https://ror.org/01mymm084', 'en', 1, 'https://ror.org/01mymm084 Technological Educational Institute of Western Greece Τεχνολογικό Εκπαιδευτικό Ίδρυμα Δυτικής Ελλάδας'),
(63021, 'https://ror.org/004v3gj87', 'en', 1, 'https://ror.org/004v3gj87 Ministry of Emergency Situations Төтенше жағдайлар министрлігі'),
(63022, 'https://ror.org/048snpq13', 'en', 1, 'https://ror.org/048snpq13 Resource Management Agency'),
(63023, 'https://ror.org/01e0s4559', 'en', 1, 'https://ror.org/01e0s4559 Ministry of Labour and Social Protection Republic of Belarus Министерство труда и социальной защиты Республики Беларусь'),
(63024, 'https://ror.org/000p6eh83', 'en', 1, 'https://ror.org/000p6eh83 Rio Grande Council of Governments'),
(63025, 'https://ror.org/018e02524', 'en', 1, 'https://ror.org/018e02524 Ministrstvo za Kmetijstvo, Gozdarstvo in Prehrano Ministry of Agriculture, Forestry and Food Security'),
(63026, 'https://ror.org/01rg40y89', 'en', 1, 'https://ror.org/01rg40y89 Institute of Condensed Matter Chemistry and Technologies for Energy Istituto di Chimica della Materia Condensata e di Tecnologie per l''Energia'),
(63027, 'https://ror.org/03y5ebv30', 'en', 1, 'https://ror.org/03y5ebv30 Regulatory Agency for Electronic Communications and Postal Services Регулаторна агенција за електронске комуникације и поштанске услуге'),
(63028, 'https://ror.org/000m4se28', 'en', 1, 'https://ror.org/000m4se28 Aerospace Research Institute پژوهشگاه هوافضا'),
(63029, 'https://ror.org/00ddcgv12', 'en', 1, 'https://ror.org/00ddcgv12 State Phytosanitary Administration Státní Rostlinolékařská Správa'),
(63030, 'https://ror.org/0231kk931', 'en', 1, 'https://ror.org/0231kk931 African Institute for Mathematical Sciences Ghana'),
(63031, 'https://ror.org/01reqdm50', 'en', 1, 'https://ror.org/01reqdm50 Institute of Electron Physics Інститут електронної фізики Институт электронной физики'),
(63032, 'https://ror.org/03q5grb87', 'fr', 1, 'https://ror.org/03q5grb87 Académie des Sciences et des Technologies d''Algérie'),
(63033, 'https://ror.org/037g7hc89', 'en', 1, 'https://ror.org/037g7hc89 National Statistical Service of the Republic of Armenia Ազգային վիճակագրական ծառայություն'),
(63034, 'https://ror.org/00dkg9f08', 'nl', 1, 'https://ror.org/00dkg9f08 Royal Dirkzwager'),
(63035, 'https://ror.org/03zmfa837', 'en', 1, 'https://ror.org/03zmfa837 Rochester Institute of Technology - Dubai معهد روتشستر للتكنولوجيا - دبي'),
(63036, 'https://ror.org/03a0vt050', 'en', 1, 'https://ror.org/03a0vt050 Institute of Inorganic Methodologies and Plasmas Istituto di Metodologie Inorganiche e dei Plasmi'),
(63037, 'https://ror.org/01g5j9962', 'en', 1, 'https://ror.org/01g5j9962 Stoughton Youth Commission'),
(63038, 'https://ror.org/00f65v533', 'en', 1, 'https://ror.org/00f65v533 Strategic Investment Board'),
(63039, 'https://ror.org/021923v79', 'en', 1, 'https://ror.org/021923v79 Institute of Marine Geology and Geophysics Институт морской геологии и геофизики'),
(63040, 'https://ror.org/035a15991', 'es', 1, 'https://ror.org/035a15991 Instituto Argentino de Radioastronomía'),
(63041, 'https://ror.org/02b12qx63', 'en', 1, 'https://ror.org/02b12qx63 SAGA Heavy Ion Medical Accelerator in Tosu 九州国際重粒子線がん治療センタ'),
(63042, 'https://ror.org/035seyp42', 'en', 1, 'https://ror.org/035seyp42 Institut de Mathématiques et de Sciences Physiques Institute of Mathematics and Physics'),
(63043, 'https://ror.org/04asgtj30', 'en', 1, 'https://ror.org/04asgtj30 Baoding University'),
(63044, 'https://ror.org/03cthg118', 'en', 1, 'https://ror.org/03cthg118 Istituto di ricerca Santa Marinella Santa Marinella Research Institute'),
(63045, 'https://ror.org/00p0gp915', 'en', 1, 'https://ror.org/00p0gp915 Saudi Digital Library المكتبة الرقمية السعودية'),
(63046, 'https://ror.org/02ba86714', 'en', 1, 'https://ror.org/02ba86714 Surrey Board of Trade'),
(63047, 'https://ror.org/01fst1562', 'no_lang_code', 1, 'https://ror.org/01fst1562 Sceptica Scientific (United Kingdom)'),
(63048, 'https://ror.org/02a62fq70', 'en', 1, 'https://ror.org/02a62fq70 Susquehanna River Basin Commission'),
(63049, 'https://ror.org/00bc51d88', 'it', 1, 'https://ror.org/00bc51d88 Istituto di Nanotecnologia'),
(63050, 'https://ror.org/002mzw222', 'en', 1, 'https://ror.org/002mzw222 Cape Coast Technical University'),
(63051, 'https://ror.org/05waykt95', 'no_lang_code', 1, 'https://ror.org/05waykt95 Schlumberger (Russia)'),
(63052, 'https://ror.org/02xfypx32', 'en', 1, 'https://ror.org/02xfypx32 Sustainable Economic Development Agency'),
(63053, 'https://ror.org/022g12y09', 'en', 1, 'https://ror.org/022g12y09 Sustainable Energy Development Agency'),
(63054, 'https://ror.org/02133fc38', 'no_lang_code', 1, 'https://ror.org/02133fc38 Stinger Ghaffarian Technologies (United States)'),
(63055, 'https://ror.org/058ddgs73', 'en', 1, 'https://ror.org/058ddgs73 Center for Art and Media Karlsruhe Zentrum für Kunst und Medien'),
(63056, 'https://ror.org/042hg5r91', 'en', 1, 'https://ror.org/042hg5r91 Institute of Quantum Materials Science ЗАО "Институт квантового материаловедения"'),
(63057, 'https://ror.org/04scxn396', 'hu', 1, 'https://ror.org/04scxn396 Közbeszerzési és Ellátási Főigazgatóság'),
(63058, 'https://ror.org/01j6drw72', 'en', 1, 'https://ror.org/01j6drw72 Institute of Science and Technology for Ceramics Istituto di Scienza e Tecnologia dei Materiali Ceramici'),
(63059, 'https://ror.org/003cp7918', 'en', 1, 'https://ror.org/003cp7918 Shanghai Micro Satellite Engineering Center 上海微型卫星工程中心'),
(63060, 'https://ror.org/00xn99b04', 'en', 1, 'https://ror.org/00xn99b04 Central Research Institute of Chemistry and Mechanics'),
(63061, 'https://ror.org/04vptn707', 'en', 1, 'https://ror.org/04vptn707 Shanghai Institute of Quality Inspection and Technical Research 上海市质量监督检验技术研究院'),
(63062, 'https://ror.org/02ykbvm42', 'en', 1, 'https://ror.org/02ykbvm42 Centre for Materials for Electronics Technology'),
(63063, 'https://ror.org/04sx9wp33', 'en', 1, 'https://ror.org/04sx9wp33 CSIRO Manufacturing'),
(63064, 'https://ror.org/02wdyv422', 'en', 1, 'https://ror.org/02wdyv422 Ministry for Transport, Infrastructure and Capital Projects'),
(63065, 'https://ror.org/05bdngh08', 'fr', 1, 'https://ror.org/05bdngh08 ECAM-EPMI'),
(63066, 'https://ror.org/03s0pk098', 'fr', 1, 'https://ror.org/03s0pk098 École Supérieure en Sciences Appliquées de Tlemcen'),
(63067, 'https://ror.org/051yzyq64', 'no_lang_code', 1, 'https://ror.org/051yzyq64 Techtra (Poland)'),
(63068, 'https://ror.org/03v60jr94', 'no_lang_code', 1, 'https://ror.org/03v60jr94 Springer Nature (Switzerland)'),
(63069, 'https://ror.org/05wd8bb75', 'en', 1, 'https://ror.org/05wd8bb75 Iraq Virtual Science Library'),
(63070, 'https://ror.org/054q52n39', 'no_lang_code', 1, 'https://ror.org/054q52n39 Stallergenes Greer (United States)'),
(63071, 'https://ror.org/05cdfm144', 'it', 1, 'https://ror.org/05cdfm144 Istituto di Cibernetica “Eduardo Caianiello”'),
(63072, 'https://ror.org/048m5jb39', 'en', 1, 'https://ror.org/048m5jb39 Extreme Light Infrastructure - Nuclear Physics'),
(63073, 'https://ror.org/0498x1v76', 'en', 1, 'https://ror.org/0498x1v76 Texoma Council of Governments'),
(63074, 'https://ror.org/05sc3yb31', 'en', 1, 'https://ror.org/05sc3yb31 Sunyani Technical University'),
(63075, 'https://ror.org/04pms6p91', 'en', 1, 'https://ror.org/04pms6p91 Ivan Vazov National Library Народна библиотека "Иван Вазов"'),
(63076, 'https://ror.org/02szepc22', 'en', 1, 'https://ror.org/02szepc22 Suzhou Institute of Systems Medicine 苏州市系统医学研究所'),
(63077, 'https://ror.org/02cabnz35', 'no_lang_code', 1, 'https://ror.org/02cabnz35 Elytt Energy (Spain)'),
(63078, 'https://ror.org/02zmk8084', 'en', 1, 'https://ror.org/02zmk8084 John von Neumann Institute for Computing John von Neumann-Institut für Computing'),
(63079, 'https://ror.org/03n9kt276', 'en', 1, 'https://ror.org/03n9kt276 The Audience Agency'),
(63080, 'https://ror.org/003xptq40', 'no_lang_code', 1, 'https://ror.org/003xptq40 Ex-Polon Kwieciński Fornalski Spółka Cywilna (Poland)'),
(63081, 'https://ror.org/05h63pk13', 'en', 1, 'https://ror.org/05h63pk13 Baltic and International Maritime Council'),
(63082, 'https://ror.org/0079vgv93', 'en', 1, 'https://ror.org/0079vgv93 Edwards Air Force Base'),
(63083, 'https://ror.org/01hpfvd96', 'no_lang_code', 1, 'https://ror.org/01hpfvd96 Unilever (Australia)'),
(63084, 'https://ror.org/043smqe02', 'no_lang_code', 1, 'https://ror.org/043smqe02 Unilever (Indonesia)'),
(63085, 'https://ror.org/04r3tf602', 'no_lang_code', 1, 'https://ror.org/04r3tf602 Joshua Mqabuko Nkomo Polytechnic'),
(63086, 'https://ror.org/00p5h5h82', 'en', 1, 'https://ror.org/00p5h5h82 ELI-HU Research and Development Non-Profit'),
(63087, 'https://ror.org/01dt03b80', 'no_lang_code', 1, 'https://ror.org/01dt03b80 Unilever (Japan)'),
(63088, 'https://ror.org/02fnwm920', 'en', 1, 'https://ror.org/02fnwm920 Conference Board'),
(63089, 'https://ror.org/00d96ax77', 'en', 1, 'https://ror.org/00d96ax77 An Roinn Iompair, Turasóireachta agus Spóirt Department of Transport, Tourism and Sport'),
(63090, 'https://ror.org/055e0ds53', 'en', 1, 'https://ror.org/055e0ds53 Electoral Commission'),
(63091, 'https://ror.org/00vvey578', 'en', 1, 'https://ror.org/00vvey578 Taiya Inlet Watershed Council'),
(63092, 'https://ror.org/02z7d4y66', 'no_lang_code', 1, 'https://ror.org/02z7d4y66 Keylane (Netherlands)'),
(63093, 'https://ror.org/02gteh527', 'en', 1, 'https://ror.org/02gteh527 European Mentoring Coaching Council'),
(63094, 'https://ror.org/05azkwn61', 'en', 1, 'https://ror.org/05azkwn61 National Board of Customs Tullihallitus'),
(63095, 'https://ror.org/0593bs311', 'en', 1, 'https://ror.org/0593bs311 Vernadsky National Library of Ukraine Національна бібліотека України імені В. І. Вернадського'),
(63096, 'https://ror.org/025yhyr08', 'en', 1, 'https://ror.org/025yhyr08 Directorate of Fisheries Fiskistofa'),
(63097, 'https://ror.org/00rs2nc95', 'en', 1, 'https://ror.org/00rs2nc95 Ministry of Transport, Maritime Affairs and Communications Ulaştırma, Denizcilik ve Haberleşme Bakanlığı'),
(63098, 'https://ror.org/02qhbts44', 'en', 1, 'https://ror.org/02qhbts44 Vernadsky State Geological Museum Государственный Геологический Музей им. В.И. Вернадского РАН'),
(63099, 'https://ror.org/03x542r19', 'en', 1, 'https://ror.org/03x542r19 Business France'),
(63100, 'https://ror.org/055sgbp02', 'en', 1, 'https://ror.org/055sgbp02 Live Art Development Agency'),
(63101, 'https://ror.org/007wym039', 'en', 1, 'https://ror.org/007wym039 Henan University of Engineering 河南工程学院'),
(63102, 'https://ror.org/03cznfh76', 'en', 1, 'https://ror.org/03cznfh76 London Mathematical Laboratory'),
(63103, 'https://ror.org/02f83md58', 'en', 1, 'https://ror.org/02f83md58 Zhejiang Library 浙江图书馆'),
(63104, 'https://ror.org/03t25gb93', 'en', 1, 'https://ror.org/03t25gb93 Pamiatkový úrad Slovenskej republiky The Monuments Board of the Slovak Republic'),
(63105, 'https://ror.org/0384jmk48', 'en', 1, 'https://ror.org/0384jmk48 Citizens Advice'),
(63106, 'https://ror.org/01jq9hd27', 'sv', 1, 'https://ror.org/01jq9hd27 National Agency for Special Needs Education and Schools Specialpedagogiska Skolmyndigheten'),
(63107, 'https://ror.org/00sd4s212', 'fr', 1, 'https://ror.org/00sd4s212 Institut Supérieur des Études Technologiques de Nabeul المعهد العالي للدراسات التكنولوجية بتابل'),
(63108, 'https://ror.org/008gn7430', 'en', 1, 'https://ror.org/008gn7430 Environment Agency of Iceland Umhverfisstofnun'),
(63109, 'https://ror.org/02a3p3j66', 'en', 1, 'https://ror.org/02a3p3j66 Institute for Creation Research'),
(63110, 'https://ror.org/0336k1122', 'en', 1, 'https://ror.org/0336k1122 The Reading Agency'),
(63111, 'https://ror.org/05xnfc553', 'ro', 1, 'https://ror.org/05xnfc553 Colegiul National Mihai Eminescu'),
(63112, 'https://ror.org/01jt38m64', 'en', 1, 'https://ror.org/01jt38m64 Institute for Energetics and Interphases Istituto per Energetica e Interfasi'),
(63113, 'https://ror.org/033z65h39', 'en', 1, 'https://ror.org/033z65h39 Ministry of Higher and Tertiary Education'),
(63114, 'https://ror.org/021z1mz76', 'en', 1, 'https://ror.org/021z1mz76 Institute of Organic Synthesis and Photoreactivity Istituto di Sintesi Organica e Fotoreattività'),
(63115, 'https://ror.org/05hky6p02', 'en', 1, 'https://ror.org/05hky6p02 Institute of Atmospheric Pollution Research Istituto sull’Inquinamento Atmosferico'),
(63116, 'https://ror.org/059jjdh21', 'en', 1, 'https://ror.org/059jjdh21 Nanjing Boiler and Pressure Vessel Inspection Institute 南京市锅炉压力容器检验研究院'),
(63117, 'https://ror.org/00rtmek18', 'no_lang_code', 1, 'https://ror.org/00rtmek18 Nobel Academy'),
(63118, 'https://ror.org/04570m236', 'en', 1, 'https://ror.org/04570m236 Landsbókasafn Íslands Háskólabókasafn National and University Library of Iceland'),
(63119, 'https://ror.org/01vn81v55', 'no_lang_code', 1, 'https://ror.org/01vn81v55 Numina Group (United States)'),
(63120, 'https://ror.org/030qwwd12', 'no_lang_code', 1, 'https://ror.org/030qwwd12 The Springboard Consultancy (United Kingdom)'),
(63121, 'https://ror.org/05hadht38', 'no_lang_code', 1, 'https://ror.org/05hadht38 National Informatics Corporation (Iran) ي شرکت ملي انفورماتيک'),
(63122, 'https://ror.org/02qh6my57', 'en', 1, 'https://ror.org/02qh6my57 Skogsstyrelsen Swedish Forest Agency'),
(63123, 'https://ror.org/05941t046', 'en', 1, 'https://ror.org/05941t046 Cymdeithas Llywodraeth Leol Cymru Welsh Local Government Association'),
(63124, 'https://ror.org/006npbt15', 'en', 1, 'https://ror.org/006npbt15 Veterinaar- ja Toiduamet Veterinary and Food Board'),
(63125, 'https://ror.org/03dn9ew70', 'en', 1, 'https://ror.org/03dn9ew70 WAMITAB'),
(63126, 'https://ror.org/00k852a29', 'en', 1, 'https://ror.org/00k852a29 West Virginia Division of Natural Resources'),
(63127, 'https://ror.org/016jvwb81', 'no_lang_code', 1, 'https://ror.org/016jvwb81 Octoly (France)'),
(63128, 'https://ror.org/02ammvg77', 'en', 1, 'https://ror.org/02ammvg77 Westminster Schools'),
(63129, 'https://ror.org/03dzbma55', 'en', 1, 'https://ror.org/03dzbma55 Western Development Commission'),
(63130, 'https://ror.org/03b8swz18', 'de', 1, 'https://ror.org/03b8swz18 Thüringer Ministerium für Umwelt, Energie und Naturschutz'),
(63131, 'https://ror.org/005781837', 'en', 1, 'https://ror.org/005781837 Water Board of Lemesos Συμβούλιο Υδατοπρομήθειας Λεμεσού'),
(63132, 'https://ror.org/02ssta106', 'en', 1, 'https://ror.org/02ssta106 Cục Thú y Việt Nam Department of Animal Health'),
(63133, 'https://ror.org/038dn8481', 'en', 1, 'https://ror.org/038dn8481 United Nations Economic Commission for Europe'),
(63134, 'https://ror.org/04z3rz137', 'no_lang_code', 1, 'https://ror.org/04z3rz137 ANKO (Greece) Αναπτυξιακή Δυτικής Μακεδονίας'),
(63135, 'https://ror.org/05n4dxt42', 'en', 1, 'https://ror.org/05n4dxt42 Wayne-Finger Lakes BOCES'),
(63136, 'https://ror.org/0112jky20', 'en', 1, 'https://ror.org/0112jky20 Vilnius City Municipality Administration'),
(63137, 'https://ror.org/00nczhw32', 'en', 1, 'https://ror.org/00nczhw32 Municipal Enterprise for Social Development Trikalon Διεύθυνση Καλαμπάκας 28 & Αμπάτη Τρίκαλα,'),
(63138, 'https://ror.org/01ppbq689', 'no_lang_code', 1, 'https://ror.org/01ppbq689 WEBAGENCY E-Commerce (Germany)'),
(63139, 'https://ror.org/015ggv447', 'en', 1, 'https://ror.org/015ggv447 United Nations Economic Commission for Latin America and the Caribbean'),
(63140, 'https://ror.org/02x76rz89', 'en', 1, 'https://ror.org/02x76rz89 United States Anti-Doping Agency'),
(63141, 'https://ror.org/002gcqm12', 'en', 1, 'https://ror.org/002gcqm12 State Tax Inspectorate Valstybinė Mokesčių Inspekcija'),
(63142, 'https://ror.org/03x35bg73', 'en', 1, 'https://ror.org/03x35bg73 Wyoming Department of Agriculture'),
(63143, 'https://ror.org/04crq6e59', 'en', 1, 'https://ror.org/04crq6e59 State Consumer Rights Protection Authority Valstybinė ne maisto Produktų Inspekcija prie Ūkio Ministerijos'),
(63144, 'https://ror.org/02a7e9x96', 'en', 1, 'https://ror.org/02a7e9x96 Federation of German Consumer Organisations Verbraucherzentrale Bundesverband'),
(63145, 'https://ror.org/034kzpn81', 'en', 1, 'https://ror.org/034kzpn81 Vermont Department of Libraries'),
(63146, 'https://ror.org/01xa8e295', 'en', 1, 'https://ror.org/01xa8e295 An Bord Árachais Sláinte Shaorálaigh Vhi Healthcare'),
(63147, 'https://ror.org/04kd20m98', 'en', 1, 'https://ror.org/04kd20m98 Department for Economic Affairs Volkswirtschaftsdirektion'),
(63148, 'https://ror.org/03hcmsw69', 'en', 1, 'https://ror.org/03hcmsw69 Cardiff Tourist Information Centre'),
(63149, 'https://ror.org/03y008h18', 'en', 1, 'https://ror.org/03y008h18 Vermont Judiciary'),
(63150, 'https://ror.org/04z4pf693', 'en', 1, 'https://ror.org/04z4pf693 Sholem Aleichem Amur State University Приамурский государственный университет имени Шолом-Алейхема'),
(63151, 'https://ror.org/024nvcs33', 'en', 1, 'https://ror.org/024nvcs33 Military Space Academy named after AF Mozhaisky Военно-космическая академия имени А. Ф. Можайского'),
(63152, 'https://ror.org/058t7m662', 'en', 1, 'https://ror.org/058t7m662 Ivanovo State Polytechnic University Ивановского государственного политехнического университета'),
(63153, 'https://ror.org/04c7f6285', 'en', 1, 'https://ror.org/04c7f6285 Irkutsk State Agrarian University named after A.A. Ezhevsky Иркутский государственный аграрный университет имени А.А. Ежевского'),
(63154, 'https://ror.org/0548hz093', 'en', 1, 'https://ror.org/0548hz093 Russian State Agrarian Correspondence University Российский государственный аграрный заочный университет'),
(63155, 'https://ror.org/01c75js78', 'en', 1, 'https://ror.org/01c75js78 Military Academy of Radiation, Chemical and Biological Protection Военная академия радиационной, химической и биологической защиты'),
(63156, 'https://ror.org/05xb0z813', 'en', 1, 'https://ror.org/05xb0z813 Government Vidarbha Institute of Science and Humanities'),
(63157, 'https://ror.org/00r0vv945', 'en', 1, 'https://ror.org/00r0vv945 Voronezh State University of Forestry and Technologies Воронежский государственный лесотехнический университет им. Г.ф. Морозова'),
(63158, 'https://ror.org/03gwmvd28', 'en', 1, 'https://ror.org/03gwmvd28 The Caspian Scientific Research Institute of Arid Aarming Прикаспийский научно-исследовательский институт аридного земледелия'),
(63159, 'https://ror.org/02wj1da11', 'en', 1, 'https://ror.org/02wj1da11 Dagestan Scientific Research Institute of Agriculture Named After F.G. Kysriev ФГБНУ ДАГЕСТАНСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ СЕЛЬСКОГО ХОЗЯЙСТВА ИМЕНИ Ф.Г.КИСРИЕВА'),
(63160, 'https://ror.org/01yetjs28', 'en', 1, 'https://ror.org/01yetjs28 Kirov Research Institute of Hematology and Blood Transfusion FMBA Кировский научно-исследовательский институт гематологии и переливания крови Федерального медико-биологического агентства'),
(63161, 'https://ror.org/027g7ga88', 'en', 1, 'https://ror.org/027g7ga88 All-Russian Research Institute Gradient Всероссийский научно-исследовательский институт «Градиент»'),
(63162, 'https://ror.org/0219db520', 'en', 1, 'https://ror.org/0219db520 All-Russian Research Institute "Signal" Всероссийский научно-исследовательский институт «Сигнал»'),
(63163, 'https://ror.org/048tmw498', 'no_lang_code', 1, 'https://ror.org/048tmw498 Viogem Всероссийский научно-исследовательский институт по осушению месторождений полезных ископаемых, защите инженерных сооружений от обводнения, специальным горным работам, геомеханике, геофизике, гидротехнике, геологии и маркшейдерскому делу'),
(63164, 'https://ror.org/04qpssw85', 'en', 1, 'https://ror.org/04qpssw85 State Research Center of the Russian Federation ЦНИИ Электроприбор'),
(63165, 'https://ror.org/058awzy03', 'en', 1, 'https://ror.org/058awzy03 Scientific Research Institute of Flax Mechanization Всероссийский научно-исследовательский, проектно-технологический институт механизации возделывания льна'),
(63166, 'https://ror.org/03d9hbb17', 'en', 1, 'https://ror.org/03d9hbb17 All-Russian Research Institute of Brewing, Non-Alcoholic and Wine Industry Всероссийский научно-исследовательский Институт Пивоваренной, Безалкогольной И Винодельческой Промышленности'),
(63167, 'https://ror.org/05hf6yg30', 'no_lang_code', 1, 'https://ror.org/05hf6yg30 Central Research Institute for Special Machinery (Russia) Центральный научно-исследовательский институт специального машиностроения'),
(63168, 'https://ror.org/00g98sq23', 'en', 1, 'https://ror.org/00g98sq23 Central Research Institute of Communications'),
(63169, 'https://ror.org/04ejrv182', 'en', 1, 'https://ror.org/04ejrv182 All-Russia Research Institute of Legumes and Groat Crops FGBNU "Vserossijskij Nauchno-Issledovatel''skij Institut Zernobobovyh i Krupyanyh Kul''tur"'),
(63170, 'https://ror.org/035198g37', 'en', 1, 'https://ror.org/035198g37 All-Russian Scientific Research Institute of Floriculture and Subtropical Crops Всероссийский научно-исследовательский институт цветоводства и субтропических культур'),
(63171, 'https://ror.org/039zvkm26', 'en', 1, 'https://ror.org/039zvkm26 Central Scientific Research Institute of Geology of Non-metallic Minerals'),
(63172, 'https://ror.org/00sn3eq47', 'en', 1, 'https://ror.org/00sn3eq47 All-Russian Horticultural Institute for Breeding, Agrotechnology and Nursery ВСЕРОССИЙСКИЙ СЕЛЕКЦИОННО-ТЕХНОЛОГИЧЕСКИЙ ИНСТИТУТ САДОВОДСТВА И ПИТОМНИКОВОДСТВА'),
(63173, 'https://ror.org/02s6y7k21', 'en', 1, 'https://ror.org/02s6y7k21 Central Research Institute of Materials Центральный научно-исследовательский институт материалов'),
(63174, 'https://ror.org/03sgkc956', 'en', 1, 'https://ror.org/03sgkc956 All-Russian Rice Research Institute Всероссийский научно-исследовательский институт риса'),
(63175, 'https://ror.org/05rbhdv87', 'en', 1, 'https://ror.org/05rbhdv87 Central Scientific Research Institute of Measuring Equipment Центральный НИИ измерительной аппаратуры'),
(63176, 'https://ror.org/007d31z96', 'no_lang_code', 1, 'https://ror.org/007d31z96 All-Russian Institute of Light Alloys (Russia) Всероссийский институт лёгких сплавов «ВИЛС»'),
(63177, 'https://ror.org/05hrf7s75', 'en', 1, 'https://ror.org/05hrf7s75 All-Russian State Scientific Research Institute for Control, Standardization and Certification of Veterinary Preparations Всероссийский государственный научно-исследовательский институт контроля, стандартизации и сертификации ветеринарных препаратов'),
(63178, 'https://ror.org/00g2rx327', 'en', 1, 'https://ror.org/00g2rx327 All-Russian Research and Design Institute of Metallurgical Engineering Всесоюзный научно-исследовательский и проектно-конструкторский институт металлургического машиностроения'),
(63179, 'https://ror.org/04z4kzf83', 'no_lang_code', 1, 'https://ror.org/04z4kzf83 A.P. Krylov All-Russian Oil and Gas Research Institute (Russia) Акционерное общество «Всероссийский нефтегазовый научно-исследовательский институт имени академика А.П. Крылова»'),
(63180, 'https://ror.org/03g7p4332', 'no_lang_code', 1, 'https://ror.org/03g7p4332 Geologorazvedka (Russia) Геологоразведка'),
(63181, 'https://ror.org/00n99mq57', 'en', 1, 'https://ror.org/00n99mq57 Siberian Research, Design and Design Institute of Aluminum and Electrode Industry Сибирский научно-исследовательский, проектно-конструкторский институт алюминиевой и электродной промышленности'),
(63182, 'https://ror.org/02ye0gt70', 'en', 1, 'https://ror.org/02ye0gt70 All-Russian Research Institute of Chemical Technology Всероссийский научно-исследовательский институт химической технологии'),
(63183, 'https://ror.org/01e8kye07', 'en', 1, 'https://ror.org/01e8kye07 All-Russian Scientific Research Institute of Hydraulic Engineering and Melioration named after A.N. Kostyakov Всероссийский научно-исследовательский институт гидротехники и мелиорации имени А. Н. Костякова'),
(63184, 'https://ror.org/02w6cg233', 'en', 1, 'https://ror.org/02w6cg233 Central Research Institute of Building Constructions named after VA Kucherenko Центральный научно-исследовательский институт строительных конструкций имени В.А. Кучеренко'),
(63185, 'https://ror.org/02dnrfk87', 'en', 1, 'https://ror.org/02dnrfk87 Chechen Scientific Research Institute of Agriculture Чеченский научно-исследовательский институт сельского хозяйства'),
(63186, 'https://ror.org/059p3be55', 'en', 1, 'https://ror.org/059p3be55 All-Russian Research and Design Institute of Hard Alloys and Refractory Metals Всероссийский научно-исследовательский и проектный институт твердых сплавов и тугоплавких металлов'),
(63187, 'https://ror.org/04n6ern89', 'no_lang_code', 1, 'https://ror.org/04n6ern89 Concern Energomera (Russia)'),
(63188, 'https://ror.org/02s5nq722', 'en', 1, 'https://ror.org/02s5nq722 All-Russian Research Institute of Relay Engineering Всероссийский научно-исследовательский институт релейной инженерии'),
(63189, 'https://ror.org/04nsjct52', 'no_lang_code', 1, 'https://ror.org/04nsjct52 VNIIPelkhozkhim Рязани был организован Всесоюзный научно-исследовательский и проектный институт по технологии и экономике хранения и использования в сельском хозяйстве минеральных удобрений и химических средств защиты растений'),
(63190, 'https://ror.org/03cmpa045', 'en', 1, 'https://ror.org/03cmpa045 Altai Scientific Research Institute of Machine Building Technology Алтайский научно-исследовательский институт технологии машиностроения'),
(63191, 'https://ror.org/0529wwy54', 'en', 1, 'https://ror.org/0529wwy54 Institute of New Carbon Materials and Technologies'),
(63192, 'https://ror.org/03mjn8x60', 'en', 1, 'https://ror.org/03mjn8x60 Moscow Scientific-Research Television Institute Московский научно-исследовательский телевизионный институт'),
(63193, 'https://ror.org/00g473r84', 'en', 1, 'https://ror.org/00g473r84 All-Russian Scientific Research Institute of Livestock Mechanization Федеральное государственное бюджетное научное учреждение Всероссийский научно-исследовательский институт механизации животноводства'),
(63194, 'https://ror.org/05agwvf41', 'en', 1, 'https://ror.org/05agwvf41 All-Union Scientific Research Institute of Woodworking Industry Всесоюзный научно-исследовательский институт деревообрабатывающей промышленности'),
(63195, 'https://ror.org/02d4waw41', 'no_lang_code', 1, 'https://ror.org/02d4waw41 Lirsot (Russia) Лирсот'),
(63196, 'https://ror.org/01zzk8a60', 'no_lang_code', 1, 'https://ror.org/01zzk8a60 Instorff (Russia) Инсторфа'),
(63197, 'https://ror.org/02gqm6h10', 'no_lang_code', 1, 'https://ror.org/02gqm6h10 Centerprogramsystems Центрпрограммсистем'),
(63198, 'https://ror.org/008khgq16', 'no_lang_code', 1, 'https://ror.org/008khgq16 Integra (Russia) ВНИИБТ-Буровой инструмент'),
(63199, 'https://ror.org/05pntjg19', 'en', 1, 'https://ror.org/05pntjg19 Amur Scientific Center Амурский научный центр'),
(63200, 'https://ror.org/01wxbtj35', 'en', 1, 'https://ror.org/01wxbtj35 All-Russian Scientific Research Institute of Butter and Cheese Making Всероссийский научно-исследовательский институт маслоделия и сыроделия'),
(63201, 'https://ror.org/035397c59', 'en', 1, 'https://ror.org/035397c59 Atlantic Research Institute of Fisheries and Oceanography Атлантический научно-исследовательский институт рыбного хозяйства и океанографии'),
(63202, 'https://ror.org/01859cw58', 'en', 1, 'https://ror.org/01859cw58 All-Russian Research Institute of Civil Defense Всесоюзного НИИ гражданской обороны'),
(63203, 'https://ror.org/01zaaey39', 'no_lang_code', 1, 'https://ror.org/01zaaey39 Interregional Open Social Institute Межрегиональный открытый социальный институт'),
(63204, 'https://ror.org/00ag0hf75', 'en', 1, 'https://ror.org/00ag0hf75 Diagnostic and Prevention Research Institute for Human and Animal Diseases Научно-исследовательский институт диагностики и профилактики болезней человека и животных'),
(63205, 'https://ror.org/02bwjed35', 'en', 1, 'https://ror.org/02bwjed35 Central Design and Technology Institute of Valve Construction Центральный конструкторско-технологический институт арматуростроения'),
(63206, 'https://ror.org/02a71hb33', 'en', 1, 'https://ror.org/02a71hb33 Azov Scientific Research Institute of Fisheries Азовский НИИ Рыбного Хозяйства'),
(63207, 'https://ror.org/00rejsz57', 'en', 1, 'https://ror.org/00rejsz57 All-Russian Scientific and Research Institute of Brucellosis and Tuberculosis of Animals Всеросcийский научно-исcледовательский институт бруцеллеза и туберкулеза животных');
INSERT INTO `rors` VALUES
(63208, 'https://ror.org/04skssb35', 'en', 1, 'https://ror.org/04skssb35 The Federal State Budgetary Scientific Institution "Izmerov Research Institute of Occupational Health" Федеральное государственное бюджетное научное учреждение «Научно-исследовательский институт медицины труда имени академика Н.Ф. Измерова»'),
(63209, 'https://ror.org/05bbfjb19', 'en', 1, 'https://ror.org/05bbfjb19 Balakovo Engineering and Technology Institute Балаковский инженерно-технологический институт'),
(63210, 'https://ror.org/01a3x3w60', 'en', 1, 'https://ror.org/01a3x3w60 Scientific and Practical Center of the National Academy of Sciences of Belarus on Animal Husbandry РУП «Научно-практический центр Национальной академии наук Беларуси по животноводству»'),
(63211, 'https://ror.org/00nz1s384', 'no_lang_code', 1, 'https://ror.org/00nz1s384 Belorusneft (Belarus) Белоруснефть'),
(63212, 'https://ror.org/04xkyrk98', 'no_lang_code', 1, 'https://ror.org/04xkyrk98 OJSC VNIIST (Russia) Всероссийский научно-исследовательский институт по строительству и эксплуатации трубопроводов, объектов'),
(63213, 'https://ror.org/03xygbe46', 'en', 1, 'https://ror.org/03xygbe46 All-Russian Research Institute for Silviculture and Mechanization of Forestry ФБУ ВНИИЛМ'),
(63214, 'https://ror.org/00f11nx42', 'no_lang_code', 1, 'https://ror.org/00f11nx42 Belmehanobchermet (Russia)'),
(63215, 'https://ror.org/05jct2b89', 'en', 1, 'https://ror.org/05jct2b89 Ekaterinburg Research Institute of Viral Infections Екатеринбургский НИИ вирусных инфекций'),
(63216, 'https://ror.org/02xshzv74', 'en', 1, 'https://ror.org/02xshzv74 Kazan Research Institute of Epidemiology and Microbiology'),
(63217, 'https://ror.org/05pgmek29', 'en', 1, 'https://ror.org/05pgmek29 Nizhny Tagil Institute for Testing Metals Нижнетагильский институт испытания металлов'),
(63218, 'https://ror.org/05fhdzx69', 'en', 1, 'https://ror.org/05fhdzx69 Federal Scientific Agroengineering Center VIM Федеральное государственное бюджетное научное учреждение "Федеральный научный агроинженерный центр ВИМ"'),
(63219, 'https://ror.org/00gxxdv05', 'en', 1, 'https://ror.org/00gxxdv05 Nizhniy Novgorod Research Institute of Epidemiology and Microbiology named after Academician I.N. Blokhina Академик И.Н. Блохина Нижегородский научно-исследовательский институт эпидемиологии и микробиологии'),
(63220, 'https://ror.org/01cj7ev47', 'en', 1, 'https://ror.org/01cj7ev47 All-Russian Research Institute of Reclaimed Lands Всероссийский НИИ мелиорированных земель'),
(63221, 'https://ror.org/0191ymw19', 'en', 1, 'https://ror.org/0191ymw19 Russian Scientific Research Neurosurgical Institute Российский научно-исследовательский нейрохирургический институт им. проф. А.Л. Поленова'),
(63222, 'https://ror.org/015peq218', 'en', 1, 'https://ror.org/015peq218 Omsk Research Institute of Natural Focal Infections Омский научно-исследовательский институт естественных очаговых инфекций'),
(63223, 'https://ror.org/00dqsh274', 'en', 1, 'https://ror.org/00dqsh274 Research Institute of Agriculture of Crimea Научно-исследовательский институт сельского хозяйства Крыма'),
(63224, 'https://ror.org/02y0e7413', 'en', 1, 'https://ror.org/02y0e7413 Scientific Research Institute of Biochemistry Научно-исследовательский институт биохимии'),
(63225, 'https://ror.org/0160dkh89', 'en', 1, 'https://ror.org/0160dkh89 All-Russian Research Institute of Biological Plant Protection ВСЕРОССИЙСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ БИОЛОГИЧЕСКОЙ ЗАЩИТЫ РАСТЕНИЙ'),
(63226, 'https://ror.org/04kg4fr36', 'en', 1, 'https://ror.org/04kg4fr36 Saint-Petersburg Research Institute of Ear, Throat, Nose and Speech Санкт-Петербургский НИИ уха, горла, носа и речи'),
(63227, 'https://ror.org/027cccy65', 'en', 1, 'https://ror.org/027cccy65 All-Russian Scientific Research Institute of Refrigeration Industry Всероссийский научно-исследовательский Институт Холодильной Промышленности'),
(63228, 'https://ror.org/01mp7gg57', 'en', 1, 'https://ror.org/01mp7gg57 All-Russian Scientific Research Institute of Irrigation and Agricultural Water Supply "Raduga" Всероссийский научно-исследовательский институт орошения и сельскохозяйственного водоснабжения «Радуга»'),
(63229, 'https://ror.org/035w30858', 'en', 1, 'https://ror.org/035w30858 Kaliningrad Frontier Institute of the Federal Security Service of Russia Калининградский пограничный институт ФСБ России'),
(63230, 'https://ror.org/00shp5f66', 'en', 1, 'https://ror.org/00shp5f66 Saratov Research Institute of Traumatology and Orthopedics Саратовский научно-исследовательский институт травматологии и ортопедии'),
(63231, 'https://ror.org/04rnk3y84', 'en', 1, 'https://ror.org/04rnk3y84 All-Russian Scientific Research Institute of Experimental Veterinary Sciences. Ya.R. Kovalenko ФГБНУ Всероссийский научно-исследовательский институт экспериментальной ветеринарии им. Я.Р. Коваленко'),
(63232, 'https://ror.org/02k9pct19', 'en', 1, 'https://ror.org/02k9pct19 Institute of Physiology, Komi Science Center Институт экологической физиологии Уральского отделения'),
(63233, 'https://ror.org/00a5fnb74', 'en', 1, 'https://ror.org/00a5fnb74 Perm Military Institute Пермский военный институт'),
(63234, 'https://ror.org/01fz81h65', 'en', 1, 'https://ror.org/01fz81h65 Dagestan Scientific Center of the Russian Academy of Sciences Дагестанский научный центр Российской академии наук'),
(63235, 'https://ror.org/054ep4r90', 'en', 1, 'https://ror.org/054ep4r90 Federal Scientific Center for Feed Production and Agroecology named after V.R. Williams Всероссийский НИИ кормов имени В. Р. Вильямса'),
(63236, 'https://ror.org/02ftn0461', 'en', 1, 'https://ror.org/02ftn0461 Ryazan Higher Airborne Command School named after. V. F. Margelov Рязанское высшее воздушно-десантное командное училище им. В. Ф. Маргелов'),
(63237, 'https://ror.org/042rnq234', 'en', 1, 'https://ror.org/042rnq234 Institute of Engineering Science and Metallurgy Far Eastern Branch of the Russian Academy of Sciences Институт машиноведения и металлургии Дальневосточного отделения Российской академии наук'),
(63238, 'https://ror.org/05y57mm42', 'en', 1, 'https://ror.org/05y57mm42 All-Russian Scientific Research Institute of Flax Всероссийский научно-исследовательский институт льна'),
(63239, 'https://ror.org/048kbkr42', 'en', 1, 'https://ror.org/048kbkr42 Federal Service for Technical and Export Control Федеральная служба по техническому и экспортному контролю'),
(63240, 'https://ror.org/003gcpg05', 'en', 1, 'https://ror.org/003gcpg05 Institute of Superhigh-Frequency Semiconductor Electronics of the Russian Academy of Sciences Институт микроволновой полупроводниковой электроники РАН'),
(63241, 'https://ror.org/029dhqq81', 'en', 1, 'https://ror.org/029dhqq81 All-Russian Research Institute of Food Additives Всероссийский НИИ пищевых добавок'),
(63242, 'https://ror.org/01dwpz371', 'en', 1, 'https://ror.org/01dwpz371 All-Russian Scientific Research Institute of Grain and Products of its Processing Всероссийский Научно-Исследовательский Институт Зерна и продуктов его переработки'),
(63243, 'https://ror.org/0019q7242', 'en', 1, 'https://ror.org/0019q7242 Ural Scientific Research Institute of Dermatovenerology and Immunopathology'),
(63244, 'https://ror.org/04vdhyw52', 'en', 1, 'https://ror.org/04vdhyw52 All-Russian Scientific Research Institute of high-frequency currents named after VP Vologdin “Всероссийский научно-исследовательский институт токов высокой частоты” им. В.П. Вологдина'),
(63245, 'https://ror.org/04m8qbk11', 'en', 1, 'https://ror.org/04m8qbk11 Urals Research Institute for the Protection of Maternity and Infancy Уральский НИИ охраны материнства и младенчества'),
(63246, 'https://ror.org/00vgqhr90', 'en', 1, 'https://ror.org/00vgqhr90 Federal State Budgetary Scientific Institution Caspian Fisheries Research Institute Дагестанский филиал ФГБНУ Каспийский научно-исследовательский институт рыбного хозяйства'),
(63247, 'https://ror.org/053e3ts04', 'en', 1, 'https://ror.org/053e3ts04 Research Institute of Problems of Storage Rosrezerva Научно-исследовательский институт проблем хранения Федерального агентства по государственным резервам'),
(63248, 'https://ror.org/04fak9718', 'en', 1, 'https://ror.org/04fak9718 All-Russian Scientific - Research Institute of Horse Breeding Всероссийский научно-исследовательский институт коневодства'),
(63249, 'https://ror.org/00y245p24', 'en', 1, 'https://ror.org/00y245p24 Ural Institute of Traumatology and Orthopedics named after V.D. Chaklin Уральский институт травматологии и ортопедии имени В.Д. Чаклина'),
(63250, 'https://ror.org/01kbeda11', 'en', 1, 'https://ror.org/01kbeda11 Rostov-on-Don Research Institute of Radio Communications РОСТОВСКИЙ-НА-ДОНУ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ РАДИОСВЯЗИ'),
(63251, 'https://ror.org/01q4rp502', 'en', 1, 'https://ror.org/01q4rp502 All-Russian Scientific Research Institute of Hydrocarbon Raw Materials Всероссийский научно-исследовательский институт углеводородного сырья'),
(63252, 'https://ror.org/057n4jt40', 'en', 1, 'https://ror.org/057n4jt40 All-Russian Scientific Research Institute for Irrigated Agriculture'),
(63253, 'https://ror.org/001e26h79', 'en', 1, 'https://ror.org/001e26h79 All-Russian Scientific Research Institute of Soybean Всероссийский научно-исследовательский институт сои'),
(63254, 'https://ror.org/025g2vb69', 'en', 1, 'https://ror.org/025g2vb69 All-Russian Research Institute of Irrigation Vegetable and Melon Crops Всероссийский научно-исследовательский институт орошаемого овощеводства и бахчеводства'),
(63255, 'https://ror.org/03ad6jw85', 'en', 1, 'https://ror.org/03ad6jw85 State Research Institute of Highly Pure Biopreparations Государственный научно‑исследовательский институт особо чистых биопрепаратов'),
(63256, 'https://ror.org/0058b2697', 'en', 1, 'https://ror.org/0058b2697 All-Russian Scientific Research Institute of Lupine Всероссийский научно-исследовательский институт люпина'),
(63257, 'https://ror.org/02k550c65', 'en', 1, 'https://ror.org/02k550c65 VNU Central Institute for Natural Resources and Environmental Studies Viện Tài Nguyên và Môi Trường'),
(63258, 'https://ror.org/04c31he75', 'en', 1, 'https://ror.org/04c31he75 Central Research Institute of Starch-and-Vaccine Industry and Non-Carrageenaceous Saccharose Всероссийский научно-исследовательский институт крахмала'),
(63259, 'https://ror.org/04wsa7713', 'en', 1, 'https://ror.org/04wsa7713 All-Russian Scientific-Research Institute Of Mineral Resources named after N.M. Fedorovsky Всероссийский НИИ минерального сырья имени Н. М. Федоровского'),
(63260, 'https://ror.org/02f713g11', 'en', 1, 'https://ror.org/02f713g11 All-Russian Research and Development Technological Institute for the Repair and Operation of the Machine and Tractor Park Всероссийский научно-исследовательский институт технического ремонта и обслуживания тракторного парка'),
(63261, 'https://ror.org/04cnfv189', 'en', 1, 'https://ror.org/04cnfv189 State Research Institute of Applied Problems Государственный научно-исследовательский институт прикладных проблем»'),
(63262, 'https://ror.org/04ah1mm76', 'en', 1, 'https://ror.org/04ah1mm76 State Research Institute of Mechanical Engineering Государственный научно-исследовательский институт машиностроения" им. В.В. Бахирева'),
(63263, 'https://ror.org/05mag7924', 'en', 1, 'https://ror.org/05mag7924 State Scientific Research Navigation and Hydrographic Institute Государственного научно-исследовательского навигационно-гидрографического института'),
(63264, 'https://ror.org/02t41e292', 'en', 1, 'https://ror.org/02t41e292 Russian Space Systems Российские космические системы'),
(63265, 'https://ror.org/04r4vyn58', 'no_lang_code', 1, 'https://ror.org/04r4vyn58 State Scientific - Research Institute of Chemical Products (Russia) Государственный научно-исследовательский институт химических продуктов'),
(63266, 'https://ror.org/05q23ne91', 'en', 1, 'https://ror.org/05q23ne91 State Research Institute "Crystal" Государственный научно-исследовательский институт «Кристалл»'),
(63267, 'https://ror.org/02cgrtm37', 'en', 1, 'https://ror.org/02cgrtm37 East-Siberian Institute of Medical and Ecological Research Восточно-Сибирский институт медико-экологических исследований'),
(63268, 'https://ror.org/04fd00748', 'en', 1, 'https://ror.org/04fd00748 Central Research Institute" Dolphin " Центральный научно-исследовательский институт "Дельфин"'),
(63269, 'https://ror.org/016ta0z75', 'en', 1, 'https://ror.org/016ta0z75 Institute of Agroengineering and Environmental Problems of Agricultural Production Федеральное государственное бюджетное научное учреждение "Институт агроинженерных и экологических проблем сельскохозяйственного производства'),
(63270, 'https://ror.org/05hthhc05', 'en', 1, 'https://ror.org/05hthhc05 State Institute for the Design of Non-Ferrous Metallurgy Enterprises Государственный институт по проектированию предприятий цветной металлургии'),
(63271, 'https://ror.org/057tmwv53', 'no_lang_code', 1, 'https://ror.org/057tmwv53 Comet (Russia) комета'),
(63272, 'https://ror.org/00k722394', 'en', 1, 'https://ror.org/00k722394 Krasnodar Research Institute of Storage and Processing of Agricultural Products Краснодарский научно-исследовательский институт хранения и переработки сельскохозяйственной продукции'),
(63273, 'https://ror.org/01jabqj59', 'en', 1, 'https://ror.org/01jabqj59 State Specialized Design Institute Государственный специализированный проектный институт'),
(63274, 'https://ror.org/0435jga27', 'en', 1, 'https://ror.org/0435jga27 Taganrog Research Institute of Communications Таганрогский научно-исследовательский институт связи'),
(63275, 'https://ror.org/00q1ddg22', 'en', 1, 'https://ror.org/00q1ddg22 North-Caucasian Zonal Research Institute of Horticulture and Viticulture Северо-Кавказский Зональный научно-исследовательский институт садоводства и виноградарства'),
(63276, 'https://ror.org/011f5zy27', 'no_lang_code', 1, 'https://ror.org/011f5zy27 Oceanpribor (Russia) Океанприбор'),
(63277, 'https://ror.org/04yek5g30', 'no_lang_code', 1, 'https://ror.org/04yek5g30 FSUE FNPTS NIIIS named after Yu.Sedakov (Russia)'),
(63278, 'https://ror.org/032btfw79', 'en', 1, 'https://ror.org/032btfw79 Ural Scientific Research Institute of Composite Materials Уральский научно-исследовательский институт композиционных материалов'),
(63279, 'https://ror.org/02ap03539', 'no_lang_code', 1, 'https://ror.org/02ap03539 Rosinformagrotekh Российский научно-исследовательский институт информации и технико-экономических обоснований для инженерно-технического обеспечения агропромышленного комплекса'),
(63280, 'https://ror.org/0184n6078', 'en', 1, 'https://ror.org/0184n6078 Central Scientific Research Radio Engineering Institute named after Academician A.I. Berg ЦНИРТИ им. aкадемика А.И.Берга'),
(63281, 'https://ror.org/018k0qv55', 'no_lang_code', 1, 'https://ror.org/018k0qv55 Sozvezdie (Russia) Воронежский научно-исследовательский институт телекоммуникаций'),
(63282, 'https://ror.org/01ch1s087', 'en', 1, 'https://ror.org/01ch1s087 Russian Research Institute of Problems of Land Reclamation Российский научно-исследовательский институт проблем мелиорации земель'),
(63283, 'https://ror.org/01ett0051', 'no_lang_code', 1, 'https://ror.org/01ett0051 Research Institute of Precision Instruments (Russia) Научно-исследовательский институт прецизионных приборов'),
(63284, 'https://ror.org/00dc5v408', 'en', 1, 'https://ror.org/00dc5v408 Research and Design and Technological Institute of Rolling Stock Научно-исследовательский и конструкторско-технологический институт подвижного состава'),
(63285, 'https://ror.org/00nna6j59', 'en', 1, 'https://ror.org/00nna6j59 Far Eastern Scientific Research Institute of Hydraulic Engineering and Reclamation Дальневосточный НИИ гидротехники и мелиорации'),
(63286, 'https://ror.org/04z9e1z18', 'en', 1, 'https://ror.org/04z9e1z18 Scientific Research Institute of Industrial Television Rastr Научно-исследовательский институт промышленного телевидения Растр'),
(63287, 'https://ror.org/02cb9fc76', 'en', 1, 'https://ror.org/02cb9fc76 Federal Agrarian Scientific Center of the North-East named after NV Rudnitsky Федеральный аграрный научный центр Северо-Востока имени Н.В. Рудницкого'),
(63288, 'https://ror.org/05fyggb33', 'no_lang_code', 1, 'https://ror.org/05fyggb33 Research Institute VOLGA (Russia) НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ «ВОЛГА»'),
(63289, 'https://ror.org/01ftfrf48', 'no_lang_code', 1, 'https://ror.org/01ftfrf48 Gidropribor Гидроприбор'),
(63290, 'https://ror.org/03r78y930', 'en', 1, 'https://ror.org/03r78y930 Siberian Research Institute of Geology, Geophysics and Mineral Resources Сибирский научно-исследовательский институт Геологии, Геофизики и Минерального сырья'),
(63291, 'https://ror.org/05d6m6x98', 'en', 1, 'https://ror.org/05d6m6x98 Kaluga Research Institute of Telemechanical Devices Калужский научно-исследовательский институт телемеханических устройств'),
(63292, 'https://ror.org/034ahxs15', 'en', 1, 'https://ror.org/034ahxs15 The State Scientific Research Institute of Civil Aviation Федеральное государственное унитарное предприятие Государственный научно-исследовательский институт гражданской авиации'),
(63293, 'https://ror.org/00f905c89', 'en', 1, 'https://ror.org/00f905c89 Leningrad branch Central Science Research Telecommunications Institute ЛЕНИНГРАДСКОЕ ОТДЕЛЕНИЕ ЦЕНТРАЛЬНОГО НАУЧНО-ИССЛЕДОВАТЕЛЬСКОГО ИНСТИТУТА СВЯЗИ'),
(63294, 'https://ror.org/02qmdtn88', 'no_lang_code', 1, 'https://ror.org/02qmdtn88 Scientific Research Institute of Polymer Material (Russia) Научно-исследовательский институт полимерных материалов'),
(63295, 'https://ror.org/00p4t5755', 'en', 1, 'https://ror.org/00p4t5755 Research Institute of Radio ФГУП Научно-исследовательский институт радио'),
(63296, 'https://ror.org/04pc4cw42', 'en', 1, 'https://ror.org/04pc4cw42 Research Institute Submicron НИИ Субмикрон'),
(63297, 'https://ror.org/04bfex435', 'en', 1, 'https://ror.org/04bfex435 Scientific Research Institute of Optoelectronic Instrumentation Научно-исследовательский институт оптико-электронного приборостроения'),
(63298, 'https://ror.org/00qb33m26', 'en', 1, 'https://ror.org/00qb33m26 Research Institute of Scientific Research and Production Association Научно-исследовательский институт научно-исследовательского и производственного объединения'),
(63299, 'https://ror.org/03f2t9x29', 'en', 1, 'https://ror.org/03f2t9x29 Research Institute of Semiconductor Devices Научно-исследовательский институт полупроводниковых приборов'),
(63300, 'https://ror.org/01ykzp537', 'no_lang_code', 1, 'https://ror.org/01ykzp537 Institute of Electronic Measurements KVARZ (Russia) «ФНПЦ «ННИПИ «Кварц» имени А.П. Горшкова»'),
(63301, 'https://ror.org/02dszyb81', 'en', 1, 'https://ror.org/02dszyb81 Scientific Research Institute for Standardization and Unification Научно исследовательский институт стандартизации и унификации'),
(63302, 'https://ror.org/04ya8jc69', 'en', 1, 'https://ror.org/04ya8jc69 All-Russian Research Institute of Agriculture and Soil Protection from erosion'),
(63303, 'https://ror.org/04h411m05', 'no_lang_code', 1, 'https://ror.org/04h411m05 Transneft (Russia) Транснефть'),
(63304, 'https://ror.org/02rpbcj12', 'en', 1, 'https://ror.org/02rpbcj12 Scientific Research Institute of Technology named after AP Aleksandrov Научно-исследовательский технологический институт А. П. Александров'),
(63305, 'https://ror.org/04b7phn87', 'en', 1, 'https://ror.org/04b7phn87 Kursk Research Institute of Agricultural Production КУРСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ АГРОПРОМЫШЛЕННОГО ПРОИЗВОДСТВА'),
(63306, 'https://ror.org/0104w4x66', 'en', 1, 'https://ror.org/0104w4x66 Institute of Engineering Physics Институт инженерной физики Российской Федерации'),
(63307, 'https://ror.org/01qncxn10', 'en', 1, 'https://ror.org/01qncxn10 Television Research Institute НИИ телевидения'),
(63308, 'https://ror.org/048xprg90', 'en', 1, 'https://ror.org/048xprg90 Bertalanffy Center for the Study of Systems Science Bertalanffy Zentrum für das Studium der Systemwissenschaften'),
(63309, 'https://ror.org/03rv77e70', 'no_lang_code', 1, 'https://ror.org/03rv77e70 Scientific Research Institute of Parachute Construction (Russia) НИИ парашютостроения'),
(63310, 'https://ror.org/05y5s3t98', 'en', 1, 'https://ror.org/05y5s3t98 Scientific Research Institute of Agrarian Problems of Khakassia'),
(63311, 'https://ror.org/00sj61m74', 'en', 1, 'https://ror.org/00sj61m74 Institute of Marine Technology Problems of the Far-Eastern Branch of the Russian Academy of Sciences учреждение науки Институт проблем морских технологий Дальневосточного отделения Российской академии наук'),
(63312, 'https://ror.org/00sv3ym08', 'en', 1, 'https://ror.org/00sv3ym08 Institute of Precision Mechanics and Computer Science S.A. Lebedev Институт точной механики и вычислительной техники имени С. А. Лебедева РАН'),
(63313, 'https://ror.org/0225rdk98', 'en', 1, 'https://ror.org/0225rdk98 Institute of Materials Science of the Khabarovsk Scientific Center Институт материаловедения Дальневосточного отделения Российской академии наук'),
(63314, 'https://ror.org/03wbses72', 'no_lang_code', 1, 'https://ror.org/03wbses72 Polyus Research Institute of M.F.Stelmakh (Russia)'),
(63315, 'https://ror.org/03d8xcp24', 'en', 1, 'https://ror.org/03d8xcp24 VA Afanasyev Research Institute of Fur-breeding and Rabbit breeding'),
(63316, 'https://ror.org/056n9vg63', 'en', 1, 'https://ror.org/056n9vg63 Research Institute Ekran Научно-исследовательский институт'),
(63317, 'https://ror.org/05dk70562', 'en', 1, 'https://ror.org/05dk70562 Scientific and Research Institute Voskhod НИИ Восход'),
(63318, 'https://ror.org/00bh9qz66', 'en', 1, 'https://ror.org/00bh9qz66 Mavlyutov Institute of Mechanics Институт механики им Р.Р. Мавлютова'),
(63319, 'https://ror.org/02n5fqy27', 'en', 1, 'https://ror.org/02n5fqy27 Siberian Aeronautical Research Institute Named After S.A. Chaplygin Сибирский научно-исследовательский институт авиации им. С. А. Чаплыгина'),
(63320, 'https://ror.org/03ms5pa94', 'no_lang_code', 1, 'https://ror.org/03ms5pa94 IrkutskNIIHimmash (Russia)'),
(63321, 'https://ror.org/00krjyc70', 'en', 1, 'https://ror.org/00krjyc70 Head Design Institute Chelyabinskgrazhdanproekt'),
(63322, 'https://ror.org/03651dk72', 'no_lang_code', 1, 'https://ror.org/03651dk72 Gipronickel Institute Институт Гипроникель'),
(63323, 'https://ror.org/05wnvb372', 'en', 1, 'https://ror.org/05wnvb372 Research Institute of Medical Climatology and Rehabilitation Институт медицинской климатологии и восстановительного лечения'),
(63324, 'https://ror.org/043qcaa25', 'en', 1, 'https://ror.org/043qcaa25 The Joint Institute of Mechanical Engineering'),
(63325, 'https://ror.org/002fqzg39', 'en', 1, 'https://ror.org/002fqzg39 Military Institute Иркутское высшее военное авиационное инженерное училище'),
(63326, 'https://ror.org/04d7gd791', 'en', 1, 'https://ror.org/04d7gd791 Institute of Monitoring of Climatic and Ecological Systems Главный корпус Института Федеральное государственное бюджетное учреждение науки Институт мониторинга климатических и экологических систем Сибирского отделения Российской академии наук'),
(63327, 'https://ror.org/05rfv2111', 'en', 1, 'https://ror.org/05rfv2111 All-Russian Research Institute of Radio Equipment Ордена Трудового Красного Знамени Всероссийский научно-исследовательский институт радиоаппаратуры'),
(63328, 'https://ror.org/02ra28290', 'en', 1, 'https://ror.org/02ra28290 Irkutsk Research Institute of the Forestry Industry Иркутский научно-исследовательский институт лесной промышленности'),
(63329, 'https://ror.org/05673tf87', 'en', 1, 'https://ror.org/05673tf87 Irkutsk Antiplague Research Institute of Siberia and Far East Иркутский научно-исследовательский противочумный институт Сибири и Дальнего Востока'),
(63330, 'https://ror.org/0324qh176', 'en', 1, 'https://ror.org/0324qh176 Institute of Biology Ufa Science Center Институт биологии Уфимского научного центра'),
(63331, 'https://ror.org/027gawg81', 'en', 1, 'https://ror.org/027gawg81 Kharkiv State Veterinary Academy Харківська державна зооветеринарна академія'),
(63332, 'https://ror.org/03b0cj417', 'no_lang_code', 1, 'https://ror.org/03b0cj417 Almaz-Antey (Russia) Концерн ВКО "Алмаз-Антей'),
(63333, 'https://ror.org/00je6d832', 'en', 1, 'https://ror.org/00je6d832 Scientific Research Engineering Institute НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНЖЕНЕРНЫЙ ИНСТИТУТ'),
(63334, 'https://ror.org/020whct63', 'no_lang_code', 1, 'https://ror.org/020whct63 Research Institute "Pilot" (Russia)'),
(63335, 'https://ror.org/01kfqj356', 'en', 1, 'https://ror.org/01kfqj356 Tula University Тульский университет'),
(63336, 'https://ror.org/050f6zs19', 'en', 1, 'https://ror.org/050f6zs19 Krasnodar Research Institute of Agriculture named after P. Lukyanenko Краснодарский НИИ сельского хозяйства имени П. П. Лукьяненко'),
(63337, 'https://ror.org/001x3nr42', 'en', 1, 'https://ror.org/001x3nr42 The BE Vedeneev All Russia Institute of Hydraulic Engineering Всероссийский научно-исследовательский институт гидротехники имени Б.Е. Веденеева'),
(63338, 'https://ror.org/04xgx9819', 'en', 1, 'https://ror.org/04xgx9819 Krasnodar Research Institute of Fishery Краснодарский научно-исследовательский институт рыбного хозяйства'),
(63339, 'https://ror.org/049cw4s75', 'en', 1, 'https://ror.org/049cw4s75 North Caucasian Research Institute of Mountain and Foothill Agriculture Северо-Кавказский НИИ горного и предгорного сельского хозяйства'),
(63340, 'https://ror.org/01rbsaw22', 'en', 1, 'https://ror.org/01rbsaw22 Acoustic Institute named after NN Andreev Акустический институт имени Н. Н. Андреева'),
(63341, 'https://ror.org/02phqhd85', 'en', 1, 'https://ror.org/02phqhd85 Research Institute of Hermes НИИ "ГЕРМЕС"'),
(63342, 'https://ror.org/00pbt4z69', 'en', 1, 'https://ror.org/00pbt4z69 North Caucasian Zonal Scientific Research Veterinary Institute Северо-Кавказский Зональный научно-исследовательский ветеринарный институт'),
(63343, 'https://ror.org/00b1twa08', 'no_lang_code', 1, 'https://ror.org/00b1twa08 Scientific and Production Association of Electromechanics (Russia)'),
(63344, 'https://ror.org/021es5e59', 'en', 1, 'https://ror.org/021es5e59 Moscow Institute of Thermal Technology Корпорация Московский институт теплотехники'),
(63345, 'https://ror.org/037t5k894', 'en', 1, 'https://ror.org/037t5k894 Russian Research and Design Institute of Titanium and Magnesium РОССИЙСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ И ПРОЕКТНЫЙ ИНСТИТУТ ТИТАНА И МАГНИЯ'),
(63346, 'https://ror.org/00g7nbz02', 'no_lang_code', 1, 'https://ror.org/00g7nbz02 SZNIIMESH Северо-западный научно-исследовательский институт механизации и электрификации сельского хозяйства'),
(63347, 'https://ror.org/03q57f308', 'no_lang_code', 1, 'https://ror.org/03q57f308 Nizhny Novgorod Research Institute of Radio Engineering (Russia) «Федеральный научно-производственный центр «Нижегородский научно-исследовательский институт радиотехники»'),
(63348, 'https://ror.org/019j1v294', 'en', 1, 'https://ror.org/019j1v294 "ФНПЦ "НИИ прикладной химии" FNPC Research Institute of Applied Chemistry'),
(63349, 'https://ror.org/05n1bhg28', 'no_lang_code', 1, 'https://ror.org/05n1bhg28 Kazancompressormash Казанькомпрессормаш'),
(63350, 'https://ror.org/02tfjqk24', 'no_lang_code', 1, 'https://ror.org/02tfjqk24 Stalproekt (Russia) Стальпроект'),
(63351, 'https://ror.org/00ktvw306', 'en', 1, 'https://ror.org/00ktvw306 Ufa Research Institute of Occupational Health and Human Ecology Уфимский научно-исследовательский институт медицины труда и экологии человека'),
(63352, 'https://ror.org/03x68sb69', 'en', 1, 'https://ror.org/03x68sb69 "VNIINM" named after AA Bochvar "Высокотехнологический научно-исследовательский институт неорганических материалов имени академика А.А. Бочвара"'),
(63353, 'https://ror.org/00x5f1424', 'no_lang_code', 1, 'https://ror.org/00x5f1424 Metrogiprotrans (Russia) Метрогипротранс'),
(63354, 'https://ror.org/0310e9d31', 'en', 1, 'https://ror.org/0310e9d31 Institute of Biotechnology and Veterinary Medicine Институт биотехнологии и ветеринарной медицины'),
(63355, 'https://ror.org/0203r7m17', 'no_lang_code', 1, 'https://ror.org/0203r7m17 Yarsintez ОАО НИИ «Ярсинтез»'),
(63356, 'https://ror.org/018k88765', 'en', 1, 'https://ror.org/018k88765 Central Research Institute for the Pulp and Paper Industry организуется Центральный научно-исследовательский институт целлюлозно-бумажной пр'),
(63357, 'https://ror.org/01hprsv49', 'en', 1, 'https://ror.org/01hprsv49 Joint Stock Company National Research Institute Electron «Центральный научно-исследовательский институт «Электрон»'),
(63358, 'https://ror.org/03vhksx27', 'en', 1, 'https://ror.org/03vhksx27 Research Institute of Instrument named after V.V. Tikhomirova НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ПРИБОРОСТРОЕНИЯ ИМЕНИ В.В. ТИХОМИРОВА'),
(63359, 'https://ror.org/01m9skf34', 'en', 1, 'https://ror.org/01m9skf34 Central Research Institute "Course" Центральный научно-исследовательский институт "Курс"'),
(63360, 'https://ror.org/00mcf6y06', 'no_lang_code', 1, 'https://ror.org/00mcf6y06 Novosibirsk Tuberculosis Research Institute Новосибирский научно-исследовательский институт туберкулёза'),
(63361, 'https://ror.org/03fgw4s80', 'no_lang_code', 1, 'https://ror.org/03fgw4s80 Scientific Research Institute of Marine Systems (Russia) Научно-исследовательский институт морских систем'),
(63362, 'https://ror.org/00n1s7m36', 'no_lang_code', 1, 'https://ror.org/00n1s7m36 MosvodokanalNIIproject Institute (Russia) МосводоканалНИИпроект институт'),
(63363, 'https://ror.org/00f6n1x59', 'en', 1, 'https://ror.org/00f6n1x59 Far Eastern Scientific Research Institute of Mechanization and Electrification of Agriculture Дальневосточный научно-исследовательский институт механизации и электрификации сельского хозяйства'),
(63364, 'https://ror.org/01c0n4952', 'en', 1, 'https://ror.org/01c0n4952 Institute of Mining of the North after N.V.Chersky Институт горного дела Севера после Н.В.Черского'),
(63365, 'https://ror.org/04sqtxy36', 'en', 1, 'https://ror.org/04sqtxy36 Research Institute "Quantum" Научно-исследовательский институт Квант'),
(63366, 'https://ror.org/038m16120', 'en', 1, 'https://ror.org/038m16120 Military Academy of Strategic Missile Forces named after Peter the Great ВОЕННАЯ АКАДЕМИЯ РВСН ИМЕНИ ПЕТРА ВЕЛИКОГО'),
(63367, 'https://ror.org/04w38zs89', 'no_lang_code', 1, 'https://ror.org/04w38zs89 Tver Wagon Building Institute (Russia) Научная организация «Тверской институт каретки»'),
(63368, 'https://ror.org/01793sb67', 'no_lang_code', 1, 'https://ror.org/01793sb67 Concern Granit-Electron (Russia) Концерн «Гранит-Электрон»'),
(63369, 'https://ror.org/049tttq19', 'en', 1, 'https://ror.org/049tttq19 Tula Institute of Design & Technology Проектно-Конструкторский Технологический Институт машиностроения'),
(63370, 'https://ror.org/01ctszf41', 'no_lang_code', 1, 'https://ror.org/01ctszf41 United Machinery Technologies (Russia)'),
(63371, 'https://ror.org/01080h262', 'no_lang_code', 1, 'https://ror.org/01080h262 Research Institute of Cosmic and Aviation Materials (Russia) Научно – исследовательский институт космических и авиационных материалов'),
(63372, 'https://ror.org/00wsvb073', 'no_lang_code', 1, 'https://ror.org/00wsvb073 "Institute" Energosetproject" «Институт «ЭНЕРГОСЕТЬПРОЕКТ»'),
(63373, 'https://ror.org/05ge22856', 'en', 1, 'https://ror.org/05ge22856 All-Russian Research Institute of Veterinary Sanitation, Hygiene and Ecology Всероссийский научно-исследовательский институт ветеринарной санитарии, гигиены и экологии'),
(63374, 'https://ror.org/04250rf44', 'en', 1, 'https://ror.org/04250rf44 JSC Institute Hydroproject АО «Институт Гидропроект»'),
(63375, 'https://ror.org/03d9yvx07', 'no_lang_code', 1, 'https://ror.org/03d9yvx07 Medinstill (United States)'),
(63376, 'https://ror.org/00tsc5z15', 'no_lang_code', 1, 'https://ror.org/00tsc5z15 Gazpromekt (Russia) ГазПроект'),
(63377, 'https://ror.org/05x5sjp46', 'no_lang_code', 1, 'https://ror.org/05x5sjp46 VolgoUralNIPIgaz (Russia)'),
(63378, 'https://ror.org/01vw41f50', 'en', 1, 'https://ror.org/01vw41f50 Federal State Budget Scientific Institution "Nizhny Novgorod Research Institute of Agriculture"'),
(63379, 'https://ror.org/040mkk956', 'en', 1, 'https://ror.org/040mkk956 Energy Institute named after G.M. Krzhizhanovsky Энергетический институт им. Г.М. Кржижановского'),
(63380, 'https://ror.org/045vmw703', 'en', 1, 'https://ror.org/045vmw703 Tatar Scientific Research And Design Institute of Petroleum Engineering ТАТАРСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ И ПРОЕКТНО-КОНСТРУКТОРСКИЙ ИНСТИТУТ НЕФТЯНОГО МАШИНОСТРОЕНИЯ'),
(63381, 'https://ror.org/02smtnw54', 'no_lang_code', 1, 'https://ror.org/02smtnw54 Tatneft (Russia) Татнефть'),
(63382, 'https://ror.org/05e5vsw78', 'no_lang_code', 1, 'https://ror.org/05e5vsw78 Lukoil (Russia) История'),
(63383, 'https://ror.org/050scpn75', 'en', 1, 'https://ror.org/050scpn75 Ural Scientific Research and Design Institute of Galurgy Уральский научно-исследовательский и проектный институт галургии'),
(63384, 'https://ror.org/016vktt70', 'no_lang_code', 1, 'https://ror.org/016vktt70 Giprotruboprovod, JSC АО «Гипротрубопровод»'),
(63385, 'https://ror.org/02jy5y626', 'en', 1, 'https://ror.org/02jy5y626 Voronezh Research Institute Vega Воронежский научно-исследовательский институт'),
(63386, 'https://ror.org/05518k367', 'en', 1, 'https://ror.org/05518k367 Institute of Applied Physics Акционерного Общества Институт прикладной физики'),
(63387, 'https://ror.org/05bnagb09', 'no_lang_code', 1, 'https://ror.org/05bnagb09 All-Russian Research and Design Institute of Electric Locomotive Industry (Russia) Всероссийский научно-исследовательский и проектно-конструкторский институт электровозостроения'),
(63388, 'https://ror.org/014aahx46', 'en', 1, 'https://ror.org/014aahx46 Central Research and Design Institute of Fuel Equipment for Automotive and Stationary Engines Центральный научно-исследовательский и конструкторский институт топливной аппаратуры автотракторных и стационарных двигателей'),
(63389, 'https://ror.org/01yfptf89', 'no_lang_code', 1, 'https://ror.org/01yfptf89 OAO Трубная Металлургическая Компания Pipe Metallurgical (Russia)'),
(63390, 'https://ror.org/027g02171', 'ru', 1, 'https://ror.org/027g02171 Zarubezhneft Зарубежнефть'),
(63391, 'https://ror.org/03krv7d59', 'en', 1, 'https://ror.org/03krv7d59 All-Russian Research and Design Institute of Nuclear and Power Engineering Всероссийский научно-исследовательский и проектно-конструкторский институт атомного и энергетического машиностроения'),
(63392, 'https://ror.org/05t4mrn89', 'no_lang_code', 1, 'https://ror.org/05t4mrn89 Scientific Research Institute of Metallurgical Technology (Russia)'),
(63393, 'https://ror.org/04exgja93', 'en', 1, 'https://ror.org/04exgja93 Institute of Optoelectronic Information Technologies Открытое акционерное общество "Институт оптико-электронных информационных технологий"'),
(63394, 'https://ror.org/04zw7qt81', 'no_lang_code', 1, 'https://ror.org/04zw7qt81 VNIIStrudormash (Russia) ВНИИстройдормаш'),
(63395, 'https://ror.org/034x52m63', 'no_lang_code', 1, 'https://ror.org/034x52m63 VNIPIvzryvgeofizika ВНИПИвзрывгеофизика'),
(63396, 'https://ror.org/04m4kv128', 'en', 1, 'https://ror.org/04m4kv128 Institute of Plastics named after G. Petrov Акционерное общество «Институт пластмасс имени Г.С.Петрова»'),
(63397, 'https://ror.org/045che656', 'en', 1, 'https://ror.org/045che656 Research Institute of Fur Industry НИИ МехПром'),
(63398, 'https://ror.org/02ybby158', 'en', 1, 'https://ror.org/02ybby158 International Institute of Industrial Property МЕЖДУНАРОДНЫЙ ИНСТИТУТ ПРОМЫШЛЕННОЙ СОБСТВЕННОСТИ'),
(63399, 'https://ror.org/05gwh5f13', 'no_lang_code', 1, 'https://ror.org/05gwh5f13 Sistema (Russia)'),
(63400, 'https://ror.org/04krrjy26', 'en', 1, 'https://ror.org/04krrjy26 All-Russian Scientific Research Institute of Pulp and Paper Industry ВСЕРОССИЙСКИЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ЦЕЛЛЮЛОЗНО-БУМАЖНОЙ ПРОМЫШЛЕННОСТИ'),
(63401, 'https://ror.org/056acjt11', 'no_lang_code', 1, 'https://ror.org/056acjt11 Research Institute of Technology (Russia)'),
(63402, 'https://ror.org/01ajch036', 'no_lang_code', 1, 'https://ror.org/01ajch036 Irgiredmet (Russia) Иркутский научно-исследовательский институт драгоценных и редких металлов и алмазов'),
(63403, 'https://ror.org/04eq28s42', 'en', 1, 'https://ror.org/04eq28s42 Scientific Research Institute of Computer Complexes. M.A. Kartsev Научно-исследовательский институт вычислительных комплексов'),
(63404, 'https://ror.org/03skfnn63', 'no_lang_code', 1, 'https://ror.org/03skfnn63 Ruselprom (Russia)'),
(63405, 'https://ror.org/02ee49b39', 'no_lang_code', 1, 'https://ror.org/02ee49b39 Sibur (Russia)'),
(63406, 'https://ror.org/04hjc2592', 'en', 1, 'https://ror.org/04hjc2592 Kazan Research Institute of Aviation Technologies Казанский научно-исследовательский институт авиационных технологий'),
(63407, 'https://ror.org/05r3yzq04', 'en', 1, 'https://ror.org/05r3yzq04 All-Russian Scientific Research Institute for Operation of Nuclear Power Plants Всероссийский Научно-исследовательский институт по эксплуатации атомных электростанций'),
(63408, 'https://ror.org/008dfd567', 'no_lang_code', 1, 'https://ror.org/008dfd567 Plasma (Russia)'),
(63409, 'https://ror.org/04wgrw793', 'en', 1, 'https://ror.org/04wgrw793 All-Russian Scientific Research Institute of Radio Engineering Всероссийский НИИ Радиотехники'),
(63410, 'https://ror.org/01ke7y772', 'no_lang_code', 1, 'https://ror.org/01ke7y772 KO VNIIMETMASH Колпинский научно-исследовательский и проектно-конструкторский институт металлургического машиностроения'),
(63411, 'https://ror.org/017swdm43', 'no_lang_code', 1, 'https://ror.org/017swdm43 Rosgeo (Russia) РосГео'),
(63412, 'https://ror.org/00e7v1604', 'en', 1, 'https://ror.org/00e7v1604 Central Research Institute of Automation and Hydraulics Центральный научно-исследовательский институт автоматики и гидравлики'),
(63413, 'https://ror.org/05q13b263', 'no_lang_code', 1, 'https://ror.org/05q13b263 NIIhimmash (Russia)'),
(63414, 'https://ror.org/03xkdt868', 'en', 1, 'https://ror.org/03xkdt868 Research Institute of Nonwoven Materials'),
(63415, 'https://ror.org/01dnmm403', 'no_lang_code', 1, 'https://ror.org/01dnmm403 Ural Mining and Metallurgical Company (Russia) Открытое акционерное общество «Уральская горно-металлургическая компания'),
(63416, 'https://ror.org/03mbybz64', 'en', 1, 'https://ror.org/03mbybz64 Research and Design Institute of the Equipment for Tyre Industry Научно-исследовательский и конструкторский институт по оборудованию для шинной промышленности'),
(63417, 'https://ror.org/0179kd988', 'no_lang_code', 1, 'https://ror.org/0179kd988 Nipigormash (Russia) НИПИГОРМАШ'),
(63418, 'https://ror.org/01bnkw221', 'no_lang_code', 1, 'https://ror.org/01bnkw221 Magnitogorsk Gipromez (Russia) ОАО "МАГНИТОГОРСКИЙ ГИПРОМЕЗ"'),
(63419, 'https://ror.org/014xkga58', 'no_lang_code', 1, 'https://ror.org/014xkga58 Research Institute for Oilfield Chemistry (Russia) НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ ХИМИИ'),
(63420, 'https://ror.org/0259eer23', 'en', 1, 'https://ror.org/0259eer23 Khabarovsk Scientific Research Institute of Epidemiology and Microbiology Хабаровский научно-исследовательский институт эпидемиологии и микробиологии'),
(63421, 'https://ror.org/03xjh0j86', 'en', 1, 'https://ror.org/03xjh0j86 National Institute of Aviation Technologies Национальный институт авиационных технологий'),
(63422, 'https://ror.org/016d5wx23', 'no_lang_code', 1, 'https://ror.org/016d5wx23 Institute Giprostroymost Институт Гипростроймост'),
(63423, 'https://ror.org/014m5jx39', 'en', 1, 'https://ror.org/014m5jx39 Scientific Research Institute of Mining Научно-исследовательский проектный институт Горного дела'),
(63424, 'https://ror.org/03zv9wh20', 'no_lang_code', 1, 'https://ror.org/03zv9wh20 Scientific Research Institute of Precision Mechanics (Russia)'),
(63425, 'https://ror.org/039vtca92', 'en', 1, 'https://ror.org/039vtca92 Research And Design Institute of Electric Coal Products НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ И ПРОЕКТНО-ТЕХНОЛОГИЧЕСКИЙ ИНСТИТУТ ЭЛЕКТРОУГОЛЬНЫХ ИЗДЕЛИЙ'),
(63426, 'https://ror.org/0204q4d57', 'en', 1, 'https://ror.org/0204q4d57 Texas Wheat Producers Board and Association');
INSERT INTO `rors` VALUES
(63427, 'https://ror.org/02275hy54', 'no_lang_code', 1, 'https://ror.org/02275hy54 Scientific Research Institute of Semiconductor Mechanical Engineering (Russia)'),
(63428, 'https://ror.org/05whnha37', 'en', 1, 'https://ror.org/05whnha37 Institute Belniis Научно-исследовательское республиканское унитарное предприятие по строительству "Институт БелНИИС"'),
(63429, 'https://ror.org/038ksq075', 'no_lang_code', 1, 'https://ror.org/038ksq075 Niiteplopribor (Russia) НИИТеплоприбор'),
(63430, 'https://ror.org/01vd5cb71', 'en', 1, 'https://ror.org/01vd5cb71 Scientific Research Institute Elpa «Научно-исследовательский институт «Элпа»'),
(63431, 'https://ror.org/03wn3aq07', 'no_lang_code', 1, 'https://ror.org/03wn3aq07 Scientific Research Institute "Girikond" (Russia)'),
(63432, 'https://ror.org/00dg9e448', 'en', 1, 'https://ror.org/00dg9e448 Isotherm Research Institute НИИ "Изотерм"'),
(63433, 'https://ror.org/00x935r91', 'no_lang_code', 1, 'https://ror.org/00x935r91 MoszhilNIIproekt МосжилНИИпроект'),
(63434, 'https://ror.org/036rv4s60', 'en', 1, 'https://ror.org/036rv4s60 Scientific and Research Institute of High-Voltage Apparatus Научно-исследовательский институт высоковольтного оборудования'),
(63435, 'https://ror.org/038jzt119', 'en', 1, 'https://ror.org/038jzt119 Scientific Research Institute "Kulon" Научно-исследовательскому институту «Кулон»'),
(63436, 'https://ror.org/006j3m787', 'en', 1, 'https://ror.org/006j3m787 Specialized Scientific Research Institute of Instrument Engineering'),
(63437, 'https://ror.org/025dn7p74', 'uk', 1, 'https://ror.org/025dn7p74 Ukrnaftokhimproect'),
(63438, 'https://ror.org/02tdv0r69', 'no_lang_code', 1, 'https://ror.org/02tdv0r69 "Зенит Трейдинг" Zenit Trading (Russia)'),
(63439, 'https://ror.org/05xaptb67', 'no_lang_code', 1, 'https://ror.org/05xaptb67 Uralniti (Russia) УралНИТИ'),
(63440, 'https://ror.org/002zm9348', 'no_lang_code', 1, 'https://ror.org/002zm9348 VNIIGIS исследовательский и проектно-конструкторский институт геофизических исследований геологоразведочных скважин['),
(63441, 'https://ror.org/04a8px331', 'en', 1, 'https://ror.org/04a8px331 Russian Institute of Radionavigation and Time Российский институт радионавигации и времени'),
(63442, 'https://ror.org/05thgmv59', 'en', 1, 'https://ror.org/05thgmv59 Research Institute "Argon" НИИ "Аргон"'),
(63443, 'https://ror.org/02qv8f649', 'en', 1, 'https://ror.org/02qv8f649 Research Institute of Mining Geomechanics and Mine Surveying Научно-исследовательский институт горно'),
(63444, 'https://ror.org/01zzq1m54', 'en', 1, 'https://ror.org/01zzq1m54 Central Scientific and Research Institute of the Sewing Industry ОАО "Центральный Научно-Исследовательский Институт Швейной Промышленности"'),
(63445, 'https://ror.org/034vp3v91', 'no_lang_code', 1, 'https://ror.org/034vp3v91 Research Institute "Pulsar" (Russia) НАУЧНО-ПРОИЗВОДСТВЕННОЕ ПРЕДПРИЯТИЕ "ПУЛЬСАР"'),
(63446, 'https://ror.org/04wmqsp35', 'no_lang_code', 1, 'https://ror.org/04wmqsp35 The Ural Scientific-Research Institute of Architecture and Construction (Russia)'),
(63447, 'https://ror.org/05xabex37', 'en', 1, 'https://ror.org/05xabex37 Research Institute of Refining and Petrochemical Industry" MASMA " Науково-дослідний інститут нафтопереробки "МАСМА"'),
(63448, 'https://ror.org/0001g7380', 'en', 1, 'https://ror.org/0001g7380 Research Institute "Vector" Научно-исследовательский институт "Вектор"'),
(63449, 'https://ror.org/01snp8f97', 'no_lang_code', 1, 'https://ror.org/01snp8f97 The Russian Research Institute of the Tube & Pipe Industries (Russia) Российский научно–исследовательский институт трубной промышленности'),
(63450, 'https://ror.org/049j4jr36', 'en', 1, 'https://ror.org/049j4jr36 "Московский НИИСХ «Немчиновка» Moscow Research Institute" Nemchinovka "'),
(63451, 'https://ror.org/00x9re747', 'en', 1, 'https://ror.org/00x9re747 Scientific Research Institute for the Kursk Magnetic Anomaly named after L.D. Shevyakova Научно-исследовательский институт по проблемам Курской магнитной аномалии имени Л.Д. Шевякова'),
(63452, 'https://ror.org/01p85sc95', 'no_lang_code', 1, 'https://ror.org/01p85sc95 PJSC "VNIIPThimnefteapparatury" (Russia)'),
(63453, 'https://ror.org/01nesd228', 'en', 1, 'https://ror.org/01nesd228 Russian Research Institute of the Sugar Industry Российский научно-исследовательский институт сахарной промышленности'),
(63454, 'https://ror.org/0292bdr58', 'en', 1, 'https://ror.org/0292bdr58 Research Institute of Disinfectology Rospotrebnadzor Научно-исследовательский институт дезинфектологии Роспотребнадзора'),
(63455, 'https://ror.org/00wda1y42', 'en', 1, 'https://ror.org/00wda1y42 Scientific Research Institute of Agriculture of the Central Black Earth Zone named after V.V. Dokuchaeva Научно-исследовательский институт сельского хозяйства Центрально-Черноземной полосы имени В.В. Докучаева'),
(63456, 'https://ror.org/02kqpay82', 'no_lang_code', 1, 'https://ror.org/02kqpay82 Scientific Research Institute of Sanitary Technology (Russia) Научно-исследовательский институт сантехники'),
(63457, 'https://ror.org/02z8dkq59', 'en', 1, 'https://ror.org/02z8dkq59 Russian Research Institute of Hematology and Transfusiology Российский НИИ гематологии и трансфузиологии'),
(63458, 'https://ror.org/001d11g88', 'en', 1, 'https://ror.org/001d11g88 Agricultural Research Institute for South-East Region Научно-исследовательский институт сельского хозяйства Юго-Восточного'),
(63459, 'https://ror.org/040xkwz97', 'en', 1, 'https://ror.org/040xkwz97 Military Academy of Material and Technical Support them General of the Army A.V. Khruleva Военная академия материально-технического обеспечения им. генерала армии А.В. Хрулёва'),
(63460, 'https://ror.org/05xs8j551', 'no_lang_code', 1, 'https://ror.org/05xs8j551 Institute of Technology and Production Organization (Russia)'),
(63461, 'https://ror.org/05t7cak84', 'en', 1, 'https://ror.org/05t7cak84 Scientific and Research Technological Institute Progress Научно-исследовательский технологический институт «Прогресс'),
(63462, 'https://ror.org/00rarg214', 'no_lang_code', 1, 'https://ror.org/00rarg214 Penza Electrotechnical Research Institute (Russia) Пензенский научно-исследовательский'),
(63463, 'https://ror.org/00nd3vv76', 'en', 1, 'https://ror.org/00nd3vv76 Scientific and Research Institute of Textile Materials Научно-исследовательский институт текстильных материалов'),
(63464, 'https://ror.org/03qc6zh37', 'en', 1, 'https://ror.org/03qc6zh37 Research Institute "Agat"'),
(63465, 'https://ror.org/04vje9y05', 'en', 1, 'https://ror.org/04vje9y05 Research Institute of Development and Operation of oil-field Pipes Научно-исследовательский институт разработки и эксплуатации OCTG'),
(63466, 'https://ror.org/00grk8n10', 'en', 1, 'https://ror.org/00grk8n10 Scientific Research Institute of Computing Machinery Научно-исследовательский институт вычислительной техники'),
(63467, 'https://ror.org/00hs4m805', 'en', 1, 'https://ror.org/00hs4m805 Research Institute of Tire Industry Научно-исследовательский институт шинной промышленности'),
(63468, 'https://ror.org/047tgb953', 'en', 1, 'https://ror.org/047tgb953 Federal Scientific Center for Medical and Preventive Health Risk Management Technologies Любое использование материалов допускается только с согласия правообладателя'),
(63469, 'https://ror.org/02csy5q06', 'no_lang_code', 1, 'https://ror.org/02csy5q06 LIT-PHONON (Russia)'),
(63470, 'https://ror.org/02c38ff88', 'en', 1, 'https://ror.org/02c38ff88 Central Research Textile Institute Центральный научно-исследовательский текстильный институт'),
(63471, 'https://ror.org/01r5tp796', 'en', 1, 'https://ror.org/01r5tp796 Research Institute of Measuring Equipment Научно-исследовательский институт измерительной техники'),
(63472, 'https://ror.org/04hf4he50', 'no_lang_code', 1, 'https://ror.org/04hf4he50 Ukrainian Research Institute of Cable Industry (Ukraine)'),
(63473, 'https://ror.org/026737t17', 'en', 1, 'https://ror.org/026737t17 Saratov Research Institute of Rural Hygiene Саратовский научно-исследовательский институт сельской гигиены'),
(63474, 'https://ror.org/050jrfq68', 'en', 1, 'https://ror.org/050jrfq68 Research Institute of Metallurgy «Научно-исследовательский институт металлургии»'),
(63475, 'https://ror.org/04e2kfy26', 'en', 1, 'https://ror.org/04e2kfy26 Scientific Research Clinical Institute. L.I. Sverzhevsky Научно-исследовательский клинический институт. Л.И. Свержевского'),
(63476, 'https://ror.org/046qpde88', 'en', 1, 'https://ror.org/046qpde88 Scientific Research Institute of Horticulture of Siberia named after М.А. Lisavenko'),
(63477, 'https://ror.org/04qbrde71', 'en', 1, 'https://ror.org/04qbrde71 Siberian Research Institute of Mechanization and Electrification of Agriculture Сибирский научно-исследовательский институт механизации и электрификации сельского хозяйства'),
(63478, 'https://ror.org/04vgmy976', 'en', 1, 'https://ror.org/04vgmy976 Russian Scientific Center "Applied Chemistry" Российский научный центр «Прикладная химия»'),
(63479, 'https://ror.org/00wm96095', 'en', 1, 'https://ror.org/00wm96095 24-й Центральный научно-исследовательский институт Министерства обороны России 24th Central Research Institute of the Russian Defence Ministry'),
(63480, 'https://ror.org/00yjcvf23', 'en', 1, 'https://ror.org/00yjcvf23 40-й Государственный научно-исследовательский институт Министерства обороны Российской Федерации 40th State Research Institute of the Ministry of Defence of the Russian Federation'),
(63481, 'https://ror.org/03sc9rz48', 'en', 1, 'https://ror.org/03sc9rz48 25-й Государственный научно-исследовательский институт чехтотологии Министерства обороны Российской Федерации 25th State Research Institute of Chemmotology of the Ministry of Defence of the Russian Federation'),
(63482, 'https://ror.org/0433ct737', 'no_lang_code', 1, 'https://ror.org/0433ct737 NIIAS Научно-исследовательский и проектно-конструкторский институт информатизации, автоматизации и связи на железнодорожном транспорте'),
(63483, 'https://ror.org/053fj3b72', 'en', 1, 'https://ror.org/053fj3b72 27-й Центральный научно-исследовательский институт Министерства обороны Российской Федерации 27th Central Research Institute of the Ministry of Defence of the Russian Federation'),
(63484, 'https://ror.org/03e92b619', 'en', 1, 'https://ror.org/03e92b619 3-й Центральный научно-исследовательский институт Минобороны России 3rd Central Research Institute of the Russian Defence Ministry'),
(63485, 'https://ror.org/013dvfk22', 'en', 1, 'https://ror.org/013dvfk22 4-й Центральный научно-исследовательский институт Министерства обороны России 4th Central Research Institute of the Russian Defence Ministry'),
(63486, 'https://ror.org/05b7yq612', 'en', 1, 'https://ror.org/05b7yq612 Ukrainian Institute for the Design of Metallurgical Plants Украинский институт по проектированию металлургических заводов'),
(63487, 'https://ror.org/05jsss136', 'en', 1, 'https://ror.org/05jsss136 Central Research Institute of Engineering Troops of the Ministry of Defense of the Russian Federation Центральный научно-исследовательский институт инженерных войск Министерства обороны Российской Федерации'),
(63488, 'https://ror.org/02b1w8773', 'no_lang_code', 1, 'https://ror.org/02b1w8773 Giproniiaviaprom ГипроНИИавиапром'),
(63489, 'https://ror.org/03t8xys90', 'en', 1, 'https://ror.org/03t8xys90 Shakhty Scientific Research and Design Coal Institute Шахтинский Научно-Исследовательский Угольный Институт'),
(63490, 'https://ror.org/046wacp46', 'en', 1, 'https://ror.org/046wacp46 South-Russian State Polytechnic University named after MI Platov'),
(63491, 'https://ror.org/03har5c20', 'no_lang_code', 1, 'https://ror.org/03har5c20 Roszheldorproject (Russia) Росжелдорпроект'),
(63492, 'https://ror.org/053t6pj86', 'en', 1, 'https://ror.org/053t6pj86 Povolzhsky Research Institute of Ecological and Meliorative Technologies Волжский научно-исследовательский институт эколого-мелиоративных технологий'),
(63493, 'https://ror.org/00rdb5f98', 'en', 1, 'https://ror.org/00rdb5f98 All-Russian Scientific Research Institute of Agrochemistry named after D.N. Pryanishnikova Всероссийский научно-исследовательский институт имени Д.Н.Прянишникова'),
(63494, 'https://ror.org/05dhs6t85', 'en', 1, 'https://ror.org/05dhs6t85 Krasnodar Higher Military School named after General of the Army S. Shtemenko Краснодарское высшее военное училище имени генерала армии С.М.Штеменко'),
(63495, 'https://ror.org/01x2aqm70', 'en', 1, 'https://ror.org/01x2aqm70 Tatar Scientific Research Institute of Agriculture Татарский НИИ сельского хозяйства'),
(63496, 'https://ror.org/036qc8g42', 'en', 1, 'https://ror.org/036qc8g42 Siberian Research Institute of Agriculture and Peat'),
(63497, 'https://ror.org/047mfz132', 'en', 1, 'https://ror.org/047mfz132 Siberian Scientific Research Institute of Oil Industry'),
(63498, 'https://ror.org/02qgskp52', 'en', 1, 'https://ror.org/02qgskp52 Institute of Medical Cell Technologies Институт медицинских клеточных технологий'),
(63499, 'https://ror.org/02m679f68', 'en', 1, 'https://ror.org/02m679f68 Tula Artillery Engineering Institute Тульский артиллерийский инженерный институт'),
(63500, 'https://ror.org/05gjb9r34', 'en', 1, 'https://ror.org/05gjb9r34 Siberian Research and Technological Institute for Processing Agricultural Products Сибирскому научно-исследовательскому институту переработки сельскохозяйственной продукции'),
(63501, 'https://ror.org/022prt504', 'en', 1, 'https://ror.org/022prt504 Air Force Academy named after Professor NE Zhukovsky and Yu.A. Gagarin Военно-воздушная академия имени профессора Н. Е. Жуковского и Ю. А. Гагарина'),
(63502, 'https://ror.org/0442x7317', 'en', 1, 'https://ror.org/0442x7317 Siberian State Order of the Red Banner of Labor Research Institute of Metrology Сибирский государственный ордена Трудового Красного Знамени научно- исследовательский институт метрологии'),
(63503, 'https://ror.org/00zecgp48', 'en', 1, 'https://ror.org/00zecgp48 Scientific Research and Design Institute of Nitric Industry and Organic Synthesis Products Научно-исследовательский и проектный институт азотной промышленности и продуктов органического синтеза'),
(63504, 'https://ror.org/03ya3p525', 'en', 1, 'https://ror.org/03ya3p525 Nizhny Novgorod State University of Engineering and Economics Нижегородский государственный инженерно-экономический университет'),
(63505, 'https://ror.org/0018ymk77', 'no_lang_code', 1, 'https://ror.org/0018ymk77 Sibtsvetmetniiproekt СИБЦВЕТМЕТНИИПРОЕКТ'),
(63506, 'https://ror.org/00f9bzb82', 'no_lang_code', 1, 'https://ror.org/00f9bzb82 OAO Giproniselprom (Russia)'),
(63507, 'https://ror.org/03c1m8990', 'no_lang_code', 1, 'https://ror.org/03c1m8990 Institute Tsvetmetobrabotka Институт Цветметобработка'),
(63508, 'https://ror.org/04gkr8m24', 'en', 1, 'https://ror.org/04gkr8m24 "Костромской научно-исследовательский институт сельского хозяйства" Kostroma Research Institute of Agriculture'),
(63509, 'https://ror.org/01ca0jg10', 'en', 1, 'https://ror.org/01ca0jg10 Krasnoyarsk Research Institute of Animal Husbandry Красноярский научно-исследовательский институт животноводства'),
(63510, 'https://ror.org/04n7qr785', 'en', 1, 'https://ror.org/04n7qr785 Stavropol Research Institute of Agriculture Ставропольского научно-исследовательского института сельского хозяйства'),
(63511, 'https://ror.org/03yhtwa63', 'en', 1, 'https://ror.org/03yhtwa63 Magadan Research Institute of Agriculture Магаданский научно-исследовательский институт сельского хозяйства'),
(63512, 'https://ror.org/03bn62179', 'en', 1, 'https://ror.org/03bn62179 Vilnius Higher Command School of Radioelectronics Air Defense Вильнюсского высшего командного училища радиоэлектроники ПВО'),
(63513, 'https://ror.org/02hgfj293', 'en', 1, 'https://ror.org/02hgfj293 Siberian Research Institute of Agricultural Economics Сибирский научно-исследовательский институт экономики сельского хозяйства СФНЦА РАН'),
(63514, 'https://ror.org/00hcsjz98', 'en', 1, 'https://ror.org/00hcsjz98 Agrarian Science Center "Donskoy" Аграрный научный центр «Донской»'),
(63515, 'https://ror.org/02n5gsq82', 'no_lang_code', 1, 'https://ror.org/02n5gsq82 Giprokoks (Ukraine) ГИПРОКОКС'),
(63516, 'https://ror.org/00v8t0x13', 'en', 1, 'https://ror.org/00v8t0x13 St. Petersburg Scientific Research Institute of Forestry Санкт-Петербургский научно-исследовательский институт лесного хозяйства'),
(63517, 'https://ror.org/056ct2144', 'en', 1, 'https://ror.org/056ct2144 Federal Scientific Center for the Rehabilitation of the Disabled by G.A. Albrecht of the Ministry of Labor and Social Protection of the Russian Federation'),
(63518, 'https://ror.org/003p49p42', 'no_lang_code', 1, 'https://ror.org/003p49p42 Fundamentproekt (Russia) Фундаментпроект'),
(63519, 'https://ror.org/04dpyhy23', 'en', 1, 'https://ror.org/04dpyhy23 Association of American Veterinary Medical Colleges'),
(63520, 'https://ror.org/04ee9p839', 'en', 1, 'https://ror.org/04ee9p839 American Marketing Association'),
(63521, 'https://ror.org/04s21va03', 'en', 1, 'https://ror.org/04s21va03 Mythopoeic Society'),
(63522, 'https://ror.org/04rg8xb30', 'en', 1, 'https://ror.org/04rg8xb30 American Institute of Mining, Metallurgical, and Petroleum Engineers'),
(63523, 'https://ror.org/014v16267', 'en', 1, 'https://ror.org/014v16267 American Association for Agricultural Education'),
(63524, 'https://ror.org/0055vg673', 'en', 1, 'https://ror.org/0055vg673 Business History Conference'),
(63525, 'https://ror.org/0470pce88', 'en', 1, 'https://ror.org/0470pce88 Smolensk Scientific Research Institute of Agriculture Смоленский научно-исследовательский институт сельского хозяйства'),
(63526, 'https://ror.org/0564x6103', 'en', 1, 'https://ror.org/0564x6103 Council of Scientific Society Presidents'),
(63527, 'https://ror.org/01cjh3728', 'en', 1, 'https://ror.org/01cjh3728 Research Institute of Bakery Industry НИИ хлебопекарной промышленности'),
(63528, 'https://ror.org/02h0gy831', 'en', 1, 'https://ror.org/02h0gy831 Institute of Transportation Engineers'),
(63529, 'https://ror.org/05cc6ax93', 'en', 1, 'https://ror.org/05cc6ax93 American College of Theriogenologists'),
(63530, 'https://ror.org/05byjjz14', 'en', 1, 'https://ror.org/05byjjz14 Ural Scientific Research Veterinary Institute Уральский научно-исследовательский ветеринарный институт'),
(63531, 'https://ror.org/000tk0v89', 'no_lang_code', 1, 'https://ror.org/000tk0v89 Giprotyumenneftegaz (Russia) Гипротюменнефтегаз'),
(63532, 'https://ror.org/0453axf13', 'en', 1, 'https://ror.org/0453axf13 Financial Management Association International'),
(63533, 'https://ror.org/05rmpy443', 'en', 1, 'https://ror.org/05rmpy443 Institute of Navigation'),
(63534, 'https://ror.org/01q8vz920', 'en', 1, 'https://ror.org/01q8vz920 Stavropol Research Institute of Animal Production and Feed Production Ставропольский НИИ животноводства и кормопроизводства'),
(63535, 'https://ror.org/03t6zvf73', 'en', 1, 'https://ror.org/03t6zvf73 National Academy of Inventors'),
(63536, 'https://ror.org/04qd74z60', 'en', 1, 'https://ror.org/04qd74z60 Society for Personality Assessment'),
(63537, 'https://ror.org/005zkh270', 'en', 1, 'https://ror.org/005zkh270 American Risk and Insurance Association'),
(63538, 'https://ror.org/01zqjg022', 'en', 1, 'https://ror.org/01zqjg022 United States Association for Computational Mechanics'),
(63539, 'https://ror.org/01vw57x46', 'no_lang_code', 1, 'https://ror.org/01vw57x46 Rosneft (Russia) Росне́фть'),
(63540, 'https://ror.org/04frvwq31', 'en', 1, 'https://ror.org/04frvwq31 International Research Society for Public Management'),
(63541, 'https://ror.org/04smcbj26', 'en', 1, 'https://ror.org/04smcbj26 Council of Educators in Landscape Architecture'),
(63542, 'https://ror.org/01g09cg68', 'en', 1, 'https://ror.org/01g09cg68 Health Physics Society'),
(63543, 'https://ror.org/01t20fb17', 'en', 1, 'https://ror.org/01t20fb17 Society of Naval Architects and Marine Engineers'),
(63544, 'https://ror.org/036b8s592', 'en', 1, 'https://ror.org/036b8s592 The Folklore Society'),
(63545, 'https://ror.org/01t8k0773', 'en', 1, 'https://ror.org/01t8k0773 Society for the Scientific Study of Sexuality'),
(63546, 'https://ror.org/00dg6q264', 'en', 1, 'https://ror.org/00dg6q264 National Academy of Kinesiology'),
(63547, 'https://ror.org/0520y8c54', 'no_lang_code', 1, 'https://ror.org/0520y8c54 SverdNIIhimmash Свердловский научно-исследовательский институт химического машиностроения'),
(63548, 'https://ror.org/00cdtmq09', 'en', 1, 'https://ror.org/00cdtmq09 North American Society for Sport Management'),
(63549, 'https://ror.org/01zd5r820', 'no_lang_code', 1, 'https://ror.org/01zd5r820 Energostal (Ukraine) УКРАИНСКИЙ НАУЧНО-ТЕХНИЧЕСКИЙ ЦЕНТР МЕТАЛЛУРГИЧЕСКОЙ ПРОМЫШЛЕННОСТИ'),
(63550, 'https://ror.org/04bddhf44', 'en', 1, 'https://ror.org/04bddhf44 American Medical Writers Association'),
(63551, 'https://ror.org/03cyrwm25', 'en', 1, 'https://ror.org/03cyrwm25 National Council on Family Relations'),
(63552, 'https://ror.org/00wkvrs75', 'en', 1, 'https://ror.org/00wkvrs75 State Scientific Research Institute of Biological Instrumentation ГОСУДАРСТВЕННЫЙ НАУЧНО-ИССЛЕДОВАТЕЛЬСКИЙ ИНСТИТУТ БИОЛОГИЧЕСКОГО ПРИБОРОСТРОЕНИЯ'),
(63553, 'https://ror.org/03q5f3h16', 'en', 1, 'https://ror.org/03q5f3h16 National Women''s Studies Association'),
(63554, 'https://ror.org/05n6vhy89', 'en', 1, 'https://ror.org/05n6vhy89 Jacobs Levy Equity Management'),
(63555, 'https://ror.org/04k8w6g96', 'en', 1, 'https://ror.org/04k8w6g96 National Tax Association'),
(63556, 'https://ror.org/02npqkq54', 'en', 1, 'https://ror.org/02npqkq54 Human Factors and Ergonomics Society'),
(63557, 'https://ror.org/03cvn7e55', 'en', 1, 'https://ror.org/03cvn7e55 Women In Technology International'),
(63558, 'https://ror.org/0597zww19', 'en', 1, 'https://ror.org/0597zww19 African Literature Association'),
(63559, 'https://ror.org/03900bm02', 'en', 1, 'https://ror.org/03900bm02 Institute for Public Relations'),
(63560, 'https://ror.org/01zfykz78', 'en', 1, 'https://ror.org/01zfykz78 Network of Schools of Public Policy, Affairs, and Administration'),
(63561, 'https://ror.org/05gga8159', 'en', 1, 'https://ror.org/05gga8159 Yakut Scientific Research Institute of Agriculture Якутский научно-исследовательский институт сельского хозяйства имени М.Г. Сафронова'),
(63562, 'https://ror.org/029crhw36', 'no_lang_code', 1, 'https://ror.org/029crhw36 Siberian Research and Design Institute (Russia) Сибирский научно-исследовательский и проектный институт'),
(63563, 'https://ror.org/01eb2ss72', 'no_lang_code', 1, 'https://ror.org/01eb2ss72 Stallergenes Greer (Australia)'),
(63564, 'https://ror.org/02wazkc54', 'en', 1, 'https://ror.org/02wazkc54 Ivanovo State Agricultural Academy named after D.K. Belyaev Ивановская государственная сельскохозяйственная академия имени Д.К. Беляева'),
(63565, 'https://ror.org/04aexvn38', 'no_lang_code', 1, 'https://ror.org/04aexvn38 Stallergenes Greer (Spain)'),
(63566, 'https://ror.org/0516ekw41', 'en', 1, 'https://ror.org/0516ekw41 Federal Protective Service Федеральная служба охраны'),
(63567, 'https://ror.org/05damwn69', 'en', 1, 'https://ror.org/05damwn69 Naval Academy named after Admiral of the Fleet of the Soviet Union NG Kuznetsov Морская академия им. Адмирала флота Советского Союза Н. Г. Кузнецов'),
(63568, 'https://ror.org/04cfbcn47', 'en', 1, 'https://ror.org/04cfbcn47 Mikhailovsky Military Artillery Academy Михайловская военная артиллерийская академия'),
(63569, 'https://ror.org/00wwk7w85', 'en', 1, 'https://ror.org/00wwk7w85 Federal Scientific Center for Agroecology, Integrated Land Reclamation and Protective Afforestation'),
(63570, 'https://ror.org/057dje809', 'en', 1, 'https://ror.org/057dje809 KBP Instrument Design Bureau Конструкторское бюро приборостроения им. академика А. Г. Шипунова'),
(63571, 'https://ror.org/04crchr76', 'en', 1, 'https://ror.org/04crchr76 Military Academy of Communications named after Marshal of the Soviet Union SM Budennogo Военная академия связи имени Маршала Советского Союза С. М. Будённого'),
(63572, 'https://ror.org/03zj4hg45', 'en', 1, 'https://ror.org/03zj4hg45 Military Academy of Air-Space Defense named after Marshal of the Soviet Union GK Zhukov Военная академия воздушно-космической обороны имени маршала Советского Союза Г.К. Жукова'),
(63573, 'https://ror.org/03xdgrg08', 'no_lang_code', 1, 'https://ror.org/03xdgrg08 Academician M.F. Reshetnev Information Satellite Systems (Russia) «ИНФОРМАЦИОННЫЕ СПУТНИКОВЫЕ СИСТЕМЫ» имени академика М.Ф. Решетнёва»'),
(63574, 'https://ror.org/04a19s309', 'en', 1, 'https://ror.org/04a19s309 Academician Pilyugin Center Федеральное государственное унитарное предприятие «Научно-производственный центр автоматики и приборостроения имени академика Н. А. Пилюгина'),
(63575, 'https://ror.org/03vqgax46', 'no_lang_code', 1, 'https://ror.org/03vqgax46 Scientific and Production Association of Automatics named after Academician N.A.Semikhatov (Russia) НПО автоматики имени академика Н. А. Семихатова'),
(63576, 'https://ror.org/010rhww45', 'en', 1, 'https://ror.org/010rhww45 Experimental Factory of Scientific Engineering and Special Design Department ЭКСПЕРИМЕНТАЛЬНЫЙ ЗАВОД НАУЧНОГО ПРИБОРОСТРОЕНИЯ СО СПЕЦИАЛЬНЫМ КОНСТРУКТОРСКИМ БЮРО'),
(63577, 'https://ror.org/006knem90', 'en', 1, 'https://ror.org/006knem90 Tatar Scientific Research Institute of Agrochemistry and Soil Science Татарский научно-исследовательский институт агрохимии и почвоведения - обособленное структурное подразделение Федерального государственного бюджетного учреждения науки'),
(63578, 'https://ror.org/0320mrm05', 'no_lang_code', 1, 'https://ror.org/0320mrm05 Academician V.P.Makeyev State Rocket Centre (Russia) Государственный ракетный центр имени академика В.П. Макеева'),
(63579, 'https://ror.org/0567jx130', 'en', 1, 'https://ror.org/0567jx130 Combined Arms Academy of the Armed Forces of the Russian Federation Общевойсковая академия Вооружённых Сил Российской Федерации'),
(63580, 'https://ror.org/0557kgc34', 'en', 1, 'https://ror.org/0557kgc34 Computing Center Вычислительный центр'),
(63581, 'https://ror.org/03y5fjm90', 'en', 1, 'https://ror.org/03y5fjm90 Special Design Bureau for Automation of Marine Research Федерального государственного бюджетного учреждения науки Специального конструкторского бюро средств автоматизации морских исследований Дальневосточного отделения Российской академии наук'),
(63582, 'https://ror.org/019taje90', 'en', 1, 'https://ror.org/019taje90 Institute of Technology of Metals ИНСТИТУТ ТЕХНОЛОГИИ МЕТАЛЛОВ'),
(63583, 'https://ror.org/02j6dqk07', 'no_lang_code', 1, 'https://ror.org/02j6dqk07 Coletex (Russia) Колетекс'),
(63584, 'https://ror.org/030d9pd22', 'en', 1, 'https://ror.org/030d9pd22 International Academy of Ecology, Human and Nature Safety Международная академия наук экологии, безопасности человека и природы'),
(63585, 'https://ror.org/042n9zw97', 'en', 1, 'https://ror.org/042n9zw97 Military Academy of the Air Defense Forces Named after Marshal of the Soviet Union А.М. Vasilevsky Военная академия Воздушно-десантных войск Вооруженных Сил Российской Федерации им. Маршала Советского Союза А.М. Василевский'),
(63586, 'https://ror.org/03t5r4496', 'no_lang_code', 1, 'https://ror.org/03t5r4496 Zvezda (Russia) Звезда'),
(63587, 'https://ror.org/05bfe1413', 'no_lang_code', 1, 'https://ror.org/05bfe1413 NPO Energomash (Russia) НПО Энергомаш'),
(63588, 'https://ror.org/01e7kxc55', 'en', 1, 'https://ror.org/01e7kxc55 Children''s Scientific and Clinical Center for Infectious Diseases of the Federal Medical and Biological Agency Детский научно-клинический центр инфекционных заболеваний Федерального медико-биологического агентства'),
(63589, 'https://ror.org/03fvze758', 'en', 1, 'https://ror.org/03fvze758 Research Institute of Comprehensive Exploitation of Mineral Resources Институт проблем комплексного освоения недр РАН'),
(63590, 'https://ror.org/049e30b03', 'en', 1, 'https://ror.org/049e30b03 Complex Scientific Research Institute. H.I. Ibrahimov Комплексный научно-исследовательский институт им. Х. И. Ибрагимова Российской академии наук'),
(63591, 'https://ror.org/01fvvak72', 'en', 1, 'https://ror.org/01fvvak72 Russian Engineering Academy Российская инженерная академия'),
(63592, 'https://ror.org/029jy4332', 'en', 1, 'https://ror.org/029jy4332 Military University Военный университет'),
(63593, 'https://ror.org/03w9cnt37', 'en', 1, 'https://ror.org/03w9cnt37 Gansu Normal University for Nationalities 甘肃民族师范学院'),
(63594, 'https://ror.org/04wmrj902', 'no_lang_code', 1, 'https://ror.org/04wmrj902 Guangdong Baiyun University 광동백운대학교는'),
(63595, 'https://ror.org/00xdme738', 'en', 1, 'https://ror.org/00xdme738 Hunan Radio and Television University 湖南广播电视大学'),
(63596, 'https://ror.org/01551ga11', 'en', 1, 'https://ror.org/01551ga11 Hunan International Economics University 湖南涉外经济学院'),
(63597, 'https://ror.org/059s9d453', 'en', 1, 'https://ror.org/059s9d453 Liming Vocational University 黎明职业大学'),
(63598, 'https://ror.org/02vdh2x09', 'en', 1, 'https://ror.org/02vdh2x09 City College of Dongguan University of Technology 东莞理工学院城市学院'),
(63599, 'https://ror.org/05495v729', 'en', 1, 'https://ror.org/05495v729 Luliang University 吕梁学院'),
(63600, 'https://ror.org/00xh1ex65', 'en', 1, 'https://ror.org/00xh1ex65 Harbin Huade University 哈尔滨华德学院'),
(63601, 'https://ror.org/05k2j8e48', 'en', 1, 'https://ror.org/05k2j8e48 Jiangxi University of Technology 江西科技学院'),
(63602, 'https://ror.org/05sg01b25', 'en', 1, 'https://ror.org/05sg01b25 Minnan University of Science and Technology'),
(63603, 'https://ror.org/012czx379', 'en', 1, 'https://ror.org/012czx379 Jingdezhen University 景德镇学院'),
(63604, 'https://ror.org/01de7qg49', 'en', 1, 'https://ror.org/01de7qg49 Cangzhou Normal University 沧州师范学院'),
(63605, 'https://ror.org/0221fhj86', 'en', 1, 'https://ror.org/0221fhj86 Heihe University 黑河学院'),
(63606, 'https://ror.org/05hxcq922', 'en', 1, 'https://ror.org/05hxcq922 Heilongjiang Electric Power Workers University 黑龙江电力职工大学'),
(63607, 'https://ror.org/00146qx36', 'en', 1, 'https://ror.org/00146qx36 Jiujiang Vocational University 九江职业大学'),
(63608, 'https://ror.org/032sv9d33', 'en', 1, 'https://ror.org/032sv9d33 Jiyang College of Zhejiang A&F University'),
(63609, 'https://ror.org/01cv0qm48', 'en', 1, 'https://ror.org/01cv0qm48 Heilongjiang International University'),
(63610, 'https://ror.org/05weh2538', 'en', 1, 'https://ror.org/05weh2538 Henan Radio and Television University 河南广播电视大学'),
(63611, 'https://ror.org/050g87e49', 'en', 1, 'https://ror.org/050g87e49 Henan Forestry Vocational College 河南林业职业学院'),
(63612, 'https://ror.org/01bx4e159', 'no_lang_code', 1, 'https://ror.org/01bx4e159 Shandong Xiehe University 山东协和学院'),
(63613, 'https://ror.org/01243ws42', 'en', 1, 'https://ror.org/01243ws42 TianjinSino-German University of Applied Sciences 天津中德应用技术大学'),
(63614, 'https://ror.org/032fx1s95', 'no_lang_code', 1, 'https://ror.org/032fx1s95 Xi''an Peihua University 西安培华学院'),
(63615, 'https://ror.org/04zxtq045', 'en', 1, 'https://ror.org/04zxtq045 Xiamen Nanyang University 厦门南洋学院'),
(63616, 'https://ror.org/05kqdk687', 'en', 1, 'https://ror.org/05kqdk687 Xiangyang Hospital of Traditional Chinese Medicine 襄阳中医医院'),
(63617, 'https://ror.org/03qn8zy63', 'en', 1, 'https://ror.org/03qn8zy63 Xi''an Aeronautical University 西安航空学院'),
(63618, 'https://ror.org/03sxsay12', 'en', 1, 'https://ror.org/03sxsay12 Yangzhou Vocational University 扬州市职业大学'),
(63619, 'https://ror.org/0499b1896', 'en', 1, 'https://ror.org/0499b1896 Yantai Nanshan University 烟台南山学院'),
(63620, 'https://ror.org/04egk7864', 'en', 1, 'https://ror.org/04egk7864 Yunnan Open University 云南开放大学'),
(63621, 'https://ror.org/027714w23', 'no_lang_code', 1, 'https://ror.org/027714w23 Zhejiang Shangfeng Industry (China) 浙江上海工业'),
(63622, 'https://ror.org/03wgebb29', 'en', 1, 'https://ror.org/03wgebb29 Beijing Nonferrous Metals and Rare Earth Applications Institute 北京有色金属与稀土应用研究所'),
(63623, 'https://ror.org/000vg1h78', 'en', 1, 'https://ror.org/000vg1h78 Beijing Institute of Nutritional Sources 北京市营养源研究所'),
(63624, 'https://ror.org/01rb6gh35', 'en', 1, 'https://ror.org/01rb6gh35 China Railway Fifth Survey and Design Institute Group 中国铁路第五勘察设计研究院集团'),
(63625, 'https://ror.org/04xhs0x67', 'no_lang_code', 1, 'https://ror.org/04xhs0x67 Beijing Survey and Design Institute (China) 北京市勘察设计研究院有限'),
(63626, 'https://ror.org/00rhvvr45', 'no_lang_code', 1, 'https://ror.org/00rhvvr45 China Railway Shanghai Design Institute Group (China) 中铁上海设计院集团'),
(63627, 'https://ror.org/02e8xmx84', 'en', 1, 'https://ror.org/02e8xmx84 China International Engineering Design & Research Institute 中机国际工程设计研究院'),
(63628, 'https://ror.org/02qby5382', 'en', 1, 'https://ror.org/02qby5382 Anhui Institute of Architectural Research and Design'),
(63629, 'https://ror.org/048p60388', 'no_lang_code', 1, 'https://ror.org/048p60388 Beijing Railway Institute of Mechanical & Electrical Engineering Group (China) 北京铁道工程机电技术研究所股份有限公'),
(63630, 'https://ror.org/01r7kys31', 'en', 1, 'https://ror.org/01r7kys31 Anhui DingHeng Manufacturing Industry Technology Research Institute 安徽鼎恒制造技术研究院'),
(63631, 'https://ror.org/02gynz496', 'en', 1, 'https://ror.org/02gynz496 MCC Huatian Engineering and Technology Corporation 中冶华天工程技术公司'),
(63632, 'https://ror.org/00vx4ds80', 'no_lang_code', 1, 'https://ror.org/00vx4ds80 Anhui Fuhuang Architectural Design Research (China)'),
(63633, 'https://ror.org/04emf4852', 'en', 1, 'https://ror.org/04emf4852 Xi''an Railway Survey and Design Institute 西安铁路勘测设计院'),
(63634, 'https://ror.org/05gftfe97', 'no_lang_code', 1, 'https://ror.org/05gftfe97 China Mobile (China) 中国移动'),
(63635, 'https://ror.org/033wz4y55', 'no_lang_code', 1, 'https://ror.org/033wz4y55 Anhui East China Institute of Optoelectronic Technology (China)'),
(63636, 'https://ror.org/01bg7hf93', 'no_lang_code', 1, 'https://ror.org/01bg7hf93 Anhui Huizhou Geological Safety Research Institute (China)'),
(63637, 'https://ror.org/03q3een69', 'no_lang_code', 1, 'https://ror.org/03q3een69 China Communications Construction Company (China) 中国交通建设公司'),
(63638, 'https://ror.org/01bac4y65', 'en', 1, 'https://ror.org/01bac4y65 Beijing Tianheng Pharmaceutical Research Institute 北京天衡药物研究院有限公司'),
(63639, 'https://ror.org/04sbhzq93', 'en', 1, 'https://ror.org/04sbhzq93 China Nonferrous Metals Changsha Investigation Design Institute 中国有色金属长沙勘察设计院'),
(63640, 'https://ror.org/01fmwwp26', 'en', 1, 'https://ror.org/01fmwwp26 China Special Equipment Inspection and Research Institute 中国特种设备检测研究院'),
(63641, 'https://ror.org/01nqeer97', 'en', 1, 'https://ror.org/01nqeer97 Anhui Special Equipment Inspection Institute'),
(63642, 'https://ror.org/02h6hms35', 'no_lang_code', 1, 'https://ror.org/02h6hms35 Anhui Transport Consulting & Design Institute (China) 安徽交通咨询设计院'),
(63643, 'https://ror.org/05ypnbp35', 'no_lang_code', 1, 'https://ror.org/05ypnbp35 Anhui Provincial Urban Construction Design & Research Institute (China)'),
(63644, 'https://ror.org/033mgm122', 'no_lang_code', 1, 'https://ror.org/033mgm122 China Datang Corporation (China) 中国大唐集团科技研究院有限公司'),
(63645, 'https://ror.org/00fpj7t66', 'no_lang_code', 1, 'https://ror.org/00fpj7t66 China General Nuclear Power Corporation (China) 中国广核集团'),
(63646, 'https://ror.org/02rehe313', 'en', 1, 'https://ror.org/02rehe313 China Communications Tianjin Port Exploration & Design Institute 中交天和机械设备制造'),
(63647, 'https://ror.org/03wjb5650', 'no_lang_code', 1, 'https://ror.org/03wjb5650 China International Marine Containers (China) 中国国际海运集装箱'),
(63648, 'https://ror.org/04y08pq82', 'no_lang_code', 1, 'https://ror.org/04y08pq82 CCCC Wuhan Harbour Engineering Design and Research (China) 中交武汉港湾工程设计研究院'),
(63649, 'https://ror.org/00n7rz703', 'no_lang_code', 1, 'https://ror.org/00n7rz703 South China Municipal Engineering Design and Research Institute (China) 中国市政工程中南设计研究总院有限公'),
(63650, 'https://ror.org/04rveb346', 'no_lang_code', 1, 'https://ror.org/04rveb346 China State Shipbuilding (China) 中国船舶工业集团公司'),
(63651, 'https://ror.org/048xn9q22', 'en', 1, 'https://ror.org/048xn9q22 China National Petroleum and Chemical Planning Institute 石油和化学工业规划院'),
(63652, 'https://ror.org/02nbbm116', 'no_lang_code', 1, 'https://ror.org/02nbbm116 Changchun Municipal Engineering Design and Research Institute (China) 长春市市政工程设计研究院 联系电话'),
(63653, 'https://ror.org/05rn7n590', 'no_lang_code', 1, 'https://ror.org/05rn7n590 HeidelbergCement (Italy)'),
(63654, 'https://ror.org/00bh8v131', 'en', 1, 'https://ror.org/00bh8v131 Changjiang Institute of Survey, Planning, Design and Research 长江勘测规划设计研究院'),
(63655, 'https://ror.org/02pgg0p54', 'en', 1, 'https://ror.org/02pgg0p54 Russian Union of Refrigeration Enterprises Российский союз предприятий холодильной промышленности'),
(63656, 'https://ror.org/05egxdg81', 'en', 1, 'https://ror.org/05egxdg81 Institute of Advanced Manufacturing Technology'),
(63657, 'https://ror.org/0353t4m91', 'no_lang_code', 1, 'https://ror.org/0353t4m91 First Automotive Works (China)'),
(63658, 'https://ror.org/010znyz59', 'en', 1, 'https://ror.org/010znyz59 Beijing Agricultural Machinery Research Institute 北京市农业机械研究所'),
(63659, 'https://ror.org/018e2qw40', 'en', 1, 'https://ror.org/018e2qw40 Chongqing Metrology Quality Inspection and Research Institute 重庆市计量质量检测研究院'),
(63660, 'https://ror.org/02emh6z37', 'no_lang_code', 1, 'https://ror.org/02emh6z37 Changzhou Institute of Printed Electronics Industry 常州印刷电子产业研究院页'),
(63661, 'https://ror.org/0192men59', 'en', 1, 'https://ror.org/0192men59 Changzhou Institute of Mechatronic Technology 常州机电职业技术学院'),
(63662, 'https://ror.org/04wgf7387', 'no_lang_code', 1, 'https://ror.org/04wgf7387 Beijing Building Construction Research Institute (China) 北京建筑科学研究院有限公司'),
(63663, 'https://ror.org/028xtjj97', 'no_lang_code', 1, 'https://ror.org/028xtjj97 Chengdu Design & Research Institute of Building Materials Industry (China) 成都建筑材料工业设计研究院有限公'),
(63664, 'https://ror.org/05tq31x39', 'no_lang_code', 1, 'https://ror.org/05tq31x39 Beijing Automotive Group (China) 北京汽车工业控股有限责任公司'),
(63665, 'https://ror.org/01bs84e19', 'no_lang_code', 1, 'https://ror.org/01bs84e19 CCCC Highway Consultants (China) 中交公路规划设计院有限公司'),
(63666, 'https://ror.org/02v74rx67', 'en', 1, 'https://ror.org/02v74rx67 Chengdu Pump Application Technology Research Institute'),
(63667, 'https://ror.org/00tpwmd46', 'en', 1, 'https://ror.org/00tpwmd46 China Household Electrical Appliances Research Institute 中国家用电器研究院'),
(63668, 'https://ror.org/0329dzd04', 'no_lang_code', 1, 'https://ror.org/0329dzd04 Vanke (China) 萬科'),
(63669, 'https://ror.org/001h7kn14', 'no_lang_code', 1, 'https://ror.org/001h7kn14 Hefei Design and Research Institute of Coal Industry (China) 煤炭工业合肥设计研究院'),
(63670, 'https://ror.org/014nzyr79', 'en', 1, 'https://ror.org/014nzyr79 China Railway Economic and Planning Research Institute 中国铁路经济与规划研究院'),
(63671, 'https://ror.org/05qw55b97', 'en', 1, 'https://ror.org/05qw55b97 China Railway Construction Machinery Research & Design Institute 中铁工程机械研究设计院有限公司院简介'),
(63672, 'https://ror.org/041zqvj62', 'no_lang_code', 1, 'https://ror.org/041zqvj62 Toray (China) 东丽'),
(63673, 'https://ror.org/03gyssm79', 'no_lang_code', 1, 'https://ror.org/03gyssm79 China Railway Construction Corporation (China) 中国铁路建设总公司'),
(63674, 'https://ror.org/02vx4zx98', 'en', 1, 'https://ror.org/02vx4zx98 Beijing Jingshida Electromechanical Equipment Research Institute 北京市警视达机电设备研究所有限'),
(63675, 'https://ror.org/02pzg9066', 'no_lang_code', 1, 'https://ror.org/02pzg9066 China Railway Major Bridge Reconnaissance & Design Institute (China) 中国铁路大桥勘察设计院'),
(63676, 'https://ror.org/03wdfwr71', 'en', 1, 'https://ror.org/03wdfwr71 Guangdong Testing Institute for Product Quality Supervision 广东省产品质量监督检验研究院'),
(63677, 'https://ror.org/02crg7060', 'en', 1, 'https://ror.org/02crg7060 Guangzhou Urban Planning Survey & Design Institute 广州市城市规划勘测设计研究院'),
(63678, 'https://ror.org/04fxnt467', 'en', 1, 'https://ror.org/04fxnt467 Guangdong Institute of Rare Metals'),
(63679, 'https://ror.org/01f6j5k03', 'en', 1, 'https://ror.org/01f6j5k03 Harbin Liushun Electric Automation Design Institute 哈尔滨市六顺电气自动化设计研究所'),
(63680, 'https://ror.org/04cyde307', 'en', 1, 'https://ror.org/04cyde307 Guangdong Southern Telecommunication Planning Consulting & Design Institute 广东南方电信规划咨询设计院有限公司'),
(63681, 'https://ror.org/03x92hw77', 'no_lang_code', 1, 'https://ror.org/03x92hw77 Beijing Municipal Engineering Design and Research Institute (China) 北京市政工程设计研究院'),
(63682, 'https://ror.org/023byrq13', 'en', 1, 'https://ror.org/023byrq13 Guangdong Province Special Equipment Testing and Research Institute Zhuhai Testing Institute 广东省特种设备检测研究院珠海检测院'),
(63683, 'https://ror.org/01t81st47', 'en', 1, 'https://ror.org/01t81st47 Yantai Academy of Agricultural Sciences 烟台农业科学院'),
(63684, 'https://ror.org/03q4yat34', 'no_lang_code', 1, 'https://ror.org/03q4yat34 Guangdong Taibao Medical Technology (China) 广东泰宝医疗科技股份有限公司'),
(63685, 'https://ror.org/01xbd6g65', 'en', 1, 'https://ror.org/01xbd6g65 Beijing Institute of Neurosurgery'),
(63686, 'https://ror.org/059mggq50', 'en', 1, 'https://ror.org/059mggq50 Hunan Coal Science Research Institute 湖南省煤炭科学研究院有限公司'),
(63687, 'https://ror.org/01dqs7f31', 'en', 1, 'https://ror.org/01dqs7f31 Guangdong Research Institute of Water Resources and Hydropower 广东省水利水电科学研究院'),
(63688, 'https://ror.org/022qbnw53', 'en', 1, 'https://ror.org/022qbnw53 Guangdong Province Welding Technology Institute'),
(63689, 'https://ror.org/025c9az97', 'en', 1, 'https://ror.org/025c9az97 Hunan Nonferrous Metal Research Institute 湖南有色金属研究院创建'),
(63690, 'https://ror.org/0297e7684', 'no_lang_code', 1, 'https://ror.org/0297e7684 Sanhua Holding Group (China) 三华控股集团'),
(63691, 'https://ror.org/05m4yff41', 'en', 1, 'https://ror.org/05m4yff41 Guangdong Institute of New Materials 广东省新材料研究所'),
(63692, 'https://ror.org/05j918z43', 'en', 1, 'https://ror.org/05j918z43 Hunan Institute of Nuclear Agronomy and Space Breeding 湖南省核农学与航天育种研究所'),
(63693, 'https://ror.org/00ahhj040', 'en', 1, 'https://ror.org/00ahhj040 Hangzhou Quality and Technical Supervision and Testing Institute 杭州市质量技术监督检测院'),
(63694, 'https://ror.org/00mr5v348', 'no_lang_code', 1, 'https://ror.org/00mr5v348 Jinan Foundry and Metalforming Machinery Research Institute (China) 济南铸造锻压机械研究所'),
(63695, 'https://ror.org/05cvya303', 'en', 1, 'https://ror.org/05cvya303 Harbin FRP Research Institute 哈尔滨玻璃钢研究院'),
(63696, 'https://ror.org/02n6fv369', 'en', 1, 'https://ror.org/02n6fv369 Jinhua Academy of Agricultural Sciences'),
(63697, 'https://ror.org/05wbeav13', 'en', 1, 'https://ror.org/05wbeav13 Hunan Rare Earth Metal Material Research Institute 湖南稀土金属材料研究所');
INSERT INTO `rors` VALUES
(63698, 'https://ror.org/01t1hq354', 'en', 1, 'https://ror.org/01t1hq354 Soil and Fertilizer Institute of Hunan Province 湖南省土壤肥料研究所成'),
(63699, 'https://ror.org/04xrq1760', 'en', 1, 'https://ror.org/04xrq1760 Jurong Jinghou Machinery Research Institute 句容京侯机械研究所'),
(63700, 'https://ror.org/029t9vk58', 'no_lang_code', 1, 'https://ror.org/029t9vk58 Yonker Environmental Protection (China) 永清环保股份有限公司'),
(63701, 'https://ror.org/046268q59', 'no_lang_code', 1, 'https://ror.org/046268q59 Foshan Ceramics Research Institute (China) 佛山市陶瓷研究所有限'),
(63702, 'https://ror.org/05w23xy58', 'en', 1, 'https://ror.org/05w23xy58 Guangxi Machinery Industry Research Institute'),
(63703, 'https://ror.org/05datya05', 'en', 1, 'https://ror.org/05datya05 Hunan Institute of Energy Storage Materials and Devices 湖南省储能材料与器件研究所'),
(63704, 'https://ror.org/05sshc517', 'en', 1, 'https://ror.org/05sshc517 Kunshan Industrial Technology Research Institute 昆山市工业技术研究院'),
(63705, 'https://ror.org/03qw6d546', 'no_lang_code', 1, 'https://ror.org/03qw6d546 Lanzhou Nonferrous Metals Design and Research Institute (China)'),
(63706, 'https://ror.org/025hrcs91', 'en', 1, 'https://ror.org/025hrcs91 Hefei Urban Planning & Design Institute 合肥市规划设计院'),
(63707, 'https://ror.org/02w9cqe69', 'en', 1, 'https://ror.org/02w9cqe69 Guangxi Transportation Research Institute 广西交通科学研究院'),
(63708, 'https://ror.org/05jca5f53', 'en', 1, 'https://ror.org/05jca5f53 Heilongjiang Academy of Agricultural Machinery Engineering 黑龙江省农业机械工程科学研究院'),
(63709, 'https://ror.org/02c97sq75', 'en', 1, 'https://ror.org/02c97sq75 Liaoning Provincial Institute of Agricultural Mechanization 辽宁省农业机械化研究所'),
(63710, 'https://ror.org/05cv5pe55', 'en', 1, 'https://ror.org/05cv5pe55 Fujian Fisheries Research Institute 福建省水产研究所'),
(63711, 'https://ror.org/0491qs096', 'en', 1, 'https://ror.org/0491qs096 The Third Affiliated Hospital of Zhejiang Chinese Medical University 浙江中医药大学附属第三医院莫'),
(63712, 'https://ror.org/050yrsr44', 'en', 1, 'https://ror.org/050yrsr44 All-Russian Scientific Research Institute of Confectionery Industry ФГБНУ Всероссийский Научно-исследовательский институт Кондитерской Промышленности'),
(63713, 'https://ror.org/01b45e393', 'en', 1, 'https://ror.org/01b45e393 Samara Academy of State and Municipal Management Самарская академия государственного и муниципального управления'),
(63714, 'https://ror.org/0233jyt67', 'en', 1, 'https://ror.org/0233jyt67 Fujian Electric Power Survey & Design Institute 福建省电力勘测设计院'),
(63715, 'https://ror.org/00nswcb05', 'no_lang_code', 1, 'https://ror.org/00nswcb05 Guangzhou Academy of Building Research (China)'),
(63716, 'https://ror.org/04sy98p67', 'en', 1, 'https://ror.org/04sy98p67 Lishui Academy of Agricultural Sciences'),
(63717, 'https://ror.org/05rf8fe56', 'en', 1, 'https://ror.org/05rf8fe56 Liuzhou Institute of Automation Science'),
(63718, 'https://ror.org/01cg3n190', 'no_lang_code', 1, 'https://ror.org/01cg3n190 Inner Mongolia Electric Power Survey & Design Institute (China) 内蒙古电力勘测设计院'),
(63719, 'https://ror.org/05j0ypg59', 'en', 1, 'https://ror.org/05j0ypg59 Gansu Great Wall Electrical and Electronics Engineering Research Institute 甘肃长城电工电器工程研究院'),
(63720, 'https://ror.org/01hf44t80', 'en', 1, 'https://ror.org/01hf44t80 Guangzhou Institute of Applied Software Technology, Chinese Academy of Sciences 广州中国科学院软件应用技术研究所'),
(63721, 'https://ror.org/00gy01w86', 'en', 1, 'https://ror.org/00gy01w86 Heilongjiang Provincial Institute of Hydraulic Research 黑龙江省水利科学研究院'),
(63722, 'https://ror.org/04wgdr728', 'en', 1, 'https://ror.org/04wgdr728 Guangzhou Research Institute of Synthetic Materials'),
(63723, 'https://ror.org/02ebrh849', 'en', 1, 'https://ror.org/02ebrh849 Gansu Academy of Machinery Science 甘肃省机械科学研究院'),
(63724, 'https://ror.org/0149mnh61', 'no_lang_code', 1, 'https://ror.org/0149mnh61 Henan Energy & Chemical Industry Group (China) 河南能源化工集团有限公司'),
(63725, 'https://ror.org/00mxc5141', 'no_lang_code', 1, 'https://ror.org/00mxc5141 Sehenstar Energy Technology (China) 苏州协宏泰节能科技有限公司'),
(63726, 'https://ror.org/007ecf642', 'en', 1, 'https://ror.org/007ecf642 Henan Province Quality and Technical Supervision Bureau 河南省质量技术监督局'),
(63727, 'https://ror.org/037b6wy35', 'no_lang_code', 1, 'https://ror.org/037b6wy35 CITIC Group (China)'),
(63728, 'https://ror.org/01sf33a48', 'en', 1, 'https://ror.org/01sf33a48 Guangzhou Fiber Products Inspection and Research Institute 广州纤维产品检测研究院'),
(63729, 'https://ror.org/02be8ew78', 'no_lang_code', 1, 'https://ror.org/02be8ew78 SCIVIC Engineering Corporation (China) 机械工业第四设计研究院'),
(63730, 'https://ror.org/05qcfb174', 'en', 1, 'https://ror.org/05qcfb174 Henan Province Water Conservancy Survey and Design Research 河南省水利勘测设计研究有限公司'),
(63731, 'https://ror.org/002k1r174', 'en', 1, 'https://ror.org/002k1r174 State-owned Assets Supervision and Administration Commission of the State Council 国务院国有资产监督管理委员会'),
(63732, 'https://ror.org/036n8hs79', 'en', 1, 'https://ror.org/036n8hs79 Guangzhou Institute of Mechanical Design 广州机械设计研究所简介'),
(63733, 'https://ror.org/0114hcc46', 'no_lang_code', 1, 'https://ror.org/0114hcc46 Guangzhou Mechanical Engineering Research Institute (China) 广州机械科学研究院有限公司'),
(63734, 'https://ror.org/04gfyef21', 'no_lang_code', 1, 'https://ror.org/04gfyef21 Guangzhou Metro Group (China)'),
(63735, 'https://ror.org/00ed67a38', 'no_lang_code', 1, 'https://ror.org/00ed67a38 Chunlan (China) 春兰'),
(63736, 'https://ror.org/01bf03r65', 'en', 1, 'https://ror.org/01bf03r65 Jiangsu Provincial Urban Planning and Design Institute 江苏省城市规划设计研究院成'),
(63737, 'https://ror.org/017veh155', 'en', 1, 'https://ror.org/017veh155 South China Robotics Innovative Research Institute 南华机器人创新研究院'),
(63738, 'https://ror.org/0569x1756', 'en', 1, 'https://ror.org/0569x1756 Guangdong Provincial Architectural Design and Research Institute 广东省建筑设计研究院'),
(63739, 'https://ror.org/056pc6w59', 'en', 1, 'https://ror.org/056pc6w59 Guilin Electrical Equipment Research Institute 桂林电器科学研究院有限'),
(63740, 'https://ror.org/001z3ck59', 'no_lang_code', 1, 'https://ror.org/001z3ck59 Jiangsu Institute of Ecomones (China) 江苏省激素研究所'),
(63741, 'https://ror.org/035br3k73', 'no_lang_code', 1, 'https://ror.org/035br3k73 China Aluminum International Engineering Corporation Limited (China) 中国铝业国际工程有限公司'),
(63742, 'https://ror.org/01aew1m62', 'en', 1, 'https://ror.org/01aew1m62 Jiangsu Vocational Institute of Commerce 江苏经贸职业技术学院'),
(63743, 'https://ror.org/01py2n540', 'no_lang_code', 1, 'https://ror.org/01py2n540 Guizhou Aerospace Power Science & Tech (China) 贵州航天动力技术'),
(63744, 'https://ror.org/00753dy67', 'en', 1, 'https://ror.org/00753dy67 Hunan Provincial Agricultural Machinery Authority 湖南省农业机械管理局'),
(63745, 'https://ror.org/049jpjz09', 'en', 1, 'https://ror.org/049jpjz09 Guangdong Institute of Intelligent Manufacturing 广东省智能制造研究所成'),
(63746, 'https://ror.org/044a9d018', 'en', 1, 'https://ror.org/044a9d018 Jiangsu Industry Technology Research Institute 江苏工业技术研究院'),
(63747, 'https://ror.org/02atexs87', 'no_lang_code', 1, 'https://ror.org/02atexs87 Kangmei Pharmaceutical (China) 康美药业股份有限公司'),
(63748, 'https://ror.org/035hazd92', 'en', 1, 'https://ror.org/035hazd92 Jiangsu Institute of Metrology 江苏省计量科学研究院'),
(63749, 'https://ror.org/048wp8t87', 'no_lang_code', 1, 'https://ror.org/048wp8t87 Jiangsu Province Metallurgical Design Institute (China) 江苏省冶金设计院有限公司'),
(63750, 'https://ror.org/02xyaf767', 'en', 1, 'https://ror.org/02xyaf767 Transnational University Limburg'),
(63751, 'https://ror.org/01vg4mj91', 'no_lang_code', 1, 'https://ror.org/01vg4mj91 Jiangsu Provincial Posts & Telecommunications Planning & Design Institute (China) 江苏省邮电规划设计院有限责任公司'),
(63752, 'https://ror.org/0220p2586', 'en', 1, 'https://ror.org/0220p2586 Guizhou Institute of Biology 贵州省生物研究所'),
(63753, 'https://ror.org/05mq0z459', 'no_lang_code', 1, 'https://ror.org/05mq0z459 Jiangsu Radio Scientific Research Institute (China) 江苏省无线电科学研究所有限公司'),
(63754, 'https://ror.org/053v9t488', 'no_lang_code', 1, 'https://ror.org/053v9t488 Daqo (China) 大全'),
(63755, 'https://ror.org/055f13495', 'en', 1, 'https://ror.org/055f13495 Guizhou Electric Power Design and Research Institute 贵州电力设计研究院'),
(63756, 'https://ror.org/01d7fe160', 'no_lang_code', 1, 'https://ror.org/01d7fe160 Sixin (China)'),
(63757, 'https://ror.org/048jfe862', 'en', 1, 'https://ror.org/048jfe862 Nanjing Architecture Design and Research Institute 南京市建筑设计研究院有限责任公司'),
(63758, 'https://ror.org/00ctyfm67', 'en', 1, 'https://ror.org/00ctyfm67 Nanjing Institute of Railway Technology'),
(63759, 'https://ror.org/00jkdkv87', 'no_lang_code', 1, 'https://ror.org/00jkdkv87 Zonhon Biopharma Institute 江苏众红生物工程创药研究院有限公司'),
(63760, 'https://ror.org/026z6mp76', 'en', 1, 'https://ror.org/026z6mp76 Guizhou Water Conservancy and Hydropower Survey and Design Institute 贵州水利水电勘测设计院'),
(63761, 'https://ror.org/015ddje41', 'en', 1, 'https://ror.org/015ddje41 Jiangxi Fisheries Research Institute 江西省水产科学研究所'),
(63762, 'https://ror.org/010he8702', 'no_lang_code', 1, 'https://ror.org/010he8702 Beijing Enterprises Water Group (China)'),
(63763, 'https://ror.org/042t78q04', 'no_lang_code', 1, 'https://ror.org/042t78q04 Nanjing Surveying and Mapping Research Institute (China) 南京市测绘勘察研究院股份有限公司'),
(63764, 'https://ror.org/03s2thv57', 'en', 1, 'https://ror.org/03s2thv57 Newford Research Institute of Advanced Technology 纽福德先进技术研究所'),
(63765, 'https://ror.org/02ptkm873', 'no_lang_code', 1, 'https://ror.org/02ptkm873 Jiangyin Traffic Planning Survey & Design Institute (China) 江阴市交通规划勘察设计院有限公司前'),
(63766, 'https://ror.org/02tzmrb07', 'en', 1, 'https://ror.org/02tzmrb07 Guodian Institute of Science and Technology 国电科学技术研究院'),
(63767, 'https://ror.org/05h57he97', 'en', 1, 'https://ror.org/05h57he97 Ningbo Entry-Exit Inspection And Quarantine Bureau 宁波出入境检验检疫局'),
(63768, 'https://ror.org/01mrfz775', 'en', 1, 'https://ror.org/01mrfz775 Jiaxing Hengchuang Electric Design and Research Institute 嘉兴恒创电力设计研究院有限公司明绘分公'),
(63769, 'https://ror.org/04bj5db66', 'en', 1, 'https://ror.org/04bj5db66 Ningbo Intelligent Manufacturing Industry Research Institute 宁波智能制造业研究所'),
(63770, 'https://ror.org/03pw0zs24', 'no_lang_code', 1, 'https://ror.org/03pw0zs24 Jilin Electric Power Research Institute (China) 吉林省电力科学研究院有限公司'),
(63771, 'https://ror.org/01varr368', 'no_lang_code', 1, 'https://ror.org/01varr368 PowerChina (China) 中国电力建设集团公司'),
(63772, 'https://ror.org/01gy1fv44', 'en', 1, 'https://ror.org/01gy1fv44 Qinhuangdao Audio-Visual Machinery Research Institute 秦皇岛视听机械研究所'),
(63773, 'https://ror.org/039n5wp46', 'no_lang_code', 1, 'https://ror.org/039n5wp46 Qinhuangdao Glass Industry Research and Design Institute (China) 秦皇岛玻璃工业研究设计院有限公司'),
(63774, 'https://ror.org/02qcpmn35', 'en', 1, 'https://ror.org/02qcpmn35 Northwest Institute of Mining and Metallurgy 西北矿冶研究院'),
(63775, 'https://ror.org/00ky61211', 'en', 1, 'https://ror.org/00ky61211 Shanghai Light Industry Research Institute 上海轻工业研究院'),
(63776, 'https://ror.org/04zvdhe55', 'en', 1, 'https://ror.org/04zvdhe55 Institute of Nuclear Power Operations'),
(63777, 'https://ror.org/04vvag751', 'en', 1, 'https://ror.org/04vvag751 Sichuan Food Fermentation Industry Research and Design Institute 四川省食品发酵工业研究设计院'),
(63778, 'https://ror.org/02jpsw347', 'no_lang_code', 1, 'https://ror.org/02jpsw347 Kelun Group (China) 四川科伦药业股份有限公司'),
(63779, 'https://ror.org/03b2atp15', 'en', 1, 'https://ror.org/03b2atp15 Shaanxi Coal Chemical Industry Technology Research Institute 陕西煤业化工技术研究院有限责任公司'),
(63780, 'https://ror.org/04azzhq34', 'no_lang_code', 1, 'https://ror.org/04azzhq34 Shanghai Construction Group (China) 上海建工集团'),
(63781, 'https://ror.org/012hbj192', 'en', 1, 'https://ror.org/012hbj192 Sichuan Highway Design and Research Institute 四川省交通运输厅公路规划勘察设计研究院'),
(63782, 'https://ror.org/03kxtax58', 'en', 1, 'https://ror.org/03kxtax58 Sichuan Institute of Building Research 四川省建筑科学研究院'),
(63783, 'https://ror.org/04g4hv039', 'en', 1, 'https://ror.org/04g4hv039 Shaanxi Research Design Institute of Petroleum and Chemical Industry 陕西省石油化工研究设计院'),
(63784, 'https://ror.org/01pw44479', 'en', 1, 'https://ror.org/01pw44479 Shanghai Power Equipment Research Institute 上海电力设备研究院'),
(63785, 'https://ror.org/044wmmj34', 'en', 1, 'https://ror.org/044wmmj34 Hefei Institute of Technology Innovation'),
(63786, 'https://ror.org/00f32vr09', 'en', 1, 'https://ror.org/00f32vr09 Guangxi South Subtropical Agricultural Research Institute 广西南亚热带农业科学研究所'),
(63787, 'https://ror.org/03t4zvk50', 'en', 1, 'https://ror.org/03t4zvk50 Laser Research Institute 山东省科学院激光研究所'),
(63788, 'https://ror.org/00g2kbc16', 'en', 1, 'https://ror.org/00g2kbc16 Shanghai Shipbuilding Technology Research Institute 上海造船技术研究院'),
(63789, 'https://ror.org/0090cxj04', 'en', 1, 'https://ror.org/0090cxj04 Shandong Academy of Agricultural Machinery Sciences 山东省农业机械科学研究院始'),
(63790, 'https://ror.org/001rebv08', 'en', 1, 'https://ror.org/001rebv08 People''s Bank of China 中国人民银行'),
(63791, 'https://ror.org/01tsmee46', 'en', 1, 'https://ror.org/01tsmee46 Shanghai Special Equipment Supervision and Inspection Institute 上海特种设备检测技术研究院'),
(63792, 'https://ror.org/04xxxza58', 'en', 1, 'https://ror.org/04xxxza58 Wenzhou Institute of Technology Testing & Calibration 温州理工学院测试与校准'),
(63793, 'https://ror.org/00hvq0c10', 'en', 1, 'https://ror.org/00hvq0c10 Shanghai Fire Research Institute'),
(63794, 'https://ror.org/026f8z808', 'en', 1, 'https://ror.org/026f8z808 Shandong Academy of Building Research 山东省建筑科学研究院'),
(63795, 'https://ror.org/056tm2d87', 'en', 1, 'https://ror.org/056tm2d87 Suzhou Electrical Apparatus Science Academy 苏州电器科学研究院股份有限公司'),
(63796, 'https://ror.org/02zznv955', 'en', 1, 'https://ror.org/02zznv955 Shanghai Tunnel Engineering Rail Transit Design & Research Institute 上海市隧道工程轨道交通设计研究院'),
(63797, 'https://ror.org/044yb1859', 'en', 1, 'https://ror.org/044yb1859 Shandong Academy of Environmental Science 山东省环境保护科学研究设计院地'),
(63798, 'https://ror.org/040nzs042', 'en', 1, 'https://ror.org/040nzs042 Shenyang Fire Research Institute'),
(63799, 'https://ror.org/00r2s0s14', 'en', 1, 'https://ror.org/00r2s0s14 Shandong Institute of Food and Drug Inspection 山东省食品药品检验研究院'),
(63800, 'https://ror.org/044zwsy33', 'en', 1, 'https://ror.org/044zwsy33 Suzhou Industrial Park Vocational Technical College 苏州工业园区职业技术学院'),
(63801, 'https://ror.org/027rn2111', 'en', 1, 'https://ror.org/027rn2111 Suzhou Vocational Institute of Industrial Technology 有 苏州工业职业技术学院'),
(63802, 'https://ror.org/02n2dfg29', 'en', 1, 'https://ror.org/02n2dfg29 Sichuan Fire Research Institute'),
(63803, 'https://ror.org/01fbkw579', 'no_lang_code', 1, 'https://ror.org/01fbkw579 Wuhan Institute of Geo-Environmental Industry and Technology (China) 武汉地质环境工程技术研究所'),
(63804, 'https://ror.org/05xd3cs50', 'en', 1, 'https://ror.org/05xd3cs50 Shanghai Water Conservancy Engineering Design & Research Institute 上海市水利工程设计研究院有限'),
(63805, 'https://ror.org/01qr4nw81', 'en', 1, 'https://ror.org/01qr4nw81 Suzhou Nonferrous Metals Research Institute 苏州有色金属研究院有限公司'),
(63806, 'https://ror.org/055qdna38', 'en', 1, 'https://ror.org/055qdna38 Shanghai Harbour Engineering Design & Research Institute 上海海湾工程设计研究院'),
(63807, 'https://ror.org/05k1xe006', 'no_lang_code', 1, 'https://ror.org/05k1xe006 Shandong Provincial Communications Planning and Design Institute (China) 山东省交通规划设计院'),
(63808, 'https://ror.org/02abbq608', 'en', 1, 'https://ror.org/02abbq608 Suzhou Thermal Engineering Research Institute 苏州热工研究院有限公司'),
(63809, 'https://ror.org/016qtng06', 'en', 1, 'https://ror.org/016qtng06 Shangqiu Institute of Technology 商丘工学院简介'),
(63810, 'https://ror.org/00a4qwj68', 'en', 1, 'https://ror.org/00a4qwj68 Shandong Institute of Metrology 山东省计量科学研究院'),
(63811, 'https://ror.org/05bbyvt75', 'en', 1, 'https://ror.org/05bbyvt75 Shantou Ultrasonic Instrument Research Institute 汕头超声仪器研究所'),
(63812, 'https://ror.org/048d2bt95', 'en', 1, 'https://ror.org/048d2bt95 Shandong Institute for Product Quality Inspection 山东省产品质量检验研究院'),
(63813, 'https://ror.org/037z0v527', 'en', 1, 'https://ror.org/037z0v527 Institute of Oceanographic Instrumentation 山东省科学院海洋仪器仪表研究所 地址'),
(63814, 'https://ror.org/05wzmn116', 'en', 1, 'https://ror.org/05wzmn116 Shandong Huanghe Delta Institute of Textile Science and Technology 山东黄河三角洲纺织科技研究院于'),
(63815, 'https://ror.org/00ab95029', 'en', 1, 'https://ror.org/00ab95029 Wuxi Institute of Technology 无锡理工学院'),
(63816, 'https://ror.org/00sz56h79', 'en', 1, 'https://ror.org/00sz56h79 HKUST Shenzhen Research Institute'),
(63817, 'https://ror.org/04c6m2d57', 'no_lang_code', 1, 'https://ror.org/04c6m2d57 Wuxi Guolian Development (China) 无锡国联发展集团'),
(63818, 'https://ror.org/05gk6fr31', 'en', 1, 'https://ror.org/05gk6fr31 Traffic Management Research Institute'),
(63819, 'https://ror.org/0314qy595', 'no_lang_code', 1, 'https://ror.org/0314qy595 Shanghai Electric (China) 上海电气集团'),
(63820, 'https://ror.org/05baxg638', 'no_lang_code', 1, 'https://ror.org/05baxg638 Ningbo Putian Information Industry (China) 宁波普天信息产业'),
(63821, 'https://ror.org/020jz8z49', 'en', 1, 'https://ror.org/020jz8z49 Thermal Power Research Institute 西安热工研究院'),
(63822, 'https://ror.org/02t835g30', 'en', 1, 'https://ror.org/02t835g30 Shanghai Architectural Design & Research Institute 上海建筑设计研究院有限公司'),
(63823, 'https://ror.org/02g4n2f85', 'en', 1, 'https://ror.org/02g4n2f85 Shanxi Academy of Building Research 山西省建筑科学研究院'),
(63824, 'https://ror.org/04ceqst84', 'no_lang_code', 1, 'https://ror.org/04ceqst84 China XD Group (China) 中国西电集团'),
(63825, 'https://ror.org/02pnqx643', 'en', 1, 'https://ror.org/02pnqx643 Shanxi Electromechanical Design and Research Institute 山西机械设计研究院'),
(63826, 'https://ror.org/03bpcr835', 'en', 1, 'https://ror.org/03bpcr835 Tianjin Fire Research Institute 公安部天津消防研究所简介'),
(63827, 'https://ror.org/01ankx725', 'en', 1, 'https://ror.org/01ankx725 Shanghai Electric Apparatus Research Institute 上海电器科学研究所'),
(63828, 'https://ror.org/02r57zt28', 'en', 1, 'https://ror.org/02r57zt28 Qingdao Academy of Agricultural Sciences'),
(63829, 'https://ror.org/04ztb5g16', 'no_lang_code', 1, 'https://ror.org/04ztb5g16 Shanxi Provincial Institute of Chemical Industry (China) 山西省化工研究所'),
(63830, 'https://ror.org/01dynsx63', 'en', 1, 'https://ror.org/01dynsx63 Xi''an Micromotor Research Institute 西安微电机研究所'),
(63831, 'https://ror.org/046fag481', 'no_lang_code', 1, 'https://ror.org/046fag481 China Shenhua Energy (China) 神华能源'),
(63832, 'https://ror.org/02habex41', 'en', 1, 'https://ror.org/02habex41 Tianjin Plastics Research Institute 天津市塑料研究所有限公司'),
(63833, 'https://ror.org/05we3nb76', 'en', 1, 'https://ror.org/05we3nb76 China Fishery Machinery and Instrument Research Institute 渔业机械仪器研究所创'),
(63834, 'https://ror.org/00pdf6q45', 'en', 1, 'https://ror.org/00pdf6q45 Xiamen Institute of Building Research Group 厦门建筑科学研究院'),
(63835, 'https://ror.org/01cpeja57', 'no_lang_code', 1, 'https://ror.org/01cpeja57 Shenyang Aluminum & Magnesium Engineering & Research Institute (China) 沉阳铝镁设计研究院'),
(63836, 'https://ror.org/020p5zy41', 'en', 1, 'https://ror.org/020p5zy41 Xinjiang Uygur Autonomous Region Institute of Metrology and Measurement 新疆维吾尔自治区计量测试研究院'),
(63837, 'https://ror.org/01nzt4j48', 'no_lang_code', 1, 'https://ror.org/01nzt4j48 SGIDI Engineering Consulting (China) 上海勘察设计研究院'),
(63838, 'https://ror.org/03j057g08', 'no_lang_code', 1, 'https://ror.org/03j057g08 Shenyang Academy of Environmental Sciences (China) 沈阳环境科学研究院'),
(63839, 'https://ror.org/05etzsm06', 'en', 1, 'https://ror.org/05etzsm06 Shenzhen Academy of Aerospace Technology 深圳航天科技研究院'),
(63840, 'https://ror.org/00at16584', 'no_lang_code', 1, 'https://ror.org/00at16584 Huafon Group (China) 华峰集团'),
(63841, 'https://ror.org/025hs2285', 'no_lang_code', 1, 'https://ror.org/025hs2285 Hilong (China) 海隆集团第'),
(63842, 'https://ror.org/04zv3rp09', 'en', 1, 'https://ror.org/04zv3rp09 Shenzhen Academy of Metrology and Quality Inspection 深圳市计量质量检测研究院'),
(63843, 'https://ror.org/05qm99d82', 'en', 1, 'https://ror.org/05qm99d82 Nihon University Itabashi Hospital 日本大学板橋病院'),
(63844, 'https://ror.org/00wa5fs40', 'no_lang_code', 1, 'https://ror.org/00wa5fs40 Shenzhen General Institute of Architectural Design and Research (China) 深圳市建筑设计研究总院有限公司'),
(63845, 'https://ror.org/00cn4vr32', 'en', 1, 'https://ror.org/00cn4vr32 Wanda Cultural Tourism Planning and Research Institute 万达文化旅游规划研究院有限公司'),
(63846, 'https://ror.org/039vzrf55', 'no_lang_code', 1, 'https://ror.org/039vzrf55 Shenzhen Institute of Building Research (China) 深圳市建筑科学研究院股份有限公司'),
(63847, 'https://ror.org/03wtw1749', 'en', 1, 'https://ror.org/03wtw1749 Shanghai Zhaozhan Metal Materials 上海金屬材料有限公司'),
(63848, 'https://ror.org/00mzd6670', 'no_lang_code', 1, 'https://ror.org/00mzd6670 Shenzhen Institute of Innovation Design (China) 深圳市创新设计研究院有限公司'),
(63849, 'https://ror.org/01e2dpk50', 'no_lang_code', 1, 'https://ror.org/01e2dpk50 Yuntianhua Group (China)'),
(63850, 'https://ror.org/03j3raf08', 'no_lang_code', 1, 'https://ror.org/03j3raf08 Medzone Healthcare (China)'),
(63851, 'https://ror.org/01h027j09', 'en', 1, 'https://ror.org/01h027j09 Shenzhen Academy of Robotics 临深圳市智能机器人研究院'),
(63852, 'https://ror.org/0554tsp75', 'en', 1, 'https://ror.org/0554tsp75 Zhejiang Modern Architectural Design & Research Institute 浙江省现代建筑设计研究院'),
(63853, 'https://ror.org/023jx0404', 'no_lang_code', 1, 'https://ror.org/023jx0404 Coal Industry Jinan Design & Research Institute (China) 煤炭工业济南设计研究院有限公司'),
(63854, 'https://ror.org/04yt00889', 'no_lang_code', 1, 'https://ror.org/04yt00889 Samsung (China) 三星电子中国'),
(63855, 'https://ror.org/00kskf856', 'no_lang_code', 1, 'https://ror.org/00kskf856 Chinatex Posts and Telecommunications Consulting and Design Institute (China) 中讯邮电咨询设计院有限公司'),
(63856, 'https://ror.org/01tys1796', 'en', 1, 'https://ror.org/01tys1796 Yunnan Supply and Marketing Cooperatives'),
(63857, 'https://ror.org/004n78r59', 'no_lang_code', 1, 'https://ror.org/004n78r59 Hetman Petro Sahaidachnyi National Army Academy Національна академія сухопутних військ імені гетьмана Петра Сагайдачного'),
(63858, 'https://ror.org/02pk6rm23', 'en', 1, 'https://ror.org/02pk6rm23 Chengdu Surveying Geotechnical Research Institute 中冶成都勘察研究总院有限公司'),
(63859, 'https://ror.org/011fjjx45', 'en', 1, 'https://ror.org/011fjjx45 Azərbaycan Respublikası Fövqəladə Hallar Nazirliyi Ministry of Emergency Situations of the Republic of Azerbaijan'),
(63860, 'https://ror.org/03jn38r85', 'en', 1, 'https://ror.org/03jn38r85 Collaborative Innovation Center of Quantum Matter 量子物质科学协同创新中心'),
(63861, 'https://ror.org/00nf44j26', 'no_lang_code', 1, 'https://ror.org/00nf44j26 Zhejiang Runtu (China) 浙江闰土股份有限公司'),
(63862, 'https://ror.org/01sa5tb56', 'en', 1, 'https://ror.org/01sa5tb56 Islamic Azad University, Aliabad Katoul جامعة آزاد الإسلامية ، علي أباد قطول'),
(63863, 'https://ror.org/02d9xx252', 'en', 1, 'https://ror.org/02d9xx252 Bilquis Postgraduate College For Women خواتین کے لئے بلقیس ایجوکیشن کالج'),
(63864, 'https://ror.org/04c77tp80', 'en', 1, 'https://ror.org/04c77tp80 Yunnan Institute of Tropical Crops 云南热带作物研究所'),
(63865, 'https://ror.org/00st18g74', 'en', 1, 'https://ror.org/00st18g74 Hanoi Pedagogical University 2 Trường Đại học Sư phạm Hà Nội 2'),
(63866, 'https://ror.org/057r0bm85', 'en', 1, 'https://ror.org/057r0bm85 Zhejiang Sorfa Life Science Research 浙江硕华生命科学研究股份有限公司'),
(63867, 'https://ror.org/02bnzce68', 'en', 1, 'https://ror.org/02bnzce68 Radiation Safety Directorate Дирекција за радијациона сигурност'),
(63868, 'https://ror.org/036p9e334', 'en', 1, 'https://ror.org/036p9e334 Yunnan Water Conservancy and Hydropower Survey and Design Institute'),
(63869, 'https://ror.org/04ypjrs34', 'en', 1, 'https://ror.org/04ypjrs34 National Supercomputing Center in Wuxi 无锡国家超级计算中心'),
(63870, 'https://ror.org/05ban5b47', 'en', 1, 'https://ror.org/05ban5b47 Shenzhen Special Equipment Safety Inspection Institute 深圳市特种设备安全检验研究院'),
(63871, 'https://ror.org/01g140v14', 'en', 1, 'https://ror.org/01g140v14 China Spallation Neutron Source 中国散裂中子源工程'),
(63872, 'https://ror.org/031q99e43', 'fr', 1, 'https://ror.org/031q99e43 Institut PrépaVogt'),
(63873, 'https://ror.org/02na80n77', 'en', 1, 'https://ror.org/02na80n77 Zhangjiagang Smartgrid Fanghua Electrical Energy Storage Research Institute 张家港智能电网方华电能储能研究所'),
(63874, 'https://ror.org/01jb3sz14', 'en', 1, 'https://ror.org/01jb3sz14 Zhejiang Institute of Special Equipment Inspection 浙江省特种设备检验研究院'),
(63875, 'https://ror.org/02558jz83', 'en', 1, 'https://ror.org/02558jz83 Shenzhen Terahertz Technology Innovation Research Institute 深圳市太赫兹科技创新研究院'),
(63876, 'https://ror.org/02ree3t31', 'no_lang_code', 1, 'https://ror.org/02ree3t31 Zigong Light Industry Design Institute (China) 自贡市轻工业设计研究院'),
(63877, 'https://ror.org/01f2k3r93', 'no_lang_code', 1, 'https://ror.org/01f2k3r93 Shenzhen Yihua Computer (China) 深圳怡化电脑股份有限公司'),
(63878, 'https://ror.org/01c9d4e73', 'en', 1, 'https://ror.org/01c9d4e73 Mandalay University of Distance Education'),
(63879, 'https://ror.org/01bffta28', 'en', 1, 'https://ror.org/01bffta28 Zhejiang Institute of Freshwater Fisheries 浙江省淡水水产研究所'),
(63880, 'https://ror.org/04kvstc88', 'en', 1, 'https://ror.org/04kvstc88 Yiwu Science and Technology Research Institute 浙江工业大学义乌科学技术研究院'),
(63881, 'https://ror.org/0201w0c54', 'en', 1, 'https://ror.org/0201w0c54 Shijiazhuang Academy of Agriculture and Forestry Sciences 石家庄市农林科学研究院'),
(63882, 'https://ror.org/02n6dhr29', 'en', 1, 'https://ror.org/02n6dhr29 Zhejiang Water Conservancy and Hydropower Survey and Design Institute 浙江省水利水电勘测设计院'),
(63883, 'https://ror.org/009rsan39', 'pt', 1, 'https://ror.org/009rsan39 Centro Universitário UNINOVAFAPI'),
(63884, 'https://ror.org/046tg4t13', 'en', 1, 'https://ror.org/046tg4t13 Zhangjiagang Intelligent Power Research Institute 张家港智能电力科学研究院'),
(63885, 'https://ror.org/00xn1x092', 'no_lang_code', 1, 'https://ror.org/00xn1x092 Changchun Gold Research Institute (China)'),
(63886, 'https://ror.org/00eqa6a26', 'no_lang_code', 1, 'https://ror.org/00eqa6a26 Sichuan Provincial Architectural Design and Research Institute (China) 四川省建筑设计研究院'),
(63887, 'https://ror.org/007y7ej30', 'en', 1, 'https://ror.org/007y7ej30 Beijing Microelectronics Technology Institute'),
(63888, 'https://ror.org/03mzdwb95', 'en', 1, 'https://ror.org/03mzdwb95 Guangzhou Quality Supervision, Inspection and Research Institute 广州质量监督检测研究院'),
(63889, 'https://ror.org/05xt21n42', 'no_lang_code', 1, 'https://ror.org/05xt21n42 Zhejiang Yuhua Electronics (China) 浙江裕华电器有限公司'),
(63890, 'https://ror.org/00p18a507', 'no_lang_code', 1, 'https://ror.org/00p18a507 China First Heavy Industries (China) 中国第一重型机械英'),
(63891, 'https://ror.org/00p24re17', 'no_lang_code', 1, 'https://ror.org/00p24re17 Zhongji Test Equipment (China) 中机试验装备股份有限公司'),
(63892, 'https://ror.org/04pe7qe08', 'no_lang_code', 1, 'https://ror.org/04pe7qe08 Aero Engine Corporation of China (China) 中国航空发动机集团'),
(63893, 'https://ror.org/00gvfpz28', 'en', 1, 'https://ror.org/00gvfpz28 Beijing Automation Control Equipment Institute 北京自动化控制设备研究所创建于'),
(63894, 'https://ror.org/01egb4878', 'no_lang_code', 1, 'https://ror.org/01egb4878 Beijing Enterprises (China)'),
(63895, 'https://ror.org/04pfhpy42', 'no_lang_code', 1, 'https://ror.org/04pfhpy42 Beijing Drainage Group (China) 北京排水集团'),
(63896, 'https://ror.org/05x0rwj57', 'no_lang_code', 1, 'https://ror.org/05x0rwj57 Changzhou Architectural Research Institute Group (China) 常州市建筑科学研究院集团股份有限公司'),
(63897, 'https://ror.org/00wg0ca52', 'no_lang_code', 1, 'https://ror.org/00wg0ca52 Beijing Longda Light Industry Holding (China) 北京隆达轻工控股有限责任公司'),
(63898, 'https://ror.org/02pps8d22', 'en', 1, 'https://ror.org/02pps8d22 Anhui 3D Printing Intelligent Equipment Industry Technology Research Institute 安徽省春谷3D打印智能装备产业技术研究院有限公司'),
(63899, 'https://ror.org/02gvdqg22', 'en', 1, 'https://ror.org/02gvdqg22 Changzhou Changchao Electronic Research Institute 常州市常超电子研究所'),
(63900, 'https://ror.org/01hh1mx02', 'no_lang_code', 1, 'https://ror.org/01hh1mx02 Beijing Guodaotong Highway Design & Research Institute (China) 北京国道通公路设计研究院'),
(63901, 'https://ror.org/02hxk7x55', 'no_lang_code', 1, 'https://ror.org/02hxk7x55 Beijing Institute of Power Machinery (China) 北京动力机械研究所'),
(63902, 'https://ror.org/05datqy35', 'en', 1, 'https://ror.org/05datqy35 Changzhou City Planning and Design Institute 常州市规划设计院'),
(63903, 'https://ror.org/04mw2ty13', 'en', 1, 'https://ror.org/04mw2ty13 Anhui Institute of Information Technology 有 安徽信息工程学院'),
(63904, 'https://ror.org/04982zn36', 'en', 1, 'https://ror.org/04982zn36 Anhui Academy of Coal Science 安徽省煤炭科学研究院'),
(63905, 'https://ror.org/055vcsm02', 'no_lang_code', 1, 'https://ror.org/055vcsm02 Risun (China) 旭陽集團'),
(63906, 'https://ror.org/004b20975', 'en', 1, 'https://ror.org/004b20975 Changzhou Vocational Institute of Textile and Garment 常州纺织服装职业技术学院'),
(63907, 'https://ror.org/02n76vp69', 'en', 1, 'https://ror.org/02n76vp69 Changzhou Zhiye Medical Devices Institute 常州市智业医疗仪器研究所有'),
(63908, 'https://ror.org/02wwrad14', 'en', 1, 'https://ror.org/02wwrad14 Anhui Water Conservancy and Hydropower Survey and Design Institute 安徽省水利水电勘测设计院'),
(63909, 'https://ror.org/03cw0ad25', 'no_lang_code', 1, 'https://ror.org/03cw0ad25 Beijing Urban Construction Design & Development Group (China)'),
(63910, 'https://ror.org/00cd12q64', 'en', 1, 'https://ror.org/00cd12q64 Beijing Zhenxing Metrology & Measurement Institute 北京振兴计量测试研究所'),
(63911, 'https://ror.org/02ydbtz72', 'no_lang_code', 1, 'https://ror.org/02ydbtz72 Chengdu Industrial Equipment Installation (China) 成都市工业设备安装公司 版权所有'),
(63912, 'https://ror.org/0274zyn92', 'en', 1, 'https://ror.org/0274zyn92 Binzhou Technician College 滨州市技师学院'),
(63913, 'https://ror.org/04yr0q610', 'no_lang_code', 1, 'https://ror.org/04yr0q610 Chengdu Tiger Microwave Technology (China) 成都泰格微波技术股份有限公司'),
(63914, 'https://ror.org/03wj9h986', 'no_lang_code', 1, 'https://ror.org/03wj9h986 China Huadian Corporation (China) 中国华电集团公司'),
(63915, 'https://ror.org/02vxhn688', 'en', 1, 'https://ror.org/02vxhn688 Chenguang Research Institute of Chemical Industry'),
(63916, 'https://ror.org/02waqvh82', 'no_lang_code', 1, 'https://ror.org/02waqvh82 China Building Standard Design and Research Institute (China) 中国建筑标准设计研究院'),
(63917, 'https://ror.org/0078x3268', 'no_lang_code', 1, 'https://ror.org/0078x3268 Sinolight (China) 中国轻工集团有限公司'),
(63918, 'https://ror.org/054wntq63', 'en', 1, 'https://ror.org/054wntq63 Suzhou Chien-Shiung Institute of Technology 苏州健雄职业技术学院'),
(63919, 'https://ror.org/05kextd02', 'no_lang_code', 1, 'https://ror.org/05kextd02 Holsin Engineering Consulting Group (China) 合诚工程咨询集团股份有限公司'),
(63920, 'https://ror.org/05y0rb755', 'no_lang_code', 1, 'https://ror.org/05y0rb755 Dalian Plastics Research Institute (China) 大连塑料研究所'),
(63921, 'https://ror.org/03a2tkf74', 'no_lang_code', 1, 'https://ror.org/03a2tkf74 Zhejiang Energy Group (China) 浙江省能源集团有限公司'),
(63922, 'https://ror.org/02pxqb184', 'no_lang_code', 1, 'https://ror.org/02pxqb184 Dalian Synthetic Fiber Research and Design Institute (China) 大连合成纤维研究设计院股份有限公司'),
(63923, 'https://ror.org/03ds52424', 'no_lang_code', 1, 'https://ror.org/03ds52424 Electromechanical Device Installation (China) 机电设备安装有限公司'),
(63924, 'https://ror.org/00ndnb620', 'en', 1, 'https://ror.org/00ndnb620 Energy Research Institute 山东省科学院能源研究所'),
(63925, 'https://ror.org/018jxrz45', 'no_lang_code', 1, 'https://ror.org/018jxrz45 China Tianjin Tools Research Institute (China) 中国天津工具研究院'),
(63926, 'https://ror.org/00mg6mc02', 'no_lang_code', 1, 'https://ror.org/00mg6mc02 China National Salt Industry Corporation (China) 中国盐业总公司'),
(63927, 'https://ror.org/00txf1d86', 'no_lang_code', 1, 'https://ror.org/00txf1d86 Danyang Hengan Chemical (China) 丹阳市恒安化工有限公司是'),
(63928, 'https://ror.org/05998tm92', 'en', 1, 'https://ror.org/05998tm92 Fujian Inspection and Research Institute for Product Quality 福建省产品质量检验研究院'),
(63929, 'https://ror.org/00f5sa326', 'en', 1, 'https://ror.org/00f5sa326 Fujian Institute of Microbiology 福建省微生物研究所'),
(63930, 'https://ror.org/04yep8s05', 'no_lang_code', 1, 'https://ror.org/04yep8s05 Fujian Petrochemical Group (China) 福建石油化工集团有限责任公司'),
(63931, 'https://ror.org/0330st597', 'en', 1, 'https://ror.org/0330st597 Fujian Special Equipment Inspection Institute 福建省特种设备检验研究院'),
(63932, 'https://ror.org/00gth1k53', 'en', 1, 'https://ror.org/00gth1k53 Chongqing Academy of Environmental Science 重庆市环境科学研究院'),
(63933, 'https://ror.org/04yabfc65', 'en', 1, 'https://ror.org/04yabfc65 Gansu Institute of Mechanical and Electrical Technology 甘肃机电职业技术学院 地址'),
(63934, 'https://ror.org/0052whg11', 'en', 1, 'https://ror.org/0052whg11 Gansu Research Institute of Chemical Industry 甘肃省化工研究院有限责任公司'),
(63935, 'https://ror.org/04f63ne57', 'no_lang_code', 1, 'https://ror.org/04f63ne57 Chongqing Construction Engineering Investment Holding (China) 重庆建工投资控股'),
(63936, 'https://ror.org/04ntr0v89', 'en', 1, 'https://ror.org/04ntr0v89 Dongguan Frontier Technology Research Institute 东莞前沿技术研究院'),
(63937, 'https://ror.org/04h4zjp06', 'en', 1, 'https://ror.org/04h4zjp06 Dongguan LungCheong Institute of Intelligent Technology 东莞龙昌智能技术研究院简介'),
(63938, 'https://ror.org/01c5bvd13', 'en', 1, 'https://ror.org/01c5bvd13 Dongguan South China Design and Innovation Institute 东莞华南设计创新研究院'),
(63939, 'https://ror.org/027adfw95', 'no_lang_code', 1, 'https://ror.org/027adfw95 Chongqing Sinstar Packaging Machinery (China) 重庆新星包装机械'),
(63940, 'https://ror.org/003gy5515', 'en', 1, 'https://ror.org/003gy5515 Biology Institute of Shandong Academy of Sciences 山东省科学院生物研究所'),
(63941, 'https://ror.org/00mmxpv38', 'no_lang_code', 1, 'https://ror.org/00mmxpv38 Chongqing Yongda Precision Machinery (China) 重庆永达精密机械'),
(63942, 'https://ror.org/01sx2d521', 'en', 1, 'https://ror.org/01sx2d521 Guangdong Shunde Innovative Design Institute 广东顺德创新设计院'),
(63943, 'https://ror.org/03b5k1h67', 'en', 1, 'https://ror.org/03b5k1h67 Guangdong Food Industry Research Institute 广东省食品工业研究所'),
(63944, 'https://ror.org/00n6b8986', 'no_lang_code', 1, 'https://ror.org/00n6b8986 Guangdong Southern China Special Gas Institute (China) 广东南华特殊气体研究所'),
(63945, 'https://ror.org/0312bsv17', 'en', 1, 'https://ror.org/0312bsv17 Guangdong Urban & Rural Planning and Design Institute 广东省城乡规划设计院'),
(63946, 'https://ror.org/05xzn7m56', 'en', 1, 'https://ror.org/05xzn7m56 Guangdong Provincial Institute of Grain Science and Technology 广东省粮食科学研究所'),
(63947, 'https://ror.org/022k2qy30', 'en', 1, 'https://ror.org/022k2qy30 Guilin Tea Research Institute 桂林茶叶研究所'),
(63948, 'https://ror.org/006gwfr44', 'no_lang_code', 1, 'https://ror.org/006gwfr44 Sailun Jinyu Group (China) 赛轮金宇集团'),
(63949, 'https://ror.org/05xhh0z05', 'no_lang_code', 1, 'https://ror.org/05xhh0z05 CCFEB Industrial Equipment Installation (China) 中建五局工业设备安装有限公司'),
(63950, 'https://ror.org/03bkmgf03', 'en', 1, 'https://ror.org/03bkmgf03 Guangdong Hydropower Planning & Design Institute'),
(63951, 'https://ror.org/01599zj86', 'en', 1, 'https://ror.org/01599zj86 Guangxi Hydraulic Power Machinery Research Institute 广西水利机械研究所'),
(63952, 'https://ror.org/05500xy74', 'no_lang_code', 1, 'https://ror.org/05500xy74 Guangdong Industrial Equipment Installation (China) 广东省工业设备安装有限公司'),
(63953, 'https://ror.org/05tedyt08', 'no_lang_code', 1, 'https://ror.org/05tedyt08 Everbright International (China) 中国光大国际有限公司'),
(63954, 'https://ror.org/02e1zdz48', 'en', 1, 'https://ror.org/02e1zdz48 Guangxi Special Equipment Inspection Institute 广西壮族自治区特种设备检验研究院'),
(63955, 'https://ror.org/00pgy4f30', 'no_lang_code', 1, 'https://ror.org/00pgy4f30 China Electric Equipment Group (China) 中电电气集团有限公司'),
(63956, 'https://ror.org/040hegx59', 'en', 1, 'https://ror.org/040hegx59 Guangxi Agricultural Machinery Research Institute 广西农业机械研究院'),
(63957, 'https://ror.org/000hc5726', 'no_lang_code', 1, 'https://ror.org/000hc5726 First Design and Research Institute MI China (China) 中国第一设计研究院'),
(63958, 'https://ror.org/052h3h832', 'en', 1, 'https://ror.org/052h3h832 Guangxi Institute of Oceanography 广西海洋研究所'),
(63959, 'https://ror.org/02vg9gp47', 'en', 1, 'https://ror.org/02vg9gp47 Guangzhou Building Materials Institute 广州建筑材料研究所'),
(63960, 'https://ror.org/01wtjkn81', 'en', 1, 'https://ror.org/01wtjkn81 Guangdong Special Equipment Inspection and Research Institute 广东省特种设备检测研究院'),
(63961, 'https://ror.org/03z4z1b55', 'en', 1, 'https://ror.org/03z4z1b55 Guangdong Iron and Steel Research Institute 广东省钢铁研究所'),
(63962, 'https://ror.org/000wc3348', 'en', 1, 'https://ror.org/000wc3348 Guangdong Machinery Research Institute 广东省机械研究所'),
(63963, 'https://ror.org/0353dhs61', 'en', 1, 'https://ror.org/0353dhs61 Hubei Polytechnic Institute 湖 北 职 业 技 术 学 院 简 介'),
(63964, 'https://ror.org/01hf8qc75', 'en', 1, 'https://ror.org/01hf8qc75 Hubei Provincial Water Resources and Hydropower Planning Survey and Design Institute 湖北省水利水电规划勘测设计院'),
(63965, 'https://ror.org/00hw5pa98', 'no_lang_code', 1, 'https://ror.org/00hw5pa98 Hunan Agricultural Products (China) 湖南农产品'),
(63966, 'https://ror.org/01qjhbg05', 'en', 1, 'https://ror.org/01qjhbg05 Guangzhou Railway Polytechnic 广州铁路职业技术学院'),
(63967, 'https://ror.org/04p1qqj97', 'en', 1, 'https://ror.org/04p1qqj97 Hunan Communications Research Institute 湖南交通研究院'),
(63968, 'https://ror.org/03dhkf841', 'no_lang_code', 1, 'https://ror.org/03dhkf841 Hangzhou West-Lake Fountain Installation Serials (China) 杭州西湖喷泉设备成套有限公司'),
(63969, 'https://ror.org/050bxqn58', 'en', 1, 'https://ror.org/050bxqn58 Xihu Institute of Electronic Research 杭州西湖电子研究所'),
(63970, 'https://ror.org/01cxrh590', 'en', 1, 'https://ror.org/01cxrh590 South China National Centre of Metrology 华南国家计量测试中心'),
(63971, 'https://ror.org/04jxank96', 'en', 1, 'https://ror.org/04jxank96 Hunan Non-ferrous Metallurgical Labor Protection Institute 湖南省有色金属劳动保护研究所'),
(63972, 'https://ror.org/02b9rcr39', 'en', 1, 'https://ror.org/02b9rcr39 Harbin Institute of Petroleum 哈尔滨石油学院'),
(63973, 'https://ror.org/02vy7sg87', 'en', 1, 'https://ror.org/02vy7sg87 Hunan Rice Research Institute 湖南省水稻研究所'),
(63974, 'https://ror.org/04vrn7932', 'en', 1, 'https://ror.org/04vrn7932 Hunan Software Vocational Institute 湖南软件职业学院'),
(63975, 'https://ror.org/05cmpp263', 'en', 1, 'https://ror.org/05cmpp263 Hunan Vocational College of Safety Technology 湖南安全技术职业学院'),
(63976, 'https://ror.org/0391pty66', 'no_lang_code', 1, 'https://ror.org/0391pty66 Hunan Xiangdian Test Research Institute (China) 湖南湘电测试研究所'),
(63977, 'https://ror.org/05bbfzp96', 'en', 1, 'https://ror.org/05bbfzp96 Harbin Welding Institute 哈尔滨焊接研究院有限公司'),
(63978, 'https://ror.org/02fqh4r06', 'en', 1, 'https://ror.org/02fqh4r06 Jiangsu Provincial Marine and Fisheries Bureau 江苏省海洋与渔业局 地址'),
(63979, 'https://ror.org/01hy8fk80', 'en', 1, 'https://ror.org/01hy8fk80 Guizhou Electromechanical Research and Design Institute'),
(63980, 'https://ror.org/01s5dew76', 'en', 1, 'https://ror.org/01s5dew76 Institute of Food Science and Technology 食品科学与技术研究所'),
(63981, 'https://ror.org/00ag2q384', 'en', 1, 'https://ror.org/00ag2q384 Hebei Research Institute of Microbiology 河北省微生物研究所'),
(63982, 'https://ror.org/05wzyqm87', 'en', 1, 'https://ror.org/05wzyqm87 Guizhou Institute of Building Materials Science Research and Design Institute'),
(63983, 'https://ror.org/05r1f9v61', 'en', 1, 'https://ror.org/05r1f9v61 Guizhou Provincial Institute of Mountain Agricultural Machinery'),
(63984, 'https://ror.org/03zp7sq53', 'no_lang_code', 1, 'https://ror.org/03zp7sq53 Hefei Municipal Design and Research Institute (China) 合肥市市政设计研究总院有限公司'),
(63985, 'https://ror.org/05x0baj11', 'en', 1, 'https://ror.org/05x0baj11 Tianyi Institute of Biological Technology 合肥天一生物技术研究所成'),
(63986, 'https://ror.org/01em57323', 'en', 1, 'https://ror.org/01em57323 Guizhou Province Chemical Industry Research Institute'),
(63987, 'https://ror.org/01a1ft290', 'en', 1, 'https://ror.org/01a1ft290 Institute of Industry Technology Guangzhou 广州中国科学院工业技术研究院'),
(63988, 'https://ror.org/035brg434', 'no_lang_code', 1, 'https://ror.org/035brg434 Guizhou Magic Pharmaceutical (China)'),
(63989, 'https://ror.org/02bfrg439', 'en', 1, 'https://ror.org/02bfrg439 Heilongjiang Academy of Forestry 黑龙江省林业科学院'),
(63990, 'https://ror.org/03ekz9c12', 'no_lang_code', 1, 'https://ror.org/03ekz9c12 Guizhou Winstar Hydraulic Transmission Machinery (China) 贵州凯星液力传动机械有限公司'),
(63991, 'https://ror.org/04vpw5755', 'en', 1, 'https://ror.org/04vpw5755 Heilongjiang Institute of Wood Science 黑龙江省木材科学研究所'),
(63992, 'https://ror.org/00a2qtn46', 'en', 1, 'https://ror.org/00a2qtn46 Heilongjiang Provincial Metrology and Testing Institute 黑龙江省计量检定测试院 技'),
(63993, 'https://ror.org/00xqhy713', 'en', 1, 'https://ror.org/00xqhy713 Heilongjiang Vocational Institute of Ecological Engineering 黑龙江生态工程职业学院'),
(63994, 'https://ror.org/05h8w0m23', 'en', 1, 'https://ror.org/05h8w0m23 Leukaemia & Lymphoma NI'),
(63995, 'https://ror.org/01wm3c497', 'en', 1, 'https://ror.org/01wm3c497 Prostate Cancer Research'),
(63996, 'https://ror.org/03n4ayy20', 'en', 1, 'https://ror.org/03n4ayy20 RAFT'),
(63997, 'https://ror.org/04q38p245', 'en', 1, 'https://ror.org/04q38p245 Restore'),
(63998, 'https://ror.org/028v1x030', 'en', 1, 'https://ror.org/028v1x030 Reverse Rett'),
(63999, 'https://ror.org/0324mr378', 'en', 1, 'https://ror.org/0324mr378 Borne Foundation'),
(64000, 'https://ror.org/046s87c39', 'en', 1, 'https://ror.org/046s87c39 The Lewy Body Society'),
(64001, 'https://ror.org/00jsa0k29', 'en', 1, 'https://ror.org/00jsa0k29 PBC Foundation'),
(64002, 'https://ror.org/04wqtzp08', 'no_lang_code', 1, 'https://ror.org/04wqtzp08 Henan Provincial Institute of Communications Planning Survey & Design (China) 河南省交通规划设计研究院股份有限公司'),
(64003, 'https://ror.org/031nqzs81', 'en', 1, 'https://ror.org/031nqzs81 Horological Research Institute of Light Industry 轻工业钟表研究所'),
(64004, 'https://ror.org/02q5y6156', 'en', 1, 'https://ror.org/02q5y6156 Nanchang Institute of Science & Technology'),
(64005, 'https://ror.org/048shx058', 'no_lang_code', 1, 'https://ror.org/048shx058 Wuxi Taiji industry (China) 无锡市太极实业股份有限公司'),
(64006, 'https://ror.org/01jah5c57', 'no_lang_code', 1, 'https://ror.org/01jah5c57 ATK Holding Group (China)'),
(64007, 'https://ror.org/02hqs8f63', 'en', 1, 'https://ror.org/02hqs8f63 Nanjing Institute of Mechatronic Technology 南京机电技术研究所'),
(64008, 'https://ror.org/03m002728', 'no_lang_code', 1, 'https://ror.org/03m002728 Jiangsu Gaoke Applied Science Research Institute (China) 江苏高科应用科学研究院有限公司'),
(64009, 'https://ror.org/01d4y8v03', 'en', 1, 'https://ror.org/01d4y8v03 Jiangsu Vocational Institute of Architectural Technology 江苏建筑职业技术学院'),
(64010, 'https://ror.org/009cevv08', 'en', 1, 'https://ror.org/009cevv08 Institute of Research of Iron and Steel Shasteel 钢铁研究所研究所'),
(64011, 'https://ror.org/05qfv6h82', 'no_lang_code', 1, 'https://ror.org/05qfv6h82 Nanjing Lishui Electronics Research Institute (China) 南京丽水电子研究所'),
(64012, 'https://ror.org/0412z8048', 'no_lang_code', 1, 'https://ror.org/0412z8048 Jiangsu Kawei Auto Industrial Group (China) 江苏卡威汽车工业集团股份有限公司'),
(64013, 'https://ror.org/05tt6m403', 'en', 1, 'https://ror.org/05tt6m403 Nanjing Polytechnic Institute 南京工业职业技术学院'),
(64014, 'https://ror.org/04pekda06', 'no_lang_code', 1, 'https://ror.org/04pekda06 Jiangsu Maritime Institute 国际教育交流与服务中心'),
(64015, 'https://ror.org/00zy60964', 'en', 1, 'https://ror.org/00zy60964 Jiangsu Province Special Equipment Safety Supervision and Inspection Institute 江苏省特种设备安全监督检验研究院无锡分院'),
(64016, 'https://ror.org/036kvqx88', 'no_lang_code', 1, 'https://ror.org/036kvqx88 Jiangsu Provincial Architectural Design and Research Institute (China) 江苏省建筑设计研究院有限公司'),
(64017, 'https://ror.org/02mnaa826', 'no_lang_code', 1, 'https://ror.org/02mnaa826 China Design Group (China) 中设设计集团股份'),
(64018, 'https://ror.org/034yf9p50', 'no_lang_code', 1, 'https://ror.org/034yf9p50 Nanjing Water Conservancy Planning & Design Institute (China) 南京市水利规划设计院股份有限公司'),
(64019, 'https://ror.org/02gdmz419', 'en', 1, 'https://ror.org/02gdmz419 Liaoning Provincial Bureau of Quality and Technical Supervision 辽宁省质量技术监督局'),
(64020, 'https://ror.org/034jmpk69', 'en', 1, 'https://ror.org/034jmpk69 North China Municipal Engineering Design & Research Institute 中国市政工程华北设计研究总院有限公司'),
(64021, 'https://ror.org/01ny34961', 'no_lang_code', 1, 'https://ror.org/01ny34961 China Huarong Energy (China) 中国华融能源'),
(64022, 'https://ror.org/01gpm9f56', 'no_lang_code', 1, 'https://ror.org/01gpm9f56 Jiangsu Provincial Water Survey & Design Institute (China) 江苏省水利勘测设计研究院有限公司');
INSERT INTO `rors` VALUES
(64023, 'https://ror.org/033fj2y02', 'en', 1, 'https://ror.org/033fj2y02 Liaoning Petroleum Equipment Institute 辽宁陆海石油装备研究院有限公司'),
(64024, 'https://ror.org/04j4jwe91', 'en', 1, 'https://ror.org/04j4jwe91 Jiangsu Institute of Hydraulic Science and Technology 江苏省水利科学研究院'),
(64025, 'https://ror.org/03c4brc68', 'no_lang_code', 1, 'https://ror.org/03c4brc68 Nantong Tongbo Equipment Installation Engineering (China) 南通通博设备安装工程有限公司'),
(64026, 'https://ror.org/00822yz63', 'en', 1, 'https://ror.org/00822yz63 Liaoning Planning and Design Institute of Post and Telecommunication 辽宁邮电规划设计院有限公司版'),
(64027, 'https://ror.org/047qkza04', 'no_lang_code', 1, 'https://ror.org/047qkza04 Jiangsu Yanjiang Chemical Resources Development Research Institute (China) 江苏沿江化学资源开发研究院'),
(64028, 'https://ror.org/02azzxw19', 'en', 1, 'https://ror.org/02azzxw19 Liaoning Water Conservancy Society 辽宁省水利学会'),
(64029, 'https://ror.org/01b5yxj44', 'no_lang_code', 1, 'https://ror.org/01b5yxj44 Jiangxi Institute of Agricultural Machinery (Company) 江西农业机械研究所'),
(64030, 'https://ror.org/03sk2bs13', 'en', 1, 'https://ror.org/03sk2bs13 European Foundation for the Improvement of Living and Working Conditions Fondúireacht Eorpach chun Dálaí Maireachtála agus Oibre a Fheabhsú'),
(64031, 'https://ror.org/0013rer79', 'no_lang_code', 1, 'https://ror.org/0013rer79 Ningbo Transportation Planning and Design Institute (China)'),
(64032, 'https://ror.org/05vdz3s03', 'no_lang_code', 1, 'https://ror.org/05vdz3s03 Ningxia Machinery Research Institute (China)'),
(64033, 'https://ror.org/043my4k18', 'en', 1, 'https://ror.org/043my4k18 Jiangxi Provincial Institute of Water Resources Planning and Design 江西省水利规划设计研究院 版权所有'),
(64034, 'https://ror.org/04ttwb316', 'en', 1, 'https://ror.org/04ttwb316 Northwest Research Institute of Chemical Industry 西北化工研究院'),
(64035, 'https://ror.org/023fyxd70', 'en', 1, 'https://ror.org/023fyxd70 Panzhihua Academy of Agriculture and Forestry Sciences 攀枝花市农林科学研究院是由'),
(64036, 'https://ror.org/04acgky61', 'en', 1, 'https://ror.org/04acgky61 Luoyang Cement Engineering Design and Research Institute 洛阳水泥工程设计研究院'),
(64037, 'https://ror.org/03m6cnv16', 'no_lang_code', 1, 'https://ror.org/03m6cnv16 NTST Forestry Machine Manufacture Installation (China) NTST 林业机械制造安装'),
(64038, 'https://ror.org/047by7h51', 'no_lang_code', 1, 'https://ror.org/047by7h51 Luoyang Sanlong Installation and Maintenance (China) 洛阳三隆安装检修有限公司'),
(64039, 'https://ror.org/040pyq062', 'no_lang_code', 1, 'https://ror.org/040pyq062 Shandong Lianxing Energy Group (China) 山东联星能源集团'),
(64040, 'https://ror.org/05vtgxb02', 'no_lang_code', 1, 'https://ror.org/05vtgxb02 Jinan Municipal Engineering Design & Research Institute (China) 济南市市政工程设计研究院'),
(64041, 'https://ror.org/01f4ntp03', 'en', 1, 'https://ror.org/01f4ntp03 Material and Industrial Technology Research Institute Beijing 新材料与产业技术北京研究院'),
(64042, 'https://ror.org/03x1j8d96', 'no_lang_code', 1, 'https://ror.org/03x1j8d96 China Railway Design Corporation (China) 中国铁路设计集团有限公司'),
(64043, 'https://ror.org/01wcts620', 'en', 1, 'https://ror.org/01wcts620 Shandong Transportation Research Institute 山东省交通科学研究院'),
(64044, 'https://ror.org/01rvzsj56', 'en', 1, 'https://ror.org/01rvzsj56 Qingdao Aerospace Semiconductor Research Institute 青岛航天半导体研究所有限公司原'),
(64045, 'https://ror.org/0222tsk12', 'en', 1, 'https://ror.org/0222tsk12 Shanghai Electric Tool Research Institute 上海电动工具研究所'),
(64046, 'https://ror.org/024aa1608', 'en', 1, 'https://ror.org/024aa1608 Shanghai Pesticide Research Institute 上海市农药研究所有限公司'),
(64047, 'https://ror.org/00z74rd31', 'no_lang_code', 1, 'https://ror.org/00z74rd31 Shanghai FRP Research Institute (China) 上海玻璃钢研究所'),
(64048, 'https://ror.org/04dmkfz43', 'no_lang_code', 1, 'https://ror.org/04dmkfz43 Decai Decoration (China) 德才裝飾股份有限公'),
(64049, 'https://ror.org/0097ttw21', 'no_lang_code', 1, 'https://ror.org/0097ttw21 Qingdao Installation & Construction (China) 青岛安装建设股份有限公司'),
(64050, 'https://ror.org/044f58834', 'no_lang_code', 1, 'https://ror.org/044f58834 Shanghai Huayi Group (China) 上海华谊(集团)公司'),
(64051, 'https://ror.org/00jvma136', 'no_lang_code', 1, 'https://ror.org/00jvma136 Shanghai Industrial Boiler Research Institute (China) 上海工业锅炉研究所'),
(64052, 'https://ror.org/03ssqhs45', 'en', 1, 'https://ror.org/03ssqhs45 Qingdao Institute of Animal Husbandry and Veterinary Medicine 青岛市畜牧兽医研究所'),
(64053, 'https://ror.org/03j1pdd39', 'en', 1, 'https://ror.org/03j1pdd39 Shanghai Industrial Technology Institute 上海工业技术学院'),
(64054, 'https://ror.org/04re28h79', 'en', 1, 'https://ror.org/04re28h79 Shaanxi Institute of International Trade & Commerce 陕西国际商贸学院'),
(64055, 'https://ror.org/01vqbzy86', 'en', 1, 'https://ror.org/01vqbzy86 Shanghai Laser Technology Institute 上海市激光技术研究所'),
(64056, 'https://ror.org/00gznmy49', 'en', 1, 'https://ror.org/00gznmy49 Shaanxi Railway Institute 陕西铁道学院'),
(64057, 'https://ror.org/04jvr6m30', 'no_lang_code', 1, 'https://ror.org/04jvr6m30 China Post (China) 中国邮政'),
(64058, 'https://ror.org/057h57w33', 'en', 1, 'https://ror.org/057h57w33 Qiqihar Institute of Engineering 齐齐哈尔工程学院'),
(64059, 'https://ror.org/04k7c8d26', 'no_lang_code', 1, 'https://ror.org/04k7c8d26 Shanghai Institute of Process Automation Instrumentation (China) 上海工业自动化仪表研究院有限公司'),
(64060, 'https://ror.org/05ceqm842', 'no_lang_code', 1, 'https://ror.org/05ceqm842 CNEX (China)'),
(64061, 'https://ror.org/003tn6j35', 'en', 1, 'https://ror.org/003tn6j35 Shandong Institute of Agricultural Sustainable Development 山东农业可持续发展研究院'),
(64062, 'https://ror.org/04vmegd74', 'en', 1, 'https://ror.org/04vmegd74 Shanghai Landscape Architectural Design Research institute 上海园林建筑设计研究院有限公司'),
(64063, 'https://ror.org/03gb38m78', 'en', 1, 'https://ror.org/03gb38m78 Shanghai Tongji Urban Planning and Design Institute 上海同济城市规划设计研究院在同'),
(64064, 'https://ror.org/01wxtxj33', 'no_lang_code', 1, 'https://ror.org/01wxtxj33 Shanghai Urban Transportation Design Institute (China) 上海市交通设计院'),
(64065, 'https://ror.org/03gwaxw53', 'en', 1, 'https://ror.org/03gwaxw53 Services Australia'),
(64066, 'https://ror.org/01n94r461', 'en', 1, 'https://ror.org/01n94r461 Shandong Academy of Forestry 山东省林业科学院'),
(64067, 'https://ror.org/00zsjqa04', 'en', 1, 'https://ror.org/00zsjqa04 Light Industry Hangzhou Electromechanical Design Institute 轻工业杭州机电设计研究院'),
(64068, 'https://ror.org/005ysj118', 'en', 1, 'https://ror.org/005ysj118 Changzhou Vocational Institute of Light Industry 常州轻工职业技术学院'),
(64069, 'https://ror.org/02y8m9y76', 'en', 1, 'https://ror.org/02y8m9y76 Beijing Institute of Water 北京水研究所'),
(64070, 'https://ror.org/05k393r70', 'en', 1, 'https://ror.org/05k393r70 Hunan Energy Research Institute 湖南省能源研究所'),
(64071, 'https://ror.org/00wgtjd08', 'en', 1, 'https://ror.org/00wgtjd08 Guangdong Institute of Arts and Sciences 广东文理职业学院'),
(64072, 'https://ror.org/01n4hda81', 'no_lang_code', 1, 'https://ror.org/01n4hda81 Shandong Huanneng Design Institute (China) 山东环能设计院'),
(64073, 'https://ror.org/03xk2yz39', 'en', 1, 'https://ror.org/03xk2yz39 Shandong Institute of Commerce & Technology 山东商业职业技术学院'),
(64074, 'https://ror.org/057zxk877', 'no_lang_code', 1, 'https://ror.org/057zxk877 Tianjin Aolian Special Steel Structure Installation Engineering (China) 天津市奥联特钢结构安装工程有限公司'),
(64075, 'https://ror.org/0158njk12', 'no_lang_code', 1, 'https://ror.org/0158njk12 Shanxi Industrial Equipment Installation Group (Taiwan) 山西省工业设备安装集团有限公司'),
(64076, 'https://ror.org/05acyge75', 'no_lang_code', 1, 'https://ror.org/05acyge75 Shantou Light Industrial Machinery Factory (China) 汕头轻工机械厂有限公司'),
(64077, 'https://ror.org/04q6c1q57', 'en', 1, 'https://ror.org/04q6c1q57 Shandong Academy of Pharmaceutical Sciences 山东省药学科学院'),
(64078, 'https://ror.org/02tthqe19', 'en', 1, 'https://ror.org/02tthqe19 Tianjin Institute of Advanced Technology 天津中科先进技术研究院'),
(64079, 'https://ror.org/008hpge95', 'no_lang_code', 1, 'https://ror.org/008hpge95 Shenzhen Metro (China) 深圳市地铁'),
(64080, 'https://ror.org/023t03t27', 'en', 1, 'https://ror.org/023t03t27 Shandong Ocean and Fisheries Department 山东省海洋与渔业厅'),
(64081, 'https://ror.org/05y7veh17', 'en', 1, 'https://ror.org/05y7veh17 Shanxi Transportation Research Institute 山西省交通科学研究院'),
(64082, 'https://ror.org/0014vc978', 'en', 1, 'https://ror.org/0014vc978 Shanxi Provincial Traffic Planning Survey and Design Institute 山西省交通规划勘察设计院'),
(64083, 'https://ror.org/010ryc044', 'no_lang_code', 1, 'https://ror.org/010ryc044 Tianjin Research Institute of Electric Science (China) 天津电气科学研究院有限公司'),
(64084, 'https://ror.org/01pjqz574', 'no_lang_code', 1, 'https://ror.org/01pjqz574 Zibo Qixiang Petrochemical Industry Group (China) 淄博启祥石化工业集团'),
(64085, 'https://ror.org/00xgj2b15', 'no_lang_code', 1, 'https://ror.org/00xgj2b15 Tianjin Food Group (China) 天津食品集团'),
(64086, 'https://ror.org/02t8wny28', 'no_lang_code', 1, 'https://ror.org/02t8wny28 Tianjin Ganghang Installation Engineering (China) 天津港航安装工程有限责任公司'),
(64087, 'https://ror.org/04nk2tb51', 'en', 1, 'https://ror.org/04nk2tb51 Shandong Special Equipment Inspection Institute 山东省特种设备检验研究院有限公司'),
(64088, 'https://ror.org/016k9q072', 'no_lang_code', 1, 'https://ror.org/016k9q072 Shandong Academy of Textile Science (China) 山东纺织科学研究院'),
(64089, 'https://ror.org/028kjem67', 'en', 1, 'https://ror.org/028kjem67 Solar Energy Research Institute of Sun Yat-sen University 顺德中山大学太阳能研究院由'),
(64090, 'https://ror.org/01tbkq861', 'no_lang_code', 1, 'https://ror.org/01tbkq861 Tianjin Geothermal Exploration, Development and Design Institute (China) 天津地热勘查开发设计院'),
(64091, 'https://ror.org/00rxcx675', 'en', 1, 'https://ror.org/00rxcx675 Tianjin Heat Treatment Research Institute 天津市热处理研究所有限公司'),
(64092, 'https://ror.org/05fbfky85', 'en', 1, 'https://ror.org/05fbfky85 Sichuan Dongpo China Kimchi Industrial Technology Research Institute 四川东坡中国泡菜产业技术研究院是应泡'),
(64093, 'https://ror.org/03pydxa09', 'en', 1, 'https://ror.org/03pydxa09 Tianjin Institute of Metrological Supervision Testing 天津计量监督检测科学研究院'),
(64094, 'https://ror.org/02zk30t14', 'no_lang_code', 1, 'https://ror.org/02zk30t14 Wolong Electric Group Hangzhou Research Institute (China)'),
(64095, 'https://ror.org/01mdgds23', 'en', 1, 'https://ror.org/01mdgds23 Sichuan Machinery Research and Design Institute 四川省机械研究设计院机'),
(64096, 'https://ror.org/042h3jc15', 'en', 1, 'https://ror.org/042h3jc15 Suzhou Electronic Products Inspection 苏州电子产品检验所'),
(64097, 'https://ror.org/00r2js569', 'no_lang_code', 1, 'https://ror.org/00r2js569 Golden Concord Group (China) 金色 康科德集团'),
(64098, 'https://ror.org/04h9hnm31', 'en', 1, 'https://ror.org/04h9hnm31 Tianjin Metallurgical Vocational Technical College 天津冶金职业技术学院'),
(64099, 'https://ror.org/05tm3n275', 'no_lang_code', 1, 'https://ror.org/05tm3n275 ARTS Group (China) 艺术 组'),
(64100, 'https://ror.org/05xwtrp65', 'en', 1, 'https://ror.org/05xwtrp65 Suzhou Industrial Park Institute of Services Outsourcing 苏州工业园区服务外包职业学院'),
(64101, 'https://ror.org/02dw6dx51', 'no_lang_code', 1, 'https://ror.org/02dw6dx51 Sinograin (China) 中储粮'),
(64102, 'https://ror.org/01c8w8x70', 'en', 1, 'https://ror.org/01c8w8x70 Tianjin North Garden Ecological Environmental Engineering Research Institute 天津北园生态环境工程研究所'),
(64103, 'https://ror.org/0305q1250', 'en', 1, 'https://ror.org/0305q1250 Wuhan Modern Urban Agriculture Planning and Design Institute 武汉现代都市农业规划设计院股份有限公'),
(64104, 'https://ror.org/05krfyb07', 'no_lang_code', 1, 'https://ror.org/05krfyb07 MEMS RIGHT (China)'),
(64105, 'https://ror.org/00ycq1k13', 'en', 1, 'https://ror.org/00ycq1k13 Wuhan Municipal Engineering Design & Research Institute 武汉市政工程设计研究院有限责任公司简介'),
(64106, 'https://ror.org/02gdweq07', 'en', 1, 'https://ror.org/02gdweq07 Suzhou Institute of Trade & Commerce 苏州市商贸学院'),
(64107, 'https://ror.org/057ngkn52', 'no_lang_code', 1, 'https://ror.org/057ngkn52 Xianyang Research and Design Institute of Ceramics (China) 咸阳陶瓷研究设计院有限公司'),
(64108, 'https://ror.org/03ywvs716', 'en', 1, 'https://ror.org/03ywvs716 Suzhou Polytechnic Institute of Agriculture 苏州工业职业技术学院'),
(64109, 'https://ror.org/00a9kc733', 'no_lang_code', 1, 'https://ror.org/00a9kc733 Tianjin Rubber Industry Institute (China) 天津市橡胶工业研究所'),
(64110, 'https://ror.org/02mcdae06', 'en', 1, 'https://ror.org/02mcdae06 Wuhan Ship Development & Design Institute 武汉船舶设计研究院'),
(64111, 'https://ror.org/04m2bcn74', 'no_lang_code', 1, 'https://ror.org/04m2bcn74 System Equipment (China) 系统设备'),
(64112, 'https://ror.org/025mpfp07', 'en', 1, 'https://ror.org/025mpfp07 Tianjin Special Equipment Supervision and Inspection Technology Research Institute 天津市特种设备监督检查检验技术研究院'),
(64113, 'https://ror.org/01pmqys24', 'en', 1, 'https://ror.org/01pmqys24 Tianjin Textile Machinery and Equipment Research Institute 天津纺织机械器材研究所'),
(64114, 'https://ror.org/01s5hh873', 'en', 1, 'https://ror.org/01s5hh873 Xinjiang Institute of Engineering 新疆工程学院'),
(64115, 'https://ror.org/03hmm9666', 'no_lang_code', 1, 'https://ror.org/03hmm9666 Tianjin Energy Investment Group (China) 天津能源投资集团有限公司'),
(64116, 'https://ror.org/00swjtf68', 'en', 1, 'https://ror.org/00swjtf68 Anhui Institute of Robotics Industrial Technology Research Institute 安徽工程大学机器人产业技术研究院'),
(64117, 'https://ror.org/01mj1ap13', 'en', 1, 'https://ror.org/01mj1ap13 Xinjiang Industry Technical College 新疆轻工职业技术学院'),
(64118, 'https://ror.org/035mna818', 'en', 1, 'https://ror.org/035mna818 Wuhan Academy of Agricultural Sciences 武汉市农业科学院'),
(64119, 'https://ror.org/0087dde40', 'no_lang_code', 1, 'https://ror.org/0087dde40 Taixing First Construction Group (China) 泰兴一建建设集团有限公司'),
(64120, 'https://ror.org/01f91hj24', 'no_lang_code', 1, 'https://ror.org/01f91hj24 Xinjiang Machinery Research Institute (China) 新疆机械研究院股份有限公司'),
(64121, 'https://ror.org/049w4dp92', 'en', 1, 'https://ror.org/049w4dp92 Wuhu Hit Robot Technology Research Institute 哈特机器人研究院'),
(64122, 'https://ror.org/05wd2ky28', 'en', 1, 'https://ror.org/05wd2ky28 Tianjin Academy for Intelligent Recognition Technologies 天津中科智能识别产业技术研究院'),
(64123, 'https://ror.org/00dy5pp48', 'no_lang_code', 1, 'https://ror.org/00dy5pp48 Lanzhou Great Wall Electrical Corporation 兰州长城电工股份有限公司'),
(64124, 'https://ror.org/00xnkp952', 'en', 1, 'https://ror.org/00xnkp952 Xinjiang Uygur Autonomous Region Institute Inspection of Special Equipment 新疆维吾尔自治区特种设备检验研究院'),
(64125, 'https://ror.org/022t97w40', 'en', 1, 'https://ror.org/022t97w40 Guomao Engineering Design Institute 国贸工程设计院'),
(64126, 'https://ror.org/008qws759', 'en', 1, 'https://ror.org/008qws759 Xinjiang Uygur Autonomous Region Product Quality Supervision and Inspection Institute 新疆维吾尔自治区产品质量监督检验研究院'),
(64127, 'https://ror.org/00jma7w30', 'en', 1, 'https://ror.org/00jma7w30 Wuxi Dongfang Environmental Engineering Design Institute 无锡市东方环境工程设计研究所有限公司'),
(64128, 'https://ror.org/00s011v85', 'no_lang_code', 1, 'https://ror.org/00s011v85 Coal Industry Taiyuan Design and Research Institute (China) 煤炭工业太原设计研究院'),
(64129, 'https://ror.org/03snx9z92', 'en', 1, 'https://ror.org/03snx9z92 Wuxi Fuel Injection Equipment Research Institute 中国第一汽车股份有限公司无锡油泵油嘴研究所'),
(64130, 'https://ror.org/0475cs869', 'no_lang_code', 1, 'https://ror.org/0475cs869 Wuxi Industrial Equipment Installation (China) 无锡市工业设备安装有限公司'),
(64131, 'https://ror.org/05qf0w940', 'no_lang_code', 1, 'https://ror.org/05qf0w940 Tongling Nonferrous Metals Group Holding (China) 铜陵有色金属集团控股有限公司'),
(64132, 'https://ror.org/04rp1yr92', 'en', 1, 'https://ror.org/04rp1yr92 Yancheng Vocational Institute of Industry Technology 盐城工业职业技术学院'),
(64133, 'https://ror.org/02grzhe48', 'en', 1, 'https://ror.org/02grzhe48 Yangzhou Polytechnic Institute 扬州工业职业技术学院'),
(64134, 'https://ror.org/02d0fkx94', 'en', 1, 'https://ror.org/02d0fkx94 Taiyuan Institute of Technology'),
(64135, 'https://ror.org/00hc2b418', 'en', 1, 'https://ror.org/00hc2b418 Wuxi Pneumatic Technology Research Institute'),
(64136, 'https://ror.org/043kg1637', 'no_lang_code', 1, 'https://ror.org/043kg1637 Chambroad Chemical Industry Research Institute (China) 香港化学工业研究所有限公司'),
(64137, 'https://ror.org/0009f0p28', 'en', 1, 'https://ror.org/0009f0p28 Wuxi Municipal Product Quality Supervision and Inspection Institute 无锡市产品质量监督检验院'),
(64138, 'https://ror.org/04mf01f43', 'no_lang_code', 1, 'https://ror.org/04mf01f43 Wanda Group (China) 万达集团'),
(64139, 'https://ror.org/04yq0fn97', 'no_lang_code', 1, 'https://ror.org/04yq0fn97 Yueyang Changling Equipment Research Institute (China) 岳阳长岭设备研究所有限公司'),
(64140, 'https://ror.org/03mbt7q53', 'en', 1, 'https://ror.org/03mbt7q53 Wuxi Wind Power Design and Research Institute 无锡风电设计研究院有限公司'),
(64141, 'https://ror.org/01dkhme60', 'en', 1, 'https://ror.org/01dkhme60 First Research Institute of the Ministry of Public Security 公安部第一研究所'),
(64142, 'https://ror.org/02z4pnd66', 'no_lang_code', 1, 'https://ror.org/02z4pnd66 Zhejiang Modern Chinese Medicine and Natural Medicine Research Institute (China) 浙江现代中药与天然药物研究院有限公司于'),
(64143, 'https://ror.org/00jzxnz73', 'en', 1, 'https://ror.org/00jzxnz73 The Third Institute of the Ministry of Public Security 公安部第三研究所'),
(64144, 'https://ror.org/00f89ms08', 'en', 1, 'https://ror.org/00f89ms08 Zhejiang Province Institute of Architectural Design and Research 浙江省建筑设计研究院'),
(64145, 'https://ror.org/04zh2hd39', 'no_lang_code', 1, 'https://ror.org/04zh2hd39 Yunnan Investment Group (China) 云投集团'),
(64146, 'https://ror.org/011cs1z84', 'en', 1, 'https://ror.org/011cs1z84 Zhejiang Provincial Institute of Communications Planning,Design & Research 浙江省交通规划设计研究院'),
(64147, 'https://ror.org/04y76yy92', 'no_lang_code', 1, 'https://ror.org/04y76yy92 Zheng yan Seed (China) 郑燕种子'),
(64148, 'https://ror.org/02vnfe476', 'no_lang_code', 1, 'https://ror.org/02vnfe476 Zhe jiang Research Institute of Traditional Chinese Medicine (China) 浙江省中医药研究院'),
(64149, 'https://ror.org/01dt3rt55', 'en', 1, 'https://ror.org/01dt3rt55 Wuzhou Food and Drug Administration 梧州市食品药品监督管理局'),
(64150, 'https://ror.org/03bw4fh67', 'no_lang_code', 1, 'https://ror.org/03bw4fh67 Zhejiang Seahead Ship Design And Research Institute (China) 浙江欣海船舶设计研究院有限公司'),
(64151, 'https://ror.org/053zgay46', 'en', 1, 'https://ror.org/053zgay46 Zhejiang Institute of Modern Textile Industry 浙江省现代纺织工业研究院'),
(64152, 'https://ror.org/05f399j69', 'en', 1, 'https://ror.org/05f399j69 Zhejiang Metallurgical Research Institute 浙江冶金研究院'),
(64153, 'https://ror.org/03aqaa732', 'en', 1, 'https://ror.org/03aqaa732 Yunnan Machinery Research and Design Institute 云南省机械研究设计院'),
(64154, 'https://ror.org/03myvh511', 'en', 1, 'https://ror.org/03myvh511 Zhangzhou Vocational and Technical College 漳州职业技术学院'),
(64155, 'https://ror.org/03k52at40', 'en', 1, 'https://ror.org/03k52at40 Academy of Philosophy 철학 아카데미'),
(64156, 'https://ror.org/05ynh7w25', 'no_lang_code', 1, 'https://ror.org/05ynh7w25 ZheJiang East Crystal Electronic (China) 浙江东晶电子股份有限公司'),
(64157, 'https://ror.org/026w3f849', 'no_lang_code', 1, 'https://ror.org/026w3f849 Jiangsu Yonggang Group (China)'),
(64158, 'https://ror.org/05xh4v485', 'en', 1, 'https://ror.org/05xh4v485 Korean Political Science Association 한국정치학회'),
(64159, 'https://ror.org/04e5z5943', 'en', 1, 'https://ror.org/04e5z5943 Tasan Cultural Foundation 다산학술문화재단은 근세'),
(64160, 'https://ror.org/019w5wj36', 'no_lang_code', 1, 'https://ror.org/019w5wj36 (주)에어레인 Airrane (South Korea)'),
(64161, 'https://ror.org/03v27je35', 'no_lang_code', 1, 'https://ror.org/03v27je35 (주)셀루메드는 Cellumed (South Korea)'),
(64162, 'https://ror.org/00k872414', 'en', 1, 'https://ror.org/00k872414 Korean Association for Radiation Application 한국방사선진흥협회'),
(64163, 'https://ror.org/024xby240', 'no_lang_code', 1, 'https://ror.org/024xby240 Airport Facilities Management (South Korea) 공항 시설 관리 (주)'),
(64164, 'https://ror.org/02y0st784', 'en', 1, 'https://ror.org/02y0st784 The Korean Archeological Society 한국고고학회라 한다'),
(64165, 'https://ror.org/01j2rpy06', 'en', 1, 'https://ror.org/01j2rpy06 Ajou Motor College 아주 자동차 대학'),
(64166, 'https://ror.org/022ypyz07', 'no_lang_code', 1, 'https://ror.org/022ypyz07 (주)중앙산업 Chungang Industry (South Korea)'),
(64167, 'https://ror.org/04q586p77', 'en', 1, 'https://ror.org/04q586p77 Choonhae College of Health Sciences 충해 건강 과학 대학'),
(64168, 'https://ror.org/02epwnv39', 'no_lang_code', 1, 'https://ror.org/02epwnv39 ILJIN Group (South Korea) 일진 그룹'),
(64169, 'https://ror.org/03dyavz10', 'en', 1, 'https://ror.org/03dyavz10 Institute for National Security Strategy 국가안보전략연구원'),
(64170, 'https://ror.org/04pwwk213', 'no_lang_code', 1, 'https://ror.org/04pwwk213 HIC (South Korea)'),
(64171, 'https://ror.org/05fgdse54', 'en', 1, 'https://ror.org/05fgdse54 Korea Association for Nondestructive Testing 한국 비파괴 검사 협회'),
(64172, 'https://ror.org/00jz5ch17', 'no_lang_code', 1, 'https://ror.org/00jz5ch17 Jangan University 장안대학교'),
(64173, 'https://ror.org/05gq6gs51', 'en', 1, 'https://ror.org/05gq6gs51 Korean Association for Radiation Protection 대한방사선방어학회'),
(64174, 'https://ror.org/00zbas770', 'en', 1, 'https://ror.org/00zbas770 Art History Association Of Korea 한국미술사학회'),
(64175, 'https://ror.org/01m64ks43', 'en', 1, 'https://ror.org/01m64ks43 The Association of East Asian Ancient Studies 고대 아시아 학회'),
(64176, 'https://ror.org/04z9hzj86', 'no_lang_code', 1, 'https://ror.org/04z9hzj86 Jeil Pharmaceutical (South Korea) 제일약품 주식회사'),
(64177, 'https://ror.org/0111fqb28', 'en', 1, 'https://ror.org/0111fqb28 (사)한국능률협회 Korea Management Association'),
(64178, 'https://ror.org/01prjex52', 'en', 1, 'https://ror.org/01prjex52 Andong Science University 안동과학대학교'),
(64179, 'https://ror.org/01g4vtd10', 'en', 1, 'https://ror.org/01g4vtd10 Keimyung College University 계명 문화 대학'),
(64180, 'https://ror.org/02h812s98', 'en', 1, 'https://ror.org/02h812s98 Korea Social Science Research Council 한국사회과학연구협의회'),
(64181, 'https://ror.org/00ydadx21', 'no_lang_code', 1, 'https://ror.org/00ydadx21 Cheonan Yonam College 천안연암대학'),
(64182, 'https://ror.org/04h1h5j74', 'no_lang_code', 1, 'https://ror.org/04h1h5j74 NDT Engineering & Aerospace (South Korea) 비파괴 엔지니어링 및 항공 우주 유한 공사'),
(64183, 'https://ror.org/04vw91v95', 'no_lang_code', 1, 'https://ror.org/04vw91v95 Cheongam College 청암대학교'),
(64184, 'https://ror.org/026afmr97', 'en', 1, 'https://ror.org/026afmr97 Korean Comparative Education Society 한국 비교 교육 학회'),
(64185, 'https://ror.org/00mmnvh11', 'no_lang_code', 1, 'https://ror.org/00mmnvh11 Asia Pacific Satellite (South Korea)'),
(64186, 'https://ror.org/04xskva03', 'en', 1, 'https://ror.org/04xskva03 Maekyung Institute for Safety and Environment 매경 안전환경연구원'),
(64187, 'https://ror.org/02d4zgx43', 'no_lang_code', 1, 'https://ror.org/02d4zgx43 AP Systems (South Korea) 에이피시스템(주)'),
(64188, 'https://ror.org/011m4cv61', 'en', 1, 'https://ror.org/011m4cv61 Korea Atomic Industrial Forum 한국원자력산업회의'),
(64189, 'https://ror.org/03k8nq416', 'en', 1, 'https://ror.org/03k8nq416 Asian Comparative Folklore Society 아시아 비교 민간 사회'),
(64190, 'https://ror.org/05k2dce86', 'en', 1, 'https://ror.org/05k2dce86 Donga Broadcasting University of Arts 동아방송예술대학교'),
(64191, 'https://ror.org/004tf5h21', 'en', 1, 'https://ror.org/004tf5h21 Korea Radiation Industry Association 한국방사선산업학회'),
(64192, 'https://ror.org/05kch1b73', 'en', 1, 'https://ror.org/05kch1b73 Institute of Justice 학회 정의의'),
(64193, 'https://ror.org/01ppnms58', 'en', 1, 'https://ror.org/01ppnms58 Korea Medical Devices Industry Association 한국의료기기산업협회'),
(64194, 'https://ror.org/02ghs8a63', 'en', 1, 'https://ror.org/02ghs8a63 Federation of Busan Science and Technology 부산과학기술협의회'),
(64195, 'https://ror.org/02f9qkk54', 'no_lang_code', 1, 'https://ror.org/02f9qkk54 Korea Smart Manufacturing Industry Association (South Korea) 한국 스마트 제조업 협회'),
(64196, 'https://ror.org/03fhvyq37', 'en', 1, 'https://ror.org/03fhvyq37 Korean Technical Management Institute 한국기술경영연구원'),
(64197, 'https://ror.org/03kcd5067', 'en', 1, 'https://ror.org/03kcd5067 Donggwon Science and Technology University 동원과학기술대학교'),
(64198, 'https://ror.org/049986y36', 'en', 1, 'https://ror.org/049986y36 Chinese Literature Society 중국인문학회'),
(64199, 'https://ror.org/03dys8z83', 'no_lang_code', 1, 'https://ror.org/03dys8z83 Bexel (South Korea) 벡셀'),
(64200, 'https://ror.org/01az28z25', 'no_lang_code', 1, 'https://ror.org/01az28z25 FutureChem (South Korea) 미래의 화학'),
(64201, 'https://ror.org/01v1h2b88', 'en', 1, 'https://ror.org/01v1h2b88 The Society of Modern Literature Theory 현대 문학 이론 학회'),
(64202, 'https://ror.org/03ft28352', 'no_lang_code', 1, 'https://ror.org/03ft28352 Innovation Performance Group (South Korea) 아이피그룹'),
(64203, 'https://ror.org/00agxat90', 'en', 1, 'https://ror.org/00agxat90 Asia Foundation 아시아 재단'),
(64204, 'https://ror.org/03j9rnw13', 'en', 1, 'https://ror.org/03j9rnw13 The Korean Folklore Society 한국 민속 학회'),
(64205, 'https://ror.org/046qqhz73', 'en', 1, 'https://ror.org/046qqhz73 Korea Research Institute for Construction Policy 한국건설기술연구원'),
(64206, 'https://ror.org/04h6rvh11', 'no_lang_code', 1, 'https://ror.org/04h6rvh11 Kai Biotech (South Korea) 바이오 테크 주식 회사 카이'),
(64207, 'https://ror.org/04xtdqy92', 'no_lang_code', 1, 'https://ror.org/04xtdqy92 Gumi Electronics & Information Technology Research Institute (South Korea) 구미전자정보기술원'),
(64208, 'https://ror.org/01zh21529', 'no_lang_code', 1, 'https://ror.org/01zh21529 Daegu TechnoPark 대구테크노파크'),
(64209, 'https://ror.org/05jt2eq53', 'en', 1, 'https://ror.org/05jt2eq53 Korea Nuclear International Cooperation Foundation 한국원자력협력재단'),
(64210, 'https://ror.org/026wyr849', 'en', 1, 'https://ror.org/026wyr849 Economic Geographical Society of Korea 한국경제지리학회'),
(64211, 'https://ror.org/046vsfw69', 'en', 1, 'https://ror.org/046vsfw69 Korea Economic History Society 경제사학회'),
(64212, 'https://ror.org/007w7dm12', 'en', 1, 'https://ror.org/007w7dm12 Korean Studies Institute 한국국학진흥원'),
(64213, 'https://ror.org/009zm7e81', 'no_lang_code', 1, 'https://ror.org/009zm7e81 Boditech Med (South Korea) 바디 텍 메드'),
(64214, 'https://ror.org/01zs00411', 'en', 1, 'https://ror.org/01zs00411 Korea Testing Certification 한국기계전기전자시험연구원'),
(64215, 'https://ror.org/03t07pn25', 'no_lang_code', 1, 'https://ror.org/03t07pn25 Ecosense (South Korea) 에코센스'),
(64216, 'https://ror.org/03pj17v68', 'en', 1, 'https://ror.org/03pj17v68 Jeonnam Bioindustry Foundation 전남 바이오 산업 재단'),
(64217, 'https://ror.org/05wwazp63', 'no_lang_code', 1, 'https://ror.org/05wwazp63 Adone (South Korea) 주식회사 에드원'),
(64218, 'https://ror.org/03qs3qx17', 'no_lang_code', 1, 'https://ror.org/03qs3qx17 Sejong Institute 세종연구소'),
(64219, 'https://ror.org/00rpc7954', 'en', 1, 'https://ror.org/00rpc7954 International Tuberculosis Research Center 국제결핵연구소'),
(64220, 'https://ror.org/04pv2qa77', 'en', 1, 'https://ror.org/04pv2qa77 Center of Excellence in Wireless & Information Technology'),
(64221, 'https://ror.org/027xb9s90', 'no_lang_code', 1, 'https://ror.org/027xb9s90 Alteogen (South Korea) 알테오젠'),
(64222, 'https://ror.org/02e2v3t76', 'en', 1, 'https://ror.org/02e2v3t76 Korea Medicine Research Institute 한국 의약 연구원'),
(64223, 'https://ror.org/03h3tha15', 'en', 1, 'https://ror.org/03h3tha15 Chungbuk Provincial College 충북도립대학'),
(64224, 'https://ror.org/009x2yy51', 'en', 1, 'https://ror.org/009x2yy51 Busan Digital University 부산 디지털 대학교'),
(64225, 'https://ror.org/01n7byd59', 'en', 1, 'https://ror.org/01n7byd59 Chungkang College of Cultural Industries 청강문화산업대학교'),
(64226, 'https://ror.org/05q950e27', 'en', 1, 'https://ror.org/05q950e27 English Language and Literature Association of Korea 한국영어영문학회'),
(64227, 'https://ror.org/012q0kv84', 'en', 1, 'https://ror.org/012q0kv84 French Culture and Arts Society 프랑스문화예술학회'),
(64228, 'https://ror.org/01hjn9g45', 'en', 1, 'https://ror.org/01hjn9g45 The Busan Metropolitan Simin Municipal Library 부산시립시민도서관'),
(64229, 'https://ror.org/03g01jm12', 'fr', 1, 'https://ror.org/03g01jm12 Institut Français de Séoul'),
(64230, 'https://ror.org/03ej4ab68', 'no_lang_code', 1, 'https://ror.org/03ej4ab68 Partron (South Korea) 파트론'),
(64231, 'https://ror.org/05far8k50', 'en', 1, 'https://ror.org/05far8k50 The French Society of Korea 한국프랑스학회'),
(64232, 'https://ror.org/05mw5z210', 'no_lang_code', 1, 'https://ror.org/05mw5z210 (재단)부산테크노파크 Busan TechnoPark'),
(64233, 'https://ror.org/05kb58m03', 'en', 1, 'https://ror.org/05kb58m03 21st Century Political Science Association 21세기정치학회'),
(64234, 'https://ror.org/00y34pm04', 'no_lang_code', 1, 'https://ror.org/00y34pm04 Fusion Software (South Korea)'),
(64235, 'https://ror.org/0355rmf69', 'en', 1, 'https://ror.org/0355rmf69 Northeast Asian Forest Forum 동북아 산림포럼'),
(64236, 'https://ror.org/02pxwy266', 'no_lang_code', 1, 'https://ror.org/02pxwy266 (주)캐리마 Carima (South Korea)'),
(64237, 'https://ror.org/05pagb310', 'en', 1, 'https://ror.org/05pagb310 Korean Women''s Literature 고려 사항'),
(64238, 'https://ror.org/04w5hf447', 'en', 1, 'https://ror.org/04w5hf447 Future Early Childhood Education Society 미래유아교육학회'),
(64239, 'https://ror.org/05rekxz26', 'en', 1, 'https://ror.org/05rekxz26 Hallym University of Graduate Studies 한림국제대학원대학교'),
(64240, 'https://ror.org/021ywyg68', 'en', 1, 'https://ror.org/021ywyg68 Korea Infrastructure Organization for Nanotechnology 국가나노인프라협의체'),
(64241, 'https://ror.org/03s3e1h32', 'en', 1, 'https://ror.org/03s3e1h32 Korean Society for Indian Philosophy 인도철학회'),
(64242, 'https://ror.org/032412d97', 'en', 1, 'https://ror.org/032412d97 Seoul Business Agency'),
(64243, 'https://ror.org/03a53n517', 'en', 1, 'https://ror.org/03a53n517 Jeju participation environmental solidarity 제주 참여 환경 연대'),
(64244, 'https://ror.org/057q47t40', 'en', 1, 'https://ror.org/057q47t40 Jeju Regional Business Evaluation Foundation 제주 지역 사업 평가 재단'),
(64245, 'https://ror.org/006pcz623', 'no_lang_code', 1, 'https://ror.org/006pcz623 Informatica (South Korea) 인포매티카'),
(64246, 'https://ror.org/01a00zk92', 'en', 1, 'https://ror.org/01a00zk92 Jeju Tourism University 제주관광대학교'),
(64247, 'https://ror.org/0599fy865', 'en', 1, 'https://ror.org/0599fy865 Pan-Korea English Teachers Association 팬코리아영어교육학회'),
(64248, 'https://ror.org/00bngsg68', 'no_lang_code', 1, 'https://ror.org/00bngsg68 Kukdong Communication (South Korea) 극동통신'),
(64249, 'https://ror.org/02p3n3q94', 'no_lang_code', 1, 'https://ror.org/02p3n3q94 Fiberpro (South Korea) 파이버프로'),
(64250, 'https://ror.org/000245824', 'en', 1, 'https://ror.org/000245824 Future Human Resources Research Institute 미래 인적 자원 연구소'),
(64251, 'https://ror.org/00agtd172', 'no_lang_code', 1, 'https://ror.org/00agtd172 Jin Tech (South Korea) 진테크'),
(64252, 'https://ror.org/05d5mtz58', 'no_lang_code', 1, 'https://ror.org/05d5mtz58 Hansol Chemical (South Korea) 한솔케미칼'),
(64253, 'https://ror.org/004zrqc30', 'en', 1, 'https://ror.org/004zrqc30 Gangdong University 강동 대학교'),
(64254, 'https://ror.org/03f1dy734', 'en', 1, 'https://ror.org/03f1dy734 Korean Society of Mathematical Education 사단법인 한국수학교육학회 정관'),
(64255, 'https://ror.org/0412x6661', 'en', 1, 'https://ror.org/0412x6661 Korea Research Institute of Mechanical Facilities Industry 대한기계설비산업연구원'),
(64256, 'https://ror.org/03q78z367', 'en', 1, 'https://ror.org/03q78z367 The Genetics Society of Korea 한국유전학회'),
(64257, 'https://ror.org/02gt4vn57', 'en', 1, 'https://ror.org/02gt4vn57 Kaywon University of Art & Design 케이원 미술 대학'),
(64258, 'https://ror.org/033bjbc43', 'en', 1, 'https://ror.org/033bjbc43 Korea Baduk Association 한국기원'),
(64259, 'https://ror.org/005hd0857', 'no_lang_code', 1, 'https://ror.org/005hd0857 Intergen Consulting Group (South Korea) 인터젠 컨설팅 그룹'),
(64260, 'https://ror.org/00hx3p021', 'en', 1, 'https://ror.org/00hx3p021 Regional Geographical Society of Korea 한국 지리 학회'),
(64261, 'https://ror.org/01anfr786', 'en', 1, 'https://ror.org/01anfr786 International Area Studies Society 국제지역학회'),
(64262, 'https://ror.org/04c8qrb95', 'en', 1, 'https://ror.org/04c8qrb95 Korea Environmental Education Association 한국 환경 교육 연합회'),
(64263, 'https://ror.org/01xp2eb39', 'en', 1, 'https://ror.org/01xp2eb39 The International Association for Korean Language Education 국제한국어교육학회'),
(64264, 'https://ror.org/03nwyka65', 'en', 1, 'https://ror.org/03nwyka65 International Association of Korean Literary and Cultural Studies 국제한국문학문화학회'),
(64265, 'https://ror.org/034q8g297', 'en', 1, 'https://ror.org/034q8g297 University of Brain Education 국제뇌교육종합대학원대학교 홈페이지'),
(64266, 'https://ror.org/052td7g28', 'en', 1, 'https://ror.org/052td7g28 Korea Peace Institute 한국 평화 연구소'),
(64267, 'https://ror.org/02ktcfe74', 'en', 1, 'https://ror.org/02ktcfe74 Kimpo University 김포 대학교'),
(64268, 'https://ror.org/004427313', 'en', 1, 'https://ror.org/004427313 International Association of Comparative Korean Studies 국제비교한국학회'),
(64269, 'https://ror.org/02qtf7714', 'no_lang_code', 1, 'https://ror.org/02qtf7714 KoreaBio 코리아 바이오'),
(64270, 'https://ror.org/01rs2d517', 'en', 1, 'https://ror.org/01rs2d517 Women in Nuclear Korea'),
(64271, 'https://ror.org/03jyeqt59', 'no_lang_code', 1, 'https://ror.org/03jyeqt59 Korea Bio Solution (South Korea) 한국바이오솔루션'),
(64272, 'https://ror.org/03enb9971', 'en', 1, 'https://ror.org/03enb9971 Korean International Maritime Law Association 한국해사법학회'),
(64273, 'https://ror.org/04y85rv20', 'en', 1, 'https://ror.org/04y85rv20 Honam Archaeological Society 호남고고학회'),
(64274, 'https://ror.org/054hffs36', 'en', 1, 'https://ror.org/054hffs36 Global Cultural Contents Association 세계 문화 콘텐츠 학회'),
(64275, 'https://ror.org/01abfdk81', 'en', 1, 'https://ror.org/01abfdk81 Korean Society for Biology Education'),
(64276, 'https://ror.org/009ztd224', 'en', 1, 'https://ror.org/009ztd224 Re-shaping Development Institute 글로벌 개발 연구소'),
(64277, 'https://ror.org/01q6hrk40', 'en', 1, 'https://ror.org/01q6hrk40 Korean Association of Law Schools 한국 법대'),
(64278, 'https://ror.org/02an66777', 'en', 1, 'https://ror.org/02an66777 International Network for Korean Language and Culture 국제한국언어문화학회'),
(64279, 'https://ror.org/0072dwk79', 'en', 1, 'https://ror.org/0072dwk79 Hosan University 호산대학교'),
(64280, 'https://ror.org/025ny0a47', 'en', 1, 'https://ror.org/025ny0a47 Global Education and Culture Institute 글로벌교육문화연구원'),
(64281, 'https://ror.org/033dqre27', 'en', 1, 'https://ror.org/033dqre27 Brand Design Association of Korea'),
(64282, 'https://ror.org/0358qh338', 'en', 1, 'https://ror.org/0358qh338 Costume Culture Association 의상 문화 협회'),
(64283, 'https://ror.org/03vcpp131', 'en', 1, 'https://ror.org/03vcpp131 21st Century Foreign Language Academy 21세기 외국어 학원'),
(64284, 'https://ror.org/05tk66d69', 'en', 1, 'https://ror.org/05tk66d69 Human Rights Solidarity 인권연대는'),
(64285, 'https://ror.org/04zpwwx37', 'en', 1, 'https://ror.org/04zpwwx37 Korean Brecht Society 한국브레히트학회'),
(64286, 'https://ror.org/01eakvg09', 'en', 1, 'https://ror.org/01eakvg09 Global English Teachers Association 글로벌 영어 교사 협회'),
(64287, 'https://ror.org/022yj5z48', 'en', 1, 'https://ror.org/022yj5z48 Critical Sociological Association of Korea 한국 중요 사회 학회'),
(64288, 'https://ror.org/04tv6gw72', 'en', 1, 'https://ror.org/04tv6gw72 Hyundai Research Institute 현대경제연구원'),
(64289, 'https://ror.org/05x4ndx32', 'en', 1, 'https://ror.org/05x4ndx32 Korea Communications Industry Cooperative 한국방송통신산업협동조합 조합소개 인사말 안내입니다'),
(64290, 'https://ror.org/05gfq0q56', 'no_lang_code', 1, 'https://ror.org/05gfq0q56 Global optical communication (South Korea) 글로벌광통신'),
(64291, 'https://ror.org/0068qef60', 'en', 1, 'https://ror.org/0068qef60 Korean Broadcasters Association 한국방송협회'),
(64292, 'https://ror.org/04w6mhj60', 'no_lang_code', 1, 'https://ror.org/04w6mhj60 JSM Technology Korea (South Korea) 제이에스엠테크놀러지코리아'),
(64293, 'https://ror.org/04fsntv73', 'no_lang_code', 1, 'https://ror.org/04fsntv73 Koguryo Bohai Society 고구려 발해 학회'),
(64294, 'https://ror.org/02ykcjw41', 'en', 1, 'https://ror.org/02ykcjw41 James Joyce Society of Korea 한국제임스조이스학회'),
(64295, 'https://ror.org/04qgd6703', 'no_lang_code', 1, 'https://ror.org/04qgd6703 Hyundai Engineering (South Korea) 현대엔지니어링'),
(64296, 'https://ror.org/05gk7hr65', 'no_lang_code', 1, 'https://ror.org/05gk7hr65 CrystalGenomics (South Korea) 크리스탈 유전체학'),
(64297, 'https://ror.org/05jhaqb62', 'no_lang_code', 1, 'https://ror.org/05jhaqb62 (주)장성E.P.S에 오신것을 환영합니다 Jangsung (South Korea)'),
(64298, 'https://ror.org/02p3w0b60', 'en', 1, 'https://ror.org/02p3w0b60 Koguryeo College 고구려 대학'),
(64299, 'https://ror.org/02xm3a386', 'en', 1, 'https://ror.org/02xm3a386 Korean Calligraphy Association 한국서예협회'),
(64300, 'https://ror.org/00ycgaj92', 'en', 1, 'https://ror.org/00ycgaj92 Association of Japanology in East Asia 동아시아일본학회'),
(64301, 'https://ror.org/03q0nr592', 'no_lang_code', 1, 'https://ror.org/03q0nr592 Hankuk Carbon (South Korea) 한국 카본'),
(64302, 'https://ror.org/05cx42j02', 'en', 1, 'https://ror.org/05cx42j02 Korea University of International Studies 한반도국제대학원대학교'),
(64303, 'https://ror.org/04ahbgg16', 'en', 1, 'https://ror.org/04ahbgg16 Culinary Society of Korea 한국조리학회'),
(64304, 'https://ror.org/03jm8py90', 'en', 1, 'https://ror.org/03jm8py90 Dongbang Culture University 동방 문화 대학교'),
(64305, 'https://ror.org/009nm7068', 'no_lang_code', 1, 'https://ror.org/009nm7068 Nanjing Zhongyi Architectural Design Institute (China) 南京中意建筑设计院'),
(64306, 'https://ror.org/05jsb4h04', 'en', 1, 'https://ror.org/05jsb4h04 Korea Association of Vocational Education 한국직업능력교육협회'),
(64307, 'https://ror.org/03ra80q23', 'no_lang_code', 1, 'https://ror.org/03ra80q23 (주)제욱 Jeuk (South Korea)'),
(64308, 'https://ror.org/01hqxj822', 'en', 1, 'https://ror.org/01hqxj822 Cybercommunication Academic Society'),
(64309, 'https://ror.org/01me33t36', 'en', 1, 'https://ror.org/01me33t36 Korean Society of East-West Comparative Literature 한국동서비교문학학회'),
(64310, 'https://ror.org/04dtz3153', 'en', 1, 'https://ror.org/04dtz3153 Green Life Knowledge Economy Research Institute 녹색 생활 지식 경제 연구소'),
(64311, 'https://ror.org/04yj3me46', 'no_lang_code', 1, 'https://ror.org/04yj3me46 Iljin Radiation Engineering (South Korea) 일진방사선엔지니어링'),
(64312, 'https://ror.org/02r4j2j30', 'en', 1, 'https://ror.org/02r4j2j30 Korean Society for Child Education 한국아동교육학회'),
(64313, 'https://ror.org/010zncz41', 'en', 1, 'https://ror.org/010zncz41 JEI University 인천재능대학교'),
(64314, 'https://ror.org/01tbn4j76', 'en', 1, 'https://ror.org/01tbn4j76 Gumi University 구미 대학교'),
(64315, 'https://ror.org/01prhbv23', 'en', 1, 'https://ror.org/01prhbv23 Korean Society for Eco Early Childhood Education 한국생태유아교육학회'),
(64316, 'https://ror.org/01mh12h63', 'en', 1, 'https://ror.org/01mh12h63 Gwangyang Health College 광양보건대학'),
(64317, 'https://ror.org/04h0ns222', 'en', 1, 'https://ror.org/04h0ns222 Korean Society of Child Welfare 한국아동복지학회'),
(64318, 'https://ror.org/02dwzga38', 'en', 1, 'https://ror.org/02dwzga38 The Korean Economic Association 한국경제학회'),
(64319, 'https://ror.org/05gn27172', 'en', 1, 'https://ror.org/05gn27172 Society for Asian Philosophy in Korea 한국동양철학회'),
(64320, 'https://ror.org/05mfwdr57', 'en', 1, 'https://ror.org/05mfwdr57 Gyeongbuk IT Convergence Industrial Technology Institute 경북IT융합산업기술원'),
(64321, 'https://ror.org/03t85np98', 'en', 1, 'https://ror.org/03t85np98 Cyber University of Korea 사이버 대학교'),
(64322, 'https://ror.org/056840095', 'en', 1, 'https://ror.org/056840095 Korea Economic Research Institute 한국경제연구원'),
(64323, 'https://ror.org/03y32jh60', 'en', 1, 'https://ror.org/03y32jh60 Gyeongbuk Marine Bio-Industry Research Institute 경북 해양 생물 산업 연구원'),
(64324, 'https://ror.org/01ra2eg48', 'en', 1, 'https://ror.org/01ra2eg48 The Korea Society for Children''s Media 한국어린이미디어학회에 있습니다'),
(64325, 'https://ror.org/05ba5yp12', 'no_lang_code', 1, 'https://ror.org/05ba5yp12 Daeduk University 대덕 대학교'),
(64326, 'https://ror.org/01ayka222', 'en', 1, 'https://ror.org/01ayka222 Korea Children''s Rights Society 한국아동권리학회'),
(64327, 'https://ror.org/02fn9fg65', 'en', 1, 'https://ror.org/02fn9fg65 Korean Educational Idea Association 한국교육사상연구회'),
(64328, 'https://ror.org/05wp4m669', 'no_lang_code', 1, 'https://ror.org/05wp4m669 Korea Educational Broadcasting System 한국교육방송공사'),
(64329, 'https://ror.org/01pk2qg94', 'en', 1, 'https://ror.org/01pk2qg94 The Daedong Philosophical Association 대동 철학회'),
(64330, 'https://ror.org/03e14yd37', 'en', 1, 'https://ror.org/03e14yd37 Korea Christian Educational Information Society 기독교교육정보학회'),
(64331, 'https://ror.org/00c56ep98', 'en', 1, 'https://ror.org/00c56ep98 The Korean Society for the Economics and Finance of Education 한국교육재정경제학회'),
(64332, 'https://ror.org/03x2b6b27', 'en', 1, 'https://ror.org/03x2b6b27 Gyeongnam Provincial Namhae College 경남도립남해대학'),
(64333, 'https://ror.org/02bb56y97', 'en', 1, 'https://ror.org/02bb56y97 Daegu Visually Impaired Culture Center 대구시각장애인문화원'),
(64334, 'https://ror.org/05r2fn790', 'en', 1, 'https://ror.org/05r2fn790 Korean Educational Psychology Association 한국교육심리학회'),
(64335, 'https://ror.org/038wddm10', 'en', 1, 'https://ror.org/038wddm10 Gyeongnam Provincial Geochang College 경남도립거창대학'),
(64336, 'https://ror.org/03qbvh110', 'en', 1, 'https://ror.org/03qbvh110 Korean Christian Society 한국기독교학회'),
(64337, 'https://ror.org/04yvkkx28', 'en', 1, 'https://ror.org/04yvkkx28 Korean Educational Research Association 한국교육학회'),
(64338, 'https://ror.org/005yy5d32', 'en', 1, 'https://ror.org/005yy5d32 Nantong Snake Treatment Research Institute'),
(64339, 'https://ror.org/04k1aj657', 'en', 1, 'https://ror.org/04k1aj657 The Korea Society of Fashion Design 한국패션디자인학회'),
(64340, 'https://ror.org/04b305x04', 'en', 1, 'https://ror.org/04b305x04 Institue of the History of Christianity in Korea 한국교회사학회'),
(64341, 'https://ror.org/04gm1dg38', 'en', 1, 'https://ror.org/04gm1dg38 The Daegu Historical Association 대구 역사 학회'),
(64342, 'https://ror.org/00atn8q90', 'en', 1, 'https://ror.org/00atn8q90 Korean Geographical Society 한국지리학회'),
(64343, 'https://ror.org/04xbnb295', 'en', 1, 'https://ror.org/04xbnb295 Korean Elementary Art Education Association 한국초등미술교육학회'),
(64344, 'https://ror.org/05ay2w302', 'en', 1, 'https://ror.org/05ay2w302 Society of Korean Classical Literature Education 한국고전문학교육학회'),
(64345, 'https://ror.org/036rtm992', 'en', 1, 'https://ror.org/036rtm992 Taegu Science University 대구 과학 대학교'),
(64346, 'https://ror.org/023c92218', 'en', 1, 'https://ror.org/023c92218 Korea Leisure and Recreation Association 한국 레저 레크리에이션 협회'),
(64347, 'https://ror.org/04tdzkh55', 'en', 1, 'https://ror.org/04tdzkh55 The Korean Society for the Study of Elementary Education 한국초등교육학회'),
(64348, 'https://ror.org/047xkn445', 'en', 1, 'https://ror.org/047xkn445 Geological Society of Korea 대한지질학회'),
(64349, 'https://ror.org/032w21978', 'en', 1, 'https://ror.org/032w21978 Korean Association for Lifelong Education 한국 생애 교육 협회'),
(64350, 'https://ror.org/0560xy784', 'en', 1, 'https://ror.org/0560xy784 The Korea English Education Society 한국 영어 교육 학회'),
(64351, 'https://ror.org/028vnkj24', 'en', 1, 'https://ror.org/028vnkj24 Korea Lift College 한국승강기대학교'),
(64352, 'https://ror.org/023wbge51', 'en', 1, 'https://ror.org/023wbge51 Korean German Language and Literature Society 한국독어독문학회'),
(64353, 'https://ror.org/039dc8c42', 'en', 1, 'https://ror.org/039dc8c42 Korean Academy of Speech-Language Pathology and Audiology'),
(64354, 'https://ror.org/04598a202', 'en', 1, 'https://ror.org/04598a202 The Korean Historical Association 역사학회'),
(64355, 'https://ror.org/01yagnz59', 'en', 1, 'https://ror.org/01yagnz59 Korean Clinical Psychcological Association'),
(64356, 'https://ror.org/05taf4c66', 'en', 1, 'https://ror.org/05taf4c66 The Korean Society Of Literary Education 한국 문학 교육 학회'),
(64357, 'https://ror.org/007s1fv27', 'en', 1, 'https://ror.org/007s1fv27 Tianjin Municipal Engineering Design and Research Institute 天津市市政工程设计研究总院'),
(64358, 'https://ror.org/042pabj96', 'en', 1, 'https://ror.org/042pabj96 Shandong Institute of Quantum Science and Technology 山东量子科学技术研究院'),
(64359, 'https://ror.org/02y8hcw86', 'en', 1, 'https://ror.org/02y8hcw86 Korean Psychological Association 한국심리학회'),
(64360, 'https://ror.org/029db8m77', 'no_lang_code', 1, 'https://ror.org/029db8m77 Dynavolt Tech (China) 广东猛狮新能源科技股份有限公司'),
(64361, 'https://ror.org/025pqy228', 'en', 1, 'https://ror.org/025pqy228 YIJUN Institute of International Law 이준 국제법 학원'),
(64362, 'https://ror.org/05wvzc243', 'en', 1, 'https://ror.org/05wvzc243 (사)한국정보통신기술산업협회- Korea Information & Communication Technology Industry Association'),
(64363, 'https://ror.org/02jgyee30', 'en', 1, 'https://ror.org/02jgyee30 The Society of Korean Traditional Costume 한복문화학회'),
(64364, 'https://ror.org/02r21h126', 'en', 1, 'https://ror.org/02r21h126 The Society for Chinese Cultural Studies 중국문화연구학회'),
(64365, 'https://ror.org/04tadm242', 'en', 1, 'https://ror.org/04tadm242 Korean Association of Geography and Environmental Education 한국지리환경교육학회'),
(64366, 'https://ror.org/04e6xnh25', 'en', 1, 'https://ror.org/04e6xnh25 Intelligent Image and Information System 지능형 이미지 및 정보 시스템'),
(64367, 'https://ror.org/05ttqxn20', 'en', 1, 'https://ror.org/05ttqxn20 The Society Of Korean Literary Therapy 한국 문학 치료 학회'),
(64368, 'https://ror.org/005205v40', 'en', 1, 'https://ror.org/005205v40 Korean Society for Industrial and Organizational Psychology 한국산업및조직심리학회');
INSERT INTO `rors` VALUES
(64369, 'https://ror.org/03qxezw14', 'en', 1, 'https://ror.org/03qxezw14 Korea Integrated Logistics Association 한국통합물류협회'),
(64370, 'https://ror.org/04ccgt898', 'en', 1, 'https://ror.org/04ccgt898 Daejeon Health Institute of Technology 대전보건대학교'),
(64371, 'https://ror.org/004drsj12', 'en', 1, 'https://ror.org/004drsj12 Korean Institute of Interior Design 한국실내디자인학회는'),
(64372, 'https://ror.org/01w94b128', 'en', 1, 'https://ror.org/01w94b128 Korean Association of Comparative Criminal Law 한국비교형사법학회'),
(64373, 'https://ror.org/033r7gh92', 'en', 1, 'https://ror.org/033r7gh92 Korea Society Of IT Services 한국IT서비스학회'),
(64374, 'https://ror.org/05es75p31', 'en', 1, 'https://ror.org/05es75p31 Korea Environmental Policy and Administration Society 한국 환경 정책 관리 학회'),
(64375, 'https://ror.org/00qdcrt37', 'en', 1, 'https://ror.org/00qdcrt37 Korean Constitutional Law Association 한국헌법학회'),
(64376, 'https://ror.org/01h6y6f73', 'en', 1, 'https://ror.org/01h6y6f73 The Korean Society of Contemporary European Studies 한국유럽학회'),
(64377, 'https://ror.org/05wp72p02', 'en', 1, 'https://ror.org/05wp72p02 Korea Marketing Management Association 한국 마케팅 경영 학회'),
(64378, 'https://ror.org/02ernp878', 'en', 1, 'https://ror.org/02ernp878 Korea Engineering Consultants Corporation 한국종합기술'),
(64379, 'https://ror.org/01t748q81', 'en', 1, 'https://ror.org/01t748q81 Korea Exercise Rehabilitation Association 한국운동재활협회'),
(64380, 'https://ror.org/009361291', 'en', 1, 'https://ror.org/009361291 Korean Scholars of Marketing Science 한국 마케팅 학자'),
(64381, 'https://ror.org/027tx3c52', 'en', 1, 'https://ror.org/027tx3c52 Korea Medical Devices Industrial Cooperative Association 한국 의료 기기 산업 조합'),
(64382, 'https://ror.org/03dkhv024', 'en', 1, 'https://ror.org/03dkhv024 Korean Cinema Association 한국 영화 협회'),
(64383, 'https://ror.org/02z6x1r54', 'en', 1, 'https://ror.org/02z6x1r54 Dandelion Medical Welfare Social Cooperative 민들레 의료 복지 사회 협동 조합'),
(64384, 'https://ror.org/0256gay97', 'en', 1, 'https://ror.org/0256gay97 Korean Society for Consumer Studies 한국소비자학회'),
(64385, 'https://ror.org/00x0k1767', 'en', 1, 'https://ror.org/00x0k1767 Korean Consumption Culture Association 한국소비문화학회'),
(64386, 'https://ror.org/035ybn758', 'en', 1, 'https://ror.org/035ybn758 Korean Finance Association 한국재무학회'),
(64387, 'https://ror.org/00z4cvh19', 'en', 1, 'https://ror.org/00z4cvh19 Korean Association of Middle Eastern Studies 한국 중동 학회'),
(64388, 'https://ror.org/01kegt086', 'en', 1, 'https://ror.org/01kegt086 Korea Contents Association'),
(64389, 'https://ror.org/048zkw057', 'no_lang_code', 1, 'https://ror.org/048zkw057 Korea Financial Engineering Consulting (South Korea) 한국 금융 공학 컨설팅'),
(64390, 'https://ror.org/05e81p556', 'en', 1, 'https://ror.org/05e81p556 Korea Corporate Education Center 한국기업교육센터'),
(64391, 'https://ror.org/05e8j1012', 'en', 1, 'https://ror.org/05e8j1012 The Modern English Drama Association of Korea 현대 한국 연극 학회'),
(64392, 'https://ror.org/01t7bdx98', 'en', 1, 'https://ror.org/01t7bdx98 Korean Financial Management Association 한국 재무 관리 협회'),
(64393, 'https://ror.org/03wfdhy86', 'en', 1, 'https://ror.org/03wfdhy86 The Modern Linguistic Society Of Korea 한국 현대 언어 학회'),
(64394, 'https://ror.org/01pgkb997', 'no_lang_code', 1, 'https://ror.org/01pgkb997 KG Chemical (South Korea)'),
(64395, 'https://ror.org/015bwbz64', 'en', 1, 'https://ror.org/015bwbz64 Korea Cosmetic Association 대한화장품협회'),
(64396, 'https://ror.org/03ptfj749', 'en', 1, 'https://ror.org/03ptfj749 Korea Petroleum Quality & Distribution Authority 한국 석유 품질 관리국'),
(64397, 'https://ror.org/01pgq0p78', 'en', 1, 'https://ror.org/01pgq0p78 Korea Fisheries Resources Agency 한국 수산 자원 공사'),
(64398, 'https://ror.org/046xx9480', 'en', 1, 'https://ror.org/046xx9480 Korea Counseling Graduate University 한국상담대학원대학교'),
(64399, 'https://ror.org/03s87dw57', 'en', 1, 'https://ror.org/03s87dw57 Korean Counseling Association 한국상담학회'),
(64400, 'https://ror.org/03qvhaa35', 'en', 1, 'https://ror.org/03qvhaa35 The Korean Association for Mongolian Studies 한국 몽골 연구 협회'),
(64401, 'https://ror.org/008vv7y59', 'en', 1, 'https://ror.org/008vv7y59 The Korea Association of Foreign Language Education 한국 외국어 교육 협회'),
(64402, 'https://ror.org/00e373235', 'en', 1, 'https://ror.org/00e373235 Korean Alliance for Health, Physical Education, Recreation, and Dance 한국체육학회'),
(64403, 'https://ror.org/05d34xs41', 'en', 1, 'https://ror.org/05d34xs41 The Korean Association for Multicultural Education 한국 다문화 교육 협회'),
(64404, 'https://ror.org/006ec3357', 'en', 1, 'https://ror.org/006ec3357 Culinary Institute of Korea'),
(64405, 'https://ror.org/025v5g975', 'en', 1, 'https://ror.org/025v5g975 Korean Music Therapy Association 한국 음악 치료 협회'),
(64406, 'https://ror.org/02h221462', 'en', 1, 'https://ror.org/02h221462 Korean Association of Public Safety and Criminal Justice 한국공안행정학회'),
(64407, 'https://ror.org/01eps0y04', 'en', 1, 'https://ror.org/01eps0y04 The Association of Korean Cultural and Historical Geographers 한국문화역사지리학회'),
(64408, 'https://ror.org/0214mhn29', 'en', 1, 'https://ror.org/0214mhn29 The Korea institute for Religion and Culture 한국종교문화연구소'),
(64409, 'https://ror.org/00t8tnj85', 'en', 1, 'https://ror.org/00t8tnj85 Korea Customs Trade Development Institute 한국 관세무역개발원'),
(64410, 'https://ror.org/01b30ww12', 'en', 1, 'https://ror.org/01b30ww12 Korea Drug Research Association 대한 마약 연구 학회'),
(64411, 'https://ror.org/04q19fq93', 'en', 1, 'https://ror.org/04q19fq93 Korea IT Developer Cooperative 한국 아이티 (IT) 개발자 협동 조합'),
(64412, 'https://ror.org/02xq34z61', 'en', 1, 'https://ror.org/02xq34z61 (사)한국디지털디자인협의회 Korea Digital Design Council'),
(64413, 'https://ror.org/02trvhh22', 'no_lang_code', 1, 'https://ror.org/02trvhh22 Korea Accounting Standards Board 한국 회계 기준 원'),
(64414, 'https://ror.org/01fp3t562', 'en', 1, 'https://ror.org/01fp3t562 Korea Digital Hospital Export Agency 한국디지털병원수출조합'),
(64415, 'https://ror.org/02667ne44', 'en', 1, 'https://ror.org/02667ne44 Korea Housing Association'),
(64416, 'https://ror.org/020nwtk72', 'en', 1, 'https://ror.org/020nwtk72 Korean Society for Digital Policy 한국디지털정책학회'),
(64417, 'https://ror.org/05m5d6945', 'en', 1, 'https://ror.org/05m5d6945 Human Development Institute 인간 개발 연구소'),
(64418, 'https://ror.org/02ptmys64', 'en', 1, 'https://ror.org/02ptmys64 Korean Nuclear Society 한국원자력학회'),
(64419, 'https://ror.org/04vxnz547', 'en', 1, 'https://ror.org/04vxnz547 (주)한국유통과학연구소 Korea Distribution Science Institute'),
(64420, 'https://ror.org/02zjbky29', 'en', 1, 'https://ror.org/02zjbky29 Korea Advertising Society 한국 광고 학회'),
(64421, 'https://ror.org/05gkpvg94', 'en', 1, 'https://ror.org/05gkpvg94 Korean Institute of Southeast Asian Studies 사단법인 한국동남아연구소'),
(64422, 'https://ror.org/01vq8q751', 'en', 1, 'https://ror.org/01vq8q751 Korean Industrial Economic Association 한국산업경제학회'),
(64423, 'https://ror.org/012hgcz59', 'en', 1, 'https://ror.org/012hgcz59 Korean Community Welfare Society 한국지역사회복지학회'),
(64424, 'https://ror.org/05bshbg41', 'en', 1, 'https://ror.org/05bshbg41 The Korean Society of Special Education 한국특수교육학회'),
(64425, 'https://ror.org/027s3ss22', 'en', 1, 'https://ror.org/027s3ss22 Korea Industrial Technology Association 한국 산업 기술 진흥 협회'),
(64426, 'https://ror.org/02xdxcj12', 'en', 1, 'https://ror.org/02xdxcj12 The Korean Drama Society 한국드라마학회'),
(64427, 'https://ror.org/05c1vs952', 'en', 1, 'https://ror.org/05c1vs952 Open Cyber University of Korea 한국열린사이버대학교'),
(64428, 'https://ror.org/057hzyr27', 'en', 1, 'https://ror.org/057hzyr27 Korean Society For Philosophy East-West 한국동서철학회'),
(64429, 'https://ror.org/02fakmn72', 'en', 1, 'https://ror.org/02fakmn72 Korea Academic Society of Industrial Organization 한국 산업 학회'),
(64430, 'https://ror.org/05aykjy67', 'en', 1, 'https://ror.org/05aykjy67 Korea Testing Laboratory 한국 실험 연구원'),
(64431, 'https://ror.org/02zpms144', 'en', 1, 'https://ror.org/02zpms144 Korean Society of Alchol Science and Health Behavior 한국 알코올 중독 학회'),
(64432, 'https://ror.org/05skt5b53', 'en', 1, 'https://ror.org/05skt5b53 Korean Infant and Child Care Society 한국 유아 보육 학회'),
(64433, 'https://ror.org/05411zh25', 'en', 1, 'https://ror.org/05411zh25 The Korea Association of Yeolin Education 한국열린교육학회'),
(64434, 'https://ror.org/017xn7477', 'en', 1, 'https://ror.org/017xn7477 The Korean Rural Sociological Society 한국농촌사회학회'),
(64435, 'https://ror.org/007mm3r71', 'no_lang_code', 1, 'https://ror.org/007mm3r71 Korea Petroleum Group (South Korea) 한국 석유 그룹'),
(64436, 'https://ror.org/036n3de45', 'en', 1, 'https://ror.org/036n3de45 The Korean Society of Management Information Systems 한국 경영 정보 학회'),
(64437, 'https://ror.org/0195qz106', 'en', 1, 'https://ror.org/0195qz106 Korea Security Association 한국 증권업 협회'),
(64438, 'https://ror.org/05vw7gr61', 'en', 1, 'https://ror.org/05vw7gr61 The Korean Association for Policy Analysis and Evaluation 년 출범한 한국정책분석평가학회는 지금까지'),
(64439, 'https://ror.org/02frmqt72', 'no_lang_code', 1, 'https://ror.org/02frmqt72 Korea Information System (South Korea) 한국 정보 시스템'),
(64440, 'https://ror.org/05gennv44', 'en', 1, 'https://ror.org/05gennv44 Korea Service Management Society 한국서비스경영학회'),
(64441, 'https://ror.org/059ccn340', 'en', 1, 'https://ror.org/059ccn340 Korea International Accounting Association 한국국제회계학회'),
(64442, 'https://ror.org/04xxm7a37', 'en', 1, 'https://ror.org/04xxm7a37 Korea Association of Information Systems 한국정보시스템학회'),
(64443, 'https://ror.org/029v0q071', 'en', 1, 'https://ror.org/029v0q071 Korean Society for Education through Art 한국국제미술교육학회'),
(64444, 'https://ror.org/02ndpzr30', 'en', 1, 'https://ror.org/02ndpzr30 The Korean Physical Society 한국물리학회'),
(64445, 'https://ror.org/05qapvh61', 'en', 1, 'https://ror.org/05qapvh61 The Korean Association of Slavic Eurasian Studies'),
(64446, 'https://ror.org/040cjb096', 'en', 1, 'https://ror.org/040cjb096 Korea Art Education Association 한국 미술 교육 학회'),
(64447, 'https://ror.org/01a19sv16', 'en', 1, 'https://ror.org/01a19sv16 Korean Social Science Data Center 한국사회과학데이터센터'),
(64448, 'https://ror.org/05k7yfd33', 'en', 1, 'https://ror.org/05k7yfd33 Korea Lifelong Education Center 한국평생교육원'),
(64449, 'https://ror.org/0326a4r74', 'en', 1, 'https://ror.org/0326a4r74 The Art History Research Institute of Korea 한국 미술 사학 연구소'),
(64450, 'https://ror.org/02eyz9636', 'en', 1, 'https://ror.org/02eyz9636 The Korean Society for Practical Theology 한국 실천 신학회'),
(64451, 'https://ror.org/03thvaw95', 'en', 1, 'https://ror.org/03thvaw95 International Fiscal Association Korea 국제조세협회'),
(64452, 'https://ror.org/024emcc52', 'en', 1, 'https://ror.org/024emcc52 The Korean Institute of Communications and Information Sciences 한국 통신 정보 학회'),
(64453, 'https://ror.org/01yvzps21', 'en', 1, 'https://ror.org/01yvzps21 The Korean Association of Primary English Education 한국 초등 영어 교육 협회'),
(64454, 'https://ror.org/00tq75c95', 'en', 1, 'https://ror.org/00tq75c95 Korea Association for Social Welfare Studies'),
(64455, 'https://ror.org/01zbb0s29', 'en', 1, 'https://ror.org/01zbb0s29 Center for Art Studies 한국예술연구소'),
(64456, 'https://ror.org/00d8yqt37', 'en', 1, 'https://ror.org/00d8yqt37 The Korean Association for Public Administration 한국 행정 학회'),
(64457, 'https://ror.org/0179kz909', 'en', 1, 'https://ror.org/0179kz909 Korea Internet e-Commerce Association 한국인터넷전자상거래학회'),
(64458, 'https://ror.org/006bvz121', 'en', 1, 'https://ror.org/006bvz121 Korea Public Relations Consultancy Association 한국 홍보 상담회'),
(64459, 'https://ror.org/021h96b10', 'en', 1, 'https://ror.org/021h96b10 Korean Association Of Business Education 한국 경영 교육 학회'),
(64460, 'https://ror.org/00n2pkx76', 'en', 1, 'https://ror.org/00n2pkx76 Korea Invention Promotion Association 한국발명진흥회'),
(64461, 'https://ror.org/002xt1d94', 'en', 1, 'https://ror.org/002xt1d94 Korea Reformed Theological Society 한국 개혁 신학회'),
(64462, 'https://ror.org/05kh3e232', 'en', 1, 'https://ror.org/05kh3e232 Korea Academy of Mental Health Social Work 한국정신보건사회복지학회'),
(64463, 'https://ror.org/01nyd3m56', 'en', 1, 'https://ror.org/01nyd3m56 The Korean Regional Development Association 한국지역개발학회'),
(64464, 'https://ror.org/02930yz47', 'no_lang_code', 1, 'https://ror.org/02930yz47 Korea Kacoh (South Korea) 코리아카코'),
(64465, 'https://ror.org/05cjv8495', 'en', 1, 'https://ror.org/05cjv8495 Korea Association of Chinese Language and Literature 한국중어중문학회'),
(64466, 'https://ror.org/01vppps02', 'en', 1, 'https://ror.org/01vppps02 The Korean Association for the Study of English Language and Linguistics 한국영어학회'),
(64467, 'https://ror.org/02p1cew82', 'en', 1, 'https://ror.org/02p1cew82 Korean Society for Engineering Education 한국공학교육학회'),
(64468, 'https://ror.org/04mtmfz79', 'en', 1, 'https://ror.org/04mtmfz79 Korea Regional Economic Reserach institute 한국 지역 경제 연구원'),
(64469, 'https://ror.org/028dztp68', 'en', 1, 'https://ror.org/028dztp68 The Korean Society of British and American Fiction 한국근대영미소설학회'),
(64470, 'https://ror.org/0246ppj64', 'en', 1, 'https://ror.org/0246ppj64 Korea Music Educators Society 한국음악교육학회'),
(64471, 'https://ror.org/025162850', 'en', 1, 'https://ror.org/025162850 The Korean Society Of Western Civilization 한국 서양 문명 학회'),
(64472, 'https://ror.org/03x36kh13', 'en', 1, 'https://ror.org/03x36kh13 New Testament Society of Korea 한국신약학회'),
(64473, 'https://ror.org/04s0cpt97', 'en', 1, 'https://ror.org/04s0cpt97 Latin American Studies Association of Korea 한국라틴아메리카학회'),
(64474, 'https://ror.org/039wxfg33', 'en', 1, 'https://ror.org/039wxfg33 The Association for Historical Studies on Korean National Movement 한국민족운동사학회'),
(64475, 'https://ror.org/009fkjn48', 'en', 1, 'https://ror.org/009fkjn48 Korea Moral Education Association 한국도덕교육학회'),
(64476, 'https://ror.org/024qq7b50', 'en', 1, 'https://ror.org/024qq7b50 The Korean Society for Brain and Neural Sciences 한국뇌신경과학회'),
(64477, 'https://ror.org/00kpke984', 'en', 1, 'https://ror.org/00kpke984 Society for Korean Traditional Performing Arts 한국전통공연예술학회'),
(64478, 'https://ror.org/01bwbfp70', 'en', 1, 'https://ror.org/01bwbfp70 Korean Society of Systematic Theology 한국 신학 대학원'),
(64479, 'https://ror.org/03dt4rv96', 'en', 1, 'https://ror.org/03dt4rv96 Korean Society for Emotion and Sensibility 한국감성과학회'),
(64480, 'https://ror.org/04r0s7h58', 'en', 1, 'https://ror.org/04r0s7h58 Korean Society for Western Medieval History 한국 서양 중세사 학회'),
(64481, 'https://ror.org/00hy0ds89', 'en', 1, 'https://ror.org/00hy0ds89 The Society of Korean Performance Art and Culture 한국 공연 예술 학회'),
(64482, 'https://ror.org/00kv86506', 'en', 1, 'https://ror.org/00kv86506 Korean Association for Archaeological Heritage 한국매장문화재협회'),
(64483, 'https://ror.org/00zypna12', 'en', 1, 'https://ror.org/00zypna12 Korean Association For Studies of Philosophical Thought 한국 철학 연구회'),
(64484, 'https://ror.org/0199vce98', 'en', 1, 'https://ror.org/0199vce98 Korean Society for Teaching English Literature 한국영미문학교육학회'),
(64485, 'https://ror.org/0269yjk51', 'en', 1, 'https://ror.org/0269yjk51 The Musicological Society of Korea 한국 음악 학회'),
(64486, 'https://ror.org/01p0mtg35', 'en', 1, 'https://ror.org/01p0mtg35 The Society of Korean Practical Arts Education Research 한국실과교육연구학회'),
(64487, 'https://ror.org/04hqk4797', 'en', 1, 'https://ror.org/04hqk4797 The Korean Society of Art Theories 한국미술이론학회'),
(64488, 'https://ror.org/03qranw91', 'en', 1, 'https://ror.org/03qranw91 Korean Philosophical Association 한국 철학회'),
(64489, 'https://ror.org/0538yth83', 'en', 1, 'https://ror.org/0538yth83 Korea Association of Teachers of English 한국영어교육학회'),
(64490, 'https://ror.org/035hyrv04', 'en', 1, 'https://ror.org/035hyrv04 Korean Association of Feminist Philosophers 한국 여성 철학자 협회'),
(64491, 'https://ror.org/0072xr450', 'en', 1, 'https://ror.org/0072xr450 The Korean Association for Children with Special Needs 한국특수아동학회'),
(64492, 'https://ror.org/01kp5ce13', 'en', 1, 'https://ror.org/01kp5ce13 Korean Sociological Association 한국사회학회'),
(64493, 'https://ror.org/00m2gz195', 'en', 1, 'https://ror.org/00m2gz195 Korean Society for Political Thought 한국정치사상학회'),
(64494, 'https://ror.org/01srd9017', 'en', 1, 'https://ror.org/01srd9017 Korean Association of Southeast Asian Studies 한국동남아학회'),
(64495, 'https://ror.org/01kapv839', 'en', 1, 'https://ror.org/01kapv839 Korea Women''s Associations United 한국 여성 단체 연합'),
(64496, 'https://ror.org/00yzc7459', 'en', 1, 'https://ror.org/00yzc7459 Korea Entrepreneurship Foundation 한국청년기업가정신재단'),
(64497, 'https://ror.org/00b2xm665', 'en', 1, 'https://ror.org/00b2xm665 Korean Society of Sport Psychology 한국스포츠심리학회'),
(64498, 'https://ror.org/01sz7sf77', 'en', 1, 'https://ror.org/01sz7sf77 Korean Association of Real Estate Law 한국 부동산법 학회'),
(64499, 'https://ror.org/01g37sx43', 'en', 1, 'https://ror.org/01g37sx43 The Korea Society for Chinese Studies 한국중국학회'),
(64500, 'https://ror.org/03tks8n61', 'en', 1, 'https://ror.org/03tks8n61 Korean Ethics Education Association 한국윤리교육학회'),
(64501, 'https://ror.org/0319gez47', 'en', 1, 'https://ror.org/0319gez47 Korean Women''s Association for Communication Studies 한국 여성 학회'),
(64502, 'https://ror.org/037e82q62', 'en', 1, 'https://ror.org/037e82q62 The Korean Association for Christian Ethics 한국 기독교 윤리학회'),
(64503, 'https://ror.org/047ygyr49', 'en', 1, 'https://ror.org/047ygyr49 The Korean Association for Dialectology 한국방언학회'),
(64504, 'https://ror.org/044wnr609', 'en', 1, 'https://ror.org/044wnr609 The Korean Association of Ethics 한국윤리학회'),
(64505, 'https://ror.org/02ct9ew61', 'en', 1, 'https://ror.org/02ct9ew61 Korean Urban Management Association 한국도시행정학회'),
(64506, 'https://ror.org/05p0krc37', 'en', 1, 'https://ror.org/05p0krc37 The Korean Society of Greco-Roman Studies 한국서양고전학회'),
(64507, 'https://ror.org/02dmx2h89', 'en', 1, 'https://ror.org/02dmx2h89 Korean Family studies Association 한국가족학회'),
(64508, 'https://ror.org/04z1ghe08', 'en', 1, 'https://ror.org/04z1ghe08 Korean Publishing Science Society 한국 출판 학회'),
(64509, 'https://ror.org/045dsac53', 'en', 1, 'https://ror.org/045dsac53 Korean Association of Women''s History 한국 여성사 협회'),
(64510, 'https://ror.org/00k1mne41', 'en', 1, 'https://ror.org/00k1mne41 Korean Family Resource Management Association 한국가족자원경영학회'),
(64511, 'https://ror.org/00pxdqq86', 'en', 1, 'https://ror.org/00pxdqq86 The T.S. Eliot Society of Korea 한국T.S.엘리엇학회'),
(64512, 'https://ror.org/05h577t51', 'en', 1, 'https://ror.org/05h577t51 Korean Family Welfare Society 한국가족사회복지학회의'),
(64513, 'https://ror.org/0455j8q41', 'en', 1, 'https://ror.org/0455j8q41 Korea Dance Association 사단법인 한국무용협회'),
(64514, 'https://ror.org/04twmwz92', 'en', 1, 'https://ror.org/04twmwz92 Korean Association for Religious Education 한국 종교 교육 협회'),
(64515, 'https://ror.org/03taw9026', 'en', 1, 'https://ror.org/03taw9026 Korean Association of Physical Education and Sport for Girls and Women 한국 체육 체육 스포츠 협회'),
(64516, 'https://ror.org/02929hv86', 'en', 1, 'https://ror.org/02929hv86 The Korean Society of Design Culture 한국디자인문화학회'),
(64517, 'https://ror.org/05he9zt43', 'en', 1, 'https://ror.org/05he9zt43 Korean Association for Religious Studies 한국 종교 학회'),
(64518, 'https://ror.org/01rw44x65', 'en', 1, 'https://ror.org/01rw44x65 Korean Society of Design Science 한국디자인학회'),
(64519, 'https://ror.org/023gs4b42', 'en', 1, 'https://ror.org/023gs4b42 Korean Association of Sport Pedagogy 한국스포츠교육학회'),
(64520, 'https://ror.org/025bqp693', 'en', 1, 'https://ror.org/025bqp693 Korean Association Of Rusists 한국 루시스트 협회'),
(64521, 'https://ror.org/05hmph265', 'en', 1, 'https://ror.org/05hmph265 The Korean Association of Sports and Entertainment Law 한국스포츠엔터테인먼트법학회'),
(64522, 'https://ror.org/028hjhm59', 'en', 1, 'https://ror.org/028hjhm59 The Korean Society for the Philosophy of Science 한국 철학 학회'),
(64523, 'https://ror.org/04y0apy28', 'en', 1, 'https://ror.org/04y0apy28 The Korean Society for Early Childhood Education 한국유아교육학회'),
(64524, 'https://ror.org/03ax0vt93', 'en', 1, 'https://ror.org/03ax0vt93 Korea Society of Strategic Management 한국전략경영학회'),
(64525, 'https://ror.org/04kgxe034', 'en', 1, 'https://ror.org/04kgxe034 Korean Association of Exercise Physiology 한국운동생리학회'),
(64526, 'https://ror.org/03n01va58', 'en', 1, 'https://ror.org/03n01va58 Korean Association of Family Therapy'),
(64527, 'https://ror.org/02vtcpw89', 'en', 1, 'https://ror.org/02vtcpw89 The Korean Society for German History 한국독일사학회'),
(64528, 'https://ror.org/04am0wd41', 'en', 1, 'https://ror.org/04am0wd41 Korean Technology Education Association 한국기술교육학회'),
(64529, 'https://ror.org/00hk4sk41', 'en', 1, 'https://ror.org/00hk4sk41 The Korean Generative Grammar Circle 한국 문법 학회'),
(64530, 'https://ror.org/01j90hd50', 'en', 1, 'https://ror.org/01j90hd50 Korea Institute of Youth Facility and Environment'),
(64531, 'https://ror.org/03zpdjb80', 'en', 1, 'https://ror.org/03zpdjb80 Korean Literature Theory and Criticism Society 한국문학이론과 비평학회'),
(64532, 'https://ror.org/01ryvqz49', 'en', 1, 'https://ror.org/01ryvqz49 The Korean Literature Association 한국문학회'),
(64533, 'https://ror.org/04j7c2756', 'en', 1, 'https://ror.org/04j7c2756 The Korean Society for Gifted and Talented 한국영재교육학회'),
(64534, 'https://ror.org/0017thv62', 'en', 1, 'https://ror.org/0017thv62 The Korean Social and Personality Psychological Association 한국 사회 및 인성 심리 학회'),
(64535, 'https://ror.org/01k722e67', 'en', 1, 'https://ror.org/01k722e67 The Korean Society for Literature and Religion 한국문학과종교학회'),
(64536, 'https://ror.org/02t9r5804', 'en', 1, 'https://ror.org/02t9r5804 Korea Institute of Theological Information 한국신학정보연구원'),
(64537, 'https://ror.org/03nkgv042', 'en', 1, 'https://ror.org/03nkgv042 Korean Historical Folklore Institute 한국역사민속학회'),
(64538, 'https://ror.org/017j78t37', 'en', 1, 'https://ror.org/017j78t37 Korea-China Science & Technology Cooperation Center 한중 과학 기술 협력 센터'),
(64539, 'https://ror.org/02gsggh97', 'en', 1, 'https://ror.org/02gsggh97 Korea Tourism Organization 한국관광공사'),
(64540, 'https://ror.org/00rs3yk18', 'en', 1, 'https://ror.org/00rs3yk18 Korean Home Economics Education Association 한국가정과교육학회 회'),
(64541, 'https://ror.org/05p3nte65', 'en', 1, 'https://ror.org/05p3nte65 The Korean Society for the Study of Career Education 한국 직업 교육 연구회'),
(64542, 'https://ror.org/04qnq8c95', 'en', 1, 'https://ror.org/04qnq8c95 Korean Social Theory Association 한국사회이론학회'),
(64543, 'https://ror.org/0489td242', 'en', 1, 'https://ror.org/0489td242 Korean Spanish Literature Society 한국스페인어문학회'),
(64544, 'https://ror.org/02qv9b386', 'en', 1, 'https://ror.org/02qv9b386 Korean Housing Association 대한 주택 조합'),
(64545, 'https://ror.org/05db7s640', 'en', 1, 'https://ror.org/05db7s640 Korean Accounting Association 한국회계학회'),
(64546, 'https://ror.org/005g0ws49', 'en', 1, 'https://ror.org/005g0ws49 Tax Law Association'),
(64547, 'https://ror.org/01dk6as53', 'en', 1, 'https://ror.org/01dk6as53 Korea Tourism College 한국관광대학교'),
(64548, 'https://ror.org/029rkvw49', 'en', 1, 'https://ror.org/029rkvw49 The Korean Society for Sociology of Education 한국 사회 학회'),
(64549, 'https://ror.org/05wmm6h38', 'en', 1, 'https://ror.org/05wmm6h38 The Korean Society for the Study of Teacher Education 한국교원교육학회'),
(64550, 'https://ror.org/02vn18x32', 'en', 1, 'https://ror.org/02vn18x32 The Textlinguistic Society of Korea 한국텍스트언어학회'),
(64551, 'https://ror.org/050s80f40', 'en', 1, 'https://ror.org/050s80f40 Korea Agricultural Economics Association 한국농업경제학회'),
(64552, 'https://ror.org/03vhyy859', 'en', 1, 'https://ror.org/03vhyy859 Korea Tourism Research Association 한국관광연구학회'),
(64553, 'https://ror.org/01f7zsh14', 'en', 1, 'https://ror.org/01f7zsh14 Korean Theatre Education Association 한국연극교육학회'),
(64554, 'https://ror.org/01cscw292', 'en', 1, 'https://ror.org/01cscw292 The Korean Society for School Science 대한 학교 학회'),
(64555, 'https://ror.org/02zwzx824', 'en', 1, 'https://ror.org/02zwzx824 Urban Design Institute of Korea 한국 도시 디자인 학원'),
(64556, 'https://ror.org/0118x3091', 'en', 1, 'https://ror.org/0118x3091 The Society of Study for Korean Music Education 한국국악교육연구학회'),
(64557, 'https://ror.org/012qbtt58', 'en', 1, 'https://ror.org/012qbtt58 Korean Society of Interpretation and Translation Studies 우리 한국통역번역학회가'),
(64558, 'https://ror.org/003mmwh92', 'en', 1, 'https://ror.org/003mmwh92 Korean Musicological Society 한국국악학회'),
(64559, 'https://ror.org/00vy04v88', 'en', 1, 'https://ror.org/00vy04v88 The Society of Korean Language and Culture 한국어와 한국 문화 학회'),
(64560, 'https://ror.org/04nrp9v23', 'en', 1, 'https://ror.org/04nrp9v23 Korea Society of Translators 한국번역가협회'),
(64561, 'https://ror.org/018x0pp27', 'en', 1, 'https://ror.org/018x0pp27 The Korean Urban Geographical Society 한국도시지리학회'),
(64562, 'https://ror.org/01w38z049', 'en', 1, 'https://ror.org/01w38z049 The Korean Language And Culture Education Society 한국언어문화교육학회'),
(64563, 'https://ror.org/016wmdb91', 'en', 1, 'https://ror.org/016wmdb91 Korea Venture Business Association 벤처기업협회'),
(64564, 'https://ror.org/0199wd076', 'en', 1, 'https://ror.org/0199wd076 Korean Library And Information Science Society 한국 도서관 정보 학회'),
(64565, 'https://ror.org/04cf0ca19', 'en', 1, 'https://ror.org/04cf0ca19 The Society of Living Environment System 한국생활환경학회'),
(64566, 'https://ror.org/05s7r0436', 'en', 1, 'https://ror.org/05s7r0436 The Society of Korean Language Education 한국어교육학회'),
(64567, 'https://ror.org/05tf3bx05', 'en', 1, 'https://ror.org/05tf3bx05 Korea-American Association 한미 협회'),
(64568, 'https://ror.org/016096484', 'en', 1, 'https://ror.org/016096484 Society of Korean Classical Woman Literature 한국고전여성문학회'),
(64569, 'https://ror.org/02w82cx27', 'en', 1, 'https://ror.org/02w82cx27 Korean Social History Association 한국 사회사 협회'),
(64570, 'https://ror.org/04x5v4156', 'en', 1, 'https://ror.org/04x5v4156 Korean Arabic Arabic Literature Society 아랍어 아랍어 문학회'),
(64571, 'https://ror.org/02y8rvp52', 'en', 1, 'https://ror.org/02y8rvp52 Korean Language Institute 연세대학교 한국어학당은'),
(64572, 'https://ror.org/03fdkrb80', 'en', 1, 'https://ror.org/03fdkrb80 The Sociolinguistic Society of Korea 한국 사회 언어 학회'),
(64573, 'https://ror.org/051pt2g47', 'en', 1, 'https://ror.org/051pt2g47 Korean-German Vocational College 한독직업전문학교'),
(64574, 'https://ror.org/02dxc4q15', 'en', 1, 'https://ror.org/02dxc4q15 Korean Japanese Association 한일협회'),
(64575, 'https://ror.org/01npvq928', 'en', 1, 'https://ror.org/01npvq928 Korea International Trade Research Institute 한국 무역 연구원'),
(64576, 'https://ror.org/01j9g7106', 'no_lang_code', 1, 'https://ror.org/01j9g7106 Korea Innotech (South Korea) 고려이노테크'),
(64577, 'https://ror.org/04nexjf43', 'en', 1, 'https://ror.org/04nexjf43 Korean Language Society 한글 학회'),
(64578, 'https://ror.org/019037b12', 'en', 1, 'https://ror.org/019037b12 The Korean Association for Local Government & Administration Studies 대한 지방 행정 학회'),
(64579, 'https://ror.org/043gbyv69', 'en', 1, 'https://ror.org/043gbyv69 Korean Academy of Social Welfare 한국 사회 복지'),
(64580, 'https://ror.org/02tdp6375', 'en', 1, 'https://ror.org/02tdp6375 Korean Association Of Social Welfare Policy 한국 사회 복지 정책 학회'),
(64581, 'https://ror.org/04d6d4n84', 'en', 1, 'https://ror.org/04d6d4n84 Korean Beauty Society 한국 뷰티 학회'),
(64582, 'https://ror.org/05j84vd61', 'en', 1, 'https://ror.org/05j84vd61 Korean Association of Space & Environment Research 한국 우주 환경 연구 학회'),
(64583, 'https://ror.org/0339jm562', 'en', 1, 'https://ror.org/0339jm562 The Linguistic Society of Korea 한국언어학회'),
(64584, 'https://ror.org/002da4m58', 'en', 1, 'https://ror.org/002da4m58 Korean Bible Society 한국 성서 공회'),
(64585, 'https://ror.org/01bxb0563', 'en', 1, 'https://ror.org/01bxb0563 Kyung Hee Cyber University 경희사이버대학교/慶熙사이버大學校'),
(64586, 'https://ror.org/057t9t071', 'en', 1, 'https://ror.org/057t9t071 Kyung-in Women''s University 경 여자 대학교'),
(64587, 'https://ror.org/05qp95904', 'en', 1, 'https://ror.org/05qp95904 Korean Society for Journalism and Communication Studies 한국 저널리즘 커뮤니케이션 학회'),
(64588, 'https://ror.org/05r0sb604', 'en', 1, 'https://ror.org/05r0sb604 Kyungbok University 경복대학교'),
(64589, 'https://ror.org/03y64fn77', 'en', 1, 'https://ror.org/03y64fn77 The Korean Academic Society of Business Administration And Law 한국 경영 학회'),
(64590, 'https://ror.org/02zh3z112', 'en', 1, 'https://ror.org/02zh3z112 Korea Association of Chinese Language Education 한국 언어 교육 학회'),
(64591, 'https://ror.org/03d3d5f32', 'en', 1, 'https://ror.org/03d3d5f32 Kyungmin University 경민대학교'),
(64592, 'https://ror.org/01hp1ex72', 'en', 1, 'https://ror.org/01hp1ex72 Korean Association For Local Government Studies 한국지방자치학회는'),
(64593, 'https://ror.org/02jv1px47', 'en', 1, 'https://ror.org/02jv1px47 Kyungnam College of Information and Technology 경남정보대학교'),
(64594, 'https://ror.org/02apbz725', 'en', 1, 'https://ror.org/02apbz725 Korean Society of Civil Engineers 대한 토목 학회'),
(64595, 'https://ror.org/00wjmqn02', 'en', 1, 'https://ror.org/00wjmqn02 Korean Logistics Research Association 한국물류학회'),
(64596, 'https://ror.org/00cafe722', 'en', 1, 'https://ror.org/00cafe722 The Korea Association for Han-Character and Classical Written Language Education 한국 한문학 및 고전 문어 교육 협회'),
(64597, 'https://ror.org/025ptz228', 'en', 1, 'https://ror.org/025ptz228 Korean Marketing Association 한국마케팅학회'),
(64598, 'https://ror.org/054z4z240', 'en', 1, 'https://ror.org/054z4z240 Korea International Understanding Education Society 한국 국제 이해 교육 학회'),
(64599, 'https://ror.org/02pjxh370', 'en', 1, 'https://ror.org/02pjxh370 Medieval and Early Modern English Studies Association of Korea 한국중세르네상스영문학회'),
(64600, 'https://ror.org/00wc09b24', 'en', 1, 'https://ror.org/00wc09b24 The Korean Society of Eastern Art Studies 한국 동서양 학회'),
(64601, 'https://ror.org/05agz2w73', 'en', 1, 'https://ror.org/05agz2w73 The Korean Society of Sports Science 대한 체육 학회'),
(64602, 'https://ror.org/005ccd956', 'en', 1, 'https://ror.org/005ccd956 Korean Association for History of Modern Art 현대미술사학회'),
(64603, 'https://ror.org/04qh86j58', 'en', 1, 'https://ror.org/04qh86j58 Korean Association Of Science and Technology Studies 한국 과학 기술 학회'),
(64604, 'https://ror.org/02kxkje75', 'en', 1, 'https://ror.org/02kxkje75 Association for the Study of Literature & Environment 문학 및 환경 학회'),
(64605, 'https://ror.org/05e2j7v98', 'en', 1, 'https://ror.org/05e2j7v98 The Modern English Society of Korea 현대 한국 영어 학회'),
(64606, 'https://ror.org/01h9v1373', 'no_lang_code', 1, 'https://ror.org/01h9v1373 Language Science (South Korea) 언어과학'),
(64607, 'https://ror.org/011mzb617', 'en', 1, 'https://ror.org/011mzb617 Masan University 마산 대학교'),
(64608, 'https://ror.org/03k6gyz62', 'en', 1, 'https://ror.org/03k6gyz62 The Korean Association of Literature and Film 한국 문학 영화 학회'),
(64609, 'https://ror.org/02e246391', 'en', 1, 'https://ror.org/02e246391 Korean Mathematical Society 한국 수학회'),
(64610, 'https://ror.org/04jadnp30', 'en', 1, 'https://ror.org/04jadnp30 Korean Classics Research Society 한국 고전 학회'),
(64611, 'https://ror.org/05spnqq37', 'en', 1, 'https://ror.org/05spnqq37 The Society of Korean Literary Criticism 한국비평문학회는'),
(64612, 'https://ror.org/05ba3vx21', 'en', 1, 'https://ror.org/05ba3vx21 Modern Korean Literature Assocation 한국 근대 문학회'),
(64613, 'https://ror.org/01f573w53', 'en', 1, 'https://ror.org/01f573w53 Korean Cognitive and Biological Psychology Society 한국인지및생물심리학회'),
(64614, 'https://ror.org/01712vn60', 'en', 1, 'https://ror.org/01712vn60 Medical Device Information & Technology Assistance Center'),
(64615, 'https://ror.org/01nsk1909', 'no_lang_code', 1, 'https://ror.org/01nsk1909 Medifron (South Korea)'),
(64616, 'https://ror.org/02t0g3v76', 'en', 1, 'https://ror.org/02t0g3v76 The Korean Association of Language Studies 한국언어연구학회'),
(64617, 'https://ror.org/02qqdvw36', 'en', 1, 'https://ror.org/02qqdvw36 Korea Communication Association 한국 통신 협회'),
(64618, 'https://ror.org/05sjd4488', 'en', 1, 'https://ror.org/05sjd4488 The Linguistic Science Society 언어과학회'),
(64619, 'https://ror.org/03vnxht79', 'no_lang_code', 1, 'https://ror.org/03vnxht79 Medipost (South Korea) 메디 포스트'),
(64620, 'https://ror.org/02ajr4b89', 'en', 1, 'https://ror.org/02ajr4b89 Korean Society of Comparision Labor Law 한국비교노동법학회'),
(64621, 'https://ror.org/03vabkb23', 'en', 1, 'https://ror.org/03vabkb23 Korea Institute of Human Resources Development 국가과학기술인력개발원'),
(64622, 'https://ror.org/05e91m220', 'no_lang_code', 1, 'https://ror.org/05e91m220 NC bit (South Korea)'),
(64623, 'https://ror.org/022535b24', 'no_lang_code', 1, 'https://ror.org/022535b24 Korea Sensor Technology (South Korea) 한국 센서 기술'),
(64624, 'https://ror.org/03cg2g747', 'en', 1, 'https://ror.org/03cg2g747 Korea Counseling Psychology Association 한국 상담 심리 학회'),
(64625, 'https://ror.org/04h002109', 'no_lang_code', 1, 'https://ror.org/04h002109 Space Solutions (South Korea) 우주 솔루션'),
(64626, 'https://ror.org/056zvrd21', 'en', 1, 'https://ror.org/056zvrd21 The Korean Criminal Law Association 한국 형법 협회'),
(64627, 'https://ror.org/04980ww45', 'no_lang_code', 1, 'https://ror.org/04980ww45 Nemo Partners (South Korea) 네모파트너즈'),
(64628, 'https://ror.org/05a4qc136', 'en', 1, 'https://ror.org/05a4qc136 The Modern English Education Society'),
(64629, 'https://ror.org/02w5yvv06', 'no_lang_code', 1, 'https://ror.org/02w5yvv06 Neo Access (South Korea) 네오엑세스'),
(64630, 'https://ror.org/039t1kw64', 'en', 1, 'https://ror.org/039t1kw64 The Korean Society for Culture and Arts Education Studies 한국 문화 예술 교육 학회'),
(64631, 'https://ror.org/02f9z7g16', 'en', 1, 'https://ror.org/02f9z7g16 The Society Of Modern Grammar 현대 문법 학회'),
(64632, 'https://ror.org/00p285362', 'en', 1, 'https://ror.org/00p285362 The Society for Dance Documentation & History 무용 협회 문서 및 역사'),
(64633, 'https://ror.org/0406egb04', 'no_lang_code', 1, 'https://ror.org/0406egb04 Adbiotech (South Korea)'),
(64634, 'https://ror.org/00p46pc96', 'no_lang_code', 1, 'https://ror.org/00p46pc96 (주)넥스바이오 Nex Bio (South Korea)'),
(64635, 'https://ror.org/01pv18527', 'en', 1, 'https://ror.org/01pv18527 The Association of North-east Asian Cultures 동북아시아문화학회'),
(64636, 'https://ror.org/04nwskz42', 'en', 1, 'https://ror.org/04nwskz42 Korea Economic Law Association 한국경제법학회'),
(64637, 'https://ror.org/03fmpbg41', 'en', 1, 'https://ror.org/03fmpbg41 Reformed Graduate University'),
(64638, 'https://ror.org/00b7g1a82', 'en', 1, 'https://ror.org/00b7g1a82 Reformed Theological Institute 개혁 신학 연구원'),
(64639, 'https://ror.org/01njzma31', 'en', 1, 'https://ror.org/01njzma31 Mokpo Science University 목포과학대학교'),
(64640, 'https://ror.org/012hhd379', 'en', 1, 'https://ror.org/012hhd379 The Anglican Church of Korea 대한성공회 관구 홈페이지'),
(64641, 'https://ror.org/04wyd3784', 'en', 1, 'https://ror.org/04wyd3784 Philosophy Of Education Society Of Korea 한국 교육 철학회'),
(64642, 'https://ror.org/01v0e7752', 'en', 1, 'https://ror.org/01v0e7752 The Korean Educational Administration Society 한국 교육 행정 학회'),
(64643, 'https://ror.org/03xyxqq59', 'en', 1, 'https://ror.org/03xyxqq59 Korean Association for the Society of Religion 한국 종교 사회'),
(64644, 'https://ror.org/05h8mcx43', 'en', 1, 'https://ror.org/05h8mcx43 Korean Association of Architectural History 건축역사학회'),
(64645, 'https://ror.org/00se45k92', 'en', 1, 'https://ror.org/00se45k92 Korea Open Association Early Childhood Education 한국열린유아교육학회'),
(64646, 'https://ror.org/01gwm2d88', 'en', 1, 'https://ror.org/01gwm2d88 Korean Society For Curriculum Studies 한국교육과정학회'),
(64647, 'https://ror.org/05jd85x98', 'en', 1, 'https://ror.org/05jd85x98 Korean Cultural Dynamics 동양문화연구원'),
(64648, 'https://ror.org/02qwswa66', 'no_lang_code', 1, 'https://ror.org/02qwswa66 Genoss (South Korea)'),
(64649, 'https://ror.org/03ygfng20', 'en', 1, 'https://ror.org/03ygfng20 The Society Eastern Philosophy 동양철학연구회'),
(64650, 'https://ror.org/01b4h2w02', 'en', 1, 'https://ror.org/01b4h2w02 Seoul Institute of the Arts 서울 예술 대학'),
(64651, 'https://ror.org/02ra22j36', 'en', 1, 'https://ror.org/02ra22j36 Nano Technology Research Association 나노융합산업연구조합'),
(64652, 'https://ror.org/04dqc4x73', 'en', 1, 'https://ror.org/04dqc4x73 Osan University 오산대학'),
(64653, 'https://ror.org/03efra385', 'no_lang_code', 1, 'https://ror.org/03efra385 Manchurian Society 만주 사회'),
(64654, 'https://ror.org/05w0m3461', 'no_lang_code', 1, 'https://ror.org/05w0m3461 Autech Group (South Korea) 오텍그룹은'),
(64655, 'https://ror.org/026c0g860', 'no_lang_code', 1, 'https://ror.org/026c0g860 Samil Industry (South Korea)'),
(64656, 'https://ror.org/01mbh6s37', 'no_lang_code', 1, 'https://ror.org/01mbh6s37 PricewaterhouseCoopers (South Korea)'),
(64657, 'https://ror.org/024swd842', 'no_lang_code', 1, 'https://ror.org/024swd842 KuboTek (South Korea) 쿠보 텍'),
(64658, 'https://ror.org/03wpcjb05', 'no_lang_code', 1, 'https://ror.org/03wpcjb05 Samoo Architects & Engineers (South Korea)'),
(64659, 'https://ror.org/00d5asq22', 'no_lang_code', 1, 'https://ror.org/00d5asq22 Pansori Society 판소리학회는'),
(64660, 'https://ror.org/045272c39', 'no_lang_code', 1, 'https://ror.org/045272c39 Samyoung Unitech (South Korea)'),
(64661, 'https://ror.org/045195s13', 'no_lang_code', 1, 'https://ror.org/045195s13 Nara Controls (South Korea)'),
(64662, 'https://ror.org/04v6xjb97', 'en', 1, 'https://ror.org/04v6xjb97 The Society of Philosophical Studies 철학연구회'),
(64663, 'https://ror.org/03p6bmy35', 'no_lang_code', 1, 'https://ror.org/03p6bmy35 Biocera (South Korea) 바이오 에라'),
(64664, 'https://ror.org/01tnmcm04', 'en', 1, 'https://ror.org/01tnmcm04 Scientists and Engineers Without Borders 국경없는 과학 기술 사회'),
(64665, 'https://ror.org/020b78451', 'en', 1, 'https://ror.org/020b78451 Sejong Cyber University 세종사이버대학교'),
(64666, 'https://ror.org/032j0jn37', 'en', 1, 'https://ror.org/032j0jn37 National Institute of Korean History 한국 역사 연구소'),
(64667, 'https://ror.org/00eqzvz74', 'no_lang_code', 1, 'https://ror.org/00eqzvz74 Terrasun (South Korea) 테라 손'),
(64668, 'https://ror.org/04t7p9y73', 'no_lang_code', 1, 'https://ror.org/04t7p9y73 (재)포항테크노파크 Pohang TechnoPark (South Korea)'),
(64669, 'https://ror.org/03xxysc72', 'no_lang_code', 1, 'https://ror.org/03xxysc72 SensorTec (South Korea)'),
(64670, 'https://ror.org/013te4x73', 'no_lang_code', 1, 'https://ror.org/013te4x73 Vitzro Tech (South Korea) 비츠로 테크'),
(64671, 'https://ror.org/04d1kva62', 'no_lang_code', 1, 'https://ror.org/04d1kva62 YD Global Life Science (South Korea) 와이디생명과학'),
(64672, 'https://ror.org/01wf22864', 'en', 1, 'https://ror.org/01wf22864 Seoil University 瑞逸大學校,'),
(64673, 'https://ror.org/023h03q35', 'en', 1, 'https://ror.org/023h03q35 National Institute for Lifelong Education 국가평생교육진흥원'),
(64674, 'https://ror.org/05rmdvv71', 'no_lang_code', 1, 'https://ror.org/05rmdvv71 Worldwide Intellectual Property Service (South Korea) 전세계 지적 재산권 서비스'),
(64675, 'https://ror.org/015pwqr12', 'en', 1, 'https://ror.org/015pwqr12 National Sports Promotion Corporation 국민체육진흥공단'),
(64676, 'https://ror.org/04ptgyz27', 'en', 1, 'https://ror.org/04ptgyz27 Korean Academic Society for Public Relations 한국PR학회'),
(64677, 'https://ror.org/04fndbe13', 'no_lang_code', 1, 'https://ror.org/04fndbe13 Woo Young Medical (South Korea) 우 영 의료'),
(64678, 'https://ror.org/02an5qv02', 'en', 1, 'https://ror.org/02an5qv02 Seoul University of Buddhism 서울불교대학원대학교'),
(64679, 'https://ror.org/04h7sxq81', 'no_lang_code', 1, 'https://ror.org/04h7sxq81 Winus Technology (South Korea) 위너스 과학 기술'),
(64680, 'https://ror.org/001hkh847', 'en', 1, 'https://ror.org/001hkh847 Sorabol College 서라벌대학'),
(64681, 'https://ror.org/00c232088', 'en', 1, 'https://ror.org/00c232088 The Society of Service Science 서비스 과학회'),
(64682, 'https://ror.org/04n3n8t23', 'no_lang_code', 1, 'https://ror.org/04n3n8t23 U-Tel (South Korea) 유텔'),
(64683, 'https://ror.org/03994m394', 'no_lang_code', 1, 'https://ror.org/03994m394 Tech Valley (South Korea) 테크밸리'),
(64684, 'https://ror.org/03sw09b87', 'no_lang_code', 1, 'https://ror.org/03sw09b87 SFC (South Korea)'),
(64685, 'https://ror.org/058yas979', 'en', 1, 'https://ror.org/058yas979 Technology Management Economics Society 기술경영경제학회'),
(64686, 'https://ror.org/00hzd4z47', 'no_lang_code', 1, 'https://ror.org/00hzd4z47 Sharing and Technologies Incorporated (South Korea) 공유 및 기술법인의'),
(64687, 'https://ror.org/00vpqzk55', 'no_lang_code', 1, 'https://ror.org/00vpqzk55 SillaJen (South Korea) 젠 의자'),
(64688, 'https://ror.org/025x5jh64', 'en', 1, 'https://ror.org/025x5jh64 Daedong Han Literary Society 대동한문학회'),
(64689, 'https://ror.org/02m3rv513', 'en', 1, 'https://ror.org/02m3rv513 Shingu College 신구대학교'),
(64690, 'https://ror.org/01h8s5550', 'en', 1, 'https://ror.org/01h8s5550 Korea Intelligent Information Systems Society 한국 지능 정보 시스템 학회'),
(64691, 'https://ror.org/007mhqn04', 'en', 1, 'https://ror.org/007mhqn04 Songwon University 송원대학교'),
(64692, 'https://ror.org/00sc0e019', 'en', 1, 'https://ror.org/00sc0e019 Shinhan University 신한 대학교'),
(64693, 'https://ror.org/03hhghr21', 'en', 1, 'https://ror.org/03hhghr21 The Korean Social Security Association 한국 사회 보장 협회'),
(64694, 'https://ror.org/05eaeap32', 'en', 1, 'https://ror.org/05eaeap32 Korean Speech-Language & Hearing Association'),
(64695, 'https://ror.org/019aqfx79', 'en', 1, 'https://ror.org/019aqfx79 The Japanese Culture Association of Korea 한국일본문화학회'),
(64696, 'https://ror.org/05mr5xg41', 'en', 1, 'https://ror.org/05mr5xg41 Shinsung University 신성 대학교'),
(64697, 'https://ror.org/03r6fm605', 'en', 1, 'https://ror.org/03r6fm605 Japanese Language & Culture Association of Korea 일본언어문화학회를'),
(64698, 'https://ror.org/01yywym13', 'en', 1, 'https://ror.org/01yywym13 The Society for the Studies of Silla History 신라 역사 학회'),
(64699, 'https://ror.org/05cdh3h43', 'en', 1, 'https://ror.org/05cdh3h43 The Korean Association of General Education 대한 교육 총회'),
(64700, 'https://ror.org/02qjrh386', 'en', 1, 'https://ror.org/02qjrh386 Korea Association of japanology 한국일본학회'),
(64701, 'https://ror.org/051awps38', 'en', 1, 'https://ror.org/051awps38 Soongeui Women''s College 숭의여자대학교'),
(64702, 'https://ror.org/04t17k048', 'en', 1, 'https://ror.org/04t17k048 Society for Korean Ancient History 한국 고대사 학회'),
(64703, 'https://ror.org/01jwwa840', 'en', 1, 'https://ror.org/01jwwa840 Korea Soongsil Cyber University 한국사이버대학교 종로캠퍼스'),
(64704, 'https://ror.org/018g7an25', 'no_lang_code', 1, 'https://ror.org/018g7an25 Emart (South Korea) 이마트'),
(64705, 'https://ror.org/0058tb798', 'en', 1, 'https://ror.org/0058tb798 The Society for Teaching English through Media 영상영어교육학회'),
(64706, 'https://ror.org/00k1vj692', 'en', 1, 'https://ror.org/00k1vj692 Dongyang Hanmoon Association 동양 한문 연합회'),
(64707, 'https://ror.org/04bkx5428', 'en', 1, 'https://ror.org/04bkx5428 The Korean Association of Small Buisness Studies 한국중소기업학회'),
(64708, 'https://ror.org/012q4vx20', 'en', 1, 'https://ror.org/012q4vx20 Korean Psychological Association of Culture and Social Issues 한국문화및사회문제심리학회'),
(64709, 'https://ror.org/05wjeww18', 'en', 1, 'https://ror.org/05wjeww18 BuildingSMART Korea 서울 스마트 빌딩'),
(64710, 'https://ror.org/018dqxd30', 'en', 1, 'https://ror.org/018dqxd30 Korea Thinking and Expression Society 한국 사고 표현 사회'),
(64711, 'https://ror.org/03artrq79', 'en', 1, 'https://ror.org/03artrq79 Association of Western Art History 한국서양미술사학회 회'),
(64712, 'https://ror.org/04thcs884', 'en', 1, 'https://ror.org/04thcs884 Korean Society of Modern Philosophy 서양근대철학회'),
(64713, 'https://ror.org/014dg3r13', 'en', 1, 'https://ror.org/014dg3r13 The Korean Society for Industrial Education 한국산업교육학회'),
(64714, 'https://ror.org/051mxsx19', 'no_lang_code', 1, 'https://ror.org/051mxsx19 SP Technology (South Korea) 에스피텍'),
(64715, 'https://ror.org/01shdwj89', 'en', 1, 'https://ror.org/01shdwj89 Korea Academic Society of Tourism Management 대한관광경영학회'),
(64716, 'https://ror.org/04kdp2897', 'en', 1, 'https://ror.org/04kdp2897 Tourism Management Research Organization 관광경영학회'),
(64717, 'https://ror.org/00j9f1256', 'no_lang_code', 1, 'https://ror.org/00j9f1256 Youngjin Technology (South Korea) 영진기술 주식회사'),
(64718, 'https://ror.org/028bgy326', 'en', 1, 'https://ror.org/028bgy326 Westminster Graduate School of Theology 웨스트민스터신학대학원대학교'),
(64719, 'https://ror.org/04sgsjj39', 'en', 1, 'https://ror.org/04sgsjj39 Korean Society for the Study of Social Education 한국 사회 교육 학회'),
(64720, 'https://ror.org/00fbs6k07', 'no_lang_code', 1, 'https://ror.org/00fbs6k07 Stronghold Technology (South Korea)'),
(64721, 'https://ror.org/0537cyx03', 'en', 1, 'https://ror.org/0537cyx03 Agricultural Farmer''s Policy Institute 농업농민정책연구소 녀름'),
(64722, 'https://ror.org/04320sq35', 'en', 1, 'https://ror.org/04320sq35 Yeongnam Chinese Literature Society 영남중국어문학회'),
(64723, 'https://ror.org/03t6vm274', 'no_lang_code', 1, 'https://ror.org/03t6vm274 Wonkwang Digital University 원광디지털대학교'),
(64724, 'https://ror.org/0014sb331', 'en', 1, 'https://ror.org/0014sb331 Suncheon Jeil College 순천제일대학교'),
(64725, 'https://ror.org/02gegry54', 'en', 1, 'https://ror.org/02gegry54 Asia-Pacific Centre of Education for International Understanding 유네스코의 지원하에 아시아 태평양 국제 이해 교육 센터'),
(64726, 'https://ror.org/04astfq33', 'en', 1, 'https://ror.org/04astfq33 Youth Society Opening the Future 청소년 사회 미래를 여는'),
(64727, 'https://ror.org/008cmt298', 'en', 1, 'https://ror.org/008cmt298 Sunlin University 선린 대학교'),
(64728, 'https://ror.org/02ce9zg48', 'en', 1, 'https://ror.org/02ce9zg48 The Association of Comparative Study of World Literature 세계문학비교학회'),
(64729, 'https://ror.org/024rmbk85', 'en', 1, 'https://ror.org/024rmbk85 The Yeats Society of Korea 한국예이츠학회'),
(64730, 'https://ror.org/01t4th798', 'no_lang_code', 1, 'https://ror.org/01t4th798 Yeoju University 여주대학교'),
(64731, 'https://ror.org/01yarqc83', 'en', 1, 'https://ror.org/01yarqc83 Suwon Women’s University 수원 여자 대학교'),
(64732, 'https://ror.org/01bxcf222', 'no_lang_code', 1, 'https://ror.org/01bxcf222 EurasTech (South Korea) 유라스텍');
INSERT INTO `rors` VALUES
(64733, 'https://ror.org/00dhaqb25', 'en', 1, 'https://ror.org/00dhaqb25 Yeongnam Archaeological Society 영남고고학회'),
(64734, 'https://ror.org/03zscq151', 'en', 1, 'https://ror.org/03zscq151 Suwon Science College 수원 과학 대학'),
(64735, 'https://ror.org/01rte3169', 'en', 1, 'https://ror.org/01rte3169 Podar Ayurved Medical College'),
(64736, 'https://ror.org/03bftdb85', 'en', 1, 'https://ror.org/03bftdb85 Dr. B.R.K.R. Government Ayurvedic College'),
(64737, 'https://ror.org/016w6xc44', 'en', 1, 'https://ror.org/016w6xc44 Bhaktivedanta Hospital & Research Institute'),
(64738, 'https://ror.org/009ytmf35', 'en', 1, 'https://ror.org/009ytmf35 ACE Hospital'),
(64739, 'https://ror.org/05mmqpp85', 'en', 1, 'https://ror.org/05mmqpp85 Acharya Shri Chander College of Medical Sciences and Hospital'),
(64740, 'https://ror.org/02jx32965', 'en', 1, 'https://ror.org/02jx32965 Department of Science & Technology'),
(64741, 'https://ror.org/02b49vz59', 'en', 1, 'https://ror.org/02b49vz59 Dr. Panjabrao Deshmukh Memorial Medical College'),
(64742, 'https://ror.org/02nj97t48', 'en', 1, 'https://ror.org/02nj97t48 Adesh University'),
(64743, 'https://ror.org/05t86wg70', 'en', 1, 'https://ror.org/05t86wg70 Agartala Government Medical College'),
(64744, 'https://ror.org/03v4ccn82', 'en', 1, 'https://ror.org/03v4ccn82 Fortis Escorts Hospital फोर्टिस एस्कॉर्ट्स अस्पताल'),
(64745, 'https://ror.org/045tbyy79', 'no_lang_code', 1, 'https://ror.org/045tbyy79 Dr. Bidari’s Ashwini Hospital'),
(64746, 'https://ror.org/0078v1m45', 'en', 1, 'https://ror.org/0078v1m45 Government Ayurved College, Nanded'),
(64747, 'https://ror.org/03wcmbn72', 'en', 1, 'https://ror.org/03wcmbn72 Kims Bibi Hospital'),
(64748, 'https://ror.org/020a0s966', 'en', 1, 'https://ror.org/020a0s966 Bodyline Hospitals'),
(64749, 'https://ror.org/00997qd48', 'en', 1, 'https://ror.org/00997qd48 Goverment Siddha Medical College அரசு சித்த மருத்துவ கல்லூரி'),
(64750, 'https://ror.org/03rcmhq47', 'en', 1, 'https://ror.org/03rcmhq47 Apollo Hospitals अपोलो अस्पताल'),
(64751, 'https://ror.org/02hw5jq67', 'en', 1, 'https://ror.org/02hw5jq67 Dr. Syamala Reddy Dental College Hospital & Research Center'),
(64752, 'https://ror.org/03b9tt486', 'en', 1, 'https://ror.org/03b9tt486 Ananthapuri Hospitals and Research Institute'),
(64753, 'https://ror.org/05wz8q607', 'en', 1, 'https://ror.org/05wz8q607 Apollo Cradle For Women & Children'),
(64754, 'https://ror.org/05h37xr68', 'en', 1, 'https://ror.org/05h37xr68 Asha Hospital'),
(64755, 'https://ror.org/01p9kdj82', 'no_lang_code', 1, 'https://ror.org/01p9kdj82 Sir Takhtasinhji General Hospital સર તખ્તસિંહજી જનરલ હોસ્પિટલ'),
(64756, 'https://ror.org/049weg966', 'en', 1, 'https://ror.org/049weg966 ESI - Post Graduate Institute of Medical Science and Research'),
(64757, 'https://ror.org/01eskr961', 'en', 1, 'https://ror.org/01eskr961 ESI - Post Graduate Institute of Medical Science and Research'),
(64758, 'https://ror.org/00a9yh217', 'en', 1, 'https://ror.org/00a9yh217 Employees State Insurance Post Graduate Institute of Medical Sciences and Research'),
(64759, 'https://ror.org/05a67cs45', 'en', 1, 'https://ror.org/05a67cs45 Central Council for Research in Siddha'),
(64760, 'https://ror.org/00drjse70', 'en', 1, 'https://ror.org/00drjse70 Balaji Dental & Craniofacial Hospital'),
(64761, 'https://ror.org/02qx4d724', 'en', 1, 'https://ror.org/02qx4d724 Bangalore Medical Center'),
(64762, 'https://ror.org/03tx9q361', 'no_lang_code', 1, 'https://ror.org/03tx9q361 Fortis Hospital ফোর্টিস হসপিটাল'),
(64763, 'https://ror.org/00t8p6b60', 'en', 1, 'https://ror.org/00t8p6b60 Bapu Nature Cure Hospital & Yogashram'),
(64764, 'https://ror.org/02hn5dg93', 'en', 1, 'https://ror.org/02hn5dg93 Vaidyaratnam P.S. Varier Ayurveda College'),
(64765, 'https://ror.org/03kb9y492', 'en', 1, 'https://ror.org/03kb9y492 SDM College of Medical Science and Hospital ಎಸ್ ಡಿ ಎಮ್ ವೈದ್ಯಕೀಯ ಮಹಾವಿದ್ಯಾಲಯ ಮತ್ತು ಆಸ್ಪತ್ರೆ'),
(64766, 'https://ror.org/034ad8717', 'en', 1, 'https://ror.org/034ad8717 Chaithanya Eye Hospital and Research Institute'),
(64767, 'https://ror.org/05hnet169', 'en', 1, 'https://ror.org/05hnet169 Chennai Skin Foundation & Yesudian Research Institute'),
(64768, 'https://ror.org/05xsa6v37', 'en', 1, 'https://ror.org/05xsa6v37 Government Ayurvedic College and Hospital Osmanabad सरकारी आयुर्वेद महाविद्यालय आणि रुग्णालय उस्मानाबाद'),
(64769, 'https://ror.org/04cka6191', 'en', 1, 'https://ror.org/04cka6191 Chethana Special School'),
(64770, 'https://ror.org/03fkhvq16', 'en', 1, 'https://ror.org/03fkhvq16 Desh Bhagat Ayurvedic College and Hospital'),
(64771, 'https://ror.org/007n0ss86', 'en', 1, 'https://ror.org/007n0ss86 Desh Bhagat University ਦੇਸ਼ ਭਗਤ ਯੂਨੀਵਰਸਿਟੀ'),
(64772, 'https://ror.org/058v1h521', 'no_lang_code', 1, 'https://ror.org/058v1h521 Cloudnine'),
(64773, 'https://ror.org/02zxg0r06', 'en', 1, 'https://ror.org/02zxg0r06 Institute of Applied Dermatology'),
(64774, 'https://ror.org/02z23mj13', 'en', 1, 'https://ror.org/02z23mj13 Kazakh Eye Research Institute Казахский НИИ глазных болезней Көз аурулары Қазақ ғылыми зерттеу институты'),
(64775, 'https://ror.org/04phk2284', 'en', 1, 'https://ror.org/04phk2284 Dolphin (PG) Institute of Bio Medical and Natural Science'),
(64776, 'https://ror.org/01apnjb23', 'no_lang_code', 1, 'https://ror.org/01apnjb23 Recipharm (Sweden)'),
(64777, 'https://ror.org/02kras730', 'no_lang_code', 1, 'https://ror.org/02kras730 Prexton Therapeutics (Netherlands)'),
(64778, 'https://ror.org/019jryw76', 'no_lang_code', 1, 'https://ror.org/019jryw76 Prexton Therapeutics (Switzerland)'),
(64779, 'https://ror.org/03psvch52', 'en', 1, 'https://ror.org/03psvch52 Dr. BMN College of Home Science Dr. BMN कॉलेज ऑफ़ होम साइंस'),
(64780, 'https://ror.org/03re7j391', 'no_lang_code', 1, 'https://ror.org/03re7j391 Osmotica Pharmaceutical (Hungary)'),
(64781, 'https://ror.org/02w2qw090', 'no_lang_code', 1, 'https://ror.org/02w2qw090 Charles River Laboratories (Germany)'),
(64782, 'https://ror.org/01hg18f75', 'no_lang_code', 1, 'https://ror.org/01hg18f75 SynAgile (United States)'),
(64783, 'https://ror.org/02kqsaj20', 'en', 1, 'https://ror.org/02kqsaj20 Krishna Maternity and Surgical Nursing Home'),
(64784, 'https://ror.org/024ay6y96', 'en', 1, 'https://ror.org/024ay6y96 The Anam Society for the Study Of Education 아남 교육 학회'),
(64785, 'https://ror.org/00ntvge22', 'en', 1, 'https://ror.org/00ntvge22 M.B.Barvalia Foundation’s Spandan Organizations'),
(64786, 'https://ror.org/02pn5rj08', 'en', 1, 'https://ror.org/02pn5rj08 State Key Laboratory of Cryptology 密码科学技术国家重点实验室由国家密码管理局主管'),
(64787, 'https://ror.org/01ne6ew22', 'no_lang_code', 1, 'https://ror.org/01ne6ew22 Xi''an Electric Furnace Research Institute (China) 西安电炉研究所有限公司'),
(64788, 'https://ror.org/03kgapk50', 'no_lang_code', 1, 'https://ror.org/03kgapk50 MAGJ Hospital'),
(64789, 'https://ror.org/05d2jmv32', 'en', 1, 'https://ror.org/05d2jmv32 Institute of Health Studies and Rehabilitation'),
(64790, 'https://ror.org/03jw91041', 'no_lang_code', 1, 'https://ror.org/03jw91041 Jindal Naturecure Institute जिंदल नेचरचर इंस्टीट्यूट'),
(64791, 'https://ror.org/047zg7c19', 'en', 1, 'https://ror.org/047zg7c19 K. J. Somaiya Hospital & Research Centre के. जे. सोमय्या हॉस्पिटल अँन्ड रिसर्च सेंटर के। जे। सोमैया हॉस्पिटल एंड रिसर्च सेंटर'),
(64792, 'https://ror.org/02d8efy02', 'en', 1, 'https://ror.org/02d8efy02 Institute of Neurosciences Kolkata ইনস্টিটিউট অফ নিউরোসাইন্সেস'),
(64793, 'https://ror.org/00qe7ms27', 'en', 1, 'https://ror.org/00qe7ms27 KG Hospital'),
(64794, 'https://ror.org/03jgxy838', 'en', 1, 'https://ror.org/03jgxy838 Institute of Reproductive Medicine রিপ্রোডাকটিভ মেডিসিন ইনস্টিটিউট'),
(64795, 'https://ror.org/01drdtp87', 'en', 1, 'https://ror.org/01drdtp87 Shree Krishna Hospital શ્રી કૃષ્ણ હોસ્પિટલ'),
(64796, 'https://ror.org/03y1kax64', 'en', 1, 'https://ror.org/03y1kax64 Micro & Nano Research Institute 微纳米研究所'),
(64797, 'https://ror.org/05jaz3369', 'no_lang_code', 1, 'https://ror.org/05jaz3369 Indian Immunologicals (India)'),
(64798, 'https://ror.org/03rr58081', 'en', 1, 'https://ror.org/03rr58081 Karnataka Medical Council'),
(64799, 'https://ror.org/0555rbr45', 'no_lang_code', 1, 'https://ror.org/0555rbr45 Hygienic Research Institute (India) स्वच्छंद संशोधन संस्था'),
(64800, 'https://ror.org/04w54p329', 'en', 1, 'https://ror.org/04w54p329 International College of Nutrition इंटरनेशनल कॉलेज ऑफ़ नुत्रितिओं'),
(64801, 'https://ror.org/05k8rth88', 'en', 1, 'https://ror.org/05k8rth88 ESIC Hospital इंदिरा गांधी ईएसआई अस्पताल'),
(64802, 'https://ror.org/035h0ne50', 'en', 1, 'https://ror.org/035h0ne50 Meher Hospitals'),
(64803, 'https://ror.org/05g9k3k07', 'en', 1, 'https://ror.org/05g9k3k07 Nethradhama Superspeciality Eye Hospital ನೇತ್ರಧಾಮ ಸೂಪರ್ ಸ್ಪೆಶಾಲಿಟಿ ಕಣ್ಣಿನ ಆಸ್ಪತ್ರೆ'),
(64804, 'https://ror.org/01te4n153', 'en', 1, 'https://ror.org/01te4n153 Government Medical College'),
(64805, 'https://ror.org/01jwjz832', 'en', 1, 'https://ror.org/01jwjz832 Index Medical College, Hospital & Research Centre देवी अहिल्या विश्वविद्यालय प्रशासनिक कार्यालय, आर एन टी'),
(64806, 'https://ror.org/00wcc7f06', 'no_lang_code', 1, 'https://ror.org/00wcc7f06 Karmaveer Bhausaheb Hiray Dental College and Hospital'),
(64807, 'https://ror.org/00xbas612', 'en', 1, 'https://ror.org/00xbas612 Rabindranath Tagore International Institute of Cardiac Sciences'),
(64808, 'https://ror.org/053gsyk62', 'en', 1, 'https://ror.org/053gsyk62 Dagestan Center of Eye Microsurgery Дагестанский центр микрохирургии глаза'),
(64809, 'https://ror.org/0176h5851', 'en', 1, 'https://ror.org/0176h5851 Midnapore Homeopathic Medical College and Hospital মেদিনীপুর হোমিওপ্যাথিক মেডিকেল কলেজ এন্ড হসপিটাল'),
(64810, 'https://ror.org/05reefs64', 'en', 1, 'https://ror.org/05reefs64 Noble Hospital'),
(64811, 'https://ror.org/03f3afg04', 'en', 1, 'https://ror.org/03f3afg04 Uttarakhand Ayurved University'),
(64812, 'https://ror.org/00vg62x98', 'en', 1, 'https://ror.org/00vg62x98 Indian Education Society''s V. N. Sule Guruji English Medium School व्ही एन सुळे गुरुजी इंग्रजी माध्यम माध्यमिक शाळा'),
(64813, 'https://ror.org/0237g7h29', 'en', 1, 'https://ror.org/0237g7h29 Moulana Hospital മൗലാന ഹോസ്പിറ്റൽ'),
(64814, 'https://ror.org/02qwr8r69', 'en', 1, 'https://ror.org/02qwr8r69 S Nijalingappa Medical College and HSK Hospital & Research Centre'),
(64815, 'https://ror.org/02esmse85', 'en', 1, 'https://ror.org/02esmse85 Nulife Hospital'),
(64816, 'https://ror.org/049zrr195', 'en', 1, 'https://ror.org/049zrr195 S.R. Kalla Memorial Gastro and General Hospital एस आर कल्ला मेमोरियल गैस्ट्रो एंड जनरल अस्पताल'),
(64817, 'https://ror.org/05cmc6v40', 'no_lang_code', 1, 'https://ror.org/05cmc6v40 Kirloskar Hospital'),
(64818, 'https://ror.org/00xaj0b77', 'en', 1, 'https://ror.org/00xaj0b77 Indo-US Super Speciality Hospital భారత్-అమెరికా సూపర్ స్పెషాలిటీ హాస్పిటల్'),
(64819, 'https://ror.org/01fqnwx40', 'en', 1, 'https://ror.org/01fqnwx40 M.V. Hospital and Research Centre'),
(64820, 'https://ror.org/01eb0bw82', 'no_lang_code', 1, 'https://ror.org/01eb0bw82 Sahaj Hospital सहज हॉस्पिटल'),
(64821, 'https://ror.org/043xmfp89', 'en', 1, 'https://ror.org/043xmfp89 Indravati Hospital & Research Centre इंद्रावती हॉस्पिटल एंड रिसर्च सेंटर'),
(64822, 'https://ror.org/00azevz34', 'en', 1, 'https://ror.org/00azevz34 Oyster & Pearl Hospital'),
(64823, 'https://ror.org/049gvs161', 'en', 1, 'https://ror.org/049gvs161 National Allergy Asthma Bronchitis Institute'),
(64824, 'https://ror.org/04esbsa15', 'no_lang_code', 1, 'https://ror.org/04esbsa15 Samvedna Hospital संवेदना हॉस्पिटल'),
(64825, 'https://ror.org/03mzdta96', 'en', 1, 'https://ror.org/03mzdta96 Sanjivani Super Speciality Hospitals'),
(64826, 'https://ror.org/03wscj685', 'en', 1, 'https://ror.org/03wscj685 Sri Kalabyraveshwara Swamy Ayurvedic Medical College, Hospital and Research Center ಶ್ರೀ ಕಲಾಭರಣವೇಶ್ವರ ಸ್ವಾಮಿ ಆಯುರ್ವೇದಿಕ್ ಆಸ್ಪತ್ರೆ ಮತ್ತು ಸಂಶೋಧನಾ ಕೇಂದ್ರ'),
(64827, 'https://ror.org/00zkpmz33', 'en', 1, 'https://ror.org/00zkpmz33 National Institute of Medical Statistics'),
(64828, 'https://ror.org/04g2esr52', 'en', 1, 'https://ror.org/04g2esr52 Seth Nandlal Dhoot Hospital'),
(64829, 'https://ror.org/0251z6a72', 'en', 1, 'https://ror.org/0251z6a72 Sri Sathya Sai Institute of Higher Medical Sciences శ్రీ సత్య సాయి ఇన్స్టిట్యూట్ ఆఫ్ హయ్యర్ మెడికల్ సైన్సెస్'),
(64830, 'https://ror.org/04z0vgz60', 'en', 1, 'https://ror.org/04z0vgz60 Dhanvantari Ayurveda College Hospital and Research Centre'),
(64831, 'https://ror.org/01qybkd90', 'en', 1, 'https://ror.org/01qybkd90 Sri Venkateshwaraa Medical College Hospital and Research Centre ஸ்ரீ வெங்கடேஸ்வரா மருத்துவக்கல்லூரி மற்றும் ஆய்வு மையம்'),
(64832, 'https://ror.org/05j2z6f89', 'en', 1, 'https://ror.org/05j2z6f89 Delhi State Cancer Institute'),
(64833, 'https://ror.org/04kbbd545', 'en', 1, 'https://ror.org/04kbbd545 Shri Bhausaheb Hire Government Medical College & Hospital'),
(64834, 'https://ror.org/01f74qr97', 'en', 1, 'https://ror.org/01f74qr97 Shree O.H. Nazar Ayurved College Shree Swami Atmanand Saraswati Ayurved Hospital'),
(64835, 'https://ror.org/017h4eq96', 'en', 1, 'https://ror.org/017h4eq96 RG Stone Urology & Laparoscopy Hospital आरजी स्टोन यूरोलॉजी और लैप्रोस्कोपी अस्पताल'),
(64836, 'https://ror.org/031p8aq28', 'en', 1, 'https://ror.org/031p8aq28 Stavya Spine Hospital & Research Institute स्ताल्य स्पाइन अस्पताल और अनुसंधान संस्थान'),
(64837, 'https://ror.org/00bhvbg93', 'no_lang_code', 1, 'https://ror.org/00bhvbg93 Sir Ivan Stedeford Hospital சர் ஐவன் ஸ்டெட்போர்ட ஹாஸ்பிடல்'),
(64838, 'https://ror.org/04dagd274', 'en', 1, 'https://ror.org/04dagd274 Subharti Medical College नेताजी सुभाष चंद्रा बोस सुभारती मेडिकल कॉलेज'),
(64839, 'https://ror.org/0154kj662', 'no_lang_code', 1, 'https://ror.org/0154kj662 VGM Gastro Centre'),
(64840, 'https://ror.org/05kt6fp70', 'no_lang_code', 1, 'https://ror.org/05kt6fp70 Sumana Hospital సుమానా హాస్పిటల్'),
(64841, 'https://ror.org/00r7x5x17', 'en', 1, 'https://ror.org/00r7x5x17 Sunshine Hospitals సన్ షైన్ హాస్పిటల్స్'),
(64842, 'https://ror.org/049b8gm87', 'en', 1, 'https://ror.org/049b8gm87 Teerthanker Mahaveer Medical College & Research Centre तीर्थंकर महावीर मेडिकल कॉलेज एंड रिसर्च सेंटर'),
(64843, 'https://ror.org/026vx6939', 'no_lang_code', 1, 'https://ror.org/026vx6939 Tanvir Hospital తన్వీర్ హాస్పిటల్'),
(64844, 'https://ror.org/010azga70', 'en', 1, 'https://ror.org/010azga70 Tezpur Medical College & Hospital'),
(64845, 'https://ror.org/01g4ecg56', 'no_lang_code', 1, 'https://ror.org/01g4ecg56 Sooriya Hospital சூரியா மருத்துவமனை'),
(64846, 'https://ror.org/02at8py67', 'en', 1, 'https://ror.org/02at8py67 Sparsh Hospital'),
(64847, 'https://ror.org/03tc6sd86', 'en', 1, 'https://ror.org/03tc6sd86 Target Institute of Medical Education & Research टार्गेट इंस्टिट्यूट ऑफ़ मेडिकल एजूकेशन & रिसर्च'),
(64848, 'https://ror.org/00f7qfv03', 'en', 1, 'https://ror.org/00f7qfv03 Sujata Birla Hospital and Medical Research Center'),
(64849, 'https://ror.org/03t8e0d04', 'en', 1, 'https://ror.org/03t8e0d04 YMT Ayurvedic Medical College & Hospital. P.G.Institute'),
(64850, 'https://ror.org/001eqde88', 'en', 1, 'https://ror.org/001eqde88 Z.V.M.Unani Medical College & Hospital'),
(64851, 'https://ror.org/052bj9b74', 'en', 1, 'https://ror.org/052bj9b74 The Korean Ceramic Society 대한 도자 학회'),
(64852, 'https://ror.org/01xje0t51', 'en', 1, 'https://ror.org/01xje0t51 Dongak Art History Association 동악미술사학회'),
(64853, 'https://ror.org/04kpxf456', 'en', 1, 'https://ror.org/04kpxf456 The Korean History Education Society 한국사 교육 학회'),
(64854, 'https://ror.org/04vkyz392', 'en', 1, 'https://ror.org/04vkyz392 Hangzhou Special Equipment Inspection and Research Institute 杭州市特种设备检测研究院'),
(64855, 'https://ror.org/00rbnn565', 'en', 1, 'https://ror.org/00rbnn565 Liaoning General Aviation Research Institute 辽宁通用航空研究院'),
(64856, 'https://ror.org/055be5309', 'en', 1, 'https://ror.org/055be5309 Enshi Tujia and Miao Autonomous Prefecture Academy of Agricultural Sciences 恩施土家族苗族自治州农业科学院'),
(64857, 'https://ror.org/00nrddj33', 'en', 1, 'https://ror.org/00nrddj33 Luohe Academy of Agricultural Sciences 河南省漯河市农业科学研究所'),
(64858, 'https://ror.org/023kz8918', 'en', 1, 'https://ror.org/023kz8918 Ningbo Product Quality Supervision and Inspection Institute 宁波产品质量监督检验研究院'),
(64859, 'https://ror.org/03tb73372', 'en', 1, 'https://ror.org/03tb73372 Chongqing Academy of Forestry 重庆林业科学研究院'),
(64860, 'https://ror.org/01jzaby46', 'en', 1, 'https://ror.org/01jzaby46 Chongqing Three Gorges Academy of Agricultural Sciences 重庆三峡农业科学院'),
(64861, 'https://ror.org/05e189971', 'en', 1, 'https://ror.org/05e189971 Heilongjiang Vocational College of Art 黑龙江艺术职业学院'),
(64862, 'https://ror.org/02a0rnh86', 'en', 1, 'https://ror.org/02a0rnh86 Qingdao Academy of Intelligent Industries 青岛智能产业技术研究院'),
(64863, 'https://ror.org/048wwkz81', 'en', 1, 'https://ror.org/048wwkz81 Henan Provincial Academy of Building Research 河南省建筑科学研究院有'),
(64864, 'https://ror.org/04aa0zm65', 'en', 1, 'https://ror.org/04aa0zm65 Cloud Computing Center 云计算中心'),
(64865, 'https://ror.org/051kc3x78', 'en', 1, 'https://ror.org/051kc3x78 Heze Academy of Agricultural Sciences 菏泽农科院'),
(64866, 'https://ror.org/05wad7k45', 'en', 1, 'https://ror.org/05wad7k45 Sichuan Academy of Traditional Chinese Medicine 四川省中医药科学院'),
(64867, 'https://ror.org/0054tdg51', 'en', 1, 'https://ror.org/0054tdg51 Shandong Academy of Pesticide Science 山东省农药科学研究院'),
(64868, 'https://ror.org/04b3c9h40', 'no_lang_code', 1, 'https://ror.org/04b3c9h40 Dalian Academy of Reconnaissance and Mapping (China) 大连勘测测绘研究院'),
(64869, 'https://ror.org/04n3x5g15', 'en', 1, 'https://ror.org/04n3x5g15 Huzhou Academy of Agricultural Sciences 湖州农业科学'),
(64870, 'https://ror.org/01j8cv720', 'no_lang_code', 1, 'https://ror.org/01j8cv720 Changzhou Academy of Intelli-Ag Equipment (China) 常州智能化设备研究院'),
(64871, 'https://ror.org/0148z7881', 'no_lang_code', 1, 'https://ror.org/0148z7881 Chengdu Guoke Haibo Information Technology (China) 成都国科海博信息技术有限公司'),
(64872, 'https://ror.org/021yk7r24', 'no_lang_code', 1, 'https://ror.org/021yk7r24 Shanghai Textile Holdings (China) 上海纺织控股集团公司'),
(64873, 'https://ror.org/04ty5pz05', 'en', 1, 'https://ror.org/04ty5pz05 Jiangsu Provincial Academy of Forestry Science and Management 江苏省林业科学研究院'),
(64874, 'https://ror.org/04wtt0690', 'no_lang_code', 1, 'https://ror.org/04wtt0690 Suzhou Institute of Building Science Group (China) 苏州市建筑科学研究院集团股份有限公司'),
(64875, 'https://ror.org/01j71j305', 'en', 1, 'https://ror.org/01j71j305 Tianjin TDBH Naval Architecture & Ocean Engineering Academy 天津天大滨海船舶与海洋工程研究院'),
(64876, 'https://ror.org/05s6v6872', 'en', 1, 'https://ror.org/05s6v6872 Chengdu Academy of Agriculture and Forestry Sciences 成都市农林科学院'),
(64877, 'https://ror.org/01hahzp71', 'en', 1, 'https://ror.org/01hahzp71 Shanxi Academy of Forestry 山西省林业科学研究院'),
(64878, 'https://ror.org/05a8e5154', 'en', 1, 'https://ror.org/05a8e5154 Tianjin Academy of Environmental Sciences 天津市环境保护科学研究院'),
(64879, 'https://ror.org/01ydbqk02', 'no_lang_code', 1, 'https://ror.org/01ydbqk02 Fujian Academy of Building Research (China) 福建省建筑科学研究院'),
(64880, 'https://ror.org/05sgs4n22', 'en', 1, 'https://ror.org/05sgs4n22 Jilin Academy of Agricultural Machinery 吉林省农业机械研究院'),
(64881, 'https://ror.org/00mpsrh50', 'en', 1, 'https://ror.org/00mpsrh50 Zhangjiakou Academy of Agricultural Sciences 张家口市农业科学院农业'),
(64882, 'https://ror.org/001xr1669', 'en', 1, 'https://ror.org/001xr1669 Gansu Provincial Academy of Membrane Science and Technology 甘肃省膜科学技术研究院'),
(64883, 'https://ror.org/04c99ac72', 'no_lang_code', 1, 'https://ror.org/04c99ac72 Xi''an UniIC Semiconductors (China)'),
(64884, 'https://ror.org/03n9xd583', 'en', 1, 'https://ror.org/03n9xd583 Xinjiang Academy of Forestry 有 新疆林业科学院'),
(64885, 'https://ror.org/032eb5z33', 'en', 1, 'https://ror.org/032eb5z33 Guizhou Academy of Testing & Analysis 贵州省分析测试研究院'),
(64886, 'https://ror.org/03asfqn77', 'en', 1, 'https://ror.org/03asfqn77 Zhoukou City Academy of Agricultural Sciences 周口市农业科学院'),
(64887, 'https://ror.org/048yeyk79', 'no_lang_code', 1, 'https://ror.org/048yeyk79 Guzhou Transportation Planning Survey & Design Academe (China) 贵州交通规划勘察设计院有限公司'),
(64888, 'https://ror.org/01s7tq402', 'en', 1, 'https://ror.org/01s7tq402 Hainan Provincial Academy of Marine Fisheries and Aquaculture 海南省海洋与渔业科学院'),
(64889, 'https://ror.org/05ntybz92', 'en', 1, 'https://ror.org/05ntybz92 Guangdong Provincial Academy of Building Research Group 广东省建筑科学研究院集团'),
(64890, 'https://ror.org/012pz7r49', 'en', 1, 'https://ror.org/012pz7r49 Guangzhou Academy of Special Equipment Inspection and Testing 广州特种设备检测技术研究院'),
(64891, 'https://ror.org/04ynn1b95', 'en', 1, 'https://ror.org/04ynn1b95 Astronomy and Space'),
(64892, 'https://ror.org/04jr4g753', 'en', 1, 'https://ror.org/04jr4g753 Osong Medical Innovation Foundation 오송첨단의료산업진흥재단'),
(64893, 'https://ror.org/01yj6y952', 'en', 1, 'https://ror.org/01yj6y952 Korean Society of Basic Design & Art 한국 디자인 기초 학회'),
(64894, 'https://ror.org/056q45x47', 'en', 1, 'https://ror.org/056q45x47 Korea Bio Polytechnic College 한국폴리텍바이오대학'),
(64895, 'https://ror.org/032dmkq14', 'en', 1, 'https://ror.org/032dmkq14 The Korean Society of Christian Religious Education 한국 기독교 교육 학회'),
(64896, 'https://ror.org/03kcfmk89', 'en', 1, 'https://ror.org/03kcfmk89 Suzhou Academy of Agricultural Sciences 苏州市农业科学院'),
(64897, 'https://ror.org/00ckc8f91', 'no_lang_code', 1, 'https://ror.org/00ckc8f91 Mamata General Hospital మమత జనరల్ హాస్పిటల్'),
(64898, 'https://ror.org/02fqjqj75', 'fr', 1, 'https://ror.org/02fqjqj75 Hôpital Clinique Claude-Bernard'),
(64899, 'https://ror.org/00tem2640', 'en', 1, 'https://ror.org/00tem2640 Hyattsville Community Development Corporation'),
(64900, 'https://ror.org/00dka4r75', 'en', 1, 'https://ror.org/00dka4r75 Zhejiang Academy of Building Research & Design 浙江省建筑科学研究院'),
(64901, 'https://ror.org/056thpa20', 'en', 1, 'https://ror.org/056thpa20 International Drug Development'),
(64902, 'https://ror.org/02mt26r85', 'en', 1, 'https://ror.org/02mt26r85 Transportation Research Board'),
(64903, 'https://ror.org/01w7h4t60', 'en', 1, 'https://ror.org/01w7h4t60 Royal Hospital for Sick Children'),
(64904, 'https://ror.org/031ebne21', 'en', 1, 'https://ror.org/031ebne21 National Measurement Laboratory'),
(64905, 'https://ror.org/05xx7en86', 'en', 1, 'https://ror.org/05xx7en86 Division of Fossil Fuels Energy'),
(64906, 'https://ror.org/006h3y937', 'en', 1, 'https://ror.org/006h3y937 MRA Group'),
(64907, 'https://ror.org/05n6zrm60', 'en', 1, 'https://ror.org/05n6zrm60 SWOG Cancer Research Network'),
(64908, 'https://ror.org/04c54tg88', 'en', 1, 'https://ror.org/04c54tg88 IBA Lifesciences'),
(64909, 'https://ror.org/01xhnny36', 'en', 1, 'https://ror.org/01xhnny36 Korean German Literature Society 한국 독일 문학회'),
(64910, 'https://ror.org/05sn2dp47', 'en', 1, 'https://ror.org/05sn2dp47 The Society of Korean Language And Literature 우리어문학회'),
(64911, 'https://ror.org/05a1zjh88', 'en', 1, 'https://ror.org/05a1zjh88 Korean Literature Research Society 한국문학연구학회'),
(64912, 'https://ror.org/03cv88167', 'en', 1, 'https://ror.org/03cv88167 Korea Social Science Data Archive 한국사회과학자료원'),
(64913, 'https://ror.org/056v3aw45', 'en', 1, 'https://ror.org/056v3aw45 Korean Economic and Business Association 한국경제통상학회'),
(64914, 'https://ror.org/01ngg1n70', 'en', 1, 'https://ror.org/01ngg1n70 Korean Academy of International Business 한국국제경영학회'),
(64915, 'https://ror.org/0528jzf19', 'en', 1, 'https://ror.org/0528jzf19 Korean Association of French Language and Literature 한국 불어 학회'),
(64916, 'https://ror.org/02ze37p54', 'en', 1, 'https://ror.org/02ze37p54 Chosun College of Science & Technology 조선이공대학교'),
(64917, 'https://ror.org/00cjcx491', 'en', 1, 'https://ror.org/00cjcx491 Korean Academic Society of Taxation 조세 학회'),
(64918, 'https://ror.org/04n5pyx79', 'en', 1, 'https://ror.org/04n5pyx79 Korean Elementary Moral Education Society 한국초등도덕교육학회'),
(64919, 'https://ror.org/02p50nh51', 'en', 1, 'https://ror.org/02p50nh51 Korea-China Humanities Society 한중인문학회'),
(64920, 'https://ror.org/0557n0d79', 'en', 1, 'https://ror.org/0557n0d79 The Association For Korean Law Of Property 한국 법상 협회'),
(64921, 'https://ror.org/01wx5br04', 'en', 1, 'https://ror.org/01wx5br04 Korean Strategic Marketing Association 한국 전략 마케팅 협회'),
(64922, 'https://ror.org/00t8fsx92', 'en', 1, 'https://ror.org/00t8fsx92 Korea Economic Development Institute 한국경제발전학회'),
(64923, 'https://ror.org/04a44dr33', 'en', 1, 'https://ror.org/04a44dr33 Korean Society of Educational Technology 한국교육공학회'),
(64924, 'https://ror.org/01h3gvb78', 'en', 1, 'https://ror.org/01h3gvb78 Korean Society for History of Education 한국교육사학회'),
(64925, 'https://ror.org/02d5yh638', 'en', 1, 'https://ror.org/02d5yh638 Korean Association for Public Security Administration 한국 공안 관리 협회'),
(64926, 'https://ror.org/03t8yea54', 'en', 1, 'https://ror.org/03t8yea54 The Korean-German Society for the Educational Studies 한독 교육 학회'),
(64927, 'https://ror.org/03g45bs43', 'en', 1, 'https://ror.org/03g45bs43 The History of Korean Society 대중서사학회'),
(64928, 'https://ror.org/036xtjy06', 'en', 1, 'https://ror.org/036xtjy06 Shanghai Xiandai Architectural Design 上海现代建筑设计'),
(64929, 'https://ror.org/02wn4vf74', 'en', 1, 'https://ror.org/02wn4vf74 Korean Association for Political Economy 한국사회경제학회'),
(64930, 'https://ror.org/029ssav87', 'en', 1, 'https://ror.org/029ssav87 DSMS Group of Institutions দুর্গাপুর সোসাইটি অফ ম্যানেজমেন্ট সাইন্স'),
(64931, 'https://ror.org/01qvc7p18', 'en', 1, 'https://ror.org/01qvc7p18 The Japanese Language Literature Association of Korea 한국일본어문학회'),
(64932, 'https://ror.org/01w2py151', 'en', 1, 'https://ror.org/01w2py151 North Ossetian State Medical Academy Северо-Осетинская государственная медицинская академия'),
(64933, 'https://ror.org/01pe06664', 'no_lang_code', 1, 'https://ror.org/01pe06664 Hunan Yonker Investment Group (China) 永清环境科技产业集团有限公司'),
(64934, 'https://ror.org/04vrkaw11', 'en', 1, 'https://ror.org/04vrkaw11 Jiangxi Institute of Red Soil 江西省红壤研究所'),
(64935, 'https://ror.org/006qwan38', 'en', 1, 'https://ror.org/006qwan38 Guangdong Work Injury Rehabilitation Hospital 广东省工伤康复医院'),
(64936, 'https://ror.org/02dnmrq53', 'en', 1, 'https://ror.org/02dnmrq53 Jiangxi Provincial Institute of Water Sciences 江西省水利科学研究院'),
(64937, 'https://ror.org/05ajbr617', 'en', 1, 'https://ror.org/05ajbr617 Zhejiang Fashion Institute of Technology 浙江纺织服装职业技术学院'),
(64938, 'https://ror.org/009j0tv77', 'en', 1, 'https://ror.org/009j0tv77 Guizhou Center for Disease Control and Prevention 贵州省疾病预防控制中心'),
(64939, 'https://ror.org/0369eb468', 'en', 1, 'https://ror.org/0369eb468 Hainan Meteorology Administration 海南省气象局'),
(64940, 'https://ror.org/03xgzn792', 'en', 1, 'https://ror.org/03xgzn792 Beijing Polytechnic 北京电子科技职业学院'),
(64941, 'https://ror.org/03654w628', 'en', 1, 'https://ror.org/03654w628 Shanghai Research Institute of Sports Science 上海体育科学研究所'),
(64942, 'https://ror.org/041tqx430', 'en', 1, 'https://ror.org/041tqx430 Ningbo College of Health Sciences 宁波卫生职业技术学院'),
(64943, 'https://ror.org/011t9p927', 'en', 1, 'https://ror.org/011t9p927 China Internet Network Information Center 中国互联网络信息中心'),
(64944, 'https://ror.org/00c2k1j60', 'en', 1, 'https://ror.org/00c2k1j60 Chongqing Bureau of Geology and Minerals Exploration 重庆市地质矿产勘查开发局'),
(64945, 'https://ror.org/03md1xx44', 'en', 1, 'https://ror.org/03md1xx44 Geological Exploration Technology Institute of Jiangsu Province 地质勘查技术院'),
(64946, 'https://ror.org/034wjng68', 'en', 1, 'https://ror.org/034wjng68 Nuclear and Radiation Safety Center 核与辐射安全中心'),
(64947, 'https://ror.org/05v7z3142', 'en', 1, 'https://ror.org/05v7z3142 Jiangmen Polytechnic 江门职业技术学院'),
(64948, 'https://ror.org/00hgh4525', 'no_lang_code', 1, 'https://ror.org/00hgh4525 Hetao College 河套学院'),
(64949, 'https://ror.org/047rxfg53', 'en', 1, 'https://ror.org/047rxfg53 Tianjin Stomatological Hospital 天津市口腔医院'),
(64950, 'https://ror.org/02w1tnr53', 'en', 1, 'https://ror.org/02w1tnr53 Scientific Institute of Pearl River Water Resources Protection 珠江水资源保护科学研究所'),
(64951, 'https://ror.org/04m6cjv19', 'en', 1, 'https://ror.org/04m6cjv19 Development Research Center 水利部发展研究中心'),
(64952, 'https://ror.org/009qwp447', 'en', 1, 'https://ror.org/009qwp447 Suihua University 绥化学院'),
(64953, 'https://ror.org/04js16v38', 'en', 1, 'https://ror.org/04js16v38 Hubei Academy of Environmental Sciences 湖北省环境科学研究院'),
(64954, 'https://ror.org/0146vv083', 'en', 1, 'https://ror.org/0146vv083 Shaanxi Xueqian Normal University'),
(64955, 'https://ror.org/05d5kcc69', 'en', 1, 'https://ror.org/05d5kcc69 Jiangxi College of Applied Technology 江西应用技术职业学院'),
(64956, 'https://ror.org/03fbzmy04', 'no_lang_code', 1, 'https://ror.org/03fbzmy04 22q11 Ireland'),
(64957, 'https://ror.org/02ky5cy15', 'no_lang_code', 1, 'https://ror.org/02ky5cy15 Nuritas (Ireland)'),
(64958, 'https://ror.org/019k9ma82', 'en', 1, 'https://ror.org/019k9ma82 Hunan Research Academy of Environmental Sciences 湖南省环境保护科学研究院'),
(64959, 'https://ror.org/030nw5b81', 'en', 1, 'https://ror.org/030nw5b81 ActionAid Ireland'),
(64960, 'https://ror.org/01bzgqf33', 'en', 1, 'https://ror.org/01bzgqf33 Oifig na nOibreacha Poiblí The Office of Public Works'),
(64961, 'https://ror.org/00cp1jc17', 'en', 1, 'https://ror.org/00cp1jc17 Java Clinical'),
(64962, 'https://ror.org/046yjt975', 'en', 1, 'https://ror.org/046yjt975 Focus Ireland'),
(64963, 'https://ror.org/00hr37w40', 'no_lang_code', 1, 'https://ror.org/00hr37w40 Kelada Pharmachem (Ireland)'),
(64964, 'https://ror.org/056k8rb32', 'no_lang_code', 1, 'https://ror.org/056k8rb32 OGT Amenity (Ireland)'),
(64965, 'https://ror.org/02wv4rx62', 'ga', 1, 'https://ror.org/02wv4rx62 Foróige'),
(64966, 'https://ror.org/01xqtwj78', 'no_lang_code', 1, 'https://ror.org/01xqtwj78 Agilent Technologies (Ireland)'),
(64967, 'https://ror.org/04vvqct18', 'en', 1, 'https://ror.org/04vvqct18 Cancer Clinical Research Trust'),
(64968, 'https://ror.org/059vazt48', 'no_lang_code', 1, 'https://ror.org/059vazt48 Halo Labs (United States)'),
(64969, 'https://ror.org/05g7ye804', 'en', 1, 'https://ror.org/05g7ye804 Fota Wildlife Park'),
(64970, 'https://ror.org/05r85wx35', 'no_lang_code', 1, 'https://ror.org/05r85wx35 Optrace (Ireland)'),
(64971, 'https://ror.org/021393933', 'en', 1, 'https://ror.org/021393933 Airmid Healthgroup'),
(64972, 'https://ror.org/01et03p29', 'en', 1, 'https://ror.org/01et03p29 Kerry Education and Training Board'),
(64973, 'https://ror.org/03qfpb645', 'en', 1, 'https://ror.org/03qfpb645 Cloyne Diocesan Youth Services'),
(64974, 'https://ror.org/03hebkk07', 'ga', 1, 'https://ror.org/03hebkk07 Áiseanna Tacaíochta'),
(64975, 'https://ror.org/001xv6k34', 'no_lang_code', 1, 'https://ror.org/001xv6k34 Oran Pre-Cast (Ireland)'),
(64976, 'https://ror.org/02vdn6c95', 'en', 1, 'https://ror.org/02vdn6c95 Cluid Housing'),
(64977, 'https://ror.org/00j9g7s25', 'en', 1, 'https://ror.org/00j9g7s25 Kimmage Development Studies Centre'),
(64978, 'https://ror.org/02y20t868', 'no_lang_code', 1, 'https://ror.org/02y20t868 Kinesis Health Technologies (Ireland)'),
(64979, 'https://ror.org/02v8tah71', 'ga', 1, 'https://ror.org/02v8tah71 Aiséirí'),
(64980, 'https://ror.org/0113k2j28', 'no_lang_code', 1, 'https://ror.org/0113k2j28 Origin Enterprises (Ireland)'),
(64981, 'https://ror.org/014mmeq48', 'en', 1, 'https://ror.org/014mmeq48 Galway One World Centre'),
(64982, 'https://ror.org/034qbvs38', 'no_lang_code', 1, 'https://ror.org/034qbvs38 Kora Healthcare (Ireland)'),
(64983, 'https://ror.org/0072bx170', 'no_lang_code', 1, 'https://ror.org/0072bx170 Compact Imaging (United States)'),
(64984, 'https://ror.org/00kh8jx85', 'en', 1, 'https://ror.org/00kh8jx85 Learning Hub Limerick'),
(64985, 'https://ror.org/04sgnw557', 'no_lang_code', 1, 'https://ror.org/04sgnw557 Novartis (Ireland)'),
(64986, 'https://ror.org/01ghdd484', 'no_lang_code', 1, 'https://ror.org/01ghdd484 Ervia (Ireland)'),
(64987, 'https://ror.org/03jfezp45', 'no_lang_code', 1, 'https://ror.org/03jfezp45 Parameter Space (Ireland)'),
(64988, 'https://ror.org/03wcmj821', 'no_lang_code', 1, 'https://ror.org/03wcmj821 Lola Group (United Kingdom)'),
(64989, 'https://ror.org/008m7sk62', 'en', 1, 'https://ror.org/008m7sk62 Pavee Point'),
(64990, 'https://ror.org/04ehmzv20', 'en', 1, 'https://ror.org/04ehmzv20 COPE Galway'),
(64991, 'https://ror.org/04dnx8c79', 'en', 1, 'https://ror.org/04dnx8c79 American Council on Exercise'),
(64992, 'https://ror.org/03c5c0a39', 'no_lang_code', 1, 'https://ror.org/03c5c0a39 Genomics Medicine (Ireland)'),
(64993, 'https://ror.org/022ppya26', 'en', 1, 'https://ror.org/022ppya26 Cork Alliance Centre'),
(64994, 'https://ror.org/04z77bq11', 'no_lang_code', 1, 'https://ror.org/04z77bq11 Pieta House'),
(64995, 'https://ror.org/05bxe2n40', 'no_lang_code', 1, 'https://ror.org/05bxe2n40 Pilot Photonics (Ireland)'),
(64996, 'https://ror.org/03agg4249', 'en', 1, 'https://ror.org/03agg4249 Amnesty International Ireland'),
(64997, 'https://ror.org/05jnpxa89', 'no_lang_code', 1, 'https://ror.org/05jnpxa89 AnaBio Technologies (Ireland)'),
(64998, 'https://ror.org/05582kr93', 'no_lang_code', 1, 'https://ror.org/05582kr93 Analog Devices (Ireland)'),
(64999, 'https://ror.org/00xkt2t97', 'en', 1, 'https://ror.org/00xkt2t97 Animal Health Ireland'),
(65000, 'https://ror.org/03rc6pz65', 'ga', 1, 'https://ror.org/03rc6pz65 Croí'),
(65001, 'https://ror.org/0522zz544', 'en', 1, 'https://ror.org/0522zz544 Gorta Self Help Africa'),
(65002, 'https://ror.org/02ngyjm59', 'en', 1, 'https://ror.org/02ngyjm59 Marine Renewables Industry Association'),
(65003, 'https://ror.org/02qd8zg55', 'no_lang_code', 1, 'https://ror.org/02qd8zg55 McCormick Advanced Marcomm Services (Ireland)'),
(65004, 'https://ror.org/014yvnw28', 'en', 1, 'https://ror.org/014yvnw28 Project Arts Centre'),
(65005, 'https://ror.org/03cterj73', 'no_lang_code', 1, 'https://ror.org/03cterj73 Aquila Bioscience (Ireland)'),
(65006, 'https://ror.org/0564cmz62', 'no_lang_code', 1, 'https://ror.org/0564cmz62 MCO (Ireland)'),
(65007, 'https://ror.org/0268c6h94', 'en', 1, 'https://ror.org/0268c6h94 Medfit Proactive Healthcare'),
(65008, 'https://ror.org/03h9jqz26', 'en', 1, 'https://ror.org/03h9jqz26 Free Legal Advice Centres'),
(65009, 'https://ror.org/046zes997', 'en', 1, 'https://ror.org/046zes997 Men Overcoming Violence'),
(65010, 'https://ror.org/00z33z605', 'no_lang_code', 1, 'https://ror.org/00z33z605 Arthritis Ireland'),
(65011, 'https://ror.org/01kpcqp30', 'en', 1, 'https://ror.org/01kpcqp30 Men’s Development Network'),
(65012, 'https://ror.org/016kjnf22', 'no_lang_code', 1, 'https://ror.org/016kjnf22 AstroTec Holding (Netherlands)'),
(65013, 'https://ror.org/0135rsr71', 'en', 1, 'https://ror.org/0135rsr71 Meabhairshláinte na hÉireann Mental Health Ireland'),
(65014, 'https://ror.org/022m1me97', 'en', 1, 'https://ror.org/022m1me97 Merchants Quay Ireland'),
(65015, 'https://ror.org/035g2m198', 'no_lang_code', 1, 'https://ror.org/035g2m198 ÉireComposites (Ireland)'),
(65016, 'https://ror.org/04bv4nc40', 'no_lang_code', 1, 'https://ror.org/04bv4nc40 Q4 Public Relations (Ireland)'),
(65017, 'https://ror.org/015nzpb92', 'no_lang_code', 1, 'https://ror.org/015nzpb92 Baldoyle Forum'),
(65018, 'https://ror.org/01qs6m282', 'no_lang_code', 1, 'https://ror.org/01qs6m282 Mergon (Ireland)'),
(65019, 'https://ror.org/014nbfa48', 'en', 1, 'https://ror.org/014nbfa48 Dearbhú Cáilíochta agus Cáilíochtaí Éireann Quality and Qualifications Ireland'),
(65020, 'https://ror.org/05cc0x492', 'no_lang_code', 1, 'https://ror.org/05cc0x492 Hewlett Packard Enterprise (Ireland)'),
(65021, 'https://ror.org/038nz7z72', 'en', 1, 'https://ror.org/038nz7z72 Ballymun Job Centre'),
(65022, 'https://ror.org/03884sd33', 'en', 1, 'https://ror.org/03884sd33 Rape Crisis Network Ireland'),
(65023, 'https://ror.org/01wn5z925', 'en', 1, 'https://ror.org/01wn5z925 Horse Sport Ireland'),
(65024, 'https://ror.org/05eg7b102', 'no_lang_code', 1, 'https://ror.org/05eg7b102 BeoCare (United States)'),
(65025, 'https://ror.org/056wwd598', 'ga', 1, 'https://ror.org/056wwd598 DeafHear'),
(65026, 'https://ror.org/04sbmz064', 'no_lang_code', 1, 'https://ror.org/04sbmz064 BH Consulting (Ireland)'),
(65027, 'https://ror.org/03p928666', 'no_lang_code', 1, 'https://ror.org/03p928666 RedT Energy Storage (United Kingdom)'),
(65028, 'https://ror.org/01m708z37', 'no_lang_code', 1, 'https://ror.org/01m708z37 Bio-Marine Ingredients (Ireland)'),
(65029, 'https://ror.org/0146h2h75', 'no_lang_code', 1, 'https://ror.org/0146h2h75 IBM (Ireland)'),
(65030, 'https://ror.org/03r0hka23', 'no_lang_code', 1, 'https://ror.org/03r0hka23 RediCare (Ireland)'),
(65031, 'https://ror.org/048rar163', 'no_lang_code', 1, 'https://ror.org/048rar163 Reprodoc (Ireland)'),
(65032, 'https://ror.org/04a21y403', 'no_lang_code', 1, 'https://ror.org/04a21y403 Irish Home Energy Rating Energy Services (Ireland)'),
(65033, 'https://ror.org/05qcvps09', 'en', 1, 'https://ror.org/05qcvps09 Respond Housing Association'),
(65034, 'https://ror.org/03jnm8t41', 'no_lang_code', 1, 'https://ror.org/03jnm8t41 Alltech (Ireland)'),
(65035, 'https://ror.org/0304ps964', 'en', 1, 'https://ror.org/0304ps964 Dermot Foley Landscape Architects (Ireland)'),
(65036, 'https://ror.org/0152gf261', 'no_lang_code', 1, 'https://ror.org/0152gf261 Roche (Ireland)'),
(65037, 'https://ror.org/04bc14p57', 'no_lang_code', 1, 'https://ror.org/04bc14p57 Eurofins (Ireland)'),
(65038, 'https://ror.org/05q7ass71', 'en', 1, 'https://ror.org/05q7ass71 Immigrant Council of Ireland'),
(65039, 'https://ror.org/02e58j402', 'no_lang_code', 1, 'https://ror.org/02e58j402 Bioseutica (Netherlands)'),
(65040, 'https://ror.org/02rkpd451', 'en', 1, 'https://ror.org/02rkpd451 Saoirse Foundation'),
(65041, 'https://ror.org/04b0d8j03', 'en', 1, 'https://ror.org/04b0d8j03 Boardmatch'),
(65042, 'https://ror.org/01jz1e142', 'en', 1, 'https://ror.org/01jz1e142 Northwest Institute of Eco-Environment and Resources 中国科学院西北生态环境资源研究院'),
(65043, 'https://ror.org/0506qpg95', 'no_lang_code', 1, 'https://ror.org/0506qpg95 Impedans (Ireland)'),
(65044, 'https://ror.org/005n8c828', 'en', 1, 'https://ror.org/005n8c828 Science Gallery International'),
(65045, 'https://ror.org/01cm9h109', 'en', 1, 'https://ror.org/01cm9h109 Disability Federation of Ireland'),
(65046, 'https://ror.org/01g34pr56', 'en', 1, 'https://ror.org/01g34pr56 Inclusion Ireland'),
(65047, 'https://ror.org/022zaft65', 'ga', 1, 'https://ror.org/022zaft65 Doras Luimní'),
(65048, 'https://ror.org/05k5h6g73', 'no_lang_code', 1, 'https://ror.org/05k5h6g73 Bodywhys'),
(65049, 'https://ror.org/00mzhwb11', 'no_lang_code', 1, 'https://ror.org/00mzhwb11 Ingersoll Rand (Ireland)'),
(65050, 'https://ror.org/04mrd1117', 'no_lang_code', 1, 'https://ror.org/04mrd1117 ServusNet Informatics (Ireland)'),
(65051, 'https://ror.org/02wnznw20', 'no_lang_code', 1, 'https://ror.org/02wnznw20 Boliden Tara Mines (Ireland)'),
(65052, 'https://ror.org/0394d5w22', 'no_lang_code', 1, 'https://ror.org/0394d5w22 SMA Magnetics (Poland)'),
(65053, 'https://ror.org/02kyk8452', 'en', 1, 'https://ror.org/02kyk8452 Shine Center for Autism'),
(65054, 'https://ror.org/05n083m46', 'no_lang_code', 1, 'https://ror.org/05n083m46 Innovation Zed (Ireland)'),
(65055, 'https://ror.org/01akqkg08', 'no_lang_code', 1, 'https://ror.org/01akqkg08 BrainWaveBank (United Kingdom)'),
(65056, 'https://ror.org/04gs82x94', 'no_lang_code', 1, 'https://ror.org/04gs82x94 Brandon Bioscience (Ireland)'),
(65057, 'https://ror.org/04z4hje09', 'en', 1, 'https://ror.org/04z4hje09 Early Childhood Ireland'),
(65058, 'https://ror.org/05v9der98', 'no_lang_code', 1, 'https://ror.org/05v9der98 Bridge Interpreting (Ireland)'),
(65059, 'https://ror.org/055h6f484', 'no_lang_code', 1, 'https://ror.org/055h6f484 Tekno Surgical (Ireland)'),
(65060, 'https://ror.org/0055bsh22', 'no_lang_code', 1, 'https://ror.org/0055bsh22 Burrenbeo Trust'),
(65061, 'https://ror.org/05hatgd07', 'no_lang_code', 1, 'https://ror.org/05hatgd07 Smartbay Ireland'),
(65062, 'https://ror.org/04b1e4w55', 'en', 1, 'https://ror.org/04b1e4w55 Business to Arts'),
(65063, 'https://ror.org/039ac0z09', 'en', 1, 'https://ror.org/039ac0z09 Social Justice Ireland'),
(65064, 'https://ror.org/049r2ed34', 'en', 1, 'https://ror.org/049r2ed34 Swim Ireland'),
(65065, 'https://ror.org/00cefgj13', 'no_lang_code', 1, 'https://ror.org/00cefgj13 Caredoc'),
(65066, 'https://ror.org/020vamp96', 'en', 1, 'https://ror.org/020vamp96 Family Carers Ireland'),
(65067, 'https://ror.org/05nh9ky12', 'en', 1, 'https://ror.org/05nh9ky12 Irish Archaeology Field School'),
(65068, 'https://ror.org/01e6c7y89', 'en', 1, 'https://ror.org/01e6c7y89 Carlow County Council Comhairle Contae Cheatharlach'),
(65069, 'https://ror.org/00qvayv53', 'en', 1, 'https://ror.org/00qvayv53 St Nicholas Trust'),
(65070, 'https://ror.org/02m014756', 'en', 1, 'https://ror.org/02m014756 Irish Council for Civil Liberties'),
(65071, 'https://ror.org/05fn69a96', 'en', 1, 'https://ror.org/05fn69a96 Irish Equine Centre'),
(65072, 'https://ror.org/0193t3v82', 'en', 1, 'https://ror.org/0193t3v82 EmployAbility Galway'),
(65073, 'https://ror.org/00naggm49', 'en', 1, 'https://ror.org/00naggm49 Enable Ireland'),
(65074, 'https://ror.org/008sxtj70', 'no_lang_code', 1, 'https://ror.org/008sxtj70 Manor Farm (Ireland)'),
(65075, 'https://ror.org/0587yj467', 'no_lang_code', 1, 'https://ror.org/0587yj467 MicroGen Biotech (Ireland)'),
(65076, 'https://ror.org/014x92w58', 'en', 1, 'https://ror.org/014x92w58 Irish Heritage Trust'),
(65077, 'https://ror.org/05tk02106', 'en', 1, 'https://ror.org/05tk02106 Suas Educational Development'),
(65078, 'https://ror.org/03kt9pk73', 'en', 1, 'https://ror.org/03kt9pk73 Ionad Cearta Imirceach na hÉireann Migrant Rights Centre Ireland'),
(65079, 'https://ror.org/04fwng791', 'no_lang_code', 1, 'https://ror.org/04fwng791 Castolin Eutectic (Ireland)'),
(65080, 'https://ror.org/05jvc9976', 'no_lang_code', 1, 'https://ror.org/05jvc9976 ENBIO (Ireland)'),
(65081, 'https://ror.org/0391e9v93', 'no_lang_code', 1, 'https://ror.org/0391e9v93 Minch Malt (Ireland)'),
(65082, 'https://ror.org/05espyj63', 'en', 1, 'https://ror.org/05espyj63 Irish Human Rights and Equality Commission'),
(65083, 'https://ror.org/00fp23a83', 'en', 1, 'https://ror.org/00fp23a83 Aras Nua-Ealaíne na hÉireann Irish Museum of Modern Art'),
(65084, 'https://ror.org/025cyqr27', 'no_lang_code', 1, 'https://ror.org/025cyqr27 Molloy Environmental Systems (Ireland)'),
(65085, 'https://ror.org/02admgw40', 'no_lang_code', 1, 'https://ror.org/02admgw40 Sulzer (Ireland)'),
(65086, 'https://ror.org/025x7xq24', 'no_lang_code', 1, 'https://ror.org/025x7xq24 Cerbios (Switzerland)'),
(65087, 'https://ror.org/04xzvj604', 'no_lang_code', 1, 'https://ror.org/04xzvj604 Monaghan Biosciences (Ireland)'),
(65088, 'https://ror.org/00egzwg33', 'no_lang_code', 1, 'https://ror.org/00egzwg33 Cloughjordan Ecovillage'),
(65089, 'https://ror.org/03fgrnr69', 'en', 1, 'https://ror.org/03fgrnr69 Irish Penal Reform Trust'),
(65090, 'https://ror.org/005h0gs91', 'no_lang_code', 1, 'https://ror.org/005h0gs91 Enzolve Technologies (Ireland)'),
(65091, 'https://ror.org/049ck3c19', 'en', 1, 'https://ror.org/049ck3c19 Childminding Ireland'),
(65092, 'https://ror.org/01jsfh075', 'en', 1, 'https://ror.org/01jsfh075 Irish Refugee Council'),
(65093, 'https://ror.org/0559jvv76', 'no_lang_code', 1, 'https://ror.org/0559jvv76 Tango Telecom (Ireland)'),
(65094, 'https://ror.org/0095wvm02', 'no_lang_code', 1, 'https://ror.org/0095wvm02 Move4Parkinson’s'),
(65095, 'https://ror.org/02bvdyv86', 'no_lang_code', 1, 'https://ror.org/02bvdyv86 Equilume (Ireland)'),
(65096, 'https://ror.org/00wbknw54', 'no_lang_code', 1, 'https://ror.org/00wbknw54 Techworks Marine (Ireland)'),
(65097, 'https://ror.org/055n6t614', 'en', 1, 'https://ror.org/055n6t614 City of Dublin Skin and Cancer Hospital Charity'),
(65098, 'https://ror.org/00xfr3x03', 'no_lang_code', 1, 'https://ror.org/00xfr3x03 Plusvital (Ireland)'),
(65099, 'https://ror.org/03xabzk72', 'en', 1, 'https://ror.org/03xabzk72 Galway Clinic'),
(65100, 'https://ror.org/03j7v1b32', 'en', 1, 'https://ror.org/03j7v1b32 Multiple Sclerosis Society of Ireland'),
(65101, 'https://ror.org/04bnxk453', 'en', 1, 'https://ror.org/04bnxk453 Sport Ireland Spórt Éireann'),
(65102, 'https://ror.org/00vx7p454', 'en', 1, 'https://ror.org/00vx7p454 Glencree'),
(65103, 'https://ror.org/0219e8j10', 'no_lang_code', 1, 'https://ror.org/0219e8j10 Vast Solar (Australia)'),
(65104, 'https://ror.org/02cmtfp09', 'no_lang_code', 1, 'https://ror.org/02cmtfp09 European Recycling Platform (Ireland)'),
(65105, 'https://ror.org/03wjek566', 'en', 1, 'https://ror.org/03wjek566 Nasc The Irish Immigrant Support Centre'),
(65106, 'https://ror.org/04eftem11', 'en', 1, 'https://ror.org/04eftem11 Irish Society for the Prevention of Cruelty to Animals'),
(65107, 'https://ror.org/049d7dw39', 'en', 1, 'https://ror.org/049d7dw39 Youth Theatre Ireland'),
(65108, 'https://ror.org/053k9rz58', 'en', 1, 'https://ror.org/053k9rz58 National Association of Regional Game Councils'),
(65109, 'https://ror.org/03jrrs135', 'en', 1, 'https://ror.org/03jrrs135 National Disability Authority'),
(65110, 'https://ror.org/058v8m457', 'no_lang_code', 1, 'https://ror.org/058v8m457 Exergyn (Ireland)'),
(65111, 'https://ror.org/020tka774', 'no_lang_code', 1, 'https://ror.org/020tka774 Irish Horseracing Regulatory Board (Ireland)'),
(65112, 'https://ror.org/03vbs1928', 'no_lang_code', 1, 'https://ror.org/03vbs1928 Transpharmation (Ireland)'),
(65113, 'https://ror.org/0184neg38', 'no_lang_code', 1, 'https://ror.org/0184neg38 Vita Actives (Ireland)'),
(65114, 'https://ror.org/02wkqjs50', 'no_lang_code', 1, 'https://ror.org/02wkqjs50 Exerscout (Ireland)'),
(65115, 'https://ror.org/012ewnz96', 'en', 1, 'https://ror.org/012ewnz96 National Forum for the Enhancement of Teaching & Learning in Higher Education'),
(65116, 'https://ror.org/00xgwej35', 'no_lang_code', 1, 'https://ror.org/00xgwej35 Vitalograph (Ireland)'),
(65117, 'https://ror.org/016m9ee75', 'en', 1, 'https://ror.org/016m9ee75 Fatima Groups United'),
(65118, 'https://ror.org/02mad9e91', 'en', 1, 'https://ror.org/02mad9e91 Think-tank for Action on Social Change'),
(65119, 'https://ror.org/048db4454', 'en', 1, 'https://ror.org/048db4454 National Platform of Self Advocates'),
(65120, 'https://ror.org/01gxrv819', 'no_lang_code', 1, 'https://ror.org/01gxrv819 Vornia (Ireland)');
INSERT INTO `rors` VALUES
(65121, 'https://ror.org/04hpnke04', 'en', 1, 'https://ror.org/04hpnke04 Tusla - Child and Family Agency'),
(65122, 'https://ror.org/036grzb86', 'no_lang_code', 1, 'https://ror.org/036grzb86 Voysis (Ireland)'),
(65123, 'https://ror.org/01caasa64', 'en', 1, 'https://ror.org/01caasa64 Comhairle Náisiúnta na nÓg National Youth Council of Ireland'),
(65124, 'https://ror.org/0153x1x48', 'no_lang_code', 1, 'https://ror.org/0153x1x48 U-Casadh Project (Ireland)'),
(65125, 'https://ror.org/05ee18g42', 'en', 1, 'https://ror.org/05ee18g42 Lionra na hÉireann um Chomhionanns Transinscne Transgender Equality Network Ireland'),
(65126, 'https://ror.org/045x5zp74', 'no_lang_code', 1, 'https://ror.org/045x5zp74 NSilico (Ireland)'),
(65127, 'https://ror.org/00d6y7q19', 'no_lang_code', 1, 'https://ror.org/00d6y7q19 Avara Pharmaceutical Services (Ireland)'),
(65128, 'https://ror.org/00q167h80', 'no_lang_code', 1, 'https://ror.org/00q167h80 Phorest Salon Software (Ireland)'),
(65129, 'https://ror.org/02wbfy710', 'no_lang_code', 1, 'https://ror.org/02wbfy710 Xeolas Pharmaceuticals (Ireland)'),
(65130, 'https://ror.org/04mfdzp80', 'no_lang_code', 1, 'https://ror.org/04mfdzp80 YAMSU Technologies (Ireland)'),
(65131, 'https://ror.org/02pn2hw69', 'no_lang_code', 1, 'https://ror.org/02pn2hw69 Neuromod (Ireland)'),
(65132, 'https://ror.org/053ss9y09', 'pt', 1, 'https://ror.org/053ss9y09 Associação Kuyper para Estudos Transdisciplinares'),
(65133, 'https://ror.org/0468tse97', 'en', 1, 'https://ror.org/0468tse97 The Canadian Scientific & Christian Affiliation'),
(65134, 'https://ror.org/015m5qc77', 'en', 1, 'https://ror.org/015m5qc77 Expii'),
(65135, 'https://ror.org/02bwhra22', 'no_lang_code', 1, 'https://ror.org/02bwhra22 Cloudera (United States)'),
(65136, 'https://ror.org/0454xt523', 'es', 1, 'https://ror.org/0454xt523 Seminario Bíblico de Colombia Fundación Universitaria'),
(65137, 'https://ror.org/05mvt5123', 'no_lang_code', 1, 'https://ror.org/05mvt5123 Hyster-Yale Materials Handling (United States)'),
(65138, 'https://ror.org/05v15sz79', 'no_lang_code', 1, 'https://ror.org/05v15sz79 58.com (China)'),
(65139, 'https://ror.org/01j0j2q95', 'en', 1, 'https://ror.org/01j0j2q95 The Society of Korean Language and Literature 국어국문학회'),
(65140, 'https://ror.org/0318jmw72', 'hu', 1, 'https://ror.org/0318jmw72 Magyar Tehetségsegítő Szervezetek Szövetsége'),
(65141, 'https://ror.org/00fycd487', 'no_lang_code', 1, 'https://ror.org/00fycd487 Constellation Software (Canada)'),
(65142, 'https://ror.org/03qckzp50', 'no_lang_code', 1, 'https://ror.org/03qckzp50 AAC Technologies (China)'),
(65143, 'https://ror.org/01sbnfq90', 'no_lang_code', 1, 'https://ror.org/01sbnfq90 IAC (United States)'),
(65144, 'https://ror.org/02xd1z741', 'no_lang_code', 1, 'https://ror.org/02xd1z741 ACI Worldwide (United States)'),
(65145, 'https://ror.org/03n1kz237', 'en', 1, 'https://ror.org/03n1kz237 New Zealand Christians in Science Te Kāhui Whakapono ki Nga Kaipūtaiao o Te Motu'),
(65146, 'https://ror.org/03t9vst72', 'no_lang_code', 1, 'https://ror.org/03t9vst72 Icahn Enterprises (United States)'),
(65147, 'https://ror.org/02k9fzh35', 'no_lang_code', 1, 'https://ror.org/02k9fzh35 Cooper Standard (United States)'),
(65148, 'https://ror.org/04172zb59', 'no_lang_code', 1, 'https://ror.org/04172zb59 IDEXX Laboratories (United States)'),
(65149, 'https://ror.org/04vyg0r47', 'no_lang_code', 1, 'https://ror.org/04vyg0r47 Criteo (France)'),
(65150, 'https://ror.org/00xr42905', 'no_lang_code', 1, 'https://ror.org/00xr42905 Activision Blizzard (United States)'),
(65151, 'https://ror.org/03wc7j405', 'no_lang_code', 1, 'https://ror.org/03wc7j405 Adient (Ireland)'),
(65152, 'https://ror.org/00cw8st45', 'en', 1, 'https://ror.org/00cw8st45 Antiquities, Monuments and Museum Corporation'),
(65153, 'https://ror.org/05phhyq88', 'no_lang_code', 1, 'https://ror.org/05phhyq88 CSSC Offshore & Marine Engineering Company (China)'),
(65154, 'https://ror.org/02rf2nk31', 'no_lang_code', 1, 'https://ror.org/02rf2nk31 ADTRAN (United States)'),
(65155, 'https://ror.org/003k32q32', 'no_lang_code', 1, 'https://ror.org/003k32q32 Ctrip'),
(65156, 'https://ror.org/027szw220', 'no_lang_code', 1, 'https://ror.org/027szw220 Inphi (United States)'),
(65157, 'https://ror.org/05w9aqz69', 'no_lang_code', 1, 'https://ror.org/05w9aqz69 Tern (United Kingdom)'),
(65158, 'https://ror.org/04pq7rm89', 'no_lang_code', 1, 'https://ror.org/04pq7rm89 Deutsche Börse (Germany)'),
(65159, 'https://ror.org/0474p4r72', 'no_lang_code', 1, 'https://ror.org/0474p4r72 Inspur (China) 浪潮'),
(65160, 'https://ror.org/03tarb191', 'no_lang_code', 1, 'https://ror.org/03tarb191 Akamai (United States)'),
(65161, 'https://ror.org/00kn8e190', 'no_lang_code', 1, 'https://ror.org/00kn8e190 DHC Software (China)'),
(65162, 'https://ror.org/057z7x668', 'no_lang_code', 1, 'https://ror.org/057z7x668 Dialog Semiconductor (United Kingdom)'),
(65163, 'https://ror.org/0182dgx25', 'en', 1, 'https://ror.org/0182dgx25 Woolf Institute'),
(65164, 'https://ror.org/02gzaeb51', 'no_lang_code', 1, 'https://ror.org/02gzaeb51 Alliance Data (United States)'),
(65165, 'https://ror.org/00az85j53', 'no_lang_code', 1, 'https://ror.org/00az85j53 Dongfang Electric Corporation (China)'),
(65166, 'https://ror.org/01j1w6v73', 'no_lang_code', 1, 'https://ror.org/01j1w6v73 Allscripts (United States)'),
(65167, 'https://ror.org/055ar4y96', 'no_lang_code', 1, 'https://ror.org/055ar4y96 Dongfeng Motor Group (China)'),
(65168, 'https://ror.org/00fp6fj05', 'no_lang_code', 1, 'https://ror.org/00fp6fj05 NetEase (China) 网易'),
(65169, 'https://ror.org/01dkjkq64', 'no_lang_code', 1, 'https://ror.org/01dkjkq64 Jingdong (China) 京东'),
(65170, 'https://ror.org/0197qw696', 'no_lang_code', 1, 'https://ror.org/0197qw696 Netflix (United States)'),
(65171, 'https://ror.org/01m2ydy56', 'no_lang_code', 1, 'https://ror.org/01m2ydy56 Altaba (United States)'),
(65172, 'https://ror.org/04nxxn125', 'no_lang_code', 1, 'https://ror.org/04nxxn125 Amadeus (Spain)'),
(65173, 'https://ror.org/00rxg5003', 'no_lang_code', 1, 'https://ror.org/00rxg5003 Nets (Denmark)'),
(65174, 'https://ror.org/014y0b014', 'no_lang_code', 1, 'https://ror.org/014y0b014 NetScout (United States)'),
(65175, 'https://ror.org/00mh5ga26', 'no_lang_code', 1, 'https://ror.org/00mh5ga26 East Japan Railway (Japan) 東日本旅客鉄道株式会社'),
(65176, 'https://ror.org/05bqqpf42', 'no_lang_code', 1, 'https://ror.org/05bqqpf42 Ambarella (United States)'),
(65177, 'https://ror.org/04gzzzx19', 'en', 1, 'https://ror.org/04gzzzx19 Korean Language and Literature Society 한국언어문학회'),
(65178, 'https://ror.org/04rt77q92', 'no_lang_code', 1, 'https://ror.org/04rt77q92 Eaton (Ireland)'),
(65179, 'https://ror.org/023es3c27', 'no_lang_code', 1, 'https://ror.org/023es3c27 Anheuser-Busch InBev (Belgium)'),
(65180, 'https://ror.org/04fkpdv59', 'no_lang_code', 1, 'https://ror.org/04fkpdv59 Nexteer Automotive (United States)'),
(65181, 'https://ror.org/0300wj933', 'en', 1, 'https://ror.org/0300wj933 Korean History Society 한국역사연구회'),
(65182, 'https://ror.org/02ztwrd91', 'no_lang_code', 1, 'https://ror.org/02ztwrd91 JAC Motors (China) 江淮汽车'),
(65183, 'https://ror.org/056yydt13', 'no_lang_code', 1, 'https://ror.org/056yydt13 ZTT (China) 江苏中天科技股份有限公司'),
(65184, 'https://ror.org/0269t5q92', 'no_lang_code', 1, 'https://ror.org/0269t5q92 Electronic Arts (United States)'),
(65185, 'https://ror.org/02c451b44', 'en', 1, 'https://ror.org/02c451b44 The English Linguistics Society of Korea 한국영어학학회'),
(65186, 'https://ror.org/0505b0847', 'no_lang_code', 1, 'https://ror.org/0505b0847 Joyson Electronics (China) 均胜电子'),
(65187, 'https://ror.org/04k7xq042', 'no_lang_code', 1, 'https://ror.org/04k7xq042 Jiangxi Copper (China) 江西铜业'),
(65188, 'https://ror.org/00zymfp03', 'no_lang_code', 1, 'https://ror.org/00zymfp03 Electronics for Imaging (United States)'),
(65189, 'https://ror.org/04tz2xx73', 'no_lang_code', 1, 'https://ror.org/04tz2xx73 Nutanix (United States)'),
(65190, 'https://ror.org/04fg7ry98', 'no_lang_code', 1, 'https://ror.org/04fg7ry98 Arista (United States)'),
(65191, 'https://ror.org/00j0sx021', 'no_lang_code', 1, 'https://ror.org/00j0sx021 Johnson Controls (Ireland)'),
(65192, 'https://ror.org/03ff82720', 'no_lang_code', 1, 'https://ror.org/03ff82720 Johnson Electric (China) 德昌電機控股有限公司'),
(65193, 'https://ror.org/01k184b43', 'no_lang_code', 1, 'https://ror.org/01k184b43 Onex (Canada)'),
(65194, 'https://ror.org/01etg0b86', 'en', 1, 'https://ror.org/01etg0b86 Korean Association For Housing Policy Studies 한국주택학회'),
(65195, 'https://ror.org/03rw2rj66', 'no_lang_code', 1, 'https://ror.org/03rw2rj66 JXTG Holdings (Japan) JXホールディングス'),
(65196, 'https://ror.org/04nzfkq05', 'no_lang_code', 1, 'https://ror.org/04nzfkq05 Exor (Netherlands)'),
(65197, 'https://ror.org/03feknn04', 'en', 1, 'https://ror.org/03feknn04 The Korean Society of Modern Chinese Literature 한국중국현대문학학회'),
(65198, 'https://ror.org/02jh1bj14', 'no_lang_code', 1, 'https://ror.org/02jh1bj14 Oshkosh (United States)'),
(65199, 'https://ror.org/03nvser95', 'no_lang_code', 1, 'https://ror.org/03nvser95 ASM Pacific Technology (China)'),
(65200, 'https://ror.org/05npd2m35', 'no_lang_code', 1, 'https://ror.org/05npd2m35 Overstock (United States)'),
(65201, 'https://ror.org/01sh85g09', 'no_lang_code', 1, 'https://ror.org/01sh85g09 Expedia Group (United States)'),
(65202, 'https://ror.org/010v2ez92', 'no_lang_code', 1, 'https://ror.org/010v2ez92 F5 Networks (United States)'),
(65203, 'https://ror.org/01rn6rn86', 'no_lang_code', 1, 'https://ror.org/01rn6rn86 Palo Alto Networks (United States)'),
(65204, 'https://ror.org/00y7n3708', 'no_lang_code', 1, 'https://ror.org/00y7n3708 Atlassian (United Kingdom)'),
(65205, 'https://ror.org/05p859a12', 'no_lang_code', 1, 'https://ror.org/05p859a12 Ferrari (Italy)'),
(65206, 'https://ror.org/0386abs67', 'no_lang_code', 1, 'https://ror.org/0386abs67 Automatic Data Processing (United States)'),
(65207, 'https://ror.org/038m7b802', 'no_lang_code', 1, 'https://ror.org/038m7b802 Pandora (United States)'),
(65208, 'https://ror.org/048gya260', 'no_lang_code', 1, 'https://ror.org/048gya260 Kerry Group (Ireland)'),
(65209, 'https://ror.org/01dr6h017', 'no_lang_code', 1, 'https://ror.org/01dr6h017 Pega (United States)'),
(65210, 'https://ror.org/05gc25a42', 'no_lang_code', 1, 'https://ror.org/05gc25a42 Keyence (Japan) キーエンス'),
(65211, 'https://ror.org/046j5g483', 'no_lang_code', 1, 'https://ror.org/046j5g483 Pegatron (Taiwan) 和碩聯合科技股份有限公司'),
(65212, 'https://ror.org/05j26dk60', 'no_lang_code', 1, 'https://ror.org/05j26dk60 AviChina Industry & Technology (China) 中国航空科技工业股份有限公司'),
(65213, 'https://ror.org/03dnqre85', 'no_lang_code', 1, 'https://ror.org/03dnqre85 FireEye (United States)'),
(65214, 'https://ror.org/04hjzh827', 'no_lang_code', 1, 'https://ror.org/04hjzh827 First Solar (United States)'),
(65215, 'https://ror.org/04t8zgm64', 'no_lang_code', 1, 'https://ror.org/04t8zgm64 BAIC Motor (China)'),
(65216, 'https://ror.org/01stnfn33', 'no_lang_code', 1, 'https://ror.org/01stnfn33 Kingsoft (China) 金山软件'),
(65217, 'https://ror.org/04dgkhg68', 'no_lang_code', 1, 'https://ror.org/04dgkhg68 Snap (United States)'),
(65218, 'https://ror.org/03tmyjv73', 'no_lang_code', 1, 'https://ror.org/03tmyjv73 Fiserv (United States)'),
(65219, 'https://ror.org/00z8s7v19', 'no_lang_code', 1, 'https://ror.org/00z8s7v19 Fitbit (United States)'),
(65220, 'https://ror.org/04c5wp027', 'no_lang_code', 1, 'https://ror.org/04c5wp027 Bandai Namco (Japan) 株式会社バンダイナムコホールディングス'),
(65221, 'https://ror.org/04h48jk55', 'no_lang_code', 1, 'https://ror.org/04h48jk55 Ford Otosan (Turkey)'),
(65222, 'https://ror.org/02ew2ks20', 'no_lang_code', 1, 'https://ror.org/02ew2ks20 SoftBank Group (Japan) ソフトバンクグループ株式会社'),
(65223, 'https://ror.org/02eytr588', 'no_lang_code', 1, 'https://ror.org/02eytr588 Phison (Taiwan)'),
(65224, 'https://ror.org/00vn8k536', 'no_lang_code', 1, 'https://ror.org/00vn8k536 Fujian Star-net (China)'),
(65225, 'https://ror.org/02sfdh709', 'no_lang_code', 1, 'https://ror.org/02sfdh709 Sohu (China) 搜狐'),
(65226, 'https://ror.org/01v6p2g18', 'no_lang_code', 1, 'https://ror.org/01v6p2g18 Ahold Delhaize (Netherlands) Koninklijke Ahold Delhaize N.V.'),
(65227, 'https://ror.org/04d7w6g53', 'no_lang_code', 1, 'https://ror.org/04d7w6g53 Playtech (Isle of Man)'),
(65228, 'https://ror.org/0368h0402', 'no_lang_code', 1, 'https://ror.org/0368h0402 Sophos Group (United Kingdom)'),
(65229, 'https://ror.org/05rbhw377', 'no_lang_code', 1, 'https://ror.org/05rbhw377 Hanjin (South Korea) 한진 그룹'),
(65230, 'https://ror.org/05htczx02', 'no_lang_code', 1, 'https://ror.org/05htczx02 Prada (Italy)'),
(65231, 'https://ror.org/00wja7n54', 'no_lang_code', 1, 'https://ror.org/00wja7n54 Fuyao Group (China)'),
(65232, 'https://ror.org/01t91mp11', 'no_lang_code', 1, 'https://ror.org/01t91mp11 Proofpoint (United States)'),
(65233, 'https://ror.org/05tr8ks89', 'no_lang_code', 1, 'https://ror.org/05tr8ks89 Splunk (United States)'),
(65234, 'https://ror.org/058x40223', 'no_lang_code', 1, 'https://ror.org/058x40223 Pure Storage (United States)'),
(65235, 'https://ror.org/031dc4703', 'no_lang_code', 1, 'https://ror.org/031dc4703 BlackRock (United States)'),
(65236, 'https://ror.org/00mgrqp66', 'no_lang_code', 1, 'https://ror.org/00mgrqp66 Jiuquan Iron & Steel (China) 酒泉钢铁'),
(65237, 'https://ror.org/02qyqxk84', 'no_lang_code', 1, 'https://ror.org/02qyqxk84 Qiagen (Netherlands)'),
(65238, 'https://ror.org/048cxnx33', 'no_lang_code', 1, 'https://ror.org/048cxnx33 Quality Systems (United States)'),
(65239, 'https://ror.org/057qdm128', 'no_lang_code', 1, 'https://ror.org/057qdm128 LendingClub (United States)'),
(65240, 'https://ror.org/006sbr164', 'no_lang_code', 1, 'https://ror.org/006sbr164 Gemalto (Netherlands)'),
(65241, 'https://ror.org/036246q84', 'no_lang_code', 1, 'https://ror.org/036246q84 Box (United States)'),
(65242, 'https://ror.org/01j0jk666', 'no_lang_code', 1, 'https://ror.org/01j0jk666 ResMed (United States)'),
(65243, 'https://ror.org/022352x20', 'no_lang_code', 1, 'https://ror.org/022352x20 Getinge (Sweden)'),
(65244, 'https://ror.org/05093ss78', 'no_lang_code', 1, 'https://ror.org/05093ss78 Lens Technology (China) 蓝思科技'),
(65245, 'https://ror.org/02hcww794', 'no_lang_code', 1, 'https://ror.org/02hcww794 Suning (China)'),
(65246, 'https://ror.org/02587ed69', 'no_lang_code', 1, 'https://ror.org/02587ed69 Bucher Industries (Switzerland)'),
(65247, 'https://ror.org/00pb9rf78', 'no_lang_code', 1, 'https://ror.org/00pb9rf78 GoDaddy (United States)'),
(65248, 'https://ror.org/00m61xx36', 'no_lang_code', 1, 'https://ror.org/00m61xx36 Burelle (France)'),
(65249, 'https://ror.org/016v9qm56', 'no_lang_code', 1, 'https://ror.org/016v9qm56 GoerTek (China)'),
(65250, 'https://ror.org/01ms42351', 'no_lang_code', 1, 'https://ror.org/01ms42351 Leoni (Germany)'),
(65251, 'https://ror.org/0588fx246', 'no_lang_code', 1, 'https://ror.org/0588fx246 Rongsheng Petrochemical (China) 荣盛石化股份有限公司'),
(65252, 'https://ror.org/050acz986', 'no_lang_code', 1, 'https://ror.org/050acz986 Gogo (United States)'),
(65253, 'https://ror.org/01gpd6e26', 'no_lang_code', 1, 'https://ror.org/01gpd6e26 Calix (United States)'),
(65254, 'https://ror.org/00xj9p276', 'no_lang_code', 1, 'https://ror.org/00xj9p276 GoPro (United States)'),
(65255, 'https://ror.org/01jcqgb80', 'no_lang_code', 1, 'https://ror.org/01jcqgb80 Leshi Internet Information and Technology (China) 乐视网'),
(65256, 'https://ror.org/03f668467', 'no_lang_code', 1, 'https://ror.org/03f668467 Supermicro (United States)'),
(65257, 'https://ror.org/019xwzn44', 'no_lang_code', 1, 'https://ror.org/019xwzn44 Great Wall Motors (China) 长城汽车'),
(65258, 'https://ror.org/051b9ta18', 'no_lang_code', 1, 'https://ror.org/051b9ta18 SAIC Motor (China) 上汽集团'),
(65259, 'https://ror.org/03hw64936', 'no_lang_code', 1, 'https://ror.org/03hw64936 Campbell Soup (United States)'),
(65260, 'https://ror.org/026fzn952', 'no_lang_code', 1, 'https://ror.org/026fzn952 Guangzhou Automobile Group (China) 广州汽车集团股份有限公司'),
(65261, 'https://ror.org/048j6j578', 'no_lang_code', 1, 'https://ror.org/048j6j578 Synchronoss (United States)'),
(65262, 'https://ror.org/03mz26918', 'no_lang_code', 1, 'https://ror.org/03mz26918 Cargotec (Finland)'),
(65263, 'https://ror.org/05k05ta39', 'no_lang_code', 1, 'https://ror.org/05k05ta39 Guidewire (United States)'),
(65264, 'https://ror.org/053v5e348', 'no_lang_code', 1, 'https://ror.org/053v5e348 Tableau Software (United States)'),
(65265, 'https://ror.org/00qbcq685', 'no_lang_code', 1, 'https://ror.org/00qbcq685 Cavium (United States)'),
(65266, 'https://ror.org/040a2d739', 'no_lang_code', 1, 'https://ror.org/040a2d739 Seagate (Ireland)'),
(65267, 'https://ror.org/05pxcg049', 'no_lang_code', 1, 'https://ror.org/05pxcg049 Take-Two Interactive (United States)'),
(65268, 'https://ror.org/04yzwa804', 'no_lang_code', 1, 'https://ror.org/04yzwa804 Sega Sammy (Japan) 株式会社セガサミーホールディングス'),
(65269, 'https://ror.org/051qgy342', 'no_lang_code', 1, 'https://ror.org/051qgy342 CDK Global (United States)'),
(65270, 'https://ror.org/01eevfr57', 'no_lang_code', 1, 'https://ror.org/01eevfr57 Hankook Tire (South Korea) 한국타이어'),
(65271, 'https://ror.org/015qn9r22', 'no_lang_code', 1, 'https://ror.org/015qn9r22 Champion Technology Holdings (China)'),
(65272, 'https://ror.org/04nqpys93', 'no_lang_code', 1, 'https://ror.org/04nqpys93 Check Point (Israel)'),
(65273, 'https://ror.org/02t09mq75', 'no_lang_code', 1, 'https://ror.org/02t09mq75 SEI (United States)'),
(65274, 'https://ror.org/00247dx40', 'no_lang_code', 1, 'https://ror.org/00247dx40 Tatung (Taiwan) 大同股份有限公司'),
(65275, 'https://ror.org/0394wsn58', 'no_lang_code', 1, 'https://ror.org/0394wsn58 Harbin Electric Corporation (China) 哈尔滨电气集团有限公司'),
(65276, 'https://ror.org/012tba185', 'no_lang_code', 1, 'https://ror.org/012tba185 Cheng Shin Rubber (Taiwan) 正新橡膠工業股份有限公司'),
(65277, 'https://ror.org/02h07sr78', 'no_lang_code', 1, 'https://ror.org/02h07sr78 Luxshare ICT (China) 立讯精密工业股份有限公司'),
(65278, 'https://ror.org/05psg6c12', 'no_lang_code', 1, 'https://ror.org/05psg6c12 Sensata Technologies (Netherlands)'),
(65279, 'https://ror.org/00rarw420', 'no_lang_code', 1, 'https://ror.org/00rarw420 Harmonic (United States)'),
(65280, 'https://ror.org/02eh7bh87', 'no_lang_code', 1, 'https://ror.org/02eh7bh87 Tebian Electric Apparatus (China) 特变电工股份有限公司'),
(65281, 'https://ror.org/05xr0bc04', 'no_lang_code', 1, 'https://ror.org/05xr0bc04 ServiceNow (United States)'),
(65282, 'https://ror.org/04hzt6a67', 'no_lang_code', 1, 'https://ror.org/04hzt6a67 Hefei Meiling (China) 合肥美菱股份有限公司'),
(65283, 'https://ror.org/00c6xam17', 'no_lang_code', 1, 'https://ror.org/00c6xam17 Gezhouba Group (China) 中国葛洲坝集团股份有限公司'),
(65284, 'https://ror.org/05rb1p829', 'no_lang_code', 1, 'https://ror.org/05rb1p829 Chenming Group (China) 晨鸣集团'),
(65285, 'https://ror.org/02t3qgb38', 'no_lang_code', 1, 'https://ror.org/02t3qgb38 China GreatWall Technology Group (China) 中国长城科技集团股份有限公司'),
(65286, 'https://ror.org/04brysy78', 'no_lang_code', 1, 'https://ror.org/04brysy78 Masteel (China) 马钢集团'),
(65287, 'https://ror.org/01zc60580', 'no_lang_code', 1, 'https://ror.org/01zc60580 Heiwa (Japan) 株式会社平和'),
(65288, 'https://ror.org/04pwn6a43', 'no_lang_code', 1, 'https://ror.org/04pwn6a43 China National Chemical Engineering (China) 中国化学工程股份有限公司'),
(65289, 'https://ror.org/00vsv8c52', 'no_lang_code', 1, 'https://ror.org/00vsv8c52 China Electronics Corporation (China) 中國電子公司'),
(65290, 'https://ror.org/015epak69', 'no_lang_code', 1, 'https://ror.org/015epak69 Hengtong Optoelectronic (China) 亨通光电'),
(65291, 'https://ror.org/00v85ww51', 'no_lang_code', 1, 'https://ror.org/00v85ww51 China Railway Signal & Communication (China) 中国铁路通信信号股份有限公司'),
(65292, 'https://ror.org/01nx55p33', 'no_lang_code', 1, 'https://ror.org/01nx55p33 Temenos Group (Switzerland)'),
(65293, 'https://ror.org/01zak2017', 'no_lang_code', 1, 'https://ror.org/01zak2017 MercadoLibre (Argentina)'),
(65294, 'https://ror.org/03jgnzt20', 'no_lang_code', 1, 'https://ror.org/03jgnzt20 China Telecom (China) 中国电信'),
(65295, 'https://ror.org/00nkkk791', 'no_lang_code', 1, 'https://ror.org/00nkkk791 Shanghai Tunnel Engineering (China) 上海隧道工程'),
(65296, 'https://ror.org/009a2jy80', 'no_lang_code', 1, 'https://ror.org/009a2jy80 Hexagon (Sweden)'),
(65297, 'https://ror.org/01qkhw706', 'no_lang_code', 1, 'https://ror.org/01qkhw706 Christian Dior (France)'),
(65298, 'https://ror.org/013b8tn87', 'no_lang_code', 1, 'https://ror.org/013b8tn87 NetDragon (China)'),
(65299, 'https://ror.org/012pkqv60', 'no_lang_code', 1, 'https://ror.org/012pkqv60 Hikma Pharmaceuticals (United Kingdom)'),
(65300, 'https://ror.org/01gnxgt70', 'no_lang_code', 1, 'https://ror.org/01gnxgt70 Cimpress (Netherlands)'),
(65301, 'https://ror.org/01bctgj87', 'no_lang_code', 1, 'https://ror.org/01bctgj87 Hortonworks (United States)'),
(65302, 'https://ror.org/01r4zz038', 'no_lang_code', 1, 'https://ror.org/01r4zz038 Thomson Reuters (Canada)'),
(65303, 'https://ror.org/00a671n16', 'no_lang_code', 1, 'https://ror.org/00a671n16 Ultimate Software (United States)'),
(65304, 'https://ror.org/01qyrv456', 'no_lang_code', 1, 'https://ror.org/01qyrv456 Mettler-Toledo (United States)'),
(65305, 'https://ror.org/03b7gey53', 'no_lang_code', 1, 'https://ror.org/03b7gey53 Tianma Microelectronics (China) 天 马微电子股份有限公司'),
(65306, 'https://ror.org/02hwfmb37', 'no_lang_code', 1, 'https://ror.org/02hwfmb37 Hundsun (China) 恒生科技'),
(65307, 'https://ror.org/00jcp4354', 'no_lang_code', 1, 'https://ror.org/00jcp4354 O-film (China) 欧菲科技'),
(65308, 'https://ror.org/01nhsch47', 'no_lang_code', 1, 'https://ror.org/01nhsch47 Tianneng Power (China)'),
(65309, 'https://ror.org/0212cyj75', 'no_lang_code', 1, 'https://ror.org/0212cyj75 Micro Focus (United Kingdom)'),
(65310, 'https://ror.org/04k9ktn61', 'no_lang_code', 1, 'https://ror.org/04k9ktn61 Dahua Technology (China)'),
(65311, 'https://ror.org/04bhbcm79', 'no_lang_code', 1, 'https://ror.org/04bhbcm79 TOTVS (Brazil)'),
(65312, 'https://ror.org/02jqc2b23', 'no_lang_code', 1, 'https://ror.org/02jqc2b23 Zhen Ding Technology (Taiwan)'),
(65313, 'https://ror.org/01nnzv715', 'no_lang_code', 1, 'https://ror.org/01nnzv715 Shutterfly (United States)'),
(65314, 'https://ror.org/033403863', 'no_lang_code', 1, 'https://ror.org/033403863 Micro-Star International (Taiwan)'),
(65315, 'https://ror.org/04pdjr931', 'no_lang_code', 1, 'https://ror.org/04pdjr931 Xinxing Pipes International Development (China) 新兴铸管股份有限公司'),
(65316, 'https://ror.org/02shrfh49', 'no_lang_code', 1, 'https://ror.org/02shrfh49 Yutong (China)'),
(65317, 'https://ror.org/00f0mbf46', 'no_lang_code', 1, 'https://ror.org/00f0mbf46 TPV Technology (China) 冠捷科技'),
(65318, 'https://ror.org/0265k7q42', 'no_lang_code', 1, 'https://ror.org/0265k7q42 Triumph Group (United States)'),
(65319, 'https://ror.org/03har1q80', 'no_lang_code', 1, 'https://ror.org/03har1q80 Yelp (United States)'),
(65320, 'https://ror.org/006fm2278', 'no_lang_code', 1, 'https://ror.org/006fm2278 Midea Group (China) 美的集团'),
(65321, 'https://ror.org/04c3q9n71', 'no_lang_code', 1, 'https://ror.org/04c3q9n71 Truly International Holdings (China)'),
(65322, 'https://ror.org/03bmmqp43', 'en', 1, 'https://ror.org/03bmmqp43 Cell Stress Discoveries'),
(65323, 'https://ror.org/04sbypa54', 'no_lang_code', 1, 'https://ror.org/04sbypa54 Tsinghua Holdings (China) 清华控股有限公司'),
(65324, 'https://ror.org/03n86v874', 'no_lang_code', 1, 'https://ror.org/03n86v874 Zillow Group (United States)'),
(65325, 'https://ror.org/016dc7q50', 'no_lang_code', 1, 'https://ror.org/016dc7q50 Yonyou (China) 用友'),
(65326, 'https://ror.org/01s40r185', 'no_lang_code', 1, 'https://ror.org/01s40r185 Ubisoft (France)'),
(65327, 'https://ror.org/032ge1s57', 'no_lang_code', 1, 'https://ror.org/032ge1s57 YY (China)'),
(65328, 'https://ror.org/002a2eq29', 'no_lang_code', 1, 'https://ror.org/002a2eq29 Zynga (United States)'),
(65329, 'https://ror.org/05dng9k37', 'no_lang_code', 1, 'https://ror.org/05dng9k37 NAURA (China) 北方华创'),
(65330, 'https://ror.org/005ep3598', 'no_lang_code', 1, 'https://ror.org/005ep3598 Zhejiang Chint Electrics (China) 浙江正泰电器股份有限公司'),
(65331, 'https://ror.org/0263vns04', 'no_lang_code', 1, 'https://ror.org/0263vns04 Veeva Systems (United States)'),
(65332, 'https://ror.org/04tttpd30', 'no_lang_code', 1, 'https://ror.org/04tttpd30 Changhong (China) 四川长虹电器股份有限公司'),
(65333, 'https://ror.org/01fex4x77', 'no_lang_code', 1, 'https://ror.org/01fex4x77 VeriFone Systems (United States)'),
(65334, 'https://ror.org/03fqhrc68', 'no_lang_code', 1, 'https://ror.org/03fqhrc68 Verint Systems (United States)'),
(65335, 'https://ror.org/03q4mza74', 'no_lang_code', 1, 'https://ror.org/03q4mza74 NCSOFT (South Korea)'),
(65336, 'https://ror.org/04fnybk57', 'no_lang_code', 1, 'https://ror.org/04fnybk57 Wabco (Belgium)'),
(65337, 'https://ror.org/02svsbh35', 'no_lang_code', 1, 'https://ror.org/02svsbh35 Wix.com (Israel)'),
(65338, 'https://ror.org/002nnaj78', 'no_lang_code', 1, 'https://ror.org/002nnaj78 Walgreens Boots Alliance (United States)'),
(65339, 'https://ror.org/00wkv8m74', 'no_lang_code', 1, 'https://ror.org/00wkv8m74 Morrisons (United Kingdom)'),
(65340, 'https://ror.org/016qr5362', 'no_lang_code', 1, 'https://ror.org/016qr5362 Pentair (United Kingdom)'),
(65341, 'https://ror.org/02nn1vm89', 'no_lang_code', 1, 'https://ror.org/02nn1vm89 Workday (United States)'),
(65342, 'https://ror.org/03fps1283', 'no_lang_code', 1, 'https://ror.org/03fps1283 Sky (United Kingdom)'),
(65343, 'https://ror.org/03wb8cw02', 'no_lang_code', 1, 'https://ror.org/03wb8cw02 Skyworth (China) 创维'),
(65344, 'https://ror.org/05nwd8d95', 'no_lang_code', 1, 'https://ror.org/05nwd8d95 Kowsar Medical (Netherlands)'),
(65345, 'https://ror.org/05qwvj556', 'no_lang_code', 1, 'https://ror.org/05qwvj556 China National Heavy Duty Truck Group (China) 中国重型汽车集团有限公司'),
(65346, 'https://ror.org/01gjt0k11', 'no_lang_code', 1, 'https://ror.org/01gjt0k11 Sina (China) 新浪'),
(65347, 'https://ror.org/0086q4c12', 'no_lang_code', 1, 'https://ror.org/0086q4c12 Sino Biopharmaceutical (China) 中国生物制药'),
(65348, 'https://ror.org/01ebjwm20', 'no_lang_code', 1, 'https://ror.org/01ebjwm20 Springer Nature (Netherlands)'),
(65349, 'https://ror.org/03ph7q594', 'no_lang_code', 1, 'https://ror.org/03ph7q594 KLE Ayur World'),
(65350, 'https://ror.org/02bbj5z24', 'en', 1, 'https://ror.org/02bbj5z24 Division of Energy'),
(65351, 'https://ror.org/021c9ha45', 'en', 1, 'https://ror.org/021c9ha45 Vasantdada Patil Ayurvedic Medical College & Institute Of Yoga'),
(65352, 'https://ror.org/04ktfyy52', 'no_lang_code', 1, 'https://ror.org/04ktfyy52 Pfizer (China) 辉瑞公司'),
(65353, 'https://ror.org/04n11fv55', 'no_lang_code', 1, 'https://ror.org/04n11fv55 Cerner (Austria)'),
(65354, 'https://ror.org/04ty7jx71', 'en', 1, 'https://ror.org/04ty7jx71 Kalawati Saran Children''s Hospital'),
(65355, 'https://ror.org/05tt6ka81', 'en', 1, 'https://ror.org/05tt6ka81 Associated Radiologists'),
(65356, 'https://ror.org/03q2d8x50', 'en', 1, 'https://ror.org/03q2d8x50 Digestive CARE'),
(65357, 'https://ror.org/02vptss42', 'en', 1, 'https://ror.org/02vptss42 Hebrew SeniorLife'),
(65358, 'https://ror.org/03m0n3c07', 'it', 1, 'https://ror.org/03m0n3c07 Institute of Applied Mathematics and Information Technologies Istituto di Matematica Applicata e Tecnologie Informatiche'),
(65359, 'https://ror.org/00d6pe324', 'en', 1, 'https://ror.org/00d6pe324 Neurobehavioral Research Laboratory and Clinic'),
(65360, 'https://ror.org/0315e7x57', 'no_lang_code', 1, 'https://ror.org/0315e7x57 GL Assessment (United Kingdom)'),
(65361, 'https://ror.org/04gsz9w64', 'en', 1, 'https://ror.org/04gsz9w64 Reef Check Foundation'),
(65362, 'https://ror.org/02x9rq768', 'en', 1, 'https://ror.org/02x9rq768 Vitalant'),
(65363, 'https://ror.org/01dbbht76', 'en', 1, 'https://ror.org/01dbbht76 National Center for PTSD'),
(65364, 'https://ror.org/03rm3gk43', 'en', 1, 'https://ror.org/03rm3gk43 National Cancer Center Hospital East 国立がん研究センター東病院'),
(65365, 'https://ror.org/03feqng50', 'en', 1, 'https://ror.org/03feqng50 Hopewell Fund'),
(65366, 'https://ror.org/03r55ca96', 'no_lang_code', 1, 'https://ror.org/03r55ca96 Hourglass Group (United Kingdom)'),
(65367, 'https://ror.org/02kkn9893', 'en', 1, 'https://ror.org/02kkn9893 Advocates for Children of New York'),
(65368, 'https://ror.org/05k2sh226', 'en', 1, 'https://ror.org/05k2sh226 Bard College Berlin'),
(65369, 'https://ror.org/04bfk3375', 'en', 1, 'https://ror.org/04bfk3375 Fedcap'),
(65370, 'https://ror.org/00v8mj605', 'en', 1, 'https://ror.org/00v8mj605 American Friends of the Hebrew University'),
(65371, 'https://ror.org/009zsxc75', 'en', 1, 'https://ror.org/009zsxc75 Institute on Science for Global Policy'),
(65372, 'https://ror.org/054m6hn21', 'en', 1, 'https://ror.org/054m6hn21 Center for Inquiry'),
(65373, 'https://ror.org/01r779962', 'en', 1, 'https://ror.org/01r779962 International Association of Research in Income and Wealth'),
(65374, 'https://ror.org/01f1xfq83', 'en', 1, 'https://ror.org/01f1xfq83 Tompkins Conservation'),
(65375, 'https://ror.org/055zc7842', 'en', 1, 'https://ror.org/055zc7842 Rockaway Waterfront Alliance'),
(65376, 'https://ror.org/035few730', 'en', 1, 'https://ror.org/035few730 International Society of Indoor Air Quality and Climate'),
(65377, 'https://ror.org/033famg97', 'en', 1, 'https://ror.org/033famg97 Association for Regional and International Underground Storage'),
(65378, 'https://ror.org/02ed4cj64', 'no_lang_code', 1, 'https://ror.org/02ed4cj64 Creative Commons'),
(65379, 'https://ror.org/036cy3843', 'en', 1, 'https://ror.org/036cy3843 Film Independent'),
(65380, 'https://ror.org/034mx6v37', 'en', 1, 'https://ror.org/034mx6v37 L.A. Theatre Works'),
(65381, 'https://ror.org/03g7k3c05', 'en', 1, 'https://ror.org/03g7k3c05 Art of Problem Solving Initiative'),
(65382, 'https://ror.org/03yccxk95', 'en', 1, 'https://ror.org/03yccxk95 Sponsors for Educational Opportunity'),
(65383, 'https://ror.org/020dfcj86', 'no_lang_code', 1, 'https://ror.org/020dfcj86 Manhattan Theatre Club (United States)'),
(65384, 'https://ror.org/02pcqkp81', 'no_lang_code', 1, 'https://ror.org/02pcqkp81 Artstor'),
(65385, 'https://ror.org/05qtmcx34', 'en', 1, 'https://ror.org/05qtmcx34 Environmental Justice Foundation'),
(65386, 'https://ror.org/04xrvq619', 'en', 1, 'https://ror.org/04xrvq619 StoryCorps'),
(65387, 'https://ror.org/014bh6885', 'en', 1, 'https://ror.org/014bh6885 Association of Metropolitan Water Agencies'),
(65388, 'https://ror.org/01vpvpx53', 'en', 1, 'https://ror.org/01vpvpx53 Technology Affinity Group'),
(65389, 'https://ror.org/01asjpz33', 'en', 1, 'https://ror.org/01asjpz33 Friends of the National Libraries'),
(65390, 'https://ror.org/03cwgd676', 'en', 1, 'https://ror.org/03cwgd676 National Information Standards Organization'),
(65391, 'https://ror.org/04d0xbz55', 'en', 1, 'https://ror.org/04d0xbz55 Behavioral Science & Policy Association'),
(65392, 'https://ror.org/005qxjw75', 'en', 1, 'https://ror.org/005qxjw75 Habitat for Humanity of Collier County'),
(65393, 'https://ror.org/01m52ey02', 'en', 1, 'https://ror.org/01m52ey02 Science Communication Institute'),
(65394, 'https://ror.org/04ddf4k47', 'en', 1, 'https://ror.org/04ddf4k47 Benefits Data Trust'),
(65395, 'https://ror.org/00wmyyg64', 'en', 1, 'https://ror.org/00wmyyg64 History & Policy'),
(65396, 'https://ror.org/05f7d9x89', 'en', 1, 'https://ror.org/05f7d9x89 NYC H2O'),
(65397, 'https://ror.org/03bmc1y32', 'en', 1, 'https://ror.org/03bmc1y32 Hope and Homes for Children'),
(65398, 'https://ror.org/03m3za047', 'en', 1, 'https://ror.org/03m3za047 Pecan Street'),
(65399, 'https://ror.org/00ye1p368', 'en', 1, 'https://ror.org/00ye1p368 Habitat for Humanity'),
(65400, 'https://ror.org/00659aj19', 'en', 1, 'https://ror.org/00659aj19 Philanthropy New York'),
(65401, 'https://ror.org/023j0tg36', 'en', 1, 'https://ror.org/023j0tg36 United States Association for Energy Economics'),
(65402, 'https://ror.org/00pdq3d37', 'en', 1, 'https://ror.org/00pdq3d37 Center for State and Local Government Excellence'),
(65403, 'https://ror.org/04qc4xv44', 'en', 1, 'https://ror.org/04qc4xv44 Institute for Strategic Dialogue'),
(65404, 'https://ror.org/01q53cr93', 'en', 1, 'https://ror.org/01q53cr93 New York City Arts in Education Roundtable'),
(65405, 'https://ror.org/00900hh96', 'no_lang_code', 1, 'https://ror.org/00900hh96 Washington Monthly (United States)'),
(65406, 'https://ror.org/0018yg518', 'en', 1, 'https://ror.org/0018yg518 Phoenix Bioinformatics'),
(65407, 'https://ror.org/037fbyh64', 'en', 1, 'https://ror.org/037fbyh64 Israel Antiquities Authority רשות העתיקות داﺌرة الآثار'),
(65408, 'https://ror.org/00w43nz28', 'en', 1, 'https://ror.org/00w43nz28 Clean Air Task Force'),
(65409, 'https://ror.org/05k460e55', 'en', 1, 'https://ror.org/05k460e55 Planetwork'),
(65410, 'https://ror.org/04kwv3995', 'en', 1, 'https://ror.org/04kwv3995 Council of Professional Associations on Federal Statistics'),
(65411, 'https://ror.org/04wm6mg86', 'en', 1, 'https://ror.org/04wm6mg86 Private Capital Research Institute'),
(65412, 'https://ror.org/045029d66', 'en', 1, 'https://ror.org/045029d66 John Muir Trust'),
(65413, 'https://ror.org/02m2pq682', 'en', 1, 'https://ror.org/02m2pq682 Open Space Institute'),
(65414, 'https://ror.org/02z2n2043', 'en', 1, 'https://ror.org/02z2n2043 Kent Wildlife Trust'),
(65415, 'https://ror.org/02s8kjs61', 'no_lang_code', 1, 'https://ror.org/02s8kjs61 Ensemble Studio Theatre (United States)'),
(65416, 'https://ror.org/05atyq880', 'en', 1, 'https://ror.org/05atyq880 ProPublica'),
(65417, 'https://ror.org/00a1a6c68', 'en', 1, 'https://ror.org/00a1a6c68 Committee on Capital Markets Regulation'),
(65418, 'https://ror.org/042k0ht81', 'en', 1, 'https://ror.org/042k0ht81 Manhattan District Attorney''s Office'),
(65419, 'https://ror.org/040hdea82', 'en', 1, 'https://ror.org/040hdea82 Coolidge Corner Theatre'),
(65420, 'https://ror.org/05hfx5z17', 'en', 1, 'https://ror.org/05hfx5z17 Public Radio Exchange'),
(65421, 'https://ror.org/00bsmqd31', 'en', 1, 'https://ror.org/00bsmqd31 Connecticut Public Broadcasting'),
(65422, 'https://ror.org/04zg20k47', 'en', 1, 'https://ror.org/04zg20k47 Public.Resource.Org'),
(65423, 'https://ror.org/025maj953', 'no_lang_code', 1, 'https://ror.org/025maj953 LyondellBasell (Germany)'),
(65424, 'https://ror.org/00tha0b59', 'en', 1, 'https://ror.org/00tha0b59 Scholars at Risk'),
(65425, 'https://ror.org/01gn3jg46', 'en', 1, 'https://ror.org/01gn3jg46 Sussex Wildlife Trust'),
(65426, 'https://ror.org/031x5nm39', 'no_lang_code', 1, 'https://ror.org/031x5nm39 Bühler (China)'),
(65427, 'https://ror.org/01zd6tj24', 'no_lang_code', 1, 'https://ror.org/01zd6tj24 Ineos (Belgium)'),
(65428, 'https://ror.org/0468j3t74', 'no_lang_code', 1, 'https://ror.org/0468j3t74 Panasonic (Russia)'),
(65429, 'https://ror.org/00tf0tc42', 'no_lang_code', 1, 'https://ror.org/00tf0tc42 Beiersdorf (Russia) Байерсдорф'),
(65430, 'https://ror.org/027cwk965', 'no_lang_code', 1, 'https://ror.org/027cwk965 Bühler (Austria)'),
(65431, 'https://ror.org/01989c577', 'no_lang_code', 1, 'https://ror.org/01989c577 EVRAZ (Russia)'),
(65432, 'https://ror.org/00gqs6306', 'no_lang_code', 1, 'https://ror.org/00gqs6306 Dolby (Sweden)'),
(65433, 'https://ror.org/05fd8mt79', 'no_lang_code', 1, 'https://ror.org/05fd8mt79 Casale (Switzerland)'),
(65434, 'https://ror.org/01qxec746', 'no_lang_code', 1, 'https://ror.org/01qxec746 Renault (Russia) Рено'),
(65435, 'https://ror.org/00qq6rm15', 'en', 1, 'https://ror.org/00qq6rm15 The Zalman Shazar Center מרכז זלמן שזר'),
(65436, 'https://ror.org/00a37dc87', 'en', 1, 'https://ror.org/00a37dc87 Pacific Standard'),
(65437, 'https://ror.org/03acf5r27', 'no_lang_code', 1, 'https://ror.org/03acf5r27 Siemens (Russia) Сименс'),
(65438, 'https://ror.org/047k73g37', 'no_lang_code', 1, 'https://ror.org/047k73g37 Mikron (Russia) Микрон'),
(65439, 'https://ror.org/007yv1g81', 'no_lang_code', 1, 'https://ror.org/007yv1g81 Teijin (Netherlands)'),
(65440, 'https://ror.org/05kt4a843', 'no_lang_code', 1, 'https://ror.org/05kt4a843 Owens Corning (Finland)'),
(65441, 'https://ror.org/0317tcf14', 'no_lang_code', 1, 'https://ror.org/0317tcf14 Vesuvius (United States)'),
(65442, 'https://ror.org/03rfn7203', 'no_lang_code', 1, 'https://ror.org/03rfn7203 Vesuvius (Belgium)'),
(65443, 'https://ror.org/01wmkgr68', 'no_lang_code', 1, 'https://ror.org/01wmkgr68 Link (Germany)'),
(65444, 'https://ror.org/035gcxp73', 'no_lang_code', 1, 'https://ror.org/035gcxp73 Foxlink (China) 正崴精密工业'),
(65445, 'https://ror.org/01hb90y08', 'en', 1, 'https://ror.org/01hb90y08 Institutul Teologic Protestant Protestant Theological Institute of Cluj-Napoca Protestáns Teológiai Intézet'),
(65446, 'https://ror.org/00yec5b88', 'no_lang_code', 1, 'https://ror.org/00yec5b88 Macronix International (China)'),
(65447, 'https://ror.org/00wjyb955', 'no_lang_code', 1, 'https://ror.org/00wjyb955 Million Tech Development (China)'),
(65448, 'https://ror.org/05teyj036', 'no_lang_code', 1, 'https://ror.org/05teyj036 Karl Mayer (China) 卡尔迈耶'),
(65449, 'https://ror.org/01rhasd23', 'no_lang_code', 1, 'https://ror.org/01rhasd23 Mettler-Toledo (China) 梅特勒-托利多'),
(65450, 'https://ror.org/04xrcx824', 'no_lang_code', 1, 'https://ror.org/04xrcx824 NEC (China) 日本電気株式会社'),
(65451, 'https://ror.org/05sqbw136', 'no_lang_code', 1, 'https://ror.org/05sqbw136 Panasonic (China) 松下电器'),
(65452, 'https://ror.org/0503q8b31', 'no_lang_code', 1, 'https://ror.org/0503q8b31 II-VI (China)'),
(65453, 'https://ror.org/012xz1202', 'no_lang_code', 1, 'https://ror.org/012xz1202 Primax Electronics (China) 致伸科技'),
(65454, 'https://ror.org/01b0cs606', 'no_lang_code', 1, 'https://ror.org/01b0cs606 Unilever (China) 联合利华'),
(65455, 'https://ror.org/05ta4fp83', 'no_lang_code', 1, 'https://ror.org/05ta4fp83 Quanta Computer (China) 广达电脑'),
(65456, 'https://ror.org/03sjwka68', 'no_lang_code', 1, 'https://ror.org/03sjwka68 Realtek (China) 瑞昱半導體股份有限公司'),
(65457, 'https://ror.org/05k58k622', 'no_lang_code', 1, 'https://ror.org/05k58k622 Sunonwealth Electric Machine Industry (China)'),
(65458, 'https://ror.org/00b285s97', 'no_lang_code', 1, 'https://ror.org/00b285s97 ON Semiconductor (China)'),
(65459, 'https://ror.org/0034dyb91', 'no_lang_code', 1, 'https://ror.org/0034dyb91 ThyssenKrupp (China) 蒂森克虏伯股份公司'),
(65460, 'https://ror.org/01w7vxz02', 'no_lang_code', 1, 'https://ror.org/01w7vxz02 Wistron (China) 緯創資通股份有限公司'),
(65461, 'https://ror.org/00w6eec53', 'no_lang_code', 1, 'https://ror.org/00w6eec53 Medtronic (India)'),
(65462, 'https://ror.org/007ffat30', 'no_lang_code', 1, 'https://ror.org/007ffat30 Ajanta Pharma (India) अजंता फार्मा लिमिटेड'),
(65463, 'https://ror.org/04kmk1j57', 'no_lang_code', 1, 'https://ror.org/04kmk1j57 Inventia (India)'),
(65464, 'https://ror.org/02axkfm22', 'no_lang_code', 1, 'https://ror.org/02axkfm22 Alarsin (India)'),
(65465, 'https://ror.org/04kwy9224', 'no_lang_code', 1, 'https://ror.org/04kwy9224 Alkem (India)'),
(65466, 'https://ror.org/04et4nb32', 'en', 1, 'https://ror.org/04et4nb32 Infinity Vision Dallas'),
(65467, 'https://ror.org/04qq4mg80', 'no_lang_code', 1, 'https://ror.org/04qq4mg80 ITC (India)'),
(65468, 'https://ror.org/012x2n652', 'en', 1, 'https://ror.org/012x2n652 Australian Council for Educational Research'),
(65469, 'https://ror.org/03ht1rb73', 'en', 1, 'https://ror.org/03ht1rb73 Aurous HealthCare'),
(65470, 'https://ror.org/05hb5sg68', 'no_lang_code', 1, 'https://ror.org/05hb5sg68 Johnson & Johnson (India) जॉन्सन आणि जॉन्सन प्रायव्हेट लिमिटेड जॉन्सन और जॉन्सन प्रायोजित लिमिटेड ಜಾನ್ಸನ್ ಮತ್ತು ಜಾನ್ಸನ್ ಪ್ರೈವೇಟ್ ಲಿಮಿಟೆಡ್'),
(65471, 'https://ror.org/02b3rrn27', 'no_lang_code', 1, 'https://ror.org/02b3rrn27 JSS Medical Research (India) जेएसएस मेडिकल रिसर्च इंडिया प्रा। लिमिटेड ಜೆಎಸ್ಎಸ್ ವೈದ್ಯಕೀಯ ಸಂಶೋಧನಾ ಭಾರತ ಪ್ರೈ. ಲಿಮಿಟೆಡ್'),
(65472, 'https://ror.org/02sb0kr07', 'no_lang_code', 1, 'https://ror.org/02sb0kr07 Ayush Arihant (India) आयुष अरिहंत इंडस्ट्रीज'),
(65473, 'https://ror.org/020js1x50', 'no_lang_code', 1, 'https://ror.org/020js1x50 Baxter (India)'),
(65474, 'https://ror.org/03fgnpp77', 'no_lang_code', 1, 'https://ror.org/03fgnpp77 Syneos Health (India)'),
(65475, 'https://ror.org/03yq9y457', 'no_lang_code', 1, 'https://ror.org/03yq9y457 Bharat Serums and Vaccines (India)'),
(65476, 'https://ror.org/006gmcn85', 'en', 1, 'https://ror.org/006gmcn85 Kelkar Education Trust''s Scientific Research Centre'),
(65477, 'https://ror.org/01qm74v44', 'no_lang_code', 1, 'https://ror.org/01qm74v44 BIOCAD (India)'),
(65478, 'https://ror.org/038vs8686', 'en', 1, 'https://ror.org/038vs8686 Iraqi Association for Psychotherapy الجمعية العراقية للعلاج النفسي'),
(65479, 'https://ror.org/04254vt45', 'no_lang_code', 1, 'https://ror.org/04254vt45 Klinera (India) क्लीरिया निगम भारत ક્લિએરા કોર્પોરેશન ઇન્ડિયા ಕ್ಲಿನ್ಇರಾ ಕಾರ್ಪೊರೇಷನ್ ಇಂಡಿಯಾ'),
(65480, 'https://ror.org/02nbv7m70', 'no_lang_code', 1, 'https://ror.org/02nbv7m70 Biogen (India)'),
(65481, 'https://ror.org/00nw2x646', 'no_lang_code', 1, 'https://ror.org/00nw2x646 LG (India) लजी लाइफ साइंसेज इंडिया प्रा। लिमिटेड ಲೇಜಿ ಲೈಫ್ ಸೈನ್ಸಸ್ ಇಂಡಿಯಾ ಪ್ರೈ. ಲಿಮಿಟೆಡ್'),
(65482, 'https://ror.org/01xyf9430', 'no_lang_code', 1, 'https://ror.org/01xyf9430 Boehringer Ingelheim (India)'),
(65483, 'https://ror.org/0243az357', 'no_lang_code', 1, 'https://ror.org/0243az357 LifeForce Homoeopathy (India)'),
(65484, 'https://ror.org/01zyz5223', 'no_lang_code', 1, 'https://ror.org/01zyz5223 Bonyf (Liechtenstein)'),
(65485, 'https://ror.org/050777m95', 'en', 1, 'https://ror.org/050777m95 Hebei Semiconductor Research Institute'),
(65486, 'https://ror.org/04b2w5n94', 'no_lang_code', 1, 'https://ror.org/04b2w5n94 Lotus Labs (India)'),
(65487, 'https://ror.org/03ffr1d28', 'no_lang_code', 1, 'https://ror.org/03ffr1d28 Claims (India)'),
(65488, 'https://ror.org/03mmctw95', 'no_lang_code', 1, 'https://ror.org/03mmctw95 MSN Laboratories (India)'),
(65489, 'https://ror.org/02nh1m314', 'no_lang_code', 1, 'https://ror.org/02nh1m314 Ravenbhel Healthcare (India)'),
(65490, 'https://ror.org/02knxf196', 'no_lang_code', 1, 'https://ror.org/02knxf196 TAKE Solutions (India)'),
(65491, 'https://ror.org/05wenf776', 'no_lang_code', 1, 'https://ror.org/05wenf776 Marico (India)'),
(65492, 'https://ror.org/00m0rkq68', 'no_lang_code', 1, 'https://ror.org/00m0rkq68 Mascot Spincontrol (India)'),
(65493, 'https://ror.org/03wgjx693', 'no_lang_code', 1, 'https://ror.org/03wgjx693 Maya Clinicals (India)'),
(65494, 'https://ror.org/01vzdsm24', 'no_lang_code', 1, 'https://ror.org/01vzdsm24 Medpace (India)'),
(65495, 'https://ror.org/042pg9146', 'no_lang_code', 1, 'https://ror.org/042pg9146 Micro Labs (India) ಮೈಕ್ರೋ ಲ್ಯಾಬ್ಸ್ ಲಿಮಿಟೆಡ್'),
(65496, 'https://ror.org/025s0zm80', 'no_lang_code', 1, 'https://ror.org/025s0zm80 MS Clinical Research (India)'),
(65497, 'https://ror.org/01yknwh75', 'no_lang_code', 1, 'https://ror.org/01yknwh75 Cadila Pharmaceuticals (India)'),
(65498, 'https://ror.org/05kh7ew82', 'no_lang_code', 1, 'https://ror.org/05kh7ew82 NexusCRO (India)'),
(65499, 'https://ror.org/00w3s9s05', 'no_lang_code', 1, 'https://ror.org/00w3s9s05 CIDP Biotech (India)'),
(65500, 'https://ror.org/03tkqz180', 'no_lang_code', 1, 'https://ror.org/03tkqz180 Cipla (United States)'),
(65501, 'https://ror.org/05dw07152', 'no_lang_code', 1, 'https://ror.org/05dw07152 Novo Nordisk (India)'),
(65502, 'https://ror.org/00stcbe47', 'en', 1, 'https://ror.org/00stcbe47 Consortium Clinical Research'),
(65503, 'https://ror.org/0497jkw73', 'no_lang_code', 1, 'https://ror.org/0497jkw73 Olive Lifesciences (India)'),
(65504, 'https://ror.org/02tzdnt26', 'no_lang_code', 1, 'https://ror.org/02tzdnt26 Sante Mernaud (India)'),
(65505, 'https://ror.org/02vef8c56', 'no_lang_code', 1, 'https://ror.org/02vef8c56 Opto Circuits (India)'),
(65506, 'https://ror.org/01qtea582', 'no_lang_code', 1, 'https://ror.org/01qtea582 PAREXEL International (India)'),
(65507, 'https://ror.org/00g553t68', 'no_lang_code', 1, 'https://ror.org/00g553t68 Semler Research Center (India)'),
(65508, 'https://ror.org/02t40d841', 'no_lang_code', 1, 'https://ror.org/02t40d841 Serdia Pharmaceuticals (India)'),
(65509, 'https://ror.org/04f68cb23', 'en', 1, 'https://ror.org/04f68cb23 Patanjali Research Foundation'),
(65510, 'https://ror.org/043zsj038', 'no_lang_code', 1, 'https://ror.org/043zsj038 Sanofi (India) सनोफी'),
(65511, 'https://ror.org/0435vfk93', 'no_lang_code', 1, 'https://ror.org/0435vfk93 Philips (India)'),
(65512, 'https://ror.org/043k84k36', 'no_lang_code', 1, 'https://ror.org/043k84k36 Enovate Biolife (India)'),
(65513, 'https://ror.org/00s8enb31', 'no_lang_code', 1, 'https://ror.org/00s8enb31 Spectrum Clinical Research (India)'),
(65514, 'https://ror.org/039e7pd44', 'no_lang_code', 1, 'https://ror.org/039e7pd44 Pharmaceutical Product Development (India)'),
(65515, 'https://ror.org/01rwmh192', 'no_lang_code', 1, 'https://ror.org/01rwmh192 Excel Life Sciences (India)'),
(65516, 'https://ror.org/00n5daa95', 'en', 1, 'https://ror.org/00n5daa95 Spectrum Healthcare स्पेक्ट्रम आरोग्य'),
(65517, 'https://ror.org/049kc3j58', 'en', 1, 'https://ror.org/049kc3j58 PRA Health Sciences'),
(65518, 'https://ror.org/05be7j249', 'no_lang_code', 1, 'https://ror.org/05be7j249 Eye Tech Care (France)'),
(65519, 'https://ror.org/03q6e5e49', 'no_lang_code', 1, 'https://ror.org/03q6e5e49 Stempeutics (India)'),
(65520, 'https://ror.org/032dfqd82', 'no_lang_code', 1, 'https://ror.org/032dfqd82 Precise (India)'),
(65521, 'https://ror.org/013bmyp84', 'en', 1, 'https://ror.org/013bmyp84 Government of Himachal Pradesh हिमाचल प्रदेश सचिवालय'),
(65522, 'https://ror.org/00szk3r18', 'no_lang_code', 1, 'https://ror.org/00szk3r18 IQVIA (India)'),
(65523, 'https://ror.org/03s9q6118', 'no_lang_code', 1, 'https://ror.org/03s9q6118 ICBio (India)'),
(65524, 'https://ror.org/05ft43x45', 'no_lang_code', 1, 'https://ror.org/05ft43x45 Themis (India)'),
(65525, 'https://ror.org/05qm21180', 'en', 1, 'https://ror.org/05qm21180 Beijing Advanced Sciences and Innovation Center 北京综合研究中心'),
(65526, 'https://ror.org/05jrea685', 'en', 1, 'https://ror.org/05jrea685 Center for Agricultural Research 农业技术中心'),
(65527, 'https://ror.org/00t5sva18', 'en', 1, 'https://ror.org/00t5sva18 Center for Agricultural Resources Research 农业资源研究中心'),
(65528, 'https://ror.org/01ycn3984', 'en', 1, 'https://ror.org/01ycn3984 Changchun Observatory 长春人造卫星观测站'),
(65529, 'https://ror.org/02jmf0570', 'en', 1, 'https://ror.org/02jmf0570 Changsha Mineral Resources Exploration Center 长沙矿产资源勘查中心'),
(65530, 'https://ror.org/0288css53', 'en', 1, 'https://ror.org/0288css53 Chengdu Documentation and Information Center 成都文献情报中心'),
(65531, 'https://ror.org/02z2gfm30', 'en', 1, 'https://ror.org/02z2gfm30 Data Assurance and Communication Security 中国科学院数据与通信保护研究教育中心'),
(65532, 'https://ror.org/02j79w189', 'en', 1, 'https://ror.org/02j79w189 Ram Poly Clinic'),
(65533, 'https://ror.org/03jzw9k83', 'no_lang_code', 1, 'https://ror.org/03jzw9k83 Torrent Pharma (India)'),
(65534, 'https://ror.org/005bzjd21', 'no_lang_code', 1, 'https://ror.org/005bzjd21 Roche (India)'),
(65535, 'https://ror.org/011byjj52', 'no_lang_code', 1, 'https://ror.org/011byjj52 Troikaa (India)'),
(65536, 'https://ror.org/05tb8hj85', 'no_lang_code', 1, 'https://ror.org/05tb8hj85 Arya Vaidya Sala'),
(65537, 'https://ror.org/022ftcx89', 'no_lang_code', 1, 'https://ror.org/022ftcx89 Zimmer Biomet (India)'),
(65538, 'https://ror.org/00xd7fg81', 'no_lang_code', 1, 'https://ror.org/00xd7fg81 Vedic Lifesciences (India)'),
(65539, 'https://ror.org/045yv2772', 'no_lang_code', 1, 'https://ror.org/045yv2772 Virchow BioTech (India)'),
(65540, 'https://ror.org/0200k4z47', 'no_lang_code', 1, 'https://ror.org/0200k4z47 Amneal (Switzerland)'),
(65541, 'https://ror.org/00rhats79', 'no_lang_code', 1, 'https://ror.org/00rhats79 Abbott (Singapore)'),
(65542, 'https://ror.org/00q9tch90', 'no_lang_code', 1, 'https://ror.org/00q9tch90 Amneal (India)'),
(65543, 'https://ror.org/0330hwr77', 'en', 1, 'https://ror.org/0330hwr77 AO Foundation'),
(65544, 'https://ror.org/00jap5g05', 'en', 1, 'https://ror.org/00jap5g05 AO Foundation'),
(65545, 'https://ror.org/013eh1m30', 'no_lang_code', 1, 'https://ror.org/013eh1m30 Astellas Pharma (India)'),
(65546, 'https://ror.org/023p4rz42', 'no_lang_code', 1, 'https://ror.org/023p4rz42 AstraZeneca (Singapore)'),
(65547, 'https://ror.org/04f5a5m96', 'no_lang_code', 1, 'https://ror.org/04f5a5m96 Apotex (India)'),
(65548, 'https://ror.org/04k92fs76', 'no_lang_code', 1, 'https://ror.org/04k92fs76 Amgen (India)'),
(65549, 'https://ror.org/03cky5d09', 'no_lang_code', 1, 'https://ror.org/03cky5d09 Amgen (Australia)'),
(65550, 'https://ror.org/03bhmb905', 'no_lang_code', 1, 'https://ror.org/03bhmb905 Amgen (Belgium)');
INSERT INTO `rors` VALUES
(65551, 'https://ror.org/0339vxy90', 'no_lang_code', 1, 'https://ror.org/0339vxy90 Becton Dickinson (India)'),
(65552, 'https://ror.org/033aqz496', 'no_lang_code', 1, 'https://ror.org/033aqz496 Biotronik (India)'),
(65553, 'https://ror.org/0597afe55', 'no_lang_code', 1, 'https://ror.org/0597afe55 BIOCAD (Russia)'),
(65554, 'https://ror.org/00rmh4k73', 'no_lang_code', 1, 'https://ror.org/00rmh4k73 Evotec (India)'),
(65555, 'https://ror.org/05hczvf86', 'no_lang_code', 1, 'https://ror.org/05hczvf86 Boehringer Ingelheim (China) 勃林格殷格翰'),
(65556, 'https://ror.org/03e9p3c51', 'no_lang_code', 1, 'https://ror.org/03e9p3c51 Boehringer Ingelheim (South Korea) 한국베링거인겔하임'),
(65557, 'https://ror.org/00fsz9s67', 'no_lang_code', 1, 'https://ror.org/00fsz9s67 Boehringer Ingelheim (Taiwan) 台灣百靈佳殷格翰股份有限公司'),
(65558, 'https://ror.org/04nn86d34', 'no_lang_code', 1, 'https://ror.org/04nn86d34 Mondelēz International (India)'),
(65559, 'https://ror.org/0159kpq91', 'no_lang_code', 1, 'https://ror.org/0159kpq91 Zydus Pharmaceuticals (United States)'),
(65560, 'https://ror.org/0048j1p96', 'no_lang_code', 1, 'https://ror.org/0048j1p96 Janssen (France)'),
(65561, 'https://ror.org/038rd9v60', 'no_lang_code', 1, 'https://ror.org/038rd9v60 Janssen (Germany)'),
(65562, 'https://ror.org/05py8xn22', 'no_lang_code', 1, 'https://ror.org/05py8xn22 Janssen (Hungary)'),
(65563, 'https://ror.org/01dcg9845', 'no_lang_code', 1, 'https://ror.org/01dcg9845 Janssen (Ireland)'),
(65564, 'https://ror.org/05sdrja69', 'no_lang_code', 1, 'https://ror.org/05sdrja69 Janssen (Italy)'),
(65565, 'https://ror.org/015vve507', 'no_lang_code', 1, 'https://ror.org/015vve507 Colgate-Palmolive (India)'),
(65566, 'https://ror.org/04cxegr21', 'no_lang_code', 1, 'https://ror.org/04cxegr21 Janssen (Netherlands)'),
(65567, 'https://ror.org/05af73403', 'no_lang_code', 1, 'https://ror.org/05af73403 Janssen (United States)'),
(65568, 'https://ror.org/03ey31514', 'no_lang_code', 1, 'https://ror.org/03ey31514 CliniRx (India)'),
(65569, 'https://ror.org/01zfjxa58', 'no_lang_code', 1, 'https://ror.org/01zfjxa58 Covance (India)'),
(65570, 'https://ror.org/04kfvhz20', 'no_lang_code', 1, 'https://ror.org/04kfvhz20 LivaNova (United States)'),
(65571, 'https://ror.org/03346b772', 'no_lang_code', 1, 'https://ror.org/03346b772 Daiichi Sankyo (India)'),
(65572, 'https://ror.org/028xc0m13', 'no_lang_code', 1, 'https://ror.org/028xc0m13 Dhathri Ayurveda (India)'),
(65573, 'https://ror.org/03jwdnh41', 'no_lang_code', 1, 'https://ror.org/03jwdnh41 Arbro Pharmaceuticals (India)'),
(65574, 'https://ror.org/01tp0e450', 'en', 1, 'https://ror.org/01tp0e450 Drugs for Neglected Diseases Initiative India'),
(65575, 'https://ror.org/01wtq2m33', 'no_lang_code', 1, 'https://ror.org/01wtq2m33 DSM (India)'),
(65576, 'https://ror.org/030dg0748', 'no_lang_code', 1, 'https://ror.org/030dg0748 Navitas Life Sciences (India)'),
(65577, 'https://ror.org/02kd16s45', 'no_lang_code', 1, 'https://ror.org/02kd16s45 OPKO Health (Ireland)'),
(65578, 'https://ror.org/006tkeh25', 'no_lang_code', 1, 'https://ror.org/006tkeh25 Icon (India) ஐகான் மருத்துவ ஆராய்ச்சி இந்தியா பிரைவேட்'),
(65579, 'https://ror.org/03r86y726', 'no_lang_code', 1, 'https://ror.org/03r86y726 Fresenius Kabi (China)'),
(65580, 'https://ror.org/04z11gw67', 'no_lang_code', 1, 'https://ror.org/04z11gw67 Fresenius Medical Care (India)'),
(65581, 'https://ror.org/01cj13d80', 'no_lang_code', 1, 'https://ror.org/01cj13d80 Frutarom (Netherlands)'),
(65582, 'https://ror.org/04v9w1q77', 'no_lang_code', 1, 'https://ror.org/04v9w1q77 Kraft Heinz (India)'),
(65583, 'https://ror.org/002xf8h28', 'en', 1, 'https://ror.org/002xf8h28 Tobacco Harm Reduction 4 Life'),
(65584, 'https://ror.org/04a35vw13', 'no_lang_code', 1, 'https://ror.org/04a35vw13 Janssen (India)'),
(65585, 'https://ror.org/01cjdx044', 'no_lang_code', 1, 'https://ror.org/01cjdx044 Johnson & Johnson (Singapore)'),
(65586, 'https://ror.org/01qypmk37', 'no_lang_code', 1, 'https://ror.org/01qypmk37 Abbott (Chile)'),
(65587, 'https://ror.org/019yg2621', 'en', 1, 'https://ror.org/019yg2621 Lady Tata Memorial Trust'),
(65588, 'https://ror.org/01wxsyf11', 'no_lang_code', 1, 'https://ror.org/01wxsyf11 Lupin Pharmaceuticals (United States)'),
(65589, 'https://ror.org/02m7bcm44', 'no_lang_code', 1, 'https://ror.org/02m7bcm44 Medtronic (China) 美敦力'),
(65590, 'https://ror.org/03w4e6p22', 'no_lang_code', 1, 'https://ror.org/03w4e6p22 Meiji (India)'),
(65591, 'https://ror.org/05cq2am04', 'no_lang_code', 1, 'https://ror.org/05cq2am04 Merck (Singapore)'),
(65592, 'https://ror.org/042b0hg67', 'no_lang_code', 1, 'https://ror.org/042b0hg67 PepsiCo (India)'),
(65593, 'https://ror.org/05vft1j67', 'no_lang_code', 1, 'https://ror.org/05vft1j67 Cordis Automation (Netherlands)'),
(65594, 'https://ror.org/01cj5hx77', 'en', 1, 'https://ror.org/01cj5hx77 Atmiya University'),
(65595, 'https://ror.org/007n4g377', 'no_lang_code', 1, 'https://ror.org/007n4g377 Pharmacosmos (United States)'),
(65596, 'https://ror.org/04s5pra58', 'no_lang_code', 1, 'https://ror.org/04s5pra58 Nestlé (India)'),
(65597, 'https://ror.org/027yjc737', 'en', 1, 'https://ror.org/027yjc737 United States Preventive Services Task Force'),
(65598, 'https://ror.org/02jwva135', 'no_lang_code', 1, 'https://ror.org/02jwva135 Piramal (United States)'),
(65599, 'https://ror.org/02yjv7f10', 'en', 1, 'https://ror.org/02yjv7f10 Population Services International'),
(65600, 'https://ror.org/01bnchp17', 'no_lang_code', 1, 'https://ror.org/01bnchp17 Procter & Gamble (India)'),
(65601, 'https://ror.org/05j1wft12', 'no_lang_code', 1, 'https://ror.org/05j1wft12 Taube Koret Center'),
(65602, 'https://ror.org/02wxyms40', 'no_lang_code', 1, 'https://ror.org/02wxyms40 Roquette Frères (India)'),
(65603, 'https://ror.org/05j5wde68', 'en', 1, 'https://ror.org/05j5wde68 Eterna Massive Open Laboratory'),
(65604, 'https://ror.org/015drfm81', 'no_lang_code', 1, 'https://ror.org/015drfm81 Microsoft (Denmark)'),
(65605, 'https://ror.org/05etjgx39', 'en', 1, 'https://ror.org/05etjgx39 Council for International Exchange of Scholars'),
(65606, 'https://ror.org/00xgd4p18', 'no_lang_code', 1, 'https://ror.org/00xgd4p18 Knowledge Unlatched (Germany)'),
(65607, 'https://ror.org/04fgq7x14', 'no_lang_code', 1, 'https://ror.org/04fgq7x14 Smith & Nephew (Australia)'),
(65608, 'https://ror.org/01phtp995', 'en', 1, 'https://ror.org/01phtp995 Institut royal du Patrimoine artistique Koninklijk Instituut voor het Kunstpatrimonium Königliches Institut für Denkmalschutz Royal Institute for Cultural Heritage'),
(65609, 'https://ror.org/0150cj610', 'en', 1, 'https://ror.org/0150cj610 Program for Appropriate Technology in Health'),
(65610, 'https://ror.org/05j88yh83', 'no_lang_code', 1, 'https://ror.org/05j88yh83 Qiagen (India)'),
(65611, 'https://ror.org/02j488654', 'no_lang_code', 1, 'https://ror.org/02j488654 Abbott (China) 雅培'),
(65612, 'https://ror.org/00dzggj72', 'no_lang_code', 1, 'https://ror.org/00dzggj72 Takeda (Singapore)'),
(65613, 'https://ror.org/041g7ma18', 'no_lang_code', 1, 'https://ror.org/041g7ma18 Course Hero (United States)'),
(65614, 'https://ror.org/05388c580', 'en', 1, 'https://ror.org/05388c580 United Nations Children''s Fund India'),
(65615, 'https://ror.org/02z2b4x26', 'no_lang_code', 1, 'https://ror.org/02z2b4x26 UCB Pharma (India)'),
(65616, 'https://ror.org/021vwsa16', 'no_lang_code', 1, 'https://ror.org/021vwsa16 Wockhardt (Switzerland)'),
(65617, 'https://ror.org/04k7seg51', 'en', 1, 'https://ror.org/04k7seg51 Alberta Kidney Disease Network'),
(65618, 'https://ror.org/0187f2d05', 'fr', 1, 'https://ror.org/0187f2d05 Hôpital Privé Marseille Beauregard'),
(65619, 'https://ror.org/01sv85c76', 'it', 1, 'https://ror.org/01sv85c76 Centro Studi GISED'),
(65620, 'https://ror.org/02cnr9p90', 'en', 1, 'https://ror.org/02cnr9p90 Asian Pacific Society of Cardiology'),
(65621, 'https://ror.org/03chexd92', 'es', 1, 'https://ror.org/03chexd92 Clinica Rotger'),
(65622, 'https://ror.org/05d5yxq17', 'no_lang_code', 1, 'https://ror.org/05d5yxq17 Bayer (China) 拜耳中国'),
(65623, 'https://ror.org/0271pep11', 'en', 1, 'https://ror.org/0271pep11 Beck Institute for Cognitive Behavior Therapy'),
(65624, 'https://ror.org/02zgswx90', 'en', 1, 'https://ror.org/02zgswx90 Athletic Edge Sports Medicine'),
(65625, 'https://ror.org/0142eak56', 'no_lang_code', 1, 'https://ror.org/0142eak56 Blueprint Medicines (United States)'),
(65626, 'https://ror.org/00emmzb12', 'no_lang_code', 1, 'https://ror.org/00emmzb12 Boehringer Ingelheim (Norway)'),
(65627, 'https://ror.org/05qw2ag88', 'no_lang_code', 1, 'https://ror.org/05qw2ag88 Congenomics (United States)'),
(65628, 'https://ror.org/00n9q5753', 'en', 1, 'https://ror.org/00n9q5753 Cancer Trials Australia'),
(65629, 'https://ror.org/01gacnq13', 'no_lang_code', 1, 'https://ror.org/01gacnq13 Quest Diagnostics (United Kingdom)'),
(65630, 'https://ror.org/05kbfwb79', 'en', 1, 'https://ror.org/05kbfwb79 Center for Disease Analysis'),
(65631, 'https://ror.org/053z9ab73', 'de', 1, 'https://ror.org/053z9ab73 Johanniter-Krankenhaus Bonn'),
(65632, 'https://ror.org/05xnw5k32', 'en', 1, 'https://ror.org/05xnw5k32 Center for Non-Communicable Diseases'),
(65633, 'https://ror.org/02zscxh03', 'en', 1, 'https://ror.org/02zscxh03 Hollywood Orthopaedic Group'),
(65634, 'https://ror.org/04mnty788', 'es', 1, 'https://ror.org/04mnty788 Servicio Diabetología Hospital Córdoba'),
(65635, 'https://ror.org/03471w967', 'fr', 1, 'https://ror.org/03471w967 Hôpital Larrey'),
(65636, 'https://ror.org/01vrded44', 'en', 1, 'https://ror.org/01vrded44 Hotel Dieu Shaver Health and Rehabilitation Centre'),
(65637, 'https://ror.org/009hm2720', 'en', 1, 'https://ror.org/009hm2720 Laboratory for Biomedical Neurosciences'),
(65638, 'https://ror.org/02pwhra18', 'no_lang_code', 1, 'https://ror.org/02pwhra18 LakePharma (United States)'),
(65639, 'https://ror.org/04fr2ec26', 'fr', 1, 'https://ror.org/04fr2ec26 UC-Institut inter Régional pour la SAnté'),
(65640, 'https://ror.org/04z4aan47', 'en', 1, 'https://ror.org/04z4aan47 Fédération Internationale de Médecine du Sport International Federation of Sports Medicine'),
(65641, 'https://ror.org/004hvek19', 'en', 1, 'https://ror.org/004hvek19 International League of Dermatological Societies'),
(65642, 'https://ror.org/002r94d59', 'en', 1, 'https://ror.org/002r94d59 Mediolanum Cardio Research'),
(65643, 'https://ror.org/02zz6x768', 'en', 1, 'https://ror.org/02zz6x768 Fundación Biomédica Neurounion Neurounion Biomedical Foundation'),
(65644, 'https://ror.org/014cakb16', 'en', 1, 'https://ror.org/014cakb16 European Heart Network'),
(65645, 'https://ror.org/027mcbx14', 'en', 1, 'https://ror.org/027mcbx14 Parachute'),
(65646, 'https://ror.org/00cnnb535', 'no_lang_code', 1, 'https://ror.org/00cnnb535 SIPN S.R.L. (Italy)'),
(65647, 'https://ror.org/00t442a43', 'no_lang_code', 1, 'https://ror.org/00t442a43 UCB Pharma (Spain)'),
(65648, 'https://ror.org/04v3ce875', 'en', 1, 'https://ror.org/04v3ce875 ICAR-Indian Institute of Maize Research'),
(65649, 'https://ror.org/02pqag031', 'en', 1, 'https://ror.org/02pqag031 Partnership for Dengue Control'),
(65650, 'https://ror.org/034c6t134', 'de', 1, 'https://ror.org/034c6t134 Pathodiagnostik Berlin'),
(65651, 'https://ror.org/01re5t323', 'en', 1, 'https://ror.org/01re5t323 Perry Maddocks Trollope Lawyers'),
(65652, 'https://ror.org/0025ycf95', 'no_lang_code', 1, 'https://ror.org/0025ycf95 Pivotal (Spain)'),
(65653, 'https://ror.org/053prtv35', 'en', 1, 'https://ror.org/053prtv35 Physicians East'),
(65654, 'https://ror.org/02arm0y30', 'en', 1, 'https://ror.org/02arm0y30 VA Center for Clinical Management Research'),
(65655, 'https://ror.org/01jxmb930', 'en', 1, 'https://ror.org/01jxmb930 Retina Care Specialists'),
(65656, 'https://ror.org/022772y06', 'no_lang_code', 1, 'https://ror.org/022772y06 Abnoba (South Korea) 아브노바'),
(65657, 'https://ror.org/00qa68036', 'no_lang_code', 1, 'https://ror.org/00qa68036 Exactech (South Korea)'),
(65658, 'https://ror.org/02k8k3617', 'no_lang_code', 1, 'https://ror.org/02k8k3617 Actelion (South Korea)'),
(65659, 'https://ror.org/02j0mrt81', 'no_lang_code', 1, 'https://ror.org/02j0mrt81 Pharmicell (South Korea) 파미셀'),
(65660, 'https://ror.org/01bypwr52', 'no_lang_code', 1, 'https://ror.org/01bypwr52 Aekyung (South Korea) 애경'),
(65661, 'https://ror.org/00jkyke88', 'no_lang_code', 1, 'https://ror.org/00jkyke88 Novartis (South Korea) 노바티스'),
(65662, 'https://ror.org/049zdyf95', 'en', 1, 'https://ror.org/049zdyf95 Yongin Mental Hospital 용인도정신병원'),
(65663, 'https://ror.org/0050zy157', 'no_lang_code', 1, 'https://ror.org/0050zy157 Fresenius Kabi (South Korea) 프레지니우스카비코리아'),
(65664, 'https://ror.org/059fafs66', 'no_lang_code', 1, 'https://ror.org/059fafs66 Allergan (South Korea) 엘러간'),
(65665, 'https://ror.org/012b6r490', 'no_lang_code', 1, 'https://ror.org/012b6r490 GeneMatrix (South Korea)'),
(65666, 'https://ror.org/03r0j3j15', 'no_lang_code', 1, 'https://ror.org/03r0j3j15 Amway (South Korea) 암웨'),
(65667, 'https://ror.org/03h9pej87', 'no_lang_code', 1, 'https://ror.org/03h9pej87 Geranti (South Korea) 게란티'),
(65668, 'https://ror.org/0344txx64', 'en', 1, 'https://ror.org/0344txx64 Medtronic (South Korea)'),
(65669, 'https://ror.org/01ejgx395', 'no_lang_code', 1, 'https://ror.org/01ejgx395 GL PharmTech (South Korea)'),
(65670, 'https://ror.org/04pchp455', 'no_lang_code', 1, 'https://ror.org/04pchp455 Astellas Pharma (South Korea) 아스텔라스'),
(65671, 'https://ror.org/02c85tn61', 'en', 1, 'https://ror.org/02c85tn61 Goodball Academy 굿볼힐링센터'),
(65672, 'https://ror.org/05thd7q59', 'no_lang_code', 1, 'https://ror.org/05thd7q59 AtoGen (South Korea) 에이투젠'),
(65673, 'https://ror.org/02wgmby61', 'no_lang_code', 1, 'https://ror.org/02wgmby61 GreenCross Medical Science (South Korea)'),
(65674, 'https://ror.org/00kx5x153', 'no_lang_code', 1, 'https://ror.org/00kx5x153 Avixgen (South Korea) 에빅스젠'),
(65675, 'https://ror.org/02r7hdt50', 'en', 1, 'https://ror.org/02r7hdt50 Gwangmyeong Mental Health Welfare Center 광명시정신건강복지센터'),
(65676, 'https://ror.org/03dpx8939', 'no_lang_code', 1, 'https://ror.org/03dpx8939 Bayer (South Korea) 바이엘'),
(65677, 'https://ror.org/02bb52086', 'no_lang_code', 1, 'https://ror.org/02bb52086 Mundipharma (South Korea)'),
(65678, 'https://ror.org/03an6e694', 'en', 1, 'https://ror.org/03an6e694 Myeongji Chunhye Hospital 명지춘혜병원'),
(65679, 'https://ror.org/014vdg758', 'no_lang_code', 1, 'https://ror.org/014vdg758 Myungin Pharm (South Korea)'),
(65680, 'https://ror.org/011xqyx03', 'no_lang_code', 1, 'https://ror.org/011xqyx03 Hamsoa Pharmaceutical (South Korea) 함소아제약'),
(65681, 'https://ror.org/04c10vw97', 'no_lang_code', 1, 'https://ror.org/04c10vw97 Myungmoon Pharm (South Korea)'),
(65682, 'https://ror.org/03qfrnd98', 'no_lang_code', 1, 'https://ror.org/03qfrnd98 BC World Pharm (South Korea)'),
(65683, 'https://ror.org/01kvmmx47', 'no_lang_code', 1, 'https://ror.org/01kvmmx47 Han Kook Shin Yak Pharmaceutical (South Korea)'),
(65684, 'https://ror.org/05g0va229', 'no_lang_code', 1, 'https://ror.org/05g0va229 Hana Pharm (South Korea) 하나제약주식회사'),
(65685, 'https://ror.org/00gd17e24', 'no_lang_code', 1, 'https://ror.org/00gd17e24 Hanall Biopharma (South Korea) 한올바이오파마'),
(65686, 'https://ror.org/05scw8a36', 'no_lang_code', 1, 'https://ror.org/05scw8a36 Na Eun Hospital 나은 병원'),
(65687, 'https://ror.org/00hbpmz47', 'no_lang_code', 1, 'https://ror.org/00hbpmz47 Bioalpha (Malaysia)'),
(65688, 'https://ror.org/0191mq174', 'no_lang_code', 1, 'https://ror.org/0191mq174 Hanlim Pharm (South Korea) 한림제약'),
(65689, 'https://ror.org/03zp29z47', 'no_lang_code', 1, 'https://ror.org/03zp29z47 Bioleaders (South Korea) 바이오리더스'),
(65690, 'https://ror.org/02wy00t81', 'no_lang_code', 1, 'https://ror.org/02wy00t81 Hanpoong Pharm (South Korea) 한풍제약'),
(65691, 'https://ror.org/0147f9026', 'no_lang_code', 1, 'https://ror.org/0147f9026 BMI (South Korea)'),
(65692, 'https://ror.org/0416ygn80', 'en', 1, 'https://ror.org/0416ygn80 National Development Institute of Korean Medicine 인재채용안내:한약진흥재단'),
(65693, 'https://ror.org/05hzjar70', 'no_lang_code', 1, 'https://ror.org/05hzjar70 Bristol-Myers Squibb (South Korea) 브리스톨-마이어스 스큅'),
(65694, 'https://ror.org/04cqpym76', 'en', 1, 'https://ror.org/04cqpym76 Hyoja Geriatric Hospital'),
(65695, 'https://ror.org/03c4tjd54', 'no_lang_code', 1, 'https://ror.org/03c4tjd54 Neonutra (South Korea)'),
(65696, 'https://ror.org/03b092790', 'no_lang_code', 1, 'https://ror.org/03b092790 NeuMed (United States)'),
(65697, 'https://ror.org/00azprd50', 'no_lang_code', 1, 'https://ror.org/00azprd50 Omiberry (South Korea) 효종원'),
(65698, 'https://ror.org/0340bsg82', 'no_lang_code', 1, 'https://ror.org/0340bsg82 Hyundai Pharm (South Korea)'),
(65699, 'https://ror.org/022haww92', 'no_lang_code', 1, 'https://ror.org/022haww92 ICURE Pharm (South Korea) 아이큐어'),
(65700, 'https://ror.org/026pdm559', 'no_lang_code', 1, 'https://ror.org/026pdm559 Il-Yang Pharmaceutical (South Korea) 일양약품'),
(65701, 'https://ror.org/02929xv98', 'no_lang_code', 1, 'https://ror.org/02929xv98 Ildong (South Korea) 일동제약'),
(65702, 'https://ror.org/0425zsq43', 'no_lang_code', 1, 'https://ror.org/0425zsq43 NutraPharm Tech (South Korea)'),
(65703, 'https://ror.org/01j8s5338', 'no_lang_code', 1, 'https://ror.org/01j8s5338 Ilsung Pharmaceuticals (South Korea) 일성 제약'),
(65704, 'https://ror.org/048n5zk82', 'en', 1, 'https://ror.org/048n5zk82 Onnuri Smile Eye Clinic'),
(65705, 'https://ror.org/02fq4hx73', 'no_lang_code', 1, 'https://ror.org/02fq4hx73 Syneos Health (South Korea)'),
(65706, 'https://ror.org/035rc4w74', 'no_lang_code', 1, 'https://ror.org/035rc4w74 PanGen Biotech (South Korea) 주식회사 팬젠'),
(65707, 'https://ror.org/01nfb0t34', 'no_lang_code', 1, 'https://ror.org/01nfb0t34 PAREXEL International (South Korea)'),
(65708, 'https://ror.org/02d4rx016', 'en', 1, 'https://ror.org/02d4rx016 International Ginseng & Herb Research Institute 금산국제인삼약초연구소'),
(65709, 'https://ror.org/03gzkvf55', 'no_lang_code', 1, 'https://ror.org/03gzkvf55 PeopleBio (South Korea)'),
(65710, 'https://ror.org/02c2tat87', 'no_lang_code', 1, 'https://ror.org/02c2tat87 Intoinworld 인투인월드는'),
(65711, 'https://ror.org/01xdejb38', 'no_lang_code', 1, 'https://ror.org/01xdejb38 iNtRON (South Korea) 인트론바이오테크놀로지'),
(65712, 'https://ror.org/00qrd4818', 'no_lang_code', 1, 'https://ror.org/00qrd4818 Pharmbio Korea (South Korea)'),
(65713, 'https://ror.org/05c658986', 'no_lang_code', 1, 'https://ror.org/05c658986 Jeju TechnoPark 제주테크노파크'),
(65714, 'https://ror.org/02qv38g46', 'no_lang_code', 1, 'https://ror.org/02qv38g46 RBio (South Korea)'),
(65715, 'https://ror.org/00r2cc364', 'no_lang_code', 1, 'https://ror.org/00r2cc364 REGEN Biotech (South Korea)'),
(65716, 'https://ror.org/01bxc9g71', 'no_lang_code', 1, 'https://ror.org/01bxc9g71 (주)지니스 JINIS Biopharmaceuticals (South Korea)'),
(65717, 'https://ror.org/04z27kp43', 'no_lang_code', 1, 'https://ror.org/04z27kp43 Juthis (South Korea)'),
(65718, 'https://ror.org/05n3q1w80', 'no_lang_code', 1, 'https://ror.org/05n3q1w80 Reyon Pharmaceutical (South Korea) 이연제약'),
(65719, 'https://ror.org/030nky627', 'no_lang_code', 1, 'https://ror.org/030nky627 Roche (South Korea) 한국로슈'),
(65720, 'https://ror.org/058bqw857', 'no_lang_code', 1, 'https://ror.org/058bqw857 Sam Chun Dang Pharm (South Korea)'),
(65721, 'https://ror.org/00nhhef84', 'no_lang_code', 1, 'https://ror.org/00nhhef84 Sama Pharm (South Korea) 삼아제약'),
(65722, 'https://ror.org/04pr3cf18', 'no_lang_code', 1, 'https://ror.org/04pr3cf18 Bmvitek (South Korea) 비엠바이텍'),
(65723, 'https://ror.org/01x7pyz19', 'no_lang_code', 1, 'https://ror.org/01x7pyz19 Boryung Pharma (South Korea) 보령제약의'),
(65724, 'https://ror.org/00t3nxd66', 'no_lang_code', 1, 'https://ror.org/00t3nxd66 Samjin Pharm (South Korea) 삼진제약'),
(65725, 'https://ror.org/002f4va27', 'no_lang_code', 1, 'https://ror.org/002f4va27 JW Shinyak (South Korea) JW신약'),
(65726, 'https://ror.org/04spkws63', 'no_lang_code', 1, 'https://ror.org/04spkws63 Botamedi (South Korea)'),
(65727, 'https://ror.org/003eds368', 'no_lang_code', 1, 'https://ror.org/003eds368 Samsung Pharm (South Korea) 삼성제약㈜'),
(65728, 'https://ror.org/03zb2mt61', 'no_lang_code', 1, 'https://ror.org/03zb2mt61 Bukwang Pharmaceutical (South Korea) 부광약품'),
(65729, 'https://ror.org/02w4hck30', 'no_lang_code', 1, 'https://ror.org/02w4hck30 JW Pharmaceutical (South Korea) JW중외제약'),
(65730, 'https://ror.org/01dpe0a21', 'no_lang_code', 1, 'https://ror.org/01dpe0a21 Cell Biotech (South Korea) 쎌바이오텍'),
(65731, 'https://ror.org/00wwj2d93', 'no_lang_code', 1, 'https://ror.org/00wwj2d93 CellaMedic Biotechnology (South Korea) 세라메딕 바이오테크놀러지'),
(65732, 'https://ror.org/013crbb86', 'no_lang_code', 1, 'https://ror.org/013crbb86 Cellid (South Korea) 셀리드'),
(65733, 'https://ror.org/04p6nsn05', 'no_lang_code', 1, 'https://ror.org/04p6nsn05 Kolmar Korea (South Korea) 한국 콜마'),
(65734, 'https://ror.org/000h77t05', 'en', 1, 'https://ror.org/000h77t05 Songdo Hospital 서울송도병원'),
(65735, 'https://ror.org/05qb29e48', 'no_lang_code', 1, 'https://ror.org/05qb29e48 Komipharm International (South Korea) 코미팜'),
(65736, 'https://ror.org/04v15r068', 'no_lang_code', 1, 'https://ror.org/04v15r068 Shin Poong Pharm (South Korea) 신풍제약주식회사'),
(65737, 'https://ror.org/008ke6x86', 'no_lang_code', 1, 'https://ror.org/008ke6x86 Chong Kun Dang Bio (South Korea) 종근당홀딩스'),
(65738, 'https://ror.org/01eqqdz04', 'en', 1, 'https://ror.org/01eqqdz04 Korea Association of Health Promotion 한국건강관리협회'),
(65739, 'https://ror.org/02nkezr98', 'no_lang_code', 1, 'https://ror.org/02nkezr98 (주)신화의료기 Shinhwa Medical (South Korea)'),
(65740, 'https://ror.org/015rsk965', 'no_lang_code', 1, 'https://ror.org/015rsk965 SiliconSapiens (South Korea) 실 리코 사피엔스'),
(65741, 'https://ror.org/03mwc5x18', 'no_lang_code', 1, 'https://ror.org/03mwc5x18 Chunghwa Medipower (South Korea) 청화메디파워(주)'),
(65742, 'https://ror.org/00mr5jb15', 'no_lang_code', 1, 'https://ror.org/00mr5jb15 (주)에스티알바이오텍 STR Biotech (South Korea)'),
(65743, 'https://ror.org/01v0cwt49', 'no_lang_code', 1, 'https://ror.org/01v0cwt49 Sungae Hospital 성애병원'),
(65744, 'https://ror.org/02j6s3h86', 'no_lang_code', 1, 'https://ror.org/02j6s3h86 Otsuka (South Korea) 한국오츠카제약'),
(65745, 'https://ror.org/0459zan02', 'no_lang_code', 1, 'https://ror.org/0459zan02 CL Pharm (South Korea)'),
(65746, 'https://ror.org/0517atn92', 'no_lang_code', 1, 'https://ror.org/0517atn92 (주)심유 Symyoo'),
(65747, 'https://ror.org/00q650071', 'no_lang_code', 1, 'https://ror.org/00q650071 Korea Pharma (South Korea) 한국파마'),
(65748, 'https://ror.org/02dp69877', 'no_lang_code', 1, 'https://ror.org/02dp69877 Corepharmbio (South Korea)'),
(65749, 'https://ror.org/03039yw27', 'no_lang_code', 1, 'https://ror.org/03039yw27 Corestem (South Korea) 코아스템(주)'),
(65750, 'https://ror.org/00zhe2a05', 'no_lang_code', 1, 'https://ror.org/00zhe2a05 TEI Korea (South Korea)'),
(65751, 'https://ror.org/03tc50h17', 'no_lang_code', 1, 'https://ror.org/03tc50h17 Korea Yakult (South Korea) 한국야쿠르트'),
(65752, 'https://ror.org/0447hq607', 'no_lang_code', 1, 'https://ror.org/0447hq607 (주)씨티씨바이오 CTCBio (South Korea)'),
(65753, 'https://ror.org/03egtq807', 'en', 1, 'https://ror.org/03egtq807 Korean Otological Society 대한이과학회'),
(65754, 'https://ror.org/05h9jst55', 'no_lang_code', 1, 'https://ror.org/05h9jst55 Dae Hwa Pharm (South Korea)'),
(65755, 'https://ror.org/01rqthp48', 'en', 1, 'https://ror.org/01rqthp48 The Korean Society for Anesthetic Pharmacology 대한마취약리학회'),
(65756, 'https://ror.org/0080szk49', 'en', 1, 'https://ror.org/0080szk49 Korean Cancer Study Group 대한항암요법연구회 입니다'),
(65757, 'https://ror.org/04chh0y17', 'en', 1, 'https://ror.org/04chh0y17 Korean Continence Society 대한배뇨장애요실금학회'),
(65758, 'https://ror.org/00dvybz66', 'en', 1, 'https://ror.org/00dvybz66 Korean Society for the Study of Obesity 대한비만학회 홈페'),
(65759, 'https://ror.org/04t98sb97', 'en', 1, 'https://ror.org/04t98sb97 Daejeon Technopark 대전테크노파크'),
(65760, 'https://ror.org/00shsg218', 'no_lang_code', 1, 'https://ror.org/00shsg218 Daewon Pharm (South Korea) 대원제약'),
(65761, 'https://ror.org/01dcb8p36', 'no_lang_code', 1, 'https://ror.org/01dcb8p36 Dai Han Pharm (South Korea) 대한약품공업주식회사'),
(65762, 'https://ror.org/0304ak089', 'en', 1, 'https://ror.org/0304ak089 Korean Pancreatobiliary Association 대한췌담도학회'),
(65763, 'https://ror.org/02yjcwm21', 'no_lang_code', 1, 'https://ror.org/02yjcwm21 Daiichi-Sankyo (South Korea) 한국다이이찌산쿄주식회사'),
(65764, 'https://ror.org/03e8v6h48', 'en', 1, 'https://ror.org/03e8v6h48 The Korean Society for Microbiology and Biotechnology 한국미생물생명공학회'),
(65765, 'https://ror.org/04y922n71', 'no_lang_code', 1, 'https://ror.org/04y922n71 Daiseung Medics (South Korea) 대승의료기기(주)'),
(65766, 'https://ror.org/02en0fr62', 'en', 1, 'https://ror.org/02en0fr62 Korean Society of Interventional Neuroradiology 대한신경중재치료의학회'),
(65767, 'https://ror.org/048gxh623', 'no_lang_code', 1, 'https://ror.org/048gxh623 Dalim (South Korea)'),
(65768, 'https://ror.org/053t76350', 'no_lang_code', 1, 'https://ror.org/053t76350 Wellbeing LS (South Korea) 웰빙엘에스'),
(65769, 'https://ror.org/03mxyhv84', 'no_lang_code', 1, 'https://ror.org/03mxyhv84 Kuhnil Pharma (South Korea) 건일제약'),
(65770, 'https://ror.org/05b4xvt53', 'no_lang_code', 1, 'https://ror.org/05b4xvt53 Wonbiogen (South Korea) 원바이오젠'),
(65771, 'https://ror.org/04m123659', 'no_lang_code', 1, 'https://ror.org/04m123659 Daewoo Pharma (South Korea) 대우제약'),
(65772, 'https://ror.org/04z6dh903', 'no_lang_code', 1, 'https://ror.org/04z6dh903 Wonkwang Pharmaceutical (South Korea) 원광제약'),
(65773, 'https://ror.org/018mj3h16', 'en', 1, 'https://ror.org/018mj3h16 Seminary of the Southwest'),
(65774, 'https://ror.org/04s8r5v20', 'no_lang_code', 1, 'https://ror.org/04s8r5v20 Alvogen (South Korea)'),
(65775, 'https://ror.org/04zsrq347', 'en', 1, 'https://ror.org/04zsrq347 St. Paul''s Co-educational College 聖保羅男女中學'),
(65776, 'https://ror.org/01b5g4110', 'en', 1, 'https://ror.org/01b5g4110 Yang Hospital 양병원'),
(65777, 'https://ror.org/03baef921', 'no_lang_code', 1, 'https://ror.org/03baef921 Kwangdong Pharmaceutical 광동제약'),
(65778, 'https://ror.org/055yqn475', 'en', 1, 'https://ror.org/055yqn475 Yonsei Proteome Research Center 연세 프로테옴 연구원 단백체 분석'),
(65779, 'https://ror.org/02dpm0z59', 'no_lang_code', 1, 'https://ror.org/02dpm0z59 Kyungdong Pharmaceutical (South Korea) 경동제약'),
(65780, 'https://ror.org/02dzv6j38', 'en', 1, 'https://ror.org/02dzv6j38 Yulchon Foundation 율촌재단'),
(65781, 'https://ror.org/01ep52038', 'no_lang_code', 1, 'https://ror.org/01ep52038 L&K Biomed (South Korea)'),
(65782, 'https://ror.org/018mykm19', 'no_lang_code', 1, 'https://ror.org/018mykm19 Dinona (South Korea) 다이노나'),
(65783, 'https://ror.org/04wmbjv17', 'en', 1, 'https://ror.org/04wmbjv17 Seoul Sleep Center 서울수면클리닉'),
(65784, 'https://ror.org/015csvh80', 'no_lang_code', 1, 'https://ror.org/015csvh80 (주)태웅메디칼 Taewoong Medical (South Korea)'),
(65785, 'https://ror.org/04xnk9j36', 'no_lang_code', 1, 'https://ror.org/04xnk9j36 Fujifilm (South Korea) 한국후지필름'),
(65786, 'https://ror.org/00p3qeq60', 'no_lang_code', 1, 'https://ror.org/00p3qeq60 YuYu Pharma (South Korea)'),
(65787, 'https://ror.org/02rcz2a29', 'no_lang_code', 1, 'https://ror.org/02rcz2a29 Bio Pharm Dongsung (South Korea) 동성제약주식회사'),
(65788, 'https://ror.org/057hqh897', 'no_lang_code', 1, 'https://ror.org/057hqh897 Lundbeck (South Korea) 한국룬드벡'),
(65789, 'https://ror.org/01ehetm20', 'no_lang_code', 1, 'https://ror.org/01ehetm20 Dongwoodang (South Korea) 동우당제약'),
(65790, 'https://ror.org/01ykf3r31', 'no_lang_code', 1, 'https://ror.org/01ykf3r31 Elyson Pharm (South Korea) 에리슨제약(주)'),
(65791, 'https://ror.org/02prs4262', 'no_lang_code', 1, 'https://ror.org/02prs4262 Dr.Chung’s Food (South Korea)'),
(65792, 'https://ror.org/02rzqa255', 'no_lang_code', 1, 'https://ror.org/02rzqa255 KT&G (South Korea) 주식회사 케이티앤지'),
(65793, 'https://ror.org/03y2sw318', 'no_lang_code', 1, 'https://ror.org/03y2sw318 EuBiologics (South Korea) 유바이오로직스'),
(65794, 'https://ror.org/020tqff86', 'no_lang_code', 1, 'https://ror.org/020tqff86 Ebiche (South Korea) 이비채'),
(65795, 'https://ror.org/01hbex578', 'no_lang_code', 1, 'https://ror.org/01hbex578 Biosolution (South Korea) 바이오솔루션'),
(65796, 'https://ror.org/04jmg2j77', 'no_lang_code', 1, 'https://ror.org/04jmg2j77 Edwards Lifesciences (South Korea)'),
(65797, 'https://ror.org/05pjvcp59', 'no_lang_code', 1, 'https://ror.org/05pjvcp59 Ewha Biomedics (South Korea) 이화바이오메딕스'),
(65798, 'https://ror.org/00yqxqx15', 'no_lang_code', 1, 'https://ror.org/00yqxqx15 OKTECH (China) 海洋王照明科技股份有限公司'),
(65799, 'https://ror.org/023jrwe36', 'no_lang_code', 1, 'https://ror.org/023jrwe36 Sany (China) 三一重工股份有限公司'),
(65800, 'https://ror.org/02xab7z06', 'no_lang_code', 1, 'https://ror.org/02xab7z06 Chery Automobile (China) 奇瑞'),
(65801, 'https://ror.org/054deg252', 'no_lang_code', 1, 'https://ror.org/054deg252 Shanghai Huali Microelectronics (China) 上海华力微电子有限公司'),
(65802, 'https://ror.org/05atzd126', 'no_lang_code', 1, 'https://ror.org/05atzd126 Joyoung (China) 九阳'),
(65803, 'https://ror.org/00p4rkj69', 'no_lang_code', 1, 'https://ror.org/00p4rkj69 Qihoo 360 (China) 奇虎360'),
(65804, 'https://ror.org/01qw6et69', 'no_lang_code', 1, 'https://ror.org/01qw6et69 Xingx (China) 星星集团有限公司'),
(65805, 'https://ror.org/0452w5362', 'no_lang_code', 1, 'https://ror.org/0452w5362 Phicomm (China) 斐讯'),
(65806, 'https://ror.org/00z46p261', 'no_lang_code', 1, 'https://ror.org/00z46p261 BBK Electronics (China) 广东步步高电子工业有限公司'),
(65807, 'https://ror.org/01f390f45', 'no_lang_code', 1, 'https://ror.org/01f390f45 Guangxi Yuchai Machinery Group (China) 玉柴集团'),
(65808, 'https://ror.org/03h1fpd36', 'no_lang_code', 1, 'https://ror.org/03h1fpd36 Nubia Technology (China) 努比亞技術有限公司'),
(65809, 'https://ror.org/04gfm7t49', 'no_lang_code', 1, 'https://ror.org/04gfm7t49 Lifan (China) 力帆集团'),
(65810, 'https://ror.org/05y3xma86', 'no_lang_code', 1, 'https://ror.org/05y3xma86 Coolpad (China)'),
(65811, 'https://ror.org/00qa3c235', 'no_lang_code', 1, 'https://ror.org/00qa3c235 Konka (China) 康佳集团'),
(65812, 'https://ror.org/00zv9r340', 'no_lang_code', 1, 'https://ror.org/00zv9r340 Pan Asia Technical Automotive Center (China) 泛亚汽车技术中心'),
(65813, 'https://ror.org/01rt7y457', 'no_lang_code', 1, 'https://ror.org/01rt7y457 Baogang Group (China)'),
(65814, 'https://ror.org/03bdrtb23', 'en', 1, 'https://ror.org/03bdrtb23 Wuxi Vocational Institute of Commerce 无锡商业职业技术学院'),
(65815, 'https://ror.org/0199ey615', 'no_lang_code', 1, 'https://ror.org/0199ey615 Truking (China)'),
(65816, 'https://ror.org/02yjfp753', 'no_lang_code', 1, 'https://ror.org/02yjfp753 Donlim (China) 广东新宝电器股份有限公司'),
(65817, 'https://ror.org/00whypb06', 'no_lang_code', 1, 'https://ror.org/00whypb06 Supor (China)'),
(65818, 'https://ror.org/056eew379', 'no_lang_code', 1, 'https://ror.org/056eew379 Shanghai Micro Electronics Equipment (China) 上海微电子装备'),
(65819, 'https://ror.org/01n2ba875', 'no_lang_code', 1, 'https://ror.org/01n2ba875 Tinno (China) 深圳天珑移动技术有限公司'),
(65820, 'https://ror.org/02c5y9t85', 'no_lang_code', 1, 'https://ror.org/02c5y9t85 Positec (China) 宝时得科技'),
(65821, 'https://ror.org/002fe3c26', 'no_lang_code', 1, 'https://ror.org/002fe3c26 VTRON (China) 威创'),
(65822, 'https://ror.org/00fgwkr80', 'no_lang_code', 1, 'https://ror.org/00fgwkr80 Runze (China) 重庆润泽医药'),
(65823, 'https://ror.org/00nwrzz95', 'no_lang_code', 1, 'https://ror.org/00nwrzz95 Beijing Founder Electronics (China) 北京北大方正电子有限公司'),
(65824, 'https://ror.org/029dmf820', 'no_lang_code', 1, 'https://ror.org/029dmf820 Shandong Iron and Steel Group (China) 山东钢铁集团'),
(65825, 'https://ror.org/04aycct37', 'no_lang_code', 1, 'https://ror.org/04aycct37 Shinva (China) 山东新华医疗器械股份有限公司'),
(65826, 'https://ror.org/01sag2n63', 'no_lang_code', 1, 'https://ror.org/01sag2n63 Guangdong Meiyan Jixiang Hydropower (China) 广东梅雁吉祥水电股份有限公司'),
(65827, 'https://ror.org/01ef25a22', 'no_lang_code', 1, 'https://ror.org/01ef25a22 Shenwu Technology Group Corp (China) 神雾科技集团股份有限公司'),
(65828, 'https://ror.org/02hpa6r82', 'no_lang_code', 1, 'https://ror.org/02hpa6r82 Zhejiang Zhe Kuang Heavy Industries (China) 浙矿重工'),
(65829, 'https://ror.org/0246q4714', 'no_lang_code', 1, 'https://ror.org/0246q4714 Comba (China) 京信通信'),
(65830, 'https://ror.org/05k953v63', 'no_lang_code', 1, 'https://ror.org/05k953v63 Gionee (China) 金立'),
(65831, 'https://ror.org/051xxew12', 'no_lang_code', 1, 'https://ror.org/051xxew12 Coship (China) 深圳市同洲电子股份有限公司'),
(65832, 'https://ror.org/02rake840', 'no_lang_code', 1, 'https://ror.org/02rake840 Esquel Group (China)'),
(65833, 'https://ror.org/03kzhbn97', 'no_lang_code', 1, 'https://ror.org/03kzhbn97 Fotile (China) 方太'),
(65834, 'https://ror.org/03qqw3m37', 'no_lang_code', 1, 'https://ror.org/03qqw3m37 United Imaging Healthcare (China)'),
(65835, 'https://ror.org/0067g4302', 'no_lang_code', 1, 'https://ror.org/0067g4302 Meizu (China) 魅族科技有限公司'),
(65836, 'https://ror.org/05apznb79', 'no_lang_code', 1, 'https://ror.org/05apznb79 Zeus Entertainment (China) 大连天神娱乐股份有限公司'),
(65837, 'https://ror.org/03qb1ht73', 'no_lang_code', 1, 'https://ror.org/03qb1ht73 Lishen (China) 天津力神电池股份有限公司'),
(65838, 'https://ror.org/02e6k9z27', 'en', 1, 'https://ror.org/02e6k9z27 Wellcome Centre for Anti-Infectives Research'),
(65839, 'https://ror.org/00vg14y34', 'no_lang_code', 1, 'https://ror.org/00vg14y34 UnionPay (China) 银联'),
(65840, 'https://ror.org/00v025f24', 'no_lang_code', 1, 'https://ror.org/00v025f24 GDL (China)'),
(65841, 'https://ror.org/026xvz038', 'no_lang_code', 1, 'https://ror.org/026xvz038 iQIYI (China) 爱奇艺'),
(65842, 'https://ror.org/05crdvn36', 'en', 1, 'https://ror.org/05crdvn36 Wellcome Centre for Ethics and Humanities'),
(65843, 'https://ror.org/058stpv70', 'no_lang_code', 1, 'https://ror.org/058stpv70 Huainan Mining Industry Group (China) 淮南矿业集团'),
(65844, 'https://ror.org/05bjfv051', 'no_lang_code', 1, 'https://ror.org/05bjfv051 Changshu Switch Manufacturing (China) 常熟开关制造有限公司'),
(65845, 'https://ror.org/040b19m18', 'en', 1, 'https://ror.org/040b19m18 Wellcome Centre for Infectious Diseases Research in Africa'),
(65846, 'https://ror.org/0172mzb45', 'en', 1, 'https://ror.org/0172mzb45 Wellcome Centre for Integrative Neuroimaging'),
(65847, 'https://ror.org/00rbqbc98', 'en', 1, 'https://ror.org/00rbqbc98 Wellcome Centre of Cultures and Environments of Health'),
(65848, 'https://ror.org/03kx7xv57', 'no_lang_code', 1, 'https://ror.org/03kx7xv57 Little Swan (China)'),
(65849, 'https://ror.org/019h3d096', 'no_lang_code', 1, 'https://ror.org/019h3d096 Hua Hong Semiconductor (China) 華虹半導體'),
(65850, 'https://ror.org/022vzex26', 'no_lang_code', 1, 'https://ror.org/022vzex26 Taiyuan Heavy Industry (China) 太原重工股份有限公司'),
(65851, 'https://ror.org/05av4bp24', 'no_lang_code', 1, 'https://ror.org/05av4bp24 Shougang (China) 首钢集团'),
(65852, 'https://ror.org/00h64t852', 'no_lang_code', 1, 'https://ror.org/00h64t852 SAIC-GM (China) 上汽通用汽车'),
(65853, 'https://ror.org/0242z8y86', 'no_lang_code', 1, 'https://ror.org/0242z8y86 Gridsum (China) 国双科技有限公司'),
(65854, 'https://ror.org/01q6skw70', 'no_lang_code', 1, 'https://ror.org/01q6skw70 Shantui (China) 山推工程机械股份有限公司'),
(65855, 'https://ror.org/00771gx20', 'no_lang_code', 1, 'https://ror.org/00771gx20 Aisino (China) 航天信息股份有限公司'),
(65856, 'https://ror.org/01bqq8340', 'no_lang_code', 1, 'https://ror.org/01bqq8340 Kunshan Govisionox Optoelectronic (China) 昆山国显光电有限公司'),
(65857, 'https://ror.org/03mjzvj44', 'no_lang_code', 1, 'https://ror.org/03mjzvj44 Optimum Nano (China)'),
(65858, 'https://ror.org/046916w66', 'no_lang_code', 1, 'https://ror.org/046916w66 XTC (China) 小天才'),
(65859, 'https://ror.org/05nqkcp91', 'no_lang_code', 1, 'https://ror.org/05nqkcp91 WengFu Group (China)'),
(65860, 'https://ror.org/0507jm035', 'no_lang_code', 1, 'https://ror.org/0507jm035 Umbo Computer Vision (United Kingdom)'),
(65861, 'https://ror.org/01ezqqb21', 'no_lang_code', 1, 'https://ror.org/01ezqqb21 Akilah Hospital مستشفى عاقله'),
(65862, 'https://ror.org/03knd6b36', 'en', 1, 'https://ror.org/03knd6b36 Amnesty International'),
(65863, 'https://ror.org/053y4qc63', 'en', 1, 'https://ror.org/053y4qc63 United Cancer Support Foundation'),
(65864, 'https://ror.org/05vn8sm27', 'no_lang_code', 1, 'https://ror.org/05vn8sm27 IPG Transport (United Kingdom)'),
(65865, 'https://ror.org/004kfs587', 'en', 1, 'https://ror.org/004kfs587 Moscow City Hospital No 29 Государственная клиническая больница №29 им. Н.Э.Баумана'),
(65866, 'https://ror.org/01f0eaw14', 'en', 1, 'https://ror.org/01f0eaw14 The Global Alliance for LGBT Education'),
(65867, 'https://ror.org/009v92n69', 'en', 1, 'https://ror.org/009v92n69 Hassan Usman Katsina Polytechnic'),
(65868, 'https://ror.org/02wk38057', 'no_lang_code', 1, 'https://ror.org/02wk38057 2DHeat (United Kingdom)'),
(65869, 'https://ror.org/03txtgw38', 'no_lang_code', 1, 'https://ror.org/03txtgw38 2iC (United Kingdom)'),
(65870, 'https://ror.org/00008m859', 'no_lang_code', 1, 'https://ror.org/00008m859 3-Sci (United Kingdom)'),
(65871, 'https://ror.org/02phz7j25', 'no_lang_code', 1, 'https://ror.org/02phz7j25 3Brain (Switzerland)'),
(65872, 'https://ror.org/00c46pp52', 'no_lang_code', 1, 'https://ror.org/00c46pp52 3D Engineering Design (United Kingdom)'),
(65873, 'https://ror.org/03eyba682', 'no_lang_code', 1, 'https://ror.org/03eyba682 3DX-Ray (United Kingdom)'),
(65874, 'https://ror.org/03j8jac95', 'no_lang_code', 1, 'https://ror.org/03j8jac95 Norbain (United Kingdom)'),
(65875, 'https://ror.org/03qfd7n96', 'en', 1, 'https://ror.org/03qfd7n96 3G''S Development Trust'),
(65876, 'https://ror.org/04cv9th75', 'en', 1, 'https://ror.org/04cv9th75 Autism Initiatives'),
(65877, 'https://ror.org/04a9d3847', 'en', 1, 'https://ror.org/04a9d3847 Alton Towers Resort'),
(65878, 'https://ror.org/023s0f257', 'no_lang_code', 1, 'https://ror.org/023s0f257 42 Technology (United Kingdom)'),
(65879, 'https://ror.org/03945f733', 'no_lang_code', 1, 'https://ror.org/03945f733 Autolus (United Kingdom)'),
(65880, 'https://ror.org/02thsp703', 'no_lang_code', 1, 'https://ror.org/02thsp703 ASV (United Kingdom)'),
(65881, 'https://ror.org/055ff4r96', 'no_lang_code', 1, 'https://ror.org/055ff4r96 AutoTrip (United Kingdom)'),
(65882, 'https://ror.org/0515gyd10', 'no_lang_code', 1, 'https://ror.org/0515gyd10 Accoson (United Kingdom)'),
(65883, 'https://ror.org/05nvwdp14', 'no_lang_code', 1, 'https://ror.org/05nvwdp14 AM Technology (United Kingdom)'),
(65884, 'https://ror.org/001eccs90', 'no_lang_code', 1, 'https://ror.org/001eccs90 Amadeus Capital Partners (United Kingdom)'),
(65885, 'https://ror.org/035f7jt30', 'no_lang_code', 1, 'https://ror.org/035f7jt30 A.M.P Rose (United Kingdom)'),
(65886, 'https://ror.org/04shyvf77', 'no_lang_code', 1, 'https://ror.org/04shyvf77 Amalyst (United Kingdom)'),
(65887, 'https://ror.org/057rgnq16', 'en', 1, 'https://ror.org/057rgnq16 Aberdeenshire Council'),
(65888, 'https://ror.org/00rrtbd20', 'no_lang_code', 1, 'https://ror.org/00rrtbd20 EnerSys (United Kingdom)'),
(65889, 'https://ror.org/015ydew40', 'no_lang_code', 1, 'https://ror.org/015ydew40 Axess Technologies (United Kingdom)'),
(65890, 'https://ror.org/00dcyet50', 'no_lang_code', 1, 'https://ror.org/00dcyet50 S. Norton (United Kingdom)'),
(65891, 'https://ror.org/00xb05e36', 'no_lang_code', 1, 'https://ror.org/00xb05e36 Advanced Micro Devices (United Kingdom)'),
(65892, 'https://ror.org/038pmte38', 'no_lang_code', 1, 'https://ror.org/038pmte38 AC Goatham & Son (United Kingdom)'),
(65893, 'https://ror.org/0564t2w16', 'no_lang_code', 1, 'https://ror.org/0564t2w16 BG Research (United Kingdom)'),
(65894, 'https://ror.org/05ynabk26', 'en', 1, 'https://ror.org/05ynabk26 Avon and Somerset Police Authority'),
(65895, 'https://ror.org/00tc3yz20', 'no_lang_code', 1, 'https://ror.org/00tc3yz20 Babcock International Group (United Kingdom)'),
(65896, 'https://ror.org/00hwrpk97', 'no_lang_code', 1, 'https://ror.org/00hwrpk97 American Transmission Company (United States)'),
(65897, 'https://ror.org/02jpkw737', 'no_lang_code', 1, 'https://ror.org/02jpkw737 Acidophil (United Kingdom)'),
(65898, 'https://ror.org/01nzkak21', 'no_lang_code', 1, 'https://ror.org/01nzkak21 Baby2Body (United Kingdom)'),
(65899, 'https://ror.org/05tzavc93', 'no_lang_code', 1, 'https://ror.org/05tzavc93 Bakkavor (United Kingdom)'),
(65900, 'https://ror.org/02cfws461', 'no_lang_code', 1, 'https://ror.org/02cfws461 Actimass (United Kingdom)'),
(65901, 'https://ror.org/037sg1398', 'no_lang_code', 1, 'https://ror.org/037sg1398 Nymbl Science (United Kingdom)'),
(65902, 'https://ror.org/03h2jvh82', 'no_lang_code', 1, 'https://ror.org/03h2jvh82 Amethyst Research (United Kingdom)'),
(65903, 'https://ror.org/03c6vy245', 'en', 1, 'https://ror.org/03c6vy245 Action for Children'),
(65904, 'https://ror.org/01xjdd789', 'no_lang_code', 1, 'https://ror.org/01xjdd789 Action in Caerau & Ely (United Kingdom)'),
(65905, 'https://ror.org/0467xn953', 'en', 1, 'https://ror.org/0467xn953 Balhousie Care Group'),
(65906, 'https://ror.org/001398926', 'en', 1, 'https://ror.org/001398926 Balshaw’s Church of England High School'),
(65907, 'https://ror.org/01pgtee18', 'en', 1, 'https://ror.org/01pgtee18 Active Norfolk'),
(65908, 'https://ror.org/03vnpf028', 'en', 1, 'https://ror.org/03vnpf028 Joel Samson Ruvugo Traders'),
(65909, 'https://ror.org/04m20rz92', 'en', 1, 'https://ror.org/04m20rz92 Advanced Manufacturing Research Centre'),
(65910, 'https://ror.org/03kpa8902', 'en', 1, 'https://ror.org/03kpa8902 Coalition on Violence Against Women'),
(65911, 'https://ror.org/01wjb4152', 'no_lang_code', 1, 'https://ror.org/01wjb4152 Adoreboard (United Kingdom)'),
(65912, 'https://ror.org/01b04pq84', 'no_lang_code', 1, 'https://ror.org/01b04pq84 BAM Nuttall (United Kingdom)'),
(65913, 'https://ror.org/03h65g504', 'no_lang_code', 1, 'https://ror.org/03h65g504 Advanced Blast & Ballistic Systems (United Kingdom)'),
(65914, 'https://ror.org/01bgqbn96', 'en', 1, 'https://ror.org/01bgqbn96 Barbican Centre'),
(65915, 'https://ror.org/05e5xw908', 'no_lang_code', 1, 'https://ror.org/05e5xw908 Advanced Digital Innovation (United Kingdom)'),
(65916, 'https://ror.org/027m81w73', 'no_lang_code', 1, 'https://ror.org/027m81w73 Barco (United Kingdom)'),
(65917, 'https://ror.org/02zjnfj90', 'en', 1, 'https://ror.org/02zjnfj90 Barnardo''s'),
(65918, 'https://ror.org/03dnkwm40', 'no_lang_code', 1, 'https://ror.org/03dnkwm40 Anacail (United Kingdom)'),
(65919, 'https://ror.org/03kq7m969', 'no_lang_code', 1, 'https://ror.org/03kq7m969 Advanced Innovative Engineering (United Kingdom)'),
(65920, 'https://ror.org/029pvsr13', 'en', 1, 'https://ror.org/029pvsr13 Barnsley Metropolitan Borough Council'),
(65921, 'https://ror.org/02pvd9627', 'no_lang_code', 1, 'https://ror.org/02pvd9627 Barratt Developments (United Kingdom)'),
(65922, 'https://ror.org/04060wh35', 'no_lang_code', 1, 'https://ror.org/04060wh35 Advanced Microwave Technologies (United Kingdom)'),
(65923, 'https://ror.org/04vq10619', 'no_lang_code', 1, 'https://ror.org/04vq10619 Analytics Engines (United Kingdom)'),
(65924, 'https://ror.org/01144jm97', 'no_lang_code', 1, 'https://ror.org/01144jm97 Barrnon (United Kingdom)'),
(65925, 'https://ror.org/05npt9421', 'no_lang_code', 1, 'https://ror.org/05npt9421 Ancon (United Kingdom)'),
(65926, 'https://ror.org/024tkjg80', 'no_lang_code', 1, 'https://ror.org/024tkjg80 Aeirtec (United Kingdom)'),
(65927, 'https://ror.org/003f9vj48', 'no_lang_code', 1, 'https://ror.org/003f9vj48 Bauman Lyons Architects (United Kingdom)'),
(65928, 'https://ror.org/03n8g4g56', 'no_lang_code', 1, 'https://ror.org/03n8g4g56 Baxendale (United Kingdom)'),
(65929, 'https://ror.org/00pzjx720', 'no_lang_code', 1, 'https://ror.org/00pzjx720 Body Organ Biomedical (Taiwan)'),
(65930, 'https://ror.org/0432aqd92', 'en', 1, 'https://ror.org/0432aqd92 Andrew Faulkner Associates'),
(65931, 'https://ror.org/013q8p212', 'no_lang_code', 1, 'https://ror.org/013q8p212 Afimilk (United Kingdom)'),
(65932, 'https://ror.org/0267beb34', 'en', 1, 'https://ror.org/0267beb34 BECTU (United Kingdom)'),
(65933, 'https://ror.org/01qb3ks33', 'no_lang_code', 1, 'https://ror.org/01qb3ks33 Bellrock Technology (United Kingdom)'),
(65934, 'https://ror.org/03r5t9q47', 'no_lang_code', 1, 'https://ror.org/03r5t9q47 Benchmark Animal Health (United Kingdom)'),
(65935, 'https://ror.org/00bdbjn36', 'no_lang_code', 1, 'https://ror.org/00bdbjn36 Bennamann (United Kingdom)'),
(65936, 'https://ror.org/02q3pze66', 'en', 1, 'https://ror.org/02q3pze66 Age Action Alliance'),
(65937, 'https://ror.org/01sa95390', 'no_lang_code', 1, 'https://ror.org/01sa95390 Bernard Matthews (United Kingdom)'),
(65938, 'https://ror.org/02gs73d02', 'en', 1, 'https://ror.org/02gs73d02 Antich & Sons (United Kingdom)'),
(65939, 'https://ror.org/01rrttc44', 'no_lang_code', 1, 'https://ror.org/01rrttc44 Berry Gardens (United Kingdom)'),
(65940, 'https://ror.org/0398c6388', 'no_lang_code', 1, 'https://ror.org/0398c6388 BGT Materials (United Kingdom)'),
(65941, 'https://ror.org/0582kjq67', 'no_lang_code', 1, 'https://ror.org/0582kjq67 Antikor (United Kingdom)'),
(65942, 'https://ror.org/037xt3w76', 'en', 1, 'https://ror.org/037xt3w76 Bicester Town Council'),
(65943, 'https://ror.org/037tmrg70', 'no_lang_code', 1, 'https://ror.org/037tmrg70 Anton Paar (United Kingdom)'),
(65944, 'https://ror.org/04tkgz835', 'en', 1, 'https://ror.org/04tkgz835 Agricultural Engineering Precision Innovation Centre'),
(65945, 'https://ror.org/042wg4g29', 'en', 1, 'https://ror.org/042wg4g29 Agricultural Industries Confederation'),
(65946, 'https://ror.org/0453gw346', 'no_lang_code', 1, 'https://ror.org/0453gw346 Agrimetrics (United Kingdom)'),
(65947, 'https://ror.org/04wbhnv17', 'no_lang_code', 1, 'https://ror.org/04wbhnv17 Aptcore (United Kingdom)'),
(65948, 'https://ror.org/04yq6yj22', 'no_lang_code', 1, 'https://ror.org/04yq6yj22 AgSpace (United Kingdom)'),
(65949, 'https://ror.org/02xaygw50', 'no_lang_code', 1, 'https://ror.org/02xaygw50 Aqdot (United Kingdom)'),
(65950, 'https://ror.org/02rb7k030', 'no_lang_code', 1, 'https://ror.org/02rb7k030 AI Factory (United Kingdom)'),
(65951, 'https://ror.org/00d6gwq77', 'en', 1, 'https://ror.org/00d6gwq77 Extra Care Physiotherapy Centre'),
(65952, 'https://ror.org/00ahg0572', 'no_lang_code', 1, 'https://ror.org/00ahg0572 Syneos Health (Germany)'),
(65953, 'https://ror.org/032sv7e28', 'no_lang_code', 1, 'https://ror.org/032sv7e28 AiGameDev.com (Austria)'),
(65954, 'https://ror.org/03yfxxf37', 'no_lang_code', 1, 'https://ror.org/03yfxxf37 Air Black Box (United Kingdom)'),
(65955, 'https://ror.org/01wrnz920', 'no_lang_code', 1, 'https://ror.org/01wrnz920 Arcadis (United States)'),
(65956, 'https://ror.org/00ytxpg21', 'no_lang_code', 1, 'https://ror.org/00ytxpg21 Applied Multilayers (United Kingdom)'),
(65957, 'https://ror.org/03r1dwc49', 'no_lang_code', 1, 'https://ror.org/03r1dwc49 Harsco (United Kingdom)'),
(65958, 'https://ror.org/03jqpht28', 'no_lang_code', 1, 'https://ror.org/03jqpht28 Ferrovial (United Kingdom)'),
(65959, 'https://ror.org/02fpeer60', 'no_lang_code', 1, 'https://ror.org/02fpeer60 2-DTech (United Kingdom)'),
(65960, 'https://ror.org/059wz2726', 'no_lang_code', 1, 'https://ror.org/059wz2726 Archipelago Technology (United Kingdom)'),
(65961, 'https://ror.org/05fhjra85', 'en', 1, 'https://ror.org/05fhjra85 Ailtearachd is Dealbhadh na h-Alba Architecture and Design Scotland'),
(65962, 'https://ror.org/0470cr695', 'no_lang_code', 1, 'https://ror.org/0470cr695 AKT II (United Kingdom)'),
(65963, 'https://ror.org/040c9hz12', 'no_lang_code', 1, 'https://ror.org/040c9hz12 Tozer Seeds (United Kingdom)'),
(65964, 'https://ror.org/02ccc7d21', 'no_lang_code', 1, 'https://ror.org/02ccc7d21 Albatern (United Kingdom)'),
(65965, 'https://ror.org/00cgmem79', 'no_lang_code', 1, 'https://ror.org/00cgmem79 Power Roll (United Kingdom)'),
(65966, 'https://ror.org/0077fwc46', 'no_lang_code', 1, 'https://ror.org/0077fwc46 Big White Wall (United Kingdom)'),
(65967, 'https://ror.org/02f66ex89', 'no_lang_code', 1, 'https://ror.org/02f66ex89 Bio bean (United Kingdom)'),
(65968, 'https://ror.org/05rdw5k78', 'no_lang_code', 1, 'https://ror.org/05rdw5k78 Biocarbon Engineering (United Kingdom)'),
(65969, 'https://ror.org/01mzy1p82', 'no_lang_code', 1, 'https://ror.org/01mzy1p82 DaVinci Laboratories (United States)'),
(65970, 'https://ror.org/02qgeqz65', 'no_lang_code', 1, 'https://ror.org/02qgeqz65 Alcove (United Kingdom)'),
(65971, 'https://ror.org/01r15jk41', 'no_lang_code', 1, 'https://ror.org/01r15jk41 Biogelx (United Kingdom)'),
(65972, 'https://ror.org/02z3r7t23', 'en', 1, 'https://ror.org/02z3r7t23 Edinburgh Genomics'),
(65973, 'https://ror.org/017xc4380', 'no_lang_code', 1, 'https://ror.org/017xc4380 Alexander Dennis (United Kingdom)'),
(65974, 'https://ror.org/04vrwc094', 'no_lang_code', 1, 'https://ror.org/04vrwc094 Biome Technologies (United Kingdom)');
INSERT INTO `rors` VALUES
(65975, 'https://ror.org/00kq61997', 'no_lang_code', 1, 'https://ror.org/00kq61997 Arterius (United Kingdom)'),
(65976, 'https://ror.org/013t7g336', 'en', 1, 'https://ror.org/013t7g336 Bioregional'),
(65977, 'https://ror.org/001ky3808', 'no_lang_code', 1, 'https://ror.org/001ky3808 Allford Hall Monaghan Morris (United Kingdom)'),
(65978, 'https://ror.org/015b9mz47', 'no_lang_code', 1, 'https://ror.org/015b9mz47 Artworks Cymru'),
(65979, 'https://ror.org/02ktw5c97', 'no_lang_code', 1, 'https://ror.org/02ktw5c97 Walgreens Boots Alliance (United Kingdom)'),
(65980, 'https://ror.org/00qj80m76', 'no_lang_code', 1, 'https://ror.org/00qj80m76 BIPVco (United Kingdom)'),
(65981, 'https://ror.org/031mxty05', 'no_lang_code', 1, 'https://ror.org/031mxty05 Activ8rlives (United Kingdom)'),
(65982, 'https://ror.org/03yepnj33', 'no_lang_code', 1, 'https://ror.org/03yepnj33 ALP Technologies (United Kingdom)'),
(65983, 'https://ror.org/00a9f8892', 'en', 1, 'https://ror.org/00a9f8892 Bishop Simeon Trust'),
(65984, 'https://ror.org/044kv7f59', 'en', 1, 'https://ror.org/044kv7f59 Bishopsgate Institute'),
(65985, 'https://ror.org/024kww824', 'no_lang_code', 1, 'https://ror.org/024kww824 AlphaFox Systems (United Kingdom)'),
(65986, 'https://ror.org/0486wce04', 'en', 1, 'https://ror.org/0486wce04 Black Cultural Archives'),
(65987, 'https://ror.org/00qe9bz64', 'en', 1, 'https://ror.org/00qe9bz64 Blackpool Council'),
(65988, 'https://ror.org/03pengj43', 'es', 1, 'https://ror.org/03pengj43 Asociación de Comunidades Forestales de Peten'),
(65989, 'https://ror.org/02gn6qq35', 'no_lang_code', 1, 'https://ror.org/02gn6qq35 Bladon Jets (United Kingdom)'),
(65990, 'https://ror.org/03eg3xh26', 'no_lang_code', 1, 'https://ror.org/03eg3xh26 Bleepbleeps (United Kingdom)'),
(65991, 'https://ror.org/03reqkm68', 'no_lang_code', 1, 'https://ror.org/03reqkm68 Blendology (United Kingdom)'),
(65992, 'https://ror.org/00bmszw78', 'no_lang_code', 1, 'https://ror.org/00bmszw78 Block Dox (United Kingdom)'),
(65993, 'https://ror.org/00pss1k50', 'no_lang_code', 1, 'https://ror.org/00pss1k50 Bloodaxe Books (United Kingdom)'),
(65994, 'https://ror.org/02qms3512', 'no_lang_code', 1, 'https://ror.org/02qms3512 Assist Mi (United Kingdom)'),
(65995, 'https://ror.org/05drjse03', 'no_lang_code', 1, 'https://ror.org/05drjse03 Thermionix Energy (United Kingdom)'),
(65996, 'https://ror.org/02nncgd63', 'no_lang_code', 1, 'https://ror.org/02nncgd63 BNP Paribas (United Kingdom)'),
(65997, 'https://ror.org/00eb2vz50', 'en', 1, 'https://ror.org/00eb2vz50 Rail Delivery Group'),
(65998, 'https://ror.org/0514g5649', 'no_lang_code', 1, 'https://ror.org/0514g5649 Bodle Technologies (United Kingdom)'),
(65999, 'https://ror.org/00tn0fn37', 'no_lang_code', 1, 'https://ror.org/00tn0fn37 Jaywing (United Kingdom)'),
(66000, 'https://ror.org/05610bc49', 'en', 1, 'https://ror.org/05610bc49 Partnerships in Environmental Management for the Seas of East Asia'),
(66001, 'https://ror.org/03xzqa656', 'en', 1, 'https://ror.org/03xzqa656 Pembina Institute'),
(66002, 'https://ror.org/0455ncp47', 'en', 1, 'https://ror.org/0455ncp47 Association for Language Learning'),
(66003, 'https://ror.org/04n2kvd60', 'en', 1, 'https://ror.org/04n2kvd60 Conseil des Académies Canadiennes Council of Canadian Academies'),
(66004, 'https://ror.org/035cs2n55', 'en', 1, 'https://ror.org/035cs2n55 Association for Nutrition'),
(66005, 'https://ror.org/000jxr567', 'en', 1, 'https://ror.org/000jxr567 Association of Independent Museums'),
(66006, 'https://ror.org/04smgsr53', 'en', 1, 'https://ror.org/04smgsr53 Canal and River Trust'),
(66007, 'https://ror.org/04cegfm62', 'en', 1, 'https://ror.org/04cegfm62 The Rivers Trust'),
(66008, 'https://ror.org/05scsxp22', 'en', 1, 'https://ror.org/05scsxp22 Growth Networks Uganda'),
(66009, 'https://ror.org/02fp12092', 'no_lang_code', 1, 'https://ror.org/02fp12092 CeGaT (Germany)'),
(66010, 'https://ror.org/00jhee281', 'en', 1, 'https://ror.org/00jhee281 Centre for Innovation Excellence in Livestock'),
(66011, 'https://ror.org/044dmqn91', 'en', 1, 'https://ror.org/044dmqn91 Centre for Sustainable Healthcare'),
(66012, 'https://ror.org/00sg0ja15', 'en', 1, 'https://ror.org/00sg0ja15 Amgueddfa Ceredigion Ceredigion Museum'),
(66013, 'https://ror.org/00ayy7n17', 'no_lang_code', 1, 'https://ror.org/00ayy7n17 Aston Particle Technologies (United Kingdom)'),
(66014, 'https://ror.org/032x61x06', 'no_lang_code', 1, 'https://ror.org/032x61x06 Astrimmune (United Kingdom)'),
(66015, 'https://ror.org/03w12qr69', 'no_lang_code', 1, 'https://ror.org/03w12qr69 Clinipace (South Korea)'),
(66016, 'https://ror.org/044bzs788', 'no_lang_code', 1, 'https://ror.org/044bzs788 ATDBio (United Kingdom)'),
(66017, 'https://ror.org/01gkngr03', 'no_lang_code', 1, 'https://ror.org/01gkngr03 ATG UV Technology (United Kingdom)'),
(66018, 'https://ror.org/03jt3fb13', 'en', 1, 'https://ror.org/03jt3fb13 BiofoodCRO (South Korea) 바이오푸드 CRO'),
(66019, 'https://ror.org/05bcwh715', 'en', 1, 'https://ror.org/05bcwh715 Alba Trees'),
(66020, 'https://ror.org/02j64yq05', 'en', 1, 'https://ror.org/02j64yq05 Auckland Castle Trust'),
(66021, 'https://ror.org/003da0193', 'no_lang_code', 1, 'https://ror.org/003da0193 Atlantis Resources (United Kingdom)'),
(66022, 'https://ror.org/05fxdte78', 'no_lang_code', 1, 'https://ror.org/05fxdte78 Ceva Animal Health (United Kingdom)'),
(66023, 'https://ror.org/03s0s8j32', 'en', 1, 'https://ror.org/03s0s8j32 Centre for Modelling & Simulation'),
(66024, 'https://ror.org/000qm5821', 'no_lang_code', 1, 'https://ror.org/000qm5821 Chain Biotechnology (United Kingdom)'),
(66025, 'https://ror.org/02hx87760', 'no_lang_code', 1, 'https://ror.org/02hx87760 Canary Wharf Group (United Kingdom)'),
(66026, 'https://ror.org/05ch0my81', 'no_lang_code', 1, 'https://ror.org/05ch0my81 Change of Paradigm (United Kingdom)'),
(66027, 'https://ror.org/05jxkdk91', 'en', 1, 'https://ror.org/05jxkdk91 Charity Commission for England and Wales'),
(66028, 'https://ror.org/03dnk5950', 'no_lang_code', 1, 'https://ror.org/03dnk5950 Canberra (United Kingdom)'),
(66029, 'https://ror.org/00bant556', 'en', 1, 'https://ror.org/00bant556 Charnwood Arts'),
(66030, 'https://ror.org/00rhakp81', 'en', 1, 'https://ror.org/00rhakp81 GAM Investments'),
(66031, 'https://ror.org/03dtb8870', 'no_lang_code', 1, 'https://ror.org/03dtb8870 Speechmatics (United Kingdom)'),
(66032, 'https://ror.org/00z84ne79', 'en', 1, 'https://ror.org/00z84ne79 Canterbury City Council'),
(66033, 'https://ror.org/03rkqvk58', 'en', 1, 'https://ror.org/03rkqvk58 Capital Enterprise'),
(66034, 'https://ror.org/04vazsk69', 'en', 1, 'https://ror.org/04vazsk69 Carbon Capture & Storage Association'),
(66035, 'https://ror.org/04mk8hf46', 'en', 1, 'https://ror.org/04mk8hf46 Amgueddfa Stori Caerdydd Cardiff Story Museum'),
(66036, 'https://ror.org/02mfx6g88', 'no_lang_code', 1, 'https://ror.org/02mfx6g88 Cardiocity (United Kingdom)'),
(66037, 'https://ror.org/01eq53z97', 'no_lang_code', 1, 'https://ror.org/01eq53z97 Chemoxy (United Kingdom)'),
(66038, 'https://ror.org/01j3dap11', 'en', 1, 'https://ror.org/01j3dap11 Cardiff West Community High School'),
(66039, 'https://ror.org/01rfqch15', 'en', 1, 'https://ror.org/01rfqch15 The Indonesian Institute, Center for Public Policy Research'),
(66040, 'https://ror.org/015b6zh04', 'en', 1, 'https://ror.org/015b6zh04 Cheshire West and Chester'),
(66041, 'https://ror.org/029ma5383', 'en', 1, 'https://ror.org/029ma5383 Care International'),
(66042, 'https://ror.org/00pvegc36', 'no_lang_code', 1, 'https://ror.org/00pvegc36 Chevron (United Kingdom)'),
(66043, 'https://ror.org/04h534k32', 'no_lang_code', 1, 'https://ror.org/04h534k32 Chiaro (United Kingdom)'),
(66044, 'https://ror.org/05dec7653', 'en', 1, 'https://ror.org/05dec7653 Children in Scotland'),
(66045, 'https://ror.org/01skxtv98', 'no_lang_code', 1, 'https://ror.org/01skxtv98 Citi Logik (United Kingdom)'),
(66046, 'https://ror.org/01qv4nh82', 'no_lang_code', 1, 'https://ror.org/01qv4nh82 Cartap (United Kingdom)'),
(66047, 'https://ror.org/055bsnv14', 'no_lang_code', 1, 'https://ror.org/055bsnv14 Clean Energy Prospector (United Kingdom)'),
(66048, 'https://ror.org/01xsvrg26', 'no_lang_code', 1, 'https://ror.org/01xsvrg26 Cascoda (United Kingdom)'),
(66049, 'https://ror.org/047bk8v58', 'no_lang_code', 1, 'https://ror.org/047bk8v58 Cast Metals Federation (United Kingdom)'),
(66050, 'https://ror.org/01fc2st08', 'no_lang_code', 1, 'https://ror.org/01fc2st08 Clear Water Revival (United Kingdom)'),
(66051, 'https://ror.org/04e116f14', 'no_lang_code', 1, 'https://ror.org/04e116f14 Cargill (Belgium)'),
(66052, 'https://ror.org/049rnt984', 'no_lang_code', 1, 'https://ror.org/049rnt984 Tyson Foods (United Kingdom)'),
(66053, 'https://ror.org/00bnbwc20', 'en', 1, 'https://ror.org/00bnbwc20 Castlefield Gallery'),
(66054, 'https://ror.org/04bsc7n50', 'no_lang_code', 1, 'https://ror.org/04bsc7n50 CoControl (United Kingdom)'),
(66055, 'https://ror.org/04r85yt40', 'no_lang_code', 1, 'https://ror.org/04r85yt40 Cojac (United Kingdom)'),
(66056, 'https://ror.org/01ttqmm87', 'no_lang_code', 1, 'https://ror.org/01ttqmm87 CatScI (United Kingdom)'),
(66057, 'https://ror.org/00380qe69', 'fr', 1, 'https://ror.org/00380qe69 Comité Champagne Comité Interprofessionnel du vin de Champagne'),
(66058, 'https://ror.org/00b8t8z12', 'no_lang_code', 1, 'https://ror.org/00b8t8z12 CAV Advanced Technologies (United Kingdom)'),
(66059, 'https://ror.org/03gtecx53', 'en', 1, 'https://ror.org/03gtecx53 Commonwealth Secretariat'),
(66060, 'https://ror.org/022sn6h14', 'no_lang_code', 1, 'https://ror.org/022sn6h14 Alvant (United Kingdom)'),
(66061, 'https://ror.org/025n3m882', 'no_lang_code', 1, 'https://ror.org/025n3m882 CCm Technologies (United Kingdom)'),
(66062, 'https://ror.org/03fcc9n48', 'no_lang_code', 1, 'https://ror.org/03fcc9n48 Celbius (United Kingdom)'),
(66063, 'https://ror.org/011nkhg51', 'no_lang_code', 1, 'https://ror.org/011nkhg51 Chromacity (United Kingdom)'),
(66064, 'https://ror.org/006pd7g98', 'no_lang_code', 1, 'https://ror.org/006pd7g98 Cell Guidance Systems (United Kingdom)'),
(66065, 'https://ror.org/039me2320', 'no_lang_code', 1, 'https://ror.org/039me2320 ValiRx (United Kingdom)'),
(66066, 'https://ror.org/0247e9n34', 'no_lang_code', 1, 'https://ror.org/0247e9n34 Cellucomp (United Kingdom)'),
(66067, 'https://ror.org/031194929', 'no_lang_code', 1, 'https://ror.org/031194929 Chrysalis Health & Beauty (United Kingdom)'),
(66068, 'https://ror.org/04ea9m912', 'no_lang_code', 1, 'https://ror.org/04ea9m912 Cellular Therapeutics (United Kingdom)'),
(66069, 'https://ror.org/04m5qh397', 'en', 1, 'https://ror.org/04m5qh397 Church of England'),
(66070, 'https://ror.org/028v17202', 'no_lang_code', 1, 'https://ror.org/028v17202 Compound Semiconductor Centre (United Kingdom)'),
(66071, 'https://ror.org/01yxxqf96', 'en', 1, 'https://ror.org/01yxxqf96 Concern Worldwide UK'),
(66072, 'https://ror.org/041sejv93', 'no_lang_code', 1, 'https://ror.org/041sejv93 Boeing (United Kingdom)'),
(66073, 'https://ror.org/00aa87042', 'en', 1, 'https://ror.org/00aa87042 Consorcio para el Desarrollo Sostenible de la Ecoregión Andina Consortium for Sustainable Development of the Andean Ecoregion'),
(66074, 'https://ror.org/049yh6j39', 'no_lang_code', 1, 'https://ror.org/049yh6j39 CMCL Innovations (United Kingdom)'),
(66075, 'https://ror.org/03gy09487', 'no_lang_code', 1, 'https://ror.org/03gy09487 CN Bio Innovations (United Kingdom)'),
(66076, 'https://ror.org/0131enr16', 'no_lang_code', 1, 'https://ror.org/0131enr16 CNR Services International (United Kingdom)'),
(66077, 'https://ror.org/04f81me03', 'no_lang_code', 1, 'https://ror.org/04f81me03 Constellium (France)'),
(66078, 'https://ror.org/0294ypw92', 'en', 1, 'https://ror.org/0294ypw92 Coast to Capital'),
(66079, 'https://ror.org/002tj9208', 'en', 1, 'https://ror.org/002tj9208 Construction Industry Council'),
(66080, 'https://ror.org/00t6s9p18', 'en', 1, 'https://ror.org/00t6s9p18 Lloyd''s Maritime Academy'),
(66081, 'https://ror.org/03aw27j10', 'en', 1, 'https://ror.org/03aw27j10 Contact Theatre'),
(66082, 'https://ror.org/052bj1e57', 'no_lang_code', 1, 'https://ror.org/052bj1e57 Contamac (United Kingdom)'),
(66083, 'https://ror.org/03yzcrs31', 'en', 1, 'https://ror.org/03yzcrs31 Bradford District Care NHS Foundation Trust'),
(66084, 'https://ror.org/02z9np441', 'no_lang_code', 1, 'https://ror.org/02z9np441 CGA Simulations (United Kingdom)'),
(66085, 'https://ror.org/01k4fsz02', 'no_lang_code', 1, 'https://ror.org/01k4fsz02 Brainomix (United Kingdom)'),
(66086, 'https://ror.org/02bw9ra57', 'no_lang_code', 1, 'https://ror.org/02bw9ra57 Corium Solutions (United Kingdom)'),
(66087, 'https://ror.org/04tmm4t39', 'en', 1, 'https://ror.org/04tmm4t39 Creative Carbon Scotland'),
(66088, 'https://ror.org/021peq975', 'no_lang_code', 1, 'https://ror.org/021peq975 Bramble Energy (United Kingdom)'),
(66089, 'https://ror.org/02en1qh26', 'no_lang_code', 1, 'https://ror.org/02en1qh26 Creative Concern (United Kingdom)'),
(66090, 'https://ror.org/00w85kx21', 'en', 1, 'https://ror.org/00w85kx21 Breast Cancer Care'),
(66091, 'https://ror.org/05v9hkc73', 'no_lang_code', 1, 'https://ror.org/05v9hkc73 Covnetics (United Kingdom)'),
(66092, 'https://ror.org/03fqhsr33', 'no_lang_code', 1, 'https://ror.org/03fqhsr33 Breathing Buildings (United Kingdom)'),
(66093, 'https://ror.org/03na4j812', 'no_lang_code', 1, 'https://ror.org/03na4j812 CreaPhys (Germany)'),
(66094, 'https://ror.org/02yz5ze35', 'no_lang_code', 1, 'https://ror.org/02yz5ze35 Critical Solutions International (United States)'),
(66095, 'https://ror.org/0105p2r38', 'en', 1, 'https://ror.org/0105p2r38 Bristol and Bath Science Park'),
(66096, 'https://ror.org/03r0gs027', 'no_lang_code', 1, 'https://ror.org/03r0gs027 CrystecPharma (United Kingdom)'),
(66097, 'https://ror.org/0226gmk97', 'en', 1, 'https://ror.org/0226gmk97 Bristol Museum & Art Gallery'),
(66098, 'https://ror.org/03hhzh088', 'no_lang_code', 1, 'https://ror.org/03hhzh088 C-Tex (United Kingdom)'),
(66099, 'https://ror.org/051x0xg08', 'en', 1, 'https://ror.org/051x0xg08 Natura Foundation'),
(66100, 'https://ror.org/058t64323', 'pt', 1, 'https://ror.org/058t64323 CSEM'),
(66101, 'https://ror.org/02a98s891', 'en', 1, 'https://ror.org/02a98s891 Helmholtz Institute for RNA-based Infection Research Helmholtz-Institut für RNA-basierte Infektionsforschung'),
(66102, 'https://ror.org/020kx6615', 'en', 1, 'https://ror.org/020kx6615 Cultural Enterprise Office'),
(66103, 'https://ror.org/01gav0153', 'en', 1, 'https://ror.org/01gav0153 Bristol Green Capital Partnership'),
(66104, 'https://ror.org/01d0mcn71', 'en', 1, 'https://ror.org/01d0mcn71 Croft Additive Manufacturing'),
(66105, 'https://ror.org/03fmdyk54', 'no_lang_code', 1, 'https://ror.org/03fmdyk54 Cutting & Wear (United Kingdom)'),
(66106, 'https://ror.org/0577v7f42', 'en', 1, 'https://ror.org/0577v7f42 Crop Health and Protection'),
(66107, 'https://ror.org/02nv0e913', 'en', 1, 'https://ror.org/02nv0e913 Bristol Health Partners'),
(66108, 'https://ror.org/037g0v202', 'en', 1, 'https://ror.org/037g0v202 Bristol Hospitality Network'),
(66109, 'https://ror.org/05e6vta90', 'no_lang_code', 1, 'https://ror.org/05e6vta90 Cypralis (United Kingdom)'),
(66110, 'https://ror.org/05pd8ej68', 'no_lang_code', 1, 'https://ror.org/05pd8ej68 Crossword Cybersecurity (United Kingdom)'),
(66111, 'https://ror.org/001kj9s64', 'en', 1, 'https://ror.org/001kj9s64 Bristol Natural History Consortium'),
(66112, 'https://ror.org/056sbyc67', 'en', 1, 'https://ror.org/056sbyc67 Bristol Robotics Laboratory'),
(66113, 'https://ror.org/017hy4e72', 'en', 1, 'https://ror.org/017hy4e72 Crown Prosecution Service'),
(66114, 'https://ror.org/02vmc0j64', 'no_lang_code', 1, 'https://ror.org/02vmc0j64 D-RisQ (United Kingdom)'),
(66115, 'https://ror.org/041e3g390', 'no_lang_code', 1, 'https://ror.org/041e3g390 Crypta Labs (United Kingdom)'),
(66116, 'https://ror.org/04marmm60', 'no_lang_code', 1, 'https://ror.org/04marmm60 D2NA (United Kingdom)'),
(66117, 'https://ror.org/05bjekg60', 'no_lang_code', 1, 'https://ror.org/05bjekg60 Bristol Water (United Kingdom)'),
(66118, 'https://ror.org/0499kfe57', 'en', 1, 'https://ror.org/0499kfe57 Department for Work and Pensions'),
(66119, 'https://ror.org/0167cg095', 'no_lang_code', 1, 'https://ror.org/0167cg095 Daden (United Kingdom)'),
(66120, 'https://ror.org/021dst456', 'en', 1, 'https://ror.org/021dst456 Derby Museums'),
(66121, 'https://ror.org/01ak5f834', 'en', 1, 'https://ror.org/01ak5f834 Derbyshire County Council'),
(66122, 'https://ror.org/03x7gzh76', 'en', 1, 'https://ror.org/03x7gzh76 The Design Museum'),
(66123, 'https://ror.org/015ff4823', 'en', 1, 'https://ror.org/015ff4823 Sci-Tech Daresbury'),
(66124, 'https://ror.org/02mq35511', 'en', 1, 'https://ror.org/02mq35511 British Cycling'),
(66125, 'https://ror.org/035598n44', 'no_lang_code', 1, 'https://ror.org/035598n44 DCC Health & Beauty Solutions'),
(66126, 'https://ror.org/05jg7y437', 'no_lang_code', 1, 'https://ror.org/05jg7y437 Desktop Genetics (United Kingdom)'),
(66127, 'https://ror.org/03aearw79', 'en', 1, 'https://ror.org/03aearw79 Devon Guild of Craftsmen'),
(66128, 'https://ror.org/04pw43593', 'no_lang_code', 1, 'https://ror.org/04pw43593 British Glass'),
(66129, 'https://ror.org/05gcdb333', 'no_lang_code', 1, 'https://ror.org/05gcdb333 DataTalk (United Kingdom)'),
(66130, 'https://ror.org/043sy2j95', 'no_lang_code', 1, 'https://ror.org/043sy2j95 Devro (United Kingdom)'),
(66131, 'https://ror.org/03gtnj176', 'no_lang_code', 1, 'https://ror.org/03gtnj176 Diagnostic Sonar (United Kingdom)'),
(66132, 'https://ror.org/04e2ayg86', 'no_lang_code', 1, 'https://ror.org/04e2ayg86 Diagnostics for the Real World (United Kingdom)'),
(66133, 'https://ror.org/02yxzrq46', 'no_lang_code', 1, 'https://ror.org/02yxzrq46 Diamond Photofoil (United Kingdom)'),
(66134, 'https://ror.org/0483jcr74', 'no_lang_code', 1, 'https://ror.org/0483jcr74 British Precast (United Kingdom)'),
(66135, 'https://ror.org/03wsc5672', 'no_lang_code', 1, 'https://ror.org/03wsc5672 Digital Catapult (United Kingdom)'),
(66136, 'https://ror.org/017mwaf76', 'en', 1, 'https://ror.org/017mwaf76 British Water'),
(66137, 'https://ror.org/04w1svb78', 'no_lang_code', 1, 'https://ror.org/04w1svb78 Brother International (United Kingdom)'),
(66138, 'https://ror.org/02jfw5430', 'en', 1, 'https://ror.org/02jfw5430 Powys Dance'),
(66139, 'https://ror.org/00d1fsm72', 'no_lang_code', 1, 'https://ror.org/00d1fsm72 Dimensional Imaging (United Kingdom)'),
(66140, 'https://ror.org/051dx4d56', 'no_lang_code', 1, 'https://ror.org/051dx4d56 Bryant Symons Technologies (United Kingdom)'),
(66141, 'https://ror.org/02fjd2454', 'en', 1, 'https://ror.org/02fjd2454 Decom North Sea'),
(66142, 'https://ror.org/00gb9k226', 'no_lang_code', 1, 'https://ror.org/00gb9k226 DIPEx International (United Kingdom)'),
(66143, 'https://ror.org/049r93771', 'no_lang_code', 1, 'https://ror.org/049r93771 DNA Electronics (United Kingdom)'),
(66144, 'https://ror.org/040eyrz23', 'no_lang_code', 1, 'https://ror.org/040eyrz23 Domino (United Kingdom)'),
(66145, 'https://ror.org/017mxs556', 'en', 1, 'https://ror.org/017mxs556 Buglife'),
(66146, 'https://ror.org/04vv86192', 'en', 1, 'https://ror.org/04vv86192 Doncaster Council'),
(66147, 'https://ror.org/00x8he857', 'no_lang_code', 1, 'https://ror.org/00x8he857 Doncasters (United Kingdom)'),
(66148, 'https://ror.org/02gp9tw76', 'no_lang_code', 1, 'https://ror.org/02gp9tw76 Delta Motorsport (United Kingdom)'),
(66149, 'https://ror.org/009ba1g27', 'no_lang_code', 1, 'https://ror.org/009ba1g27 Bullion Tech (United Kingdom)'),
(66150, 'https://ror.org/03nh4nw42', 'no_lang_code', 1, 'https://ror.org/03nh4nw42 Dem Dx (United Kingdom)'),
(66151, 'https://ror.org/04kfpsj04', 'en', 1, 'https://ror.org/04kfpsj04 Business in the Community'),
(66152, 'https://ror.org/048mf0j29', 'en', 1, 'https://ror.org/048mf0j29 Business West'),
(66153, 'https://ror.org/04a0ct255', 'en', 1, 'https://ror.org/04a0ct255 Democracy Center'),
(66154, 'https://ror.org/007sv4q84', 'en', 1, 'https://ror.org/007sv4q84 Buxton Festival'),
(66155, 'https://ror.org/05scxdt25', 'en', 1, 'https://ror.org/05scxdt25 Drake Music'),
(66156, 'https://ror.org/02sfk5x26', 'no_lang_code', 1, 'https://ror.org/02sfk5x26 Byotrol (United Kingdom)'),
(66157, 'https://ror.org/00p10a639', 'no_lang_code', 1, 'https://ror.org/00p10a639 Drax (United Kingdom)'),
(66158, 'https://ror.org/007gr2e12', 'no_lang_code', 1, 'https://ror.org/007gr2e12 DRD Power (United Kingdom)'),
(66159, 'https://ror.org/05kvt2j84', 'no_lang_code', 1, 'https://ror.org/05kvt2j84 C4 Carbides (United Kingdom)'),
(66160, 'https://ror.org/03pch7e04', 'en', 1, 'https://ror.org/03pch7e04 CAG Consultants'),
(66161, 'https://ror.org/05451aa47', 'no_lang_code', 1, 'https://ror.org/05451aa47 DSV (United Kingdom)'),
(66162, 'https://ror.org/00nsted34', 'no_lang_code', 1, 'https://ror.org/00nsted34 Calon Cardio (United Kingdom)'),
(66163, 'https://ror.org/028casa56', 'no_lang_code', 1, 'https://ror.org/028casa56 GridDuck (United Kingdom)'),
(66164, 'https://ror.org/02dp0cj52', 'en', 1, 'https://ror.org/02dp0cj52 Dundee Contemporary Arts'),
(66165, 'https://ror.org/01mcf1q28', 'en', 1, 'https://ror.org/01mcf1q28 Durham Cathedral'),
(66166, 'https://ror.org/04rezdf48', 'no_lang_code', 1, 'https://ror.org/04rezdf48 Dycotec Materials (United Kingdom)'),
(66167, 'https://ror.org/016xf4y16', 'no_lang_code', 1, 'https://ror.org/016xf4y16 Dynamic Imaging (United Kingdom)'),
(66168, 'https://ror.org/0068m0j38', 'en', 1, 'https://ror.org/0068m0j38 Cancer Research UK Cambridge Center'),
(66169, 'https://ror.org/053ahvv37', 'en', 1, 'https://ror.org/053ahvv37 Esoterix'),
(66170, 'https://ror.org/02vy0w981', 'no_lang_code', 1, 'https://ror.org/02vy0w981 ESP Technology (United Kingdom)'),
(66171, 'https://ror.org/00kdtw736', 'no_lang_code', 1, 'https://ror.org/00kdtw736 Cambridge Carbon Capture (United Kingdom)'),
(66172, 'https://ror.org/013acqk67', 'no_lang_code', 1, 'https://ror.org/013acqk67 AMS (United Kingdom)'),
(66173, 'https://ror.org/00n0yt415', 'no_lang_code', 1, 'https://ror.org/00n0yt415 E4tech (United Kingdom)'),
(66174, 'https://ror.org/01158c721', 'en', 1, 'https://ror.org/01158c721 Estorick Collection of Modern Italian Art'),
(66175, 'https://ror.org/030vc9997', 'no_lang_code', 1, 'https://ror.org/030vc9997 Eagle Genomics (United Kingdom)'),
(66176, 'https://ror.org/00npqj595', 'en', 1, 'https://ror.org/00npqj595 Cambridge Curiosity and Imagination'),
(66177, 'https://ror.org/058qcqm21', 'en', 1, 'https://ror.org/058qcqm21 Early Intervention Foundation'),
(66178, 'https://ror.org/02069m354', 'en', 1, 'https://ror.org/02069m354 East Ayrshire Council'),
(66179, 'https://ror.org/010pgs956', 'no_lang_code', 1, 'https://ror.org/010pgs956 Cambridge Reactor Design (United Kingdom)'),
(66180, 'https://ror.org/02c2anw65', 'en', 1, 'https://ror.org/02c2anw65 East Belfast Mission'),
(66181, 'https://ror.org/02zw2vm28', 'en', 1, 'https://ror.org/02zw2vm28 EastSide Partnership'),
(66182, 'https://ror.org/05j2cg215', 'en', 1, 'https://ror.org/05j2cg215 Cambridge Housing Society'),
(66183, 'https://ror.org/03m7d0s87', 'en', 1, 'https://ror.org/03m7d0s87 Medilink East Midlands'),
(66184, 'https://ror.org/057wj6q87', 'en', 1, 'https://ror.org/057wj6q87 East Renfrewshire Council'),
(66185, 'https://ror.org/04rppdm80', 'en', 1, 'https://ror.org/04rppdm80 European and American Osteosarcoma Study Group'),
(66186, 'https://ror.org/0236s9n59', 'en', 1, 'https://ror.org/0236s9n59 East Sussex County Council'),
(66187, 'https://ror.org/03tzzx112', 'en', 1, 'https://ror.org/03tzzx112 E-Car Club'),
(66188, 'https://ror.org/01j8bzd71', 'no_lang_code', 1, 'https://ror.org/01j8bzd71 Cambridge Microelectronics (United Kingdom)'),
(66189, 'https://ror.org/02w3ejv56', 'no_lang_code', 1, 'https://ror.org/02w3ejv56 Eclipse Research Consultants (United Kingdom)'),
(66190, 'https://ror.org/05bqsm828', 'no_lang_code', 1, 'https://ror.org/05bqsm828 Cambridge Nanolitic (United Kingdom)'),
(66191, 'https://ror.org/041t08q89', 'no_lang_code', 1, 'https://ror.org/041t08q89 Handley Heating Services (United Kingdom)'),
(66192, 'https://ror.org/02m9wbt95', 'en', 1, 'https://ror.org/02m9wbt95 European Coil Coating Association'),
(66193, 'https://ror.org/02tszw848', 'en', 1, 'https://ror.org/02tszw848 European Energy Research Alliance Europese Alliantie voor Energieonderzoek'),
(66194, 'https://ror.org/02b3h4622', 'no_lang_code', 1, 'https://ror.org/02b3h4622 Cambridge Nanotherm (United Kingdom)'),
(66195, 'https://ror.org/034yp9n83', 'no_lang_code', 1, 'https://ror.org/034yp9n83 Ecometrica (United Kingdom)'),
(66196, 'https://ror.org/03dzmbv89', 'en', 1, 'https://ror.org/03dzmbv89 Cambridgeshire County Council'),
(66197, 'https://ror.org/033vexm94', 'no_lang_code', 1, 'https://ror.org/033vexm94 Econotherm (United Kingdom)'),
(66198, 'https://ror.org/00e02bd76', 'en', 1, 'https://ror.org/00e02bd76 European Marine Energy Centre'),
(66199, 'https://ror.org/037wd0n12', 'no_lang_code', 1, 'https://ror.org/037wd0n12 Farm Energy and Control Services (United Kingdom)'),
(66200, 'https://ror.org/01wmprq78', 'no_lang_code', 1, 'https://ror.org/01wmprq78 eCountability (United Kingdom)'),
(66201, 'https://ror.org/02vxnkm75', 'no_lang_code', 1, 'https://ror.org/02vxnkm75 GaitSmart (United Kingdom)'),
(66202, 'https://ror.org/01xm51j90', 'no_lang_code', 1, 'https://ror.org/01xm51j90 eCow Devon (United Kingdom)'),
(66203, 'https://ror.org/04bgfj122', 'no_lang_code', 1, 'https://ror.org/04bgfj122 Edelman (United Kingdom)'),
(66204, 'https://ror.org/013kn0e57', 'en', 1, 'https://ror.org/013kn0e57 Farming & Wildlife Advisory Group'),
(66205, 'https://ror.org/02qe51g80', 'en', 1, 'https://ror.org/02qe51g80 The Eden Rivers Trust'),
(66206, 'https://ror.org/024hrs294', 'no_lang_code', 1, 'https://ror.org/024hrs294 Eutechnyx (United Kingdom)'),
(66207, 'https://ror.org/004c4h916', 'en', 1, 'https://ror.org/004c4h916 Evaluation Support Scotland'),
(66208, 'https://ror.org/01hrwg648', 'en', 1, 'https://ror.org/01hrwg648 Avon Wildlife Trust'),
(66209, 'https://ror.org/03ydpmt51', 'no_lang_code', 1, 'https://ror.org/03ydpmt51 ffei (United Kingdom)'),
(66210, 'https://ror.org/05kvfm871', 'no_lang_code', 1, 'https://ror.org/05kvfm871 Fibercore (United Kingdom)'),
(66211, 'https://ror.org/022tsv947', 'no_lang_code', 1, 'https://ror.org/022tsv947 Fiberight (United Kingdom)'),
(66212, 'https://ror.org/01y6x9f04', 'no_lang_code', 1, 'https://ror.org/01y6x9f04 ColVisTec (Germany)'),
(66213, 'https://ror.org/04n99ng06', 'no_lang_code', 1, 'https://ror.org/04n99ng06 eLearning Studios (United Kingdom)'),
(66214, 'https://ror.org/04eacrz46', 'en', 1, 'https://ror.org/04eacrz46 Eversole Associates'),
(66215, 'https://ror.org/009bb4304', 'no_lang_code', 1, 'https://ror.org/009bb4304 Electricity North West (United Kingdom)'),
(66216, 'https://ror.org/03zw9ym67', 'no_lang_code', 1, 'https://ror.org/03zw9ym67 Electricity Storage Network (United Kingdom)'),
(66217, 'https://ror.org/026hfx847', 'no_lang_code', 1, 'https://ror.org/026hfx847 Electrosonic (United Kingdom)'),
(66218, 'https://ror.org/04hz7m473', 'no_lang_code', 1, 'https://ror.org/04hz7m473 Evonik (Switzerland)'),
(66219, 'https://ror.org/058y6z954', 'no_lang_code', 1, 'https://ror.org/058y6z954 Exagenica (United Kingdom)'),
(66220, 'https://ror.org/00zyzhx45', 'no_lang_code', 1, 'https://ror.org/00zyzhx45 ELG Carbon Fibre (United Kingdom)'),
(66221, 'https://ror.org/00myv8y06', 'no_lang_code', 1, 'https://ror.org/00myv8y06 Excivion (United Kingdom)'),
(66222, 'https://ror.org/001dvnn52', 'en', 1, 'https://ror.org/001dvnn52 Financial Conduct Authority'),
(66223, 'https://ror.org/00rm5gm86', 'en', 1, 'https://ror.org/00rm5gm86 Exemplar Associates'),
(66224, 'https://ror.org/00t0bdg44', 'no_lang_code', 1, 'https://ror.org/00t0bdg44 Exosect Enabling Technologies'),
(66225, 'https://ror.org/00xts7a11', 'no_lang_code', 1, 'https://ror.org/00xts7a11 Elisha Systems (United Kingdom)'),
(66226, 'https://ror.org/01fsnxq70', 'no_lang_code', 1, 'https://ror.org/01fsnxq70 Elite Antennas (United Kingdom)'),
(66227, 'https://ror.org/007nzgd38', 'no_lang_code', 1, 'https://ror.org/007nzgd38 Expedition (United Kingdom)'),
(66228, 'https://ror.org/00y2naf12', 'no_lang_code', 1, 'https://ror.org/00y2naf12 Firesouls (United Kingdom)'),
(66229, 'https://ror.org/04dtdfx84', 'no_lang_code', 1, 'https://ror.org/04dtdfx84 Exploristics (United Kingdom)'),
(66230, 'https://ror.org/018caxa54', 'en', 1, 'https://ror.org/018caxa54 Embody Orthopaedic'),
(66231, 'https://ror.org/00dj3pn18', 'no_lang_code', 1, 'https://ror.org/00dj3pn18 ExpreS2ion Biotechnologies (Denmark)'),
(66232, 'https://ror.org/01kstph72', 'no_lang_code', 1, 'https://ror.org/01kstph72 Emotech (United Kingdom)'),
(66233, 'https://ror.org/053sg5d59', 'no_lang_code', 1, 'https://ror.org/053sg5d59 Arconic (United Kingdom)'),
(66234, 'https://ror.org/04khvmp61', 'no_lang_code', 1, 'https://ror.org/04khvmp61 Fanuc (United Kingdom)'),
(66235, 'https://ror.org/026sr2a55', 'no_lang_code', 1, 'https://ror.org/026sr2a55 Encounters Arts (United Kingdom)'),
(66236, 'https://ror.org/00jg3eb36', 'en', 1, 'https://ror.org/00jg3eb36 Fischer Family Trust'),
(66237, 'https://ror.org/02zty9d43', 'en', 1, 'https://ror.org/02zty9d43 FAO/IAEA Agriculture and Biotechnology Laboratories'),
(66238, 'https://ror.org/027k9ac11', 'en', 1, 'https://ror.org/027k9ac11 Energy Networks Association'),
(66239, 'https://ror.org/05b0zb254', 'no_lang_code', 1, 'https://ror.org/05b0zb254 Far (United Kingdom)'),
(66240, 'https://ror.org/01jajf911', 'en', 1, 'https://ror.org/01jajf911 Energy Research Partnership'),
(66241, 'https://ror.org/01s8ycx98', 'en', 1, 'https://ror.org/01s8ycx98 Flatpack Film Festival'),
(66242, 'https://ror.org/01ahgf011', 'en', 1, 'https://ror.org/01ahgf011 Energy Systems Catapult'),
(66243, 'https://ror.org/02m4v1f10', 'no_lang_code', 1, 'https://ror.org/02m4v1f10 Energy Transitions (United Kingdom)'),
(66244, 'https://ror.org/04rxxfz69', 'en', 1, 'https://ror.org/04rxxfz69 Genomics England'),
(66245, 'https://ror.org/02vy6fy03', 'no_lang_code', 1, 'https://ror.org/02vy6fy03 GeoCento (United Kingdom)'),
(66246, 'https://ror.org/00rn0j915', 'no_lang_code', 1, 'https://ror.org/00rn0j915 Geo Green Power (United Kingdom)'),
(66247, 'https://ror.org/01085m037', 'no_lang_code', 1, 'https://ror.org/01085m037 Geolang (United Kingdom)'),
(66248, 'https://ror.org/00x4jvm44', 'no_lang_code', 1, 'https://ror.org/00x4jvm44 Flock (United Kingdom)'),
(66249, 'https://ror.org/059twtp92', 'no_lang_code', 1, 'https://ror.org/059twtp92 Entropea Labs (United Kingdom)'),
(66250, 'https://ror.org/05b887v59', 'no_lang_code', 1, 'https://ror.org/05b887v59 Flowgroup (United Kingdom)'),
(66251, 'https://ror.org/00bsgdw42', 'no_lang_code', 1, 'https://ror.org/00bsgdw42 Geomatic Ventures (United Kingdom)'),
(66252, 'https://ror.org/046nzts54', 'no_lang_code', 1, 'https://ror.org/046nzts54 Environmental Monitoring Solutions (United Kingdom)'),
(66253, 'https://ror.org/01ygra721', 'no_lang_code', 1, 'https://ror.org/01ygra721 Environmental Process Systems (United Kingdom)'),
(66254, 'https://ror.org/05wjcp323', 'no_lang_code', 1, 'https://ror.org/05wjcp323 Enza Zaden (Netherlands)'),
(66255, 'https://ror.org/03t2ahc57', 'no_lang_code', 1, 'https://ror.org/03t2ahc57 Eozone Group (United Kingdom)'),
(66256, 'https://ror.org/01gybxp05', 'no_lang_code', 1, 'https://ror.org/01gybxp05 Emteq (United Kingdom)'),
(66257, 'https://ror.org/04gf2dg91', 'no_lang_code', 1, 'https://ror.org/04gf2dg91 Epicardio (United Kingdom)'),
(66258, 'https://ror.org/00p2s1h75', 'en', 1, 'https://ror.org/00p2s1h75 Equality and Human Rights Commission'),
(66259, 'https://ror.org/0232zj786', 'no_lang_code', 1, 'https://ror.org/0232zj786 Focus Innovation (United Kingdom)'),
(66260, 'https://ror.org/01khbav88', 'no_lang_code', 1, 'https://ror.org/01khbav88 Getech (United Kingdom)'),
(66261, 'https://ror.org/03ww67x72', 'no_lang_code', 1, 'https://ror.org/03ww67x72 FlyingBinary (United Kingdom)'),
(66262, 'https://ror.org/02ghdcm41', 'en', 1, 'https://ror.org/02ghdcm41 Man Up Campaign'),
(66263, 'https://ror.org/02hp59b61', 'no_lang_code', 1, 'https://ror.org/02hp59b61 Folium Optics (United Kingdom)'),
(66264, 'https://ror.org/04cpcxa22', 'no_lang_code', 1, 'https://ror.org/04cpcxa22 Equipe Group (United Kingdom)'),
(66265, 'https://ror.org/028yfvv72', 'no_lang_code', 1, 'https://ror.org/028yfvv72 Equipmake (United Kingdom)'),
(66266, 'https://ror.org/04h2nqb04', 'en', 1, 'https://ror.org/04h2nqb04 Food Standards Scotland Inbhe-Bidhe Alba'),
(66267, 'https://ror.org/004q1d440', 'no_lang_code', 1, 'https://ror.org/004q1d440 HEL Group (United Kingdom)'),
(66268, 'https://ror.org/02f1ve384', 'no_lang_code', 1, 'https://ror.org/02f1ve384 Helia Photonics (United Kingdom)'),
(66269, 'https://ror.org/02888dy92', 'en', 1, 'https://ror.org/02888dy92 HelpAge International'),
(66270, 'https://ror.org/03pttjv50', 'en', 1, 'https://ror.org/03pttjv50 Glamorgan Archives'),
(66271, 'https://ror.org/059zjse65', 'en', 1, 'https://ror.org/059zjse65 Glasgow Housing Association'),
(66272, 'https://ror.org/0427ccd45', 'no_lang_code', 1, 'https://ror.org/0427ccd45 Forge (United Kingdom)'),
(66273, 'https://ror.org/05k1bk987', 'no_lang_code', 1, 'https://ror.org/05k1bk987 Hiflux (United Kingdom)'),
(66274, 'https://ror.org/05w1w8291', 'en', 1, 'https://ror.org/05w1w8291 High Peak Community Arts'),
(66275, 'https://ror.org/001kca336', 'no_lang_code', 1, 'https://ror.org/001kca336 Encirc (United Kingdom)'),
(66276, 'https://ror.org/053w2fj59', 'en', 1, 'https://ror.org/053w2fj59 Glass-House Community Led Design'),
(66277, 'https://ror.org/03rfc8789', 'en', 1, 'https://ror.org/03rfc8789 Foundation for Art and Creative Technology'),
(66278, 'https://ror.org/04ekj9p57', 'no_lang_code', 1, 'https://ror.org/04ekj9p57 GlenDimplex (United Kingdom)'),
(66279, 'https://ror.org/04yajxs70', 'en', 1, 'https://ror.org/04yajxs70 Frank P Matthews'),
(66280, 'https://ror.org/04c5hmr86', 'no_lang_code', 1, 'https://ror.org/04c5hmr86 Highway Resource Solutions (United Kingdom)'),
(66281, 'https://ror.org/038smd132', 'no_lang_code', 1, 'https://ror.org/038smd132 HiLight Semiconductor (United Kingdom)'),
(66282, 'https://ror.org/03eh9sb92', 'en', 1, 'https://ror.org/03eh9sb92 Historians Against Slavery'),
(66283, 'https://ror.org/057nkx415', 'no_lang_code', 1, 'https://ror.org/057nkx415 Historic Futures (United Kingdom)'),
(66284, 'https://ror.org/0096nz963', 'en', 1, 'https://ror.org/0096nz963 The Heritage Alliance'),
(66285, 'https://ror.org/05e9zkt34', 'en', 1, 'https://ror.org/05e9zkt34 Freshfields Bruckhaus Deringer'),
(66286, 'https://ror.org/00ztg7b72', 'en', 1, 'https://ror.org/00ztg7b72 Historical Association'),
(66287, 'https://ror.org/000n8h147', 'no_lang_code', 1, 'https://ror.org/000n8h147 Fripp Design (United Kingdom)'),
(66288, 'https://ror.org/01j82jb67', 'en', 1, 'https://ror.org/01j82jb67 Frontline Dance'),
(66289, 'https://ror.org/03nnrh396', 'no_lang_code', 1, 'https://ror.org/03nnrh396 Housing Quality Network (United Kingdom)'),
(66290, 'https://ror.org/02mag1e82', 'en', 1, 'https://ror.org/02mag1e82 Full Fact'),
(66291, 'https://ror.org/00etvy980', 'en', 1, 'https://ror.org/00etvy980 Gloucestershire Guild of Craftsmen'),
(66292, 'https://ror.org/03e3kzq14', 'no_lang_code', 1, 'https://ror.org/03e3kzq14 Hubbard Products (United Kingdom)'),
(66293, 'https://ror.org/02swqvf47', 'en', 1, 'https://ror.org/02swqvf47 PTEN Hamartoma Tumor Syndrome Foundation'),
(66294, 'https://ror.org/014d1nq39', 'en', 1, 'https://ror.org/014d1nq39 Hull History Centre'),
(66295, 'https://ror.org/02m7v0022', 'no_lang_code', 1, 'https://ror.org/02m7v0022 Fusion Innovations (United Kingdom)'),
(66296, 'https://ror.org/00dfz6605', 'en', 1, 'https://ror.org/00dfz6605 Future Transport Systems'),
(66297, 'https://ror.org/01ew95g57', 'no_lang_code', 1, 'https://ror.org/01ew95g57 Vir Biotechnology (Switzerland)'),
(66298, 'https://ror.org/04s5hmf73', 'en', 1, 'https://ror.org/04s5hmf73 The Hunterian'),
(66299, 'https://ror.org/05e7fdz72', 'no_lang_code', 1, 'https://ror.org/05e7fdz72 Futuregov (United Kingdom)'),
(66300, 'https://ror.org/03yqhkg72', 'no_lang_code', 1, 'https://ror.org/03yqhkg72 Hy-Line (United States)'),
(66301, 'https://ror.org/0181g3j87', 'no_lang_code', 1, 'https://ror.org/0181g3j87 Hybrid Air Vehicles (United Kingdom)'),
(66302, 'https://ror.org/01rcev019', 'no_lang_code', 1, 'https://ror.org/01rcev019 Hybrid Instruments (United Kingdom)'),
(66303, 'https://ror.org/04hc0ps23', 'no_lang_code', 1, 'https://ror.org/04hc0ps23 G-Volution (United Kingdom)'),
(66304, 'https://ror.org/00d2q3517', 'no_lang_code', 1, 'https://ror.org/00d2q3517 Arcadis (United Kingdom)'),
(66305, 'https://ror.org/04rv2he23', 'no_lang_code', 1, 'https://ror.org/04rv2he23 G''s Fresh (United Kingdom)'),
(66306, 'https://ror.org/036vxpt10', 'en', 1, 'https://ror.org/036vxpt10 Gama (United Kingdom)'),
(66307, 'https://ror.org/00yhnb286', 'no_lang_code', 1, 'https://ror.org/00yhnb286 Gnosys (United Kingdom)'),
(66308, 'https://ror.org/01h527v58', 'en', 1, 'https://ror.org/01h527v58 GBS Leiden'),
(66309, 'https://ror.org/01bax9607', 'no_lang_code', 1, 'https://ror.org/01bax9607 Hypha Discovery (United Kingdom)'),
(66310, 'https://ror.org/05e0we980', 'no_lang_code', 1, 'https://ror.org/05e0we980 Good Homes Alliance (United Kingdom)'),
(66311, 'https://ror.org/04kpqtt03', 'no_lang_code', 1, 'https://ror.org/04kpqtt03 i3D Robotics (United Kingdom)'),
(66312, 'https://ror.org/02c5w4v13', 'en', 1, 'https://ror.org/02c5w4v13 Gateshead Council'),
(66313, 'https://ror.org/05cg6gz18', 'no_lang_code', 1, 'https://ror.org/05cg6gz18 Ibex Innovations (United Kingdom)'),
(66314, 'https://ror.org/02vh2ts72', 'no_lang_code', 1, 'https://ror.org/02vh2ts72 Goodwin (United Kingdom)'),
(66315, 'https://ror.org/024bc3e07', 'no_lang_code', 1, 'https://ror.org/024bc3e07 Google (United Kingdom)'),
(66316, 'https://ror.org/002ywyv05', 'no_lang_code', 1, 'https://ror.org/002ywyv05 Icax (United Kingdom)'),
(66317, 'https://ror.org/032wy5y42', 'no_lang_code', 1, 'https://ror.org/032wy5y42 Innovative Cryogenic Engineering (United Kingdom)'),
(66318, 'https://ror.org/039xg1481', 'no_lang_code', 1, 'https://ror.org/039xg1481 Gateway (United Kingdom)'),
(66319, 'https://ror.org/04xe4ne75', 'en', 1, 'https://ror.org/04xe4ne75 Gouvernement de Maurice Government of Mauritius'),
(66320, 'https://ror.org/027g9mf44', 'en', 1, 'https://ror.org/027g9mf44 Government of the Philippines'),
(66321, 'https://ror.org/04jf04g79', 'en', 1, 'https://ror.org/04jf04g79 International Foundation for Integrated Care'),
(66322, 'https://ror.org/02jwva620', 'no_lang_code', 1, 'https://ror.org/02jwva620 Gelexir Healthcare (United Kingdom)'),
(66323, 'https://ror.org/00wrskr85', 'no_lang_code', 1, 'https://ror.org/00wrskr85 Igeolise (United Kingdom)'),
(66324, 'https://ror.org/0222rn292', 'no_lang_code', 1, 'https://ror.org/0222rn292 Hypetex (United Kingdom)'),
(66325, 'https://ror.org/003f9k191', 'en', 1, 'https://ror.org/003f9k191 Gem Arts'),
(66326, 'https://ror.org/01v7ngj48', 'en', 1, 'https://ror.org/01v7ngj48 Ikon Gallery'),
(66327, 'https://ror.org/0111grw10', 'no_lang_code', 1, 'https://ror.org/0111grw10 Graphitene (United Kingdom)'),
(66328, 'https://ror.org/03sbjj951', 'no_lang_code', 1, 'https://ror.org/03sbjj951 Gravitricity (United Kingdom)'),
(66329, 'https://ror.org/00jtr7j56', 'no_lang_code', 1, 'https://ror.org/00jtr7j56 Boris FX (United Kingdom)'),
(66330, 'https://ror.org/052ww7470', 'no_lang_code', 1, 'https://ror.org/052ww7470 General Mills (United Kingdom)'),
(66331, 'https://ror.org/00gssft54', 'no_lang_code', 1, 'https://ror.org/00gssft54 Invicro (United Kingdom)'),
(66332, 'https://ror.org/001x6t991', 'no_lang_code', 1, 'https://ror.org/001x6t991 Immaterial Labs (United Kingdom)'),
(66333, 'https://ror.org/01bat0e72', 'no_lang_code', 1, 'https://ror.org/01bat0e72 Impact Solutions (United Kingdom)'),
(66334, 'https://ror.org/03fxjr266', 'no_lang_code', 1, 'https://ror.org/03fxjr266 Impression Technologies (United Kingdom)'),
(66335, 'https://ror.org/014cnvs43', 'en', 1, 'https://ror.org/014cnvs43 Improvement Service'),
(66336, 'https://ror.org/03agtxq40', 'en', 1, 'https://ror.org/03agtxq40 Genetic Factors for Osteoporosis Consortium'),
(66337, 'https://ror.org/04nhsym74', 'no_lang_code', 1, 'https://ror.org/04nhsym74 Avatr (United Kingdom)'),
(66338, 'https://ror.org/04w38db16', 'no_lang_code', 1, 'https://ror.org/04w38db16 Inca Digital Printers (United Kingdom)'),
(66339, 'https://ror.org/02y5xjh56', 'en', 1, 'https://ror.org/02y5xjh56 International Neuroinformatics Coordinating Facility'),
(66340, 'https://ror.org/03ve00c59', 'no_lang_code', 1, 'https://ror.org/03ve00c59 Industrial Light & Magic (United Kingdom)'),
(66341, 'https://ror.org/033sqvz45', 'no_lang_code', 1, 'https://ror.org/033sqvz45 Industrial Phycology (United Kingdom)'),
(66342, 'https://ror.org/00p7fct09', 'no_lang_code', 1, 'https://ror.org/00p7fct09 Oxford Drug Design (United Kingdom)'),
(66343, 'https://ror.org/030nd5313', 'no_lang_code', 1, 'https://ror.org/030nd5313 Coventry (United Kingdom)'),
(66344, 'https://ror.org/059kpjd26', 'en', 1, 'https://ror.org/059kpjd26 Greater Shankill Partnership'),
(66345, 'https://ror.org/01qgwck47', 'en', 1, 'https://ror.org/01qgwck47 Green Alliance'),
(66346, 'https://ror.org/03kjkfb75', 'no_lang_code', 1, 'https://ror.org/03kjkfb75 It’s Fresh (United Kingdom)'),
(66347, 'https://ror.org/044w2a375', 'no_lang_code', 1, 'https://ror.org/044w2a375 Inspection Technologies (United Kingdom)'),
(66348, 'https://ror.org/04f3qs775', 'no_lang_code', 1, 'https://ror.org/04f3qs775 iThera Medical (Germany)'),
(66349, 'https://ror.org/01kfzv427', 'no_lang_code', 1, 'https://ror.org/01kfzv427 Green Running (United Kingdom)'),
(66350, 'https://ror.org/03z7s4z65', 'en', 1, 'https://ror.org/03z7s4z65 Inspiring Scotland'),
(66351, 'https://ror.org/00153ex82', 'no_lang_code', 1, 'https://ror.org/00153ex82 Socotec (United Kingdom)'),
(66352, 'https://ror.org/05wwj0f18', 'no_lang_code', 1, 'https://ror.org/05wwj0f18 Greengineering (United Kingdom)'),
(66353, 'https://ror.org/033sdmz09', 'no_lang_code', 1, 'https://ror.org/033sdmz09 ITS (United Kingdom)'),
(66354, 'https://ror.org/03xkqe691', 'no_lang_code', 1, 'https://ror.org/03xkqe691 Sweco (United Kingdom)'),
(66355, 'https://ror.org/01sxmq816', 'en', 1, 'https://ror.org/01sxmq816 J.P. Morgan'),
(66356, 'https://ror.org/02v72s867', 'no_lang_code', 1, 'https://ror.org/02v72s867 Jasco (United Kingdom)'),
(66357, 'https://ror.org/05g8xd728', 'en', 1, 'https://ror.org/05g8xd728 Jason Burges Studio'),
(66358, 'https://ror.org/00gef5g33', 'en', 1, 'https://ror.org/00gef5g33 Center for Beta Cell Therapy in Diabetes'),
(66359, 'https://ror.org/041ga0r52', 'no_lang_code', 1, 'https://ror.org/041ga0r52 GyroGear (United Kingdom)'),
(66360, 'https://ror.org/00erz7p38', 'no_lang_code', 1, 'https://ror.org/00erz7p38 Jellagen (United Kingdom)'),
(66361, 'https://ror.org/01qf53178', 'no_lang_code', 1, 'https://ror.org/01qf53178 Jellybooks (United Kingdom)'),
(66362, 'https://ror.org/04zjdjq28', 'no_lang_code', 1, 'https://ror.org/04zjdjq28 Hutchinson (United Kingdom)'),
(66363, 'https://ror.org/00wtwe162', 'en', 1, 'https://ror.org/00wtwe162 John Dora Consulting'),
(66364, 'https://ror.org/01f85g151', 'en', 1, 'https://ror.org/01f85g151 Creative Wick'),
(66365, 'https://ror.org/01rkf4y25', 'no_lang_code', 1, 'https://ror.org/01rkf4y25 Johnson Matthey Battery Systems (United Kingdom)'),
(66366, 'https://ror.org/0576zak10', 'no_lang_code', 1, 'https://ror.org/0576zak10 Intelligent Health (United Kingdom)'),
(66367, 'https://ror.org/00hd2sp32', 'no_lang_code', 1, 'https://ror.org/00hd2sp32 IntelliHep (United Kingdom)'),
(66368, 'https://ror.org/00we2ka15', 'no_lang_code', 1, 'https://ror.org/00we2ka15 Haemair (United Kingdom)'),
(66369, 'https://ror.org/02278he04', 'no_lang_code', 1, 'https://ror.org/02278he04 JSR Farming (United Kingdom)'),
(66370, 'https://ror.org/01s6fxv18', 'no_lang_code', 1, 'https://ror.org/01s6fxv18 Interactive Scientific (United Kingdom)'),
(66371, 'https://ror.org/03tfwa394', 'en', 1, 'https://ror.org/03tfwa394 Hampshire Constabulary'),
(66372, 'https://ror.org/05bsykf80', 'no_lang_code', 1, 'https://ror.org/05bsykf80 Hyperdrive Innovation (United Kingdom)'),
(66373, 'https://ror.org/01537rr61', 'en', 1, 'https://ror.org/01537rr61 JustGiving'),
(66374, 'https://ror.org/01d92aq70', 'no_lang_code', 1, 'https://ror.org/01d92aq70 InterDigital (United Kingdom)'),
(66375, 'https://ror.org/01d070g46', 'en', 1, 'https://ror.org/01d070g46 Haringey Council'),
(66376, 'https://ror.org/049kk5y54', 'en', 1, 'https://ror.org/049kk5y54 Siobhan Davies Studios'),
(66377, 'https://ror.org/0578b5015', 'no_lang_code', 1, 'https://ror.org/0578b5015 Indestructible Paint (United Kingdom)'),
(66378, 'https://ror.org/00qtezm52', 'no_lang_code', 1, 'https://ror.org/00qtezm52 HealthUnlocked (United Kingdom)'),
(66379, 'https://ror.org/00n6y9334', 'no_lang_code', 1, 'https://ror.org/00n6y9334 Kanichi (United Kingdom)'),
(66380, 'https://ror.org/05gsrqd02', 'en', 1, 'https://ror.org/05gsrqd02 International Crisis Group'),
(66381, 'https://ror.org/01ym1hq42', 'en', 1, 'https://ror.org/01ym1hq42 Federation of Environmental Trade Associations'),
(66382, 'https://ror.org/043tdpj13', 'no_lang_code', 1, 'https://ror.org/043tdpj13 Karm Research Group (United Kingdom)'),
(66383, 'https://ror.org/04a91ra66', 'no_lang_code', 1, 'https://ror.org/04a91ra66 Heathrow Airport Holdings (United Kingdom)'),
(66384, 'https://ror.org/0158zgz03', 'en', 1, 'https://ror.org/0158zgz03 International Longevity Centre'),
(66385, 'https://ror.org/01y659x67', 'no_lang_code', 1, 'https://ror.org/01y659x67 LabGenius (United Kingdom)'),
(66386, 'https://ror.org/01vr2v714', 'no_lang_code', 1, 'https://ror.org/01vr2v714 International Moisture Analysers (United Kingdom)'),
(66387, 'https://ror.org/0381np041', 'en', 1, 'https://ror.org/0381np041 Kent and Medway NHS and Social Care Partnership Trust'),
(66388, 'https://ror.org/03dvyec47', 'no_lang_code', 1, 'https://ror.org/03dvyec47 Lambda Films (United Kingdom)'),
(66389, 'https://ror.org/03kk81v06', 'en', 1, 'https://ror.org/03kk81v06 International Slavery Museum'),
(66390, 'https://ror.org/05c4ffc05', 'en', 1, 'https://ror.org/05c4ffc05 Lancashire Fire and Rescue Service'),
(66391, 'https://ror.org/04ymawg89', 'no_lang_code', 1, 'https://ror.org/04ymawg89 Ketonex (United Kingdom)'),
(66392, 'https://ror.org/037nsm974', 'no_lang_code', 1, 'https://ror.org/037nsm974 Landcatch (United Kingdom)'),
(66393, 'https://ror.org/01yr36w05', 'no_lang_code', 1, 'https://ror.org/01yr36w05 Key Organics (United Kingdom)'),
(66394, 'https://ror.org/04g81mm64', 'no_lang_code', 1, 'https://ror.org/04g81mm64 Keysight Technologies (United Kingdom)'),
(66395, 'https://ror.org/01504bq84', 'no_lang_code', 1, 'https://ror.org/01504bq84 Inventya (United Kingdom)'),
(66396, 'https://ror.org/02w4f0s33', 'no_lang_code', 1, 'https://ror.org/02w4f0s33 Larkfleet (United Kingdom)'),
(66397, 'https://ror.org/03vhfjx86', 'no_lang_code', 1, 'https://ror.org/03vhfjx86 Kimal (United Kingdom)'),
(66398, 'https://ror.org/05kt30h71', 'no_lang_code', 1, 'https://ror.org/05kt30h71 Laser 2000 (United Kingdom)'),
(66399, 'https://ror.org/0553r0192', 'no_lang_code', 1, 'https://ror.org/0553r0192 Ionix Advanced Technologies (United Kingdom)'),
(66400, 'https://ror.org/01pk4vy23', 'no_lang_code', 1, 'https://ror.org/01pk4vy23 Novanta (United Kingdom)'),
(66401, 'https://ror.org/043axjc63', 'no_lang_code', 1, 'https://ror.org/043axjc63 Kingfisher (United Kingdom)'),
(66402, 'https://ror.org/04dnw3t97', 'no_lang_code', 1, 'https://ror.org/04dnw3t97 Ionoptika (United Kingdom)'),
(66403, 'https://ror.org/04vncya87', 'no_lang_code', 1, 'https://ror.org/04vncya87 Laterit Productions (France)'),
(66404, 'https://ror.org/018dzfz24', 'no_lang_code', 1, 'https://ror.org/018dzfz24 KiWi Power (United Kingdom)'),
(66405, 'https://ror.org/05j1c1r74', 'no_lang_code', 1, 'https://ror.org/05j1c1r74 Ionotec (United Kingdom)'),
(66406, 'https://ror.org/05ndtje96', 'no_lang_code', 1, 'https://ror.org/05ndtje96 LaVision (United Kingdom)'),
(66407, 'https://ror.org/016frx827', 'en', 1, 'https://ror.org/016frx827 Knowledge Centre for Materials Chemistry'),
(66408, 'https://ror.org/039vmy627', 'en', 1, 'https://ror.org/039vmy627 Lawn Tennis Association'),
(66409, 'https://ror.org/05f71tw16', 'no_lang_code', 1, 'https://ror.org/05f71tw16 Ipsos (United Kingdom)'),
(66410, 'https://ror.org/00zy1tg06', 'en', 1, 'https://ror.org/00zy1tg06 Learning through Landscapes'),
(66411, 'https://ror.org/04cqfv685', 'no_lang_code', 1, 'https://ror.org/04cqfv685 Leeds City Region Enterprise Partnership (United Kingdom)'),
(66412, 'https://ror.org/01jpa7r59', 'en', 1, 'https://ror.org/01jpa7r59 West Africa Civil Society Institute'),
(66413, 'https://ror.org/03cvbjc43', 'it', 1, 'https://ror.org/03cvbjc43 I.R.C.C.S. Oasi Maria SS'),
(66414, 'https://ror.org/00dd2be17', 'no_lang_code', 1, 'https://ror.org/00dd2be17 Kite Entertainment (Ireland)'),
(66415, 'https://ror.org/01fygw054', 'en', 1, 'https://ror.org/01fygw054 Lifetime Lab'),
(66416, 'https://ror.org/01aaarj75', 'no_lang_code', 1, 'https://ror.org/01aaarj75 Baboro'),
(66417, 'https://ror.org/01sxvbm95', 'no_lang_code', 1, 'https://ror.org/01sxvbm95 10X Genomics (United States)'),
(66418, 'https://ror.org/04724nx69', 'en', 1, 'https://ror.org/04724nx69 Comhairle Contae Mhaigh Eo Mayo County Council'),
(66419, 'https://ror.org/02hw94g08', 'no_lang_code', 1, 'https://ror.org/02hw94g08 Ballyhoura Development (Ireland)'),
(66420, 'https://ror.org/03h8vnd21', 'no_lang_code', 1, 'https://ror.org/03h8vnd21 Mind the Gap Films (Ireland)'),
(66421, 'https://ror.org/04mfdcn64', 'en', 1, 'https://ror.org/04mfdcn64 Comhairle Contae Mhuineacháin Monaghan County Council'),
(66422, 'https://ror.org/02qd73916', 'no_lang_code', 1, 'https://ror.org/02qd73916 Brigit''s Garden'),
(66423, 'https://ror.org/04vsybf69', 'no_lang_code', 1, 'https://ror.org/04vsybf69 ADGS (Qatar)'),
(66424, 'https://ror.org/04q9fd590', 'en', 1, 'https://ror.org/04q9fd590 British Council'),
(66425, 'https://ror.org/04hxfpp72', 'no_lang_code', 1, 'https://ror.org/04hxfpp72 Ocean FM (Ireland)'),
(66426, 'https://ror.org/045wfpr34', 'en', 1, 'https://ror.org/045wfpr34 Comhairle Cathrach Chorcaí Cork City Council'),
(66427, 'https://ror.org/00q9egp83', 'no_lang_code', 1, 'https://ror.org/00q9egp83 Rough Magic Theatre (Ireland)'),
(66428, 'https://ror.org/05gkt5054', 'no_lang_code', 1, 'https://ror.org/05gkt5054 Agilent Technologies (Switzerland)'),
(66429, 'https://ror.org/03g7px163', 'en', 1, 'https://ror.org/03g7px163 Blackrock Castle Observatory');
INSERT INTO `rors` VALUES
(66430, 'https://ror.org/0590nw084', 'no_lang_code', 1, 'https://ror.org/0590nw084 Crossing the Line (Ireland)'),
(66431, 'https://ror.org/03czddz67', 'en', 1, 'https://ror.org/03czddz67 Gasóga na hÉireann Scouting Ireland'),
(66432, 'https://ror.org/04hqxxp09', 'en', 1, 'https://ror.org/04hqxxp09 ICS Skills'),
(66433, 'https://ror.org/01hm87p08', 'no_lang_code', 1, 'https://ror.org/01hm87p08 Stop. Watch Television (Ireland)'),
(66434, 'https://ror.org/05bz3n751', 'en', 1, 'https://ror.org/05bz3n751 Fighting Blindness'),
(66435, 'https://ror.org/04gea5y49', 'en', 1, 'https://ror.org/04gea5y49 Cork’s Technology Network'),
(66436, 'https://ror.org/00qvnkt09', 'no_lang_code', 1, 'https://ror.org/00qvnkt09 True Films (Ireland)'),
(66437, 'https://ror.org/026z05h78', 'no_lang_code', 1, 'https://ror.org/026z05h78 Shinawil (Ireland)'),
(66438, 'https://ror.org/01fgam068', 'en', 1, 'https://ror.org/01fgam068 Rediscovery Centre'),
(66439, 'https://ror.org/055jj1035', 'no_lang_code', 1, 'https://ror.org/055jj1035 Tile Films (Ireland)'),
(66440, 'https://ror.org/038t6hw46', 'en', 1, 'https://ror.org/038t6hw46 Al Emadi Hospital مستشفى العمادي'),
(66441, 'https://ror.org/04q50hn29', 'no_lang_code', 1, 'https://ror.org/04q50hn29 Whipsmart Media (Ireland)'),
(66442, 'https://ror.org/05wp9f048', 'en', 1, 'https://ror.org/05wp9f048 Al Kawther Secondary Independent School for Girls مدرسة الكوثر الثانوية للبنات'),
(66443, 'https://ror.org/03awp8j69', 'en', 1, 'https://ror.org/03awp8j69 Galway Education Centre'),
(66444, 'https://ror.org/0020kar26', 'en', 1, 'https://ror.org/0020kar26 Galway Film Centre'),
(66445, 'https://ror.org/01zgghk09', 'no_lang_code', 1, 'https://ror.org/01zgghk09 CoderDojo Foundation'),
(66446, 'https://ror.org/02yaqge44', 'en', 1, 'https://ror.org/02yaqge44 I Wish'),
(66447, 'https://ror.org/043d97677', 'en', 1, 'https://ror.org/043d97677 Junior Achievement'),
(66448, 'https://ror.org/04gpq6y25', 'en', 1, 'https://ror.org/04gpq6y25 Kildare Education Centre'),
(66449, 'https://ror.org/049ve2f77', 'no_lang_code', 1, 'https://ror.org/049ve2f77 Al Sulaiteen Agricultural & Industrial Complex (Qatar)'),
(66450, 'https://ror.org/05d8tdk47', 'en', 1, 'https://ror.org/05d8tdk47 Doha International Center for Interfaith Dialogue مركز الدوحة الدولي لحوار الأديان'),
(66451, 'https://ror.org/05cbc2019', 'no_lang_code', 1, 'https://ror.org/05cbc2019 Al-Wataniya Concrete (Qatar)'),
(66452, 'https://ror.org/024t3b967', 'no_lang_code', 1, 'https://ror.org/024t3b967 TQ Pharma (Jordan) شركة التقدم للصناعات الدوائية'),
(66453, 'https://ror.org/05penet29', 'en', 1, 'https://ror.org/05penet29 Dr. Humeira Badsha Medical Center'),
(66454, 'https://ror.org/04k31nk35', 'en', 1, 'https://ror.org/04k31nk35 American International School in Egypt المدرسة الامريكية الدولية'),
(66455, 'https://ror.org/02ard0m30', 'en', 1, 'https://ror.org/02ard0m30 American School of Doha المدرسة الأمريكية بالدوحة'),
(66456, 'https://ror.org/00xxrde38', 'no_lang_code', 1, 'https://ror.org/00xxrde38 Educated Change (United Kingdom)'),
(66457, 'https://ror.org/010f98v62', 'no_lang_code', 1, 'https://ror.org/010f98v62 Encontech (Netherlands)'),
(66458, 'https://ror.org/04trmce08', 'no_lang_code', 1, 'https://ror.org/04trmce08 Energy Delivery Solutions (United States)'),
(66459, 'https://ror.org/0185gt671', 'en', 1, 'https://ror.org/0185gt671 The English Modern School'),
(66460, 'https://ror.org/02j29rq40', 'en', 1, 'https://ror.org/02j29rq40 Arab Medical Association Against Cancer الجمعية الطبية العربية لمكافحة السرطان'),
(66461, 'https://ror.org/02c67p367', 'no_lang_code', 1, 'https://ror.org/02c67p367 Array Information Technology (United States)'),
(66462, 'https://ror.org/04pxsa259', 'no_lang_code', 1, 'https://ror.org/04pxsa259 EpiGear (Australia)'),
(66463, 'https://ror.org/0045hhf36', 'no_lang_code', 1, 'https://ror.org/0045hhf36 Ashghal هيئة الأشغال العامة'),
(66464, 'https://ror.org/00pfnk039', 'no_lang_code', 1, 'https://ror.org/00pfnk039 ExxonMobil (Qatar) إكسون موبيل'),
(66465, 'https://ror.org/05txhgq68', 'en', 1, 'https://ror.org/05txhgq68 Vlaams Kenniscentrum Water Vlakwa'),
(66466, 'https://ror.org/02yzb5728', 'no_lang_code', 1, 'https://ror.org/02yzb5728 Awsaj Academy أكاديمية أوساج'),
(66467, 'https://ror.org/04bpz1v84', 'es', 1, 'https://ror.org/04bpz1v84 FC Barcelona'),
(66468, 'https://ror.org/01agawy76', 'no_lang_code', 1, 'https://ror.org/01agawy76 Beth Mardutho'),
(66469, 'https://ror.org/04w6b5d66', 'no_lang_code', 1, 'https://ror.org/04w6b5d66 Informatica Qatar (Qatar)'),
(66470, 'https://ror.org/0393akr92', 'no_lang_code', 1, 'https://ror.org/0393akr92 Buijs Advice and Consultancy (Netherlands)'),
(66471, 'https://ror.org/05fj2by39', 'en', 1, 'https://ror.org/05fj2by39 Cairnmillar Institute'),
(66472, 'https://ror.org/00bwzfm31', 'no_lang_code', 1, 'https://ror.org/00bwzfm31 Cascade Biosystems (United States)'),
(66473, 'https://ror.org/0301h4330', 'it', 1, 'https://ror.org/0301h4330 Federazione Medico Sportiva Italiana'),
(66474, 'https://ror.org/04a0env39', 'no_lang_code', 1, 'https://ror.org/04a0env39 Catalytic Innovations (United States)'),
(66475, 'https://ror.org/05wtd8w10', 'no_lang_code', 1, 'https://ror.org/05wtd8w10 CEG International (Qatar)'),
(66476, 'https://ror.org/02s48dm85', 'en', 1, 'https://ror.org/02s48dm85 Centre de Recherche en Numérique de Sfax Digital Research Centre of Sfax'),
(66477, 'https://ror.org/03ytyhv33', 'no_lang_code', 1, 'https://ror.org/03ytyhv33 Intel (United Arab Emirates)'),
(66478, 'https://ror.org/05xpjer51', 'en', 1, 'https://ror.org/05xpjer51 Centre for Arab Genomic Studies'),
(66479, 'https://ror.org/04km3ca65', 'no_lang_code', 1, 'https://ror.org/04km3ca65 Intercommunale Waterleidingsmaatschappij van Veurne-Ambacht Intermunicipal Water Company of Veurne-Craft (Belgium)'),
(66480, 'https://ror.org/04s69jg60', 'en', 1, 'https://ror.org/04s69jg60 International Organisation for Knowledge Economy and Enterprise Development'),
(66481, 'https://ror.org/04gtfsy04', 'en', 1, 'https://ror.org/04gtfsy04 Atlantic Environmental Research Center Centro de Investigaciones Medioambientales del Atlántico'),
(66482, 'https://ror.org/05g0b2873', 'no_lang_code', 1, 'https://ror.org/05g0b2873 Cogent (United Kingdom)'),
(66483, 'https://ror.org/0428w4157', 'no_lang_code', 1, 'https://ror.org/0428w4157 Change Agents (Australia)'),
(66484, 'https://ror.org/04vwkmg79', 'en', 1, 'https://ror.org/04vwkmg79 Child Development Center مركز تنمية الأطفال'),
(66485, 'https://ror.org/008f0n203', 'no_lang_code', 1, 'https://ror.org/008f0n203 Care UK (United Kingdom)'),
(66486, 'https://ror.org/00p544d65', 'no_lang_code', 1, 'https://ror.org/00p544d65 Cyclone Energy Group (United States)'),
(66487, 'https://ror.org/00tpb3x19', 'no_lang_code', 1, 'https://ror.org/00tpb3x19 Infrastructure Research & Development (Qatar)'),
(66488, 'https://ror.org/02erc6n26', 'no_lang_code', 1, 'https://ror.org/02erc6n26 Information Technology for Market Leadership (Greece)'),
(66489, 'https://ror.org/01cnxqz37', 'en', 1, 'https://ror.org/01cnxqz37 Jeddah Institute for Speech and Hearing مركز جدة للنطق والسمع'),
(66490, 'https://ror.org/057najf71', 'no_lang_code', 1, 'https://ror.org/057najf71 Kahramaa (Qatar)'),
(66491, 'https://ror.org/00aekg328', 'en', 1, 'https://ror.org/00aekg328 Global Dryland Alliance التحالف العالمي للأراضي الجافة'),
(66492, 'https://ror.org/01e80cj48', 'no_lang_code', 1, 'https://ror.org/01e80cj48 Gulf Drilling International (Qatar)'),
(66493, 'https://ror.org/054atdn20', 'en', 1, 'https://ror.org/054atdn20 King Abdullah Medical City مدينة الملك عبدالله الطبية'),
(66494, 'https://ror.org/0160gm722', 'en', 1, 'https://ror.org/0160gm722 Gulf English School مدرسة الخليج الانجليزيه'),
(66495, 'https://ror.org/03cmt3942', 'en', 1, 'https://ror.org/03cmt3942 National Museum New Delhi'),
(66496, 'https://ror.org/023fgyc14', 'no_lang_code', 1, 'https://ror.org/023fgyc14 Halliburton (Qatar)'),
(66497, 'https://ror.org/0072ngz93', 'no_lang_code', 1, 'https://ror.org/0072ngz93 Nectaerra'),
(66498, 'https://ror.org/00p6s4733', 'en', 1, 'https://ror.org/00p6s4733 Newton International School'),
(66499, 'https://ror.org/01s50gs59', 'no_lang_code', 1, 'https://ror.org/01s50gs59 North Oil Company (Qatar)'),
(66500, 'https://ror.org/01sph6713', 'en', 1, 'https://ror.org/01sph6713 The North South Institute'),
(66501, 'https://ror.org/03nwbtx86', 'no_lang_code', 1, 'https://ror.org/03nwbtx86 Libra Trading Company (Qatar)'),
(66502, 'https://ror.org/05w0gd052', 'en', 1, 'https://ror.org/05w0gd052 Mada Assistive Technology Centre مركز قطر للتكنلوجيا المساعدة مدى'),
(66503, 'https://ror.org/0221g4j08', 'no_lang_code', 1, 'https://ror.org/0221g4j08 OBERMEYER Planen + Beraten (Germany)'),
(66504, 'https://ror.org/00hhh2m32', 'no_lang_code', 1, 'https://ror.org/00hhh2m32 Hochtief (Qatar)'),
(66505, 'https://ror.org/03wyr0j06', 'no_lang_code', 1, 'https://ror.org/03wyr0j06 Iberdrola (Qatar)'),
(66506, 'https://ror.org/05v8ead08', 'no_lang_code', 1, 'https://ror.org/05v8ead08 Magaza (Qatar)'),
(66507, 'https://ror.org/01hy56d90', 'no_lang_code', 1, 'https://ror.org/01hy56d90 Marafeq (Qatar)'),
(66508, 'https://ror.org/026ajc257', 'no_lang_code', 1, 'https://ror.org/026ajc257 iHorizons (Qatar)'),
(66509, 'https://ror.org/02f59zk81', 'no_lang_code', 1, 'https://ror.org/02f59zk81 Occidental Petroleum (Qatar)'),
(66510, 'https://ror.org/028zc6k33', 'en', 1, 'https://ror.org/028zc6k33 Office of the Minister of State for Administrative Reform مكتب وزير الدولة لشؤون التنمية الإدارية'),
(66511, 'https://ror.org/05xxaa629', 'en', 1, 'https://ror.org/05xxaa629 Ministry of Culture and Sports وزارة الثقافه والرياضه'),
(66512, 'https://ror.org/03pmvdv44', 'no_lang_code', 1, 'https://ror.org/03pmvdv44 IDT Biologika (Germany)'),
(66513, 'https://ror.org/00q0cd663', 'no_lang_code', 1, 'https://ror.org/00q0cd663 Ooredoo (Qatar) أوريدو'),
(66514, 'https://ror.org/00znysx20', 'no_lang_code', 1, 'https://ror.org/00znysx20 Optim Design (United States)'),
(66515, 'https://ror.org/00g5s2979', 'en', 1, 'https://ror.org/00g5s2979 Ministry of Public Health وزارة الصحة العامة'),
(66516, 'https://ror.org/00xhxgs05', 'no_lang_code', 1, 'https://ror.org/00xhxgs05 Oryx Publishing and Advertising (Qatar)'),
(66517, 'https://ror.org/058bqqp10', 'no_lang_code', 1, 'https://ror.org/058bqqp10 Qatargas (Qatar)'),
(66518, 'https://ror.org/04zvt6r42', 'en', 1, 'https://ror.org/04zvt6r42 Outreach Scout Foundation'),
(66519, 'https://ror.org/03djtgh02', 'en', 1, 'https://ror.org/03djtgh02 Primary Health Care مؤسسة الرعاية الصحية الأولية'),
(66520, 'https://ror.org/04jstcr77', 'en', 1, 'https://ror.org/04jstcr77 Ministry of Transport and Communications وزارة المواصلات والاتصالات- المبنى الرئيسي'),
(66521, 'https://ror.org/0532vhk36', 'no_lang_code', 1, 'https://ror.org/0532vhk36 MODUS (Qatar)'),
(66522, 'https://ror.org/01jqa8y96', 'no_lang_code', 1, 'https://ror.org/01jqa8y96 Qatar Electricity & Water (Qatar)'),
(66523, 'https://ror.org/01ywkr738', 'en', 1, 'https://ror.org/01ywkr738 Prince Mohammad Bin Salman College of Business and Entrepreneurship كلية الأمير محمد بن سلمان للإدارة وريادة الأعمال'),
(66524, 'https://ror.org/02m9zj664', 'no_lang_code', 1, 'https://ror.org/02m9zj664 Quest Integrity (New Zealand)'),
(66525, 'https://ror.org/0362f0p45', 'en', 1, 'https://ror.org/0362f0p45 National Archives of India राष्ट्रीय अभिलेखागार'),
(66526, 'https://ror.org/05xg3zg64', 'no_lang_code', 1, 'https://ror.org/05xg3zg64 Sensory (United States)'),
(66527, 'https://ror.org/03sqtr018', 'no_lang_code', 1, 'https://ror.org/03sqtr018 Qatalum (Qatar)'),
(66528, 'https://ror.org/057kvja37', 'tr', 1, 'https://ror.org/057kvja37 TUBITAK BILGEM TÜBİTAK Bilişim ve Bilgi Güvenliği İleri Teknolojiler Araştırma Merkezi'),
(66529, 'https://ror.org/05n6r8r02', 'no_lang_code', 1, 'https://ror.org/05n6r8r02 Ukrainian Center of Environmental and Water Projects (Ukraine)'),
(66530, 'https://ror.org/01f83ya71', 'en', 1, 'https://ror.org/01f83ya71 Royal Society for Asian Affairs'),
(66531, 'https://ror.org/017vypx03', 'no_lang_code', 1, 'https://ror.org/017vypx03 Qatar Biobank قطر بيوبنك'),
(66532, 'https://ror.org/010eqta40', 'en', 1, 'https://ror.org/010eqta40 Qatar Computer Emergency Response Team'),
(66533, 'https://ror.org/00ackcm59', 'no_lang_code', 1, 'https://ror.org/00ackcm59 Construction Development (Qatar)'),
(66534, 'https://ror.org/049n5v408', 'en', 1, 'https://ror.org/049n5v408 Qatar Financial Centre Authority'),
(66535, 'https://ror.org/01wm2fy87', 'no_lang_code', 1, 'https://ror.org/01wm2fy87 Schlumberger (Qatar)'),
(66536, 'https://ror.org/03axtnh73', 'en', 1, 'https://ror.org/03axtnh73 Qatar Green Building Council'),
(66537, 'https://ror.org/005r9px72', 'no_lang_code', 1, 'https://ror.org/005r9px72 Qatar Mining (Qatar)'),
(66538, 'https://ror.org/01mj0je13', 'no_lang_code', 1, 'https://ror.org/01mj0je13 Shafallah Center مركز الشفلح'),
(66539, 'https://ror.org/049rajq70', 'en', 1, 'https://ror.org/049rajq70 Qatar Natural History Group'),
(66540, 'https://ror.org/02ps68973', 'no_lang_code', 1, 'https://ror.org/02ps68973 Vodafone (Qatar)'),
(66541, 'https://ror.org/03v5azw70', 'en', 1, 'https://ror.org/03v5azw70 Qatar Olympic Committee اللجنة الأولمبية القطرية'),
(66542, 'https://ror.org/05jzxm583', 'no_lang_code', 1, 'https://ror.org/05jzxm583 Williams (United Kingdom)'),
(66543, 'https://ror.org/02a3mcc29', 'en', 1, 'https://ror.org/02a3mcc29 Wiltshire and Swindon History Centre'),
(66544, 'https://ror.org/05t869972', 'no_lang_code', 1, 'https://ror.org/05t869972 Shell (Qatar)'),
(66545, 'https://ror.org/044d15d71', 'en', 1, 'https://ror.org/044d15d71 Qatar Tourism Authority الهيئة العامة للسياحة'),
(66546, 'https://ror.org/026xfzp73', 'no_lang_code', 1, 'https://ror.org/026xfzp73 Siemens (Qatar)'),
(66547, 'https://ror.org/03y5s5n06', 'no_lang_code', 1, 'https://ror.org/03y5s5n06 Smartec-Group (Egypt)'),
(66548, 'https://ror.org/0150d1t62', 'no_lang_code', 1, 'https://ror.org/0150d1t62 Spiretronic (Egypt)'),
(66549, 'https://ror.org/05f6z3f65', 'no_lang_code', 1, 'https://ror.org/05f6z3f65 Spiretronic (United States)'),
(66550, 'https://ror.org/01bt4t203', 'no_lang_code', 1, 'https://ror.org/01bt4t203 Synergation (United Kingdom)'),
(66551, 'https://ror.org/051d61326', 'no_lang_code', 1, 'https://ror.org/051d61326 Tata Consulting Engineers (Qatar)'),
(66552, 'https://ror.org/05bwm9830', 'en', 1, 'https://ror.org/05bwm9830 Telegraph Museum'),
(66553, 'https://ror.org/039grkz57', 'no_lang_code', 1, 'https://ror.org/039grkz57 The Behaviouralist (United Kingdom)'),
(66554, 'https://ror.org/04xpgws89', 'no_lang_code', 1, 'https://ror.org/04xpgws89 Toshiba Mitsubishi-Electric Industrial Systems Corporation (Japan) 東芝三菱電機産業システム株式会社'),
(66555, 'https://ror.org/0356p2h35', 'no_lang_code', 1, 'https://ror.org/0356p2h35 Total (Qatar)'),
(66556, 'https://ror.org/01mp4p403', 'en', 1, 'https://ror.org/01mp4p403 2-Spirited'),
(66557, 'https://ror.org/03emyb266', 'en', 1, 'https://ror.org/03emyb266 Active Aging Canada'),
(66558, 'https://ror.org/05qzes018', 'en', 1, 'https://ror.org/05qzes018 Active Healthy Kids'),
(66559, 'https://ror.org/00yk8z483', 'en', 1, 'https://ror.org/00yk8z483 Canadian Apheresis Group Groupe Canadien d''Aphérèse'),
(66560, 'https://ror.org/04hfnps81', 'en', 1, 'https://ror.org/04hfnps81 Canadian Arthritis Patient Alliance L’Alliance Canadienne des Arthritiques'),
(66561, 'https://ror.org/00d1vfe76', 'en', 1, 'https://ror.org/00d1vfe76 Child Welfare League of Canada Ligue pour le Bien-Être de l''Enfance du Canada'),
(66562, 'https://ror.org/02swpkm89', 'en', 1, 'https://ror.org/02swpkm89 HIV Community Link'),
(66563, 'https://ror.org/05gxd5275', 'en', 1, 'https://ror.org/05gxd5275 Association Canadienne pour la Prévention du Suicide Canadian Association for Suicide Prevention'),
(66564, 'https://ror.org/02mgny734', 'en', 1, 'https://ror.org/02mgny734 AIDS Vancouver'),
(66565, 'https://ror.org/003yv5j54', 'en', 1, 'https://ror.org/003yv5j54 Canadian Association of Cardiovascular Prevention and Rehabilitation L''Association Canadienne pour la Prévention Cardiovasculaire et de Réadaptation'),
(66566, 'https://ror.org/00pthr413', 'fr', 1, 'https://ror.org/00pthr413 Hôpital Fleurimont'),
(66567, 'https://ror.org/022em9m61', 'en', 1, 'https://ror.org/022em9m61 Association Canadienne de Médecine Physique et de Réadaptation Canadian Association of Physical Medicine and Rehabilitation'),
(66568, 'https://ror.org/03qhca141', 'en', 1, 'https://ror.org/03qhca141 All Nations Hope Network'),
(66569, 'https://ror.org/05cf80b72', 'en', 1, 'https://ror.org/05cf80b72 Cochrane'),
(66570, 'https://ror.org/03nhp6a75', 'en', 1, 'https://ror.org/03nhp6a75 Canadian Dental Hygienists Association'),
(66571, 'https://ror.org/00sveth74', 'en', 1, 'https://ror.org/00sveth74 Asian Community AIDS Services'),
(66572, 'https://ror.org/00wppnk92', 'en', 1, 'https://ror.org/00wppnk92 Assembly of First Nations'),
(66573, 'https://ror.org/01nvxm192', 'en', 1, 'https://ror.org/01nvxm192 Association Canadienne de Soins Palliatifs Canadian Hospice Palliative Care Association'),
(66574, 'https://ror.org/03n90de98', 'en', 1, 'https://ror.org/03n90de98 Canadian Institute of Child Health'),
(66575, 'https://ror.org/04f5mrw23', 'en', 1, 'https://ror.org/04f5mrw23 Commission de la santé et des services sociaux des Premières Nations du Québec et du Labrador First Nations of Quebec and Labrador Health and Social Services Commission'),
(66576, 'https://ror.org/027qg8776', 'en', 1, 'https://ror.org/027qg8776 Assembly of Manitoba Chiefs'),
(66577, 'https://ror.org/011hmms37', 'no_lang_code', 1, 'https://ror.org/011hmms37 Alliance Canadienne des Massothérapeutes Canadian Massage Therapy Aliance'),
(66578, 'https://ror.org/0369p0616', 'en', 1, 'https://ror.org/0369p0616 HealthCareCAN'),
(66579, 'https://ror.org/03x3py878', 'en', 1, 'https://ror.org/03x3py878 Association of Local Public Health Agencies'),
(66580, 'https://ror.org/0033kcc14', 'en', 1, 'https://ror.org/0033kcc14 Canadian Organization for Rare Disorders'),
(66581, 'https://ror.org/031eaaa87', 'en', 1, 'https://ror.org/031eaaa87 Association des Pharmaciens du Canada Canadian Pharmacists Association'),
(66582, 'https://ror.org/01t0p7s78', 'en', 1, 'https://ror.org/01t0p7s78 Canadian Red Cross Society Croix Rouge canadienne'),
(66583, 'https://ror.org/0371s1r94', 'en', 1, 'https://ror.org/0371s1r94 Canadian Rural Health Research Society Société Canadienne de Recherche en Santé Rurale'),
(66584, 'https://ror.org/048z7ap74', 'en', 1, 'https://ror.org/048z7ap74 Canadian Sleep Society Société Canadienne du Sommeil'),
(66585, 'https://ror.org/04e2hkj02', 'en', 1, 'https://ror.org/04e2hkj02 Homewood Research Institute'),
(66586, 'https://ror.org/04nvd1261', 'en', 1, 'https://ror.org/04nvd1261 Canadian MPS Society for Mucopolysaccharide and Related Diseases Société Canadienne des Mucopolysaccharidoses et des Maladies Apparentées'),
(66587, 'https://ror.org/02xd7sw67', 'en', 1, 'https://ror.org/02xd7sw67 Autism Canada Société canadienne de l’autisme'),
(66588, 'https://ror.org/039ezad24', 'en', 1, 'https://ror.org/039ezad24 Child, Adolescent and Family Mental Health'),
(66589, 'https://ror.org/00cza2v51', 'en', 1, 'https://ror.org/00cza2v51 Casey House'),
(66590, 'https://ror.org/02zawmw51', 'en', 1, 'https://ror.org/02zawmw51 BC Mental Health & Substance Use Services'),
(66591, 'https://ror.org/01xq1xt31', 'no_lang_code', 1, 'https://ror.org/01xq1xt31 Biotika'),
(66592, 'https://ror.org/05jdqs103', 'en', 1, 'https://ror.org/05jdqs103 Interior Health'),
(66593, 'https://ror.org/00td86h58', 'fr', 1, 'https://ror.org/00td86h58 Michel-Sarrazin'),
(66594, 'https://ror.org/01d41fy43', 'en', 1, 'https://ror.org/01d41fy43 International Society of Electrophysiology and Kinesiology'),
(66595, 'https://ror.org/033s51991', 'en', 1, 'https://ror.org/033s51991 Comunità Scientifica Italiana in Canada Italian Scientific Community in Canada'),
(66596, 'https://ror.org/04mwczr65', 'en', 1, 'https://ror.org/04mwczr65 Markham Museum'),
(66597, 'https://ror.org/020n6f578', 'en', 1, 'https://ror.org/020n6f578 MaRS'),
(66598, 'https://ror.org/01hvq8642', 'en', 1, 'https://ror.org/01hvq8642 Coalition for Research in Women''s Health'),
(66599, 'https://ror.org/03epkyk81', 'en', 1, 'https://ror.org/03epkyk81 Kahnawake Education Center'),
(66600, 'https://ror.org/05g3b0q91', 'en', 1, 'https://ror.org/05g3b0q91 Kahnawake Schools Diabetes Prevention Project'),
(66601, 'https://ror.org/01nxbsb84', 'en', 1, 'https://ror.org/01nxbsb84 Ottawa Baffin Nunavut Health Services'),
(66602, 'https://ror.org/03q29n119', 'en', 1, 'https://ror.org/03q29n119 Ottawa Public Health Santé Publique Ottawa'),
(66603, 'https://ror.org/01aw03h30', 'en', 1, 'https://ror.org/01aw03h30 MItoCanada'),
(66604, 'https://ror.org/03g4p4m13', 'en', 1, 'https://ror.org/03g4p4m13 Association Nationale Autochtone du Diabète National Aboriginal Diabetes Association'),
(66605, 'https://ror.org/029m34v77', 'en', 1, 'https://ror.org/029m34v77 Irkutsk Regional Clinical Hospital Иркутская областная клиническая больница'),
(66606, 'https://ror.org/025j9qd03', 'en', 1, 'https://ror.org/025j9qd03 Lu’ma Native Housing Society'),
(66607, 'https://ror.org/05d8z4d22', 'en', 1, 'https://ror.org/05d8z4d22 PHS Community Services Society'),
(66608, 'https://ror.org/03zzxst70', 'en', 1, 'https://ror.org/03zzxst70 Thunderbird Partnership Foundation'),
(66609, 'https://ror.org/05e948p44', 'en', 1, 'https://ror.org/05e948p44 Native Mental Health Association of Canada'),
(66610, 'https://ror.org/04r3bfv41', 'en', 1, 'https://ror.org/04r3bfv41 Native Women''s Shelter of Montreal'),
(66611, 'https://ror.org/02adfx268', 'en', 1, 'https://ror.org/02adfx268 Native Youth Sexual Health Network'),
(66612, 'https://ror.org/03zdtbn70', 'en', 1, 'https://ror.org/03zdtbn70 Northwood'),
(66613, 'https://ror.org/036s8jq11', 'en', 1, 'https://ror.org/036s8jq11 Association Canadienne de la Médecine du Travail et de l’environnement Occupational and Environmental Medical Association of Canada'),
(66614, 'https://ror.org/04mq2mh67', 'en', 1, 'https://ror.org/04mq2mh67 Ontario Long Term Care Association'),
(66615, 'https://ror.org/03tcqv962', 'fr', 1, 'https://ror.org/03tcqv962 Aids Moncton'),
(66616, 'https://ror.org/02pjk8429', 'en', 1, 'https://ror.org/02pjk8429 The Sisters of Charity of Ottawa les Soeurs de la Charité d’Ottawa'),
(66617, 'https://ror.org/02h0nxr45', 'no_lang_code', 1, 'https://ror.org/02h0nxr45 The Debajehmujig Creation Centre (Canada)'),
(66618, 'https://ror.org/001ej4640', 'en', 1, 'https://ror.org/001ej4640 Dignitas International'),
(66619, 'https://ror.org/0228dfp95', 'en', 1, 'https://ror.org/0228dfp95 MAB-Mackay Rehabilitation Centre'),
(66620, 'https://ror.org/00h4z8814', 'en', 1, 'https://ror.org/00h4z8814 Dr. Peter AIDS Foundation'),
(66621, 'https://ror.org/020ng9892', 'en', 1, 'https://ror.org/020ng9892 Canadian Society of Microbiologists Société Canadienne des Microbiologistes'),
(66622, 'https://ror.org/042zedv06', 'fr', 1, 'https://ror.org/042zedv06 Société Québécoise de Lipidologie, de Nutrition et de Métabolisme'),
(66623, 'https://ror.org/042b06r32', 'en', 1, 'https://ror.org/042b06r32 The Society of Gynecologic Oncology of Canada'),
(66624, 'https://ror.org/04m97pf61', 'en', 1, 'https://ror.org/04m97pf61 First Nations Health and Social Secretariat of Manitoba'),
(66625, 'https://ror.org/05cgcnt36', 'en', 1, 'https://ror.org/05cgcnt36 Saint-Vincent Hospital'),
(66626, 'https://ror.org/005yzhk58', 'en', 1, 'https://ror.org/005yzhk58 Hassle Free Clinic'),
(66627, 'https://ror.org/05pf6rt98', 'en', 1, 'https://ror.org/05pf6rt98 Black Coalition for AIDS Prevention'),
(66628, 'https://ror.org/01e0e7p47', 'en', 1, 'https://ror.org/01e0e7p47 Positive Living North'),
(66629, 'https://ror.org/01zeqwe54', 'en', 1, 'https://ror.org/01zeqwe54 Bridgepoint Active Healthcare'),
(66630, 'https://ror.org/04kzytq43', 'en', 1, 'https://ror.org/04kzytq43 Centre d''excellence pour la santé des femmes - région des Prairies Prairie Women''s Health Centre of Excellence'),
(66631, 'https://ror.org/04vg0e805', 'en', 1, 'https://ror.org/04vg0e805 The Polis Project'),
(66632, 'https://ror.org/03vtyfv85', 'en', 1, 'https://ror.org/03vtyfv85 Manitoba Harm Reduction Network'),
(66633, 'https://ror.org/03ngwn840', 'en', 1, 'https://ror.org/03ngwn840 Rainbow Health Ontario Santé arc-en-ciel Ontario'),
(66634, 'https://ror.org/015fr8y55', 'en', 1, 'https://ror.org/015fr8y55 Regent Park Community Health Centre'),
(66635, 'https://ror.org/01dsawn50', 'en', 1, 'https://ror.org/01dsawn50 Réseau de recherche en santé des populations du Québec The Quebec Population Health Research Network'),
(66636, 'https://ror.org/0421np737', 'en', 1, 'https://ror.org/0421np737 Réseau de sensibilisation de sciences et technologie Science and Technology Awareness Network'),
(66637, 'https://ror.org/01d550q37', 'en', 1, 'https://ror.org/01d550q37 Science World at Telus World of Science'),
(66638, 'https://ror.org/05qc7mv40', 'fr', 1, 'https://ror.org/05qc7mv40 De Veber'),
(66639, 'https://ror.org/03a3t8q93', 'en', 1, 'https://ror.org/03a3t8q93 The Hearing Foundation of Canada'),
(66640, 'https://ror.org/018g3kw79', 'en', 1, 'https://ror.org/018g3kw79 The Marigold Foundation'),
(66641, 'https://ror.org/05cx6qq72', 'en', 1, 'https://ror.org/05cx6qq72 La Société des obstétriciens et gynécologues du Canada The Society of Obstetricians and Gynaecologists of Canada'),
(66642, 'https://ror.org/03bd8jh67', 'en', 1, 'https://ror.org/03bd8jh67 Vancouver Coastal Health'),
(66643, 'https://ror.org/042n1mt30', 'en', 1, 'https://ror.org/042n1mt30 Friends For Life'),
(66644, 'https://ror.org/0159q3366', 'en', 1, 'https://ror.org/0159q3366 Vancouver Infectious Diseases Centre'),
(66645, 'https://ror.org/05xrp5e17', 'en', 1, 'https://ror.org/05xrp5e17 TheMuseum'),
(66646, 'https://ror.org/035ggpk09', 'en', 1, 'https://ror.org/035ggpk09 Tlicho Community Services Agency'),
(66647, 'https://ror.org/03d1xjg58', 'en', 1, 'https://ror.org/03d1xjg58 William Osler Health System'),
(66648, 'https://ror.org/0344v8a35', 'fr', 1, 'https://ror.org/0344v8a35 à coeur d''homme'),
(66649, 'https://ror.org/005gz3f76', 'fr', 1, 'https://ror.org/005gz3f76 Académie Nationale des Sciences et Techniques du Sénégal'),
(66650, 'https://ror.org/006g7b022', 'fr', 1, 'https://ror.org/006g7b022 ARCTIConnexion'),
(66651, 'https://ror.org/023p2b446', 'en', 1, 'https://ror.org/023p2b446 Dutch Art Institute'),
(66652, 'https://ror.org/01p73k589', 'en', 1, 'https://ror.org/01p73k589 Ministry of Labour, Employment and Social Solidarity Ministère du Travail, de l’Emploi et de la Solidarité Sociale'),
(66653, 'https://ror.org/03n9t0w02', 'fr', 1, 'https://ror.org/03n9t0w02 Association des Doyennes et des Doyens des Études Supérieures au Québec'),
(66654, 'https://ror.org/01209ew92', 'fr', 1, 'https://ror.org/01209ew92 Fédération des Maisons D''Hébergement pour Femmes'),
(66655, 'https://ror.org/03antem13', 'fr', 1, 'https://ror.org/03antem13 Association Québécoise des Enseignantes et des Enseignants du Primaire'),
(66656, 'https://ror.org/026ppbb29', 'fr', 1, 'https://ror.org/026ppbb29 Fédération des Comités de Parents du Québec'),
(66657, 'https://ror.org/05h0pr162', 'fr', 1, 'https://ror.org/05h0pr162 Fédération des Commissions Scolaires du Québec'),
(66658, 'https://ror.org/05jnsc004', 'fr', 1, 'https://ror.org/05jnsc004 Association Québécoise du Personnel de Direction des Écoles'),
(66659, 'https://ror.org/03e0kkv22', 'fr', 1, 'https://ror.org/03e0kkv22 Office des Personnes Handicapées du Québec'),
(66660, 'https://ror.org/03xh8em43', 'fr', 1, 'https://ror.org/03xh8em43 OSEntreprendre'),
(66661, 'https://ror.org/006hdm859', 'fr', 1, 'https://ror.org/006hdm859 Parkinson Quebec'),
(66662, 'https://ror.org/052rh9n35', 'fr', 1, 'https://ror.org/052rh9n35 Centrale des Syndicats du Québec'),
(66663, 'https://ror.org/048vxvs85', 'fr', 1, 'https://ror.org/048vxvs85 Regroupement des Maisons pour Femmes Victimes de Violence Conjugale'),
(66664, 'https://ror.org/00jw46w75', 'fr', 1, 'https://ror.org/00jw46w75 Regroupement des Organismes Communautaires Québécoise de Lutte au Décrochage'),
(66665, 'https://ror.org/028jhf333', 'fr', 1, 'https://ror.org/028jhf333 Regroupement Provincial en Santé et Bien-Être des Hommes'),
(66666, 'https://ror.org/02qcmfw42', 'fr', 1, 'https://ror.org/02qcmfw42 Relais Femmes'),
(66667, 'https://ror.org/00gycng41', 'fr', 1, 'https://ror.org/00gycng41 Association des Radiologistes du Québec'),
(66668, 'https://ror.org/040qnm310', 'no_lang_code', 1, 'https://ror.org/040qnm310 TES Global (United Kingdom)'),
(66669, 'https://ror.org/05p5dcf94', 'fr', 1, 'https://ror.org/05p5dcf94 Réseau des Centres de Ressources Périnatales'),
(66670, 'https://ror.org/04jxxfd37', 'fr', 1, 'https://ror.org/04jxxfd37 Réseau National d''Expertise en Trouble du Spectre de l''Autisme'),
(66671, 'https://ror.org/00h7z1q27', 'en', 1, 'https://ror.org/00h7z1q27 Campus Notre-Dame-de-Foy'),
(66672, 'https://ror.org/00qjpp897', 'en', 1, 'https://ror.org/00qjpp897 Centre Cyber-aide'),
(66673, 'https://ror.org/04n5ac152', 'en', 1, 'https://ror.org/04n5ac152 Quebec Network on Suicide, Mood Disorders and Related Disorders'),
(66674, 'https://ror.org/04jsqtz71', 'fr', 1, 'https://ror.org/04jsqtz71 Centre d''aide Pour Hommes de Lanaudière'),
(66675, 'https://ror.org/0077tey39', 'fr', 1, 'https://ror.org/0077tey39 Centre Jacques-Cartier'),
(66676, 'https://ror.org/05j9mt277', 'fr', 1, 'https://ror.org/05j9mt277 Réseau Solidarité Itinérance du Québec'),
(66677, 'https://ror.org/02a8tfk85', 'en', 1, 'https://ror.org/02a8tfk85 Centre d’innovation sociale en agriculture Centre of Social Innovation in Agriculture'),
(66678, 'https://ror.org/00y05vn70', 'en', 1, 'https://ror.org/00y05vn70 Montreal Police Service Service de Police de la Ville de Montréal'),
(66679, 'https://ror.org/037fm9770', 'fr', 1, 'https://ror.org/037fm9770 Société d''Habitation du Québec'),
(66680, 'https://ror.org/03b3aa119', 'en', 1, 'https://ror.org/03b3aa119 Quebec Automobile Insurance Corporation Société de l''Assurance Automobile du Québec'),
(66681, 'https://ror.org/058jpya11', 'fr', 1, 'https://ror.org/058jpya11 Société Québécoise d''Hypertension Artérielle'),
(66682, 'https://ror.org/041f9mm95', 'fr', 1, 'https://ror.org/041f9mm95 Gay Line Interligne'),
(66683, 'https://ror.org/02mndw455', 'fr', 1, 'https://ror.org/02mndw455 Société Québécoise de Néphrologie'),
(66684, 'https://ror.org/043njxm98', 'fr', 1, 'https://ror.org/043njxm98 Table Carrefour Violence Conjugale Québec Métro'),
(66685, 'https://ror.org/00pvmfq97', 'no_lang_code', 1, 'https://ror.org/00pvmfq97 Galamedia (Canada)'),
(66686, 'https://ror.org/02yxyb555', 'fr', 1, 'https://ror.org/02yxyb555 Table de Concertation en Violence Conjugale de Montréal'),
(66687, 'https://ror.org/04104tq92', 'fr', 1, 'https://ror.org/04104tq92 Institut de Recherche Sur L’Intégration Professionnelle des Immigrants'),
(66688, 'https://ror.org/03wjy4481', 'no_lang_code', 1, 'https://ror.org/03wjy4481 Westin Limousine (Canada)'),
(66689, 'https://ror.org/01hs54b18', 'en', 1, 'https://ror.org/01hs54b18 Centre Casa'),
(66690, 'https://ror.org/0557f3j69', 'fr', 1, 'https://ror.org/0557f3j69 Communautique'),
(66691, 'https://ror.org/04rf2w592', 'fr', 1, 'https://ror.org/04rf2w592 Sercovie'),
(66692, 'https://ror.org/01v67wf52', 'fr', 1, 'https://ror.org/01v67wf52 Centre des Aînés Côte-des-Neiges'),
(66693, 'https://ror.org/01aa0sx14', 'no_lang_code', 1, 'https://ror.org/01aa0sx14 Parc Technologique du Québec Métropolitain Québec Metro High Tech Park (Canada)'),
(66694, 'https://ror.org/05qw0wj36', 'fr', 1, 'https://ror.org/05qw0wj36 Cercle Finance du Québec'),
(66695, 'https://ror.org/053f7j738', 'en', 1, 'https://ror.org/053f7j738 Institute for Knowledge Mobilization l''Institut pour la Mobilisation des Connaissances'),
(66696, 'https://ror.org/047xt4p04', 'fr', 1, 'https://ror.org/047xt4p04 Centre Intégré de Santé et de Services Sociaux du Bas-Saint-Laurent'),
(66697, 'https://ror.org/024an9j41', 'en', 1, 'https://ror.org/024an9j41 Ministry of Immigration, Diversity and Inclusion Ministère de l’Immigration, de la Diversité et de l’Inclusion'),
(66698, 'https://ror.org/00y6jnc55', 'fr', 1, 'https://ror.org/00y6jnc55 L''Accord Mauricie'),
(66699, 'https://ror.org/01g81xd76', 'en', 1, 'https://ror.org/01g81xd76 Ministry of Culture and Communications Ministère de la Culture et des Communications'),
(66700, 'https://ror.org/00mdmxm79', 'fr', 1, 'https://ror.org/00mdmxm79 Collège de Rosemont'),
(66701, 'https://ror.org/02en5gq32', 'fr', 1, 'https://ror.org/02en5gq32 Commission Scolaire des Hautes Rivières'),
(66702, 'https://ror.org/015966407', 'no_lang_code', 1, 'https://ror.org/015966407 Cryptomage (Poland)'),
(66703, 'https://ror.org/05vxe5982', 'no_lang_code', 1, 'https://ror.org/05vxe5982 Read-Gene (Poland)'),
(66704, 'https://ror.org/03b6dwx17', 'no_lang_code', 1, 'https://ror.org/03b6dwx17 Tricomed (Poland)'),
(66705, 'https://ror.org/00a21ek15', 'no_lang_code', 1, 'https://ror.org/00a21ek15 Delta Rafał Mikke (Poland)'),
(66706, 'https://ror.org/00bwrgp93', 'no_lang_code', 1, 'https://ror.org/00bwrgp93 Waldi (Poland)'),
(66707, 'https://ror.org/02nfvkt86', 'no_lang_code', 1, 'https://ror.org/02nfvkt86 Digitalia (Poland)'),
(66708, 'https://ror.org/05egxm427', 'no_lang_code', 1, 'https://ror.org/05egxm427 +H2O (Poland)'),
(66709, 'https://ror.org/05vndtw67', 'pl', 1, 'https://ror.org/05vndtw67 Instytut Wzornictwa Przemyslowego'),
(66710, 'https://ror.org/05rsjde41', 'no_lang_code', 1, 'https://ror.org/05rsjde41 Drukpol (Poland)'),
(66711, 'https://ror.org/04qtsfp18', 'no_lang_code', 1, 'https://ror.org/04qtsfp18 Inteco (Poland)'),
(66712, 'https://ror.org/05dv2rg34', 'no_lang_code', 1, 'https://ror.org/05dv2rg34 2P-Info (Poland)'),
(66713, 'https://ror.org/03d73se48', 'no_lang_code', 1, 'https://ror.org/03d73se48 EC Systems (Poland)'),
(66714, 'https://ror.org/009ygqw67', 'no_lang_code', 1, 'https://ror.org/009ygqw67 Ecoenergia (Poland)'),
(66715, 'https://ror.org/05bx22c71', 'no_lang_code', 1, 'https://ror.org/05bx22c71 Intel (Poland)'),
(66716, 'https://ror.org/04ywpy664', 'no_lang_code', 1, 'https://ror.org/04ywpy664 Ekoinwentyka (Poland)'),
(66717, 'https://ror.org/01nt4yq55', 'no_lang_code', 1, 'https://ror.org/01nt4yq55 Ekopoz (Poland)'),
(66718, 'https://ror.org/025zvp446', 'no_lang_code', 1, 'https://ror.org/025zvp446 Elektromontaż-Lublin (Poland)'),
(66719, 'https://ror.org/04sfxnf28', 'no_lang_code', 1, 'https://ror.org/04sfxnf28 Active Text (Poland)'),
(66720, 'https://ror.org/01ydvxb59', 'no_lang_code', 1, 'https://ror.org/01ydvxb59 Elgór + Hansen (Poland)'),
(66721, 'https://ror.org/03hrca821', 'no_lang_code', 1, 'https://ror.org/03hrca821 Interplastik (Poland)'),
(66722, 'https://ror.org/036b14153', 'no_lang_code', 1, 'https://ror.org/036b14153 Elsta Elektronika (Poland)'),
(66723, 'https://ror.org/03g4zd952', 'no_lang_code', 1, 'https://ror.org/03g4zd952 Emag Serwis (Poland)'),
(66724, 'https://ror.org/005rems48', 'en', 1, 'https://ror.org/005rems48 Interuniversity Center for Social Science Theory and Methodology'),
(66725, 'https://ror.org/003rwj896', 'no_lang_code', 1, 'https://ror.org/003rwj896 Ensol (Poland)'),
(66726, 'https://ror.org/03zp9j082', 'no_lang_code', 1, 'https://ror.org/03zp9j082 ISKRA Zakłady Precyzyjne (Poland)'),
(66727, 'https://ror.org/04p7mex89', 'no_lang_code', 1, 'https://ror.org/04p7mex89 Jagoda JPS (Poland)'),
(66728, 'https://ror.org/03rs7hg63', 'no_lang_code', 1, 'https://ror.org/03rs7hg63 Escort (Poland)'),
(66729, 'https://ror.org/057kr8834', 'no_lang_code', 1, 'https://ror.org/057kr8834 JIT Solutions (Poland)'),
(66730, 'https://ror.org/02qrd8y65', 'en', 1, 'https://ror.org/02qrd8y65 Euro-Centrum'),
(66731, 'https://ror.org/0594xf543', 'no_lang_code', 1, 'https://ror.org/0594xf543 Agrola (Poland)'),
(66732, 'https://ror.org/02rh42t66', 'no_lang_code', 1, 'https://ror.org/02rh42t66 JK (Poland)'),
(66733, 'https://ror.org/0541hzv22', 'no_lang_code', 1, 'https://ror.org/0541hzv22 K-UTEC Salt Technologies (Germany)'),
(66734, 'https://ror.org/028e4ya74', 'no_lang_code', 1, 'https://ror.org/028e4ya74 Maersk (Qatar)'),
(66735, 'https://ror.org/02etm4q91', 'pl', 1, 'https://ror.org/02etm4q91 Europejski Instytut Miedzi'),
(66736, 'https://ror.org/034dme430', 'no_lang_code', 1, 'https://ror.org/034dme430 Euros Energy (Poland)'),
(66737, 'https://ror.org/04kfnx806', 'no_lang_code', 1, 'https://ror.org/04kfnx806 K+S (Germany)'),
(66738, 'https://ror.org/0367rr790', 'no_lang_code', 1, 'https://ror.org/0367rr790 Eurotech (Poland)'),
(66739, 'https://ror.org/02jfjpx40', 'no_lang_code', 1, 'https://ror.org/02jfjpx40 Kabe (Poland)'),
(66740, 'https://ror.org/025c3rs34', 'en', 1, 'https://ror.org/025c3rs34 Akademia im. Jakuba z Paradyża w Gorzowie Wielkopolskim The Jacob of Paradies University'),
(66741, 'https://ror.org/05adk8w18', 'no_lang_code', 1, 'https://ror.org/05adk8w18 Kaliskie Zakłady Przemysłu Terenowego (Poland)'),
(66742, 'https://ror.org/02wvj4674', 'pl', 1, 'https://ror.org/02wvj4674 Kardio-Med Silesia'),
(66743, 'https://ror.org/05113d564', 'en', 1, 'https://ror.org/05113d564 Akademia Sztuki Wojennej War Studies Academy'),
(66744, 'https://ror.org/05dm7fw62', 'no_lang_code', 1, 'https://ror.org/05dm7fw62 Katcon (Poland)'),
(66745, 'https://ror.org/02yd1fb92', 'no_lang_code', 1, 'https://ror.org/02yd1fb92 Fes Trading (Poland)'),
(66746, 'https://ror.org/00qt31k61', 'no_lang_code', 1, 'https://ror.org/00qt31k61 Fido Intelligence (Poland)'),
(66747, 'https://ror.org/045embs06', 'en', 1, 'https://ror.org/045embs06 Fundacja Idea Rozwoju IDEA of Development Foundation'),
(66748, 'https://ror.org/044y8xw28', 'en', 1, 'https://ror.org/044y8xw28 Fundacja Itaka ITAKA Foundation'),
(66749, 'https://ror.org/03kx1j711', 'no_lang_code', 1, 'https://ror.org/03kx1j711 Future Voice System (Poland)'),
(66750, 'https://ror.org/01kbrc263', 'no_lang_code', 1, 'https://ror.org/01kbrc263 FUTRESynthesis (Poland)'),
(66751, 'https://ror.org/05t0r7338', 'pl', 1, 'https://ror.org/05t0r7338 Centrum Gamma Knife'),
(66752, 'https://ror.org/04matqb57', 'no_lang_code', 1, 'https://ror.org/04matqb57 Gamaplast (Poland)'),
(66753, 'https://ror.org/04dh4pw96', 'en', 1, 'https://ror.org/04dh4pw96 Gdansk Water Foundation Gdańska Fundacja Wody'),
(66754, 'https://ror.org/04rh1ph29', 'no_lang_code', 1, 'https://ror.org/04rh1ph29 Kompol (Poland)'),
(66755, 'https://ror.org/04ytn9a85', 'no_lang_code', 1, 'https://ror.org/04ytn9a85 General Electric (Poland)'),
(66756, 'https://ror.org/0042ng628', 'en', 1, 'https://ror.org/0042ng628 African Council on Narcotics'),
(66757, 'https://ror.org/04t7q4g45', 'no_lang_code', 1, 'https://ror.org/04t7q4g45 Andrychowska Fabryka Maszyn DEFUM (Poland)'),
(66758, 'https://ror.org/03ep0t884', 'no_lang_code', 1, 'https://ror.org/03ep0t884 ANGA Mechanical Seals (Poland) ANGA Uszczelnienia Mechaniczne'),
(66759, 'https://ror.org/05cb67q54', 'no_lang_code', 1, 'https://ror.org/05cb67q54 Anshar Studios (Poland)'),
(66760, 'https://ror.org/03tx11h32', 'no_lang_code', 1, 'https://ror.org/03tx11h32 Kuca (Poland)'),
(66761, 'https://ror.org/0338x2357', 'pl', 1, 'https://ror.org/0338x2357 Kutnowska Hodowla Buraka Cukrowego'),
(66762, 'https://ror.org/011pysq56', 'no_lang_code', 1, 'https://ror.org/011pysq56 Laboclinic (Poland)'),
(66763, 'https://ror.org/01s41x998', 'no_lang_code', 1, 'https://ror.org/01s41x998 ATM (Poland)'),
(66764, 'https://ror.org/01rqdcg33', 'pl', 1, 'https://ror.org/01rqdcg33 Laboratorium Datowań Bezwzględnych'),
(66765, 'https://ror.org/04q1k6w98', 'no_lang_code', 1, 'https://ror.org/04q1k6w98 ATM PP (Poland)'),
(66766, 'https://ror.org/008z9pq26', 'no_lang_code', 1, 'https://ror.org/008z9pq26 Audi (Italy)'),
(66767, 'https://ror.org/05jbr3j48', 'no_lang_code', 1, 'https://ror.org/05jbr3j48 Lakma (Poland)'),
(66768, 'https://ror.org/039vb7e80', 'no_lang_code', 1, 'https://ror.org/039vb7e80 Lars Lighting (Poland)'),
(66769, 'https://ror.org/00razdc11', 'no_lang_code', 1, 'https://ror.org/00razdc11 Avantor (Poland)'),
(66770, 'https://ror.org/000exqh08', 'no_lang_code', 1, 'https://ror.org/000exqh08 Azis Mining Service (Poland)'),
(66771, 'https://ror.org/04vv9sb16', 'no_lang_code', 1, 'https://ror.org/04vv9sb16 Lasertex (Poland)'),
(66772, 'https://ror.org/01ym0mb49', 'no_lang_code', 1, 'https://ror.org/01ym0mb49 Mikronika (Poland)'),
(66773, 'https://ror.org/007bw6q41', 'de', 1, 'https://ror.org/007bw6q41 Evangelische Hochschule Berlin'),
(66774, 'https://ror.org/02s97qm42', 'en', 1, 'https://ror.org/02s97qm42 European Consortium for Ocean Research Drilling'),
(66775, 'https://ror.org/052x5qt17', 'no_lang_code', 1, 'https://ror.org/052x5qt17 Baltic Ceramics Investments (Poland)'),
(66776, 'https://ror.org/01bs8p952', 'no_lang_code', 1, 'https://ror.org/01bs8p952 Logifact (Poland) Systemy Logistyczne'),
(66777, 'https://ror.org/037hasf44', 'no_lang_code', 1, 'https://ror.org/037hasf44 Bastik (Poland)'),
(66778, 'https://ror.org/0113knn38', 'no_lang_code', 1, 'https://ror.org/0113knn38 Geopartner (Poland)'),
(66779, 'https://ror.org/04atm1047', 'no_lang_code', 1, 'https://ror.org/04atm1047 Lubawa (Poland)'),
(66780, 'https://ror.org/01dz1nw58', 'no_lang_code', 1, 'https://ror.org/01dz1nw58 Bercanan (Poland)'),
(66781, 'https://ror.org/029wn1m36', 'no_lang_code', 1, 'https://ror.org/029wn1m36 Geotermia Mazowiecka (Poland)'),
(66782, 'https://ror.org/01sdpjb75', 'no_lang_code', 1, 'https://ror.org/01sdpjb75 Geotermia Uniejów (Poland)'),
(66783, 'https://ror.org/03x21fh86', 'en', 1, 'https://ror.org/03x21fh86 Biblioteka Śląska Silesian Library'),
(66784, 'https://ror.org/031vvza93', 'no_lang_code', 1, 'https://ror.org/031vvza93 Mabo (Poland)'),
(66785, 'https://ror.org/0086r2b45', 'no_lang_code', 1, 'https://ror.org/0086r2b45 Grupa Lotos (Poland)'),
(66786, 'https://ror.org/00vtf4k85', 'no_lang_code', 1, 'https://ror.org/00vtf4k85 BioScientia (Poland)'),
(66787, 'https://ror.org/04s3ttr38', 'no_lang_code', 1, 'https://ror.org/04s3ttr38 Maspex (Poland)'),
(66788, 'https://ror.org/035tncn14', 'no_lang_code', 1, 'https://ror.org/035tncn14 Grupa Wolff Wolff Group (Poland)'),
(66789, 'https://ror.org/059ya5h17', 'no_lang_code', 1, 'https://ror.org/059ya5h17 Bluetomation (Poland)'),
(66790, 'https://ror.org/05xcp0f40', 'no_lang_code', 1, 'https://ror.org/05xcp0f40 Heidelberg (Poland)'),
(66791, 'https://ror.org/038105c92', 'no_lang_code', 1, 'https://ror.org/038105c92 Marine Projects (Poland)'),
(66792, 'https://ror.org/027m4q536', 'no_lang_code', 1, 'https://ror.org/027m4q536 Bolmet (Poland)'),
(66793, 'https://ror.org/00a6g3p12', 'no_lang_code', 1, 'https://ror.org/00a6g3p12 Materials Engineers Group (Poland)'),
(66794, 'https://ror.org/05a2wb866', 'no_lang_code', 1, 'https://ror.org/05a2wb866 Boryszew (Poland)'),
(66795, 'https://ror.org/01rz7nn73', 'no_lang_code', 1, 'https://ror.org/01rz7nn73 BrainTech (Poland)'),
(66796, 'https://ror.org/03fc5a179', 'no_lang_code', 1, 'https://ror.org/03fc5a179 BTM Cluster (Poland)'),
(66797, 'https://ror.org/05ttsx632', 'no_lang_code', 1, 'https://ror.org/05ttsx632 C&T Elmech (Poland)'),
(66798, 'https://ror.org/00d0f1n88', 'no_lang_code', 1, 'https://ror.org/00d0f1n88 Carbograf (Poland)'),
(66799, 'https://ror.org/032w4ep19', 'no_lang_code', 1, 'https://ror.org/032w4ep19 IDAP Technology (Poland)'),
(66800, 'https://ror.org/00pvxy857', 'no_lang_code', 1, 'https://ror.org/00pvxy857 Cargotec (Poland)'),
(66801, 'https://ror.org/03ew4ty82', 'no_lang_code', 1, 'https://ror.org/03ew4ty82 Celiko (Poland)'),
(66802, 'https://ror.org/05kngp096', 'no_lang_code', 1, 'https://ror.org/05kngp096 Innerco (Poland)'),
(66803, 'https://ror.org/04wpnc326', 'no_lang_code', 1, 'https://ror.org/04wpnc326 Cells Therapy (Poland)'),
(66804, 'https://ror.org/03r9xyh10', 'no_lang_code', 1, 'https://ror.org/03r9xyh10 Inproel (Poland)'),
(66805, 'https://ror.org/00s4y3439', 'no_lang_code', 1, 'https://ror.org/00s4y3439 Cemet (Poland)'),
(66806, 'https://ror.org/03mrs5c75', 'no_lang_code', 1, 'https://ror.org/03mrs5c75 Kuźnia Stalowa Wola (Poland)'),
(66807, 'https://ror.org/00d32rn51', 'pl', 1, 'https://ror.org/00d32rn51 Centrum Badań Jakości Quality Research Center'),
(66808, 'https://ror.org/012q2m618', 'no_lang_code', 1, 'https://ror.org/012q2m618 Bosmal (Poland)'),
(66809, 'https://ror.org/039v1f004', 'no_lang_code', 1, 'https://ror.org/039v1f004 Centrum Badawczo - Produkcyjne DGT (Poland)'),
(66810, 'https://ror.org/03n1csv23', 'en', 1, 'https://ror.org/03n1csv23 Institute of Criminology of the Polish Forensic Association Polskie Towarzystwo Kryminalistyczne'),
(66811, 'https://ror.org/00fwfdb54', 'no_lang_code', 1, 'https://ror.org/00fwfdb54 Telesystem (Poland)'),
(66812, 'https://ror.org/02k7ex914', 'pl', 1, 'https://ror.org/02k7ex914 Institute of Law Studies Instytut Nauk Prawnych'),
(66813, 'https://ror.org/00sxv8m86', 'no_lang_code', 1, 'https://ror.org/00sxv8m86 Centre of Technology Transfer Emag (Poland)'),
(66814, 'https://ror.org/03aqxew96', 'no_lang_code', 1, 'https://ror.org/03aqxew96 ChM (Poland)'),
(66815, 'https://ror.org/039fs9a88', 'no_lang_code', 1, 'https://ror.org/039fs9a88 CMGI (Poland)'),
(66816, 'https://ror.org/04dm8py89', 'no_lang_code', 1, 'https://ror.org/04dm8py89 COBRO (Poland)'),
(66817, 'https://ror.org/05jz37f81', 'no_lang_code', 1, 'https://ror.org/05jz37f81 Consolidated Precision Products (Poland)'),
(66818, 'https://ror.org/0080qw039', 'no_lang_code', 1, 'https://ror.org/0080qw039 Horus Energia (Poland)'),
(66819, 'https://ror.org/04f07ep24', 'no_lang_code', 1, 'https://ror.org/04f07ep24 Corona (Poland)'),
(66820, 'https://ror.org/02heqf923', 'no_lang_code', 1, 'https://ror.org/02heqf923 Panasonic (Poland)'),
(66821, 'https://ror.org/02egnep81', 'no_lang_code', 1, 'https://ror.org/02egnep81 CRE Consulting (Poland)'),
(66822, 'https://ror.org/012nzs861', 'no_lang_code', 1, 'https://ror.org/012nzs861 Taps (Poland)'),
(66823, 'https://ror.org/032t23b63', 'no_lang_code', 1, 'https://ror.org/032t23b63 Search (Poland)'),
(66824, 'https://ror.org/02he8hw70', 'en', 1, 'https://ror.org/02he8hw70 Instytut Śląski w Opolu Silesian Institute in Opole'),
(66825, 'https://ror.org/0381acm07', 'no_lang_code', 1, 'https://ror.org/0381acm07 Samsung (Poland)'),
(66826, 'https://ror.org/03dhgb547', 'no_lang_code', 1, 'https://ror.org/03dhgb547 TOMSAD Tomasz Sadowski (Poland)'),
(66827, 'https://ror.org/04gy0kq46', 'no_lang_code', 1, 'https://ror.org/04gy0kq46 Scanmed (Poland)'),
(66828, 'https://ror.org/05qx2fb65', 'no_lang_code', 1, 'https://ror.org/05qx2fb65 SDS Optic (Poland)'),
(66829, 'https://ror.org/046swr926', 'no_lang_code', 1, 'https://ror.org/046swr926 Peptaderm (Poland)'),
(66830, 'https://ror.org/010vz8719', 'no_lang_code', 1, 'https://ror.org/010vz8719 Seen Semiconductors (Poland)'),
(66831, 'https://ror.org/02wq53r66', 'no_lang_code', 1, 'https://ror.org/02wq53r66 Tpa (Poland)'),
(66832, 'https://ror.org/04gbygd07', 'no_lang_code', 1, 'https://ror.org/04gbygd07 Transbit (Poland)'),
(66833, 'https://ror.org/04wr8sz35', 'no_lang_code', 1, 'https://ror.org/04wr8sz35 Petrol (Poland)'),
(66834, 'https://ror.org/04sxzk018', 'no_lang_code', 1, 'https://ror.org/04sxzk018 Phoenix Contact (Poland)'),
(66835, 'https://ror.org/01rwgmd28', 'no_lang_code', 1, 'https://ror.org/01rwgmd28 Sempre (Poland)'),
(66836, 'https://ror.org/030j6jf89', 'no_lang_code', 1, 'https://ror.org/030j6jf89 Trusted Information Consulting (Poland)'),
(66837, 'https://ror.org/01r7xf702', 'no_lang_code', 1, 'https://ror.org/01r7xf702 Fedor-Bis (Poland)'),
(66838, 'https://ror.org/031pan754', 'no_lang_code', 1, 'https://ror.org/031pan754 SentiOne (Poland)'),
(66839, 'https://ror.org/05h2sqk17', 'no_lang_code', 1, 'https://ror.org/05h2sqk17 Sewaco System (Poland)'),
(66840, 'https://ror.org/05186xw97', 'no_lang_code', 1, 'https://ror.org/05186xw97 Polbud-Pomorze (Poland)'),
(66841, 'https://ror.org/0571pz015', 'no_lang_code', 1, 'https://ror.org/0571pz015 VoicePIN.com (Poland)'),
(66842, 'https://ror.org/01bya3q34', 'no_lang_code', 1, 'https://ror.org/01bya3q34 SGL Carbon (Poland)'),
(66843, 'https://ror.org/04c7bhp05', 'no_lang_code', 1, 'https://ror.org/04c7bhp05 SGL Carbon (Germany)'),
(66844, 'https://ror.org/03q674f15', 'en', 1, 'https://ror.org/03q674f15 Polish Academy of Learning Polska Akademia Umiejętności'),
(66845, 'https://ror.org/04dvzv716', 'no_lang_code', 1, 'https://ror.org/04dvzv716 Polska Grupa Górnicza (Poland)'),
(66846, 'https://ror.org/04z5pp948', 'no_lang_code', 1, 'https://ror.org/04z5pp948 Skotan (Poland)'),
(66847, 'https://ror.org/033vfvr15', 'en', 1, 'https://ror.org/033vfvr15 Polish Chamber of Packaging Polska Izba Opakowań'),
(66848, 'https://ror.org/02e4kxk72', 'no_lang_code', 1, 'https://ror.org/02e4kxk72 Kupiec (Poland)'),
(66849, 'https://ror.org/02c289w86', 'pl', 1, 'https://ror.org/02c289w86 Słodownia Soufflet Polska'),
(66850, 'https://ror.org/01p8akv10', 'no_lang_code', 1, 'https://ror.org/01p8akv10 Polish Security Printing Works (Poland) Polska Wytwornia Papierow Wartosciowych'),
(66851, 'https://ror.org/031rh4g51', 'no_lang_code', 1, 'https://ror.org/031rh4g51 Soley (Poland)'),
(66852, 'https://ror.org/03s2zgf58', 'en', 1, 'https://ror.org/03s2zgf58 Polish Stem Cell Bank Polski Bank Komórek Macierzystych'),
(66853, 'https://ror.org/05es54b96', 'pl', 1, 'https://ror.org/05es54b96 Specjalistyczny Szpital Miejski im. M. Kopernika'),
(66854, 'https://ror.org/04rjsxs58', 'en', 1, 'https://ror.org/04rjsxs58 President of the Office of Electronic Communications Urząd Komunikacji Elektronicznej'),
(66855, 'https://ror.org/04wtyx265', 'no_lang_code', 1, 'https://ror.org/04wtyx265 Sprint (Poland)'),
(66856, 'https://ror.org/03gxz3j07', 'en', 1, 'https://ror.org/03gxz3j07 Polish Society of Oriental Art Polski Instytut Studiów nad Sztuką Świata');
INSERT INTO `rors` VALUES
(66857, 'https://ror.org/05fmpsp49', 'no_lang_code', 1, 'https://ror.org/05fmpsp49 Spyra Primo (Poland)'),
(66858, 'https://ror.org/01jyr6y47', 'pl', 1, 'https://ror.org/01jyr6y47 Polskie Stowarzyszenie Terapii Behawioralnej'),
(66859, 'https://ror.org/05t6aan57', 'no_lang_code', 1, 'https://ror.org/05t6aan57 Stalprodukt (Poland)'),
(66860, 'https://ror.org/052dx1v90', 'no_lang_code', 1, 'https://ror.org/052dx1v90 Chornobyl Center Чорнобильський центр'),
(66861, 'https://ror.org/038v45r36', 'no_lang_code', 1, 'https://ror.org/038v45r36 Vèringer (Spain)'),
(66862, 'https://ror.org/000nw4a65', 'no_lang_code', 1, 'https://ror.org/000nw4a65 Polish Aviation Works Polskie Zakłady Lotnicze (Poland)'),
(66863, 'https://ror.org/00qw0ej89', 'no_lang_code', 1, 'https://ror.org/00qw0ej89 Vigo (Poland)'),
(66864, 'https://ror.org/042688r20', 'en', 1, 'https://ror.org/042688r20 Indian Pharmacist Association'),
(66865, 'https://ror.org/05ae3z928', 'no_lang_code', 1, 'https://ror.org/05ae3z928 VoiceLab (Poland)'),
(66866, 'https://ror.org/009dhvf97', 'en', 1, 'https://ror.org/009dhvf97 South Western Ambulance Service NHS Foundation Trust'),
(66867, 'https://ror.org/01m7cyk91', 'no_lang_code', 1, 'https://ror.org/01m7cyk91 PolymemTech (Poland)'),
(66868, 'https://ror.org/0229g8886', 'en', 1, 'https://ror.org/0229g8886 Warsaw School of Computer Science Warszawska Wyższa Szkoła Informatyki'),
(66869, 'https://ror.org/00tey2378', 'no_lang_code', 1, 'https://ror.org/00tey2378 Stem Cells Spin (Poland)'),
(66870, 'https://ror.org/01wfbns29', 'pl', 1, 'https://ror.org/01wfbns29 Powszechna Kasa Oszczędności Bank Polski Spółka Akcyjna'),
(66871, 'https://ror.org/049zj0z80', 'no_lang_code', 1, 'https://ror.org/049zj0z80 Sto (Poland)'),
(66872, 'https://ror.org/05q8qmk69', 'pl', 1, 'https://ror.org/05q8qmk69 Stowarzyszenie Radość Życia'),
(66873, 'https://ror.org/026s4w053', 'no_lang_code', 1, 'https://ror.org/026s4w053 Poznańska Hodowla Roślin (Poland)'),
(66874, 'https://ror.org/01ar8m914', 'en', 1, 'https://ror.org/01ar8m914 Polish Platform for Homeland Security Polska Platforma Bezpieczeństwa Wewnętrznego'),
(66875, 'https://ror.org/013w7en88', 'no_lang_code', 1, 'https://ror.org/013w7en88 Military Aviation Works No. 4 (Poland) Wojskowe Zakłady Lotnicze Nr 4'),
(66876, 'https://ror.org/05gv0tw76', 'no_lang_code', 1, 'https://ror.org/05gv0tw76 Eko-Energia (Poland)'),
(66877, 'https://ror.org/04rzp1e87', 'pl', 1, 'https://ror.org/04rzp1e87 Stowarzyszenie Pomocy Niepełnosprawnym Kierowcom'),
(66878, 'https://ror.org/03g2atw04', 'no_lang_code', 1, 'https://ror.org/03g2atw04 Mind (Poland)'),
(66879, 'https://ror.org/04q9spx56', 'no_lang_code', 1, 'https://ror.org/04q9spx56 Proen (Poland)'),
(66880, 'https://ror.org/01bqdbm60', 'pl', 1, 'https://ror.org/01bqdbm60 Szkoła Aspirantów Państwowej Straży Pożarnej'),
(66881, 'https://ror.org/00fb7th39', 'no_lang_code', 1, 'https://ror.org/00fb7th39 Elsit (Poland)'),
(66882, 'https://ror.org/04tb0r175', 'no_lang_code', 1, 'https://ror.org/04tb0r175 Szkuner (Poland)'),
(66883, 'https://ror.org/00de4mp23', 'no_lang_code', 1, 'https://ror.org/00de4mp23 Marko-Kolor (Poland)'),
(66884, 'https://ror.org/04smhj247', 'en', 1, 'https://ror.org/04smhj247 Szpital Kliniczny Przemienienia Pańskiego University Hospital of Lord’s Transfiguration'),
(66885, 'https://ror.org/02hpzh255', 'no_lang_code', 1, 'https://ror.org/02hpzh255 Lindo Catsystem (Poland)'),
(66886, 'https://ror.org/03pkrh852', 'no_lang_code', 1, 'https://ror.org/03pkrh852 Tauron Wytwarzanie (Poland)'),
(66887, 'https://ror.org/04k3h1n36', 'no_lang_code', 1, 'https://ror.org/04k3h1n36 ADW (Poland)'),
(66888, 'https://ror.org/02f9ma297', 'no_lang_code', 1, 'https://ror.org/02f9ma297 Tecna (Poland)'),
(66889, 'https://ror.org/05h3cvr32', 'no_lang_code', 1, 'https://ror.org/05h3cvr32 Tedspaw (Poland)'),
(66890, 'https://ror.org/0527t6d08', 'no_lang_code', 1, 'https://ror.org/0527t6d08 X-Code (Poland)'),
(66891, 'https://ror.org/03ydtyz77', 'no_lang_code', 1, 'https://ror.org/03ydtyz77 Tektura Opakowania Papier (Poland)'),
(66892, 'https://ror.org/029768m78', 'no_lang_code', 1, 'https://ror.org/029768m78 Maskpol (Poland)'),
(66893, 'https://ror.org/059tydn49', 'no_lang_code', 1, 'https://ror.org/059tydn49 Telvis (Poland)'),
(66894, 'https://ror.org/02axp7z77', 'no_lang_code', 1, 'https://ror.org/02axp7z77 Termetal (Poland)'),
(66895, 'https://ror.org/010c3p773', 'no_lang_code', 1, 'https://ror.org/010c3p773 Pure Biologics (Poland)'),
(66896, 'https://ror.org/05r0zxs60', 'no_lang_code', 1, 'https://ror.org/05r0zxs60 Qwed (Poland)'),
(66897, 'https://ror.org/029whta60', 'no_lang_code', 1, 'https://ror.org/029whta60 PBG (Poland)'),
(66898, 'https://ror.org/01vjge728', 'no_lang_code', 1, 'https://ror.org/01vjge728 Enika (Poland)'),
(66899, 'https://ror.org/02dr5rf50', 'no_lang_code', 1, 'https://ror.org/02dr5rf50 Maxon Motor (Switzerland)'),
(66900, 'https://ror.org/04sedqx04', 'no_lang_code', 1, 'https://ror.org/04sedqx04 Twerd (Poland)'),
(66901, 'https://ror.org/05mgh6q46', 'en', 1, 'https://ror.org/05mgh6q46 MB Recycling'),
(66902, 'https://ror.org/01tyxje26', 'en', 1, 'https://ror.org/01tyxje26 Regional Water Management Authority in Warsaw Regionalny Zarząd Gospodarki Wodnej w Warszawie'),
(66903, 'https://ror.org/059kvg223', 'no_lang_code', 1, 'https://ror.org/059kvg223 Hydromar (Poland)'),
(66904, 'https://ror.org/00xka5v70', 'no_lang_code', 1, 'https://ror.org/00xka5v70 Raziskovalna Genetika in Agrokemija Research Genetics and Agrochemistry (Slovenia)'),
(66905, 'https://ror.org/03wyyd750', 'no_lang_code', 1, 'https://ror.org/03wyyd750 Menard (Poland)'),
(66906, 'https://ror.org/05nzhg723', 'no_lang_code', 1, 'https://ror.org/05nzhg723 Merx (Poland)'),
(66907, 'https://ror.org/04zarx416', 'no_lang_code', 1, 'https://ror.org/04zarx416 Riela (Poland)'),
(66908, 'https://ror.org/03q3g6770', 'no_lang_code', 1, 'https://ror.org/03q3g6770 RIKA (Austria)'),
(66909, 'https://ror.org/05m7seh36', 'no_lang_code', 1, 'https://ror.org/05m7seh36 Mician (Germany)'),
(66910, 'https://ror.org/03x58jg90', 'no_lang_code', 1, 'https://ror.org/03x58jg90 Mikronatura Środowisko (Poland)'),
(66911, 'https://ror.org/03g24h954', 'en', 1, 'https://ror.org/03g24h954 MRS Training & Rescue'),
(66912, 'https://ror.org/016bfm023', 'no_lang_code', 1, 'https://ror.org/016bfm023 MLabs (Poland)'),
(66913, 'https://ror.org/013r0t984', 'no_lang_code', 1, 'https://ror.org/013r0t984 Fabryka Łożysk Tocznych Kraśnik Polish Bearings Factory (Poland)'),
(66914, 'https://ror.org/04byf5b56', 'no_lang_code', 1, 'https://ror.org/04byf5b56 Zakład Mechaniki Maszyn (Poland)'),
(66915, 'https://ror.org/05s28rs88', 'no_lang_code', 1, 'https://ror.org/05s28rs88 Modertrans (Poland)'),
(66916, 'https://ror.org/03dyp1558', 'no_lang_code', 1, 'https://ror.org/03dyp1558 MPTS (Poland)'),
(66917, 'https://ror.org/00ww76c39', 'en', 1, 'https://ror.org/00ww76c39 Muzeum Narodowe w Warszawie National Museum in Warsaw'),
(66918, 'https://ror.org/05dy2tj95', 'no_lang_code', 1, 'https://ror.org/05dy2tj95 Special Production Plant Gamrat (Poland) Zaklad Produkcji Specjalnej Gamrat'),
(66919, 'https://ror.org/01avd5833', 'pl', 1, 'https://ror.org/01avd5833 Narodowy Instytut Muzealnictwa i Ochrony Zbiorów'),
(66920, 'https://ror.org/01vph1q21', 'no_lang_code', 1, 'https://ror.org/01vph1q21 Eltraf (Poland)'),
(66921, 'https://ror.org/00q4d6m68', 'no_lang_code', 1, 'https://ror.org/00q4d6m68 Glider Factory in Jeżów (Poland) Zakład Szybowcowy Jeźów Henryk Mynarski'),
(66922, 'https://ror.org/05bf1hc74', 'no_lang_code', 1, 'https://ror.org/05bf1hc74 Lentex (Poland)'),
(66923, 'https://ror.org/056jpe255', 'no_lang_code', 1, 'https://ror.org/056jpe255 Automex (Poland)'),
(66924, 'https://ror.org/05kge5x46', 'no_lang_code', 1, 'https://ror.org/05kge5x46 AgeSoya (Poland)'),
(66925, 'https://ror.org/02yay2r30', 'no_lang_code', 1, 'https://ror.org/02yay2r30 Zurad (Poland)'),
(66926, 'https://ror.org/01dmy1650', 'no_lang_code', 1, 'https://ror.org/01dmy1650 Odlewnie Polskie (Poland)'),
(66927, 'https://ror.org/00gpd0h05', 'no_lang_code', 1, 'https://ror.org/00gpd0h05 Omnikon (Poland)'),
(66928, 'https://ror.org/02x2r7t05', 'no_lang_code', 1, 'https://ror.org/02x2r7t05 Nitrochem (Poland)'),
(66929, 'https://ror.org/03dnwsa64', 'no_lang_code', 1, 'https://ror.org/03dnwsa64 Opegieka (Poland)'),
(66930, 'https://ror.org/03cj4xr84', 'no_lang_code', 1, 'https://ror.org/03cj4xr84 Newind (Poland)'),
(66931, 'https://ror.org/012r7dj92', 'no_lang_code', 1, 'https://ror.org/012r7dj92 Silikony (Poland)'),
(66932, 'https://ror.org/05hpbxg82', 'no_lang_code', 1, 'https://ror.org/05hpbxg82 Nexteer Automotive (Poland)'),
(66933, 'https://ror.org/016azcq16', 'en', 1, 'https://ror.org/016azcq16 Meditest Niepubliczny Zakład Opieki Zdrowotnej Meditest. Diagnostyka Medyczna'),
(66934, 'https://ror.org/00qnj9c09', 'no_lang_code', 1, 'https://ror.org/00qnj9c09 Zakłady Energetyki Cieplnej (Poland)'),
(66935, 'https://ror.org/028e1nz03', 'no_lang_code', 1, 'https://ror.org/028e1nz03 Nitroerg (Poland)'),
(66936, 'https://ror.org/040fsr689', 'no_lang_code', 1, 'https://ror.org/040fsr689 Nomino (Poland)'),
(66937, 'https://ror.org/01wz1pj13', 'no_lang_code', 1, 'https://ror.org/01wz1pj13 Zaslaw (Poland)'),
(66938, 'https://ror.org/03jr6e130', 'no_lang_code', 1, 'https://ror.org/03jr6e130 Zębiec (Poland)'),
(66939, 'https://ror.org/05s0d1r23', 'no_lang_code', 1, 'https://ror.org/05s0d1r23 Zakłady Mechaniczne Tarnów (Poland)'),
(66940, 'https://ror.org/00rq4rf45', 'no_lang_code', 1, 'https://ror.org/00rq4rf45 Zeto (Poland)'),
(66941, 'https://ror.org/036hc2148', 'no_lang_code', 1, 'https://ror.org/036hc2148 Advanced Systems Technology (United States)'),
(66942, 'https://ror.org/02k6zwz49', 'no_lang_code', 1, 'https://ror.org/02k6zwz49 Zakłady Magnezytowe (Poland)'),
(66943, 'https://ror.org/02e4d0d63', 'en', 1, 'https://ror.org/02e4d0d63 Alabama Department of Forensic Sciences'),
(66944, 'https://ror.org/04fcsw843', 'en', 1, 'https://ror.org/04fcsw843 Virginia Department of Forensic Science'),
(66945, 'https://ror.org/01z2yst76', 'en', 1, 'https://ror.org/01z2yst76 Alaska Department of Public Safety'),
(66946, 'https://ror.org/0334ajr59', 'no_lang_code', 1, 'https://ror.org/0334ajr59 Development Services Group (United States)'),
(66947, 'https://ror.org/01bxfeh72', 'en', 1, 'https://ror.org/01bxfeh72 American Correctional Association'),
(66948, 'https://ror.org/03akcxx27', 'en', 1, 'https://ror.org/03akcxx27 District of Columbia Department of Forensic Sciences'),
(66949, 'https://ror.org/02acf6r22', 'no_lang_code', 1, 'https://ror.org/02acf6r22 Maroon Biotech (United States)'),
(66950, 'https://ror.org/04m6k0e70', 'no_lang_code', 1, 'https://ror.org/04m6k0e70 Drakontas (United States)'),
(66951, 'https://ror.org/00nwkxv42', 'en', 1, 'https://ror.org/00nwkxv42 McCrone Research Institute'),
(66952, 'https://ror.org/02a497926', 'en', 1, 'https://ror.org/02a497926 American Indian Development Associates'),
(66953, 'https://ror.org/03hqz0977', 'no_lang_code', 1, 'https://ror.org/03hqz0977 Microtrace (United States)'),
(66954, 'https://ror.org/00nz6vc25', 'en', 1, 'https://ror.org/00nz6vc25 Middle Rio Grande Development Council'),
(66955, 'https://ror.org/00pkkjm33', 'no_lang_code', 1, 'https://ror.org/00pkkjm33 Mistral Security (United States)'),
(66956, 'https://ror.org/04sqcre19', 'en', 1, 'https://ror.org/04sqcre19 Fredric Rieders Family Foundation'),
(66957, 'https://ror.org/05ksq6x45', 'en', 1, 'https://ror.org/05ksq6x45 American Society of Crime Laboratory Directors'),
(66958, 'https://ror.org/05k7h3711', 'en', 1, 'https://ror.org/05k7h3711 BOTEC Analysis'),
(66959, 'https://ror.org/00qt5t304', 'en', 1, 'https://ror.org/00qt5t304 Automated Regional Justice Information System'),
(66960, 'https://ror.org/039txbb33', 'no_lang_code', 1, 'https://ror.org/039txbb33 Nanogen (United States)'),
(66961, 'https://ror.org/057d9q433', 'no_lang_code', 1, 'https://ror.org/057d9q433 Great Basin Data Recovery (United States)'),
(66962, 'https://ror.org/049s75k27', 'en', 1, 'https://ror.org/049s75k27 Arkansas State Crime Laboratory'),
(66963, 'https://ror.org/059aemv20', 'en', 1, 'https://ror.org/059aemv20 National Association of Drug Court Professionals'),
(66964, 'https://ror.org/027xnhd66', 'no_lang_code', 1, 'https://ror.org/027xnhd66 Grier Forensics (United States)'),
(66965, 'https://ror.org/05waabg59', 'en', 1, 'https://ror.org/05waabg59 The Cancer Treatment Center'),
(66966, 'https://ror.org/00ybgpf59', 'en', 1, 'https://ror.org/00ybgpf59 National Council of Juvenile and Family Court Judges'),
(66967, 'https://ror.org/0245g4145', 'en', 1, 'https://ror.org/0245g4145 Houston Forensic Science Center'),
(66968, 'https://ror.org/011qz6c59', 'en', 1, 'https://ror.org/011qz6c59 Houston-Galveston Area Council'),
(66969, 'https://ror.org/04zy5hd61', 'en', 1, 'https://ror.org/04zy5hd61 National District Attorneys Association'),
(66970, 'https://ror.org/047kq9b85', 'en', 1, 'https://ror.org/047kq9b85 International Association of Directors of Law Enforcement Standards and Training'),
(66971, 'https://ror.org/0048qgt65', 'en', 1, 'https://ror.org/0048qgt65 BKForensics'),
(66972, 'https://ror.org/00jmssa97', 'en', 1, 'https://ror.org/00jmssa97 National Legal Aid & Defender Association'),
(66973, 'https://ror.org/05025g024', 'en', 1, 'https://ror.org/05025g024 Indiana Criminal Justice Institute'),
(66974, 'https://ror.org/05wbcyx60', 'no_lang_code', 1, 'https://ror.org/05wbcyx60 InnoGenomics (United States)'),
(66975, 'https://ror.org/04a4xjz41', 'en', 1, 'https://ror.org/04a4xjz41 Cadre Research'),
(66976, 'https://ror.org/01fn3sj65', 'en', 1, 'https://ror.org/01fn3sj65 Institute for Intergovernmental Research'),
(66977, 'https://ror.org/05tcv8k56', 'en', 1, 'https://ror.org/05tcv8k56 California Institute for Behavioral Health Solutions'),
(66978, 'https://ror.org/01949f364', 'en', 1, 'https://ror.org/01949f364 Northeastern Illinois Regional Crime Laboratory'),
(66979, 'https://ror.org/00vaaes23', 'en', 1, 'https://ror.org/00vaaes23 Northwest Professional Consortium'),
(66980, 'https://ror.org/019rrzp31', 'en', 1, 'https://ror.org/019rrzp31 Institute for Linguistic Evidence'),
(66981, 'https://ror.org/02md98x79', 'en', 1, 'https://ror.org/02md98x79 National White Collar Crime Center'),
(66982, 'https://ror.org/03cn5zn95', 'en', 1, 'https://ror.org/03cn5zn95 Occupational Research and Assessment'),
(66983, 'https://ror.org/011hfx640', 'en', 1, 'https://ror.org/011hfx640 Center For Policy Research'),
(66984, 'https://ror.org/02zm6bn93', 'en', 1, 'https://ror.org/02zm6bn93 Connections for Abused Women and their Children'),
(66985, 'https://ror.org/04f2vpk13', 'en', 1, 'https://ror.org/04f2vpk13 Paternity Testing Corporation Laboratories'),
(66986, 'https://ror.org/04jy9y087', 'en', 1, 'https://ror.org/04jy9y087 Pennsylvania Coalition Against Domestic Violence'),
(66987, 'https://ror.org/02na2cx67', 'no_lang_code', 1, 'https://ror.org/02na2cx67 Miltran (United States)'),
(66988, 'https://ror.org/04h51r045', 'en', 1, 'https://ror.org/04h51r045 Interdisciplinary Scientific Research'),
(66989, 'https://ror.org/01ngfjj64', 'no_lang_code', 1, 'https://ror.org/01ngfjj64 PharmChem (United States)'),
(66990, 'https://ror.org/00eep5m87', 'en', 1, 'https://ror.org/00eep5m87 International Association of Forensic Nurses'),
(66991, 'https://ror.org/03tv6h054', 'en', 1, 'https://ror.org/03tv6h054 Police Executive Research Forum'),
(66992, 'https://ror.org/04vxddf34', 'en', 1, 'https://ror.org/04vxddf34 IsoForensics'),
(66993, 'https://ror.org/01yymmk41', 'no_lang_code', 1, 'https://ror.org/01yymmk41 Maximus (United States)'),
(66994, 'https://ror.org/020qa8h77', 'en', 1, 'https://ror.org/020qa8h77 Coalition Against Trafficking Women'),
(66995, 'https://ror.org/04dge4z44', 'en', 1, 'https://ror.org/04dge4z44 Pretrial Justice Institute'),
(66996, 'https://ror.org/05em9b770', 'en', 1, 'https://ror.org/05em9b770 Justice & Security Strategies'),
(66997, 'https://ror.org/04x44n450', 'en', 1, 'https://ror.org/04x44n450 Justice Research and Statistics Association'),
(66998, 'https://ror.org/02kdshq54', 'en', 1, 'https://ror.org/02kdshq54 Connecticut Statistical Analysis Center'),
(66999, 'https://ror.org/0219smt59', 'en', 1, 'https://ror.org/0219smt59 The Justice Research Center'),
(67000, 'https://ror.org/02sksqx64', 'en', 1, 'https://ror.org/02sksqx64 Division of Public Defender Services'),
(67001, 'https://ror.org/04qfef108', 'en', 1, 'https://ror.org/04qfef108 Language Systems International College of English'),
(67002, 'https://ror.org/01rvq6e84', 'no_lang_code', 1, 'https://ror.org/01rvq6e84 The McCrone Group (United States)'),
(67003, 'https://ror.org/00nbvsp70', 'en', 1, 'https://ror.org/00nbvsp70 Pretrial Services Agency for the District of Columbia'),
(67004, 'https://ror.org/03f78hn46', 'no_lang_code', 1, 'https://ror.org/03f78hn46 Search'),
(67005, 'https://ror.org/003yky459', 'no_lang_code', 1, 'https://ror.org/003yky459 RentPath (United States)'),
(67006, 'https://ror.org/052213k81', 'en', 1, 'https://ror.org/052213k81 Day One'),
(67007, 'https://ror.org/02t2xcx21', 'en', 1, 'https://ror.org/02t2xcx21 Social Science Research and Evaluation'),
(67008, 'https://ror.org/028310354', 'no_lang_code', 1, 'https://ror.org/028310354 Social Policy Research Associates (United States)'),
(67009, 'https://ror.org/047pb7g40', 'en', 1, 'https://ror.org/047pb7g40 South Dakota Department of Public Safety'),
(67010, 'https://ror.org/0177wgn41', 'no_lang_code', 1, 'https://ror.org/0177wgn41 Stoney Forensic (United States)'),
(67011, 'https://ror.org/002m2fe15', 'en', 1, 'https://ror.org/002m2fe15 Telecommunications Industry Association'),
(67012, 'https://ror.org/01g5nae47', 'en', 1, 'https://ror.org/01g5nae47 Texas Association Against Sexual Assault'),
(67013, 'https://ror.org/05dvgxb17', 'en', 1, 'https://ror.org/05dvgxb17 The Center For Rural Development'),
(67014, 'https://ror.org/04d0tbe10', 'no_lang_code', 1, 'https://ror.org/04d0tbe10 Vanu (United States)'),
(67015, 'https://ror.org/03h8kn192', 'en', 1, 'https://ror.org/03h8kn192 International Union of Police Associations'),
(67016, 'https://ror.org/0257m1m09', 'no_lang_code', 1, 'https://ror.org/0257m1m09 Vere Software (United States)'),
(67017, 'https://ror.org/02sncd318', 'en', 1, 'https://ror.org/02sncd318 The Reed Institute'),
(67018, 'https://ror.org/01zxrsb29', 'en', 1, 'https://ror.org/01zxrsb29 Virginia Center for Policing Innovation'),
(67019, 'https://ror.org/01e15cb45', 'no_lang_code', 1, 'https://ror.org/01e15cb45 Bova (Taiwan)'),
(67020, 'https://ror.org/03w8g0847', 'en', 1, 'https://ror.org/03w8g0847 West Virginia Department of Military Affairs and Public Safety'),
(67021, 'https://ror.org/015mspw86', 'en', 1, 'https://ror.org/015mspw86 Western Forensic Law Enforcement Training Center'),
(67022, 'https://ror.org/03cwrs750', 'no_lang_code', 1, 'https://ror.org/03cwrs750 Allen (United States)'),
(67023, 'https://ror.org/04vv9rj91', 'no_lang_code', 1, 'https://ror.org/04vv9rj91 Data One Global (United States)'),
(67024, 'https://ror.org/05gvknb51', 'en', 1, 'https://ror.org/05gvknb51 Institute of Biomedical Physics Viện Vật Lý Y Sinh'),
(67025, 'https://ror.org/018bj7h19', 'no_lang_code', 1, 'https://ror.org/018bj7h19 A J Tuck (United States)'),
(67026, 'https://ror.org/0250p1d07', 'no_lang_code', 1, 'https://ror.org/0250p1d07 Phenikaa (Vietnam)'),
(67027, 'https://ror.org/02v857h75', 'no_lang_code', 1, 'https://ror.org/02v857h75 Deregallera (United Kingdom)'),
(67028, 'https://ror.org/0286v3284', 'en', 1, 'https://ror.org/0286v3284 Institute of Hydrogeology and Geoecology. Ahmedsafina Институт гидрогеологии и геоэкологии им. Ахмедсафина'),
(67029, 'https://ror.org/04f41f018', 'no_lang_code', 1, 'https://ror.org/04f41f018 Advanced Algorithm and Systems (Japan)'),
(67030, 'https://ror.org/04g5q3m07', 'no_lang_code', 1, 'https://ror.org/04g5q3m07 Dinntec (Colombia)'),
(67031, 'https://ror.org/009d3ws08', 'es', 1, 'https://ror.org/009d3ws08 Instituto de Investigaciones Físicas de Mar del Plata'),
(67032, 'https://ror.org/005n3yy14', 'en', 1, 'https://ror.org/005n3yy14 Institute of Physics and Technology науки Физико-технологический институт'),
(67033, 'https://ror.org/03a8ase89', 'en', 1, 'https://ror.org/03a8ase89 Institute of Physics of Molecules and Crystals Институт физики молекул и кристаллов'),
(67034, 'https://ror.org/04n1dwf03', 'no_lang_code', 1, 'https://ror.org/04n1dwf03 ECM Technologies (France)'),
(67035, 'https://ror.org/00g04a530', 'es', 1, 'https://ror.org/00g04a530 Instituto de Física del Sur'),
(67036, 'https://ror.org/036w35554', 'en', 1, 'https://ror.org/036w35554 African Centre for Advanced Studies'),
(67037, 'https://ror.org/01xfv7487', 'no_lang_code', 1, 'https://ror.org/01xfv7487 Electric Ant Lab (Netherlands)'),
(67038, 'https://ror.org/0073twa91', 'en', 1, 'https://ror.org/0073twa91 Interdisciplinary Scientific Center J.-V. Poncelet'),
(67039, 'https://ror.org/02fn8bv93', 'en', 1, 'https://ror.org/02fn8bv93 Ambasciata d''Italia Embassy of Italy in Tel Aviv'),
(67040, 'https://ror.org/02vhzww23', 'no_lang_code', 1, 'https://ror.org/02vhzww23 Aizu Hokurei High School'),
(67041, 'https://ror.org/005rnqt78', 'no_lang_code', 1, 'https://ror.org/005rnqt78 Invenia (Canada)'),
(67042, 'https://ror.org/02x9fwx10', 'en', 1, 'https://ror.org/02x9fwx10 Ethiopian Space Science and Technology Institute የኢትዮጵያ ስፔስ ሳይንስ እና ቴክኖሎጂ ተቋም'),
(67043, 'https://ror.org/04rfmre55', 'en', 1, 'https://ror.org/04rfmre55 Islamic Azad University of Marand'),
(67044, 'https://ror.org/00r2sd878', 'no_lang_code', 1, 'https://ror.org/00r2sd878 ISTEQ (Netherlands)'),
(67045, 'https://ror.org/00v9sab02', 'no_lang_code', 1, 'https://ror.org/00v9sab02 Iteratec (Germany)'),
(67046, 'https://ror.org/03g8he721', 'no_lang_code', 1, 'https://ror.org/03g8he721 EUV Labs (Russia)'),
(67047, 'https://ror.org/01e47g017', 'no_lang_code', 1, 'https://ror.org/01e47g017 FirstPass Engineering (United States)'),
(67048, 'https://ror.org/019enq229', 'no_lang_code', 1, 'https://ror.org/019enq229 Folio Photonics (United States)'),
(67049, 'https://ror.org/053yfc731', 'no_lang_code', 1, 'https://ror.org/053yfc731 Fomos-Materials (Russia)'),
(67050, 'https://ror.org/01wy0hc37', 'fr', 1, 'https://ror.org/01wy0hc37 Alistore'),
(67051, 'https://ror.org/03qe16108', 'en', 1, 'https://ror.org/03qe16108 Directorate General of Training'),
(67052, 'https://ror.org/02557nd11', 'en', 1, 'https://ror.org/02557nd11 Jinan Institute of Quantum Technology 济南量子技术研究院'),
(67053, 'https://ror.org/05kk1wy06', 'no_lang_code', 1, 'https://ror.org/05kk1wy06 Greenerwave (France)'),
(67054, 'https://ror.org/005q1n430', 'it', 1, 'https://ror.org/005q1n430 Osservativa di Campo Imperatore'),
(67055, 'https://ror.org/02sgc5k80', 'no_lang_code', 1, 'https://ror.org/02sgc5k80 Grinm Advanced Materials (China) 有研新材料股份有限公司'),
(67056, 'https://ror.org/001wkh665', 'no_lang_code', 1, 'https://ror.org/001wkh665 Kelenn Technology (France)'),
(67057, 'https://ror.org/0260evc53', 'de', 1, 'https://ror.org/0260evc53 Maschinenbauschule Ansbach'),
(67058, 'https://ror.org/04rjeh836', 'no_lang_code', 1, 'https://ror.org/04rjeh836 Patliputra University'),
(67059, 'https://ror.org/02qvs5504', 'no_lang_code', 1, 'https://ror.org/02qvs5504 Artwork Conversion Software (United States)'),
(67060, 'https://ror.org/007vees71', 'no_lang_code', 1, 'https://ror.org/007vees71 Gyan Data (India)'),
(67061, 'https://ror.org/029vth897', 'en', 1, 'https://ror.org/029vth897 Association for India’s Development'),
(67062, 'https://ror.org/04r8tna72', 'en', 1, 'https://ror.org/04r8tna72 Hadaf Institute of Higher Education'),
(67063, 'https://ror.org/00yy0tx50', 'no_lang_code', 1, 'https://ror.org/00yy0tx50 Hefei CAS Ion Medical and Technical Devices (China) 合肥中科离子医学技术装备'),
(67064, 'https://ror.org/03ktsar73', 'en', 1, 'https://ror.org/03ktsar73 AARP Foundation'),
(67065, 'https://ror.org/04g84km62', 'no_lang_code', 1, 'https://ror.org/04g84km62 KW Engineering (United States)'),
(67066, 'https://ror.org/04bapa014', 'no_lang_code', 1, 'https://ror.org/04bapa014 Hongzhiwei Technology (China) 鸿之微科技'),
(67067, 'https://ror.org/05x6bj397', 'es', 1, 'https://ror.org/05x6bj397 Instituto Universitario Hospital Italiano'),
(67068, 'https://ror.org/03ja1tq30', 'no_lang_code', 1, 'https://ror.org/03ja1tq30 HOPE Innovations (Canada)'),
(67069, 'https://ror.org/052qx3616', 'no_lang_code', 1, 'https://ror.org/052qx3616 Hotto Link (Japan)'),
(67070, 'https://ror.org/00e6aar40', 'no_lang_code', 1, 'https://ror.org/00e6aar40 Illumisonics (Canada)'),
(67071, 'https://ror.org/05tf4ye04', 'no_lang_code', 1, 'https://ror.org/05tf4ye04 Laipac Technology (Canada)'),
(67072, 'https://ror.org/051yxch97', 'no_lang_code', 1, 'https://ror.org/051yxch97 LTCalcoli (Italy)'),
(67073, 'https://ror.org/053k9sq83', 'no_lang_code', 1, 'https://ror.org/053k9sq83 Lumetrics (United States)'),
(67074, 'https://ror.org/00gd30v42', 'no_lang_code', 1, 'https://ror.org/00gd30v42 Infinia ML (United States)'),
(67075, 'https://ror.org/0096z2k33', 'en', 1, 'https://ror.org/0096z2k33 Luxembourg School of Business'),
(67076, 'https://ror.org/027s2rg16', 'no_lang_code', 1, 'https://ror.org/027s2rg16 Machakos School'),
(67077, 'https://ror.org/0022jb369', 'en', 1, 'https://ror.org/0022jb369 Institute for Molecular Manufacturing'),
(67078, 'https://ror.org/00936xm65', 'en', 1, 'https://ror.org/00936xm65 Ajmal College of Arts and Science'),
(67079, 'https://ror.org/005278833', 'en', 1, 'https://ror.org/005278833 Maxwell Air Force Base'),
(67080, 'https://ror.org/04e0gjd70', 'it', 1, 'https://ror.org/04e0gjd70 Istituto Tecnico Industriale Alessandro Volta'),
(67081, 'https://ror.org/00sbgyf60', 'fr', 1, 'https://ror.org/00sbgyf60 Laboratoire de Recherche Scientifique'),
(67082, 'https://ror.org/04y03rz94', 'no_lang_code', 1, 'https://ror.org/04y03rz94 Muquans (France)'),
(67083, 'https://ror.org/01jttce46', 'en', 1, 'https://ror.org/01jttce46 Federal State Budget Scientific Institution Institute of Applied Mathematics and Automation ИНСТИТУТ ПРИКЛАДНОЙ МАТЕМАТИКИ И АВТОМАТИЗАЦИИ'),
(67084, 'https://ror.org/03wvwbe92', 'en', 1, 'https://ror.org/03wvwbe92 Nanjing Foreign Language School 南京外国语学校'),
(67085, 'https://ror.org/04tr7gf78', 'no_lang_code', 1, 'https://ror.org/04tr7gf78 Nanoacademic Technologies'),
(67086, 'https://ror.org/007s2zd20', 'no_lang_code', 1, 'https://ror.org/007s2zd20 Nanosc (Sweden)'),
(67087, 'https://ror.org/02xs8bd02', 'no_lang_code', 1, 'https://ror.org/02xs8bd02 Bergoz Instrumentation (France)'),
(67088, 'https://ror.org/00mm8xk76', 'it', 1, 'https://ror.org/00mm8xk76 Istituto di Istruzione Secondaria Superiore "V. Lilla" Francavilla Fontana - Oria'),
(67089, 'https://ror.org/00vf0sw72', 'no_lang_code', 1, 'https://ror.org/00vf0sw72 B M Birla Science Centre'),
(67090, 'https://ror.org/01bye2s58', 'en', 1, 'https://ror.org/01bye2s58 Breakthrough Science Society'),
(67091, 'https://ror.org/02zp3yd51', 'en', 1, 'https://ror.org/02zp3yd51 ARC Centre of Excellence for Gravitational Wave Discovery'),
(67092, 'https://ror.org/033hdxa37', 'en', 1, 'https://ror.org/033hdxa37 Brockhouse Institute for Materials Research'),
(67093, 'https://ror.org/056gaxr94', 'no_lang_code', 1, 'https://ror.org/056gaxr94 Cameca (United States)'),
(67094, 'https://ror.org/02zcam055', 'en', 1, 'https://ror.org/02zcam055 Canfranc Underground Laboratory Laboratorio Subterráneo de Canfranc'),
(67095, 'https://ror.org/03px6cm72', 'no_lang_code', 1, 'https://ror.org/03px6cm72 NBL Technovator Group (Japan)'),
(67096, 'https://ror.org/03t35rn28', 'en', 1, 'https://ror.org/03t35rn28 National Engineering and Scientific Commission'),
(67097, 'https://ror.org/05s58ph78', 'no_lang_code', 1, 'https://ror.org/05s58ph78 Niki (Greece)'),
(67098, 'https://ror.org/02694zd26', 'es', 1, 'https://ror.org/02694zd26 Centro de Recursos Educativos Avanzados'),
(67099, 'https://ror.org/05d6cw921', 'no_lang_code', 1, 'https://ror.org/05d6cw921 Nomura Plating (Japan)'),
(67100, 'https://ror.org/01dtas649', 'no_lang_code', 1, 'https://ror.org/01dtas649 Norstel (Sweden)'),
(67101, 'https://ror.org/019w0b107', 'no_lang_code', 1, 'https://ror.org/019w0b107 Choshu Industry (Japan) 長州産業'),
(67102, 'https://ror.org/059ydbh22', 'no_lang_code', 1, 'https://ror.org/059ydbh22 Oxipit (Lithuania)'),
(67103, 'https://ror.org/03schyf67', 'no_lang_code', 1, 'https://ror.org/03schyf67 CLEARink (United States)'),
(67104, 'https://ror.org/04rx5bj15', 'en', 1, 'https://ror.org/04rx5bj15 Istraživačka stanica Petnica Petnica Science Center'),
(67105, 'https://ror.org/021p0r140', 'no_lang_code', 1, 'https://ror.org/021p0r140 CLEARink (Canada)'),
(67106, 'https://ror.org/0428j9521', 'en', 1, 'https://ror.org/0428j9521 Fizika-Texnika Instituti Physicotechnical Institute'),
(67107, 'https://ror.org/04ee5c022', 'no_lang_code', 1, 'https://ror.org/04ee5c022 Cognitec (Germany)'),
(67108, 'https://ror.org/031ncfw92', 'no_lang_code', 1, 'https://ror.org/031ncfw92 PNDetector (Germany)'),
(67109, 'https://ror.org/04badap48', 'en', 1, 'https://ror.org/04badap48 Military Institute of Telecommunications and Informatization Полтавський військовий інститут зв''язку'),
(67110, 'https://ror.org/01w3yjx71', 'en', 1, 'https://ror.org/01w3yjx71 Rome International Center for Materials Science'),
(67111, 'https://ror.org/0173tje75', 'no_lang_code', 1, 'https://ror.org/0173tje75 Compass Manufacturing Services (United States)'),
(67112, 'https://ror.org/01006t419', 'no_lang_code', 1, 'https://ror.org/01006t419 Corrected Electron Optical Systems (Germany)'),
(67113, 'https://ror.org/00r80fz20', 'en', 1, 'https://ror.org/00r80fz20 Quantum Gravity Research'),
(67114, 'https://ror.org/045xz7k18', 'no_lang_code', 1, 'https://ror.org/045xz7k18 Quazar Technologies (India)'),
(67115, 'https://ror.org/04wf30j82', 'en', 1, 'https://ror.org/04wf30j82 QuTech'),
(67116, 'https://ror.org/003mg4e46', 'no_lang_code', 1, 'https://ror.org/003mg4e46 Radosys (Hungary)'),
(67117, 'https://ror.org/051twfb64', 'no_lang_code', 1, 'https://ror.org/051twfb64 Reece Innovation (United Kingdom)'),
(67118, 'https://ror.org/05t4k0m36', 'no_lang_code', 1, 'https://ror.org/05t4k0m36 SHL Group (Taiwan)'),
(67119, 'https://ror.org/02cgy3m12', 'en', 1, 'https://ror.org/02cgy3m12 CSIRO Scientific Computing'),
(67120, 'https://ror.org/02mt5f456', 'en', 1, 'https://ror.org/02mt5f456 Regional Centre of Advanced Technologies and Materials Regionální Centrum Pokrocilych Technologií a Materiálů'),
(67121, 'https://ror.org/01hcawk58', 'en', 1, 'https://ror.org/01hcawk58 Seoyeong University'),
(67122, 'https://ror.org/02bymqz65', 'no_lang_code', 1, 'https://ror.org/02bymqz65 Dassault Systèmes (Japan)'),
(67123, 'https://ror.org/01zvnqb17', 'no_lang_code', 1, 'https://ror.org/01zvnqb17 Organic Electronics Saxony (Germany)'),
(67124, 'https://ror.org/00az65y50', 'en', 1, 'https://ror.org/00az65y50 Research Organization for Information Science and Technology 高度情報科学技術研究機構'),
(67125, 'https://ror.org/03x0jax93', 'no_lang_code', 1, 'https://ror.org/03x0jax93 SpaceX (United States)'),
(67126, 'https://ror.org/01844pt54', 'en', 1, 'https://ror.org/01844pt54 Shantou Broadcasting and Television University 汕头广播电视大学'),
(67127, 'https://ror.org/0151zbe59', 'no_lang_code', 1, 'https://ror.org/0151zbe59 Q2 Solutions (United States)'),
(67128, 'https://ror.org/03fxa2376', 'en', 1, 'https://ror.org/03fxa2376 Shenzhen Baoan High School Group 深圳市宝安中学'),
(67129, 'https://ror.org/03b6wpc57', 'no_lang_code', 1, 'https://ror.org/03b6wpc57 Tech-X (United Kingdom)'),
(67130, 'https://ror.org/04m8nb974', 'no_lang_code', 1, 'https://ror.org/04m8nb974 SPring-8 (Japan) スプリングエイトサービス'),
(67131, 'https://ror.org/0431q3e43', 'en', 1, 'https://ror.org/0431q3e43 Ensenada Institute of Technology Instituto Tecnológico de Ensenada'),
(67132, 'https://ror.org/03ast5668', 'no_lang_code', 1, 'https://ror.org/03ast5668 TetraScience (United States)'),
(67133, 'https://ror.org/00pvp5q54', 'en', 1, 'https://ror.org/00pvp5q54 State Cryptography Administration 国家密码管理局'),
(67134, 'https://ror.org/01v49q824', 'en', 1, 'https://ror.org/01v49q824 Tianjin Internal Combustion Engine Research Institute 天津内燃机研究所'),
(67135, 'https://ror.org/02k1g2k85', 'no_lang_code', 1, 'https://ror.org/02k1g2k85 Sunwave Solutions (China)'),
(67136, 'https://ror.org/03g5wrk88', 'no_lang_code', 1, 'https://ror.org/03g5wrk88 Simerics (United States)'),
(67137, 'https://ror.org/04wasyv34', 'no_lang_code', 1, 'https://ror.org/04wasyv34 Jingpin Materials (China) 苏州晶品新材料股份有限公司'),
(67138, 'https://ror.org/002pnw495', 'en', 1, 'https://ror.org/002pnw495 Singapore-HUJ Alliance for Research and Enterprise'),
(67139, 'https://ror.org/04nhd8d77', 'no_lang_code', 1, 'https://ror.org/04nhd8d77 SwissLitho (Switzerland)'),
(67140, 'https://ror.org/05n1eva55', 'no_lang_code', 1, 'https://ror.org/05n1eva55 SwissScientific Technologies (Switzerland)'),
(67141, 'https://ror.org/00n9dn158', 'fr', 1, 'https://ror.org/00n9dn158 Institut Franco-Chinois de l''Energie Nucléaire 中法核工程与技术学院'),
(67142, 'https://ror.org/04gjcva23', 'no_lang_code', 1, 'https://ror.org/04gjcva23 Two Sigma Investments (United States)'),
(67143, 'https://ror.org/01esz2741', 'no_lang_code', 1, 'https://ror.org/01esz2741 UIT Solutions (South Korea) 유아이티'),
(67144, 'https://ror.org/055qvdj66', 'no_lang_code', 1, 'https://ror.org/055qvdj66 MegaChips (United States)'),
(67145, 'https://ror.org/05dhnhb13', 'no_lang_code', 1, 'https://ror.org/05dhnhb13 Naftogaz (Ukraine) Нафтогаз України'),
(67146, 'https://ror.org/020wewy68', 'no_lang_code', 1, 'https://ror.org/020wewy68 Wind Power Engineering (Japan)'),
(67147, 'https://ror.org/010tw2j24', 'en', 1, 'https://ror.org/010tw2j24 Winnipeg Institute for Theoretical Physics'),
(67148, 'https://ror.org/03vt7za95', 'en', 1, 'https://ror.org/03vt7za95 Xi''an High Tech University 西安高新科技职业学院'),
(67149, 'https://ror.org/02jfkxh18', 'en', 1, 'https://ror.org/02jfkxh18 Vietnam National University of Forestry'),
(67150, 'https://ror.org/0330j9a35', 'en', 1, 'https://ror.org/0330j9a35 University of Science and Technology, Meghalaya विज्ञान एवं प्रौद्योगिकी विश्वविद्यालय, मेघालय'),
(67151, 'https://ror.org/03b6bz334', 'no_lang_code', 1, 'https://ror.org/03b6bz334 Voltaiq (United States)'),
(67152, 'https://ror.org/032dvkh62', 'en', 1, 'https://ror.org/032dvkh62 Thanhtay University Trường Đại học Thành Tây'),
(67153, 'https://ror.org/054fvwy19', 'en', 1, 'https://ror.org/054fvwy19 Ironbridge Gorge Museum Trust'),
(67154, 'https://ror.org/047m1md22', 'no_lang_code', 1, 'https://ror.org/047m1md22 KUKA (United Kingdom)'),
(67155, 'https://ror.org/00k8z3892', 'en', 1, 'https://ror.org/00k8z3892 Leicestershire Fire and Rescue Service'),
(67156, 'https://ror.org/044kzfd07', 'en', 1, 'https://ror.org/044kzfd07 Leicestershire Police'),
(67157, 'https://ror.org/03cph9p23', 'en', 1, 'https://ror.org/03cph9p23 Leonard Cheshire'),
(67158, 'https://ror.org/0128g3b12', 'en', 1, 'https://ror.org/0128g3b12 LGBT Youth Scotland'),
(67159, 'https://ror.org/01368p749', 'en', 1, 'https://ror.org/01368p749 Lincolnshire County Council'),
(67160, 'https://ror.org/00za55k91', 'no_lang_code', 1, 'https://ror.org/00za55k91 Roper Technologies (United Kingdom)'),
(67161, 'https://ror.org/00xa7zj26', 'en', 1, 'https://ror.org/00xa7zj26 Lambeth Council'),
(67162, 'https://ror.org/00krgnp64', 'en', 1, 'https://ror.org/00krgnp64 London Sinfonietta'),
(67163, 'https://ror.org/00j82ww20', 'en', 1, 'https://ror.org/00j82ww20 Low Gillerthwaite Field Centre'),
(67164, 'https://ror.org/00rn98z33', 'no_lang_code', 1, 'https://ror.org/00rn98z33 Suntory (United Kingdom)'),
(67165, 'https://ror.org/02nstsj42', 'en', 1, 'https://ror.org/02nstsj42 BayMark Health Services'),
(67166, 'https://ror.org/02jqq3312', 'en', 1, 'https://ror.org/02jqq3312 Maidstone Museum'),
(67167, 'https://ror.org/038jgf307', 'en', 1, 'https://ror.org/038jgf307 National Army Museum'),
(67168, 'https://ror.org/01g3gak55', 'en', 1, 'https://ror.org/01g3gak55 The National Autistic Society'),
(67169, 'https://ror.org/048vp3g58', 'en', 1, 'https://ror.org/048vp3g58 Gardd Fotaneg Genedlaethol Cymru National Botanic Garden of Wales'),
(67170, 'https://ror.org/04kpt5t78', 'en', 1, 'https://ror.org/04kpt5t78 Manufacturing Technologies Association'),
(67171, 'https://ror.org/00gc37a46', 'no_lang_code', 1, 'https://ror.org/00gc37a46 Mowi (United Kingdom)'),
(67172, 'https://ror.org/01hz1eb30', 'en', 1, 'https://ror.org/01hz1eb30 Lloyd''s'),
(67173, 'https://ror.org/02bm86575', 'en', 1, 'https://ror.org/02bm86575 Mason Perkins Deafness Fund Onlus'),
(67174, 'https://ror.org/00dah2077', 'en', 1, 'https://ror.org/00dah2077 Consejo Nacional de Areas Protegidas National Council for Protected Areas'),
(67175, 'https://ror.org/03qyybc26', 'no_lang_code', 1, 'https://ror.org/03qyybc26 Kyocera (United Kingdom)'),
(67176, 'https://ror.org/02z50b706', 'en', 1, 'https://ror.org/02z50b706 Mauritian Wildlife Foundation'),
(67177, 'https://ror.org/05kmqx952', 'no_lang_code', 1, 'https://ror.org/05kmqx952 Mettler-Toledo (United Kingdom)'),
(67178, 'https://ror.org/02spn6s93', 'en', 1, 'https://ror.org/02spn6s93 National Energy Action'),
(67179, 'https://ror.org/02xf6ts56', 'en', 1, 'https://ror.org/02xf6ts56 National Flood Forum'),
(67180, 'https://ror.org/02vrtbq45', 'en', 1, 'https://ror.org/02vrtbq45 Gailearaidhean Nàiseanta na h-Alba National Galleries of Scotland'),
(67181, 'https://ror.org/00a2pr463', 'en', 1, 'https://ror.org/00a2pr463 National Agricultural Genotyping Center'),
(67182, 'https://ror.org/01myp4b02', 'en', 1, 'https://ror.org/01myp4b02 Migrants Rights Network'),
(67183, 'https://ror.org/02wp5bm32', 'en', 1, 'https://ror.org/02wp5bm32 The National Holocaust Centre & Museum'),
(67184, 'https://ror.org/05shw9n80', 'en', 1, 'https://ror.org/05shw9n80 Mitchell Arts Centre'),
(67185, 'https://ror.org/05sdqca31', 'en', 1, 'https://ror.org/05sdqca31 NHS Employers'),
(67186, 'https://ror.org/040a3tj51', 'en', 1, 'https://ror.org/040a3tj51 Norfolk Museums Service'),
(67187, 'https://ror.org/01pbz1b98', 'en', 1, 'https://ror.org/01pbz1b98 Norfolk Record Office'),
(67188, 'https://ror.org/05db2rf46', 'en', 1, 'https://ror.org/05db2rf46 Centre pour le contrôle démocratique des forces armées Geneva Centre for the Democratic Control of Armed Forces Genfer Zentrum für die demokratische Kontrolle der Streitkräfte'),
(67189, 'https://ror.org/00em2ph88', 'no_lang_code', 1, 'https://ror.org/00em2ph88 Catalent (United Kingdom)'),
(67190, 'https://ror.org/03356tk08', 'en', 1, 'https://ror.org/03356tk08 Newfoundland and Labrador Centre for Applied Health Research'),
(67191, 'https://ror.org/03ezkck64', 'en', 1, 'https://ror.org/03ezkck64 Chartered Management Institute'),
(67192, 'https://ror.org/029g0ec14', 'en', 1, 'https://ror.org/029g0ec14 Cyngor Sir Fynwy Monmouthshire County Council'),
(67193, 'https://ror.org/02vpqn405', 'en', 1, 'https://ror.org/02vpqn405 North Lanarkshire Council'),
(67194, 'https://ror.org/03j2yjz09', 'en', 1, 'https://ror.org/03j2yjz09 North Norfolk Clinical Commissioning Group'),
(67195, 'https://ror.org/01dkvcs48', 'en', 1, 'https://ror.org/01dkvcs48 North Somerset Council'),
(67196, 'https://ror.org/009bgdw98', 'en', 1, 'https://ror.org/009bgdw98 North Yorkshire County Council'),
(67197, 'https://ror.org/051r7gk37', 'en', 1, 'https://ror.org/051r7gk37 Northern Ireland Housing Executive'),
(67198, 'https://ror.org/04dx63c61', 'en', 1, 'https://ror.org/04dx63c61 Nottingham Contemporary'),
(67199, 'https://ror.org/00h0z3d69', 'en', 1, 'https://ror.org/00h0z3d69 Exeter Northcott Theatre'),
(67200, 'https://ror.org/03b8sbf49', 'en', 1, 'https://ror.org/03b8sbf49 Industrie, Tourisme et Investissement Industry, Tourism and Investment'),
(67201, 'https://ror.org/04snxr303', 'pt', 1, 'https://ror.org/04snxr303 Museu da Lourinhã'),
(67202, 'https://ror.org/01wn6mq04', 'en', 1, 'https://ror.org/01wn6mq04 Museum of London'),
(67203, 'https://ror.org/054j3ks98', 'no_lang_code', 1, 'https://ror.org/054j3ks98 Nuvia (United Kingdom)'),
(67204, 'https://ror.org/04n11wj95', 'en', 1, 'https://ror.org/04n11wj95 National Portrait Gallery'),
(67205, 'https://ror.org/058m30p27', 'en', 1, 'https://ror.org/058m30p27 National Society for Earthquake Technology'),
(67206, 'https://ror.org/05cxzzq07', 'en', 1, 'https://ror.org/05cxzzq07 Oldham Council'),
(67207, 'https://ror.org/04dsh5k81', 'en', 1, 'https://ror.org/04dsh5k81 Orchestra of the Age of Enlightenment'),
(67208, 'https://ror.org/03wqmmj05', 'no_lang_code', 1, 'https://ror.org/03wqmmj05 Furukawa Electric (Denmark)'),
(67209, 'https://ror.org/026fx4095', 'en', 1, 'https://ror.org/026fx4095 National Theatre Wales'),
(67210, 'https://ror.org/018112f03', 'en', 1, 'https://ror.org/018112f03 Parenting Across Scotland'),
(67211, 'https://ror.org/03hhqgr50', 'en', 1, 'https://ror.org/03hhqgr50 Peace Through Folk'),
(67212, 'https://ror.org/02b8fww89', 'en', 1, 'https://ror.org/02b8fww89 Pen International'),
(67213, 'https://ror.org/00xg4w305', 'en', 1, 'https://ror.org/00xg4w305 Outcomes Based Healthcare'),
(67214, 'https://ror.org/0042dc077', 'en', 1, 'https://ror.org/0042dc077 Peterborough City Council'),
(67215, 'https://ror.org/02spn2261', 'no_lang_code', 1, 'https://ror.org/02spn2261 Netzsch (United Kingdom)'),
(67216, 'https://ror.org/05g9paz74', 'en', 1, 'https://ror.org/05g9paz74 Oxford Spires Academy'),
(67217, 'https://ror.org/04wx50v02', 'en', 1, 'https://ror.org/04wx50v02 Newark Air Museum'),
(67218, 'https://ror.org/027qvm849', 'en', 1, 'https://ror.org/027qvm849 Future Earth'),
(67219, 'https://ror.org/02svwte58', 'en', 1, 'https://ror.org/02svwte58 Places for People'),
(67220, 'https://ror.org/00sch3b34', 'en', 1, 'https://ror.org/00sch3b34 Plymouth City Council'),
(67221, 'https://ror.org/05ecntp89', 'en', 1, 'https://ror.org/05ecntp89 Department for Communities'),
(67222, 'https://ror.org/043k8f492', 'et', 1, 'https://ror.org/043k8f492 Põlva Haigla'),
(67223, 'https://ror.org/01amnkg95', 'en', 1, 'https://ror.org/01amnkg95 Refugee Action'),
(67224, 'https://ror.org/01k6zmz35', 'en', 1, 'https://ror.org/01k6zmz35 Refugee Council'),
(67225, 'https://ror.org/0404j2625', 'en', 1, 'https://ror.org/0404j2625 Poplar Housing and Regeneration Community Association'),
(67226, 'https://ror.org/01mwk7t47', 'en', 1, 'https://ror.org/01mwk7t47 Quality of Life Partnership'),
(67227, 'https://ror.org/03chj8432', 'en', 1, 'https://ror.org/03chj8432 Regen'),
(67228, 'https://ror.org/05ts5ga89', 'no_lang_code', 1, 'https://ror.org/05ts5ga89 Anton Paar (United States)'),
(67229, 'https://ror.org/0045cz905', 'en', 1, 'https://ror.org/0045cz905 Portobello High School'),
(67230, 'https://ror.org/01zpqtc05', 'en', 1, 'https://ror.org/01zpqtc05 Portsmouth City Council'),
(67231, 'https://ror.org/022z7sg09', 'en', 1, 'https://ror.org/022z7sg09 The Potteries Museum and Art Gallery'),
(67232, 'https://ror.org/02mwnrf70', 'en', 1, 'https://ror.org/02mwnrf70 Race Equality Foundation'),
(67233, 'https://ror.org/008hq2e16', 'no_lang_code', 1, 'https://ror.org/008hq2e16 Andritz (United Kingdom)'),
(67234, 'https://ror.org/05czbgw27', 'en', 1, 'https://ror.org/05czbgw27 Renewable Energy and Energy Efficiency Partnership'),
(67235, 'https://ror.org/01m5n8597', 'no_lang_code', 1, 'https://ror.org/01m5n8597 ReproCELL (United Kingdom)'),
(67236, 'https://ror.org/016tee698', 'en', 1, 'https://ror.org/016tee698 Resolution Fundation'),
(67237, 'https://ror.org/02dv7rd88', 'no_lang_code', 1, 'https://ror.org/02dv7rd88 Primetals Technologies (United Kingdom)'),
(67238, 'https://ror.org/04wn4nw41', 'en', 1, 'https://ror.org/04wn4nw41 Respect'),
(67239, 'https://ror.org/02wbkeq74', 'en', 1, 'https://ror.org/02wbkeq74 Restoke'),
(67240, 'https://ror.org/01qte9y06', 'no_lang_code', 1, 'https://ror.org/01qte9y06 Proboscis'),
(67241, 'https://ror.org/04efb7z73', 'en', 1, 'https://ror.org/04efb7z73 Rethink Mental Illness'),
(67242, 'https://ror.org/008w6ry40', 'no_lang_code', 1, 'https://ror.org/008w6ry40 Rigaku (United States)'),
(67243, 'https://ror.org/01qqvwg30', 'en', 1, 'https://ror.org/01qqvwg30 Sampad'),
(67244, 'https://ror.org/03yhvb593', 'en', 1, 'https://ror.org/03yhvb593 Royal African Society'),
(67245, 'https://ror.org/02zyhyh46', 'no_lang_code', 1, 'https://ror.org/02zyhyh46 Scottish Canals (United Kingdom)'),
(67246, 'https://ror.org/04aez6g96', 'en', 1, 'https://ror.org/04aez6g96 Scottish Community Development Centre'),
(67247, 'https://ror.org/00xrtc164', 'en', 1, 'https://ror.org/00xrtc164 Shetland Arts'),
(67248, 'https://ror.org/01gw2fq77', 'en', 1, 'https://ror.org/01gw2fq77 Shetland Museum and Archives'),
(67249, 'https://ror.org/02sgg7t92', 'en', 1, 'https://ror.org/02sgg7t92 Scottish Hydrogen and Fuel Cell Association'),
(67250, 'https://ror.org/05fhfab69', 'en', 1, 'https://ror.org/05fhfab69 Pàrlamaid na h-Alba Scottish Parliament'),
(67251, 'https://ror.org/02tjpr954', 'en', 1, 'https://ror.org/02tjpr954 Scottish Poetry Library'),
(67252, 'https://ror.org/031zahk15', 'en', 1, 'https://ror.org/031zahk15 Royal National Theatre'),
(67253, 'https://ror.org/010rh0d62', 'en', 1, 'https://ror.org/010rh0d62 Scottish Refugee Council'),
(67254, 'https://ror.org/00y2cjt87', 'en', 1, 'https://ror.org/00y2cjt87 Royal Opera House'),
(67255, 'https://ror.org/03h41b845', 'no_lang_code', 1, 'https://ror.org/03h41b845 Royal Shakespeare Company (United Kingdom)'),
(67256, 'https://ror.org/047zp5633', 'en', 1, 'https://ror.org/047zp5633 Royal Society for Public Health'),
(67257, 'https://ror.org/00j1hxb77', 'en', 1, 'https://ror.org/00j1hxb77 Scottish Wildlife Trust'),
(67258, 'https://ror.org/03fxxfx37', 'en', 1, 'https://ror.org/03fxxfx37 Social Market Foundation'),
(67259, 'https://ror.org/03vebqe40', 'en', 1, 'https://ror.org/03vebqe40 Software Carpentry'),
(67260, 'https://ror.org/02cg7h320', 'en', 1, 'https://ror.org/02cg7h320 Salford Museum and Art Gallery'),
(67261, 'https://ror.org/01nb27779', 'no_lang_code', 1, 'https://ror.org/01nb27779 Capgemini (United Kingdom)'),
(67262, 'https://ror.org/04nzac004', 'no_lang_code', 1, 'https://ror.org/04nzac004 CRRC (United Kingdom)'),
(67263, 'https://ror.org/049fst917', 'en', 1, 'https://ror.org/049fst917 St Paul''s Cathedral'),
(67264, 'https://ror.org/05r33p655', 'en', 1, 'https://ror.org/05r33p655 Solas Festival'),
(67265, 'https://ror.org/04gyqbv83', 'en', 1, 'https://ror.org/04gyqbv83 Staffordshire County Council'),
(67266, 'https://ror.org/015jwe732', 'en', 1, 'https://ror.org/015jwe732 South Belfast Partnership Board'),
(67267, 'https://ror.org/044x9zq23', 'en', 1, 'https://ror.org/044x9zq23 The Community Trust'),
(67268, 'https://ror.org/05t952114', 'en', 1, 'https://ror.org/05t952114 Sensory Support Service'),
(67269, 'https://ror.org/0246dm313', 'en', 1, 'https://ror.org/0246dm313 South Downs National Park Authority'),
(67270, 'https://ror.org/04gs0zr76', 'en', 1, 'https://ror.org/04gs0zr76 South Lanarkshire Council'),
(67271, 'https://ror.org/022d92k39', 'en', 1, 'https://ror.org/022d92k39 SETsquared Partnership'),
(67272, 'https://ror.org/02m7qex15', 'en', 1, 'https://ror.org/02m7qex15 South West Yorkshire Partnership NHS Foundation Trust'),
(67273, 'https://ror.org/0305p8k71', 'en', 1, 'https://ror.org/0305p8k71 East Suffolk Council'),
(67274, 'https://ror.org/01cntn905', 'no_lang_code', 1, 'https://ror.org/01cntn905 BorgWarner (United Kingdom)'),
(67275, 'https://ror.org/025tf0837', 'en', 1, 'https://ror.org/025tf0837 South Yorkshire Fire and Rescue'),
(67276, 'https://ror.org/04e6ef560', 'en', 1, 'https://ror.org/04e6ef560 Southbank Centre'),
(67277, 'https://ror.org/037s2cq86', 'en', 1, 'https://ror.org/037s2cq86 British Chambers of Commerce'),
(67278, 'https://ror.org/01jjrv674', 'en', 1, 'https://ror.org/01jjrv674 Shakespeare Birthplace Trust'),
(67279, 'https://ror.org/05431pf33', 'en', 1, 'https://ror.org/05431pf33 Shakespeare Globe Trust'),
(67280, 'https://ror.org/01d20y590', 'de', 1, 'https://ror.org/01d20y590 Spiekermann and Wegener'),
(67281, 'https://ror.org/05gvbr510', 'en', 1, 'https://ror.org/05gvbr510 Staffordshire Film Archive'),
(67282, 'https://ror.org/01rxfp867', 'no_lang_code', 1, 'https://ror.org/01rxfp867 Spirit AeroSystems (United Kingdom)'),
(67283, 'https://ror.org/02d8xcv03', 'en', 1, 'https://ror.org/02d8xcv03 Chwaraeon Cymru Sport Wales'),
(67284, 'https://ror.org/03wt59215', 'en', 1, 'https://ror.org/03wt59215 Torbay Council'),
(67285, 'https://ror.org/0097v3890', 'fr', 1, 'https://ror.org/0097v3890 Bibliothèque d''étude et du patrimoine Bibliothèque de Toulouse'),
(67286, 'https://ror.org/00dw3s236', 'en', 1, 'https://ror.org/00dw3s236 Tearfund'),
(67287, 'https://ror.org/046pa0m07', 'en', 1, 'https://ror.org/046pa0m07 The National Lobster Hatchery'),
(67288, 'https://ror.org/03h1s0z86', 'en', 1, 'https://ror.org/03h1s0z86 Transparency International'),
(67289, 'https://ror.org/016gn8k28', 'en', 1, 'https://ror.org/016gn8k28 The Reader'),
(67290, 'https://ror.org/05nv0w557', 'en', 1, 'https://ror.org/05nv0w557 Terrence Higgins Trust'),
(67291, 'https://ror.org/03gjvye03', 'en', 1, 'https://ror.org/03gjvye03 Our Lady of Maryknoll Hospital 聖母醫院'),
(67292, 'https://ror.org/01phdew02', 'en', 1, 'https://ror.org/01phdew02 National Central Library 國家圖書館'),
(67293, 'https://ror.org/02k0mqf95', 'en', 1, 'https://ror.org/02k0mqf95 Campaign to End Loneliness'),
(67294, 'https://ror.org/04qtg7w92', 'en', 1, 'https://ror.org/04qtg7w92 Theatre Royal and Royal Concert Hall'),
(67295, 'https://ror.org/00mz2b614', 'en', 1, 'https://ror.org/00mz2b614 The Culture Capital Exchange'),
(67296, 'https://ror.org/01ka1xt91', 'en', 1, 'https://ror.org/01ka1xt91 York Theatre Royal'),
(67297, 'https://ror.org/051fwvb64', 'en', 1, 'https://ror.org/051fwvb64 Thackray Medical Museum'),
(67298, 'https://ror.org/00be4s518', 'en', 1, 'https://ror.org/00be4s518 Theodore Roosevelt Association'),
(67299, 'https://ror.org/04d0dqe91', 'en', 1, 'https://ror.org/04d0dqe91 Tunbridge Wells Museum & Art Gallery'),
(67300, 'https://ror.org/03fjysk97', 'en', 1, 'https://ror.org/03fjysk97 V&A Museum of Childhood');
INSERT INTO `rors` VALUES
(67301, 'https://ror.org/04vgzny65', 'no_lang_code', 1, 'https://ror.org/04vgzny65 Vestas (United Kingdom)'),
(67302, 'https://ror.org/04zyefw11', 'en', 1, 'https://ror.org/04zyefw11 Kern Community College District'),
(67303, 'https://ror.org/00c4rqe71', 'en', 1, 'https://ror.org/00c4rqe71 Watermans'),
(67304, 'https://ror.org/05kd5pz92', 'en', 1, 'https://ror.org/05kd5pz92 Wales & West Housing'),
(67305, 'https://ror.org/04zhncz06', 'en', 1, 'https://ror.org/04zhncz06 Weight Concern'),
(67306, 'https://ror.org/05a8q5k94', 'en', 1, 'https://ror.org/05a8q5k94 Water Industry Forum'),
(67307, 'https://ror.org/01vr3s065', 'en', 1, 'https://ror.org/01vr3s065 West Dunbartonshire Council'),
(67308, 'https://ror.org/01fddvx19', 'en', 1, 'https://ror.org/01fddvx19 West Lothian Council'),
(67309, 'https://ror.org/01m081680', 'en', 1, 'https://ror.org/01m081680 Thomas Pocklington Trust'),
(67310, 'https://ror.org/02ptdcx04', 'en', 1, 'https://ror.org/02ptdcx04 West Midlands Police'),
(67311, 'https://ror.org/040j2ng64', 'en', 1, 'https://ror.org/040j2ng64 Thomson Reuters Foundation'),
(67312, 'https://ror.org/00chs5h02', 'en', 1, 'https://ror.org/00chs5h02 Whitechapel Gallery'),
(67313, 'https://ror.org/04nsmsp44', 'en', 1, 'https://ror.org/04nsmsp44 Tinderbox Theatre'),
(67314, 'https://ror.org/00cdbmd44', 'en', 1, 'https://ror.org/00cdbmd44 Wired Sussex'),
(67315, 'https://ror.org/02vx6cf88', 'en', 1, 'https://ror.org/02vx6cf88 What Works Network'),
(67316, 'https://ror.org/05xg77x32', 'en', 1, 'https://ror.org/05xg77x32 Tyneside Cinema'),
(67317, 'https://ror.org/034b8wj92', 'en', 1, 'https://ror.org/034b8wj92 Yorkshire Dales Rivers Trust'),
(67318, 'https://ror.org/03x9t5820', 'en', 1, 'https://ror.org/03x9t5820 Working Families'),
(67319, 'https://ror.org/01mtztp63', 'en', 1, 'https://ror.org/01mtztp63 YoungMinds'),
(67320, 'https://ror.org/03m2a9c60', 'en', 1, 'https://ror.org/03m2a9c60 UK Health Forum'),
(67321, 'https://ror.org/016wmhd89', 'en', 1, 'https://ror.org/016wmhd89 WORLDwrite'),
(67322, 'https://ror.org/003c8wq34', 'en', 1, 'https://ror.org/003c8wq34 UK Music'),
(67323, 'https://ror.org/010ktw632', 'en', 1, 'https://ror.org/010ktw632 National Centre for Writing'),
(67324, 'https://ror.org/00pahkj72', 'no_lang_code', 1, 'https://ror.org/00pahkj72 Xilinx (Ireland)'),
(67325, 'https://ror.org/05xnmjv56', 'en', 1, 'https://ror.org/05xnmjv56 York Museums Trust'),
(67326, 'https://ror.org/018t0g992', 'en', 1, 'https://ror.org/018t0g992 York, North Yorkshire and East Riding Enterprise Partnership'),
(67327, 'https://ror.org/04j1vxv82', 'en', 1, 'https://ror.org/04j1vxv82 Yorkshire Agricultural Society'),
(67328, 'https://ror.org/03m659k95', 'en', 1, 'https://ror.org/03m659k95 Alfred Williams Heritage Society'),
(67329, 'https://ror.org/04b8c7j14', 'en', 1, 'https://ror.org/04b8c7j14 Association for Real Change'),
(67330, 'https://ror.org/04bw58q80', 'en', 1, 'https://ror.org/04bw58q80 32° East Ugandan Arts Trust'),
(67331, 'https://ror.org/03w8qvw44', 'no_lang_code', 1, 'https://ror.org/03w8qvw44 4D (United Kingdom)'),
(67332, 'https://ror.org/05k3f0d98', 'no_lang_code', 1, 'https://ror.org/05k3f0d98 All India Kisan Sabha अखिल भारतीय किसान सभा'),
(67333, 'https://ror.org/03nfq0y30', 'en', 1, 'https://ror.org/03nfq0y30 Association for Robots in Architecture'),
(67334, 'https://ror.org/0256tf124', 'en', 1, 'https://ror.org/0256tf124 Association for the Prevention of Torture'),
(67335, 'https://ror.org/05xn1q504', 'en', 1, 'https://ror.org/05xn1q504 All Ireland Institute for Hospice and Palliative Care'),
(67336, 'https://ror.org/04nrddh60', 'no_lang_code', 1, 'https://ror.org/04nrddh60 A Luck Associates (United Kingdom)'),
(67337, 'https://ror.org/04y159c60', 'en', 1, 'https://ror.org/04y159c60 Association for Young People’s Health'),
(67338, 'https://ror.org/02bf21z15', 'no_lang_code', 1, 'https://ror.org/02bf21z15 All Street Research (United Kingdom)'),
(67339, 'https://ror.org/02r6vy896', 'no_lang_code', 1, 'https://ror.org/02r6vy896 Adams Business Associates (United Kingdom)'),
(67340, 'https://ror.org/02ya7hp91', 'en', 1, 'https://ror.org/02ya7hp91 ALZHIR Museum and Memorial Complex Музейно-мемориальный комплекс "АЛЖИР" Мұражай мен «АЛЖИР» мемориалды кешенінің'),
(67341, 'https://ror.org/04g0z8x68', 'no_lang_code', 1, 'https://ror.org/04g0z8x68 Abeno Harukas Art Museum あべのハルカス美術館'),
(67342, 'https://ror.org/041d67p66', 'no_lang_code', 1, 'https://ror.org/041d67p66 Amalgamated Sugar (United States)'),
(67343, 'https://ror.org/04bfhdd88', 'en', 1, 'https://ror.org/04bfhdd88 Abergavenny Museum'),
(67344, 'https://ror.org/03pk2ae02', 'en', 1, 'https://ror.org/03pk2ae02 Amani Institute Uganda'),
(67345, 'https://ror.org/037a3hd22', 'en', 1, 'https://ror.org/037a3hd22 Aberlour'),
(67346, 'https://ror.org/02s7vda12', 'en', 1, 'https://ror.org/02s7vda12 Association of Breastfeeding Mothers'),
(67347, 'https://ror.org/03497yd66', 'en', 1, 'https://ror.org/03497yd66 Association of British Insurers'),
(67348, 'https://ror.org/03tfjft98', 'en', 1, 'https://ror.org/03tfjft98 American Bible Society'),
(67349, 'https://ror.org/0146jt667', 'en', 1, 'https://ror.org/0146jt667 Academic Health Science Network North East and North Cumbria'),
(67350, 'https://ror.org/010vm1c33', 'en', 1, 'https://ror.org/010vm1c33 American Institute of Indian Studies अमेरिकन इंस्टीट्यूट ऑफ इंडियन स्टडीज'),
(67351, 'https://ror.org/02v856y35', 'en', 1, 'https://ror.org/02v856y35 Association of British Orchestras'),
(67352, 'https://ror.org/012zsv435', 'no_lang_code', 1, 'https://ror.org/012zsv435 Academic Rights Press (United Kingdom)'),
(67353, 'https://ror.org/02xct9y17', 'en', 1, 'https://ror.org/02xct9y17 Amical Veterinary Centre'),
(67354, 'https://ror.org/05hdhmf73', 'en', 1, 'https://ror.org/05hdhmf73 Association of British Professional Conference Organisers'),
(67355, 'https://ror.org/01t5hzs18', 'en', 1, 'https://ror.org/01t5hzs18 Association of Chief Executives of Voluntary Organisations'),
(67356, 'https://ror.org/042sg7s37', 'en', 1, 'https://ror.org/042sg7s37 Association of Colleges'),
(67357, 'https://ror.org/053pr7h46', 'en', 1, 'https://ror.org/053pr7h46 Association of Convenience Stores'),
(67358, 'https://ror.org/03amggk32', 'en', 1, 'https://ror.org/03amggk32 Dupuytren Research Group'),
(67359, 'https://ror.org/01m08sy32', 'en', 1, 'https://ror.org/01m08sy32 The Association of Early Pregnancy Units'),
(67360, 'https://ror.org/03p878384', 'en', 1, 'https://ror.org/03p878384 Association of English Cathedrals'),
(67361, 'https://ror.org/055pc3y68', 'en', 1, 'https://ror.org/055pc3y68 Amina'),
(67362, 'https://ror.org/02pbw4p75', 'en', 1, 'https://ror.org/02pbw4p75 Association of Illustrators'),
(67363, 'https://ror.org/028vs0284', 'en', 1, 'https://ror.org/028vs0284 Academy of Ancient Music'),
(67364, 'https://ror.org/05h49ef04', 'en', 1, 'https://ror.org/05h49ef04 Association of Independent Crop Consultants'),
(67365, 'https://ror.org/0102z1w54', 'en', 1, 'https://ror.org/0102z1w54 Association of Industrial Laser Users'),
(67366, 'https://ror.org/00mddz208', 'no_lang_code', 1, 'https://ror.org/00mddz208 And Technology Research (United Kingdom)'),
(67367, 'https://ror.org/01jwwe165', 'en', 1, 'https://ror.org/01jwwe165 Association of London Environmental Health Managers'),
(67368, 'https://ror.org/03hqbt751', 'en', 1, 'https://ror.org/03hqbt751 Angela Ash Associates'),
(67369, 'https://ror.org/004z3ar85', 'no_lang_code', 1, 'https://ror.org/004z3ar85 Active Medicine (United Kingdom)'),
(67370, 'https://ror.org/052n05843', 'no_lang_code', 1, 'https://ror.org/052n05843 Osteotronix (United Kingdom)'),
(67371, 'https://ror.org/0321hn990', 'no_lang_code', 1, 'https://ror.org/0321hn990 Ad-Tech (United States)'),
(67372, 'https://ror.org/03xn5qf90', 'no_lang_code', 1, 'https://ror.org/03xn5qf90 Adelwitz Technologiezentrum (Germany)'),
(67373, 'https://ror.org/05pxqvv40', 'no_lang_code', 1, 'https://ror.org/05pxqvv40 Altmetric (United Kingdom)'),
(67374, 'https://ror.org/054hq6n04', 'no_lang_code', 1, 'https://ror.org/054hq6n04 Advanced Medical Equipment (United Kingdom)'),
(67375, 'https://ror.org/00gzp0b21', 'en', 1, 'https://ror.org/00gzp0b21 Association on Higher Education And Disability'),
(67376, 'https://ror.org/00ek25n05', 'no_lang_code', 1, 'https://ror.org/00ek25n05 Advanced Medical Solutions Group (United Kingdom)'),
(67377, 'https://ror.org/01nt99q97', 'en', 1, 'https://ror.org/01nt99q97 Aston Reinvestment Trust'),
(67378, 'https://ror.org/058g9dj28', 'en', 1, 'https://ror.org/058g9dj28 Advanced Propulsion Centre'),
(67379, 'https://ror.org/00vfdyp26', 'en', 1, 'https://ror.org/00vfdyp26 Finlands Nationalgalleri Finnish National Gallery Suomen Kansallisgalleria'),
(67380, 'https://ror.org/01rys6g13', 'no_lang_code', 1, 'https://ror.org/01rys6g13 Advent Life Sciences (United Kingdom)'),
(67381, 'https://ror.org/02m633z80', 'en', 1, 'https://ror.org/02m633z80 National Education Union'),
(67382, 'https://ror.org/02fkxw270', 'en', 1, 'https://ror.org/02fkxw270 African Centre for Global Health and Social Transformation'),
(67383, 'https://ror.org/05d1twd90', 'en', 1, 'https://ror.org/05d1twd90 Angelman Syndrome Support Education & Research Trust'),
(67384, 'https://ror.org/055es1h89', 'en', 1, 'https://ror.org/055es1h89 African Centre for Parliamentary Affairs'),
(67385, 'https://ror.org/02kb5g732', 'no_lang_code', 1, 'https://ror.org/02kb5g732 Aurelia Bioscience (United Kingdom)'),
(67386, 'https://ror.org/02ydg9890', 'en', 1, 'https://ror.org/02ydg9890 The Angelou Centre'),
(67387, 'https://ror.org/016grqh48', 'en', 1, 'https://ror.org/016grqh48 Mentor'),
(67388, 'https://ror.org/02c8pt668', 'en', 1, 'https://ror.org/02c8pt668 Auroville Foundation'),
(67389, 'https://ror.org/00kdkx513', 'en', 1, 'https://ror.org/00kdkx513 African Heritage and Educational Centre'),
(67390, 'https://ror.org/00xwvfm64', 'en', 1, 'https://ror.org/00xwvfm64 Australian Centre for Plant Functional Genomics'),
(67391, 'https://ror.org/01bkzhn35', 'en', 1, 'https://ror.org/01bkzhn35 Angling Trust'),
(67392, 'https://ror.org/00v4msg57', 'en', 1, 'https://ror.org/00v4msg57 African Network for Internationalization of Education'),
(67393, 'https://ror.org/05nf32d37', 'en', 1, 'https://ror.org/05nf32d37 Anglo-Norman Text Society'),
(67394, 'https://ror.org/02hw7mf60', 'en', 1, 'https://ror.org/02hw7mf60 Alfred Gillett Trust'),
(67395, 'https://ror.org/01r5zkn17', 'en', 1, 'https://ror.org/01r5zkn17 Angmering Community Centre'),
(67396, 'https://ror.org/01fxfr158', 'en', 1, 'https://ror.org/01fxfr158 Anna Lindh Foundation'),
(67397, 'https://ror.org/05f4wkm56', 'en', 1, 'https://ror.org/05f4wkm56 The Anne Frank Trust UK'),
(67398, 'https://ror.org/03730gy78', 'no_lang_code', 1, 'https://ror.org/03730gy78 Agile Scientific (Canada)'),
(67399, 'https://ror.org/03y5bcg65', 'en', 1, 'https://ror.org/03y5bcg65 Action for Trans Health'),
(67400, 'https://ror.org/00nj4dw70', 'en', 1, 'https://ror.org/00nj4dw70 Action Against Medical Accidents'),
(67401, 'https://ror.org/05x4f0t30', 'en', 1, 'https://ror.org/05x4f0t30 Avvai Village Welfare Society அவ்வை கிராமம் நல்வாழ்வு சங்கத்தால்'),
(67402, 'https://ror.org/01enkn839', 'en', 1, 'https://ror.org/01enkn839 The Aquatic Coleoptera Conservation Trust'),
(67403, 'https://ror.org/05sswkg52', 'en', 1, 'https://ror.org/05sswkg52 Agricultural Genetics Institute Viện Di truyền Nông nghiệp'),
(67404, 'https://ror.org/03se4em19', 'no_lang_code', 1, 'https://ror.org/03se4em19 Axillium Research (United Kingdom)'),
(67405, 'https://ror.org/05ddcb021', 'en', 1, 'https://ror.org/05ddcb021 Bach Dancing and Dynamite Society'),
(67406, 'https://ror.org/022d66a71', 'pt', 1, 'https://ror.org/022d66a71 Hospital Araújo Jorge'),
(67407, 'https://ror.org/05qywhx26', 'en', 1, 'https://ror.org/05qywhx26 Ahmed Iqbal Ullah Education Trust'),
(67408, 'https://ror.org/03gs68n54', 'fr', 1, 'https://ror.org/03gs68n54 Aide et Recherche en Cancérologie Digestive Fondation ARCAD'),
(67409, 'https://ror.org/043em9g67', 'en', 1, 'https://ror.org/043em9g67 Bali Animal Welfare Association'),
(67410, 'https://ror.org/037ef6262', 'en', 1, 'https://ror.org/037ef6262 Architects for Health'),
(67411, 'https://ror.org/04myjct49', 'no_lang_code', 1, 'https://ror.org/04myjct49 Airospring (United Kingdom)'),
(67412, 'https://ror.org/03mv51c78', 'en', 1, 'https://ror.org/03mv51c78 Airport Services Association'),
(67413, 'https://ror.org/01mvvkn82', 'no_lang_code', 1, 'https://ror.org/01mvvkn82 Svenskt fjäll- och samemuseum Ájtte'),
(67414, 'https://ror.org/01fr1mq46', 'en', 1, 'https://ror.org/01fr1mq46 Balor Arts Centre'),
(67415, 'https://ror.org/02vqmr172', 'en', 1, 'https://ror.org/02vqmr172 Baltic Sea Cultural Centre in Gdańsk Nadbałtyckie Centrum Kultury'),
(67416, 'https://ror.org/00vrf8x48', 'en', 1, 'https://ror.org/00vrf8x48 Alamire Foundation'),
(67417, 'https://ror.org/04n1tep93', 'en', 1, 'https://ror.org/04n1tep93 Ardler Village Trust'),
(67418, 'https://ror.org/040109961', 'no_lang_code', 1, 'https://ror.org/040109961 Åland Maritime Museum Ålands sjöfartsmuseum'),
(67419, 'https://ror.org/007tpha30', 'en', 1, 'https://ror.org/007tpha30 Barber Institute of Fine Arts'),
(67420, 'https://ror.org/02zwdks66', 'no_lang_code', 1, 'https://ror.org/02zwdks66 Arete (United Kingdom)'),
(67421, 'https://ror.org/05erea272', 'en', 1, 'https://ror.org/05erea272 Barrier Breakers Foundation'),
(67422, 'https://ror.org/03jbvpa78', 'en', 1, 'https://ror.org/03jbvpa78 Association for Play Therapy'),
(67423, 'https://ror.org/01yq1rp20', 'en', 1, 'https://ror.org/01yq1rp20 Comann Eachdraidh Bharabhais Agus Bhrù'),
(67424, 'https://ror.org/04f433167', 'en', 1, 'https://ror.org/04f433167 The Basketmakers Association'),
(67425, 'https://ror.org/02cqmj630', 'es', 1, 'https://ror.org/02cqmj630 Fundacion Arriarán'),
(67426, 'https://ror.org/02fzzq880', 'en', 1, 'https://ror.org/02fzzq880 Bath Social and Development Research'),
(67427, 'https://ror.org/01q3p9d41', 'fr', 1, 'https://ror.org/01q3p9d41 Arteria Association Arteria Médiation'),
(67428, 'https://ror.org/03vewy051', 'en', 1, 'https://ror.org/03vewy051 Bay Area Cardiology and Vascular Associates'),
(67429, 'https://ror.org/01f4st973', 'no_lang_code', 1, 'https://ror.org/01f4st973 Biocentre Technology (United Kingdom)'),
(67430, 'https://ror.org/05a9zc759', 'en', 1, 'https://ror.org/05a9zc759 Arts & Health South'),
(67431, 'https://ror.org/043jjxy03', 'en', 1, 'https://ror.org/043jjxy03 Bayimba'),
(67432, 'https://ror.org/02k3c5b92', 'en', 1, 'https://ror.org/02k3c5b92 Bee Farmers Association'),
(67433, 'https://ror.org/02brk6173', 'no_lang_code', 1, 'https://ror.org/02brk6173 Biomass and Fossil Fuel Research Alliance (United Kingdom)'),
(67434, 'https://ror.org/01gamcy45', 'no_lang_code', 1, 'https://ror.org/01gamcy45 Brain (Germany)'),
(67435, 'https://ror.org/02cyn4444', 'en', 1, 'https://ror.org/02cyn4444 Birmingham Museums Trust'),
(67436, 'https://ror.org/01fns9c92', 'en', 1, 'https://ror.org/01fns9c92 Black Country Living Museum'),
(67437, 'https://ror.org/02cyenj86', 'en', 1, 'https://ror.org/02cyenj86 Ashwell Museum'),
(67438, 'https://ror.org/00hc63q81', 'en', 1, 'https://ror.org/00hc63q81 Belfast Charitable Society'),
(67439, 'https://ror.org/04jq8tj07', 'en', 1, 'https://ror.org/04jq8tj07 ASEM Water Resources Research and Development Centre'),
(67440, 'https://ror.org/02z5b5082', 'en', 1, 'https://ror.org/02z5b5082 Belfast Healthy Cities'),
(67441, 'https://ror.org/04b4htq59', 'en', 1, 'https://ror.org/04b4htq59 Bell Educational Trust'),
(67442, 'https://ror.org/026dj7w39', 'en', 1, 'https://ror.org/026dj7w39 Bellahouston Academy'),
(67443, 'https://ror.org/02pgyqd67', 'en', 1, 'https://ror.org/02pgyqd67 Asian Arts Agency'),
(67444, 'https://ror.org/02evg2181', 'en', 1, 'https://ror.org/02evg2181 Bennetts Associates'),
(67445, 'https://ror.org/03w0gh820', 'en', 1, 'https://ror.org/03w0gh820 Bletchley Park Trust'),
(67446, 'https://ror.org/01xth0e33', 'en', 1, 'https://ror.org/01xth0e33 Asian Women Lone Parent Association'),
(67447, 'https://ror.org/01s1jrd75', 'sv', 1, 'https://ror.org/01s1jrd75 Bergslagssjukhuset'),
(67448, 'https://ror.org/04k3q6a72', 'en', 1, 'https://ror.org/04k3q6a72 Blind and Sight Impaired Society'),
(67449, 'https://ror.org/0553s6b03', 'no_lang_code', 1, 'https://ror.org/0553s6b03 Aspin (United Kingdom)'),
(67450, 'https://ror.org/04jdgsn04', 'en', 1, 'https://ror.org/04jdgsn04 Blue Marine Foundation'),
(67451, 'https://ror.org/021w6ye38', 'en', 1, 'https://ror.org/021w6ye38 Blueberry Academy'),
(67452, 'https://ror.org/00pcg1863', 'en', 1, 'https://ror.org/00pcg1863 Booksellers Association'),
(67453, 'https://ror.org/028yxzq51', 'en', 1, 'https://ror.org/028yxzq51 Lourdes Health System'),
(67454, 'https://ror.org/03h7rjb68', 'en', 1, 'https://ror.org/03h7rjb68 Botswana Institute for Technology Research and Innovation'),
(67455, 'https://ror.org/00e3s7s61', 'no_lang_code', 1, 'https://ror.org/00e3s7s61 BPR Medical (United Kingdom)'),
(67456, 'https://ror.org/00fq2kn23', 'no_lang_code', 1, 'https://ror.org/00fq2kn23 Associated Research (United States)'),
(67457, 'https://ror.org/021kyym11', 'en', 1, 'https://ror.org/021kyym11 Bradford Museums and Galleries'),
(67458, 'https://ror.org/03djjyk45', 'en', 1, 'https://ror.org/03djjyk45 Center for Effective Global Action'),
(67459, 'https://ror.org/02rd7vq77', 'en', 1, 'https://ror.org/02rd7vq77 Berkhamsted and District Archaeological Society'),
(67460, 'https://ror.org/011m7rj02', 'no_lang_code', 1, 'https://ror.org/011m7rj02 Brandon Medical (United Kingdom)'),
(67461, 'https://ror.org/02eqy2w38', 'en', 1, 'https://ror.org/02eqy2w38 Association for Decentralised Energy'),
(67462, 'https://ror.org/0424fq223', 'en', 1, 'https://ror.org/0424fq223 Berkshire Buckinghamshire and Oxfordshire Wildlife Trust'),
(67463, 'https://ror.org/03egje930', 'en', 1, 'https://ror.org/03egje930 Association for Learning Technology'),
(67464, 'https://ror.org/00jhfm416', 'pt', 1, 'https://ror.org/00jhfm416 Associação Brasileira de Esclerose Lateral Amiotrófica'),
(67465, 'https://ror.org/02r4h2g04', 'en', 1, 'https://ror.org/02r4h2g04 Association for Prevention and Control of Rabies in India'),
(67466, 'https://ror.org/04473af04', 'en', 1, 'https://ror.org/04473af04 Berneray Historical Society Comunn Eachdraidh Bheàrnaraigh'),
(67467, 'https://ror.org/05fy44g10', 'pl', 1, 'https://ror.org/05fy44g10 Beskidzkie Centrum Onkologii Szpital Miejski im. Jana Pawla II w Bielsku-Bialej'),
(67468, 'https://ror.org/02ere1c15', 'en', 1, 'https://ror.org/02ere1c15 Brick Development Association'),
(67469, 'https://ror.org/050arpw16', 'en', 1, 'https://ror.org/050arpw16 British Dragonfly Society'),
(67470, 'https://ror.org/01ecdm936', 'en', 1, 'https://ror.org/01ecdm936 Brighton Museum'),
(67471, 'https://ror.org/04twq5n98', 'en', 1, 'https://ror.org/04twq5n98 Beverly Hills Cardiology'),
(67472, 'https://ror.org/01zgjgk72', 'en', 1, 'https://ror.org/01zgjgk72 Bexhill Museum'),
(67473, 'https://ror.org/00c0kg894', 'en', 1, 'https://ror.org/00c0kg894 Royal Pavilion'),
(67474, 'https://ror.org/04mw9je83', 'en', 1, 'https://ror.org/04mw9je83 Dudhope Multicultural Centre'),
(67475, 'https://ror.org/00zb6xd25', 'en', 1, 'https://ror.org/00zb6xd25 British Gear Association'),
(67476, 'https://ror.org/01w975c85', 'en', 1, 'https://ror.org/01w975c85 Brighton Peace and Environment Centre'),
(67477, 'https://ror.org/00pk8w333', 'en', 1, 'https://ror.org/00pk8w333 Bolton Library and Museum Services'),
(67478, 'https://ror.org/057nt4d90', 'en', 1, 'https://ror.org/057nt4d90 British Hydropower Association'),
(67479, 'https://ror.org/00yf53d07', 'en', 1, 'https://ror.org/00yf53d07 The Bill Douglas Cinema Museum'),
(67480, 'https://ror.org/0129pxj69', 'en', 1, 'https://ror.org/0129pxj69 British Industrial Design Association'),
(67481, 'https://ror.org/03wcq4p61', 'en', 1, 'https://ror.org/03wcq4p61 Britannia Panopticon'),
(67482, 'https://ror.org/05tcphk02', 'en', 1, 'https://ror.org/05tcphk02 British Institute of Facilities Management'),
(67483, 'https://ror.org/017z7ha20', 'en', 1, 'https://ror.org/017z7ha20 Doc Society'),
(67484, 'https://ror.org/00x0xxx58', 'en', 1, 'https://ror.org/00x0xxx58 British Institute of Non-Destructive Testing'),
(67485, 'https://ror.org/0317wv817', 'en', 1, 'https://ror.org/0317wv817 British and Irish Association of Zoos and Aquariums'),
(67486, 'https://ror.org/0441qc561', 'en', 1, 'https://ror.org/0441qc561 The British Antique Dealers Association'),
(67487, 'https://ror.org/01qqqf422', 'en', 1, 'https://ror.org/01qqqf422 British Arts Festivals Association'),
(67488, 'https://ror.org/01k3bjh49', 'en', 1, 'https://ror.org/01k3bjh49 British Machine Vision Association'),
(67489, 'https://ror.org/0453eyr18', 'no_lang_code', 1, 'https://ror.org/0453eyr18 Bill Harvey Associates (United Kingdom)'),
(67490, 'https://ror.org/00g96hn54', 'no_lang_code', 1, 'https://ror.org/00g96hn54 Bio Alternative Medical Devices (United Kingdom)'),
(67491, 'https://ror.org/016nc1s82', 'en', 1, 'https://ror.org/016nc1s82 British Association for Immediate Care Scotland'),
(67492, 'https://ror.org/05ccpr318', 'en', 1, 'https://ror.org/05ccpr318 British Meat Processors Association'),
(67493, 'https://ror.org/03t0jaj83', 'en', 1, 'https://ror.org/03t0jaj83 British Association for Islamic Studies'),
(67494, 'https://ror.org/003hksp74', 'no_lang_code', 1, 'https://ror.org/003hksp74 BWA (United Kingdom)'),
(67495, 'https://ror.org/03jrg4537', 'en', 1, 'https://ror.org/03jrg4537 British Association for South Asian Studies'),
(67496, 'https://ror.org/04myryz50', 'en', 1, 'https://ror.org/04myryz50 The Nuclear Institute'),
(67497, 'https://ror.org/00ykyfn41', 'no_lang_code', 1, 'https://ror.org/00ykyfn41 CB Healthcare (India)'),
(67498, 'https://ror.org/03w8ev131', 'en', 1, 'https://ror.org/03w8ev131 British Olympic Association'),
(67499, 'https://ror.org/02h3d3t16', 'en', 1, 'https://ror.org/02h3d3t16 Cadence Performance'),
(67500, 'https://ror.org/03zt57v78', 'no_lang_code', 1, 'https://ror.org/03zt57v78 CalciMedica (United States)'),
(67501, 'https://ror.org/00pyvsn14', 'en', 1, 'https://ror.org/00pyvsn14 British Association of Social Workers'),
(67502, 'https://ror.org/036g36489', 'en', 1, 'https://ror.org/036g36489 British Limousin Cattle Society'),
(67503, 'https://ror.org/045thzj17', 'es', 1, 'https://ror.org/045thzj17 Dirección Regional de Salud del Callao'),
(67504, 'https://ror.org/03rdg0s47', 'en', 1, 'https://ror.org/03rdg0s47 British Ports Association'),
(67505, 'https://ror.org/05kgk6p34', 'en', 1, 'https://ror.org/05kgk6p34 British Beet Research Organisation'),
(67506, 'https://ror.org/04g9aps05', 'en', 1, 'https://ror.org/04g9aps05 British Record Society'),
(67507, 'https://ror.org/020k77x19', 'no_lang_code', 1, 'https://ror.org/020k77x19 Callen Lenz (United Kingdom)'),
(67508, 'https://ror.org/02m51bd24', 'en', 1, 'https://ror.org/02m51bd24 British Bobsleigh and Skeleton Association'),
(67509, 'https://ror.org/00f4q6m47', 'en', 1, 'https://ror.org/00f4q6m47 British Screen Advisory Council'),
(67510, 'https://ror.org/04vwync56', 'en', 1, 'https://ror.org/04vwync56 British Cattle Veterinary Association'),
(67511, 'https://ror.org/04ebdby25', 'en', 1, 'https://ror.org/04ebdby25 Cambridge Cardiac Care Centre'),
(67512, 'https://ror.org/034r98c48', 'en', 1, 'https://ror.org/034r98c48 British Computer Association of the Blind'),
(67513, 'https://ror.org/03sp64371', 'en', 1, 'https://ror.org/03sp64371 British Council'),
(67514, 'https://ror.org/04qpdjf24', 'no_lang_code', 1, 'https://ror.org/04qpdjf24 Cambridge Research Biochemicals (United Kingdom)'),
(67515, 'https://ror.org/03f8ja864', 'en', 1, 'https://ror.org/03f8ja864 British Council'),
(67516, 'https://ror.org/05wvy7982', 'en', 1, 'https://ror.org/05wvy7982 The Campaign Against Living Miserably'),
(67517, 'https://ror.org/0410jfe71', 'en', 1, 'https://ror.org/0410jfe71 British Council'),
(67518, 'https://ror.org/04sf68197', 'en', 1, 'https://ror.org/04sf68197 British Crystallographic Association'),
(67519, 'https://ror.org/00td3vg19', 'en', 1, 'https://ror.org/00td3vg19 British Dam Society'),
(67520, 'https://ror.org/03yk8za83', 'en', 1, 'https://ror.org/03yk8za83 British Texel Sheep Society'),
(67521, 'https://ror.org/041dcmy53', 'en', 1, 'https://ror.org/041dcmy53 British Deaf Association'),
(67522, 'https://ror.org/052530s92', 'en', 1, 'https://ror.org/052530s92 Brunelcare'),
(67523, 'https://ror.org/045xczk16', 'en', 1, 'https://ror.org/045xczk16 Canterbury Archaeological Trust'),
(67524, 'https://ror.org/00ed5y156', 'en', 1, 'https://ror.org/00ed5y156 Koninklijke Maatschappij voor Dierkunde Antwerpen Royal Zoological Society of Antwerp'),
(67525, 'https://ror.org/03kfmyx03', 'en', 1, 'https://ror.org/03kfmyx03 Canterbury Museums and Galleries'),
(67526, 'https://ror.org/02gwwbd68', 'en', 1, 'https://ror.org/02gwwbd68 Capital Cardiology Associates'),
(67527, 'https://ror.org/03nr7d398', 'en', 1, 'https://ror.org/03nr7d398 Center for Evaluation and Development Mannheimer Zentrum für Evaluation und Entwicklungsforschung'),
(67528, 'https://ror.org/01cdys993', 'en', 1, 'https://ror.org/01cdys993 Manchester Health and Wellbeing Service'),
(67529, 'https://ror.org/008dq1c96', 'en', 1, 'https://ror.org/008dq1c96 Buccleuch Living Heritage Trust'),
(67530, 'https://ror.org/02fnw1n62', 'en', 1, 'https://ror.org/02fnw1n62 Budapest Centre for Mass Atrocities Prevention'),
(67531, 'https://ror.org/001a7dw94', 'de', 1, 'https://ror.org/001a7dw94 Krankenhaus der Barmherzigen Brüder Trier'),
(67532, 'https://ror.org/03pesqc02', 'en', 1, 'https://ror.org/03pesqc02 Center for Whale Research'),
(67533, 'https://ror.org/01q9c3q09', 'en', 1, 'https://ror.org/01q9c3q09 Buffs Social Club'),
(67534, 'https://ror.org/00wngta72', 'en', 1, 'https://ror.org/00wngta72 Bumblebee Conservation Trust'),
(67535, 'https://ror.org/031kmgt53', 'en', 1, 'https://ror.org/031kmgt53 Central Illinois Neuroscience Foundation'),
(67536, 'https://ror.org/01pdb1x94', 'en', 1, 'https://ror.org/01pdb1x94 Central Road Research Institute'),
(67537, 'https://ror.org/023fje098', 'en', 1, 'https://ror.org/023fje098 Canolfan y Dechnoleg Amgen Centre for Alternative Technology'),
(67538, 'https://ror.org/03zraew37', 'en', 1, 'https://ror.org/03zraew37 Centre for Contemporary Art'),
(67539, 'https://ror.org/05af7se92', 'en', 1, 'https://ror.org/05af7se92 Centre for Crime and Justice Studies'),
(67540, 'https://ror.org/053man137', 'en', 1, 'https://ror.org/053man137 Centre for Effective Dispute Resolution'),
(67541, 'https://ror.org/002pdme92', 'en', 1, 'https://ror.org/002pdme92 Centre for Environment Concerns'),
(67542, 'https://ror.org/023a61k53', 'en', 1, 'https://ror.org/023a61k53 Centre for Excellence for Looked After Children in Scotland'),
(67543, 'https://ror.org/013md5775', 'no_lang_code', 1, 'https://ror.org/013md5775 Centre for Factories of the Future (United Kingdom)'),
(67544, 'https://ror.org/05qs8zv09', 'en', 1, 'https://ror.org/05qs8zv09 Centre for Chinese Contemporary Art'),
(67545, 'https://ror.org/016k9n555', 'en', 1, 'https://ror.org/016k9n555 Centre for Cities'),
(67546, 'https://ror.org/03wts3073', 'en', 1, 'https://ror.org/03wts3073 Centre for Fine Arts Palais des Beaux-Arts Paleis voor Schone Kunsten'),
(67547, 'https://ror.org/04xgczp37', 'en', 1, 'https://ror.org/04xgczp37 Centre for Computing History'),
(67548, 'https://ror.org/053vgma94', 'en', 1, 'https://ror.org/053vgma94 Centre for Global Equality'),
(67549, 'https://ror.org/0111f0b05', 'en', 1, 'https://ror.org/0111f0b05 Centre for Historical Research and Documentation on War and Contemporary Society'),
(67550, 'https://ror.org/05gggsd38', 'en', 1, 'https://ror.org/05gggsd38 Centre for Responsible Credit'),
(67551, 'https://ror.org/02tahzf33', 'en', 1, 'https://ror.org/02tahzf33 Centre for Human Rights and Policy Studies'),
(67552, 'https://ror.org/050e1vh19', 'en', 1, 'https://ror.org/050e1vh19 Centre for Rural and Remote Mental Health'),
(67553, 'https://ror.org/055jfyy72', 'en', 1, 'https://ror.org/055jfyy72 Center for Indonesian Veterinary Analytical Studies'),
(67554, 'https://ror.org/00ksfyn98', 'en', 1, 'https://ror.org/00ksfyn98 Centre for Investigative Journalism'),
(67555, 'https://ror.org/04bxpq277', 'en', 1, 'https://ror.org/04bxpq277 Centre for Self Managed Learning'),
(67556, 'https://ror.org/016411e09', 'en', 1, 'https://ror.org/016411e09 Centre for Justice Innovation'),
(67557, 'https://ror.org/05pgvxf86', 'en', 1, 'https://ror.org/05pgvxf86 Innovation Centre for Sensor and Imaging Systems'),
(67558, 'https://ror.org/04jsfmm36', 'en', 1, 'https://ror.org/04jsfmm36 Centre for Literacy in Primary Education'),
(67559, 'https://ror.org/04wrn8f94', 'en', 1, 'https://ror.org/04wrn8f94 Centre for Sustainable Energy Use in Food'),
(67560, 'https://ror.org/03ybdm606', 'en', 1, 'https://ror.org/03ybdm606 Centre for Low Carbon Futures'),
(67561, 'https://ror.org/02j3g5e35', 'en', 1, 'https://ror.org/02j3g5e35 Centre for the Study of Labour and Mobility'),
(67562, 'https://ror.org/03vc6ep30', 'en', 1, 'https://ror.org/03vc6ep30 Center for Urban History of East Central Europe Центр міської історії центрально-східної Європи'),
(67563, 'https://ror.org/019hmfn94', 'en', 1, 'https://ror.org/019hmfn94 Centre for Movement Disorders'),
(67564, 'https://ror.org/04nznt564', 'en', 1, 'https://ror.org/04nznt564 Centre for Nepal Studies'),
(67565, 'https://ror.org/011gdes44', 'en', 1, 'https://ror.org/011gdes44 Centre for Window and Cladding Technology'),
(67566, 'https://ror.org/00tzfk251', 'en', 1, 'https://ror.org/00tzfk251 Centre for Youth & Criminal Justice'),
(67567, 'https://ror.org/05p5d8426', 'en', 1, 'https://ror.org/05p5d8426 Centre for Performance Research'),
(67568, 'https://ror.org/056ve6962', 'fr', 1, 'https://ror.org/056ve6962 Centre National de Lutte Antiacridienne'),
(67569, 'https://ror.org/01jjvj470', 'en', 1, 'https://ror.org/01jjvj470 Centre for Polar Observation and Modelling'),
(67570, 'https://ror.org/047cyxk24', 'en', 1, 'https://ror.org/047cyxk24 Centre of Excellence for Sensory Impairment'),
(67571, 'https://ror.org/01wfksv89', 'en', 1, 'https://ror.org/01wfksv89 Centre on Dynamics of Ethnicity'),
(67572, 'https://ror.org/009x3z174', 'en', 1, 'https://ror.org/009x3z174 Butetown Community Centre'),
(67573, 'https://ror.org/00k6qmq88', 'en', 1, 'https://ror.org/00k6qmq88 Association of North East Councils'),
(67574, 'https://ror.org/04avaqv13', 'no_lang_code', 1, 'https://ror.org/04avaqv13 Ikonix (United States)'),
(67575, 'https://ror.org/03xfg5k88', 'en', 1, 'https://ror.org/03xfg5k88 Center for Responsible Enterprise And Trade'),
(67576, 'https://ror.org/02enpd448', 'en', 1, 'https://ror.org/02enpd448 Centre for Regeneration Excellence Wales'),
(67577, 'https://ror.org/05fdfq287', 'en', 1, 'https://ror.org/05fdfq287 Capital Museum 首都博物馆'),
(67578, 'https://ror.org/03tp6qw94', 'no_lang_code', 1, 'https://ror.org/03tp6qw94 Ceryx Medical (United Kingdom)'),
(67579, 'https://ror.org/00t3j9c50', 'en', 1, 'https://ror.org/00t3j9c50 The Heart House'),
(67580, 'https://ror.org/00q80jg86', 'en', 1, 'https://ror.org/00q80jg86 Champs Public Health Collaborative'),
(67581, 'https://ror.org/02bz1zq28', 'en', 1, 'https://ror.org/02bz1zq28 Tenet Healthcare'),
(67582, 'https://ror.org/04ycer023', 'en', 1, 'https://ror.org/04ycer023 Cardiovascular Medical Group'),
(67583, 'https://ror.org/02qb49x49', 'en', 1, 'https://ror.org/02qb49x49 Changes Community Health Project'),
(67584, 'https://ror.org/02hpv2m52', 'en', 1, 'https://ror.org/02hpv2m52 Charles Rennie Mackintosh Society'),
(67585, 'https://ror.org/0367sm721', 'en', 1, 'https://ror.org/0367sm721 Caribbean Disaster Emergency Management Agency'),
(67586, 'https://ror.org/05nhhvb42', 'en', 1, 'https://ror.org/05nhhvb42 Charles River Medical Associates'),
(67587, 'https://ror.org/04m541b31', 'en', 1, 'https://ror.org/04m541b31 Chartered Institute of Procurement & Supply'),
(67588, 'https://ror.org/05ge23e39', 'no_lang_code', 1, 'https://ror.org/05ge23e39 Carritech Research (United Kingdom)'),
(67589, 'https://ror.org/054bz5192', 'en', 1, 'https://ror.org/054bz5192 The Cartoon Museum'),
(67590, 'https://ror.org/04ta9xg75', 'en', 1, 'https://ror.org/04ta9xg75 Chartered Institution of Water and Environmental Management'),
(67591, 'https://ror.org/0183bsj57', 'en', 1, 'https://ror.org/0183bsj57 Chartered Insurance Institute'),
(67592, 'https://ror.org/02hg7p914', 'en', 1, 'https://ror.org/02hg7p914 Catalyst Science Discovery Centre'),
(67593, 'https://ror.org/04gv91m66', 'en', 1, 'https://ror.org/04gv91m66 Chartered Society of Designers'),
(67594, 'https://ror.org/012cr4712', 'en', 1, 'https://ror.org/012cr4712 Cedarwood Trust'),
(67595, 'https://ror.org/05ww0qy02', 'no_lang_code', 1, 'https://ror.org/05ww0qy02 Boehringer Ingelheim (Australia)'),
(67596, 'https://ror.org/009261g92', 'en', 1, 'https://ror.org/009261g92 Celtic FC Foundation'),
(67597, 'https://ror.org/04gq33t30', 'no_lang_code', 1, 'https://ror.org/04gq33t30 Chase Research Cryogenics (United Kingdom)'),
(67598, 'https://ror.org/01hr74d22', 'no_lang_code', 1, 'https://ror.org/01hr74d22 Boehringer Ingelheim (Brazil)'),
(67599, 'https://ror.org/01mfyt667', 'no_lang_code', 1, 'https://ror.org/01mfyt667 Celtic Research (United Kingdom)'),
(67600, 'https://ror.org/035hns865', 'no_lang_code', 1, 'https://ror.org/035hns865 Boehringer Ingelheim (Egypt)'),
(67601, 'https://ror.org/0521tgf76', 'en', 1, 'https://ror.org/0521tgf76 Cementitious Slag Makers Association'),
(67602, 'https://ror.org/048m65g43', 'en', 1, 'https://ror.org/048m65g43 Chess Valley Archaeological and Historical Society'),
(67603, 'https://ror.org/01jkb7292', 'no_lang_code', 1, 'https://ror.org/01jkb7292 Cheyney (United Kingdom)'),
(67604, 'https://ror.org/04npwyz19', 'en', 1, 'https://ror.org/04npwyz19 Church Service Society'),
(67605, 'https://ror.org/03b8fd746', 'en', 1, 'https://ror.org/03b8fd746 Chief Fire Officers Association'),
(67606, 'https://ror.org/029e72445', 'en', 1, 'https://ror.org/029e72445 Childhood Bereavement Network'),
(67607, 'https://ror.org/0332r9t93', 'en', 1, 'https://ror.org/0332r9t93 Children and War Foundation'),
(67608, 'https://ror.org/0433wdg24', 'en', 1, 'https://ror.org/0433wdg24 Children’s Arthritis Association'),
(67609, 'https://ror.org/049kty102', 'en', 1, 'https://ror.org/049kty102 Young Citizens'),
(67610, 'https://ror.org/02606x514', 'en', 1, 'https://ror.org/02606x514 Chilled Food Association'),
(67611, 'https://ror.org/05xwf9k95', 'no_lang_code', 1, 'https://ror.org/05xwf9k95 Clearsky Medical Diagnostics (United Kingdom)'),
(67612, 'https://ror.org/04efk6227', 'en', 1, 'https://ror.org/04efk6227 Clevedon Pier & Heritage Trust'),
(67613, 'https://ror.org/05r5t3g74', 'en', 1, 'https://ror.org/05r5t3g74 China National Silk Museum 中国丝绸博物馆'),
(67614, 'https://ror.org/01x1wtd34', 'en', 1, 'https://ror.org/01x1wtd34 China Port Museum 中国港口博物馆'),
(67615, 'https://ror.org/05bmf3j81', 'en', 1, 'https://ror.org/05bmf3j81 Clifton Suspension Bridge Trust'),
(67616, 'https://ror.org/0405ppk91', 'en', 1, 'https://ror.org/0405ppk91 Climate and Development Knowledge Network'),
(67617, 'https://ror.org/00ah0qh32', 'en', 1, 'https://ror.org/00ah0qh32 Climate Outreach'),
(67618, 'https://ror.org/007hz9242', 'no_lang_code', 1, 'https://ror.org/007hz9242 Clinical & Biomedical Computing (United Kingdom)'),
(67619, 'https://ror.org/02x7tr046', 'no_lang_code', 1, 'https://ror.org/02x7tr046 China Regenerative Medicine International (China) 中國再生醫學國際有限公司'),
(67620, 'https://ror.org/036ak6q26', 'en', 1, 'https://ror.org/036ak6q26 Cloud Innovation Centre'),
(67621, 'https://ror.org/02b58rv90', 'en', 1, 'https://ror.org/02b58rv90 Defence Electronics History Society'),
(67622, 'https://ror.org/02zfxwc21', 'en', 1, 'https://ror.org/02zfxwc21 Derbyshire Community Health Services NHS Foundation Trust'),
(67623, 'https://ror.org/00wtq5187', 'en', 1, 'https://ror.org/00wtq5187 Design and Artists Copyright Society'),
(67624, 'https://ror.org/05j4kzc41', 'ro', 1, 'https://ror.org/05j4kzc41 Spitalul Clinic Județean de Urgență Cluj-Napoca'),
(67625, 'https://ror.org/058znqh71', 'en', 1, 'https://ror.org/058znqh71 Cranfield Trust'),
(67626, 'https://ror.org/03bjdat74', 'no_lang_code', 1, 'https://ror.org/03bjdat74 Design Science (United Kingdom)'),
(67627, 'https://ror.org/05pms6260', 'en', 1, 'https://ror.org/05pms6260 Development Trusts Association Scotland'),
(67628, 'https://ror.org/04e8ct712', 'en', 1, 'https://ror.org/04e8ct712 Dialogue Society'),
(67629, 'https://ror.org/04pjzs357', 'en', 1, 'https://ror.org/04pjzs357 Creative Foundation'),
(67630, 'https://ror.org/02rs65g13', 'no_lang_code', 1, 'https://ror.org/02rs65g13 Creavo (United Kingdom)'),
(67631, 'https://ror.org/01k9d6864', 'en', 1, 'https://ror.org/01k9d6864 Digital Curation Centre'),
(67632, 'https://ror.org/00y8xx462', 'no_lang_code', 1, 'https://ror.org/00y8xx462 Credit Data Research (United Kingdom)'),
(67633, 'https://ror.org/05ez2gd39', 'en', 1, 'https://ror.org/05ez2gd39 Digital Engineering and Test Centre'),
(67634, 'https://ror.org/00rkc1204', 'en', 1, 'https://ror.org/00rkc1204 Crichton Carbon Centre'),
(67635, 'https://ror.org/01jv0yc68', 'no_lang_code', 1, 'https://ror.org/01jv0yc68 Digital Native Academy (United Kingdom)'),
(67636, 'https://ror.org/05b4wdn22', 'en', 1, 'https://ror.org/05b4wdn22 Ecological Continuity Trust'),
(67637, 'https://ror.org/01rkbf580', 'en', 1, 'https://ror.org/01rkbf580 Economic and Social Research Foundation'),
(67638, 'https://ror.org/04ft60f45', 'en', 1, 'https://ror.org/04ft60f45 Cromarty Arts Trust'),
(67639, 'https://ror.org/0201v2f15', 'en', 1, 'https://ror.org/0201v2f15 Cromarty Courthouse Museum'),
(67640, 'https://ror.org/02pk1eg59', 'en', 1, 'https://ror.org/02pk1eg59 Cromarty History Society'),
(67641, 'https://ror.org/05r592159', 'en', 1, 'https://ror.org/05r592159 The Ectopic Pregnancy Trust'),
(67642, 'https://ror.org/05mef5z43', 'en', 1, 'https://ror.org/05mef5z43 Disabled Living Foundation'),
(67643, 'https://ror.org/0013qma95', 'en', 1, 'https://ror.org/0013qma95 Diseworth Heritage Centre'),
(67644, 'https://ror.org/006js8r49', 'en', 1, 'https://ror.org/006js8r49 Crop Protection Association'),
(67645, 'https://ror.org/05bg9sv56', 'en', 1, 'https://ror.org/05bg9sv56 Crossroads Youth & Community Association'),
(67646, 'https://ror.org/034j4sq33', 'no_lang_code', 1, 'https://ror.org/034j4sq33 Dispomedical (United Kingdom)'),
(67647, 'https://ror.org/04pngg224', 'no_lang_code', 1, 'https://ror.org/04pngg224 DJ Associates (United States)'),
(67648, 'https://ror.org/04xvgmn72', 'en', 1, 'https://ror.org/04xvgmn72 Centre for Cultural Heritage Preservation مركز حفظ التراث الثقافي'),
(67649, 'https://ror.org/01nd71k14', 'en', 1, 'https://ror.org/01nd71k14 Edinburgh City of Literature'),
(67650, 'https://ror.org/035x64r67', 'en', 1, 'https://ror.org/035x64r67 Down''s Syndrome Association'),
(67651, 'https://ror.org/04pc9r783', 'en', 1, 'https://ror.org/04pc9r783 Edinburgh World Heritage'),
(67652, 'https://ror.org/04k3sfn15', 'en', 1, 'https://ror.org/04k3sfn15 Le musée Dr Guislain Museum Dr Guislain'),
(67653, 'https://ror.org/001ajv156', 'no_lang_code', 1, 'https://ror.org/001ajv156 EES Research (United Kingdom)'),
(67654, 'https://ror.org/03dq65642', 'es', 1, 'https://ror.org/03dq65642 Instituto Mora Instituto de Investigaciones Dr. José María Luis Mora'),
(67655, 'https://ror.org/035wa3p49', 'no_lang_code', 1, 'https://ror.org/035wa3p49 Dream Laboratory (United Kingdom)'),
(67656, 'https://ror.org/02vmy5t39', 'en', 1, 'https://ror.org/02vmy5t39 Egyptian Foundation for Refugee Rights'),
(67657, 'https://ror.org/02pvz5132', 'en', 1, 'https://ror.org/02pvz5132 Cumberland and Westmorland Antiquarian and Archaeological Society'),
(67658, 'https://ror.org/03jaxrf75', 'en', 1, 'https://ror.org/03jaxrf75 Cumberland County Historical Society'),
(67659, 'https://ror.org/00hcdm003', 'en', 1, 'https://ror.org/00hcdm003 Curatio International Foundation'),
(67660, 'https://ror.org/04p5h5d21', 'en', 1, 'https://ror.org/04p5h5d21 Electoral Reform Society'),
(67661, 'https://ror.org/05j6sj461', 'de', 1, 'https://ror.org/05j6sj461 Museum Strom und Leben'),
(67662, 'https://ror.org/00gy7w809', 'en', 1, 'https://ror.org/00gy7w809 Dronah Foundation'),
(67663, 'https://ror.org/02qpnf892', 'en', 1, 'https://ror.org/02qpnf892 Czech Association for the Study of Religions Česká společnost pro religionistiku'),
(67664, 'https://ror.org/00sydr738', 'no_lang_code', 1, 'https://ror.org/00sydr738 Electro-Medical Measurement Systems (United Kingdom)'),
(67665, 'https://ror.org/03ekrpq59', 'en', 1, 'https://ror.org/03ekrpq59 Dubai International Financial Centre'),
(67666, 'https://ror.org/006pekx06', 'en', 1, 'https://ror.org/006pekx06 Emmanuel Schools Foundation'),
(67667, 'https://ror.org/046qkca03', 'no_lang_code', 1, 'https://ror.org/046qkca03 Daniel Black and Associates (United States)'),
(67668, 'https://ror.org/04gwzxy46', 'en', 1, 'https://ror.org/04gwzxy46 End Violence Against Women'),
(67669, 'https://ror.org/00v907w21', 'en', 1, 'https://ror.org/00v907w21 Dubbo Hospital'),
(67670, 'https://ror.org/00ab8jq38', 'en', 1, 'https://ror.org/00ab8jq38 The DaCapo Music Foundation'),
(67671, 'https://ror.org/059v6k471', 'en', 1, 'https://ror.org/059v6k471 Dudley Associates'),
(67672, 'https://ror.org/05xrxf972', 'en', 1, 'https://ror.org/05xrxf972 Dumfries Museum and Camera Obscura'),
(67673, 'https://ror.org/05dk07j97', 'en', 1, 'https://ror.org/05dk07j97 Energy Technology Centre'),
(67674, 'https://ror.org/016gda025', 'en', 1, 'https://ror.org/016gda025 Dundee Blind and Partially Sighted Society'),
(67675, 'https://ror.org/05k9ygy91', 'en', 1, 'https://ror.org/05k9ygy91 Dundee Carers Centre'),
(67676, 'https://ror.org/00m1hwg25', 'en', 1, 'https://ror.org/00m1hwg25 English & Media Centre'),
(67677, 'https://ror.org/053yqvn66', 'en', 1, 'https://ror.org/053yqvn66 English Folk Dance and Song Society'),
(67678, 'https://ror.org/01m82kt84', 'en', 1, 'https://ror.org/01m82kt84 Durham Dales Health Federation'),
(67679, 'https://ror.org/014077748', 'da', 1, 'https://ror.org/014077748 Dansk Standard'),
(67680, 'https://ror.org/01h79xg57', 'no_lang_code', 1, 'https://ror.org/01h79xg57 Applied Graphene Materials (United Kingdom)'),
(67681, 'https://ror.org/02rtcze97', 'en', 1, 'https://ror.org/02rtcze97 Dansk Byplanlaboratorium The Danish Town Planning Institute'),
(67682, 'https://ror.org/03pr6f932', 'en', 1, 'https://ror.org/03pr6f932 Darbar'),
(67683, 'https://ror.org/0299hrs54', 'en', 1, 'https://ror.org/0299hrs54 Enlightened Myanmar Research Foundation'),
(67684, 'https://ror.org/01xzsbn64', 'en', 1, 'https://ror.org/01xzsbn64 Dutch Foundation for Literature Nederlands Letterenfonds'),
(67685, 'https://ror.org/04f204837', 'no_lang_code', 1, 'https://ror.org/04f204837 Enviresearch (United Kingdom)'),
(67686, 'https://ror.org/057gnjm41', 'en', 1, 'https://ror.org/057gnjm41 The Environmental Foundation for Africa'),
(67687, 'https://ror.org/01tftde85', 'cy', 1, 'https://ror.org/01tftde85 Cymdeithas Thomas Pennant'),
(67688, 'https://ror.org/0391mhw96', 'en', 1, 'https://ror.org/0391mhw96 The David Hume Institute'),
(67689, 'https://ror.org/000sec356', 'no_lang_code', 1, 'https://ror.org/000sec356 Epizone'),
(67690, 'https://ror.org/03t7fe423', 'en', 1, 'https://ror.org/03t7fe423 East Belfast Community Development Agency'),
(67691, 'https://ror.org/03xnq0g58', 'no_lang_code', 1, 'https://ror.org/03xnq0g58 David Jarvis Associates (United Kingdom)'),
(67692, 'https://ror.org/04agxqa78', 'en', 1, 'https://ror.org/04agxqa78 David Livingstone Trust'),
(67693, 'https://ror.org/05kt1vc49', 'en', 1, 'https://ror.org/05kt1vc49 Eric Liddell Centre'),
(67694, 'https://ror.org/03vd0wp03', 'en', 1, 'https://ror.org/03vd0wp03 DDR Museum'),
(67695, 'https://ror.org/02p6xqb83', 'en', 1, 'https://ror.org/02p6xqb83 Deaf Studies Trust'),
(67696, 'https://ror.org/017ppge98', 'en', 1, 'https://ror.org/017ppge98 CO2 Technology Centre Mongstad Teknologisenteret på Mongstad'),
(67697, 'https://ror.org/050mver74', 'no_lang_code', 1, 'https://ror.org/050mver74 EBTIC'),
(67698, 'https://ror.org/02yqafw93', 'en', 1, 'https://ror.org/02yqafw93 Eurasia Foundation of Central Asia Фонд Евразия Центральной Азии'),
(67699, 'https://ror.org/056ytj938', 'en', 1, 'https://ror.org/056ytj938 Coastal Cancer Center'),
(67700, 'https://ror.org/054871422', 'en', 1, 'https://ror.org/054871422 Eureka'),
(67701, 'https://ror.org/026t78k29', 'en', 1, 'https://ror.org/026t78k29 Eastbridge Hospital'),
(67702, 'https://ror.org/00zam7c12', 'de', 1, 'https://ror.org/00zam7c12 Deutsche Initiative für Netzwerkinformation German Initiative for Network Information'),
(67703, 'https://ror.org/0117czb70', 'en', 1, 'https://ror.org/0117czb70 European Academy for Standardisation'),
(67704, 'https://ror.org/01em88r57', 'en', 1, 'https://ror.org/01em88r57 Community Connect Foundation'),
(67705, 'https://ror.org/03kky0014', 'en', 1, 'https://ror.org/03kky0014 Community Development and Health Network'),
(67706, 'https://ror.org/020x1hr04', 'en', 1, 'https://ror.org/020x1hr04 Community Health And Information Network'),
(67707, 'https://ror.org/04nbbfv42', 'en', 1, 'https://ror.org/04nbbfv42 Contemporary Visual Arts Network'),
(67708, 'https://ror.org/05t7k1t84', 'en', 1, 'https://ror.org/05t7k1t84 Community Media Association'),
(67709, 'https://ror.org/03sezsp15', 'en', 1, 'https://ror.org/03sezsp15 Cohen Medical Associates'),
(67710, 'https://ror.org/03caes622', 'en', 1, 'https://ror.org/03caes622 Colchester + Ipswich Museums'),
(67711, 'https://ror.org/03ak5rf34', 'en', 1, 'https://ror.org/03ak5rf34 The Colebrooke Centre'),
(67712, 'https://ror.org/03dbpxy52', 'de', 1, 'https://ror.org/03dbpxy52 DRK Kliniken Berlin'),
(67713, 'https://ror.org/01grm4y17', 'en', 1, 'https://ror.org/01grm4y17 Bavarian State Research Center for Agriculture Bayerische Landesanstalt für Landwirtschaft'),
(67714, 'https://ror.org/04jpkas74', 'de', 1, 'https://ror.org/04jpkas74 Albertinen Diakoniewerk'),
(67715, 'https://ror.org/021wky884', 'de', 1, 'https://ror.org/021wky884 St. Vincentius-Kliniken'),
(67716, 'https://ror.org/01wwsba50', 'de', 1, 'https://ror.org/01wwsba50 Zentrum für Rhinologie und Allergologie'),
(67717, 'https://ror.org/01dfmc653', 'de', 1, 'https://ror.org/01dfmc653 Krankenhaus Sachsenhausen'),
(67718, 'https://ror.org/02mwtkt95', 'en', 1, 'https://ror.org/02mwtkt95 Deutschen Zentrums für Kinder- und Jugendrheumatologie German Center for Pediatric and Adolescent Rheumatology'),
(67719, 'https://ror.org/05r2e4v78', 'de', 1, 'https://ror.org/05r2e4v78 BDH-Klinik Elzach'),
(67720, 'https://ror.org/05pef1484', 'de', 1, 'https://ror.org/05pef1484 Klinikum Links der Weser'),
(67721, 'https://ror.org/01ayxmp98', 'de', 1, 'https://ror.org/01ayxmp98 GFO Kliniken Bonn St. Marien-Hospital Bonn'),
(67722, 'https://ror.org/01s0fdm87', 'de', 1, 'https://ror.org/01s0fdm87 Malteser Waldkrankenhaus Erlangen'),
(67723, 'https://ror.org/01wvejv85', 'de', 1, 'https://ror.org/01wvejv85 Kliniken Maria Hilf'),
(67724, 'https://ror.org/0131as255', 'en', 1, 'https://ror.org/0131as255 Auditory Valley'),
(67725, 'https://ror.org/046tk5b58', 'no_lang_code', 1, 'https://ror.org/046tk5b58 Wala Heilmittel (Germany)'),
(67726, 'https://ror.org/0451dft51', 'no_lang_code', 1, 'https://ror.org/0451dft51 Ecofys (Germany)'),
(67727, 'https://ror.org/02awzpt50', 'de', 1, 'https://ror.org/02awzpt50 Agaplesion Frankfurter Diakonie Kliniken'),
(67728, 'https://ror.org/036j7xe27', 'de', 1, 'https://ror.org/036j7xe27 Augusta-Kranken-Anstalt'),
(67729, 'https://ror.org/02rx89054', 'de', 1, 'https://ror.org/02rx89054 Die Paracelsus Heilpraktikerschulen'),
(67730, 'https://ror.org/03daz6p93', 'de', 1, 'https://ror.org/03daz6p93 Evangelisches Klinikum Köln Weyertal'),
(67731, 'https://ror.org/003aw4c90', 'en', 1, 'https://ror.org/003aw4c90 Institut für Binnenfischerei e.V. Potsdam-Sacrow Institute of Inland Fisheries in Potsdam-Sacrow'),
(67732, 'https://ror.org/042a1e381', 'de', 1, 'https://ror.org/042a1e381 Clemenshospital Münster'),
(67733, 'https://ror.org/03sz41d72', 'de', 1, 'https://ror.org/03sz41d72 Südharz Klinikum'),
(67734, 'https://ror.org/01y36md93', 'de', 1, 'https://ror.org/01y36md93 Christoph-Dornier-Stiftung für Klinische Psychologie'),
(67735, 'https://ror.org/02kgsyn41', 'no_lang_code', 1, 'https://ror.org/02kgsyn41 Vacuumschmelze (Germany)'),
(67736, 'https://ror.org/01eggt963', 'de', 1, 'https://ror.org/01eggt963 Klinikum Lüdenscheid'),
(67737, 'https://ror.org/05k8q2h32', 'de', 1, 'https://ror.org/05k8q2h32 Institut für Dünnschichttechnologie und Mikrosensorik'),
(67738, 'https://ror.org/05h1ag309', 'de', 1, 'https://ror.org/05h1ag309 Marienhospital Gelsenkirchen'),
(67739, 'https://ror.org/04d92sd36', 'en', 1, 'https://ror.org/04d92sd36 Lower Saxony State Office for Consumer Protection and Food Safety Niedersächsisch Landesamt für Verbraucherschutz und Lebensmittelsicherheit'),
(67740, 'https://ror.org/03snh5g40', 'de', 1, 'https://ror.org/03snh5g40 Ameos Klinikum Inntal'),
(67741, 'https://ror.org/01bynsf44', 'de', 1, 'https://ror.org/01bynsf44 Deutsche Akademie für Kinder- und Jugendmedizin'),
(67742, 'https://ror.org/00ke1nc44', 'de', 1, 'https://ror.org/00ke1nc44 Deutscher Beton- und Bautechnik-Verein'),
(67743, 'https://ror.org/05yk1x869', 'de', 1, 'https://ror.org/05yk1x869 Bezirkskrankenhaus Augsburg'),
(67744, 'https://ror.org/04xcr2824', 'en', 1, 'https://ror.org/04xcr2824 St. Anna Hospital'),
(67745, 'https://ror.org/03y19wk83', 'en', 1, 'https://ror.org/03y19wk83 Community Museum Project'),
(67746, 'https://ror.org/00ts92x19', 'de', 1, 'https://ror.org/00ts92x19 Bürgerhospital Frankfurt am Main'),
(67747, 'https://ror.org/035pc1920', 'en', 1, 'https://ror.org/035pc1920 German National Bone Marrow Donor Registry Zentrale Knochenmarkspender-Register Deutschland'),
(67748, 'https://ror.org/00qkegp41', 'de', 1, 'https://ror.org/00qkegp41 cts CaritasKlinikum Saarbrücken'),
(67749, 'https://ror.org/00xyype02', 'en', 1, 'https://ror.org/00xyype02 Community Woodlands Association'),
(67750, 'https://ror.org/040gtvq30', 'de', 1, 'https://ror.org/040gtvq30 Helios Endo-Klinik Hamburg'),
(67751, 'https://ror.org/02sk64d67', 'de', 1, 'https://ror.org/02sk64d67 Inn-Salzach-Klinikum');
INSERT INTO `rors` VALUES
(67752, 'https://ror.org/038xhby63', 'en', 1, 'https://ror.org/038xhby63 Comprehensive Cardiovascular'),
(67753, 'https://ror.org/05nawz538', 'en', 1, 'https://ror.org/05nawz538 Conect Association'),
(67754, 'https://ror.org/000erc082', 'en', 1, 'https://ror.org/000erc082 Conway Hall Ethical Society'),
(67755, 'https://ror.org/03hbejw10', 'en', 1, 'https://ror.org/03hbejw10 Collaborative Laboratory Services'),
(67756, 'https://ror.org/03aeskr81', 'en', 1, 'https://ror.org/03aeskr81 European Association for Biometrics'),
(67757, 'https://ror.org/03bxpek11', 'en', 1, 'https://ror.org/03bxpek11 Colonial Society of Massachusetts'),
(67758, 'https://ror.org/02cy8w246', 'en', 1, 'https://ror.org/02cy8w246 European Association of Archaeologists Evropská asociace archeologů'),
(67759, 'https://ror.org/02app9g37', 'en', 1, 'https://ror.org/02app9g37 Cool Farm Alliance'),
(67760, 'https://ror.org/00nrdj674', 'en', 1, 'https://ror.org/00nrdj674 Columbia Global Centers'),
(67761, 'https://ror.org/00v8ry163', 'en', 1, 'https://ror.org/00v8ry163 European Centre for Ecotoxicology and Toxicology of Chemicals'),
(67762, 'https://ror.org/004ee9657', 'en', 1, 'https://ror.org/004ee9657 Colwyn Bay Community Hospital'),
(67763, 'https://ror.org/018z6vq38', 'en', 1, 'https://ror.org/018z6vq38 CdLS Foundation UK & Ireland'),
(67764, 'https://ror.org/0426a7r83', 'en', 1, 'https://ror.org/0426a7r83 European Communication Research and Education Association'),
(67765, 'https://ror.org/04v9yk034', 'en', 1, 'https://ror.org/04v9yk034 Cornwall Museums Partnership'),
(67766, 'https://ror.org/02qesd198', 'en', 1, 'https://ror.org/02qesd198 Public Media Alliance'),
(67767, 'https://ror.org/0517ad239', 'en', 1, 'https://ror.org/0517ad239 Cornwall Partnership NHS Foundation Trust'),
(67768, 'https://ror.org/03dywr773', 'en', 1, 'https://ror.org/03dywr773 Community-Campus Partnerships for Health'),
(67769, 'https://ror.org/02nd24c78', 'en', 1, 'https://ror.org/02nd24c78 Men''s Health Forum'),
(67770, 'https://ror.org/00z8qb234', 'en', 1, 'https://ror.org/00z8qb234 Country Land and Business Association'),
(67771, 'https://ror.org/03wjazp93', 'no_lang_code', 1, 'https://ror.org/03wjazp93 Express Medicals (United Kingdom)'),
(67772, 'https://ror.org/01fe85m15', 'en', 1, 'https://ror.org/01fe85m15 Eyebeam'),
(67773, 'https://ror.org/05dxne691', 'en', 1, 'https://ror.org/05dxne691 European Public Health Association'),
(67774, 'https://ror.org/05t90a350', 'en', 1, 'https://ror.org/05t90a350 Fab Foundation'),
(67775, 'https://ror.org/0279ae125', 'en', 1, 'https://ror.org/0279ae125 Fordingbridge Museum Trust'),
(67776, 'https://ror.org/05xhx0t16', 'en', 1, 'https://ror.org/05xhx0t16 The Fairbanking Foundation'),
(67777, 'https://ror.org/03yc1zp27', 'en', 1, 'https://ror.org/03yc1zp27 European Second Language Association'),
(67778, 'https://ror.org/025ardq11', 'en', 1, 'https://ror.org/025ardq11 Forest Trends'),
(67779, 'https://ror.org/01mqrn417', 'en', 1, 'https://ror.org/01mqrn417 Coram'),
(67780, 'https://ror.org/05s6aww72', 'no_lang_code', 1, 'https://ror.org/05s6aww72 Zoetis (United Kingdom)'),
(67781, 'https://ror.org/0186mhr93', 'en', 1, 'https://ror.org/0186mhr93 European Society for Paediatric Oncology'),
(67782, 'https://ror.org/04y723v43', 'en', 1, 'https://ror.org/04y723v43 Driving Mobility'),
(67783, 'https://ror.org/03wfbz902', 'en', 1, 'https://ror.org/03wfbz902 Foster Care Associates Scotland'),
(67784, 'https://ror.org/056ph9112', 'en', 1, 'https://ror.org/056ph9112 Foundation for Common Land'),
(67785, 'https://ror.org/04wbhfm32', 'en', 1, 'https://ror.org/04wbhfm32 Exercise Science Consulting'),
(67786, 'https://ror.org/01ycfmb97', 'en', 1, 'https://ror.org/01ycfmb97 Foundation for Water Research'),
(67787, 'https://ror.org/025a7c117', 'en', 1, 'https://ror.org/025a7c117 Federation of Small Businesses'),
(67788, 'https://ror.org/0077tt432', 'en', 1, 'https://ror.org/0077tt432 Freud Museum'),
(67789, 'https://ror.org/00e2y6338', 'en', 1, 'https://ror.org/00e2y6338 Centre for Nursing Innovation'),
(67790, 'https://ror.org/05bmkf081', 'en', 1, 'https://ror.org/05bmkf081 Friends of Basrah Museum متحف البصرة'),
(67791, 'https://ror.org/02vt7ey12', 'en', 1, 'https://ror.org/02vt7ey12 FenArch'),
(67792, 'https://ror.org/00x43vj55', 'en', 1, 'https://ror.org/00x43vj55 Foundation Scotland'),
(67793, 'https://ror.org/04ctzs969', 'en', 1, 'https://ror.org/04ctzs969 Friends of the National Railway Museum'),
(67794, 'https://ror.org/05kc40c41', 'en', 1, 'https://ror.org/05kc40c41 Phoenix Futures'),
(67795, 'https://ror.org/04nzg6m33', 'en', 1, 'https://ror.org/04nzg6m33 Foundation Tallinn 2011 Sihtasutus Tallinn 2011 Ajalugu ЦЕЛЕВОЕ УЧРЕЖДЕНИЕ «ТАЛЛИНН 2011»'),
(67796, 'https://ror.org/031r1z972', 'en', 1, 'https://ror.org/031r1z972 Fetal Care Research Foundation'),
(67797, 'https://ror.org/05743ng93', 'en', 1, 'https://ror.org/05743ng93 Fife Coast and Countryside Trust'),
(67798, 'https://ror.org/03xepm880', 'no_lang_code', 1, 'https://ror.org/03xepm880 Fourth State (United Kingdom)'),
(67799, 'https://ror.org/05pgctg85', 'no_lang_code', 1, 'https://ror.org/05pgctg85 Fiji Museum'),
(67800, 'https://ror.org/019jheb81', 'en', 1, 'https://ror.org/019jheb81 Future Health Biobank'),
(67801, 'https://ror.org/01q15xv46', 'no_lang_code', 1, 'https://ror.org/01q15xv46 Financial Network Analytics (United Kingdom)'),
(67802, 'https://ror.org/0235g7a39', 'en', 1, 'https://ror.org/0235g7a39 Framework'),
(67803, 'https://ror.org/03xt9b909', 'en', 1, 'https://ror.org/03xt9b909 Galt Museum & Archives'),
(67804, 'https://ror.org/02wxpbn78', 'en', 1, 'https://ror.org/02wxpbn78 Findhorn Foundation'),
(67805, 'https://ror.org/009c3m506', 'no_lang_code', 1, 'https://ror.org/009c3m506 Gamma HealthCare (United States)'),
(67806, 'https://ror.org/039e9be94', 'en', 1, 'https://ror.org/039e9be94 Garden Street Academy'),
(67807, 'https://ror.org/04m3ze057', 'no_lang_code', 1, 'https://ror.org/04m3ze057 Bioinduction (United Kingdom)'),
(67808, 'https://ror.org/04aatd066', 'en', 1, 'https://ror.org/04aatd066 Franco-British Council'),
(67809, 'https://ror.org/054hzcj81', 'en', 1, 'https://ror.org/054hzcj81 Fintry Development Trust'),
(67810, 'https://ror.org/049hvrk60', 'en', 1, 'https://ror.org/049hvrk60 Fred Roche Foundation'),
(67811, 'https://ror.org/030ypsd98', 'en', 1, 'https://ror.org/030ypsd98 Free Word'),
(67812, 'https://ror.org/05xjndf54', 'en', 1, 'https://ror.org/05xjndf54 Freedom Festival Arts Trust'),
(67813, 'https://ror.org/01xdqzr09', 'en', 1, 'https://ror.org/01xdqzr09 The Geffrye Museum of the Home'),
(67814, 'https://ror.org/022aez802', 'en', 1, 'https://ror.org/022aez802 Shenyang First People''s Hospital 沈阳市第一人民医院'),
(67815, 'https://ror.org/02seb1k33', 'en', 1, 'https://ror.org/02seb1k33 Freight Transport Association'),
(67816, 'https://ror.org/05xwnpp97', 'no_lang_code', 1, 'https://ror.org/05xwnpp97 Flexicare (United Kingdom)'),
(67817, 'https://ror.org/04e3cb039', 'en', 1, 'https://ror.org/04e3cb039 French Institute for Research in Africa'),
(67818, 'https://ror.org/00a43hv69', 'no_lang_code', 1, 'https://ror.org/00a43hv69 Benchmark (United Kingdom)'),
(67819, 'https://ror.org/00wqws496', 'fr', 1, 'https://ror.org/00wqws496 Institut Français de Rabat'),
(67820, 'https://ror.org/01xpndd58', 'en', 1, 'https://ror.org/01xpndd58 GeoEnergy Research Centre'),
(67821, 'https://ror.org/01108tk20', 'en', 1, 'https://ror.org/01108tk20 Deutsche Vereinigung für Sportwissenschaft German Society of Sport Science'),
(67822, 'https://ror.org/058n53b84', 'en', 1, 'https://ror.org/058n53b84 Geographical Association'),
(67823, 'https://ror.org/05dnjaa32', 'es', 1, 'https://ror.org/05dnjaa32 Geophysical Institute of Peru Instituto Geofísico del Perú'),
(67824, 'https://ror.org/00c6b0n10', 'en', 1, 'https://ror.org/00c6b0n10 J. Paul Getty Museum'),
(67825, 'https://ror.org/04zjrqq94', 'en', 1, 'https://ror.org/04zjrqq94 George Sexton Associates'),
(67826, 'https://ror.org/05ftdtn89', 'en', 1, 'https://ror.org/05ftdtn89 Greater Manchester Police Museum & Archives'),
(67827, 'https://ror.org/049b1yp65', 'en', 1, 'https://ror.org/049b1yp65 Ghana Museums and Monuments Board'),
(67828, 'https://ror.org/05gdhyx59', 'en', 1, 'https://ror.org/05gdhyx59 The Georgian Concert Society'),
(67829, 'https://ror.org/03qa33147', 'en', 1, 'https://ror.org/03qa33147 Gladstone Pottery Museum'),
(67830, 'https://ror.org/02qq5pa23', 'no_lang_code', 1, 'https://ror.org/02qq5pa23 Geospatial Research (United Kingdom)'),
(67831, 'https://ror.org/017sc6v85', 'en', 1, 'https://ror.org/017sc6v85 Glasgow and West of Scotland Forum of Housing Associations'),
(67832, 'https://ror.org/01shrfv13', 'en', 1, 'https://ror.org/01shrfv13 International Association for the History of Religions'),
(67833, 'https://ror.org/0303trx77', 'en', 1, 'https://ror.org/0303trx77 Green and Seidner Family Practice Associates'),
(67834, 'https://ror.org/02arr6933', 'en', 1, 'https://ror.org/02arr6933 Centre for Contemporary Arts'),
(67835, 'https://ror.org/02rpeh167', 'en', 1, 'https://ror.org/02rpeh167 Green Innovation and Development Centre Trung tâm Phát triển Sáng tạo Xanh'),
(67836, 'https://ror.org/004qqsw05', 'en', 1, 'https://ror.org/004qqsw05 Glasgow Centre for Inclusive Living'),
(67837, 'https://ror.org/02s9xjj68', 'en', 1, 'https://ror.org/02s9xjj68 Hansard Society'),
(67838, 'https://ror.org/02tf15f56', 'en', 1, 'https://ror.org/02tf15f56 Gregson Arts & Community Centre'),
(67839, 'https://ror.org/01q0egy64', 'no_lang_code', 1, 'https://ror.org/01q0egy64 Hanson & Associates (United Kingdom)'),
(67840, 'https://ror.org/03zvet229', 'en', 1, 'https://ror.org/03zvet229 Groninger Museum'),
(67841, 'https://ror.org/000s5ry87', 'en', 1, 'https://ror.org/000s5ry87 Glasgow West Housing Association'),
(67842, 'https://ror.org/03nm8wc96', 'en', 1, 'https://ror.org/03nm8wc96 Glenbow Museum'),
(67843, 'https://ror.org/03mqht986', 'no_lang_code', 1, 'https://ror.org/03mqht986 LogMeIn (United Kingdom)'),
(67844, 'https://ror.org/03m56sb16', 'en', 1, 'https://ror.org/03m56sb16 Gloag Foundation'),
(67845, 'https://ror.org/01smzda60', 'en', 1, 'https://ror.org/01smzda60 Global Canopy'),
(67846, 'https://ror.org/05ap64c35', 'no_lang_code', 1, 'https://ror.org/05ap64c35 Harare Central Hospital'),
(67847, 'https://ror.org/00q5t6695', 'no_lang_code', 1, 'https://ror.org/00q5t6695 Harland Medical Systems (United States)'),
(67848, 'https://ror.org/04jw55602', 'en', 1, 'https://ror.org/04jw55602 Global Stem cell & Regenerative medicine Acceleration Center'),
(67849, 'https://ror.org/01xzfht26', 'en', 1, 'https://ror.org/01xzfht26 Guide Dogs'),
(67850, 'https://ror.org/02mjbb212', 'ga', 1, 'https://ror.org/02mjbb212 Glór'),
(67851, 'https://ror.org/0229rjp19', 'en', 1, 'https://ror.org/0229rjp19 Health Action International'),
(67852, 'https://ror.org/02davjz41', 'en', 1, 'https://ror.org/02davjz41 Gunnersbury'),
(67853, 'https://ror.org/025je9g43', 'en', 1, 'https://ror.org/025je9g43 Glossop Heritage Trust'),
(67854, 'https://ror.org/01ssng043', 'en', 1, 'https://ror.org/01ssng043 Gurkha Welfare Trust'),
(67855, 'https://ror.org/007zz7317', 'no_lang_code', 1, 'https://ror.org/007zz7317 Health Action Partnership International (United Kingdom)'),
(67856, 'https://ror.org/024x1z891', 'en', 1, 'https://ror.org/024x1z891 Gloucestershire Wildlife Trust'),
(67857, 'https://ror.org/0468szt35', 'en', 1, 'https://ror.org/0468szt35 Gwynedd Archaeological Trust'),
(67858, 'https://ror.org/02fxg2r05', 'en', 1, 'https://ror.org/02fxg2r05 H-Net: Humanities & Social Sciences Online'),
(67859, 'https://ror.org/034a0hk59', 'en', 1, 'https://ror.org/034a0hk59 Health Innovation Manchester'),
(67860, 'https://ror.org/03pm6jn74', 'en', 1, 'https://ror.org/03pm6jn74 Health Nest Uganda'),
(67861, 'https://ror.org/04eb4dd81', 'en', 1, 'https://ror.org/04eb4dd81 Herefordshire & Worcestershire Earth Heritage Trust'),
(67862, 'https://ror.org/02q53zc57', 'en', 1, 'https://ror.org/02q53zc57 Hackney Museum'),
(67863, 'https://ror.org/01zdwy980', 'en', 1, 'https://ror.org/01zdwy980 Goldsmiths Community Centre'),
(67864, 'https://ror.org/05n8k2j59', 'en', 1, 'https://ror.org/05n8k2j59 Good Things Foundation'),
(67865, 'https://ror.org/0108dmg51', 'en', 1, 'https://ror.org/0108dmg51 The Hakluyt Society'),
(67866, 'https://ror.org/026e7vh85', 'no_lang_code', 1, 'https://ror.org/026e7vh85 Goodmark Medical (United States)'),
(67867, 'https://ror.org/001m3mk55', 'no_lang_code', 1, 'https://ror.org/001m3mk55 Healthcare over Internet Protocol Community Interest Company (United Kingdom)'),
(67868, 'https://ror.org/02dqn4533', 'en', 1, 'https://ror.org/02dqn4533 Halsway Manor National Centre for Folk Arts'),
(67869, 'https://ror.org/01x9n7m08', 'en', 1, 'https://ror.org/01x9n7m08 Govanhill Housing Association'),
(67870, 'https://ror.org/04edx5729', 'en', 1, 'https://ror.org/04edx5729 Turner-Fairbank Highway Research Center'),
(67871, 'https://ror.org/03ss3kc28', 'en', 1, 'https://ror.org/03ss3kc28 HealthWORKS Newcastle'),
(67872, 'https://ror.org/02edgp803', 'en', 1, 'https://ror.org/02edgp803 Grace Eyre'),
(67873, 'https://ror.org/05mf35n34', 'es', 1, 'https://ror.org/05mf35n34 Hospital Base'),
(67874, 'https://ror.org/00dw32w32', 'en', 1, 'https://ror.org/00dw32w32 The Healthy Pizza Company'),
(67875, 'https://ror.org/00jreav89', 'es', 1, 'https://ror.org/00jreav89 Hospital Base'),
(67876, 'https://ror.org/01tkrhw05', 'es', 1, 'https://ror.org/01tkrhw05 Hospital Clínico FUSAT'),
(67877, 'https://ror.org/01jpyha72', 'en', 1, 'https://ror.org/01jpyha72 The Heather Trust'),
(67878, 'https://ror.org/04bwj5j23', 'en', 1, 'https://ror.org/04bwj5j23 Alternative Technology Centre'),
(67879, 'https://ror.org/01sxva348', 'es', 1, 'https://ror.org/01sxva348 Hospital d''Igualada'),
(67880, 'https://ror.org/035rpst33', 'pt', 1, 'https://ror.org/035rpst33 Hospital das Clínicas da Universidade Federal de Minas Gerais'),
(67881, 'https://ror.org/03s13k126', 'pt', 1, 'https://ror.org/03s13k126 Hospital das Clínicas Samuel Libânio'),
(67882, 'https://ror.org/05r8kh365', 'en', 1, 'https://ror.org/05r8kh365 Helen Bamber Foundation'),
(67883, 'https://ror.org/05kgh1y38', 'es', 1, 'https://ror.org/05kgh1y38 Hospital de Carabineros'),
(67884, 'https://ror.org/02wkzzr31', 'en', 1, 'https://ror.org/02wkzzr31 Mikroskopie im Nanometerbereich und Molekularphysiologie des Gehirns Exzellenzcluster 171 — DFG Forschungszentrum 103 Nanoscale Microscopy and Molecular Physiology of the Brain Cluster of Excellence 171 — DFG Research Center 103'),
(67885, 'https://ror.org/02ar1p116', 'es', 1, 'https://ror.org/02ar1p116 Hospital de Referencia La Equina'),
(67886, 'https://ror.org/026537666', 'en', 1, 'https://ror.org/026537666 Helen Storey Foundation'),
(67887, 'https://ror.org/0093ddg91', 'de', 1, 'https://ror.org/0093ddg91 Niedersächsisches Landesgesundheitsamt'),
(67888, 'https://ror.org/035zr6437', 'es', 1, 'https://ror.org/035zr6437 Hospital Dipreca'),
(67889, 'https://ror.org/026ped584', 'es', 1, 'https://ror.org/026ped584 Hospital Santiago Oriente - Dr. Luis Tisne Brousse'),
(67890, 'https://ror.org/03z6vda50', 'en', 1, 'https://ror.org/03z6vda50 Fachhochschule für die Wirtschaft Hannover University of Applied Sciences FHDW Hannover'),
(67891, 'https://ror.org/00fzeeb88', 'de', 1, 'https://ror.org/00fzeeb88 Landesamt für Soziales und Versorgung des Landes Brandenburg'),
(67892, 'https://ror.org/00jxnw682', 'ms', 1, 'https://ror.org/00jxnw682 Hospital Tuanku Ja’afar'),
(67893, 'https://ror.org/027nnzv91', 'es', 1, 'https://ror.org/027nnzv91 Hospital Italiano La Plata'),
(67894, 'https://ror.org/04wvz8b06', 'en', 1, 'https://ror.org/04wvz8b06 Hospitalfield'),
(67895, 'https://ror.org/00jfgw542', 'ms', 1, 'https://ror.org/00jfgw542 Hospital Sultanah Nur Zahirah'),
(67896, 'https://ror.org/03vgw1v49', 'en', 1, 'https://ror.org/03vgw1v49 Bundesamt für Migration und Flüchtlinge Federal Office for Migration and Refugees'),
(67897, 'https://ror.org/02k8em959', 'en', 1, 'https://ror.org/02k8em959 Housing Studies Association'),
(67898, 'https://ror.org/04a7hfh52', 'en', 1, 'https://ror.org/04a7hfh52 Howard Cottage Housing Association'),
(67899, 'https://ror.org/01xhhwe60', 'en', 1, 'https://ror.org/01xhhwe60 Bundesministerium der Justiz und für Verbraucherschutz Federal Ministry of Justice and Consumer Protection'),
(67900, 'https://ror.org/0308a9489', 'no_lang_code', 1, 'https://ror.org/0308a9489 Bristol Maid (United Kingdom)'),
(67901, 'https://ror.org/04713pn08', 'en', 1, 'https://ror.org/04713pn08 Huddersfield Local History Society'),
(67902, 'https://ror.org/056wznz27', 'de', 1, 'https://ror.org/056wznz27 Landesamt für Denkmalpflege Sachsen'),
(67903, 'https://ror.org/02k6hnt94', 'pt', 1, 'https://ror.org/02k6hnt94 Hospital Napoleão Laureano'),
(67904, 'https://ror.org/03jtvc520', 'en', 1, 'https://ror.org/03jtvc520 Energiewirtschaftliches Institut an der Universität zu Köln Institute of Energy Economics at the University of Cologne'),
(67905, 'https://ror.org/05831r008', 'de', 1, 'https://ror.org/05831r008 Institut für Zuckerrübenforschung'),
(67906, 'https://ror.org/021eps607', 'de', 1, 'https://ror.org/021eps607 Hans-Bredow-Institut Hans-Bredow-Institute'),
(67907, 'https://ror.org/04hv2da60', 'no_lang_code', 1, 'https://ror.org/04hv2da60 i2 Media Research (United Kingdom)'),
(67908, 'https://ror.org/01qynw361', 'ms', 1, 'https://ror.org/01qynw361 Hospital Raja Perempuan Zainab II'),
(67909, 'https://ror.org/008pyv383', 'no_lang_code', 1, 'https://ror.org/008pyv383 i2r Medical (United Kingdom)'),
(67910, 'https://ror.org/01j5w9y89', 'en', 1, 'https://ror.org/01j5w9y89 The IARS International Institute'),
(67911, 'https://ror.org/0238mgj23', 'es', 1, 'https://ror.org/0238mgj23 Hospital Regional de Antofagasta'),
(67912, 'https://ror.org/0405v9k44', 'no_lang_code', 1, 'https://ror.org/0405v9k44 International Centre for Advanced Materials (United Kingdom)'),
(67913, 'https://ror.org/05d8p0254', 'es', 1, 'https://ror.org/05d8p0254 Hospital Regional de Arica Doctor Juan Noé Crevani'),
(67914, 'https://ror.org/04yzyns28', 'es', 1, 'https://ror.org/04yzyns28 Hospital Regional de Talca'),
(67915, 'https://ror.org/03h7pxc12', 'no_lang_code', 1, 'https://ror.org/03h7pxc12 Iceotope Technologies (United Kingdom)'),
(67916, 'https://ror.org/05ct4s596', 'en', 1, 'https://ror.org/05ct4s596 PLA Academy of Military Science 中国人民解放军军事科学院'),
(67917, 'https://ror.org/00d0y9x67', 'no_lang_code', 1, 'https://ror.org/00d0y9x67 Unlimited Group (United Kingdom)'),
(67918, 'https://ror.org/01shzby30', 'en', 1, 'https://ror.org/01shzby30 Industry and Parliament Trust'),
(67919, 'https://ror.org/01zpte707', 'en', 1, 'https://ror.org/01zpte707 Infrastructure Transitions Research Consortium'),
(67920, 'https://ror.org/04vx2nc87', 'no_lang_code', 1, 'https://ror.org/04vx2nc87 Igennus Healthcare Nutrition (United Kingdom)'),
(67921, 'https://ror.org/048par152', 'no_lang_code', 1, 'https://ror.org/048par152 Ingenious Targeting Laboratory (United States)'),
(67922, 'https://ror.org/00w7r8d30', 'en', 1, 'https://ror.org/00w7r8d30 The Hepatitis C Trust'),
(67923, 'https://ror.org/05qxvxf91', 'en', 1, 'https://ror.org/05qxvxf91 iHealth'),
(67924, 'https://ror.org/01f4evc04', 'en', 1, 'https://ror.org/01f4evc04 Culture Coventry'),
(67925, 'https://ror.org/02fddhv21', 'en', 1, 'https://ror.org/02fddhv21 Institute of Healthcare Engineering and Estate Management'),
(67926, 'https://ror.org/018rrky13', 'no_lang_code', 1, 'https://ror.org/018rrky13 Lanarkshire Enterprise Services Limited (United Kingdom)'),
(67927, 'https://ror.org/029587y03', 'en', 1, 'https://ror.org/029587y03 Ilfracombe Museum'),
(67928, 'https://ror.org/05e371w82', 'en', 1, 'https://ror.org/05e371w82 Hereford Health and Safety Group'),
(67929, 'https://ror.org/02gdxv606', 'no_lang_code', 1, 'https://ror.org/02gdxv606 Insect Research Systems (United Kingdom)'),
(67930, 'https://ror.org/0173en609', 'en', 1, 'https://ror.org/0173en609 In Flanders Fields Museum'),
(67931, 'https://ror.org/058123a75', 'en', 1, 'https://ror.org/058123a75 Instituto Nacional de Sismología, Vulcanología, Meteorología e Hidrología National Institute for Seismology, Vulcanology, Meteorology and Hydrology'),
(67932, 'https://ror.org/04sgq7503', 'no_lang_code', 1, 'https://ror.org/04sgq7503 India Habitat Centre भारत पर्यावास केंद्र'),
(67933, 'https://ror.org/03af8y353', 'no_lang_code', 1, 'https://ror.org/03af8y353 Hermes Medical Solutions (United Kingdom)'),
(67934, 'https://ror.org/05btsbq39', 'en', 1, 'https://ror.org/05btsbq39 Institute of Chartered Accountants in England and Wales'),
(67935, 'https://ror.org/01txftm96', 'en', 1, 'https://ror.org/01txftm96 Hertford County Hospital'),
(67936, 'https://ror.org/00eb43c50', 'en', 1, 'https://ror.org/00eb43c50 Institute for Justice & Democracy in Haiti'),
(67937, 'https://ror.org/01sy7jy68', 'nl', 1, 'https://ror.org/01sy7jy68 Stichting Hester'),
(67938, 'https://ror.org/02c10cc21', 'en', 1, 'https://ror.org/02c10cc21 Hft'),
(67939, 'https://ror.org/02znmjj29', 'no_lang_code', 1, 'https://ror.org/02znmjj29 High Force Research (United Kingdom)'),
(67940, 'https://ror.org/00jmvpm31', 'en', 1, 'https://ror.org/00jmvpm31 Institution of Engineering Designers'),
(67941, 'https://ror.org/032jca185', 'en', 1, 'https://ror.org/032jca185 Institute for Human Rights and Development in Africa'),
(67942, 'https://ror.org/0563brw86', 'en', 1, 'https://ror.org/0563brw86 Institute of Industry Analyst Relations'),
(67943, 'https://ror.org/04ve58z79', 'en', 1, 'https://ror.org/04ve58z79 Insigneo'),
(67944, 'https://ror.org/01zhys576', 'en', 1, 'https://ror.org/01zhys576 Institute of Practitioners in Advertising'),
(67945, 'https://ror.org/05fwhaq12', 'en', 1, 'https://ror.org/05fwhaq12 Higher Education Statistics Agency'),
(67946, 'https://ror.org/04h347b80', 'en', 1, 'https://ror.org/04h347b80 Institute of Art and Ideas'),
(67947, 'https://ror.org/036wgjt32', 'en', 1, 'https://ror.org/036wgjt32 Institute for Research in Schools'),
(67948, 'https://ror.org/030b5a298', 'en', 1, 'https://ror.org/030b5a298 Japan Institute of International Affairs 日本国際問題研究所'),
(67949, 'https://ror.org/04ehnbe71', 'en', 1, 'https://ror.org/04ehnbe71 Generation 2.0 for Rights, Equality & Diversity'),
(67950, 'https://ror.org/01z6vsq11', 'en', 1, 'https://ror.org/01z6vsq11 Heritage Medical Research Clinic'),
(67951, 'https://ror.org/00wjwzs60', 'en', 1, 'https://ror.org/00wjwzs60 Institute for Sound & Music'),
(67952, 'https://ror.org/03z50sg96', 'en', 1, 'https://ror.org/03z50sg96 Institute for Conflict Research'),
(67953, 'https://ror.org/05gzzg873', 'en', 1, 'https://ror.org/05gzzg873 Institute for Voluntary Action Research'),
(67954, 'https://ror.org/00w6sdm89', 'en', 1, 'https://ror.org/00w6sdm89 Institute for Cultural Diplomacy'),
(67955, 'https://ror.org/01pg0y117', 'en', 1, 'https://ror.org/01pg0y117 The Institute for Food Brain and Behaviour'),
(67956, 'https://ror.org/01hg6wr34', 'es', 1, 'https://ror.org/01hg6wr34 Instituto de Lengua y Cultura Aymara'),
(67957, 'https://ror.org/03hr98c08', 'en', 1, 'https://ror.org/03hr98c08 The History Teachers'' Association of Australia'),
(67958, 'https://ror.org/04v5fxp58', 'en', 1, 'https://ror.org/04v5fxp58 Institute of Cast Metals Engineers'),
(67959, 'https://ror.org/05f32fm39', 'en', 1, 'https://ror.org/05f32fm39 Hadejia Jama’are Komadugu Yobe Basin-Trust Fund'),
(67960, 'https://ror.org/02q2kw246', 'en', 1, 'https://ror.org/02q2kw246 The Institute of Concrete Technology'),
(67961, 'https://ror.org/02j79g662', 'en', 1, 'https://ror.org/02j79g662 Holocaust Educational Trust'),
(67962, 'https://ror.org/02n57gs70', 'en', 1, 'https://ror.org/02n57gs70 Holocaust Survivors Friendship Association'),
(67963, 'https://ror.org/038mf7084', 'en', 1, 'https://ror.org/038mf7084 Institute of Directors'),
(67964, 'https://ror.org/04abpa862', 'no_lang_code', 1, 'https://ror.org/04abpa862 Holst Centre (Netherlands)'),
(67965, 'https://ror.org/022jej057', 'en', 1, 'https://ror.org/022jej057 Institute of Economic Development'),
(67966, 'https://ror.org/00zyky634', 'en', 1, 'https://ror.org/00zyky634 Institute of Family Therapy'),
(67967, 'https://ror.org/04tk9hj58', 'no_lang_code', 1, 'https://ror.org/04tk9hj58 Hong Kong Maritime Museum 香港海事博物館'),
(67968, 'https://ror.org/04ffrx392', 'en', 1, 'https://ror.org/04ffrx392 Chartered Institute for Archaeologists'),
(67969, 'https://ror.org/01fv2q409', 'en', 1, 'https://ror.org/01fv2q409 Horniman Museum and Gardens'),
(67970, 'https://ror.org/04k7q3y31', 'en', 1, 'https://ror.org/04k7q3y31 Horse Hospital'),
(67971, 'https://ror.org/04fnrqd89', 'en', 1, 'https://ror.org/04fnrqd89 Institute of Food Biotechnology and Genomics Інститут харчової біотехнології та геноміки'),
(67972, 'https://ror.org/00f20ws83', 'es', 1, 'https://ror.org/00f20ws83 Hospital Angeles Clinica Londres'),
(67973, 'https://ror.org/036d5sh68', 'en', 1, 'https://ror.org/036d5sh68 Institute of Food Science & Technology'),
(67974, 'https://ror.org/02z66xs22', 'en', 1, 'https://ror.org/02z66xs22 Institute of Travel & Tourism'),
(67975, 'https://ror.org/042eye458', 'en', 1, 'https://ror.org/042eye458 Institution of Agricultural Engineers'),
(67976, 'https://ror.org/052g82050', 'pt', 1, 'https://ror.org/052g82050 Instituto Akatu'),
(67977, 'https://ror.org/002bahc84', 'en', 1, 'https://ror.org/002bahc84 Institute of Materials Finishing'),
(67978, 'https://ror.org/03qs0wq41', 'no_lang_code', 1, 'https://ror.org/03qs0wq41 Cervantes Institute'),
(67979, 'https://ror.org/0467kh241', 'pt', 1, 'https://ror.org/0467kh241 Grupo de Açãoe Estudos Ambientais'),
(67980, 'https://ror.org/03e5mh597', 'en', 1, 'https://ror.org/03e5mh597 Broadstairs College'),
(67981, 'https://ror.org/03g4bhz29', 'en', 1, 'https://ror.org/03g4bhz29 Canterbury College'),
(67982, 'https://ror.org/03h8wyx14', 'pt', 1, 'https://ror.org/03h8wyx14 Instituto Paulo Gontijo'),
(67983, 'https://ror.org/04wdbw215', 'en', 1, 'https://ror.org/04wdbw215 Dover Technical College'),
(67984, 'https://ror.org/02xf24951', 'en', 1, 'https://ror.org/02xf24951 Folkestone College'),
(67985, 'https://ror.org/03eg1sw22', 'en', 1, 'https://ror.org/03eg1sw22 Sheppey College'),
(67986, 'https://ror.org/0485zq002', 'no_lang_code', 1, 'https://ror.org/0485zq002 Integrated Medicines (United Kingdom)'),
(67987, 'https://ror.org/03y46nb69', 'no_lang_code', 1, 'https://ror.org/03y46nb69 Intelligent Medical Objects (United States)'),
(67988, 'https://ror.org/02wrp2347', 'en', 1, 'https://ror.org/02wrp2347 International Bar Association'),
(67989, 'https://ror.org/05m8k7t58', 'es', 1, 'https://ror.org/05m8k7t58 Instituto de Información Científica y Tecnológica'),
(67990, 'https://ror.org/05q86pe27', 'en', 1, 'https://ror.org/05q86pe27 Institute of Seismology Сейсмология институты'),
(67991, 'https://ror.org/0114n8z16', 'en', 1, 'https://ror.org/0114n8z16 International Brecht Society'),
(67992, 'https://ror.org/01c961y89', 'en', 1, 'https://ror.org/01c961y89 International Broadcasting Trust'),
(67993, 'https://ror.org/01gr3kq91', 'en', 1, 'https://ror.org/01gr3kq91 Interamerican Society of Cardiology Sociedad Interamericana de Cardiología'),
(67994, 'https://ror.org/01y5haq28', 'en', 1, 'https://ror.org/01y5haq28 Intercultural Institute Timisoara'),
(67995, 'https://ror.org/05kks9d30', 'en', 1, 'https://ror.org/05kks9d30 Interdisciplinary Centre for Storage, Transformation and Upgrading of Thermal Energy'),
(67996, 'https://ror.org/0591ds558', 'en', 1, 'https://ror.org/0591ds558 Internal Displacement Monitoring Centre'),
(67997, 'https://ror.org/048tb3g40', 'en', 1, 'https://ror.org/048tb3g40 International Security and Development Center'),
(67998, 'https://ror.org/02hjmkw90', 'en', 1, 'https://ror.org/02hjmkw90 Accademia internazionale di Scienze Ambientali International Academy of Environmental Sciences'),
(67999, 'https://ror.org/008nvwa10', 'en', 1, 'https://ror.org/008nvwa10 International Centre for Women Playwrights'),
(68000, 'https://ror.org/03ja7dr12', 'en', 1, 'https://ror.org/03ja7dr12 International Air Transport Association'),
(68001, 'https://ror.org/02nart969', 'en', 1, 'https://ror.org/02nart969 International Aluminium Institute'),
(68002, 'https://ror.org/01mdxbf79', 'en', 1, 'https://ror.org/01mdxbf79 International Centre on Space Technologies for Natural and Cultural Heritage 国际自然与文化遗产空间技术中心'),
(68003, 'https://ror.org/01c1sry94', 'en', 1, 'https://ror.org/01c1sry94 International Solid Waste Association'),
(68004, 'https://ror.org/04zmpab64', 'en', 1, 'https://ror.org/04zmpab64 International Association for the Study of Traditional Environments'),
(68005, 'https://ror.org/02wfk0r79', 'en', 1, 'https://ror.org/02wfk0r79 IWW Water Centre IWW Zentrum Wasser'),
(68006, 'https://ror.org/03pr7sz08', 'en', 1, 'https://ror.org/03pr7sz08 International Association of Plumbing and Mechanical Officials'),
(68007, 'https://ror.org/02hcvme33', 'de', 1, 'https://ror.org/02hcvme33 Institut für Nichtklassische Chemie'),
(68008, 'https://ror.org/05ay42146', 'en', 1, 'https://ror.org/05ay42146 Internet Service Providers Association'),
(68009, 'https://ror.org/03mrdtb06', 'en', 1, 'https://ror.org/03mrdtb06 International Association of Teachers of English as a Foreign Language'),
(68010, 'https://ror.org/00666kk80', 'en', 1, 'https://ror.org/00666kk80 European Molecular Biology Conference'),
(68011, 'https://ror.org/050qymw35', 'no_lang_code', 1, 'https://ror.org/050qymw35 InTouch Health (United States)'),
(68012, 'https://ror.org/02gk9xs23', 'no_lang_code', 1, 'https://ror.org/02gk9xs23 Investigators Research Group (United States)'),
(68013, 'https://ror.org/01qxe7a32', 'en', 1, 'https://ror.org/01qxe7a32 The Investment Association'),
(68014, 'https://ror.org/045wtka37', 'no_lang_code', 1, 'https://ror.org/045wtka37 Izola General Hospital Splošna Bolnišnica Izola'),
(68015, 'https://ror.org/01mhhtp02', 'en', 1, 'https://ror.org/01mhhtp02 J P French Associates'),
(68016, 'https://ror.org/05qwbfs63', 'en', 1, 'https://ror.org/05qwbfs63 Iowa Diabetes and Endocrinology Research Center'),
(68017, 'https://ror.org/04fyq4a48', 'en', 1, 'https://ror.org/04fyq4a48 Jana Sanskriti Centre for Theatre of the Oppressed'),
(68018, 'https://ror.org/04z172717', 'en', 1, 'https://ror.org/04z172717 Iraqi Al-Amal Association جمعية الامل العراقية - مكتب كركوك'),
(68019, 'https://ror.org/03ze5je62', 'no_lang_code', 1, 'https://ror.org/03ze5je62 EngineersHRW (United Kingdom)'),
(68020, 'https://ror.org/010719r63', 'en', 1, 'https://ror.org/010719r63 Atmospheric Observatory of Austral Patagonia Observatorio Atmosférico de la Patagonia Austral'),
(68021, 'https://ror.org/04kesq777', 'en', 1, 'https://ror.org/04kesq777 European Centre for Living Technology'),
(68022, 'https://ror.org/03yza5b87', 'fr', 1, 'https://ror.org/03yza5b87 Hôpitaux Iris Sud'),
(68023, 'https://ror.org/0390vgx68', 'en', 1, 'https://ror.org/0390vgx68 European Theoretical Spectroscopy Facility'),
(68024, 'https://ror.org/02gnws810', 'en', 1, 'https://ror.org/02gnws810 Irish Cultural Centre'),
(68025, 'https://ror.org/0488wz367', 'en', 1, 'https://ror.org/0488wz367 Wuyi University 五邑大学'),
(68026, 'https://ror.org/02yjnch11', 'en', 1, 'https://ror.org/02yjnch11 Japanese Foundation for Multidisciplinary Treatment of Cancer がん集学的治療研究財団'),
(68027, 'https://ror.org/05xrbcc66', 'en', 1, 'https://ror.org/05xrbcc66 Advanced Science Research Center 先端基礎研究センタ'),
(68028, 'https://ror.org/04py12f74', 'no_lang_code', 1, 'https://ror.org/04py12f74 PublicPolicy.ie (Ireland)'),
(68029, 'https://ror.org/018sp9t05', 'en', 1, 'https://ror.org/018sp9t05 Irish World Heritage Centre'),
(68030, 'https://ror.org/0013y6044', 'en', 1, 'https://ror.org/0013y6044 Irish Jewish Museum'),
(68031, 'https://ror.org/04cx28z93', 'en', 1, 'https://ror.org/04cx28z93 Jeremy Gardner Associates'),
(68032, 'https://ror.org/03cxfcp49', 'en', 1, 'https://ror.org/03cxfcp49 Bangladesh Islamic Foundation ইসলামিক ফাউন্ডেশন বাংলাদেশ'),
(68033, 'https://ror.org/02kswk287', 'en', 1, 'https://ror.org/02kswk287 Isles of Scilly Museum'),
(68034, 'https://ror.org/01994hy95', 'en', 1, 'https://ror.org/01994hy95 Islington Museum'),
(68035, 'https://ror.org/04nwvkj48', 'en', 1, 'https://ror.org/04nwvkj48 International Comparative Literature Association'),
(68036, 'https://ror.org/005rgra64', 'en', 1, 'https://ror.org/005rgra64 Israeli Cultural Institute Izraeli Kulturális Intézet'),
(68037, 'https://ror.org/047740987', 'en', 1, 'https://ror.org/047740987 Jimmy Mac’s Centre'),
(68038, 'https://ror.org/04m9ftx85', 'en', 1, 'https://ror.org/04m9ftx85 Istanbul Foundation for Research and Education İSTANBUL ARAŞTIRMA VE EĞİTİM VAKFI'),
(68039, 'https://ror.org/03dwcee04', 'en', 1, 'https://ror.org/03dwcee04 Co.As.It.'),
(68040, 'https://ror.org/05jexhf05', 'no_lang_code', 1, 'https://ror.org/05jexhf05 John Regan Associates (United Kingdom)'),
(68041, 'https://ror.org/04yw9z443', 'no_lang_code', 1, 'https://ror.org/04yw9z443 iTaukei Trust Fund Board'),
(68042, 'https://ror.org/046wv1d24', 'no_lang_code', 1, 'https://ror.org/046wv1d24 Itres (Canada)'),
(68043, 'https://ror.org/01d016e60', 'en', 1, 'https://ror.org/01d016e60 Jonathan A Law & Associates'),
(68044, 'https://ror.org/00nmsgd25', 'en', 1, 'https://ror.org/00nmsgd25 Keith Khan Associates'),
(68045, 'https://ror.org/0031tkh25', 'en', 1, 'https://ror.org/0031tkh25 International Genetically Engineered Machine Foundation'),
(68046, 'https://ror.org/038rkt253', 'en', 1, 'https://ror.org/038rkt253 Kelvingrove Art Gallery and Museum'),
(68047, 'https://ror.org/038gr4r81', 'en', 1, 'https://ror.org/038gr4r81 Hawley Collection'),
(68048, 'https://ror.org/02g918154', 'en', 1, 'https://ror.org/02g918154 Kent Archaeological Society'),
(68049, 'https://ror.org/02yt07f63', 'en', 1, 'https://ror.org/02yt07f63 Kent History and Library Centre'),
(68050, 'https://ror.org/05w0zaf96', 'en', 1, 'https://ror.org/05w0zaf96 International Hydropower Association'),
(68051, 'https://ror.org/04n78zc82', 'en', 1, 'https://ror.org/04n78zc82 Kenya Health Informatics Association'),
(68052, 'https://ror.org/040t3et06', 'en', 1, 'https://ror.org/040t3et06 Keswick Museum'),
(68053, 'https://ror.org/01z654s56', 'en', 1, 'https://ror.org/01z654s56 Kharadar General Hospital کھارادر جنرل ہسپتال'),
(68054, 'https://ror.org/00jh87v98', 'en', 1, 'https://ror.org/00jh87v98 International Lesbian, Gay, Bisexual, Trans and Intersex Association'),
(68055, 'https://ror.org/01r3ct535', 'no_lang_code', 1, 'https://ror.org/01r3ct535 Kheiron Medical Technologies (United Kingdom)'),
(68056, 'https://ror.org/04dbzyc13', 'en', 1, 'https://ror.org/04dbzyc13 Khizra Foundation'),
(68057, 'https://ror.org/05ejdaa80', 'en', 1, 'https://ror.org/05ejdaa80 Khoj International Artists'' Association'),
(68058, 'https://ror.org/04dcbs719', 'en', 1, 'https://ror.org/04dcbs719 International Longevity Centre - India'),
(68059, 'https://ror.org/039qtbx12', 'en', 1, 'https://ror.org/039qtbx12 Kidney Associates'),
(68060, 'https://ror.org/0016std27', 'en', 1, 'https://ror.org/0016std27 International Maritime Organization'),
(68061, 'https://ror.org/0338yqm59', 'en', 1, 'https://ror.org/0338yqm59 Kinetica Museum'),
(68062, 'https://ror.org/02sv3ne29', 'en', 1, 'https://ror.org/02sv3ne29 Kaivalya Education Foundation'),
(68063, 'https://ror.org/027zjnr49', 'en', 1, 'https://ror.org/027zjnr49 International New Town Institute'),
(68064, 'https://ror.org/00be2g057', 'en', 1, 'https://ror.org/00be2g057 King Faisal Center for Research and Islamic Studies مركز الملك فيصل للبحوث والدراسات الإسلامية'),
(68065, 'https://ror.org/05jnhtw66', 'en', 1, 'https://ror.org/05jnhtw66 King Hussein Foundation مؤسسة الملك الحسين'),
(68066, 'https://ror.org/02bnwry33', 'en', 1, 'https://ror.org/02bnwry33 Karnataka Health Promotion Trust'),
(68067, 'https://ror.org/04cecjb61', 'en', 1, 'https://ror.org/04cecjb61 Lancaster City Museum'),
(68068, 'https://ror.org/04qgafw47', 'en', 1, 'https://ror.org/04qgafw47 The Katie Piper Foundation'),
(68069, 'https://ror.org/05q6xw994', 'en', 1, 'https://ror.org/05q6xw994 International Research School of Planetary Sciences'),
(68070, 'https://ror.org/03k3mtb84', 'en', 1, 'https://ror.org/03k3mtb84 Kino Klassika Foundation'),
(68071, 'https://ror.org/03n3erz85', 'en', 1, 'https://ror.org/03n3erz85 Koshish Charitable Trust कोशिश'),
(68072, 'https://ror.org/015zzsp20', 'en', 1, 'https://ror.org/015zzsp20 Kirkgate Centre'),
(68073, 'https://ror.org/02szhc144', 'en', 1, 'https://ror.org/02szhc144 London Irish Centre'),
(68074, 'https://ror.org/04n96a723', 'en', 1, 'https://ror.org/04n96a723 Kraszna-Krausz Foundation'),
(68075, 'https://ror.org/05wm18065', 'en', 1, 'https://ror.org/05wm18065 Kirklees & Calderdale Rape & Sexual Abuse Counselling Centre'),
(68076, 'https://ror.org/001fg0044', 'en', 1, 'https://ror.org/001fg0044 London Rebuilding Society'),
(68077, 'https://ror.org/04ss19q24', 'en', 1, 'https://ror.org/04ss19q24 Kirknewton Community Development Trust'),
(68078, 'https://ror.org/05q846d47', 'en', 1, 'https://ror.org/05q846d47 Kyoto Costume Institute 京都服飾文化研究財団'),
(68079, 'https://ror.org/01hzg6v66', 'en', 1, 'https://ror.org/01hzg6v66 London Social Science'),
(68080, 'https://ror.org/011v30d49', 'en', 1, 'https://ror.org/011v30d49 Knowle West Healthy Living Centre'),
(68081, 'https://ror.org/04cnp9g56', 'en', 1, 'https://ror.org/04cnp9g56 Conservancies KZN'),
(68082, 'https://ror.org/0132q8e84', 'no_lang_code', 1, 'https://ror.org/0132q8e84 Longenecker and Associates (United States)'),
(68083, 'https://ror.org/00y3b8e38', 'en', 1, 'https://ror.org/00y3b8e38 Lorna Young Foundation'),
(68084, 'https://ror.org/01qvbxx84', 'no_lang_code', 1, 'https://ror.org/01qvbxx84 Medical Moulded Products (United Kingdom)'),
(68085, 'https://ror.org/02vw9ek23', 'pl', 1, 'https://ror.org/02vw9ek23 Dolnośląskie Centrum Onkologii'),
(68086, 'https://ror.org/03bm1r569', 'en', 1, 'https://ror.org/03bm1r569 Medical Prescription Services'),
(68087, 'https://ror.org/013cbkm39', 'en', 1, 'https://ror.org/013cbkm39 Luing Cattle Society'),
(68088, 'https://ror.org/05fexxx29', 'no_lang_code', 1, 'https://ror.org/05fexxx29 Lumen (United Kingdom)'),
(68089, 'https://ror.org/05qjzj338', 'pl', 1, 'https://ror.org/05qjzj338 Lambda Warszawa Stowarzyszenie Lambda Warszawa'),
(68090, 'https://ror.org/0306jdn93', 'en', 1, 'https://ror.org/0306jdn93 The Ethical Small Traders Association'),
(68091, 'https://ror.org/02bze1z02', 'en', 1, 'https://ror.org/02bze1z02 Luton Culture'),
(68092, 'https://ror.org/04z020c77', 'en', 1, 'https://ror.org/04z020c77 Landscape Research & Management'),
(68093, 'https://ror.org/059wwav72', 'no_lang_code', 1, 'https://ror.org/059wwav72 M C I Santé Animale (Morocco)'),
(68094, 'https://ror.org/05fpcda55', 'en', 1, 'https://ror.org/05fpcda55 Landscape Research Group'),
(68095, 'https://ror.org/01kw4bf10', 'en', 1, 'https://ror.org/01kw4bf10 Medicines Patent Pool'),
(68096, 'https://ror.org/022gg8876', 'no_lang_code', 1, 'https://ror.org/022gg8876 MIE Medical Research (United Kingdom)'),
(68097, 'https://ror.org/015y4yq74', 'en', 1, 'https://ror.org/015y4yq74 Language and Learning Foundation भाषा और सीखना फाउंडेशन'),
(68098, 'https://ror.org/00a1grh69', 'en', 1, 'https://ror.org/00a1grh69 Medicon Village'),
(68099, 'https://ror.org/02v1vde28', 'no_lang_code', 1, 'https://ror.org/02v1vde28 MGT Capital Investments (United Kingdom)'),
(68100, 'https://ror.org/03md19g63', 'en', 1, 'https://ror.org/03md19g63 Lapido Media'),
(68101, 'https://ror.org/017sdfy20', 'en', 1, 'https://ror.org/017sdfy20 Medieval Settlement Research Group'),
(68102, 'https://ror.org/00nge9944', 'en', 1, 'https://ror.org/00nge9944 Law & Society Trust'),
(68103, 'https://ror.org/01rz1yn84', 'en', 1, 'https://ror.org/01rz1yn84 Law Centres Network'),
(68104, 'https://ror.org/01apxt611', 'en', 1, 'https://ror.org/01apxt611 Medway NHS Foundation Trust'),
(68105, 'https://ror.org/02rmnz491', 'en', 1, 'https://ror.org/02rmnz491 Magna'),
(68106, 'https://ror.org/05xa78572', 'en', 1, 'https://ror.org/05xa78572 Association of Mental Health Providers'),
(68107, 'https://ror.org/01byxcr66', 'en', 1, 'https://ror.org/01byxcr66 Learning and Work Institute'),
(68108, 'https://ror.org/0584sxj05', 'en', 1, 'https://ror.org/0584sxj05 Metal Industries Research & Development Centre 金屬工業研究發展中心'),
(68109, 'https://ror.org/044691a51', 'en', 1, 'https://ror.org/044691a51 LearnPlay Foundation'),
(68110, 'https://ror.org/04yf6py31', 'en', 1, 'https://ror.org/04yf6py31 The Meththa Foundation'),
(68111, 'https://ror.org/01wa67h94', 'en', 1, 'https://ror.org/01wa67h94 Metropolitan Arts Centre'),
(68112, 'https://ror.org/051x1jz81', 'en', 1, 'https://ror.org/051x1jz81 Leeds Community Foundation'),
(68113, 'https://ror.org/04nx3q556', 'en', 1, 'https://ror.org/04nx3q556 Metropolitan Black Police Association'),
(68114, 'https://ror.org/01je6ev79', 'en', 1, 'https://ror.org/01je6ev79 Manor Gardens Welfare Trust'),
(68115, 'https://ror.org/03723ft34', 'en', 1, 'https://ror.org/03723ft34 Legal Policy Research Centre Центр исследования правовой политики'),
(68116, 'https://ror.org/05nggxc52', 'en', 1, 'https://ror.org/05nggxc52 Marin Endocrine Care and Research'),
(68117, 'https://ror.org/0126z0220', 'en', 1, 'https://ror.org/0126z0220 Midlands Arts Centre'),
(68118, 'https://ror.org/0473dy216', 'en', 1, 'https://ror.org/0473dy216 Midland Heart'),
(68119, 'https://ror.org/03sdvv968', 'en', 1, 'https://ror.org/03sdvv968 Marine Science Coordination Committee'),
(68120, 'https://ror.org/019n3pt49', 'no_lang_code', 1, 'https://ror.org/019n3pt49 4SC (Germany)'),
(68121, 'https://ror.org/04hkn2n95', 'en', 1, 'https://ror.org/04hkn2n95 Milapfest'),
(68122, 'https://ror.org/05sb8nh13', 'en', 1, 'https://ror.org/05sb8nh13 The Military Intelligence Museum'),
(68123, 'https://ror.org/02kchqd71', 'en', 1, 'https://ror.org/02kchqd71 Milnbank Housing Association'),
(68124, 'https://ror.org/02n56bb75', 'en', 1, 'https://ror.org/02n56bb75 Ministry of Scientific Research and Innovation Ministère de la Recherche Scientifique et de l''Innovation'),
(68125, 'https://ror.org/04tvh6p44', 'no_lang_code', 1, 'https://ror.org/04tvh6p44 Lime Associates (United Kingdom)'),
(68126, 'https://ror.org/04xawry97', 'en', 1, 'https://ror.org/04xawry97 Lincolnshire Partnership NHS Foundation Trust'),
(68127, 'https://ror.org/043yzag23', 'no_lang_code', 1, 'https://ror.org/043yzag23 Mademoiselle Desserts (United Kingdom)'),
(68128, 'https://ror.org/04gfk4b59', 'en', 1, 'https://ror.org/04gfk4b59 Ministerio de Cultura Ministry of Culture'),
(68129, 'https://ror.org/02whsfz82', 'en', 1, 'https://ror.org/02whsfz82 Ministry of Defence'),
(68130, 'https://ror.org/00zznvx80', 'en', 1, 'https://ror.org/00zznvx80 The Linenhall Arts Centre'),
(68131, 'https://ror.org/03ebpdd69', 'no_lang_code', 1, 'https://ror.org/03ebpdd69 Liquids Research (United Kingdom)'),
(68132, 'https://ror.org/04sdakz38', 'en', 1, 'https://ror.org/04sdakz38 The Matthew Elvidge Trust'),
(68133, 'https://ror.org/01xvefs70', 'en', 1, 'https://ror.org/01xvefs70 Ministry of Health and Sports'),
(68134, 'https://ror.org/024f22429', 'en', 1, 'https://ror.org/024f22429 Ministry of Justice and Public Security Ministério da Justiça e Segurança Pública'),
(68135, 'https://ror.org/03qj46y39', 'en', 1, 'https://ror.org/03qj46y39 Ministry of Labour, Social Security and Services'),
(68136, 'https://ror.org/05xh18273', 'en', 1, 'https://ror.org/05xh18273 Media Standards Trust'),
(68137, 'https://ror.org/0311bpv57', 'en', 1, 'https://ror.org/0311bpv57 Lisburn & Castlereagh City Council'),
(68138, 'https://ror.org/044ga3f28', 'en', 1, 'https://ror.org/044ga3f28 Medic Mobile'),
(68139, 'https://ror.org/037a1dk33', 'no_lang_code', 1, 'https://ror.org/037a1dk33 Medical Architecture (United Kingdom)'),
(68140, 'https://ror.org/03dj32m19', 'en', 1, 'https://ror.org/03dj32m19 Local Area Research & Intelligence Association'),
(68141, 'https://ror.org/02sgk6k14', 'en', 1, 'https://ror.org/02sgk6k14 Local Government Association'),
(68142, 'https://ror.org/04kxvwk47', 'en', 1, 'https://ror.org/04kxvwk47 Local Trust'),
(68143, 'https://ror.org/00h9tn549', 'en', 1, 'https://ror.org/00h9tn549 Missenden Centre'),
(68144, 'https://ror.org/04476hk95', 'en', 1, 'https://ror.org/04476hk95 Institute for Social and Economic Research'),
(68145, 'https://ror.org/01cb4q924', 'en', 1, 'https://ror.org/01cb4q924 London Arts in Health Forum'),
(68146, 'https://ror.org/01q78gf04', 'no_lang_code', 1, 'https://ror.org/01q78gf04 MJ Medical (United Kingdom)'),
(68147, 'https://ror.org/02fcqpe40', 'en', 1, 'https://ror.org/02fcqpe40 Municipal Association of Victoria'),
(68148, 'https://ror.org/05kb1ze13', 'ro', 1, 'https://ror.org/05kb1ze13 Spitalul Clinic Judetean Mures'),
(68149, 'https://ror.org/05c7mzp22', 'pt', 1, 'https://ror.org/05c7mzp22 Museu Afro Brasil'),
(68150, 'https://ror.org/00vp3mb10', 'en', 1, 'https://ror.org/00vp3mb10 Byron Museum of History'),
(68151, 'https://ror.org/00h6bkr27', 'en', 1, 'https://ror.org/00h6bkr27 Museum Ethnographers Group'),
(68152, 'https://ror.org/03a3rm692', 'en', 1, 'https://ror.org/03a3rm692 Museum of Australian Democracy'),
(68153, 'https://ror.org/05vpe6993', 'en', 1, 'https://ror.org/05vpe6993 Museum of East Anglian Life'),
(68154, 'https://ror.org/05x542h52', 'es', 1, 'https://ror.org/05x542h52 Museo Nacional de Etnografía y Folklore'),
(68155, 'https://ror.org/05hj4dk05', 'pt', 1, 'https://ror.org/05hj4dk05 Museu de Lamego'),
(68156, 'https://ror.org/006m3k312', 'en', 1, 'https://ror.org/006m3k312 Museo de la Memoria y los Derechos Humanos Museum of Memory and Human Rights'),
(68157, 'https://ror.org/02zggew82', 'en', 1, 'https://ror.org/02zggew82 Museum Of Modern Art'),
(68158, 'https://ror.org/03x8p5f11', 'en', 1, 'https://ror.org/03x8p5f11 Molecular Sciences Software Institute'),
(68159, 'https://ror.org/04046a831', 'en', 1, 'https://ror.org/04046a831 Mondo Foundation'),
(68160, 'https://ror.org/01b0sfz46', 'en', 1, 'https://ror.org/01b0sfz46 National Centre for Contemporary Arts Государственный центр современного искусства'),
(68161, 'https://ror.org/02j7asw37', 'en', 1, 'https://ror.org/02j7asw37 Moray Art Centre'),
(68162, 'https://ror.org/02ad86n55', 'en', 1, 'https://ror.org/02ad86n55 More Associates'),
(68163, 'https://ror.org/03fr3nn32', 'en', 1, 'https://ror.org/03fr3nn32 National Centre for Resilience'),
(68164, 'https://ror.org/051xqea68', 'en', 1, 'https://ror.org/051xqea68 Moseley Community Development Trust'),
(68165, 'https://ror.org/01dkdqg26', 'no_lang_code', 1, 'https://ror.org/01dkdqg26 Mote Research (United Kingdom)'),
(68166, 'https://ror.org/05vcmd458', 'en', 1, 'https://ror.org/05vcmd458 National Childbirth Trust'),
(68167, 'https://ror.org/036515p55', 'en', 1, 'https://ror.org/036515p55 Museum of the History of Science'),
(68168, 'https://ror.org/00e3esm33', 'en', 1, 'https://ror.org/00e3esm33 National Civil War Centre'),
(68169, 'https://ror.org/02er1v340', 'en', 1, 'https://ror.org/02er1v340 Mourne Heritage Trust'),
(68170, 'https://ror.org/01e10kr47', 'en', 1, 'https://ror.org/01e10kr47 Museum of the Order of St John'),
(68171, 'https://ror.org/00dxccz84', 'en', 1, 'https://ror.org/00dxccz84 Mpumalanga Deparment of Health'),
(68172, 'https://ror.org/04mk94w26', 'en', 1, 'https://ror.org/04mk94w26 National Coastal Tourism Academy'),
(68173, 'https://ror.org/013vwky05', 'en', 1, 'https://ror.org/013vwky05 Henriette-Bathily Women''s Museum'),
(68174, 'https://ror.org/00w0zag63', 'en', 1, 'https://ror.org/00w0zag63 National Council for Palliative Care'),
(68175, 'https://ror.org/02542wh83', 'en', 1, 'https://ror.org/02542wh83 Mull and Iona Community Trust'),
(68176, 'https://ror.org/00jd4hc03', 'en', 1, 'https://ror.org/00jd4hc03 Chomhairle Náisiúnta Eacnamaíoch Shóialta National Economic and Social Council'),
(68177, 'https://ror.org/04jx1nd20', 'en', 1, 'https://ror.org/04jx1nd20 National Eczema Society'),
(68178, 'https://ror.org/05t9ac381', 'en', 1, 'https://ror.org/05t9ac381 MuseumNext'),
(68179, 'https://ror.org/04hhsn876', 'en', 1, 'https://ror.org/04hhsn876 National Employment Savings Trust'),
(68180, 'https://ror.org/00hzz2423', 'en', 1, 'https://ror.org/00hzz2423 National Gamete Donation Trust'),
(68181, 'https://ror.org/04byy6k28', 'en', 1, 'https://ror.org/04byy6k28 National Great Rivers Research and Education Center'),
(68182, 'https://ror.org/020yenx75', 'en', 1, 'https://ror.org/020yenx75 Museums Sheffield'),
(68183, 'https://ror.org/04m5xrq42', 'en', 1, 'https://ror.org/04m5xrq42 Music Venue Trust'),
(68184, 'https://ror.org/02jgmf723', 'en', 1, 'https://ror.org/02jgmf723 National Health Insurance Fund'),
(68185, 'https://ror.org/03y53a049', 'en', 1, 'https://ror.org/03y53a049 National Heritage Science Forum'),
(68186, 'https://ror.org/014pnnx80', 'en', 1, 'https://ror.org/014pnnx80 Myanmar Environment Institute'),
(68187, 'https://ror.org/037nqez35', 'en', 1, 'https://ror.org/037nqez35 Myanmar Geosciences Society'),
(68188, 'https://ror.org/01h6ebv15', 'en', 1, 'https://ror.org/01h6ebv15 mySociety'),
(68189, 'https://ror.org/022a78s92', 'en', 1, 'https://ror.org/022a78s92 Nafici Environmental Research'),
(68190, 'https://ror.org/03zc8zv24', 'en', 1, 'https://ror.org/03zc8zv24 National Ice Centre'),
(68191, 'https://ror.org/050ca4130', 'en', 1, 'https://ror.org/050ca4130 Namgyal Monastery Institute of Buddhist Studies Namgyal monastère Institut d''études bouddhistes'),
(68192, 'https://ror.org/011fkt075', 'en', 1, 'https://ror.org/011fkt075 Nanjing Museum 南京博物院'),
(68193, 'https://ror.org/0462c0k61', 'en', 1, 'https://ror.org/0462c0k61 Nanolayers'),
(68194, 'https://ror.org/05h9r7c77', 'en', 1, 'https://ror.org/05h9r7c77 National Museum of China 中国国家博物馆'),
(68195, 'https://ror.org/05wnsd310', 'en', 1, 'https://ror.org/05wnsd310 Chinese National Museum of Ethnology'),
(68196, 'https://ror.org/030192654', 'en', 1, 'https://ror.org/030192654 National Museum of Korea 국립중앙박물관'),
(68197, 'https://ror.org/02vp3n735', 'en', 1, 'https://ror.org/02vp3n735 National Museum of Natural History राष्ट्रीय प्राकृतिक इतिहास संग्रहालय, नई दिल्ली');
INSERT INTO `rors` VALUES
(68198, 'https://ror.org/04q8xq606', 'en', 1, 'https://ror.org/04q8xq606 National Museum of the Royal Navy'),
(68199, 'https://ror.org/03n1jcy96', 'de', 1, 'https://ror.org/03n1jcy96 DRK Krankenhaus Altenkirchen-Hachenburg'),
(68200, 'https://ror.org/02p1e8c91', 'en', 1, 'https://ror.org/02p1e8c91 National Phenotypic Screening Centre'),
(68201, 'https://ror.org/02ma9m113', 'it', 1, 'https://ror.org/02ma9m113 Humanitas Castelli'),
(68202, 'https://ror.org/00e30wp67', 'en', 1, 'https://ror.org/00e30wp67 Northern Ireland Advanced Composites and Engineering Centre'),
(68203, 'https://ror.org/01cwznr13', 'no_lang_code', 1, 'https://ror.org/01cwznr13 IBI Group (United Kingdom)'),
(68204, 'https://ror.org/0076fay17', 'en', 1, 'https://ror.org/0076fay17 Ocala Research Institute'),
(68205, 'https://ror.org/05wyxfm90', 'en', 1, 'https://ror.org/05wyxfm90 National Ready Mixed Concrete Association'),
(68206, 'https://ror.org/024n0w036', 'no_lang_code', 1, 'https://ror.org/024n0w036 Nine Health CIC (United Kingdom)'),
(68207, 'https://ror.org/006y63v75', 'es', 1, 'https://ror.org/006y63v75 Museo de Historia Natural Noel Kempff Mercado'),
(68208, 'https://ror.org/042a1x396', 'no_lang_code', 1, 'https://ror.org/042a1x396 Nolan Associates (United Kingdom)'),
(68209, 'https://ror.org/022fw8624', 'en', 1, 'https://ror.org/022fw8624 Oil & Gas Innovation Centre'),
(68210, 'https://ror.org/03jf1cp95', 'en', 1, 'https://ror.org/03jf1cp95 Social Tech Trust'),
(68211, 'https://ror.org/02z1jjz10', 'no_lang_code', 1, 'https://ror.org/02z1jjz10 Ohmedics (United Kingdom)'),
(68212, 'https://ror.org/04x970698', 'en', 1, 'https://ror.org/04x970698 NonFerrous Materials Technology Development Centre'),
(68213, 'https://ror.org/037yg6j37', 'en', 1, 'https://ror.org/037yg6j37 Norfolk Archaeological Trust'),
(68214, 'https://ror.org/0572j1y15', 'en', 1, 'https://ror.org/0572j1y15 North Alabama Research Center'),
(68215, 'https://ror.org/04rapth36', 'no_lang_code', 1, 'https://ror.org/04rapth36 Ondine (Canada)'),
(68216, 'https://ror.org/05wfe5014', 'en', 1, 'https://ror.org/05wfe5014 National Scientific Center for Surgery named after A.N. Syzganov Национальный Научный центр хирургии им. А.Н. Сызганова'),
(68217, 'https://ror.org/01nxjag84', 'ro', 1, 'https://ror.org/01nxjag84 Institutul Medicina de Urgenta'),
(68218, 'https://ror.org/03c33cs95', 'en', 1, 'https://ror.org/03c33cs95 National Sheep Association'),
(68219, 'https://ror.org/02kje8711', 'en', 1, 'https://ror.org/02kje8711 National Slate Museum'),
(68220, 'https://ror.org/05cdbex20', 'en', 1, 'https://ror.org/05cdbex20 Agensi Angkasa Negara National Space Agency'),
(68221, 'https://ror.org/04258ak80', 'en', 1, 'https://ror.org/04258ak80 North of England Civic Trust'),
(68222, 'https://ror.org/008ntxv25', 'en', 1, 'https://ror.org/008ntxv25 National Subsea Research Initiative'),
(68223, 'https://ror.org/021fwfm07', 'en', 1, 'https://ror.org/021fwfm07 National Survivor User Network'),
(68224, 'https://ror.org/05cqwch71', 'en', 1, 'https://ror.org/05cqwch71 North Tolsta Historical Society'),
(68225, 'https://ror.org/04fjkn289', 'en', 1, 'https://ror.org/04fjkn289 Taigh Chearsabhagh Museum and Arts Centre'),
(68226, 'https://ror.org/02kf03x09', 'en', 1, 'https://ror.org/02kf03x09 National Center for Tuberculosis and Lung Disease'),
(68227, 'https://ror.org/00d6gc809', 'en', 1, 'https://ror.org/00d6gc809 Northampton General Hospital NHS Trust'),
(68228, 'https://ror.org/02tshe095', 'en', 1, 'https://ror.org/02tshe095 The National Trust'),
(68229, 'https://ror.org/038t8cx05', 'en', 1, 'https://ror.org/038t8cx05 Northern Architecture'),
(68230, 'https://ror.org/00qvjvf51', 'en', 1, 'https://ror.org/00qvjvf51 Catalyst'),
(68231, 'https://ror.org/02gjn0z15', 'en', 1, 'https://ror.org/02gjn0z15 Nationwide Building Society'),
(68232, 'https://ror.org/05k1fbt59', 'en', 1, 'https://ror.org/05k1fbt59 Natural History Society of Northumbria'),
(68233, 'https://ror.org/00kbh2120', 'no_lang_code', 1, 'https://ror.org/00kbh2120 Herbal Apothecary (United Kingdom)'),
(68234, 'https://ror.org/04yc4x775', 'en', 1, 'https://ror.org/04yc4x775 Northern Rock Foundation'),
(68235, 'https://ror.org/03nnaq439', 'en', 1, 'https://ror.org/03nnaq439 One to One Development Trust'),
(68236, 'https://ror.org/03hbnfz28', 'en', 1, 'https://ror.org/03hbnfz28 Nautical Archaeology Society'),
(68237, 'https://ror.org/04fgqxr51', 'en', 1, 'https://ror.org/04fgqxr51 Earth Trust'),
(68238, 'https://ror.org/01hj7gk80', 'en', 1, 'https://ror.org/01hj7gk80 One-Handed Musical Instrument'),
(68239, 'https://ror.org/05sjrzv10', 'en', 1, 'https://ror.org/05sjrzv10 National Deaf Children''s Society'),
(68240, 'https://ror.org/05370f467', 'en', 1, 'https://ror.org/05370f467 Northwest Heart Clinical Research'),
(68241, 'https://ror.org/018gn4336', 'en', 1, 'https://ror.org/018gn4336 Online Dating Association'),
(68242, 'https://ror.org/05bbr1905', 'de', 1, 'https://ror.org/05bbr1905 Nephrologisches Zentrum Emsland'),
(68243, 'https://ror.org/0137nq929', 'de', 1, 'https://ror.org/0137nq929 Nephrologisches Zentrum Villingen-Schwenningen'),
(68244, 'https://ror.org/03yy0w351', 'en', 1, 'https://ror.org/03yy0w351 Comunn Eachdraidh Nis'),
(68245, 'https://ror.org/013d7vw46', 'en', 1, 'https://ror.org/013d7vw46 Nottinghamshire Deaf Society'),
(68246, 'https://ror.org/04b8ktb84', 'en', 1, 'https://ror.org/04b8ktb84 Open Air Laboratories Network'),
(68247, 'https://ror.org/02kmv2v81', 'no_lang_code', 1, 'https://ror.org/02kmv2v81 Innovia Medical (United Kingdom)'),
(68248, 'https://ror.org/040dpbx94', 'no_lang_code', 1, 'https://ror.org/040dpbx94 Image Metrics (United Kingdom)'),
(68249, 'https://ror.org/02q189e70', 'no_lang_code', 1, 'https://ror.org/02q189e70 OptiBiotix (United Kingdom)'),
(68250, 'https://ror.org/01mcrzq55', 'en', 1, 'https://ror.org/01mcrzq55 Oral History Society'),
(68251, 'https://ror.org/03q4ccx33', 'en', 1, 'https://ror.org/03q4ccx33 Acropolis Museum Μουσείο Ακρόπολης'),
(68252, 'https://ror.org/04wb05896', 'en', 1, 'https://ror.org/04wb05896 New Gorbals Housing Association'),
(68253, 'https://ror.org/031h6k742', 'no_lang_code', 1, 'https://ror.org/031h6k742 Numedicus (United Kingdom)'),
(68254, 'https://ror.org/01xz13x40', 'en', 1, 'https://ror.org/01xz13x40 New Walk Museum and Art Gallery'),
(68255, 'https://ror.org/037aan677', 'en', 1, 'https://ror.org/037aan677 New Zealand eScience Infrastructure'),
(68256, 'https://ror.org/04azfmk22', 'en', 1, 'https://ror.org/04azfmk22 Oasis Charitable Trust'),
(68257, 'https://ror.org/04m2re361', 'en', 1, 'https://ror.org/04m2re361 Ormiston Bushfield Academy'),
(68258, 'https://ror.org/01v801w64', 'en', 1, 'https://ror.org/01v801w64 Observatories and Research Facilities for European Seismology'),
(68259, 'https://ror.org/01heyg366', 'fr', 1, 'https://ror.org/01heyg366 Musée d''Orsay'),
(68260, 'https://ror.org/02sxph104', 'no_lang_code', 1, 'https://ror.org/02sxph104 Orsus Medical (United Kingdom)'),
(68261, 'https://ror.org/03m2tmd95', 'en', 1, 'https://ror.org/03m2tmd95 National Institute for Pharmaceutical Technology & Education'),
(68262, 'https://ror.org/01adw2y76', 'pt', 1, 'https://ror.org/01adw2y76 Osso'),
(68263, 'https://ror.org/04w013s63', 'en', 1, 'https://ror.org/04w013s63 Centre National de Mémoire Historique National Center for Historical Memory'),
(68264, 'https://ror.org/03meb1477', 'en', 1, 'https://ror.org/03meb1477 Oswestry Town Museum'),
(68265, 'https://ror.org/04e8mam19', 'en', 1, 'https://ror.org/04e8mam19 Organic Centre Wales'),
(68266, 'https://ror.org/046dyet60', 'pt', 1, 'https://ror.org/046dyet60 Instituto Nacional de Psiquiatria do Desenvolvimento para Crianças e Adolescentes'),
(68267, 'https://ror.org/055twxx49', 'no_lang_code', 1, 'https://ror.org/055twxx49 SMC (United Kingdom)'),
(68268, 'https://ror.org/0311x9y29', 'no_lang_code', 1, 'https://ror.org/0311x9y29 National Milk Records (United Kingdom)'),
(68269, 'https://ror.org/00v9mrx93', 'en', 1, 'https://ror.org/00v9mrx93 Energy and Utility Skills'),
(68270, 'https://ror.org/03w2bez90', 'en', 1, 'https://ror.org/03w2bez90 National Mining Museum Scotland'),
(68271, 'https://ror.org/03wjhyh40', 'no_lang_code', 1, 'https://ror.org/03wjhyh40 Oxford Applied Research (United Kingdom)'),
(68272, 'https://ror.org/02ghr1636', 'en', 1, 'https://ror.org/02ghr1636 Museo Nacional de Arqueología de Bolivia National Museum of Archaeology'),
(68273, 'https://ror.org/059jmsh97', 'en', 1, 'https://ror.org/059jmsh97 Oxford Centre for Drug Delivery Devices'),
(68274, 'https://ror.org/01dp90d46', 'en', 1, 'https://ror.org/01dp90d46 Peggy Dodd Centre'),
(68275, 'https://ror.org/01r0enz48', 'no_lang_code', 1, 'https://ror.org/01r0enz48 Oxford MicroMedical (United Kingdom)'),
(68276, 'https://ror.org/033t2dn25', 'en', 1, 'https://ror.org/033t2dn25 Oxleas NHS Foundation Trust'),
(68277, 'https://ror.org/04316xy59', 'en', 1, 'https://ror.org/04316xy59 PNLP'),
(68278, 'https://ror.org/00zpw7s04', 'en', 1, 'https://ror.org/00zpw7s04 Pacific Arts Association'),
(68279, 'https://ror.org/05yngzb68', 'en', 1, 'https://ror.org/05yngzb68 Penn Associates'),
(68280, 'https://ror.org/00y4jkk21', 'en', 1, 'https://ror.org/00y4jkk21 Pensions and Lifetime Savings Association'),
(68281, 'https://ror.org/03n3d2997', 'en', 1, 'https://ror.org/03n3d2997 Paediatric Emergency Research in the United Kingdom & Ireland'),
(68282, 'https://ror.org/00twy1r91', 'en', 1, 'https://ror.org/00twy1r91 National Association of British and Irish Millers'),
(68283, 'https://ror.org/01tmm2z04', 'en', 1, 'https://ror.org/01tmm2z04 National Association of British Market Authorities'),
(68284, 'https://ror.org/02gkmwf16', 'en', 1, 'https://ror.org/02gkmwf16 Pentucket Medical'),
(68285, 'https://ror.org/03989be61', 'en', 1, 'https://ror.org/03989be61 National Association of Cider Makers'),
(68286, 'https://ror.org/02z1j6f46', 'en', 1, 'https://ror.org/02z1j6f46 National Association of Eco-Friendly Salons and Spas'),
(68287, 'https://ror.org/054rzgh78', 'en', 1, 'https://ror.org/054rzgh78 National Association of Funeral Directors'),
(68288, 'https://ror.org/01ts47345', 'cy', 1, 'https://ror.org/01ts47345 Comunn Eachdraidh na Pairc'),
(68289, 'https://ror.org/05v99m436', 'en', 1, 'https://ror.org/05v99m436 People''s History Museum'),
(68290, 'https://ror.org/002ba7a80', 'en', 1, 'https://ror.org/002ba7a80 Pakistan and Kashmir Welfare Association'),
(68291, 'https://ror.org/01e8xap89', 'no_lang_code', 1, 'https://ror.org/01e8xap89 Peptide Protein Research (United Kingdom)'),
(68292, 'https://ror.org/01mhrge46', 'en', 1, 'https://ror.org/01mhrge46 Professional Publishers Association'),
(68293, 'https://ror.org/005mzjw74', 'en', 1, 'https://ror.org/005mzjw74 Permian Research Foundation'),
(68294, 'https://ror.org/04hk30d26', 'no_lang_code', 1, 'https://ror.org/04hk30d26 Perpetuity Research (United Kingdom)'),
(68295, 'https://ror.org/02j9vtb62', 'en', 1, 'https://ror.org/02j9vtb62 Perth & Kinross Association of Voluntary Service'),
(68296, 'https://ror.org/023gd8d44', 'en', 1, 'https://ror.org/023gd8d44 Perth and Kinross Heritage Trust'),
(68297, 'https://ror.org/008tjs116', 'no_lang_code', 1, 'https://ror.org/008tjs116 Porvair (United Kingdom)'),
(68298, 'https://ror.org/05m2dxd88', 'en', 1, 'https://ror.org/05m2dxd88 Peruvian Association of People Affected by Tuberculosis'),
(68299, 'https://ror.org/0223xwb92', 'en', 1, 'https://ror.org/0223xwb92 The Pevensey Court House Museum and Gaol'),
(68300, 'https://ror.org/01abd8q97', 'en', 1, 'https://ror.org/01abd8q97 Potato Processors Association'),
(68301, 'https://ror.org/02g2dpz81', 'no_lang_code', 1, 'https://ror.org/02g2dpz81 Pottstown Medical Specialists (United States)'),
(68302, 'https://ror.org/00q8xtg52', 'en', 1, 'https://ror.org/00q8xtg52 Palmetto Research Center'),
(68303, 'https://ror.org/006pcm806', 'en', 1, 'https://ror.org/006pcm806 The Philippine Women Centre of BC'),
(68304, 'https://ror.org/00n0f0m43', 'no_lang_code', 1, 'https://ror.org/00n0f0m43 Praxis (United Kingdom)'),
(68305, 'https://ror.org/00wbxbw73', 'en', 1, 'https://ror.org/00wbxbw73 Pre School Learning Alliance'),
(68306, 'https://ror.org/00fymn945', 'en', 1, 'https://ror.org/00fymn945 Pan-African Association'),
(68307, 'https://ror.org/00y4w6s19', 'no_lang_code', 1, 'https://ror.org/00y4w6s19 Parabola (United Kingdom)'),
(68308, 'https://ror.org/051abd045', 'en', 1, 'https://ror.org/051abd045 The Pier Arts Centre'),
(68309, 'https://ror.org/022s4gs38', 'en', 1, 'https://ror.org/022s4gs38 Parliamentary Advisory Council for Transport Safety'),
(68310, 'https://ror.org/05sevfb19', 'en', 1, 'https://ror.org/05sevfb19 Museo Nazionale Preistorico Etnografico Luigi Pigorini Pigorini National Museum of Prehistory and Ethnography'),
(68311, 'https://ror.org/02pvnr704', 'en', 1, 'https://ror.org/02pvnr704 Parliamentary Office of Science and Technology'),
(68312, 'https://ror.org/04q267888', 'en', 1, 'https://ror.org/04q267888 Pitt Rivers Museum'),
(68313, 'https://ror.org/03dsf5v84', 'en', 1, 'https://ror.org/03dsf5v84 Partick Housing Association'),
(68314, 'https://ror.org/036dda554', 'en', 1, 'https://ror.org/036dda554 Particulate Solid Research (United States)'),
(68315, 'https://ror.org/04caxfb95', 'en', 1, 'https://ror.org/04caxfb95 The Princes Foundation'),
(68316, 'https://ror.org/03fdaw896', 'en', 1, 'https://ror.org/03fdaw896 Learning Spaces Collaboratory'),
(68317, 'https://ror.org/0255b1449', 'en', 1, 'https://ror.org/0255b1449 Planet Earth Institute'),
(68318, 'https://ror.org/05ct52702', 'en', 1, 'https://ror.org/05ct52702 Planned Environment Therapy Trust'),
(68319, 'https://ror.org/01n6r0d03', 'en', 1, 'https://ror.org/01n6r0d03 PPMA Group of Associations'),
(68320, 'https://ror.org/05bvtbx10', 'en', 1, 'https://ror.org/05bvtbx10 The Patients Association'),
(68321, 'https://ror.org/01agawv85', 'en', 1, 'https://ror.org/01agawv85 Plymouth City Museum and Art Gallery'),
(68322, 'https://ror.org/05dq77c70', 'no_lang_code', 1, 'https://ror.org/05dq77c70 Promote Medical (United Kingdom)'),
(68323, 'https://ror.org/05av8vw53', 'fr', 1, 'https://ror.org/05av8vw53 Centre International de Poésie Marseille'),
(68324, 'https://ror.org/03d3dj187', 'no_lang_code', 1, 'https://ror.org/03d3dj187 Protected Trust Services (United Kingdom)'),
(68325, 'https://ror.org/02jqwk197', 'en', 1, 'https://ror.org/02jqwk197 National Centre for Product Design and Development Research'),
(68326, 'https://ror.org/03s9q3c79', 'en', 1, 'https://ror.org/03s9q3c79 Poetry International Foundation'),
(68327, 'https://ror.org/05a885w72', 'en', 1, 'https://ror.org/05a885w72 Peace Museum'),
(68328, 'https://ror.org/03c87q579', 'en', 1, 'https://ror.org/03c87q579 The Point of Care Foundation'),
(68329, 'https://ror.org/01bdg0p84', 'pl', 1, 'https://ror.org/01bdg0p84 Wojewódzki Szpital Specjalistyczny nr 5 im. św. Barbary w Sosnowcu'),
(68330, 'https://ror.org/00aejbn34', 'en', 1, 'https://ror.org/00aejbn34 Polish Cultural Festival Association'),
(68331, 'https://ror.org/02d807218', 'no_lang_code', 1, 'https://ror.org/02d807218 Peak Associates (United Kingdom)'),
(68332, 'https://ror.org/014xb2303', 'pl', 1, 'https://ror.org/014xb2303 Wojewódzki Szpital Specjalistyczny nr 4 w Bytomiu'),
(68333, 'https://ror.org/01bsx7b24', 'es', 1, 'https://ror.org/01bsx7b24 Fundación ProYungas'),
(68334, 'https://ror.org/03kg5d423', 'en', 1, 'https://ror.org/03kg5d423 PRS Legislative Research'),
(68335, 'https://ror.org/04c7j8965', 'en', 1, 'https://ror.org/04c7j8965 Pontus Research'),
(68336, 'https://ror.org/02scqxw19', 'en', 1, 'https://ror.org/02scqxw19 Art UK'),
(68337, 'https://ror.org/00czf4z07', 'en', 1, 'https://ror.org/00czf4z07 Pearl Medical Centre'),
(68338, 'https://ror.org/057eq1q68', 'en', 1, 'https://ror.org/057eq1q68 Ramblers'),
(68339, 'https://ror.org/01nsyw318', 'en', 1, 'https://ror.org/01nsyw318 Portsmouth Museum'),
(68340, 'https://ror.org/03v78xj45', 'en', 1, 'https://ror.org/03v78xj45 Public Health Research Consortium'),
(68341, 'https://ror.org/05rm7p925', 'en', 1, 'https://ror.org/05rm7p925 Raphael Samuel History Centre'),
(68342, 'https://ror.org/03ssym444', 'en', 1, 'https://ror.org/03ssym444 Publishers Licensing Services'),
(68343, 'https://ror.org/00m6ag204', 'en', 1, 'https://ror.org/00m6ag204 Pulitzer Arts Foundation'),
(68344, 'https://ror.org/05f5m2x04', 'no_lang_code', 1, 'https://ror.org/05f5m2x04 RAPID Biomedical (Germany)'),
(68345, 'https://ror.org/047m78h93', 'en', 1, 'https://ror.org/047m78h93 Puppet Centre Trust'),
(68346, 'https://ror.org/05jev2650', 'no_lang_code', 1, 'https://ror.org/05jev2650 Research Network Services (Germany)'),
(68347, 'https://ror.org/01x4yvt28', 'pt', 1, 'https://ror.org/01x4yvt28 Fundação Raquel e Martin Sain'),
(68348, 'https://ror.org/057zt9577', 'en', 1, 'https://ror.org/057zt9577 Putnoe Medical Centre'),
(68349, 'https://ror.org/03d5t5j62', 'en', 1, 'https://ror.org/03d5t5j62 Rare Breeds Survival Trust'),
(68350, 'https://ror.org/031kpa286', 'en', 1, 'https://ror.org/031kpa286 Q & T Recherche Sherbrooke Q & T Research'),
(68351, 'https://ror.org/05kdgvd18', 'en', 1, 'https://ror.org/05kdgvd18 Raspberry Pi Foundation'),
(68352, 'https://ror.org/011x0jf73', 'no_lang_code', 1, 'https://ror.org/011x0jf73 Razumkov Centre Центр Разумкова'),
(68353, 'https://ror.org/05qjcpt44', 'no_lang_code', 1, 'https://ror.org/05qjcpt44 Quantemplate (United Kingdom)'),
(68354, 'https://ror.org/02wgwcd78', 'en', 1, 'https://ror.org/02wgwcd78 Ribble Rivers Trust'),
(68355, 'https://ror.org/054snha28', 'en', 1, 'https://ror.org/054snha28 Reading International Solidarity Centre'),
(68356, 'https://ror.org/03wpswf31', 'no_lang_code', 1, 'https://ror.org/03wpswf31 Richard Allitt Associates (United Kingdom)'),
(68357, 'https://ror.org/00akavp61', 'en', 1, 'https://ror.org/00akavp61 Reading Museum'),
(68358, 'https://ror.org/05bhhjy59', 'en', 1, 'https://ror.org/05bhhjy59 Queen Elizabeth’s Academy'),
(68359, 'https://ror.org/00gm4dn95', 'no_lang_code', 1, 'https://ror.org/00gm4dn95 Richard Carter and Associates (United Kingdom)'),
(68360, 'https://ror.org/00635kd98', 'en', 1, 'https://ror.org/00635kd98 Queen Elizabeth Hospital Birmingham Charity'),
(68361, 'https://ror.org/0596srd08', 'en', 1, 'https://ror.org/0596srd08 Powell Cotton Museum'),
(68362, 'https://ror.org/02m4de687', 'no_lang_code', 1, 'https://ror.org/02m4de687 Reed Medical (United Kingdom)'),
(68363, 'https://ror.org/04y1w8a25', 'no_lang_code', 1, 'https://ror.org/04y1w8a25 Marshall Motor Holdings (United Kingdom)'),
(68364, 'https://ror.org/05j3nm367', 'en', 1, 'https://ror.org/05j3nm367 The Queen''s Foundation'),
(68365, 'https://ror.org/01fn7y155', 'no_lang_code', 1, 'https://ror.org/01fn7y155 Pharmaron (United Kingdom)'),
(68366, 'https://ror.org/02a2anr16', 'en', 1, 'https://ror.org/02a2anr16 Regional Education Centre for the area of primary care'),
(68367, 'https://ror.org/02n5j7g52', 'en', 1, 'https://ror.org/02n5j7g52 R&G Associates'),
(68368, 'https://ror.org/04zajmz25', 'en', 1, 'https://ror.org/04zajmz25 Regional Inter-agency Task Team on Children and AIDS'),
(68369, 'https://ror.org/00wjvk964', 'no_lang_code', 1, 'https://ror.org/00wjvk964 RAB Microfluidics (United Kingdom)'),
(68370, 'https://ror.org/012hyjz28', 'en', 1, 'https://ror.org/012hyjz28 Riverside Community Health Project'),
(68371, 'https://ror.org/055h9ry14', 'en', 1, 'https://ror.org/055h9ry14 RAC Foundation'),
(68372, 'https://ror.org/02rr7cf98', 'no_lang_code', 1, 'https://ror.org/02rr7cf98 Registry Trust (United Kingdom)'),
(68373, 'https://ror.org/05y0cez87', 'en', 1, 'https://ror.org/05y0cez87 Riverside'),
(68374, 'https://ror.org/02d9p5295', 'en', 1, 'https://ror.org/02d9p5295 Rail Research UK Association'),
(68375, 'https://ror.org/05m1f6211', 'no_lang_code', 1, 'https://ror.org/05m1f6211 3DReid (United Kingdom)'),
(68376, 'https://ror.org/045g91y28', 'no_lang_code', 1, 'https://ror.org/045g91y28 Riverside Medical Packaging (United Kingdom)'),
(68377, 'https://ror.org/01m06zm04', 'en', 1, 'https://ror.org/01m06zm04 Quakers'),
(68378, 'https://ror.org/02c39fv84', 'en', 1, 'https://ror.org/02c39fv84 Road Haulage Association'),
(68379, 'https://ror.org/054zq1h88', 'en', 1, 'https://ror.org/054zq1h88 Railway Industry Association'),
(68380, 'https://ror.org/040vbzm60', 'en', 1, 'https://ror.org/040vbzm60 Quakers'),
(68381, 'https://ror.org/048q5k041', 'en', 1, 'https://ror.org/048q5k041 Renewable Energy Association'),
(68382, 'https://ror.org/027y5z534', 'en', 1, 'https://ror.org/027y5z534 Roja Muthiah Research Library'),
(68383, 'https://ror.org/04q08td48', 'en', 1, 'https://ror.org/04q08td48 Republic Klaipeda Hospital Respublikinė Klaipėdos ligoninė'),
(68384, 'https://ror.org/00p65td76', 'en', 1, 'https://ror.org/00p65td76 Royal Pigeon Racing Association'),
(68385, 'https://ror.org/04xjc6b56', 'en', 1, 'https://ror.org/04xjc6b56 Rescobie Loch Development Association'),
(68386, 'https://ror.org/02x30pp94', 'en', 1, 'https://ror.org/02x30pp94 Royal Society for the Prevention of Accidents'),
(68387, 'https://ror.org/035q3vc94', 'en', 1, 'https://ror.org/035q3vc94 Royal Television Society'),
(68388, 'https://ror.org/01kegck15', 'en', 1, 'https://ror.org/01kegck15 Rotherham United Community Sports Trust'),
(68389, 'https://ror.org/05svg6v21', 'en', 1, 'https://ror.org/05svg6v21 Royal Yachting Association'),
(68390, 'https://ror.org/02e5tmt29', 'en', 1, 'https://ror.org/02e5tmt29 Rural Development Foundation of Pakistan'),
(68391, 'https://ror.org/05h0rfr48', 'en', 1, 'https://ror.org/05h0rfr48 Rural Self-Reliance Development Centre'),
(68392, 'https://ror.org/00g78ej16', 'en', 1, 'https://ror.org/00g78ej16 Research Institute for Disabled Consumers'),
(68393, 'https://ror.org/00bw9fz70', 'en', 1, 'https://ror.org/00bw9fz70 The Royal Anglian Regiment Museum'),
(68394, 'https://ror.org/055zpaa68', 'pt', 1, 'https://ror.org/055zpaa68 Centro Panamericano de Fiebre Aftosa'),
(68395, 'https://ror.org/01g26n816', 'en', 1, 'https://ror.org/01g26n816 Saffron Walden Museum'),
(68396, 'https://ror.org/01ynbhc61', 'no_lang_code', 1, 'https://ror.org/01ynbhc61 SageTech Medical Equipment (United Kingdom)'),
(68397, 'https://ror.org/03qc0jc41', 'no_lang_code', 1, 'https://ror.org/03qc0jc41 Saratoga Cardiology Associates (United States)'),
(68398, 'https://ror.org/022wfhc10', 'en', 1, 'https://ror.org/022wfhc10 Royal Institution of Naval Architects'),
(68399, 'https://ror.org/00varvj20', 'no_lang_code', 1, 'https://ror.org/00varvj20 SAIC Motor (United Kingdom)'),
(68400, 'https://ror.org/01w90vg65', 'no_lang_code', 1, 'https://ror.org/01w90vg65 Sarissa Biomedical (United Kingdom)'),
(68401, 'https://ror.org/04n5gt552', 'en', 1, 'https://ror.org/04n5gt552 Supra-Regional Assay Service'),
(68402, 'https://ror.org/03x5d0y93', 'en', 1, 'https://ror.org/03x5d0y93 Royal Liverpool Philharmonic'),
(68403, 'https://ror.org/02g451n39', 'en', 1, 'https://ror.org/02g451n39 Musée royal de Mariemont Royal Museum of Mariemont'),
(68404, 'https://ror.org/016055452', 'en', 1, 'https://ror.org/016055452 Scottish Association of the Teachers of History'),
(68405, 'https://ror.org/05nk7f239', 'en', 1, 'https://ror.org/05nk7f239 Save the Rhino Trust'),
(68406, 'https://ror.org/04wsd7x43', 'en', 1, 'https://ror.org/04wsd7x43 The Scottish Forestry Trust'),
(68407, 'https://ror.org/00htbzg76', 'en', 1, 'https://ror.org/00htbzg76 Saxon Memorial Foundation Stiftung Sächsische Gedenkstätten zur Erinnerung an die Opfer politischer Gewaltherrschaft'),
(68408, 'https://ror.org/03w8kgm26', 'en', 1, 'https://ror.org/03w8kgm26 SB Science Management'),
(68409, 'https://ror.org/04vsshx67', 'en', 1, 'https://ror.org/04vsshx67 Scottish Graduate School for Arts & Humanities'),
(68410, 'https://ror.org/00gsd6w43', 'en', 1, 'https://ror.org/00gsd6w43 Scarborough Archaeological and Historical Society'),
(68411, 'https://ror.org/048swbb68', 'en', 1, 'https://ror.org/048swbb68 Scottish Jewish Archives Centre'),
(68412, 'https://ror.org/02s01qb70', 'en', 1, 'https://ror.org/02s01qb70 Scarborough Museums Trust'),
(68413, 'https://ror.org/042hdh758', 'en', 1, 'https://ror.org/042hdh758 School Health Research Network'),
(68414, 'https://ror.org/00186j916', 'en', 1, 'https://ror.org/00186j916 Scottish Music Industry Association'),
(68415, 'https://ror.org/02pvd8a14', 'en', 1, 'https://ror.org/02pvd8a14 The Schumacher Institute'),
(68416, 'https://ror.org/05mp3ea66', 'en', 1, 'https://ror.org/05mp3ea66 Sanctuary Housing'),
(68417, 'https://ror.org/01t263c97', 'en', 1, 'https://ror.org/01t263c97 Scottish Public Pensions Agency'),
(68418, 'https://ror.org/041q6vc74', 'en', 1, 'https://ror.org/041q6vc74 SANE Mental Health Charity'),
(68419, 'https://ror.org/02cby3y03', 'no_lang_code', 1, 'https://ror.org/02cby3y03 ScrewFast Foundations (United Kingdom)'),
(68420, 'https://ror.org/028j88e93', 'en', 1, 'https://ror.org/028j88e93 Shaw Trust'),
(68421, 'https://ror.org/00t3h6w64', 'en', 1, 'https://ror.org/00t3h6w64 Science Media Centre'),
(68422, 'https://ror.org/056hg4387', 'en', 1, 'https://ror.org/056hg4387 Shawlands Academy'),
(68423, 'https://ror.org/007ppd810', 'no_lang_code', 1, 'https://ror.org/007ppd810 Science Navigation Group (United Kingdom)'),
(68424, 'https://ror.org/02nr9m172', 'en', 1, 'https://ror.org/02nr9m172 Sheffield & Rotherham Wildlife Trust'),
(68425, 'https://ror.org/03bfpw005', 'en', 1, 'https://ror.org/03bfpw005 Sheffield Beekeepers'' Association'),
(68426, 'https://ror.org/03mvw5b45', 'en', 1, 'https://ror.org/03mvw5b45 Sheffield Industrial Museums Trust'),
(68427, 'https://ror.org/00j7mmn70', 'en', 1, 'https://ror.org/00j7mmn70 Science on Stage Europe'),
(68428, 'https://ror.org/031bpj056', 'no_lang_code', 1, 'https://ror.org/031bpj056 Sea Level Research (United Kingdom)'),
(68429, 'https://ror.org/04j8yhy50', 'en', 1, 'https://ror.org/04j8yhy50 Science Oxford'),
(68430, 'https://ror.org/00j5fn448', 'en', 1, 'https://ror.org/00j5fn448 Loden Foundation'),
(68431, 'https://ror.org/03f3pxe20', 'en', 1, 'https://ror.org/03f3pxe20 Shenyang Fifth People Hospital 沈阳市第五人民医院'),
(68432, 'https://ror.org/01fm8t129', 'en', 1, 'https://ror.org/01fm8t129 Scientific Studies Association İlmi Etüdler Derneğ'),
(68433, 'https://ror.org/02vp84g54', 'no_lang_code', 1, 'https://ror.org/02vp84g54 Sebastian Conran Associates (United Kingdom)'),
(68434, 'https://ror.org/00sv6gs75', 'en', 1, 'https://ror.org/00sv6gs75 Shenyang Sujiatun District Central Hospital 沈阳市苏家屯区中心医院'),
(68435, 'https://ror.org/02c237f60', 'no_lang_code', 1, 'https://ror.org/02c237f60 Scotia Gas Networks (United Kingdom)'),
(68436, 'https://ror.org/018df9d45', 'no_lang_code', 1, 'https://ror.org/018df9d45 Zhongzhu Healthcare (China)'),
(68437, 'https://ror.org/023fnpq36', 'en', 1, 'https://ror.org/023fnpq36 Gweld Gwyddoniaeth See Science'),
(68438, 'https://ror.org/01nwj0553', 'en', 1, 'https://ror.org/01nwj0553 Scottish Association of Meat Wholesalers'),
(68439, 'https://ror.org/00e633366', 'en', 1, 'https://ror.org/00e633366 Scottish Cancer Foundation'),
(68440, 'https://ror.org/02gn97s12', 'en', 1, 'https://ror.org/02gn97s12 Scottish Civic Trust'),
(68441, 'https://ror.org/05x7p8987', 'en', 1, 'https://ror.org/05x7p8987 Scottish Collaboration for Public Health Research and Policy'),
(68442, 'https://ror.org/03m91y886', 'no_lang_code', 1, 'https://ror.org/03m91y886 Shirkat Gah'),
(68443, 'https://ror.org/05kykkq24', 'no_lang_code', 1, 'https://ror.org/05kykkq24 Sensatech Designs (United Kingdom)'),
(68444, 'https://ror.org/00k64aw37', 'en', 1, 'https://ror.org/00k64aw37 Scottish Family Business Association'),
(68445, 'https://ror.org/04srgzx66', 'en', 1, 'https://ror.org/04srgzx66 Scottish Federation of Housing Associations'),
(68446, 'https://ror.org/0021w4337', 'en', 1, 'https://ror.org/0021w4337 Scottish Fisheries Museum'),
(68447, 'https://ror.org/03wkr8v72', 'en', 1, 'https://ror.org/03wkr8v72 Serendib Foundation for Music and Performing Arts'),
(68448, 'https://ror.org/04q8qbp45', 'en', 1, 'https://ror.org/04q8qbp45 Shoreditch Trust'),
(68449, 'https://ror.org/02wq0b665', 'no_lang_code', 1, 'https://ror.org/02wq0b665 Short and Associates (United States)'),
(68450, 'https://ror.org/00kgx1e52', 'en', 1, 'https://ror.org/00kgx1e52 Caledonia Housing Association'),
(68451, 'https://ror.org/00tasa398', 'en', 1, 'https://ror.org/00tasa398 Society for Longitudinal and Lifecourse Studies'),
(68452, 'https://ror.org/0123gbz78', 'en', 1, 'https://ror.org/0123gbz78 CarbonCo-op'),
(68453, 'https://ror.org/003f4e996', 'en', 1, 'https://ror.org/003f4e996 Sir John Soane''s Museum'),
(68454, 'https://ror.org/00w3sh282', 'en', 1, 'https://ror.org/00w3sh282 Six Nations Indian Museum'),
(68455, 'https://ror.org/04a4fb261', 'en', 1, 'https://ror.org/04a4fb261 Society of Editors'),
(68456, 'https://ror.org/05f8ht569', 'en', 1, 'https://ror.org/05f8ht569 Institute of Bio-Sensing Technology'),
(68457, 'https://ror.org/03cz45f13', 'no', 1, 'https://ror.org/03cz45f13 Skedsmo Medisinske Senter'),
(68458, 'https://ror.org/014jakh31', 'en', 1, 'https://ror.org/014jakh31 Society of Energy Engineers and Managers'),
(68459, 'https://ror.org/04fyt3464', 'en', 1, 'https://ror.org/04fyt3464 Shaanxi History Museum 陕西历史博物馆'),
(68460, 'https://ror.org/008m0sk32', 'no_lang_code', 1, 'https://ror.org/008m0sk32 Shandong Museum 山东博物馆'),
(68461, 'https://ror.org/017s7a786', 'en', 1, 'https://ror.org/017s7a786 Renaissance Life Therapies'),
(68462, 'https://ror.org/057ydw805', 'no_lang_code', 1, 'https://ror.org/057ydw805 Shanghai Dramatic Arts Centre (China) 上海话剧艺术中心'),
(68463, 'https://ror.org/03h3p2g48', 'en', 1, 'https://ror.org/03h3p2g48 SolarAid'),
(68464, 'https://ror.org/0316mxt43', 'no_lang_code', 1, 'https://ror.org/0316mxt43 Shanghai Museum 上海博物馆'),
(68465, 'https://ror.org/00rve9x39', 'en', 1, 'https://ror.org/00rve9x39 Shannon Applied Biotechnology Centre'),
(68466, 'https://ror.org/03stza714', 'no_lang_code', 1, 'https://ror.org/03stza714 Shanxi Museum 山西博物院'),
(68467, 'https://ror.org/02xqbzx59', 'no_lang_code', 1, 'https://ror.org/02xqbzx59 SLE (United Kingdom)'),
(68468, 'https://ror.org/04sg6fy71', 'en', 1, 'https://ror.org/04sg6fy71 Small Woods Association'),
(68469, 'https://ror.org/046c8ca27', 'en', 1, 'https://ror.org/046c8ca27 Nepal Participatory Action Network'),
(68470, 'https://ror.org/020zz6y73', 'en', 1, 'https://ror.org/020zz6y73 Smart Water Networks Forum'),
(68471, 'https://ror.org/00r071h34', 'en', 1, 'https://ror.org/00r071h34 Smith-Magenis Syndrome Foundation'),
(68472, 'https://ror.org/057bhaf38', 'en', 1, 'https://ror.org/057bhaf38 Smuts House Museum'),
(68473, 'https://ror.org/0106nad04', 'en', 1, 'https://ror.org/0106nad04 Snack, Nut and Crisp Manufacturers Association'),
(68474, 'https://ror.org/04h75qr14', 'en', 1, 'https://ror.org/04h75qr14 Sobhraj Maternity Hospital'),
(68475, 'https://ror.org/05pp5m809', 'en', 1, 'https://ror.org/05pp5m809 Southern African Social Policy Research Institute'),
(68476, 'https://ror.org/02wwq2595', 'en', 1, 'https://ror.org/02wwq2595 Social Research Association'),
(68477, 'https://ror.org/03n3xvs04', 'en', 1, 'https://ror.org/03n3xvs04 Solar Fuels Institute'),
(68478, 'https://ror.org/00e8byk21', 'en', 1, 'https://ror.org/00e8byk21 Soldiers of Oxfordshire Museum'),
(68479, 'https://ror.org/00shbds80', 'en', 1, 'https://ror.org/00shbds80 Dartington Service Design Lab'),
(68480, 'https://ror.org/02ykxyy09', 'en', 1, 'https://ror.org/02ykxyy09 Southwest Florida Research'),
(68481, 'https://ror.org/00xr7fv60', 'en', 1, 'https://ror.org/00xr7fv60 Social Science Baha'),
(68482, 'https://ror.org/01wbay932', 'en', 1, 'https://ror.org/01wbay932 SOVA Center for Information and Analysis Информационно-аналитического центра Сова'),
(68483, 'https://ror.org/01svaca56', 'no_lang_code', 1, 'https://ror.org/01svaca56 Songklanagarind Hospital โรงพยาบาลสงขลานครินทร์'),
(68484, 'https://ror.org/00fvsrz77', 'en', 1, 'https://ror.org/00fvsrz77 Society for Clinical Trials'),
(68485, 'https://ror.org/03283qn83', 'en', 1, 'https://ror.org/03283qn83 Society for Community Health Awareness Research and Action'),
(68486, 'https://ror.org/00cadqf40', 'en', 1, 'https://ror.org/00cadqf40 The Sophie Lancaster Foundation'),
(68487, 'https://ror.org/0276h0a46', 'en', 1, 'https://ror.org/0276h0a46 St Monica Trust'),
(68488, 'https://ror.org/05kz04g58', 'en', 1, 'https://ror.org/05kz04g58 Spacelink Learning Foundation'),
(68489, 'https://ror.org/04nhyzz08', 'en', 1, 'https://ror.org/04nhyzz08 St. Thomas Medical Group'),
(68490, 'https://ror.org/02w3bxb19', 'es', 1, 'https://ror.org/02w3bxb19 Asociación Herpetológica Española'),
(68491, 'https://ror.org/000kw4c48', 'en', 1, 'https://ror.org/000kw4c48 South Cheshire Astronomical Society'),
(68492, 'https://ror.org/04sy68g86', 'en', 1, 'https://ror.org/04sy68g86 South Cumbria Rivers Trust'),
(68493, 'https://ror.org/04p3gx041', 'no_lang_code', 1, 'https://ror.org/04p3gx041 Specialist Vehicle Research and Development (United Kingdom)'),
(68494, 'https://ror.org/05r9kh419', 'en', 1, 'https://ror.org/05r9kh419 South Devon Prime Beef'),
(68495, 'https://ror.org/04zpgzj77', 'en', 1, 'https://ror.org/04zpgzj77 South East Health Technologies Alliance'),
(68496, 'https://ror.org/02tkzjy36', 'no_lang_code', 1, 'https://ror.org/02tkzjy36 Sphere Medical (United Kingdom)'),
(68497, 'https://ror.org/021xnk312', 'sq', 1, 'https://ror.org/021xnk312 Stacion'),
(68498, 'https://ror.org/02q27pq78', 'en', 1, 'https://ror.org/02q27pq78 South East Rivers Trust'),
(68499, 'https://ror.org/00e7yhp68', 'no_lang_code', 1, 'https://ror.org/00e7yhp68 SR Research (Canada)'),
(68500, 'https://ror.org/01vf6n447', 'en', 1, 'https://ror.org/01vf6n447 Midlands Partnership NHS Foundation Trust'),
(68501, 'https://ror.org/01k469x92', 'en', 1, 'https://ror.org/01k469x92 St Albans and Hertfordshire Architectural and Archaeological Society'),
(68502, 'https://ror.org/04w11qx28', 'en', 1, 'https://ror.org/04w11qx28 South Essex Rape and Incest Crisis Centre'),
(68503, 'https://ror.org/05a133z08', 'en', 1, 'https://ror.org/05a133z08 St Albans Museums'),
(68504, 'https://ror.org/01cjyw781', 'en', 1, 'https://ror.org/01cjyw781 St Ethelburga’s Centre for Reconciliation and Peace'),
(68505, 'https://ror.org/000c2p832', 'en', 1, 'https://ror.org/000c2p832 South London Healthcare NHS Trust'),
(68506, 'https://ror.org/05bpzf670', 'en', 1, 'https://ror.org/05bpzf670 Dutch Institute for Alcohol Policy Nederlands Instituut voor Alcoholbeleid'),
(68507, 'https://ror.org/05c6afn23', 'en', 1, 'https://ror.org/05c6afn23 Start'),
(68508, 'https://ror.org/02g6z1s94', 'en', 1, 'https://ror.org/02g6z1s94 St Johns Theatre'),
(68509, 'https://ror.org/04rcfnb30', 'en', 1, 'https://ror.org/04rcfnb30 South West Heritage Trust'),
(68510, 'https://ror.org/03wwnte34', 'en', 1, 'https://ror.org/03wwnte34 South West Vineyards Association'),
(68511, 'https://ror.org/05qgvw694', 'en', 1, 'https://ror.org/05qgvw694 South Western Housing Society'),
(68512, 'https://ror.org/04h0bdf39', 'en', 1, 'https://ror.org/04h0bdf39 Sisters of Mercy of the Americas'),
(68513, 'https://ror.org/006a5r035', 'nl', 1, 'https://ror.org/006a5r035 Stedelijk Museum Amsterdam'),
(68514, 'https://ror.org/00t3e3c13', 'en', 1, 'https://ror.org/00t3e3c13 Steel Charitable Trust'),
(68515, 'https://ror.org/045bf0r64', 'en', 1, 'https://ror.org/045bf0r64 Suffolk Horse Society'),
(68516, 'https://ror.org/01b385s60', 'en', 1, 'https://ror.org/01b385s60 Suffolk Sheep Society'),
(68517, 'https://ror.org/00dfkj427', 'no_lang_code', 1, 'https://ror.org/00dfkj427 Summit Associates (United States)'),
(68518, 'https://ror.org/03saz4k78', 'no_lang_code', 1, 'https://ror.org/03saz4k78 TeleMedic Systems (United Kingdom)'),
(68519, 'https://ror.org/003dca267', 'en', 1, 'https://ror.org/003dca267 Stevenage Bioscience Catalyst'),
(68520, 'https://ror.org/0110z5t35', 'no_lang_code', 1, 'https://ror.org/0110z5t35 Telemetry Associates (United Kingdom)'),
(68521, 'https://ror.org/02byrdn19', 'en', 1, 'https://ror.org/02byrdn19 Surfers Against Sewage'),
(68522, 'https://ror.org/014e1k160', 'no_lang_code', 1, 'https://ror.org/014e1k160 Stockbridge Technology Centre (United Kingdom)'),
(68523, 'https://ror.org/058zx7d32', 'no_lang_code', 1, 'https://ror.org/058zx7d32 TESco Associates (United States)'),
(68524, 'https://ror.org/019yha079', 'en', 1, 'https://ror.org/019yha079 Sustainable Food Trust'),
(68525, 'https://ror.org/04fyc2a82', 'en', 1, 'https://ror.org/04fyc2a82 Sustainable Inshore Fisheries Trust'),
(68526, 'https://ror.org/01ffkb584', 'en', 1, 'https://ror.org/01ffkb584 Sustainable Livelihoods Foundation'),
(68527, 'https://ror.org/04x62fc64', 'no_lang_code', 1, 'https://ror.org/04x62fc64 Textile Recycling Association'),
(68528, 'https://ror.org/01f0ym620', 'en', 1, 'https://ror.org/01f0ym620 Teylers Museum'),
(68529, 'https://ror.org/02w2g9n75', 'en', 1, 'https://ror.org/02w2g9n75 Stonebridge Trust'),
(68530, 'https://ror.org/03c9tb453', 'en', 1, 'https://ror.org/03c9tb453 Swadhinata Trust'),
(68531, 'https://ror.org/030pt9011', 'en', 1, 'https://ror.org/030pt9011 Swansea Museum'),
(68532, 'https://ror.org/011hj0222', 'en', 1, 'https://ror.org/011hj0222 10:10 Climate Action'),
(68533, 'https://ror.org/04qzn0m54', 'en', 1, 'https://ror.org/04qzn0m54 The Academy at Shotton Hall'),
(68534, 'https://ror.org/02eazqp86', 'en', 1, 'https://ror.org/02eazqp86 Stornoway Historical Society'),
(68535, 'https://ror.org/041mvre90', 'en', 1, 'https://ror.org/041mvre90 The African Arts Trust'),
(68536, 'https://ror.org/02mpx2r50', 'en', 1, 'https://ror.org/02mpx2r50 The Alexander Centre'),
(68537, 'https://ror.org/048mkm910', 'en', 1, 'https://ror.org/048mkm910 Nemocnice Strakonice Strakonice Hospital'),
(68538, 'https://ror.org/0270vwd61', 'en', 1, 'https://ror.org/0270vwd61 American Museum and Gardens'),
(68539, 'https://ror.org/04a1y6x02', 'en', 1, 'https://ror.org/04a1y6x02 Strategic Society Centre'),
(68540, 'https://ror.org/029b7sx25', 'en', 1, 'https://ror.org/029b7sx25 Sydney Jewish Museum'),
(68541, 'https://ror.org/05tq87k41', 'en', 1, 'https://ror.org/05tq87k41 Sydney Living Museums'),
(68542, 'https://ror.org/047eefb18', 'en', 1, 'https://ror.org/047eefb18 Stratified Medicine Scotland'),
(68543, 'https://ror.org/04f187557', 'en', 1, 'https://ror.org/04f187557 Sylva Foundation'),
(68544, 'https://ror.org/03ky9yn97', 'en', 1, 'https://ror.org/03ky9yn97 Structural Timber Association'),
(68545, 'https://ror.org/02r4q7v71', 'en', 1, 'https://ror.org/02r4q7v71 Association of Child Psychotherapists'),
(68546, 'https://ror.org/022qrts95', 'no_lang_code', 1, 'https://ror.org/022qrts95 Tecomet (United Kingdom)'),
(68547, 'https://ror.org/00ejkk087', 'en', 1, 'https://ror.org/00ejkk087 Baroness Warsi Foundation'),
(68548, 'https://ror.org/00sy58v94', 'en', 1, 'https://ror.org/00sy58v94 Chung-Hwa Institute of Buddhist Studies 中華佛學研究所'),
(68549, 'https://ror.org/02qnz4080', 'en', 1, 'https://ror.org/02qnz4080 The Churches Conservation Trust'),
(68550, 'https://ror.org/04mfvsa73', 'en', 1, 'https://ror.org/04mfvsa73 The Cinema Museum'),
(68551, 'https://ror.org/05frbvt97', 'en', 1, 'https://ror.org/05frbvt97 The Bay Trust'),
(68552, 'https://ror.org/03y1x0461', 'en', 1, 'https://ror.org/03y1x0461 Citizens UK'),
(68553, 'https://ror.org/043hn3j55', 'en', 1, 'https://ror.org/043hn3j55 Tamba'),
(68554, 'https://ror.org/04gnvyj62', 'en', 1, 'https://ror.org/04gnvyj62 The BEARR Trust'),
(68555, 'https://ror.org/01zg6vj90', 'en', 1, 'https://ror.org/01zg6vj90 Tanzania Meteorological Agency'),
(68556, 'https://ror.org/00ywywm58', 'en', 1, 'https://ror.org/00ywywm58 Bevan Foundation'),
(68557, 'https://ror.org/03t6v9748', 'en', 1, 'https://ror.org/03t6v9748 The Communication Trust'),
(68558, 'https://ror.org/04fx4cs28', 'en', 1, 'https://ror.org/04fx4cs28 The Tavistock and Portman NHS Foundation Trust'),
(68559, 'https://ror.org/022kcpx61', 'en', 1, 'https://ror.org/022kcpx61 The Bewdley School'),
(68560, 'https://ror.org/02n6c2636', 'en', 1, 'https://ror.org/02n6c2636 The Constitution Society'),
(68561, 'https://ror.org/03666dk92', 'en', 1, 'https://ror.org/03666dk92 The Bingo Association'),
(68562, 'https://ror.org/05ahdap62', 'no_lang_code', 1, 'https://ror.org/05ahdap62 Taylor McKenzie (United Kingdom)'),
(68563, 'https://ror.org/02a7s3141', 'en', 1, 'https://ror.org/02a7s3141 Contemporary Art Society'),
(68564, 'https://ror.org/036vvw903', 'en', 1, 'https://ror.org/036vvw903 Blackwood'),
(68565, 'https://ror.org/00k8d8f82', 'en', 1, 'https://ror.org/00k8d8f82 The Bowes Museum'),
(68566, 'https://ror.org/034dfmd43', 'en', 1, 'https://ror.org/034dfmd43 The Data Lab'),
(68567, 'https://ror.org/04hsv5386', 'en', 1, 'https://ror.org/04hsv5386 British Association of Picture Libraries and Agencies'),
(68568, 'https://ror.org/05gsn4d81', 'en', 1, 'https://ror.org/05gsn4d81 Delius Trust'),
(68569, 'https://ror.org/04f0gqc60', 'en', 1, 'https://ror.org/04f0gqc60 The Democratic Society'),
(68570, 'https://ror.org/010npae67', 'en', 1, 'https://ror.org/010npae67 The Honourable Society of Lincoln''s Inn'),
(68571, 'https://ror.org/03rz1c626', 'en', 1, 'https://ror.org/03rz1c626 The Carbon Monoxide and Gas Safety Society'),
(68572, 'https://ror.org/01yrdw043', 'en', 1, 'https://ror.org/01yrdw043 Huntington''s Disease Association'),
(68573, 'https://ror.org/010jran45', 'en', 1, 'https://ror.org/010jran45 Carers Trust'),
(68574, 'https://ror.org/018jnkm11', 'no_lang_code', 1, 'https://ror.org/018jnkm11 Blacktrace (United States)'),
(68575, 'https://ror.org/01aptsm66', 'en', 1, 'https://ror.org/01aptsm66 Institute for In Vitro Sciences'),
(68576, 'https://ror.org/01dg1k785', 'no_lang_code', 1, 'https://ror.org/01dg1k785 Alliance for Multispecialty Research (United States)'),
(68577, 'https://ror.org/0094wp003', 'en', 1, 'https://ror.org/0094wp003 Ecological Sequestration Trust'),
(68578, 'https://ror.org/00scy5291', 'en', 1, 'https://ror.org/00scy5291 Centre for Contemporary Art and the Natural World'),
(68579, 'https://ror.org/037hv9r60', 'en', 1, 'https://ror.org/037hv9r60 Efficient Energy Centre'),
(68580, 'https://ror.org/04003b617', 'en', 1, 'https://ror.org/04003b617 Institute for Social Transformation'),
(68581, 'https://ror.org/02wtkky92', 'en', 1, 'https://ror.org/02wtkky92 The Emergency Planning Society'),
(68582, 'https://ror.org/0328qyd75', 'en', 1, 'https://ror.org/0328qyd75 The Equality Trust'),
(68583, 'https://ror.org/03snzra40', 'en', 1, 'https://ror.org/03snzra40 Institute of Information Security Professionals'),
(68584, 'https://ror.org/05d0gds53', 'en', 1, 'https://ror.org/05d0gds53 The Financial Inclusion Centre'),
(68585, 'https://ror.org/03g9ft432', 'en', 1, 'https://ror.org/03g9ft432 The Hearth'),
(68586, 'https://ror.org/03wb5j481', 'en', 1, 'https://ror.org/03wb5j481 The Facilities Society'),
(68587, 'https://ror.org/013pta043', 'en', 1, 'https://ror.org/013pta043 Noise Abatement Society'),
(68588, 'https://ror.org/04a5mbz91', 'en', 1, 'https://ror.org/04a5mbz91 Investor Relations Society'),
(68589, 'https://ror.org/031ftjj55', 'en', 1, 'https://ror.org/031ftjj55 Northumberland and Durham Family History Society'),
(68590, 'https://ror.org/04ke81j60', 'no_lang_code', 1, 'https://ror.org/04ke81j60 Katiba Institute'),
(68591, 'https://ror.org/00n3bma30', 'en', 1, 'https://ror.org/00n3bma30 The Operational Research Society'),
(68592, 'https://ror.org/03m9tj704', 'en', 1, 'https://ror.org/03m9tj704 The Kauri Museum'),
(68593, 'https://ror.org/02c2c0k38', 'en', 1, 'https://ror.org/02c2c0k38 The Parks Agency'),
(68594, 'https://ror.org/02h26j898', 'en', 1, 'https://ror.org/02h26j898 Kings Foundation'),
(68595, 'https://ror.org/02fqfwd96', 'en', 1, 'https://ror.org/02fqfwd96 FreeBSD Foundation'),
(68596, 'https://ror.org/01jgm3705', 'en', 1, 'https://ror.org/01jgm3705 Autism at Kingwood'),
(68597, 'https://ror.org/016skwe97', 'en', 1, 'https://ror.org/016skwe97 The Gate'),
(68598, 'https://ror.org/01ks5xj83', 'en', 1, 'https://ror.org/01ks5xj83 The Parks Trust'),
(68599, 'https://ror.org/051816580', 'en', 1, 'https://ror.org/051816580 Hackney Learning Trust'),
(68600, 'https://ror.org/044wa0621', 'en', 1, 'https://ror.org/044wa0621 Perry Foundation'),
(68601, 'https://ror.org/01crhk777', 'en', 1, 'https://ror.org/01crhk777 LGBT Foundation'),
(68602, 'https://ror.org/02861vh07', 'en', 1, 'https://ror.org/02861vh07 The Poetry Society'),
(68603, 'https://ror.org/037q25y47', 'en', 1, 'https://ror.org/037q25y47 The Lewis Carroll Society'),
(68604, 'https://ror.org/0409tje58', 'en', 1, 'https://ror.org/0409tje58 Press Association'),
(68605, 'https://ror.org/0051af203', 'en', 1, 'https://ror.org/0051af203 The Lindsay Leg Club Foundation'),
(68606, 'https://ror.org/04pw37k23', 'no_lang_code', 1, 'https://ror.org/04pw37k23 Deciwatt (United Kingdom)'),
(68607, 'https://ror.org/00twd4s32', 'en', 1, 'https://ror.org/00twd4s32 Great North Museum Hancock'),
(68608, 'https://ror.org/00qbdg904', 'en', 1, 'https://ror.org/00qbdg904 Road Clinical Hospital on Novosibirsk-Main JSC Russian Railways НУЗ "Дорожная клиническая больница на ст Новосибирск-Главный ОАО "РЖД"'),
(68609, 'https://ror.org/05fh4qp85', 'en', 1, 'https://ror.org/05fh4qp85 The Grierson Trust'),
(68610, 'https://ror.org/03sq05k80', 'en', 1, 'https://ror.org/03sq05k80 Red Poll Cattle Society'),
(68611, 'https://ror.org/05mw0ee88', 'en', 1, 'https://ror.org/05mw0ee88 Instytut im. Jerzego Grotowskiego The Grotowski Institute'),
(68612, 'https://ror.org/006wjwp03', 'nl', 1, 'https://ror.org/006wjwp03 National Museum Nationale Kunstgalerij’ Rijksmuseum'),
(68613, 'https://ror.org/00gfzq956', 'en', 1, 'https://ror.org/00gfzq956 The McMinn Centre'),
(68614, 'https://ror.org/02vxq2c49', 'en', 1, 'https://ror.org/02vxq2c49 Royal Academy of Arts'),
(68615, 'https://ror.org/0039f4626', 'en', 1, 'https://ror.org/0039f4626 Royal Engineers Museum'),
(68616, 'https://ror.org/059mrwr24', 'no_lang_code', 1, 'https://ror.org/059mrwr24 The Medical Device (United Kingdom)'),
(68617, 'https://ror.org/00mezra25', 'en', 1, 'https://ror.org/00mezra25 The Hans Gál Society'),
(68618, 'https://ror.org/03mw0xn70', 'no_lang_code', 1, 'https://ror.org/03mw0xn70 Royal London Group (United Kingdom)'),
(68619, 'https://ror.org/03wcjpf37', 'en', 1, 'https://ror.org/03wcjpf37 The Hellenic Centre'),
(68620, 'https://ror.org/043wep886', 'no_lang_code', 1, 'https://ror.org/043wep886 Mikhulu Trust'),
(68621, 'https://ror.org/05kpepv05', 'en', 1, 'https://ror.org/05kpepv05 The Vega Science Trust'),
(68622, 'https://ror.org/04ykwve34', 'en', 1, 'https://ror.org/04ykwve34 Saamarthya Foundation'),
(68623, 'https://ror.org/058efm270', 'en', 1, 'https://ror.org/058efm270 The Mill'),
(68624, 'https://ror.org/02hrnt925', 'en', 1, 'https://ror.org/02hrnt925 Samuel Johnson Birthplace Museum'),
(68625, 'https://ror.org/02xxmdw74', 'en', 1, 'https://ror.org/02xxmdw74 The Modernist Society'),
(68626, 'https://ror.org/04qke1n53', 'en', 1, 'https://ror.org/04qke1n53 Veterinary Medicines Directorate'),
(68627, 'https://ror.org/039cmfe51', 'en', 1, 'https://ror.org/039cmfe51 Vienna Institute for Urban Sustainability'),
(68628, 'https://ror.org/014fqyj02', 'en', 1, 'https://ror.org/014fqyj02 The National Allotment Society'),
(68629, 'https://ror.org/05ghfbv04', 'en', 1, 'https://ror.org/05ghfbv04 Sir James Knott Trust'),
(68630, 'https://ror.org/03hjbp089', 'en', 1, 'https://ror.org/03hjbp089 Wallace Kelsey Research Foundation'),
(68631, 'https://ror.org/02x6wmw65', 'en', 1, 'https://ror.org/02x6wmw65 The National Centre for Early Music'),
(68632, 'https://ror.org/02ja69h88', 'en', 1, 'https://ror.org/02ja69h88 The Society of Portrait Sculptors'),
(68633, 'https://ror.org/03mfwzh84', 'en', 1, 'https://ror.org/03mfwzh84 The Work Foundation'),
(68634, 'https://ror.org/04fsg5361', 'en', 1, 'https://ror.org/04fsg5361 Theatrescience'),
(68635, 'https://ror.org/04wn4j219', 'en', 1, 'https://ror.org/04wn4j219 National Telford Institute'),
(68636, 'https://ror.org/012c60617', 'en', 1, 'https://ror.org/012c60617 The Spectrum Centre'),
(68637, 'https://ror.org/01r7ewj84', 'en', 1, 'https://ror.org/01r7ewj84 Nerve Centre'),
(68638, 'https://ror.org/05nr25f03', 'no_lang_code', 1, 'https://ror.org/05nr25f03 Translational Research Platform for Veterinary Biologicals (India)'),
(68639, 'https://ror.org/04a3b0x78', 'en', 1, 'https://ror.org/04a3b0x78 The Tuke Centre'),
(68640, 'https://ror.org/04mvkev15', 'en', 1, 'https://ror.org/04mvkev15 Twentieth Century Society'),
(68641, 'https://ror.org/02bggcy46', 'en', 1, 'https://ror.org/02bggcy46 Transport and Health Study Group'),
(68642, 'https://ror.org/01g9gaq76', 'en', 1, 'https://ror.org/01g9gaq76 Xuzhou Cancer Hospital'),
(68643, 'https://ror.org/01g36xg54', 'en', 1, 'https://ror.org/01g36xg54 Trees and Design Action Group'),
(68644, 'https://ror.org/02ndp2s95', 'en', 1, 'https://ror.org/02ndp2s95 The UK Cards Association'),
(68645, 'https://ror.org/01kvaek42', 'en', 1, 'https://ror.org/01kvaek42 Thomas Mann Cultural Centre Thomo Manno Kultūros Centras'),
(68646, 'https://ror.org/015dvxx67', 'en', 1, 'https://ror.org/015dvxx67 Institute of Mental Health'),
(68647, 'https://ror.org/02vd17947', 'no_lang_code', 1, 'https://ror.org/02vd17947 Thornhill Medical (Canada)'),
(68648, 'https://ror.org/00ragt065', 'en', 1, 'https://ror.org/00ragt065 Trent Rivers Trust'),
(68649, 'https://ror.org/05y477617', 'en', 1, 'https://ror.org/05y477617 Comann Eachdraidh Uig'),
(68650, 'https://ror.org/048a6mf06', 'en', 1, 'https://ror.org/048a6mf06 Spencer Academies Trust'),
(68651, 'https://ror.org/011hgk177', 'no_lang_code', 1, 'https://ror.org/011hgk177 Thusanani Foundation'),
(68652, 'https://ror.org/03c388s57', 'en', 1, 'https://ror.org/03c388s57 United Kingdom Antarctic Heritage Trust'),
(68653, 'https://ror.org/05y8p4437', 'en', 1, 'https://ror.org/05y8p4437 Trials Methodology Research Network'),
(68654, 'https://ror.org/039zhwx76', 'en', 1, 'https://ror.org/039zhwx76 Buddhist Digital Resource Center'),
(68655, 'https://ror.org/01z28z523', 'en', 1, 'https://ror.org/01z28z523 Trinity House Community Resource Centre'),
(68656, 'https://ror.org/05p2t9n36', 'en', 1, 'https://ror.org/05p2t9n36 Anshan Hospital 鞍山市铁西医院'),
(68657, 'https://ror.org/05ekxjh51', 'en', 1, 'https://ror.org/05ekxjh51 The Research Network'),
(68658, 'https://ror.org/01zbsa271', 'en', 1, 'https://ror.org/01zbsa271 UK Centre for Tobacco & Alcohol Studies'),
(68659, 'https://ror.org/0342vn940', 'no_lang_code', 1, 'https://ror.org/0342vn940 Tromp Medical (Netherlands)');
INSERT INTO `rors` VALUES
(68660, 'https://ror.org/02afwny15', 'en', 1, 'https://ror.org/02afwny15 Tiree Community Development Trust'),
(68661, 'https://ror.org/05bc3r795', 'en', 1, 'https://ror.org/05bc3r795 UK Collaborative on Development Research'),
(68662, 'https://ror.org/02hm6a795', 'no_lang_code', 1, 'https://ror.org/02hm6a795 Tropical Marine Centre (United Kingdom)'),
(68663, 'https://ror.org/04zay9103', 'en', 1, 'https://ror.org/04zay9103 The Trussell Trust'),
(68664, 'https://ror.org/03vw5v747', 'en', 1, 'https://ror.org/03vw5v747 Toft Historical Society'),
(68665, 'https://ror.org/021v42516', 'en', 1, 'https://ror.org/021v42516 Glastonbury Abbey'),
(68666, 'https://ror.org/008kjzh81', 'en', 1, 'https://ror.org/008kjzh81 UK Irrigation Association'),
(68667, 'https://ror.org/001000g32', 'en', 1, 'https://ror.org/001000g32 Tullie House Museum and Art Gallery'),
(68668, 'https://ror.org/011yqtc07', 'en', 1, 'https://ror.org/011yqtc07 Turks and Caicos National Museum'),
(68669, 'https://ror.org/01e4h3c94', 'no_lang_code', 1, 'https://ror.org/01e4h3c94 Tony Coll and Associates (United Kingdom)'),
(68670, 'https://ror.org/010h6a642', 'en', 1, 'https://ror.org/010h6a642 Topsham Museum'),
(68671, 'https://ror.org/045p8ax41', 'en', 1, 'https://ror.org/045p8ax41 Turquoise Mountain'),
(68672, 'https://ror.org/006agn966', 'en', 1, 'https://ror.org/006agn966 Tor Lodge and Applecross Trust'),
(68673, 'https://ror.org/020ap9s27', 'en', 1, 'https://ror.org/020ap9s27 United Kingdom Petroleum Industry Association'),
(68674, 'https://ror.org/007wjj235', 'en', 1, 'https://ror.org/007wjj235 2Blades Foundation'),
(68675, 'https://ror.org/056ykyc11', 'no_lang_code', 1, 'https://ror.org/056ykyc11 Torbay Development Agency (United Kingdom)'),
(68676, 'https://ror.org/00nh4sd73', 'en', 1, 'https://ror.org/00nh4sd73 UK Quality Ash Association'),
(68677, 'https://ror.org/04d9w7y23', 'no_lang_code', 1, 'https://ror.org/04d9w7y23 TwoCan Associates (United Kingdom)'),
(68678, 'https://ror.org/03x6nht44', 'en', 1, 'https://ror.org/03x6nht44 Torquay Museum'),
(68679, 'https://ror.org/00je08x63', 'en', 1, 'https://ror.org/00je08x63 Tygerberg Children’s Hospital'),
(68680, 'https://ror.org/00j5pc081', 'en', 1, 'https://ror.org/00j5pc081 The UK Sepsis Trust'),
(68681, 'https://ror.org/040tfy969', 'en', 1, 'https://ror.org/040tfy969 Tyndall Centre'),
(68682, 'https://ror.org/04kdrdn36', 'en', 1, 'https://ror.org/04kdrdn36 Awdurdod Ystadegau''r DU UK Statistics Authority'),
(68683, 'https://ror.org/01y3m2562', 'en', 1, 'https://ror.org/01y3m2562 Tyne & Wear Building Preservation Trust'),
(68684, 'https://ror.org/01mj2ze90', 'en', 1, 'https://ror.org/01mj2ze90 Tyne Rivers Trust'),
(68685, 'https://ror.org/039xsf007', 'en', 1, 'https://ror.org/039xsf007 Otharlann Chontae Thír Eoghain Tyrone County Hospital'),
(68686, 'https://ror.org/012g5w926', 'en', 1, 'https://ror.org/012g5w926 Universal Rights Group'),
(68687, 'https://ror.org/02yczqn06', 'en', 1, 'https://ror.org/02yczqn06 UbonRatchathani Rice Research Center ศูนย์วิจัยข้าวอุบลราชธานี'),
(68688, 'https://ror.org/04t514251', 'no_lang_code', 1, 'https://ror.org/04t514251 UK-China Guangdong CCUS Centre'),
(68689, 'https://ror.org/020pnfy52', 'en', 1, 'https://ror.org/020pnfy52 University Alliance'),
(68690, 'https://ror.org/01pz7ej14', 'en', 1, 'https://ror.org/01pz7ej14 UK Carbon Capture and Research Centre'),
(68691, 'https://ror.org/057tkar12', 'en', 1, 'https://ror.org/057tkar12 Understanding Childhood Arthritis Network'),
(68692, 'https://ror.org/003aa7r63', 'en', 1, 'https://ror.org/003aa7r63 Uganda Red Cross Society'),
(68693, 'https://ror.org/0005q3137', 'en', 1, 'https://ror.org/0005q3137 Ultach Trust'),
(68694, 'https://ror.org/057tdt975', 'en', 1, 'https://ror.org/057tdt975 University of Warwick Science Park'),
(68695, 'https://ror.org/01xnh6j48', 'en', 1, 'https://ror.org/01xnh6j48 United Learning'),
(68696, 'https://ror.org/010e6zk56', 'en', 1, 'https://ror.org/010e6zk56 Urban Big Data Centre'),
(68697, 'https://ror.org/05rf93e76', 'en', 1, 'https://ror.org/05rf93e76 Voluntary Health Scotland'),
(68698, 'https://ror.org/037trk629', 'en', 1, 'https://ror.org/037trk629 Volunteer Dundee'),
(68699, 'https://ror.org/02a8fvh42', 'en', 1, 'https://ror.org/02a8fvh42 Useful Simple Trust'),
(68700, 'https://ror.org/05k533e16', 'en', 1, 'https://ror.org/05k533e16 Vana Trust'),
(68701, 'https://ror.org/01aary583', 'en', 1, 'https://ror.org/01aary583 Verbal Arts Centre'),
(68702, 'https://ror.org/02w9ngz08', 'no_lang_code', 1, 'https://ror.org/02w9ngz08 Verdesian (United Kingdom)'),
(68703, 'https://ror.org/027p78k86', 'no_lang_code', 1, 'https://ror.org/027p78k86 Ligand Pharmaceuticals (United Kingdom)'),
(68704, 'https://ror.org/04nzw6768', 'no_lang_code', 1, 'https://ror.org/04nzw6768 W. L. Gore & Associates (United Kingdom)'),
(68705, 'https://ror.org/039fta733', 'en', 1, 'https://ror.org/039fta733 West of England Centre for Inclusive Living'),
(68706, 'https://ror.org/02sbgzg70', 'en', 1, 'https://ror.org/02sbgzg70 Vine Trust'),
(68707, 'https://ror.org/00z58gx92', 'en', 1, 'https://ror.org/00z58gx92 Wai Yin Society'),
(68708, 'https://ror.org/0084xy061', 'no_lang_code', 1, 'https://ror.org/0084xy061 Vishuo Biomedical (Singapore)'),
(68709, 'https://ror.org/021d2w304', 'no_lang_code', 1, 'https://ror.org/021d2w304 Vivo Smart Medical Devices (United Kingdom)'),
(68710, 'https://ror.org/05r66v627', 'en', 1, 'https://ror.org/05r66v627 The AD Centre'),
(68711, 'https://ror.org/03h20ca94', 'en', 1, 'https://ror.org/03h20ca94 Walk Free Foundation'),
(68712, 'https://ror.org/012mrz395', 'no_lang_code', 1, 'https://ror.org/012mrz395 Walker Associates Architects (United Kingdom)'),
(68713, 'https://ror.org/05k0e7y54', 'en', 1, 'https://ror.org/05k0e7y54 Wallingford Museum'),
(68714, 'https://ror.org/028v2q832', 'en', 1, 'https://ror.org/028v2q832 Wear Rivers Trust'),
(68715, 'https://ror.org/0030fkc22', 'en', 1, 'https://ror.org/0030fkc22 Wandle'),
(68716, 'https://ror.org/02aaavs63', 'en', 1, 'https://ror.org/02aaavs63 Anglo-Boer War Museum'),
(68717, 'https://ror.org/02fyvxt44', 'no_lang_code', 1, 'https://ror.org/02fyvxt44 Drive DeVilbiss Healthcare (United Kingdom)'),
(68718, 'https://ror.org/005smnq10', 'en', 1, 'https://ror.org/005smnq10 The Welsh Black Cattle Society'),
(68719, 'https://ror.org/028awrr93', 'en', 1, 'https://ror.org/028awrr93 Woodbrooke'),
(68720, 'https://ror.org/02qqz2g41', 'en', 1, 'https://ror.org/02qqz2g41 Welsh Refugee Council'),
(68721, 'https://ror.org/05y05z458', 'en', 1, 'https://ror.org/05y05z458 Welwyn Archaeological Society'),
(68722, 'https://ror.org/05qnpc206', 'en', 1, 'https://ror.org/05qnpc206 Museums Northumberland'),
(68723, 'https://ror.org/03nkk3987', 'en', 1, 'https://ror.org/03nkk3987 Worcestershire Health and Care NHS Trust'),
(68724, 'https://ror.org/025s7rk09', 'en', 1, 'https://ror.org/025s7rk09 Wessex Chalk Stream and Rivers Trust'),
(68725, 'https://ror.org/01wey0b22', 'en', 1, 'https://ror.org/01wey0b22 West Cumbria Rivers Trust'),
(68726, 'https://ror.org/03hzr9w43', 'en', 1, 'https://ror.org/03hzr9w43 Club & Institute Union'),
(68727, 'https://ror.org/05fkmgk28', 'en', 1, 'https://ror.org/05fkmgk28 World Dementia Council'),
(68728, 'https://ror.org/01hthk989', 'en', 1, 'https://ror.org/01hthk989 World Endometriosis Research Foundation'),
(68729, 'https://ror.org/02980ky18', 'en', 1, 'https://ror.org/02980ky18 West of England Academic Health Science Network'),
(68730, 'https://ror.org/00k7xg884', 'en', 1, 'https://ror.org/00k7xg884 World Energy Council'),
(68731, 'https://ror.org/00darb407', 'en', 1, 'https://ror.org/00darb407 West Of Scotland Housing Association'),
(68732, 'https://ror.org/012xd9119', 'no_lang_code', 1, 'https://ror.org/012xd9119 WestCon Medical (United States)'),
(68733, 'https://ror.org/02hj84f21', 'en', 1, 'https://ror.org/02hj84f21 World Sugar Research Organisation'),
(68734, 'https://ror.org/02e5d6e23', 'en', 1, 'https://ror.org/02e5d6e23 The Western Front Association'),
(68735, 'https://ror.org/053gcq860', 'en', 1, 'https://ror.org/053gcq860 Wormingford Community Education Centre'),
(68736, 'https://ror.org/016hpv675', 'en', 1, 'https://ror.org/016hpv675 Westgate Hall'),
(68737, 'https://ror.org/00qavst65', 'en', 1, 'https://ror.org/00qavst65 Wuhan Puai Hospital 武汉普爱医院'),
(68738, 'https://ror.org/00ja58288', 'en', 1, 'https://ror.org/00ja58288 Wheal Martyn'),
(68739, 'https://ror.org/01m3mp859', 'en', 1, 'https://ror.org/01m3mp859 The Wye & Usk Foundation'),
(68740, 'https://ror.org/029n3ke88', 'no_lang_code', 1, 'https://ror.org/029n3ke88 Wyld (United Kingdom)'),
(68741, 'https://ror.org/042tf3y40', 'en', 1, 'https://ror.org/042tf3y40 Wild Trout Trust'),
(68742, 'https://ror.org/03hxhpz06', 'en', 1, 'https://ror.org/03hxhpz06 Wildlife Conservation Society United Kingdom'),
(68743, 'https://ror.org/05cz4ke42', 'en', 1, 'https://ror.org/05cz4ke42 Wildwood Trust'),
(68744, 'https://ror.org/02ykpj445', 'en', 1, 'https://ror.org/02ykpj445 Windrush Foundation'),
(68745, 'https://ror.org/04j9eba34', 'en', 1, 'https://ror.org/04j9eba34 Wysing Arts Centre'),
(68746, 'https://ror.org/05dmkvt76', 'en', 1, 'https://ror.org/05dmkvt76 Wise Monkey Foundation'),
(68747, 'https://ror.org/02nmjb623', 'no_lang_code', 1, 'https://ror.org/02nmjb623 Xi''an City Planning&Design Institute (China) 西安市城市规划设计研究院'),
(68748, 'https://ror.org/033d2dh14', 'en', 1, 'https://ror.org/033d2dh14 Wolverhampton Art Gallery'),
(68749, 'https://ror.org/034ds6p31', 'en', 1, 'https://ror.org/034ds6p31 Yunnan Archaeology 云南省文物考古研究所成立于'),
(68750, 'https://ror.org/04m1grf16', 'en', 1, 'https://ror.org/04m1grf16 Zambia Red Cross Society'),
(68751, 'https://ror.org/03prq2784', 'en', 1, 'https://ror.org/03prq2784 Zhuzhou Central Hospital 株洲市中心医院'),
(68752, 'https://ror.org/044dcv581', 'en', 1, 'https://ror.org/044dcv581 York Blind & Partially Sighted Society'),
(68753, 'https://ror.org/01rbmj730', 'en', 1, 'https://ror.org/01rbmj730 York Castle Museum'),
(68754, 'https://ror.org/005y6yz11', 'en', 1, 'https://ror.org/005y6yz11 Zoological Society of East Anglia'),
(68755, 'https://ror.org/02teqse50', 'en', 1, 'https://ror.org/02teqse50 Yorkshire & Humber Academic Health Science Network'),
(68756, 'https://ror.org/03hh6sn09', 'en', 1, 'https://ror.org/03hh6sn09 Yunnan Building Materials Research & Design Institute 云南大学建筑与规划学院'),
(68757, 'https://ror.org/00fd8gy33', 'en', 1, 'https://ror.org/00fd8gy33 Yorkshire Dales Millennium Trust'),
(68758, 'https://ror.org/0555yg896', 'en', 1, 'https://ror.org/0555yg896 Asha Foundation'),
(68759, 'https://ror.org/005trhy70', 'en', 1, 'https://ror.org/005trhy70 Young Women''s Trust'),
(68760, 'https://ror.org/019hsqt53', 'en', 1, 'https://ror.org/019hsqt53 Healing Fields Foundation హీలింగ్ ఫీల్డ్స్ ఫౌండేషన్'),
(68761, 'https://ror.org/02bmxkm36', 'en', 1, 'https://ror.org/02bmxkm36 Deepak Foundation'),
(68762, 'https://ror.org/0592ben86', 'en', 1, 'https://ror.org/0592ben86 Indian Institute of Public Health Gandhinagar ભારતીય જન સ્વાસ્થ સંસ્થાન ગાંધીનગર'),
(68763, 'https://ror.org/04mn04g76', 'en', 1, 'https://ror.org/04mn04g76 Rajasthan Police Academy राजस्थान पुलिस अकादमी'),
(68764, 'https://ror.org/01bqrhe48', 'en', 1, 'https://ror.org/01bqrhe48 Institute of Genetics and Hospital for Genetic Diseases ఇన్స్టిట్యూట్ ఆఫ్ జెనిటిక్స్ అండ్ హాస్పిటల్ ఫర్ జెనెటిక్ డిసీజెస్'),
(68765, 'https://ror.org/02nqa0m70', 'en', 1, 'https://ror.org/02nqa0m70 Schieffelin Institute of Health Research and Leprosy Centre'),
(68766, 'https://ror.org/026rd5w83', 'en', 1, 'https://ror.org/026rd5w83 Maharashtra Association of Anthropological Sciences मानवशास्त्र विज्ञान महाराष्ट्र असोसिएशन'),
(68767, 'https://ror.org/05w7dft64', 'en', 1, 'https://ror.org/05w7dft64 National Institute of Cancer Prevention and Research'),
(68768, 'https://ror.org/01byxa330', 'no_lang_code', 1, 'https://ror.org/01byxa330 Navdanya'),
(68769, 'https://ror.org/00je6er82', 'en', 1, 'https://ror.org/00je6er82 Mississippi Division of Medicaid'),
(68770, 'https://ror.org/0474hd478', 'no_lang_code', 1, 'https://ror.org/0474hd478 TLM Shahdara Hospital'),
(68771, 'https://ror.org/03fs9z545', 'en', 1, 'https://ror.org/03fs9z545 Mahidol Oxford Tropical Medicine Research Unit'),
(68772, 'https://ror.org/04jjxrc37', 'en', 1, 'https://ror.org/04jjxrc37 Office of the Governor'),
(68773, 'https://ror.org/00gd4j561', 'en', 1, 'https://ror.org/00gd4j561 West Virginia Bureau of Senior Services'),
(68774, 'https://ror.org/02egea792', 'en', 1, 'https://ror.org/02egea792 United Way of Greater Houston'),
(68775, 'https://ror.org/05vmv7z45', 'en', 1, 'https://ror.org/05vmv7z45 Arkansas Insurance Department'),
(68776, 'https://ror.org/005a3qv04', 'en', 1, 'https://ror.org/005a3qv04 Illinois Primary Health Care Association'),
(68777, 'https://ror.org/058pb0b36', 'en', 1, 'https://ror.org/058pb0b36 State of Vermont Office of Governor'),
(68778, 'https://ror.org/05vng4k71', 'en', 1, 'https://ror.org/05vng4k71 Kansas Office of the Governor'),
(68779, 'https://ror.org/04qwqk520', 'en', 1, 'https://ror.org/04qwqk520 State of Alaska Office of the Governor'),
(68780, 'https://ror.org/052pk7q80', 'en', 1, 'https://ror.org/052pk7q80 Alabama State Office of Governor'),
(68781, 'https://ror.org/0538ncp57', 'en', 1, 'https://ror.org/0538ncp57 Mount Sanford Tribal Consortium'),
(68782, 'https://ror.org/05vmzg372', 'no_lang_code', 1, 'https://ror.org/05vmzg372 Villares Metals (Brasil)'),
(68783, 'https://ror.org/054x00070', 'en', 1, 'https://ror.org/054x00070 Wisconsin Disability Association'),
(68784, 'https://ror.org/031exbw60', 'no_lang_code', 1, 'https://ror.org/031exbw60 Agilent Technologies (Brazil)'),
(68785, 'https://ror.org/01ka62b75', 'en', 1, 'https://ror.org/01ka62b75 Office of Governor'),
(68786, 'https://ror.org/03ezrv005', 'no_lang_code', 1, 'https://ror.org/03ezrv005 AgroBio Associação das Empresas de Biotecnologia na Agricultura e Agroindústria'),
(68787, 'https://ror.org/04pzbyz40', 'no_lang_code', 1, 'https://ror.org/04pzbyz40 Ananse (Brazil)'),
(68788, 'https://ror.org/05vfv3b25', 'no_lang_code', 1, 'https://ror.org/05vfv3b25 ArcelorMittal (Brazil)'),
(68789, 'https://ror.org/05v75d484', 'no_lang_code', 1, 'https://ror.org/05v75d484 Angus Bela Vista Pecuária Central Bela Vista (Brazil)'),
(68790, 'https://ror.org/01mvkzd56', 'pt', 1, 'https://ror.org/01mvkzd56 Fundepag'),
(68791, 'https://ror.org/038jwkk56', 'no_lang_code', 1, 'https://ror.org/038jwkk56 Copersucar (Brazil)'),
(68792, 'https://ror.org/04h3mfd12', 'no_lang_code', 1, 'https://ror.org/04h3mfd12 Intel (Brazil)'),
(68793, 'https://ror.org/03gyt6j98', 'pt', 1, 'https://ror.org/03gyt6j98 Coopercitrus Cooperativa de Produtores Rurais'),
(68794, 'https://ror.org/05m7btq67', 'pt', 1, 'https://ror.org/05m7btq67 Associação Brasileira do Papelão Ondulado'),
(68795, 'https://ror.org/05bs2v013', 'no_lang_code', 1, 'https://ror.org/05bs2v013 Itaúsa (Brazil)'),
(68796, 'https://ror.org/05hpw7264', 'pt', 1, 'https://ror.org/05hpw7264 Cooxupé'),
(68797, 'https://ror.org/026m9xy48', 'no_lang_code', 1, 'https://ror.org/026m9xy48 AstraZeneca (Brazil)'),
(68798, 'https://ror.org/05smh3q72', 'no_lang_code', 1, 'https://ror.org/05smh3q72 JP Group (Brazil)'),
(68799, 'https://ror.org/01anktx53', 'no_lang_code', 1, 'https://ror.org/01anktx53 Sealed Air (Brazil)'),
(68800, 'https://ror.org/04qq74014', 'no_lang_code', 1, 'https://ror.org/04qq74014 Dedini Industrias De Base (Brazil)'),
(68801, 'https://ror.org/04f02tt58', 'no_lang_code', 1, 'https://ror.org/04f02tt58 Laboratório Teuto (Brazil)'),
(68802, 'https://ror.org/01ng1nj07', 'no_lang_code', 1, 'https://ror.org/01ng1nj07 Bio-Bras'),
(68803, 'https://ror.org/039mm4q57', 'no_lang_code', 1, 'https://ror.org/039mm4q57 Eaton (Brazil)'),
(68804, 'https://ror.org/01rfnpk52', 'no_lang_code', 1, 'https://ror.org/01rfnpk52 bioMérieux (Brazil)'),
(68805, 'https://ror.org/05dmqh951', 'no_lang_code', 1, 'https://ror.org/05dmqh951 Engemasa (Brazil)'),
(68806, 'https://ror.org/02m2t8v35', 'no_lang_code', 1, 'https://ror.org/02m2t8v35 Mahle (Brazil)'),
(68807, 'https://ror.org/010fz6j15', 'no_lang_code', 1, 'https://ror.org/010fz6j15 Equipalcool (Brazil)'),
(68808, 'https://ror.org/05wetj454', 'no_lang_code', 1, 'https://ror.org/05wetj454 Braskem (Brazil)'),
(68809, 'https://ror.org/016haaa50', 'no_lang_code', 1, 'https://ror.org/016haaa50 Metalgráfica Rojek (Brazil)'),
(68810, 'https://ror.org/025je7089', 'no_lang_code', 1, 'https://ror.org/025je7089 Atvos (Brazil)'),
(68811, 'https://ror.org/02hwd6186', 'no_lang_code', 1, 'https://ror.org/02hwd6186 Waelzholz (Brasil) Waelzholz Brasmetal Laminação'),
(68812, 'https://ror.org/00hc2mf91', 'no_lang_code', 1, 'https://ror.org/00hc2mf91 Microsoft (Brazil)'),
(68813, 'https://ror.org/05nwaqa23', 'no_lang_code', 1, 'https://ror.org/05nwaqa23 Celestica (Brasil)'),
(68814, 'https://ror.org/02s6maw65', 'pt', 1, 'https://ror.org/02s6maw65 Faculdades Guarulhos Faculdades Integradas de Ciências Humanas, Saúde e Educação de Guarulhos'),
(68815, 'https://ror.org/00g832k89', 'pt', 1, 'https://ror.org/00g832k89 Grupo Montecitrus'),
(68816, 'https://ror.org/01ztwdy23', 'no_lang_code', 1, 'https://ror.org/01ztwdy23 CI&T (Brasil)'),
(68817, 'https://ror.org/03f9hxz36', 'no_lang_code', 1, 'https://ror.org/03f9hxz36 Companhia Brasileira de Aluminio'),
(68818, 'https://ror.org/04pqzwm85', 'no_lang_code', 1, 'https://ror.org/04pqzwm85 GlaxoSmithKline (Brazil)'),
(68819, 'https://ror.org/05thm6q88', 'no_lang_code', 1, 'https://ror.org/05thm6q88 IBM (Brazil)'),
(68820, 'https://ror.org/05qect977', 'no_lang_code', 1, 'https://ror.org/05qect977 Infibra (Brazil)'),
(68821, 'https://ror.org/0435yq060', 'no_lang_code', 1, 'https://ror.org/0435yq060 Ourofino Saúde Animal (Brazil)'),
(68822, 'https://ror.org/02gcshf78', 'no_lang_code', 1, 'https://ror.org/02gcshf78 Natura (Brazil)'),
(68823, 'https://ror.org/05aytwf55', 'no_lang_code', 1, 'https://ror.org/05aytwf55 Owens Corning (Brazil)'),
(68824, 'https://ror.org/049gt8c76', 'no_lang_code', 1, 'https://ror.org/049gt8c76 Ultrapar (Brazil)'),
(68825, 'https://ror.org/013rhnj14', 'pt', 1, 'https://ror.org/013rhnj14 Instituto de Estudos de Saúde Suplementar'),
(68826, 'https://ror.org/04qbw6v56', 'pt', 1, 'https://ror.org/04qbw6v56 Núcleo Interdisciplinar da Ciência do Sono'),
(68827, 'https://ror.org/00bndmb79', 'no_lang_code', 1, 'https://ror.org/00bndmb79 TecnoBio (Brazil)'),
(68828, 'https://ror.org/024p6za61', 'no_lang_code', 1, 'https://ror.org/024p6za61 Solvay (Brazil)'),
(68829, 'https://ror.org/03xyc1c11', 'no_lang_code', 1, 'https://ror.org/03xyc1c11 Proteca (Brazil)'),
(68830, 'https://ror.org/024w3dd68', 'no_lang_code', 1, 'https://ror.org/024w3dd68 Tetra Pak (Brazil)'),
(68831, 'https://ror.org/00tgp6q68', 'no_lang_code', 1, 'https://ror.org/00tgp6q68 Voestalpine (Brazil)'),
(68832, 'https://ror.org/01b30v774', 'no_lang_code', 1, 'https://ror.org/01b30v774 Sakata (Brazil)'),
(68833, 'https://ror.org/03t0w9n05', 'no_lang_code', 1, 'https://ror.org/03t0w9n05 Sama (Brazil)'),
(68834, 'https://ror.org/01g7a7y43', 'no_lang_code', 1, 'https://ror.org/01g7a7y43 Noravank Foundation Նորավանք» հիմնադրամ'),
(68835, 'https://ror.org/01tw5qz74', 'en', 1, 'https://ror.org/01tw5qz74 Aitchison College ایچیسن کالج'),
(68836, 'https://ror.org/043c0pj05', 'no_lang_code', 1, 'https://ror.org/043c0pj05 Saur (Armenia)'),
(68837, 'https://ror.org/029a61c63', 'en', 1, 'https://ror.org/029a61c63 Academy of Policy and Development'),
(68838, 'https://ror.org/02abp7362', 'no_lang_code', 1, 'https://ror.org/02abp7362 358 (Finland)'),
(68839, 'https://ror.org/03q8q9685', 'en', 1, 'https://ror.org/03q8q9685 Academia de Administrare Publică Academy of Public Administration'),
(68840, 'https://ror.org/01dsgn298', 'no_lang_code', 1, 'https://ror.org/01dsgn298 Al-Kasaba Theatre & Cinematheque مسرح وسينماتك القصبة'),
(68841, 'https://ror.org/015480z05', 'en', 1, 'https://ror.org/015480z05 All-Russian Institute of Agrarian Problems and Informatics A.A.Nikonova Всероссийский институт аграрных проблем и информатики им. А.А.Никонова'),
(68842, 'https://ror.org/04a09r739', 'en', 1, 'https://ror.org/04a09r739 Academy of Public Administration under the President of the Kyrgyz Republic Академия государственного управления при Президенте Кыргызской Республики'),
(68843, 'https://ror.org/04qer5752', 'en', 1, 'https://ror.org/04qer5752 Institute of Archaeology named after A.Kh.Margulan Ә.Х. Марғұлан атындағы Археология институты'),
(68844, 'https://ror.org/02efpnz39', 'fr', 1, 'https://ror.org/02efpnz39 Académie de Versailles'),
(68845, 'https://ror.org/03qsnan22', 'en', 1, 'https://ror.org/03qsnan22 Alaska Community Action on Toxics'),
(68846, 'https://ror.org/00esg0r84', 'en', 1, 'https://ror.org/00esg0r84 Abilities United'),
(68847, 'https://ror.org/037e7x320', 'no_lang_code', 1, 'https://ror.org/037e7x320 Actar (Spain)'),
(68848, 'https://ror.org/02easm151', 'no_lang_code', 1, 'https://ror.org/02easm151 Albion (United States)'),
(68849, 'https://ror.org/05pvcyy59', 'en', 1, 'https://ror.org/05pvcyy59 Aarhus Business College Aarhus Handelsforenings Aftenskole'),
(68850, 'https://ror.org/04tpe6y42', 'en', 1, 'https://ror.org/04tpe6y42 Dr. Sadhana Nayak’s Voice Clinic and Center'),
(68851, 'https://ror.org/00e3gp542', 'en', 1, 'https://ror.org/00e3gp542 National Library of New Zealand'),
(68852, 'https://ror.org/05tp36v93', 'en', 1, 'https://ror.org/05tp36v93 Advanced Center for Water Resources Development and Management'),
(68853, 'https://ror.org/02e6s3r40', 'es', 1, 'https://ror.org/02e6s3r40 Escuela Superior de Artes de Yucatán'),
(68854, 'https://ror.org/05a1sck78', 'no_lang_code', 1, 'https://ror.org/05a1sck78 Alice Films (France)'),
(68855, 'https://ror.org/02h3fax78', 'en', 1, 'https://ror.org/02h3fax78 National library of Uzbekistan Национальна библиотека Узбекистана'),
(68856, 'https://ror.org/04mmeqg04', 'fr', 1, 'https://ror.org/04mmeqg04 Agence France Presse'),
(68857, 'https://ror.org/05r9ndf46', 'en', 1, 'https://ror.org/05r9ndf46 Al Sadu Society بيت السدو'),
(68858, 'https://ror.org/04h8j1922', 'no_lang_code', 1, 'https://ror.org/04h8j1922 Alvin Ailey (United States)'),
(68859, 'https://ror.org/019qwdy63', 'en', 1, 'https://ror.org/019qwdy63 American Center Yangon'),
(68860, 'https://ror.org/02s040f34', 'es', 1, 'https://ror.org/02s040f34 Instituto de Investigaciones en Ciencias Agrarias de Rosario'),
(68861, 'https://ror.org/041a6wm28', 'en', 1, 'https://ror.org/041a6wm28 American Chamber of Commerce in Kosovo Oda Ekonomike Amerikane ne Kosove'),
(68862, 'https://ror.org/00rcg3441', 'en', 1, 'https://ror.org/00rcg3441 Shamakhy Astrophysical Observatory named after Nasraddin Tusi'),
(68863, 'https://ror.org/00jhpn059', 'en', 1, 'https://ror.org/00jhpn059 American University of Mongolia Монгол дахь Америк Их Сургууль'),
(68864, 'https://ror.org/048c72h25', 'en', 1, 'https://ror.org/048c72h25 Anokhi Museum of Hand Printing अनोखी संग्रहालय'),
(68865, 'https://ror.org/04na1dr63', 'en', 1, 'https://ror.org/04na1dr63 Anthropological Survey of India'),
(68866, 'https://ror.org/03cnkgk49', 'en', 1, 'https://ror.org/03cnkgk49 Erie Arts and Culture'),
(68867, 'https://ror.org/03ch48z85', 'en', 1, 'https://ror.org/03ch48z85 American Visionary Art Museum'),
(68868, 'https://ror.org/05ar6z982', 'no_lang_code', 1, 'https://ror.org/05ar6z982 Antigua State College'),
(68869, 'https://ror.org/00s0qnx27', 'en', 1, 'https://ror.org/00s0qnx27 Apeejay Stya University'),
(68870, 'https://ror.org/046c3d965', 'en', 1, 'https://ror.org/046c3d965 Aquincum Institute of Technology'),
(68871, 'https://ror.org/03scfd225', 'en', 1, 'https://ror.org/03scfd225 Arab Center for International Humanitarian Law and Human Rights Education Centre Arabe pour l''Education au Droit International Humanitaire et aux Droits Humains'),
(68872, 'https://ror.org/016tt0b65', 'en', 1, 'https://ror.org/016tt0b65 The Archaeological Society at Athens Εν Αθήναις Αρχαιολογική Εταιρεία'),
(68873, 'https://ror.org/046shck20', 'en', 1, 'https://ror.org/046shck20 Association for Social and Environmental Development'),
(68874, 'https://ror.org/01ab9wf13', 'en', 1, 'https://ror.org/01ab9wf13 Argentine Senate Honorable Senado de la Nación Argentina'),
(68875, 'https://ror.org/03cync167', 'en', 1, 'https://ror.org/03cync167 International Summer School of Photography'),
(68876, 'https://ror.org/00yenz435', 'en', 1, 'https://ror.org/00yenz435 AURA-J'),
(68877, 'https://ror.org/02twwc510', 'fr', 1, 'https://ror.org/02twwc510 Association des Journalistes Lesbiennes'),
(68878, 'https://ror.org/03jdn7e64', 'en', 1, 'https://ror.org/03jdn7e64 Association of University Research Parks'),
(68879, 'https://ror.org/011b4c141', 'en', 1, 'https://ror.org/011b4c141 Australian Council of Social Service'),
(68880, 'https://ror.org/05rx18c05', 'no_lang_code', 1, 'https://ror.org/05rx18c05 Aster Medcity'),
(68881, 'https://ror.org/01qegt208', 'en', 1, 'https://ror.org/01qegt208 Armenian Genocide Museum-Institute Foundation'),
(68882, 'https://ror.org/01ye8de62', 'en', 1, 'https://ror.org/01ye8de62 Athens Clarke County Police Department'),
(68883, 'https://ror.org/01g78rb53', 'fr', 1, 'https://ror.org/01g78rb53 Alliance Citoyenne'),
(68884, 'https://ror.org/01w7zp604', 'en', 1, 'https://ror.org/01w7zp604 Azerbaijan State Agricultural University Azərbaycan Dövlət Aqrar Universiteti'),
(68885, 'https://ror.org/0297mhz17', 'en', 1, 'https://ror.org/0297mhz17 Baria Vungtau University Trường Đại học Bà Rịa - Vũng Tàu'),
(68886, 'https://ror.org/02yghr808', 'en', 1, 'https://ror.org/02yghr808 Asian Institute of Medical Sciences'),
(68887, 'https://ror.org/0229h7141', 'no_lang_code', 1, 'https://ror.org/0229h7141 Centre Culturel Bactria'),
(68888, 'https://ror.org/047enf178', 'en', 1, 'https://ror.org/047enf178 Bay Area Oppositional and Conduct Clinic'),
(68889, 'https://ror.org/00p7ztx41', 'en', 1, 'https://ror.org/00p7ztx41 Belarusian Economic Research and Outreach Center'),
(68890, 'https://ror.org/04fb9vg34', 'en', 1, 'https://ror.org/04fb9vg34 Baku Academy of Music Hacıbəyov adına Bakı Musiqi Akademiyası'),
(68891, 'https://ror.org/00qerf253', 'en', 1, 'https://ror.org/00qerf253 Belgrade Open School Beogradska Otvorena Skola'),
(68892, 'https://ror.org/04a0c3v54', 'no_lang_code', 1, 'https://ror.org/04a0c3v54 Azerbaijan Investment (Azerbaijan) Azərbaycan İnvestisiya Şirkəti'),
(68893, 'https://ror.org/05qgz8802', 'no_lang_code', 1, 'https://ror.org/05qgz8802 Ballas, Pelecanos & Associates (Greece)'),
(68894, 'https://ror.org/05tp3m188', 'en', 1, 'https://ror.org/05tp3m188 Bandaranaike Centre for International Studies'),
(68895, 'https://ror.org/03g93g135', 'en', 1, 'https://ror.org/03g93g135 Azerbaijan Social Work Public Union Azərbaycan Sosial İş İctimai Birliyi'),
(68896, 'https://ror.org/0039c1624', 'en', 1, 'https://ror.org/0039c1624 The Bhandarkar Oriental Research Institute भांडारकर ओरिएंटल रिसर्च इन्स्टिट्यूट'),
(68897, 'https://ror.org/018bg7z10', 'en', 1, 'https://ror.org/018bg7z10 Bangladesh Institute of Bank Management বাংলাদেশ ইন্সটিটিউট অফ ব্যাংক মেনেজমেন্ট'),
(68898, 'https://ror.org/05f4fay86', 'en', 1, 'https://ror.org/05f4fay86 Bethlehem Bible College'),
(68899, 'https://ror.org/04bphbz22', 'en', 1, 'https://ror.org/04bphbz22 Bhutan Centre for Media and Democracy'),
(68900, 'https://ror.org/00knfed84', 'en', 1, 'https://ror.org/00knfed84 Bangladesh Institute of International and Strategic Studies বাংলাদেশ ইনস্টিটিউট অফ ইন্টারন্যাশনাল এন্ড স্ট্রাটেজিক স্টাডিজ'),
(68901, 'https://ror.org/03wm0sn72', 'en', 1, 'https://ror.org/03wm0sn72 Barbados Community College'),
(68902, 'https://ror.org/05vz90k92', 'fr', 1, 'https://ror.org/05vz90k92 Bibliothèque d''Agglomération du Pays de Saint-Omer'),
(68903, 'https://ror.org/04hvavg21', 'no_lang_code', 1, 'https://ror.org/04hvavg21 BRAC ব্র্যাক সেন্টার'),
(68904, 'https://ror.org/02gmjfa08', 'no_lang_code', 1, 'https://ror.org/02gmjfa08 Bhagat Phool Singh Mahila Vishwavidyalaya भगत फूल सिंह महिला विश्वविद्यालय'),
(68905, 'https://ror.org/02bpt5c58', 'en', 1, 'https://ror.org/02bpt5c58 Bush Heritage Australia'),
(68906, 'https://ror.org/01qxx5k95', 'no_lang_code', 1, 'https://ror.org/01qxx5k95 Botswana Open University'),
(68907, 'https://ror.org/023h7p541', 'en', 1, 'https://ror.org/023h7p541 Business Technology Incubator of Technical Faculties Belgrade'),
(68908, 'https://ror.org/03vg1zh21', 'no_lang_code', 1, 'https://ror.org/03vg1zh21 Brinks Gilson & Lione (United States)'),
(68909, 'https://ror.org/04gfanq43', 'no_lang_code', 1, 'https://ror.org/04gfanq43 British American Tobacco (Uzbekistan)'),
(68910, 'https://ror.org/04ex4j806', 'en', 1, 'https://ror.org/04ex4j806 Civil Service'),
(68911, 'https://ror.org/00mp54j66', 'en', 1, 'https://ror.org/00mp54j66 Bryansk Regional Scientific Universal Library. F. I. Tyutchev'),
(68912, 'https://ror.org/02nmtzc87', 'no_lang_code', 1, 'https://ror.org/02nmtzc87 Bitlink (Australia)'),
(68913, 'https://ror.org/052bwdm80', 'en', 1, 'https://ror.org/052bwdm80 Bucks County Intermediate Unit'),
(68914, 'https://ror.org/031v20w81', 'en', 1, 'https://ror.org/031v20w81 Blueenergy'),
(68915, 'https://ror.org/024gr5317', 'no_lang_code', 1, 'https://ror.org/024gr5317 Blueenergy'),
(68916, 'https://ror.org/00rnjpt59', 'en', 1, 'https://ror.org/00rnjpt59 Bulacan Agricultural State College'),
(68917, 'https://ror.org/03r4xtg30', 'en', 1, 'https://ror.org/03r4xtg30 Cat Tien National Park Vườn Quốc Gia Cát Tiên'),
(68918, 'https://ror.org/00smxfq50', 'en', 1, 'https://ror.org/00smxfq50 Bulgarian Association for the Promotion of Citizens Initiative Българско сдружение за насърчаване на гражданската инициатива'),
(68919, 'https://ror.org/03s3a5s78', 'en', 1, 'https://ror.org/03s3a5s78 Bulgarian Helsinki Committee'),
(68920, 'https://ror.org/04a59gq59', 'en', 1, 'https://ror.org/04a59gq59 Bureau of Plant Industry Kawanihan ng Paghahalaman'),
(68921, 'https://ror.org/05cr6kr86', 'en', 1, 'https://ror.org/05cr6kr86 Centre for Environment Education'),
(68922, 'https://ror.org/04723ev36', 'en', 1, 'https://ror.org/04723ev36 Centre for European Reform'),
(68923, 'https://ror.org/045y8mm25', 'en', 1, 'https://ror.org/045y8mm25 Centre for Multi-disciplinary Development Research'),
(68924, 'https://ror.org/03688j326', 'en', 1, 'https://ror.org/03688j326 Centre for Policy Alternatives'),
(68925, 'https://ror.org/01cregx09', 'en', 1, 'https://ror.org/01cregx09 Ceiba Foundation for Tropical Conservation'),
(68926, 'https://ror.org/04bk95661', 'en', 1, 'https://ror.org/04bk95661 Center for Advanced Defense Studies'),
(68927, 'https://ror.org/03trz9s27', 'en', 1, 'https://ror.org/03trz9s27 Centre for Social Innovation'),
(68928, 'https://ror.org/03b5pw144', 'en', 1, 'https://ror.org/03b5pw144 Centre for the Study of Culture and Society ಸಂಸ್ಕೃತಿ ಮತ್ತು ಸಮಾಜ ಅಧ್ಯಯನ ಕೇಂದ್ರದ'),
(68929, 'https://ror.org/059d9my13', 'en', 1, 'https://ror.org/059d9my13 Centre for Women War Victims'),
(68930, 'https://ror.org/0323bjj73', 'en', 1, 'https://ror.org/0323bjj73 Centre for Women’s Research'),
(68931, 'https://ror.org/05vvtz217', 'en', 1, 'https://ror.org/05vvtz217 Centre for Women''s Development Studies'),
(68932, 'https://ror.org/015pscp08', 'cs', 1, 'https://ror.org/015pscp08 Cesta Domu'),
(68933, 'https://ror.org/03whr7s66', 'en', 1, 'https://ror.org/03whr7s66 Center for Interdisciplinary Studies'),
(68934, 'https://ror.org/02qwv6g90', 'no_lang_code', 1, 'https://ror.org/02qwv6g90 Chab Dai'),
(68935, 'https://ror.org/01xaac745', 'en', 1, 'https://ror.org/01xaac745 Chai Found Music Workshop'),
(68936, 'https://ror.org/02r6bnp18', 'en', 1, 'https://ror.org/02r6bnp18 Chance for Education Šance na vzdělání'),
(68937, 'https://ror.org/00pcsg584', 'en', 1, 'https://ror.org/00pcsg584 Turkiye Diyanet Foundation'),
(68938, 'https://ror.org/059rzps67', 'en', 1, 'https://ror.org/059rzps67 Center for Khmer Studies'),
(68939, 'https://ror.org/03zq31024', 'en', 1, 'https://ror.org/03zq31024 Chancellery of the Prime Minister Kancelaria Prezesa Rady Ministrów'),
(68940, 'https://ror.org/02bv7qz69', 'en', 1, 'https://ror.org/02bv7qz69 Center for Large Landscape Conservation'),
(68941, 'https://ror.org/05g94gn19', 'no_lang_code', 1, 'https://ror.org/05g94gn19 Change.org (United States)'),
(68942, 'https://ror.org/00h63w240', 'en', 1, 'https://ror.org/00h63w240 Universal University Универсальный университет'),
(68943, 'https://ror.org/02g7f1v18', 'en', 1, 'https://ror.org/02g7f1v18 The Center for Public Integrity'),
(68944, 'https://ror.org/01sm4nm47', 'en', 1, 'https://ror.org/01sm4nm47 Boromarajonani College of Nursing วิทยาลัยพยาบาลบรมราชชนนี เชียงใหม่'),
(68945, 'https://ror.org/00g732a62', 'en', 1, 'https://ror.org/00g732a62 Calorx Teachers'' University'),
(68946, 'https://ror.org/01wb8ph33', 'en', 1, 'https://ror.org/01wb8ph33 Center for Social Sciences სოციალურ მეცნიერებათა ცენტრი'),
(68947, 'https://ror.org/0372j2579', 'en', 1, 'https://ror.org/0372j2579 Cambodian Institute for Cooperation and Peace វិទ្យាស្ថានខ្មែរសម្រាប់សហប្រតិបត្តិការនិងសន្តិភាព'),
(68948, 'https://ror.org/05j0jp984', 'az', 1, 'https://ror.org/05j0jp984 Strateji Araşdırmalar Mərkəzi'),
(68949, 'https://ror.org/007zp0p53', 'en', 1, 'https://ror.org/007zp0p53 Canadian Institute of Technology Instituti Kanadez i Teknologjisë'),
(68950, 'https://ror.org/02zgtky13', 'en', 1, 'https://ror.org/02zgtky13 Center for the Study of Childhood and Adolescence'),
(68951, 'https://ror.org/02ae15t63', 'es', 1, 'https://ror.org/02ae15t63 Centro de Implementación de Políticas Públicas para la Equidad y el Crecimiento'),
(68952, 'https://ror.org/045e6n322', 'en', 1, 'https://ror.org/045e6n322 Chelsea Primary School'),
(68953, 'https://ror.org/00147y550', 'en', 1, 'https://ror.org/00147y550 Caribbean Institute for Meteorology and Hydrology'),
(68954, 'https://ror.org/03n4dkj44', 'no_lang_code', 1, 'https://ror.org/03n4dkj44 Chhandam School of Kathak'),
(68955, 'https://ror.org/02pd2vd80', 'en', 1, 'https://ror.org/02pd2vd80 Chicago Arts Partnerships in Education'),
(68956, 'https://ror.org/04mm4cb76', 'en', 1, 'https://ror.org/04mm4cb76 Chicago Youth Symphony Orchestras'),
(68957, 'https://ror.org/050bxrz29', 'en', 1, 'https://ror.org/050bxrz29 Citizen Engagement Laboratory'),
(68958, 'https://ror.org/039n1nw87', 'en', 1, 'https://ror.org/039n1nw87 New York City Council'),
(68959, 'https://ror.org/00aahmr77', 'en', 1, 'https://ror.org/00aahmr77 City of Asylum'),
(68960, 'https://ror.org/033z00p21', 'en', 1, 'https://ror.org/033z00p21 Centre for Social Research and Development Trung tâm Nghiên cứu và Phát triển xã hội'),
(68961, 'https://ror.org/02mjd7y85', 'en', 1, 'https://ror.org/02mjd7y85 Homeland Security and Emergency Management'),
(68962, 'https://ror.org/01z48vg94', 'en', 1, 'https://ror.org/01z48vg94 Central Adoption Resource Authority केन्द्रीय दत्तक ग्रहण संसाधन प्राधिकरण'),
(68963, 'https://ror.org/05d4wmc20', 'en', 1, 'https://ror.org/05d4wmc20 City of Knowledge Ciudad del Saber'),
(68964, 'https://ror.org/01z2dq675', 'no_lang_code', 1, 'https://ror.org/01z2dq675 Chhandam School of Kathak'),
(68965, 'https://ror.org/01hsyq967', 'en', 1, 'https://ror.org/01hsyq967 Choithram College of Nursing चोइथराम कॉलेज ऑफ़ नर्सिंग'),
(68966, 'https://ror.org/01phse664', 'en', 1, 'https://ror.org/01phse664 Azərbaycan Respublikasının Mərkəzi Bankı Central Bank of the Republic of Azerbaijan'),
(68967, 'https://ror.org/00txb3a66', 'en', 1, 'https://ror.org/00txb3a66 Christchurch City Council'),
(68968, 'https://ror.org/02pf3fv69', 'en', 1, 'https://ror.org/02pf3fv69 Central Bank of Turkmenistan Türkmenistanyň Merkezi Banky'),
(68969, 'https://ror.org/024z18394', 'es', 1, 'https://ror.org/024z18394 Banco Central del Uruguay Central Bank of Uruguay'),
(68970, 'https://ror.org/03g64g296', 'en', 1, 'https://ror.org/03g64g296 The Christian and Missionary Alliance'),
(68971, 'https://ror.org/00ysy8y40', 'en', 1, 'https://ror.org/00ysy8y40 Cleveland FES Center'),
(68972, 'https://ror.org/008p4q226', 'en', 1, 'https://ror.org/008p4q226 Central State Archive of the Republic of Kazakhstan Центральный государственный архив Республики Казахстан Қазақстан Республикасы Орталық мемлекеттік мұрағаты'),
(68973, 'https://ror.org/05ttdrn83', 'en', 1, 'https://ror.org/05ttdrn83 Den Haag Centrum voor Strategische Studies The Hague Centre for Strategic Studies'),
(68974, 'https://ror.org/05dv0q502', 'en', 1, 'https://ror.org/05dv0q502 Chartered Institute of Management Accountants'),
(68975, 'https://ror.org/05djs6314', 'en', 1, 'https://ror.org/05djs6314 Clinton Foundation'),
(68976, 'https://ror.org/020esa803', 'es', 1, 'https://ror.org/020esa803 Club Matador'),
(68977, 'https://ror.org/03ww5we09', 'no_lang_code', 1, 'https://ror.org/03ww5we09 CMM Energy (United States)'),
(68978, 'https://ror.org/03n8a0v21', 'en', 1, 'https://ror.org/03n8a0v21 Coalition for Community Schools'),
(68979, 'https://ror.org/02nsvrr55', 'en', 1, 'https://ror.org/02nsvrr55 Centre for Conservation Biology & Sustainable Development'),
(68980, 'https://ror.org/03ysxv814', 'en', 1, 'https://ror.org/03ysxv814 Center for Contemporary Arts Prague Centrum pro Současné Umění Praha'),
(68981, 'https://ror.org/01st8zv03', 'es', 1, 'https://ror.org/01st8zv03 ConCuerpos'),
(68982, 'https://ror.org/021ez5n36', 'en', 1, 'https://ror.org/021ez5n36 College of Science, Technology and Applied Arts of Trinidad and Tobago'),
(68983, 'https://ror.org/01bs3vx31', 'en', 1, 'https://ror.org/01bs3vx31 Centro di Documentazione Ebraica Contemporanea Foundation Jewish Contemporary Documentation Center La Fondazione Centro di Documentazione Ebraica Contemporanea'),
(68984, 'https://ror.org/04wxqpw15', 'en', 1, 'https://ror.org/04wxqpw15 Court of Appeal ศาลอุทธรณ์'),
(68985, 'https://ror.org/02k1py847', 'en', 1, 'https://ror.org/02k1py847 Conservation through Poverty Alleviation International'),
(68986, 'https://ror.org/02a3zx434', 'pt', 1, 'https://ror.org/02a3zx434 Conservatório Pernambucano de Música'),
(68987, 'https://ror.org/01sg0nk94', 'en', 1, 'https://ror.org/01sg0nk94 CR Rao Advanced Institute of Mathematics, Statistics and Computer Science'),
(68988, 'https://ror.org/033xmtn97', 'en', 1, 'https://ror.org/033xmtn97 Crimean Republican Institute of Post-Decisive Pedagogical Education Крымский республиканский институт постдипломного педагогического образования'),
(68989, 'https://ror.org/05ww0cq12', 'en', 1, 'https://ror.org/05ww0cq12 Colorado Public Television'),
(68990, 'https://ror.org/02qst3a08', 'en', 1, 'https://ror.org/02qst3a08 Crimea University of Culture Art and Tourism'),
(68991, 'https://ror.org/022ka4k09', 'es', 1, 'https://ror.org/022ka4k09 Museo De Arte Contemporaneo'),
(68992, 'https://ror.org/007f72038', 'en', 1, 'https://ror.org/007f72038 Coordinating Ministry for Human Development and Cultural Affairs Kementerian Koordinator Bidang Pembangunan Manusia dan Kebudayaan'),
(68993, 'https://ror.org/044cd9z60', 'en', 1, 'https://ror.org/044cd9z60 Cope Environmental Center'),
(68994, 'https://ror.org/0221z8061', 'en', 1, 'https://ror.org/0221z8061 Settlement Centre Waikato'),
(68995, 'https://ror.org/058hheg54', 'en', 1, 'https://ror.org/058hheg54 Hamilton Multicultural Services Trust'),
(68996, 'https://ror.org/00se8ng51', 'no_lang_code', 1, 'https://ror.org/00se8ng51 CSL Materials (United States)'),
(68997, 'https://ror.org/03t9eke74', 'en', 1, 'https://ror.org/03t9eke74 Corrymeela Community'),
(68998, 'https://ror.org/00mmb0c67', 'en', 1, 'https://ror.org/00mmb0c67 Human Resource Development Center Център за развитие на човешките ресурси'),
(68999, 'https://ror.org/00h2d3028', 'no_lang_code', 1, 'https://ror.org/00h2d3028 Umalusi'),
(69000, 'https://ror.org/04vc7kq70', 'en', 1, 'https://ror.org/04vc7kq70 Consejo de la Magistratura de la Nación Council of Magistrates of the Nation'),
(69001, 'https://ror.org/03kd8zx94', 'en', 1, 'https://ror.org/03kd8zx94 Council of State Administrators of Vocational Rehabilitation'),
(69002, 'https://ror.org/00pvy5f43', 'en', 1, 'https://ror.org/00pvy5f43 Da Nang Institute For Socio - Economic Development VIỆN NGHIÊN CỨU PHÁT TRIỂN KINH TẾ - XÃ HỘI ĐÀ NẴNG'),
(69003, 'https://ror.org/03mf8nk10', 'en', 1, 'https://ror.org/03mf8nk10 DanChurchAid'),
(69004, 'https://ror.org/05xcdy991', 'en', 1, 'https://ror.org/05xcdy991 Department of Archaeology தொல்பொருளியல் திணைக்களம் පුරාවිද්යා දෙපාර්තමේන්තුව'),
(69005, 'https://ror.org/01jc6t452', 'no_lang_code', 1, 'https://ror.org/01jc6t452 Dar al Athar al Islamiyyah مركز الأمريكاني الثقافي - دار الآثار الإسلامية'),
(69006, 'https://ror.org/058qzvd72', 'en', 1, 'https://ror.org/058qzvd72 Cyprus Arbitration & Mediation Centre'),
(69007, 'https://ror.org/05fhxms97', 'en', 1, 'https://ror.org/05fhxms97 Dar Al-Kalima University College of Arts and Culture كلية دار الكلمة الجامعية للفنون والثقافة'),
(69008, 'https://ror.org/006t3b628', 'cs', 1, 'https://ror.org/006t3b628 Nadace České Architektury'),
(69009, 'https://ror.org/012tyys59', 'sq', 1, 'https://ror.org/012tyys59 Kolegji Dardania'),
(69010, 'https://ror.org/02yv9pn14', 'en', 1, 'https://ror.org/02yv9pn14 Department of Finance'),
(69011, 'https://ror.org/00fb17655', 'en', 1, 'https://ror.org/00fb17655 DJ Academy of Design'),
(69012, 'https://ror.org/01vspjx51', 'tl', 1, 'https://ror.org/01vspjx51 De La Salle Lipa'),
(69013, 'https://ror.org/0131ydd68', 'nl', 1, 'https://ror.org/0131ydd68 De Tijd'),
(69014, 'https://ror.org/05jwhr041', 'en', 1, 'https://ror.org/05jwhr041 Donetsk Christian University Донецький Християнський Університет'),
(69015, 'https://ror.org/01xehft43', 'en', 1, 'https://ror.org/01xehft43 Delaware Youth Center'),
(69016, 'https://ror.org/022axmn44', 'en', 1, 'https://ror.org/022axmn44 Detroit River International Wildlife Refuge'),
(69017, 'https://ror.org/053mejc32', 'id', 1, 'https://ror.org/053mejc32 Dewan Kesenian Jakarta'),
(69018, 'https://ror.org/00ej43w89', 'en', 1, 'https://ror.org/00ej43w89 Dallas Office of Emergency Management'),
(69019, 'https://ror.org/05r04kd95', 'no_lang_code', 1, 'https://ror.org/05r04kd95 Dovzhenko Film Studios Національна кіностудія художніх фільмів імені О. Довженка'),
(69020, 'https://ror.org/04egvyc40', 'en', 1, 'https://ror.org/04egvyc40 DrawBridge'),
(69021, 'https://ror.org/02k3cg524', 'fi', 1, 'https://ror.org/02k3cg524 Demos Helsinki'),
(69022, 'https://ror.org/016vd5517', 'no_lang_code', 1, 'https://ror.org/016vd5517 Dillen Associates (United States)'),
(69023, 'https://ror.org/02297eg71', 'en', 1, 'https://ror.org/02297eg71 Democracy Development Centre Розвиток демократії'),
(69024, 'https://ror.org/01s3pkg06', 'en', 1, 'https://ror.org/01s3pkg06 Diplomatic Academy of Vienna Diplomatische Akademie Wien'),
(69025, 'https://ror.org/05jsp9k64', 'en', 1, 'https://ror.org/05jsp9k64 Economic Research Centre İqtisadi Tədqiqatlar Mərkəzi'),
(69026, 'https://ror.org/02rjrfe33', 'en', 1, 'https://ror.org/02rjrfe33 Earthjustice'),
(69027, 'https://ror.org/048t31q52', 'en', 1, 'https://ror.org/048t31q52 Hennadii Udovenko Diplomatic Academy Of Ukraine Дипломатична академія України'),
(69028, 'https://ror.org/02n7f7n49', 'en', 1, 'https://ror.org/02n7f7n49 Diplomatic Academy of Vietnam Học viện Ngoại giao Việt Nam'),
(69029, 'https://ror.org/02veev176', 'es', 1, 'https://ror.org/02veev176 Instituto Nacional de Biodiversidad'),
(69030, 'https://ror.org/01fq8hw04', 'en', 1, 'https://ror.org/01fq8hw04 Evangelical Church Winning All'),
(69031, 'https://ror.org/0424v9t30', 'en', 1, 'https://ror.org/0424v9t30 Indian Institute of Water Management'),
(69032, 'https://ror.org/04xtpyw05', 'fr', 1, 'https://ror.org/04xtpyw05 École Normale Supérieure École Normale Supérieure d''Abidjan'),
(69033, 'https://ror.org/02wbvek51', 'en', 1, 'https://ror.org/02wbvek51 Edna Manley College of the Visual and Performing Arts'),
(69034, 'https://ror.org/04qnap020', 'en', 1, 'https://ror.org/04qnap020 World Healthal Trust'),
(69035, 'https://ror.org/00z610a60', 'en', 1, 'https://ror.org/00z610a60 Archivo y Biblioteca Nacionales de Bolivia National Archive and Library of Bolivia'),
(69036, 'https://ror.org/01zsng323', 'en', 1, 'https://ror.org/01zsng323 European Network of Guardianship Institutions'),
(69037, 'https://ror.org/0435vpd21', 'en', 1, 'https://ror.org/0435vpd21 Environmental Education Exchange'),
(69038, 'https://ror.org/01324gs33', 'no_lang_code', 1, 'https://ror.org/01324gs33 Elladam Consulting (Hungary)'),
(69039, 'https://ror.org/00x3qgf57', 'hu', 1, 'https://ror.org/00x3qgf57 Eötvös József Gimnázium'),
(69040, 'https://ror.org/0345vzk85', 'en', 1, 'https://ror.org/0345vzk85 Equality Now'),
(69041, 'https://ror.org/008cg6v69', 'en', 1, 'https://ror.org/008cg6v69 Erdiston Teachers'' Training College'),
(69042, 'https://ror.org/031hre343', 'en', 1, 'https://ror.org/031hre343 Emirates Center for Strategic Studies and Research'),
(69043, 'https://ror.org/04hqk0696', 'en', 1, 'https://ror.org/04hqk0696 Fabric Workshop and Museum'),
(69044, 'https://ror.org/017vsz909', 'da', 1, 'https://ror.org/017vsz909 EUC Nordvestsjaelland ErhvervsUddannelses Center Nordvestsjaelland'),
(69045, 'https://ror.org/02v351s66', 'en', 1, 'https://ror.org/02v351s66 Australian Energy Council'),
(69046, 'https://ror.org/01e8m9d21', 'en', 1, 'https://ror.org/01e8m9d21 Ministry of Foreign Affairs وزارة الخارجية المصرية'),
(69047, 'https://ror.org/018z2vp10', 'da', 1, 'https://ror.org/018z2vp10 Rybners'),
(69048, 'https://ror.org/01315ff40', 'en', 1, 'https://ror.org/01315ff40 English Language Teachers Association of India'),
(69049, 'https://ror.org/048ytzw49', 'es', 1, 'https://ror.org/048ytzw49 Escuela de Actores de Canarias'),
(69050, 'https://ror.org/0096pft28', 'fr', 1, 'https://ror.org/0096pft28 Espoir Vie-Togo'),
(69051, 'https://ror.org/017zq4f19', 'en', 1, 'https://ror.org/017zq4f19 Espoo Music Institute Espoon Musiikkiopisto'),
(69052, 'https://ror.org/00j7d4t09', 'fr', 1, 'https://ror.org/00j7d4t09 Institut Européen De La Qualité Totale'),
(69053, 'https://ror.org/04c0nne72', 'en', 1, 'https://ror.org/04c0nne72 Rylsky Institute of Art Studies, Folklore and Ethnology Інститут мистецтвознавства, фольклористики та етнології ім. М. Т. Рильського'),
(69054, 'https://ror.org/00p1gt488', 'en', 1, 'https://ror.org/00p1gt488 European Association for the Defence of Human Rights'),
(69055, 'https://ror.org/003w3ym70', 'en', 1, 'https://ror.org/003w3ym70 FCT College of Education'),
(69056, 'https://ror.org/048954822', 'en', 1, 'https://ror.org/048954822 Flemish Radio and Television Broadcasting Organisation Vlaamse Radio- en Televisieomroeporganisatie'),
(69057, 'https://ror.org/05tbdj203', 'en', 1, 'https://ror.org/05tbdj203 Polistovsky National Nature Reserve Полистовский заповедник'),
(69058, 'https://ror.org/027441620', 'en', 1, 'https://ror.org/027441620 Florence English Language Theatre Artists'),
(69059, 'https://ror.org/01x5kbv02', 'hu', 1, 'https://ror.org/01x5kbv02 Budapesti Fazekas Mihály Gyakorló Általános Iskola és Gimnázium'),
(69060, 'https://ror.org/003td8q57', 'pt', 1, 'https://ror.org/003td8q57 Faesa Centro Universitario'),
(69061, 'https://ror.org/04a092p69', 'no_lang_code', 1, 'https://ror.org/04a092p69 Fo Guang Shan 佛光山'),
(69062, 'https://ror.org/03mt2tp20', 'en', 1, 'https://ror.org/03mt2tp20 Federation for Self Financing Tertiary Education 自資高等教育聯盟'),
(69063, 'https://ror.org/04s4ypk37', 'sq', 1, 'https://ror.org/04s4ypk37 Instituti i Sigurisë Ushqimore dhe Veterinarisë'),
(69064, 'https://ror.org/02jcdkn30', 'no_lang_code', 1, 'https://ror.org/02jcdkn30 Forum 2000'),
(69065, 'https://ror.org/05ydvwr43', 'no_lang_code', 1, 'https://ror.org/05ydvwr43 Full Radius Dance (United States)'),
(69066, 'https://ror.org/04r3a4v95', 'fr', 1, 'https://ror.org/04r3a4v95 Comité Rhodanien d’Accueil des Réfugiés et de Défense du Droit d''Asile Forum Réfugiés - Cosi'),
(69067, 'https://ror.org/00j75nc06', 'en', 1, 'https://ror.org/00j75nc06 First Floor Gallery Harare'),
(69068, 'https://ror.org/029w2ds07', 'en', 1, 'https://ror.org/029w2ds07 Foundation for International Cooperation In Higher Education of Taiwan 財團法人高等教育國際合作基金會'),
(69069, 'https://ror.org/0570trv98', 'en', 1, 'https://ror.org/0570trv98 Future Academy فيوتشر اكاديمى'),
(69070, 'https://ror.org/01j1yd322', 'en', 1, 'https://ror.org/01j1yd322 Foundation for Revitalisation of Local Health Traditions');
INSERT INTO `rors` VALUES
(69071, 'https://ror.org/01n95pm43', 'en', 1, 'https://ror.org/01n95pm43 Foundation for the Advancement of Social Theory'),
(69072, 'https://ror.org/01tqtaq02', 'no_lang_code', 1, 'https://ror.org/01tqtaq02 Fauji Fertilizer (Pakistan)'),
(69073, 'https://ror.org/04ex99s09', 'en', 1, 'https://ror.org/04ex99s09 Foundations of Success'),
(69074, 'https://ror.org/04c5enf18', 'en', 1, 'https://ror.org/04c5enf18 Galicia Jewish Museum Żydowskie Muzeum Galicja'),
(69075, 'https://ror.org/05xemz742', 'en', 1, 'https://ror.org/05xemz742 Government of Mizoram'),
(69076, 'https://ror.org/02tgy3j57', 'en', 1, 'https://ror.org/02tgy3j57 Uttarakhand Government'),
(69077, 'https://ror.org/04j57sj69', 'ga', 1, 'https://ror.org/04j57sj69 Garda Síochána Inspectorate'),
(69078, 'https://ror.org/02s1nfr38', 'en', 1, 'https://ror.org/02s1nfr38 GDP Ayurvedic University'),
(69079, 'https://ror.org/0190s7p04', 'en', 1, 'https://ror.org/0190s7p04 Académie de France à Rome French Academy in Rome'),
(69080, 'https://ror.org/014txmb23', 'en', 1, 'https://ror.org/014txmb23 Grace Mutual'),
(69081, 'https://ror.org/046qxha37', 'en', 1, 'https://ror.org/046qxha37 Azerbaijan Genetic Resources Institute Genetik Ehtiyatlar İnstitutu'),
(69082, 'https://ror.org/03060mz76', 'en', 1, 'https://ror.org/03060mz76 Greater Boston Interfaith Organization'),
(69083, 'https://ror.org/03vd5n125', 'no_lang_code', 1, 'https://ror.org/03vd5n125 FringeArts'),
(69084, 'https://ror.org/04k10z253', 'en', 1, 'https://ror.org/04k10z253 Green Capacity'),
(69085, 'https://ror.org/028pb7349', 'en', 1, 'https://ror.org/028pb7349 Green Circle Zelený kruh'),
(69086, 'https://ror.org/01p5xff03', 'no_lang_code', 1, 'https://ror.org/01p5xff03 Gorgias Press (United States)'),
(69087, 'https://ror.org/023nbxm56', 'en', 1, 'https://ror.org/023nbxm56 Green Liberty Zaļā brīvība'),
(69088, 'https://ror.org/033anq036', 'no_lang_code', 1, 'https://ror.org/033anq036 GreenTech Consultants (Sri Lanka)'),
(69089, 'https://ror.org/03jn9cy69', 'en', 1, 'https://ror.org/03jn9cy69 Harry S. Truman Presidential Library and Museum'),
(69090, 'https://ror.org/03tzxbr55', 'en', 1, 'https://ror.org/03tzxbr55 Georgian Arts and Culture Center ქართული ხელოვნების ინსტიტუტი წამყვანი მეცნიერი'),
(69091, 'https://ror.org/00hty4y33', 'en', 1, 'https://ror.org/00hty4y33 Headlands Center for the Arts'),
(69092, 'https://ror.org/03n103c50', 'en', 1, 'https://ror.org/03n103c50 Habitat for Humanity'),
(69093, 'https://ror.org/038jw0f49', 'en', 1, 'https://ror.org/038jw0f49 The German Marshall Fund of the United States'),
(69094, 'https://ror.org/04g2vnx61', 'en', 1, 'https://ror.org/04g2vnx61 Hellenic Adult Education Association Επιστημονική Ένωση Εκπαίδευσης Ενηλίκων'),
(69095, 'https://ror.org/00zqvjm52', 'en', 1, 'https://ror.org/00zqvjm52 Global Action Project'),
(69096, 'https://ror.org/05ss64h09', 'en', 1, 'https://ror.org/05ss64h09 Green Cross International'),
(69097, 'https://ror.org/052rzq754', 'no_lang_code', 1, 'https://ror.org/052rzq754 Global Professional Consulting (United States)'),
(69098, 'https://ror.org/040an2851', 'en', 1, 'https://ror.org/040an2851 Hellenic Children''s Museum Ελληνικό Παιδικό Μουσείο'),
(69099, 'https://ror.org/00erpmf75', 'en', 1, 'https://ror.org/00erpmf75 Institute of Geography Named after Academician Hasan Aliyev'),
(69100, 'https://ror.org/04y2vsa64', 'no_lang_code', 1, 'https://ror.org/04y2vsa64 Hogan Lovells (United States)'),
(69101, 'https://ror.org/030qgq632', 'en', 1, 'https://ror.org/030qgq632 Her Majesty''s Inspectorate of Probation'),
(69102, 'https://ror.org/04rsv0546', 'no_lang_code', 1, 'https://ror.org/04rsv0546 Holland and Knight (United Arab Emirates)'),
(69103, 'https://ror.org/01bjs1d88', 'en', 1, 'https://ror.org/01bjs1d88 Helsingfors Konstmuseum Helsingin Taidemuseo Helsinki Art Museum'),
(69104, 'https://ror.org/03y298h26', 'en', 1, 'https://ror.org/03y298h26 HB Studio'),
(69105, 'https://ror.org/04gww5p47', 'en', 1, 'https://ror.org/04gww5p47 Heritage Lower Saint Lawrence'),
(69106, 'https://ror.org/0431j1g69', 'en', 1, 'https://ror.org/0431j1g69 Hendrick Hudson School District'),
(69107, 'https://ror.org/028wrtm78', 'en', 1, 'https://ror.org/028wrtm78 Hong Kong America Center'),
(69108, 'https://ror.org/041ec4084', 'en', 1, 'https://ror.org/041ec4084 Her Majesty''s Inspectorate of Constabulary in Scotland'),
(69109, 'https://ror.org/01neznn74', 'en', 1, 'https://ror.org/01neznn74 Honolulu Theatre for Youth'),
(69110, 'https://ror.org/05065r248', 'en', 1, 'https://ror.org/05065r248 Horn of Africa Press Institute'),
(69111, 'https://ror.org/01mqnjq55', 'en', 1, 'https://ror.org/01mqnjq55 Houston Galveston Institute'),
(69112, 'https://ror.org/02rfbsc53', 'fr', 1, 'https://ror.org/02rfbsc53 Institut Supérieur des Études Technologiques en Communications de Tunis لمعهد العالي للدراسات التكنولوجية في المواصلات بتونس'),
(69113, 'https://ror.org/03y8jje75', 'en', 1, 'https://ror.org/03y8jje75 Banner Health Foundation'),
(69114, 'https://ror.org/00wvz2203', 'en', 1, 'https://ror.org/00wvz2203 Higher Learning Commission'),
(69115, 'https://ror.org/05tcyv616', 'es', 1, 'https://ror.org/05tcyv616 Instituto Superior Tecnológico de Artes del Ecuador'),
(69116, 'https://ror.org/00e452s52', 'en', 1, 'https://ror.org/00e452s52 Highlanes Gallery'),
(69117, 'https://ror.org/027yyz170', 'en', 1, 'https://ror.org/027yyz170 Himalayan Environmental Studies and Conservation Organization'),
(69118, 'https://ror.org/006j9rn47', 'en', 1, 'https://ror.org/006j9rn47 Hypatia of Alexandria Institute for Reflexion and Studies'),
(69119, 'https://ror.org/01f5kte17', 'en', 1, 'https://ror.org/01f5kte17 I Choose Life'),
(69120, 'https://ror.org/021j6vs44', 'en', 1, 'https://ror.org/021j6vs44 Iceland Symphony Orchestra Sinfóníuhljómsveit Íslands'),
(69121, 'https://ror.org/025t58v56', 'no_lang_code', 1, 'https://ror.org/025t58v56 Iguacu'),
(69122, 'https://ror.org/05fkw0228', 'no_lang_code', 1, 'https://ror.org/05fkw0228 Delta International (Georgia) სსიპ - სსსტც დელტა'),
(69123, 'https://ror.org/05q52xn14', 'es', 1, 'https://ror.org/05q52xn14 Instituto de Medicina y Biología Experimental de Cuyo'),
(69124, 'https://ror.org/00jet1p36', 'en', 1, 'https://ror.org/00jet1p36 Indian Institute of Forest Management भारतीय वन प्रबन्धन संस्थान'),
(69125, 'https://ror.org/02ha7nd65', 'en', 1, 'https://ror.org/02ha7nd65 Indian Institute of Journalism and New Media'),
(69126, 'https://ror.org/046xn0c82', 'en', 1, 'https://ror.org/046xn0c82 Indian Institute of Mass Communication भारतीय जन संचार संस्थान'),
(69127, 'https://ror.org/056xtp403', 'en', 1, 'https://ror.org/056xtp403 Institute of Archeology and Ethnography Институт археологии и этнографии'),
(69128, 'https://ror.org/010tqdr51', 'en', 1, 'https://ror.org/010tqdr51 The Institute for Bird Populations'),
(69129, 'https://ror.org/01sas2f78', 'es', 1, 'https://ror.org/01sas2f78 Instituto de Ciencias Astronómicas, de la Tierra y del Espacio'),
(69130, 'https://ror.org/012yc1x46', 'en', 1, 'https://ror.org/012yc1x46 Botanika İnstitutu Institute of Botany'),
(69131, 'https://ror.org/04d2pnx52', 'en', 1, 'https://ror.org/04d2pnx52 Institute for Complex Analysis of Regional Problems'),
(69132, 'https://ror.org/049rm1a24', 'en', 1, 'https://ror.org/049rm1a24 International Finance Corporation'),
(69133, 'https://ror.org/01y6sx232', 'sr', 1, 'https://ror.org/01y6sx232 Institut za savremenu istoriju'),
(69134, 'https://ror.org/04avmkt41', 'en', 1, 'https://ror.org/04avmkt41 Institute for Defence Studies and Analyses रक्षा अध्ययन और विश्लेषण संस्थान'),
(69135, 'https://ror.org/02f443s15', 'en', 1, 'https://ror.org/02f443s15 Institut Khimii Imeni V.i.nikitina Akademii Nauk Respubliki Tajikistan Institute of Chemistry named after V.I. Nikitin Институти кимиёи ба номи В.И.Никитини Академияи илмҳои Ҷумҳурии Тоҷикистон'),
(69136, 'https://ror.org/02mrr4460', 'en', 1, 'https://ror.org/02mrr4460 Institute for Education in International Media'),
(69137, 'https://ror.org/038y41363', 'cs', 1, 'https://ror.org/038y41363 Nadace Neziskovky'),
(69138, 'https://ror.org/02e2v3e15', 'es', 1, 'https://ror.org/02e2v3e15 Instituto de Química del Noroeste Argentino'),
(69139, 'https://ror.org/002tst934', 'en', 1, 'https://ror.org/002tst934 Institute for International Urban Development'),
(69140, 'https://ror.org/01v7z1116', 'it', 1, 'https://ror.org/01v7z1116 Istituto storico italiano per il Medio Evo'),
(69141, 'https://ror.org/04ff64s07', 'en', 1, 'https://ror.org/04ff64s07 Institute of Diplomacy and Foreign Relations'),
(69142, 'https://ror.org/04wdj7e85', 'en', 1, 'https://ror.org/04wdj7e85 LifeMoves'),
(69143, 'https://ror.org/019msr682', 'en', 1, 'https://ror.org/019msr682 Colmar Inra Research Centre Le Centre Inra de Colmar'),
(69144, 'https://ror.org/00bv27459', 'es', 1, 'https://ror.org/00bv27459 Instituto Superior de Investigaciones Biológicas'),
(69145, 'https://ror.org/00vtb6v32', 'en', 1, 'https://ror.org/00vtb6v32 Institute of Educational Sciences Institutul de Ştiinţe ale Educaţiei'),
(69146, 'https://ror.org/04g8kt609', 'en', 1, 'https://ror.org/04g8kt609 O‘zbekiston Respublikasi Fanlar Akademiyasi Tarix Instituti The Institute of History of The Academy of Sciences of The Republic of Uzbekistan Институт Истории Академии Наук Республики Узбекистан'),
(69147, 'https://ror.org/01yjtde78', 'en', 1, 'https://ror.org/01yjtde78 Historický Ústav Slovenskej Akadémie Vied Institute of History of the Slovak Academy of Sciences'),
(69148, 'https://ror.org/004zjze34', 'en', 1, 'https://ror.org/004zjze34 Institute for Security Studies'),
(69149, 'https://ror.org/00p957h13', 'en', 1, 'https://ror.org/00p957h13 Institute for Social Development Studies Viện nghiên cứu phát triển xã hội'),
(69150, 'https://ror.org/03k434963', 'pt', 1, 'https://ror.org/03k434963 Instituto de Estudos do Trabalho e Sociedade'),
(69151, 'https://ror.org/0470jgx16', 'en', 1, 'https://ror.org/0470jgx16 Institute for War and Peace Reporting'),
(69152, 'https://ror.org/04f5aam04', 'es', 1, 'https://ror.org/04f5aam04 Instituto de Biología Agrícola de Mendoza'),
(69153, 'https://ror.org/01tpj7340', 'en', 1, 'https://ror.org/01tpj7340 Institute of Geology, Komi Science Centre Институт геологии Коми НЦ УрО РАН'),
(69154, 'https://ror.org/04x0n3178', 'es', 1, 'https://ror.org/04x0n3178 Instituto de Biología Molecular y Celular de Rosario'),
(69155, 'https://ror.org/00nwdkz22', 'en', 1, 'https://ror.org/00nwdkz22 Institute of Philosophy Інстытут філасофіі Нацыянальнай акадэміі навук Беларусі Институт философии Национальной академии наук Беларуси'),
(69156, 'https://ror.org/01rbf3264', 'az', 1, 'https://ror.org/01rbf3264 Azərbaycan Milli Elmlər Akademiyası Abbasqulu Ağa Bakıxanov Adina Tarix Institutu'),
(69157, 'https://ror.org/04d3hex36', 'en', 1, 'https://ror.org/04d3hex36 The Dialogue'),
(69158, 'https://ror.org/030v2bt19', 'en', 1, 'https://ror.org/030v2bt19 Centro Intercultural de Estudios de Desiertos y Océanos Intercultural Center for the Study of Deserts and Oceans'),
(69159, 'https://ror.org/02s5mpe65', 'en', 1, 'https://ror.org/02s5mpe65 The Intercultural Communication Institute'),
(69160, 'https://ror.org/04j4xtm35', 'en', 1, 'https://ror.org/04j4xtm35 Institute of Scientific Information on Social Sciences Институт научной информации по общественным наукам'),
(69161, 'https://ror.org/00pg29k97', 'en', 1, 'https://ror.org/00pg29k97 Intercultural Dialogue Foundation Interkulturális Párbeszéd Alapítvány'),
(69162, 'https://ror.org/05s04a010', 'en', 1, 'https://ror.org/05s04a010 Centre for Invasive Species Solution'),
(69163, 'https://ror.org/040f8w440', 'en', 1, 'https://ror.org/040f8w440 Institute of Social Sciences'),
(69164, 'https://ror.org/01dx39x96', 'en', 1, 'https://ror.org/01dx39x96 Institut društvenih nauka Institute of Social Sciences'),
(69165, 'https://ror.org/01e9djz97', 'en', 1, 'https://ror.org/01e9djz97 International Bluegrass Music Association'),
(69166, 'https://ror.org/038cgya65', 'en', 1, 'https://ror.org/038cgya65 International Center for Advanced Research and Training'),
(69167, 'https://ror.org/025apse83', 'fr', 1, 'https://ror.org/025apse83 Binche Musée International du Carnaval et du Masque'),
(69168, 'https://ror.org/038a3t246', 'en', 1, 'https://ror.org/038a3t246 International Center for Transitional Justice'),
(69169, 'https://ror.org/05qwhr533', 'en', 1, 'https://ror.org/05qwhr533 International Center for Transitional Justice'),
(69170, 'https://ror.org/01dgmv528', 'en', 1, 'https://ror.org/01dgmv528 Institute of History of Ukraine Інститут історії України НАН України'),
(69171, 'https://ror.org/04yva1294', 'en', 1, 'https://ror.org/04yva1294 International Centre for Ethnic Studies ජනවාර්ගික අධ්යයන සඳහා ජාත්යන්තර මධ්යස්ථානය'),
(69172, 'https://ror.org/016ja5m69', 'no_lang_code', 1, 'https://ror.org/016ja5m69 Investa (Australia)'),
(69173, 'https://ror.org/02ccaw114', 'en', 1, 'https://ror.org/02ccaw114 International Ceramics Studio Nemzetközi Kerámia Stúdió'),
(69174, 'https://ror.org/01nnh1n81', 'fr', 1, 'https://ror.org/01nnh1n81 CIEP'),
(69175, 'https://ror.org/02qfrzf96', 'en', 1, 'https://ror.org/02qfrzf96 Isha Foundation'),
(69176, 'https://ror.org/03w7tz659', 'en', 1, 'https://ror.org/03w7tz659 Ishara Puppet Theatre Trust'),
(69177, 'https://ror.org/022gx5t47', 'en', 1, 'https://ror.org/022gx5t47 Contemporary Dance Center Центр современного танца'),
(69178, 'https://ror.org/029agyb27', 'en', 1, 'https://ror.org/029agyb27 Centre de Recherches pour le Développement International International Development Research Centre'),
(69179, 'https://ror.org/010t2jv54', 'es', 1, 'https://ror.org/010t2jv54 Columbus Theatre Teatro Colón'),
(69180, 'https://ror.org/05g6h0p60', 'en', 1, 'https://ror.org/05g6h0p60 International Graduate School of Leadership'),
(69181, 'https://ror.org/03gbabd35', 'en', 1, 'https://ror.org/03gbabd35 Institute of Coal Chemistry and Material Science Института углехимии и химического материаловедения'),
(69182, 'https://ror.org/042q0et03', 'en', 1, 'https://ror.org/042q0et03 MI College'),
(69183, 'https://ror.org/05kjsed78', 'en', 1, 'https://ror.org/05kjsed78 International Press Center Résidence Palace - Internationales Pressezentrum'),
(69184, 'https://ror.org/047z5ry18', 'en', 1, 'https://ror.org/047z5ry18 Israeli Center for Libraries מרכז הספר והספריות'),
(69185, 'https://ror.org/02r4tgk06', 'en', 1, 'https://ror.org/02r4tgk06 International Renaissance Foundation Міжнародний фонд "Відродження'),
(69186, 'https://ror.org/01x9xr535', 'en', 1, 'https://ror.org/01x9xr535 International School of Dakar'),
(69187, 'https://ror.org/05s192022', 'en', 1, 'https://ror.org/05s192022 International Studio & Curatorial Program'),
(69188, 'https://ror.org/034515739', 'no_lang_code', 1, 'https://ror.org/034515739 Jacobi Consulting (New Zealand)'),
(69189, 'https://ror.org/04x7abt37', 'en', 1, 'https://ror.org/04x7abt37 International University of Central Asia'),
(69190, 'https://ror.org/02vjtn770', 'en', 1, 'https://ror.org/02vjtn770 Internews'),
(69191, 'https://ror.org/01zfe1g78', 'en', 1, 'https://ror.org/01zfe1g78 The Interuniversity Institute for Research and Development'),
(69192, 'https://ror.org/03tf2ww78', 'en', 1, 'https://ror.org/03tf2ww78 Jammu and Kashmir Academy of Art, Culture and Languages'),
(69193, 'https://ror.org/03580ka59', 'en', 1, 'https://ror.org/03580ka59 Fulbright Japan 日米教育委員会'),
(69194, 'https://ror.org/05q0txz94', 'es', 1, 'https://ror.org/05q0txz94 Jardín Etnobotánico de Oaxaca'),
(69195, 'https://ror.org/01zepqe17', 'en', 1, 'https://ror.org/01zepqe17 The Jerusalem Academy of Music and Dance האקדמיה למוסיקה ולמחול בירושלים'),
(69196, 'https://ror.org/007b1fc92', 'no_lang_code', 1, 'https://ror.org/007b1fc92 INTAR'),
(69197, 'https://ror.org/004b2nf78', 'en', 1, 'https://ror.org/004b2nf78 Jewish Museum of Greece Εβραϊκό Μουσείο Ελλάδος'),
(69198, 'https://ror.org/00vbej866', 'en', 1, 'https://ror.org/00vbej866 Kalakshetra Foundation'),
(69199, 'https://ror.org/024e7ek05', 'no_lang_code', 1, 'https://ror.org/024e7ek05 Kaleidoscopio'),
(69200, 'https://ror.org/04c5nsm37', 'no_lang_code', 1, 'https://ror.org/04c5nsm37 Kalpavriksh'),
(69201, 'https://ror.org/03pvzeb17', 'en', 1, 'https://ror.org/03pvzeb17 Kansas City Public Schools'),
(69202, 'https://ror.org/04dk3n740', 'en', 1, 'https://ror.org/04dk3n740 Jordan National Gallery of Fine Arts المتحف الوطني الأردني للفنون الجميلة'),
(69203, 'https://ror.org/0173qy615', 'en', 1, 'https://ror.org/0173qy615 Jordan Radio and Television Corporation مؤسسة الإذاعة والتلفزيون الأردني'),
(69204, 'https://ror.org/02sqn1q51', 'en', 1, 'https://ror.org/02sqn1q51 Karakalpakstan State Museum of Art named after I.V. Savitsky Государственный музей искусств имени И. В. Савицкого'),
(69205, 'https://ror.org/02p12t634', 'no_lang_code', 1, 'https://ror.org/02p12t634 Karnataka Chitrakala Parishath ಕರ್ನಾಟಕ ಚಿತ್ರಕಲಾ ಪರಿಷತ್'),
(69206, 'https://ror.org/02k35v311', 'es', 1, 'https://ror.org/02k35v311 Benemerito Hospital General con Especialidades "Juan Maria de Salvatierra"'),
(69207, 'https://ror.org/04c47m560', 'en', 1, 'https://ror.org/04c47m560 Kerala State Chalachitra Academy കേരള സംസ്ഥാന ചലച്ചിത്ര അക്കാദമി'),
(69208, 'https://ror.org/03zwqne39', 'en', 1, 'https://ror.org/03zwqne39 The Judge Advocate General''s Legal Center and School'),
(69209, 'https://ror.org/00cpnjf66', 'en', 1, 'https://ror.org/00cpnjf66 Kathimerini Publishing (Greece) Oι ΚΑΘΗΜΕΡΙΝΕΣ ΕΚΔΟΣΕΙΣ'),
(69210, 'https://ror.org/04m3c6y30', 'vi', 1, 'https://ror.org/04m3c6y30 Học viện Tư pháp'),
(69211, 'https://ror.org/02shbjh24', 'en', 1, 'https://ror.org/02shbjh24 Kazakh Research Institute of Plant Protection and Quarantine казахский научно-исследовательский институт защиты и карантина растений'),
(69212, 'https://ror.org/001aba497', 'pt', 1, 'https://ror.org/001aba497 Instituto Brasil Estados Unidos'),
(69213, 'https://ror.org/038mavt60', 'en', 1, 'https://ror.org/038mavt60 Astana Medical University Медицинский университет Астана'),
(69214, 'https://ror.org/044h52h12', 'es', 1, 'https://ror.org/044h52h12 Poder Judicial de la Ciudad de Buenos Aires'),
(69215, 'https://ror.org/03gk5bm92', 'en', 1, 'https://ror.org/03gk5bm92 Kazakh-American Free University Қазақстан-Американдық еркін университеті'),
(69216, 'https://ror.org/00gkr8739', 'en', 1, 'https://ror.org/00gkr8739 Psychoanalytical Association Психоаналитическая Ассоциация'),
(69217, 'https://ror.org/04p41m479', 'en', 1, 'https://ror.org/04p41m479 Ministry of Education and Science of the Republic of Tatarstan Министерство образования и науки Республики Татарстан'),
(69218, 'https://ror.org/04x2dgq71', 'en', 1, 'https://ror.org/04x2dgq71 Provincial Polyclinical Hospital in Toruń Wojewódzki Szpital Zespolony im. L. Rydygiera w Toruniu'),
(69219, 'https://ror.org/00nc9jd53', 'no_lang_code', 1, 'https://ror.org/00nc9jd53 Kharkiv Lit Museum Харківський літературний музей'),
(69220, 'https://ror.org/05acccr47', 'en', 1, 'https://ror.org/05acccr47 Judicial Yuan 司法院'),
(69221, 'https://ror.org/01mryv087', 'en', 1, 'https://ror.org/01mryv087 The K.R. Cama Oriental Institute'),
(69222, 'https://ror.org/0575fjh40', 'en', 1, 'https://ror.org/0575fjh40 Kenya Association of Professional Counsellors'),
(69223, 'https://ror.org/0574xt008', 'no_lang_code', 1, 'https://ror.org/0574xt008 Kahoku Shimpō 河北新報'),
(69224, 'https://ror.org/005d5fb76', 'en', 1, 'https://ror.org/005d5fb76 Kent State University Geauga'),
(69225, 'https://ror.org/02s29db36', 'fr', 1, 'https://ror.org/02s29db36 Kahuzi-Biéga National Park'),
(69226, 'https://ror.org/00sxaat11', 'en', 1, 'https://ror.org/00sxaat11 King Abdulaziz Foundation For Research And Archives'),
(69227, 'https://ror.org/034p3rp25', 'en', 1, 'https://ror.org/034p3rp25 Kazakhstan Medical University Қазақстандық медицина университеті'),
(69228, 'https://ror.org/020gf2z05', 'en', 1, 'https://ror.org/020gf2z05 King County Council'),
(69229, 'https://ror.org/01hxaqe16', 'en', 1, 'https://ror.org/01hxaqe16 King Fahd Security College كلية الملك فهد الأمنية'),
(69230, 'https://ror.org/022nyvr86', 'en', 1, 'https://ror.org/022nyvr86 V.M. Koretsky Institute of State and Law Інститут держави і права імені В. М. Корецького НАН України Институт государства и права имени В. М. Корецкого НАН Украины'),
(69231, 'https://ror.org/01ntfzr17', 'no_lang_code', 1, 'https://ror.org/01ntfzr17 La Strada'),
(69232, 'https://ror.org/01pfmmr39', 'en', 1, 'https://ror.org/01pfmmr39 Kotka Maritime Research Centre Meriturvallisuuden ja -liikenteen Tutkimuskeskus'),
(69233, 'https://ror.org/05qxwht78', 'en', 1, 'https://ror.org/05qxwht78 Dmitri Hvorostovsky Siberian State Institute of Arts Сибирский государственный институт искусств имени Дмитрия Хворостовского'),
(69234, 'https://ror.org/022cj9d07', 'en', 1, 'https://ror.org/022cj9d07 Ladies College'),
(69235, 'https://ror.org/01ex19q32', 'en', 1, 'https://ror.org/01ex19q32 Kingswood Oxford'),
(69236, 'https://ror.org/05m905s87', 'en', 1, 'https://ror.org/05m905s87 Islamic Azad University, Masjed Soleyman دانشگاه آزاد اسلامی واحد مسجدسلیمان'),
(69237, 'https://ror.org/00zjk7642', 'en', 1, 'https://ror.org/00zjk7642 Larkin University'),
(69238, 'https://ror.org/027h4hn14', 'no_lang_code', 1, 'https://ror.org/027h4hn14 Alma Media (Finland) Alma Media Oyj'),
(69239, 'https://ror.org/025jccm67', 'no_lang_code', 1, 'https://ror.org/025jccm67 Kobe Shimbun (Japan) 神戸新聞'),
(69240, 'https://ror.org/05czncj82', 'no_lang_code', 1, 'https://ror.org/05czncj82 Lasanaa'),
(69241, 'https://ror.org/048f1z657', 'no_lang_code', 1, 'https://ror.org/048f1z657 Kyiv International Institute of Sociology (Ukraine) Київський міжнародний інститут соціології'),
(69242, 'https://ror.org/02djy5m07', 'no_lang_code', 1, 'https://ror.org/02djy5m07 Les Kurbas Center ЦЕНТР ЛЕСЯ КУРБАСА'),
(69243, 'https://ror.org/03f2nzb42', 'en', 1, 'https://ror.org/03f2nzb42 The LGBT Centre ЛГБТ Төв'),
(69244, 'https://ror.org/02jqsv109', 'en', 1, 'https://ror.org/02jqsv109 Margarita Rudomino All-Russia State Library for Foreign Literature Библиотека иностранной литературы'),
(69245, 'https://ror.org/04ks1pv36', 'en', 1, 'https://ror.org/04ks1pv36 Law Institute of Lithuania Teisės institutas'),
(69246, 'https://ror.org/01qmska07', 'no_lang_code', 1, 'https://ror.org/01qmska07 Kabar'),
(69247, 'https://ror.org/00rmabh56', 'en', 1, 'https://ror.org/00rmabh56 Lower East Side Printshop'),
(69248, 'https://ror.org/02vkaxr54', 'en', 1, 'https://ror.org/02vkaxr54 Library of Tibetan Works and Archives'),
(69249, 'https://ror.org/02451fm04', 'en', 1, 'https://ror.org/02451fm04 Kyrgyz State Law Academy Кыргызская государственная юридическая академия'),
(69250, 'https://ror.org/0323znp25', 'fr', 1, 'https://ror.org/0323znp25 Bibliothèque Universitaire des Langues et Civilisations'),
(69251, 'https://ror.org/00mja9e27', 'en', 1, 'https://ror.org/00mja9e27 Kyrgyzskaya State Academy of Physical Culture and Sports Кыргызская государственная академия физической культуры и спорта'),
(69252, 'https://ror.org/02gse4n09', 'en', 1, 'https://ror.org/02gse4n09 L. A. Orbeli Institute of Physiology NAS RA ՀՀ ԳԱԱ Ակադ. Լ. Ա. Օրբելու անվան Ֆիզիոլոգիայի Ինստիտուտ'),
(69253, 'https://ror.org/015w40490', 'es', 1, 'https://ror.org/015w40490 Liceo Jubilar Juan Pablo II'),
(69254, 'https://ror.org/04d2zdx41', 'en', 1, 'https://ror.org/04d2zdx41 Labyrinth Musical Workshop Μουσικό εργαστήρι Λαβύρινθος'),
(69255, 'https://ror.org/020p1sa64', 'en', 1, 'https://ror.org/020p1sa64 L.V. Prasad Film & TV Academy'),
(69256, 'https://ror.org/00nxm0568', 'en', 1, 'https://ror.org/00nxm0568 Lillstreet Art Center'),
(69257, 'https://ror.org/038c5v419', 'no_lang_code', 1, 'https://ror.org/038c5v419 NMAS Group (United States)'),
(69258, 'https://ror.org/0020qzt72', 'no_lang_code', 1, 'https://ror.org/0020qzt72 Mabou Mines (United States)'),
(69259, 'https://ror.org/03mq02m67', 'en', 1, 'https://ror.org/03mq02m67 Limón Institute'),
(69260, 'https://ror.org/00x0hb616', 'no_lang_code', 1, 'https://ror.org/00x0hb616 Mapei (United States)'),
(69261, 'https://ror.org/026xf4k55', 'en', 1, 'https://ror.org/026xf4k55 MeetFactory'),
(69262, 'https://ror.org/05t3tvt21', 'en', 1, 'https://ror.org/05t3tvt21 Asociación MeetShareDance MeetShareDance Association'),
(69263, 'https://ror.org/05n7m1k33', 'en', 1, 'https://ror.org/05n7m1k33 Loutky v Nemocnici Puppets in Hospital'),
(69264, 'https://ror.org/033ensv76', 'en', 1, 'https://ror.org/033ensv76 Lowry Memorial College & Group of Institutions'),
(69265, 'https://ror.org/03twgdg85', 'de', 1, 'https://ror.org/03twgdg85 Medizinische Zentrum für Gesundheit'),
(69266, 'https://ror.org/033893t28', 'no_lang_code', 1, 'https://ror.org/033893t28 Martin Chautari मार्टिन चौतारी'),
(69267, 'https://ror.org/010rd4p08', 'no_lang_code', 1, 'https://ror.org/010rd4p08 OTJ Architects (United States)'),
(69268, 'https://ror.org/03ab9ve27', 'en', 1, 'https://ror.org/03ab9ve27 Mental Health America'),
(69269, 'https://ror.org/054yyyw60', 'no_lang_code', 1, 'https://ror.org/054yyyw60 Mada al-Carmel مدى الكرمل'),
(69270, 'https://ror.org/05r288y75', 'en', 1, 'https://ror.org/05r288y75 Magic Lantern Movies'),
(69271, 'https://ror.org/03jjc4667', 'en', 1, 'https://ror.org/03jjc4667 Ministry of Agriculture and Fisheries وزارة الزراعة والثروة السمكية - سلطنة عُمان'),
(69272, 'https://ror.org/00f2tck44', 'fr', 1, 'https://ror.org/00f2tck44 Ministère de l''Agriculture et des Aménagements Hydrauliques'),
(69273, 'https://ror.org/02hqm2v55', 'en', 1, 'https://ror.org/02hqm2v55 Mahatma Gandhi Institute'),
(69274, 'https://ror.org/01vr3ck92', 'en', 1, 'https://ror.org/01vr3ck92 Matheny'),
(69275, 'https://ror.org/028chwx32', 'en', 1, 'https://ror.org/028chwx32 Ministry of Culture'),
(69276, 'https://ror.org/023m6zy08', 'no_lang_code', 1, 'https://ror.org/023m6zy08 Lokadharmi'),
(69277, 'https://ror.org/02tbvzj10', 'en', 1, 'https://ror.org/02tbvzj10 Ministry of Culture وزارة الثقافة'),
(69278, 'https://ror.org/03cfe5t18', 'en', 1, 'https://ror.org/03cfe5t18 The Mainichi 株式会社毎日新聞社'),
(69279, 'https://ror.org/024m3bm98', 'ro', 1, 'https://ror.org/024m3bm98 Biblioteca Metropolitană București'),
(69280, 'https://ror.org/03cnz7c57', 'en', 1, 'https://ror.org/03cnz7c57 Ministry of Culture وزارة الثقافة'),
(69281, 'https://ror.org/00vtapt19', 'en', 1, 'https://ror.org/00vtapt19 The Mauritius Chamber of Commerce and Industry'),
(69282, 'https://ror.org/050s60797', 'en', 1, 'https://ror.org/050s60797 Ministria e Kulturës, Rinisë dhe Sportit e Kosovës Ministry of Culture, Youth and Sport'),
(69283, 'https://ror.org/03g8mjq73', 'en', 1, 'https://ror.org/03g8mjq73 London Fire Brigade'),
(69284, 'https://ror.org/014cjsd78', 'en', 1, 'https://ror.org/014cjsd78 Ministry of Defence of Armenia Հայաստանի պաշտպանության նախարարություն'),
(69285, 'https://ror.org/02s03gc27', 'en', 1, 'https://ror.org/02s03gc27 Metta Development Foundation'),
(69286, 'https://ror.org/01dg8r335', 'en', 1, 'https://ror.org/01dg8r335 Ministry of Economy of the Republic of Uzbekistan O''zbekiston Respublikasi Iqtisodiyot Vazirligi'),
(69287, 'https://ror.org/04fp2d244', 'en', 1, 'https://ror.org/04fp2d244 Ministry of Education'),
(69288, 'https://ror.org/05ajf5338', 'fr', 1, 'https://ror.org/05ajf5338 Ministère des Affaires Économiques et de la Promotion des Secteurs Productifs'),
(69289, 'https://ror.org/05jxn6e66', 'en', 1, 'https://ror.org/05jxn6e66 Ministry of Natural Resources and Environment ກະຊວງ ຊັບພະຍາກອນ ທຳມະຊາດ ແລະ ສິ່ງແວດລ້ອມ'),
(69290, 'https://ror.org/01eeqkr30', 'en', 1, 'https://ror.org/01eeqkr30 The Ministry of Education and Science of the Kyrgyz Republic Кыргыз Республикасынын билим берүү жана илим министрлиги Министерство образования и науки Кыргызской Республики'),
(69291, 'https://ror.org/03c71f034', 'en', 1, 'https://ror.org/03c71f034 Los Angeles Police Department'),
(69292, 'https://ror.org/04z5sh748', 'es', 1, 'https://ror.org/04z5sh748 Ministerio Público Fiscal de la Ciudad Autónoma de Buenos Aires'),
(69293, 'https://ror.org/01rjqh621', 'en', 1, 'https://ror.org/01rjqh621 Ministry of Social Justice and Empowerment'),
(69294, 'https://ror.org/05w8pph52', 'en', 1, 'https://ror.org/05w8pph52 Ministry of Education'),
(69295, 'https://ror.org/058gtx933', 'en', 1, 'https://ror.org/058gtx933 Capital Academy of Finance and Humanities Столичная Финансово-Гуманитарная Академия'),
(69296, 'https://ror.org/01kj6qf31', 'en', 1, 'https://ror.org/01kj6qf31 Ministry of Welfare Velferðarráðuneytið'),
(69297, 'https://ror.org/00gdary87', 'en', 1, 'https://ror.org/00gdary87 Mt Albert Primary School'),
(69298, 'https://ror.org/0588yrd03', 'en', 1, 'https://ror.org/0588yrd03 Ministria e Arsimit, e Shkencës dhe e Teknologjisë Ministry of Education, Science and Technology'),
(69299, 'https://ror.org/01tm6bj89', 'en', 1, 'https://ror.org/01tm6bj89 Mazatlan Professional School of Dance'),
(69300, 'https://ror.org/0531tjg57', 'en', 1, 'https://ror.org/0531tjg57 Middlesex University'),
(69301, 'https://ror.org/022mnpm42', 'en', 1, 'https://ror.org/022mnpm42 Ministry of Natural Resources and Environmental Conservation'),
(69302, 'https://ror.org/00vjz3318', 'en', 1, 'https://ror.org/00vjz3318 Leksikografski zavod Miroslav Krleža Miroslav Krleža Institute of Lexicography'),
(69303, 'https://ror.org/050a13t43', 'en', 1, 'https://ror.org/050a13t43 Moscow State University Филиал Московского государственного университета имени М.В. Ломоносова в городе Душанбе'),
(69304, 'https://ror.org/01gjnzx46', 'es', 1, 'https://ror.org/01gjnzx46 Cultura Instituto de Cultura, Turismo y Arte de Mazatlan'),
(69305, 'https://ror.org/01m965f91', 'it', 1, 'https://ror.org/01m965f91 Museo Civico di Zoologia'),
(69306, 'https://ror.org/05s075877', 'en', 1, 'https://ror.org/05s075877 Movement for Freedom Движение «За Свободу»'),
(69307, 'https://ror.org/02z85gz67', 'en', 1, 'https://ror.org/02z85gz67 Institut Mittag-Leffler Mittag-Leffler Institute'),
(69308, 'https://ror.org/01pqjya71', 'en', 1, 'https://ror.org/01pqjya71 Ministerul Afacerilor Externe Ministry of Foreign Affairs'),
(69309, 'https://ror.org/00259sq91', 'en', 1, 'https://ror.org/00259sq91 MS Training Centre for Development Cooperation'),
(69310, 'https://ror.org/05fnwbw69', 'en', 1, 'https://ror.org/05fnwbw69 Ministry of Foreign Affairs މިނިސްޓްރީ އޮފް ފޮރިން އެފެއާޒް'),
(69311, 'https://ror.org/05frq8d16', 'en', 1, 'https://ror.org/05frq8d16 Modern Art Research Institute Інститут проблем сучасного мистецтва'),
(69312, 'https://ror.org/044dvga50', 'en', 1, 'https://ror.org/044dvga50 Bộ Ngoại giao Việt Nam Ministry of Foreign Affairs'),
(69313, 'https://ror.org/00gesww49', 'en', 1, 'https://ror.org/00gesww49 Archivo nacional del Ecuador National Archives of Ecuador'),
(69314, 'https://ror.org/001ykgy03', 'fr', 1, 'https://ror.org/001ykgy03 Ministère de l’Enseignement Supérieur et de la Recherche Scientifique'),
(69315, 'https://ror.org/01dt0bh70', 'en', 1, 'https://ror.org/01dt0bh70 Akademi Seni Budaya Dan Warisan Kebangsaan National Academy of Arts, Culture and Heritage'),
(69316, 'https://ror.org/01tmwk758', 'en', 1, 'https://ror.org/01tmwk758 Museum of Contemporary African Diasporan Arts'),
(69317, 'https://ror.org/05qr1wq31', 'en', 1, 'https://ror.org/05qr1wq31 Ministry of Industries and Production'),
(69318, 'https://ror.org/05291f140', 'en', 1, 'https://ror.org/05291f140 Molteno Institute for Language and Literacy'),
(69319, 'https://ror.org/00vkfxn17', 'en', 1, 'https://ror.org/00vkfxn17 Mongolia International University'),
(69320, 'https://ror.org/025y1an67', 'no_lang_code', 1, 'https://ror.org/025y1an67 Kerala Museum കേരള ചരിത്ര മ്യൂസിയം'),
(69321, 'https://ror.org/03dkq2191', 'en', 1, 'https://ror.org/03dkq2191 Ministry of Internal Affairs МИНИСТЕРСТВО ЗА ВНАТРЕШНИ РАБОТИ'),
(69322, 'https://ror.org/0265f5c42', 'en', 1, 'https://ror.org/0265f5c42 Minshar School of Art מנשר לאמנות'),
(69323, 'https://ror.org/00v140q16', 'en', 1, 'https://ror.org/00v140q16 MIT University МИТ Универзитет'),
(69324, 'https://ror.org/03xnyzd31', 'en', 1, 'https://ror.org/03xnyzd31 Ministry of Internal Affairs of the Kyrgyz Republic Кыргыз Республикасынын Ички Иштер Министрлиги Министерство внутренних дел Киргизской Республики'),
(69325, 'https://ror.org/05de8nz58', 'en', 1, 'https://ror.org/05de8nz58 Uganda National Council for Higher Education'),
(69326, 'https://ror.org/038smxt70', 'en', 1, 'https://ror.org/038smxt70 Myanmar Institute of Information Technology'),
(69327, 'https://ror.org/0165cfe41', 'en', 1, 'https://ror.org/0165cfe41 Bộ Tư pháp Ministry of Justice'),
(69328, 'https://ror.org/04bmy8c93', 'no_lang_code', 1, 'https://ror.org/04bmy8c93 Banco Montepio (Portugal)'),
(69329, 'https://ror.org/03sc8dz05', 'en', 1, 'https://ror.org/03sc8dz05 Ministry of Land Management, Urban Planning and Construction ក្រសួងរៀបចំដែនដី នគរូបនីយកម្ម និងសំណង់'),
(69330, 'https://ror.org/02mb6z761', 'en', 1, 'https://ror.org/02mb6z761 Myanmar Institute of Theology'),
(69331, 'https://ror.org/03jjzp129', 'en', 1, 'https://ror.org/03jjzp129 Los Angeles County Superior Court'),
(69332, 'https://ror.org/05c1nzq18', 'en', 1, 'https://ror.org/05c1nzq18 Commission de la Capitale Nationale National Capital Commission'),
(69333, 'https://ror.org/0293c7e71', 'fr', 1, 'https://ror.org/0293c7e71 Conservatoire des Arts et Métiers Multimédia'),
(69334, 'https://ror.org/00k8f0f41', 'en', 1, 'https://ror.org/00k8f0f41 National Institute of Technical Teachers’ Training and Research'),
(69335, 'https://ror.org/017ycry73', 'no_lang_code', 1, 'https://ror.org/017ycry73 Bhungroo (India)'),
(69336, 'https://ror.org/04sprnk40', 'en', 1, 'https://ror.org/04sprnk40 National Gallery of Arts'),
(69337, 'https://ror.org/05av08j02', 'es', 1, 'https://ror.org/05av08j02 Instituto Nacional de Medicina Tropical'),
(69338, 'https://ror.org/01235bb77', 'fr', 1, 'https://ror.org/01235bb77 Banque Nationale de Gènes'),
(69339, 'https://ror.org/00d58r705', 'en', 1, 'https://ror.org/00d58r705 Namgyal Tantric College नामग्याल मोनास्ट्री'),
(69340, 'https://ror.org/03ay16t61', 'en', 1, 'https://ror.org/03ay16t61 National Gugak Center 국립국악원'),
(69341, 'https://ror.org/04mwgzt90', 'en', 1, 'https://ror.org/04mwgzt90 National Health Systems Resource Centre'),
(69342, 'https://ror.org/01a402j88', 'en', 1, 'https://ror.org/01a402j88 National HIV/AIDS Secretariat'),
(69343, 'https://ror.org/01nmtfv20', 'en', 1, 'https://ror.org/01nmtfv20 National Defense University សាកលវិទ្យាល័យការពារជាតិ'),
(69344, 'https://ror.org/01t2seb40', 'en', 1, 'https://ror.org/01t2seb40 National Disability Rights Network'),
(69345, 'https://ror.org/03vrs3080', 'en', 1, 'https://ror.org/03vrs3080 National Management Degree College'),
(69346, 'https://ror.org/00zs92e71', 'en', 1, 'https://ror.org/00zs92e71 National Museum of History 國立歷史博物館'),
(69347, 'https://ror.org/05snn5v50', 'en', 1, 'https://ror.org/05snn5v50 National Institute for Defense Studies 防衛研究所'),
(69348, 'https://ror.org/02vdz8162', 'no_lang_code', 1, 'https://ror.org/02vdz8162 Natama'),
(69349, 'https://ror.org/01nj7ae17', 'en', 1, 'https://ror.org/01nj7ae17 National Organizations for Youth Safety'),
(69350, 'https://ror.org/004fa4s18', 'fr', 1, 'https://ror.org/004fa4s18 Ecole Nationale d’Ingénieurs – Abderhamane Baba Touré'),
(69351, 'https://ror.org/05tnmhm33', 'en', 1, 'https://ror.org/05tnmhm33 Employment Agency'),
(69352, 'https://ror.org/05x75zf33', 'en', 1, 'https://ror.org/05x75zf33 Ptoukha Institute for Demography and Social Studies of the National Academy of Sciences of Ukraine Институт демографии и социальных исследований имени М.В. Птухи Национальной академии наук Украины'),
(69353, 'https://ror.org/0477ytm39', 'en', 1, 'https://ror.org/0477ytm39 National Security and Defense Council of Ukraine Рада національної безпеки і оборони України'),
(69354, 'https://ror.org/040hg4198', 'en', 1, 'https://ror.org/040hg4198 National Youth Science Forum'),
(69355, 'https://ror.org/02r06d562', 'en', 1, 'https://ror.org/02r06d562 National Institute of Arts l''Institut National des Arts'),
(69356, 'https://ror.org/05jfg3b29', 'en', 1, 'https://ror.org/05jfg3b29 National Institute of Criminology Országos Kriminológiai Intézet'),
(69357, 'https://ror.org/027q5ca10', 'es', 1, 'https://ror.org/027q5ca10 Instituto Nacional de Patrimonio Cultural'),
(69358, 'https://ror.org/02st7ck79', 'en', 1, 'https://ror.org/02st7ck79 Museo Archeologico Nazionale di Napoli National Archaeological Museum'),
(69359, 'https://ror.org/004zmp616', 'en', 1, 'https://ror.org/004zmp616 National Institute of Ecology'),
(69360, 'https://ror.org/03qgydn21', 'es', 1, 'https://ror.org/03qgydn21 Escuela Nacional Superior de Ballet'),
(69361, 'https://ror.org/006xcew27', 'en', 1, 'https://ror.org/006xcew27 Doğa Koruma Merkezi Nature Conservation Centre'),
(69362, 'https://ror.org/01mm16571', 'de', 1, 'https://ror.org/01mm16571 Nawi Graz'),
(69363, 'https://ror.org/02169sk90', 'en', 1, 'https://ror.org/02169sk90 National Drug Addiction Center'),
(69364, 'https://ror.org/01bchpm90', 'en', 1, 'https://ror.org/01bchpm90 Instituto Nacional de Lenguas Indígenas National Indigenous Languages Institute'),
(69365, 'https://ror.org/05evqrm94', 'en', 1, 'https://ror.org/05evqrm94 Nehru Memorial Museum & Library नेहरू स्मारक संग्रहालय और पुस्तकालय'),
(69366, 'https://ror.org/02vdga848', 'no_lang_code', 1, 'https://ror.org/02vdga848 Neon Century (United Kingdom)'),
(69367, 'https://ror.org/033wxp778', 'en', 1, 'https://ror.org/033wxp778 photo.circle'),
(69368, 'https://ror.org/051a5x257', 'en', 1, 'https://ror.org/051a5x257 Nepal Water Conservation Foundation'),
(69369, 'https://ror.org/027nc8m92', 'en', 1, 'https://ror.org/027nc8m92 Northshore Education Consortium'),
(69370, 'https://ror.org/02dg2kf02', 'en', 1, 'https://ror.org/02dg2kf02 Học viện Hành chính Quốc gia National Academy of Public Administration'),
(69371, 'https://ror.org/03zn0nj77', 'en', 1, 'https://ror.org/03zn0nj77 New Museum'),
(69372, 'https://ror.org/04csk5x36', 'en', 1, 'https://ror.org/04csk5x36 Out & Equal Workplace Advocates'),
(69373, 'https://ror.org/05s8kep84', 'en', 1, 'https://ror.org/05s8kep84 Northern Ireland Civil Service Státseirbhís Thuaisceart Éireann'),
(69374, 'https://ror.org/02k0b2995', 'en', 1, 'https://ror.org/02k0b2995 Novita'),
(69375, 'https://ror.org/00xpayr72', 'es', 1, 'https://ror.org/00xpayr72 Planta Piloto de Ingeniería Química'),
(69376, 'https://ror.org/01xgj3b22', 'en', 1, 'https://ror.org/01xgj3b22 Northern Ireland Office Oifig Thuaisceart Éireann'),
(69377, 'https://ror.org/03ee4bv96', 'en', 1, 'https://ror.org/03ee4bv96 New York City Bar Association'),
(69378, 'https://ror.org/02rshjz42', 'en', 1, 'https://ror.org/02rshjz42 Northumbria Police'),
(69379, 'https://ror.org/04mc93t41', 'en', 1, 'https://ror.org/04mc93t41 New York City Department of Transportation'),
(69380, 'https://ror.org/026hn9a19', 'en', 1, 'https://ror.org/026hn9a19 New York Musical Festival'),
(69381, 'https://ror.org/004n44f83', 'en', 1, 'https://ror.org/004n44f83 New Zealand Law Society'),
(69382, 'https://ror.org/05mdmem94', 'en', 1, 'https://ror.org/05mdmem94 Newpark Music Centre'),
(69383, 'https://ror.org/00p6c9322', 'no_lang_code', 1, 'https://ror.org/00p6c9322 Ngami Data Services (Botswana)'),
(69384, 'https://ror.org/049e8e889', 'en', 1, 'https://ror.org/049e8e889 Poetry Society of America'),
(69385, 'https://ror.org/02hr94v50', 'no_lang_code', 1, 'https://ror.org/02hr94v50 Office of the Ombudsman for Bermuda'),
(69386, 'https://ror.org/009sjag78', 'en', 1, 'https://ror.org/009sjag78 Education Group Akron Аркон'),
(69387, 'https://ror.org/00c1dss11', 'en', 1, 'https://ror.org/00c1dss11 Pearl Harbor Aviation Museum'),
(69388, 'https://ror.org/03vwaan51', 'en', 1, 'https://ror.org/03vwaan51 PetroVietnam University Trường Đại học Dầu khí Việt Nam'),
(69389, 'https://ror.org/05q655z13', 'en', 1, 'https://ror.org/05q655z13 Omaha Community Foundation'),
(69390, 'https://ror.org/05ednck41', 'en', 1, 'https://ror.org/05ednck41 Brunei Polytechnic Politeknik Brunei'),
(69391, 'https://ror.org/02np7f480', 'en', 1, 'https://ror.org/02np7f480 Pham Van Dong University Trường Đại học Phạm Văn Đồng'),
(69392, 'https://ror.org/048eb3m59', 'en', 1, 'https://ror.org/048eb3m59 Polytechnic College Suriname'),
(69393, 'https://ror.org/03k5dtn35', 'en', 1, 'https://ror.org/03k5dtn35 One Text Initiative'),
(69394, 'https://ror.org/052gthd20', 'en', 1, 'https://ror.org/052gthd20 Mural Arts Philadelphia'),
(69395, 'https://ror.org/04xf8jv21', 'es', 1, 'https://ror.org/04xf8jv21 Biblioteca Palafoxiana'),
(69396, 'https://ror.org/04nnjqq50', 'en', 1, 'https://ror.org/04nnjqq50 Philippine Cancer Society'),
(69397, 'https://ror.org/0220t3t55', 'no_lang_code', 1, 'https://ror.org/0220t3t55 Nikkei Business Publications (Japan) 株式会社日経'),
(69398, 'https://ror.org/03kyeae64', 'en', 1, 'https://ror.org/03kyeae64 Nile University'),
(69399, 'https://ror.org/038v0bj29', 'en', 1, 'https://ror.org/038v0bj29 Pomfret School'),
(69400, 'https://ror.org/00btw3p03', 'no_lang_code', 1, 'https://ror.org/00btw3p03 Nippon Television (Japan) 日本テレビホールディングス株式会社'),
(69401, 'https://ror.org/03bnq5z51', 'en', 1, 'https://ror.org/03bnq5z51 Palestinian Center for Research and Cultural Dialogue المركز الفلسطيني للدراسات وحوار'),
(69402, 'https://ror.org/01gp9yw74', 'en', 1, 'https://ror.org/01gp9yw74 Open Society Otevřená Společnost'),
(69403, 'https://ror.org/03gzqe894', 'en', 1, 'https://ror.org/03gzqe894 Niels Brock'),
(69404, 'https://ror.org/052n2hz50', 'en', 1, 'https://ror.org/052n2hz50 Port Washington Public Library'),
(69405, 'https://ror.org/05434kd35', 'en', 1, 'https://ror.org/05434kd35 Portland Center Stage at The Armory'),
(69406, 'https://ror.org/034fv3460', 'no_lang_code', 1, 'https://ror.org/034fv3460 Procosi'),
(69407, 'https://ror.org/0589qa052', 'en', 1, 'https://ror.org/0589qa052 Phu Yen University Trường Đại Học Phú Yên'),
(69408, 'https://ror.org/02qgkae69', 'es', 1, 'https://ror.org/02qgkae69 Projazz Instituto Profesional'),
(69409, 'https://ror.org/02dt6mc98', 'es', 1, 'https://ror.org/02dt6mc98 Pronatura Noroeste'),
(69410, 'https://ror.org/05cfrq349', 'en', 1, 'https://ror.org/05cfrq349 Oregon Shakespeare Festival'),
(69411, 'https://ror.org/01jyjxa35', 'en', 1, 'https://ror.org/01jyjxa35 Open Health Systems Laboratory'),
(69412, 'https://ror.org/01fgzfp87', 'en', 1, 'https://ror.org/01fgzfp87 US Embassy in Turkmenistan'),
(69413, 'https://ror.org/0053bzc32', 'no_lang_code', 1, 'https://ror.org/0053bzc32 Proton (Malaysia)'),
(69414, 'https://ror.org/01q0r1k14', 'en', 1, 'https://ror.org/01q0r1k14 Office of National Intelligence'),
(69415, 'https://ror.org/02a4rw748', 'no_lang_code', 1, 'https://ror.org/02a4rw748 Kosovo Telecom (Kosovo) Telekomi i Kosovës Телеком Косова'),
(69416, 'https://ror.org/02k2w4w13', 'en', 1, 'https://ror.org/02k2w4w13 Rama Hospital & Research Centre'),
(69417, 'https://ror.org/054s1f192', 'no_lang_code', 1, 'https://ror.org/054s1f192 Post Bellum'),
(69418, 'https://ror.org/04gk2ac25', 'es', 1, 'https://ror.org/04gk2ac25 Ministerio Público de la Defensa'),
(69419, 'https://ror.org/044t55e25', 'en', 1, 'https://ror.org/044t55e25 Participatory Development Training Centre ສູນຝຶກອົບຮົມການພັດທະນາທີ່ມີສ່ວນຮ່ວມ'),
(69420, 'https://ror.org/05pvfsz50', 'en', 1, 'https://ror.org/05pvfsz50 Rochester Community and Technical College'),
(69421, 'https://ror.org/00qdxv953', 'no_lang_code', 1, 'https://ror.org/00qdxv953 Praktika Publishing House Практика'),
(69422, 'https://ror.org/052rsaq92', 'no_lang_code', 1, 'https://ror.org/052rsaq92 PASSAsia (Sri Lanka)'),
(69423, 'https://ror.org/01gxrbz31', 'en', 1, 'https://ror.org/01gxrbz31 Rodrigues Economic Chamber and Industry'),
(69424, 'https://ror.org/05bgbfq25', 'en', 1, 'https://ror.org/05bgbfq25 Public Works Department Buildings and Roads'),
(69425, 'https://ror.org/00qjnpe47', 'no_lang_code', 1, 'https://ror.org/00qjnpe47 PatentVantage (United States)'),
(69426, 'https://ror.org/00tpdkh38', 'en', 1, 'https://ror.org/00tpdkh38 Ross School'),
(69427, 'https://ror.org/01a0mkb65', 'en', 1, 'https://ror.org/01a0mkb65 Archiv Hlavního Města Prahy Prague City Archives'),
(69428, 'https://ror.org/02b27r753', 'en', 1, 'https://ror.org/02b27r753 Royal Education Council'),
(69429, 'https://ror.org/04wb42e09', 'en', 1, 'https://ror.org/04wb42e09 Royal Film Commission الهيئة الملكية الاردنية للأفلام'),
(69430, 'https://ror.org/015mb8g48', 'en', 1, 'https://ror.org/015mb8g48 Royal Institute for Inter-Faith Studies المعهد الملكي للدراسات الدينية'),
(69431, 'https://ror.org/0525v4q94', 'en', 1, 'https://ror.org/0525v4q94 Royal School of Administration សាលាភូមិន្ទរដ្ឋបាល'),
(69432, 'https://ror.org/0382h3v61', 'cs', 1, 'https://ror.org/0382h3v61 Základní škola a Praktická škola Svítání'),
(69433, 'https://ror.org/02wcg0z91', 'en', 1, 'https://ror.org/02wcg0z91 Quebec Labrador Foundation'),
(69434, 'https://ror.org/01g8p7e44', 'no_lang_code', 1, 'https://ror.org/01g8p7e44 Publicis Groupe (France)'),
(69435, 'https://ror.org/017snwk31', 'en', 1, 'https://ror.org/017snwk31 Jerusalem Film and Television School'),
(69436, 'https://ror.org/01h4b6a51', 'pt', 1, 'https://ror.org/01h4b6a51 Observatório do Meio Rural'),
(69437, 'https://ror.org/05b2mvq54', 'en', 1, 'https://ror.org/05b2mvq54 Russian State University of Justice Российская Академия Правосудия'),
(69438, 'https://ror.org/01brhxa96', 'en', 1, 'https://ror.org/01brhxa96 Library of the Russian Academy of Sciences Библиотека Российской академии наук'),
(69439, 'https://ror.org/05b1ymr19', 'es', 1, 'https://ror.org/05b1ymr19 Universidad San Carlos'),
(69440, 'https://ror.org/044nmzj55', 'en', 1, 'https://ror.org/044nmzj55 The Vietnam National Institute of Educational Sciences Viện Khoa học Giáo dục Việt Nam'),
(69441, 'https://ror.org/048bd3118', 'en', 1, 'https://ror.org/048bd3118 San Diego State University, Imperial Valley Campus'),
(69442, 'https://ror.org/0174crz24', 'en', 1, 'https://ror.org/0174crz24 Quip'),
(69443, 'https://ror.org/04081em55', 'en', 1, 'https://ror.org/04081em55 Residency Unlimited'),
(69444, 'https://ror.org/02kydsx93', 'en', 1, 'https://ror.org/02kydsx93 San Francisco County Transportation Authority'),
(69445, 'https://ror.org/028mtkm91', 'en', 1, 'https://ror.org/028mtkm91 San Francisco Police Department'),
(69446, 'https://ror.org/02he69d43', 'en', 1, 'https://ror.org/02he69d43 Kyiv Institute of Music. R. Glier Київський інститут музики ім. Р.М.Глієра'),
(69447, 'https://ror.org/01kck2n84', 'en', 1, 'https://ror.org/01kck2n84 San Gabriel Pomona Regional Center'),
(69448, 'https://ror.org/020znap72', 'ro', 1, 'https://ror.org/020znap72 Asociația Română de Artă Contemporană'),
(69449, 'https://ror.org/007pepr06', 'en', 1, 'https://ror.org/007pepr06 Sanskriti Foundation संस्कृति'),
(69450, 'https://ror.org/05ds1cx37', 'no_lang_code', 1, 'https://ror.org/05ds1cx37 RKB Mainichi Broadcasting (Japan) RKB毎日放送株式会社'),
(69451, 'https://ror.org/01egfqj98', 'no_lang_code', 1, 'https://ror.org/01egfqj98 Sanskriti Samvardhan Mandal'),
(69452, 'https://ror.org/00f5a7a07', 'en', 1, 'https://ror.org/00f5a7a07 Rural Development Agency ສູນພັດທະນາຊົນນະບົດ');
INSERT INTO `rors` VALUES
(69453, 'https://ror.org/02gnftn41', 'en', 1, 'https://ror.org/02gnftn41 Saras Environment Consultant'),
(69454, 'https://ror.org/00g3bkn86', 'ms', 1, 'https://ror.org/00g3bkn86 Sarawak Biodiversity Centre'),
(69455, 'https://ror.org/016metk38', 'en', 1, 'https://ror.org/016metk38 Russian Museum of Ethnography Российский этнографический музей'),
(69456, 'https://ror.org/054xyqj29', 'en', 1, 'https://ror.org/054xyqj29 St. Vincent and the Grenadines Community College'),
(69457, 'https://ror.org/02eyqgr24', 'en', 1, 'https://ror.org/02eyqgr24 Russian State Archive of Literature and Arts Государственный архив литературы и искусства'),
(69458, 'https://ror.org/0477dxh89', 'no_lang_code', 1, 'https://ror.org/0477dxh89 The Seattle Times (United States)'),
(69459, 'https://ror.org/04xt6cc08', 'en', 1, 'https://ror.org/04xt6cc08 Second Air Division Memorial Library'),
(69460, 'https://ror.org/04kqnad16', 'en', 1, 'https://ror.org/04kqnad16 Svenska Höftprotesregistret The Swedish Hip Arthroplasty Register'),
(69461, 'https://ror.org/00ekkwn87', 'no_lang_code', 1, 'https://ror.org/00ekkwn87 Sedibeng TVET College'),
(69462, 'https://ror.org/0093qrn19', 'en', 1, 'https://ror.org/0093qrn19 Salzburg Global Seminar'),
(69463, 'https://ror.org/013fwa311', 'en', 1, 'https://ror.org/013fwa311 Sakhnin College كلية سخنين لتأهيل المعلمين'),
(69464, 'https://ror.org/03755pe12', 'en', 1, 'https://ror.org/03755pe12 Satyajit Ray Film and Television Institute'),
(69465, 'https://ror.org/05bdz6951', 'en', 1, 'https://ror.org/05bdz6951 Federal Senate Senado Federal'),
(69466, 'https://ror.org/040s56h35', 'en', 1, 'https://ror.org/040s56h35 Seoul Central District Court 서울중앙지방법원'),
(69467, 'https://ror.org/04wax6w38', 'fr', 1, 'https://ror.org/04wax6w38 Institut Supérieur Privé Polytechnique'),
(69468, 'https://ror.org/026031778', 'en', 1, 'https://ror.org/026031778 Saudi Heritage Preservation Society'),
(69469, 'https://ror.org/01az4vq35', 'en', 1, 'https://ror.org/01az4vq35 Society for Education Welfare and Action Rural'),
(69470, 'https://ror.org/02p6rwd19', 'no_lang_code', 1, 'https://ror.org/02p6rwd19 Shalom Hartman Institute'),
(69471, 'https://ror.org/04cv2s677', 'no_lang_code', 1, 'https://ror.org/04cv2s677 Sevalanka Foundation'),
(69472, 'https://ror.org/026f02s60', 'en', 1, 'https://ror.org/026f02s60 Sir Arthur Lewis Community College'),
(69473, 'https://ror.org/014vs5452', 'en', 1, 'https://ror.org/014vs5452 Shakespeare Behind Bars'),
(69474, 'https://ror.org/0484jez12', 'en', 1, 'https://ror.org/0484jez12 Sharma Centre for Heritage Education India'),
(69475, 'https://ror.org/0020mxe10', 'en', 1, 'https://ror.org/0020mxe10 Shevchenko Institute of Literature Інститут літератури імені Тараса Шевченка НАН України'),
(69476, 'https://ror.org/00zx4bg33', 'en', 1, 'https://ror.org/00zx4bg33 School of Social Work Roshni Nilaya'),
(69477, 'https://ror.org/038es3z80', 'pt', 1, 'https://ror.org/038es3z80 Clínica de Psiquiatria Psiquimei'),
(69478, 'https://ror.org/033mhgr78', 'en', 1, 'https://ror.org/033mhgr78 Srishti Institute of Art Design and Technology'),
(69479, 'https://ror.org/00n860n87', 'en', 1, 'https://ror.org/00n860n87 St. Vrain Valley School District'),
(69480, 'https://ror.org/02skssx66', 'en', 1, 'https://ror.org/02skssx66 The School of Visual Theatre בית הספר לתיאטרון חזותי'),
(69481, 'https://ror.org/031s3hp40', 'es', 1, 'https://ror.org/031s3hp40 Stael Ruffinelli de Ortiz'),
(69482, 'https://ror.org/038ec0d06', 'no_lang_code', 1, 'https://ror.org/038ec0d06 Sri Caitanya Prema Samsthana'),
(69483, 'https://ror.org/00nx8qv29', 'en', 1, 'https://ror.org/00nx8qv29 Siena School for Liberal Arts'),
(69484, 'https://ror.org/0229sfh63', 'en', 1, 'https://ror.org/0229sfh63 Sri Lanka Foundation'),
(69485, 'https://ror.org/04fves037', 'no_lang_code', 1, 'https://ror.org/04fves037 Standard Chartered (Singapore)'),
(69486, 'https://ror.org/00jgz5a53', 'en', 1, 'https://ror.org/00jgz5a53 Sigmund Freud Museum'),
(69487, 'https://ror.org/05q5sqy38', 'en', 1, 'https://ror.org/05q5sqy38 Slovak National Gallery Slovenská národná galéria'),
(69488, 'https://ror.org/01wm51k08', 'es', 1, 'https://ror.org/01wm51k08 Consejo Estatal Para la Cultura y las Artes de Hidalgo'),
(69489, 'https://ror.org/039ahdn18', 'en', 1, 'https://ror.org/039ahdn18 Slovak Rectors´Conference Slovenská rektorská konferencia'),
(69490, 'https://ror.org/01n2ebv18', 'en', 1, 'https://ror.org/01n2ebv18 Ukrainian State Employment Service Training Institute Інститут підготовки кадрів'),
(69491, 'https://ror.org/03hxrwp69', 'no_lang_code', 1, 'https://ror.org/03hxrwp69 Shopping Live (Russia)'),
(69492, 'https://ror.org/0550tq505', 'no_lang_code', 1, 'https://ror.org/0550tq505 Rolfes Henry (United States)'),
(69493, 'https://ror.org/0353nx598', 'en', 1, 'https://ror.org/0353nx598 Instituto Cultural Steve Biko'),
(69494, 'https://ror.org/00q8ds557', 'en', 1, 'https://ror.org/00q8ds557 The State Historical and Cultural Reserve "Trypillya Culture" Державний історико-культурний заповідник «Трипільська культура»'),
(69495, 'https://ror.org/00z94ps04', 'en', 1, 'https://ror.org/00z94ps04 State Institute for Art Studies Государственный институт искусствознания'),
(69496, 'https://ror.org/03mrd4308', 'en', 1, 'https://ror.org/03mrd4308 Salem City Schools'),
(69497, 'https://ror.org/042b7qk94', 'hi', 1, 'https://ror.org/042b7qk94 Ramakrishna Mission Vidyalaya'),
(69498, 'https://ror.org/02vt6dp03', 'it', 1, 'https://ror.org/02vt6dp03 Fondazione Studio Marangoni'),
(69499, 'https://ror.org/02cbaqx65', 'en', 1, 'https://ror.org/02cbaqx65 State of Rhode Island General Assembly'),
(69500, 'https://ror.org/01v9w5g84', 'en', 1, 'https://ror.org/01v9w5g84 Seattle Film Institute'),
(69501, 'https://ror.org/05927vd92', 'no_lang_code', 1, 'https://ror.org/05927vd92 Studio Olgoj Chorchoj'),
(69502, 'https://ror.org/01g0bw002', 'no_lang_code', 1, 'https://ror.org/01g0bw002 Tretyakov Gallery Государственная Третьяковская Галерея'),
(69503, 'https://ror.org/03mk3w518', 'en', 1, 'https://ror.org/03mk3w518 Seattle Psychoanalytic Society and Institute'),
(69504, 'https://ror.org/008892w10', 'en', 1, 'https://ror.org/008892w10 Everyday Democracy'),
(69505, 'https://ror.org/006s3gt16', 'no_lang_code', 1, 'https://ror.org/006s3gt16 Hearst (United States)'),
(69506, 'https://ror.org/038n2xa05', 'en', 1, 'https://ror.org/038n2xa05 Supreme Court of the Republic of Slovenia Vrhovno sodišče Republike Slovenije'),
(69507, 'https://ror.org/05rg4er48', 'no_lang_code', 1, 'https://ror.org/05rg4er48 Sullivan and Worcester (United States)'),
(69508, 'https://ror.org/02gx09e94', 'en', 1, 'https://ror.org/02gx09e94 Surrey Police'),
(69509, 'https://ror.org/02mjj7x54', 'en', 1, 'https://ror.org/02mjj7x54 Sussex Police'),
(69510, 'https://ror.org/01axqd881', 'en', 1, 'https://ror.org/01axqd881 Swarnabhoomi Academy of Music'),
(69511, 'https://ror.org/02vrphe47', 'en', 1, 'https://ror.org/02vrphe47 Swaziland National Trust Commission'),
(69512, 'https://ror.org/01b003q34', 'no_lang_code', 1, 'https://ror.org/01b003q34 Sokrat'),
(69513, 'https://ror.org/05tje4e72', 'en', 1, 'https://ror.org/05tje4e72 Solidarity and Action Against the HIV Infection in India'),
(69514, 'https://ror.org/03y8dxm05', 'en', 1, 'https://ror.org/03y8dxm05 Sunraysia Institute of TAFE'),
(69515, 'https://ror.org/00tcrzw23', 'no_lang_code', 1, 'https://ror.org/00tcrzw23 Tawata Productions (New Zealand)'),
(69516, 'https://ror.org/003t9wy25', 'no_lang_code', 1, 'https://ror.org/003t9wy25 Sweekaar'),
(69517, 'https://ror.org/01cahbt32', 'no_lang_code', 1, 'https://ror.org/01cahbt32 Centre Régional Songhaï Songhai'),
(69518, 'https://ror.org/01etbpd39', 'en', 1, 'https://ror.org/01etbpd39 St. Scholastica''s College'),
(69519, 'https://ror.org/0171ejg62', 'en', 1, 'https://ror.org/0171ejg62 Sonoma Ecology Center'),
(69520, 'https://ror.org/05f8y8t16', 'no_lang_code', 1, 'https://ror.org/05f8y8t16 Mentaid'),
(69521, 'https://ror.org/04qtnvc29', 'en', 1, 'https://ror.org/04qtnvc29 Taichung City Government 台中市政府'),
(69522, 'https://ror.org/05ntjbh41', 'en', 1, 'https://ror.org/05ntjbh41 The Association of Boarding Schools'),
(69523, 'https://ror.org/04a1gmj86', 'no_lang_code', 1, 'https://ror.org/04a1gmj86 TCG Nordica'),
(69524, 'https://ror.org/02gkgnb87', 'en', 1, 'https://ror.org/02gkgnb87 Supreme Arbitration Court of the Russian Federation Высший Арбитражный суд Российской Федерации'),
(69525, 'https://ror.org/040d3j938', 'no_lang_code', 1, 'https://ror.org/040d3j938 Clearwater Group (United States)'),
(69526, 'https://ror.org/02a4rtb34', 'en', 1, 'https://ror.org/02a4rtb34 Taiwan Design Center 台灣創意設計中心'),
(69527, 'https://ror.org/01eydjf18', 'en', 1, 'https://ror.org/01eydjf18 The Beles Group'),
(69528, 'https://ror.org/01hqnxa62', 'en', 1, 'https://ror.org/01hqnxa62 Te Wānanga o Raukawa'),
(69529, 'https://ror.org/02kn8f882', 'no_lang_code', 1, 'https://ror.org/02kn8f882 Taiwan Futures Exchange (Taiwan) 臺灣期貨交易所'),
(69530, 'https://ror.org/04xp1hk04', 'en', 1, 'https://ror.org/04xp1hk04 Southern Africa Nazarene University'),
(69531, 'https://ror.org/05sdt3y58', 'en', 1, 'https://ror.org/05sdt3y58 The Cabell Brand Center'),
(69532, 'https://ror.org/030ajmr16', 'en', 1, 'https://ror.org/030ajmr16 Royal Society for the Conservation of Nature'),
(69533, 'https://ror.org/0192srs23', 'en', 1, 'https://ror.org/0192srs23 Caribbean Electric Utility Services Corporation'),
(69534, 'https://ror.org/0373nkv83', 'en', 1, 'https://ror.org/0373nkv83 The Soar Foundation'),
(69535, 'https://ror.org/02h4ptt90', 'en', 1, 'https://ror.org/02h4ptt90 Taiwan Miaoli District Court 臺灣苗栗地方法院'),
(69536, 'https://ror.org/05t61hc94', 'en', 1, 'https://ror.org/05t61hc94 The Center for Victims of Torture'),
(69537, 'https://ror.org/0045hsd50', 'en', 1, 'https://ror.org/0045hsd50 United States Educational Foundation in Pakistan'),
(69538, 'https://ror.org/006gdfw37', 'en', 1, 'https://ror.org/006gdfw37 Southern Association of Colleges and Schools'),
(69539, 'https://ror.org/01h5wyd82', 'en', 1, 'https://ror.org/01h5wyd82 Taiwan Public Television Service Foundation 財團法人公共電視文化事業基金會'),
(69540, 'https://ror.org/02jv6dk34', 'en', 1, 'https://ror.org/02jv6dk34 Southern Environmental Law Center'),
(69541, 'https://ror.org/04qbfzp68', 'en', 1, 'https://ror.org/04qbfzp68 Centre for Child Evaluation & Teaching مركز تقويم وتعليم الطفل'),
(69542, 'https://ror.org/00szj4f14', 'en', 1, 'https://ror.org/00szj4f14 Austrumeiropas Politikas Pētījumu Centrs Centre for Eastern European Policy Studies'),
(69543, 'https://ror.org/05pbk0158', 'en', 1, 'https://ror.org/05pbk0158 Taiwan Shilin District Prosecutors Office 臺灣士林地方檢察署'),
(69544, 'https://ror.org/01kde9c12', 'en', 1, 'https://ror.org/01kde9c12 Council on Higher Education'),
(69545, 'https://ror.org/00rcv1209', 'en', 1, 'https://ror.org/00rcv1209 The Crucible'),
(69546, 'https://ror.org/01yt2xt13', 'en', 1, 'https://ror.org/01yt2xt13 Youth Junction'),
(69547, 'https://ror.org/03xzzpw64', 'en', 1, 'https://ror.org/03xzzpw64 Delegation of the European Union to the Kyrgyz Republic'),
(69548, 'https://ror.org/00p9qs658', 'en', 1, 'https://ror.org/00p9qs658 Teller Madsen'),
(69549, 'https://ror.org/00nnrh863', 'en', 1, 'https://ror.org/00nnrh863 Tajik State Institute of Languages ДОНИШКАДАИ ДАВЛАТИИ ЗАБОЩОИ тодикистон БА номи сотим УЛУГЗОДА'),
(69550, 'https://ror.org/01gf4c669', 'en', 1, 'https://ror.org/01gf4c669 The Elizabeth Foundation for the Arts'),
(69551, 'https://ror.org/0447ftg13', 'no_lang_code', 1, 'https://ror.org/0447ftg13 GEDI Gruppo Editoriale (Italy) Gruppo Editoriale L''Espresso'),
(69552, 'https://ror.org/01qc0qt89', 'en', 1, 'https://ror.org/01qc0qt89 Archiv Výtvarného Umění The Fine Art Archive'),
(69553, 'https://ror.org/04yxq0914', 'no_lang_code', 1, 'https://ror.org/04yxq0914 Nexstar Media Group (United States)'),
(69554, 'https://ror.org/01rmwzy37', 'no_lang_code', 1, 'https://ror.org/01rmwzy37 Digital First Media (United States)'),
(69555, 'https://ror.org/05tbx9d85', 'no_lang_code', 1, 'https://ror.org/05tbx9d85 Wijeya Newspapers (Sri Lanka)'),
(69556, 'https://ror.org/04aywmt72', 'es', 1, 'https://ror.org/04aywmt72 Fundación Naturaleza y Hombre'),
(69557, 'https://ror.org/05cz09y50', 'no_lang_code', 1, 'https://ror.org/05cz09y50 Yomiuri Group (Japan) 読売新聞'),
(69558, 'https://ror.org/032xxp947', 'en', 1, 'https://ror.org/032xxp947 Geo Explore Foundation'),
(69559, 'https://ror.org/02qa6e442', 'no_lang_code', 1, 'https://ror.org/02qa6e442 Men-Tsee-Khang'),
(69560, 'https://ror.org/03718pw44', 'en', 1, 'https://ror.org/03718pw44 The Hindu Group (India)'),
(69561, 'https://ror.org/01mb4vz12', 'en', 1, 'https://ror.org/01mb4vz12 Tripura State Pollution Control Board'),
(69562, 'https://ror.org/01mb5fa95', 'en', 1, 'https://ror.org/01mb5fa95 Institute of Modern Knowledge named after A.M. Shirokova Інстытут сучасных ведаў імя А. М. Шырокава Институт современных знаний имени А. М. Широкова'),
(69563, 'https://ror.org/03fdvjw85', 'en', 1, 'https://ror.org/03fdvjw85 Ahmad Dahlan School of Economics Sekolah Tinggi Ilmu Ekonomi Ahmad Dahlan Jakarta'),
(69564, 'https://ror.org/014femp80', 'en', 1, 'https://ror.org/014femp80 University of Trans-Disciplinary Health Sciences and Technology'),
(69565, 'https://ror.org/00hy04j04', 'en', 1, 'https://ror.org/00hy04j04 The Judicial General Council of Mongolia Монгол Улсын Шүүхийн Ерөнхий Зөвлөл'),
(69566, 'https://ror.org/03p9ccw33', 'en', 1, 'https://ror.org/03p9ccw33 American Jazz Institute'),
(69567, 'https://ror.org/01msn1v37', 'en', 1, 'https://ror.org/01msn1v37 Tostan'),
(69568, 'https://ror.org/03ytbkh39', 'en', 1, 'https://ror.org/03ytbkh39 The Arboretum at Flagstaff'),
(69569, 'https://ror.org/01hsjdk31', 'no_lang_code', 1, 'https://ror.org/01hsjdk31 McClatchy (United States)'),
(69570, 'https://ror.org/00290ns09', 'en', 1, 'https://ror.org/00290ns09 Société des Eiders de l’Arctique The Arctic Eider Society'),
(69571, 'https://ror.org/02yqvqf05', 'en', 1, 'https://ror.org/02yqvqf05 Tranby National Indigenous Adult Education and Training'),
(69572, 'https://ror.org/00kvy8r73', 'en', 1, 'https://ror.org/00kvy8r73 The Mountain Institute'),
(69573, 'https://ror.org/02d16vp83', 'en', 1, 'https://ror.org/02d16vp83 Biblioteka Kombëtare e Kosovës National Library of Kosovo Народна библиотека Косова'),
(69574, 'https://ror.org/01n6xge79', 'tr', 1, 'https://ror.org/01n6xge79 Türk Eğitim Vakfı'),
(69575, 'https://ror.org/048cscx90', 'en', 1, 'https://ror.org/048cscx90 Transparency International'),
(69576, 'https://ror.org/02wkq6598', 'no_lang_code', 1, 'https://ror.org/02wkq6598 Rezonansi რეზონანსი'),
(69577, 'https://ror.org/01gspzg10', 'no_lang_code', 1, 'https://ror.org/01gspzg10 TV Asahi (Japan) 株式会社テレビ朝日'),
(69578, 'https://ror.org/024bajv16', 'en', 1, 'https://ror.org/024bajv16 The Northwest School'),
(69579, 'https://ror.org/01m1ej943', 'en', 1, 'https://ror.org/01m1ej943 United Nations Children''s Fund Kosovo'),
(69580, 'https://ror.org/02facmr33', 'en', 1, 'https://ror.org/02facmr33 Toi Whakaari: NZ Drama School'),
(69581, 'https://ror.org/05e7atb82', 'en', 1, 'https://ror.org/05e7atb82 Directorate of Scheduled Tribes Development Department'),
(69582, 'https://ror.org/00mhw7g56', 'no_lang_code', 1, 'https://ror.org/00mhw7g56 Tulana'),
(69583, 'https://ror.org/021rrz441', 'en', 1, 'https://ror.org/021rrz441 BMCC Tribeca Performing Arts Center'),
(69584, 'https://ror.org/043c1f957', 'en', 1, 'https://ror.org/043c1f957 Union of Economists of Turkmenistan'),
(69585, 'https://ror.org/00tsh7c40', 'en', 1, 'https://ror.org/00tsh7c40 Ukrainian Association of Specialists on Overcoming the Consequences of Traumatic Events'),
(69586, 'https://ror.org/05kjkha92', 'en', 1, 'https://ror.org/05kjkha92 University Professional and Continuing Education Association'),
(69587, 'https://ror.org/018h4tb29', 'no_lang_code', 1, 'https://ror.org/018h4tb29 Ivan Honchar Museum Музей Івана Гончара'),
(69588, 'https://ror.org/02y0c7m95', 'en', 1, 'https://ror.org/02y0c7m95 United Nations University Institute on Computing and Society 聯合國大學計算與社會研究所'),
(69589, 'https://ror.org/00033n668', 'en', 1, 'https://ror.org/00033n668 Universiteti për Biznes dhe Teknologji University for Business and Technology'),
(69590, 'https://ror.org/02jyhs326', 'en', 1, 'https://ror.org/02jyhs326 Ukrainian National Museum'),
(69591, 'https://ror.org/02skwfk85', 'en', 1, 'https://ror.org/02skwfk85 United States Court of Appeals for the Ninth Circuit'),
(69592, 'https://ror.org/03fmbdf82', 'en', 1, 'https://ror.org/03fmbdf82 United States Court of Appeals for the Seventh Circuit'),
(69593, 'https://ror.org/01ndq3682', 'en', 1, 'https://ror.org/01ndq3682 United States Courts'),
(69594, 'https://ror.org/00ycry713', 'en', 1, 'https://ror.org/00ycry713 Trường Đại Học Tài Chính - Marketing University of Finance - Marketing'),
(69595, 'https://ror.org/011tecf62', 'fr', 1, 'https://ror.org/011tecf62 Université des Lettres et des Sciences Humaines de Bamako'),
(69596, 'https://ror.org/04ez8az68', 'en', 1, 'https://ror.org/04ez8az68 University of Swabi یونیورسٹی آف صوابی'),
(69597, 'https://ror.org/03rqs0g29', 'en', 1, 'https://ror.org/03rqs0g29 Hội Nhà báo Việt Nam Vietnam Journalists Association'),
(69598, 'https://ror.org/0276e3d41', 'en', 1, 'https://ror.org/0276e3d41 Học viện Âm nhạc Quốc gia Việt Nam Viet Nam National Academy of Music'),
(69599, 'https://ror.org/030rrr070', 'en', 1, 'https://ror.org/030rrr070 West African Research Center'),
(69600, 'https://ror.org/02r1dkx80', 'en', 1, 'https://ror.org/02r1dkx80 Học viện Y Dược học Cổ truyền Việt Nam Viet Nam University Of Traditional Medicine'),
(69601, 'https://ror.org/058yy5a17', 'en', 1, 'https://ror.org/058yy5a17 Urban Justice Center'),
(69602, 'https://ror.org/04ys74c57', 'en', 1, 'https://ror.org/04ys74c57 Western States Center'),
(69603, 'https://ror.org/00zbqep42', 'en', 1, 'https://ror.org/00zbqep42 U.S. Embassy in Burma'),
(69604, 'https://ror.org/01wag9e37', 'en', 1, 'https://ror.org/01wag9e37 Westford Academy'),
(69605, 'https://ror.org/05pyyqe62', 'no_lang_code', 1, 'https://ror.org/05pyyqe62 Voice of America (United States)'),
(69606, 'https://ror.org/02d6ntk65', 'en', 1, 'https://ror.org/02d6ntk65 Whitecliffe College of Arts and Design'),
(69607, 'https://ror.org/0412t9j29', 'no_lang_code', 1, 'https://ror.org/0412t9j29 Walker-Moffat (United States)'),
(69608, 'https://ror.org/03p8djp35', 'no_lang_code', 1, 'https://ror.org/03p8djp35 Uttarakhand Seva Nidhi Paryavaran Shiksha Sansthan'),
(69609, 'https://ror.org/03hensb66', 'en', 1, 'https://ror.org/03hensb66 Witness'),
(69610, 'https://ror.org/03b9dsq97', 'en', 1, 'https://ror.org/03b9dsq97 Xcellon School of Business'),
(69611, 'https://ror.org/05a0w0e26', 'en', 1, 'https://ror.org/05a0w0e26 Washington Glass School'),
(69612, 'https://ror.org/03v0pfp89', 'en', 1, 'https://ror.org/03v0pfp89 WATCH'),
(69613, 'https://ror.org/0033qx680', 'fi', 1, 'https://ror.org/0033qx680 Vamia'),
(69614, 'https://ror.org/02wc3s860', 'no_lang_code', 1, 'https://ror.org/02wc3s860 Administración Nacional de Usinas y Trasmisiones Eléctricas National Administration of Power Plants and Electrical Transmissions (Uruguay)'),
(69615, 'https://ror.org/00xm1m223', 'no_lang_code', 1, 'https://ror.org/00xm1m223 The Washington Times (United States)'),
(69616, 'https://ror.org/03mr6bx04', 'en', 1, 'https://ror.org/03mr6bx04 Zayed Higher Organization for Humanitarian Care and Special Needs سسة زايد العليا مؤسسة زايد العليا للرعاية الإنسانية والإحتياجات الخاصة'),
(69617, 'https://ror.org/01wze2x85', 'en', 1, 'https://ror.org/01wze2x85 Watsonville Community Hospital'),
(69618, 'https://ror.org/03ham4v40', 'it', 1, 'https://ror.org/03ham4v40 Opificio delle Pietre Dure'),
(69619, 'https://ror.org/04fj96439', 'no_lang_code', 1, 'https://ror.org/04fj96439 Vashon Partners (United States)'),
(69620, 'https://ror.org/03xvcse61', 'es', 1, 'https://ror.org/03xvcse61 Vasos Comunicantes'),
(69621, 'https://ror.org/02nnx0145', 'en', 1, 'https://ror.org/02nnx0145 Ekaterinburg Academy of Contemporary Art Екатеринбургская академия современного искусства'),
(69622, 'https://ror.org/02w00g107', 'en', 1, 'https://ror.org/02w00g107 World Education Services'),
(69623, 'https://ror.org/03ntwd790', 'en', 1, 'https://ror.org/03ntwd790 Xavier Institute of Communications ज़ेवियर इंस्टिट्यूट ऑफ़ कम्युनिकेशन्स'),
(69624, 'https://ror.org/01sz34q98', 'en', 1, 'https://ror.org/01sz34q98 Anciens Combattants Canada Veterans Affairs Canada'),
(69625, 'https://ror.org/00xq4r679', 'en', 1, 'https://ror.org/00xq4r679 Veterinarians Without Borders Vétérinaires Sans Frontières'),
(69626, 'https://ror.org/00nn27y59', 'en', 1, 'https://ror.org/00nn27y59 World Policy Institute'),
(69627, 'https://ror.org/00q0e7f94', 'no_lang_code', 1, 'https://ror.org/00q0e7f94 Tập đoàn Bưu chính Viễn thông Việt Nam Vietnam Posts and Telecommunications Group (Vietnam)'),
(69628, 'https://ror.org/01cc0qc38', 'en', 1, 'https://ror.org/01cc0qc38 Victorian Bar'),
(69629, 'https://ror.org/05jh28309', 'en', 1, 'https://ror.org/05jh28309 Youth Development Administration 青年發展署'),
(69630, 'https://ror.org/009njsq50', 'en', 1, 'https://ror.org/009njsq50 Yunnan Vocational College of Mechanical and Electrical Technology 云南机电职业技术学院'),
(69631, 'https://ror.org/04vkkc603', 'en', 1, 'https://ror.org/04vkkc603 Zambia National Broadcasting Corporation'),
(69632, 'https://ror.org/01dashf18', 'en', 1, 'https://ror.org/01dashf18 Wuhan College'),
(69633, 'https://ror.org/00244rn76', 'en', 1, 'https://ror.org/00244rn76 Zanzibar School of Health'),
(69634, 'https://ror.org/00pf88j43', 'no_lang_code', 1, 'https://ror.org/00pf88j43 WilderShares (United States)'),
(69635, 'https://ror.org/04ejzqx24', 'en', 1, 'https://ror.org/04ejzqx24 Team Restoration Ministries'),
(69636, 'https://ror.org/04fvg7665', 'en', 1, 'https://ror.org/04fvg7665 State Institute of Cultural Heritage of the Peoples of Turkmenistan Государственный институт культурного наследия народов Туркменистана'),
(69637, 'https://ror.org/054zw5g61', 'de', 1, 'https://ror.org/054zw5g61 Jesuiten Jesuitenkolleg'),
(69638, 'https://ror.org/04e7x9x31', 'en', 1, 'https://ror.org/04e7x9x31 Open Acting Academy'),
(69639, 'https://ror.org/04yk11f14', 'en', 1, 'https://ror.org/04yk11f14 Tibetan Academy of Social Science 西藏自治区社会科学院'),
(69640, 'https://ror.org/054z0bn29', 'en', 1, 'https://ror.org/054z0bn29 Austrian Foundation for Development Research Österreichische Forschungsstiftung für Internationale Entwicklung'),
(69641, 'https://ror.org/03xa44945', 'en', 1, 'https://ror.org/03xa44945 Bavarian National Museum Bayerisches Nationalmuseum'),
(69642, 'https://ror.org/044889x78', 'de', 1, 'https://ror.org/044889x78 Kommission für Geschichte und Kultur der Deutschen in Südosteuropa'),
(69643, 'https://ror.org/05prp0x93', 'no_lang_code', 1, 'https://ror.org/05prp0x93 Viscovery Software (Austria)'),
(69644, 'https://ror.org/004z5ps61', 'de', 1, 'https://ror.org/004z5ps61 Gesundheitszentrum Oberndorf'),
(69645, 'https://ror.org/04h54m622', 'de', 1, 'https://ror.org/04h54m622 Gemeinschaftsklinikum Mittelrhein'),
(69646, 'https://ror.org/039r16z31', 'no_lang_code', 1, 'https://ror.org/039r16z31 Stratec (Germany)'),
(69647, 'https://ror.org/04ddadw63', 'en', 1, 'https://ror.org/04ddadw63 Vienna Institute for Nature Conservation & Analyses'),
(69648, 'https://ror.org/036y1an55', 'no_lang_code', 1, 'https://ror.org/036y1an55 Keysight Technologies (Austria)'),
(69649, 'https://ror.org/05rtd6p98', 'de', 1, 'https://ror.org/05rtd6p98 Gespag'),
(69650, 'https://ror.org/00qsjqq12', 'en', 1, 'https://ror.org/00qsjqq12 Greenland National Museum & Archives Nunatta Katersugaasivia Allagaateqarfialu'),
(69651, 'https://ror.org/02m8wcg72', 'da', 1, 'https://ror.org/02m8wcg72 Kroppedal Museum'),
(69652, 'https://ror.org/03gg0m324', 'en', 1, 'https://ror.org/03gg0m324 Danish Institute at Athens Ινστιτούτο της Δανίας στην Αθήνα'),
(69653, 'https://ror.org/05pzd7w96', 'en', 1, 'https://ror.org/05pzd7w96 Asiaq Greenland Survey'),
(69654, 'https://ror.org/0102cs330', 'da', 1, 'https://ror.org/0102cs330 Landsorganisation af Kvindekrisecentre'),
(69655, 'https://ror.org/012pegt90', 'it', 1, 'https://ror.org/012pegt90 Det Danske Institut i Rom - Accademia di Danimarca'),
(69656, 'https://ror.org/04sw0cd90', 'no_lang_code', 1, 'https://ror.org/04sw0cd90 Det Kongelige Nordiske Oldskriftselskab Royal Nordic Society of Antiquaries (Denmark)'),
(69657, 'https://ror.org/03xts3v71', 'da', 1, 'https://ror.org/03xts3v71 Orionplanetarium'),
(69658, 'https://ror.org/04fnvtv49', 'da', 1, 'https://ror.org/04fnvtv49 Tycho Brahe Planetarium'),
(69659, 'https://ror.org/02paymf25', 'no_lang_code', 1, 'https://ror.org/02paymf25 Veterinærmedicinsk Industriforening'),
(69660, 'https://ror.org/02a91xk32', 'da', 1, 'https://ror.org/02a91xk32 Dansk Filosofisk Selskab'),
(69661, 'https://ror.org/00mqaf442', 'no_lang_code', 1, 'https://ror.org/00mqaf442 GTS (Denmark)'),
(69662, 'https://ror.org/03hqq6242', 'es', 1, 'https://ror.org/03hqq6242 Plan Ceibal'),
(69663, 'https://ror.org/05rxmkq09', 'es', 1, 'https://ror.org/05rxmkq09 Fundación Ciencias Exactas y Naturales'),
(69664, 'https://ror.org/01tz3nb36', 'da', 1, 'https://ror.org/01tz3nb36 Museum Salling'),
(69665, 'https://ror.org/00qxn6s10', 'no_lang_code', 1, 'https://ror.org/00qxn6s10 Nordic BioAnalyis (Sweden)'),
(69666, 'https://ror.org/04n4nnv87', 'no_lang_code', 1, 'https://ror.org/04n4nnv87 Graphensic (Sweden)'),
(69667, 'https://ror.org/00za70p44', 'da', 1, 'https://ror.org/00za70p44 Museum Sønderjylland'),
(69668, 'https://ror.org/00fkta435', 'no_lang_code', 1, 'https://ror.org/00fkta435 1928 Diagnostics (Sweden)'),
(69669, 'https://ror.org/012rxy285', 'no_lang_code', 1, 'https://ror.org/012rxy285 Greenely (Sweden)'),
(69670, 'https://ror.org/00g71t343', 'no_lang_code', 1, 'https://ror.org/00g71t343 Greinon (Sweden)'),
(69671, 'https://ror.org/0383d6s93', 'no_lang_code', 1, 'https://ror.org/0383d6s93 Blekinge Business Incubator (Sweden)'),
(69672, 'https://ror.org/00y8fja70', 'no_lang_code', 1, 'https://ror.org/00y8fja70 Ekomarine Paint (Sweden)'),
(69673, 'https://ror.org/041pfmf98', 'no_lang_code', 1, 'https://ror.org/041pfmf98 2D Fab (Sweden)'),
(69674, 'https://ror.org/05q88x431', 'no_lang_code', 1, 'https://ror.org/05q88x431 BnearIT (Sweden)'),
(69675, 'https://ror.org/0542txc19', 'no_lang_code', 1, 'https://ror.org/0542txc19 Elforest Technologies (Sweden)'),
(69676, 'https://ror.org/04j5w9585', 'no_lang_code', 1, 'https://ror.org/04j5w9585 3Eflow (Sweden)'),
(69677, 'https://ror.org/0009sdg88', 'no_lang_code', 1, 'https://ror.org/0009sdg88 Elways (Sweden)'),
(69678, 'https://ror.org/02ge9wf73', 'no_lang_code', 1, 'https://ror.org/02ge9wf73 Juteborg (Sweden)'),
(69679, 'https://ror.org/05p23jt70', 'no_lang_code', 1, 'https://ror.org/05p23jt70 Endovab Endovascular Development (Sweden)'),
(69680, 'https://ror.org/011jh0j93', 'no_lang_code', 1, 'https://ror.org/011jh0j93 4IT I (Sweden)'),
(69681, 'https://ror.org/04zv6cm02', 'no_lang_code', 1, 'https://ror.org/04zv6cm02 Dignitana (Sweden)'),
(69682, 'https://ror.org/00efjzq30', 'sv', 1, 'https://ror.org/00efjzq30 Kalmar Läns Museum'),
(69683, 'https://ror.org/004jq5c54', 'no_lang_code', 1, 'https://ror.org/004jq5c54 Brighter (Sweden)'),
(69684, 'https://ror.org/01b0e9p06', 'en', 1, 'https://ror.org/01b0e9p06 East Sweden Energy Agency Energikontoret Östergötland'),
(69685, 'https://ror.org/00n29yx59', 'no_lang_code', 1, 'https://ror.org/00n29yx59 Brockmann Geomatics (Sweden)'),
(69686, 'https://ror.org/02actgg20', 'no_lang_code', 1, 'https://ror.org/02actgg20 Adroit Science (Sweden)'),
(69687, 'https://ror.org/05cjqhm25', 'no_lang_code', 1, 'https://ror.org/05cjqhm25 Agilent Technologies (Sweden)'),
(69688, 'https://ror.org/03stctc86', 'no_lang_code', 1, 'https://ror.org/03stctc86 Enetjärn Natur (Sweden)'),
(69689, 'https://ror.org/02d7ecg84', 'no_lang_code', 1, 'https://ror.org/02d7ecg84 EnginZyme (Sweden)'),
(69690, 'https://ror.org/019yfmw38', 'no_lang_code', 1, 'https://ror.org/019yfmw38 Bryne (Sweden)'),
(69691, 'https://ror.org/010gf6775', 'no_lang_code', 1, 'https://ror.org/010gf6775 Katam (Sweden)'),
(69692, 'https://ror.org/02qar2r61', 'no_lang_code', 1, 'https://ror.org/02qar2r61 Enigio Time (Sweden)'),
(69693, 'https://ror.org/0067znv39', 'no_lang_code', 1, 'https://ror.org/0067znv39 Aditus Science (Sweden)'),
(69694, 'https://ror.org/00y0mtz34', 'no_lang_code', 1, 'https://ror.org/00y0mtz34 BTB Pharma (Sweden)'),
(69695, 'https://ror.org/02tdmp521', 'no_lang_code', 1, 'https://ror.org/02tdmp521 Health Solutions (Sweden)'),
(69696, 'https://ror.org/006s9cd49', 'no_lang_code', 1, 'https://ror.org/006s9cd49 European Willow Breeding (Sweden)'),
(69697, 'https://ror.org/04yws8253', 'no_lang_code', 1, 'https://ror.org/04yws8253 BuildSafe (Sweden)'),
(69698, 'https://ror.org/03pp91130', 'no_lang_code', 1, 'https://ror.org/03pp91130 Heliospectra (Sweden)'),
(69699, 'https://ror.org/02g861y66', 'no_lang_code', 1, 'https://ror.org/02g861y66 Againity (Sweden)'),
(69700, 'https://ror.org/04htmqx50', 'no_lang_code', 1, 'https://ror.org/04htmqx50 Evispot (Sweden)'),
(69701, 'https://ror.org/04de66260', 'no_lang_code', 1, 'https://ror.org/04de66260 Burt (Sweden)'),
(69702, 'https://ror.org/02zb0z080', 'no_lang_code', 1, 'https://ror.org/02zb0z080 Expektra (Sweden)'),
(69703, 'https://ror.org/017a2g404', 'no_lang_code', 1, 'https://ror.org/017a2g404 Hexicon (Sweden)'),
(69704, 'https://ror.org/051b0xe12', 'en', 1, 'https://ror.org/051b0xe12 Byggherrarna Sverige Swedish Construction Clients'),
(69705, 'https://ror.org/0190epk64', 'no_lang_code', 1, 'https://ror.org/0190epk64 C-Green Technology (Sweden)'),
(69706, 'https://ror.org/05qd6x152', 'no_lang_code', 1, 'https://ror.org/05qd6x152 Cascade Drives (Sweden)'),
(69707, 'https://ror.org/04gwy5274', 'no_lang_code', 1, 'https://ror.org/04gwy5274 Ferroamp Elektronik (Sweden)'),
(69708, 'https://ror.org/00kgt0r22', 'no_lang_code', 1, 'https://ror.org/00kgt0r22 Studi'),
(69709, 'https://ror.org/00k2ybc23', 'no_lang_code', 1, 'https://ror.org/00k2ybc23 Cavis Technologies (Sweden)'),
(69710, 'https://ror.org/00aqt1c17', 'no_lang_code', 1, 'https://ror.org/00aqt1c17 Klaria Pharma Holding (Sweden)'),
(69711, 'https://ror.org/01szy6y70', 'no_lang_code', 1, 'https://ror.org/01szy6y70 Aili Innovations (Sweden)'),
(69712, 'https://ror.org/04054a724', 'no_lang_code', 1, 'https://ror.org/04054a724 CellProtect Nordic Pharmaceuticals (Sweden)'),
(69713, 'https://ror.org/03z0a5562', 'en', 1, 'https://ror.org/03z0a5562 Krinova Incubator & Science Park'),
(69714, 'https://ror.org/03a1ecb29', 'no_lang_code', 1, 'https://ror.org/03a1ecb29 Fidesmo (Sweden)'),
(69715, 'https://ror.org/053v58q79', 'no_lang_code', 1, 'https://ror.org/053v58q79 Chalmers Ventures (Sweden)'),
(69716, 'https://ror.org/05pwnep21', 'no_lang_code', 1, 'https://ror.org/05pwnep21 Hytton Technologies (Sweden)'),
(69717, 'https://ror.org/028pznd91', 'no_lang_code', 1, 'https://ror.org/028pznd91 Chromafora (Sweden)'),
(69718, 'https://ror.org/01qvnjw08', 'no_lang_code', 1, 'https://ror.org/01qvnjw08 Flow Neuroscience (Sweden)'),
(69719, 'https://ror.org/01bfjbb09', 'no_lang_code', 1, 'https://ror.org/01bfjbb09 Akuru Pharma (Sweden)'),
(69720, 'https://ror.org/043e6pw81', 'no_lang_code', 1, 'https://ror.org/043e6pw81 Food Radar Systems (Sweden)'),
(69721, 'https://ror.org/017ez5470', 'no_lang_code', 1, 'https://ror.org/017ez5470 I-Tech (Sweden)'),
(69722, 'https://ror.org/02zzhpq74', 'en', 1, 'https://ror.org/02zzhpq74 Kungliga Akademien för de fria konsterna Royal Academy of Fine Arts'),
(69723, 'https://ror.org/05ctt1694', 'no_lang_code', 1, 'https://ror.org/05ctt1694 Iamip (Sweden)'),
(69724, 'https://ror.org/017pcb882', 'no_lang_code', 1, 'https://ror.org/017pcb882 Framtidens Företag (Sweden)'),
(69725, 'https://ror.org/01mgxxq41', 'no_lang_code', 1, 'https://ror.org/01mgxxq41 Clean Motion (Sweden)'),
(69726, 'https://ror.org/02agf1x24', 'no_lang_code', 1, 'https://ror.org/02agf1x24 AlzeCure Pharma (Sweden)'),
(69727, 'https://ror.org/02acrm202', 'no_lang_code', 1, 'https://ror.org/02acrm202 Ampersand (Sweden)'),
(69728, 'https://ror.org/04crvpe09', 'en', 1, 'https://ror.org/04crvpe09 Föreningen Svenskt Flyg Intresse Swedish Air Transport Society'),
(69729, 'https://ror.org/01b2xn187', 'no_lang_code', 1, 'https://ror.org/01b2xn187 CloneOpt (Sweden)'),
(69730, 'https://ror.org/00bhp9x86', 'sv', 1, 'https://ror.org/00bhp9x86 Föreningen Universitetsholdingbolag i Sverige'),
(69731, 'https://ror.org/05wvcb507', 'en', 1, 'https://ror.org/05wvcb507 Angered Hospital Angereds Närsjukhus'),
(69732, 'https://ror.org/059pfgk41', 'no_lang_code', 1, 'https://ror.org/059pfgk41 International Data Group (Sweden)'),
(69733, 'https://ror.org/04s9hnr69', 'no_lang_code', 1, 'https://ror.org/04s9hnr69 Företagsfabriken i Kronoberg (Sweden)'),
(69734, 'https://ror.org/0327qwp89', 'no_lang_code', 1, 'https://ror.org/0327qwp89 Annexin Pharmaceuticals (Sweden)'),
(69735, 'https://ror.org/04jd5mx11', 'no_lang_code', 1, 'https://ror.org/04jd5mx11 iGW (Sweden)'),
(69736, 'https://ror.org/02vn97859', 'en', 1, 'https://ror.org/02vn97859 Arbejdermuseet The Workers Museum'),
(69737, 'https://ror.org/00dpzpk69', 'no_lang_code', 1, 'https://ror.org/00dpzpk69 Ilya Pharma (Sweden)'),
(69738, 'https://ror.org/05s2yxq27', 'en', 1, 'https://ror.org/05s2yxq27 Funder'),
(69739, 'https://ror.org/05fp2br79', 'no_lang_code', 1, 'https://ror.org/05fp2br79 Anolytech (Sweden)'),
(69740, 'https://ror.org/01tcx0921', 'sv', 1, 'https://ror.org/01tcx0921 Länsstyrelsen Västra Götalands län'),
(69741, 'https://ror.org/03dqgwy22', 'sv', 1, 'https://ror.org/03dqgwy22 Funka Nu'),
(69742, 'https://ror.org/05mk38d83', 'no_lang_code', 1, 'https://ror.org/05mk38d83 Codemill (Sweden)'),
(69743, 'https://ror.org/03tvfd726', 'no_lang_code', 1, 'https://ror.org/03tvfd726 Marin Miljöanalys Marine Environmental Analysis (Sweden)'),
(69744, 'https://ror.org/04yt64d76', 'no_lang_code', 1, 'https://ror.org/04yt64d76 Informa (Sweden)'),
(69745, 'https://ror.org/02mjvaa14', 'no_lang_code', 1, 'https://ror.org/02mjvaa14 Arctic Business Incubator (Sweden)'),
(69746, 'https://ror.org/00y0dba52', 'no_lang_code', 1, 'https://ror.org/00y0dba52 Gedea Biotech (Sweden)'),
(69747, 'https://ror.org/03fjx1y08', 'no_lang_code', 1, 'https://ror.org/03fjx1y08 Gesynta Pharma (Sweden)'),
(69748, 'https://ror.org/03nq9vg83', 'no_lang_code', 1, 'https://ror.org/03nq9vg83 Getica (Sweden)'),
(69749, 'https://ror.org/01azp7v94', 'no_lang_code', 1, 'https://ror.org/01azp7v94 Glactone Pharma (Sweden)'),
(69750, 'https://ror.org/03w343k42', 'no_lang_code', 1, 'https://ror.org/03w343k42 Gleechi (Sweden)'),
(69751, 'https://ror.org/04jn6c360', 'no_lang_code', 1, 'https://ror.org/04jn6c360 Arne Jensen (Sweden)'),
(69752, 'https://ror.org/05j2cds40', 'sv', 1, 'https://ror.org/05j2cds40 Industriella UtvecklingsCentra'),
(69753, 'https://ror.org/046s5m283', 'no_lang_code', 1, 'https://ror.org/046s5m283 Lifesize (Sweden)'),
(69754, 'https://ror.org/02pctja18', 'no_lang_code', 1, 'https://ror.org/02pctja18 Ascilion (Sweden)'),
(69755, 'https://ror.org/02q3gyw25', 'no_lang_code', 1, 'https://ror.org/02q3gyw25 Lipigon Pharmaceuticals (Sweden)'),
(69756, 'https://ror.org/00135x916', 'no_lang_code', 1, 'https://ror.org/00135x916 Inkubera (Sweden)'),
(69757, 'https://ror.org/000c5n539', 'no_lang_code', 1, 'https://ror.org/000c5n539 Exensor Technology (Sweden)'),
(69758, 'https://ror.org/053f01012', 'no_lang_code', 1, 'https://ror.org/053f01012 Globalworks (Sweden)'),
(69759, 'https://ror.org/036wb1d88', 'no_lang_code', 1, 'https://ror.org/036wb1d88 Conspiro (Sweden)'),
(69760, 'https://ror.org/00nsfc592', 'no_lang_code', 1, 'https://ror.org/00nsfc592 Atrogi (Sweden)'),
(69761, 'https://ror.org/05cwv3v76', 'no_lang_code', 1, 'https://ror.org/05cwv3v76 Gnosco (Sweden)'),
(69762, 'https://ror.org/05mrwj523', 'no_lang_code', 1, 'https://ror.org/05mrwj523 Innovation Skåne (Sweden)'),
(69763, 'https://ror.org/01emaft25', 'no_lang_code', 1, 'https://ror.org/01emaft25 Avantherm (Sweden)'),
(69764, 'https://ror.org/035hx4w46', 'no_lang_code', 1, 'https://ror.org/035hx4w46 Bristol-Myers Squibb (Sweden)'),
(69765, 'https://ror.org/01a7xtr20', 'no_lang_code', 1, 'https://ror.org/01a7xtr20 InnoVentum (Sweden)'),
(69766, 'https://ror.org/02jvvnm32', 'no_lang_code', 1, 'https://ror.org/02jvvnm32 Cortus Energy (Sweden)'),
(69767, 'https://ror.org/05f0grh52', 'sv', 1, 'https://ror.org/05f0grh52 Avfallshantering Östra Skaraborg'),
(69768, 'https://ror.org/05w5q8v72', 'no_lang_code', 1, 'https://ror.org/05w5q8v72 Create (Sweden)'),
(69769, 'https://ror.org/03akdaa97', 'no_lang_code', 1, 'https://ror.org/03akdaa97 Inossia (Sweden)'),
(69770, 'https://ror.org/03f2hv234', 'no_lang_code', 1, 'https://ror.org/03f2hv234 AVL (Sweden)'),
(69771, 'https://ror.org/03ges2v44', 'no_lang_code', 1, 'https://ror.org/03ges2v44 CytaCoat (Sweden)'),
(69772, 'https://ror.org/028k2a581', 'no_lang_code', 1, 'https://ror.org/028k2a581 Meloq (Sweden)'),
(69773, 'https://ror.org/019yq4944', 'no_lang_code', 1, 'https://ror.org/019yq4944 LumenRadio (Sweden)'),
(69774, 'https://ror.org/04qtj6724', 'no_lang_code', 1, 'https://ror.org/04qtj6724 Berge (Sweden)'),
(69775, 'https://ror.org/03qsj7h32', 'no_lang_code', 1, 'https://ror.org/03qsj7h32 Danpet (Sweden)'),
(69776, 'https://ror.org/05g6xs632', 'no_lang_code', 1, 'https://ror.org/05g6xs632 LunaLEC (Sweden)'),
(69777, 'https://ror.org/0546g4411', 'no_lang_code', 1, 'https://ror.org/0546g4411 Bergskraft Bergslagen (Sweden)'),
(69778, 'https://ror.org/02t975260', 'no_lang_code', 1, 'https://ror.org/02t975260 Metrum (Sweden)'),
(69779, 'https://ror.org/0529ngj48', 'en', 1, 'https://ror.org/0529ngj48 Big Science Suppliers Network'),
(69780, 'https://ror.org/04t8wt911', 'no_lang_code', 1, 'https://ror.org/04t8wt911 DeviceRadio (Sweden)'),
(69781, 'https://ror.org/00k2j2d15', 'no_lang_code', 1, 'https://ror.org/00k2j2d15 Dirac Research (Sweden)'),
(69782, 'https://ror.org/00v3n0x68', 'no_lang_code', 1, 'https://ror.org/00v3n0x68 Bio-Works (Sweden)'),
(69783, 'https://ror.org/01dtngx32', 'no_lang_code', 1, 'https://ror.org/01dtngx32 Bioendev (Sweden)'),
(69784, 'https://ror.org/04tw1z259', 'no_lang_code', 1, 'https://ror.org/04tw1z259 Ideon Innovation (Sweden)'),
(69785, 'https://ror.org/01mey5f62', 'no_lang_code', 1, 'https://ror.org/01mey5f62 Meva Energy (Sweden)'),
(69786, 'https://ror.org/03w1yvq02', 'no_lang_code', 1, 'https://ror.org/03w1yvq02 PressCise (Sweden)'),
(69787, 'https://ror.org/04sdy1r02', 'no_lang_code', 1, 'https://ror.org/04sdy1r02 Lund Science (Sweden)'),
(69788, 'https://ror.org/03fb51s41', 'no_lang_code', 1, 'https://ror.org/03fb51s41 Biorecro (Sweden)'),
(69789, 'https://ror.org/05km3cw17', 'no_lang_code', 1, 'https://ror.org/05km3cw17 Prindit (Sweden)'),
(69790, 'https://ror.org/01s8h3924', 'no_lang_code', 1, 'https://ror.org/01s8h3924 Luxbright (Sweden)'),
(69791, 'https://ror.org/00a4rps73', 'no_lang_code', 1, 'https://ror.org/00a4rps73 Profu (Sweden)'),
(69792, 'https://ror.org/04fjeez29', 'no_lang_code', 1, 'https://ror.org/04fjeez29 Inuheat (Sweden)'),
(69793, 'https://ror.org/01jkn7h76', 'no_lang_code', 1, 'https://ror.org/01jkn7h76 Qamcom Research and Technology (Sweden)'),
(69794, 'https://ror.org/032qdxd79', 'no_lang_code', 1, 'https://ror.org/032qdxd79 Invisense (Sweden)'),
(69795, 'https://ror.org/051mvtt62', 'no_lang_code', 1, 'https://ror.org/051mvtt62 Maestro (Sweden)'),
(69796, 'https://ror.org/0071w5f09', 'no_lang_code', 1, 'https://ror.org/0071w5f09 Quintus Technologies (Sweden)'),
(69797, 'https://ror.org/03msnc432', 'no_lang_code', 1, 'https://ror.org/03msnc432 SpectraCure (Sweden)'),
(69798, 'https://ror.org/04s4cdp25', 'no_lang_code', 1, 'https://ror.org/04s4cdp25 QuizRR (Sweden)'),
(69799, 'https://ror.org/05y4aj433', 'no_lang_code', 1, 'https://ror.org/05y4aj433 Radarbolaget (Sweden)'),
(69800, 'https://ror.org/02cfw5538', 'no_lang_code', 1, 'https://ror.org/02cfw5538 Spectronic (Sweden)'),
(69801, 'https://ror.org/02cqajj62', 'sv', 1, 'https://ror.org/02cqajj62 Marin Biogas'),
(69802, 'https://ror.org/048c0wq03', 'no_lang_code', 1, 'https://ror.org/048c0wq03 Era (Sweden)'),
(69803, 'https://ror.org/02yx0p576', 'no_lang_code', 1, 'https://ror.org/02yx0p576 Rantor (Sweden)'),
(69804, 'https://ror.org/01j5kbq18', 'no_lang_code', 1, 'https://ror.org/01j5kbq18 EcoTech (Sweden)'),
(69805, 'https://ror.org/01wvgx920', 'no_lang_code', 1, 'https://ror.org/01wvgx920 Mavenoid (Sweden)'),
(69806, 'https://ror.org/05ch53314', 'no_lang_code', 1, 'https://ror.org/05ch53314 Mevia (Sweden)'),
(69807, 'https://ror.org/01fbez228', 'no_lang_code', 1, 'https://ror.org/01fbez228 Sprint Bioscience (Sweden)'),
(69808, 'https://ror.org/01jzvc390', 'no_lang_code', 1, 'https://ror.org/01jzvc390 Sweden Water Research (Sweden)'),
(69809, 'https://ror.org/03zxqg324', 'no_lang_code', 1, 'https://ror.org/03zxqg324 ReceptorPharma (Sweden)'),
(69810, 'https://ror.org/02agte379', 'sv', 1, 'https://ror.org/02agte379 Medeon'),
(69811, 'https://ror.org/00nc5nv80', 'no_lang_code', 1, 'https://ror.org/00nc5nv80 Midsummer (Sweden)'),
(69812, 'https://ror.org/05k5x9q51', 'no_lang_code', 1, 'https://ror.org/05k5x9q51 Medfield Diagnostics (Sweden)'),
(69813, 'https://ror.org/0147mxz16', 'no_lang_code', 1, 'https://ror.org/0147mxz16 Swedish Adrenaline (Sweden)'),
(69814, 'https://ror.org/04hzsme37', 'no_lang_code', 1, 'https://ror.org/04hzsme37 Medituner (Sweden)'),
(69815, 'https://ror.org/04tbskb64', 'no_lang_code', 1, 'https://ror.org/04tbskb64 Mimerse (Sweden)'),
(69816, 'https://ror.org/001v02q16', 'no_lang_code', 1, 'https://ror.org/001v02q16 RenFuel (Sweden)'),
(69817, 'https://ror.org/026q0wa78', 'en', 1, 'https://ror.org/026q0wa78 Uppsala Innovation Centre'),
(69818, 'https://ror.org/05mt2aq13', 'no_lang_code', 1, 'https://ror.org/05mt2aq13 Mimsi Materials (Sweden)'),
(69819, 'https://ror.org/00d2cdk21', 'no_lang_code', 1, 'https://ror.org/00d2cdk21 ReVibe Energy (Sweden)'),
(69820, 'https://ror.org/059dzmv47', 'no_lang_code', 1, 'https://ror.org/059dzmv47 UVElite (Sweden)'),
(69821, 'https://ror.org/027jtmq90', 'en', 1, 'https://ror.org/027jtmq90 Statens musikverk Swedish Performing Arts Agency'),
(69822, 'https://ror.org/017t6mt61', 'sv', 1, 'https://ror.org/017t6mt61 VA Syd'),
(69823, 'https://ror.org/05qbgtq98', 'no_lang_code', 1, 'https://ror.org/05qbgtq98 Minc (Sweden)'),
(69824, 'https://ror.org/057qey752', 'no_lang_code', 1, 'https://ror.org/057qey752 Sweheat & Cooling (Sweden)'),
(69825, 'https://ror.org/041v8ha59', 'sv', 1, 'https://ror.org/041v8ha59 Adopticum'),
(69826, 'https://ror.org/006de3561', 'no_lang_code', 1, 'https://ror.org/006de3561 Mindconnect (Sweden)'),
(69827, 'https://ror.org/013h5z577', 'en', 1, 'https://ror.org/013h5z577 Riksidrottsförbundet Swedish Sports Confederation'),
(69828, 'https://ror.org/0566x7w31', 'sv', 1, 'https://ror.org/0566x7w31 Bräcke Diakoni'),
(69829, 'https://ror.org/04ms3vt90', 'no_lang_code', 1, 'https://ror.org/04ms3vt90 Ten Medical Design (Sweden)'),
(69830, 'https://ror.org/05azvrx95', 'sv', 1, 'https://ror.org/05azvrx95 Carlanderska Sjukhuset'),
(69831, 'https://ror.org/00rjqge87', 'sv', 1, 'https://ror.org/00rjqge87 Tesch-Övermo stiftelsen'),
(69832, 'https://ror.org/03rx9tc73', 'sv', 1, 'https://ror.org/03rx9tc73 Västtrafik'),
(69833, 'https://ror.org/03xg97b41', 'en', 1, 'https://ror.org/03xg97b41 Mind Music Labs'),
(69834, 'https://ror.org/0558qfp88', 'no_lang_code', 1, 'https://ror.org/0558qfp88 Veridict (Sweden)'),
(69835, 'https://ror.org/04bb5z418', 'no_lang_code', 1, 'https://ror.org/04bb5z418 Molecular Fingerprint (Sweden)'),
(69836, 'https://ror.org/00mkdy143', 'no_lang_code', 1, 'https://ror.org/00mkdy143 Vicore Pharma (Sweden)'),
(69837, 'https://ror.org/05sbd5m51', 'no_lang_code', 1, 'https://ror.org/05sbd5m51 Saintpro (Sweden)'),
(69838, 'https://ror.org/033pj6j32', 'en', 1, 'https://ror.org/033pj6j32 Konjunkturinstitutet National Institute of Economic Research'),
(69839, 'https://ror.org/001v0e970', 'no_lang_code', 1, 'https://ror.org/001v0e970 Movexum (Sweden)'),
(69840, 'https://ror.org/021e6jr16', 'sv', 1, 'https://ror.org/021e6jr16 Vetenskap I Skolan'),
(69841, 'https://ror.org/04y06jx93', 'en', 1, 'https://ror.org/04y06jx93 Cleantech Scandinavia'),
(69842, 'https://ror.org/05j8hq318', 'no_lang_code', 1, 'https://ror.org/05j8hq318 Sdiptech (Sweden)'),
(69843, 'https://ror.org/02f85ye32', 'no_lang_code', 1, 'https://ror.org/02f85ye32 Vultus (Sweden)'),
(69844, 'https://ror.org/017vb4h92', 'no_lang_code', 1, 'https://ror.org/017vb4h92 Seabased (Sweden)'),
(69845, 'https://ror.org/02vywq223', 'no_lang_code', 1, 'https://ror.org/02vywq223 Thinfilm (Sweden)'),
(69846, 'https://ror.org/05hvdj453', 'no_lang_code', 1, 'https://ror.org/05hvdj453 Semcon (Sweden)'),
(69847, 'https://ror.org/00h2xqq06', 'no_lang_code', 1, 'https://ror.org/00h2xqq06 Nano Control (Sweden)'),
(69848, 'https://ror.org/01bqshg74', 'no_lang_code', 1, 'https://ror.org/01bqshg74 Watty (Sweden)'),
(69849, 'https://ror.org/0540yt557', 'no_lang_code', 1, 'https://ror.org/0540yt557 Sensefarm (Sweden)'),
(69850, 'https://ror.org/05h7w4033', 'no_lang_code', 1, 'https://ror.org/05h7w4033 Wematter (Sweden)'),
(69851, 'https://ror.org/03mpmj050', 'no_lang_code', 1, 'https://ror.org/03mpmj050 Torkapparater (Sweden)'),
(69852, 'https://ror.org/03y7t4596', 'no_lang_code', 1, 'https://ror.org/03y7t4596 Sigrid Therapeutics (Sweden)'),
(69853, 'https://ror.org/03preh705', 'sv', 1, 'https://ror.org/03preh705 WeMind'),
(69854, 'https://ror.org/05f8krt68', 'en', 1, 'https://ror.org/05f8krt68 Sigtuna Foundation Sigtunastiftelsen'),
(69855, 'https://ror.org/04eh4dc20', 'no_lang_code', 1, 'https://ror.org/04eh4dc20 Winfoor (Sweden)'),
(69856, 'https://ror.org/05wmkk652', 'no_lang_code', 1, 'https://ror.org/05wmkk652 Sioo Wood Protection (Sweden)'),
(69857, 'https://ror.org/0020g8f52', 'sv', 1, 'https://ror.org/0020g8f52 Datorn I Utbildningen'),
(69858, 'https://ror.org/005b2xe71', 'no_lang_code', 1, 'https://ror.org/005b2xe71 WntResearch (Sweden)'),
(69859, 'https://ror.org/050cfca74', 'en', 1, 'https://ror.org/050cfca74 World Bioenergy Association'),
(69860, 'https://ror.org/05pq20j14', 'en', 1, 'https://ror.org/05pq20j14 National Museums of World Culture Världskulturmuseerna'),
(69861, 'https://ror.org/024ng9141', 'en', 1, 'https://ror.org/024ng9141 Transport Analysis'),
(69862, 'https://ror.org/05mryp106', 'no_lang_code', 1, 'https://ror.org/05mryp106 Sixera Pharma (Sweden)'),
(69863, 'https://ror.org/055dkvv33', 'no_lang_code', 1, 'https://ror.org/055dkvv33 Zenergy (Sweden)'),
(69864, 'https://ror.org/02dpfs211', 'sv', 1, 'https://ror.org/02dpfs211 Svenska Nationalkommittén för kemi'),
(69865, 'https://ror.org/045neh952', 'no_lang_code', 1, 'https://ror.org/045neh952 Zenicor Medical Systems (Sweden)'),
(69866, 'https://ror.org/0173e2k48', 'no_lang_code', 1, 'https://ror.org/0173e2k48 Sol Voltaics (Sweden)'),
(69867, 'https://ror.org/059cetm58', 'no_lang_code', 1, 'https://ror.org/059cetm58 Uniswed (Sweden)'),
(69868, 'https://ror.org/034bnq460', 'no_lang_code', 1, 'https://ror.org/034bnq460 Solelia Greentech (Sweden)'),
(69869, 'https://ror.org/05fn6pg91', 'sv', 1, 'https://ror.org/05fn6pg91 Forska Sverige Research!Sweden'),
(69870, 'https://ror.org/00vf59397', 'no_lang_code', 1, 'https://ror.org/00vf59397 Neosense Technologies (Sweden)'),
(69871, 'https://ror.org/01s1h9f22', 'no_lang_code', 1, 'https://ror.org/01s1h9f22 SoletAer (Sweden)'),
(69872, 'https://ror.org/04f8bya54', 'sv', 1, 'https://ror.org/04f8bya54 Fryshuset'),
(69873, 'https://ror.org/000dpyn16', 'no_lang_code', 1, 'https://ror.org/000dpyn16 Zenuity (Sweden)'),
(69874, 'https://ror.org/05x67xq17', 'no_lang_code', 1, 'https://ror.org/05x67xq17 NeoZeo (Sweden)'),
(69875, 'https://ror.org/05mke6x94', 'en', 1, 'https://ror.org/05mke6x94 Håll Sverige Rent Keep Sweden Tidy Foundation'),
(69876, 'https://ror.org/05wqvch42', 'no_lang_code', 1, 'https://ror.org/05wqvch42 Double Bond Pharmaceutical (Sweden)'),
(69877, 'https://ror.org/01gat1y32', 'no_lang_code', 1, 'https://ror.org/01gat1y32 No Picnic (Sweden)'),
(69878, 'https://ror.org/04zzb1s61', 'no_lang_code', 1, 'https://ror.org/04zzb1s61 Dyenamo (Sweden)'),
(69879, 'https://ror.org/0360xnj30', 'no_lang_code', 1, 'https://ror.org/0360xnj30 Strainlabs (Sweden)'),
(69880, 'https://ror.org/02b9c3t28', 'no_lang_code', 1, 'https://ror.org/02b9c3t28 Solibro Research (Sweden)'),
(69881, 'https://ror.org/02nwxkn91', 'no_lang_code', 1, 'https://ror.org/02nwxkn91 Solkompaniet (Sweden)'),
(69882, 'https://ror.org/01p35vs79', 'no_lang_code', 1, 'https://ror.org/01p35vs79 Echandia Marine (Sweden)'),
(69883, 'https://ror.org/0327fb755', 'no_lang_code', 1, 'https://ror.org/0327fb755 Heat Management (Sweden)'),
(69884, 'https://ror.org/0261y3y56', 'sv', 1, 'https://ror.org/0261y3y56 Konsthantverkscentrum'),
(69885, 'https://ror.org/01n2ss077', 'no_lang_code', 1, 'https://ror.org/01n2ss077 Stri (Sweden)'),
(69886, 'https://ror.org/01xwy3t39', 'no_lang_code', 1, 'https://ror.org/01xwy3t39 Northvolt (Sweden)'),
(69887, 'https://ror.org/002rnrf69', 'no_lang_code', 1, 'https://ror.org/002rnrf69 NORDIC BioEngineering (Sweden)'),
(69888, 'https://ror.org/02sjm2q41', 'no_lang_code', 1, 'https://ror.org/02sjm2q41 Ecofiltration (Sweden)'),
(69889, 'https://ror.org/02svwkx06', 'sv', 1, 'https://ror.org/02svwkx06 Svebio Svenska Bioenergiföreningen'),
(69890, 'https://ror.org/01m8g2q39', 'no_lang_code', 1, 'https://ror.org/01m8g2q39 Noviga Research (Sweden)'),
(69891, 'https://ror.org/01709et08', 'sv', 1, 'https://ror.org/01709et08 Östergötland Museum');
INSERT INTO `rors` VALUES
(69892, 'https://ror.org/0013pnn31', 'no_lang_code', 1, 'https://ror.org/0013pnn31 Ocean Harvesting Technologies (Sweden)'),
(69893, 'https://ror.org/0123m1q26', 'no_lang_code', 1, 'https://ror.org/0123m1q26 Nordvästra Skånes Vatten och Avlopp (Sweden)'),
(69894, 'https://ror.org/00r492z79', 'no_lang_code', 1, 'https://ror.org/00r492z79 OikosLab Future Solutions (Sweden)'),
(69895, 'https://ror.org/0407kdz58', 'no_lang_code', 1, 'https://ror.org/0407kdz58 Lexplore (Sweden)'),
(69896, 'https://ror.org/014wwcs49', 'en', 1, 'https://ror.org/014wwcs49 Naturskyddsföreningen Swedish Society for Nature Conservation'),
(69897, 'https://ror.org/05fsww483', 'sv', 1, 'https://ror.org/05fsww483 Sunderby Folkhögskola'),
(69898, 'https://ror.org/00bdk5051', 'no_lang_code', 1, 'https://ror.org/00bdk5051 Polar Light Technologies (Sweden)'),
(69899, 'https://ror.org/02547f863', 'no_lang_code', 1, 'https://ror.org/02547f863 TeXtreme (Sweden)'),
(69900, 'https://ror.org/03ezj6665', 'sv', 1, 'https://ror.org/03ezj6665 NyföretagarCentrum'),
(69901, 'https://ror.org/02sw18145', 'no_lang_code', 1, 'https://ror.org/02sw18145 Sveriges Television (Sweden)'),
(69902, 'https://ror.org/00p5gtp56', 'no_lang_code', 1, 'https://ror.org/00p5gtp56 Patriksson Communication (Sweden)'),
(69903, 'https://ror.org/01krfhk43', 'no_lang_code', 1, 'https://ror.org/01krfhk43 Norrköping Visualisering (Sweden)'),
(69904, 'https://ror.org/03grydy67', 'no_lang_code', 1, 'https://ror.org/03grydy67 Pelago Bioscience (Sweden)'),
(69905, 'https://ror.org/00gwr4a27', 'en', 1, 'https://ror.org/00gwr4a27 Polismyndigheten Swedish Police Authority'),
(69906, 'https://ror.org/03tcray14', 'no_lang_code', 1, 'https://ror.org/03tcray14 Peppy Pals (Sweden)'),
(69907, 'https://ror.org/05q4wvm17', 'no_lang_code', 1, 'https://ror.org/05q4wvm17 Porslinsfabriken (Sweden)'),
(69908, 'https://ror.org/02c8ckq78', 'en', 1, 'https://ror.org/02c8ckq78 Svenskt Demenscentrum Swedish Dementia Centre'),
(69909, 'https://ror.org/002nebm43', 'no_lang_code', 1, 'https://ror.org/002nebm43 Pharem Biotech (Sweden)'),
(69910, 'https://ror.org/05c64fx98', 'en', 1, 'https://ror.org/05c64fx98 Stockholm Makerspace'),
(69911, 'https://ror.org/00bev4j15', 'en', 1, 'https://ror.org/00bev4j15 Sveriges Olympiska Kommitté Swedish Olympic Committee'),
(69912, 'https://ror.org/02ndpa275', 'no_lang_code', 1, 'https://ror.org/02ndpa275 Pilloxa (Sweden)'),
(69913, 'https://ror.org/043ppxs71', 'no_lang_code', 1, 'https://ror.org/043ppxs71 PPAM Solkraft (Sweden)'),
(69914, 'https://ror.org/03xpfdf66', 'en', 1, 'https://ror.org/03xpfdf66 Dalarna Science Park'),
(69915, 'https://ror.org/008aazg21', 'no_lang_code', 1, 'https://ror.org/008aazg21 Predicare (Sweden)'),
(69916, 'https://ror.org/00rwrt808', 'en', 1, 'https://ror.org/00rwrt808 Tekniska Museet The National Museum of Science and Technology'),
(69917, 'https://ror.org/02sxtj815', 'sv', 1, 'https://ror.org/02sxtj815 Stockholms Stadsmission'),
(69918, 'https://ror.org/03v80r862', 'no_lang_code', 1, 'https://ror.org/03v80r862 Governo (Sweden)'),
(69919, 'https://ror.org/03ya27672', 'no_lang_code', 1, 'https://ror.org/03ya27672 Effecta (Sweden)'),
(69920, 'https://ror.org/00v2zc821', 'es', 1, 'https://ror.org/00v2zc821 Colegio Árula'),
(69921, 'https://ror.org/00y1npz19', 'en', 1, 'https://ror.org/00y1npz19 Bridgeman Images'),
(69922, 'https://ror.org/05503ny65', 'it', 1, 'https://ror.org/05503ny65 Ospedale "Floraspe Renzetti"'),
(69923, 'https://ror.org/043726d89', 'en', 1, 'https://ror.org/043726d89 Athena Sustainable Materials Institute'),
(69924, 'https://ror.org/01ftj8q07', 'en', 1, 'https://ror.org/01ftj8q07 College of St George'),
(69925, 'https://ror.org/02wvyyg66', 'en', 1, 'https://ror.org/02wvyyg66 Automotive Council UK'),
(69926, 'https://ror.org/04a908t67', 'en', 1, 'https://ror.org/04a908t67 Centre for Equity Studies'),
(69927, 'https://ror.org/03hxch322', 'en', 1, 'https://ror.org/03hxch322 1947 Partition Archive'),
(69928, 'https://ror.org/04x8c0q56', 'en', 1, 'https://ror.org/04x8c0q56 Committee on Radioactive Waste Management'),
(69929, 'https://ror.org/04a0qg985', 'en', 1, 'https://ror.org/04a0qg985 Committee on the Administration of Justice'),
(69930, 'https://ror.org/05a9avq33', 'en', 1, 'https://ror.org/05a9avq33 Centre for Printing History and Culture'),
(69931, 'https://ror.org/054h9pe78', 'en', 1, 'https://ror.org/054h9pe78 British Council for Offices'),
(69932, 'https://ror.org/02an8as91', 'en', 1, 'https://ror.org/02an8as91 British Egg Industry Council'),
(69933, 'https://ror.org/02mf18m55', 'en', 1, 'https://ror.org/02mf18m55 Beijing Administration Institute 北京行政学院'),
(69934, 'https://ror.org/01a1vdv95', 'en', 1, 'https://ror.org/01a1vdv95 British Safety Council'),
(69935, 'https://ror.org/03jdaez56', 'en', 1, 'https://ror.org/03jdaez56 Africa Research Institute'),
(69936, 'https://ror.org/05e475224', 'no_lang_code', 1, 'https://ror.org/05e475224 Cerberus Security Laboratories (United Kingdom)'),
(69937, 'https://ror.org/0307m3652', 'en', 1, 'https://ror.org/0307m3652 African Migration and Development Policy Centre'),
(69938, 'https://ror.org/01zjqjw24', 'en', 1, 'https://ror.org/01zjqjw24 Buckinghamshire Military Museum Trust'),
(69939, 'https://ror.org/05s9kz512', 'en', 1, 'https://ror.org/05s9kz512 Chawton House'),
(69940, 'https://ror.org/03zbfp751', 'en', 1, 'https://ror.org/03zbfp751 Aga Khan Foundation'),
(69941, 'https://ror.org/051twmh51', 'en', 1, 'https://ror.org/051twmh51 Aga Khan Foundation'),
(69942, 'https://ror.org/01f83vs23', 'no_lang_code', 1, 'https://ror.org/01f83vs23 C&A Foundation (Switzerland)'),
(69943, 'https://ror.org/00htsfa41', 'en', 1, 'https://ror.org/00htsfa41 Consumer Council for Water'),
(69944, 'https://ror.org/017kp0447', 'en', 1, 'https://ror.org/017kp0447 Cheshire Archives and Local Studies'),
(69945, 'https://ror.org/02nr4yf74', 'en', 1, 'https://ror.org/02nr4yf74 Copenhagen Consensus Center'),
(69946, 'https://ror.org/03247t449', 'en', 1, 'https://ror.org/03247t449 Campbell College'),
(69947, 'https://ror.org/040xcjs75', 'en', 1, 'https://ror.org/040xcjs75 Airports Council International Europe'),
(69948, 'https://ror.org/00408kc71', 'en', 1, 'https://ror.org/00408kc71 Education Authority'),
(69949, 'https://ror.org/05q6snw96', 'en', 1, 'https://ror.org/05q6snw96 Council for Wales of Voluntary Youth Services'),
(69950, 'https://ror.org/03xae5975', 'sv', 1, 'https://ror.org/03xae5975 Aleris Hälsocentral Bollnäs'),
(69951, 'https://ror.org/030w0d671', 'en', 1, 'https://ror.org/030w0d671 Chetham’s Library'),
(69952, 'https://ror.org/01w56ba43', 'en', 1, 'https://ror.org/01w56ba43 Council on Energy, Environment and Water'),
(69953, 'https://ror.org/025z1qv19', 'no_lang_code', 1, 'https://ror.org/025z1qv19 Child Watabaran Center'),
(69954, 'https://ror.org/048shje05', 'no_lang_code', 1, 'https://ror.org/048shje05 Alomone Labs (Israel)'),
(69955, 'https://ror.org/03ajz9454', 'en', 1, 'https://ror.org/03ajz9454 China Society for Urban Studies'),
(69956, 'https://ror.org/01gh80505', 'en', 1, 'https://ror.org/01gh80505 Coventry and Warwickshire Partnership NHS Trust'),
(69957, 'https://ror.org/03jr24865', 'en', 1, 'https://ror.org/03jr24865 Blackpool Better Start'),
(69958, 'https://ror.org/01t8am602', 'en', 1, 'https://ror.org/01t8am602 Creative & Cultural Skills'),
(69959, 'https://ror.org/0130dgg46', 'en', 1, 'https://ror.org/0130dgg46 China-Britain Business Council'),
(69960, 'https://ror.org/00k1jzy36', 'en', 1, 'https://ror.org/00k1jzy36 Carnegie UK Trust'),
(69961, 'https://ror.org/046sdzq93', 'en', 1, 'https://ror.org/046sdzq93 Botswana Predator Conservation Trust'),
(69962, 'https://ror.org/04p858908', 'en', 1, 'https://ror.org/04p858908 Daedalus Trust'),
(69963, 'https://ror.org/01kh56070', 'fr', 1, 'https://ror.org/01kh56070 Conseil Départemental de la Creuse'),
(69964, 'https://ror.org/02m9cpr85', 'en', 1, 'https://ror.org/02m9cpr85 Dag Hammarskjöld Foundation'),
(69965, 'https://ror.org/0134kq024', 'en', 1, 'https://ror.org/0134kq024 Cell and Gene Therapy Catapult'),
(69966, 'https://ror.org/03k4hy467', 'en', 1, 'https://ror.org/03k4hy467 Virgin Care'),
(69967, 'https://ror.org/044xs7e53', 'no_lang_code', 1, 'https://ror.org/044xs7e53 RxMP Therapeutics (United States)'),
(69968, 'https://ror.org/01wy67352', 'en', 1, 'https://ror.org/01wy67352 Città di Castello Hospital'),
(69969, 'https://ror.org/01dqh8j58', 'en', 1, 'https://ror.org/01dqh8j58 National Institute of Disaster Management राष्ट्रीय आपदा प्रबंधन संस्थान'),
(69970, 'https://ror.org/04j9qwe36', 'en', 1, 'https://ror.org/04j9qwe36 Danish Refugee Council Dansk Flygtningehjælp'),
(69971, 'https://ror.org/05p4qy229', 'en', 1, 'https://ror.org/05p4qy229 Shahid Beheshti Teacher Training College دانشگاه تربیت معلم شهید بهشتی مشهد'),
(69972, 'https://ror.org/05e7psn47', 'en', 1, 'https://ror.org/05e7psn47 Center for Domestic Violence Prevention'),
(69973, 'https://ror.org/02fwchg56', 'en', 1, 'https://ror.org/02fwchg56 Documentation Center of Cambodia'),
(69974, 'https://ror.org/008vf9155', 'en', 1, 'https://ror.org/008vf9155 The Donaldson Trust'),
(69975, 'https://ror.org/02fvbz323', 'en', 1, 'https://ror.org/02fvbz323 Dearne Valley College'),
(69976, 'https://ror.org/04gck6g78', 'en', 1, 'https://ror.org/04gck6g78 University of Modern Sciences جامعة العلوم الحديثة'),
(69977, 'https://ror.org/033bdbr41', 'es', 1, 'https://ror.org/033bdbr41 Dejusticia'),
(69978, 'https://ror.org/03kfjwh70', 'nl', 1, 'https://ror.org/03kfjwh70 College voor de Rechten van de Mens'),
(69979, 'https://ror.org/002kr4405', 'en', 1, 'https://ror.org/002kr4405 Delhi Foundation of Deaf Women'),
(69980, 'https://ror.org/00n9sjd15', 'en', 1, 'https://ror.org/00n9sjd15 Center for Human Rights and Conflict Resolution'),
(69981, 'https://ror.org/016a6yb46', 'en', 1, 'https://ror.org/016a6yb46 Dundee Heritage Trust'),
(69982, 'https://ror.org/0469msm38', 'it', 1, 'https://ror.org/0469msm38 Cineteca di Bologna'),
(69983, 'https://ror.org/03q51r998', 'no_lang_code', 1, 'https://ror.org/03q51r998 Valero Energy (United States)'),
(69984, 'https://ror.org/01de1bn24', 'no_lang_code', 1, 'https://ror.org/01de1bn24 Dextra Laboratories (United Kingdom)'),
(69985, 'https://ror.org/017p3r607', 'en', 1, 'https://ror.org/017p3r607 International Network of Civil Liberties Organizations'),
(69986, 'https://ror.org/00bvkj141', 'no_lang_code', 1, 'https://ror.org/00bvkj141 GS Caltex (South Korea)'),
(69987, 'https://ror.org/00bw0hk14', 'en', 1, 'https://ror.org/00bw0hk14 Center for Medical Technology Policy'),
(69988, 'https://ror.org/023gtz231', 'en', 1, 'https://ror.org/023gtz231 Elderly Accommodation Counsel'),
(69989, 'https://ror.org/05szkt337', 'en', 1, 'https://ror.org/05szkt337 Electric Infrastructure Security Council'),
(69990, 'https://ror.org/05qgprp76', 'no_lang_code', 1, 'https://ror.org/05qgprp76 Enterprise Products (United States)'),
(69991, 'https://ror.org/02xd41x41', 'de', 1, 'https://ror.org/02xd41x41 Forio'),
(69992, 'https://ror.org/04sn6zn93', 'en', 1, 'https://ror.org/04sn6zn93 Essex Wildlife Trust'),
(69993, 'https://ror.org/00t1n6362', 'no_lang_code', 1, 'https://ror.org/00t1n6362 OMV Petrom (Romania)'),
(69994, 'https://ror.org/02sfgx138', 'en', 1, 'https://ror.org/02sfgx138 Abogados y Abogadas del NOA en Derechos Humanos y Estudios Sociales Lawyers and Advocates of Northwest and Human Rights Studies Social'),
(69995, 'https://ror.org/00xqr8q70', 'en', 1, 'https://ror.org/00xqr8q70 Fountainbridge Library'),
(69996, 'https://ror.org/0083kgt80', 'en', 1, 'https://ror.org/0083kgt80 Guildhall Library'),
(69997, 'https://ror.org/009n4zx75', 'en', 1, 'https://ror.org/009n4zx75 Conseil Européen de Remanufacture European Remanufacturing Council'),
(69998, 'https://ror.org/0254e9x24', 'en', 1, 'https://ror.org/0254e9x24 Friends of Cumbria Archives'),
(69999, 'https://ror.org/01yfdk227', 'en', 1, 'https://ror.org/01yfdk227 Wigston College'),
(70000, 'https://ror.org/03mxt3314', 'en', 1, 'https://ror.org/03mxt3314 Family Mediation Council'),
(70001, 'https://ror.org/04rd9p896', 'en', 1, 'https://ror.org/04rd9p896 Felipe González Foundation Fundación Felipe González'),
(70002, 'https://ror.org/009rcpx96', 'en', 1, 'https://ror.org/009rcpx96 Feminist Archive North'),
(70003, 'https://ror.org/02kkwr259', 'it', 1, 'https://ror.org/02kkwr259 Ospedale Ferdinando Veneziale di Isernia'),
(70004, 'https://ror.org/03ang6a06', 'en', 1, 'https://ror.org/03ang6a06 The Fermanagh Trust'),
(70005, 'https://ror.org/03f358370', 'en', 1, 'https://ror.org/03f358370 Institute of Environmental Management and Assessment'),
(70006, 'https://ror.org/014ypdf93', 'en', 1, 'https://ror.org/014ypdf93 Fettes College'),
(70007, 'https://ror.org/04nwm6350', 'en', 1, 'https://ror.org/04nwm6350 Comhairle Choitcheann Teagaisg na h-Alba The General Teaching Council for Scotland'),
(70008, 'https://ror.org/01q5qmy44', 'en', 1, 'https://ror.org/01q5qmy44 Institute of Translation and Interpreting'),
(70009, 'https://ror.org/01x48j266', 'en', 1, 'https://ror.org/01x48j266 Hainan Modern Women and Children''s Hospital 海南现代妇女儿童医院'),
(70010, 'https://ror.org/04c7t5k94', 'de', 1, 'https://ror.org/04c7t5k94 Institut für Mittelstandsforschung'),
(70011, 'https://ror.org/03x3nyk13', 'en', 1, 'https://ror.org/03x3nyk13 HAT Community Foundation'),
(70012, 'https://ror.org/01fkztr60', 'en', 1, 'https://ror.org/01fkztr60 Glasgow Women''s Library'),
(70013, 'https://ror.org/03js0ja63', 'en', 1, 'https://ror.org/03js0ja63 Havering College of Further and Higher Education'),
(70014, 'https://ror.org/04hpe2n33', 'en', 1, 'https://ror.org/04hpe2n33 Haywood Academy'),
(70015, 'https://ror.org/00sr3jx98', 'sv', 1, 'https://ror.org/00sr3jx98 Vårdcentralen Silentzvägen'),
(70016, 'https://ror.org/03bgw1x40', 'en', 1, 'https://ror.org/03bgw1x40 Institute of Epidemiology, Disease Control and Research ইনস্টিটিউট অব এপিডেমোলোজি ডিজিজ কন্ট্রোল এন্ড রিসার্চ আইইডিসিআর'),
(70017, 'https://ror.org/006h33619', 'no_lang_code', 1, 'https://ror.org/006h33619 Keleketla Library'),
(70018, 'https://ror.org/006qrkk22', 'en', 1, 'https://ror.org/006qrkk22 Hymers College'),
(70019, 'https://ror.org/05yd64b65', 'en', 1, 'https://ror.org/05yd64b65 High Life Highland'),
(70020, 'https://ror.org/049yd1k97', 'en', 1, 'https://ror.org/049yd1k97 Archivo Histórico de la Policía Nacional Guatemala National Police Archives'),
(70021, 'https://ror.org/02fa1wt71', 'en', 1, 'https://ror.org/02fa1wt71 The Incorporated Council of Law Reporting for England & Wales'),
(70022, 'https://ror.org/01w74v812', 'en', 1, 'https://ror.org/01w74v812 Environmental Council of the States'),
(70023, 'https://ror.org/04kb7h130', 'en', 1, 'https://ror.org/04kb7h130 Irrigation Management Training Institute'),
(70024, 'https://ror.org/02yqzy864', 'en', 1, 'https://ror.org/02yqzy864 Islamic Foundation for Ecology and Environmental Science'),
(70025, 'https://ror.org/00ja8fs25', 'en', 1, 'https://ror.org/00ja8fs25 Institute for Society, Population and Nature Instituto Sociedade População Natureza'),
(70026, 'https://ror.org/00f21ds03', 'en', 1, 'https://ror.org/00f21ds03 L''Istituto dei Sordi di Torino Turin Institute for the Deaf'),
(70027, 'https://ror.org/01e3mhx02', 'en', 1, 'https://ror.org/01e3mhx02 Japan Institute for Labour Policy and Training 独立行政法人労働政策研究・研修機構'),
(70028, 'https://ror.org/03d022g94', 'en', 1, 'https://ror.org/03d022g94 Indonesian Coffee and Cocoa Research Institute'),
(70029, 'https://ror.org/03g1d8888', 'en', 1, 'https://ror.org/03g1d8888 Institute of Town Planners, Sri lanka'),
(70030, 'https://ror.org/05h8jev84', 'en', 1, 'https://ror.org/05h8jev84 JNCL-NCLIS'),
(70031, 'https://ror.org/00ya5ka53', 'en', 1, 'https://ror.org/00ya5ka53 Indus Resource Centre'),
(70032, 'https://ror.org/039g88209', 'no', 1, 'https://ror.org/039g88209 Kongsberg sykehus'),
(70033, 'https://ror.org/003kr8v19', 'en', 1, 'https://ror.org/003kr8v19 Linen Hall Library'),
(70034, 'https://ror.org/00t0v7w29', 'en', 1, 'https://ror.org/00t0v7w29 Min-On Concert Association 民主音楽協会'),
(70035, 'https://ror.org/02jwd3a38', 'no_lang_code', 1, 'https://ror.org/02jwd3a38 Minerva Laboratories (United Kingdom)'),
(70036, 'https://ror.org/04h8bnx49', 'en', 1, 'https://ror.org/04h8bnx49 Mitchell Library'),
(70037, 'https://ror.org/02dn4tb64', 'cs', 1, 'https://ror.org/02dn4tb64 Nemocnice Kutná Hora'),
(70038, 'https://ror.org/03vj16b25', 'en', 1, 'https://ror.org/03vj16b25 Money Advice Trust'),
(70039, 'https://ror.org/04hse4551', 'no_lang_code', 1, 'https://ror.org/04hse4551 Kamukunji Paralegal Trust'),
(70040, 'https://ror.org/01h814g24', 'no_lang_code', 1, 'https://ror.org/01h814g24 Lanka Hydraulic Institute (Sri Lanka)'),
(70041, 'https://ror.org/03gdwf180', 'en', 1, 'https://ror.org/03gdwf180 National Film and Sound Archive of Australia'),
(70042, 'https://ror.org/05e3gef34', 'es', 1, 'https://ror.org/05e3gef34 Hospital Las Higueras'),
(70043, 'https://ror.org/011rkfr90', 'en', 1, 'https://ror.org/011rkfr90 National Videogame Museum'),
(70044, 'https://ror.org/00m48be82', 'en', 1, 'https://ror.org/00m48be82 National Council for Voluntary Youth Services'),
(70045, 'https://ror.org/00z5a4134', 'es', 1, 'https://ror.org/00z5a4134 Hospital Naval Almirante Adriazola de Talcahuano'),
(70046, 'https://ror.org/0160tym22', 'en', 1, 'https://ror.org/0160tym22 Ouseburn Trust'),
(70047, 'https://ror.org/01q4spz53', 'en', 1, 'https://ror.org/01q4spz53 National AIDS Trust'),
(70048, 'https://ror.org/04cd5hv25', 'en', 1, 'https://ror.org/04cd5hv25 New Leaf Center'),
(70049, 'https://ror.org/02sc13d13', 'en', 1, 'https://ror.org/02sc13d13 Pakistan Muslim Centre'),
(70050, 'https://ror.org/00dwnzj85', 'en', 1, 'https://ror.org/00dwnzj85 Newbattle Abbey College'),
(70051, 'https://ror.org/054rgmw54', 'en', 1, 'https://ror.org/054rgmw54 Palli Karma Sahayak Foundation পল্লী কর্ম-সহায়ক ফাউন্ডেশন।'),
(70052, 'https://ror.org/02st6h303', 'en', 1, 'https://ror.org/02st6h303 Archives Nationales du Sénégal National Archives of Senegal'),
(70053, 'https://ror.org/030v3z925', 'en', 1, 'https://ror.org/030v3z925 Newcastle United Foundation'),
(70054, 'https://ror.org/003hx7248', 'es', 1, 'https://ror.org/003hx7248 Instituto Nicaragüense de Cultura'),
(70055, 'https://ror.org/02cvnka73', 'en', 1, 'https://ror.org/02cvnka73 Norfolk Rivers Trust'),
(70056, 'https://ror.org/02wvbw668', 'en', 1, 'https://ror.org/02wvbw668 The Marie Collins Foundation'),
(70057, 'https://ror.org/02t84ww49', 'en', 1, 'https://ror.org/02t84ww49 Pastoral Women''s Council'),
(70058, 'https://ror.org/047kbbm64', 'en', 1, 'https://ror.org/047kbbm64 Marine Stewardship Council'),
(70059, 'https://ror.org/00z7p5142', 'en', 1, 'https://ror.org/00z7p5142 North Devon Biosphere Foundation'),
(70060, 'https://ror.org/033kh6571', 'en', 1, 'https://ror.org/033kh6571 Consejo Nacional de Evaluación de la Política de Desarrollo Social National Council for the Evaluation of Social Development Policy'),
(70061, 'https://ror.org/04kpx4g09', 'en', 1, 'https://ror.org/04kpx4g09 Northern Ireland Council for Integrated Education'),
(70062, 'https://ror.org/00m1t4240', 'en', 1, 'https://ror.org/00m1t4240 National Library of Laos ຫໍສະໝຸດແຫ່ງຊາດ'),
(70063, 'https://ror.org/01kwnqg78', 'en', 1, 'https://ror.org/01kwnqg78 Northern Ireland Council for Voluntary Action'),
(70064, 'https://ror.org/05jgm8734', 'en', 1, 'https://ror.org/05jgm8734 National Literacy Trust'),
(70065, 'https://ror.org/00a91y272', 'en', 1, 'https://ror.org/00a91y272 Redress'),
(70066, 'https://ror.org/05g94t868', 'en', 1, 'https://ror.org/05g94t868 Yorkshire Film Archive'),
(70067, 'https://ror.org/03nm0d152', 'en', 1, 'https://ror.org/03nm0d152 Media Archive for Central England'),
(70068, 'https://ror.org/05fxzh978', 'fr', 1, 'https://ror.org/05fxzh978 Laboratoire Philippe Auguste'),
(70069, 'https://ror.org/05p0tmv18', 'en', 1, 'https://ror.org/05p0tmv18 Nubuke Foundation'),
(70070, 'https://ror.org/03apry564', 'en', 1, 'https://ror.org/03apry564 Oak Field School and Sports College'),
(70071, 'https://ror.org/005p07d97', 'en', 1, 'https://ror.org/005p07d97 Consejo de Monumentos Nacionales National Monuments Council'),
(70072, 'https://ror.org/02af2ve13', 'en', 1, 'https://ror.org/02af2ve13 Orkney Library and Archive'),
(70073, 'https://ror.org/025a6yk46', 'en', 1, 'https://ror.org/025a6yk46 Rhondda Cynon Taff Library Service'),
(70074, 'https://ror.org/0447j3y44', 'en', 1, 'https://ror.org/0447j3y44 Ossett Academy'),
(70075, 'https://ror.org/05rs7mx39', 'en', 1, 'https://ror.org/05rs7mx39 Richmond School and Sixth Form College'),
(70076, 'https://ror.org/00djmfe91', 'en', 1, 'https://ror.org/00djmfe91 Schumacher College'),
(70077, 'https://ror.org/041gwe229', 'en', 1, 'https://ror.org/041gwe229 South African Council for Planners'),
(70078, 'https://ror.org/04fa9he73', 'en', 1, 'https://ror.org/04fa9he73 Robert Gordon''s College'),
(70079, 'https://ror.org/04570hm76', 'en', 1, 'https://ror.org/04570hm76 Private Sector Foundation Uganda'),
(70080, 'https://ror.org/03y6t7d21', 'en', 1, 'https://ror.org/03y6t7d21 Scottish Council for Voluntary Organisations'),
(70081, 'https://ror.org/004rh7a97', 'en', 1, 'https://ror.org/004rh7a97 Public Health Institute of Malawi'),
(70082, 'https://ror.org/04zsfh247', 'en', 1, 'https://ror.org/04zsfh247 Royal College of Occupational Therapists'),
(70083, 'https://ror.org/00yc8p775', 'en', 1, 'https://ror.org/00yc8p775 International Federation of Television Archives'),
(70084, 'https://ror.org/0121pvy84', 'en', 1, 'https://ror.org/0121pvy84 Scottish Social Services Council'),
(70085, 'https://ror.org/05yjmpq86', 'en', 1, 'https://ror.org/05yjmpq86 Royal College of Veterinary Surgeons'),
(70086, 'https://ror.org/00n3xk635', 'en', 1, 'https://ror.org/00n3xk635 Libraries Tasmania'),
(70087, 'https://ror.org/02ft9z011', 'en', 1, 'https://ror.org/02ft9z011 Royal College of Speech and Language Therapists'),
(70088, 'https://ror.org/05jp4w275', 'en', 1, 'https://ror.org/05jp4w275 Seethapathy Clinic and Hospital'),
(70089, 'https://ror.org/02xhnj226', 'en', 1, 'https://ror.org/02xhnj226 Mobox Foundation'),
(70090, 'https://ror.org/03wdrwf95', 'en', 1, 'https://ror.org/03wdrwf95 Shaoguan Railway Hospital 韶关市铁路医院'),
(70091, 'https://ror.org/0568d6a68', 'en', 1, 'https://ror.org/0568d6a68 St. Francis Referral Hospital'),
(70092, 'https://ror.org/02ns8e576', 'en', 1, 'https://ror.org/02ns8e576 Naval Dockyards Society'),
(70093, 'https://ror.org/019jndt66', 'en', 1, 'https://ror.org/019jndt66 Textile Centre of Excellence'),
(70094, 'https://ror.org/00y8a5g73', 'en', 1, 'https://ror.org/00y8a5g73 Sabah Environmental Trust'),
(70095, 'https://ror.org/00rxtaa07', 'en', 1, 'https://ror.org/00rxtaa07 Thai-German Institute สถาบันไทย-เยอรมัน'),
(70096, 'https://ror.org/00qb7v529', 'it', 1, 'https://ror.org/00qb7v529 Archivio di Stato di Roma'),
(70097, 'https://ror.org/00cmvzh60', 'en', 1, 'https://ror.org/00cmvzh60 The Portico Library'),
(70098, 'https://ror.org/04ah8f064', 'en', 1, 'https://ror.org/04ah8f064 Shropshire Archives'),
(70099, 'https://ror.org/033y2mr45', 'it', 1, 'https://ror.org/033y2mr45 Archivio di Stato di Venezia'),
(70100, 'https://ror.org/00tmbfm47', 'en', 1, 'https://ror.org/00tmbfm47 Ocean Tracking Network'),
(70101, 'https://ror.org/01kz8wz75', 'en', 1, 'https://ror.org/01kz8wz75 Abaseen Foundation'),
(70102, 'https://ror.org/03y83ve89', 'en', 1, 'https://ror.org/03y83ve89 Sing Up Foundation'),
(70103, 'https://ror.org/00e0czp98', 'en', 1, 'https://ror.org/00e0czp98 Sir Bobby Robson Foundation'),
(70104, 'https://ror.org/053236z94', 'en', 1, 'https://ror.org/053236z94 City of Stoke-on-Trent Sixth Form College'),
(70105, 'https://ror.org/05dwbzt62', 'en', 1, 'https://ror.org/05dwbzt62 Samata Foundation समता फाउन्डेशन'),
(70106, 'https://ror.org/004mwvw05', 'en', 1, 'https://ror.org/004mwvw05 AfriChild Centre'),
(70107, 'https://ror.org/00cgyrr09', 'en', 1, 'https://ror.org/00cgyrr09 Sussex Recovery College'),
(70108, 'https://ror.org/044ve7993', 'en', 1, 'https://ror.org/044ve7993 Migration & Asylum Project'),
(70109, 'https://ror.org/04vcg0a87', 'no_lang_code', 1, 'https://ror.org/04vcg0a87 Golden Agri-Resources (Singapore)'),
(70110, 'https://ror.org/045bb6111', 'en', 1, 'https://ror.org/045bb6111 William Temple Foundation'),
(70111, 'https://ror.org/0109q6556', 'en', 1, 'https://ror.org/0109q6556 Tim Parry Johnathan Ball Peace Foundation'),
(70112, 'https://ror.org/00x0x6v41', 'en', 1, 'https://ror.org/00x0x6v41 Co-operative College'),
(70113, 'https://ror.org/01j2pmk70', 'en', 1, 'https://ror.org/01j2pmk70 Time-Line computer Archive'),
(70114, 'https://ror.org/02s437n13', 'en', 1, 'https://ror.org/02s437n13 The Textile Institute'),
(70115, 'https://ror.org/04svebv53', 'en', 1, 'https://ror.org/04svebv53 Softwarica College'),
(70116, 'https://ror.org/01rng5a32', 'en', 1, 'https://ror.org/01rng5a32 New City College'),
(70117, 'https://ror.org/00hdpb239', 'en', 1, 'https://ror.org/00hdpb239 The Tree Council'),
(70118, 'https://ror.org/00ztk9j52', 'en', 1, 'https://ror.org/00ztk9j52 Elders of Newscastle Upon Tyne'),
(70119, 'https://ror.org/00a4e3a70', 'no', 1, 'https://ror.org/00a4e3a70 Trondheim Hjertesenter'),
(70120, 'https://ror.org/01077pm86', 'en', 1, 'https://ror.org/01077pm86 UK Centre for Moisture in Buildings'),
(70121, 'https://ror.org/00tntqs89', 'en', 1, 'https://ror.org/00tntqs89 Wonder Foundation'),
(70122, 'https://ror.org/00zphcv39', 'en', 1, 'https://ror.org/00zphcv39 UK Green Building Council'),
(70123, 'https://ror.org/0408hpd14', 'en', 1, 'https://ror.org/0408hpd14 Feminist Archive South'),
(70124, 'https://ror.org/05rkvrx68', 'en', 1, 'https://ror.org/05rkvrx68 Centre Hospitalier Universitaire of Butare University Teaching Hospital of Butare'),
(70125, 'https://ror.org/04fqnjy45', 'en', 1, 'https://ror.org/04fqnjy45 The Feminist Library'),
(70126, 'https://ror.org/05rahmh70', 'en', 1, 'https://ror.org/05rahmh70 United Kingdom Council for Psychotherapy'),
(70127, 'https://ror.org/00rfg3b85', 'en', 1, 'https://ror.org/00rfg3b85 Working Class Movement Library'),
(70128, 'https://ror.org/02kzjed53', 'no_lang_code', 1, 'https://ror.org/02kzjed53 Value Chain Lab (United Kingdom)'),
(70129, 'https://ror.org/045m5hq56', 'en', 1, 'https://ror.org/045m5hq56 Foundation for Civil Society'),
(70130, 'https://ror.org/03d4czf80', 'en', 1, 'https://ror.org/03d4czf80 United Nations System Staff College'),
(70131, 'https://ror.org/022ma3798', 'en', 1, 'https://ror.org/022ma3798 World Travel and Tourism Council'),
(70132, 'https://ror.org/04ev8y062', 'no_lang_code', 1, 'https://ror.org/04ev8y062 Woundchek Laboratories (United Kingdom)'),
(70133, 'https://ror.org/02j5kt108', 'it', 1, 'https://ror.org/02j5kt108 Ospedale Veris Delli Ponti Scorrano'),
(70134, 'https://ror.org/04xm01g51', 'en', 1, 'https://ror.org/04xm01g51 Wrexham County Borough Museum & Archives'),
(70135, 'https://ror.org/01vxe0k23', 'en', 1, 'https://ror.org/01vxe0k23 Wales Co-operative Centre'),
(70136, 'https://ror.org/00r18kp26', 'bs', 1, 'https://ror.org/00r18kp26 OKC Abrašević The Youth Cultural Centre Abrašević'),
(70137, 'https://ror.org/00yk3tm64', 'fr', 1, 'https://ror.org/00yk3tm64 Université des Sciences de la Santé'),
(70138, 'https://ror.org/03m3kst85', 'en', 1, 'https://ror.org/03m3kst85 Wales Council for Voluntary Action'),
(70139, 'https://ror.org/022y13z84', 'en', 1, 'https://ror.org/022y13z84 ZanaAfrica Foundation'),
(70140, 'https://ror.org/02s6z4m47', 'en', 1, 'https://ror.org/02s6z4m47 Warwickshire Wildlife Trust'),
(70141, 'https://ror.org/05bnh6b29', 'en', 1, 'https://ror.org/05bnh6b29 Institute of Group Analysis'),
(70142, 'https://ror.org/04gcfwh66', 'en', 1, 'https://ror.org/04gcfwh66 The First People''s Hospital of Zhaoqing 肇庆市第一人民医院'),
(70143, 'https://ror.org/01jysap10', 'en', 1, 'https://ror.org/01jysap10 West Yorkshire Joint Services'),
(70144, 'https://ror.org/05hnrst22', 'en', 1, 'https://ror.org/05hnrst22 Westmill Sustainable Energy Trust'),
(70145, 'https://ror.org/03mv13182', 'en', 1, 'https://ror.org/03mv13182 Ways to Wellness'),
(70146, 'https://ror.org/014zfzp17', 'sk', 1, 'https://ror.org/014zfzp17 Hvezdáreň a Planetárium M.R. Štefánika'),
(70147, 'https://ror.org/04jbk1p62', 'no_lang_code', 1, 'https://ror.org/04jbk1p62 Data:Lab Munich (Germany)'),
(70148, 'https://ror.org/04r7ckw96', 'es', 1, 'https://ror.org/04r7ckw96 Agrupación Astronómica de la Safor'),
(70149, 'https://ror.org/045dz4566', 'en', 1, 'https://ror.org/045dz4566 Submicron Heterostructures for Microelectronics Research and Engineering Center Федеральное государственное бюджетное учреждение науки Научно-технологический центр микроэлектроники и субмикронных гетероструктур Российской академии наук'),
(70150, 'https://ror.org/00xr8z771', 'en', 1, 'https://ror.org/00xr8z771 Institute of Public Health Osijek-Baranja County Zavod za Javno Zdravstvo Osječko-Baranjske Županije'),
(70151, 'https://ror.org/04y51qn38', 'en', 1, 'https://ror.org/04y51qn38 Centre for Cosmology and Particle Physics Phenomenology'),
(70152, 'https://ror.org/04dgdk605', 'en', 1, 'https://ror.org/04dgdk605 Nationellt Forensiskt Centrum Swedish National Forensic Centre'),
(70153, 'https://ror.org/009rr6x76', 'es', 1, 'https://ror.org/009rr6x76 Instituto Tecnológico Superior de Xalapa'),
(70154, 'https://ror.org/00a0wam85', 'en', 1, 'https://ror.org/00a0wam85 Arizona School for the Arts'),
(70155, 'https://ror.org/01x41eb05', 'en', 1, 'https://ror.org/01x41eb05 University of Neyshabur دانشگاه نیشابور'),
(70156, 'https://ror.org/033mn5m13', 'en', 1, 'https://ror.org/033mn5m13 Pasargad Institute for Advanced Innovative Solutions معهد باسارجاد للحلول المبتكرة المتقدمة'),
(70157, 'https://ror.org/04tw9zq58', 'en', 1, 'https://ror.org/04tw9zq58 International Space Science Institute - Beijing 国际空间科学研究所-北京'),
(70158, 'https://ror.org/03h837345', 'nl', 1, 'https://ror.org/03h837345 Astronomisch Fysisch Onderzoek Nederland'),
(70159, 'https://ror.org/00zenaa75', 'en', 1, 'https://ror.org/00zenaa75 Beijing Academy of Smart Economy 北京智能经济研究院'),
(70160, 'https://ror.org/05jbsjy59', 'en', 1, 'https://ror.org/05jbsjy59 Iran Meteorological Organization سازمان هواشناسی جمهوری اسلامی ایران'),
(70161, 'https://ror.org/008ehzy31', 'en', 1, 'https://ror.org/008ehzy31 World Academy of Art and Science'),
(70162, 'https://ror.org/041hvc055', 'en', 1, 'https://ror.org/041hvc055 Islamic Azad University Yasuj دانشگاه آزاد اسلامی واحد یاسوج'),
(70163, 'https://ror.org/0331wa828', 'en', 1, 'https://ror.org/0331wa828 Universiti Xiamen Malaysia Xiamen University Malaysia'),
(70164, 'https://ror.org/00an5hx75', 'en', 1, 'https://ror.org/00an5hx75 Bennett University'),
(70165, 'https://ror.org/03eykm948', 'en', 1, 'https://ror.org/03eykm948 Islamic Azad University, Buin-Zahra'),
(70166, 'https://ror.org/04ramzc89', 'en', 1, 'https://ror.org/04ramzc89 Islamic Azad University, Langarud Branch دانشگاه آزاد اسلامی واحد لنگرود'),
(70167, 'https://ror.org/00sh5y950', 'en', 1, 'https://ror.org/00sh5y950 Yantai Automobile Engineering Professional College 烟台汽车工程职业学院'),
(70168, 'https://ror.org/059q04r73', 'en', 1, 'https://ror.org/059q04r73 Leeds College of Building'),
(70169, 'https://ror.org/02qp5k481', 'en', 1, 'https://ror.org/02qp5k481 In-Q-Tel'),
(70170, 'https://ror.org/00zq3ce72', 'en', 1, 'https://ror.org/00zq3ce72 QuSoft'),
(70171, 'https://ror.org/01b3ygz78', 'de', 1, 'https://ror.org/01b3ygz78 Institut Kurz'),
(70172, 'https://ror.org/04q23qy39', 'en', 1, 'https://ror.org/04q23qy39 Chaudhary Ranbir Singh University चौधरी रणबीर सिंह विश्वविद्यालय'),
(70173, 'https://ror.org/02sjwx878', 'en', 1, 'https://ror.org/02sjwx878 Condensed Matter Physics Research Center'),
(70174, 'https://ror.org/00khkb614', 'en', 1, 'https://ror.org/00khkb614 Laboratory of Excellence for Financial Regulation'),
(70175, 'https://ror.org/05277x335', 'en', 1, 'https://ror.org/05277x335 Joint Institute for Computational Sciences'),
(70176, 'https://ror.org/049ntvc74', 'fr', 1, 'https://ror.org/049ntvc74 Centre de Recherche Nucléaire d’Alger مركز البحث النووي بالجزائر'),
(70177, 'https://ror.org/039jhgf83', 'en', 1, 'https://ror.org/039jhgf83 China Automotive Engineering Research Institute 中国汽车工程研究院有限公司'),
(70178, 'https://ror.org/05tekqt96', 'en', 1, 'https://ror.org/05tekqt96 National Laboratory for Superconductivity 超导国家重点实验室'),
(70179, 'https://ror.org/03haheq63', 'no_lang_code', 1, 'https://ror.org/03haheq63 Engineering Technologies and Developments (Ukraine)'),
(70180, 'https://ror.org/03a111314', 'en', 1, 'https://ror.org/03a111314 Institute of History of Mediterranean Europe Istituto di Storia dell''Europa Mediterranea'),
(70181, 'https://ror.org/035y5td47', 'en', 1, 'https://ror.org/035y5td47 Institute for International Legal Studies Istituto di Studi Giuridici Internazionali'),
(70182, 'https://ror.org/05nzf7q96', 'en', 1, 'https://ror.org/05nzf7q96 Institute of Biomembranes, Bioenergetics and Molecular Biotechnologies Istituto di Biomembrane, Bioenergetica e Biotecnologie Molecolari'),
(70183, 'https://ror.org/05k3cs357', 'en', 1, 'https://ror.org/05k3cs357 Institute for the Study of Regionalism, Federalism and Self-Government Istituto di Studi sui Sistemi Regionali Federali e sulle Autonomie ''''Massimo Severo Giannini'''''),
(70184, 'https://ror.org/02gcxw165', 'it', 1, 'https://ror.org/02gcxw165 Istituto di Studi sul Mediterraneo Antico'),
(70185, 'https://ror.org/00brf2d87', 'en', 1, 'https://ror.org/00brf2d87 Institute of Acoustics and Sensors "Orso Mario Corbino" Istituto di Acustica e Sensoristica “Orso Mario Corbino”'),
(70186, 'https://ror.org/008fjbg42', 'en', 1, 'https://ror.org/008fjbg42 Institute for Sustainable Plant Protection Istituto per la Protezione Sostenibile delle Piante'),
(70187, 'https://ror.org/0042x6d59', 'de', 1, 'https://ror.org/0042x6d59 Zentrum für Seelische Gesundheit'),
(70188, 'https://ror.org/02qwy8e97', 'it', 1, 'https://ror.org/02qwy8e97 Institute for Research on Engines Istituto Motori'),
(70189, 'https://ror.org/02rzxrg25', 'it', 1, 'https://ror.org/02rzxrg25 Opera del Vocabolario Italiano'),
(70190, 'https://ror.org/0141vn777', 'en', 1, 'https://ror.org/0141vn777 Institute of Chemistry of Molecular Recognition Istituto di Chimica del Riconoscimento Molecolare'),
(70191, 'https://ror.org/028g3pe33', 'en', 1, 'https://ror.org/028g3pe33 Institute for Computational Linguistics “A. Zampolli” Istituto di Linguistica Computazionale "A. Zampolli"'),
(70192, 'https://ror.org/011n2hw53', 'it', 1, 'https://ror.org/011n2hw53 Istituto per il Lessico Intellettuale Europeo e la Storia delle Idee'),
(70193, 'https://ror.org/0263zy895', 'it', 1, 'https://ror.org/0263zy895 Istituto di Metodologie Chimiche'),
(70194, 'https://ror.org/00x5wpm25', 'en', 1, 'https://ror.org/00x5wpm25 Institute for Archaeological and Monumental Heritage Istituto per i Beni Archeologici e Monumentali'),
(70195, 'https://ror.org/05nr7xa08', 'en', 1, 'https://ror.org/05nr7xa08 Institute of Polymers, Composites and Biomaterials Istituto dei Polimeri, Compositi e Biomateriali'),
(70196, 'https://ror.org/04vnwke91', 'en', 1, 'https://ror.org/04vnwke91 Institute for Research on Innovation and Services for Development Istituto di Ricerca su Innovazione e Servizi per lo Sviluppo'),
(70197, 'https://ror.org/02ynrme92', 'en', 1, 'https://ror.org/02ynrme92 Institute for the Conservation and Valorization of Cultural Heritage Istituto per la Conservazione e la Valorizzazione dei Beni Culturali'),
(70198, 'https://ror.org/00ytw6m58', 'en', 1, 'https://ror.org/00ytw6m58 Institute of Environmental Geology and Geoengineering Istituto di Geologia Ambientale e Geoingegneria'),
(70199, 'https://ror.org/057c5p638', 'en', 1, 'https://ror.org/057c5p638 Indira Gandhi Delhi Technical University for Women'),
(70200, 'https://ror.org/044bfsy89', 'en', 1, 'https://ror.org/044bfsy89 Istituto di Ricerca sulla Crescita Economica Sostenibile Research Institute on Sustainable Economic Growth'),
(70201, 'https://ror.org/045zphe57', 'en', 1, 'https://ror.org/045zphe57 Institute for Agricultural and Earthmoving Machines Istituto per le Macchine Agricole e Movimento Terra'),
(70202, 'https://ror.org/03z58xd74', 'en', 1, 'https://ror.org/03z58xd74 Institute for the Dynamics of Environmental Processes Istituto per la Dinamica dei Processi Ambientali'),
(70203, 'https://ror.org/01n1ayq61', 'en', 1, 'https://ror.org/01n1ayq61 Institute for Research on Population and Social Policies Istituto di Ricerche sulla Popolazione e le Politiche Sociali'),
(70204, 'https://ror.org/0331xj092', 'en', 1, 'https://ror.org/0331xj092 Institute for Technologies Applied to Cultural Heritage Istituto per le Tecnologie Applicate ai Beni Culturali'),
(70205, 'https://ror.org/0221agg28', 'en', 1, 'https://ror.org/0221agg28 Construction Technologies Institute Istituto per le Tecnologie della Costruzione'),
(70206, 'https://ror.org/01psmkn05', 'en', 1, 'https://ror.org/01psmkn05 Institut de Recherche en Santé, de Surveillance Épidémiologique et de Formation Institute of Health Research, Epidemiological Surveillance and Training'),
(70207, 'https://ror.org/00qg3d075', 'no_lang_code', 1, 'https://ror.org/00qg3d075 Ajelis (France)'),
(70208, 'https://ror.org/05ngeka81', 'no_lang_code', 1, 'https://ror.org/05ngeka81 Alcis Sports (India)'),
(70209, 'https://ror.org/03s84bz47', 'fr', 1, 'https://ror.org/03s84bz47 Centre Lavallois de Ressources Technologiques Clarte'),
(70210, 'https://ror.org/03g016n94', 'no_lang_code', 1, 'https://ror.org/03g016n94 AlyXan (France)'),
(70211, 'https://ror.org/05e357p42', 'fr', 1, 'https://ror.org/05e357p42 Centre National d''Art et de Culture Georges-Pompidou Centre Pompidou'),
(70212, 'https://ror.org/0105eee18', 'no_lang_code', 1, 'https://ror.org/0105eee18 Ariamis (France)'),
(70213, 'https://ror.org/04j8fde02', 'fr', 1, 'https://ror.org/04j8fde02 Centre Français de Recherche en Sciences Sociales Francouzský ústav pro výzkum ve společenských vědách French Research Center in Humanities and Social Sciences'),
(70214, 'https://ror.org/03z3k8g94', 'no_lang_code', 1, 'https://ror.org/03z3k8g94 Cliris (Switzerland)'),
(70215, 'https://ror.org/0249a2s92', 'no_lang_code', 1, 'https://ror.org/0249a2s92 Ginger (France) Groupe Ginger'),
(70216, 'https://ror.org/041gsht58', 'no_lang_code', 1, 'https://ror.org/041gsht58 Fealinx (France)'),
(70217, 'https://ror.org/00zhdk214', 'no_lang_code', 1, 'https://ror.org/00zhdk214 Axenis (France)'),
(70218, 'https://ror.org/03tht7k87', 'no_lang_code', 1, 'https://ror.org/03tht7k87 Dendris (France)'),
(70219, 'https://ror.org/05j6qf006', 'fr', 1, 'https://ror.org/05j6qf006 Centre de Recherche en Écologie Expérimentale et Prédictive Cereep Ecotron Île-de-France'),
(70220, 'https://ror.org/035pvn644', 'no_lang_code', 1, 'https://ror.org/035pvn644 Cooltech Applications (France)'),
(70221, 'https://ror.org/00c89gb03', 'no_lang_code', 1, 'https://ror.org/00c89gb03 Deveryware (France)'),
(70222, 'https://ror.org/02m528480', 'no_lang_code', 1, 'https://ror.org/02m528480 Cythelia (France)'),
(70223, 'https://ror.org/01twkx136', 'no_lang_code', 1, 'https://ror.org/01twkx136 Ecome (France)'),
(70224, 'https://ror.org/00dbps023', 'no_lang_code', 1, 'https://ror.org/00dbps023 Éolane (France)'),
(70225, 'https://ror.org/03amnyx79', 'no_lang_code', 1, 'https://ror.org/03amnyx79 Ecoat (France)'),
(70226, 'https://ror.org/01k101787', 'no_lang_code', 1, 'https://ror.org/01k101787 Idhelio (France)'),
(70227, 'https://ror.org/040jc3p57', 'it', 1, 'https://ror.org/040jc3p57 Associazione Radioamatori Italiani'),
(70228, 'https://ror.org/051b9wq78', 'no_lang_code', 1, 'https://ror.org/051b9wq78 Elicityl (France)'),
(70229, 'https://ror.org/04m83kv34', 'no_lang_code', 1, 'https://ror.org/04m83kv34 Eligo Bioscience (France)'),
(70230, 'https://ror.org/03g658126', 'no_lang_code', 1, 'https://ror.org/03g658126 Imaxio (France)'),
(70231, 'https://ror.org/03cgw6h63', 'no_lang_code', 1, 'https://ror.org/03cgw6h63 Elveflow (France)'),
(70232, 'https://ror.org/03d2jk391', 'fr', 1, 'https://ror.org/03d2jk391 Laboratoire de Génie Civil, Diagnostic et Durabilité'),
(70233, 'https://ror.org/047xyhs39', 'no_lang_code', 1, 'https://ror.org/047xyhs39 Innodura (France)'),
(70234, 'https://ror.org/05dsek450', 'fr', 1, 'https://ror.org/05dsek450 Hémostase et Dynamique Cellulaire Vasculaire'),
(70235, 'https://ror.org/02s3m2561', 'en', 1, 'https://ror.org/02s3m2561 Health Services and Performance Research Laboratory'),
(70236, 'https://ror.org/002a9y532', 'fr', 1, 'https://ror.org/002a9y532 Unité de Recherche Technologie et Analyses Laitières'),
(70237, 'https://ror.org/03sax3264', 'en', 1, 'https://ror.org/03sax3264 Southern Technical University الجامعة التقنية الجنوبية'),
(70238, 'https://ror.org/02gs82g24', 'en', 1, 'https://ror.org/02gs82g24 Runway of Dreams Foundation'),
(70239, 'https://ror.org/01bdvsc06', 'sv', 1, 'https://ror.org/01bdvsc06 Swerim'),
(70240, 'https://ror.org/0443s9p82', 'en', 1, 'https://ror.org/0443s9p82 Center for High Pressure Science & Technology Advanced Research 北京高压科学研究中心'),
(70241, 'https://ror.org/049dqrc28', 'en', 1, 'https://ror.org/049dqrc28 Center for High Pressure Science & Technology Advanced Research 北京高压科学研究中心'),
(70242, 'https://ror.org/017g8gb14', 'no_lang_code', 1, 'https://ror.org/017g8gb14 Prime Discoveries (United States)'),
(70243, 'https://ror.org/054qp2w77', 'fr', 1, 'https://ror.org/054qp2w77 Institut des Hautes Études du Ministère de l''Intérieur'),
(70244, 'https://ror.org/04stw6a08', 'no_lang_code', 1, 'https://ror.org/04stw6a08 Unilever (France)'),
(70245, 'https://ror.org/03jqv7547', 'no_lang_code', 1, 'https://ror.org/03jqv7547 Lumibird (France)'),
(70246, 'https://ror.org/01j4nab63', 'no_lang_code', 1, 'https://ror.org/01j4nab63 Kereval (France)'),
(70247, 'https://ror.org/00w4q6f22', 'no_lang_code', 1, 'https://ror.org/00w4q6f22 Kontron (France)'),
(70248, 'https://ror.org/033ny7f81', 'fr', 1, 'https://ror.org/033ny7f81 Laboratoire d''Anthropologie et de Psychologie Cognitives et Sociales'),
(70249, 'https://ror.org/04beck307', 'no_lang_code', 1, 'https://ror.org/04beck307 Eau de Paris (France)'),
(70250, 'https://ror.org/01xpreq28', 'fr', 1, 'https://ror.org/01xpreq28 Laboratoire Archéomatériaux et Prévision de l''Altération'),
(70251, 'https://ror.org/00kewvc41', 'fr', 1, 'https://ror.org/00kewvc41 Laboratoire D''étude des Résidus et Contaminants Dans les Aliments'),
(70252, 'https://ror.org/0378sf364', 'fr', 1, 'https://ror.org/0378sf364 Laboratoire Structure et Dynamique par Résonance Magnétique'),
(70253, 'https://ror.org/03pm82185', 'no_lang_code', 1, 'https://ror.org/03pm82185 Lingua et Machina (France)'),
(70254, 'https://ror.org/05hjg4437', 'no_lang_code', 1, 'https://ror.org/05hjg4437 Evosens (France)'),
(70255, 'https://ror.org/04kwfkk85', 'no_lang_code', 1, 'https://ror.org/04kwfkk85 Nokia (France)'),
(70256, 'https://ror.org/03nt2n936', 'no_lang_code', 1, 'https://ror.org/03nt2n936 SilMach (France)'),
(70257, 'https://ror.org/01b6p7v84', 'no_lang_code', 1, 'https://ror.org/01b6p7v84 Platod (France)'),
(70258, 'https://ror.org/01m96mc18', 'no_lang_code', 1, 'https://ror.org/01m96mc18 Pragma Therapeutics (France)'),
(70259, 'https://ror.org/03hd9pr71', 'no_lang_code', 1, 'https://ror.org/03hd9pr71 Palumed (France)'),
(70260, 'https://ror.org/02dbpdq51', 'no_lang_code', 1, 'https://ror.org/02dbpdq51 DATA4 (France)'),
(70261, 'https://ror.org/02191ha15', 'no_lang_code', 1, 'https://ror.org/02191ha15 Sysnav (France)'),
(70262, 'https://ror.org/0086x0p73', 'no_lang_code', 1, 'https://ror.org/0086x0p73 Rouillard (Canada)'),
(70263, 'https://ror.org/01sjyas66', 'no_lang_code', 1, 'https://ror.org/01sjyas66 Orphelia Pharma (France)'),
(70264, 'https://ror.org/02epwv805', 'no_lang_code', 1, 'https://ror.org/02epwv805 Tekceleo (France)'),
(70265, 'https://ror.org/01x3ftb23', 'en', 1, 'https://ror.org/01x3ftb23 Biology of Infection Département Biologie Cellulaire et Infection'),
(70266, 'https://ror.org/01f8qyw75', 'en', 1, 'https://ror.org/01f8qyw75 Indian Institute of Information Technology, Pune भारतीय सूचना प्रौद्योगिकी संस्थान,पुणे'),
(70267, 'https://ror.org/00n1qg914', 'en', 1, 'https://ror.org/00n1qg914 Methodology and Quality of Life Unit in Oncology Unité de Méthodologie et de Qualité de Vie en Cancérologie'),
(70268, 'https://ror.org/01wt3hp81', 'en', 1, 'https://ror.org/01wt3hp81 21st Century Education Research Institute 21世纪教育研究院'),
(70269, 'https://ror.org/055srzn87', 'en', 1, 'https://ror.org/055srzn87 9to5'),
(70270, 'https://ror.org/051ytw456', 'pt', 1, 'https://ror.org/051ytw456 ANDI ANDI – Comunicación y Derechos'),
(70271, 'https://ror.org/05ymybb54', 'en', 1, 'https://ror.org/05ymybb54 A Better Balance'),
(70272, 'https://ror.org/01pbfbp48', 'en', 1, 'https://ror.org/01pbfbp48 Abhivyakti Media for Development'),
(70273, 'https://ror.org/05c0pz938', 'pt', 1, 'https://ror.org/05c0pz938 Associação Brasileira de Pesquisadores Negros'),
(70274, 'https://ror.org/004y5mm20', 'en', 1, 'https://ror.org/004y5mm20 ACCE Institute'),
(70275, 'https://ror.org/0100dqc22', 'en', 1, 'https://ror.org/0100dqc22 Action Canada for Sexual Health and Rights'),
(70276, 'https://ror.org/00ctx3180', 'en', 1, 'https://ror.org/00ctx3180 Anveshi Research Centre for Women''s Studies'),
(70277, 'https://ror.org/02nz60c10', 'en', 1, 'https://ror.org/02nz60c10 Action Center on Race and the Economy'),
(70278, 'https://ror.org/055t40212', 'en', 1, 'https://ror.org/055t40212 Social Science Forum منتدى العلوم الاجتماعية'),
(70279, 'https://ror.org/01tmmd981', 'en', 1, 'https://ror.org/01tmmd981 Action Health Incorporated'),
(70280, 'https://ror.org/027fw3f96', 'en', 1, 'https://ror.org/027fw3f96 Arab Education Forum الملتقى التربوي العربي'),
(70281, 'https://ror.org/01fr7xq53', 'en', 1, 'https://ror.org/01fr7xq53 Adaptive Design Association'),
(70282, 'https://ror.org/03zvmjp56', 'af', 1, 'https://ror.org/03zvmjp56 Afesis-Corplan'),
(70283, 'https://ror.org/00g7h8w74', 'en', 1, 'https://ror.org/00g7h8w74 Africa Centre for Energy Policy'),
(70284, 'https://ror.org/0280epy55', 'en', 1, 'https://ror.org/0280epy55 Arab Educational Information Network شبكة المعلومات العربية التربوية'),
(70285, 'https://ror.org/032ns4d39', 'en', 1, 'https://ror.org/032ns4d39 Arab Institute for Human Rights معهد العربي لحقوق الانسان'),
(70286, 'https://ror.org/00kqgxx94', 'en', 1, 'https://ror.org/00kqgxx94 African Studies Association of India'),
(70287, 'https://ror.org/02hnqr243', 'en', 1, 'https://ror.org/02hnqr243 Arab NGO Network for Development شبكة المنظمات العربية غير الحكومية للتنمية'),
(70288, 'https://ror.org/002aev204', 'en', 1, 'https://ror.org/002aev204 African Institute for Leaders and Leadership'),
(70289, 'https://ror.org/03xw42v88', 'en', 1, 'https://ror.org/03xw42v88 African Woman and Child Feature Service'),
(70290, 'https://ror.org/007vw4k42', 'en', 1, 'https://ror.org/007vw4k42 Ag Innovations'),
(70291, 'https://ror.org/03med0831', 'en', 1, 'https://ror.org/03med0831 Al-Ahram Center for Political and Strategic Studies مركز الأهرام للدراسات السياسية والاستراتيجية'),
(70292, 'https://ror.org/00tn5yw94', 'es', 1, 'https://ror.org/00tn5yw94 Red Argentina de Instituciones de Microcrédito'),
(70293, 'https://ror.org/04bty2w72', 'en', 1, 'https://ror.org/04bty2w72 Albuquerque Academy'),
(70294, 'https://ror.org/00bq3m385', 'en', 1, 'https://ror.org/00bq3m385 Arise Citizens'' Policy Project'),
(70295, 'https://ror.org/03pm74b25', 'en', 1, 'https://ror.org/03pm74b25 Arkansas Community Colleges'),
(70296, 'https://ror.org/0538mca61', 'en', 1, 'https://ror.org/0538mca61 Align Economy Environment Equity'),
(70297, 'https://ror.org/01t3wc318', 'en', 1, 'https://ror.org/01t3wc318 All India Artisans and Craftworkers Welfare Association'),
(70298, 'https://ror.org/03496sr93', 'no_lang_code', 1, 'https://ror.org/03496sr93 ArteEast'),
(70299, 'https://ror.org/03bpswy98', 'en', 1, 'https://ror.org/03bpswy98 Alliance for a Just Society'),
(70300, 'https://ror.org/019qntf91', 'en', 1, 'https://ror.org/019qntf91 Article 19 Artigo 19'),
(70301, 'https://ror.org/03ar4yr57', 'en', 1, 'https://ror.org/03ar4yr57 Alliance for Justice'),
(70302, 'https://ror.org/022gyr952', 'en', 1, 'https://ror.org/022gyr952 Article 19'),
(70303, 'https://ror.org/04hc8pc27', 'en', 1, 'https://ror.org/04hc8pc27 The Allaince Advancing Regional Equity'),
(70304, 'https://ror.org/016xq8366', 'en', 1, 'https://ror.org/016xq8366 Arts & Science Council'),
(70305, 'https://ror.org/053rdtp97', 'en', 1, 'https://ror.org/053rdtp97 Artspace'),
(70306, 'https://ror.org/00hpx8e31', 'en', 1, 'https://ror.org/00hpx8e31 Asia Pacific Forum on Women, Law and Development'),
(70307, 'https://ror.org/00w46h989', 'en', 1, 'https://ror.org/00w46h989 Asian American Legal Defense and Education Fund'),
(70308, 'https://ror.org/01dsgkd63', 'en', 1, 'https://ror.org/01dsgkd63 Asian Americans/Pacific Islanders in Philanthropy'),
(70309, 'https://ror.org/02yvf4f12', 'en', 1, 'https://ror.org/02yvf4f12 Allied Media Projects'),
(70310, 'https://ror.org/059vdry28', 'en', 1, 'https://ror.org/059vdry28 Alternate Roots'),
(70311, 'https://ror.org/01tgg8632', 'en', 1, 'https://ror.org/01tgg8632 Asian Arts Initiative'),
(70312, 'https://ror.org/011rh1x94', 'en', 1, 'https://ror.org/011rh1x94 Alternative Law Forum'),
(70313, 'https://ror.org/04jg5kt84', 'en', 1, 'https://ror.org/04jg5kt84 Asian Pacific Environmental Network'),
(70314, 'https://ror.org/03f2wzg57', 'en', 1, 'https://ror.org/03f2wzg57 Asian-Pacific Resource and Research Centre for Women');
INSERT INTO `rors` VALUES
(70315, 'https://ror.org/025c20538', 'en', 1, 'https://ror.org/025c20538 America''s Voice'),
(70316, 'https://ror.org/04a7qxt37', 'en', 1, 'https://ror.org/04a7qxt37 InternetLab'),
(70317, 'https://ror.org/024srtw61', 'pt', 1, 'https://ror.org/024srtw61 Redes da Maré'),
(70318, 'https://ror.org/02e7nyv81', 'en', 1, 'https://ror.org/02e7nyv81 Associates Research'),
(70319, 'https://ror.org/04n8wxk74', 'en', 1, 'https://ror.org/04n8wxk74 American Immigration Lawyers Association'),
(70320, 'https://ror.org/029fsgw35', 'en', 1, 'https://ror.org/029fsgw35 Association for Democratic Reforms'),
(70321, 'https://ror.org/02f8pzn71', 'en', 1, 'https://ror.org/02f8pzn71 American Mandarin Society'),
(70322, 'https://ror.org/0491vhh68', 'en', 1, 'https://ror.org/0491vhh68 American Sustainable Business Institute'),
(70323, 'https://ror.org/04m4hft71', 'en', 1, 'https://ror.org/04m4hft71 Americans for Financial Reform Education Fund'),
(70324, 'https://ror.org/04sq27t34', 'en', 1, 'https://ror.org/04sq27t34 L''Association de la Promotion de la Médecine Traditionnelle PROMETRA International'),
(70325, 'https://ror.org/047py4r39', 'en', 1, 'https://ror.org/047py4r39 Americans for Indian Opportunity'),
(70326, 'https://ror.org/01xj9hs08', 'id', 1, 'https://ror.org/01xj9hs08 HuMA Perkumpulan HuMa Indonesia'),
(70327, 'https://ror.org/00ebf6w66', 'en', 1, 'https://ror.org/00ebf6w66 Americas Media Initiative'),
(70328, 'https://ror.org/01hc68e22', 'en', 1, 'https://ror.org/01hc68e22 Association of Baltimore Area Grantmakers'),
(70329, 'https://ror.org/0363ne177', 'en', 1, 'https://ror.org/0363ne177 ABFE'),
(70330, 'https://ror.org/03yjj4449', 'en', 1, 'https://ror.org/03yjj4449 El Museo'),
(70331, 'https://ror.org/02rrq9749', 'en', 1, 'https://ror.org/02rrq9749 Amnesty International Brazil'),
(70332, 'https://ror.org/053bgz920', 'en', 1, 'https://ror.org/053bgz920 Amnesty International USA'),
(70333, 'https://ror.org/00tpb5981', 'pt', 1, 'https://ror.org/00tpb5981 Conectas Conectas Direitos Humanos'),
(70334, 'https://ror.org/01z1azz52', 'en', 1, 'https://ror.org/01z1azz52 AIR'),
(70335, 'https://ror.org/02tjeq988', 'en', 1, 'https://ror.org/02tjeq988 Association of Media Women in Kenya'),
(70336, 'https://ror.org/04h3krc89', 'en', 1, 'https://ror.org/04h3krc89 National Secretariat - Indonesian Forum for Budget Transparency Sekretariat Nasional Forum Indonesia untuk Transparansi'),
(70337, 'https://ror.org/05h2nkq67', 'en', 1, 'https://ror.org/05h2nkq67 Association for Micro-Finance Institutions'),
(70338, 'https://ror.org/000eh9340', 'en', 1, 'https://ror.org/000eh9340 California Budget & Policy Center'),
(70339, 'https://ror.org/01dwwr847', 'en', 1, 'https://ror.org/01dwwr847 Filantropi Indonesia Indonesia Philanthropy Association'),
(70340, 'https://ror.org/03mc4hv80', 'en', 1, 'https://ror.org/03mc4hv80 California Latinas for Reproductive Justice'),
(70341, 'https://ror.org/03htrq259', 'en', 1, 'https://ror.org/03htrq259 Camino Public Relations'),
(70342, 'https://ror.org/01f3jm010', 'en', 1, 'https://ror.org/01f3jm010 Canadian Foundation for the Americas'),
(70343, 'https://ror.org/01qajny58', 'en', 1, 'https://ror.org/01qajny58 Capital Impact Partners'),
(70344, 'https://ror.org/04zqp3155', 'pt', 1, 'https://ror.org/04zqp3155 Movimento Interestadual das Quebradeiras de Coco Babaçu'),
(70345, 'https://ror.org/02fkkph87', 'en', 1, 'https://ror.org/02fkkph87 CASA CASA de Maryland'),
(70346, 'https://ror.org/00kf1a996', 'pt', 1, 'https://ror.org/00kf1a996 Casa Fluminense'),
(70347, 'https://ror.org/04beybq30', 'en', 1, 'https://ror.org/04beybq30 Association to Contribute to Improve the Governance of Land, Water and Natural Resources'),
(70348, 'https://ror.org/00q1sca35', 'en', 1, 'https://ror.org/00q1sca35 Carnegie Moscow Center Московский Центр Карнеги'),
(70349, 'https://ror.org/00fyaz829', 'en', 1, 'https://ror.org/00fyaz829 Catholics for Choice'),
(70350, 'https://ror.org/05q8qsw47', 'es', 1, 'https://ror.org/05q8qsw47 Católicas por el Derecho a Decidir'),
(70351, 'https://ror.org/05661qy18', 'no_lang_code', 1, 'https://ror.org/05661qy18 Ballet Hispánico (United States)'),
(70352, 'https://ror.org/02r3mzm63', 'en', 1, 'https://ror.org/02r3mzm63 Center for Civic Policy'),
(70353, 'https://ror.org/03wkg1w97', 'en', 1, 'https://ror.org/03wkg1w97 Center for Democracy in the Americas'),
(70354, 'https://ror.org/044q96y41', 'en', 1, 'https://ror.org/044q96y41 Center for Economic and Social Rights'),
(70355, 'https://ror.org/03dg97q02', 'en', 1, 'https://ror.org/03dg97q02 Center for Economic Progress'),
(70356, 'https://ror.org/02mx3q756', 'en', 1, 'https://ror.org/02mx3q756 Better Life Association for Comprehensive Development'),
(70357, 'https://ror.org/00k8rrx20', 'pt', 1, 'https://ror.org/00k8rrx20 Centro de Estudos das Relações de Trabalho e Desigualdades'),
(70358, 'https://ror.org/02m93y750', 'en', 1, 'https://ror.org/02m93y750 Center for Family Policy and Practice'),
(70359, 'https://ror.org/01dwh3q17', 'pt', 1, 'https://ror.org/01dwh3q17 Centro de Estudos e Pesquisa em Saúde Coletiva'),
(70360, 'https://ror.org/04vr5fc04', 'en', 1, 'https://ror.org/04vr5fc04 China Association of Higher Educaiton 中国高等教育学会'),
(70361, 'https://ror.org/02y2kap36', 'en', 1, 'https://ror.org/02y2kap36 Center for Global Policy Solutions'),
(70362, 'https://ror.org/01aq5nz90', 'en', 1, 'https://ror.org/01aq5nz90 China Development Brief 中国发展简报'),
(70363, 'https://ror.org/05fbshr33', 'en', 1, 'https://ror.org/05fbshr33 National Housing Conference'),
(70364, 'https://ror.org/035f28x45', 'en', 1, 'https://ror.org/035f28x45 Zhicheng Public Interest Lawyers 致诚公益律师'),
(70365, 'https://ror.org/05813hx64', 'en', 1, 'https://ror.org/05813hx64 Centre for Indigenous Cultures of Peru Centro de Culturas Indígenas del Perú'),
(70366, 'https://ror.org/02qj00s11', 'en', 1, 'https://ror.org/02qj00s11 Center for International Policy'),
(70367, 'https://ror.org/02wfpbs86', 'en', 1, 'https://ror.org/02wfpbs86 China Family Planning Association 中国计划生育协会'),
(70368, 'https://ror.org/01b9jms40', 'pt', 1, 'https://ror.org/01b9jms40 Centro de Estudos de Segurança e Cidadania'),
(70369, 'https://ror.org/052ndyr48', 'en', 1, 'https://ror.org/052ndyr48 Center on Policy Initiatives'),
(70370, 'https://ror.org/03qbv1q25', 'en', 1, 'https://ror.org/03qbv1q25 China Institutes of Contemporary International Relations 中国现代国际关系研究院'),
(70371, 'https://ror.org/03m2raa30', 'en', 1, 'https://ror.org/03m2raa30 Beijing Gender Health Education Institute 北京纪安德咨询中心'),
(70372, 'https://ror.org/016hmeh62', 'en', 1, 'https://ror.org/016hmeh62 Migrant Center For Human Rights'),
(70373, 'https://ror.org/042416g98', 'en', 1, 'https://ror.org/042416g98 China Education Press Agency 中国教育报刊社'),
(70374, 'https://ror.org/04dsd4494', 'pt', 1, 'https://ror.org/04dsd4494 Central Única das Favelas'),
(70375, 'https://ror.org/01mesrv79', 'en', 1, 'https://ror.org/01mesrv79 Center for Neighborhood Technology'),
(70376, 'https://ror.org/0093y5e51', 'no_lang_code', 1, 'https://ror.org/0093y5e51 PanNature Trung tâm Con người và Thiên nhiên'),
(70377, 'https://ror.org/04bws0e60', 'en', 1, 'https://ror.org/04bws0e60 Centre for AIDS Development, Research and Evaluation'),
(70378, 'https://ror.org/004x6m349', 'en', 1, 'https://ror.org/004x6m349 Centre for Communication and Development Studies'),
(70379, 'https://ror.org/03546qf24', 'en', 1, 'https://ror.org/03546qf24 China Law Society'),
(70380, 'https://ror.org/052rhds27', 'en', 1, 'https://ror.org/052rhds27 Centre for Environmental Rights'),
(70381, 'https://ror.org/03rw4ty96', 'en', 1, 'https://ror.org/03rw4ty96 Beijing Social Work Development Center for Facilitators 北京市协作者社会工作发展中心'),
(70382, 'https://ror.org/04bakg991', 'en', 1, 'https://ror.org/04bakg991 Center for Popular Democracy'),
(70383, 'https://ror.org/04d90y792', 'en', 1, 'https://ror.org/04d90y792 China Philanthropy Research Institute 中国公益研究院'),
(70384, 'https://ror.org/05wyk6k55', 'en', 1, 'https://ror.org/05wyk6k55 Centre for Higher Education Trust'),
(70385, 'https://ror.org/058sdr222', 'en', 1, 'https://ror.org/058sdr222 Center for Public Policy Priorities'),
(70386, 'https://ror.org/05n7d5e22', 'en', 1, 'https://ror.org/05n7d5e22 Centre for Innovation Policy and Governance'),
(70387, 'https://ror.org/05ae5sf68', 'en', 1, 'https://ror.org/05ae5sf68 China Population Welfare Foundation 中国人口福利基金会'),
(70388, 'https://ror.org/00j71tm53', 'en', 1, 'https://ror.org/00j71tm53 Beijing Yilian Legal Aid and Research Center of Labor 北京义联劳动法援助与研究中心'),
(70389, 'https://ror.org/04aq1wg32', 'en', 1, 'https://ror.org/04aq1wg32 The Supreme People''s Procuratorate of the People''s Republic of China 中国检察官协会'),
(70390, 'https://ror.org/04w200405', 'en', 1, 'https://ror.org/04w200405 Beirut Art Center مركز بيروت للفن'),
(70391, 'https://ror.org/046vj6r42', 'en', 1, 'https://ror.org/046vj6r42 China Sexology Association 中国性学会'),
(70392, 'https://ror.org/009xbxr65', 'en', 1, 'https://ror.org/009xbxr65 Beloved Community Center'),
(70393, 'https://ror.org/04sdkmx42', 'id', 1, 'https://ror.org/04sdkmx42 Ciliwung Merdeka'),
(70394, 'https://ror.org/01md5nh91', 'en', 1, 'https://ror.org/01md5nh91 Centre for Research and Technology Development'),
(70395, 'https://ror.org/04kw2cw23', 'en', 1, 'https://ror.org/04kw2cw23 Center for Responsible Lending'),
(70396, 'https://ror.org/03evgp013', 'en', 1, 'https://ror.org/03evgp013 Centre for Rural Legal Studies'),
(70397, 'https://ror.org/027f5c287', 'en', 1, 'https://ror.org/027f5c287 Citizen University'),
(70398, 'https://ror.org/011cev627', 'en', 1, 'https://ror.org/011cev627 Bend the Arc: A Jewish Partnership for Justice'),
(70399, 'https://ror.org/02awtmh12', 'en', 1, 'https://ror.org/02awtmh12 Centre for Rural Studies and Development'),
(70400, 'https://ror.org/02ngckp60', 'en', 1, 'https://ror.org/02ngckp60 Citizens’ Housing and Planning Association'),
(70401, 'https://ror.org/0551yxg63', 'en', 1, 'https://ror.org/0551yxg63 Centre for Social Justice'),
(70402, 'https://ror.org/02d894j61', 'hi', 1, 'https://ror.org/02d894j61 Bhasha'),
(70403, 'https://ror.org/05r957b25', 'en', 1, 'https://ror.org/05r957b25 Citizenship, Studies, Research, Information and Action'),
(70404, 'https://ror.org/054wvz232', 'en', 1, 'https://ror.org/054wvz232 Centre for Study of Society and Secularism'),
(70405, 'https://ror.org/05jh6qs86', 'en', 1, 'https://ror.org/05jh6qs86 Entrepreneurial Ecosystems'),
(70406, 'https://ror.org/01m0rks68', 'en', 1, 'https://ror.org/01m0rks68 City Year'),
(70407, 'https://ror.org/021wayr39', 'en', 1, 'https://ror.org/021wayr39 Big Sky Institute'),
(70408, 'https://ror.org/05395nj08', 'en', 1, 'https://ror.org/05395nj08 Civil Society Budget Advocacy Group'),
(70409, 'https://ror.org/05kavjv60', 'en', 1, 'https://ror.org/05kavjv60 Centre for the Study of Violence and Reconciliation'),
(70410, 'https://ror.org/02hv72q61', 'en', 1, 'https://ror.org/02hv72q61 Center for Rural Strategies'),
(70411, 'https://ror.org/02egkac43', 'en', 1, 'https://ror.org/02egkac43 TechSoup'),
(70412, 'https://ror.org/01s78ww38', 'en', 1, 'https://ror.org/01s78ww38 Border Network for Human Rights'),
(70413, 'https://ror.org/04qw67643', 'en', 1, 'https://ror.org/04qw67643 Community Labor United'),
(70414, 'https://ror.org/05kmtkm08', 'en', 1, 'https://ror.org/05kmtkm08 Community Life Project'),
(70415, 'https://ror.org/052zq7x94', 'pt', 1, 'https://ror.org/052zq7x94 Fundo Brasil Fundo Brasil de Direitos Humanos'),
(70416, 'https://ror.org/050h8nq90', 'en', 1, 'https://ror.org/050h8nq90 Collaboration on International ICT Policy in East and Southern Africa'),
(70417, 'https://ror.org/01vqq1j88', 'en', 1, 'https://ror.org/01vqq1j88 Community Voices Heard'),
(70418, 'https://ror.org/04469fh44', 'en', 1, 'https://ror.org/04469fh44 Colombian Commission of Jurists Comisión Colombiana de Juristas'),
(70419, 'https://ror.org/0070nd560', 'en', 1, 'https://ror.org/0070nd560 Comprehensive OBGYN'),
(70420, 'https://ror.org/050dsb089', 'en', 1, 'https://ror.org/050dsb089 Colorado Organization for Latina Opportunity and Reproductive Rights'),
(70421, 'https://ror.org/02v9x8e34', 'no_lang_code', 1, 'https://ror.org/02v9x8e34 Ocunexus Therapeutics (United States)'),
(70422, 'https://ror.org/01nmjw537', 'en', 1, 'https://ror.org/01nmjw537 Constituency for Africa'),
(70423, 'https://ror.org/046sr9880', 'pt', 1, 'https://ror.org/046sr9880 Instituto Brasileiro de Defesa do Consumidor'),
(70424, 'https://ror.org/00gvdzs88', 'en', 1, 'https://ror.org/00gvdzs88 Color Of Change'),
(70425, 'https://ror.org/02y14pt84', 'en', 1, 'https://ror.org/02y14pt84 Constitution and Reform Education Consortium'),
(70426, 'https://ror.org/05rzjz037', 'en', 1, 'https://ror.org/05rzjz037 Combine Resource Institution'),
(70427, 'https://ror.org/02hs9bv14', 'en', 1, 'https://ror.org/02hs9bv14 Committee to Protect Journalists'),
(70428, 'https://ror.org/05w78km23', 'pt', 1, 'https://ror.org/05w78km23 Instituto Brasileiro de Análises Sociais e Econômicas'),
(70429, 'https://ror.org/04syf8713', 'en', 1, 'https://ror.org/04syf8713 Common Cause Education Fund'),
(70430, 'https://ror.org/0598sqh06', 'es', 1, 'https://ror.org/0598sqh06 Centro Regional de Derechos Humanos y Justicia de Género, Corporación Humanas'),
(70431, 'https://ror.org/03kecmv77', 'en', 1, 'https://ror.org/03kecmv77 Consumer Federation of America'),
(70432, 'https://ror.org/03f0f5j83', 'en', 1, 'https://ror.org/03f0f5j83 Communications Consortium Media Center'),
(70433, 'https://ror.org/00t5ymp38', 'en', 1, 'https://ror.org/00t5ymp38 Scientific Center of Zoology and Hydroecology Կենդանաբանության և հիդրոէկոլոգիայի գիտական կենտրոն'),
(70434, 'https://ror.org/057v97d67', 'en', 1, 'https://ror.org/057v97d67 Chengdu Shuguang Community Development Capacity Building Center'),
(70435, 'https://ror.org/03ymrta62', 'en', 1, 'https://ror.org/03ymrta62 Child Welfare Society of Kenya'),
(70436, 'https://ror.org/03kcznq08', 'en', 1, 'https://ror.org/03kcznq08 Convergence'),
(70437, 'https://ror.org/02jk5za03', 'en', 1, 'https://ror.org/02jk5za03 Women''s Rights International'),
(70438, 'https://ror.org/05k6f1688', 'en', 1, 'https://ror.org/05k6f1688 Children’s Action Alliance'),
(70439, 'https://ror.org/035az3a76', 'en', 1, 'https://ror.org/035az3a76 China Arms Control and Disarmament Association 中国军控与裁军协会'),
(70440, 'https://ror.org/03ye55p43', 'en', 1, 'https://ror.org/03ye55p43 Brazilian Interdisciplinary AIDS Association'),
(70441, 'https://ror.org/030z00d05', 'en', 1, 'https://ror.org/030z00d05 China Association for NGO Cooperation 中国国际民间组织合作促进会'),
(70442, 'https://ror.org/00dyj9f84', 'en', 1, 'https://ror.org/00dyj9f84 Communities Unlimited'),
(70443, 'https://ror.org/02e00fb34', 'en', 1, 'https://ror.org/02e00fb34 Cooper''s Ferry Partnership'),
(70444, 'https://ror.org/035dzbx92', 'en', 1, 'https://ror.org/035dzbx92 Community Aid International'),
(70445, 'https://ror.org/02eg9wt87', 'en', 1, 'https://ror.org/02eg9wt87 Community Catalyst'),
(70446, 'https://ror.org/03rkfnq75', 'en', 1, 'https://ror.org/03rkfnq75 Equal Education Law Centre'),
(70447, 'https://ror.org/01whqqg65', 'en', 1, 'https://ror.org/01whqqg65 Community Development Advocates of Detroit'),
(70448, 'https://ror.org/01msk4m94', 'en', 1, 'https://ror.org/01msk4m94 Education Law Center'),
(70449, 'https://ror.org/03wpmcv13', 'en', 1, 'https://ror.org/03wpmcv13 Education Through Music'),
(70450, 'https://ror.org/05awv5h47', 'en', 1, 'https://ror.org/05awv5h47 Community Development Corporation of Brownsville'),
(70451, 'https://ror.org/020x5hh56', 'en', 1, 'https://ror.org/020x5hh56 Council of Urban Professionals'),
(70452, 'https://ror.org/032q63062', 'en', 1, 'https://ror.org/032q63062 Equitas - International Centre for Human Rights Education'),
(70453, 'https://ror.org/016agrs27', 'en', 1, 'https://ror.org/016agrs27 Crescent City Community Land Trust'),
(70454, 'https://ror.org/02hvmpx91', 'es', 1, 'https://ror.org/02hvmpx91 ACICAFOC'),
(70455, 'https://ror.org/01pqxf729', 'pt', 1, 'https://ror.org/01pqxf729 Instituto Eqüit – Gênero, Economia e Cidadania Global'),
(70456, 'https://ror.org/04sw2sb76', 'en', 1, 'https://ror.org/04sw2sb76 Cuban Artists Fund'),
(70457, 'https://ror.org/05gt2gw76', 'en', 1, 'https://ror.org/05gt2gw76 Educational Video Center'),
(70458, 'https://ror.org/005pgmf34', 'pt', 1, 'https://ror.org/005pgmf34 Associação Cultural de Mulheres Negras'),
(70459, 'https://ror.org/055kf5191', 'en', 1, 'https://ror.org/055kf5191 Fuping Development Institute 北京富平学校'),
(70460, 'https://ror.org/02nq88n11', 'en', 1, 'https://ror.org/02nq88n11 Gamaliel'),
(70461, 'https://ror.org/01ekv6k42', 'en', 1, 'https://ror.org/01ekv6k42 Green Camel Bell 绿驼铃'),
(70462, 'https://ror.org/02pzza935', 'en', 1, 'https://ror.org/02pzza935 Culture Resource المورد الثقافي'),
(70463, 'https://ror.org/00w60d804', 'en', 1, 'https://ror.org/00w60d804 International Network for Economic, Social and Cultural Rights Red Internacional para los Derechos Económicos, Sociales y Culturales Réseau International pour les Droits Economiques, Sociaux et Culturels'),
(70464, 'https://ror.org/01qvanv50', 'en', 1, 'https://ror.org/01qvanv50 Ashé'),
(70465, 'https://ror.org/04xh5t898', 'en', 1, 'https://ror.org/04xh5t898 Egyptian Center for Culture and Arts'),
(70466, 'https://ror.org/01emkn494', 'en', 1, 'https://ror.org/01emkn494 DC Arts & Humanities Education Collaborative'),
(70467, 'https://ror.org/01zs7ak06', 'pt', 1, 'https://ror.org/01zs7ak06 Geledés Instituto da Mulher Negra'),
(70468, 'https://ror.org/04b0ymk71', 'es', 1, 'https://ror.org/04b0ymk71 ESE:O'),
(70469, 'https://ror.org/01h3j2d14', 'en', 1, 'https://ror.org/01h3j2d14 Detroit Economic Growth Corporation'),
(70470, 'https://ror.org/047h63042', 'no_lang_code', 1, 'https://ror.org/047h63042 Eko-Konnect'),
(70471, 'https://ror.org/01s6jvm36', 'en', 1, 'https://ror.org/01s6jvm36 ExpandED Schools'),
(70472, 'https://ror.org/05v9zxy89', 'en', 1, 'https://ror.org/05v9zxy89 Georgia Stand-Up'),
(70473, 'https://ror.org/043amj005', 'en', 1, 'https://ror.org/043amj005 Development Alternatives with Women for a New Era'),
(70474, 'https://ror.org/00v3tje97', 'en', 1, 'https://ror.org/00v3tje97 The Faith & Politics Institute'),
(70475, 'https://ror.org/03spr2751', 'en', 1, 'https://ror.org/03spr2751 Empower Schools'),
(70476, 'https://ror.org/053fkzm08', 'en', 1, 'https://ror.org/053fkzm08 Gideon''s Promise'),
(70477, 'https://ror.org/02nrznb68', 'en', 1, 'https://ror.org/02nrznb68 Energy Programs Consortium'),
(70478, 'https://ror.org/01kbwt308', 'en', 1, 'https://ror.org/01kbwt308 International Planned Parenthood Federation'),
(70479, 'https://ror.org/0167k2h60', 'en', 1, 'https://ror.org/0167k2h60 Development Network of Indigenous Voluntary Associations'),
(70480, 'https://ror.org/025314t43', 'en', 1, 'https://ror.org/025314t43 EngageMedia'),
(70481, 'https://ror.org/04nm9tm11', 'en', 1, 'https://ror.org/04nm9tm11 Girls Not Brides'),
(70482, 'https://ror.org/00ghwyh51', 'en', 1, 'https://ror.org/00ghwyh51 Environmental Grantmakers Association'),
(70483, 'https://ror.org/05dhgv769', 'en', 1, 'https://ror.org/05dhgv769 Campaign for Migrant Worker Justice'),
(70484, 'https://ror.org/05jn4m407', 'en', 1, 'https://ror.org/05jn4m407 Environmental Health Coalition'),
(70485, 'https://ror.org/01m2mh218', 'en', 1, 'https://ror.org/01m2mh218 Dhow Countries Music Academy'),
(70486, 'https://ror.org/00yn65598', 'en', 1, 'https://ror.org/00yn65598 Environmental Simulation Center'),
(70487, 'https://ror.org/0187g4p12', 'en', 1, 'https://ror.org/0187g4p12 Down Syndrome Society of Kenya'),
(70488, 'https://ror.org/04k2y5271', 'en', 1, 'https://ror.org/04k2y5271 Epic Theatre Ensemble'),
(70489, 'https://ror.org/01a4m6398', 'no_lang_code', 1, 'https://ror.org/01a4m6398 Fahe'),
(70490, 'https://ror.org/05kcpgf42', 'en', 1, 'https://ror.org/05kcpgf42 Dudley Street Neighborhood Initiative'),
(70491, 'https://ror.org/05qt0wt98', 'en', 1, 'https://ror.org/05qt0wt98 Global Americans'),
(70492, 'https://ror.org/05tc5ha67', 'en', 1, 'https://ror.org/05tc5ha67 EARN'),
(70493, 'https://ror.org/042730j21', 'en', 1, 'https://ror.org/042730j21 Global Campaign for Education United States'),
(70494, 'https://ror.org/05s9qrg03', 'en', 1, 'https://ror.org/05s9qrg03 Equal Education'),
(70495, 'https://ror.org/04e12gr29', 'es', 1, 'https://ror.org/04e12gr29 Federación de Instituciones y Organismos Financieros Rurales'),
(70496, 'https://ror.org/05jskhr58', 'en', 1, 'https://ror.org/05jskhr58 Global Environmental Institute 全球环境研究所'),
(70497, 'https://ror.org/01zd2ew48', 'en', 1, 'https://ror.org/01zd2ew48 Hlanganisa Institute for Development Southern Africa'),
(70498, 'https://ror.org/04fs8fj61', 'en', 1, 'https://ror.org/04fs8fj61 East Africa Law Society'),
(70499, 'https://ror.org/052brmw32', 'en', 1, 'https://ror.org/052brmw32 Centro Feminista de Estudos e Assessoria Feminist Center for Studies and Advisory Services'),
(70500, 'https://ror.org/04awy3v08', 'en', 1, 'https://ror.org/04awy3v08 Eastern Africa Centre for Constitutional Development Kituo cha Katiba'),
(70501, 'https://ror.org/03hgy0s07', 'en', 1, 'https://ror.org/03hgy0s07 Ho Chi Minh National Academy of Politics Học viện Chính trị Quốc gia Hồ Chí Minh'),
(70502, 'https://ror.org/00w0b1y51', 'en', 1, 'https://ror.org/00w0b1y51 Global Press'),
(70503, 'https://ror.org/04n49tc44', 'en', 1, 'https://ror.org/04n49tc44 Economic Policy Research Institute'),
(70504, 'https://ror.org/05vd07545', 'no_lang_code', 1, 'https://ror.org/05vd07545 Filene'),
(70505, 'https://ror.org/04k0m1906', 'no_lang_code', 1, 'https://ror.org/04k0m1906 GlobalAgRisk (United States)'),
(70506, 'https://ror.org/02pv3ns50', 'no_lang_code', 1, 'https://ror.org/02pv3ns50 Go Sheng'),
(70507, 'https://ror.org/02bchz941', 'es', 1, 'https://ror.org/02bchz941 Instituto para la Seguridad y Democracia'),
(70508, 'https://ror.org/013b0x867', 'en', 1, 'https://ror.org/013b0x867 Florida Policy Institute'),
(70509, 'https://ror.org/02jwx1966', 'en', 1, 'https://ror.org/02jwx1966 Good Jobs First'),
(70510, 'https://ror.org/041mxbp20', 'en', 1, 'https://ror.org/041mxbp20 Housing and Community Development Network of New Jersey'),
(70511, 'https://ror.org/030vnt817', 'en', 1, 'https://ror.org/030vnt817 Goree Institute L’Institut Gorée – Centre pour la Démocratie, le Dévéloppement et la Culture en Afrique'),
(70512, 'https://ror.org/02mwx3w72', 'en', 1, 'https://ror.org/02mwx3w72 Food and Finance High School'),
(70513, 'https://ror.org/01vbszv89', 'en', 1, 'https://ror.org/01vbszv89 The Institute for Southern Studies'),
(70514, 'https://ror.org/0501kzx55', 'en', 1, 'https://ror.org/0501kzx55 Grantmakers for Effective Organizations'),
(70515, 'https://ror.org/029ajv121', 'en', 1, 'https://ror.org/029ajv121 United Philanthropy Forum'),
(70516, 'https://ror.org/05fv6dp97', 'en', 1, 'https://ror.org/05fv6dp97 Grantmakers in the Arts'),
(70517, 'https://ror.org/03mxmdc96', 'en', 1, 'https://ror.org/03mxmdc96 Institute of Religious Studies Instituto de Estudos da Religião'),
(70518, 'https://ror.org/04tzn6q94', 'en', 1, 'https://ror.org/04tzn6q94 Grassroots Institute for Fundraising Training'),
(70519, 'https://ror.org/05ks9jt06', 'en', 1, 'https://ror.org/05ks9jt06 Institute for Studies of Society, Economy and Environment Viện nghiên cứu Xã hội, Kinh tế và Môi trường'),
(70520, 'https://ror.org/02j1gpv02', 'en', 1, 'https://ror.org/02j1gpv02 Great Lakes Institute for Strategic Studies'),
(70521, 'https://ror.org/035jk1734', 'es', 1, 'https://ror.org/035jk1734 Forum Solidaridad Perú'),
(70522, 'https://ror.org/04kwf3417', 'en', 1, 'https://ror.org/04kwf3417 Housing California'),
(70523, 'https://ror.org/04p0tpz02', 'en', 1, 'https://ror.org/04p0tpz02 The Greenlining Institute'),
(70524, 'https://ror.org/04vy99971', 'en', 1, 'https://ror.org/04vy99971 Forward Cities'),
(70525, 'https://ror.org/01kqhzq55', 'pt', 1, 'https://ror.org/01kqhzq55 Associação Nacional de Direitos Humanos, Pesquisa e Pós-Graduação'),
(70526, 'https://ror.org/05caamn50', 'pt', 1, 'https://ror.org/05caamn50 Instituto para o Desenvolvimento do Jornalismo'),
(70527, 'https://ror.org/03n4e9s45', 'en', 1, 'https://ror.org/03n4e9s45 Human Services Coalition'),
(70528, 'https://ror.org/0151ap895', 'en', 1, 'https://ror.org/0151ap895 Institute for Transportation and Development Policy'),
(70529, 'https://ror.org/05avpf476', 'en', 1, 'https://ror.org/05avpf476 Gujarat Institute of Desert Ecology'),
(70530, 'https://ror.org/01nnqk936', 'en', 1, 'https://ror.org/01nnqk936 Gulf Coast Housing Partnership'),
(70531, 'https://ror.org/050c6pn54', 'en', 1, 'https://ror.org/050c6pn54 International Alliance on Natural Resources in Africa'),
(70532, 'https://ror.org/050qmy682', 'es', 1, 'https://ror.org/050qmy682 Fundación Nacional para el Desarrollo'),
(70533, 'https://ror.org/02h0a0v43', 'en', 1, 'https://ror.org/02h0a0v43 Institute for Development and Economic Analysis Perhimpunan IDEA'),
(70534, 'https://ror.org/02cxa8527', 'en', 1, 'https://ror.org/02cxa8527 iCivics'),
(70535, 'https://ror.org/039d0ar12', 'no_lang_code', 1, 'https://ror.org/039d0ar12 Hattaway Communications (United States)'),
(70536, 'https://ror.org/040x93a09', 'en', 1, 'https://ror.org/040x93a09 Hawaii Institute for Public Affairs'),
(70537, 'https://ror.org/03mj23d77', 'en', 1, 'https://ror.org/03mj23d77 Institute of Livelihood Research and Training లైవ్లీహుడ్ రీసెర్చ్ అండ్ ట్రైనింగ్ ఇన్స్టిట్యూట్'),
(70538, 'https://ror.org/040zv4433', 'en', 1, 'https://ror.org/040zv4433 Il’laramatak Community Concerns'),
(70539, 'https://ror.org/03vx81s20', 'en', 1, 'https://ror.org/03vx81s20 Mamta Health Institute for Mother and Child'),
(70540, 'https://ror.org/02gemh168', 'id', 1, 'https://ror.org/02gemh168 Asosiasi Perempuan Indonesia untuk Keadilan'),
(70541, 'https://ror.org/0557mg878', 'en', 1, 'https://ror.org/0557mg878 Independent Institute for Social Policy Независимый институт социальной политики'),
(70542, 'https://ror.org/00cx9zc82', 'en', 1, 'https://ror.org/00cx9zc82 Hill House Association'),
(70543, 'https://ror.org/04w1vws04', 'en', 1, 'https://ror.org/04w1vws04 Indian Institute of Dalit Studies दलित स्टडीज का भारतीय संस्थान'),
(70544, 'https://ror.org/03tkmjj17', 'en', 1, 'https://ror.org/03tkmjj17 Indian Law Resource Center'),
(70545, 'https://ror.org/020jcq616', 'en', 1, 'https://ror.org/020jcq616 Institute of Social Studies Trust'),
(70546, 'https://ror.org/008y34898', 'en', 1, 'https://ror.org/008y34898 Guangdong Association of STD and AIDS Prevention and Control 广东省性病艾滋病防治协会'),
(70547, 'https://ror.org/03aamfw77', 'en', 1, 'https://ror.org/03aamfw77 Freedman Consulting'),
(70548, 'https://ror.org/00w9dm031', 'en', 1, 'https://ror.org/00w9dm031 Institute on Taxation and Economic Policy'),
(70549, 'https://ror.org/057kcg264', 'en', 1, 'https://ror.org/057kcg264 Freedom of the Press Foundation'),
(70550, 'https://ror.org/04ntxw843', 'en', 1, 'https://ror.org/04ntxw843 International Cinema Education'),
(70551, 'https://ror.org/02mpe3v47', 'en', 1, 'https://ror.org/02mpe3v47 Fund for Constitutional Government'),
(70552, 'https://ror.org/05h9c9c83', 'en', 1, 'https://ror.org/05h9c9c83 Grupo de Información en Reproducción Elegida Information Group on Reproductive Choice'),
(70553, 'https://ror.org/02wqcra62', 'es', 1, 'https://ror.org/02wqcra62 Fundación para el Desarrollo Integral del Valle del Cauca ProPacífico'),
(70554, 'https://ror.org/05wm19m06', 'es', 1, 'https://ror.org/05wm19m06 Instituto CentroAmericano de Estudios para la Democracia Social'),
(70555, 'https://ror.org/02ftc0e34', 'en', 1, 'https://ror.org/02ftc0e34 Innovative Housing Institute'),
(70556, 'https://ror.org/032jd4h63', 'es', 1, 'https://ror.org/032jd4h63 Fundación Pro Vivienda Social'),
(70557, 'https://ror.org/034dmsh02', 'en', 1, 'https://ror.org/034dmsh02 Insight Center for Community Economic Development'),
(70558, 'https://ror.org/05j704380', 'en', 1, 'https://ror.org/05j704380 International Media Support'),
(70559, 'https://ror.org/05ahssc06', 'pt', 1, 'https://ror.org/05ahssc06 Instituto de Pesquisas e Estudos Afro Brasileiros'),
(70560, 'https://ror.org/05fe6f045', 'es', 1, 'https://ror.org/05fe6f045 Centro de Análisis e Investigación Fundar'),
(70561, 'https://ror.org/0488afy73', 'en', 1, 'https://ror.org/0488afy73 Institute for Technology & Society Instituto de Tecnologia e Sociedade'),
(70562, 'https://ror.org/05t02jp64', 'en', 1, 'https://ror.org/05t02jp64 National Housing Trust'),
(70563, 'https://ror.org/024m9cy67', 'en', 1, 'https://ror.org/024m9cy67 Funders'' Network for Smart Growth and Livable Communities'),
(70564, 'https://ror.org/0144ggd58', 'en', 1, 'https://ror.org/0144ggd58 International Research and Development Actions'),
(70565, 'https://ror.org/045nmj854', 'pt', 1, 'https://ror.org/045nmj854 Terra de Direitos'),
(70566, 'https://ror.org/03qkv5w58', 'en', 1, 'https://ror.org/03qkv5w58 Inward Bound Mindfulness Education'),
(70567, 'https://ror.org/05ts8kw37', 'pt', 1, 'https://ror.org/05ts8kw37 Instituto de Terras do Pará'),
(70568, 'https://ror.org/02x0dpr51', 'en', 1, 'https://ror.org/02x0dpr51 Intellectual Property Watch'),
(70569, 'https://ror.org/04g8zfc73', 'pt', 1, 'https://ror.org/04g8zfc73 Ethnic Media Institute Instituto Midia Étnica'),
(70570, 'https://ror.org/00tay8944', 'es', 1, 'https://ror.org/00tay8944 Instituto Nacional de Derechos Humanos'),
(70571, 'https://ror.org/038tbvr34', 'pt', 1, 'https://ror.org/038tbvr34 Instituto Papai'),
(70572, 'https://ror.org/013ysep90', 'no_lang_code', 1, 'https://ror.org/013ysep90 Isandla Institute'),
(70573, 'https://ror.org/04j7q4722', 'en', 1, 'https://ror.org/04j7q4722 Institute for Jewish Policy Research'),
(70574, 'https://ror.org/01w3syr35', 'en', 1, 'https://ror.org/01w3syr35 Iseal Alliance'),
(70575, 'https://ror.org/054v2h819', 'en', 1, 'https://ror.org/054v2h819 Instituto Procomum Procomum Institute'),
(70576, 'https://ror.org/04kae8j43', 'en', 1, 'https://ror.org/04kae8j43 Instituto'),
(70577, 'https://ror.org/00t5yad55', 'en', 1, 'https://ror.org/00t5yad55 Isis-WICCE'),
(70578, 'https://ror.org/007q9sw85', 'en', 1, 'https://ror.org/007q9sw85 Institute for Law and Environmental Governance'),
(70579, 'https://ror.org/03kpvz984', 'en', 1, 'https://ror.org/03kpvz984 Jobs With Justice'),
(70580, 'https://ror.org/03s1pjm91', 'no_lang_code', 1, 'https://ror.org/03s1pjm91 LatinoJustice PRLDEF'),
(70581, 'https://ror.org/0089yx556', 'en', 1, 'https://ror.org/0089yx556 Lawyers Collective'),
(70582, 'https://ror.org/03a3z0217', 'en', 1, 'https://ror.org/03a3z0217 Institute for Research and Empowerment'),
(70583, 'https://ror.org/02djg6z12', 'en', 1, 'https://ror.org/02djg6z12 Institute for Science and International Security'),
(70584, 'https://ror.org/039y2jb71', 'en', 1, 'https://ror.org/039y2jb71 Lawyers'' Committee for Civil Rights Under Law'),
(70585, 'https://ror.org/03cxgaw61', 'no_lang_code', 1, 'https://ror.org/03cxgaw61 K-Rep Development Agency (Kenya)'),
(70586, 'https://ror.org/039dvf662', 'en', 1, 'https://ror.org/039dvf662 Kenya Community Development Foundation'),
(70587, 'https://ror.org/01s897575', 'en', 1, 'https://ror.org/01s897575 Leadership Conference Education Fund'),
(70588, 'https://ror.org/04y64y937', 'en', 1, 'https://ror.org/04y64y937 Kenya Human Rights Commission'),
(70589, 'https://ror.org/00cw00f88', 'en', 1, 'https://ror.org/00cw00f88 Media Council of Kenya'),
(70590, 'https://ror.org/04zdyxh40', 'en', 1, 'https://ror.org/04zdyxh40 Kenya Land Alliance'),
(70591, 'https://ror.org/01cjzrq61', 'en', 1, 'https://ror.org/01cjzrq61 Media Matters for America'),
(70592, 'https://ror.org/0287y3s68', 'en', 1, 'https://ror.org/0287y3s68 Echo Network Africa'),
(70593, 'https://ror.org/00awv0k06', 'es', 1, 'https://ror.org/00awv0k06 Instituto de Liderazgo Simone de Beauvoir'),
(70594, 'https://ror.org/01s2wtj48', 'pt', 1, 'https://ror.org/01s2wtj48 Instituto Sou da Paz'),
(70595, 'https://ror.org/01q0h5a15', 'en', 1, 'https://ror.org/01q0h5a15 Media Rights Agenda'),
(70596, 'https://ror.org/03wxe4k21', 'no_lang_code', 1, 'https://ror.org/03wxe4k21 Ketebul Music'),
(70597, 'https://ror.org/034v70z81', 'en', 1, 'https://ror.org/034v70z81 Medical Education Cooperation with Cuba'),
(70598, 'https://ror.org/004mh3p35', 'en', 1, 'https://ror.org/004mh3p35 Keystone Research Center'),
(70599, 'https://ror.org/023qjpe11', 'en', 1, 'https://ror.org/023qjpe11 LEAP Africa'),
(70600, 'https://ror.org/01qyb4t36', 'en', 1, 'https://ror.org/01qyb4t36 Interaction Institute for Social Change'),
(70601, 'https://ror.org/03k85sj46', 'en', 1, 'https://ror.org/03k85sj46 Learning Policy Institute'),
(70602, 'https://ror.org/03xpvmx27', 'en', 1, 'https://ror.org/03xpvmx27 Kovno Communications'),
(70603, 'https://ror.org/01e10rp58', 'en', 1, 'https://ror.org/01e10rp58 Interfaith Worker Justice'),
(70604, 'https://ror.org/05xht1n33', 'en', 1, 'https://ror.org/05xht1n33 Labor Community Strategy Center'),
(70605, 'https://ror.org/05mx2as72', 'es', 1, 'https://ror.org/05mx2as72 Comisión Mexicana de Defensa y Promoción de los Derechos Humanos'),
(70606, 'https://ror.org/04nt7yh90', 'en', 1, 'https://ror.org/04nt7yh90 Lambda Legal'),
(70607, 'https://ror.org/04rzrwk66', 'en', 1, 'https://ror.org/04rzrwk66 International Centre for Mathematical and Computer Sciences'),
(70608, 'https://ror.org/01hg97084', 'en', 1, 'https://ror.org/01hg97084 New York Theatre Workshop'),
(70609, 'https://ror.org/05cbsyd36', 'en', 1, 'https://ror.org/05cbsyd36 National Committee for Responsive Philanthropy'),
(70610, 'https://ror.org/02x9mk733', 'es', 1, 'https://ror.org/02x9mk733 Consejo Civil Mexicano para la Silvicultura Sostenible'),
(70611, 'https://ror.org/01t03c617', 'en', 1, 'https://ror.org/01t03c617 Newark Trust for Education'),
(70612, 'https://ror.org/008qv2m62', 'id', 1, 'https://ror.org/008qv2m62 Lembaga Gemawan'),
(70613, 'https://ror.org/049ya5256', 'en', 1, 'https://ror.org/049ya5256 Next City'),
(70614, 'https://ror.org/042bs8227', 'es', 1, 'https://ror.org/042bs8227 Centro Mexicano de Derecho Ambiental'),
(70615, 'https://ror.org/05qdccy43', 'en', 1, 'https://ror.org/05qdccy43 Lexington Institute'),
(70616, 'https://ror.org/00zc49422', 'en', 1, 'https://ror.org/00zc49422 Nexus Community Partners'),
(70617, 'https://ror.org/049sa5a53', 'en', 1, 'https://ror.org/049sa5a53 National Dance Institute of New Mexico'),
(70618, 'https://ror.org/0532k3p48', 'en', 1, 'https://ror.org/0532k3p48 Liberty Hill'),
(70619, 'https://ror.org/047smnk10', 'en', 1, 'https://ror.org/047smnk10 National Day Laborer Organizing Network'),
(70620, 'https://ror.org/01tmhf305', 'en', 1, 'https://ror.org/01tmhf305 Living Cities'),
(70621, 'https://ror.org/05b1g0108', 'en', 1, 'https://ror.org/05b1g0108 Michigan League for Public Policy'),
(70622, 'https://ror.org/05nrxp832', 'en', 1, 'https://ror.org/05nrxp832 National Economic and Social Rights Initiative'),
(70623, 'https://ror.org/00pkp3a47', 'en', 1, 'https://ror.org/00pkp3a47 Nkuzi Development Association'),
(70624, 'https://ror.org/05gwdv631', 'en', 1, 'https://ror.org/05gwdv631 Michigan Nonprofit Association'),
(70625, 'https://ror.org/00x8nv804', 'en', 1, 'https://ror.org/00x8nv804 National Employment Law Project'),
(70626, 'https://ror.org/02f2s6657', 'en', 1, 'https://ror.org/02f2s6657 Noida Deaf Society'),
(70627, 'https://ror.org/0291ys696', 'en', 1, 'https://ror.org/0291ys696 Michigan United'),
(70628, 'https://ror.org/017ebm718', 'no_lang_code', 1, 'https://ror.org/017ebm718 Inclusiv (United States)'),
(70629, 'https://ror.org/021yz3w04', 'en', 1, 'https://ror.org/021yz3w04 Los Angeles Area Chamber of Commerce'),
(70630, 'https://ror.org/024vwmq15', 'en', 1, 'https://ror.org/024vwmq15 Nonprofit Finance Fund'),
(70631, 'https://ror.org/00bb5xg53', 'en', 1, 'https://ror.org/00bb5xg53 Minnesota Council of Nonprofits'),
(70632, 'https://ror.org/04zfskg78', 'pt', 1, 'https://ror.org/04zfskg78 Fórum Nacional pela Democratização da Comunicação'),
(70633, 'https://ror.org/05c5x4241', 'en', 1, 'https://ror.org/05c5x4241 Fair Share Education Fund'),
(70634, 'https://ror.org/018j6fe30', 'en', 1, 'https://ror.org/018j6fe30 Mission Asset Fund'),
(70635, 'https://ror.org/00bcg1285', 'en', 1, 'https://ror.org/00bcg1285 Low Income Investment Fund'),
(70636, 'https://ror.org/04n09hm86', 'pt', 1, 'https://ror.org/04n09hm86 Fórum Nacional das Entidades Civis de Defesa do Consumidor'),
(70637, 'https://ror.org/02frgyp60', 'pt', 1, 'https://ror.org/02frgyp60 Instituto Nupef'),
(70638, 'https://ror.org/00fgx8j22', 'no_lang_code', 1, 'https://ror.org/00fgx8j22 Montfort Social Institute మోంట్ఫోర్ట్ సోషల్ ఇన్స్టిట్యూట్'),
(70639, 'https://ror.org/04gnd7n67', 'pt', 1, 'https://ror.org/04gnd7n67 Centro de Cultura Luiz Freire'),
(70640, 'https://ror.org/0037jxv73', 'en', 1, 'https://ror.org/0037jxv73 Mophradat'),
(70641, 'https://ror.org/01t41r490', 'en', 1, 'https://ror.org/01t41r490 National Hispanic Leadership Agenda'),
(70642, 'https://ror.org/04e0kmg62', 'pt', 1, 'https://ror.org/04e0kmg62 Favela Observatory Observatório de Favelas'),
(70643, 'https://ror.org/023j15q26', 'en', 1, 'https://ror.org/023j15q26 Maine Center for Economic Policy'),
(70644, 'https://ror.org/05cx65996', 'en', 1, 'https://ror.org/05cx65996 Ocean Doctor'),
(70645, 'https://ror.org/02q5pvy25', 'en', 1, 'https://ror.org/02q5pvy25 National Hispanic Media Coalition'),
(70646, 'https://ror.org/002ffx508', 'en', 1, 'https://ror.org/002ffx508 Make the Road New York'),
(70647, 'https://ror.org/002pa2q48', 'en', 1, 'https://ror.org/002pa2q48 National Immigration Law Center'),
(70648, 'https://ror.org/05t5az281', 'en', 1, 'https://ror.org/05t5az281 Mothering Justice'),
(70649, 'https://ror.org/03efa2608', 'en', 1, 'https://ror.org/03efa2608 National Indigenous Organization of Colombia Organización Nacional Indígena de Colombia'),
(70650, 'https://ror.org/04rb79711', 'en', 1, 'https://ror.org/04rb79711 Mountain Association for Community Economic Development'),
(70651, 'https://ror.org/00n03f122', 'pt', 1, 'https://ror.org/00n03f122 Malungu'),
(70652, 'https://ror.org/03v4d6h23', 'en', 1, 'https://ror.org/03v4d6h23 The National Institute for Latino Policy'),
(70653, 'https://ror.org/05hd64t60', 'en', 1, 'https://ror.org/05hd64t60 Movement Strategy Center'),
(70654, 'https://ror.org/01scpqc23', 'en', 1, 'https://ror.org/01scpqc23 Mapungubwe Institute for Strategic Reflection'),
(70655, 'https://ror.org/037a35y56', 'en', 1, 'https://ror.org/037a35y56 Moving the GoalPosts'),
(70656, 'https://ror.org/05cvbfc52', 'en', 1, 'https://ror.org/05cvbfc52 National Korean American Service & Education Consortium'),
(70657, 'https://ror.org/05f0ps005', 'en', 1, 'https://ror.org/05f0ps005 National Religious Campaign Against Torture'),
(70658, 'https://ror.org/00jeph960', 'pt', 1, 'https://ror.org/00jeph960 Museu do Samba'),
(70659, 'https://ror.org/04c4hz115', 'en', 1, 'https://ror.org/04c4hz115 Purdue University Fort Wayne'),
(70660, 'https://ror.org/00586yd41', 'en', 1, 'https://ror.org/00586yd41 National Skills Coalition'),
(70661, 'https://ror.org/01qnwjk32', 'en', 1, 'https://ror.org/01qnwjk32 National Women''s Health Network'),
(70662, 'https://ror.org/03ywsr457', 'en', 1, 'https://ror.org/03ywsr457 Native American Rights Fund'),
(70663, 'https://ror.org/020fdd961', 'en', 1, 'https://ror.org/020fdd961 Nautilus Institute'),
(70664, 'https://ror.org/00gxhds15', 'no_lang_code', 1, 'https://ror.org/00gxhds15 Ndifuna Ukwazi'),
(70665, 'https://ror.org/01v6svm30', 'en', 1, 'https://ror.org/01v6svm30 Neighborhood Funders Group'),
(70666, 'https://ror.org/01snh9k23', 'en', 1, 'https://ror.org/01snh9k23 NeighborWorks America'),
(70667, 'https://ror.org/01w3qd511', 'en', 1, 'https://ror.org/01w3qd511 NEO Philanthropy'),
(70668, 'https://ror.org/05ebjrj46', 'en', 1, 'https://ror.org/05ebjrj46 Nepal Centre for Contemporary Studies'),
(70669, 'https://ror.org/01a4v4q66', 'en', 1, 'https://ror.org/01a4v4q66 SNV Netherlands Development Organisation'),
(70670, 'https://ror.org/04sbndd39', 'en', 1, 'https://ror.org/04sbndd39 Muslim Advocates'),
(70671, 'https://ror.org/00dsaey03', 'en', 1, 'https://ror.org/00dsaey03 New Economy Project'),
(70672, 'https://ror.org/02kjm5h73', 'no_lang_code', 1, 'https://ror.org/02kjm5h73 Velez College'),
(70673, 'https://ror.org/01kr8fz72', 'en', 1, 'https://ror.org/01kr8fz72 Muslim Women''s Research and Action Forum'),
(70674, 'https://ror.org/01tx8tm66', 'en', 1, 'https://ror.org/01tx8tm66 New Florida Majority'),
(70675, 'https://ror.org/02yq4nm28', 'en', 1, 'https://ror.org/02yq4nm28 New Horizon Association for Social Development مؤسسة أفاق جديدة للتنمية الاجتماعية'),
(70676, 'https://ror.org/051tr9v76', 'en', 1, 'https://ror.org/051tr9v76 Oregon Center for Public Policy'),
(70677, 'https://ror.org/0055gxg92', 'en', 1, 'https://ror.org/0055gxg92 New Jersey Institute for Social Justice'),
(70678, 'https://ror.org/02qvc4v06', 'en', 1, 'https://ror.org/02qvc4v06 Massachusetts Budget and Policy Center'),
(70679, 'https://ror.org/030dxdj56', 'en', 1, 'https://ror.org/030dxdj56 Nanjing Collaborator Community Development Center 南京市协作者社区发展中心'),
(70680, 'https://ror.org/013nqbx98', 'en', 1, 'https://ror.org/013nqbx98 Type Media Center'),
(70681, 'https://ror.org/04c1s0g33', 'en', 1, 'https://ror.org/04c1s0g33 Maya Educational Foundation'),
(70682, 'https://ror.org/016ftxq46', 'en', 1, 'https://ror.org/016ftxq46 New Orleans Workers’ Center for Racial Justice'),
(70683, 'https://ror.org/009vmn503', 'en', 1, 'https://ror.org/009vmn503 National AIDS Housing Coalition'),
(70684, 'https://ror.org/00fzv2y47', 'en', 1, 'https://ror.org/00fzv2y47 Maynard Institute'),
(70685, 'https://ror.org/011gmce08', 'en', 1, 'https://ror.org/011gmce08 National Association for Latino Community Asset Builders'),
(70686, 'https://ror.org/05hspww74', 'en', 1, 'https://ror.org/05hspww74 New Rules for Global Finance'),
(70687, 'https://ror.org/01n3xc149', 'es', 1, 'https://ror.org/01n3xc149 Oxfam México'),
(70688, 'https://ror.org/031bw2b05', 'en', 1, 'https://ror.org/031bw2b05 The New World Foundation'),
(70689, 'https://ror.org/05px4qj37', 'en', 1, 'https://ror.org/05px4qj37 Measures for Justice'),
(70690, 'https://ror.org/030mda749', 'en', 1, 'https://ror.org/030mda749 San Diego Housing Federation'),
(70691, 'https://ror.org/050skgy72', 'en', 1, 'https://ror.org/050skgy72 Playwrights Horizons'),
(70692, 'https://ror.org/05ff8j166', 'id', 1, 'https://ror.org/05ff8j166 Pancur Kasih Association Perkumpulan Pancur Kasih'),
(70693, 'https://ror.org/02wpzhj03', 'en', 1, 'https://ror.org/02wpzhj03 National Centre for Advocacy Studies'),
(70694, 'https://ror.org/02qhn8518', 'en', 1, 'https://ror.org/02qhn8518 Santa Fe Art Institute'),
(70695, 'https://ror.org/05s3f7036', 'en', 1, 'https://ror.org/05s3f7036 Policy Matters Ohio'),
(70696, 'https://ror.org/05m2vsm26', 'pt', 1, 'https://ror.org/05m2vsm26 Sociedade Paraense de Defesa dos Direitos Humanos'),
(70697, 'https://ror.org/05bp3t561', 'en', 1, 'https://ror.org/05bp3t561 The National Coalition on Black Civic Participation'),
(70698, 'https://ror.org/00ecnfg66', 'en', 1, 'https://ror.org/00ecnfg66 Political Research Associates'),
(70699, 'https://ror.org/04w96wv49', 'en', 1, 'https://ror.org/04w96wv49 Sustainability Accounting Standards Board'),
(70700, 'https://ror.org/01bz5gk50', 'no_lang_code', 1, 'https://ror.org/01bz5gk50 PHI'),
(70701, 'https://ror.org/03xtd0t75', 'en', 1, 'https://ror.org/03xtd0t75 Population Media Center'),
(70702, 'https://ror.org/01jet5112', 'en', 1, 'https://ror.org/01jet5112 Say Yes to Education'),
(70703, 'https://ror.org/00zhc6r97', 'en', 1, 'https://ror.org/00zhc6r97 Partners for the Common Good'),
(70704, 'https://ror.org/02b0gsr86', 'en', 1, 'https://ror.org/02b0gsr86 Southwestern Association for Indian Arts'),
(70705, 'https://ror.org/0245zq547', 'en', 1, 'https://ror.org/0245zq547 Programme on Women’s Economic, Social and Cultural Rights'),
(70706, 'https://ror.org/031xn1a76', 'no_lang_code', 1, 'https://ror.org/031xn1a76 Partners in Development for Research, Consulting and Training (Egypt) شركاء التنمية للبحوث والاستشارات والتدريب'),
(70707, 'https://ror.org/00z28s026', 'en', 1, 'https://ror.org/00z28s026 Partnership for African Social & Governance Research'),
(70708, 'https://ror.org/00mmkx194', 'en', 1, 'https://ror.org/00mmkx194 Progress Michigan'),
(70709, 'https://ror.org/002wpgj09', 'no_lang_code', 1, 'https://ror.org/002wpgj09 Spaceworks'),
(70710, 'https://ror.org/01dgyad16', 'en', 1, 'https://ror.org/01dgyad16 Partnership for Working Families'),
(70711, 'https://ror.org/009778y68', 'en', 1, 'https://ror.org/009778y68 Project On Government Oversight'),
(70712, 'https://ror.org/02hzhm878', 'no_lang_code', 1, 'https://ror.org/02hzhm878 Spitfire Spark Change (United States)'),
(70713, 'https://ror.org/005898f12', 'en', 1, 'https://ror.org/005898f12 Project on Organizing, Development, Education, and Research'),
(70714, 'https://ror.org/017na5t98', 'en', 1, 'https://ror.org/017na5t98 Scruggs & Associates'),
(70715, 'https://ror.org/03xga3b69', 'en', 1, 'https://ror.org/03xga3b69 Prosperity Now'),
(70716, 'https://ror.org/02hvh2w75', 'pt', 1, 'https://ror.org/02hvh2w75 Comissão Pastoral da Terra'),
(70717, 'https://ror.org/039wwq736', 'en', 1, 'https://ror.org/039wwq736 Public Affairs Research Institute'),
(70718, 'https://ror.org/02f7edq28', 'en', 1, 'https://ror.org/02f7edq28 Section 27'),
(70719, 'https://ror.org/00rdsdk57', 'pt', 1, 'https://ror.org/00rdsdk57 Agência Patrícia Galvão'),
(70720, 'https://ror.org/00aqrhw18', 'pt', 1, 'https://ror.org/00aqrhw18 Associação Centro de Estudos de Economia Solidária do Atlântico'),
(70721, 'https://ror.org/058c5e806', 'en', 1, 'https://ror.org/058c5e806 Forest Peoples Programme'),
(70722, 'https://ror.org/044v30149', 'en', 1, 'https://ror.org/044v30149 People''s Action'),
(70723, 'https://ror.org/022wja523', 'en', 1, 'https://ror.org/022wja523 Security Council Report'),
(70724, 'https://ror.org/01tzf7a21', 'en', 1, 'https://ror.org/01tzf7a21 Public Interest Research and Advocacy Center'),
(70725, 'https://ror.org/05p8jxd51', 'en', 1, 'https://ror.org/05p8jxd51 Institut Hak Asasi Perempuan Institute for Women Human Rights'),
(70726, 'https://ror.org/04fd1ra95', 'en', 1, 'https://ror.org/04fd1ra95 Public Knowledge'),
(70727, 'https://ror.org/045rzp790', 'en', 1, 'https://ror.org/045rzp790 Sex Workers Education & Advocacy Taskforce'),
(70728, 'https://ror.org/04gw3cp30', 'es', 1, 'https://ror.org/04gw3cp30 Seminario Permanente de Investigación Agraria'),
(70729, 'https://ror.org/01201q996', 'en', 1, 'https://ror.org/01201q996 Sexuality Information and Education Council of the United States'),
(70730, 'https://ror.org/05je89049', 'en', 1, 'https://ror.org/05je89049 Strategic Concepts in Organizing and Policy Education'),
(70731, 'https://ror.org/025mrej82', 'en', 1, 'https://ror.org/025mrej82 Public Religion Research Institute'),
(70732, 'https://ror.org/037y0zy96', 'en', 1, 'https://ror.org/037y0zy96 Studies in Poverty and Inequality Institute'),
(70733, 'https://ror.org/031rhbf61', 'en', 1, 'https://ror.org/031rhbf61 Philanthropy Northwest'),
(70734, 'https://ror.org/03gf6ma44', 'en', 1, 'https://ror.org/03gf6ma44 Shaanxi Research Association for Women and Family 陕西省妇女理论婚姻家庭研究会'),
(70735, 'https://ror.org/02dnkgs07', 'en', 1, 'https://ror.org/02dnkgs07 Studio in a School'),
(70736, 'https://ror.org/034j2a896', 'en', 1, 'https://ror.org/034j2a896 Rainforest Foundation Norway Regnskogfondet'),
(70737, 'https://ror.org/0490b3412', 'no_lang_code', 1, 'https://ror.org/0490b3412 Sue Mbaya & Associates (South Africa)'),
(70738, 'https://ror.org/015v8md60', 'en', 1, 'https://ror.org/015v8md60 PIR Center ПИР-Центр'),
(70739, 'https://ror.org/05e0fad36', 'no_lang_code', 1, 'https://ror.org/05e0fad36 Shangri-la Institute 香格里拉可持续社区学会'),
(70740, 'https://ror.org/04vmq6d61', 'no_lang_code', 1, 'https://ror.org/04vmq6d61 Planact'),
(70741, 'https://ror.org/04d8rzx62', 'en', 1, 'https://ror.org/04d8rzx62 TakeAction Minnesota'),
(70742, 'https://ror.org/05pqevf46', 'en', 1, 'https://ror.org/05pqevf46 Reconnecting America'),
(70743, 'https://ror.org/05974x792', 'es', 1, 'https://ror.org/05974x792 Red Universitaria Mutis'),
(70744, 'https://ror.org/03c9pj817', 'en', 1, 'https://ror.org/03c9pj817 Tanganyika Law Society'),
(70745, 'https://ror.org/02xc11d36', 'en', 1, 'https://ror.org/02xc11d36 Chama cha Wanahabari Wanawake Tanzania Tanzania Media Women''s Association'),
(70746, 'https://ror.org/04nffa559', 'en', 1, 'https://ror.org/04nffa559 Sichuan Academy Of Social Sciences 四川省社会科学院'),
(70747, 'https://ror.org/006y2wa23', 'en', 1, 'https://ror.org/006y2wa23 The Foundation for a Civil Society'),
(70748, 'https://ror.org/05eqc4s73', 'en', 1, 'https://ror.org/05eqc4s73 Regional Plan Association'),
(70749, 'https://ror.org/00m0sd163', 'en', 1, 'https://ror.org/00m0sd163 Religious Coalition for Reproductive Choice'),
(70750, 'https://ror.org/03cnk2k35', 'no_lang_code', 1, 'https://ror.org/03cnk2k35 TCC Group (United States)'),
(70751, 'https://ror.org/0365n9z90', 'es', 1, 'https://ror.org/0365n9z90 Sisma Mujer'),
(70752, 'https://ror.org/014bnza38', 'en', 1, 'https://ror.org/014bnza38 Texas Housers'),
(70753, 'https://ror.org/03ahp4j53', 'en', 1, 'https://ror.org/03ahp4j53 Restaurant Opportunities Centers United'),
(70754, 'https://ror.org/05pd4an24', 'en', 1, 'https://ror.org/05pd4an24 Skylight'),
(70755, 'https://ror.org/04v8ha428', 'en', 1, 'https://ror.org/04v8ha428 Rights and Resources'),
(70756, 'https://ror.org/00cmk9h73', 'en', 1, 'https://ror.org/00cmk9h73 Smart Growth America'),
(70757, 'https://ror.org/00sbkq582', 'en', 1, 'https://ror.org/00sbkq582 Futuro'),
(70758, 'https://ror.org/05nrj5p09', 'en', 1, 'https://ror.org/05nrj5p09 The Acronym Institute for Disarmament Diplomacy'),
(70759, 'https://ror.org/04g0m9s20', 'no_lang_code', 1, 'https://ror.org/04g0m9s20 Riwaq');
INSERT INTO `rors` VALUES
(70760, 'https://ror.org/0434w4n54', 'en', 1, 'https://ror.org/0434w4n54 Center for Story-based Strategy'),
(70761, 'https://ror.org/01ppqae48', 'en', 1, 'https://ror.org/01ppqae48 The Golden Bridges Foundation'),
(70762, 'https://ror.org/03b0cap52', 'en', 1, 'https://ror.org/03b0cap52 Fundação Roberto Marinho Roberto Marinho Foundation'),
(70763, 'https://ror.org/05m5awa65', 'en', 1, 'https://ror.org/05m5awa65 Group of Institutes, Foundations and Enterprises Grupo de Institutos Fundações e Empresas'),
(70764, 'https://ror.org/02q58a426', 'en', 1, 'https://ror.org/02q58a426 African Leadership Institute'),
(70765, 'https://ror.org/02mq6af82', 'en', 1, 'https://ror.org/02mq6af82 Rockwood Leadership Institute'),
(70766, 'https://ror.org/05am5k237', 'en', 1, 'https://ror.org/05am5k237 Social Action'),
(70767, 'https://ror.org/0509fnv64', 'en', 1, 'https://ror.org/0509fnv64 League of Resident Theatres'),
(70768, 'https://ror.org/003v0x852', 'en', 1, 'https://ror.org/003v0x852 Aliansi Masyarakat Adat Nusantara Indigenous Peoples'' Alliance of the Archipelago'),
(70769, 'https://ror.org/00xc55195', 'en', 1, 'https://ror.org/00xc55195 The African Safari Foundation'),
(70770, 'https://ror.org/02s6awq69', 'en', 1, 'https://ror.org/02s6awq69 Institute for Nonprofit News'),
(70771, 'https://ror.org/01s8e3v68', 'en', 1, 'https://ror.org/01s8e3v68 American Society for Yad Vashem'),
(70772, 'https://ror.org/04mevkg92', 'en', 1, 'https://ror.org/04mevkg92 Rural Action'),
(70773, 'https://ror.org/04j4pfa24', 'en', 1, 'https://ror.org/04j4pfa24 Arms Control Association'),
(70774, 'https://ror.org/04e0phs31', 'en', 1, 'https://ror.org/04e0phs31 Rural Support Partners'),
(70775, 'https://ror.org/04k5c4t69', 'no_lang_code', 1, 'https://ror.org/04k5c4t69 Sa-Dhan'),
(70776, 'https://ror.org/0116x8861', 'en', 1, 'https://ror.org/0116x8861 Safe & Justice Michigan'),
(70777, 'https://ror.org/054h8jj30', 'en', 1, 'https://ror.org/054h8jj30 International Islamic Center for Population Studies and Research'),
(70778, 'https://ror.org/00zb61d94', 'en', 1, 'https://ror.org/00zb61d94 The Kenya Alliance of Resident Associations'),
(70779, 'https://ror.org/027c34053', 'en', 1, 'https://ror.org/027c34053 Safe Motherhood Ladies Association'),
(70780, 'https://ror.org/03sqqkw27', 'en', 1, 'https://ror.org/03sqqkw27 Society for Labour & Development'),
(70781, 'https://ror.org/03r32j025', 'no_lang_code', 1, 'https://ror.org/03r32j025 NeuroProof (Germany)'),
(70782, 'https://ror.org/04db4kr72', 'en', 1, 'https://ror.org/04db4kr72 Society for Social Uplift Through Rural Action'),
(70783, 'https://ror.org/05vr51226', 'en', 1, 'https://ror.org/05vr51226 Research and Information Centre Memorial Научно-информационный центр Мемориал'),
(70784, 'https://ror.org/034mzgy05', 'fr', 1, 'https://ror.org/034mzgy05 Ashkal Alwan أشكال ألوان'),
(70785, 'https://ror.org/0056a1265', 'en', 1, 'https://ror.org/0056a1265 Bank Information Center'),
(70786, 'https://ror.org/00cx7pr70', 'no_lang_code', 1, 'https://ror.org/00cx7pr70 Tiri (United Kingdom)'),
(70787, 'https://ror.org/019kg0t44', 'en', 1, 'https://ror.org/019kg0t44 Legatum Institute'),
(70788, 'https://ror.org/04s2xcs63', 'en', 1, 'https://ror.org/04s2xcs63 Solidago Foundation'),
(70789, 'https://ror.org/03p61g771', 'en', 1, 'https://ror.org/03p61g771 Toniic Institute'),
(70790, 'https://ror.org/05057ay57', 'en', 1, 'https://ror.org/05057ay57 Missouri Budget Project'),
(70791, 'https://ror.org/03wqzz907', 'en', 1, 'https://ror.org/03wqzz907 Topos'),
(70792, 'https://ror.org/01nke7b10', 'no_lang_code', 1, 'https://ror.org/01nke7b10 Soliya'),
(70793, 'https://ror.org/02sqcyb22', 'en', 1, 'https://ror.org/02sqcyb22 The Bronx Academy of Arts and Dance'),
(70794, 'https://ror.org/013ypha33', 'es', 1, 'https://ror.org/013ypha33 Asociación Nacional de Afrocolombianos Desplazados'),
(70795, 'https://ror.org/0153h6k87', 'en', 1, 'https://ror.org/0153h6k87 Feminist Institute for Democracy'),
(70796, 'https://ror.org/00b4tnh45', 'en', 1, 'https://ror.org/00b4tnh45 Campaign Legal Center'),
(70797, 'https://ror.org/05sce7z09', 'en', 1, 'https://ror.org/05sce7z09 South Asian Americans Leading Together'),
(70798, 'https://ror.org/03pbq8185', 'en', 1, 'https://ror.org/03pbq8185 National Council for Black Studies'),
(70799, 'https://ror.org/04ests719', 'en', 1, 'https://ror.org/04ests719 National Lesbian and Gay Journalists Association'),
(70800, 'https://ror.org/053br3t03', 'en', 1, 'https://ror.org/053br3t03 South Asians for Human Rights'),
(70801, 'https://ror.org/03khf9f69', 'en', 1, 'https://ror.org/03khf9f69 Turnaround for Children'),
(70802, 'https://ror.org/0557gff25', 'en', 1, 'https://ror.org/0557gff25 Twaweza Communications'),
(70803, 'https://ror.org/04gh4hn58', 'en', 1, 'https://ror.org/04gh4hn58 Southern Coalition for Social Justice'),
(70804, 'https://ror.org/033mfbr09', 'no_lang_code', 1, 'https://ror.org/033mfbr09 Ubuntu Institute'),
(70805, 'https://ror.org/021g78m61', 'en', 1, 'https://ror.org/021g78m61 Social Progress Imperative'),
(70806, 'https://ror.org/048k8a688', 'en', 1, 'https://ror.org/048k8a688 The Orderly Society Trust'),
(70807, 'https://ror.org/05d73n292', 'en', 1, 'https://ror.org/05d73n292 Uganda Association of Women Lawyers'),
(70808, 'https://ror.org/01wg0wd65', 'en', 1, 'https://ror.org/01wg0wd65 The Center for Arts Education'),
(70809, 'https://ror.org/018kbgx06', 'en', 1, 'https://ror.org/018kbgx06 Oretha Castle Haley Boulevard Merchants & Business Association'),
(70810, 'https://ror.org/022wdbc37', 'en', 1, 'https://ror.org/022wdbc37 Uganda Media Women’s Association'),
(70811, 'https://ror.org/00z57gh96', 'en', 1, 'https://ror.org/00z57gh96 Uganda National NGO Forum'),
(70812, 'https://ror.org/00216ta13', 'en', 1, 'https://ror.org/00216ta13 Center for the Study of Social Policy'),
(70813, 'https://ror.org/01v01s839', 'en', 1, 'https://ror.org/01v01s839 The GoDown Arts Centre'),
(70814, 'https://ror.org/00q6vbk50', 'en', 1, 'https://ror.org/00q6vbk50 Southern Mutual Help Association'),
(70815, 'https://ror.org/01cjtcc19', 'pt', 1, 'https://ror.org/01cjtcc19 Uma Gota no Oceano'),
(70816, 'https://ror.org/0411yf357', 'en', 1, 'https://ror.org/0411yf357 Central Compilation & Translation Bureau 中央编译局比较政治与经济研究中心'),
(70817, 'https://ror.org/058vm0m82', 'pt', 1, 'https://ror.org/058vm0m82 Sindicato dos Trabalhadores Rurais de Caxias do Sul'),
(70818, 'https://ror.org/05sp7aa03', 'no_lang_code', 1, 'https://ror.org/05sp7aa03 US-China Strong'),
(70819, 'https://ror.org/036pz8x72', 'en', 1, 'https://ror.org/036pz8x72 UNITE-LA'),
(70820, 'https://ror.org/056n7tt65', 'en', 1, 'https://ror.org/056n7tt65 Coptic Evangelical Organization for Social Services القبطية الإنجيلية للخدمات الاجتماعية في تق'),
(70821, 'https://ror.org/02y5w9a36', 'en', 1, 'https://ror.org/02y5w9a36 United States Public Interest Research Group Education Fund'),
(70822, 'https://ror.org/01hptbr11', 'en', 1, 'https://ror.org/01hptbr11 Equal Rights Trust'),
(70823, 'https://ror.org/0377cab50', 'en', 1, 'https://ror.org/0377cab50 The Samdhana Institute'),
(70824, 'https://ror.org/05yaa8165', 'en', 1, 'https://ror.org/05yaa8165 West Africa Vocational Education'),
(70825, 'https://ror.org/02nxjx545', 'en', 1, 'https://ror.org/02nxjx545 The Sentencing Project'),
(70826, 'https://ror.org/05kn8zy50', 'en', 1, 'https://ror.org/05kn8zy50 Socio-Economic Rights Institute of South Africa'),
(70827, 'https://ror.org/0136rmr23', 'es', 1, 'https://ror.org/0136rmr23 Programa Venezolano de Educación Acción en Derechos Humanos'),
(70828, 'https://ror.org/01c85sy27', 'en', 1, 'https://ror.org/01c85sy27 Philanthropy West Virginia'),
(70829, 'https://ror.org/05v3ktf05', 'en', 1, 'https://ror.org/05v3ktf05 Inyathelo: The South African Institute for Advancement'),
(70830, 'https://ror.org/05kcyf633', 'en', 1, 'https://ror.org/05kcyf633 The Stuttering Association for the Young'),
(70831, 'https://ror.org/00j557793', 'en', 1, 'https://ror.org/00j557793 Western Organization of Resource Councils'),
(70832, 'https://ror.org/01yth3h09', 'en', 1, 'https://ror.org/01yth3h09 Vietnam National Institute of Culture and Arts Studies Viện Văn hóa Nghệ thuật quốc gia Việt Nam'),
(70833, 'https://ror.org/02y83px33', 'no_lang_code', 1, 'https://ror.org/02y83px33 UNNATI उन्नति'),
(70834, 'https://ror.org/05f0pxv25', 'en', 1, 'https://ror.org/05f0pxv25 Sunlight Foundation'),
(70835, 'https://ror.org/02zdtxx58', 'en', 1, 'https://ror.org/02zdtxx58 Wheat Trust'),
(70836, 'https://ror.org/03yarwa09', 'en', 1, 'https://ror.org/03yarwa09 Update Institute of Professional Studies'),
(70837, 'https://ror.org/01e17wh10', 'no_lang_code', 1, 'https://ror.org/01e17wh10 Vikas Samvad'),
(70838, 'https://ror.org/050rahh61', 'en', 1, 'https://ror.org/050rahh61 The W. Haywood Burns Institute'),
(70839, 'https://ror.org/04yd1f040', 'en', 1, 'https://ror.org/04yd1f040 Urban Design Research Institute'),
(70840, 'https://ror.org/00hqts921', 'en', 1, 'https://ror.org/00hqts921 New Virginia Majority Education Fund'),
(70841, 'https://ror.org/03b9pqg16', 'en', 1, 'https://ror.org/03b9pqg16 The Wahid Institute'),
(70842, 'https://ror.org/03ps8mj31', 'en', 1, 'https://ror.org/03ps8mj31 Watershed Support Services and Activities Network'),
(70843, 'https://ror.org/04hytgp84', 'pt', 1, 'https://ror.org/04hytgp84 Instituto Vladimir Herzog'),
(70844, 'https://ror.org/05x8gcy84', 'en', 1, 'https://ror.org/05x8gcy84 Washington Office on Latin America'),
(70845, 'https://ror.org/0059vsf77', 'no_lang_code', 1, 'https://ror.org/0059vsf77 1st Edge (United States)'),
(70846, 'https://ror.org/00t87a490', 'no_lang_code', 1, 'https://ror.org/00t87a490 21st Century Systems (United States)'),
(70847, 'https://ror.org/05h4kd271', 'en', 1, 'https://ror.org/05h4kd271 Watershed Center'),
(70848, 'https://ror.org/058n1t885', 'no_lang_code', 1, 'https://ror.org/058n1t885 Actoprobe (United States)'),
(70849, 'https://ror.org/05md2f937', 'en', 1, 'https://ror.org/05md2f937 Consumer VOICE'),
(70850, 'https://ror.org/02rr9hy25', 'no_lang_code', 1, 'https://ror.org/02rr9hy25 AMPAC (United States)'),
(70851, 'https://ror.org/0552acy97', 'no_lang_code', 1, 'https://ror.org/0552acy97 Adámas Nano (United States)'),
(70852, 'https://ror.org/02fnwfw55', 'no_lang_code', 1, 'https://ror.org/02fnwfw55 AeroStream Communications (United States)'),
(70853, 'https://ror.org/05nb6mm11', 'en', 1, 'https://ror.org/05nb6mm11 Adaptive Cognitive Systems'),
(70854, 'https://ror.org/0086j2x90', 'no_lang_code', 1, 'https://ror.org/0086j2x90 Aerotech Research (United States)'),
(70855, 'https://ror.org/0344fac35', 'no_lang_code', 1, 'https://ror.org/0344fac35 A&P Technology (United States)'),
(70856, 'https://ror.org/02f3zfv55', 'no_lang_code', 1, 'https://ror.org/02f3zfv55 Adeptrix (United States)'),
(70857, 'https://ror.org/01hxz7b02', 'no_lang_code', 1, 'https://ror.org/01hxz7b02 Advent Systems (United States)'),
(70858, 'https://ror.org/01tbsny88', 'no_lang_code', 1, 'https://ror.org/01tbsny88 Advratech (United States)'),
(70859, 'https://ror.org/03w836z53', 'no_lang_code', 1, 'https://ror.org/03w836z53 Adient Medical (United States)'),
(70860, 'https://ror.org/033mdbt36', 'no_lang_code', 1, 'https://ror.org/033mdbt36 Aggamin (United States)'),
(70861, 'https://ror.org/04jav4h88', 'no_lang_code', 1, 'https://ror.org/04jav4h88 Adjuvance (United States)'),
(70862, 'https://ror.org/033rcy608', 'no_lang_code', 1, 'https://ror.org/033rcy608 Aechelon Technology (United States)'),
(70863, 'https://ror.org/01mbqee76', 'no_lang_code', 1, 'https://ror.org/01mbqee76 Agile RF Systems (United States)'),
(70864, 'https://ror.org/046dj2v49', 'no_lang_code', 1, 'https://ror.org/046dj2v49 AdTech Optics (United States)'),
(70865, 'https://ror.org/02ctd9k17', 'no_lang_code', 1, 'https://ror.org/02ctd9k17 Aereon (United States)'),
(70866, 'https://ror.org/02njsw853', 'no_lang_code', 1, 'https://ror.org/02njsw853 AAVogen (United States)'),
(70867, 'https://ror.org/02bdk9r92', 'no_lang_code', 1, 'https://ror.org/02bdk9r92 Advaita (United States)'),
(70868, 'https://ror.org/025q9pc81', 'no_lang_code', 1, 'https://ror.org/025q9pc81 AgileDelta (United States)'),
(70869, 'https://ror.org/02wvrc195', 'no_lang_code', 1, 'https://ror.org/02wvrc195 Ahmic Aerospace (United States)'),
(70870, 'https://ror.org/015a03w85', 'no_lang_code', 1, 'https://ror.org/015a03w85 Aero Thermo Technology (United States)'),
(70871, 'https://ror.org/03br5ck68', 'no_lang_code', 1, 'https://ror.org/03br5ck68 Absorption Systems (United States)'),
(70872, 'https://ror.org/024ps9968', 'no_lang_code', 1, 'https://ror.org/024ps9968 AI Signal Research (United States)'),
(70873, 'https://ror.org/05qgb2253', 'no_lang_code', 1, 'https://ror.org/05qgb2253 ABT Molecular Imaging (United States)'),
(70874, 'https://ror.org/0094qg225', 'no_lang_code', 1, 'https://ror.org/0094qg225 Advanced Design Consulting USA (United States)'),
(70875, 'https://ror.org/03r1eja77', 'no_lang_code', 1, 'https://ror.org/03r1eja77 Accacia International (United States)'),
(70876, 'https://ror.org/03rc7sa66', 'no_lang_code', 1, 'https://ror.org/03rc7sa66 Automation, Information, and Management Systems (United States)'),
(70877, 'https://ror.org/02h9s3z30', 'no_lang_code', 1, 'https://ror.org/02h9s3z30 Airflow Sciences (United States)'),
(70878, 'https://ror.org/00mycjp45', 'no_lang_code', 1, 'https://ror.org/00mycjp45 Custom Electronics (United States)'),
(70879, 'https://ror.org/0552brw50', 'no_lang_code', 1, 'https://ror.org/0552brw50 AirLift Environmental (United States)'),
(70880, 'https://ror.org/0449ygn91', 'no_lang_code', 1, 'https://ror.org/0449ygn91 Accel Diagnostics (United States)'),
(70881, 'https://ror.org/019btxj82', 'no_lang_code', 1, 'https://ror.org/019btxj82 Ajjer (United States)'),
(70882, 'https://ror.org/025kjws23', 'no_lang_code', 1, 'https://ror.org/025kjws23 Advanced Energy Dynamics (United States)'),
(70883, 'https://ror.org/048sjp277', 'no_lang_code', 1, 'https://ror.org/048sjp277 Akron Polymer Systems (United States)'),
(70884, 'https://ror.org/016cmyf08', 'no_lang_code', 1, 'https://ror.org/016cmyf08 Advanced Fiber Sensors (United States)'),
(70885, 'https://ror.org/05964ej87', 'no_lang_code', 1, 'https://ror.org/05964ej87 Akron Rubber Development Laboratory (United States)'),
(70886, 'https://ror.org/019j5vb98', 'no_lang_code', 1, 'https://ror.org/019j5vb98 ArrayFire (United States)'),
(70887, 'https://ror.org/00bhzer06', 'no_lang_code', 1, 'https://ror.org/00bhzer06 Akrotome Imaging (United States)'),
(70888, 'https://ror.org/01jp0wp57', 'no_lang_code', 1, 'https://ror.org/01jp0wp57 AccessData (United States)'),
(70889, 'https://ror.org/000m0gv46', 'no_lang_code', 1, 'https://ror.org/000m0gv46 SolAero Technologies (United States)'),
(70890, 'https://ror.org/0553f1x12', 'no_lang_code', 1, 'https://ror.org/0553f1x12 Advanced Fluidics (United States)'),
(70891, 'https://ror.org/02vaea525', 'no_lang_code', 1, 'https://ror.org/02vaea525 Akston Biosciences (United States)'),
(70892, 'https://ror.org/03yk1a741', 'no_lang_code', 1, 'https://ror.org/03yk1a741 Advanced Genomic Technology (United States)'),
(70893, 'https://ror.org/044ybps29', 'no_lang_code', 1, 'https://ror.org/044ybps29 Accord Solutions (United States)'),
(70894, 'https://ror.org/04p7gyb31', 'no_lang_code', 1, 'https://ror.org/04p7gyb31 Allure (United States)'),
(70895, 'https://ror.org/00bk62d14', 'no_lang_code', 1, 'https://ror.org/00bk62d14 Accudyne Systems (United States)'),
(70896, 'https://ror.org/03jxrtv34', 'no_lang_code', 1, 'https://ror.org/03jxrtv34 Alaskanativetech (United States)'),
(70897, 'https://ror.org/02ehgd331', 'no_lang_code', 1, 'https://ror.org/02ehgd331 Allvivo Vascular (United States)'),
(70898, 'https://ror.org/02ja16p07', 'no_lang_code', 1, 'https://ror.org/02ja16p07 Accumed Systems (United States)'),
(70899, 'https://ror.org/05j2afk93', 'no_lang_code', 1, 'https://ror.org/05j2afk93 Alpha Environmental (United States)'),
(70900, 'https://ror.org/00vacpg25', 'no_lang_code', 1, 'https://ror.org/00vacpg25 Alba-Technic (United States)'),
(70901, 'https://ror.org/02hc8ze18', 'no_lang_code', 1, 'https://ror.org/02hc8ze18 Advanced Life Technologies (United States)'),
(70902, 'https://ror.org/05ea00v44', 'no_lang_code', 1, 'https://ror.org/05ea00v44 AlphaMicron (United States)'),
(70903, 'https://ror.org/04hktxn88', 'no_lang_code', 1, 'https://ror.org/04hktxn88 Mantis Vision (Israel)'),
(70904, 'https://ror.org/03pm3k527', 'no_lang_code', 1, 'https://ror.org/03pm3k527 AlphaTRAC (United States)'),
(70905, 'https://ror.org/02m2edj71', 'no_lang_code', 1, 'https://ror.org/02m2edj71 Aldatu Biosciences (United States)'),
(70906, 'https://ror.org/02kgjbk95', 'no_lang_code', 1, 'https://ror.org/02kgjbk95 Advanced Media Research (United States)'),
(70907, 'https://ror.org/03nv0w254', 'no_lang_code', 1, 'https://ror.org/03nv0w254 Acorn Science & Innovation (United States)'),
(70908, 'https://ror.org/014p7yd77', 'no_lang_code', 1, 'https://ror.org/014p7yd77 Altius Space Machines (United States)'),
(70909, 'https://ror.org/001j88k95', 'no_lang_code', 1, 'https://ror.org/001j88k95 Alico Systems (United States)'),
(70910, 'https://ror.org/05k6q1750', 'no_lang_code', 1, 'https://ror.org/05k6q1750 Advanced Numerical Solutions (United States)'),
(70911, 'https://ror.org/000ymg434', 'no_lang_code', 1, 'https://ror.org/000ymg434 Amplification Technologies (United States)'),
(70912, 'https://ror.org/0251n1a38', 'no_lang_code', 1, 'https://ror.org/0251n1a38 Amprion (United States)'),
(70913, 'https://ror.org/04g5jfs38', 'no_lang_code', 1, 'https://ror.org/04g5jfs38 Advanced Optical Technologies (United States)'),
(70914, 'https://ror.org/02802hm84', 'no_lang_code', 1, 'https://ror.org/02802hm84 Tecplot (United States)'),
(70915, 'https://ror.org/029bmhr60', 'no_lang_code', 1, 'https://ror.org/029bmhr60 Amastan Technologies (United States)'),
(70916, 'https://ror.org/04zsmb304', 'no_lang_code', 1, 'https://ror.org/04zsmb304 Ambient Micro (United States)'),
(70917, 'https://ror.org/0222kcs48', 'no_lang_code', 1, 'https://ror.org/0222kcs48 Applied Sonics (United States)'),
(70918, 'https://ror.org/05eva4f61', 'no_lang_code', 1, 'https://ror.org/05eva4f61 API Engineering (United States)'),
(70919, 'https://ror.org/01h4n0g56', 'no_lang_code', 1, 'https://ror.org/01h4n0g56 Amydis (United States)'),
(70920, 'https://ror.org/00yjxga86', 'no_lang_code', 1, 'https://ror.org/00yjxga86 AnaBios (United States)'),
(70921, 'https://ror.org/05p6vxc40', 'no_lang_code', 1, 'https://ror.org/05p6vxc40 Amcom Communications (United States)'),
(70922, 'https://ror.org/03w764380', 'no_lang_code', 1, 'https://ror.org/03w764380 Amercom (United States)'),
(70923, 'https://ror.org/038x31d44', 'no_lang_code', 1, 'https://ror.org/038x31d44 Anagin (United States)'),
(70924, 'https://ror.org/00j3vdq65', 'no_lang_code', 1, 'https://ror.org/00j3vdq65 Applied BioMath (United States)'),
(70925, 'https://ror.org/03efpdt52', 'no_lang_code', 1, 'https://ror.org/03efpdt52 Applied Tissue Technologies (United States)'),
(70926, 'https://ror.org/00q29t979', 'no_lang_code', 1, 'https://ror.org/00q29t979 American Engineering & Manufacturing (United States)'),
(70927, 'https://ror.org/05m97qg65', 'no_lang_code', 1, 'https://ror.org/05m97qg65 Analog Photonics (United States)'),
(70928, 'https://ror.org/03rzjkf65', 'no_lang_code', 1, 'https://ror.org/03rzjkf65 Apptronik (United States)'),
(70929, 'https://ror.org/004bdfx91', 'no_lang_code', 1, 'https://ror.org/004bdfx91 American Engineering Group (United States)'),
(70930, 'https://ror.org/058bjkh55', 'no_lang_code', 1, 'https://ror.org/058bjkh55 Analysis, Integration & Design (United States)'),
(70931, 'https://ror.org/03ftfv496', 'no_lang_code', 1, 'https://ror.org/03ftfv496 Applied Decision Science (United States)'),
(70932, 'https://ror.org/057rf8v56', 'no_lang_code', 1, 'https://ror.org/057rf8v56 American Maglev Technology (United States)'),
(70933, 'https://ror.org/02xkae269', 'no_lang_code', 1, 'https://ror.org/02xkae269 AptaMatrix (United States)'),
(70934, 'https://ror.org/02gqfbn37', 'no_lang_code', 1, 'https://ror.org/02gqfbn37 Analytic Measures (United States)'),
(70935, 'https://ror.org/0439dh211', 'no_lang_code', 1, 'https://ror.org/0439dh211 Applied Design Labs (United States)'),
(70936, 'https://ror.org/002v8sr80', 'no_lang_code', 1, 'https://ror.org/002v8sr80 Aptek (United States)'),
(70937, 'https://ror.org/02pheq715', 'no_lang_code', 1, 'https://ror.org/02pheq715 Applied Engineering Management (United States)'),
(70938, 'https://ror.org/03953th04', 'no_lang_code', 1, 'https://ror.org/03953th04 American Metal Processing (United States)'),
(70939, 'https://ror.org/058ej4w72', 'no_lang_code', 1, 'https://ror.org/058ej4w72 Aptinyx (United States)'),
(70940, 'https://ror.org/02c8fyq88', 'no_lang_code', 1, 'https://ror.org/02c8fyq88 Antagen Pharmaceuticals (United States)'),
(70941, 'https://ror.org/05mbp3c63', 'no_lang_code', 1, 'https://ror.org/05mbp3c63 AnatomyWorks (United States)'),
(70942, 'https://ror.org/024h4bk68', 'no_lang_code', 1, 'https://ror.org/024h4bk68 American Xtal Technology (United States)'),
(70943, 'https://ror.org/04s8wpa22', 'no_lang_code', 1, 'https://ror.org/04s8wpa22 Aqua Resources (United States)'),
(70944, 'https://ror.org/01a5k3514', 'no_lang_code', 1, 'https://ror.org/01a5k3514 Anchor Technology (United States)'),
(70945, 'https://ror.org/029jmc311', 'no_lang_code', 1, 'https://ror.org/029jmc311 Amjet Turbine System (United States)'),
(70946, 'https://ror.org/04gv3sq83', 'no_lang_code', 1, 'https://ror.org/04gv3sq83 AngelMed (United States)'),
(70947, 'https://ror.org/00g65m314', 'no_lang_code', 1, 'https://ror.org/00g65m314 Applied Optronics (United States)'),
(70948, 'https://ror.org/04aca8627', 'no_lang_code', 1, 'https://ror.org/04aca8627 ATC Materials (United States)'),
(70949, 'https://ror.org/03zknp308', 'no_lang_code', 1, 'https://ror.org/03zknp308 Angel Secure Networks (United States)'),
(70950, 'https://ror.org/03d17d270', 'en', 1, 'https://ror.org/03d17d270 University of Washington Applied Physics Laboratory'),
(70951, 'https://ror.org/018smbg70', 'no_lang_code', 1, 'https://ror.org/018smbg70 Angstrom Designs (United States)'),
(70952, 'https://ror.org/02vhbqj87', 'no_lang_code', 1, 'https://ror.org/02vhbqj87 Arborsense (United States)'),
(70953, 'https://ror.org/01ffr8256', 'no_lang_code', 1, 'https://ror.org/01ffr8256 Annexon Biosciences (United States)'),
(70954, 'https://ror.org/05kq90346', 'no_lang_code', 1, 'https://ror.org/05kq90346 Oberon (United States)'),
(70955, 'https://ror.org/03atnhf44', 'no_lang_code', 1, 'https://ror.org/03atnhf44 Archimage (United States)'),
(70956, 'https://ror.org/00ze9yt51', 'no_lang_code', 1, 'https://ror.org/00ze9yt51 SP Industries (United States)'),
(70957, 'https://ror.org/04m2vv179', 'no_lang_code', 1, 'https://ror.org/04m2vv179 Arcos (United States)'),
(70958, 'https://ror.org/00jpxw560', 'no_lang_code', 1, 'https://ror.org/00jpxw560 Antheia (United States)'),
(70959, 'https://ror.org/02qjz4v31', 'no_lang_code', 1, 'https://ror.org/02qjz4v31 Arctan (United States)'),
(70960, 'https://ror.org/04drzaz56', 'no_lang_code', 1, 'https://ror.org/04drzaz56 Indivior (United States)'),
(70961, 'https://ror.org/02n82df02', 'no_lang_code', 1, 'https://ror.org/02n82df02 Argil (United States)'),
(70962, 'https://ror.org/035drqx74', 'no_lang_code', 1, 'https://ror.org/035drqx74 Argonide (United States)'),
(70963, 'https://ror.org/02n0t1662', 'no_lang_code', 1, 'https://ror.org/02n0t1662 Airborne Innovations (United States)'),
(70964, 'https://ror.org/042ac6m83', 'no_lang_code', 1, 'https://ror.org/042ac6m83 Ascent Solar (United States)'),
(70965, 'https://ror.org/057y00943', 'no_lang_code', 1, 'https://ror.org/057y00943 Argos Intelligence (United States)'),
(70966, 'https://ror.org/02p7tyt03', 'no_lang_code', 1, 'https://ror.org/02p7tyt03 SenSanna (United States)'),
(70967, 'https://ror.org/0269x8842', 'no_lang_code', 1, 'https://ror.org/0269x8842 AsclepiX Therapeutics (United States)'),
(70968, 'https://ror.org/045fe0126', 'no_lang_code', 1, 'https://ror.org/045fe0126 Aries Design Automation (United States)'),
(70969, 'https://ror.org/0397m3490', 'no_lang_code', 1, 'https://ror.org/0397m3490 Ash Access Technology (United States)'),
(70970, 'https://ror.org/014a3e682', 'no_lang_code', 1, 'https://ror.org/014a3e682 Arima Genomics (United States)'),
(70971, 'https://ror.org/02ztp3208', 'no_lang_code', 1, 'https://ror.org/02ztp3208 Ashton Security Laboratories (United States)'),
(70972, 'https://ror.org/02fgmdx09', 'no_lang_code', 1, 'https://ror.org/02fgmdx09 ACF-Metals (United States)'),
(70973, 'https://ror.org/0045nra89', 'no_lang_code', 1, 'https://ror.org/0045nra89 Arkham Technology (United States)'),
(70974, 'https://ror.org/04t5dkk11', 'no_lang_code', 1, 'https://ror.org/04t5dkk11 Rhinomed (United States)'),
(70975, 'https://ror.org/02hd3s336', 'no_lang_code', 1, 'https://ror.org/02hd3s336 AuSIM (United States)'),
(70976, 'https://ror.org/03dbje387', 'no_lang_code', 1, 'https://ror.org/03dbje387 Austral Engineering and Software (United States)'),
(70977, 'https://ror.org/001a3sv78', 'no_lang_code', 1, 'https://ror.org/001a3sv78 Cognitopia (United States)'),
(70978, 'https://ror.org/00ttwjh54', 'de', 1, 'https://ror.org/00ttwjh54 Georesearch Forschungsgesellschaft'),
(70979, 'https://ror.org/00dy9nm84', 'no_lang_code', 1, 'https://ror.org/00dy9nm84 Automated Precision (United States)'),
(70980, 'https://ror.org/00vk4n496', 'no_lang_code', 1, 'https://ror.org/00vk4n496 Assuage Pharmaceuticals (United States)'),
(70981, 'https://ror.org/03yavnj74', 'no_lang_code', 1, 'https://ror.org/03yavnj74 Advanced Space Technology Research (United States)'),
(70982, 'https://ror.org/01bq72s38', 'no_lang_code', 1, 'https://ror.org/01bq72s38 Astrileux (United States)'),
(70983, 'https://ror.org/052kgwk49', 'no_lang_code', 1, 'https://ror.org/052kgwk49 NETGEAR (United States)'),
(70984, 'https://ror.org/01epkyf81', 'no_lang_code', 1, 'https://ror.org/01epkyf81 Astrox (United States)'),
(70985, 'https://ror.org/03psr8197', 'no_lang_code', 1, 'https://ror.org/03psr8197 AsystBio (United States)'),
(70986, 'https://ror.org/0411mdb02', 'no_lang_code', 1, 'https://ror.org/0411mdb02 AVEKA (United States)'),
(70987, 'https://ror.org/02hqgbq45', 'no_lang_code', 1, 'https://ror.org/02hqgbq45 Unchained Labs (United States)'),
(70988, 'https://ror.org/031w8tq77', 'no_lang_code', 1, 'https://ror.org/031w8tq77 Atrex Energy (United States)'),
(70989, 'https://ror.org/00w7fsy96', 'no_lang_code', 1, 'https://ror.org/00w7fsy96 AVT Simulation (United States)'),
(70990, 'https://ror.org/01qgv9s91', 'no_lang_code', 1, 'https://ror.org/01qgv9s91 ATSP Innovations (United States)'),
(70991, 'https://ror.org/03m92j615', 'no_lang_code', 1, 'https://ror.org/03m92j615 Axiom (United States)'),
(70992, 'https://ror.org/027esmb72', 'no_lang_code', 1, 'https://ror.org/027esmb72 Attainment (United States)'),
(70993, 'https://ror.org/01wtyr048', 'no_lang_code', 1, 'https://ror.org/01wtyr048 Auger Communications (United States)'),
(70994, 'https://ror.org/02mpfyr18', 'no_lang_code', 1, 'https://ror.org/02mpfyr18 AxoSim (United States)'),
(70995, 'https://ror.org/0358rk857', 'no_lang_code', 1, 'https://ror.org/0358rk857 Hexagon (United States)'),
(70996, 'https://ror.org/03m252h72', 'no_lang_code', 1, 'https://ror.org/03m252h72 Bashpole Software (United States)'),
(70997, 'https://ror.org/01b0x7m05', 'no_lang_code', 1, 'https://ror.org/01b0x7m05 BST Systems (United States)'),
(70998, 'https://ror.org/05ykna326', 'no_lang_code', 1, 'https://ror.org/05ykna326 BatAndCat Sound Labs (United States)'),
(70999, 'https://ror.org/02wgxhz61', 'no_lang_code', 1, 'https://ror.org/02wgxhz61 Arradiance (United States)'),
(71000, 'https://ror.org/0009dkt68', 'no_lang_code', 1, 'https://ror.org/0009dkt68 Arrhythmotech (United States)'),
(71001, 'https://ror.org/0568zd681', 'no_lang_code', 1, 'https://ror.org/0568zd681 Backyard Brains (United States)'),
(71002, 'https://ror.org/01v4jae87', 'no_lang_code', 1, 'https://ror.org/01v4jae87 BTS Software Solutions (United States)'),
(71003, 'https://ror.org/02411h917', 'no_lang_code', 1, 'https://ror.org/02411h917 Bauer Associates (United States)'),
(71004, 'https://ror.org/05edrpk50', 'no_lang_code', 1, 'https://ror.org/05edrpk50 BCO (United States)'),
(71005, 'https://ror.org/0285kfv02', 'no_lang_code', 1, 'https://ror.org/0285kfv02 Biodesigns (United States)'),
(71006, 'https://ror.org/045x3e738', 'no_lang_code', 1, 'https://ror.org/045x3e738 BioFactura (United States)'),
(71007, 'https://ror.org/050b4xy13', 'no_lang_code', 1, 'https://ror.org/050b4xy13 BioFluidica (United States)'),
(71008, 'https://ror.org/05k78rz60', 'no_lang_code', 1, 'https://ror.org/05k78rz60 BioHybrid Solutions (United States)'),
(71009, 'https://ror.org/03xh8zm60', 'no_lang_code', 1, 'https://ror.org/03xh8zm60 Bakhtar Research and Engineering (United States)'),
(71010, 'https://ror.org/03ktp1v56', 'no_lang_code', 1, 'https://ror.org/03ktp1v56 NuSep (United States)'),
(71011, 'https://ror.org/05a5vr330', 'no_lang_code', 1, 'https://ror.org/05a5vr330 Precipio (United States)'),
(71012, 'https://ror.org/02677zc17', 'no_lang_code', 1, 'https://ror.org/02677zc17 Balcones Technologies (United States)'),
(71013, 'https://ror.org/00xsqes49', 'no_lang_code', 1, 'https://ror.org/00xsqes49 BioInvenu (United States)'),
(71014, 'https://ror.org/000rmdf62', 'no_lang_code', 1, 'https://ror.org/000rmdf62 BioLite (United States)'),
(71015, 'https://ror.org/001engn06', 'no_lang_code', 1, 'https://ror.org/001engn06 BRS Aerospace (United States)'),
(71016, 'https://ror.org/011bspp78', 'no_lang_code', 1, 'https://ror.org/011bspp78 Behavioral Pharma (United States)'),
(71017, 'https://ror.org/020yyec49', 'no_lang_code', 1, 'https://ror.org/020yyec49 Bally Ribbon Mills (United States)'),
(71018, 'https://ror.org/03nqaj348', 'no_lang_code', 1, 'https://ror.org/03nqaj348 Bell Biosystems (United States)'),
(71019, 'https://ror.org/00v2nch62', 'no_lang_code', 1, 'https://ror.org/00v2nch62 Barnstorm Research (United States)'),
(71020, 'https://ror.org/01j4y5573', 'no_lang_code', 1, 'https://ror.org/01j4y5573 Biomarker Profiles (United States)'),
(71021, 'https://ror.org/022pve491', 'no_lang_code', 1, 'https://ror.org/022pve491 Aura Technologies (United States)'),
(71022, 'https://ror.org/019jswg45', 'no_lang_code', 1, 'https://ror.org/019jswg45 Berkeley Air Monitoring Group (United States)'),
(71023, 'https://ror.org/04rg4ek57', 'no_lang_code', 1, 'https://ror.org/04rg4ek57 Materion (United States)'),
(71024, 'https://ror.org/0425hwa25', 'no_lang_code', 1, 'https://ror.org/0425hwa25 Biomedical Acoustics (United States)'),
(71025, 'https://ror.org/02a0gmf29', 'en', 1, 'https://ror.org/02a0gmf29 Biomedical Research Institute of Southern California'),
(71026, 'https://ror.org/03aw8az69', 'no_lang_code', 1, 'https://ror.org/03aw8az69 Biomedical Research Laboratories (United States)'),
(71027, 'https://ror.org/05pt1n025', 'no_lang_code', 1, 'https://ror.org/05pt1n025 Biosensing Instrument (United States)'),
(71028, 'https://ror.org/055dwzk58', 'no_lang_code', 1, 'https://ror.org/055dwzk58 Topricin (United States)'),
(71029, 'https://ror.org/0437mk135', 'no_lang_code', 1, 'https://ror.org/0437mk135 BioMimetic Systems (United States)'),
(71030, 'https://ror.org/03gs9sh82', 'no_lang_code', 1, 'https://ror.org/03gs9sh82 BioVentures (United States)'),
(71031, 'https://ror.org/034k42q64', 'no_lang_code', 1, 'https://ror.org/034k42q64 Beyond Photonics (United States)'),
(71032, 'https://ror.org/02act3e13', 'no_lang_code', 1, 'https://ror.org/02act3e13 BGI (United States)'),
(71033, 'https://ror.org/00xg85119', 'no_lang_code', 1, 'https://ror.org/00xg85119 Bite Technologies (United States)'),
(71034, 'https://ror.org/05qt0kq98', 'no_lang_code', 1, 'https://ror.org/05qt0kq98 BH Sensors (United States)'),
(71035, 'https://ror.org/05649qt81', 'no_lang_code', 1, 'https://ror.org/05649qt81 BiVACOR (United States)'),
(71036, 'https://ror.org/00235xz29', 'no_lang_code', 1, 'https://ror.org/00235xz29 BKF Systems (United States)'),
(71037, 'https://ror.org/022rh5p10', 'no_lang_code', 1, 'https://ror.org/022rh5p10 Black Swift Technologies (United States)'),
(71038, 'https://ror.org/0163j0p86', 'no_lang_code', 1, 'https://ror.org/0163j0p86 BlackBox Biometrics (United States)'),
(71039, 'https://ror.org/00sp0xc53', 'no_lang_code', 1, 'https://ror.org/00sp0xc53 Blackfynn (United States)'),
(71040, 'https://ror.org/00s78tb81', 'no_lang_code', 1, 'https://ror.org/00s78tb81 Blaze Bioscience (United States)'),
(71041, 'https://ror.org/03h8nf250', 'no_lang_code', 1, 'https://ror.org/03h8nf250 Binergy Scientific (United States)'),
(71042, 'https://ror.org/01hg9sk45', 'no_lang_code', 1, 'https://ror.org/01hg9sk45 BSC Associates (United States)'),
(71043, 'https://ror.org/00sj73q02', 'no_lang_code', 1, 'https://ror.org/00sj73q02 CoorsTek (United States)'),
(71044, 'https://ror.org/02ehf4193', 'no_lang_code', 1, 'https://ror.org/02ehf4193 Block Engineering (United States)'),
(71045, 'https://ror.org/00dnwkf25', 'no_lang_code', 1, 'https://ror.org/00dnwkf25 Blue Line Engineering (United States)'),
(71046, 'https://ror.org/02wmgyv80', 'no_lang_code', 1, 'https://ror.org/02wmgyv80 Brain Wellness and Biofeedback Center (United States)'),
(71047, 'https://ror.org/005sn8a68', 'no_lang_code', 1, 'https://ror.org/005sn8a68 Blue Marble Health (United States)'),
(71048, 'https://ror.org/000a82508', 'no_lang_code', 1, 'https://ror.org/000a82508 Blue Therapeutics (United States)'),
(71049, 'https://ror.org/04q2b1z76', 'no_lang_code', 1, 'https://ror.org/04q2b1z76 Brainquake (United States)'),
(71050, 'https://ror.org/01br0tv80', 'no_lang_code', 1, 'https://ror.org/01br0tv80 Brains4Drones (United States)'),
(71051, 'https://ror.org/054pnzp38', 'no_lang_code', 1, 'https://ror.org/054pnzp38 BMSEED (United States)'),
(71052, 'https://ror.org/054dqap80', 'no_lang_code', 1, 'https://ror.org/054dqap80 Brainxell (United States)'),
(71053, 'https://ror.org/05xr63b94', 'no_lang_code', 1, 'https://ror.org/05xr63b94 Cell Biologics (United States)'),
(71054, 'https://ror.org/01cxdpf04', 'no_lang_code', 1, 'https://ror.org/01cxdpf04 Cambridge Electronics (United States)'),
(71055, 'https://ror.org/01cbfpq42', 'no_lang_code', 1, 'https://ror.org/01cbfpq42 Braxton (United States)'),
(71056, 'https://ror.org/03fnt7n10', 'no_lang_code', 1, 'https://ror.org/03fnt7n10 BrightSpec'),
(71057, 'https://ror.org/04hqqb835', 'no_lang_code', 1, 'https://ror.org/04hqqb835 Camras Vision (United States)'),
(71058, 'https://ror.org/01c366927', 'no_lang_code', 1, 'https://ror.org/01c366927 BoroPharm (United States)'),
(71059, 'https://ror.org/04t9edw32', 'no_lang_code', 1, 'https://ror.org/04t9edw32 Camx Power (United States)'),
(71060, 'https://ror.org/04wfs4b35', 'no_lang_code', 1, 'https://ror.org/04wfs4b35 Brite Bio (United States)'),
(71061, 'https://ror.org/00bshqd32', 'no_lang_code', 1, 'https://ror.org/00bshqd32 Briteseed (United States)'),
(71062, 'https://ror.org/03b51p242', 'no_lang_code', 1, 'https://ror.org/03b51p242 Canget BioTekpharma (United States)'),
(71063, 'https://ror.org/04wfdnt11', 'no_lang_code', 1, 'https://ror.org/04wfdnt11 Brooks Rand Instruments (United States)'),
(71064, 'https://ror.org/04q17db63', 'no_lang_code', 1, 'https://ror.org/04q17db63 Brown Computer Company (United States)'),
(71065, 'https://ror.org/04r67z754', 'no_lang_code', 1, 'https://ror.org/04r67z754 Soleno Therapeutics (United States)'),
(71066, 'https://ror.org/05ej9rw09', 'no_lang_code', 1, 'https://ror.org/05ej9rw09 Capture Pharmaceuticals (United States)'),
(71067, 'https://ror.org/04tvaxw19', 'no_lang_code', 1, 'https://ror.org/04tvaxw19 DNA Diagnostics Center (United States)'),
(71068, 'https://ror.org/0488ezv32', 'no_lang_code', 1, 'https://ror.org/0488ezv32 Boston Dynamics (United States)'),
(71069, 'https://ror.org/03n8g5s30', 'no_lang_code', 1, 'https://ror.org/03n8g5s30 Carbon Carbon Advanced Technologies (United States)'),
(71070, 'https://ror.org/0113crs96', 'no_lang_code', 1, 'https://ror.org/0113crs96 BryCoat (United States)'),
(71071, 'https://ror.org/04vmcpd16', 'no_lang_code', 1, 'https://ror.org/04vmcpd16 Cell IDx (United States)'),
(71072, 'https://ror.org/01xy18563', 'no_lang_code', 1, 'https://ror.org/01xy18563 Cardax (United States)'),
(71073, 'https://ror.org/03yzz6t36', 'no_lang_code', 1, 'https://ror.org/03yzz6t36 Buildlab (United States)'),
(71074, 'https://ror.org/01de12660', 'no_lang_code', 1, 'https://ror.org/01de12660 Cell Podium (United States)'),
(71075, 'https://ror.org/03ns2gd62', 'no_lang_code', 1, 'https://ror.org/03ns2gd62 C-2 Innovations (United States)'),
(71076, 'https://ror.org/009k4kq70', 'no_lang_code', 1, 'https://ror.org/009k4kq70 Cardialen (United States)'),
(71077, 'https://ror.org/00kdmt348', 'no_lang_code', 1, 'https://ror.org/00kdmt348 Cellar Door Labs (United States)'),
(71078, 'https://ror.org/03z6qqm96', 'no_lang_code', 1, 'https://ror.org/03z6qqm96 Cardinal Engineering (United States)'),
(71079, 'https://ror.org/00yd8np83', 'en', 1, 'https://ror.org/00yd8np83 National University System'),
(71080, 'https://ror.org/00panym11', 'no_lang_code', 1, 'https://ror.org/00panym11 Cairn Biosciences (United States)'),
(71081, 'https://ror.org/02dswfg52', 'no_lang_code', 1, 'https://ror.org/02dswfg52 Cellf BIO (United States)'),
(71082, 'https://ror.org/02yw4ce16', 'no_lang_code', 1, 'https://ror.org/02yw4ce16 Surgical Energetics (United States)'),
(71083, 'https://ror.org/03p7n1480', 'no_lang_code', 1, 'https://ror.org/03p7n1480 Cardiosolv Ablation Technologies (United States)'),
(71084, 'https://ror.org/01mnn1775', 'no_lang_code', 1, 'https://ror.org/01mnn1775 Caktus Group (United States)'),
(71085, 'https://ror.org/03twde329', 'no_lang_code', 1, 'https://ror.org/03twde329 CellOptic (United States)'),
(71086, 'https://ror.org/00795nv73', 'no_lang_code', 1, 'https://ror.org/00795nv73 Care Progress (United States)'),
(71087, 'https://ror.org/021k8e418', 'no_lang_code', 1, 'https://ror.org/021k8e418 Calibrant Digital (United States)'),
(71088, 'https://ror.org/03t3fww40', 'no_lang_code', 1, 'https://ror.org/03t3fww40 CellSight Technologies (United States)'),
(71089, 'https://ror.org/042j4gm75', 'en', 1, 'https://ror.org/042j4gm75 Northwest Evaluation Association'),
(71090, 'https://ror.org/00ysde465', 'no_lang_code', 1, 'https://ror.org/00ysde465 Cenna Biosciences (United States)'),
(71091, 'https://ror.org/02pvvhr41', 'no_lang_code', 1, 'https://ror.org/02pvvhr41 Carrera Bioscience (United States)'),
(71092, 'https://ror.org/038zk4221', 'no_lang_code', 1, 'https://ror.org/038zk4221 Chip Scan (United States)'),
(71093, 'https://ror.org/017wf3d91', 'no_lang_code', 1, 'https://ror.org/017wf3d91 Case Engineering (United States)'),
(71094, 'https://ror.org/03d6kfv69', 'no_lang_code', 1, 'https://ror.org/03d6kfv69 Centripetal (United States)'),
(71095, 'https://ror.org/031fg5f22', 'no_lang_code', 1, 'https://ror.org/031fg5f22 Cofactor Genomics (United States)'),
(71096, 'https://ror.org/02td76a59', 'no_lang_code', 1, 'https://ror.org/02td76a59 Cassia (United States)'),
(71097, 'https://ror.org/028qge085', 'no_lang_code', 1, 'https://ror.org/028qge085 Century (United States)'),
(71098, 'https://ror.org/05vhsk894', 'no_lang_code', 1, 'https://ror.org/05vhsk894 ChromaTan'),
(71099, 'https://ror.org/00axw4v72', 'no_lang_code', 1, 'https://ror.org/00axw4v72 Cerahelix (United States)'),
(71100, 'https://ror.org/04pvsp066', 'no_lang_code', 1, 'https://ror.org/04pvsp066 Chromation (United States)'),
(71101, 'https://ror.org/03sbkjp44', 'no_lang_code', 1, 'https://ror.org/03sbkjp44 Cognionics (United States)'),
(71102, 'https://ror.org/021trq250', 'no_lang_code', 1, 'https://ror.org/021trq250 Ceebus Technologies (United States)'),
(71103, 'https://ror.org/043m46d79', 'no_lang_code', 1, 'https://ror.org/043m46d79 Cognitive Electronics (United States)'),
(71104, 'https://ror.org/02ss0eq82', 'en', 1, 'https://ror.org/02ss0eq82 Cognitive Engineering Research Institute'),
(71105, 'https://ror.org/005q59x71', 'no_lang_code', 1, 'https://ror.org/005q59x71 Ebb Therapeutics (United States)'),
(71106, 'https://ror.org/050tnyq31', 'no_lang_code', 1, 'https://ror.org/050tnyq31 Certerra (United States)'),
(71107, 'https://ror.org/05tay5389', 'no_lang_code', 1, 'https://ror.org/05tay5389 Cirrus Aircraft (United States)'),
(71108, 'https://ror.org/05q7g3j68', 'no_lang_code', 1, 'https://ror.org/05q7g3j68 CohesionForce (United States)'),
(71109, 'https://ror.org/037g37s09', 'no_lang_code', 1, 'https://ror.org/037g37s09 Concentris Systems (United States)'),
(71110, 'https://ror.org/009vrft62', 'no_lang_code', 1, 'https://ror.org/009vrft62 Cole Engineering Services (United States)'),
(71111, 'https://ror.org/02fw2tr12', 'no_lang_code', 1, 'https://ror.org/02fw2tr12 Concepts to Systems (United States)'),
(71112, 'https://ror.org/02h8yps76', 'no_lang_code', 1, 'https://ror.org/02h8yps76 Chadwick Optical (United States)'),
(71113, 'https://ror.org/03fgzbf19', 'no_lang_code', 1, 'https://ror.org/03fgzbf19 Concordance Health Solutions (United States)'),
(71114, 'https://ror.org/04gbdgm24', 'no_lang_code', 1, 'https://ror.org/04gbdgm24 Champions Oncology (United States)'),
(71115, 'https://ror.org/02nq2ye56', 'no_lang_code', 1, 'https://ror.org/02nq2ye56 Colorado Power Electronics (United States)'),
(71116, 'https://ror.org/00a07ag07', 'no_lang_code', 1, 'https://ror.org/00a07ag07 Conjugon (United States)'),
(71117, 'https://ror.org/00g18j041', 'no_lang_code', 1, 'https://ror.org/00g18j041 CM-Tec (United States)'),
(71118, 'https://ror.org/03nt6qk39', 'no_lang_code', 1, 'https://ror.org/03nt6qk39 CheckUp & Choices (United States)'),
(71119, 'https://ror.org/01rwgzt97', 'no_lang_code', 1, 'https://ror.org/01rwgzt97 CMA Technologies (United States)'),
(71120, 'https://ror.org/01h9cfp35', 'no_lang_code', 1, 'https://ror.org/01h9cfp35 Connecticut Analytical Corporation (United States)'),
(71121, 'https://ror.org/00q89h712', 'no_lang_code', 1, 'https://ror.org/00q89h712 Chem-Master International (United States)'),
(71122, 'https://ror.org/03v50hq42', 'no_lang_code', 1, 'https://ror.org/03v50hq42 Coapt (United States)'),
(71123, 'https://ror.org/04jvezd47', 'no_lang_code', 1, 'https://ror.org/04jvezd47 Conrad Technologies (United States)'),
(71124, 'https://ror.org/00jgjke27', 'no_lang_code', 1, 'https://ror.org/00jgjke27 Coating Systems Laboratories (United States)'),
(71125, 'https://ror.org/057e5gj07', 'no_lang_code', 1, 'https://ror.org/057e5gj07 Cobra Design & Engineering (United States)'),
(71126, 'https://ror.org/007z06v19', 'en', 1, 'https://ror.org/007z06v19 Global Impact'),
(71127, 'https://ror.org/0394gje76', 'no_lang_code', 1, 'https://ror.org/0394gje76 Command and Control Technologies Corporation (United States)'),
(71128, 'https://ror.org/02h6a5d26', 'no_lang_code', 1, 'https://ror.org/02h6a5d26 Codar Ocean Sensors (United States)'),
(71129, 'https://ror.org/01whfyx68', 'no_lang_code', 1, 'https://ror.org/01whfyx68 Codex Biosolutions (United States)'),
(71130, 'https://ror.org/030f1e584', 'no_lang_code', 1, 'https://ror.org/030f1e584 Cortrol Services (United States)'),
(71131, 'https://ror.org/051n93m20', 'no_lang_code', 1, 'https://ror.org/051n93m20 Genpact (United States)'),
(71132, 'https://ror.org/03z78jt35', 'no_lang_code', 1, 'https://ror.org/03z78jt35 Custom Scientific (United States)'),
(71133, 'https://ror.org/02g8fqy85', 'no_lang_code', 1, 'https://ror.org/02g8fqy85 CoolCad Electronics (United States)'),
(71134, 'https://ror.org/039psj505', 'no_lang_code', 1, 'https://ror.org/039psj505 Lightening Energy (United States)'),
(71135, 'https://ror.org/05fxdg983', 'no_lang_code', 1, 'https://ror.org/05fxdg983 Coramed (United States)'),
(71136, 'https://ror.org/01j0mz257', 'no_lang_code', 1, 'https://ror.org/01j0mz257 CyberOptics (United States)'),
(71137, 'https://ror.org/04zb5v345', 'no_lang_code', 1, 'https://ror.org/04zb5v345 COSM Advanced Manufacturing Systems (United States)'),
(71138, 'https://ror.org/057mfeh70', 'no_lang_code', 1, 'https://ror.org/057mfeh70 Coreform (United States)'),
(71139, 'https://ror.org/00tq4sv71', 'no_lang_code', 1, 'https://ror.org/00tq4sv71 Cynvec (United States)'),
(71140, 'https://ror.org/034n9ps55', 'no_lang_code', 1, 'https://ror.org/034n9ps55 Intelli-Firewall (United States)'),
(71141, 'https://ror.org/03nj9bh85', 'no_lang_code', 1, 'https://ror.org/03nj9bh85 Corgenix (United States)'),
(71142, 'https://ror.org/04b6bgg83', 'no_lang_code', 1, 'https://ror.org/04b6bgg83 Coridea (United States)'),
(71143, 'https://ror.org/042228s94', 'no_lang_code', 1, 'https://ror.org/042228s94 Cyteir Therapeutics (United States)'),
(71144, 'https://ror.org/02xy8q226', 'no_lang_code', 1, 'https://ror.org/02xy8q226 Composites Automation (United States)'),
(71145, 'https://ror.org/02raw1z52', 'no_lang_code', 1, 'https://ror.org/02raw1z52 Countervail Corporation (United States)'),
(71146, 'https://ror.org/03tdwc870', 'no_lang_code', 1, 'https://ror.org/03tdwc870 Compositex (United States)'),
(71147, 'https://ror.org/01974bd32', 'no_lang_code', 1, 'https://ror.org/01974bd32 CytoInformatics (United States)'),
(71148, 'https://ror.org/01ywq4g22', 'no_lang_code', 1, 'https://ror.org/01ywq4g22 CytoLumina Technologies (United States)'),
(71149, 'https://ror.org/042wbt424', 'no_lang_code', 1, 'https://ror.org/042wbt424 Cova (United States)'),
(71150, 'https://ror.org/02q284937', 'no_lang_code', 1, 'https://ror.org/02q284937 Corrdesa (United States)'),
(71151, 'https://ror.org/03wgnxg62', 'no_lang_code', 1, 'https://ror.org/03wgnxg62 Cytonics (United States)'),
(71152, 'https://ror.org/05bte7q71', 'no_lang_code', 1, 'https://ror.org/05bte7q71 Cytoptics (United States)'),
(71153, 'https://ror.org/00g5g8212', 'no_lang_code', 1, 'https://ror.org/00g5g8212 Ipsos (United States)'),
(71154, 'https://ror.org/034egr366', 'no_lang_code', 1, 'https://ror.org/034egr366 Cortest (United States)'),
(71155, 'https://ror.org/01504hb29', 'no_lang_code', 1, 'https://ror.org/01504hb29 Cytovale (United States)'),
(71156, 'https://ror.org/0230prd66', 'no_lang_code', 1, 'https://ror.org/0230prd66 Cox & Company (United States)'),
(71157, 'https://ror.org/05b1rj382', 'no_lang_code', 1, 'https://ror.org/05b1rj382 DHPC Technologies (United States)'),
(71158, 'https://ror.org/020bgk265', 'no_lang_code', 1, 'https://ror.org/020bgk265 D-2 Incorporated (United States)'),
(71159, 'https://ror.org/05e9tm050', 'no_lang_code', 1, 'https://ror.org/05e9tm050 Detectogen (United States)'),
(71160, 'https://ror.org/037668223', 'no_lang_code', 1, 'https://ror.org/037668223 cPacket (United States)'),
(71161, 'https://ror.org/02jcjsk08', 'no_lang_code', 1, 'https://ror.org/02jcjsk08 DRG Undersea Consulting (United States)'),
(71162, 'https://ror.org/03j0tz946', 'no_lang_code', 1, 'https://ror.org/03j0tz946 Detector Technology (United States)'),
(71163, 'https://ror.org/03781qc53', 'no_lang_code', 1, 'https://ror.org/03781qc53 Frontier Energy (United States)'),
(71164, 'https://ror.org/02n7nje79', 'no_lang_code', 1, 'https://ror.org/02n7nje79 Creative Aero Engineering Solutions (United States)'),
(71165, 'https://ror.org/014p3wd44', 'no_lang_code', 1, 'https://ror.org/014p3wd44 Creative Light Source (United States)'),
(71166, 'https://ror.org/04c7tcz65', 'no_lang_code', 1, 'https://ror.org/04c7tcz65 DeviceFarm (United States)'),
(71167, 'https://ror.org/03hjaw451', 'no_lang_code', 1, 'https://ror.org/03hjaw451 Daico Industries (United States)'),
(71168, 'https://ror.org/02kxj7753', 'no_lang_code', 1, 'https://ror.org/02kxj7753 Creative MicroSystems (United States)'),
(71169, 'https://ror.org/01bby3105', 'no_lang_code', 1, 'https://ror.org/01bby3105 DexMat (United States)'),
(71170, 'https://ror.org/00e965d05', 'no_lang_code', 1, 'https://ror.org/00e965d05 Dfuzion (United States)'),
(71171, 'https://ror.org/04xpmqs18', 'no_lang_code', 1, 'https://ror.org/04xpmqs18 DayStar (United States)'),
(71172, 'https://ror.org/014gfpc04', 'no_lang_code', 1, 'https://ror.org/014gfpc04 DCN (United States)'),
(71173, 'https://ror.org/001qkb777', 'no_lang_code', 1, 'https://ror.org/001qkb777 Creative Technologies (United States)'),
(71174, 'https://ror.org/04137sz34', 'no_lang_code', 1, 'https://ror.org/04137sz34 Daktari Diagnostics (United States)'),
(71175, 'https://ror.org/05fh3jm54', 'no_lang_code', 1, 'https://ror.org/05fh3jm54 Dayton T. Brown (United States)'),
(71176, 'https://ror.org/02af40965', 'no_lang_code', 1, 'https://ror.org/02af40965 Crecare (United States)'),
(71177, 'https://ror.org/011akm672', 'no_lang_code', 1, 'https://ror.org/011akm672 dbS Productions (United States)'),
(71178, 'https://ror.org/00qbns296', 'no_lang_code', 1, 'https://ror.org/00qbns296 Crestone (United States)'),
(71179, 'https://ror.org/03x89f523', 'no_lang_code', 1, 'https://ror.org/03x89f523 Model Driven Solutions (United States)'),
(71180, 'https://ror.org/03ct9r646', 'no_lang_code', 1, 'https://ror.org/03ct9r646 DBV Technology (United States)'),
(71181, 'https://ror.org/00pj4py55', 'no_lang_code', 1, 'https://ror.org/00pj4py55 American Systems (United States)'),
(71182, 'https://ror.org/01jk98t54', 'no_lang_code', 1, 'https://ror.org/01jk98t54 DoseOptics (United States)'),
(71183, 'https://ror.org/01dy6j730', 'no_lang_code', 1, 'https://ror.org/01dy6j730 Diamir (United States)'),
(71184, 'https://ror.org/041pxa775', 'no_lang_code', 1, 'https://ror.org/041pxa775 Critical Innovations (United States)'),
(71185, 'https://ror.org/0132eaf86', 'no_lang_code', 1, 'https://ror.org/0132eaf86 CRO Laboratories (United States)'),
(71186, 'https://ror.org/01y9tmc90', 'no_lang_code', 1, 'https://ror.org/01y9tmc90 DecImmune Therapeutics (United States)'),
(71187, 'https://ror.org/048nm0n40', 'no_lang_code', 1, 'https://ror.org/048nm0n40 Dust Identity (United States)'),
(71188, 'https://ror.org/04r7jvc53', 'no_lang_code', 1, 'https://ror.org/04r7jvc53 Diapin Therapeutics (United States)'),
(71189, 'https://ror.org/049wrg704', 'no_lang_code', 1, 'https://ror.org/049wrg704 Dovetail Genomics (United States)'),
(71190, 'https://ror.org/03kg58a97', 'no_lang_code', 1, 'https://ror.org/03kg58a97 Diassess (United States)'),
(71191, 'https://ror.org/00vyhrf09', 'no_lang_code', 1, 'https://ror.org/00vyhrf09 DEI Holdings (United States)'),
(71192, 'https://ror.org/05pzhrr59', 'no_lang_code', 1, 'https://ror.org/05pzhrr59 Light Curable Coatings (United States)'),
(71193, 'https://ror.org/05kjqse22', 'no_lang_code', 1, 'https://ror.org/05kjqse22 Deep Ocean Engineering (United States)');
INSERT INTO `rors` VALUES
(71194, 'https://ror.org/02zhx9s71', 'no_lang_code', 1, 'https://ror.org/02zhx9s71 Coltene (United States)'),
(71195, 'https://ror.org/04jgxcn84', 'no_lang_code', 1, 'https://ror.org/04jgxcn84 C&R Technologies (United States)'),
(71196, 'https://ror.org/05b9e3t13', 'no_lang_code', 1, 'https://ror.org/05b9e3t13 dTEC Systems (United States)'),
(71197, 'https://ror.org/053z1j925', 'no_lang_code', 1, 'https://ror.org/053z1j925 Digital Science Technologies (United States)'),
(71198, 'https://ror.org/03p8mx045', 'no_lang_code', 1, 'https://ror.org/03p8mx045 Curl Bio (United States)'),
(71199, 'https://ror.org/01vj91x16', 'no_lang_code', 1, 'https://ror.org/01vj91x16 Defense Engineering Corporation (United States)'),
(71200, 'https://ror.org/04fr05765', 'no_lang_code', 1, 'https://ror.org/04fr05765 Discerning Technologies (United States)'),
(71201, 'https://ror.org/02e7g3z76', 'no_lang_code', 1, 'https://ror.org/02e7g3z76 Curoverse (United States)'),
(71202, 'https://ror.org/05mq2av33', 'no_lang_code', 1, 'https://ror.org/05mq2av33 Dura Biotech (United States)'),
(71203, 'https://ror.org/01nh1pn53', 'no_lang_code', 1, 'https://ror.org/01nh1pn53 StereoVision Imaging (United States)'),
(71204, 'https://ror.org/011swmr49', 'no_lang_code', 1, 'https://ror.org/011swmr49 Durbin Group (United States)'),
(71205, 'https://ror.org/00nn13598', 'no_lang_code', 1, 'https://ror.org/00nn13598 Edge One (United States)'),
(71206, 'https://ror.org/04pb43063', 'no_lang_code', 1, 'https://ror.org/04pb43063 DWA Aluminum Composites (United States)'),
(71207, 'https://ror.org/02t3fqk56', 'no_lang_code', 1, 'https://ror.org/02t3fqk56 Digital Wave (United States)'),
(71208, 'https://ror.org/04h1th525', 'no_lang_code', 1, 'https://ror.org/04h1th525 DigitalSpace (United States)'),
(71209, 'https://ror.org/035ayvm38', 'no_lang_code', 1, 'https://ror.org/035ayvm38 Delaware Diamond Knives (United States)'),
(71210, 'https://ror.org/04wzaab37', 'en', 1, 'https://ror.org/04wzaab37 Delima Associates'),
(71211, 'https://ror.org/05gn3js43', 'no_lang_code', 1, 'https://ror.org/05gn3js43 DxTerity (United States)'),
(71212, 'https://ror.org/05cpqm110', 'no_lang_code', 1, 'https://ror.org/05cpqm110 Direct Electron (United States)'),
(71213, 'https://ror.org/00x8y2776', 'no_lang_code', 1, 'https://ror.org/00x8y2776 Dynalene (United States)'),
(71214, 'https://ror.org/04a1qr465', 'no_lang_code', 1, 'https://ror.org/04a1qr465 Denovx (United States)'),
(71215, 'https://ror.org/01pme5r05', 'no_lang_code', 1, 'https://ror.org/01pme5r05 DiSTI (United States)'),
(71216, 'https://ror.org/03q5h1s54', 'no_lang_code', 1, 'https://ror.org/03q5h1s54 Eicosis (United States)'),
(71217, 'https://ror.org/05eh8wd69', 'no_lang_code', 1, 'https://ror.org/05eh8wd69 Dependable Computing (United States)'),
(71218, 'https://ror.org/003gh6294', 'no_lang_code', 1, 'https://ror.org/003gh6294 Ejenta (United States)'),
(71219, 'https://ror.org/00semp387', 'no_lang_code', 1, 'https://ror.org/00semp387 Murphy Oil Corporation (United States)'),
(71220, 'https://ror.org/02ce15590', 'no_lang_code', 1, 'https://ror.org/02ce15590 Mood Media (United States)'),
(71221, 'https://ror.org/00fc9de56', 'no_lang_code', 1, 'https://ror.org/00fc9de56 Dog Star Technologies (United States)'),
(71222, 'https://ror.org/02sgs5a38', 'no_lang_code', 1, 'https://ror.org/02sgs5a38 Elcon (United States)'),
(71223, 'https://ror.org/01tpz3h22', 'no_lang_code', 1, 'https://ror.org/01tpz3h22 Electric Funstuff (United States)'),
(71224, 'https://ror.org/01eb6s760', 'no_lang_code', 1, 'https://ror.org/01eb6s760 Electric Propulsion Laboratory (United States)'),
(71225, 'https://ror.org/03knmxa92', 'en', 1, 'https://ror.org/03knmxa92 Dynamic Object Language Labs'),
(71226, 'https://ror.org/01f6x5c85', 'no_lang_code', 1, 'https://ror.org/01f6x5c85 Dynamic Systems Integration (United States)'),
(71227, 'https://ror.org/025emxq18', 'no_lang_code', 1, 'https://ror.org/025emxq18 DZYNE Technologies (United States)'),
(71228, 'https://ror.org/046qtkm10', 'no_lang_code', 1, 'https://ror.org/046qtkm10 Electroformed Nickel (United States)'),
(71229, 'https://ror.org/01cs5d441', 'no_lang_code', 1, 'https://ror.org/01cs5d441 E-Line Media (United States)'),
(71230, 'https://ror.org/049g84z21', 'no_lang_code', 1, 'https://ror.org/049g84z21 Electroimpact (United States)'),
(71231, 'https://ror.org/04cm43729', 'no_lang_code', 1, 'https://ror.org/04cm43729 Electron Optica (United States)'),
(71232, 'https://ror.org/010depv31', 'no_lang_code', 1, 'https://ror.org/010depv31 inTACT (United States)'),
(71233, 'https://ror.org/04jw9yz80', 'no_lang_code', 1, 'https://ror.org/04jw9yz80 Elex Biotech (United States)'),
(71234, 'https://ror.org/01qxrj975', 'no_lang_code', 1, 'https://ror.org/01qxrj975 Ellison Laboratories (United States)'),
(71235, 'https://ror.org/0463agq55', 'no_lang_code', 1, 'https://ror.org/0463agq55 Brown and Caldwell (United States)'),
(71236, 'https://ror.org/05c35hf12', 'no_lang_code', 1, 'https://ror.org/05c35hf12 Elysium Therapeutics (United States)'),
(71237, 'https://ror.org/021rm5384', 'no_lang_code', 1, 'https://ror.org/021rm5384 eMagin (United States)'),
(71238, 'https://ror.org/017jrd082', 'no_lang_code', 1, 'https://ror.org/017jrd082 Eclipse Bioinnovations (United States)'),
(71239, 'https://ror.org/04742eh45', 'no_lang_code', 1, 'https://ror.org/04742eh45 Embedded Systems (United States)'),
(71240, 'https://ror.org/0095m0q98', 'no_lang_code', 1, 'https://ror.org/0095m0q98 Eddy (United States)'),
(71241, 'https://ror.org/03zrkam54', 'no_lang_code', 1, 'https://ror.org/03zrkam54 Edge Case Research (United States)'),
(71242, 'https://ror.org/05a9ar681', 'no_lang_code', 1, 'https://ror.org/05a9ar681 Descartes Labs (United States)'),
(71243, 'https://ror.org/03pmk4927', 'no_lang_code', 1, 'https://ror.org/03pmk4927 Emerald Sky Technologies'),
(71244, 'https://ror.org/022k78750', 'no_lang_code', 1, 'https://ror.org/022k78750 ECD for the Masses (United States)'),
(71245, 'https://ror.org/02kg10n19', 'no_lang_code', 1, 'https://ror.org/02kg10n19 Design Intelligence (United States)'),
(71246, 'https://ror.org/021c2nt68', 'no_lang_code', 1, 'https://ror.org/021c2nt68 Emmune (United States)'),
(71247, 'https://ror.org/02xfc1977', 'no_lang_code', 1, 'https://ror.org/02xfc1977 Enthought (United States)'),
(71248, 'https://ror.org/045te9j93', 'no_lang_code', 1, 'https://ror.org/045te9j93 Empirical Systems Aerospace (United States)'),
(71249, 'https://ror.org/02nqa6n73', 'no_lang_code', 1, 'https://ror.org/02nqa6n73 Eskra Technical Products (United States)'),
(71250, 'https://ror.org/03bvswz74', 'no_lang_code', 1, 'https://ror.org/03bvswz74 Telesis Corporation (United States)'),
(71251, 'https://ror.org/03525gg68', 'no_lang_code', 1, 'https://ror.org/03525gg68 Entropic Systems (United States)'),
(71252, 'https://ror.org/02qcr0t64', 'no_lang_code', 1, 'https://ror.org/02qcr0t64 Endomimetics (United States)'),
(71253, 'https://ror.org/032cpcp20', 'no_lang_code', 1, 'https://ror.org/032cpcp20 ETI Instrument Systems (United States)'),
(71254, 'https://ror.org/02cfsj843', 'no_lang_code', 1, 'https://ror.org/02cfsj843 Envention (United States)'),
(71255, 'https://ror.org/028n3wq88', 'no_lang_code', 1, 'https://ror.org/028n3wq88 EndoProtech (United States)'),
(71256, 'https://ror.org/00ad9p542', 'no_lang_code', 1, 'https://ror.org/00ad9p542 Ferric (United States)'),
(71257, 'https://ror.org/00tjrva09', 'no_lang_code', 1, 'https://ror.org/00tjrva09 Envirochem (United States)'),
(71258, 'https://ror.org/00q9x4d93', 'no_lang_code', 1, 'https://ror.org/00q9x4d93 Eureka Aerospace (United States)'),
(71259, 'https://ror.org/02bn6gq21', 'no_lang_code', 1, 'https://ror.org/02bn6gq21 FGH Biotech (United States)'),
(71260, 'https://ror.org/04ap5hz50', 'no_lang_code', 1, 'https://ror.org/04ap5hz50 VSE Corporation (United States)'),
(71261, 'https://ror.org/000ecmj40', 'no_lang_code', 1, 'https://ror.org/000ecmj40 Evorx (United States)'),
(71262, 'https://ror.org/01z8avt53', 'no_lang_code', 1, 'https://ror.org/01z8avt53 Fibralign (United States)'),
(71263, 'https://ror.org/0195q2562', 'no_lang_code', 1, 'https://ror.org/0195q2562 Eon Corporation (United States)'),
(71264, 'https://ror.org/01qsj4k11', 'no_lang_code', 1, 'https://ror.org/01qsj4k11 Energesis Pharmaceuticals (United States)'),
(71265, 'https://ror.org/00p3qg519', 'en', 1, 'https://ror.org/00p3qg519 Exact Sports'),
(71266, 'https://ror.org/020emvx88', 'no_lang_code', 1, 'https://ror.org/020emvx88 EP Analytics (United States)'),
(71267, 'https://ror.org/055g1b266', 'no_lang_code', 1, 'https://ror.org/055g1b266 Energy Concepts (United States)'),
(71268, 'https://ror.org/00z1z4s30', 'no_lang_code', 1, 'https://ror.org/00z1z4s30 EpiBone (United States)'),
(71269, 'https://ror.org/05va3v984', 'no_lang_code', 1, 'https://ror.org/05va3v984 Expedition Technology (United States)'),
(71270, 'https://ror.org/05w58gm09', 'no_lang_code', 1, 'https://ror.org/05w58gm09 Fifth Gait Technologies (United States)'),
(71271, 'https://ror.org/02cmcyy37', 'no_lang_code', 1, 'https://ror.org/02cmcyy37 Exos (United States)'),
(71272, 'https://ror.org/05023n062', 'no_lang_code', 1, 'https://ror.org/05023n062 Energy Quest Technologies (United States)'),
(71273, 'https://ror.org/018mc6y79', 'no_lang_code', 1, 'https://ror.org/018mc6y79 Fimbrion Therapeutics (United States)'),
(71274, 'https://ror.org/035tvak16', 'no_lang_code', 1, 'https://ror.org/035tvak16 Experiad (United States)'),
(71275, 'https://ror.org/00wybgv46', 'no_lang_code', 1, 'https://ror.org/00wybgv46 Enformia (United States)'),
(71276, 'https://ror.org/04cprvb13', 'no_lang_code', 1, 'https://ror.org/04cprvb13 Engin-Ic (United States)'),
(71277, 'https://ror.org/03b4e1389', 'no_lang_code', 1, 'https://ror.org/03b4e1389 Fiore Industries (United States)'),
(71278, 'https://ror.org/00vbd8v64', 'no_lang_code', 1, 'https://ror.org/00vbd8v64 Episensors (United States)'),
(71279, 'https://ror.org/0107ykj49', 'no_lang_code', 1, 'https://ror.org/0107ykj49 Extreme Diagnostics (United States)'),
(71280, 'https://ror.org/02yj18485', 'no_lang_code', 1, 'https://ror.org/02yj18485 Engineering Matters (United States)'),
(71281, 'https://ror.org/04v8wx508', 'no_lang_code', 1, 'https://ror.org/04v8wx508 Ezenia (United States)'),
(71282, 'https://ror.org/04h516318', 'no_lang_code', 1, 'https://ror.org/04h516318 Firestar Technologies (United States)'),
(71283, 'https://ror.org/04pp9zs91', 'no_lang_code', 1, 'https://ror.org/04pp9zs91 Engineering Science Analysis (United States)'),
(71284, 'https://ror.org/00qmr3w93', 'no_lang_code', 1, 'https://ror.org/00qmr3w93 Fabrico Technology (United States)'),
(71285, 'https://ror.org/04ydsm425', 'no_lang_code', 1, 'https://ror.org/04ydsm425 Enhanced Systems Consulting (United States)'),
(71286, 'https://ror.org/027218r60', 'no_lang_code', 1, 'https://ror.org/027218r60 CounterPath (United States)'),
(71287, 'https://ror.org/01vqq8440', 'no_lang_code', 1, 'https://ror.org/01vqq8440 ERA Software Systems (United States)'),
(71288, 'https://ror.org/029mydn95', 'no_lang_code', 1, 'https://ror.org/029mydn95 Fischer Imaging (United States)'),
(71289, 'https://ror.org/00xfbtw98', 'no_lang_code', 1, 'https://ror.org/00xfbtw98 EnSolve Biosystems (United States)'),
(71290, 'https://ror.org/0429eqk16', 'no_lang_code', 1, 'https://ror.org/0429eqk16 Colfax (United States)'),
(71291, 'https://ror.org/03tqm1w89', 'no_lang_code', 1, 'https://ror.org/03tqm1w89 Erallo Technologies (United States)'),
(71292, 'https://ror.org/00648sd60', 'no_lang_code', 1, 'https://ror.org/00648sd60 Entanglement Technologies (United States)'),
(71293, 'https://ror.org/05hfzg379', 'no_lang_code', 1, 'https://ror.org/05hfzg379 Entech (United States)'),
(71294, 'https://ror.org/00v1wvp38', 'no_lang_code', 1, 'https://ror.org/00v1wvp38 Flashback Technologies (United States)'),
(71295, 'https://ror.org/04esx4309', 'no_lang_code', 1, 'https://ror.org/04esx4309 Fairmount Technologies (United States)'),
(71296, 'https://ror.org/02m23a643', 'no_lang_code', 1, 'https://ror.org/02m23a643 Fallbrook Engineering (United States)'),
(71297, 'https://ror.org/0269jcv25', 'no_lang_code', 1, 'https://ror.org/0269jcv25 Esensors (United States)'),
(71298, 'https://ror.org/040xrky57', 'no_lang_code', 1, 'https://ror.org/040xrky57 Falmouth Scientific (United States)'),
(71299, 'https://ror.org/027ckgt14', 'no_lang_code', 1, 'https://ror.org/027ckgt14 Flex Force Enterprises (United States)'),
(71300, 'https://ror.org/0534yb097', 'no_lang_code', 1, 'https://ror.org/0534yb097 Enterprise Sciences (United States)'),
(71301, 'https://ror.org/01t4ana66', 'no_lang_code', 1, 'https://ror.org/01t4ana66 Flexsys (United States)'),
(71302, 'https://ror.org/02gy8t657', 'no_lang_code', 1, 'https://ror.org/02gy8t657 Function Promoting Therapies (United States)'),
(71303, 'https://ror.org/05pdy0618', 'no_lang_code', 1, 'https://ror.org/05pdy0618 Generation 2 Materials Technology (United States)'),
(71304, 'https://ror.org/048maeh80', 'no_lang_code', 1, 'https://ror.org/048maeh80 KeyW (United States)'),
(71305, 'https://ror.org/02cpbjg46', 'no_lang_code', 1, 'https://ror.org/02cpbjg46 Fuse (United States)'),
(71306, 'https://ror.org/01z6gyk64', 'no_lang_code', 1, 'https://ror.org/01z6gyk64 Flight Works (United States)'),
(71307, 'https://ror.org/00ywmky87', 'no_lang_code', 1, 'https://ror.org/00ywmky87 Flightware (United States)'),
(71308, 'https://ror.org/05rsmmq85', 'no_lang_code', 1, 'https://ror.org/05rsmmq85 Fuss & O’Neill (United States)'),
(71309, 'https://ror.org/01qdnge68', 'no_lang_code', 1, 'https://ror.org/01qdnge68 Fluent (United States)'),
(71310, 'https://ror.org/04n3ta263', 'no_lang_code', 1, 'https://ror.org/04n3ta263 Flometrics (United States)'),
(71311, 'https://ror.org/05td67m16', 'no_lang_code', 1, 'https://ror.org/05td67m16 Fluid Synchrony (United States)'),
(71312, 'https://ror.org/03e14gy69', 'no_lang_code', 1, 'https://ror.org/03e14gy69 GenomeDesigns Lab (United States)'),
(71313, 'https://ror.org/00mg9qs62', 'no_lang_code', 1, 'https://ror.org/00mg9qs62 GC Systems (United States)'),
(71314, 'https://ror.org/00442nv52', 'no_lang_code', 1, 'https://ror.org/00442nv52 Globe Composite (United States)'),
(71315, 'https://ror.org/01n6ss875', 'no_lang_code', 1, 'https://ror.org/01n6ss875 Glosten (United States)'),
(71316, 'https://ror.org/02reydp80', 'no_lang_code', 1, 'https://ror.org/02reydp80 Glucan Biorenewables (United States)'),
(71317, 'https://ror.org/01bqqes77', 'no_lang_code', 1, 'https://ror.org/01bqqes77 Fluorescence Innovations (United States)'),
(71318, 'https://ror.org/03hrkx094', 'no_lang_code', 1, 'https://ror.org/03hrkx094 Gadusol Laboratories (United States)'),
(71319, 'https://ror.org/02jek3571', 'no_lang_code', 1, 'https://ror.org/02jek3571 Fluoresprobe Sciences (United States)'),
(71320, 'https://ror.org/02pep9116', 'no_lang_code', 1, 'https://ror.org/02pep9116 GlyTech (United States)'),
(71321, 'https://ror.org/05vh42w24', 'no_lang_code', 1, 'https://ror.org/05vh42w24 Gaia Herbs (United States)'),
(71322, 'https://ror.org/01286xj85', 'no_lang_code', 1, 'https://ror.org/01286xj85 FocusStart (United States)'),
(71323, 'https://ror.org/03q8mf789', 'no_lang_code', 1, 'https://ror.org/03q8mf789 Goleta Engineering (United States)'),
(71324, 'https://ror.org/052s7ab91', 'no_lang_code', 1, 'https://ror.org/052s7ab91 Folded Structures (United States)'),
(71325, 'https://ror.org/00w074307', 'no_lang_code', 1, 'https://ror.org/00w074307 GoofyFoot Labs (United States)'),
(71326, 'https://ror.org/058zn7e64', 'no_lang_code', 1, 'https://ror.org/058zn7e64 Teraphysics (United States)'),
(71327, 'https://ror.org/00gyqqh04', 'no_lang_code', 1, 'https://ror.org/00gyqqh04 Fiber Optic Manufacturing in Space (United States)'),
(71328, 'https://ror.org/00wp30s27', 'no_lang_code', 1, 'https://ror.org/00wp30s27 Keywords Studios (United States)'),
(71329, 'https://ror.org/019kjv407', 'no_lang_code', 1, 'https://ror.org/019kjv407 Gougeon Brothers (United States)'),
(71330, 'https://ror.org/03kwqy112', 'no_lang_code', 1, 'https://ror.org/03kwqy112 GPB Scientific (United States)'),
(71331, 'https://ror.org/01ns4tv82', 'no_lang_code', 1, 'https://ror.org/01ns4tv82 GPD Optoelectronics (United States)'),
(71332, 'https://ror.org/045832a47', 'no_lang_code', 1, 'https://ror.org/045832a47 GamesThatWork (United States)'),
(71333, 'https://ror.org/03vqhcv86', 'no_lang_code', 1, 'https://ror.org/03vqhcv86 Gamma Therapeutics (United States)'),
(71334, 'https://ror.org/009ne2259', 'no_lang_code', 1, 'https://ror.org/009ne2259 For Robin (United States)'),
(71335, 'https://ror.org/02wgzkd84', 'no_lang_code', 1, 'https://ror.org/02wgzkd84 Graf Research (United States)'),
(71336, 'https://ror.org/036y4q615', 'no_lang_code', 1, 'https://ror.org/036y4q615 Vector (United States)'),
(71337, 'https://ror.org/00r3k2f05', 'no_lang_code', 1, 'https://ror.org/00r3k2f05 Grainflow Dynamics (United States)'),
(71338, 'https://ror.org/041542g68', 'no_lang_code', 1, 'https://ror.org/041542g68 Foresite (United States)'),
(71339, 'https://ror.org/00b9t3w70', 'no_lang_code', 1, 'https://ror.org/00b9t3w70 TerraGo (United States)'),
(71340, 'https://ror.org/03jjj8766', 'en', 1, 'https://ror.org/03jjj8766 Green Technology'),
(71341, 'https://ror.org/031cp3483', 'no_lang_code', 1, 'https://ror.org/031cp3483 Gastops (United States)'),
(71342, 'https://ror.org/032pxea46', 'no_lang_code', 1, 'https://ror.org/032pxea46 Geost (United States)'),
(71343, 'https://ror.org/038rpm246', 'no_lang_code', 1, 'https://ror.org/038rpm246 GHKN Engineering (United States)'),
(71344, 'https://ror.org/05x55kp86', 'no_lang_code', 1, 'https://ror.org/05x55kp86 Forsythe Technologies (United States)'),
(71345, 'https://ror.org/01m9jpy59', 'no_lang_code', 1, 'https://ror.org/01m9jpy59 Greensea Systems (United States)'),
(71346, 'https://ror.org/00rkfts56', 'no_lang_code', 1, 'https://ror.org/00rkfts56 Gismo Therapeutics (United States)'),
(71347, 'https://ror.org/01wfg7444', 'no_lang_code', 1, 'https://ror.org/01wfg7444 Grid Logic (United States)'),
(71348, 'https://ror.org/047j8xx02', 'en', 1, 'https://ror.org/047j8xx02 Gear Research Institute'),
(71349, 'https://ror.org/005gnk787', 'no_lang_code', 1, 'https://ror.org/005gnk787 Fort Environmental Laboratories (United States)'),
(71350, 'https://ror.org/00axz0e09', 'no_lang_code', 1, 'https://ror.org/00axz0e09 E7 Ventures (United States)'),
(71351, 'https://ror.org/04zdent75', 'no_lang_code', 1, 'https://ror.org/04zdent75 Gem Power (United States)'),
(71352, 'https://ror.org/02r802v31', 'no_lang_code', 1, 'https://ror.org/02r802v31 Fortem Technologies (United States)'),
(71353, 'https://ror.org/058646248', 'no_lang_code', 1, 'https://ror.org/058646248 Gemini Computers (United States)'),
(71354, 'https://ror.org/00pjvg681', 'no_lang_code', 1, 'https://ror.org/00pjvg681 Global Aircraft (United States)'),
(71355, 'https://ror.org/01t4t8r38', 'no_lang_code', 1, 'https://ror.org/01t4t8r38 Gen-9 (United States)'),
(71356, 'https://ror.org/04hjm1265', 'no_lang_code', 1, 'https://ror.org/04hjm1265 Group W (United States)'),
(71357, 'https://ror.org/01k645a92', 'no_lang_code', 1, 'https://ror.org/01k645a92 Forward Photonics (United States)'),
(71358, 'https://ror.org/00cjhgf11', 'no_lang_code', 1, 'https://ror.org/00cjhgf11 FoVI3D (United States)'),
(71359, 'https://ror.org/00zay1847', 'no_lang_code', 1, 'https://ror.org/00zay1847 GTD Unlimited (United States)'),
(71360, 'https://ror.org/03bdktf45', 'no_lang_code', 1, 'https://ror.org/03bdktf45 Fracsun (United States)'),
(71361, 'https://ror.org/00n6bec83', 'no_lang_code', 1, 'https://ror.org/00n6bec83 Guernsey Coating Laboratories (United States)'),
(71362, 'https://ror.org/010pg4y69', 'no_lang_code', 1, 'https://ror.org/010pg4y69 Genapsys (United States)'),
(71363, 'https://ror.org/01m3qwn25', 'no_lang_code', 1, 'https://ror.org/01m3qwn25 Guidestar Optical Systems (United States)'),
(71364, 'https://ror.org/00h33cn96', 'no_lang_code', 1, 'https://ror.org/00h33cn96 Genendeavor (United States)'),
(71365, 'https://ror.org/01a5ymr35', 'no_lang_code', 1, 'https://ror.org/01a5ymr35 Global Science & Technology (United States)'),
(71366, 'https://ror.org/00hyx3015', 'no_lang_code', 1, 'https://ror.org/00hyx3015 Frequency Management International (United States)'),
(71367, 'https://ror.org/0542z7581', 'no_lang_code', 1, 'https://ror.org/0542z7581 Front Range Engineering (United States)'),
(71368, 'https://ror.org/05wjk9x59', 'no_lang_code', 1, 'https://ror.org/05wjk9x59 General Oceanics (United States)'),
(71369, 'https://ror.org/05p8b7e93', 'no_lang_code', 1, 'https://ror.org/05p8b7e93 Frontier Aerospace Corporation (United States)'),
(71370, 'https://ror.org/007whsh62', 'no_lang_code', 1, 'https://ror.org/007whsh62 Intertek (United States)'),
(71371, 'https://ror.org/03qe43686', 'no_lang_code', 1, 'https://ror.org/03qe43686 HNU Photonics (United States)'),
(71372, 'https://ror.org/0261n2w64', 'no_lang_code', 1, 'https://ror.org/0261n2w64 HS Owen (United States)'),
(71373, 'https://ror.org/047edpg75', 'en', 1, 'https://ror.org/047edpg75 Hôpital Psychiatrique du Beau Vallon Le Beau Vallon - Psychiatric Hospital'),
(71374, 'https://ror.org/04gqz0031', 'no_lang_code', 1, 'https://ror.org/04gqz0031 H6 Systems (United States)'),
(71375, 'https://ror.org/03g343n58', 'no_lang_code', 1, 'https://ror.org/03g343n58 FSCX (United States)'),
(71376, 'https://ror.org/01garp273', 'no_lang_code', 1, 'https://ror.org/01garp273 Fulcrum Composites (United States)'),
(71377, 'https://ror.org/04x95c937', 'no_lang_code', 1, 'https://ror.org/04x95c937 Health and Education Research Management and Epidemiologic Services (United States)'),
(71378, 'https://ror.org/04ganmj42', 'no_lang_code', 1, 'https://ror.org/04ganmj42 Herrick Technology Laboratories (United States)'),
(71379, 'https://ror.org/05n134d59', 'no_lang_code', 1, 'https://ror.org/05n134d59 Halcyon Biomedical (United States)'),
(71380, 'https://ror.org/01bycfv98', 'no_lang_code', 1, 'https://ror.org/01bycfv98 Ideas Engineering & Technology (United States)'),
(71381, 'https://ror.org/02d77hg59', 'no_lang_code', 1, 'https://ror.org/02d77hg59 ID Genomics (United States)'),
(71382, 'https://ror.org/03tny0b60', 'no_lang_code', 1, 'https://ror.org/03tny0b60 Hesperos (United States)'),
(71383, 'https://ror.org/02xvpd793', 'no_lang_code', 1, 'https://ror.org/02xvpd793 Heureka (United States)'),
(71384, 'https://ror.org/0186pgv50', 'no_lang_code', 1, 'https://ror.org/0186pgv50 iFIT Prosthetics (United States)'),
(71385, 'https://ror.org/02mdvw277', 'no_lang_code', 1, 'https://ror.org/02mdvw277 Hanby Environmental (United States)'),
(71386, 'https://ror.org/01tje5w07', 'no_lang_code', 1, 'https://ror.org/01tje5w07 Hydroacoustics (United States)'),
(71387, 'https://ror.org/02vparz93', 'no_lang_code', 1, 'https://ror.org/02vparz93 Hexagon Interactive (United States)'),
(71388, 'https://ror.org/05rq0zb63', 'no_lang_code', 1, 'https://ror.org/05rq0zb63 iK9'),
(71389, 'https://ror.org/04hjd4917', 'no_lang_code', 1, 'https://ror.org/04hjd4917 Hardric Laboratories (United States)'),
(71390, 'https://ror.org/034qcqw57', 'no_lang_code', 1, 'https://ror.org/034qcqw57 Hf Designworks (United States)'),
(71391, 'https://ror.org/00feqrp17', 'no_lang_code', 1, 'https://ror.org/00feqrp17 Hydronalix (United States)'),
(71392, 'https://ror.org/0582veh46', 'no_lang_code', 1, 'https://ror.org/0582veh46 HarmonoLogic (United States)'),
(71393, 'https://ror.org/03p9zdb14', 'no_lang_code', 1, 'https://ror.org/03p9zdb14 ISCO International (United States)'),
(71394, 'https://ror.org/02g6p0656', 'no_lang_code', 1, 'https://ror.org/02g6p0656 Harp Engineering (United States)'),
(71395, 'https://ror.org/051qp5024', 'no_lang_code', 1, 'https://ror.org/051qp5024 Hartsci (United States)'),
(71396, 'https://ror.org/05h1bjp83', 'no_lang_code', 1, 'https://ror.org/05h1bjp83 High Throughput Biology (United States)'),
(71397, 'https://ror.org/048kwbq96', 'no_lang_code', 1, 'https://ror.org/048kwbq96 ImCare Biotech (United States)'),
(71398, 'https://ror.org/02xvpn995', 'no_lang_code', 1, 'https://ror.org/02xvpn995 Hawaii Hydrogen Carriers (United States)'),
(71399, 'https://ror.org/058twjz75', 'no_lang_code', 1, 'https://ror.org/058twjz75 HyPerComp Engineering (United States)'),
(71400, 'https://ror.org/016ata990', 'no_lang_code', 1, 'https://ror.org/016ata990 Immuno Technologies (United States)'),
(71401, 'https://ror.org/01k1gfz56', 'no_lang_code', 1, 'https://ror.org/01k1gfz56 Hays Innovations (United States)'),
(71402, 'https://ror.org/059evmh03', 'no_lang_code', 1, 'https://ror.org/059evmh03 Hocuslocus (United States)'),
(71403, 'https://ror.org/030gh7x86', 'no_lang_code', 1, 'https://ror.org/030gh7x86 Immunosciences Lab (United States)'),
(71404, 'https://ror.org/01m5b4t98', 'no_lang_code', 1, 'https://ror.org/01m5b4t98 Hoh Aeronautics (United States)'),
(71405, 'https://ror.org/03fka6907', 'no_lang_code', 1, 'https://ror.org/03fka6907 Hyperion Technology Group (United States)'),
(71406, 'https://ror.org/02857w585', 'no_lang_code', 1, 'https://ror.org/02857w585 Hdm Systems (United States)'),
(71407, 'https://ror.org/042sca472', 'no_lang_code', 1, 'https://ror.org/042sca472 H-DOX (United States)'),
(71408, 'https://ror.org/04zp3gp22', 'no_lang_code', 1, 'https://ror.org/04zp3gp22 ImpeDx Diagnostics (United States)'),
(71409, 'https://ror.org/00wfb0t96', 'no_lang_code', 1, 'https://ror.org/00wfb0t96 Holoeye (United States)'),
(71410, 'https://ror.org/05mc59k43', 'no_lang_code', 1, 'https://ror.org/05mc59k43 Health Decision Technologies (United States)'),
(71411, 'https://ror.org/02bq53250', 'no_lang_code', 1, 'https://ror.org/02bq53250 Comfort Talk (United States)'),
(71412, 'https://ror.org/00darzp70', 'no_lang_code', 1, 'https://ror.org/00darzp70 Health Innovations (United States)'),
(71413, 'https://ror.org/020esap58', 'no_lang_code', 1, 'https://ror.org/020esap58 Valve (United States)'),
(71414, 'https://ror.org/04ea9we05', 'no_lang_code', 1, 'https://ror.org/04ea9we05 Hope Pharmaceuticals (United States)'),
(71415, 'https://ror.org/00amyy824', 'no_lang_code', 1, 'https://ror.org/00amyy824 In Vitro Admet Laboratories (United States)'),
(71416, 'https://ror.org/04w1vv369', 'no_lang_code', 1, 'https://ror.org/04w1vv369 Healthcare Technologies and Methods (United States)'),
(71417, 'https://ror.org/05kpzb522', 'no_lang_code', 1, 'https://ror.org/05kpzb522 InVivo Analytics (United States)'),
(71418, 'https://ror.org/0336yfm40', 'no_lang_code', 1, 'https://ror.org/0336yfm40 In Depth Engineering (United States)'),
(71419, 'https://ror.org/00s11fs62', 'no_lang_code', 1, 'https://ror.org/00s11fs62 iDEAL Technology (United States)'),
(71420, 'https://ror.org/03kmk3010', 'no_lang_code', 1, 'https://ror.org/03kmk3010 Inanovate (United States)'),
(71421, 'https://ror.org/04t7my217', 'no_lang_code', 1, 'https://ror.org/04t7my217 Inceptus (United States)'),
(71422, 'https://ror.org/04nwbht92', 'no_lang_code', 1, 'https://ror.org/04nwbht92 Tricol Biomedical (United States)'),
(71423, 'https://ror.org/00k2ykm07', 'no_lang_code', 1, 'https://ror.org/00k2ykm07 Industrial & Biomedical Sensors (United States)'),
(71424, 'https://ror.org/052ff1r50', 'no_lang_code', 1, 'https://ror.org/052ff1r50 IC Tech (United States)'),
(71425, 'https://ror.org/003cyvv46', 'no_lang_code', 1, 'https://ror.org/003cyvv46 h2med (United States)'),
(71426, 'https://ror.org/03nm9bt69', 'no_lang_code', 1, 'https://ror.org/03nm9bt69 Howell Laboratories (United States)'),
(71427, 'https://ror.org/00shyvc62', 'no_lang_code', 1, 'https://ror.org/00shyvc62 Icosystem (United States)'),
(71428, 'https://ror.org/035x03e98', 'no_lang_code', 1, 'https://ror.org/035x03e98 InEnTec (United States)'),
(71429, 'https://ror.org/04vda4c44', 'no_lang_code', 1, 'https://ror.org/04vda4c44 Hqphotonics (United States)'),
(71430, 'https://ror.org/00y1ncc66', 'no_lang_code', 1, 'https://ror.org/00y1ncc66 Idaho Scientific (United States)'),
(71431, 'https://ror.org/04fwehd44', 'no_lang_code', 1, 'https://ror.org/04fwehd44 InfoAssure (United States)'),
(71432, 'https://ror.org/01f7ac059', 'no_lang_code', 1, 'https://ror.org/01f7ac059 Inertial Labs (United States)'),
(71433, 'https://ror.org/05h4gap09', 'no_lang_code', 1, 'https://ror.org/05h4gap09 Innovative Design Engineeering & Analysis (United States)'),
(71434, 'https://ror.org/05bvpnp10', 'no_lang_code', 1, 'https://ror.org/05bvpnp10 HTD Biosystems (United States)'),
(71435, 'https://ror.org/05rczqt20', 'no_lang_code', 1, 'https://ror.org/05rczqt20 InertialWave (United States)'),
(71436, 'https://ror.org/01ame3c61', 'no_lang_code', 1, 'https://ror.org/01ame3c61 Innovital Systems (United States)'),
(71437, 'https://ror.org/04keq6987', 'en', 1, 'https://ror.org/04keq6987 Purdue University Northwest'),
(71438, 'https://ror.org/05m2t4v49', 'no_lang_code', 1, 'https://ror.org/05m2t4v49 Infinid Technologies (United States)'),
(71439, 'https://ror.org/02ca9pg17', 'no_lang_code', 1, 'https://ror.org/02ca9pg17 Inovatia Laboratories (United States)'),
(71440, 'https://ror.org/017747t25', 'no_lang_code', 1, 'https://ror.org/017747t25 Inovex (United States)'),
(71441, 'https://ror.org/024arph56', 'no_lang_code', 1, 'https://ror.org/024arph56 MorganFranklin (United States)'),
(71442, 'https://ror.org/00r838687', 'no_lang_code', 1, 'https://ror.org/00r838687 Inscope International (United States)'),
(71443, 'https://ror.org/038swrn45', 'no_lang_code', 1, 'https://ror.org/038swrn45 Critical Imaging (United States)'),
(71444, 'https://ror.org/05701hm88', 'no_lang_code', 1, 'https://ror.org/05701hm88 Infinite Technologies (United States)'),
(71445, 'https://ror.org/03k7v4244', 'no_lang_code', 1, 'https://ror.org/03k7v4244 Infinity (United States)'),
(71446, 'https://ror.org/01k3phj09', 'no_lang_code', 1, 'https://ror.org/01k3phj09 Infrascan (United States)'),
(71447, 'https://ror.org/03qdg6h95', 'no_lang_code', 1, 'https://ror.org/03qdg6h95 Inscopix (United States)'),
(71448, 'https://ror.org/05gwgrg94', 'no_lang_code', 1, 'https://ror.org/05gwgrg94 InflamaCore (United States)'),
(71449, 'https://ror.org/00976p334', 'no_lang_code', 1, 'https://ror.org/00976p334 Calando Pharmaceuticals (United States)'),
(71450, 'https://ror.org/02pr1pc58', 'no_lang_code', 1, 'https://ror.org/02pr1pc58 Inhibrx (United States)'),
(71451, 'https://ror.org/041yzwn62', 'no_lang_code', 1, 'https://ror.org/041yzwn62 Influx (United States)'),
(71452, 'https://ror.org/03p13vc55', 'no_lang_code', 1, 'https://ror.org/03p13vc55 Insilixa (United States)'),
(71453, 'https://ror.org/00vm5qp33', 'no_lang_code', 1, 'https://ror.org/00vm5qp33 Integrated Optical Circuit Consultants (United States)'),
(71454, 'https://ror.org/04jffap62', 'no_lang_code', 1, 'https://ror.org/04jffap62 Inkbit (United States)'),
(71455, 'https://ror.org/0220er837', 'no_lang_code', 1, 'https://ror.org/0220er837 Intraband (United States)'),
(71456, 'https://ror.org/0515r3k27', 'no_lang_code', 1, 'https://ror.org/0515r3k27 Integration Innovation (United States)'),
(71457, 'https://ror.org/00txmyx33', 'no_lang_code', 1, 'https://ror.org/00txmyx33 InnaVasc Medical (United States)'),
(71458, 'https://ror.org/023n14c26', 'no_lang_code', 1, 'https://ror.org/023n14c26 Integrity Systems (United States)'),
(71459, 'https://ror.org/030jahg19', 'no_lang_code', 1, 'https://ror.org/030jahg19 Intuidex (United States)'),
(71460, 'https://ror.org/00k8r3g38', 'no_lang_code', 1, 'https://ror.org/00k8r3g38 TPK (United States)'),
(71461, 'https://ror.org/01g6mxs55', 'no_lang_code', 1, 'https://ror.org/01g6mxs55 Inteligistics (United States)'),
(71462, 'https://ror.org/027d29w93', 'no_lang_code', 1, 'https://ror.org/027d29w93 InnovaPrep (United States)'),
(71463, 'https://ror.org/03an8gd42', 'no_lang_code', 1, 'https://ror.org/03an8gd42 intuVision (United States)'),
(71464, 'https://ror.org/00sqz4v59', 'no_lang_code', 1, 'https://ror.org/00sqz4v59 Innovatech (United States)'),
(71465, 'https://ror.org/036791a63', 'no_lang_code', 1, 'https://ror.org/036791a63 S&C Electric Company (United States)'),
(71466, 'https://ror.org/05rs58729', 'no_lang_code', 1, 'https://ror.org/05rs58729 Elbit Systems (United States)'),
(71467, 'https://ror.org/05hy8nr95', 'no_lang_code', 1, 'https://ror.org/05hy8nr95 Io Therapeutics (United States)'),
(71468, 'https://ror.org/00ms2qt30', 'no_lang_code', 1, 'https://ror.org/00ms2qt30 IntelliWheels (United States)'),
(71469, 'https://ror.org/00c393w57', 'no_lang_code', 1, 'https://ror.org/00c393w57 Intematix (United States)'),
(71470, 'https://ror.org/011bk2q57', 'no_lang_code', 1, 'https://ror.org/011bk2q57 IonField Systems (United States)'),
(71471, 'https://ror.org/016tbft40', 'no_lang_code', 1, 'https://ror.org/016tbft40 INTER Materials (United States)'),
(71472, 'https://ror.org/00mx4ey95', 'no_lang_code', 1, 'https://ror.org/00mx4ey95 Innovative Imaging and Research (United States)'),
(71473, 'https://ror.org/02ttgy424', 'no_lang_code', 1, 'https://ror.org/02ttgy424 Innovative Materials Testing Technologies (United States)'),
(71474, 'https://ror.org/05a0jk155', 'no_lang_code', 1, 'https://ror.org/05a0jk155 Innovative Materials & Processes (United States)'),
(71475, 'https://ror.org/00fz3d156', 'no_lang_code', 1, 'https://ror.org/00fz3d156 SmugMug (United States)'),
(71476, 'https://ror.org/05qzrmp73', 'no_lang_code', 1, 'https://ror.org/05qzrmp73 Instrumental Polymer Technologies (United States)'),
(71477, 'https://ror.org/00zzvzy79', 'no_lang_code', 1, 'https://ror.org/00zzvzy79 Novetta (United States)'),
(71478, 'https://ror.org/04gj4mv97', 'no_lang_code', 1, 'https://ror.org/04gj4mv97 Intact Genomics (United States)'),
(71479, 'https://ror.org/0273d1w91', 'no_lang_code', 1, 'https://ror.org/0273d1w91 Intan Technologies (United States)'),
(71480, 'https://ror.org/028ata669', 'no_lang_code', 1, 'https://ror.org/028ata669 IR Dynamics (United States)'),
(71481, 'https://ror.org/00ynqbp15', 'no_lang_code', 1, 'https://ror.org/00ynqbp15 Integra (United States)'),
(71482, 'https://ror.org/00dp5t753', 'no_lang_code', 1, 'https://ror.org/00dp5t753 Innoveering (United States)'),
(71483, 'https://ror.org/016g45z27', 'no_lang_code', 1, 'https://ror.org/016g45z27 Integran (United States)'),
(71484, 'https://ror.org/05845zh49', 'no_lang_code', 1, 'https://ror.org/05845zh49 Rochester Precision Optics (United States)'),
(71485, 'https://ror.org/03prqps50', 'no_lang_code', 1, 'https://ror.org/03prqps50 4Power (United States)'),
(71486, 'https://ror.org/03c7nm582', 'no_lang_code', 1, 'https://ror.org/03c7nm582 Innovimmune Biotherapeutics (United States)'),
(71487, 'https://ror.org/01nvxbj32', 'no_lang_code', 1, 'https://ror.org/01nvxbj32 JBS Technologies (United States)'),
(71488, 'https://ror.org/057t4ts30', 'no_lang_code', 1, 'https://ror.org/057t4ts30 Igenbio (United States)'),
(71489, 'https://ror.org/05hdh9883', 'no_lang_code', 1, 'https://ror.org/05hdh9883 JK Research (United States)'),
(71490, 'https://ror.org/01zstqa72', 'no_lang_code', 1, 'https://ror.org/01zstqa72 Kalyra Pharmaceuticals (United States)'),
(71491, 'https://ror.org/014eqv775', 'no_lang_code', 1, 'https://ror.org/014eqv775 International Therapeutics (United States)'),
(71492, 'https://ror.org/028g3cv81', 'no_lang_code', 1, 'https://ror.org/028g3cv81 Interphase Materials (United States)'),
(71493, 'https://ror.org/03tw07585', 'no_lang_code', 1, 'https://ror.org/03tw07585 Jackson and Tull (United States)'),
(71494, 'https://ror.org/02yf26450', 'no_lang_code', 1, 'https://ror.org/02yf26450 InterVision Media (United States)'),
(71495, 'https://ror.org/03m3bzv26', 'no_lang_code', 1, 'https://ror.org/03m3bzv26 Kytaro (United States)'),
(71496, 'https://ror.org/03q1m1j52', 'en', 1, 'https://ror.org/03q1m1j52 IST Research'),
(71497, 'https://ror.org/01xkrj909', 'no_lang_code', 1, 'https://ror.org/01xkrj909 L-Nutra (United States)'),
(71498, 'https://ror.org/05558br18', 'no_lang_code', 1, 'https://ror.org/05558br18 Jan Biotech (United States)'),
(71499, 'https://ror.org/05j5nk668', 'no_lang_code', 1, 'https://ror.org/05j5nk668 Kelly Space & Technology (United States)'),
(71500, 'https://ror.org/05mt98789', 'no_lang_code', 1, 'https://ror.org/05mt98789 iStar'),
(71501, 'https://ror.org/022mgyj90', 'no_lang_code', 1, 'https://ror.org/022mgyj90 Kennen Technologies (United States)'),
(71502, 'https://ror.org/00zr60y65', 'no_lang_code', 1, 'https://ror.org/00zr60y65 Jariet Technologies (United States)'),
(71503, 'https://ror.org/009kqey70', 'no_lang_code', 1, 'https://ror.org/009kqey70 Kennon (United States)'),
(71504, 'https://ror.org/009prqx82', 'no_lang_code', 1, 'https://ror.org/009prqx82 Jaybridge Robotics (United States)'),
(71505, 'https://ror.org/02kh9xe88', 'no_lang_code', 1, 'https://ror.org/02kh9xe88 Western Energy Support & Technology (United States)'),
(71506, 'https://ror.org/03cbybs32', 'no_lang_code', 1, 'https://ror.org/03cbybs32 Jericho Sciences (United States)'),
(71507, 'https://ror.org/01faqmz67', 'no_lang_code', 1, 'https://ror.org/01faqmz67 Kepley BioSystems (United States)'),
(71508, 'https://ror.org/01cm1jq76', 'no_lang_code', 1, 'https://ror.org/01cm1jq76 Kerberos International (United States)'),
(71509, 'https://ror.org/00vvpe721', 'en', 1, 'https://ror.org/00vvpe721 La Jolla Alcohol Research'),
(71510, 'https://ror.org/00xky7n51', 'no_lang_code', 1, 'https://ror.org/00xky7n51 Lawrie Technology (United States)'),
(71511, 'https://ror.org/04n66vw09', 'no_lang_code', 1, 'https://ror.org/04n66vw09 Lab Resources (United States)'),
(71512, 'https://ror.org/04y58vw51', 'en', 1, 'https://ror.org/04y58vw51 CarrotNewYork'),
(71513, 'https://ror.org/02wype295', 'no_lang_code', 1, 'https://ror.org/02wype295 Keystone Automation (United States)'),
(71514, 'https://ror.org/01ps6tc76', 'no_lang_code', 1, 'https://ror.org/01ps6tc76 Leaflabs (United States)'),
(71515, 'https://ror.org/02r895s37', 'no_lang_code', 1, 'https://ror.org/02r895s37 Kibow Biotech (United States)'),
(71516, 'https://ror.org/04pq4an73', 'no_lang_code', 1, 'https://ror.org/04pq4an73 Kiko Labs (United States)'),
(71517, 'https://ror.org/0260rem45', 'no_lang_code', 1, 'https://ror.org/0260rem45 Kinetic Art & Technology (United States)'),
(71518, 'https://ror.org/04stz1h78', 'en', 1, 'https://ror.org/04stz1h78 Learning Ovations'),
(71519, 'https://ror.org/00dmpd885', 'no_lang_code', 1, 'https://ror.org/00dmpd885 John Tiller Software (United States)'),
(71520, 'https://ror.org/016kk7667', 'no_lang_code', 1, 'https://ror.org/016kk7667 ClearMotion (United States)'),
(71521, 'https://ror.org/03djana98', 'no_lang_code', 1, 'https://ror.org/03djana98 LaCell (United States)'),
(71522, 'https://ror.org/05793mh68', 'no_lang_code', 1, 'https://ror.org/05793mh68 Kinetic Resolve (United States)'),
(71523, 'https://ror.org/05q86a639', 'no_lang_code', 1, 'https://ror.org/05q86a639 Levings & Associates (United States)'),
(71524, 'https://ror.org/00j1bpb72', 'no_lang_code', 1, 'https://ror.org/00j1bpb72 Johnson Engineering (United States)'),
(71525, 'https://ror.org/03mwh5n08', 'no_lang_code', 1, 'https://ror.org/03mwh5n08 Jonas (United States)'),
(71526, 'https://ror.org/02mqmfa65', 'no_lang_code', 1, 'https://ror.org/02mqmfa65 Liberty Ammunition (United States)'),
(71527, 'https://ror.org/056hm0802', 'no_lang_code', 1, 'https://ror.org/056hm0802 Life Cycle Engineering (United States)'),
(71528, 'https://ror.org/021cmds57', 'no_lang_code', 1, 'https://ror.org/021cmds57 Life Services (United States)'),
(71529, 'https://ror.org/01em2a424', 'no_lang_code', 1, 'https://ror.org/01em2a424 Land Sea Air Autonomy (United States)'),
(71530, 'https://ror.org/006w74372', 'no_lang_code', 1, 'https://ror.org/006w74372 Landec (United States)'),
(71531, 'https://ror.org/03c782j94', 'no_lang_code', 1, 'https://ror.org/03c782j94 Judd Systems Technologies (United States)'),
(71532, 'https://ror.org/02ekas647', 'no_lang_code', 1, 'https://ror.org/02ekas647 SDL (United States)'),
(71533, 'https://ror.org/01jkbqt36', 'no_lang_code', 1, 'https://ror.org/01jkbqt36 Lankard Materials Laboratory (United States)'),
(71534, 'https://ror.org/02fwrmp37', 'no_lang_code', 1, 'https://ror.org/02fwrmp37 Lifespan Associates (United States)'),
(71535, 'https://ror.org/0337b1h63', 'no_lang_code', 1, 'https://ror.org/0337b1h63 Juneteenth Productions (United States)'),
(71536, 'https://ror.org/03phkpc68', 'no_lang_code', 1, 'https://ror.org/03phkpc68 LightStanza (United States)'),
(71537, 'https://ror.org/05w0mz683', 'no_lang_code', 1, 'https://ror.org/05w0mz683 Juniper Industries (United States)'),
(71538, 'https://ror.org/039y9ma09', 'no_lang_code', 1, 'https://ror.org/039y9ma09 Laser & Plasma Technologies (United States)'),
(71539, 'https://ror.org/019ybb567', 'no_lang_code', 1, 'https://ror.org/019ybb567 LightLine Technologies (United States)'),
(71540, 'https://ror.org/04scw1t72', 'no_lang_code', 1, 'https://ror.org/04scw1t72 Laser Shot (United States)'),
(71541, 'https://ror.org/00mkb4d14', 'hu', 1, 'https://ror.org/00mkb4d14 Lechner Tudásközpont'),
(71542, 'https://ror.org/05cam0y32', 'no_lang_code', 1, 'https://ror.org/05cam0y32 NTS (United States)'),
(71543, 'https://ror.org/0225s8473', 'no_lang_code', 1, 'https://ror.org/0225s8473 LaserGuide (United States)'),
(71544, 'https://ror.org/01sxy8636', 'no_lang_code', 1, 'https://ror.org/01sxy8636 LightPointe (United States)'),
(71545, 'https://ror.org/00we63k03', 'no_lang_code', 1, 'https://ror.org/00we63k03 Kiyatec (United States)'),
(71546, 'https://ror.org/010zs2155', 'no_lang_code', 1, 'https://ror.org/010zs2155 K Lab (United States)'),
(71547, 'https://ror.org/01ja22q26', 'no_lang_code', 1, 'https://ror.org/01ja22q26 Liquidmetal Technologies (United States)'),
(71548, 'https://ror.org/03ysgs202', 'no_lang_code', 1, 'https://ror.org/03ysgs202 Klogene (United States)'),
(71549, 'https://ror.org/010xxn679', 'no_lang_code', 1, 'https://ror.org/010xxn679 Linguastat (United States)'),
(71550, 'https://ror.org/044n3e324', 'no_lang_code', 1, 'https://ror.org/044n3e324 Knopp Biosciences (United States)'),
(71551, 'https://ror.org/02tn23649', 'no_lang_code', 1, 'https://ror.org/02tn23649 Litecom (United States)'),
(71552, 'https://ror.org/04smac308', 'no_lang_code', 1, 'https://ror.org/04smac308 Loc (United States)'),
(71553, 'https://ror.org/01adn4a11', 'no_lang_code', 1, 'https://ror.org/01adn4a11 LodeSpin Labs (United States)'),
(71554, 'https://ror.org/05ts3jd18', 'no_lang_code', 1, 'https://ror.org/05ts3jd18 Lumme Labs (United States)'),
(71555, 'https://ror.org/02vjrjn58', 'no_lang_code', 1, 'https://ror.org/02vjrjn58 Logistic Gliders (United States)'),
(71556, 'https://ror.org/01680n352', 'no_lang_code', 1, 'https://ror.org/01680n352 Lithium Innovations (United States)'),
(71557, 'https://ror.org/05xvry795', 'no_lang_code', 1, 'https://ror.org/05xvry795 Lund and Company Invention (United States)'),
(71558, 'https://ror.org/02xe5e906', 'no_lang_code', 1, 'https://ror.org/02xe5e906 Lupine Labs (United States)'),
(71559, 'https://ror.org/052s8df17', 'no_lang_code', 1, 'https://ror.org/052s8df17 Lithium Power (United States)'),
(71560, 'https://ror.org/05pk1g903', 'no_lang_code', 1, 'https://ror.org/05pk1g903 Luraco Technologies (United States)'),
(71561, 'https://ror.org/003s4zv17', 'no_lang_code', 1, 'https://ror.org/003s4zv17 EaglePicher Technologies (United States)'),
(71562, 'https://ror.org/014c4zc27', 'no_lang_code', 1, 'https://ror.org/014c4zc27 Liuman Technologies (United States)'),
(71563, 'https://ror.org/05snnkz52', 'no_lang_code', 1, 'https://ror.org/05snnkz52 Koning (United States)'),
(71564, 'https://ror.org/02qc0yf38', 'no_lang_code', 1, 'https://ror.org/02qc0yf38 LiveSchool (United States)'),
(71565, 'https://ror.org/031bfdk61', 'no_lang_code', 1, 'https://ror.org/031bfdk61 LM Group (United States)'),
(71566, 'https://ror.org/02yvdyk59', 'no_lang_code', 1, 'https://ror.org/02yvdyk59 Ksaria (United States)'),
(71567, 'https://ror.org/05jk0sf34', 'no_lang_code', 1, 'https://ror.org/05jk0sf34 LW Microsystems (United States)'),
(71568, 'https://ror.org/05sbkz135', 'no_lang_code', 1, 'https://ror.org/05sbkz135 LucidEnergy (United States)'),
(71569, 'https://ror.org/00fv3qf02', 'no_lang_code', 1, 'https://ror.org/00fv3qf02 Lyndra Therapeutics (United States)'),
(71570, 'https://ror.org/056qvg202', 'no_lang_code', 1, 'https://ror.org/056qvg202 Clock Spring (United States)'),
(71571, 'https://ror.org/0174fcn41', 'no_lang_code', 1, 'https://ror.org/0174fcn41 Maas Biolab (United States)'),
(71572, 'https://ror.org/01z2j4m77', 'no_lang_code', 1, 'https://ror.org/01z2j4m77 MC Power (United States)'),
(71573, 'https://ror.org/00nmjtf96', 'no_lang_code', 1, 'https://ror.org/00nmjtf96 Catalina (United States)'),
(71574, 'https://ror.org/01g75py92', 'no_lang_code', 1, 'https://ror.org/01g75py92 MAST Technologies (United States)'),
(71575, 'https://ror.org/04k8txf58', 'no_lang_code', 1, 'https://ror.org/04k8txf58 EpiSys Science (United States)'),
(71576, 'https://ror.org/0539c7x88', 'no_lang_code', 1, 'https://ror.org/0539c7x88 Madeleine Pharmaceuticals (United States)'),
(71577, 'https://ror.org/00srfk182', 'no_lang_code', 1, 'https://ror.org/00srfk182 Magicom (United States)'),
(71578, 'https://ror.org/05ak48w56', 'no_lang_code', 1, 'https://ror.org/05ak48w56 Materials Research Group (United States)'),
(71579, 'https://ror.org/0139hgh75', 'no_lang_code', 1, 'https://ror.org/0139hgh75 Meissa Vaccines (United States)'),
(71580, 'https://ror.org/00pkccj03', 'no_lang_code', 1, 'https://ror.org/00pkccj03 Magna-Tech P/M Labs (United States)'),
(71581, 'https://ror.org/02aebf083', 'no_lang_code', 1, 'https://ror.org/02aebf083 Melink (United States)'),
(71582, 'https://ror.org/00dqx9006', 'no_lang_code', 1, 'https://ror.org/00dqx9006 MicroVide (United States)'),
(71583, 'https://ror.org/04r0mp352', 'no_lang_code', 1, 'https://ror.org/04r0mp352 Magnetic Resonance Innovations (United States)'),
(71584, 'https://ror.org/0047fgf79', 'no_lang_code', 1, 'https://ror.org/0047fgf79 Micro-Leads (United States)'),
(71585, 'https://ror.org/05re8w736', 'no_lang_code', 1, 'https://ror.org/05re8w736 MEMStim (United States)'),
(71586, 'https://ror.org/0261w0b46', 'no_lang_code', 1, 'https://ror.org/0261w0b46 Micro-Precision Technologies (United States)'),
(71587, 'https://ror.org/027yhxh89', 'no_lang_code', 1, 'https://ror.org/027yhxh89 Magzor (United States)'),
(71588, 'https://ror.org/02700b480', 'no_lang_code', 1, 'https://ror.org/02700b480 MicroConnex (United States)'),
(71589, 'https://ror.org/02gfwnc58', 'en', 1, 'https://ror.org/02gfwnc58 Prague Film School'),
(71590, 'https://ror.org/01tc7df88', 'no_lang_code', 1, 'https://ror.org/01tc7df88 Manufacturing Laboratories (United States)'),
(71591, 'https://ror.org/05g9s8164', 'no_lang_code', 1, 'https://ror.org/05g9s8164 Gallagher (United States)'),
(71592, 'https://ror.org/03zpb4e90', 'no_lang_code', 1, 'https://ror.org/03zpb4e90 MapLarge (United States)'),
(71593, 'https://ror.org/01jq58g75', 'no_lang_code', 1, 'https://ror.org/01jq58g75 Micron Corporation (United States)'),
(71594, 'https://ror.org/033c33n67', 'no_lang_code', 1, 'https://ror.org/033c33n67 Marine Design Dynamics (United States)'),
(71595, 'https://ror.org/03286xn88', 'no_lang_code', 1, 'https://ror.org/03286xn88 Microprobes (United States)'),
(71596, 'https://ror.org/05j9p9809', 'no_lang_code', 1, 'https://ror.org/05j9p9809 Marvel Medtech (United States)'),
(71597, 'https://ror.org/05yj8y167', 'no_lang_code', 1, 'https://ror.org/05yj8y167 Mesh Robotics (United States)'),
(71598, 'https://ror.org/05125rf66', 'no_lang_code', 1, 'https://ror.org/05125rf66 Metabolic Nutritionals (United States)'),
(71599, 'https://ror.org/048104e91', 'no_lang_code', 1, 'https://ror.org/048104e91 Max Biopharma (United States)'),
(71600, 'https://ror.org/03jpft613', 'no_lang_code', 1, 'https://ror.org/03jpft613 Metal Storm (United States)'),
(71601, 'https://ror.org/00ygaqv05', 'no_lang_code', 1, 'https://ror.org/00ygaqv05 MetaMorph (United States)'),
(71602, 'https://ror.org/03ak5tq12', 'no_lang_code', 1, 'https://ror.org/03ak5tq12 Microscale (United States)'),
(71603, 'https://ror.org/052hfgr76', 'no_lang_code', 1, 'https://ror.org/052hfgr76 MBC Pharma (United States)'),
(71604, 'https://ror.org/01tgsx068', 'no_lang_code', 1, 'https://ror.org/01tgsx068 Microsonic Systems (United States)'),
(71605, 'https://ror.org/0013ssk40', 'no_lang_code', 1, 'https://ror.org/0013ssk40 Microtech Instruments (United States)'),
(71606, 'https://ror.org/02ve9pj54', 'no_lang_code', 1, 'https://ror.org/02ve9pj54 McCormick Stevenson (United States)'),
(71607, 'https://ror.org/031r9ct64', 'no_lang_code', 1, 'https://ror.org/031r9ct64 Metastable Instruments (United States)'),
(71608, 'https://ror.org/05cdt9d58', 'no_lang_code', 1, 'https://ror.org/05cdt9d58 Micro Vascular Theraputics (United States)'),
(71609, 'https://ror.org/013pphq47', 'no_lang_code', 1, 'https://ror.org/013pphq47 Metria Innovation (United States)'),
(71610, 'https://ror.org/05ntky919', 'no_lang_code', 1, 'https://ror.org/05ntky919 MD Informatics (United States)'),
(71611, 'https://ror.org/02b5ra378', 'no_lang_code', 1, 'https://ror.org/02b5ra378 Microwave Applications Group (United States)'),
(71612, 'https://ror.org/03bsbp090', 'no_lang_code', 1, 'https://ror.org/03bsbp090 Minitube (United States)'),
(71613, 'https://ror.org/03hbksy74', 'no_lang_code', 1, 'https://ror.org/03hbksy74 Airbus (United States)'),
(71614, 'https://ror.org/01yeg0z60', 'no_lang_code', 1, 'https://ror.org/01yeg0z60 MDA Engineering (United States)'),
(71615, 'https://ror.org/05tcvhs47', 'no_lang_code', 1, 'https://ror.org/05tcvhs47 Microwave Products and Technology (United States)'),
(71616, 'https://ror.org/02yy7ck11', 'no_lang_code', 1, 'https://ror.org/02yy7ck11 Metstat (United States)'),
(71617, 'https://ror.org/024jszt17', 'no_lang_code', 1, 'https://ror.org/024jszt17 Mgenuity (United States)'),
(71618, 'https://ror.org/01a9bcw11', 'no_lang_code', 1, 'https://ror.org/01a9bcw11 Mira Dx (United States)'),
(71619, 'https://ror.org/05gfawf80', 'no_lang_code', 1, 'https://ror.org/05gfawf80 MH Acoustics (United States)'),
(71620, 'https://ror.org/024hme737', 'no_lang_code', 1, 'https://ror.org/024hme737 Mirage Systems (United States)'),
(71621, 'https://ror.org/04m0rev75', 'en', 1, 'https://ror.org/04m0rev75 MidSchoolMath'),
(71622, 'https://ror.org/02dz3j209', 'no_lang_code', 1, 'https://ror.org/02dz3j209 First Wave Technologies (United States)'),
(71623, 'https://ror.org/04yt49153', 'no_lang_code', 1, 'https://ror.org/04yt49153 Micatu (United States)'),
(71624, 'https://ror.org/01ad0ky70', 'no_lang_code', 1, 'https://ror.org/01ad0ky70 Mikel (United States)'),
(71625, 'https://ror.org/00cr13h95', 'no_lang_code', 1, 'https://ror.org/00cr13h95 MillenniTek (United States)');
INSERT INTO `rors` VALUES
(71626, 'https://ror.org/04k2vba54', 'no_lang_code', 1, 'https://ror.org/04k2vba54 Molecular Theranostics (United States)'),
(71627, 'https://ror.org/01jx84k94', 'no_lang_code', 1, 'https://ror.org/01jx84k94 Millennium Dynamics (United States)'),
(71628, 'https://ror.org/04nem5m18', 'no_lang_code', 1, 'https://ror.org/04nem5m18 Molecule Works (United States)'),
(71629, 'https://ror.org/02bx3wt69', 'no_lang_code', 1, 'https://ror.org/02bx3wt69 Moller International (United States)'),
(71630, 'https://ror.org/00mvdnr09', 'no_lang_code', 1, 'https://ror.org/00mvdnr09 Mach Diamond Propulsion (United States)'),
(71631, 'https://ror.org/03qrymy45', 'no_lang_code', 1, 'https://ror.org/03qrymy45 Medsleuth (United States)'),
(71632, 'https://ror.org/01xfdgh94', 'no_lang_code', 1, 'https://ror.org/01xfdgh94 Motivational Educational Entertainment Productions (United States)'),
(71633, 'https://ror.org/0194gma78', 'no_lang_code', 1, 'https://ror.org/0194gma78 MosquitoMate (United States)'),
(71634, 'https://ror.org/00j4kjd92', 'no_lang_code', 1, 'https://ror.org/00j4kjd92 PocketLab (United States)'),
(71635, 'https://ror.org/02sdyzy02', 'no_lang_code', 1, 'https://ror.org/02sdyzy02 Moxtek (United States)'),
(71636, 'https://ror.org/02m2ek616', 'no_lang_code', 1, 'https://ror.org/02m2ek616 N&N Pharmaceuticals (United States)'),
(71637, 'https://ror.org/00t6eqy44', 'no_lang_code', 1, 'https://ror.org/00t6eqy44 MP Technologies (United States)'),
(71638, 'https://ror.org/00pftgq30', 'en', 1, 'https://ror.org/00pftgq30 DST Centre for Policy Research'),
(71639, 'https://ror.org/021ebxe23', 'no_lang_code', 1, 'https://ror.org/021ebxe23 Mi-Tech (United States)'),
(71640, 'https://ror.org/04xv9k977', 'no_lang_code', 1, 'https://ror.org/04xv9k977 N5 Sensors (United States)'),
(71641, 'https://ror.org/05334he48', 'no_lang_code', 1, 'https://ror.org/05334he48 C4 Therapeutics (United States)'),
(71642, 'https://ror.org/02eb2vj04', 'no_lang_code', 1, 'https://ror.org/02eb2vj04 Mitek Analytics (United States)'),
(71643, 'https://ror.org/022z6jk58', 'en', 1, 'https://ror.org/022z6jk58 MIT Lincoln Laboratory'),
(71644, 'https://ror.org/04x2kaj78', 'no_lang_code', 1, 'https://ror.org/04x2kaj78 Najít Technologies (United States)'),
(71645, 'https://ror.org/020fcm936', 'no_lang_code', 1, 'https://ror.org/020fcm936 MixZon (United States)'),
(71646, 'https://ror.org/020jzvw77', 'no_lang_code', 1, 'https://ror.org/020jzvw77 NDE Technologies (United States)'),
(71647, 'https://ror.org/00gc8q349', 'no_lang_code', 1, 'https://ror.org/00gc8q349 Nalu Scientific (United States)'),
(71648, 'https://ror.org/0561xd336', 'no_lang_code', 1, 'https://ror.org/0561xd336 Miyazaki Enterprises (United States)'),
(71649, 'https://ror.org/04mrfa287', 'no_lang_code', 1, 'https://ror.org/04mrfa287 NanoCor Therapeutics (United States)'),
(71650, 'https://ror.org/009mm8209', 'no_lang_code', 1, 'https://ror.org/009mm8209 nanoMAG (United States)'),
(71651, 'https://ror.org/04wkssk54', 'no_lang_code', 1, 'https://ror.org/04wkssk54 HumanN (United States)'),
(71652, 'https://ror.org/054px3h87', 'no_lang_code', 1, 'https://ror.org/054px3h87 Materials Resources (United States)'),
(71653, 'https://ror.org/041wapp49', 'no_lang_code', 1, 'https://ror.org/041wapp49 Pain Care Labs (United States)'),
(71654, 'https://ror.org/01d4cy209', 'no_lang_code', 1, 'https://ror.org/01d4cy209 NanoRidge (United States)'),
(71655, 'https://ror.org/02enjva13', 'no_lang_code', 1, 'https://ror.org/02enjva13 BitPlus (United States)'),
(71656, 'https://ror.org/034ca5920', 'no_lang_code', 1, 'https://ror.org/034ca5920 TSI (United States)'),
(71657, 'https://ror.org/02p6hd207', 'no_lang_code', 1, 'https://ror.org/02p6hd207 MMR Technologies (United States)'),
(71658, 'https://ror.org/01mj57h56', 'no_lang_code', 1, 'https://ror.org/01mj57h56 NanoSD (United States)'),
(71659, 'https://ror.org/040yamy52', 'no_lang_code', 1, 'https://ror.org/040yamy52 Multidisciplinary Software Systems Research (United States)'),
(71660, 'https://ror.org/02f1wt137', 'no_lang_code', 1, 'https://ror.org/02f1wt137 Nanoshell Company (United States)'),
(71661, 'https://ror.org/03fg3n924', 'no_lang_code', 1, 'https://ror.org/03fg3n924 Mobile Foundations (United States)'),
(71662, 'https://ror.org/01z6qfp70', 'no_lang_code', 1, 'https://ror.org/01z6qfp70 Neural Analytics (United States)'),
(71663, 'https://ror.org/03jcfvc38', 'no_lang_code', 1, 'https://ror.org/03jcfvc38 Multibeam (United States)'),
(71664, 'https://ror.org/006qepw66', 'no_lang_code', 1, 'https://ror.org/006qepw66 Moco (United States)'),
(71665, 'https://ror.org/04p42tf84', 'no_lang_code', 1, 'https://ror.org/04p42tf84 Nanosolar (United States)'),
(71666, 'https://ror.org/059ma6x24', 'no_lang_code', 1, 'https://ror.org/059ma6x24 Mod9 Technologies (United States)'),
(71667, 'https://ror.org/03knm9781', 'no_lang_code', 1, 'https://ror.org/03knm9781 Verasci (United States)'),
(71668, 'https://ror.org/05ps0t235', 'no_lang_code', 1, 'https://ror.org/05ps0t235 NanoVector (United States)'),
(71669, 'https://ror.org/05satps27', 'no_lang_code', 1, 'https://ror.org/05satps27 Modular Bionics (United States)'),
(71670, 'https://ror.org/017gepx61', 'no_lang_code', 1, 'https://ror.org/017gepx61 Modumetal (United States)'),
(71671, 'https://ror.org/03r5tj610', 'no_lang_code', 1, 'https://ror.org/03r5tj610 Natel Energy (United States)'),
(71672, 'https://ror.org/04693s912', 'no_lang_code', 1, 'https://ror.org/04693s912 NeuroGenetic Pharmaceuticals (United States)'),
(71673, 'https://ror.org/01vy25d07', 'no_lang_code', 1, 'https://ror.org/01vy25d07 Neurotargeting (United States)'),
(71674, 'https://ror.org/04zkxj954', 'no_lang_code', 1, 'https://ror.org/04zkxj954 Molecular Pathology Laboratory Network (United States)'),
(71675, 'https://ror.org/04h6dxr28', 'no_lang_code', 1, 'https://ror.org/04h6dxr28 Native American Technologies (United States)'),
(71676, 'https://ror.org/04tgzc455', 'no_lang_code', 1, 'https://ror.org/04tgzc455 Natural Process Design (United States)'),
(71677, 'https://ror.org/05jkqfy36', 'no_lang_code', 1, 'https://ror.org/05jkqfy36 Nevada Composites (United States)'),
(71678, 'https://ror.org/02vtv9k98', 'no_lang_code', 1, 'https://ror.org/02vtv9k98 Muse Technologies (United States)'),
(71679, 'https://ror.org/04a6c5752', 'no_lang_code', 1, 'https://ror.org/04a6c5752 Navitas Systems (United States)'),
(71680, 'https://ror.org/03k8xc952', 'no_lang_code', 1, 'https://ror.org/03k8xc952 NexGen Composites (United States)'),
(71681, 'https://ror.org/01z0qxf72', 'no_lang_code', 1, 'https://ror.org/01z0qxf72 NevadaNano (United States)'),
(71682, 'https://ror.org/059vy2q86', 'no_lang_code', 1, 'https://ror.org/059vy2q86 Nexgenia (United States)'),
(71683, 'https://ror.org/01p5b6z49', 'no_lang_code', 1, 'https://ror.org/01p5b6z49 Nota Laboratories (United States)'),
(71684, 'https://ror.org/03k9mc136', 'no_lang_code', 1, 'https://ror.org/03k9mc136 Nexogen (United States)'),
(71685, 'https://ror.org/047r0b042', 'no_lang_code', 1, 'https://ror.org/047r0b042 New Dimensions Research (United States)'),
(71686, 'https://ror.org/03t3qk565', 'no_lang_code', 1, 'https://ror.org/03t3qk565 Nou Systems (United States)'),
(71687, 'https://ror.org/02sqq3c53', 'no_lang_code', 1, 'https://ror.org/02sqq3c53 Next Energy Technologies (United States)'),
(71688, 'https://ror.org/05b0h7m33', 'en', 1, 'https://ror.org/05b0h7m33 ABC for Health'),
(71689, 'https://ror.org/00z5k4y41', 'no_lang_code', 1, 'https://ror.org/00z5k4y41 Novel (United States)'),
(71690, 'https://ror.org/00a5h4251', 'no_lang_code', 1, 'https://ror.org/00a5h4251 Noveratech (United States)'),
(71691, 'https://ror.org/047zh6a56', 'no_lang_code', 1, 'https://ror.org/047zh6a56 NHanced Semiconductors (United States)'),
(71692, 'https://ror.org/00d8dyw76', 'no_lang_code', 1, 'https://ror.org/00d8dyw76 Novilytic (United States)'),
(71693, 'https://ror.org/05rzgnh09', 'no_lang_code', 1, 'https://ror.org/05rzgnh09 Mycomed (United States)'),
(71694, 'https://ror.org/03cgqjh12', 'no_lang_code', 1, 'https://ror.org/03cgqjh12 US Night Vision (United States)'),
(71695, 'https://ror.org/015s7dk89', 'no_lang_code', 1, 'https://ror.org/015s7dk89 Nima (United States)'),
(71696, 'https://ror.org/04q731p20', 'no_lang_code', 1, 'https://ror.org/04q731p20 Nuclear Plasma Laboratories (United States)'),
(71697, 'https://ror.org/057052843', 'no_lang_code', 1, 'https://ror.org/057052843 Nimbic Systems (United States)'),
(71698, 'https://ror.org/00meeqp26', 'no_lang_code', 1, 'https://ror.org/00meeqp26 nPoint (United States)'),
(71699, 'https://ror.org/04k6h0163', 'no_lang_code', 1, 'https://ror.org/04k6h0163 Nrgtek (United States)'),
(71700, 'https://ror.org/05j97vt75', 'no_lang_code', 1, 'https://ror.org/05j97vt75 Nimbis Services (United States)'),
(71701, 'https://ror.org/00e6dgm57', 'no_lang_code', 1, 'https://ror.org/00e6dgm57 NewPath Learning (United States)'),
(71702, 'https://ror.org/04g8qkx61', 'no_lang_code', 1, 'https://ror.org/04g8qkx61 Newport Sensors (United States)'),
(71703, 'https://ror.org/05y07gt41', 'no_lang_code', 1, 'https://ror.org/05y07gt41 NxGEN Electronics (United States)'),
(71704, 'https://ror.org/02ag5zv31', 'no_lang_code', 1, 'https://ror.org/02ag5zv31 Zepto (United States)'),
(71705, 'https://ror.org/04z7mxt48', 'no_lang_code', 1, 'https://ror.org/04z7mxt48 O''Donnell Consulting Engineers (United States)'),
(71706, 'https://ror.org/01bdg6b26', 'no_lang_code', 1, 'https://ror.org/01bdg6b26 Newtec Services Group (United States)'),
(71707, 'https://ror.org/03nwzmg80', 'no_lang_code', 1, 'https://ror.org/03nwzmg80 Oasis Advanced Engineering (United States)'),
(71708, 'https://ror.org/01r2s9d65', 'no_lang_code', 1, 'https://ror.org/01r2s9d65 Ocular Proteomics (United States)'),
(71709, 'https://ror.org/00g2e9181', 'no_lang_code', 1, 'https://ror.org/00g2e9181 Njoy (United States)'),
(71710, 'https://ror.org/03dhfj813', 'no_lang_code', 1, 'https://ror.org/03dhfj813 Omnitech Robotics (United States)'),
(71711, 'https://ror.org/02s79t061', 'no_lang_code', 1, 'https://ror.org/02s79t061 Odyssey Space Research (United States)'),
(71712, 'https://ror.org/01q7fvf45', 'no_lang_code', 1, 'https://ror.org/01q7fvf45 NLA Diagnostics (United States)'),
(71713, 'https://ror.org/02d21wr69', 'no_lang_code', 1, 'https://ror.org/02d21wr69 On Time Systems (United States)'),
(71714, 'https://ror.org/02t1mbc20', 'no_lang_code', 1, 'https://ror.org/02t1mbc20 Nocturnal Product Development (United States)'),
(71715, 'https://ror.org/03bm0js68', 'no_lang_code', 1, 'https://ror.org/03bm0js68 Noddle (United States)'),
(71716, 'https://ror.org/01hktad75', 'no_lang_code', 1, 'https://ror.org/01hktad75 Optimal Solutions Software (United States)'),
(71717, 'https://ror.org/05t1cnz26', 'no_lang_code', 1, 'https://ror.org/05t1cnz26 Optimal Solutions (United States)'),
(71718, 'https://ror.org/05614wx46', 'no_lang_code', 1, 'https://ror.org/05614wx46 Optinav (United States)'),
(71719, 'https://ror.org/02kxycv91', 'no_lang_code', 1, 'https://ror.org/02kxycv91 NonInvasive Technologies (United States)'),
(71720, 'https://ror.org/03m2wvf63', 'no_lang_code', 1, 'https://ror.org/03m2wvf63 Nonlinear Control Strategies (United States)'),
(71721, 'https://ror.org/016715t42', 'no_lang_code', 1, 'https://ror.org/016715t42 One-Cycle Control (United States)'),
(71722, 'https://ror.org/05fn4fm08', 'no_lang_code', 1, 'https://ror.org/05fn4fm08 Optitek (United States)'),
(71723, 'https://ror.org/00wwv7522', 'no_lang_code', 1, 'https://ror.org/00wwv7522 MRJ Consulting (United States)'),
(71724, 'https://ror.org/030503z05', 'no_lang_code', 1, 'https://ror.org/030503z05 ONL Therapeutic (United States)'),
(71725, 'https://ror.org/00ap23p40', 'no_lang_code', 1, 'https://ror.org/00ap23p40 Noom (United States)'),
(71726, 'https://ror.org/05s4ahv53', 'no_lang_code', 1, 'https://ror.org/05s4ahv53 Optodot (United States)'),
(71727, 'https://ror.org/02jxepd37', 'no_lang_code', 1, 'https://ror.org/02jxepd37 Jamboxx (United States)'),
(71728, 'https://ror.org/02m0dvq27', 'no_lang_code', 1, 'https://ror.org/02m0dvq27 Onai (United States)'),
(71729, 'https://ror.org/04tnhnq23', 'no_lang_code', 1, 'https://ror.org/04tnhnq23 Kite (United States)'),
(71730, 'https://ror.org/04jd98e75', 'no_lang_code', 1, 'https://ror.org/04jd98e75 North Star Scientific (United States)'),
(71731, 'https://ror.org/0279hx849', 'no_lang_code', 1, 'https://ror.org/0279hx849 optX Imaging Systems (United States)'),
(71732, 'https://ror.org/00rbzv406', 'no_lang_code', 1, 'https://ror.org/00rbzv406 Object Computing (United States)'),
(71733, 'https://ror.org/0016cbc84', 'no_lang_code', 1, 'https://ror.org/0016cbc84 Northeast Semiconductor (United States)'),
(71734, 'https://ror.org/01kqva520', 'no_lang_code', 1, 'https://ror.org/01kqva520 Opus 12 (United States)'),
(71735, 'https://ror.org/050n5x481', 'no_lang_code', 1, 'https://ror.org/050n5x481 Openbeds (United States)'),
(71736, 'https://ror.org/00m6yzj29', 'no_lang_code', 1, 'https://ror.org/00m6yzj29 Northern Microdesign (United States)'),
(71737, 'https://ror.org/0566myk84', 'no_lang_code', 1, 'https://ror.org/0566myk84 Oral Health Solutions (United States)'),
(71738, 'https://ror.org/00t9fb122', 'no_lang_code', 1, 'https://ror.org/00t9fb122 OpenCell Technologies (United States)'),
(71739, 'https://ror.org/00ef1tn69', 'no_lang_code', 1, 'https://ror.org/00ef1tn69 Northern Power Systems (United States)'),
(71740, 'https://ror.org/05w4tdf58', 'no_lang_code', 1, 'https://ror.org/05w4tdf58 Ocean Bay (United States)'),
(71741, 'https://ror.org/00gzext40', 'no_lang_code', 1, 'https://ror.org/00gzext40 Operative Experience (United States)'),
(71742, 'https://ror.org/00cyj6q75', 'no_lang_code', 1, 'https://ror.org/00cyj6q75 Orbits Lightwave (United States)'),
(71743, 'https://ror.org/05vba0x81', 'no_lang_code', 1, 'https://ror.org/05vba0x81 Omitron (United States)'),
(71744, 'https://ror.org/042mf3776', 'no_lang_code', 1, 'https://ror.org/042mf3776 Ophidion (United States)'),
(71745, 'https://ror.org/02fpqqs63', 'no_lang_code', 1, 'https://ror.org/02fpqqs63 Omni Sciences (United States)'),
(71746, 'https://ror.org/04rfwez56', 'no_lang_code', 1, 'https://ror.org/04rfwez56 Vigor (United States)'),
(71747, 'https://ror.org/02mnkyy74', 'no_lang_code', 1, 'https://ror.org/02mnkyy74 Ozark Integrated Circuits (United States)'),
(71748, 'https://ror.org/00d17v460', 'no_lang_code', 1, 'https://ror.org/00d17v460 Pacific Antenna Systems (United States)'),
(71749, 'https://ror.org/03yc04z38', 'no_lang_code', 1, 'https://ror.org/03yc04z38 Oricula Therapeutics (United States)'),
(71750, 'https://ror.org/019z7bq36', 'no_lang_code', 1, 'https://ror.org/019z7bq36 Opti-Logic (United States)'),
(71751, 'https://ror.org/04qv17s63', 'no_lang_code', 1, 'https://ror.org/04qv17s63 Omniphase Defense Systems (United States)'),
(71752, 'https://ror.org/05m1hk967', 'no_lang_code', 1, 'https://ror.org/05m1hk967 Optical Air Data Systems (United States)'),
(71753, 'https://ror.org/0426eeb63', 'no_lang_code', 1, 'https://ror.org/0426eeb63 Pacific Research Group (United States)'),
(71754, 'https://ror.org/055e56m27', 'no_lang_code', 1, 'https://ror.org/055e56m27 Pacific Research Laboratories (United States)'),
(71755, 'https://ror.org/04jsnej34', 'no_lang_code', 1, 'https://ror.org/04jsnej34 Optical Coating Solutions (United States)'),
(71756, 'https://ror.org/02tcss727', 'no_lang_code', 1, 'https://ror.org/02tcss727 Oryn Therapeutics (United States)'),
(71757, 'https://ror.org/03jte8779', 'no_lang_code', 1, 'https://ror.org/03jte8779 Oceana Sensor (United States)'),
(71758, 'https://ror.org/00vmpjn90', 'no_lang_code', 1, 'https://ror.org/00vmpjn90 Oscilla Power (United States)'),
(71759, 'https://ror.org/03j042d77', 'no_lang_code', 1, 'https://ror.org/03j042d77 Osemi (United States)'),
(71760, 'https://ror.org/04gf5ve13', 'no_lang_code', 1, 'https://ror.org/04gf5ve13 Pandion Laboratories (United States)'),
(71761, 'https://ror.org/0383czy71', 'no_lang_code', 1, 'https://ror.org/0383czy71 Osmic Enterprises (United States)'),
(71762, 'https://ror.org/01nzm8x21', 'no_lang_code', 1, 'https://ror.org/01nzm8x21 Opticyte (United States)'),
(71763, 'https://ror.org/04cexx940', 'no_lang_code', 1, 'https://ror.org/04cexx940 OsteoVantage (United States)'),
(71764, 'https://ror.org/0450da943', 'no_lang_code', 1, 'https://ror.org/0450da943 PapGene (United States)'),
(71765, 'https://ror.org/04wxq1e36', 'no_lang_code', 1, 'https://ror.org/04wxq1e36 Otherlab'),
(71766, 'https://ror.org/00ky63q47', 'no_lang_code', 1, 'https://ror.org/00ky63q47 Pentum Group (United States)'),
(71767, 'https://ror.org/024y05r39', 'no_lang_code', 1, 'https://ror.org/024y05r39 Parabilis Space Technologies (United States)'),
(71768, 'https://ror.org/00e2b9v40', 'no_lang_code', 1, 'https://ror.org/00e2b9v40 Phoenix Digital (United States)'),
(71769, 'https://ror.org/00xgq3z19', 'no_lang_code', 1, 'https://ror.org/00xgq3z19 PeoplePower (United States)'),
(71770, 'https://ror.org/00c8vg612', 'no_lang_code', 1, 'https://ror.org/00c8vg612 Parasim (United States)'),
(71771, 'https://ror.org/0477qv361', 'no_lang_code', 1, 'https://ror.org/0477qv361 PeopleTec (United States)'),
(71772, 'https://ror.org/016d4nc35', 'no_lang_code', 1, 'https://ror.org/016d4nc35 Phoenix Integration (United States)'),
(71773, 'https://ror.org/033hs9r68', 'no_lang_code', 1, 'https://ror.org/033hs9r68 Partek (United States)'),
(71774, 'https://ror.org/02k82p965', 'no_lang_code', 1, 'https://ror.org/02k82p965 Oxford Computer Services (United States)'),
(71775, 'https://ror.org/020gc1m38', 'no_lang_code', 1, 'https://ror.org/020gc1m38 Particle Flux Analytics (United States)'),
(71776, 'https://ror.org/03vgx8d33', 'no_lang_code', 1, 'https://ror.org/03vgx8d33 Phoenix Nest (United States)'),
(71777, 'https://ror.org/04bvhr204', 'no_lang_code', 1, 'https://ror.org/04bvhr204 Éternelle (United States)'),
(71778, 'https://ror.org/0032xfd86', 'no_lang_code', 1, 'https://ror.org/0032xfd86 PerceptiMed (United States)'),
(71779, 'https://ror.org/01rxdrm66', 'no_lang_code', 1, 'https://ror.org/01rxdrm66 Passport Systems (United States)'),
(71780, 'https://ror.org/05ama3a60', 'no_lang_code', 1, 'https://ror.org/05ama3a60 Perceptive Innovations (United States)'),
(71781, 'https://ror.org/00cs5an78', 'no_lang_code', 1, 'https://ror.org/00cs5an78 Pixel Velocity (United States)'),
(71782, 'https://ror.org/03dyq3r35', 'no_lang_code', 1, 'https://ror.org/03dyq3r35 Path BioAnalytics (United States)'),
(71783, 'https://ror.org/05h0yx811', 'no_lang_code', 1, 'https://ror.org/05h0yx811 Forte (United States)'),
(71784, 'https://ror.org/03gejkf67', 'no_lang_code', 1, 'https://ror.org/03gejkf67 Eloquence Communications (United States)'),
(71785, 'https://ror.org/04y72be90', 'no_lang_code', 1, 'https://ror.org/04y72be90 Leyard (United States)'),
(71786, 'https://ror.org/05288bk55', 'no_lang_code', 1, 'https://ror.org/05288bk55 PatientsVoices (United States)'),
(71787, 'https://ror.org/01yxc0v75', 'no_lang_code', 1, 'https://ror.org/01yxc0v75 Photon Spot (United States)'),
(71788, 'https://ror.org/03ezxy459', 'no_lang_code', 1, 'https://ror.org/03ezxy459 Patz Materials and Technologies (United States)'),
(71789, 'https://ror.org/02s8g2315', 'no_lang_code', 1, 'https://ror.org/02s8g2315 Photonic Associates (United States)'),
(71790, 'https://ror.org/01a2p6r88', 'no_lang_code', 1, 'https://ror.org/01a2p6r88 ConsenSys (United States)'),
(71791, 'https://ror.org/0160qej13', 'no_lang_code', 1, 'https://ror.org/0160qej13 PhotoniCare (United States)'),
(71792, 'https://ror.org/01yphfr75', 'no_lang_code', 1, 'https://ror.org/01yphfr75 Planetary Systems (United States)'),
(71793, 'https://ror.org/01hyt0e74', 'no_lang_code', 1, 'https://ror.org/01hyt0e74 Plasma Controls (United States)'),
(71794, 'https://ror.org/0125wtc60', 'no_lang_code', 1, 'https://ror.org/0125wtc60 Pendar Technologies (United States)'),
(71795, 'https://ror.org/04hecxj58', 'no_lang_code', 1, 'https://ror.org/04hecxj58 Perlegen (United States)'),
(71796, 'https://ror.org/01pczxn53', 'no_lang_code', 1, 'https://ror.org/01pczxn53 Platelet BioGenesis (United States)'),
(71797, 'https://ror.org/00s3ykq41', 'no_lang_code', 1, 'https://ror.org/00s3ykq41 Photonics (United States)'),
(71798, 'https://ror.org/00g7r3086', 'no_lang_code', 1, 'https://ror.org/00g7r3086 Perpetua (United States)'),
(71799, 'https://ror.org/03kv24k79', 'no_lang_code', 1, 'https://ror.org/03kv24k79 Platinum Group Coatings (United States)'),
(71800, 'https://ror.org/0524fk031', 'no_lang_code', 1, 'https://ror.org/0524fk031 PLC Connections (United States)'),
(71801, 'https://ror.org/03mhtm362', 'no_lang_code', 1, 'https://ror.org/03mhtm362 Phyre Technologies (United States)'),
(71802, 'https://ror.org/05wh29r58', 'no_lang_code', 1, 'https://ror.org/05wh29r58 Persyst (United States)'),
(71803, 'https://ror.org/01sevvg89', 'no_lang_code', 1, 'https://ror.org/01sevvg89 Varidesk (United States)'),
(71804, 'https://ror.org/02tejbs37', 'no_lang_code', 1, 'https://ror.org/02tejbs37 Plureon (United States)'),
(71805, 'https://ror.org/01xq34439', 'no_lang_code', 1, 'https://ror.org/01xq34439 Plus Designs (United States)'),
(71806, 'https://ror.org/0140vs727', 'no_lang_code', 1, 'https://ror.org/0140vs727 Potrero Medical (United States)'),
(71807, 'https://ror.org/015q2vx96', 'no_lang_code', 1, 'https://ror.org/015q2vx96 Power+Energy (United States)'),
(71808, 'https://ror.org/059v90v79', 'no_lang_code', 1, 'https://ror.org/059v90v79 PowerPhotonic (United States)'),
(71809, 'https://ror.org/04h3ena29', 'no_lang_code', 1, 'https://ror.org/04h3ena29 Pointwise (United States)'),
(71810, 'https://ror.org/02qq0z290', 'no_lang_code', 1, 'https://ror.org/02qq0z290 Polarix (United States)'),
(71811, 'https://ror.org/000wrzy88', 'no_lang_code', 1, 'https://ror.org/000wrzy88 Pharmabridge (United States)'),
(71812, 'https://ror.org/00fpp6w90', 'no_lang_code', 1, 'https://ror.org/00fpp6w90 PowerFilm (United States)'),
(71813, 'https://ror.org/05nf1fg74', 'no_lang_code', 1, 'https://ror.org/05nf1fg74 Phyto-Technologies (United States)'),
(71814, 'https://ror.org/02k1cbm60', 'no_lang_code', 1, 'https://ror.org/02k1cbm60 PowerHouse Proteomic Systems (United States)'),
(71815, 'https://ror.org/01gystf83', 'no_lang_code', 1, 'https://ror.org/01gystf83 Pollere (United States)'),
(71816, 'https://ror.org/00a082661', 'no_lang_code', 1, 'https://ror.org/00a082661 Pollution Control Technologies (United States)'),
(71817, 'https://ror.org/04rmmkk14', 'no_lang_code', 1, 'https://ror.org/04rmmkk14 Fast Biomedical (United States)'),
(71818, 'https://ror.org/01cte4v14', 'no_lang_code', 1, 'https://ror.org/01cte4v14 PKG (United States)'),
(71819, 'https://ror.org/05nsj1513', 'no_lang_code', 1, 'https://ror.org/05nsj1513 Polyhedron Learning Media (United States)'),
(71820, 'https://ror.org/00x605y09', 'no_lang_code', 1, 'https://ror.org/00x605y09 Praeses (United States)'),
(71821, 'https://ror.org/00x5exn66', 'no_lang_code', 1, 'https://ror.org/00x5exn66 Picoyune (United States)'),
(71822, 'https://ror.org/021xt9947', 'no_lang_code', 1, 'https://ror.org/021xt9947 Polymer Exploration Group (United States)'),
(71823, 'https://ror.org/019t4cq59', 'no_lang_code', 1, 'https://ror.org/019t4cq59 Phase IV (United States)'),
(71824, 'https://ror.org/03gjp8j03', 'no_lang_code', 1, 'https://ror.org/03gjp8j03 Pratt & Miller (United States)'),
(71825, 'https://ror.org/03fn78r73', 'no_lang_code', 1, 'https://ror.org/03fn78r73 Vista Equity Partners (United States)'),
(71826, 'https://ror.org/05vnfvq50', 'no_lang_code', 1, 'https://ror.org/05vnfvq50 DM3D Technology (United States)'),
(71827, 'https://ror.org/01eygpy73', 'no_lang_code', 1, 'https://ror.org/01eygpy73 Phelix Therapeutics (United States)'),
(71828, 'https://ror.org/012g7ks33', 'no_lang_code', 1, 'https://ror.org/012g7ks33 Praxis BioSciences (United States)'),
(71829, 'https://ror.org/04dcrb539', 'no_lang_code', 1, 'https://ror.org/04dcrb539 PVI System Technology (United States)'),
(71830, 'https://ror.org/02rnmms39', 'no_lang_code', 1, 'https://ror.org/02rnmms39 Phelps2020 (United States)'),
(71831, 'https://ror.org/0421cc730', 'no_lang_code', 1, 'https://ror.org/0421cc730 Precision Polyolefins (United States)'),
(71832, 'https://ror.org/001272r51', 'no_lang_code', 1, 'https://ror.org/001272r51 Precision Vision (United States)'),
(71833, 'https://ror.org/00qh9vh90', 'no_lang_code', 1, 'https://ror.org/00qh9vh90 Phiar (United States)'),
(71834, 'https://ror.org/05hg5tz03', 'no_lang_code', 1, 'https://ror.org/05hg5tz03 PreCyte (United States)'),
(71835, 'https://ror.org/05csx4q88', 'no_lang_code', 1, 'https://ror.org/05csx4q88 Professional Analytical and Consulting Services (United States)'),
(71836, 'https://ror.org/05vcz8m66', 'no_lang_code', 1, 'https://ror.org/05vcz8m66 PredictionProbe (United States)'),
(71837, 'https://ror.org/05qavgd28', 'no_lang_code', 1, 'https://ror.org/05qavgd28 Philotek (United States)'),
(71838, 'https://ror.org/049s8hy38', 'no_lang_code', 1, 'https://ror.org/049s8hy38 Q4 (United States)'),
(71839, 'https://ror.org/055298e12', 'no_lang_code', 1, 'https://ror.org/055298e12 PreludeDx (United States)'),
(71840, 'https://ror.org/02xrvxv47', 'no_lang_code', 1, 'https://ror.org/02xrvxv47 Phoenix Analysis and Design Technologies (United States)'),
(71841, 'https://ror.org/0568fdx82', 'no_lang_code', 1, 'https://ror.org/0568fdx82 Expanse (United States)'),
(71842, 'https://ror.org/02kbr4940', 'no_lang_code', 1, 'https://ror.org/02kbr4940 Progressive Expert Consulting (United States)'),
(71843, 'https://ror.org/01p4gwr04', 'no_lang_code', 1, 'https://ror.org/01p4gwr04 Prenosis (United States)'),
(71844, 'https://ror.org/04xmn6g49', 'no_lang_code', 1, 'https://ror.org/04xmn6g49 Rapid Flow (United States)'),
(71845, 'https://ror.org/02v93s037', 'no_lang_code', 1, 'https://ror.org/02v93s037 Pressure Profile Systems (United States)'),
(71846, 'https://ror.org/04h9g9s69', 'no_lang_code', 1, 'https://ror.org/04h9g9s69 PreventAGE Health Care (United States)'),
(71847, 'https://ror.org/02r8vvy38', 'no_lang_code', 1, 'https://ror.org/02r8vvy38 ProLynx (United States)'),
(71848, 'https://ror.org/02d87mf22', 'no_lang_code', 1, 'https://ror.org/02d87mf22 Promentis Pharmaceuticals (United States)'),
(71849, 'https://ror.org/033qh4x19', 'no_lang_code', 1, 'https://ror.org/033qh4x19 Primaira (United States)'),
(71850, 'https://ror.org/00ss6h043', 'no_lang_code', 1, 'https://ror.org/00ss6h043 Promet Optics (United States)'),
(71851, 'https://ror.org/03m78yh78', 'no_lang_code', 1, 'https://ror.org/03m78yh78 Raven (United States)'),
(71852, 'https://ror.org/00snk4s58', 'no_lang_code', 1, 'https://ror.org/00snk4s58 Primus Consulting (United States)'),
(71853, 'https://ror.org/03qy3ay77', 'no_lang_code', 1, 'https://ror.org/03qy3ay77 Princeton BioMeditech (United States)'),
(71854, 'https://ror.org/04kerv846', 'no_lang_code', 1, 'https://ror.org/04kerv846 Pronghorn Technologies (United States)'),
(71855, 'https://ror.org/02rgxac86', 'no_lang_code', 1, 'https://ror.org/02rgxac86 Rayonix (United States)'),
(71856, 'https://ror.org/02nd16181', 'no_lang_code', 1, 'https://ror.org/02nd16181 Princeton Technology Advisors (United States)'),
(71857, 'https://ror.org/00pgx7e04', 'no_lang_code', 1, 'https://ror.org/00pgx7e04 Q-Flex (United States)'),
(71858, 'https://ror.org/03nyrwp51', 'no_lang_code', 1, 'https://ror.org/03nyrwp51 Prioria Robotics (United States)'),
(71859, 'https://ror.org/04tec8s48', 'no_lang_code', 1, 'https://ror.org/04tec8s48 Raytum Photonics (United States)'),
(71860, 'https://ror.org/05xjgsf03', 'no_lang_code', 1, 'https://ror.org/05xjgsf03 Qrono (United States)'),
(71861, 'https://ror.org/05dfdca35', 'no_lang_code', 1, 'https://ror.org/05dfdca35 Private Machines (United States)'),
(71862, 'https://ror.org/017ragh07', 'no_lang_code', 1, 'https://ror.org/017ragh07 ProActive Memory Services (United States)'),
(71863, 'https://ror.org/05mjt9j72', 'no_lang_code', 1, 'https://ror.org/05mjt9j72 RDMChem (United States)'),
(71864, 'https://ror.org/02b6vt253', 'no_lang_code', 1, 'https://ror.org/02b6vt253 Probus (United States)'),
(71865, 'https://ror.org/00ecwxa31', 'no_lang_code', 1, 'https://ror.org/00ecwxa31 Procedyne (United States)'),
(71866, 'https://ror.org/036nedf06', 'no_lang_code', 1, 'https://ror.org/036nedf06 Protection Engineering Consultants (United States)'),
(71867, 'https://ror.org/04y8bah34', 'no_lang_code', 1, 'https://ror.org/04y8bah34 Respec (United States)'),
(71868, 'https://ror.org/044tnwv36', 'no_lang_code', 1, 'https://ror.org/044tnwv36 ProteinOne (United States)'),
(71869, 'https://ror.org/04s0whm40', 'no_lang_code', 1, 'https://ror.org/04s0whm40 QT Medical (United States)'),
(71870, 'https://ror.org/04p52xd50', 'no_lang_code', 1, 'https://ror.org/04p52xd50 Renaissance Services (United States)'),
(71871, 'https://ror.org/00a6gz882', 'no_lang_code', 1, 'https://ror.org/00a6gz882 Renova Life (United States)'),
(71872, 'https://ror.org/04vpnsj12', 'no_lang_code', 1, 'https://ror.org/04vpnsj12 Quantix (United States)'),
(71873, 'https://ror.org/01pz1d457', 'no_lang_code', 1, 'https://ror.org/01pz1d457 Quantum Devices (United States)'),
(71874, 'https://ror.org/01wrvt331', 'no_lang_code', 1, 'https://ror.org/01wrvt331 Proteos (United States)'),
(71875, 'https://ror.org/00rqckp81', 'no_lang_code', 1, 'https://ror.org/00rqckp81 Quantum Diamond Technologies (United States)'),
(71876, 'https://ror.org/01en28k31', 'no_lang_code', 1, 'https://ror.org/01en28k31 Renova Therapeutics (United States)'),
(71877, 'https://ror.org/007ctn309', 'no_lang_code', 1, 'https://ror.org/007ctn309 Protochips (United States)'),
(71878, 'https://ror.org/04j5v1d21', 'no_lang_code', 1, 'https://ror.org/04j5v1d21 Real Prevention (United States)'),
(71879, 'https://ror.org/04hysr708', 'no_lang_code', 1, 'https://ror.org/04hysr708 Quantum Northwest (United States)'),
(71880, 'https://ror.org/03vyrq198', 'no_lang_code', 1, 'https://ror.org/03vyrq198 Quantum Opus (United States)'),
(71881, 'https://ror.org/02nmke270', 'no_lang_code', 1, 'https://ror.org/02nmke270 ProtonVDA (United States)'),
(71882, 'https://ror.org/02my5pn34', 'no_lang_code', 1, 'https://ror.org/02my5pn34 Renuvix (United States)'),
(71883, 'https://ror.org/00c2nxt31', 'no_lang_code', 1, 'https://ror.org/00c2nxt31 Querium (United States)'),
(71884, 'https://ror.org/05qxbj292', 'no_lang_code', 1, 'https://ror.org/05qxbj292 PsiKick (United States)'),
(71885, 'https://ror.org/055qcrf91', 'no_lang_code', 1, 'https://ror.org/055qcrf91 Quest Thermal Group (United States)'),
(71886, 'https://ror.org/02q2v3574', 'no_lang_code', 1, 'https://ror.org/02q2v3574 Research Applications (United States)'),
(71887, 'https://ror.org/045wyxp42', 'no_lang_code', 1, 'https://ror.org/045wyxp42 Quick-Med Technologies (United States)'),
(71888, 'https://ror.org/00qqrrn06', 'no_lang_code', 1, 'https://ror.org/00qqrrn06 Rebion (United States)'),
(71889, 'https://ror.org/04taye489', 'no_lang_code', 1, 'https://ror.org/04taye489 Hesco (United States)'),
(71890, 'https://ror.org/05jvx3v75', 'no_lang_code', 1, 'https://ror.org/05jvx3v75 Rebound (United States)'),
(71891, 'https://ror.org/02htdbf38', 'no_lang_code', 1, 'https://ror.org/02htdbf38 Quimba Software (United States)'),
(71892, 'https://ror.org/05y33n643', 'no_lang_code', 1, 'https://ror.org/05y33n643 PICO Technologies (United States)'),
(71893, 'https://ror.org/05kkb8h54', 'no_lang_code', 1, 'https://ror.org/05kkb8h54 Qusemde (United States)'),
(71894, 'https://ror.org/00wn45376', 'no_lang_code', 1, 'https://ror.org/00wn45376 CCP Technologies (United States)'),
(71895, 'https://ror.org/05df1km16', 'no_lang_code', 1, 'https://ror.org/05df1km16 Qynergy (United States)'),
(71896, 'https://ror.org/02c3crq07', 'no_lang_code', 1, 'https://ror.org/02c3crq07 RHK Technology (United States)'),
(71897, 'https://ror.org/014tnpn30', 'no_lang_code', 1, 'https://ror.org/014tnpn30 Recovery Record (United States)'),
(71898, 'https://ror.org/03na1cy38', 'no_lang_code', 1, 'https://ror.org/03na1cy38 R-Dex Systems (United States)'),
(71899, 'https://ror.org/05czpzc54', 'no_lang_code', 1, 'https://ror.org/05czpzc54 Recursion (United States)'),
(71900, 'https://ror.org/00qdw5r51', 'no_lang_code', 1, 'https://ror.org/00qdw5r51 Research, Evaluation and Social Solutions (United States)'),
(71901, 'https://ror.org/01ky4ht91', 'no_lang_code', 1, 'https://ror.org/01ky4ht91 Redbud Labs (United States)'),
(71902, 'https://ror.org/02pjjh503', 'no_lang_code', 1, 'https://ror.org/02pjjh503 Euphrates Vascular (United States)'),
(71903, 'https://ror.org/02d6wr926', 'no_lang_code', 1, 'https://ror.org/02d6wr926 Radial Analytics (United States)'),
(71904, 'https://ror.org/00tna8k65', 'no_lang_code', 1, 'https://ror.org/00tna8k65 Purilogics (United States)'),
(71905, 'https://ror.org/02p5jez93', 'no_lang_code', 1, 'https://ror.org/02p5jez93 Resolute Marine Energy (United States)'),
(71906, 'https://ror.org/036dvvv65', 'no_lang_code', 1, 'https://ror.org/036dvvv65 Radianse (United States)'),
(71907, 'https://ror.org/036zxb972', 'no_lang_code', 1, 'https://ror.org/036zxb972 Pursuant Health (United States)'),
(71908, 'https://ror.org/02bhkz014', 'no_lang_code', 1, 'https://ror.org/02bhkz014 Redwood Scientific (United States)'),
(71909, 'https://ror.org/04f8j4q19', 'no_lang_code', 1, 'https://ror.org/04f8j4q19 Response Technologies (United States)'),
(71910, 'https://ror.org/03qzgs943', 'no_lang_code', 1, 'https://ror.org/03qzgs943 Radiation Safety Engineering (United States)'),
(71911, 'https://ror.org/00gvawq92', 'no_lang_code', 1, 'https://ror.org/00gvawq92 Reflexion Health (United States)'),
(71912, 'https://ror.org/02pth2p46', 'no_lang_code', 1, 'https://ror.org/02pth2p46 Radiometrics (United States)'),
(71913, 'https://ror.org/05e89f902', 'no_lang_code', 1, 'https://ror.org/05e89f902 R3Logic (United States)'),
(71914, 'https://ror.org/024hp8310', 'no_lang_code', 1, 'https://ror.org/024hp8310 Radix (United States)'),
(71915, 'https://ror.org/02rvhvg10', 'no_lang_code', 1, 'https://ror.org/02rvhvg10 Ressler & Associates (United States)'),
(71916, 'https://ror.org/03988gk19', 'no_lang_code', 1, 'https://ror.org/03988gk19 RiboNova (United States)'),
(71917, 'https://ror.org/03nhrqg41', 'no_lang_code', 1, 'https://ror.org/03nhrqg41 ReThink Medical (United States)'),
(71918, 'https://ror.org/02chjw737', 'no_lang_code', 1, 'https://ror.org/02chjw737 Ramdo (United States)'),
(71919, 'https://ror.org/02pectn41', 'no_lang_code', 1, 'https://ror.org/02pectn41 RetiVue (United States)'),
(71920, 'https://ror.org/05nv8db86', 'no_lang_code', 1, 'https://ror.org/05nv8db86 RxFunction (United States)'),
(71921, 'https://ror.org/01zw36675', 'no_lang_code', 1, 'https://ror.org/01zw36675 RetrieverTech (United States)'),
(71922, 'https://ror.org/03av8vw41', 'no_lang_code', 1, 'https://ror.org/03av8vw41 Extremiti3D (United States)'),
(71923, 'https://ror.org/01r9z2t07', 'no_lang_code', 1, 'https://ror.org/01r9z2t07 Reinhart & Associates (United States)'),
(71924, 'https://ror.org/05e423n96', 'no_lang_code', 1, 'https://ror.org/05e423n96 naviHealth (United States)'),
(71925, 'https://ror.org/00tjt8p18', 'no_lang_code', 1, 'https://ror.org/00tjt8p18 RF Laboratories (United States)'),
(71926, 'https://ror.org/00mmqn314', 'no_lang_code', 1, 'https://ror.org/00mmqn314 Rincon Research (United States)'),
(71927, 'https://ror.org/031sjre66', 'no_lang_code', 1, 'https://ror.org/031sjre66 JIT Labs (United States)'),
(71928, 'https://ror.org/04dvvw492', 'no_lang_code', 1, 'https://ror.org/04dvvw492 Riparian Pharmaceuticals (United States)'),
(71929, 'https://ror.org/012qgxn42', 'no_lang_code', 1, 'https://ror.org/012qgxn42 Secondpeak (United States)'),
(71930, 'https://ror.org/040b2zb02', 'no_lang_code', 1, 'https://ror.org/040b2zb02 Riptide Autonomous Solutions (United States)'),
(71931, 'https://ror.org/01bnwnv33', 'no_lang_code', 1, 'https://ror.org/01bnwnv33 S&K Aerospace (United States)'),
(71932, 'https://ror.org/057ez4c69', 'no_lang_code', 1, 'https://ror.org/057ez4c69 Recon Dynamics (United States)'),
(71933, 'https://ror.org/03gnk9609', 'no_lang_code', 1, 'https://ror.org/03gnk9609 Sab Biotherapeutics (United States)'),
(71934, 'https://ror.org/03vhsyq48', 'no_lang_code', 1, 'https://ror.org/03vhsyq48 Sabre Engineering (United States)'),
(71935, 'https://ror.org/027xaw831', 'no_lang_code', 1, 'https://ror.org/027xaw831 SafelyYou (United States)'),
(71936, 'https://ror.org/01w50w965', 'no_lang_code', 1, 'https://ror.org/01w50w965 Robocasting (United States)'),
(71937, 'https://ror.org/00h46mj69', 'no_lang_code', 1, 'https://ror.org/00h46mj69 Seer Systems (United States)'),
(71938, 'https://ror.org/00phja430', 'no_lang_code', 1, 'https://ror.org/00phja430 Science and Technology in Atmospheric Research (United States)'),
(71939, 'https://ror.org/0119k2y25', 'no_lang_code', 1, 'https://ror.org/0119k2y25 Safeware Engineering (United States)'),
(71940, 'https://ror.org/01kkmzs26', 'no_lang_code', 1, 'https://ror.org/01kkmzs26 Seriad (United States)'),
(71941, 'https://ror.org/05xp03991', 'no_lang_code', 1, 'https://ror.org/05xp03991 Robotic Technology (United States)'),
(71942, 'https://ror.org/00h8xmr33', 'no_lang_code', 1, 'https://ror.org/00h8xmr33 Science Learning Resources (United States)'),
(71943, 'https://ror.org/03s1n7a78', 'no_lang_code', 1, 'https://ror.org/03s1n7a78 Carbon Block Technology (United States)'),
(71944, 'https://ror.org/01mdf9741', 'no_lang_code', 1, 'https://ror.org/01mdf9741 Old Harbor Native (United States)'),
(71945, 'https://ror.org/05h5vav12', 'no_lang_code', 1, 'https://ror.org/05h5vav12 Robust Analysis (United States)'),
(71946, 'https://ror.org/02sjef513', 'no_lang_code', 1, 'https://ror.org/02sjef513 ScienceTomorrow (United States)'),
(71947, 'https://ror.org/056qeft95', 'no_lang_code', 1, 'https://ror.org/056qeft95 Salus (United States)'),
(71948, 'https://ror.org/04m70k935', 'no_lang_code', 1, 'https://ror.org/04m70k935 Roccor (United States)'),
(71949, 'https://ror.org/03vmxd681', 'no_lang_code', 1, 'https://ror.org/03vmxd681 Scientific Computing Associates (United States)'),
(71950, 'https://ror.org/03j2gz928', 'no_lang_code', 1, 'https://ror.org/03j2gz928 Semandex Networks (United States)'),
(71951, 'https://ror.org/036j90q35', 'no_lang_code', 1, 'https://ror.org/036j90q35 Rockstep Solutions (United States)'),
(71952, 'https://ror.org/01mkqvv94', 'no_lang_code', 1, 'https://ror.org/01mkqvv94 Semba Biosciences (United States)'),
(71953, 'https://ror.org/05115zx74', 'no_lang_code', 1, 'https://ror.org/05115zx74 Sample6 (United States)'),
(71954, 'https://ror.org/04r7sbn40', 'no_lang_code', 1, 'https://ror.org/04r7sbn40 SemQuest (United States)'),
(71955, 'https://ror.org/048kr8422', 'no_lang_code', 1, 'https://ror.org/048kr8422 Rocky Mountain Scientific Laboratory (United States)'),
(71956, 'https://ror.org/02bh52216', 'no_lang_code', 1, 'https://ror.org/02bh52216 SeNA Research (United States)'),
(71957, 'https://ror.org/00pmn2q29', 'no_lang_code', 1, 'https://ror.org/00pmn2q29 Sencera Energy (United States)'),
(71958, 'https://ror.org/05f14j834', 'no_lang_code', 1, 'https://ror.org/05f14j834 R.M. Associates (United States)'),
(71959, 'https://ror.org/01s3wja21', 'no_lang_code', 1, 'https://ror.org/01s3wja21 Scientific Technologies Corporation (United States)'),
(71960, 'https://ror.org/04th9rm48', 'no_lang_code', 1, 'https://ror.org/04th9rm48 Senseeker Engineering (United States)'),
(71961, 'https://ror.org/02mb1sp44', 'no_lang_code', 1, 'https://ror.org/02mb1sp44 Royal Caliber (United States)'),
(71962, 'https://ror.org/01kkwex59', 'no_lang_code', 1, 'https://ror.org/01kkwex59 Scientific Toolworks (United States)'),
(71963, 'https://ror.org/044j7ag44', 'no_lang_code', 1, 'https://ror.org/044j7ag44 ForteBio (United States)'),
(71964, 'https://ror.org/02fk0da73', 'no_lang_code', 1, 'https://ror.org/02fk0da73 Sciogen (United States)'),
(71965, 'https://ror.org/00yc2my06', 'no_lang_code', 1, 'https://ror.org/00yc2my06 Sarcos (United States)'),
(71966, 'https://ror.org/02set1z89', 'no_lang_code', 1, 'https://ror.org/02set1z89 Sarda (United States)'),
(71967, 'https://ror.org/05ddbzg58', 'no_lang_code', 1, 'https://ror.org/05ddbzg58 Sarfez (United States)'),
(71968, 'https://ror.org/0012d5512', 'no_lang_code', 1, 'https://ror.org/0012d5512 SensoDx (United States)'),
(71969, 'https://ror.org/03tnkxb28', 'no_lang_code', 1, 'https://ror.org/03tnkxb28 RTS Labs (United States)'),
(71970, 'https://ror.org/022nx3d63', 'no_lang_code', 1, 'https://ror.org/022nx3d63 Savari (United States)'),
(71971, 'https://ror.org/0441qqc51', 'no_lang_code', 1, 'https://ror.org/0441qqc51 Scomm (United States)'),
(71972, 'https://ror.org/023098y68', 'no_lang_code', 1, 'https://ror.org/023098y68 Rubicon Technology (United States)'),
(71973, 'https://ror.org/000zes111', 'no_lang_code', 1, 'https://ror.org/000zes111 Sensopath Technologies (United States)'),
(71974, 'https://ror.org/03yx1ht46', 'no_lang_code', 1, 'https://ror.org/03yx1ht46 Savi (United States)'),
(71975, 'https://ror.org/04gmecg65', 'no_lang_code', 1, 'https://ror.org/04gmecg65 Runtime Verification (United States)'),
(71976, 'https://ror.org/01casvr19', 'no_lang_code', 1, 'https://ror.org/01casvr19 Scribe Biosciences (United States)'),
(71977, 'https://ror.org/05vxb7888', 'no_lang_code', 1, 'https://ror.org/05vxb7888 Schell Games (United States)'),
(71978, 'https://ror.org/01mbbap52', 'no_lang_code', 1, 'https://ror.org/01mbbap52 RTI (United States)'),
(71979, 'https://ror.org/00t5ata22', 'no_lang_code', 1, 'https://ror.org/00t5ata22 Scribner (United States)'),
(71980, 'https://ror.org/02807xv41', 'no_lang_code', 1, 'https://ror.org/02807xv41 Scripps Laboratories (United States)'),
(71981, 'https://ror.org/00fzcyf28', 'no_lang_code', 1, 'https://ror.org/00fzcyf28 Royal Engineered Composites (United States)'),
(71982, 'https://ror.org/01nfd5g36', 'no_lang_code', 1, 'https://ror.org/01nfd5g36 SDI Engineering (United States)'),
(71983, 'https://ror.org/01vv3bt38', 'no_lang_code', 1, 'https://ror.org/01vv3bt38 Vectrus (United States)'),
(71984, 'https://ror.org/01qnpya73', 'no_lang_code', 1, 'https://ror.org/01qnpya73 Signature Analytics (United States)'),
(71985, 'https://ror.org/01n8pt985', 'no_lang_code', 1, 'https://ror.org/01n8pt985 Seafire Micros (United States)'),
(71986, 'https://ror.org/00hgn5a42', 'no_lang_code', 1, 'https://ror.org/00hgn5a42 Sentien (United States)'),
(71987, 'https://ror.org/03x82b295', 'no_lang_code', 1, 'https://ror.org/03x82b295 Sila Nanotechnologies (United States)'),
(71988, 'https://ror.org/00yfk0297', 'no_lang_code', 1, 'https://ror.org/00yfk0297 Sentimetrix (United States)'),
(71989, 'https://ror.org/038te8s11', 'no_lang_code', 1, 'https://ror.org/038te8s11 Silatronix (United States)'),
(71990, 'https://ror.org/002xr5z77', 'no_lang_code', 1, 'https://ror.org/002xr5z77 SilBiotech (United States)'),
(71991, 'https://ror.org/02qb5y674', 'no_lang_code', 1, 'https://ror.org/02qb5y674 SilcsBio (United States)'),
(71992, 'https://ror.org/05y5sz883', 'no_lang_code', 1, 'https://ror.org/05y5sz883 Sequoia (United States)'),
(71993, 'https://ror.org/05mm6v485', 'no_lang_code', 1, 'https://ror.org/05mm6v485 Silicon Micro Display (United States)'),
(71994, 'https://ror.org/046myzn82', 'no_lang_code', 1, 'https://ror.org/046myzn82 Silk Technologies (United States)'),
(71995, 'https://ror.org/006sjd474', 'no_lang_code', 1, 'https://ror.org/006sjd474 Serimmune (United States)'),
(71996, 'https://ror.org/0197j6223', 'no_lang_code', 1, 'https://ror.org/0197j6223 Sofar Acoustics (United States)'),
(71997, 'https://ror.org/03qmxa265', 'no_lang_code', 1, 'https://ror.org/03qmxa265 Serionix (United States)'),
(71998, 'https://ror.org/00y7m9a70', 'no_lang_code', 1, 'https://ror.org/00y7m9a70 Silver Bullet Solutions (United States)'),
(71999, 'https://ror.org/02nw77796', 'no_lang_code', 1, 'https://ror.org/02nw77796 Sest (United States)'),
(72000, 'https://ror.org/01ba4rc77', 'no_lang_code', 1, 'https://ror.org/01ba4rc77 Silverside Detectors (United States)'),
(72001, 'https://ror.org/04wxb8m29', 'no_lang_code', 1, 'https://ror.org/04wxb8m29 SIM*VIVO (United States)'),
(72002, 'https://ror.org/01aht8130', 'no_lang_code', 1, 'https://ror.org/01aht8130 Simetri (United States)'),
(72003, 'https://ror.org/01xkxj196', 'no_lang_code', 1, 'https://ror.org/01xkxj196 Seward (United States)'),
(72004, 'https://ror.org/00mbpre48', 'no_lang_code', 1, 'https://ror.org/00mbpre48 Solano Pharmaceuticals (United States)'),
(72005, 'https://ror.org/035q5ds08', 'no_lang_code', 1, 'https://ror.org/035q5ds08 Simmtec (United States)'),
(72006, 'https://ror.org/05gaccq28', 'no_lang_code', 1, 'https://ror.org/05gaccq28 Solar Roadways (United States)'),
(72007, 'https://ror.org/030ygf420', 'no_lang_code', 1, 'https://ror.org/030ygf420 Simphotek (United States)'),
(72008, 'https://ror.org/02rv94a40', 'no_lang_code', 1, 'https://ror.org/02rv94a40 Shal Technologies (United States)'),
(72009, 'https://ror.org/03qj9zv39', 'no_lang_code', 1, 'https://ror.org/03qj9zv39 Space Information Laboratories (United States)'),
(72010, 'https://ror.org/042r8hg55', 'no_lang_code', 1, 'https://ror.org/042r8hg55 Solid State Ceramics (United States)'),
(72011, 'https://ror.org/0348zy043', 'no_lang_code', 1, 'https://ror.org/0348zy043 Shape Memory Medical (United States)'),
(72012, 'https://ror.org/05vddc675', 'no_lang_code', 1, 'https://ror.org/05vddc675 Shared Medical Technology (United States)'),
(72013, 'https://ror.org/04ba5ke19', 'no_lang_code', 1, 'https://ror.org/04ba5ke19 Sharma & Associates (United States)'),
(72014, 'https://ror.org/00hxc6390', 'no_lang_code', 1, 'https://ror.org/00hxc6390 NanoGraf (United States)'),
(72015, 'https://ror.org/056q25d31', 'no_lang_code', 1, 'https://ror.org/056q25d31 Sheehan Medical (United States)'),
(72016, 'https://ror.org/013fp1s35', 'no_lang_code', 1, 'https://ror.org/013fp1s35 SiOnyx (United States)'),
(72017, 'https://ror.org/04kryk212', 'no_lang_code', 1, 'https://ror.org/04kryk212 Spatial Cognition (United States)'),
(72018, 'https://ror.org/04gxzna55', 'no_lang_code', 1, 'https://ror.org/04gxzna55 Sippa Solutions (United States)'),
(72019, 'https://ror.org/050chtk28', 'no_lang_code', 1, 'https://ror.org/050chtk28 Shine Micro (United States)'),
(72020, 'https://ror.org/04kbpm904', 'no_lang_code', 1, 'https://ror.org/04kbpm904 Speak Agent (United States)'),
(72021, 'https://ror.org/051zjfd08', 'no_lang_code', 1, 'https://ror.org/051zjfd08 Somnarus (United States)'),
(72022, 'https://ror.org/045qk3139', 'no_lang_code', 1, 'https://ror.org/045qk3139 Shock Transients (United States)'),
(72023, 'https://ror.org/032pj3t23', 'no_lang_code', 1, 'https://ror.org/032pj3t23 SonarMed (United States)'),
(72024, 'https://ror.org/007mkk709', 'no_lang_code', 1, 'https://ror.org/007mkk709 Specialty Devices (United States)'),
(72025, 'https://ror.org/01n1jtd52', 'no_lang_code', 1, 'https://ror.org/01n1jtd52 Sonavex (United States)'),
(72026, 'https://ror.org/00pdfdm61', 'no_lang_code', 1, 'https://ror.org/00pdfdm61 Specialty Materials (United States)'),
(72027, 'https://ror.org/03e6g0j64', 'no_lang_code', 1, 'https://ror.org/03e6g0j64 Shuttle Pharmaceuticals (United States)'),
(72028, 'https://ror.org/00bg5mz75', 'no_lang_code', 1, 'https://ror.org/00bg5mz75 SkEyes Unlimited (United States)'),
(72029, 'https://ror.org/02y3xky07', 'no_lang_code', 1, 'https://ror.org/02y3xky07 Spectabit Optics (United States)'),
(72030, 'https://ror.org/04s87x939', 'no_lang_code', 1, 'https://ror.org/04s87x939 Sonivate Medical (United States)'),
(72031, 'https://ror.org/04084nh70', 'no_lang_code', 1, 'https://ror.org/04084nh70 SpectraDynamics (United States)'),
(72032, 'https://ror.org/04j7dh318', 'no_lang_code', 1, 'https://ror.org/04j7dh318 Skyhaven Systems (United States)'),
(72033, 'https://ror.org/05jckv214', 'no_lang_code', 1, 'https://ror.org/05jckv214 Spectra Group Limited (United States)'),
(72034, 'https://ror.org/048b89934', 'no_lang_code', 1, 'https://ror.org/048b89934 Sonoran Biosciences (United States)'),
(72035, 'https://ror.org/02dgsh587', 'no_lang_code', 1, 'https://ror.org/02dgsh587 SkySentry (United States)'),
(72036, 'https://ror.org/00jv6rk33', 'no_lang_code', 1, 'https://ror.org/00jv6rk33 Nehemiah Security (United States)'),
(72037, 'https://ror.org/00krh1q73', 'no_lang_code', 1, 'https://ror.org/00krh1q73 Smart Electric Grid (United States)'),
(72038, 'https://ror.org/043qmsk75', 'no_lang_code', 1, 'https://ror.org/043qmsk75 Spectradyne (United States)'),
(72039, 'https://ror.org/00shjhx05', 'no_lang_code', 1, 'https://ror.org/00shjhx05 SMD (United States)'),
(72040, 'https://ror.org/00ceqya16', 'no_lang_code', 1, 'https://ror.org/00ceqya16 Soterix Medical (United States)'),
(72041, 'https://ror.org/04k6f4x16', 'en', 1, 'https://ror.org/04k6f4x16 Sphere Institute'),
(72042, 'https://ror.org/001msz730', 'no_lang_code', 1, 'https://ror.org/001msz730 Spectrum Associates (United States)'),
(72043, 'https://ror.org/00y6d4r36', 'no_lang_code', 1, 'https://ror.org/00y6d4r36 Opticslah (United States)'),
(72044, 'https://ror.org/03de09841', 'no_lang_code', 1, 'https://ror.org/03de09841 SoundPipe Therapeutics (United States)'),
(72045, 'https://ror.org/04k7ptd73', 'no_lang_code', 1, 'https://ror.org/04k7ptd73 Spectral Platforms (United States)'),
(72046, 'https://ror.org/01hy7j205', 'no_lang_code', 1, 'https://ror.org/01hy7j205 Altum Pharmaceuticals (Canada)'),
(72047, 'https://ror.org/017pwjv59', 'no_lang_code', 1, 'https://ror.org/017pwjv59 Spectrum Coatings (United States)'),
(72048, 'https://ror.org/02sh2va57', 'no_lang_code', 1, 'https://ror.org/02sh2va57 SpeechVive (United States)'),
(72049, 'https://ror.org/0249hbq40', 'no_lang_code', 1, 'https://ror.org/0249hbq40 WestMountain Asset Management (United States)'),
(72050, 'https://ror.org/03vyewd38', 'no_lang_code', 1, 'https://ror.org/03vyewd38 Spero Devices (United States)'),
(72051, 'https://ror.org/02f33pm60', 'en', 1, 'https://ror.org/02f33pm60 Scottish Universities Insight Institute'),
(72052, 'https://ror.org/04vgqwj46', 'no_lang_code', 1, 'https://ror.org/04vgqwj46 Sigmatech (United States)'),
(72053, 'https://ror.org/04mnvpk76', 'no_lang_code', 1, 'https://ror.org/04mnvpk76 Diagnostic Photonics (United States)'),
(72054, 'https://ror.org/01nssfy55', 'no_lang_code', 1, 'https://ror.org/01nssfy55 Signals Analytics (United States)'),
(72055, 'https://ror.org/02hf1dy84', 'no_lang_code', 1, 'https://ror.org/02hf1dy84 Laboratory Catalyst Systems (United States)'),
(72056, 'https://ror.org/01119m545', 'no_lang_code', 1, 'https://ror.org/01119m545 Stf Technologies (United States)'),
(72057, 'https://ror.org/01qa1m185', 'no_lang_code', 1, 'https://ror.org/01qa1m185 SignalRx Pharmaceuticals (United States)');
INSERT INTO `rors` VALUES
(72058, 'https://ror.org/00tecmr39', 'no_lang_code', 1, 'https://ror.org/00tecmr39 Solutions Through Innovative Technologies (United States)'),
(72059, 'https://ror.org/04rrhkc58', 'en', 1, 'https://ror.org/04rrhkc58 MODUL University Dubai'),
(72060, 'https://ror.org/00mn4cb09', 'no_lang_code', 1, 'https://ror.org/00mn4cb09 Surfx Technologies (United States)'),
(72061, 'https://ror.org/009m9x557', 'no_lang_code', 1, 'https://ror.org/009m9x557 Storagenergy Technologies (United States)'),
(72062, 'https://ror.org/03p1mkz49', 'no_lang_code', 1, 'https://ror.org/03p1mkz49 SuviCa (United States)'),
(72063, 'https://ror.org/008tj1x05', 'no_lang_code', 1, 'https://ror.org/008tj1x05 Strange Loop Games (United States)'),
(72064, 'https://ror.org/04em20x54', 'no_lang_code', 1, 'https://ror.org/04em20x54 SVXR (United States)'),
(72065, 'https://ror.org/02088r143', 'no_lang_code', 1, 'https://ror.org/02088r143 Springstar (United States)'),
(72066, 'https://ror.org/04wd9yj02', 'no_lang_code', 1, 'https://ror.org/04wd9yj02 Strategic Analysis Enterprises (United States)'),
(72067, 'https://ror.org/03vsf4009', 'no_lang_code', 1, 'https://ror.org/03vsf4009 SR2 Group (United States)'),
(72068, 'https://ror.org/026kzh194', 'no_lang_code', 1, 'https://ror.org/026kzh194 Swallow Solutions (United States)'),
(72069, 'https://ror.org/01ftmwd24', 'no_lang_code', 1, 'https://ror.org/01ftmwd24 Stu Segall Productions (United States)'),
(72070, 'https://ror.org/04r99rr28', 'no_lang_code', 1, 'https://ror.org/04r99rr28 Swift Engineering (United States)'),
(72071, 'https://ror.org/01x37s187', 'no_lang_code', 1, 'https://ror.org/01x37s187 Stratom (United States)'),
(72072, 'https://ror.org/049ektt11', 'no_lang_code', 1, 'https://ror.org/049ektt11 Melior Discovery (United States)'),
(72073, 'https://ror.org/000n79883', 'no_lang_code', 1, 'https://ror.org/000n79883 Stresau Laboratory (United States)'),
(72074, 'https://ror.org/03x9v0p05', 'no_lang_code', 1, 'https://ror.org/03x9v0p05 Symbiotix Biotherapies (United States)'),
(72075, 'https://ror.org/04j65k592', 'no_lang_code', 1, 'https://ror.org/04j65k592 Stress Engineering Services (United States)'),
(72076, 'https://ror.org/000n9hp16', 'no_lang_code', 1, 'https://ror.org/000n9hp16 Stress Photonics (United States)'),
(72077, 'https://ror.org/04236xc45', 'en', 1, 'https://ror.org/04236xc45 Tama County Public Health & Home Care'),
(72078, 'https://ror.org/02pvg9820', 'no_lang_code', 1, 'https://ror.org/02pvg9820 StackFrame (United States)'),
(72079, 'https://ror.org/03zxxbe81', 'no_lang_code', 1, 'https://ror.org/03zxxbe81 Synaptic Research (United States)'),
(72080, 'https://ror.org/01s8p3017', 'no_lang_code', 1, 'https://ror.org/01s8p3017 Kinection (United States)'),
(72081, 'https://ror.org/02fdbrg94', 'no_lang_code', 1, 'https://ror.org/02fdbrg94 Smith & Co (United States)'),
(72082, 'https://ror.org/02vqkgx45', 'no_lang_code', 1, 'https://ror.org/02vqkgx45 Staib Instruments (United States)'),
(72083, 'https://ror.org/04byng292', 'no_lang_code', 1, 'https://ror.org/04byng292 Syncopated Products (United States)'),
(72084, 'https://ror.org/0558r0k17', 'no_lang_code', 1, 'https://ror.org/0558r0k17 Summit Technology Laboratory (United States)'),
(72085, 'https://ror.org/01m7j1c81', 'no_lang_code', 1, 'https://ror.org/01m7j1c81 Summit Test Solutions (United States)'),
(72086, 'https://ror.org/038cy9619', 'no_lang_code', 1, 'https://ror.org/038cy9619 Syncro Medical Innovations (United States)'),
(72087, 'https://ror.org/01r7f1531', 'no_lang_code', 1, 'https://ror.org/01r7f1531 Synertech PM (United States)'),
(72088, 'https://ror.org/03bkvs475', 'no_lang_code', 1, 'https://ror.org/03bkvs475 Sun Valley Technology (United States)'),
(72089, 'https://ror.org/04h7g2e84', 'no_lang_code', 1, 'https://ror.org/04h7g2e84 Advanced Technology Systems Company (United States)'),
(72090, 'https://ror.org/00ah6pg32', 'no_lang_code', 1, 'https://ror.org/00ah6pg32 SunRay Scientific (United States)'),
(72091, 'https://ror.org/03fpcyw06', 'no_lang_code', 1, 'https://ror.org/03fpcyw06 Synetics Systems Engineering Corp (United States)'),
(72092, 'https://ror.org/01021jx78', 'no_lang_code', 1, 'https://ror.org/01021jx78 Sunset Laboratory (United States)'),
(72093, 'https://ror.org/00vr1xq27', 'no_lang_code', 1, 'https://ror.org/00vr1xq27 Syntermed (United States)'),
(72094, 'https://ror.org/04fd8ks75', 'no_lang_code', 1, 'https://ror.org/04fd8ks75 Starfire Systems (United States)'),
(72095, 'https://ror.org/0284sm129', 'no_lang_code', 1, 'https://ror.org/0284sm129 SysLogic (United States)'),
(72096, 'https://ror.org/04bpmn027', 'no_lang_code', 1, 'https://ror.org/04bpmn027 Starix Technology (United States)'),
(72097, 'https://ror.org/00e27h292', 'no_lang_code', 1, 'https://ror.org/00e27h292 Synthonics (United States)'),
(72098, 'https://ror.org/00rbnp372', 'no_lang_code', 1, 'https://ror.org/00rbnp372 System Dynamics International (United States)'),
(72099, 'https://ror.org/00wg69w90', 'no_lang_code', 1, 'https://ror.org/00wg69w90 Starship Health Technologies (United States)'),
(72100, 'https://ror.org/00v28x102', 'no_lang_code', 1, 'https://ror.org/00v28x102 Syntrotek (United States)'),
(72101, 'https://ror.org/059r91969', 'no_lang_code', 1, 'https://ror.org/059r91969 Starodub (United States)'),
(72102, 'https://ror.org/027ya7x98', 'no_lang_code', 1, 'https://ror.org/027ya7x98 Systemech (United States)'),
(72103, 'https://ror.org/04ssknj45', 'no_lang_code', 1, 'https://ror.org/04ssknj45 Kalusugan + Kalakasan'),
(72104, 'https://ror.org/005ksdp35', 'no_lang_code', 1, 'https://ror.org/005ksdp35 Systems Analytics (United States)'),
(72105, 'https://ror.org/04ffrxx14', 'no_lang_code', 1, 'https://ror.org/04ffrxx14 Star Vision Technologies (United States)'),
(72106, 'https://ror.org/01c5fzf42', 'no_lang_code', 1, 'https://ror.org/01c5fzf42 STC Biologics (United States)'),
(72107, 'https://ror.org/01jdd8n67', 'no_lang_code', 1, 'https://ror.org/01jdd8n67 Tgv (United States)'),
(72108, 'https://ror.org/013wbpj39', 'no_lang_code', 1, 'https://ror.org/013wbpj39 Technology Focus (United States)'),
(72109, 'https://ror.org/015trrs98', 'no_lang_code', 1, 'https://ror.org/015trrs98 T2C-Energy (United States)'),
(72110, 'https://ror.org/01r5f5330', 'no_lang_code', 1, 'https://ror.org/01r5f5330 Tactical Communications Group (United States)'),
(72111, 'https://ror.org/01dr6j212', 'no_lang_code', 1, 'https://ror.org/01dr6j212 Tactical Edge (United States)'),
(72112, 'https://ror.org/05yawdh16', 'no_lang_code', 1, 'https://ror.org/05yawdh16 Stein Seal (United States)'),
(72113, 'https://ror.org/027hpkn10', 'no_lang_code', 1, 'https://ror.org/027hpkn10 Apogee Semiconductor (United States)'),
(72114, 'https://ror.org/03sxw1z96', 'no_lang_code', 1, 'https://ror.org/03sxw1z96 Stellar Exploration (United States)'),
(72115, 'https://ror.org/0382n1947', 'no_lang_code', 1, 'https://ror.org/0382n1947 Step Tools (United States)'),
(72116, 'https://ror.org/00drdr242', 'no_lang_code', 1, 'https://ror.org/00drdr242 AnywherEnergy (United States)'),
(72117, 'https://ror.org/04tjebs40', 'no_lang_code', 1, 'https://ror.org/04tjebs40 TargaGenix (United States)'),
(72118, 'https://ror.org/00jb5hw73', 'no_lang_code', 1, 'https://ror.org/00jb5hw73 Tasso (United States)'),
(72119, 'https://ror.org/04r4a0e87', 'no_lang_code', 1, 'https://ror.org/04r4a0e87 Breezing (United States)'),
(72120, 'https://ror.org/05nbh3n52', 'no_lang_code', 1, 'https://ror.org/05nbh3n52 Teachley (United States)'),
(72121, 'https://ror.org/0564c1v55', 'no_lang_code', 1, 'https://ror.org/0564c1v55 Technovative Applications (United States)'),
(72122, 'https://ror.org/05edycz02', 'no_lang_code', 1, 'https://ror.org/05edycz02 Tec-Masters (United States)'),
(72123, 'https://ror.org/045w00s14', 'no_lang_code', 1, 'https://ror.org/045w00s14 Tech 21 (United States)'),
(72124, 'https://ror.org/051wthz50', 'no_lang_code', 1, 'https://ror.org/051wthz50 Techulon (United States)'),
(72125, 'https://ror.org/056j2ng59', 'no_lang_code', 1, 'https://ror.org/056j2ng59 Techverse (United States)'),
(72126, 'https://ror.org/03j4q6459', 'no_lang_code', 1, 'https://ror.org/03j4q6459 CryoRay Coolers (United States)'),
(72127, 'https://ror.org/03wbd7629', 'no_lang_code', 1, 'https://ror.org/03wbd7629 Tela Innovations (United States)'),
(72128, 'https://ror.org/05fttpt98', 'no_lang_code', 1, 'https://ror.org/05fttpt98 The Eppley Laboratory (United States)'),
(72129, 'https://ror.org/04nt05y93', 'no_lang_code', 1, 'https://ror.org/04nt05y93 Third Pole Therapeutics (United States)'),
(72130, 'https://ror.org/01cepg588', 'no_lang_code', 1, 'https://ror.org/01cepg588 Haleakala Research and Development (United States)'),
(72131, 'https://ror.org/00vdc9c89', 'no_lang_code', 1, 'https://ror.org/00vdc9c89 Technology Applications Group (United States)'),
(72132, 'https://ror.org/04ea7gf23', 'no_lang_code', 1, 'https://ror.org/04ea7gf23 Kendrick Laboratories (United States)'),
(72133, 'https://ror.org/01ya1kj04', 'no_lang_code', 1, 'https://ror.org/01ya1kj04 TechnoView (United States)'),
(72134, 'https://ror.org/012j9gn20', 'no_lang_code', 1, 'https://ror.org/012j9gn20 Mackinac Technology (United States)'),
(72135, 'https://ror.org/02dbe0m82', 'no_lang_code', 1, 'https://ror.org/02dbe0m82 The Open Group (United States)'),
(72136, 'https://ror.org/0120p8e59', 'no_lang_code', 1, 'https://ror.org/0120p8e59 Dynapel Systems (United States)'),
(72137, 'https://ror.org/00npgvt11', 'no_lang_code', 1, 'https://ror.org/00npgvt11 Traverse Biosciences (United States)'),
(72138, 'https://ror.org/036m1sh27', 'no_lang_code', 1, 'https://ror.org/036m1sh27 Thorleaf Research (United States)'),
(72139, 'https://ror.org/044j01f08', 'no_lang_code', 1, 'https://ror.org/044j01f08 Traycer (United States)'),
(72140, 'https://ror.org/04rmh9q90', 'no_lang_code', 1, 'https://ror.org/04rmh9q90 Thornton Tomasetti (United States)'),
(72141, 'https://ror.org/059r55748', 'no_lang_code', 1, 'https://ror.org/059r55748 Triad (United States)'),
(72142, 'https://ror.org/033nee397', 'no_lang_code', 1, 'https://ror.org/033nee397 Theragnostic Technologies (United States)'),
(72143, 'https://ror.org/00wns3e34', 'no_lang_code', 1, 'https://ror.org/00wns3e34 Tiburon Associates (United States)'),
(72144, 'https://ror.org/018g2w043', 'no_lang_code', 1, 'https://ror.org/018g2w043 Therapeutic Vision (United States)'),
(72145, 'https://ror.org/03y71kj48', 'no_lang_code', 1, 'https://ror.org/03y71kj48 Tidewater Consulting (United States)'),
(72146, 'https://ror.org/04bzdmw10', 'no_lang_code', 1, 'https://ror.org/04bzdmw10 Tietronix (United States)'),
(72147, 'https://ror.org/04pa8hw67', 'no_lang_code', 1, 'https://ror.org/04pa8hw67 Lubris BioPharma (United States)'),
(72148, 'https://ror.org/04ecc9p69', 'no_lang_code', 1, 'https://ror.org/04ecc9p69 Tribologix (United States)'),
(72149, 'https://ror.org/01jmes654', 'no_lang_code', 1, 'https://ror.org/01jmes654 Tendeg (United States)'),
(72150, 'https://ror.org/01rm1r711', 'no_lang_code', 1, 'https://ror.org/01rm1r711 United Electric Controls (United States)'),
(72151, 'https://ror.org/029jf8535', 'no_lang_code', 1, 'https://ror.org/029jf8535 Tenet 3 (United States)'),
(72152, 'https://ror.org/04sksp841', 'no_lang_code', 1, 'https://ror.org/04sksp841 Troxler (United States)'),
(72153, 'https://ror.org/027b5pf36', 'no_lang_code', 1, 'https://ror.org/027b5pf36 True (United States)'),
(72154, 'https://ror.org/01sbfc546', 'no_lang_code', 1, 'https://ror.org/01sbfc546 Truventic (United States)'),
(72155, 'https://ror.org/03qfxy306', 'no_lang_code', 1, 'https://ror.org/03qfxy306 Turnkey Design Services (United States)'),
(72156, 'https://ror.org/015dkr863', 'no_lang_code', 1, 'https://ror.org/015dkr863 TCI Peptide Therapeutics (United States)'),
(72157, 'https://ror.org/048mkn426', 'no_lang_code', 1, 'https://ror.org/048mkn426 Tusaar (United States)'),
(72158, 'https://ror.org/0509zzg37', 'en', 1, 'https://ror.org/0509zzg37 Scripps MD Anderson Cancer Center'),
(72159, 'https://ror.org/04dkw8s94', 'no_lang_code', 1, 'https://ror.org/04dkw8s94 Tyvak (United States)'),
(72160, 'https://ror.org/05hmbdg55', 'no_lang_code', 1, 'https://ror.org/05hmbdg55 TerraMetrics (United States)'),
(72161, 'https://ror.org/03cjnda72', 'no_lang_code', 1, 'https://ror.org/03cjnda72 Topia Technology (United States)'),
(72162, 'https://ror.org/02txken21', 'no_lang_code', 1, 'https://ror.org/02txken21 Tesla Laboratories (United States)'),
(72163, 'https://ror.org/01sm6mt92', 'no_lang_code', 1, 'https://ror.org/01sm6mt92 Test & Evaluation Solutions (United States)'),
(72164, 'https://ror.org/009qyxk73', 'no_lang_code', 1, 'https://ror.org/009qyxk73 Theron Pharmaceuticals (United States)'),
(72165, 'https://ror.org/02ps3td80', 'no_lang_code', 1, 'https://ror.org/02ps3td80 Testco (United States)'),
(72166, 'https://ror.org/03233xn13', 'no_lang_code', 1, 'https://ror.org/03233xn13 Torc Robotics (United States)'),
(72167, 'https://ror.org/040e62975', 'no_lang_code', 1, 'https://ror.org/040e62975 US Biotest (United States)'),
(72168, 'https://ror.org/05hv95t40', 'no_lang_code', 1, 'https://ror.org/05hv95t40 Tetra Research (United States)'),
(72169, 'https://ror.org/00ny2ab23', 'no_lang_code', 1, 'https://ror.org/00ny2ab23 Thermal Storage Systems (United States)'),
(72170, 'https://ror.org/0065tt051', 'no_lang_code', 1, 'https://ror.org/0065tt051 U.S. Composites (United States)'),
(72171, 'https://ror.org/02r30tp91', 'no_lang_code', 1, 'https://ror.org/02r30tp91 Thermedical (United States)'),
(72172, 'https://ror.org/01jdgtk90', 'no_lang_code', 1, 'https://ror.org/01jdgtk90 UbiQD (United States)'),
(72173, 'https://ror.org/0046sdb63', 'no_lang_code', 1, 'https://ror.org/0046sdb63 Tosk (United States)'),
(72174, 'https://ror.org/042anhx64', 'no_lang_code', 1, 'https://ror.org/042anhx64 UCT Coatings (United States)'),
(72175, 'https://ror.org/03vx2yp60', 'no_lang_code', 1, 'https://ror.org/03vx2yp60 TeVido BioDevices (United States)'),
(72176, 'https://ror.org/04qxg2139', 'no_lang_code', 1, 'https://ror.org/04qxg2139 Ultra Safe Nuclear Corporation (United States)'),
(72177, 'https://ror.org/05qxpts92', 'no_lang_code', 1, 'https://ror.org/05qxpts92 Tex Tech Industries (United States)'),
(72178, 'https://ror.org/04xrw3922', 'no_lang_code', 1, 'https://ror.org/04xrw3922 Trace-Ability (United States)'),
(72179, 'https://ror.org/04rw71h18', 'no_lang_code', 1, 'https://ror.org/04rw71h18 UltraCell (United States)'),
(72180, 'https://ror.org/03x2dsw59', 'no_lang_code', 1, 'https://ror.org/03x2dsw59 Ultrasonic Technologies (United States)'),
(72181, 'https://ror.org/03aqkee12', 'no_lang_code', 1, 'https://ror.org/03aqkee12 Uniqarta (United States)'),
(72182, 'https://ror.org/02vzcwk04', 'no_lang_code', 1, 'https://ror.org/02vzcwk04 Vesperix (United States)'),
(72183, 'https://ror.org/039hf2675', 'no_lang_code', 1, 'https://ror.org/039hf2675 Vestar (United States)'),
(72184, 'https://ror.org/05g916f28', 'no_lang_code', 1, 'https://ror.org/05g916f28 Translational Sciences (United States)'),
(72185, 'https://ror.org/02zf60h18', 'no_lang_code', 1, 'https://ror.org/02zf60h18 United Language Group (United States)'),
(72186, 'https://ror.org/01fgny818', 'no_lang_code', 1, 'https://ror.org/01fgny818 Vacuum Process Engineering (United States)'),
(72187, 'https://ror.org/04p6f5632', 'no_lang_code', 1, 'https://ror.org/04p6f5632 ViaDerm (United States)'),
(72188, 'https://ror.org/01h2q5p96', 'no_lang_code', 1, 'https://ror.org/01h2q5p96 Transmural Systems (United States)'),
(72189, 'https://ror.org/005x7bz67', 'no_lang_code', 1, 'https://ror.org/005x7bz67 Transphorm (United States)'),
(72190, 'https://ror.org/03e6rtv28', 'no_lang_code', 1, 'https://ror.org/03e6rtv28 University Technical Services (United States)'),
(72191, 'https://ror.org/04qxwt159', 'no_lang_code', 1, 'https://ror.org/04qxwt159 Vidatak (United States)'),
(72192, 'https://ror.org/05vhgbn50', 'no_lang_code', 1, 'https://ror.org/05vhgbn50 Vidrio (United States)'),
(72193, 'https://ror.org/00ny9n194', 'no_lang_code', 1, 'https://ror.org/00ny9n194 SuperTurbo Technologies (United States)'),
(72194, 'https://ror.org/01wt5xg78', 'no_lang_code', 1, 'https://ror.org/01wt5xg78 User Systems (United States)'),
(72195, 'https://ror.org/01mm1y498', 'no_lang_code', 1, 'https://ror.org/01mm1y498 Viewpoint Molecular Targeting (United States)'),
(72196, 'https://ror.org/03847eh84', 'no_lang_code', 1, 'https://ror.org/03847eh84 Vigilant Cyber Systems (United States)'),
(72197, 'https://ror.org/03gmxkp43', 'no_lang_code', 1, 'https://ror.org/03gmxkp43 Vision Technology (United States)'),
(72198, 'https://ror.org/01zb9kf14', 'no_lang_code', 1, 'https://ror.org/01zb9kf14 Visionary Pharmaceuticals (United States)'),
(72199, 'https://ror.org/01r3j5512', 'no_lang_code', 1, 'https://ror.org/01r3j5512 Vasoptic Medical (United States)'),
(72200, 'https://ror.org/052ne1802', 'no_lang_code', 1, 'https://ror.org/052ne1802 Visonex (United States)'),
(72201, 'https://ror.org/043vk9688', 'no_lang_code', 1, 'https://ror.org/043vk9688 Vanilla Unmanned (United States)'),
(72202, 'https://ror.org/049wfr424', 'no_lang_code', 1, 'https://ror.org/049wfr424 VAWD (United States)'),
(72203, 'https://ror.org/01gfzgg34', 'no_lang_code', 1, 'https://ror.org/01gfzgg34 Vaxess Technologies (United States)'),
(72204, 'https://ror.org/04r17yy05', 'no_lang_code', 1, 'https://ror.org/04r17yy05 Visus (United States)'),
(72205, 'https://ror.org/015kbrv74', 'no_lang_code', 1, 'https://ror.org/015kbrv74 Vital Art and Science (United States)'),
(72206, 'https://ror.org/00y903920', 'no_lang_code', 1, 'https://ror.org/00y903920 Vcrsoft (United States)'),
(72207, 'https://ror.org/01vec9q19', 'no_lang_code', 1, 'https://ror.org/01vec9q19 Vital Probes (United States)'),
(72208, 'https://ror.org/01gtv1921', 'no_lang_code', 1, 'https://ror.org/01gtv1921 Virtual Phantoms (United States)'),
(72209, 'https://ror.org/03v9vd314', 'no_lang_code', 1, 'https://ror.org/03v9vd314 VitalQuan (United States)'),
(72210, 'https://ror.org/00wtxn298', 'no_lang_code', 1, 'https://ror.org/00wtxn298 West Coast Solutions (United States)'),
(72211, 'https://ror.org/04b3hkf22', 'no_lang_code', 1, 'https://ror.org/04b3hkf22 VR Rehab (United States)'),
(72212, 'https://ror.org/03tpfej15', 'no_lang_code', 1, 'https://ror.org/03tpfej15 Viti (United States)'),
(72213, 'https://ror.org/054grzz74', 'no_lang_code', 1, 'https://ror.org/054grzz74 Virtual Technology (United States)'),
(72214, 'https://ror.org/049xdy517', 'no_lang_code', 1, 'https://ror.org/049xdy517 VITOK Engineers (United States)'),
(72215, 'https://ror.org/00e1g1704', 'no_lang_code', 1, 'https://ror.org/00e1g1704 Vector Composites (United States)'),
(72216, 'https://ror.org/01f4r1a13', 'no_lang_code', 1, 'https://ror.org/01f4r1a13 Visca (United States)'),
(72217, 'https://ror.org/00tptkt39', 'no_lang_code', 1, 'https://ror.org/00tptkt39 NetDragon (United States)'),
(72218, 'https://ror.org/045c7x933', 'no_lang_code', 1, 'https://ror.org/045c7x933 VivaQuant (United States)'),
(72219, 'https://ror.org/02qwdn481', 'no_lang_code', 1, 'https://ror.org/02qwdn481 Vivor (United States)'),
(72220, 'https://ror.org/023wtw779', 'no_lang_code', 1, 'https://ror.org/023wtw779 Vektrex (United States)'),
(72221, 'https://ror.org/01d1pkv81', 'no_lang_code', 1, 'https://ror.org/01d1pkv81 Viz-Tek (United States)'),
(72222, 'https://ror.org/00tkbqn95', 'no_lang_code', 1, 'https://ror.org/00tkbqn95 Widder Brothers (United States)'),
(72223, 'https://ror.org/00exzt005', 'no_lang_code', 1, 'https://ror.org/00exzt005 Xalud Therapeutics (United States)'),
(72224, 'https://ror.org/02vnj6d40', 'no_lang_code', 1, 'https://ror.org/02vnj6d40 XCell Science (United States)'),
(72225, 'https://ror.org/02q9rgg45', 'no_lang_code', 1, 'https://ror.org/02q9rgg45 Widetronix (United States)'),
(72226, 'https://ror.org/00f6b3992', 'no_lang_code', 1, 'https://ror.org/00f6b3992 The 451 Group (United States)'),
(72227, 'https://ror.org/05qczpc79', 'no_lang_code', 1, 'https://ror.org/05qczpc79 Vocalid (United States)'),
(72228, 'https://ror.org/00gqx0b07', 'no_lang_code', 1, 'https://ror.org/00gqx0b07 Xenotran (United States)'),
(72229, 'https://ror.org/05tdgz517', 'no_lang_code', 1, 'https://ror.org/05tdgz517 Voci (United States)'),
(72230, 'https://ror.org/01bgyfj42', 'no_lang_code', 1, 'https://ror.org/01bgyfj42 Venable Instruments (United States)'),
(72231, 'https://ror.org/035pr7340', 'no_lang_code', 1, 'https://ror.org/035pr7340 BioRankings (United States)'),
(72232, 'https://ror.org/05bdyr549', 'no_lang_code', 1, 'https://ror.org/05bdyr549 VPDiagnostics (United States)'),
(72233, 'https://ror.org/01ep5y454', 'no_lang_code', 1, 'https://ror.org/01ep5y454 Venator Solutions (United States)'),
(72234, 'https://ror.org/01w142366', 'no_lang_code', 1, 'https://ror.org/01w142366 Venebio (United States)'),
(72235, 'https://ror.org/03z7fpr75', 'no_lang_code', 1, 'https://ror.org/03z7fpr75 VRC Metal Systems (United States)'),
(72236, 'https://ror.org/04xpvpa92', 'no_lang_code', 1, 'https://ror.org/04xpvpa92 Opt-E (United States)'),
(72237, 'https://ror.org/010wgsf71', 'no_lang_code', 1, 'https://ror.org/010wgsf71 Ventions (United States)'),
(72238, 'https://ror.org/00psjjw10', 'no_lang_code', 1, 'https://ror.org/00psjjw10 Ventrix (United States)'),
(72239, 'https://ror.org/0191qk654', 'no_lang_code', 1, 'https://ror.org/0191qk654 Vibration and Shock Technologies (United States)'),
(72240, 'https://ror.org/056pwa368', 'no_lang_code', 1, 'https://ror.org/056pwa368 Vtec Laboratories (United States)'),
(72241, 'https://ror.org/0203kq127', 'no_lang_code', 1, 'https://ror.org/0203kq127 Vulintus (United States)'),
(72242, 'https://ror.org/050fs4d54', 'no_lang_code', 1, 'https://ror.org/050fs4d54 247Solar Plant (United States)'),
(72243, 'https://ror.org/058gnjg35', 'no_lang_code', 1, 'https://ror.org/058gnjg35 Veralase (United States)'),
(72244, 'https://ror.org/04de8hn78', 'no_lang_code', 1, 'https://ror.org/04de8hn78 Verus Research (United States)'),
(72245, 'https://ror.org/04cd0dy46', 'no_lang_code', 1, 'https://ror.org/04cd0dy46 Winchester Technologies (United States)'),
(72246, 'https://ror.org/04w8dg967', 'no_lang_code', 1, 'https://ror.org/04w8dg967 VerdaSee Solutions (United States)'),
(72247, 'https://ror.org/032g5d438', 'no_lang_code', 1, 'https://ror.org/032g5d438 Xona Microfluidics (United States)'),
(72248, 'https://ror.org/04cby3g57', 'no_lang_code', 1, 'https://ror.org/04cby3g57 Wasatch Photonics (United States)'),
(72249, 'https://ror.org/010efbr18', 'no_lang_code', 1, 'https://ror.org/010efbr18 XUV Lasers (United States)'),
(72250, 'https://ror.org/03brmsq64', 'no_lang_code', 1, 'https://ror.org/03brmsq64 Veriskin (United States)'),
(72251, 'https://ror.org/05mkjwz44', 'no_lang_code', 1, 'https://ror.org/05mkjwz44 Windmill (United States)'),
(72252, 'https://ror.org/040dnvn05', 'no_lang_code', 1, 'https://ror.org/040dnvn05 Wave CPC (United States)'),
(72253, 'https://ror.org/00g1jg068', 'no_lang_code', 1, 'https://ror.org/00g1jg068 Xybion Corporation (United States)'),
(72254, 'https://ror.org/00nrdcp20', 'no_lang_code', 1, 'https://ror.org/00nrdcp20 Windmill International (United States)'),
(72255, 'https://ror.org/00xwb9867', 'no_lang_code', 1, 'https://ror.org/00xwb9867 WinSanTor (United States)'),
(72256, 'https://ror.org/050tt9n79', 'no_lang_code', 1, 'https://ror.org/050tt9n79 Y.K. Bae (United States)'),
(72257, 'https://ror.org/05x4we538', 'no_lang_code', 1, 'https://ror.org/05x4we538 Valepro (United States)'),
(72258, 'https://ror.org/01pydbv25', 'no_lang_code', 1, 'https://ror.org/01pydbv25 YAN Engines (United States)'),
(72259, 'https://ror.org/02fh3mq29', 'no_lang_code', 1, 'https://ror.org/02fh3mq29 Zietchick Research Institute (United States)'),
(72260, 'https://ror.org/05ds3hh45', 'no_lang_code', 1, 'https://ror.org/05ds3hh45 Gototags (United States)'),
(72261, 'https://ror.org/039kg2d97', 'no_lang_code', 1, 'https://ror.org/039kg2d97 YumaWorks (United States)'),
(72262, 'https://ror.org/021svyy15', 'no_lang_code', 1, 'https://ror.org/021svyy15 Yaso Therapeutics (United States)'),
(72263, 'https://ror.org/05fe9d430', 'no_lang_code', 1, 'https://ror.org/05fe9d430 Z-Terra (United States)'),
(72264, 'https://ror.org/01atc9m12', 'no_lang_code', 1, 'https://ror.org/01atc9m12 Wizbe Innovations (United States)'),
(72265, 'https://ror.org/02nfmpb07', 'no_lang_code', 1, 'https://ror.org/02nfmpb07 ZKxKZ (United States)'),
(72266, 'https://ror.org/00ryt4t07', 'no_lang_code', 1, 'https://ror.org/00ryt4t07 Zeomedix (United States)'),
(72267, 'https://ror.org/01k1p7y49', 'no_lang_code', 1, 'https://ror.org/01k1p7y49 Zeteo Tech (United States)'),
(72268, 'https://ror.org/05392nj09', 'no_lang_code', 1, 'https://ror.org/05392nj09 Zalgen (United States)'),
(72269, 'https://ror.org/00te3ej54', 'no_lang_code', 1, 'https://ror.org/00te3ej54 ZoneOne Pharma (United States)'),
(72270, 'https://ror.org/024wm7g15', 'no_lang_code', 1, 'https://ror.org/024wm7g15 Zdye (United States)'),
(72271, 'https://ror.org/05mtdc048', 'no_lang_code', 1, 'https://ror.org/05mtdc048 Zata Pharmaceuticals (United States)'),
(72272, 'https://ror.org/051860q83', 'no_lang_code', 1, 'https://ror.org/051860q83 AspenTech (United Kingdom)'),
(72273, 'https://ror.org/0518mdr56', 'no_lang_code', 1, 'https://ror.org/0518mdr56 Bruker (Austria)'),
(72274, 'https://ror.org/05jg70019', 'no_lang_code', 1, 'https://ror.org/05jg70019 3D Systems (United Kingdom)'),
(72275, 'https://ror.org/01qr6ev44', 'no_lang_code', 1, 'https://ror.org/01qr6ev44 Alps Electric (United Kingdom)'),
(72276, 'https://ror.org/05ncq9g28', 'no_lang_code', 1, 'https://ror.org/05ncq9g28 Altair Engineering (United Kingdom)'),
(72277, 'https://ror.org/050h08n21', 'en', 1, 'https://ror.org/050h08n21 Aquarius Population Health'),
(72278, 'https://ror.org/00bhf5527', 'no_lang_code', 1, 'https://ror.org/00bhf5527 Ethypharm (United Kingdom)'),
(72279, 'https://ror.org/05vjgy768', 'no_lang_code', 1, 'https://ror.org/05vjgy768 Atos (United Kingdom)'),
(72280, 'https://ror.org/00pdsbg03', 'no_lang_code', 1, 'https://ror.org/00pdsbg03 Arkema (United Kingdom)'),
(72281, 'https://ror.org/01g1qg816', 'en', 1, 'https://ror.org/01g1qg816 Northeast Cancer Centre'),
(72282, 'https://ror.org/01dzqde20', 'no_lang_code', 1, 'https://ror.org/01dzqde20 Autodesk (United Kingdom)'),
(72283, 'https://ror.org/04why9q78', 'no_lang_code', 1, 'https://ror.org/04why9q78 Bentley Systems (United Kingdom)'),
(72284, 'https://ror.org/024kstn81', 'no_lang_code', 1, 'https://ror.org/024kstn81 Bentley Systems (United States)'),
(72285, 'https://ror.org/01h14dd51', 'no_lang_code', 1, 'https://ror.org/01h14dd51 Axa (United Kingdom)'),
(72286, 'https://ror.org/01eqdrp13', 'no_lang_code', 1, 'https://ror.org/01eqdrp13 BMW (United Kingdom)'),
(72287, 'https://ror.org/059gc9059', 'no_lang_code', 1, 'https://ror.org/059gc9059 Bobst (United Kingdom)'),
(72288, 'https://ror.org/051hm2r46', 'no_lang_code', 1, 'https://ror.org/051hm2r46 Cemex (United Kingdom)'),
(72289, 'https://ror.org/0576yhz46', 'no_lang_code', 1, 'https://ror.org/0576yhz46 Cengage Learning (United Kingdom)'),
(72290, 'https://ror.org/051qqsf31', 'no_lang_code', 1, 'https://ror.org/051qqsf31 CeramTec (United Kingdom)'),
(72291, 'https://ror.org/02v08db54', 'no_lang_code', 1, 'https://ror.org/02v08db54 Constellium (United Kingdom)'),
(72292, 'https://ror.org/03yme5333', 'no_lang_code', 1, 'https://ror.org/03yme5333 Ciena (United Kingdom)'),
(72293, 'https://ror.org/04tpxn918', 'no_lang_code', 1, 'https://ror.org/04tpxn918 Deutsche Bank (United Kingdom)'),
(72294, 'https://ror.org/007jgnc83', 'no_lang_code', 1, 'https://ror.org/007jgnc83 Danieli (United Kingdom)'),
(72295, 'https://ror.org/05v7khc27', 'no_lang_code', 1, 'https://ror.org/05v7khc27 Disco (Germany)'),
(72296, 'https://ror.org/055qtnk39', 'no_lang_code', 1, 'https://ror.org/055qtnk39 DMG Mori (United Kingdom)'),
(72297, 'https://ror.org/02v21h460', 'no_lang_code', 1, 'https://ror.org/02v21h460 Finning (United Kingdom)'),
(72298, 'https://ror.org/01shd5g72', 'no_lang_code', 1, 'https://ror.org/01shd5g72 Electro Optical Systems (United Kingdom)'),
(72299, 'https://ror.org/03vyhtd35', 'no_lang_code', 1, 'https://ror.org/03vyhtd35 Bridgestone (United Kingdom)'),
(72300, 'https://ror.org/00cr5zh57', 'no_lang_code', 1, 'https://ror.org/00cr5zh57 Fonterra (Australia)'),
(72301, 'https://ror.org/02b68c504', 'no_lang_code', 1, 'https://ror.org/02b68c504 Eurostep (United Kingdom)'),
(72302, 'https://ror.org/03strdf60', 'no_lang_code', 1, 'https://ror.org/03strdf60 Velocity Laboratories (United States)'),
(72303, 'https://ror.org/026znxe07', 'en', 1, 'https://ror.org/026znxe07 Energy Safety Research Institute'),
(72304, 'https://ror.org/00gv7g150', 'en', 1, 'https://ror.org/00gv7g150 Clinica Esperanza/Hope Clinic'),
(72305, 'https://ror.org/036v1zd35', 'no_lang_code', 1, 'https://ror.org/036v1zd35 Semtech (United Kingdom)'),
(72306, 'https://ror.org/05e0gpk62', 'no_lang_code', 1, 'https://ror.org/05e0gpk62 Hottinger Baldwin Messtechnik (United Kingdom)'),
(72307, 'https://ror.org/0201da008', 'no_lang_code', 1, 'https://ror.org/0201da008 HCL Technologies (United States)'),
(72308, 'https://ror.org/009xgxm43', 'no_lang_code', 1, 'https://ror.org/009xgxm43 Hosokawa Micron (United Kingdom)'),
(72309, 'https://ror.org/0117s3e61', 'no_lang_code', 1, 'https://ror.org/0117s3e61 ID Quantique (United Kingdom)'),
(72310, 'https://ror.org/04c4wb253', 'no_lang_code', 1, 'https://ror.org/04c4wb253 Applus+ IDIADA (United Kingdom)'),
(72311, 'https://ror.org/05qg4my54', 'no_lang_code', 1, 'https://ror.org/05qg4my54 Henkel (United Kingdom)'),
(72312, 'https://ror.org/04xx77718', 'en', 1, 'https://ror.org/04xx77718 Bosom Buddies of Arizona'),
(72313, 'https://ror.org/03fk15c97', 'no_lang_code', 1, 'https://ror.org/03fk15c97 Itaconix (United Kingdom)'),
(72314, 'https://ror.org/05fenky51', 'no_lang_code', 1, 'https://ror.org/05fenky51 Interface (United Kingdom)'),
(72315, 'https://ror.org/04q80hd21', 'no_lang_code', 1, 'https://ror.org/04q80hd21 Innotec (United Kingdom)'),
(72316, 'https://ror.org/04gs4wp13', 'en', 1, 'https://ror.org/04gs4wp13 Internet Matters'),
(72317, 'https://ror.org/01e7k1548', 'no_lang_code', 1, 'https://ror.org/01e7k1548 Kistler (United Kingdom)'),
(72318, 'https://ror.org/02aqvpe76', 'no_lang_code', 1, 'https://ror.org/02aqvpe76 Inphi (United Kingdom)'),
(72319, 'https://ror.org/0489rbg31', 'no_lang_code', 1, 'https://ror.org/0489rbg31 Viavi Solutions (United Kingdom)'),
(72320, 'https://ror.org/04gvrvx60', 'no_lang_code', 1, 'https://ror.org/04gvrvx60 Kuehne + Nagel (United Kingdom)'),
(72321, 'https://ror.org/001hkv469', 'no_lang_code', 1, 'https://ror.org/001hkv469 Koch Industries (United Kingdom)'),
(72322, 'https://ror.org/04nbkxt24', 'no_lang_code', 1, 'https://ror.org/04nbkxt24 BearingPoint (United Kingdom)'),
(72323, 'https://ror.org/03zmk9a61', 'no_lang_code', 1, 'https://ror.org/03zmk9a61 Kerry Group (United Kingdom)'),
(72324, 'https://ror.org/03grn3q81', 'no_lang_code', 1, 'https://ror.org/03grn3q81 Lenzing (United Kingdom)'),
(72325, 'https://ror.org/02jy4mx12', 'no_lang_code', 1, 'https://ror.org/02jy4mx12 Lead Discovery Center (Germany)'),
(72326, 'https://ror.org/04gs0fr60', 'no_lang_code', 1, 'https://ror.org/04gs0fr60 Xenetic Biosciences (United Kingdom)'),
(72327, 'https://ror.org/05jkvk840', 'en', 1, 'https://ror.org/05jkvk840 London Internet Exchange'),
(72328, 'https://ror.org/04knb0h51', 'no_lang_code', 1, 'https://ror.org/04knb0h51 Heidenhain (United Kingdom)'),
(72329, 'https://ror.org/0288rsm64', 'no_lang_code', 1, 'https://ror.org/0288rsm64 Materialise (United Kingdom)'),
(72330, 'https://ror.org/01v7cer31', 'no_lang_code', 1, 'https://ror.org/01v7cer31 McKinsey & Company (United Kingdom)'),
(72331, 'https://ror.org/038h0z436', 'no_lang_code', 1, 'https://ror.org/038h0z436 Mitsubishi Corporation (United Kingdom)'),
(72332, 'https://ror.org/04n96q930', 'no_lang_code', 1, 'https://ror.org/04n96q930 Cardno (United Kingdom)'),
(72333, 'https://ror.org/04p2nj039', 'no_lang_code', 1, 'https://ror.org/04p2nj039 Zynga (United Kingdom)'),
(72334, 'https://ror.org/03nag2598', 'no_lang_code', 1, 'https://ror.org/03nag2598 NGK Insulators (United Kingdom)'),
(72335, 'https://ror.org/01bxzfe12', 'en', 1, 'https://ror.org/01bxzfe12 PROCURE'),
(72336, 'https://ror.org/00mz6cr89', 'en', 1, 'https://ror.org/00mz6cr89 Be Strong, Fight On!'),
(72337, 'https://ror.org/04k4a1317', 'en', 1, 'https://ror.org/04k4a1317 Coalition Against Childhood Cancer'),
(72338, 'https://ror.org/0324t6t86', 'en', 1, 'https://ror.org/0324t6t86 Elaine Roberts Foundation'),
(72339, 'https://ror.org/04b09jz40', 'en', 1, 'https://ror.org/04b09jz40 Noah''s Light Foundation'),
(72340, 'https://ror.org/007e09543', 'en', 1, 'https://ror.org/007e09543 Sammy''s Superheroes'),
(72341, 'https://ror.org/00e06he13', 'en', 1, 'https://ror.org/00e06he13 The Neuroblastoma Children''s Cancer Society'),
(72342, 'https://ror.org/02qjwrc97', 'no_lang_code', 1, 'https://ror.org/02qjwrc97 Northrop Grumman (United Kingdom)'),
(72343, 'https://ror.org/00hfjx819', 'no_lang_code', 1, 'https://ror.org/00hfjx819 OSRAM (United Kingdom)'),
(72344, 'https://ror.org/00ndx3g44', 'en', 1, 'https://ror.org/00ndx3g44 Hamamatsu University School of Medicine 浜松医科大学'),
(72345, 'https://ror.org/03nnn1t12', 'no_lang_code', 1, 'https://ror.org/03nnn1t12 Outokumpu (United Kingdom)'),
(72346, 'https://ror.org/0177mph94', 'no_lang_code', 1, 'https://ror.org/0177mph94 New England Biolabs (United Kingdom)'),
(72347, 'https://ror.org/00v1x5b81', 'no_lang_code', 1, 'https://ror.org/00v1x5b81 PTC (United Kingdom)'),
(72348, 'https://ror.org/03d6nx810', 'no_lang_code', 1, 'https://ror.org/03d6nx810 Qorvo (United Kingdom)'),
(72349, 'https://ror.org/00913vr41', 'no_lang_code', 1, 'https://ror.org/00913vr41 Ricardo (India)'),
(72350, 'https://ror.org/05r52vr82', 'no_lang_code', 1, 'https://ror.org/05r52vr82 CACI International (United Kingdom)'),
(72351, 'https://ror.org/02fbp2e31', 'no_lang_code', 1, 'https://ror.org/02fbp2e31 Simworx (United Kingdom)'),
(72352, 'https://ror.org/041y46z19', 'no_lang_code', 1, 'https://ror.org/041y46z19 Richardson Electronics (United Kingdom)'),
(72353, 'https://ror.org/052r73a33', 'no_lang_code', 1, 'https://ror.org/052r73a33 PPG Industries (United Kingdom)'),
(72354, 'https://ror.org/05s9c0w76', 'no_lang_code', 1, 'https://ror.org/05s9c0w76 Semikron (United Kingdom)'),
(72355, 'https://ror.org/02vact186', 'no_lang_code', 1, 'https://ror.org/02vact186 Tobii (United Kingdom)'),
(72356, 'https://ror.org/04xad0v87', 'en', 1, 'https://ror.org/04xad0v87 Hamamatsu Japan Language College'),
(72357, 'https://ror.org/02bjbg379', 'no_lang_code', 1, 'https://ror.org/02bjbg379 Schunk (United Kingdom)'),
(72358, 'https://ror.org/02f3d5q63', 'no_lang_code', 1, 'https://ror.org/02f3d5q63 SMA Solar Technology (United Kingdom)'),
(72359, 'https://ror.org/00xa9v334', 'no_lang_code', 1, 'https://ror.org/00xa9v334 Equinor (United Kingdom)'),
(72360, 'https://ror.org/009wgy438', 'no_lang_code', 1, 'https://ror.org/009wgy438 Shell (Malaysia)'),
(72361, 'https://ror.org/04cap6186', 'en', 1, 'https://ror.org/04cap6186 Phelps Hospital'),
(72362, 'https://ror.org/05v6s8y05', 'en', 1, 'https://ror.org/05v6s8y05 Peconic Bay Medical Center'),
(72363, 'https://ror.org/011yfd550', 'no_lang_code', 1, 'https://ror.org/011yfd550 TerraVerdae BioWorks (United Kingdom)'),
(72364, 'https://ror.org/035g5pd63', 'no_lang_code', 1, 'https://ror.org/035g5pd63 Procomcure Biotech (Austria)'),
(72365, 'https://ror.org/001pxkx91', 'no_lang_code', 1, 'https://ror.org/001pxkx91 Givaudan (Sweden)'),
(72366, 'https://ror.org/00sj01y46', 'de', 1, 'https://ror.org/00sj01y46 Waldrappteam'),
(72367, 'https://ror.org/01xzsbk70', 'en', 1, 'https://ror.org/01xzsbk70 Vienna City Library Wienbibliothek im Rathaus'),
(72368, 'https://ror.org/02qrpm067', 'no_lang_code', 1, 'https://ror.org/02qrpm067 Topcon (United Kingdom)'),
(72369, 'https://ror.org/04w9wz255', 'de', 1, 'https://ror.org/04w9wz255 Zentrum für Erinnerungskultur und Geschichtsforschung'),
(72370, 'https://ror.org/016p2sb76', 'no_lang_code', 1, 'https://ror.org/016p2sb76 Particle Beam Lasers (United States)'),
(72371, 'https://ror.org/03yz4hz41', 'no_lang_code', 1, 'https://ror.org/03yz4hz41 Spectra Solutions (United States)'),
(72372, 'https://ror.org/00e73ws79', 'no_lang_code', 1, 'https://ror.org/00e73ws79 DO'),
(72373, 'https://ror.org/03g4xtf80', 'no_lang_code', 1, 'https://ror.org/03g4xtf80 Abilia (United Kingdom)'),
(72374, 'https://ror.org/04zzqcq74', 'no_lang_code', 1, 'https://ror.org/04zzqcq74 United Parcel Service (United Kingdom)'),
(72375, 'https://ror.org/05nq4je29', 'en', 1, 'https://ror.org/05nq4je29 British Athletics'),
(72376, 'https://ror.org/045j7j567', 'no_lang_code', 1, 'https://ror.org/045j7j567 Michelin (United Kingdom)'),
(72377, 'https://ror.org/01cf59p25', 'en', 1, 'https://ror.org/01cf59p25 Unlimited Potential'),
(72378, 'https://ror.org/033bbb825', 'no_lang_code', 1, 'https://ror.org/033bbb825 Wärtsilä (United Kingdom)'),
(72379, 'https://ror.org/01zww3c78', 'en', 1, 'https://ror.org/01zww3c78 West Ridge Veterinary Practice'),
(72380, 'https://ror.org/02ykkkr84', 'no_lang_code', 1, 'https://ror.org/02ykkkr84 Klöckner (United Kingdom)'),
(72381, 'https://ror.org/04he9e777', 'no_lang_code', 1, 'https://ror.org/04he9e777 NGK Insulators (Germany)'),
(72382, 'https://ror.org/033g4nk48', 'en', 1, 'https://ror.org/033g4nk48 Write Inspired'),
(72383, 'https://ror.org/02da8wy28', 'no_lang_code', 1, 'https://ror.org/02da8wy28 Energy to Power Solution (United States)'),
(72384, 'https://ror.org/04hjz3e92', 'no_lang_code', 1, 'https://ror.org/04hjz3e92 Glacigen Materials (United States)'),
(72385, 'https://ror.org/00z87ds37', 'no_lang_code', 1, 'https://ror.org/00z87ds37 HAMR Industries (United States)'),
(72386, 'https://ror.org/057htkt44', 'en', 1, 'https://ror.org/057htkt44 American Public Transportation Association'),
(72387, 'https://ror.org/05ccmn542', 'en', 1, 'https://ror.org/05ccmn542 Concrete Reinforcing Steel Institute'),
(72388, 'https://ror.org/03kqvwv81', 'en', 1, 'https://ror.org/03kqvwv81 Cooperative Mobility for Competitive Megaregions'),
(72389, 'https://ror.org/009cfk404', 'en', 1, 'https://ror.org/009cfk404 Electric Vehicle Transportation Center'),
(72390, 'https://ror.org/02mz0pc52', 'no_lang_code', 1, 'https://ror.org/02mz0pc52 Genex Systems (United States)'),
(72391, 'https://ror.org/0497txp66', 'en', 1, 'https://ror.org/0497txp66 Great Lakes Maritime Research Institute'),
(72392, 'https://ror.org/04fnrdj64', 'en', 1, 'https://ror.org/04fnrdj64 Gulf Coast Center for Evacuation and Transportation Resiliency'),
(72393, 'https://ror.org/00q0vag25', 'en', 1, 'https://ror.org/00q0vag25 William and Barbara Leonard Transportation Center'),
(72394, 'https://ror.org/04kkcah82', 'en', 1, 'https://ror.org/04kkcah82 Asphalt Institute'),
(72395, 'https://ror.org/053x1dt55', 'en', 1, 'https://ror.org/053x1dt55 Northeast Gas Association'),
(72396, 'https://ror.org/00cv80m81', 'no_lang_code', 1, 'https://ror.org/00cv80m81 Cambridge Systematics (United States)'),
(72397, 'https://ror.org/0230s3k26', 'en', 1, 'https://ror.org/0230s3k26 METRANS Transportation Center'),
(72398, 'https://ror.org/036vfgp53', 'en', 1, 'https://ror.org/036vfgp53 Preusser Research Group'),
(72399, 'https://ror.org/05sp89c28', 'en', 1, 'https://ror.org/05sp89c28 University Transportation Center for Alabama'),
(72400, 'https://ror.org/04g732g68', 'en', 1, 'https://ror.org/04g732g68 Southern Plains Transportation Center'),
(72401, 'https://ror.org/026t5rk78', 'en', 1, 'https://ror.org/026t5rk78 National Center for Intermodal Transportation'),
(72402, 'https://ror.org/05ac9kx40', 'en', 1, 'https://ror.org/05ac9kx40 National Center for Sustainable Transportation'),
(72403, 'https://ror.org/057aqdv46', 'en', 1, 'https://ror.org/057aqdv46 Center for Reliable Energy Systems'),
(72404, 'https://ror.org/01e2hm815', 'en', 1, 'https://ror.org/01e2hm815 Mid-Atlantic Transportation Sustainability Center'),
(72405, 'https://ror.org/04yd0my20', 'nl', 1, 'https://ror.org/04yd0my20 Stichting Jij Speelt de Hoofdrol'),
(72406, 'https://ror.org/057jjmm55', 'en', 1, 'https://ror.org/057jjmm55 Safer Sim'),
(72407, 'https://ror.org/02wvs7998', 'no_lang_code', 1, 'https://ror.org/02wvs7998 SES Group & Associates (United States)'),
(72408, 'https://ror.org/0229jz197', 'en', 1, 'https://ror.org/0229jz197 Technologies for Safe and Efficient Transportation'),
(72409, 'https://ror.org/05n4bbw51', 'en', 1, 'https://ror.org/05n4bbw51 National Highway Institute'),
(72410, 'https://ror.org/05ccm7722', 'en', 1, 'https://ror.org/05ccm7722 The TAU Institute'),
(72411, 'https://ror.org/04qby6e62', 'en', 1, 'https://ror.org/04qby6e62 Automotive Service Excellence'),
(72412, 'https://ror.org/03pz4a950', 'en', 1, 'https://ror.org/03pz4a950 University Transportation Research Center'),
(72413, 'https://ror.org/00h7cs967', 'en', 1, 'https://ror.org/00h7cs967 Mid-Atlantic University Transportation Center'),
(72414, 'https://ror.org/04xpwnc20', 'en', 1, 'https://ror.org/04xpwnc20 Transportation Learning Center'),
(72415, 'https://ror.org/011fc0n53', 'en', 1, 'https://ror.org/011fc0n53 National Transportation Research Center'),
(72416, 'https://ror.org/04aa0ed69', 'en', 1, 'https://ror.org/04aa0ed69 New England University Transportation Center'),
(72417, 'https://ror.org/04x8thz12', 'en', 1, 'https://ror.org/04x8thz12 University Transportation Center for Mobility'),
(72418, 'https://ror.org/01b8v0r63', 'en', 1, 'https://ror.org/01b8v0r63 Transportation Safety Institute'),
(72419, 'https://ror.org/0232kgx22', 'en', 1, 'https://ror.org/0232kgx22 Transportation Research Center for Livable Communities'),
(72420, 'https://ror.org/012pd4b91', 'en', 1, 'https://ror.org/012pd4b91 Western Transportation Institute'),
(72421, 'https://ror.org/05tgbdb80', 'en', 1, 'https://ror.org/05tgbdb80 American Trucking Associations'),
(72422, 'https://ror.org/02c7r5h24', 'no_lang_code', 1, 'https://ror.org/02c7r5h24 Sen-oku HakukoKan Museum 泉屋博古館'),
(72423, 'https://ror.org/05rxe5g18', 'en', 1, 'https://ror.org/05rxe5g18 Hokkaido Chitose College of Rehabilitation 北海道千歳リハビリテーション大学'),
(72424, 'https://ror.org/03pgcsa90', 'no_lang_code', 1, 'https://ror.org/03pgcsa90 Tobishima (Japan) 飛島建設'),
(72425, 'https://ror.org/010b0td06', 'en', 1, 'https://ror.org/010b0td06 Komatsu University 公立小松大学'),
(72426, 'https://ror.org/030z2kw43', 'en', 1, 'https://ror.org/030z2kw43 Museum of Natural and Environmental History, Shizuoka ふじのくに地球環境史ミュージアム'),
(72427, 'https://ror.org/00hanm733', 'en', 1, 'https://ror.org/00hanm733 Kyoto Prefectural Library and Archives 京都府立総合資料館'),
(72428, 'https://ror.org/00bdxyz12', 'en', 1, 'https://ror.org/00bdxyz12 Hokkaido Arisu High School 北海道有栖高校'),
(72429, 'https://ror.org/03s52tj69', 'en', 1, 'https://ror.org/03s52tj69 Saitama Prefectural Kasukabe Special Support School 埼玉県立春日部養護学校'),
(72430, 'https://ror.org/049bsvy30', 'en', 1, 'https://ror.org/049bsvy30 Oita Prefectural Hida Forest Engineering High School 大分県立日田林工高'),
(72431, 'https://ror.org/05ceyw104', 'en', 1, 'https://ror.org/05ceyw104 Gifu Prefectural Gifu Kita Senior High School 岐阜県岐阜北高'),
(72432, 'https://ror.org/03jqeq923', 'en', 1, 'https://ror.org/03jqeq923 Shonan University of Medical Sciences 湘南医療大学'),
(72433, 'https://ror.org/02cgf6x90', 'no_lang_code', 1, 'https://ror.org/02cgf6x90 Okayama Prefecture 岡山県農林水産総合センター生物科学研究所'),
(72434, 'https://ror.org/0487zkp40', 'en', 1, 'https://ror.org/0487zkp40 Chiba Prefecture Cultural Property Center 蝪千葉県文化財センター'),
(72435, 'https://ror.org/00rat0g20', 'en', 1, 'https://ror.org/00rat0g20 Amanosan Cultural Heritages Research Institute 一般社団法人 天野山文化遺産研究所'),
(72436, 'https://ror.org/04yty3z13', 'en', 1, 'https://ror.org/04yty3z13 Japan Association for Fire Science and Engineering 日本火災学会'),
(72437, 'https://ror.org/03th12q46', 'en', 1, 'https://ror.org/03th12q46 Niigata Agro-Food University 新潟食料農業大学'),
(72438, 'https://ror.org/02qbfgp41', 'en', 1, 'https://ror.org/02qbfgp41 MOA Museum of Art MOA美術館'),
(72439, 'https://ror.org/04m128g34', 'en', 1, 'https://ror.org/04m128g34 ECC Kokusai College of Foreign Languages ECC国際外語専門学校'),
(72440, 'https://ror.org/04mabxa71', 'en', 1, 'https://ror.org/04mabxa71 NPO Net work for Shizuoka Prefecture Museum of Natural History 静岡県自然史博物館ネットワーク'),
(72441, 'https://ror.org/006kn8y54', 'en', 1, 'https://ror.org/006kn8y54 Kyoto City Archaeological Research Institute 京都市考古資料館'),
(72442, 'https://ror.org/02ycdjn07', 'en', 1, 'https://ror.org/02ycdjn07 Foundation Yamanashi Cultural Property Research Institute 山梨文化財研究所'),
(72443, 'https://ror.org/05fe0wm97', 'en', 1, 'https://ror.org/05fe0wm97 Rehabilitation College Shimane リハビリテーションカレッジ島根'),
(72444, 'https://ror.org/0342c0q79', 'en', 1, 'https://ror.org/0342c0q79 Shiga Prefecture Cultural Property Protection Association 公益財団法人滋賀県文化財保護協会'),
(72445, 'https://ror.org/01ezwtn57', 'en', 1, 'https://ror.org/01ezwtn57 The Institution of Environmental Sciences'),
(72446, 'https://ror.org/03xd96m45', 'en', 1, 'https://ror.org/03xd96m45 Shikoku Central Hospital of the Mutual Aid Association of Public School Teachers 公立学校共済組合四国中央病院、愛媛県、日本'),
(72447, 'https://ror.org/00n20v437', 'en', 1, 'https://ror.org/00n20v437 Kochi Prefecture Archaeological Center 高知県立埋蔵文化財センター'),
(72448, 'https://ror.org/03knb5g53', 'en', 1, 'https://ror.org/03knb5g53 Institute of Environmental Rehabilitation and Conservation 環境修復保全機構'),
(72449, 'https://ror.org/02eqnz251', 'en', 1, 'https://ror.org/02eqnz251 International Rescue System 国際レスキューシステム'),
(72450, 'https://ror.org/01fhyd561', 'en', 1, 'https://ror.org/01fhyd561 Kyoto College of Economics 京都経済短期大学'),
(72451, 'https://ror.org/006s82919', 'no_lang_code', 1, 'https://ror.org/006s82919 Shishikari Sand Dune Museum いしかり砂丘の風資料館'),
(72452, 'https://ror.org/02fpaqw26', 'en', 1, 'https://ror.org/02fpaqw26 Nagoya Future Culture College 名古屋未来文化専門学校'),
(72453, 'https://ror.org/0555yfc83', 'en', 1, 'https://ror.org/0555yfc83 Epson Information Technology College エプソン情報科学専門学校'),
(72454, 'https://ror.org/040xmsv41', 'no_lang_code', 1, 'https://ror.org/040xmsv41 Ibarakihigashi National Hospital 国立病院機構茨城東病院'),
(72455, 'https://ror.org/04b5cmy23', 'en', 1, 'https://ror.org/04b5cmy23 Chubu University Daiichi High School 中部大学第一高等学校'),
(72456, 'https://ror.org/039kky066', 'en', 1, 'https://ror.org/039kky066 Mie Chuo Medical Center 三重中央医療センター'),
(72457, 'https://ror.org/05w2yhn64', 'en', 1, 'https://ror.org/05w2yhn64 Farmers Education Association Kashiwa Gakuen Agricultural Nutrition College 鯉淵学園農業栄養専門学校'),
(72458, 'https://ror.org/03y6p7b93', 'en', 1, 'https://ror.org/03y6p7b93 National Institute on Consumer Education 消費者教育支援センター'),
(72459, 'https://ror.org/03vyrmv17', 'no_lang_code', 1, 'https://ror.org/03vyrmv17 Ochanomizu University Kindergarten お茶の水女子大学附属幼稚園'),
(72460, 'https://ror.org/04hsrr018', 'en', 1, 'https://ror.org/04hsrr018 Aichi Mizuho Junior College 愛知みずほ短期大学'),
(72461, 'https://ror.org/03r2hsf25', 'en', 1, 'https://ror.org/03r2hsf25 Asia Pacific Institute of Research 一般財団法人 アジア太平洋研究所'),
(72462, 'https://ror.org/019z90y68', 'en', 1, 'https://ror.org/019z90y68 Children''s Play School Citizen Stage 釧路市こども遊学館'),
(72463, 'https://ror.org/02fxhgq54', 'en', 1, 'https://ror.org/02fxhgq54 East Riding of Yorkshire Council'),
(72464, 'https://ror.org/04ztf1t13', 'en', 1, 'https://ror.org/04ztf1t13 Institute Of Psychomedical Education For Children And Adults ペック研究所'),
(72465, 'https://ror.org/052scad51', 'no_lang_code', 1, 'https://ror.org/052scad51 Kurayoshi Museum 倉吉博物館'),
(72466, 'https://ror.org/05g920a69', 'en', 1, 'https://ror.org/05g920a69 Hachinohe Kodai2 High School 八戸工業大学第二高等学校'),
(72467, 'https://ror.org/00s653v54', 'en', 1, 'https://ror.org/00s653v54 Misato Observatory みさと天文台'),
(72468, 'https://ror.org/004q1hy63', 'en', 1, 'https://ror.org/004q1hy63 Yamanashi Research Institute 公益財団法人 山梨総合研究所'),
(72469, 'https://ror.org/02qatsn60', 'en', 1, 'https://ror.org/02qatsn60 Itami City Museum 伊丹市立博物館'),
(72470, 'https://ror.org/027zp7q69', 'en', 1, 'https://ror.org/027zp7q69 Kagoshima City Aquarium Foundation 公益財団法人 鹿児島市水族館公社'),
(72471, 'https://ror.org/0483am868', 'en', 1, 'https://ror.org/0483am868 Public interest incorporated foundation Keep Association 公益財団法人キープ協会'),
(72472, 'https://ror.org/05a8zr135', 'en', 1, 'https://ror.org/05a8zr135 Koto Cultural Community Foundation 公益財団法人 江東区文化コミュニティ財団'),
(72473, 'https://ror.org/02a82mh07', 'en', 1, 'https://ror.org/02a82mh07 Middle East Institute of Japan 公益財団法人 中東調査会'),
(72474, 'https://ror.org/04ht09065', 'en', 1, 'https://ror.org/04ht09065 Idemitsu Museum Of Arts 出光美術館'),
(72475, 'https://ror.org/04zaxn180', 'en', 1, 'https://ror.org/04zaxn180 Sendai Vocational College of Health and Welfare 仙台医療福祉専門学校'),
(72476, 'https://ror.org/04ga2h843', 'en', 1, 'https://ror.org/04ga2h843 Izumo Science Center 出雲科学館'),
(72477, 'https://ror.org/04x60sx56', 'en', 1, 'https://ror.org/04x60sx56 Hokkaido Environment Foundation 公益財団法人北海道環境財団'),
(72478, 'https://ror.org/01a8dsa88', 'en', 1, 'https://ror.org/01a8dsa88 Hakodate Clinical Welfare College 函館臨床福祉専門学校'),
(72479, 'https://ror.org/0525agk59', 'en', 1, 'https://ror.org/0525agk59 Cyber Campus Consortium TIES'),
(72480, 'https://ror.org/04yegz493', 'en', 1, 'https://ror.org/04yegz493 The Cattle Museum 牛の博物館'),
(72481, 'https://ror.org/02prk5459', 'en', 1, 'https://ror.org/02prk5459 Saga Prefectural Museum 佐賀県立博物館'),
(72482, 'https://ror.org/03xw8ff71', 'no_lang_code', 1, 'https://ror.org/03xw8ff71 Tokiwa Park ときわ動物園');
INSERT INTO `rors` VALUES
(72483, 'https://ror.org/04qbg1g88', 'en', 1, 'https://ror.org/04qbg1g88 Saga Prefectural Police 佐賀県警察本部'),
(72484, 'https://ror.org/05x27ng08', 'no_lang_code', 1, 'https://ror.org/05x27ng08 Tsurugi Hospital 公立つるぎ病院'),
(72485, 'https://ror.org/03dzz0y33', 'en', 1, 'https://ror.org/03dzz0y33 Shinshu Medical and Welfare College 信州医療福祉専門学校'),
(72486, 'https://ror.org/033m0cw03', 'en', 1, 'https://ror.org/033m0cw03 Hyogo Prefectural Institute for Educational Research and In-Service Training 兵庫県立教育研修所'),
(72487, 'https://ror.org/01n7e3q98', 'en', 1, 'https://ror.org/01n7e3q98 Chiba Prefectural Center Museum Otone Branch 千葉県立中央博物館 大利根分館'),
(72488, 'https://ror.org/006zxtd57', 'no_lang_code', 1, 'https://ror.org/006zxtd57 Boso no Mura 千葉県立房総のむら'),
(72489, 'https://ror.org/03d873a26', 'en', 1, 'https://ror.org/03d873a26 Medical Business College 医療ビジネス専門学校'),
(72490, 'https://ror.org/05p6jx952', 'en', 1, 'https://ror.org/05p6jx952 Kishokai Medical Corporation 医療法人 葵鐘会'),
(72491, 'https://ror.org/04jdmkw08', 'no_lang_code', 1, 'https://ror.org/04jdmkw08 Kaseda Folklore Museum 南さつま市 加世田郷土資料館'),
(72492, 'https://ror.org/020sb4167', 'en', 1, 'https://ror.org/020sb4167 Environmental Construction College 名古屋環境建設専門学校'),
(72493, 'https://ror.org/05b6t0e74', 'en', 1, 'https://ror.org/05b6t0e74 Hokkaido Prefectual Police 北海道警察'),
(72494, 'https://ror.org/01rmj8z79', 'en', 1, 'https://ror.org/01rmj8z79 Kitami Industrial Technology Center 北見工業技術センター'),
(72495, 'https://ror.org/01rx40j51', 'no_lang_code', 1, 'https://ror.org/01rx40j51 Muko City Cultural Museum 向日市文化資料館'),
(72496, 'https://ror.org/04dp5s194', 'en', 1, 'https://ror.org/04dp5s194 Wakayama Department of Agriculture, Forestry and Fisheries 和歌山県農林水産部'),
(72497, 'https://ror.org/00ssr7512', 'en', 1, 'https://ror.org/00ssr7512 Shikoku Central Medical Welfare Institute 四国中央医療福祉総合学院'),
(72498, 'https://ror.org/04xc1rd71', 'no_lang_code', 1, 'https://ror.org/04xc1rd71 Yotsuya Medical Cube 医療法人社団あんしん会四谷メディカルキューブ'),
(72499, 'https://ror.org/05sz2c943', 'en', 1, 'https://ror.org/05sz2c943 Chiba Environment Foundation 千葉県環境財団'),
(72500, 'https://ror.org/03z6ebp81', 'en', 1, 'https://ror.org/03z6ebp81 Ageo Nursing College 上尾看護専門学校'),
(72501, 'https://ror.org/01k3cnb05', 'no_lang_code', 1, 'https://ror.org/01k3cnb05 Kamiichi General Hospital かみいち総合病院'),
(72502, 'https://ror.org/03g886m74', 'en', 1, 'https://ror.org/03g886m74 Saitama Prefectural Police 埼玉県警察'),
(72503, 'https://ror.org/03jwhs418', 'no_lang_code', 1, 'https://ror.org/03jwhs418 Grail (United States)'),
(72504, 'https://ror.org/0535jaz61', 'en', 1, 'https://ror.org/0535jaz61 National College Of Nursing 国立看護大学校'),
(72505, 'https://ror.org/038xt6s70', 'en', 1, 'https://ror.org/038xt6s70 International Medical And Welfare College 国際医療福祉専門学校'),
(72506, 'https://ror.org/04shejr14', 'en', 1, 'https://ror.org/04shejr14 The Historical Museum of Jomon Village Oku-Matsushima 奥松島縄文村歴史資料館'),
(72507, 'https://ror.org/01scdrj09', 'en', 1, 'https://ror.org/01scdrj09 International Medical And Welfare College Nanao School 国際医療福祉専門学校七尾校'),
(72508, 'https://ror.org/044pe8918', 'en', 1, 'https://ror.org/044pe8918 Otsu City Museum Of History 大津市歴史博物館'),
(72509, 'https://ror.org/04teget82', 'en', 1, 'https://ror.org/04teget82 The Osaka YWCA 公益財団法人大阪YWCA'),
(72510, 'https://ror.org/02cemsw67', 'en', 1, 'https://ror.org/02cemsw67 Miyazaki Prefectural Library 宮崎県立図書館'),
(72511, 'https://ror.org/00e9z4164', 'en', 1, 'https://ror.org/00e9z4164 Miyazaki Prefectural Art Museum 宮崎県立美術館'),
(72512, 'https://ror.org/045852a14', 'no_lang_code', 1, 'https://ror.org/045852a14 Yamagata Prefectural Shinjo Hospital 山形県立新庄病院'),
(72513, 'https://ror.org/02863ez16', 'en', 1, 'https://ror.org/02863ez16 Toyama Science Museum 富山市科学博物館'),
(72514, 'https://ror.org/02qwqem55', 'no_lang_code', 1, 'https://ror.org/02qwqem55 Hanazono Hospital 花園病院'),
(72515, 'https://ror.org/02nymy567', 'no_lang_code', 1, 'https://ror.org/02nymy567 Sapporo Minami Hospital 札幌南病院'),
(72516, 'https://ror.org/056mjwa25', 'en', 1, 'https://ror.org/056mjwa25 Senshu University Kitakami welfare education technical school 専修大学北上福祉教育専門学校'),
(72517, 'https://ror.org/033gwzy17', 'en', 1, 'https://ror.org/033gwzy17 Miyagi Prefectural Research Institute of The Tagajo site 宮城県多賀城跡調査研究所'),
(72518, 'https://ror.org/03jrtp196', 'en', 1, 'https://ror.org/03jrtp196 Miyazaki Welfare Medical College 宮崎福祉医療カレッジ'),
(72519, 'https://ror.org/056v6fd94', 'en', 1, 'https://ror.org/056v6fd94 Yamaguchi Prefectural Police 山口県警察'),
(72520, 'https://ror.org/042ag0556', 'en', 1, 'https://ror.org/042ag0556 Ehime Institute of Industrial Technology Paper Technology Center 愛媛県産業技術研究所 紙産業技術センター'),
(72521, 'https://ror.org/03bd22t26', 'en', 1, 'https://ror.org/03bd22t26 Higashihiroshima Medical Center 東広島医療センター'),
(72522, 'https://ror.org/01t2dy869', 'en', 1, 'https://ror.org/01t2dy869 Chiba City Lifelong Learning Center 千葉市 生涯学習センター'),
(72523, 'https://ror.org/03hsr7383', 'en', 1, 'https://ror.org/03hsr7383 Fukuoka Higashi Medical Center 福岡東医療センター'),
(72524, 'https://ror.org/037dety09', 'en', 1, 'https://ror.org/037dety09 Okayama City Library 岡山市図書館'),
(72525, 'https://ror.org/04h8v0y52', 'en', 1, 'https://ror.org/04h8v0y52 Okayama University of Commerce Attached high School 岡山商科大学附属高等学校'),
(72526, 'https://ror.org/01h3j3f09', 'no_lang_code', 1, 'https://ror.org/01h3j3f09 Mifune Dinosaur Museum 御船町恐竜博物館'),
(72527, 'https://ror.org/05mmfy776', 'no_lang_code', 1, 'https://ror.org/05mmfy776 Tokushima Municipal Hospital 徳島市民病院'),
(72528, 'https://ror.org/02pdkr951', 'en', 1, 'https://ror.org/02pdkr951 The Tokugawa Institute for the History of Forestry 公益財団法人徳川黎明会'),
(72529, 'https://ror.org/03ws8tc44', 'no_lang_code', 1, 'https://ror.org/03ws8tc44 Keiyu Orthopedic Hospital 慶友整形外科クリニック'),
(72530, 'https://ror.org/03mhrjr30', 'en', 1, 'https://ror.org/03mhrjr30 Hiroshima Prefectural Library 広島県立図書館'),
(72531, 'https://ror.org/035sr5g64', 'en', 1, 'https://ror.org/035sr5g64 Bunkyo Furusato History Museum 文京ふるさと歴史館'),
(72532, 'https://ror.org/01433fv30', 'en', 1, 'https://ror.org/01433fv30 Bunka Gakuen Nagano Technical College 文化学園長野保育専門学校'),
(72533, 'https://ror.org/05crg2f28', 'en', 1, 'https://ror.org/05crg2f28 Niigata Prefectural Library 新潟県立図書館'),
(72534, 'https://ror.org/01aa5rh15', 'en', 1, 'https://ror.org/01aa5rh15 Institute of Traditional Japanese Architecture 日本建築専門学校'),
(72535, 'https://ror.org/03y6bke35', 'en', 1, 'https://ror.org/03y6bke35 Osaka Animal Plant & Ocean College 大阪動植物海洋専門学校'),
(72536, 'https://ror.org/05gz1cs28', 'en', 1, 'https://ror.org/05gz1cs28 The Talent Development Education Research Foundation 公益財団法人 才能開発教育研究財団'),
(72537, 'https://ror.org/01pet0423', 'en', 1, 'https://ror.org/01pet0423 Otemae College of Nutrition 大手前栄養大学'),
(72538, 'https://ror.org/024hvm870', 'en', 1, 'https://ror.org/024hvm870 Japan Electronics College 日本電子専門学校'),
(72539, 'https://ror.org/02qmk8t53', 'en', 1, 'https://ror.org/02qmk8t53 Mirai Hospital 会 みらい病院'),
(72540, 'https://ror.org/043gj6932', 'en', 1, 'https://ror.org/043gj6932 Tokyo Technical College 東京テクニカルカレッジ'),
(72541, 'https://ror.org/006763s03', 'en', 1, 'https://ror.org/006763s03 Nemuro Education Institute 根室教育研究所'),
(72542, 'https://ror.org/04s40s883', 'no_lang_code', 1, 'https://ror.org/04s40s883 Toshima Hospital 東京都保健医療公社 豊島病院'),
(72543, 'https://ror.org/0023wb355', 'en', 1, 'https://ror.org/0023wb355 Higashitagawa Culture Memorial Hall 東田川文化記念館'),
(72544, 'https://ror.org/04jbbs672', 'en', 1, 'https://ror.org/04jbbs672 Tokyo Metropolitan Foundation for History and Culture 公益財団法人 東京都歴史文化財団'),
(72545, 'https://ror.org/03vyfg679', 'en', 1, 'https://ror.org/03vyfg679 Matsumoto City Hospital 松本市立病院'),
(72546, 'https://ror.org/009hj6r06', 'en', 1, 'https://ror.org/009hj6r06 Matsue History Museum 松江歴史博物館'),
(72547, 'https://ror.org/02en3wr74', 'no_lang_code', 1, 'https://ror.org/02en3wr74 MitsukaidoKosei Hospital 水海道厚生病院'),
(72548, 'https://ror.org/033kdaz63', 'en', 1, 'https://ror.org/033kdaz63 Himi City Library 氷見市立図書館'),
(72549, 'https://ror.org/02kgc0f98', 'en', 1, 'https://ror.org/02kgc0f98 Oyama City Museum 小山市博物館'),
(72550, 'https://ror.org/0182aka86', 'en', 1, 'https://ror.org/0182aka86 Tochigi Prefectural Police 栃木県警察'),
(72551, 'https://ror.org/03djxm153', 'no_lang_code', 1, 'https://ror.org/03djxm153 EDOSEN 江戸川学園おおたかの森専門学校'),
(72552, 'https://ror.org/02zvd3556', 'en', 1, 'https://ror.org/02zvd3556 Okinawa Academy College 沖縄アカデミー専門学校'),
(72553, 'https://ror.org/045b7dz91', 'no_lang_code', 1, 'https://ror.org/045b7dz91 Echigo Matsunoyama Forest School Kiroro 越後松之山「森の学校」キョロロ'),
(72554, 'https://ror.org/04817hq10', 'en', 1, 'https://ror.org/04817hq10 Okinawa Prefecture 沖縄県公害衛生研究所'),
(72555, 'https://ror.org/00c782c94', 'no_lang_code', 1, 'https://ror.org/00c782c94 Mitsubishi UFJ Research & Consulting (Japan) 三菱UFJリサーチ&コンサルティング'),
(72556, 'https://ror.org/01bxmvw18', 'en', 1, 'https://ror.org/01bxmvw18 Hebei Rehabilitation Hospital 河北リハビリテーション病院'),
(72557, 'https://ror.org/05t1nj016', 'no_lang_code', 1, 'https://ror.org/05t1nj016 Institute of Nutrition and Pathology (Japan) 栄養病理研究所'),
(72558, 'https://ror.org/00fzf1h89', 'en', 1, 'https://ror.org/00fzf1h89 HOSEI Daini Junior and Senior High School 法政大学第二中'),
(72559, 'https://ror.org/01sqm5e44', 'no_lang_code', 1, 'https://ror.org/01sqm5e44 Shin Nippon Biomedical Laboratories (Japan) 新日本バイオメディカル研究所'),
(72560, 'https://ror.org/020qrc968', 'en', 1, 'https://ror.org/020qrc968 The Shoto Museum of Art 渋谷区立松涛美術館'),
(72561, 'https://ror.org/029pnek19', 'no_lang_code', 1, 'https://ror.org/029pnek19 Institute for Rheumatic Diseases (Japan) 株式会社膠原病研究所'),
(72562, 'https://ror.org/00xscwy84', 'en', 1, 'https://ror.org/00xscwy84 Shiga Prefectural Higashi Otsu High School 滋賀県立東大津高'),
(72563, 'https://ror.org/04jafar77', 'en', 1, 'https://ror.org/04jafar77 Independent Administrative Agency National Museum of Art 独立行政法人国立美術館'),
(72564, 'https://ror.org/00e42m728', 'en', 1, 'https://ror.org/00e42m728 Kumamoto Prefectural Museum Network Center 熊本県博物館ネットワークセンター'),
(72565, 'https://ror.org/016nv1t74', 'en', 1, 'https://ror.org/016nv1t74 Kumamoto Prefectural College of Technology 熊本県立技術短期大学校'),
(72566, 'https://ror.org/0226qmh36', 'en', 1, 'https://ror.org/0226qmh36 Ishigaki City Library 石垣市立図書館'),
(72567, 'https://ror.org/041ajqr07', 'en', 1, 'https://ror.org/041ajqr07 Ishikawa Prefectural Library 石川県立図書館'),
(72568, 'https://ror.org/006mz4f81', 'en', 1, 'https://ror.org/006mz4f81 Ishikawa Prefectural Museum of History 石川県立歴史博物館'),
(72569, 'https://ror.org/01w82kb82', 'en', 1, 'https://ror.org/01w82kb82 Tamano General Medical College 玉野総合医療専問学校'),
(72570, 'https://ror.org/011nerd04', 'no_lang_code', 1, 'https://ror.org/011nerd04 Kisarazu Hospital 木更津病院'),
(72571, 'https://ror.org/05xkjsd30', 'no_lang_code', 1, 'https://ror.org/05xkjsd30 Nadogaya Hospital 名戸ヶ谷病院'),
(72572, 'https://ror.org/035zer135', 'no_lang_code', 1, 'https://ror.org/035zer135 Fukuoka City Museum 福岡市博物館'),
(72573, 'https://ror.org/03z692463', 'en', 1, 'https://ror.org/03z692463 National Tax College 税務大学校'),
(72574, 'https://ror.org/00e2xjp58', 'en', 1, 'https://ror.org/00e2xjp58 Anabuki Design College 穴吹デザイン専門学校'),
(72575, 'https://ror.org/00qr9qz34', 'en', 1, 'https://ror.org/00qr9qz34 Gamagori City Marine Science Museum 蒲郡市生命の海科学館'),
(72576, 'https://ror.org/04m7bm997', 'no_lang_code', 1, 'https://ror.org/04m7bm997 Arca (Japan) 株式会社アルカ'),
(72577, 'https://ror.org/04zae5q03', 'en', 1, 'https://ror.org/04zae5q03 The Dainippon Silk Foundation 財団法人 大日本蚕糸会'),
(72578, 'https://ror.org/02pnmfn82', 'en', 1, 'https://ror.org/02pnmfn82 Kanagawa Archeology Foundation かながわ考古学財団'),
(72579, 'https://ror.org/056h7qt40', 'no_lang_code', 1, 'https://ror.org/056h7qt40 Hotoku Museum 財団法人報徳福運社'),
(72580, 'https://ror.org/00ged3985', 'en', 1, 'https://ror.org/00ged3985 Mieko Fuji Contemporary Dance School & Company 富士美枝子コンテンポラリーダンススクール&カンパニー'),
(72581, 'https://ror.org/0441nm020', 'en', 1, 'https://ror.org/0441nm020 Iwate Cultural Promotion agency 財団法人岩手県文化振興事業'),
(72582, 'https://ror.org/00abset84', 'en', 1, 'https://ror.org/00abset84 Art College kobe アートカレッジ神戸'),
(72583, 'https://ror.org/0364rgm75', 'en', 1, 'https://ror.org/0364rgm75 Yomiuri Science and Technology College 読売理工医療福祉専門学校'),
(72584, 'https://ror.org/01peek834', 'en', 1, 'https://ror.org/01peek834 National Art Institute 財団法人民族芸術研究所'),
(72585, 'https://ror.org/01t40ej06', 'en', 1, 'https://ror.org/01t40ej06 Toyota City Museum of Local History 豊田市郷土資料館'),
(72586, 'https://ror.org/00yjfkj05', 'en', 1, 'https://ror.org/00yjfkj05 Chigasaki Rehabilitation College 茅ヶ崎リハビリテーション専門学校は'),
(72587, 'https://ror.org/00ekwzh02', 'en', 1, 'https://ror.org/00ekwzh02 Aomori Prefectural School Education Center 青森県総合学校教育センタ'),
(72588, 'https://ror.org/013z02f32', 'en', 1, 'https://ror.org/013z02f32 Shizuoka Prefecture Archaeological Center 静岡県埋蔵文化財センター'),
(72589, 'https://ror.org/01c13f829', 'en', 1, 'https://ror.org/01c13f829 Kinki Polytechnic College 近畿ポリテクカレッジ'),
(72590, 'https://ror.org/05ttj6w10', 'en', 1, 'https://ror.org/05ttj6w10 Nishinari Labor Welfare Center 財団法人西成労働福祉センター'),
(72591, 'https://ror.org/01qsz2191', 'en', 1, 'https://ror.org/01qsz2191 Nagasaki Ajisai Hospital 長崎逓信病院'),
(72592, 'https://ror.org/001pvd496', 'en', 1, 'https://ror.org/001pvd496 Kansai Vocational College of Medicine 関西医療学園専門学校'),
(72593, 'https://ror.org/01z0d7163', 'en', 1, 'https://ror.org/01z0d7163 Shizuoka Prefecture Institute of Environmental Health Sciences 静岡県環境衛生科学研究所'),
(72594, 'https://ror.org/04qgwte94', 'en', 1, 'https://ror.org/04qgwte94 Shiun Junior High School 高松市立紫雲中'),
(72595, 'https://ror.org/035130s04', 'no_lang_code', 1, 'https://ror.org/035130s04 Otepia Kochi Library 高知市立高知市民図書館'),
(72596, 'https://ror.org/021t5ek61', 'en', 1, 'https://ror.org/021t5ek61 Kushiro City Museum 釧路市立博物館'),
(72597, 'https://ror.org/03j7j4362', 'en', 1, 'https://ror.org/03j7j4362 Kagoshima Prefectural Library 鹿児島県立図書館'),
(72598, 'https://ror.org/042z8zj53', 'en', 1, 'https://ror.org/042z8zj53 Aso Information Business College Fukuoka 麻生情報ビジネス専門学校福岡校'),
(72599, 'https://ror.org/0047dfm96', 'en', 1, 'https://ror.org/0047dfm96 Shikoku Occupational Skills Development College 香川職業訓練短期大学校'),
(72600, 'https://ror.org/018aq0w85', 'en', 1, 'https://ror.org/018aq0w85 Ryugasaki City Museum of History and Folklore 龍ケ崎市歴史民俗資料館'),
(72601, 'https://ror.org/00vx0am61', 'en', 1, 'https://ror.org/00vx0am61 Kagoshima Medical Corporation Association Nursing College 鹿児島県医療法人協会立看護専門学校'),
(72602, 'https://ror.org/00dfbm658', 'en', 1, 'https://ror.org/00dfbm658 West Bengal State Council of Technical Education পশ্চিমবঙ্গ রাষ্ট্রীয় কারিগরী পরিষদ'),
(72603, 'https://ror.org/05eq3g745', 'no_lang_code', 1, 'https://ror.org/05eq3g745 Balaji Utthan Sansthan बालाजी उत्थान संस्थान'),
(72604, 'https://ror.org/00d964061', 'en', 1, 'https://ror.org/00d964061 GoCare Health Solutions Limited'),
(72605, 'https://ror.org/04n9n6c96', 'en', 1, 'https://ror.org/04n9n6c96 Young Africa FOUNDATION'),
(72606, 'https://ror.org/00ygnz155', 'en', 1, 'https://ror.org/00ygnz155 University Transportation Center for Railway Safety'),
(72607, 'https://ror.org/02hgagx44', 'no_lang_code', 1, 'https://ror.org/02hgagx44 Bharat Immunologicals and Biologicals Corporation (India)'),
(72608, 'https://ror.org/00gsmyw97', 'en', 1, 'https://ror.org/00gsmyw97 Central Avian Research Institute केन्द्रीय पक्षी अनुसंधान संस्थान'),
(72609, 'https://ror.org/04154se97', 'en', 1, 'https://ror.org/04154se97 Bidar Organization for Medicinal and Aromatic plants'),
(72610, 'https://ror.org/01n1cp186', 'en', 1, 'https://ror.org/01n1cp186 Central Institute for Research on Goats केन्द्रीय बकरी अनुसंधान संस्थान'),
(72611, 'https://ror.org/03fwhmm19', 'en', 1, 'https://ror.org/03fwhmm19 Center for Constitutional Governance'),
(72612, 'https://ror.org/03gmwcy77', 'en', 1, 'https://ror.org/03gmwcy77 Centre for International Law Research and Policy'),
(72613, 'https://ror.org/00mv0vt78', 'no_lang_code', 1, 'https://ror.org/00mv0vt78 Biotech Park बायोटेक पार्क'),
(72614, 'https://ror.org/048t29e55', 'en', 1, 'https://ror.org/048t29e55 Youth Network for Reform'),
(72615, 'https://ror.org/01ydq7s61', 'no_lang_code', 1, 'https://ror.org/01ydq7s61 GenePath Dx (India)'),
(72616, 'https://ror.org/0329af416', 'en', 1, 'https://ror.org/0329af416 Central Institute of Technology Kokrajhar केंद्रीय प्रौद्योगिकी संस्थान कोकराझार'),
(72617, 'https://ror.org/05qyca855', 'en', 1, 'https://ror.org/05qyca855 Centre of Technology & Entrepreneurship Development'),
(72618, 'https://ror.org/00vwnt173', 'en', 1, 'https://ror.org/00vwnt173 Animal Resources Development Department'),
(72619, 'https://ror.org/04q1ghb64', 'en', 1, 'https://ror.org/04q1ghb64 Aravali Foundation for Education'),
(72620, 'https://ror.org/00tw8zf26', 'en', 1, 'https://ror.org/00tw8zf26 Centre For Human Genetics'),
(72621, 'https://ror.org/03681th59', 'en', 1, 'https://ror.org/03681th59 Arunachal Pradesh State Council for Science & Technology'),
(72622, 'https://ror.org/05b2qtm61', 'en', 1, 'https://ror.org/05b2qtm61 Centre for Rural Education and Economic Development'),
(72623, 'https://ror.org/04dmgvm89', 'en', 1, 'https://ror.org/04dmgvm89 Dhanalakshmi Srinivasan Group of Institutions'),
(72624, 'https://ror.org/039c5k490', 'en', 1, 'https://ror.org/039c5k490 Centre For Wildlife Studies'),
(72625, 'https://ror.org/018jrds86', 'en', 1, 'https://ror.org/018jrds86 Directorate of Cashew Research काजू अनुसंधान निदेशालय'),
(72626, 'https://ror.org/03j87dy80', 'en', 1, 'https://ror.org/03j87dy80 Directorate of Coldwater Fisheries Research ठंडा पानी मत्स्य निदेशालय'),
(72627, 'https://ror.org/02enk0533', 'en', 1, 'https://ror.org/02enk0533 Association for Awareness on Rural and Tribal Health Institute'),
(72628, 'https://ror.org/04j7knk69', 'en', 1, 'https://ror.org/04j7knk69 Association for Rural Development'),
(72629, 'https://ror.org/02pvp9c06', 'en', 1, 'https://ror.org/02pvp9c06 Indian Institute of Millets Research भारतीय कदन्न अनुसंधान संस्थान'),
(72630, 'https://ror.org/03ryk3848', 'no_lang_code', 1, 'https://ror.org/03ryk3848 Chacha Nehru Bal Chikitsalaya चाचा नेहरु बाल चिकित्सालय'),
(72631, 'https://ror.org/05vm6r550', 'en', 1, 'https://ror.org/05vm6r550 Indian Institute of Soybean Research भारतीय सोयाबीन अनुसंधान संस्थान'),
(72632, 'https://ror.org/02hzb7188', 'en', 1, 'https://ror.org/02hzb7188 Directorate of Weed Research खरपतवार अनुसंधान निदेशालय'),
(72633, 'https://ror.org/0333x0667', 'en', 1, 'https://ror.org/0333x0667 Avantha Centre for Industrial Research & Development औद्योगिक अनुसंधान एवं विकास के लिए केंद्र अवंता'),
(72634, 'https://ror.org/00bhbn803', 'en', 1, 'https://ror.org/00bhbn803 Chellaram Hospital'),
(72635, 'https://ror.org/04h4wws08', 'no_lang_code', 1, 'https://ror.org/04h4wws08 Ayurvet (India) अयुर्वेत'),
(72636, 'https://ror.org/021zpak95', 'en', 1, 'https://ror.org/021zpak95 Ayurvet Research Foundation'),
(72637, 'https://ror.org/020dpkm20', 'no_lang_code', 1, 'https://ror.org/020dpkm20 Bal Umang Drishya Sanstha बल उमंग दृष्य संस्था'),
(72638, 'https://ror.org/0465gqv59', 'en', 1, 'https://ror.org/0465gqv59 Maharashtra Forest Department महाराष्ट्र वन विभाग'),
(72639, 'https://ror.org/03j1wg370', 'en', 1, 'https://ror.org/03j1wg370 Leibniz Institute for Jewish History and Culture – Simon Dubnow Leibniz-Institut für jüdische Geschichte und Kultur – Simon Dubnow'),
(72640, 'https://ror.org/02xr5ws27', 'en', 1, 'https://ror.org/02xr5ws27 Andhra Pradesh Forest Department ఆంధ్రప్రదేశ్ అటవీ శాఖ'),
(72641, 'https://ror.org/02ns3vy48', 'en', 1, 'https://ror.org/02ns3vy48 Forest Survey of India भारतीय वन सर्वेक्षण'),
(72642, 'https://ror.org/058qjc262', 'en', 1, 'https://ror.org/058qjc262 Central Muga Eri Research and Training Institute'),
(72643, 'https://ror.org/01anr5861', 'no_lang_code', 1, 'https://ror.org/01anr5861 Balipara Foundation'),
(72644, 'https://ror.org/02cc4y991', 'en', 1, 'https://ror.org/02cc4y991 Foundation for Agricultural Resources Management and Environmental Remediation'),
(72645, 'https://ror.org/04ea3ng91', 'no_lang_code', 1, 'https://ror.org/04ea3ng91 Codon Biosciences (India)'),
(72646, 'https://ror.org/0155p9f79', 'en', 1, 'https://ror.org/0155p9f79 Foundation for Environment and Economic Development Services'),
(72647, 'https://ror.org/05d8r3q58', 'en', 1, 'https://ror.org/05d8r3q58 Foundation for Neglected Disease Research ನಿರ್ಲಕ್ಷ್ಯ ರೋಗ ರಿಸರ್ಚ್ ಫೌಂಡೇಶನ್'),
(72648, 'https://ror.org/01yfx8049', 'en', 1, 'https://ror.org/01yfx8049 Fragrance & Flavour Development Centre फ्राग्रांस & फ्लेवर डेवेलपमेंट सेंटर'),
(72649, 'https://ror.org/03q5zq793', 'no_lang_code', 1, 'https://ror.org/03q5zq793 Genomix Biotech (India)'),
(72650, 'https://ror.org/01av07n65', 'no_lang_code', 1, 'https://ror.org/01av07n65 Suguna Holdings (India)'),
(72651, 'https://ror.org/005z3yp93', 'en', 1, 'https://ror.org/005z3yp93 Central Sericultural Germplasm Resources Centre'),
(72652, 'https://ror.org/02kd0zj59', 'en', 1, 'https://ror.org/02kd0zj59 Government Ayurvedic College and Hospital চৰকাৰী আয়ুৰ্বেদিক মহাবিদ্যালয়'),
(72653, 'https://ror.org/04hpyv730', 'en', 1, 'https://ror.org/04hpyv730 Centre for Aromatic Plants'),
(72654, 'https://ror.org/01e6kag67', 'en', 1, 'https://ror.org/01e6kag67 Gujarat Science City'),
(72655, 'https://ror.org/02srgbx34', 'en', 1, 'https://ror.org/02srgbx34 Chilika Development Authority'),
(72656, 'https://ror.org/047q4fb87', 'en', 1, 'https://ror.org/047q4fb87 Indian Institute of Natural Resins and Gums'),
(72657, 'https://ror.org/051m5br28', 'en', 1, 'https://ror.org/051m5br28 Indian Society of Agribusiness Professionals'),
(72658, 'https://ror.org/03r8rb992', 'en', 1, 'https://ror.org/03r8rb992 International Institute of Biotechnology and Toxicology'),
(72659, 'https://ror.org/01t6ysk15', 'en', 1, 'https://ror.org/01t6ysk15 Koul Research Foundation'),
(72660, 'https://ror.org/04m3mhq27', 'en', 1, 'https://ror.org/04m3mhq27 Centre for Advanced Bioenergy Research'),
(72661, 'https://ror.org/04yva9a78', 'en', 1, 'https://ror.org/04yva9a78 Institute of Animal Health and Veterinary Biologicals ಪಶು ಆರೋಗ್ಯ ಮತ್ತು ಜೈವಿಕ ಸಂಸ್ಥೆ'),
(72662, 'https://ror.org/01dqwwr24', 'en', 1, 'https://ror.org/01dqwwr24 Iora Ecological Solutions'),
(72663, 'https://ror.org/02wcjva51', 'en', 1, 'https://ror.org/02wcjva51 Institute of Forest Productivity वन उत्पादकता संस्थान'),
(72664, 'https://ror.org/04d3x5w26', 'en', 1, 'https://ror.org/04d3x5w26 Institute Of Horticulture Technology संस्थान बागवानी प्रौद्योगिकी'),
(72665, 'https://ror.org/031eap517', 'en', 1, 'https://ror.org/031eap517 Delhi Development Authority दिल्ली विकास प्राधिकरण'),
(72666, 'https://ror.org/03780jn86', 'en', 1, 'https://ror.org/03780jn86 Kalam Institute of Health Technology'),
(72667, 'https://ror.org/02j0qe342', 'en', 1, 'https://ror.org/02j0qe342 Dr. Kamakshi Memorial Hospital'),
(72668, 'https://ror.org/02k3mav14', 'no_lang_code', 1, 'https://ror.org/02k3mav14 Kamdhenu University કામધેનુ યુનિવર્સિટી'),
(72669, 'https://ror.org/02e5d4a33', 'no_lang_code', 1, 'https://ror.org/02e5d4a33 Bafna Group (India)'),
(72670, 'https://ror.org/04svcpx91', 'hi', 1, 'https://ror.org/04svcpx91 Kanya Maha Vidyalaya ਕੰਨਿਆ ਮਹਾਂ ਵਿਦਿਆਲਾ'),
(72671, 'https://ror.org/04qwq4796', 'en', 1, 'https://ror.org/04qwq4796 Haffkine Institute हफ़केन प्रशिक्षण, अनुसंधान एवं परीक्षण संस्थान'),
(72672, 'https://ror.org/0312mdb50', 'no_lang_code', 1, 'https://ror.org/0312mdb50 Hans Raj Mahila Maha Vidyalaya ਹੰਸ ਰਾਜ ਮਹਿਲਾ ਮਹਾ ਵਿਦਿਆਲਾ'),
(72673, 'https://ror.org/04gzt2g63', 'hi', 1, 'https://ror.org/04gzt2g63 Kendriya Vidyalaya Sangathan केंद्रीय विद्यालय संगठन'),
(72674, 'https://ror.org/01tcd5f78', 'no_lang_code', 1, 'https://ror.org/01tcd5f78 Kentropy Technologies (India)'),
(72675, 'https://ror.org/03w8zkt07', 'no_lang_code', 1, 'https://ror.org/03w8zkt07 Hester'),
(72676, 'https://ror.org/015w7jz26', 'en', 1, 'https://ror.org/015w7jz26 Kerala Livestock Development Board കേരള കന്നുകാലി വികസന ബോർഡ്'),
(72677, 'https://ror.org/03tgvyd09', 'no_lang_code', 1, 'https://ror.org/03tgvyd09 Hi Tech BioSciences India (India)'),
(72678, 'https://ror.org/01yennm80', 'en', 1, 'https://ror.org/01yennm80 King Institute of Preventive Medicine and Research தடுப்பு மருந்து மற்றும் ஆராய்ச்சி கிங் இன்ஸ்டிடியூட்'),
(72679, 'https://ror.org/01c55fw55', 'en', 1, 'https://ror.org/01c55fw55 Krishi Vigyan Kendra, Ghatkhed Amravati'),
(72680, 'https://ror.org/03pczck54', 'en', 1, 'https://ror.org/03pczck54 ICAR-National Research Centre on Pig'),
(72681, 'https://ror.org/00y3zx547', 'no_lang_code', 1, 'https://ror.org/00y3zx547 Krishi Vigyan Kendra, Hingoli'),
(72682, 'https://ror.org/05n682z45', 'no_lang_code', 1, 'https://ror.org/05n682z45 Krishi Vigyan Kendra, Karda कृषी विज्ञान केंद्र , करडा'),
(72683, 'https://ror.org/05jcvbb33', 'no_lang_code', 1, 'https://ror.org/05jcvbb33 Kuantum Papers (India)'),
(72684, 'https://ror.org/00gjhva62', 'en', 1, 'https://ror.org/00gjhva62 Lifecare Innovations (India)'),
(72685, 'https://ror.org/03fv7j188', 'en', 1, 'https://ror.org/03fv7j188 Central Citrus Research Institute केन्द्रीय लिंबूवर्गीय संशोधन केंद्र'),
(72686, 'https://ror.org/006w0gs85', 'en', 1, 'https://ror.org/006w0gs85 Mazumdar Shaw Medical Foundation'),
(72687, 'https://ror.org/02jvh9y58', 'en', 1, 'https://ror.org/02jvh9y58 Moving Academy of Medicine and Biomedicine मुव्हींग अॅकॅडमी अॉफ मेडीसिन अँड बायोमेडीसिन'),
(72688, 'https://ror.org/01tv67y39', 'en', 1, 'https://ror.org/01tv67y39 Mustard Research and Promotion Consortium सरसों अनुसंधान एवं संवर्धन कंसोर्टियम'),
(72689, 'https://ror.org/01c0mrz71', 'en', 1, 'https://ror.org/01c0mrz71 Directorate of Poultry Research ఐసిఎఆర్-డైరెక్టరేట్ పౌల్ట్రీ రీసెర్చ్'),
(72690, 'https://ror.org/03b1gtt44', 'en', 1, 'https://ror.org/03b1gtt44 Lipomic Healthcare (India)'),
(72691, 'https://ror.org/0354ckp94', 'en', 1, 'https://ror.org/0354ckp94 National Institute of High Security Animal Diseases उच्च सुरक्षा पशु रोग के राष्ट्रीय संस्थान'),
(72692, 'https://ror.org/03pf1rt23', 'en', 1, 'https://ror.org/03pf1rt23 National Bureau of Agricultural Insect Resources'),
(72693, 'https://ror.org/03tdar888', 'en', 1, 'https://ror.org/03tdar888 North Eastern Space Applications Centre'),
(72694, 'https://ror.org/02nf4c779', 'no_lang_code', 1, 'https://ror.org/02nf4c779 Novo Informatics (India) नोवो सूचना विज्ञान प्रा। लिमिटेड'),
(72695, 'https://ror.org/01d9dyv42', 'en', 1, 'https://ror.org/01d9dyv42 National Research Centre for Integrated Pest Management राष्ट्रीय समेकित नाशीजीव प्रबन्धन केन्द्र'),
(72696, 'https://ror.org/02ae11525', 'no_lang_code', 1, 'https://ror.org/02ae11525 Biozeen (India)'),
(72697, 'https://ror.org/01fkqhn95', 'en', 1, 'https://ror.org/01fkqhn95 National Federation of Cooperative Sugar Factories कंपनी के नेशनल फेडरेशन - सेशन शुगर फैक्ट्रीज लिमिटेड'),
(72698, 'https://ror.org/04x97rq71', 'en', 1, 'https://ror.org/04x97rq71 National Innovation Foundation નેશનલ ઇનોવેશન ફાઉન્ડેશન ભારત'),
(72699, 'https://ror.org/0259rff80', 'no_lang_code', 1, 'https://ror.org/0259rff80 Manav Vikas Evam Sewa Sansthan'),
(72700, 'https://ror.org/033h29277', 'en', 1, 'https://ror.org/033h29277 Participatory Rural Development Foundation'),
(72701, 'https://ror.org/05j4aq945', 'en', 1, 'https://ror.org/05j4aq945 Peermade Development Society'),
(72702, 'https://ror.org/01hmsgz49', 'no_lang_code', 1, 'https://ror.org/01hmsgz49 Krishi Vigyan Kendra, Latur कृषी विज्ञान केंद्र, लातूर'),
(72703, 'https://ror.org/04mf96963', 'en', 1, 'https://ror.org/04mf96963 Prashanti Cancer Care Mission'),
(72704, 'https://ror.org/01hxmwm32', 'en', 1, 'https://ror.org/01hxmwm32 Punjab State Council for Science & Technology ਵਿਗਿਆਨ ਅਤੇ ਤਕਨਾਲੋਜੀ ਦੇ ਲਈ ਪੰਜਾਬ ਰਾਜ ਪ੍ਰੀਸ਼ਦ'),
(72705, 'https://ror.org/011pwcp79', 'en', 1, 'https://ror.org/011pwcp79 Research and Action in Natural Wealth Administration नैसर्गिक संपत्ती प्रशासन संशोधन आणि कृती'),
(72706, 'https://ror.org/019f08v97', 'en', 1, 'https://ror.org/019f08v97 Jundi-Shapur University of Technology دانشگاه صنعتی جندی شاپور دزفول'),
(72707, 'https://ror.org/01as6we94', 'en', 1, 'https://ror.org/01as6we94 Rama Devi Women''s University ରମା ଦେବୀ ମହିଳା ବିଶ୍ଵ ବିଦ୍ୟାଳୟ'),
(72708, 'https://ror.org/05f60e681', 'en', 1, 'https://ror.org/05f60e681 Society For Environment And Development पर्यावरण और विकास के लिए सोसायटी'),
(72709, 'https://ror.org/00dks7s70', 'no_lang_code', 1, 'https://ror.org/00dks7s70 SoftTeam Solutions (India)'),
(72710, 'https://ror.org/04f6hwk12', 'en', 1, 'https://ror.org/04f6hwk12 Shri A.M.M. Murugappa Chettiar Research Centre'),
(72711, 'https://ror.org/0469c4m52', 'en', 1, 'https://ror.org/0469c4m52 Saitama Prefectural River Museum 埼玉県立川の博物館'),
(72712, 'https://ror.org/019t2m169', 'no_lang_code', 1, 'https://ror.org/019t2m169 Valagro (India)'),
(72713, 'https://ror.org/004dy8z51', 'no_lang_code', 1, 'https://ror.org/004dy8z51 Siddharth Starch (India)'),
(72714, 'https://ror.org/05he2ce30', 'en', 1, 'https://ror.org/05he2ce30 Social Awareness Through Human Involvement'),
(72715, 'https://ror.org/047ynz185', 'en', 1, 'https://ror.org/047ynz185 Sri Konda Laxman Telangana State Horticultural University శ్రీ కొండా లక్ష్మణ్ తెలంగాణ రాష్ట్రం హార్టికల్చర్ యూనివర్సిటీ'),
(72716, 'https://ror.org/00xctjm44', 'en', 1, 'https://ror.org/00xctjm44 P.V. Narsimha Rao Telangana Veterinary University PV నరసింహ రావు తెలంగాణ వెటర్నరీ యూనివర్సిటీ'),
(72717, 'https://ror.org/02sb4r018', 'en', 1, 'https://ror.org/02sb4r018 Social Service Sericulture Project Trust'),
(72718, 'https://ror.org/03wa5d325', 'en', 1, 'https://ror.org/03wa5d325 Society for Applied Microwave Electronics Engineering & Research'),
(72719, 'https://ror.org/05sffjq44', 'en', 1, 'https://ror.org/05sffjq44 Veterinary And Animal Husbandry Services'),
(72720, 'https://ror.org/04td8e917', 'en', 1, 'https://ror.org/04td8e917 Uttar Pradesh Pandit Deen Dayal Upadhyaya Pashu Chikitsa Vigyan Vishwavidyalaya Evam Go-Anusandhan Sansthan'),
(72721, 'https://ror.org/01vv0b990', 'en', 1, 'https://ror.org/01vv0b990 Tamil Nadu Board of Rural Development ஊரக மேம்பாட்டு தமிழ்நாடு வாரியம்'),
(72722, 'https://ror.org/008nqzn46', 'no_lang_code', 1, 'https://ror.org/008nqzn46 Vigyan Prasar विज्ञान प्रसार'),
(72723, 'https://ror.org/03yenn346', 'no_lang_code', 1, 'https://ror.org/03yenn346 Varsha Bioscience and Technology (India)'),
(72724, 'https://ror.org/003fxr642', 'no_lang_code', 1, 'https://ror.org/003fxr642 Vertiver (India) वेर्तिवर'),
(72725, 'https://ror.org/02b5gjr58', 'en', 1, 'https://ror.org/02b5gjr58 Vivekananda Institute of Biotechnology বিবেকানন্দ বায়োটেকনোলজি ইনস্টিটিউট'),
(72726, 'https://ror.org/00c44w836', 'en', 1, 'https://ror.org/00c44w836 Vivekananda Memorial Hospital'),
(72727, 'https://ror.org/029xz9y97', 'en', 1, 'https://ror.org/029xz9y97 State Council of Science Technology & Environment, Meghalaya'),
(72728, 'https://ror.org/01cpb1168', 'en', 1, 'https://ror.org/01cpb1168 State Forest Research Institute'),
(72729, 'https://ror.org/03224rx59', 'en', 1, 'https://ror.org/03224rx59 Animal Husbandry and Veterinary Department'),
(72730, 'https://ror.org/01zm1c864', 'en', 1, 'https://ror.org/01zm1c864 Department of Animal Husbandry, Veterinary and Dairy Development'),
(72731, 'https://ror.org/0352b7b72', 'en', 1, 'https://ror.org/0352b7b72 Veterinary & Animal Husbandry'),
(72732, 'https://ror.org/00402k788', 'en', 1, 'https://ror.org/00402k788 Animal Husbandry & Veterinary'),
(72733, 'https://ror.org/0240nmn85', 'en', 1, 'https://ror.org/0240nmn85 Veterinary Biological and Research Institute'),
(72734, 'https://ror.org/028f0h308', 'en', 1, 'https://ror.org/028f0h308 Department of Animal Husbandry and Veterinary'),
(72735, 'https://ror.org/05106mv47', 'en', 1, 'https://ror.org/05106mv47 Department of Animal Husbandry Livestock, Fisheries & Veterinary पशुपालन पशुधन मत्स्य र पशु'),
(72736, 'https://ror.org/02ma46909', 'en', 1, 'https://ror.org/02ma46909 WA Country Health Service'),
(72737, 'https://ror.org/00ffcee24', 'en', 1, 'https://ror.org/00ffcee24 Australian Hearing'),
(72738, 'https://ror.org/02wewap38', 'en', 1, 'https://ror.org/02wewap38 Ngaanyatjarra Health Service'),
(72739, 'https://ror.org/05s9qth02', 'en', 1, 'https://ror.org/05s9qth02 Australian Centre for Heart Health'),
(72740, 'https://ror.org/043vdcr39', 'en', 1, 'https://ror.org/043vdcr39 Mental Health Commission'),
(72741, 'https://ror.org/00qhbve66', 'no_lang_code', 1, 'https://ror.org/00qhbve66 PI Electronics (China)'),
(72742, 'https://ror.org/05bb7at98', 'no_lang_code', 1, 'https://ror.org/05bb7at98 Techmart Industrial Limited (China) 科汇工业机械有限公司'),
(72743, 'https://ror.org/037c00h05', 'no_lang_code', 1, 'https://ror.org/037c00h05 Hong Kong Auto Parts Industry Association (China) 香港汽車零部件工業協會'),
(72744, 'https://ror.org/05kwyy930', 'en', 1, 'https://ror.org/05kwyy930 The Hong Kong Council of Social Service 香港社會服務聯會'),
(72745, 'https://ror.org/0176pnx67', 'en', 1, 'https://ror.org/0176pnx67 Hong Kong Institute of Contemporary Culture 香港當代文化中心於'),
(72746, 'https://ror.org/022sm0j70', 'en', 1, 'https://ror.org/022sm0j70 Chartered Institute of Arbitrators'),
(72747, 'https://ror.org/05s1rbd84', 'en', 1, 'https://ror.org/05s1rbd84 Hong Kong Trade Development Council 香港貿易發展局'),
(72748, 'https://ror.org/036hzfm30', 'no_lang_code', 1, 'https://ror.org/036hzfm30 Compass Technology (China)'),
(72749, 'https://ror.org/0189jyk25', 'en', 1, 'https://ror.org/0189jyk25 Aachen Institute for Nuclear Training'),
(72750, 'https://ror.org/04bpb0r34', 'no_lang_code', 1, 'https://ror.org/04bpb0r34 Aerospace Institut Aerospace Institute (Germany)'),
(72751, 'https://ror.org/01w1jem87', 'no_lang_code', 1, 'https://ror.org/01w1jem87 Alpenforschungsinstitut (Germany)'),
(72752, 'https://ror.org/01qvmm256', 'en', 1, 'https://ror.org/01qvmm256 Academy of Arts Education Akademie der Kulturellen Bildung'),
(72753, 'https://ror.org/023ec5d95', 'no_lang_code', 1, 'https://ror.org/023ec5d95 Akademie Überlingen (Germany)'),
(72754, 'https://ror.org/035wevv89', 'de', 1, 'https://ror.org/035wevv89 Bayerische Landesanstalt für Weinbau und Gartenbau'),
(72755, 'https://ror.org/059kj2n52', 'no_lang_code', 1, 'https://ror.org/059kj2n52 AnaKat (Germany)'),
(72756, 'https://ror.org/05ekwy955', 'de', 1, 'https://ror.org/05ekwy955 Betriebswirtschaftliches Institut für Empirische Gründungs- und Organisationsforschung'),
(72757, 'https://ror.org/00qeeg419', 'de', 1, 'https://ror.org/00qeeg419 Arbeitsgemeinschaft ökologischer Forschungsinstitute'),
(72758, 'https://ror.org/03t6w2288', 'en', 1, 'https://ror.org/03t6w2288 Arbeitskreis deutscher Bildungsstätten Association of German Educational Organizations'),
(72759, 'https://ror.org/01q1pek17', 'en', 1, 'https://ror.org/01q1pek17 Hamburg Archaeological Museum'),
(72760, 'https://ror.org/042xrgf63', 'de', 1, 'https://ror.org/042xrgf63 Lehr- und Versuchsanstalt für Viehhaltung Hofgut Neumühle'),
(72761, 'https://ror.org/02tk5d259', 'no_lang_code', 1, 'https://ror.org/02tk5d259 Arotop Food & Environmet (Germany)'),
(72762, 'https://ror.org/03dqajd65', 'de', 1, 'https://ror.org/03dqajd65 Forschungsinstitut für Beschäftigung Arbeit Qualifikation'),
(72763, 'https://ror.org/00js99a33', 'de', 1, 'https://ror.org/00js99a33 Batteryuniversity'),
(72764, 'https://ror.org/0063jwc41', 'en', 1, 'https://ror.org/0063jwc41 Bauhaus Archive'),
(72765, 'https://ror.org/0432w2a74', 'no_lang_code', 1, 'https://ror.org/0432w2a74 Bochumer Institut für Technologie (Germany)'),
(72766, 'https://ror.org/05edmmt93', 'de', 1, 'https://ror.org/05edmmt93 Bayerisches Staatsinstitut für Hochschulforschung und Hochschulplanung'),
(72767, 'https://ror.org/0423yjj08', 'en', 1, 'https://ror.org/0423yjj08 Borderstep Institut für Innovation und Nachhaltigkeit Borderstep Institute for Innovation and Sustainability'),
(72768, 'https://ror.org/04zk07r40', 'en', 1, 'https://ror.org/04zk07r40 Brandenburg Institute for Society and Security Brandenburgische Institut für Gesellschaft und Sicherheit'),
(72769, 'https://ror.org/02hs0x989', 'de', 1, 'https://ror.org/02hs0x989 BDH-Klinik Hessisch Oldendorf'),
(72770, 'https://ror.org/03ev0dv90', 'no_lang_code', 1, 'https://ror.org/03ev0dv90 Bregau (Germany)'),
(72771, 'https://ror.org/010h7xw27', 'en', 1, 'https://ror.org/010h7xw27 BIOP Institute'),
(72772, 'https://ror.org/05y6s9s64', 'en', 1, 'https://ror.org/05y6s9s64 Berghof Foundation'),
(72773, 'https://ror.org/03a2rz261', 'de', 1, 'https://ror.org/03a2rz261 Bildungsinstitut im Gesundheitswesen'),
(72774, 'https://ror.org/01awf8081', 'de', 1, 'https://ror.org/01awf8081 BilSE - Institut für Bildung und Forschung'),
(72775, 'https://ror.org/03afbsk96', 'no_lang_code', 1, 'https://ror.org/03afbsk96 Sonic Healthcare (Germany)'),
(72776, 'https://ror.org/016mndq43', 'no_lang_code', 1, 'https://ror.org/016mndq43 Biota Institut für ökologische Forschung und Planung (Germany)'),
(72777, 'https://ror.org/04zs4f087', 'no_lang_code', 1, 'https://ror.org/04zs4f087 ERT (Germany)'),
(72778, 'https://ror.org/02gn59349', 'no_lang_code', 1, 'https://ror.org/02gn59349 Bau-Institut für Ressourceneffizientes und Nachhaltiges Bauen Birn (Germany)'),
(72779, 'https://ror.org/03qz20664', 'de', 1, 'https://ror.org/03qz20664 Brandenburg-Berliner Institut für Sozialwissenschaftliche Studien'),
(72780, 'https://ror.org/003cqeh33', 'de', 1, 'https://ror.org/003cqeh33 Institut Dr. Flad'),
(72781, 'https://ror.org/045cajz52', 'de', 1, 'https://ror.org/045cajz52 Dommuseum Hildesheim'),
(72782, 'https://ror.org/045r80614', 'no_lang_code', 1, 'https://ror.org/045r80614 CIP Chemisches Institut Pforzheim GmbH (Germany)'),
(72783, 'https://ror.org/03b7hqk30', 'de', 1, 'https://ror.org/03b7hqk30 Berufsforschungs- und Beratungsinstitut für interdisziplinäre Technikgestaltung'),
(72784, 'https://ror.org/00ahbw052', 'de', 1, 'https://ror.org/00ahbw052 Blindeninstitutsstiftung'),
(72785, 'https://ror.org/023teqr16', 'en', 1, 'https://ror.org/023teqr16 Parenting Research Centre'),
(72786, 'https://ror.org/0568cvb54', 'de', 1, 'https://ror.org/0568cvb54 Cogito Institut für Autonomieforschung'),
(72787, 'https://ror.org/00y61e316', 'de', 1, 'https://ror.org/00y61e316 Bremer Umweltinstitut'),
(72788, 'https://ror.org/04wy4bt38', 'en', 1, 'https://ror.org/04wy4bt38 Bundesinstitut für Bevölkerungsforschung Federal Institute for Population Research'),
(72789, 'https://ror.org/00f7ytv44', 'en', 1, 'https://ror.org/00f7ytv44 Curculio Institute'),
(72790, 'https://ror.org/05dtatp26', 'de', 1, 'https://ror.org/05dtatp26 Bundesverband Farbe Gestaltung Bautenschutz'),
(72791, 'https://ror.org/05npkqq45', 'de', 1, 'https://ror.org/05npkqq45 Bundesverband Museumspädagogik'),
(72792, 'https://ror.org/03chegm58', 'no_lang_code', 1, 'https://ror.org/03chegm58 Cetex (Germany)'),
(72793, 'https://ror.org/02qh6py59', 'en', 1, 'https://ror.org/02qh6py59 Advocata Institute'),
(72794, 'https://ror.org/04sve9e90', 'no_lang_code', 1, 'https://ror.org/04sve9e90 Apollo Proton Cancer Centre'),
(72795, 'https://ror.org/0281t1271', 'de', 1, 'https://ror.org/0281t1271 Deutscher Energieholz- und Pellet-Verband'),
(72796, 'https://ror.org/0561c4v90', 'en', 1, 'https://ror.org/0561c4v90 DermaTronnier'),
(72797, 'https://ror.org/05eqhkk72', 'en', 1, 'https://ror.org/05eqhkk72 Deutscher Volkshochschul-Verband German Adult Education Association'),
(72798, 'https://ror.org/008en0y31', 'en', 1, 'https://ror.org/008en0y31 Deutsches Apotheken-Museum German Museum of Pharmacy'),
(72799, 'https://ror.org/04d5zsn45', 'de', 1, 'https://ror.org/04d5zsn45 Deutsch Amerikanisches Institut Saarland'),
(72800, 'https://ror.org/0076h6458', 'de', 1, 'https://ror.org/0076h6458 Deutsche Akademie für Städtebau und Landesplanung'),
(72801, 'https://ror.org/04wm69k66', 'en', 1, 'https://ror.org/04wm69k66 Deutsches Institut für Katastrophenmedizin German Institute for Disaster Medicine'),
(72802, 'https://ror.org/05v8nsf47', 'no_lang_code', 1, 'https://ror.org/05v8nsf47 Deutsches Dialog Institut (Germany)'),
(72803, 'https://ror.org/04csgyf07', 'de', 1, 'https://ror.org/04csgyf07 Deutsches Institut für Tropische und Subtropische Landwirtschaft'),
(72804, 'https://ror.org/01b2gkw73', 'de', 1, 'https://ror.org/01b2gkw73 Deutsche Angestellten-Akademie'),
(72805, 'https://ror.org/046wcrs16', 'de', 1, 'https://ror.org/046wcrs16 Deutsche Handwerksinstitut'),
(72806, 'https://ror.org/052fgf944', 'de', 1, 'https://ror.org/052fgf944 Deutsches Jungforscher Netzwerk - juFORUM'),
(72807, 'https://ror.org/057v40812', 'de', 1, 'https://ror.org/057v40812 Deutsches Krankenhaus Institut'),
(72808, 'https://ror.org/00sq9j129', 'de', 1, 'https://ror.org/00sq9j129 Deutsche Gesellschaft für Information und Wissen'),
(72809, 'https://ror.org/02p6n7f90', 'no_lang_code', 1, 'https://ror.org/02p6n7f90 DIAL (Germany)'),
(72810, 'https://ror.org/02h3t6028', 'no_lang_code', 1, 'https://ror.org/02h3t6028 Dr. Brill + Dr. Steinmann (Germany)'),
(72811, 'https://ror.org/02zjks284', 'en', 1, 'https://ror.org/02zjks284 European Federation for the Science and Technology of Lipids'),
(72812, 'https://ror.org/02xx9xx26', 'de', 1, 'https://ror.org/02xx9xx26 Dresdner Grundwasserforschungszentrum'),
(72813, 'https://ror.org/050208923', 'de', 1, 'https://ror.org/050208923 DRK-Blutspendedienst Baden-Württemberg - Hessen'),
(72814, 'https://ror.org/047jxb064', 'en', 1, 'https://ror.org/047jxb064 Network on Urban Research in the European Union'),
(72815, 'https://ror.org/014ze8513', 'no_lang_code', 1, 'https://ror.org/014ze8513 Dyckerhoff (Germany)'),
(72816, 'https://ror.org/01rfxdq93', 'de', 1, 'https://ror.org/01rfxdq93 Evangelisches Krankenhaus Oberhausen'),
(72817, 'https://ror.org/027d68d71', 'de', 1, 'https://ror.org/027d68d71 Pestel Institut'),
(72818, 'https://ror.org/039ppzb98', 'de', 1, 'https://ror.org/039ppzb98 Forschungsinstitut Betriebliche Bildung'),
(72819, 'https://ror.org/02n2sdp05', 'no_lang_code', 1, 'https://ror.org/02n2sdp05 Euro Institute for Information and Technology Transfer in Environmental Protection (Germany)'),
(72820, 'https://ror.org/02ywgn354', 'en', 1, 'https://ror.org/02ywgn354 Forschungsinstitut für Arbeit, Technik und Kultur Research Institute for Work, Technology and Culture'),
(72821, 'https://ror.org/04pqjcz08', 'no_lang_code', 1, 'https://ror.org/04pqjcz08 Kantar (Germany)'),
(72822, 'https://ror.org/01vksdv18', 'no_lang_code', 1, 'https://ror.org/01vksdv18 Mackie Research (New Zealand)'),
(72823, 'https://ror.org/017qypp02', 'no_lang_code', 1, 'https://ror.org/017qypp02 ExxonMobil (Germany)'),
(72824, 'https://ror.org/044w5t390', 'en', 1, 'https://ror.org/044w5t390 European Centre for Community Education'),
(72825, 'https://ror.org/0504t8c81', 'no_lang_code', 1, 'https://ror.org/0504t8c81 ERGONOMIC Institut für Arbeits- und Sozialforschung Forschungsgesellschaft (Germany)'),
(72826, 'https://ror.org/02v2egw15', 'de', 1, 'https://ror.org/02v2egw15 Diakonie Deutschland'),
(72827, 'https://ror.org/045ky2r08', 'de', 1, 'https://ror.org/045ky2r08 Erich-Brost-Institut'),
(72828, 'https://ror.org/052n2ew56', 'de', 1, 'https://ror.org/052n2ew56 DRK Bezirksverband Frankfurt'),
(72829, 'https://ror.org/0583z7951', 'en', 1, 'https://ror.org/0583z7951 Eckert Schools International'),
(72830, 'https://ror.org/03a8y0358', 'de', 1, 'https://ror.org/03a8y0358 FIVE - Forschungs- und Innovationsverbund an der Evangelischen Hochschule Freiburg'),
(72831, 'https://ror.org/03tn3hy29', 'en', 1, 'https://ror.org/03tn3hy29 Deutsches Rundfunkarchiv German Broadcasting Archive'),
(72832, 'https://ror.org/02bfx2y10', 'de', 1, 'https://ror.org/02bfx2y10 Innovationstransfer- und Forschungsinstitut Schwerin'),
(72833, 'https://ror.org/00nhwxe66', 'en', 1, 'https://ror.org/00nhwxe66 Deutsches Technikmuseum Berlin German Museum of Technology'),
(72834, 'https://ror.org/04msz5x82', 'en', 1, 'https://ror.org/04msz5x82 Deutsches Zentralinstitut für soziale Fragen German Central Institute for Social Issues'),
(72835, 'https://ror.org/04c3mjk87', 'de', 1, 'https://ror.org/04c3mjk87 DRK Landesverband Rheinland-Pfalz'),
(72836, 'https://ror.org/02hw5b420', 'de', 1, 'https://ror.org/02hw5b420 Dissens – Institut für Bildung und Forschung'),
(72837, 'https://ror.org/04sy0x836', 'de', 1, 'https://ror.org/04sy0x836 Kybernetische Organisation Planung Führung'),
(72838, 'https://ror.org/058phj376', 'de', 1, 'https://ror.org/058phj376 Forschungsanstalt für Waldökologie und Forstwirtschaft'),
(72839, 'https://ror.org/026gp9a94', 'en', 1, 'https://ror.org/026gp9a94 District Heating Research Institute Fernwärme-Forschungsinstitut'),
(72840, 'https://ror.org/03905f420', 'en', 1, 'https://ror.org/03905f420 Forschungsinstitut Bioaktive Polymersysteme Research Institute Bioactive Polymer Systems'),
(72841, 'https://ror.org/00hkvk052', 'en', 1, 'https://ror.org/00hkvk052 Forschungsinstitut für Bildungs- und Sozialökonomie Research Institute for the Economics of Education and Social Affairs'),
(72842, 'https://ror.org/038ftp957', 'en', 1, 'https://ror.org/038ftp957 German Foreign Trade and Transport Academy'),
(72843, 'https://ror.org/02c05kw86', 'de', 1, 'https://ror.org/02c05kw86 Landwirtschaftlichen Zentrums Baden-Württemberg'),
(72844, 'https://ror.org/02z7b0p22', 'de', 1, 'https://ror.org/02z7b0p22 Faktor 10 – Institut für nachhaltiges Wirtschaften gemeinnützige');
INSERT INTO `rors` VALUES
(72845, 'https://ror.org/02t061029', 'no_lang_code', 1, 'https://ror.org/02t061029 Fitbase'),
(72846, 'https://ror.org/01nmh8776', 'de', 1, 'https://ror.org/01nmh8776 Forschungsinstitut für Bergbaufolgelandschaften'),
(72847, 'https://ror.org/02cmy4j41', 'de', 1, 'https://ror.org/02cmy4j41 Forschungszentrum Ultraschall'),
(72848, 'https://ror.org/0210tb741', 'de', 1, 'https://ror.org/0210tb741 Forschungsinstitut für biologischen Landbau'),
(72849, 'https://ror.org/02gz1g089', 'de', 1, 'https://ror.org/02gz1g089 Forschungsinstitut für Denkmalpflege und Archäometrie'),
(72850, 'https://ror.org/04265mc69', 'de', 1, 'https://ror.org/04265mc69 Forschungsinstitut für innovative Arbeitsgestaltung und Prävention'),
(72851, 'https://ror.org/05h990w27', 'de', 1, 'https://ror.org/05h990w27 Forschungsinstitut Geragogik'),
(72852, 'https://ror.org/00hbteh17', 'de', 1, 'https://ror.org/00hbteh17 Forschungsvereinigung Elektrotechnik beim ZVEI'),
(72853, 'https://ror.org/02kxdc598', 'no_lang_code', 1, 'https://ror.org/02kxdc598 Forschungszentrum für Verbrennungsmotoren und Thermodynamik Rostock (Germany)'),
(72854, 'https://ror.org/01d2xqw69', 'de', 1, 'https://ror.org/01d2xqw69 Technologiezentrum Halbleitermaterialien'),
(72855, 'https://ror.org/011s5nh14', 'en', 1, 'https://ror.org/011s5nh14 Fraunhofer Center for Chemical-Biotechnological Processes Fraunhofer-Zentrum für Chemisch-Biotechnologische Prozesse'),
(72856, 'https://ror.org/00habgn55', 'de', 1, 'https://ror.org/00habgn55 Die Senatorin für Kinder und Bildung'),
(72857, 'https://ror.org/03hnh7f92', 'no_lang_code', 1, 'https://ror.org/03hnh7f92 Fürstenberg Institut (Germany)'),
(72858, 'https://ror.org/02c585m74', 'de', 1, 'https://ror.org/02c585m74 Behörde für Wissenschaft, Forschung und Gleichstellung'),
(72859, 'https://ror.org/05b38ps04', 'de', 1, 'https://ror.org/05b38ps04 Landesinstitut für Lehrerbildung und Schulentwicklung'),
(72860, 'https://ror.org/0017yad31', 'de', 1, 'https://ror.org/0017yad31 DGB Bildungswerk BUND'),
(72861, 'https://ror.org/02ezvhm25', 'de', 1, 'https://ror.org/02ezvhm25 Progenius'),
(72862, 'https://ror.org/00zrbk722', 'de', 1, 'https://ror.org/00zrbk722 Gesellschaft für Akademische Studienvorbereitung und Testentwicklung'),
(72863, 'https://ror.org/00w53fs94', 'de', 1, 'https://ror.org/00w53fs94 Forschungszentrum Küste'),
(72864, 'https://ror.org/03aj00617', 'en', 1, 'https://ror.org/03aj00617 German Musicological Society Gesellschaft für Musikforschung'),
(72865, 'https://ror.org/01hcrn459', 'en', 1, 'https://ror.org/01hcrn459 Education and Science Workers'' Union Gewerkschaft Erziehung und Wissenschaft'),
(72866, 'https://ror.org/05mmb8j87', 'de', 1, 'https://ror.org/05mmb8j87 Gollwitzer-Meier-Klinik'),
(72867, 'https://ror.org/031sbqx87', 'en', 1, 'https://ror.org/031sbqx87 Food, Beverages and Catering Union Gewerkschaft Nahrung-Genuss-Gaststätten'),
(72868, 'https://ror.org/003q5e975', 'no_lang_code', 1, 'https://ror.org/003q5e975 Gewerbliche Institut für Umweltanalytik (Germany)'),
(72869, 'https://ror.org/04c83st90', 'en', 1, 'https://ror.org/04c83st90 Gustav Stresemann Institute Gustav-Stresemann-Institut'),
(72870, 'https://ror.org/02yvvjj13', 'no_lang_code', 1, 'https://ror.org/02yvvjj13 Cornelsen (Germany)'),
(72871, 'https://ror.org/019vk5v89', 'en', 1, 'https://ror.org/019vk5v89 Hamburg Institute for Vocational Education and Training Hamburger Institut für Berufliche Bildung'),
(72872, 'https://ror.org/01j7kyf72', 'en', 1, 'https://ror.org/01j7kyf72 Archdiocese of Cologne Erzbistum Köln'),
(72873, 'https://ror.org/03ve2mc46', 'de', 1, 'https://ror.org/03ve2mc46 Gewi-Institut für Gesundheitswirtschaft'),
(72874, 'https://ror.org/0053a1v22', 'de', 1, 'https://ror.org/0053a1v22 Hamburger Kunsthalle'),
(72875, 'https://ror.org/025nbs755', 'de', 1, 'https://ror.org/025nbs755 Gisela Vogel Institut für berufliche Bildung'),
(72876, 'https://ror.org/02eqrzb23', 'en', 1, 'https://ror.org/02eqrzb23 Global Nature Fund'),
(72877, 'https://ror.org/05d5xcc98', 'no_lang_code', 1, 'https://ror.org/05d5xcc98 Hannoversche Informationstechnologien (Germany)'),
(72878, 'https://ror.org/01m2aa958', 'de', 1, 'https://ror.org/01m2aa958 Hanse Institut Oldenburg Bildung und Gesundheit'),
(72879, 'https://ror.org/01kxwcg54', 'de', 1, 'https://ror.org/01kxwcg54 Schweißtechnische Lehr- und Versuchsanstalt Nord'),
(72880, 'https://ror.org/05a960335', 'de', 1, 'https://ror.org/05a960335 Hessische Zentrale für Datenverarbeitung'),
(72881, 'https://ror.org/01baj0246', 'de', 1, 'https://ror.org/01baj0246 Beratungs und Schulungsinstitut für Tierschutz bei Transport und Schlachtung'),
(72882, 'https://ror.org/01rztr650', 'de', 1, 'https://ror.org/01rztr650 Hessischer Volkshochschulverband'),
(72883, 'https://ror.org/031pj9222', 'de', 1, 'https://ror.org/031pj9222 Hygiene-Institut des Ruhrgebiets'),
(72884, 'https://ror.org/03ej9s373', 'de', 1, 'https://ror.org/03ej9s373 Institut für Industrieaerodynamik'),
(72885, 'https://ror.org/00e9neb15', 'no_lang_code', 1, 'https://ror.org/00e9neb15 Institut für Qualität im Management (Germany)'),
(72886, 'https://ror.org/00pg0dt16', 'de', 1, 'https://ror.org/00pg0dt16 Hessische Lehrkräfteakademie'),
(72887, 'https://ror.org/04j7sfe76', 'no_lang_code', 1, 'https://ror.org/04j7sfe76 IBExU Institut für Sicherheitstechnik (Germany)'),
(72888, 'https://ror.org/04cmbqn37', 'de', 1, 'https://ror.org/04cmbqn37 Institut Berufs- und Innovationsforschung Medien'),
(72889, 'https://ror.org/01gw9bn12', 'de', 1, 'https://ror.org/01gw9bn12 HeurekaNet'),
(72890, 'https://ror.org/01xz87r89', 'de', 1, 'https://ror.org/01xz87r89 Institut für Betontechnologie und Oberflächenschutz'),
(72891, 'https://ror.org/0306mex37', 'de', 1, 'https://ror.org/0306mex37 Hochschul Informations System'),
(72892, 'https://ror.org/03xkxsc82', 'de', 1, 'https://ror.org/03xkxsc82 Institut für Berufs- und Sozialpädagogik'),
(72893, 'https://ror.org/01paq3405', 'de', 1, 'https://ror.org/01paq3405 Institut für Europäische Gesundheits- und Sozialwirtschaft'),
(72894, 'https://ror.org/03adsge54', 'en', 1, 'https://ror.org/03adsge54 Institut für Angewandte Bodenbiologie Institute for Applied Soil Biology'),
(72895, 'https://ror.org/05ctd7x03', 'en', 1, 'https://ror.org/05ctd7x03 Institut für Angewandte Ökosystemforschung Institute for Applied Ecosystem Research'),
(72896, 'https://ror.org/00mne8d28', 'no_lang_code', 1, 'https://ror.org/00mne8d28 Institut für Angewandte Funksystemtechnik (Germany)'),
(72897, 'https://ror.org/03gvee390', 'no_lang_code', 1, 'https://ror.org/03gvee390 Institut für Bahntechnik (Germany)'),
(72898, 'https://ror.org/03e5gcq07', 'de', 1, 'https://ror.org/03e5gcq07 Institut für Ausbildung Jugendlicher'),
(72899, 'https://ror.org/05ymeqj18', 'en', 1, 'https://ror.org/05ymeqj18 IfG.Research - The Institute for eGovernment'),
(72900, 'https://ror.org/00njqng43', 'de', 1, 'https://ror.org/00njqng43 Institut für Musikinstrumentenbau'),
(72901, 'https://ror.org/03k5dfv06', 'de', 1, 'https://ror.org/03k5dfv06 Behörde für Gesundheit und Verbraucherschutz'),
(72902, 'https://ror.org/03k30eb14', 'no_lang_code', 1, 'https://ror.org/03k30eb14 ifp Consulting (Germany)'),
(72903, 'https://ror.org/00eyegs12', 'de', 1, 'https://ror.org/00eyegs12 Institut für Kompetenz und Begabung'),
(72904, 'https://ror.org/02b66d538', 'de', 1, 'https://ror.org/02b66d538 Institut für Regionalmanagement'),
(72905, 'https://ror.org/00ea83k06', 'de', 1, 'https://ror.org/00ea83k06 Institut für Kommunikation und Wirtschaftsbildung'),
(72906, 'https://ror.org/03hx70e06', 'no_lang_code', 1, 'https://ror.org/03hx70e06 IFU Privates Institut für Analytik (Germany)'),
(72907, 'https://ror.org/056andb48', 'no_lang_code', 1, 'https://ror.org/056andb48 Institut für Leichte Elektrische Antriebe und Generatoren (Germany)'),
(72908, 'https://ror.org/041eygf45', 'de', 1, 'https://ror.org/041eygf45 Institut für Umweltplanung und Raumentwicklung'),
(72909, 'https://ror.org/05g5sdw63', 'no_lang_code', 1, 'https://ror.org/05g5sdw63 Institut für Molekularbiologie und Analytik (Germany)'),
(72910, 'https://ror.org/00761tq91', 'en', 1, 'https://ror.org/00761tq91 Institut für Gebäudeanalyse und Sanierungsplanung Institute for Building Analysis and Reconstruction Planning'),
(72911, 'https://ror.org/0047j9t38', 'de', 1, 'https://ror.org/0047j9t38 Institut für Informationsverarbeitung'),
(72912, 'https://ror.org/002jmh430', 'de', 1, 'https://ror.org/002jmh430 Institut zur Modernisierung von Wirtschafts- und Beschäftigungsstrukturen'),
(72913, 'https://ror.org/028xc6z83', 'no_lang_code', 1, 'https://ror.org/028xc6z83 SpectrumK (Germany)'),
(72914, 'https://ror.org/00wvsjr52', 'no_lang_code', 1, 'https://ror.org/00wvsjr52 Ingenium (Germany)'),
(72915, 'https://ror.org/005ev0c40', 'no_lang_code', 1, 'https://ror.org/005ev0c40 IMU Institut (Germany)'),
(72916, 'https://ror.org/010qd1m54', 'no_lang_code', 1, 'https://ror.org/010qd1m54 Institut für Nachhaltige Landbewirtschaftung (Germany)'),
(72917, 'https://ror.org/02z96c921', 'no_lang_code', 1, 'https://ror.org/02z96c921 Institut für Normenmanagement (Germany)'),
(72918, 'https://ror.org/01ej3kj12', 'no_lang_code', 1, 'https://ror.org/01ej3kj12 Institut für berufliche Bildung, Arbeitsmarkt- und Sozialpolitik Institute for Vocational Education, Labor Market and Social Policy (Germany)'),
(72919, 'https://ror.org/04mnn5409', 'no_lang_code', 1, 'https://ror.org/04mnn5409 Institut für Nachhaltige, Innovative und Angewandte Systemtechnik (Germany)'),
(72920, 'https://ror.org/00dg4wf63', 'de', 1, 'https://ror.org/00dg4wf63 Institut zur Förderung von Bildung und Integration'),
(72921, 'https://ror.org/052k2qm78', 'no_lang_code', 1, 'https://ror.org/052k2qm78 Industrial Research & Engineering (Germany)'),
(72922, 'https://ror.org/02y5eka83', 'de', 1, 'https://ror.org/02y5eka83 Industriegewerkschaft Bauen-Agrar-Umwelt'),
(72923, 'https://ror.org/023d46310', 'en', 1, 'https://ror.org/023d46310 Institut Input'),
(72924, 'https://ror.org/01n1byn02', 'de', 1, 'https://ror.org/01n1byn02 Institut der Feuerwehr Nordrhein-Westfalen'),
(72925, 'https://ror.org/00sf4jq50', 'de', 1, 'https://ror.org/00sf4jq50 Institut für Brand- und Katastrophenschutz Heyrothsberge'),
(72926, 'https://ror.org/03557sx70', 'de', 1, 'https://ror.org/03557sx70 Institut für Angewandte Innovationsforschung'),
(72927, 'https://ror.org/000mrg216', 'no_lang_code', 1, 'https://ror.org/000mrg216 Industrieverband Feuerverzinken (Germany)'),
(72928, 'https://ror.org/04dmgcf89', 'de', 1, 'https://ror.org/04dmgcf89 Institut Für Angewandte Kulturforschung'),
(72929, 'https://ror.org/02rmvby88', 'de', 1, 'https://ror.org/02rmvby88 Institut für Angewandte Trainingswissenschaft'),
(72930, 'https://ror.org/01py4yp62', 'de', 1, 'https://ror.org/01py4yp62 Institut für Abfall, Abwasser, Site und Facility Management'),
(72931, 'https://ror.org/04yxsy717', 'no_lang_code', 1, 'https://ror.org/04yxsy717 Institut für Angewandte Verkehrs- und Tourismusforschung (Germany)'),
(72932, 'https://ror.org/04fcjpg80', 'de', 1, 'https://ror.org/04fcjpg80 Holzbau Deutschland-Institut'),
(72933, 'https://ror.org/05ycrqt76', 'de', 1, 'https://ror.org/05ycrqt76 Institut für angewandte Forschung im Bauwesen'),
(72934, 'https://ror.org/03c1b7x32', 'no_lang_code', 1, 'https://ror.org/03c1b7x32 Institut für Angewandte Gewässerökologie (Germany)'),
(72935, 'https://ror.org/040w54343', 'no_lang_code', 1, 'https://ror.org/040w54343 Institut Für Arbeits- und Baubetriebswissenschaft (Germany)'),
(72936, 'https://ror.org/04tjwpz93', 'de', 1, 'https://ror.org/04tjwpz93 Institut für Arbeitsmarktforschung und Jugendberufshilfe'),
(72937, 'https://ror.org/052rnf523', 'de', 1, 'https://ror.org/052rnf523 Institut für Assistenzsysteme und Qualifizierung'),
(72938, 'https://ror.org/03f8e0241', 'en', 1, 'https://ror.org/03f8e0241 Allensbach Institute Institut für Demoskopie Allensbach'),
(72939, 'https://ror.org/058rtc669', 'de', 1, 'https://ror.org/058rtc669 Institut für Diagnostik und Konservierung an Denkmalen in Sachsen und Sachsen-Anhalt'),
(72940, 'https://ror.org/032fpkt80', 'de', 1, 'https://ror.org/032fpkt80 Institut für Gewässerschutz Mesocosm Mesocosm'),
(72941, 'https://ror.org/03r7aan38', 'de', 1, 'https://ror.org/03r7aan38 Institut für Bauforschung'),
(72942, 'https://ror.org/03n9ycw45', 'no_lang_code', 1, 'https://ror.org/03n9ycw45 Institut für gewerbliche Wasserwirtschaft und Luftreinhaltung (Germany)'),
(72943, 'https://ror.org/010xsqw81', 'no_lang_code', 1, 'https://ror.org/010xsqw81 Institut für Bauphysik und Bauchemie (Germany)'),
(72944, 'https://ror.org/05xzypt50', 'en', 1, 'https://ror.org/05xzypt50 IDMRC Institut Engineering Design of Mechatronik System und MPLM'),
(72945, 'https://ror.org/01jw3cq70', 'no_lang_code', 1, 'https://ror.org/01jw3cq70 Institut für Entsorgung und Umwelttechnik (Germany)'),
(72946, 'https://ror.org/05jj4yb28', 'no_lang_code', 1, 'https://ror.org/05jj4yb28 Institut für Bauwerkserhaltung und Sanierung (Germany)'),
(72947, 'https://ror.org/05bnan144', 'de', 1, 'https://ror.org/05bnan144 Institut für Berufliche Aus- und Fortbildung'),
(72948, 'https://ror.org/00y9hdv35', 'de', 1, 'https://ror.org/00y9hdv35 Institut für Hämatopathologie Hamburg'),
(72949, 'https://ror.org/01qve8440', 'de', 1, 'https://ror.org/01qve8440 Institut für Berufliche Bildung'),
(72950, 'https://ror.org/05bvzth27', 'en', 1, 'https://ror.org/05bvzth27 Institut für Europäisches Medienrecht Institute of European Media Law'),
(72951, 'https://ror.org/030qw5707', 'no_lang_code', 1, 'https://ror.org/030qw5707 Institut für Experimentelle Psychophysiologie Institute for Experimental Psychophysiology (Germany)'),
(72952, 'https://ror.org/02r5q4n43', 'de', 1, 'https://ror.org/02r5q4n43 Institut für Finanzdienstleistungen'),
(72953, 'https://ror.org/00xa4tk19', 'en', 1, 'https://ror.org/00xa4tk19 Suratthani Cancer Hospital โรงพยาบาลมะเร็งสุราษฎร์ธานี'),
(72954, 'https://ror.org/0303j9k30', 'no_lang_code', 1, 'https://ror.org/0303j9k30 Institut für Betriebliche Bildung und Unternehmenskultur (Germany)'),
(72955, 'https://ror.org/040me2j46', 'es', 1, 'https://ror.org/040me2j46 Centro de Estudios Fotosintéticos y Bioquímicos'),
(72956, 'https://ror.org/014x0rv86', 'en', 1, 'https://ror.org/014x0rv86 Institut für Bildung und Kultur Institute for Education and Culture'),
(72957, 'https://ror.org/04x6bfw13', 'de', 1, 'https://ror.org/04x6bfw13 Gesellschaft für Pädagogik und Information'),
(72958, 'https://ror.org/01f30wv40', 'de', 1, 'https://ror.org/01f30wv40 Institut für Frauengesundheit'),
(72959, 'https://ror.org/03xa7rm31', 'de', 1, 'https://ror.org/03xa7rm31 Institut für Freizeitwissenschaft und Kulturarbeit'),
(72960, 'https://ror.org/05b75xp43', 'no_lang_code', 1, 'https://ror.org/05b75xp43 Institut für Geologie und Umwelt (Germany)'),
(72961, 'https://ror.org/02b790a63', 'en', 1, 'https://ror.org/02b790a63 Institute of Computer Vision and Applied Computer Sciences'),
(72962, 'https://ror.org/05e30np90', 'en', 1, 'https://ror.org/05e30np90 Institut für Gerontologische Forschung Institute for Gerontological Research'),
(72963, 'https://ror.org/01n8ggb71', 'en', 1, 'https://ror.org/01n8ggb71 Institut für Biodiversität Institute for Biodiversity'),
(72964, 'https://ror.org/006w9hg13', 'en', 1, 'https://ror.org/006w9hg13 Institut für Dauerhaft Umweltgerechte Entwicklung Von Naturräumen der Erde Institute of Sustainable Development of Landscapes of the Earth'),
(72965, 'https://ror.org/0263r2546', 'en', 1, 'https://ror.org/0263r2546 Fraunhofer Center for Applied Research on Supply Chain Services Fraunhofer-Arbeitsgruppe für Supply Chain Services'),
(72966, 'https://ror.org/051zgzc60', 'de', 1, 'https://ror.org/051zgzc60 Institut für Bodenkultur und Pflanzenbau'),
(72967, 'https://ror.org/052d0ye06', 'de', 1, 'https://ror.org/052d0ye06 Institut für Internationale Kommunikation'),
(72968, 'https://ror.org/05n6np283', 'no_lang_code', 1, 'https://ror.org/05n6np283 Gesellschaft für Konsumforschung GfK (Germany)'),
(72969, 'https://ror.org/05mj78g51', 'no_lang_code', 1, 'https://ror.org/05mj78g51 Institut für Markt- und Werbeforschung (Germany)'),
(72970, 'https://ror.org/04cghfw81', 'de', 1, 'https://ror.org/04cghfw81 Institut für Korrosions- und Schadensanalyse Dr.-Ing. Sabine Schultze'),
(72971, 'https://ror.org/00124ry56', 'no_lang_code', 1, 'https://ror.org/00124ry56 Institut für Modelle Beruflicher und Sozialer Entwicklung (Germany)'),
(72972, 'https://ror.org/045smr203', 'en', 1, 'https://ror.org/045smr203 Warm Heart Worldwide'),
(72973, 'https://ror.org/02w28c661', 'de', 1, 'https://ror.org/02w28c661 Institut für Kunststofftechnologie und -recycling'),
(72974, 'https://ror.org/0286azq87', 'de', 1, 'https://ror.org/0286azq87 Institut für kybernetisches Planen und Bauen'),
(72975, 'https://ror.org/00d22z552', 'de', 1, 'https://ror.org/00d22z552 Institut für Qualitätssicherung von Stoffsystemen Freiberg'),
(72976, 'https://ror.org/03wjf5d60', 'en', 1, 'https://ror.org/03wjf5d60 American Speech-Language-Hearing Foundation'),
(72977, 'https://ror.org/03d66dp54', 'no_lang_code', 1, 'https://ror.org/03d66dp54 Clínica MEDS (Chile)'),
(72978, 'https://ror.org/04r7vw960', 'de', 1, 'https://ror.org/04r7vw960 Institut für Regionale Innovation und Sozialforschung'),
(72979, 'https://ror.org/024gk5m97', 'en', 1, 'https://ror.org/024gk5m97 Institut für nachhaltige Berufsbildung & Management-Services Institute for Sustainable TVET & Management Services'),
(72980, 'https://ror.org/01ksmk704', 'de', 1, 'https://ror.org/01ksmk704 Institut für Rohrleitungsbau an der Fachhochschule Oldenburg'),
(72981, 'https://ror.org/0189mfq62', 'no_lang_code', 1, 'https://ror.org/0189mfq62 Deutsche Messe (Germany)'),
(72982, 'https://ror.org/02mwnke68', 'de', 1, 'https://ror.org/02mwnke68 Brüderkrankenhaus St. Josef Paderborn'),
(72983, 'https://ror.org/035kwsm70', 'en', 1, 'https://ror.org/035kwsm70 Institut für Neue Medien Institute for New Media'),
(72984, 'https://ror.org/00bs1hy45', 'en', 1, 'https://ror.org/00bs1hy45 Hospital Pediátrico "Baca Ortiz" Pediatric Hospital "Baca Ortiz"'),
(72985, 'https://ror.org/00tm9pr75', 'en', 1, 'https://ror.org/00tm9pr75 Das Institut für Seevölkerrecht und Internationales Meersumweltrecht The Institute for the Law of the Sea and International Marine Environmental Law'),
(72986, 'https://ror.org/01bvph436', 'en', 1, 'https://ror.org/01bvph436 Rotunda – The Center for Human Reproduction'),
(72987, 'https://ror.org/05ydhxb54', 'no_lang_code', 1, 'https://ror.org/05ydhxb54 Sustainable Business Institute (Germany)'),
(72988, 'https://ror.org/001p6v129', 'de', 1, 'https://ror.org/001p6v129 Institut für Sicherheitstechnik / Schiffssicherheit'),
(72989, 'https://ror.org/0303jkh46', 'de', 1, 'https://ror.org/0303jkh46 Institut für Sozialarbeit und Sozialpädagogik'),
(72990, 'https://ror.org/0484fgk51', 'no_lang_code', 1, 'https://ror.org/0484fgk51 Institut für Pflanzenkultur (Germany)'),
(72991, 'https://ror.org/04bhvak10', 'de', 1, 'https://ror.org/04bhvak10 Institut für Soziale Arbeit'),
(72992, 'https://ror.org/01ffdac64', 'de', 1, 'https://ror.org/01ffdac64 Institut für Sozialforschung und Sozialplanung'),
(72993, 'https://ror.org/03dfgbb18', 'en', 1, 'https://ror.org/03dfgbb18 Institut für Sozialinnovation Institute for Social Innovation'),
(72994, 'https://ror.org/05sgwkz06', 'en', 1, 'https://ror.org/05sgwkz06 Tepatitlán''s Institute for Theoretical Studies'),
(72995, 'https://ror.org/04b8mn532', 'de', 1, 'https://ror.org/04b8mn532 Institut für Sozialpädagogische Forschung Mainz'),
(72996, 'https://ror.org/0424wxn97', 'de', 1, 'https://ror.org/0424wxn97 Institut für Postfossile Logistik'),
(72997, 'https://ror.org/030t3gw93', 'de', 1, 'https://ror.org/030t3gw93 Institut für Praxisforschung und Projektberatung'),
(72998, 'https://ror.org/01jn16g31', 'en', 1, 'https://ror.org/01jn16g31 Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services Zwischenstaatliche Plattform für Biodiversität und Ökosystem-Dienstleistungen'),
(72999, 'https://ror.org/01bxpwm10', 'de', 1, 'https://ror.org/01bxpwm10 Institut für Wasser und Boden Dr. Uhlmann'),
(73000, 'https://ror.org/0525ff954', 'no_lang_code', 1, 'https://ror.org/0525ff954 Institut Für Prozeßadaptive und Erfahrungsgeleitete Automatisierung (Germany)'),
(73001, 'https://ror.org/01q8n5k63', 'de', 1, 'https://ror.org/01q8n5k63 Institut für Prozessoptimierung und Informationstechnologien'),
(73002, 'https://ror.org/02nmjzp92', 'de', 1, 'https://ror.org/02nmjzp92 Institut für Wasserwirtschaft Siedlungswasserbau und Ökologie'),
(73003, 'https://ror.org/015706c71', 'no_lang_code', 1, 'https://ror.org/015706c71 Institut für Stahlbau Leipzig (Germany)'),
(73004, 'https://ror.org/05rg1zz45', 'de', 1, 'https://ror.org/05rg1zz45 Institut für Wildbiologie Göttingen und Dresden'),
(73005, 'https://ror.org/0527w8j59', 'no_lang_code', 1, 'https://ror.org/0527w8j59 Institut für technisch-wissenschaftliche Hydrologie Institute for Technical and Scientific Hydrology (Germany)'),
(73006, 'https://ror.org/059q89q46', 'no_lang_code', 1, 'https://ror.org/059q89q46 Institut für Textiltechnik Augsburg (Germany)'),
(73007, 'https://ror.org/012797s84', 'no_lang_code', 1, 'https://ror.org/012797s84 Institut für Zukunftsorientierte Arbeitsgestaltung (Germany)'),
(73008, 'https://ror.org/00wg9tw09', 'de', 1, 'https://ror.org/00wg9tw09 Institut für Textoptimierung'),
(73009, 'https://ror.org/02zb6h937', 'de', 1, 'https://ror.org/02zb6h937 Institut Mensch, Ethik und Wissenschaft'),
(73010, 'https://ror.org/0121c6k67', 'no_lang_code', 1, 'https://ror.org/0121c6k67 Institut Stadt I Mobilität I Energie (Germany)'),
(73011, 'https://ror.org/054j2ss72', 'en', 1, 'https://ror.org/054j2ss72 New Insights for Tourism'),
(73012, 'https://ror.org/036md6q83', 'de', 1, 'https://ror.org/036md6q83 Inter 3 inter 3 Institut für Ressourcenmanagement'),
(73013, 'https://ror.org/0317mkd29', 'no_lang_code', 1, 'https://ror.org/0317mkd29 Interfels (Germany)'),
(73014, 'https://ror.org/04qv8g759', 'en', 1, 'https://ror.org/04qv8g759 International Baccalaureate'),
(73015, 'https://ror.org/04ttja383', 'de', 1, 'https://ror.org/04ttja383 Internationale Akademie Berlin'),
(73016, 'https://ror.org/04se47j24', 'en', 1, 'https://ror.org/04se47j24 International Council for Open and Distance Education'),
(73017, 'https://ror.org/00zx7vr24', 'no_lang_code', 1, 'https://ror.org/00zx7vr24 Kage Mikrofotografie (Germany)'),
(73018, 'https://ror.org/00m22r904', 'no_lang_code', 1, 'https://ror.org/00m22r904 Vim Spectrum'),
(73019, 'https://ror.org/023nd1r80', 'en', 1, 'https://ror.org/023nd1r80 International Council on Education for Teaching'),
(73020, 'https://ror.org/05pb19q07', 'en', 1, 'https://ror.org/05pb19q07 Institut für Internationale Stadtforschung Institute for International Urban Research'),
(73021, 'https://ror.org/01kgmpa94', 'en', 1, 'https://ror.org/01kgmpa94 Institut für innovative Verfahrenstechnik Institute for Innovative Process Engineering'),
(73022, 'https://ror.org/025frdg11', 'en', 1, 'https://ror.org/025frdg11 Institut für sozialwissenschaftliche Beratung Institute for Socio-Scientific Consultancy'),
(73023, 'https://ror.org/05yanja12', 'de', 1, 'https://ror.org/05yanja12 Institut für Wohnungswesen Immobilienwirtschaft Stadt- und Regionalentwicklung'),
(73024, 'https://ror.org/00ddzkr50', 'no_lang_code', 1, 'https://ror.org/00ddzkr50 Isogen (Germany)'),
(73025, 'https://ror.org/054a82660', 'de', 1, 'https://ror.org/054a82660 Institut Psychologie und Bedrohungsmanagement'),
(73026, 'https://ror.org/03abd2075', 'de', 1, 'https://ror.org/03abd2075 Institut für Angewandte Statistik'),
(73027, 'https://ror.org/045jy1q53', 'de', 1, 'https://ror.org/045jy1q53 Instituts für Strukturpolitik und Wirtschaftsförderung Gemeinnützige Gesellschaft'),
(73028, 'https://ror.org/021qr1j12', 'no_lang_code', 1, 'https://ror.org/021qr1j12 Institut für Innovative Technologien (Germany)'),
(73029, 'https://ror.org/00r4e6n79', 'de', 1, 'https://ror.org/00r4e6n79 Institut für Innovation, Transfer und Beratung'),
(73030, 'https://ror.org/02gtftk26', 'no_lang_code', 1, 'https://ror.org/02gtftk26 Institut für Technische Beratung und Produktentwicklung (Germany)'),
(73031, 'https://ror.org/01xxch676', 'de', 1, 'https://ror.org/01xxch676 Institut für Sozialforschung und Berufliche Weiterbildung'),
(73032, 'https://ror.org/00h03ws35', 'no_lang_code', 1, 'https://ror.org/00h03ws35 Institut für Umwelttechnologien (Germany)'),
(73033, 'https://ror.org/03bf2s235', 'de', 1, 'https://ror.org/03bf2s235 Institut für Umweltwirtschaftsanalysen Heidelberg'),
(73034, 'https://ror.org/03vz97823', 'de', 1, 'https://ror.org/03vz97823 Institut für Lonenstrahl– und Vakuumverfahrenstechnik'),
(73035, 'https://ror.org/02h8xbx21', 'de', 1, 'https://ror.org/02h8xbx21 Institut für Site und Facility Management'),
(73036, 'https://ror.org/02pf5x519', 'de', 1, 'https://ror.org/02pf5x519 Institut der Wirtschaft Thüringens'),
(73037, 'https://ror.org/03xzfkg70', 'no_lang_code', 1, 'https://ror.org/03xzfkg70 ISB (Germany)'),
(73038, 'https://ror.org/0125qer46', 'de', 1, 'https://ror.org/0125qer46 Die Johanniter'),
(73039, 'https://ror.org/03hm29g42', 'no_lang_code', 1, 'https://ror.org/03hm29g42 KHD Humboldt Wedag (Germany)'),
(73040, 'https://ror.org/02rdd6b90', 'no_lang_code', 1, 'https://ror.org/02rdd6b90 Johner Institut (Germany)'),
(73041, 'https://ror.org/01c1pcz80', 'de', 1, 'https://ror.org/01c1pcz80 Kleine Private Lehrinstitut Derksen'),
(73042, 'https://ror.org/018ftzc45', 'no_lang_code', 1, 'https://ror.org/018ftzc45 K8 Institute of Strategic Aesthetics (Germany)'),
(73043, 'https://ror.org/02epb4723', 'de', 1, 'https://ror.org/02epb4723 Klinik St. Irmingard'),
(73044, 'https://ror.org/03dyvyv84', 'de', 1, 'https://ror.org/03dyvyv84 Felsenweg-Institut'),
(73045, 'https://ror.org/054d0qa72', 'de', 1, 'https://ror.org/054d0qa72 Kasseler Institut für Ländliche Entwicklung'),
(73046, 'https://ror.org/05frf1z87', 'de', 1, 'https://ror.org/05frf1z87 Katalyse Institut'),
(73047, 'https://ror.org/02t7ezd72', 'de', 1, 'https://ror.org/02t7ezd72 Kulturpolitische Gesellschaft'),
(73048, 'https://ror.org/02nfc4q85', 'no_lang_code', 1, 'https://ror.org/02nfc4q85 Kunststoff Institut Südwest (Germany)'),
(73049, 'https://ror.org/028nwg363', 'de', 1, 'https://ror.org/028nwg363 Landesforst Mecklenburg‑Vorpommern'),
(73050, 'https://ror.org/015ad1e56', 'de', 1, 'https://ror.org/015ad1e56 Landesinstitut für Arbeitsgestaltung des Landes Nordrhein-Westfalen'),
(73051, 'https://ror.org/04d5bgh87', 'de', 1, 'https://ror.org/04d5bgh87 Landesanstalt für Kommunikation'),
(73052, 'https://ror.org/03catpf85', 'de', 1, 'https://ror.org/03catpf85 Landesinstitut für Präventives Handeln'),
(73053, 'https://ror.org/02z4esg96', 'de', 1, 'https://ror.org/02z4esg96 Landesanstalt für Landwirtschaft und Gartenbau'),
(73054, 'https://ror.org/0547r0f90', 'de', 1, 'https://ror.org/0547r0f90 Landesinstitut für Schule und Medien Berlin-Brandenburg'),
(73055, 'https://ror.org/025my6r54', 'de', 1, 'https://ror.org/025my6r54 Landeskriminalamt Niedersachsen'),
(73056, 'https://ror.org/04zt7e430', 'de', 1, 'https://ror.org/04zt7e430 Landesanstalt für Schweinezucht'),
(73057, 'https://ror.org/05rnzt975', 'de', 1, 'https://ror.org/05rnzt975 Landwirtschaftliches Technologiezentrum Augustenberg'),
(73058, 'https://ror.org/0000fr117', 'de', 1, 'https://ror.org/0000fr117 Landesbetrieb Landwirtschaft Hessen'),
(73059, 'https://ror.org/00mbc1g87', 'de', 1, 'https://ror.org/00mbc1g87 Chamber of Agriculture in Lower Saxony Landwirtschaftskammer Niedersachsen'),
(73060, 'https://ror.org/059k3xc14', 'de', 1, 'https://ror.org/059k3xc14 Landwirtschaftskammer Nordrhein-Westfalen'),
(73061, 'https://ror.org/02f0gnt04', 'no_lang_code', 1, 'https://ror.org/02f0gnt04 Jena Bioscience (Germany)'),
(73062, 'https://ror.org/03qwtkn62', 'de', 1, 'https://ror.org/03qwtkn62 Lebensmittelinstitut KIN'),
(73063, 'https://ror.org/039f79x37', 'de', 1, 'https://ror.org/039f79x37 M2C Institut für Angewandte Medienforschung'),
(73064, 'https://ror.org/05gcs8229', 'en', 1, 'https://ror.org/05gcs8229 Microstructure and Pores'),
(73065, 'https://ror.org/02pc86x52', 'de', 1, 'https://ror.org/02pc86x52 Leipziger Institut für Angewandte Weiterbildungsforschung'),
(73066, 'https://ror.org/0407aqe25', 'de', 1, 'https://ror.org/0407aqe25 Märkisches Institut für Technologie- und Innovationsförderung'),
(73067, 'https://ror.org/02a1xcr76', 'de', 1, 'https://ror.org/02a1xcr76 Mathe im Leben'),
(73068, 'https://ror.org/03225mv93', 'de', 1, 'https://ror.org/03225mv93 Museumspädagogische Zentrum'),
(73069, 'https://ror.org/032kevw42', 'en', 1, 'https://ror.org/032kevw42 Magnetic Resonance Institute for Safety, Technology and Research'),
(73070, 'https://ror.org/04aej1r39', 'en', 1, 'https://ror.org/04aej1r39 Deutsche MTM-Vereinigung German MTM Association'),
(73071, 'https://ror.org/05c1tqh91', 'en', 1, 'https://ror.org/05c1tqh91 Museum am Rothenbaum Museum für Völkerkunde Hamburg'),
(73072, 'https://ror.org/057341e57', 'en', 1, 'https://ror.org/057341e57 Museum für Kunst und Gewerbe Hamburg Museum of Art and Design Hamburg'),
(73073, 'https://ror.org/01hs4tb08', 'de', 1, 'https://ror.org/01hs4tb08 Museumslandschaft Hessen Kassel'),
(73074, 'https://ror.org/00mczy147', 'de', 1, 'https://ror.org/00mczy147 Medien Management Institut'),
(73075, 'https://ror.org/04dmvwm54', 'de', 1, 'https://ror.org/04dmvwm54 Medizinische Akademie Erfurt'),
(73076, 'https://ror.org/05q8a8a56', 'en', 1, 'https://ror.org/05q8a8a56 Hospice Palliative Care Alliance of China Foundation'),
(73077, 'https://ror.org/02y1msw11', 'en', 1, 'https://ror.org/02y1msw11 Nature And Biodiversity Conservation Union Naturschutzbund Deutschland'),
(73078, 'https://ror.org/052gwma96', 'de', 1, 'https://ror.org/052gwma96 Medizinischer Fakultätentag'),
(73079, 'https://ror.org/017jr1555', 'en', 1, 'https://ror.org/017jr1555 Mercator Institute for China Studies'),
(73080, 'https://ror.org/018fbs662', 'de', 1, 'https://ror.org/018fbs662 Nestor Bildungsinstitut'),
(73081, 'https://ror.org/03e7w2h22', 'en', 1, 'https://ror.org/03e7w2h22 NewClimate Institute'),
(73082, 'https://ror.org/002jq3415', 'en', 1, 'https://ror.org/002jq3415 Mercator Research Institute on Global Commons and Climate Change'),
(73083, 'https://ror.org/04yzfbe56', 'no_lang_code', 1, 'https://ror.org/04yzfbe56 Management Institut Bochum (Germany)'),
(73084, 'https://ror.org/057tsam22', 'de', 1, 'https://ror.org/057tsam22 mmb Institut'),
(73085, 'https://ror.org/00skh8d23', 'no_lang_code', 1, 'https://ror.org/00skh8d23 Modeinstitut Berlin (Germany)'),
(73086, 'https://ror.org/04tasdp68', 'no_lang_code', 1, 'https://ror.org/04tasdp68 NursIT Institute (Germany)'),
(73087, 'https://ror.org/01z2jfk91', 'de', 1, 'https://ror.org/01z2jfk91 Ostasien-Institut'),
(73088, 'https://ror.org/03na1e324', 'de', 1, 'https://ror.org/03na1e324 Ostbayerisches Technologie-Transfer-Institut'),
(73089, 'https://ror.org/03q2xbs92', 'no_lang_code', 1, 'https://ror.org/03q2xbs92 Ostwestfälisches Institut für Innovative Technologien in der Automatisierungstechnik (Germany)'),
(73090, 'https://ror.org/00bs41j64', 'en', 1, 'https://ror.org/00bs41j64 United Nations Department of Peacekeeping Operations'),
(73091, 'https://ror.org/04567sh69', 'en', 1, 'https://ror.org/04567sh69 United Nations Office on Drugs and Crime'),
(73092, 'https://ror.org/03nkb8t76', 'de', 1, 'https://ror.org/03nkb8t76 Pädea'),
(73093, 'https://ror.org/033sga382', 'de', 1, 'https://ror.org/033sga382 Pathologie Hamburg-West'),
(73094, 'https://ror.org/03vmsb260', 'en', 1, 'https://ror.org/03vmsb260 United Nations University Institute for the Advanced Study of Sustainability 国連大学サステイナビリティ高等研究所'),
(73095, 'https://ror.org/01rxgdr42', 'de', 1, 'https://ror.org/01rxgdr42 PECO-Institut'),
(73096, 'https://ror.org/047d27s15', 'de', 1, 'https://ror.org/047d27s15 Permakultur Institut'),
(73097, 'https://ror.org/00717c553', 'de', 1, 'https://ror.org/00717c553 Philosophisch-Theologische Hochschule Münster'),
(73098, 'https://ror.org/013c0df84', 'de', 1, 'https://ror.org/013c0df84 Progress-Institut für Wirtschaftsforschung'),
(73099, 'https://ror.org/01jk11645', 'de', 1, 'https://ror.org/01jk11645 Institut für Tier-, Natur- und Umweltethik'),
(73100, 'https://ror.org/0425qnd07', 'no_lang_code', 1, 'https://ror.org/0425qnd07 Institut für Produktionsmanagement und Logistik (Germany)'),
(73101, 'https://ror.org/04wea6506', 'no_lang_code', 1, 'https://ror.org/04wea6506 Protekum (Germany)'),
(73102, 'https://ror.org/03xt7qs06', 'no_lang_code', 1, 'https://ror.org/03xt7qs06 Institut Raum & Energie (Germany)'),
(73103, 'https://ror.org/01c3m4791', 'no_lang_code', 1, 'https://ror.org/01c3m4791 Regio (Germany)'),
(73104, 'https://ror.org/02mq55t12', 'en', 1, 'https://ror.org/02mq55t12 Rhein-Ruhr Institut für angewandte Systeminnovation Rhine-Ruhr Institute for Applied Systeminnovation'),
(73105, 'https://ror.org/04zwys509', 'no_lang_code', 1, 'https://ror.org/04zwys509 Petkus (Germany)'),
(73106, 'https://ror.org/040t4st49', 'de', 1, 'https://ror.org/040t4st49 Ruhr-Forschungsinstitut für Innovations- und Strukturpolitik'),
(73107, 'https://ror.org/01drpqr75', 'no_lang_code', 1, 'https://ror.org/01drpqr75 Technologiezentrum Dresden (Germany)'),
(73108, 'https://ror.org/03q46bp55', 'no_lang_code', 1, 'https://ror.org/03q46bp55 Sapper Institut (Germany)'),
(73109, 'https://ror.org/051wgwg77', 'en', 1, 'https://ror.org/051wgwg77 Institute for Social Research and Project Consultancy'),
(73110, 'https://ror.org/01tfspm44', 'de', 1, 'https://ror.org/01tfspm44 Sozialwissenschaftliches Forschungszentrum Berlin-Brandenburg'),
(73111, 'https://ror.org/00ptgb077', 'de', 1, 'https://ror.org/00ptgb077 Staatsinstitut für Schulqualität und Bildungsforschung'),
(73112, 'https://ror.org/00yd0p282', 'en', 1, 'https://ror.org/00yd0p282 Institute of Microbiology Институт микробиологии'),
(73113, 'https://ror.org/02b7wb227', 'de', 1, 'https://ror.org/02b7wb227 Feuerwehr Dortmund'),
(73114, 'https://ror.org/008pcc762', 'de', 1, 'https://ror.org/008pcc762 Museum Folkwang'),
(73115, 'https://ror.org/035ygmd05', 'no_lang_code', 1, 'https://ror.org/035ygmd05 Spiegel Institut (Germany)'),
(73116, 'https://ror.org/02cd38e76', 'de', 1, 'https://ror.org/02cd38e76 Jüdisches Museum'),
(73117, 'https://ror.org/03jy5m525', 'de', 1, 'https://ror.org/03jy5m525 Städtisches Museum Schloss Rheydt'),
(73118, 'https://ror.org/04ptve456', 'de', 1, 'https://ror.org/04ptve456 Dominikanerkloster Prenzlau'),
(73119, 'https://ror.org/02jskg402', 'de', 1, 'https://ror.org/02jskg402 Naturalienkabinett Waldenburg'),
(73120, 'https://ror.org/007gt1a87', 'de', 1, 'https://ror.org/007gt1a87 Städtisches Klinikum Dresden'),
(73121, 'https://ror.org/05d1vf827', 'de', 1, 'https://ror.org/05d1vf827 Klinikum Passau'),
(73122, 'https://ror.org/04jma3v53', 'de', 1, 'https://ror.org/04jma3v53 Steinbeis Forschungszentrum Technologie-Management Nordost'),
(73123, 'https://ror.org/03jyr3j92', 'de', 1, 'https://ror.org/03jyr3j92 Staatliche Lehr- und Versuchsanstalt für Gartenbau'),
(73124, 'https://ror.org/001qnfn06', 'en', 1, 'https://ror.org/001qnfn06 Staatliche Lehr- und Versuchsanstalt für Wein- und Obstbau Weinsberg State Education and Research Institute for Viticulture and Pomology Weinsberg'),
(73125, 'https://ror.org/00w894124', 'en', 1, 'https://ror.org/00w894124 Bochum Observatory Sternwarte Bochum'),
(73126, 'https://ror.org/04cxrsp65', 'de', 1, 'https://ror.org/04cxrsp65 Frankfurter Stiftung für Blinde und Sehbehinderte'),
(73127, 'https://ror.org/05m87nk97', 'de', 1, 'https://ror.org/05m87nk97 Stiftung Sozialpädagogisches Institut'),
(73128, 'https://ror.org/02r6b5k11', 'no_lang_code', 1, 'https://ror.org/02r6b5k11 Sustainum Institut (Germany)'),
(73129, 'https://ror.org/00pptj576', 'de', 1, 'https://ror.org/00pptj576 Institut für Fortbildung, Forschung und Entwicklung'),
(73130, 'https://ror.org/029djbz77', 'de', 1, 'https://ror.org/029djbz77 Institut für Hygiene und Umwelt'),
(73131, 'https://ror.org/04j6d9v78', 'de', 1, 'https://ror.org/04j6d9v78 Institut für Instandhaltung und Korrosionsschutztechnik'),
(73132, 'https://ror.org/00hbc3482', 'de', 1, 'https://ror.org/00hbc3482 Institut für Innovations- und Informationsmanagement'),
(73133, 'https://ror.org/04hbw4m86', 'de', 1, 'https://ror.org/04hbw4m86 Institut für Energie- und Umwelttechnik'),
(73134, 'https://ror.org/02tt19214', 'de', 1, 'https://ror.org/02tt19214 Steyler Mission'),
(73135, 'https://ror.org/00rb4xa96', 'en', 1, 'https://ror.org/00rb4xa96 United Nations Office for Project Services'),
(73136, 'https://ror.org/03y4qb345', 'de', 1, 'https://ror.org/03y4qb345 Institut für Automobilwirtschaft'),
(73137, 'https://ror.org/01kcsv364', 'de', 1, 'https://ror.org/01kcsv364 Internationales Institut für Sozio-Informatik'),
(73138, 'https://ror.org/042s3g481', 'no_lang_code', 1, 'https://ror.org/042s3g481 Thuringian Institute of Sustainability and Climate Protection (Germany)'),
(73139, 'https://ror.org/01vpzfr92', 'de', 1, 'https://ror.org/01vpzfr92 ThüringenForst'),
(73140, 'https://ror.org/01bk4zx34', 'de', 1, 'https://ror.org/01bk4zx34 Thüringer Institut für Akademische Weiterbildung'),
(73141, 'https://ror.org/00hyd8090', 'de', 1, 'https://ror.org/00hyd8090 Institut für Medizinische Biometrie, Informatik und Epidemiologie'),
(73142, 'https://ror.org/024e1fw78', 'de', 1, 'https://ror.org/024e1fw78 Institut für Polymerwerkstoffe'),
(73143, 'https://ror.org/00etypk41', 'no_lang_code', 1, 'https://ror.org/00etypk41 Institut für Umformtechnik (Germany)'),
(73144, 'https://ror.org/040d99j97', 'en', 1, 'https://ror.org/040d99j97 Institut für Wissenschaft und Ethik Institute of Science and Ethics'),
(73145, 'https://ror.org/054kgce12', 'de', 1, 'https://ror.org/054kgce12 An-Institut für Transfer und Weiterbildung'),
(73146, 'https://ror.org/0029pc197', 'en', 1, 'https://ror.org/0029pc197 Institute of Electronic Business'),
(73147, 'https://ror.org/026zv7h71', 'de', 1, 'https://ror.org/026zv7h71 TUMAINI-Institut für Präventionsmanagement'),
(73148, 'https://ror.org/00cx3rx26', 'en', 1, 'https://ror.org/00cx3rx26 Overseas Museum Übersee Museum'),
(73149, 'https://ror.org/02dm92c46', 'de', 1, 'https://ror.org/02dm92c46 Europa-Institut'),
(73150, 'https://ror.org/02ypd0j53', 'en', 1, 'https://ror.org/02ypd0j53 Independent Institute for Environmental Issues Unabhängiges Institut für Umweltfragen'),
(73151, 'https://ror.org/057qmer80', 'en', 1, 'https://ror.org/057qmer80 Univation Institut für Evaluation Dr. Beywl & Associates'),
(73152, 'https://ror.org/00e8ed254', 'de', 1, 'https://ror.org/00e8ed254 Rhein-Ruhr Institut für Sozialforschung und Politikberatung'),
(73153, 'https://ror.org/01k8fm112', 'de', 1, 'https://ror.org/01k8fm112 Universität Bayern'),
(73154, 'https://ror.org/02dxkcn59', 'de', 1, 'https://ror.org/02dxkcn59 Hochschuldidaktischen Zentrum Sachsen'),
(73155, 'https://ror.org/0010cp777', 'de', 1, 'https://ror.org/0010cp777 Institut für Mittelstandsforschung'),
(73156, 'https://ror.org/05bv91d86', 'en', 1, 'https://ror.org/05bv91d86 Mannheim Centre for European Social Research Mannheimer Zentrum für Europäische Sozialforschung'),
(73157, 'https://ror.org/003xvvt95', 'en', 1, 'https://ror.org/003xvvt95 Institut für Deutsches, Europäisches und Internationales Medizinrecht, Gesundheitsrecht und Bioethik Institute for German, European and International Medical Law, Public Health Law and Bioethics'),
(73158, 'https://ror.org/02n94hw85', 'en', 1, 'https://ror.org/02n94hw85 Institut für Enterprise Systems Institute for Enterprise Systems'),
(73159, 'https://ror.org/03rw8a492', 'en', 1, 'https://ror.org/03rw8a492 German University Association of Advanced Graduate Training Universitätsverband zur Qualifizierung des wissenschaftlichen Nachwuchses in Deutschland'),
(73160, 'https://ror.org/0099s2a30', 'en', 1, 'https://ror.org/0099s2a30 German United Services Trade Union Vereinte Dienstleistungsgewerkschaft'),
(73161, 'https://ror.org/00cx2cp03', 'en', 1, 'https://ror.org/00cx2cp03 Association of German Agricultural Analytic and Research Institutes'),
(73162, 'https://ror.org/042031a56', 'de', 1, 'https://ror.org/042031a56 Verband Sächsischer Bildungsinstitute'),
(73163, 'https://ror.org/0220pa788', 'de', 1, 'https://ror.org/0220pa788 Verein für Psychosoziale Initiativen'),
(73164, 'https://ror.org/00jy7vv12', 'de', 1, 'https://ror.org/00jy7vv12 Verein für Umweltmanagement und Nachhaltigkeit in Finanzinstituten'),
(73165, 'https://ror.org/047ffme03', 'no_lang_code', 1, 'https://ror.org/047ffme03 Urban Institute (Germany)'),
(73166, 'https://ror.org/01j66t516', 'de', 1, 'https://ror.org/01j66t516 Verein zur Förderung Agrar- und Stadtökologischer Projekte'),
(73167, 'https://ror.org/04bdqcb80', 'no_lang_code', 1, 'https://ror.org/04bdqcb80 Engineering Service Center und Handel (Germany)'),
(73168, 'https://ror.org/041d5xb89', 'de', 1, 'https://ror.org/041d5xb89 Verein zur Förderung Innovativer Verfahren in der Logistik'),
(73169, 'https://ror.org/05cet1628', 'de', 1, 'https://ror.org/05cet1628 Wallraf-Richartz-Museum & Fondation Corboud Wallraf–Richartz-Museum'),
(73170, 'https://ror.org/04jrxee54', 'de', 1, 'https://ror.org/04jrxee54 Verkehrsinstitut München'),
(73171, 'https://ror.org/00c1g7649', 'no_lang_code', 1, 'https://ror.org/00c1g7649 werusys (Germany)'),
(73172, 'https://ror.org/011bx4w73', 'en', 1, 'https://ror.org/011bx4w73 Research Institute for Baker’s Yeast Versuchsanstalt der Hefeindustrie'),
(73173, 'https://ror.org/01nhxrw57', 'de', 1, 'https://ror.org/01nhxrw57 Westfalen-Kolleg'),
(73174, 'https://ror.org/0119wa702', 'de', 1, 'https://ror.org/0119wa702 Virtus - Institut für Neue Lehr- und Lernmethoden'),
(73175, 'https://ror.org/029cj7p46', 'no_lang_code', 1, 'https://ror.org/029cj7p46 Wetech (Germany)'),
(73176, 'https://ror.org/031q2en94', 'en', 1, 'https://ror.org/031q2en94 Institute for Small Business Economics Volkswirtschaftliches Institut für Mittelstand und Handwerk an der Universität Göttingen'),
(73177, 'https://ror.org/04xchw238', 'de', 1, 'https://ror.org/04xchw238 Wissenschaftliches Institut für Infrastruktur und Kommunikationsdienste'),
(73178, 'https://ror.org/03bh13774', 'en', 1, 'https://ror.org/03bh13774 Wilhelm Löhe Hochschule für angewandte Wissenschaften Wilhelm Löhe University for Applied Sciences'),
(73179, 'https://ror.org/045tbeb23', 'de', 1, 'https://ror.org/045tbeb23 Lehmbruck Museum'),
(73180, 'https://ror.org/03ytxnh35', 'de', 1, 'https://ror.org/03ytxnh35 Wilhelm-Jost-Institut'),
(73181, 'https://ror.org/048stab03', 'en', 1, 'https://ror.org/048stab03 World University Service'),
(73182, 'https://ror.org/027zp1m72', 'de', 1, 'https://ror.org/027zp1m72 Planetarium Bochum'),
(73183, 'https://ror.org/05ed09684', 'de', 1, 'https://ror.org/05ed09684 Zentrallaboratorium Deutscher Apotheker'),
(73184, 'https://ror.org/027mwd906', 'en', 1, 'https://ror.org/027mwd906 DEUTSCHES ZENTRUM DES INTERNATIONALEN THEATERINSTITUTS German Centre of the International Theatre Institute'),
(73185, 'https://ror.org/03zrqt452', 'de', 1, 'https://ror.org/03zrqt452 Medicover'),
(73186, 'https://ror.org/05xjtjs92', 'de', 1, 'https://ror.org/05xjtjs92 Museumsverbund Nordfriesland'),
(73187, 'https://ror.org/01mwqr173', 'de', 1, 'https://ror.org/01mwqr173 Professor Hellriegel Institut'),
(73188, 'https://ror.org/039jwf091', 'en', 1, 'https://ror.org/039jwf091 Acatech Deutsche Akademie der Technikwissenschaften'),
(73189, 'https://ror.org/05s4v9y95', 'en', 1, 'https://ror.org/05s4v9y95 InterPore'),
(73190, 'https://ror.org/04jcwf484', 'en', 1, 'https://ror.org/04jcwf484 Nordic e-Infrastructure Collaboration'),
(73191, 'https://ror.org/012yg6072', 'de', 1, 'https://ror.org/012yg6072 Institut für Angewandte Bauforschung Weimar'),
(73192, 'https://ror.org/030wmwa35', 'en', 1, 'https://ror.org/030wmwa35 Agentur für Erneuerbare Energien Renewable Energies Agency'),
(73193, 'https://ror.org/01h371j34', 'de', 1, 'https://ror.org/01h371j34 AGFW'),
(73194, 'https://ror.org/02kh0zv54', 'no_lang_code', 1, 'https://ror.org/02kh0zv54 Akasol (Germany)'),
(73195, 'https://ror.org/017yfyw84', 'no_lang_code', 1, 'https://ror.org/017yfyw84 Alanod (Germany)'),
(73196, 'https://ror.org/0521ccd18', 'no_lang_code', 1, 'https://ror.org/0521ccd18 AlzChem (Germany)'),
(73197, 'https://ror.org/0007cgk43', 'no_lang_code', 1, 'https://ror.org/0007cgk43 Ansys (Germany)'),
(73198, 'https://ror.org/02rj97169', 'no_lang_code', 1, 'https://ror.org/02rj97169 Drees & Sommer (Germany)'),
(73199, 'https://ror.org/05v2ry936', 'no_lang_code', 1, 'https://ror.org/05v2ry936 EEW Energy from Waste'),
(73200, 'https://ror.org/00w040886', 'no_lang_code', 1, 'https://ror.org/00w040886 Blockheizkraftwerks- Träger- und Betreibergesellschaft (Germany)'),
(73201, 'https://ror.org/03p3h5q71', 'no_lang_code', 1, 'https://ror.org/03p3h5q71 Datar Cancer Genetics (India)'),
(73202, 'https://ror.org/00cnznq20', 'de', 1, 'https://ror.org/00cnznq20 BUND-Hof Wendbüdel'),
(73203, 'https://ror.org/00xcgk367', 'de', 1, 'https://ror.org/00xcgk367 Arbeitsgruppe für regionale Struktur- und Umweltforschung'),
(73204, 'https://ror.org/010x76r82', 'no_lang_code', 1, 'https://ror.org/010x76r82 Azur Space Solar Power'),
(73205, 'https://ror.org/00eefy724', 'en', 1, 'https://ror.org/00eefy724 Bundesamt für die Sicherheit der nuklearen Entsorgung Federal Office for the Safety of Nuclear Waste Management'),
(73206, 'https://ror.org/03d76x287', 'no_lang_code', 1, 'https://ror.org/03d76x287 Bau- und Liegenschaftsbetrieb des Landes Nordrhein-Westfalen (Germany)'),
(73207, 'https://ror.org/030bwht90', 'de', 1, 'https://ror.org/030bwht90 Bayerisches Landeskriminalamt'),
(73208, 'https://ror.org/01hv3m305', 'no_lang_code', 1, 'https://ror.org/01hv3m305 Becker Technologies (Germany)'),
(73209, 'https://ror.org/02hv08979', 'no_lang_code', 1, 'https://ror.org/02hv08979 Consentec (Germany)'),
(73210, 'https://ror.org/039c5c386', 'no_lang_code', 1, 'https://ror.org/039c5c386 Concentrating Solar Power Services (Germany)'),
(73211, 'https://ror.org/011gpgf73', 'no_lang_code', 1, 'https://ror.org/011gpgf73 Berliner Stadtreinigungsbetriebe (Germany)'),
(73212, 'https://ror.org/04d3ma894', 'no_lang_code', 1, 'https://ror.org/04d3ma894 Berliner Wasserbetriebe (Germany)'),
(73213, 'https://ror.org/02pd8fm45', 'no_lang_code', 1, 'https://ror.org/02pd8fm45 BET (Germany)'),
(73214, 'https://ror.org/05wr0v850', 'no_lang_code', 1, 'https://ror.org/05wr0v850 Deutsche Amphibolin-Werke (Germany)'),
(73215, 'https://ror.org/03x5ddc63', 'no_lang_code', 1, 'https://ror.org/03x5ddc63 BABCOCK Industry & Power (Germany)'),
(73216, 'https://ror.org/04n3b1453', 'no_lang_code', 1, 'https://ror.org/04n3b1453 BioConsult SH (Germany)'),
(73217, 'https://ror.org/032vqbc18', 'en', 1, 'https://ror.org/032vqbc18 Deutsche Umwelthilfe Environmental Action Germany'),
(73218, 'https://ror.org/02pgv1b52', 'no_lang_code', 1, 'https://ror.org/02pgv1b52 BGT Bischoff Glastechnik (Germany)'),
(73219, 'https://ror.org/05spgjn72', 'de', 1, 'https://ror.org/05spgjn72 Deutsche Vereinigung für Verbrennungsforschung'),
(73220, 'https://ror.org/0441yn115', 'no_lang_code', 1, 'https://ror.org/0441yn115 Deutsche WindGuard (Germany)'),
(73221, 'https://ror.org/02azwm483', 'no_lang_code', 1, 'https://ror.org/02azwm483 EControl-Glas (Germany)'),
(73222, 'https://ror.org/04p0ywm72', 'en', 1, 'https://ror.org/04p0ywm72 Deutscher Gewerkschaftsbund German Trade Union Confederation'),
(73223, 'https://ror.org/02enpq749', 'de', 1, 'https://ror.org/02enpq749 Edith-Stein-Schulstiftung des Bistums Magdeburg'),
(73224, 'https://ror.org/01ymrn657', 'no_lang_code', 1, 'https://ror.org/01ymrn657 Devolo (Germany)'),
(73225, 'https://ror.org/01berdk28', 'no_lang_code', 1, 'https://ror.org/01berdk28 Strabag (Germany)'),
(73226, 'https://ror.org/01gczqs46', 'no_lang_code', 1, 'https://ror.org/01gczqs46 DK Recycling und Roheisen (Germany)'),
(73227, 'https://ror.org/01rpjzn46', 'no_lang_code', 1, 'https://ror.org/01rpjzn46 DMT Produktentwicklung (Germany)'),
(73228, 'https://ror.org/05vyqs083', 'no_lang_code', 1, 'https://ror.org/05vyqs083 Eisenhuth (Germany)'),
(73229, 'https://ror.org/0229amj70', 'no_lang_code', 1, 'https://ror.org/0229amj70 Drive-CarSharing (Germany)'),
(73230, 'https://ror.org/00q7z2571', 'de', 1, 'https://ror.org/00q7z2571 Forschungszentrum Energiespeichertechnologien'),
(73231, 'https://ror.org/046575319', 'no_lang_code', 1, 'https://ror.org/046575319 E-T-A Elektrotechnische Apparate (Germany)'),
(73232, 'https://ror.org/0016m8j28', 'no_lang_code', 1, 'https://ror.org/0016m8j28 Energie Aus Der Mitte (Germany)'),
(73233, 'https://ror.org/04h50xe73', 'de', 1, 'https://ror.org/04h50xe73 Energie-Anlagen Berlin'),
(73234, 'https://ror.org/02rdrw497', 'no_lang_code', 1, 'https://ror.org/02rdrw497 Ebert Ingenieure (Germany)'),
(73235, 'https://ror.org/02xe0vx90', 'no_lang_code', 1, 'https://ror.org/02xe0vx90 Energy & Meteo Systems (Germany)'),
(73236, 'https://ror.org/014dapq37', 'no_lang_code', 1, 'https://ror.org/014dapq37 Envitec Biogas (Germany)'),
(73237, 'https://ror.org/04tqfmc02', 'en', 1, 'https://ror.org/04tqfmc02 Biodiversity Heritage Library'),
(73238, 'https://ror.org/018n2ja79', 'en', 1, 'https://ror.org/018n2ja79 Atlas of Living Australia'),
(73239, 'https://ror.org/01ee9cx45', 'no_lang_code', 1, 'https://ror.org/01ee9cx45 Enercity (Germany)'),
(73240, 'https://ror.org/0516gh575', 'no_lang_code', 1, 'https://ror.org/0516gh575 Entwicklungsagentur Region Heide (Germany)'),
(73241, 'https://ror.org/02s2g4x03', 'no_lang_code', 1, 'https://ror.org/02s2g4x03 OVM/ECH Consulting Engineers (Germany)'),
(73242, 'https://ror.org/05e5sxk45', 'no_lang_code', 1, 'https://ror.org/05e5sxk45 ESWE Transport Company (Germany) ESWE Verkehrsgesellschaft'),
(73243, 'https://ror.org/03sdfca54', 'no_lang_code', 1, 'https://ror.org/03sdfca54 Rhein-Main-Verkehrsverbund'),
(73244, 'https://ror.org/02aj3k144', 'no_lang_code', 1, 'https://ror.org/02aj3k144 Flight Calibration Services (Germany)'),
(73245, 'https://ror.org/05ynxbz16', 'no_lang_code', 1, 'https://ror.org/05ynxbz16 Stadtwerke Dinslaken (Germany)'),
(73246, 'https://ror.org/01ccttc97', 'en', 1, 'https://ror.org/01ccttc97 Forschungsstelle für Energiewirtschaft Research Center for Energy Economics');
INSERT INTO `rors` VALUES
(73247, 'https://ror.org/00hgq7r66', 'no_lang_code', 1, 'https://ror.org/00hgq7r66 Fichtner (Germany)'),
(73248, 'https://ror.org/02zb58m60', 'no_lang_code', 1, 'https://ror.org/02zb58m60 Flowserve (Germany)'),
(73249, 'https://ror.org/01dc86h50', 'no_lang_code', 1, 'https://ror.org/01dc86h50 Fachverband Gebäude-Klima (Germany)'),
(73250, 'https://ror.org/026374683', 'no_lang_code', 1, 'https://ror.org/026374683 Forschungs- und Applikationslabor Plasmatechnik (Germany)'),
(73251, 'https://ror.org/04ftztx53', 'no_lang_code', 1, 'https://ror.org/04ftztx53 Fels-Werke (Germany)'),
(73252, 'https://ror.org/03xra4w63', 'de', 1, 'https://ror.org/03xra4w63 Forsa Forsa Institute for Social Research and Statistical Analysis'),
(73253, 'https://ror.org/0059myg49', 'de', 1, 'https://ror.org/0059myg49 Forschungsgemeinschaft Feuerfest'),
(73254, 'https://ror.org/015e70897', 'de', 1, 'https://ror.org/015e70897 Forschungsgemeinschaft für elektrische Anlagen und Stromwirtschaft'),
(73255, 'https://ror.org/02j2j7n26', 'no_lang_code', 1, 'https://ror.org/02j2j7n26 Schmid (Germany)'),
(73256, 'https://ror.org/01kf4j136', 'no_lang_code', 1, 'https://ror.org/01kf4j136 G.E.O.S. Ingenieurgesellschaft (Germany)'),
(73257, 'https://ror.org/03jp18535', 'no_lang_code', 1, 'https://ror.org/03jp18535 gec-co Global Engineering & Consulting (Germany)'),
(73258, 'https://ror.org/04jt5e503', 'no_lang_code', 1, 'https://ror.org/04jt5e503 German Association of the Automotive Industry (Germany) Verband der Automobilindustrie'),
(73259, 'https://ror.org/04j5xmb13', 'no_lang_code', 1, 'https://ror.org/04j5xmb13 Geologischer Dienst Nordrhein-Westfalen (Germany)'),
(73260, 'https://ror.org/04bp8ss57', 'no_lang_code', 1, 'https://ror.org/04bp8ss57 GEF Ingenieur (Germany)'),
(73261, 'https://ror.org/044ytdk33', 'en', 1, 'https://ror.org/044ytdk33 ForschungsVerbund Erneuerbare Energien Renewable Energy Research Association'),
(73262, 'https://ror.org/021yrfn07', 'no_lang_code', 1, 'https://ror.org/021yrfn07 Geothermie Neubrandenburg (Germany)'),
(73263, 'https://ror.org/00ehvs489', 'de', 1, 'https://ror.org/00ehvs489 Forschungsvereinigung Antriebstechnik'),
(73264, 'https://ror.org/00ynyd598', 'no_lang_code', 1, 'https://ror.org/00ynyd598 Gesellschaft für Materialforschung und Prüfungsanstalt für das Bauwesen (Germany)'),
(73265, 'https://ror.org/04gcqnd36', 'de', 1, 'https://ror.org/04gcqnd36 Gesteinslabor Dr. Eberhard Jahns'),
(73266, 'https://ror.org/05m9rb257', 'no_lang_code', 1, 'https://ror.org/05m9rb257 GEWOS (Germany)'),
(73267, 'https://ror.org/03acsgj85', 'no_lang_code', 1, 'https://ror.org/03acsgj85 Großmann Ingenieur Consult (Germany)'),
(73268, 'https://ror.org/01vd6wz59', 'no_lang_code', 1, 'https://ror.org/01vd6wz59 Hoppecke (Germany)'),
(73269, 'https://ror.org/003w8na57', 'no_lang_code', 1, 'https://ror.org/003w8na57 Hydroisotop (Germany)'),
(73270, 'https://ror.org/021pgbe15', 'no_lang_code', 1, 'https://ror.org/021pgbe15 hySolutions (Germany)'),
(73271, 'https://ror.org/029tp1n54', 'no_lang_code', 1, 'https://ror.org/029tp1n54 Institut für Arbeitswissenschaft und Unternehmensoptimierung (Germany)'),
(73272, 'https://ror.org/01af4em40', 'no_lang_code', 1, 'https://ror.org/01af4em40 IDS (Germany)'),
(73273, 'https://ror.org/046j18q84', 'de', 1, 'https://ror.org/046j18q84 Internationales Institut für Nachhaltiges Energiemanagement, Politik, Risiko und Soziale Innovationen'),
(73274, 'https://ror.org/037qmen77', 'no_lang_code', 1, 'https://ror.org/037qmen77 Graebener Maschinentechnik (Germany)'),
(73275, 'https://ror.org/02xzmkb45', 'no_lang_code', 1, 'https://ror.org/02xzmkb45 Infraserv (Germany)'),
(73276, 'https://ror.org/015z19759', 'no_lang_code', 1, 'https://ror.org/015z19759 Grosskraftwerk Mannheim (Germany)'),
(73277, 'https://ror.org/02rs64x70', 'no_lang_code', 1, 'https://ror.org/02rs64x70 Ingenieurgesellschaft für Zuverlässigkeit und Prozessmodellierung (Germany)'),
(73278, 'https://ror.org/00bkjqa40', 'no_lang_code', 1, 'https://ror.org/00bkjqa40 InnoLas Solutions (Germany)'),
(73279, 'https://ror.org/048amag53', 'no_lang_code', 1, 'https://ror.org/048amag53 GTT-Technologies (Germany)'),
(73280, 'https://ror.org/02n851422', 'no_lang_code', 1, 'https://ror.org/02n851422 Innovationszentrum für Mobilität und Gesellschaftlichen Wandel (Germany)'),
(73281, 'https://ror.org/05nt5a548', 'no_lang_code', 1, 'https://ror.org/05nt5a548 Q-Cells (Germany)'),
(73282, 'https://ror.org/014088296', 'no_lang_code', 1, 'https://ror.org/014088296 H2 Mobility (Germany)'),
(73283, 'https://ror.org/00bcept67', 'no_lang_code', 1, 'https://ror.org/00bcept67 Deutsches Institut für Bautechnik (Germany)'),
(73284, 'https://ror.org/037bc8f58', 'no_lang_code', 1, 'https://ror.org/037bc8f58 Institut für Biogas, Kreislaufwirtschaft und Energie Institute of Biogas, Waste Management and Energy (Germany)'),
(73285, 'https://ror.org/03xz7zy75', 'no_lang_code', 1, 'https://ror.org/03xz7zy75 Hamburg Wasser (Germany)'),
(73286, 'https://ror.org/05s7heg81', 'de', 1, 'https://ror.org/05s7heg81 Institut für das Bauen mit Kunststoffen'),
(73287, 'https://ror.org/03170wz23', 'no_lang_code', 1, 'https://ror.org/03170wz23 Hochbahn (Germany)'),
(73288, 'https://ror.org/04znq7n20', 'no_lang_code', 1, 'https://ror.org/04znq7n20 HDG Bavaria (Germany)'),
(73289, 'https://ror.org/0467ep474', 'no_lang_code', 1, 'https://ror.org/0467ep474 Herrenknecht (Germany)'),
(73290, 'https://ror.org/03w15ax40', 'no_lang_code', 1, 'https://ror.org/03w15ax40 Herrenknecht Vertical (Germany)'),
(73291, 'https://ror.org/02y05ge92', 'en', 1, 'https://ror.org/02y05ge92 Hessian Agency for Nature Conservation, Environment and Geology Hessisches Landesamt für Naturschutz, Umwelt und Geologie'),
(73292, 'https://ror.org/04v78c088', 'de', 1, 'https://ror.org/04v78c088 Institut für Kälte-, Klima- und Energietechnik'),
(73293, 'https://ror.org/02c9fbn32', 'en', 1, 'https://ror.org/02c9fbn32 Hessian Ministry of Economics, Energy, Transport and Housing Hessisches Ministerium für Wirtschaft, Energie, Verkehr und Wohnen'),
(73294, 'https://ror.org/03t0n2419', 'no_lang_code', 1, 'https://ror.org/03t0n2419 Hamburg Institut (Germany)'),
(73295, 'https://ror.org/03n01yk34', 'de', 1, 'https://ror.org/03n01yk34 Institut für Netz- und Anwendungstechnik'),
(73296, 'https://ror.org/02pn8ev67', 'no_lang_code', 1, 'https://ror.org/02pn8ev67 AGC Interpane (Germany)'),
(73297, 'https://ror.org/05vt21141', 'no_lang_code', 1, 'https://ror.org/05vt21141 Institut für Technische und Angewandte Physik (Germany)'),
(73298, 'https://ror.org/004sfne89', 'no_lang_code', 1, 'https://ror.org/004sfne89 Klinikum Westfalen (Germany)'),
(73299, 'https://ror.org/045jj6w47', 'en', 1, 'https://ror.org/045jj6w47 Institute for Building Systems Engineering Dresden Research and Application'),
(73300, 'https://ror.org/04taba362', 'no_lang_code', 1, 'https://ror.org/04taba362 Schmalz (Germany)'),
(73301, 'https://ror.org/02ta43q50', 'no_lang_code', 1, 'https://ror.org/02ta43q50 Jülicher Entsorgungsgesellschaft für Nuklearanlagen (Germany)'),
(73302, 'https://ror.org/04fne2y85', 'no_lang_code', 1, 'https://ror.org/04fne2y85 KACO New Energy (Germany)'),
(73303, 'https://ror.org/01nvzxh20', 'no_lang_code', 1, 'https://ror.org/01nvzxh20 DEEP.KBB (Germany)'),
(73304, 'https://ror.org/04t6sr026', 'de', 1, 'https://ror.org/04t6sr026 Klimaschutz- und Energieagentur Baden-Württemberg'),
(73305, 'https://ror.org/00xja4t18', 'no_lang_code', 1, 'https://ror.org/00xja4t18 Keramische Folien (Germany)'),
(73306, 'https://ror.org/02kd9ve64', 'no_lang_code', 1, 'https://ror.org/02kd9ve64 Kerntechnische Entsorgung Karlsruhe (Germany)'),
(73307, 'https://ror.org/04satts25', 'de', 1, 'https://ror.org/04satts25 Kreditanstalt für Wiederaufbau'),
(73308, 'https://ror.org/050pzta73', 'no_lang_code', 1, 'https://ror.org/050pzta73 Klaus Kuhn Edelstahlgießerei Kuhn Special Steel (Germany)'),
(73309, 'https://ror.org/04nqe0561', 'no_lang_code', 1, 'https://ror.org/04nqe0561 Hochtemperatur-Kernkraftwerk (Germany)'),
(73310, 'https://ror.org/037ec0y70', 'no_lang_code', 1, 'https://ror.org/037ec0y70 Kleinwächter (Germany)'),
(73311, 'https://ror.org/0363jmm27', 'no_lang_code', 1, 'https://ror.org/0363jmm27 Mineralölverbundleitung (Germany)'),
(73312, 'https://ror.org/0144gtm47', 'de', 1, 'https://ror.org/0144gtm47 Ministerium für Finanzen und Europa'),
(73313, 'https://ror.org/052rc8810', 'de', 1, 'https://ror.org/052rc8810 Ministerium für Wirtschaft, Arbeit, Energie und Verkehr'),
(73314, 'https://ror.org/047krge18', 'no_lang_code', 1, 'https://ror.org/047krge18 Mobileeee (Germany)'),
(73315, 'https://ror.org/05f7ceg04', 'en', 1, 'https://ror.org/05f7ceg04 Hamburg Commercial Bank'),
(73316, 'https://ror.org/011g3fn28', 'no_lang_code', 1, 'https://ror.org/011g3fn28 Hatz (Germany)'),
(73317, 'https://ror.org/01eq1tg37', 'de', 1, 'https://ror.org/01eq1tg37 Landesbetrieb für Küstenschutz, Nationalpark und Meeresschutz Schleswig-Holstein'),
(73318, 'https://ror.org/0346t2s60', 'no_lang_code', 1, 'https://ror.org/0346t2s60 Trench (Germany)'),
(73319, 'https://ror.org/055ppaf52', 'no_lang_code', 1, 'https://ror.org/055ppaf52 Navigant (Germany)'),
(73320, 'https://ror.org/00qxryb75', 'de', 1, 'https://ror.org/00qxryb75 Landesnahverkehrsgesellschaft Niedersachsen'),
(73321, 'https://ror.org/04ms6c540', 'no_lang_code', 1, 'https://ror.org/04ms6c540 Nice Solar Energy (Germany)'),
(73322, 'https://ror.org/04b7azg23', 'no_lang_code', 1, 'https://ror.org/04b7azg23 Noack Laboratorien (Germany)'),
(73323, 'https://ror.org/050jaqw98', 'no_lang_code', 1, 'https://ror.org/050jaqw98 Normag (Germany)'),
(73324, 'https://ror.org/009v0gn86', 'no_lang_code', 1, 'https://ror.org/009v0gn86 Energetický a Průmyslový Holding (Czechia)'),
(73325, 'https://ror.org/04txnpk14', 'de', 1, 'https://ror.org/04txnpk14 Deutsch-französische Büro für die Energiewende'),
(73326, 'https://ror.org/0234p1g56', 'no_lang_code', 1, 'https://ror.org/0234p1g56 Kurz (Germany)'),
(73327, 'https://ror.org/0547yav62', 'no_lang_code', 1, 'https://ror.org/0547yav62 Institut für Ökologie und Politik Ökopol (Germany)'),
(73328, 'https://ror.org/00p2sbg88', 'en', 1, 'https://ror.org/00p2sbg88 Passive House Institute Passivhaus Institut'),
(73329, 'https://ror.org/02cc5nj87', 'no_lang_code', 1, 'https://ror.org/02cc5nj87 Mainzer Stadtwerke (Germany)'),
(73330, 'https://ror.org/05bj13d25', 'no_lang_code', 1, 'https://ror.org/05bj13d25 Pfalzwerke (Germany)'),
(73331, 'https://ror.org/04dc4tx21', 'de', 1, 'https://ror.org/04dc4tx21 Malteser-Krankenhaus'),
(73332, 'https://ror.org/05cx80085', 'no_lang_code', 1, 'https://ror.org/05cx80085 Plasmatreat (Germany)'),
(73333, 'https://ror.org/03thnsj45', 'no_lang_code', 1, 'https://ror.org/03thnsj45 Schlumberger (Germany)'),
(73334, 'https://ror.org/02qyv4b17', 'no_lang_code', 1, 'https://ror.org/02qyv4b17 ProCom (Germany)'),
(73335, 'https://ror.org/04hyej253', 'de', 1, 'https://ror.org/04hyej253 Margarethe Krupp-Stiftung'),
(73336, 'https://ror.org/052s9kd61', 'no_lang_code', 1, 'https://ror.org/052s9kd61 Prognos (Germany)'),
(73337, 'https://ror.org/02ntsjr39', 'no_lang_code', 1, 'https://ror.org/02ntsjr39 Prognos (Switzerland)'),
(73338, 'https://ror.org/0515dxk89', 'no_lang_code', 1, 'https://ror.org/0515dxk89 Proton Motor (Germany)'),
(73339, 'https://ror.org/05kvda021', 'no_lang_code', 1, 'https://ror.org/05kvda021 PV Crystalox Solar (Germany)'),
(73340, 'https://ror.org/04ar7w423', 'de', 1, 'https://ror.org/04ar7w423 Matthias-Claudius-Stiftung'),
(73341, 'https://ror.org/05r892e85', 'no_lang_code', 1, 'https://ror.org/05r892e85 r2b Energy Consulting (Germany)'),
(73342, 'https://ror.org/01ftjhs10', 'no_lang_code', 1, 'https://ror.org/01ftjhs10 Ramboll (Germany)'),
(73343, 'https://ror.org/04jqs6e58', 'de', 1, 'https://ror.org/04jqs6e58 RCI Banque Niederlassung Deutschland'),
(73344, 'https://ror.org/05a4ggb77', 'no_lang_code', 1, 'https://ror.org/05a4ggb77 Regionalverkehr Köln (Germany)'),
(73345, 'https://ror.org/03vxfyf12', 'no_lang_code', 1, 'https://ror.org/03vxfyf12 Max Bögl (Germany)'),
(73346, 'https://ror.org/04pje9c52', 'de', 1, 'https://ror.org/04pje9c52 Reha-Zentrum Bad Frankenhausen'),
(73347, 'https://ror.org/042zg6d08', 'de', 1, 'https://ror.org/042zg6d08 Max Zöllner Stiftung'),
(73348, 'https://ror.org/0537wed62', 'no_lang_code', 1, 'https://ror.org/0537wed62 ROWO Coating (Germany)'),
(73349, 'https://ror.org/03425cy40', 'no_lang_code', 1, 'https://ror.org/03425cy40 ROM Technik (Germany)'),
(73350, 'https://ror.org/04kz50t81', 'no_lang_code', 1, 'https://ror.org/04kz50t81 SAACKE (Germany)'),
(73351, 'https://ror.org/03nx88210', 'en', 1, 'https://ror.org/03nx88210 Institute for Economic Research and Consulting'),
(73352, 'https://ror.org/0194rjs93', 'no_lang_code', 1, 'https://ror.org/0194rjs93 Schunk Carbon Technology (Germany)'),
(73353, 'https://ror.org/00tsej476', 'no_lang_code', 1, 'https://ror.org/00tsej476 Schwenk (Germany)'),
(73354, 'https://ror.org/030d0y072', 'no_lang_code', 1, 'https://ror.org/030d0y072 Fischer Group (Germany)'),
(73355, 'https://ror.org/03bysw038', 'no_lang_code', 1, 'https://ror.org/03bysw038 SFC Energy (Germany)'),
(73356, 'https://ror.org/02j6nge77', 'de', 1, 'https://ror.org/02j6nge77 Stephanus Stiftung'),
(73357, 'https://ror.org/038eaw106', 'no_lang_code', 1, 'https://ror.org/038eaw106 Stadtwerke Köln (Germany)'),
(73358, 'https://ror.org/05qaj2541', 'no_lang_code', 1, 'https://ror.org/05qaj2541 Senior Flexonics (Germany)'),
(73359, 'https://ror.org/00fjpwq08', 'no_lang_code', 1, 'https://ror.org/00fjpwq08 Stadtwerk Haßfurt (Germany)'),
(73360, 'https://ror.org/012m44z23', 'no_lang_code', 1, 'https://ror.org/012m44z23 Stadtwerke Duisburg (Germany)'),
(73361, 'https://ror.org/03kmaet43', 'no_lang_code', 1, 'https://ror.org/03kmaet43 Stadtwerke Jülich (Germany)'),
(73362, 'https://ror.org/04pe43p62', 'no_lang_code', 1, 'https://ror.org/04pe43p62 Stadtwerke Münster (Germany)'),
(73363, 'https://ror.org/05gde4s46', 'no_lang_code', 1, 'https://ror.org/05gde4s46 Stadtwerke Offenbach (Germany)'),
(73364, 'https://ror.org/05yey6m86', 'no_lang_code', 1, 'https://ror.org/05yey6m86 Europa Service Autovermietung (Germany)'),
(73365, 'https://ror.org/05vk7ky45', 'no_lang_code', 1, 'https://ror.org/05vk7ky45 Steca Elektronik (Germany)'),
(73366, 'https://ror.org/04sg6r946', 'no_lang_code', 1, 'https://ror.org/04sg6r946 Solarzentrum Stuttgart (Germany)'),
(73367, 'https://ror.org/01a1rwe53', 'no_lang_code', 1, 'https://ror.org/01a1rwe53 Solvis (Germany)'),
(73368, 'https://ror.org/00khe8x73', 'no_lang_code', 1, 'https://ror.org/00khe8x73 Tennet (Germany)'),
(73369, 'https://ror.org/00hxnw991', 'no_lang_code', 1, 'https://ror.org/00hxnw991 Theva (Germany)'),
(73370, 'https://ror.org/042ft0a49', 'de', 1, 'https://ror.org/042ft0a49 Stiftung Jugend forscht'),
(73371, 'https://ror.org/014p0zg39', 'no_lang_code', 1, 'https://ror.org/014p0zg39 Stiftung Liebenau (Germany)'),
(73372, 'https://ror.org/02xr5pg48', 'de', 1, 'https://ror.org/02xr5pg48 Stiftung Umweltenergierecht'),
(73373, 'https://ror.org/01gycb861', 'no_lang_code', 1, 'https://ror.org/01gycb861 Thyssengas (Germany)'),
(73374, 'https://ror.org/028tnj023', 'de', 1, 'https://ror.org/028tnj023 Stiftung Warentest'),
(73375, 'https://ror.org/00t2dcp03', 'no_lang_code', 1, 'https://ror.org/00t2dcp03 Sto (Germany)'),
(73376, 'https://ror.org/00z1ayq69', 'de', 1, 'https://ror.org/00z1ayq69 Propstei Johannesberg'),
(73377, 'https://ror.org/00g4wce19', 'no_lang_code', 1, 'https://ror.org/00g4wce19 Stoller Ingenieurtechnik (Germany)'),
(73378, 'https://ror.org/03dwh7z09', 'no_lang_code', 1, 'https://ror.org/03dwh7z09 Toyota Motor Corporation (Germany)'),
(73379, 'https://ror.org/01mf5nv72', 'no_lang_code', 1, 'https://ror.org/01mf5nv72 Truma (Germany)'),
(73380, 'https://ror.org/0012bhf27', 'no_lang_code', 1, 'https://ror.org/0012bhf27 Stuttgarter Straßenbahnen (Germany)'),
(73381, 'https://ror.org/02bk51c93', 'no_lang_code', 1, 'https://ror.org/02bk51c93 Südzucker (Germany)'),
(73382, 'https://ror.org/04bc6xb81', 'no_lang_code', 1, 'https://ror.org/04bc6xb81 Stadtwerke München (Germany)'),
(73383, 'https://ror.org/035tamt43', 'no_lang_code', 1, 'https://ror.org/035tamt43 Teamtechnik (Germany)'),
(73384, 'https://ror.org/00tfv5n82', 'no_lang_code', 1, 'https://ror.org/00tfv5n82 Tegut (Germany)'),
(73385, 'https://ror.org/032wvzg14', 'no_lang_code', 1, 'https://ror.org/032wvzg14 Volkswohnung (Germany)'),
(73386, 'https://ror.org/03jmpnx55', 'no_lang_code', 1, 'https://ror.org/03jmpnx55 VOLTARIS (Germany)'),
(73387, 'https://ror.org/05eqtsr60', 'no_lang_code', 1, 'https://ror.org/05eqtsr60 Energy Fuels (United States)'),
(73388, 'https://ror.org/03qm54y80', 'no_lang_code', 1, 'https://ror.org/03qm54y80 Wätas Wärmetauscher Sachsen (Germany)'),
(73389, 'https://ror.org/01zn6ne75', 'no_lang_code', 1, 'https://ror.org/01zn6ne75 Wilo (Germany)'),
(73390, 'https://ror.org/0544z8b75', 'en', 1, 'https://ror.org/0544z8b75 College Of Certified Psychophysiologists'),
(73391, 'https://ror.org/03p0pmr81', 'no_lang_code', 1, 'https://ror.org/03p0pmr81 Windenergiepark Westküste (Germany)'),
(73392, 'https://ror.org/05j4b8r17', 'pl', 1, 'https://ror.org/05j4b8r17 Wojewódzki Szpital Specjalistyczny Nr 2'),
(73393, 'https://ror.org/05akz4x40', 'no_lang_code', 1, 'https://ror.org/05akz4x40 Windpark Ellhöft (Germany)'),
(73394, 'https://ror.org/03v5tv953', 'no_lang_code', 1, 'https://ror.org/03v5tv953 Wista (Germany)'),
(73395, 'https://ror.org/05ac30595', 'no_lang_code', 1, 'https://ror.org/05ac30595 Urenco (Germany)'),
(73396, 'https://ror.org/047rpw860', 'no_lang_code', 1, 'https://ror.org/047rpw860 Witzenhausen-Institut (Germany)'),
(73397, 'https://ror.org/02mcz6a08', 'no_lang_code', 1, 'https://ror.org/02mcz6a08 Wölfel (Germany)'),
(73398, 'https://ror.org/04v3qs268', 'no_lang_code', 1, 'https://ror.org/04v3qs268 VNG (Germany)'),
(73399, 'https://ror.org/0494ksh79', 'en', 1, 'https://ror.org/0494ksh79 Center of Applied Aeronautical Research Zentrum für Angewandte Luftfahrtforschung'),
(73400, 'https://ror.org/03vzbwz39', 'no_lang_code', 1, 'https://ror.org/03vzbwz39 Verkehrsbetriebe Hamburg-Holstein (Germany)'),
(73401, 'https://ror.org/04b55a558', 'no_lang_code', 1, 'https://ror.org/04b55a558 Leag (Germany)'),
(73402, 'https://ror.org/04j8z7v81', 'no_lang_code', 1, 'https://ror.org/04j8z7v81 Vitronic (Germany)'),
(73403, 'https://ror.org/02v4gph32', 'de', 1, 'https://ror.org/02v4gph32 VKTA'),
(73404, 'https://ror.org/00bf6gk85', 'no_lang_code', 1, 'https://ror.org/00bf6gk85 Volkswagen Financial Services (Germany)'),
(73405, 'https://ror.org/05n3kfc14', 'de', 1, 'https://ror.org/05n3kfc14 Zentrum Digitalisierung.Bayern'),
(73406, 'https://ror.org/0366nrw71', 'de', 1, 'https://ror.org/0366nrw71 Naturstiftung David'),
(73407, 'https://ror.org/05w9jj607', 'no_lang_code', 1, 'https://ror.org/05w9jj607 ZeoSys Medical (Germany)'),
(73408, 'https://ror.org/01jzb6k09', 'no_lang_code', 1, 'https://ror.org/01jzb6k09 Bioinformatics Solutions (Canada)'),
(73409, 'https://ror.org/00wnpy880', 'en', 1, 'https://ror.org/00wnpy880 Centre des sciences de l''Ontario Ontario Science Centre'),
(73410, 'https://ror.org/014bm1n40', 'en', 1, 'https://ror.org/014bm1n40 FIRST Robotics Canada'),
(73411, 'https://ror.org/02x8ye509', 'no_lang_code', 1, 'https://ror.org/02x8ye509 Innovation Cluster (Canada)'),
(73412, 'https://ror.org/05edt1q81', 'en', 1, 'https://ror.org/05edt1q81 Green Communities Canada'),
(73413, 'https://ror.org/04jcetk87', 'en', 1, 'https://ror.org/04jcetk87 Einstein Medical Center Montgomery'),
(73414, 'https://ror.org/00k1y3f49', 'en', 1, 'https://ror.org/00k1y3f49 Vector & Vector-Borne Diseases Research Institute'),
(73415, 'https://ror.org/03j7qvg12', 'no_lang_code', 1, 'https://ror.org/03j7qvg12 Typs (Canada)'),
(73416, 'https://ror.org/0024v4x89', 'en', 1, 'https://ror.org/0024v4x89 Anhui Geological Museum'),
(73417, 'https://ror.org/035rzmc67', 'en', 1, 'https://ror.org/035rzmc67 Anhui Academy of Medical Sciences 安徽省医学科学研究院'),
(73418, 'https://ror.org/01zy32z07', 'en', 1, 'https://ror.org/01zy32z07 Beijing Institue Of Electronics Technology And Application 北京电子科技技术研究所'),
(73419, 'https://ror.org/01nz7sp31', 'no_lang_code', 1, 'https://ror.org/01nz7sp31 Beijing Chemical Industry Research Institute (China) 北京市化学工业研究院'),
(73420, 'https://ror.org/047r47y76', 'en', 1, 'https://ror.org/047r47y76 Beijing Computing Center'),
(73421, 'https://ror.org/04rgfx869', 'en', 1, 'https://ror.org/04rgfx869 Beijing Yingwu Conference Center 北京应物会议中心'),
(73422, 'https://ror.org/027327e78', 'en', 1, 'https://ror.org/027327e78 Conquer Cancer Foundation'),
(73423, 'https://ror.org/00qy2fm62', 'no_lang_code', 1, 'https://ror.org/00qy2fm62 Beijing Zhongke Science and Technology (China) 北京中科科仪股份有限公司'),
(73424, 'https://ror.org/028fy7q25', 'en', 1, 'https://ror.org/028fy7q25 Botanical Society of China 中国植物学会'),
(73425, 'https://ror.org/02zfaen51', 'en', 1, 'https://ror.org/02zfaen51 The Medical Foundation'),
(73426, 'https://ror.org/04nydew61', 'en', 1, 'https://ror.org/04nydew61 Clinical Research Associates'),
(73427, 'https://ror.org/02v388x60', 'en', 1, 'https://ror.org/02v388x60 Cheshire Image Bank'),
(73428, 'https://ror.org/047dy3w25', 'en', 1, 'https://ror.org/047dy3w25 Likhatchev Russian Research Institute for Cultural and Natural Heritage Российский научно-исследовательский институт культурного и природного наследия'),
(73429, 'https://ror.org/04vpesy43', 'en', 1, 'https://ror.org/04vpesy43 Beijing Glass Research Institute 北京玻璃研究院'),
(73430, 'https://ror.org/03swddy62', 'en', 1, 'https://ror.org/03swddy62 Institute of Japanese Studies 中国社会科学院日本研究所'),
(73431, 'https://ror.org/033mdyr61', 'en', 1, 'https://ror.org/033mdyr61 Institute of Taiwan Studies Chinese Academy of Social Sciences 中国社会科学院台湾研究所'),
(73432, 'https://ror.org/059h8x781', 'no_lang_code', 1, 'https://ror.org/059h8x781 China Central Television 中国中央电视台'),
(73433, 'https://ror.org/05gkrwe68', 'no_lang_code', 1, 'https://ror.org/05gkrwe68 Iasis Molecular Sciences (United States)'),
(73434, 'https://ror.org/00ysb4w16', 'en', 1, 'https://ror.org/00ysb4w16 Multi Vaccines Development Program'),
(73435, 'https://ror.org/02ystve88', 'no_lang_code', 1, 'https://ror.org/02ystve88 Sugen Life Sciences (India)'),
(73436, 'https://ror.org/02xsn7259', 'en', 1, 'https://ror.org/02xsn7259 Southern California Institute of Architecture'),
(73437, 'https://ror.org/03qxceh63', 'en', 1, 'https://ror.org/03qxceh63 Experimental Factory Magdeburg'),
(73438, 'https://ror.org/02sqk3z62', 'en', 1, 'https://ror.org/02sqk3z62 Changsha Normal University 长沙师范学院'),
(73439, 'https://ror.org/00as6b113', 'en', 1, 'https://ror.org/00as6b113 Inner Mongolia Chifeng Forestry Science Research Institute 内蒙古赤峰市林业科学研究院'),
(73440, 'https://ror.org/032e2dp71', 'en', 1, 'https://ror.org/032e2dp71 China Business Executives Academy 中国大连高级经理学院'),
(73441, 'https://ror.org/00ft0fw96', 'en', 1, 'https://ror.org/00ft0fw96 China Centre for Resources Satellite Data and Application 中国资源卫星应用中心'),
(73442, 'https://ror.org/04kzfnz19', 'en', 1, 'https://ror.org/04kzfnz19 China National Democratic Construction Association 中国民主建国会'),
(73443, 'https://ror.org/00375d304', 'en', 1, 'https://ror.org/00375d304 China Education and Research Network 中国教育和科研计算机网网络中心'),
(73444, 'https://ror.org/04njzfy81', 'en', 1, 'https://ror.org/04njzfy81 China Electrotechnical Society 中国电工技术学会'),
(73445, 'https://ror.org/0466nq257', 'en', 1, 'https://ror.org/0466nq257 China Academic Degrees and Graduate Education Development Center 中国学位与研究生教育信息网'),
(73446, 'https://ror.org/00qjps318', 'en', 1, 'https://ror.org/00qjps318 China Enterprise Confederation 中国企业联合会'),
(73447, 'https://ror.org/01mp98161', 'en', 1, 'https://ror.org/01mp98161 China Institute of Finance and Capital Markets'),
(73448, 'https://ror.org/03mf2zr07', 'en', 1, 'https://ror.org/03mf2zr07 Chinese Society of Plant Nutrition and Fertilizer Science 中国植物营养与肥料学会'),
(73449, 'https://ror.org/03qzxj964', 'en', 1, 'https://ror.org/03qzxj964 China National Institute of Standardization 中国标准化与信息分类编码研究所'),
(73450, 'https://ror.org/02ce6y193', 'en', 1, 'https://ror.org/02ce6y193 China Editology Society of Science Periodicals 中国科技期刊编辑学会'),
(73451, 'https://ror.org/05j9gp921', 'en', 1, 'https://ror.org/05j9gp921 China Science Center of International Eurasian Academy of Sciences 国际欧亚科学院中国科学中心'),
(73452, 'https://ror.org/00wp2vz04', 'no_lang_code', 1, 'https://ror.org/00wp2vz04 China Light Industry Press (China) 中国轻工业出版社'),
(73453, 'https://ror.org/03rqyzt93', 'no_lang_code', 1, 'https://ror.org/03rqyzt93 Beijing Tuofeng Technology Development (China)'),
(73454, 'https://ror.org/05gxqqz35', 'en', 1, 'https://ror.org/05gxqqz35 Freedom From Diabetes'),
(73455, 'https://ror.org/01y6y5368', 'no_lang_code', 1, 'https://ror.org/01y6y5368 China Metallurgical Planning Net (China) 冶金工业规划研究院'),
(73456, 'https://ror.org/02p1tz049', 'no_lang_code', 1, 'https://ror.org/02p1tz049 China National Chemical Information Centre (China) 中国化工信息中心'),
(73457, 'https://ror.org/038dte259', 'en', 1, 'https://ror.org/038dte259 China Academy of Information and Communications Technology'),
(73458, 'https://ror.org/024zcda42', 'no_lang_code', 1, 'https://ror.org/024zcda42 National Institutes of Pharmaceutical Research and Development (China) 中国医药研究开发中心有限公司'),
(73459, 'https://ror.org/03x2fre67', 'en', 1, 'https://ror.org/03x2fre67 China Science and Technology Museum 中国科学技术馆'),
(73460, 'https://ror.org/03kgwfd55', 'en', 1, 'https://ror.org/03kgwfd55 Chinese Society for Cell Biology 中国细胞生物学学会'),
(73461, 'https://ror.org/02c8ew317', 'en', 1, 'https://ror.org/02c8ew317 Chinese Society for Plant Pathology 中国植物病理学会'),
(73462, 'https://ror.org/046hrxd41', 'en', 1, 'https://ror.org/046hrxd41 China Society of Plant Protection 中国植物保护学会'),
(73463, 'https://ror.org/03nw9qk49', 'en', 1, 'https://ror.org/03nw9qk49 Chinese Society for Plant Biology 中国植物生物学会'),
(73464, 'https://ror.org/0130r4628', 'en', 1, 'https://ror.org/0130r4628 China Tibetology Research Center 中国藏学研究中心'),
(73465, 'https://ror.org/01rk5br21', 'en', 1, 'https://ror.org/01rk5br21 China Association of Agricultural Science Societies 中国农学会'),
(73466, 'https://ror.org/011jjvt31', 'en', 1, 'https://ror.org/011jjvt31 Chinese Society of Forestry 中国林学会'),
(73467, 'https://ror.org/02nj4qk22', 'en', 1, 'https://ror.org/02nj4qk22 Chinese Soil and Water Conservation Society 中国水土保持学会'),
(73468, 'https://ror.org/058yyse25', 'en', 1, 'https://ror.org/058yyse25 China Training Center for Senior Civil Servants 中国高级公务员培训中心'),
(73469, 'https://ror.org/04rp35a76', 'no_lang_code', 1, 'https://ror.org/04rp35a76 Yunnan Yingmao Biotechnology (China) 云南英茂生物科技有限公司'),
(73470, 'https://ror.org/05hwakx34', 'en', 1, 'https://ror.org/05hwakx34 Chongqing Academy of Agricultural Sciences 重庆市农业科学院'),
(73471, 'https://ror.org/02dknqs67', 'no_lang_code', 1, 'https://ror.org/02dknqs67 China-US (Henan) Hormel Cancer Institute 河南省肿瘤医院'),
(73472, 'https://ror.org/0120q3031', 'en', 1, 'https://ror.org/0120q3031 Institute of Mathematics, Academia Sinica 中央研究院數學所'),
(73473, 'https://ror.org/04vnevw94', 'en', 1, 'https://ror.org/04vnevw94 Criminal Investigation Police University of China 刑事调查中国警察大学'),
(73474, 'https://ror.org/03c4nqn69', 'en', 1, 'https://ror.org/03c4nqn69 Institute of Earth Sciences, Academia Sinica 中央研究院地球科學研究所'),
(73475, 'https://ror.org/00z83z196', 'en', 1, 'https://ror.org/00z83z196 Institute of Information Science, Academia Sinica 中央研究院資訊科學研究所'),
(73476, 'https://ror.org/031mqp384', 'no_lang_code', 1, 'https://ror.org/031mqp384 Zhong Ke San Huan (China) 中科三环'),
(73477, 'https://ror.org/050qpg053', 'en', 1, 'https://ror.org/050qpg053 Research Center for Environmental Changes, Academia Sinica 環境變遷研究中心'),
(73478, 'https://ror.org/000zgvm20', 'en', 1, 'https://ror.org/000zgvm20 Research Center for Information Technology Innovation, Academia Sinica 中央研究院資訊科技創新研究中心'),
(73479, 'https://ror.org/00jj3h083', 'en', 1, 'https://ror.org/00jj3h083 Institute of Plant and Microbial Biology, Academia Sinica 中央研究院植物暨微生物學研究所'),
(73480, 'https://ror.org/048evbw70', 'en', 1, 'https://ror.org/048evbw70 Institute of Cellular and Organismic Biology, Academia Sinica 細胞與個體生物研究所'),
(73481, 'https://ror.org/00jt3dw39', 'en', 1, 'https://ror.org/00jt3dw39 Institute of Biological Chemistry, Academia Sinica 中央研究院生物化學研究所'),
(73482, 'https://ror.org/047sbcx71', 'en', 1, 'https://ror.org/047sbcx71 Institute of Molecular Biology, Academia Sinica 中央研究院分子生物研究所'),
(73483, 'https://ror.org/040bb7493', 'en', 1, 'https://ror.org/040bb7493 Biodiversity Research Center, Academia Sinica 中央研究院 生物多樣性研究中心'),
(73484, 'https://ror.org/01bdefj47', 'en', 1, 'https://ror.org/01bdefj47 Institute of History and Philology, Academia Sinica 中央研究院歷史語言研究所研究大樓檔案館'),
(73485, 'https://ror.org/01tvy6411', 'en', 1, 'https://ror.org/01tvy6411 Institute of Ethnology, Academia Sinica 中央研究院民族學研究所'),
(73486, 'https://ror.org/04bq1zr90', 'en', 1, 'https://ror.org/04bq1zr90 Institute of Modern History, Academia Sinica 中央研究院近代史研究所研究大樓'),
(73487, 'https://ror.org/01y8gzr79', 'en', 1, 'https://ror.org/01y8gzr79 Institute of Economics, Academia Sinica 中央研究院經濟研究所'),
(73488, 'https://ror.org/0140nwe11', 'en', 1, 'https://ror.org/0140nwe11 Institute of European and American Studies, Academia Sinica 中央研究院歐美研究所'),
(73489, 'https://ror.org/02vf41z82', 'en', 1, 'https://ror.org/02vf41z82 Institute of Taiwan History, Academia Sinica 中央研究院臺灣史研究所檔案館'),
(73490, 'https://ror.org/00nf7ms20', 'en', 1, 'https://ror.org/00nf7ms20 Institute of Sociology, Academia Sinica 中央研究院社會學研究所'),
(73491, 'https://ror.org/05r183591', 'en', 1, 'https://ror.org/05r183591 Institute of Linguistics, Academia Sinica 中央研究院語言學研究所'),
(73492, 'https://ror.org/001agqs13', 'en', 1, 'https://ror.org/001agqs13 Institute of Political Science, Academia Sinica 中央研究院政治學研究所'),
(73493, 'https://ror.org/0565h3a31', 'la', 1, 'https://ror.org/0565h3a31 Institutum Iurisprudentiae, Academia Sinica 中央研究院法律學研究所'),
(73494, 'https://ror.org/05n4swm55', 'en', 1, 'https://ror.org/05n4swm55 Research Center for Humanities and Social Sciences, Academia Sinica 中央研究院人文社會科學研究中心'),
(73495, 'https://ror.org/0277pjz21', 'en', 1, 'https://ror.org/0277pjz21 Radio, Film & TV Design and Research Institute'),
(73496, 'https://ror.org/00ghnph13', 'en', 1, 'https://ror.org/00ghnph13 Fujian Blood Center 福建血液中心'),
(73497, 'https://ror.org/024xp9k29', 'en', 1, 'https://ror.org/024xp9k29 Fujian Institute of Education 福建教育学院'),
(73498, 'https://ror.org/0264gw370', 'en', 1, 'https://ror.org/0264gw370 Guangdong Institute for Drug Control 广东省药品检验所'),
(73499, 'https://ror.org/023f8av81', 'en', 1, 'https://ror.org/023f8av81 Gansu Coalfield Geology Bureau 甘肃煤田地质局'),
(73500, 'https://ror.org/02n9as466', 'en', 1, 'https://ror.org/02n9as466 Gansu Provincial Maternal and Child Health Hospital 甘肃省妇幼保健院'),
(73501, 'https://ror.org/037fk6k96', 'en', 1, 'https://ror.org/037fk6k96 Guangxi Zhuang Autonomous Region Hydraulic Research Institute 广西壮族自治区水利科学研究院'),
(73502, 'https://ror.org/01etbrg32', 'en', 1, 'https://ror.org/01etbrg32 Henan Nonferrous Metals Geological Exploration Institute 河南省有色金属地质勘查总院'),
(73503, 'https://ror.org/0229pbn48', 'en', 1, 'https://ror.org/0229pbn48 Guangxi Open University 广西开放大学'),
(73504, 'https://ror.org/01vav0149', 'en', 1, 'https://ror.org/01vav0149 Guizhou Botanical Garden 贵州省植物园'),
(73505, 'https://ror.org/04zgxt121', 'en', 1, 'https://ror.org/04zgxt121 Bureau of Geology and Mineral Exploration and Development of Guizhou Province'),
(73506, 'https://ror.org/01c40z329', 'en', 1, 'https://ror.org/01c40z329 Heilongjiang Coldland Building Science Research Institute 黑龙江省寒地建筑科学研究院'),
(73507, 'https://ror.org/01kcan266', 'no_lang_code', 1, 'https://ror.org/01kcan266 CytoSMART Technologies (Netherlands)'),
(73508, 'https://ror.org/02s6c9b53', 'en', 1, 'https://ror.org/02s6c9b53 Israeli Association for the Study of Religions האגודה הישראלית לחקר דתות'),
(73509, 'https://ror.org/02z2wvt20', 'en', 1, 'https://ror.org/02z2wvt20 Heilongjiang Provincial Environmental Science Research Institute 黑龙江省环境保护研究所'),
(73510, 'https://ror.org/05vtc2x84', 'en', 1, 'https://ror.org/05vtc2x84 Henan Provincial Institute of Cultural Heritage and Archaeology 河南省文物考古研究所'),
(73511, 'https://ror.org/049asma29', 'en', 1, 'https://ror.org/049asma29 Henan Institute of Geological Survey 河南省地质调查局'),
(73512, 'https://ror.org/01qhcb906', 'en', 1, 'https://ror.org/01qhcb906 Hohhot Minzu College 呼和浩特民族学院'),
(73513, 'https://ror.org/04p8ncq94', 'en', 1, 'https://ror.org/04p8ncq94 Hainan Agricultural School 海南省农业学校'),
(73514, 'https://ror.org/00tpvmh02', 'no_lang_code', 1, 'https://ror.org/00tpvmh02 Huaibei Mining (China)'),
(73515, 'https://ror.org/03nrtjx51', 'en', 1, 'https://ror.org/03nrtjx51 Hainan Meteorological Service 海南省气象局'),
(73516, 'https://ror.org/05yc9cc15', 'en', 1, 'https://ror.org/05yc9cc15 Hainan Earthquake Administration 海南省地震局'),
(73517, 'https://ror.org/05psp9534', 'en', 1, 'https://ror.org/05psp9534 Hangzhou Cancer Hospital 杭州市肿瘤医院'),
(73518, 'https://ror.org/03nxzvp26', 'en', 1, 'https://ror.org/03nxzvp26 Hangzhou Botanical Garden 杭州植物园'),
(73519, 'https://ror.org/007amws38', 'en', 1, 'https://ror.org/007amws38 Hubei Water Resources Research Institute 湖北省水利科学研究院'),
(73520, 'https://ror.org/05gpas306', 'en', 1, 'https://ror.org/05gpas306 Hangzhou Medical College 杭州医学院'),
(73521, 'https://ror.org/02gh10772', 'en', 1, 'https://ror.org/02gh10772 Hunan Police Academy 湖南警察学院'),
(73522, 'https://ror.org/029yvzm75', 'en', 1, 'https://ror.org/029yvzm75 Hunan Hydro&Power Design Institute 湖南水利水电勘测设计研究院'),
(73523, 'https://ror.org/01awdtn69', 'no_lang_code', 1, 'https://ror.org/01awdtn69 SinoMaps Press 中国地图出版社'),
(73524, 'https://ror.org/054fkw726', 'en', 1, 'https://ror.org/054fkw726 Hunan Institute of Microbiology 湖南省微生物研究院'),
(73525, 'https://ror.org/02rkcky47', 'en', 1, 'https://ror.org/02rkcky47 Henan Provincial Institute of Land and Resources Sciences 河南省国土资源科学研究院'),
(73526, 'https://ror.org/04v84zc94', 'en', 1, 'https://ror.org/04v84zc94 China Academy of Management Sciences 中国管理科学研究院'),
(73527, 'https://ror.org/04983b693', 'en', 1, 'https://ror.org/04983b693 Instrumentation Technology and Economy Institute 仪器仪表技术经济研究所'),
(73528, 'https://ror.org/04cxszt91', 'en', 1, 'https://ror.org/04cxszt91 Karamay Central Hospital of Xinjiang 克拉玛依市中心医院'),
(73529, 'https://ror.org/01hq7pd83', 'en', 1, 'https://ror.org/01hq7pd83 The First Hospital of Kunming 昆明市第一人民医院'),
(73530, 'https://ror.org/00vk1xe75', 'en', 1, 'https://ror.org/00vk1xe75 Liaoning Vocational College of Medical 辽宁医学院学报'),
(73531, 'https://ror.org/03616xn26', 'en', 1, 'https://ror.org/03616xn26 Liaoning Meteorological Bureau 辽宁省气象局'),
(73532, 'https://ror.org/046ycbp23', 'en', 1, 'https://ror.org/046ycbp23 Research Institute of Machinery Industry Economic&Management 机械工业经济与管理研究所'),
(73533, 'https://ror.org/04c6sva57', 'en', 1, 'https://ror.org/04c6sva57 Jiangsu Academy of Safety Science & Technology'),
(73534, 'https://ror.org/04knktv12', 'en', 1, 'https://ror.org/04knktv12 Jiujiang Maternal and Child Care Centres 九江市妇幼保健院'),
(73535, 'https://ror.org/01xaf3k63', 'no_lang_code', 1, 'https://ror.org/01xaf3k63 Metallurgical Industry Press (China) 冶金工业出版社'),
(73536, 'https://ror.org/004cyfn34', 'en', 1, 'https://ror.org/004cyfn34 Jiangxi Provincial Academy of Medical Sciences 江西省医学科学院'),
(73537, 'https://ror.org/011kf5918', 'en', 1, 'https://ror.org/011kf5918 Mianyang Institute of Traditional Chinese Medicine 绵阳中医学院'),
(73538, 'https://ror.org/058edxh67', 'en', 1, 'https://ror.org/058edxh67 Jiangxi Institute Of Economic Administraors 江西经济管理干部学院'),
(73539, 'https://ror.org/04v9f3d81', 'en', 1, 'https://ror.org/04v9f3d81 Jiangsu Province Institute of Quality & Safety Engineering 江苏省质量安全工程研究所'),
(73540, 'https://ror.org/05pzdnj43', 'en', 1, 'https://ror.org/05pzdnj43 Jiangsu Provincial Family Planning Institute of Science and Technology 江苏省计划生育科学技术研究所'),
(73541, 'https://ror.org/02r6vby11', 'en', 1, 'https://ror.org/02r6vby11 Beijing Research and Design Institute of Rubber Industry 北京橡胶工业研究设计院'),
(73542, 'https://ror.org/04pwkp704', 'en', 1, 'https://ror.org/04pwkp704 Department Of Agriculture and Rural Affairs Of Jiangxi Province 江西省农业厅'),
(73543, 'https://ror.org/03nas7697', 'en', 1, 'https://ror.org/03nas7697 Jiang Xi Institute for Drug Control 江西省药品检验检测研究院'),
(73544, 'https://ror.org/011hecd67', 'en', 1, 'https://ror.org/011hecd67 National Center for Gene Research 中国科学院国家基因研究中心'),
(73545, 'https://ror.org/04fhteb31', 'en', 1, 'https://ror.org/04fhteb31 National Center of Ocean Standards and Metrology 国家海洋标准计量中心'),
(73546, 'https://ror.org/03mxyqx84', 'en', 1, 'https://ror.org/03mxyqx84 National Center for Climate Change Strategy and International Cooperation 国家应对气候变化战略研究和国际合作中心'),
(73547, 'https://ror.org/02hhzwx06', 'en', 1, 'https://ror.org/02hhzwx06 Police Dog Technical School 警犬技术学校'),
(73548, 'https://ror.org/052p82762', 'en', 1, 'https://ror.org/052p82762 Nanchang Center for Disease Control and Prevention 南昌市疾病预防控制中心'),
(73549, 'https://ror.org/03j450x81', 'en', 1, 'https://ror.org/03j450x81 Nanyang Medical College 南陽醫學高等專科學校'),
(73550, 'https://ror.org/05k0v5b40', 'no_lang_code', 1, 'https://ror.org/05k0v5b40 Nanzhong Zhangzhongjing Hospital 南阳张仲景医院'),
(73551, 'https://ror.org/01fr0xv11', 'en', 1, 'https://ror.org/01fr0xv11 Heilongjiang Provincial Wildlife Research Institute 黑龙江省野生动物研究所'),
(73552, 'https://ror.org/03pz37k82', 'en', 1, 'https://ror.org/03pz37k82 Northwest Institute of Mechanical and Electrical Engineering 西北机电工程学院'),
(73553, 'https://ror.org/030zcqn97', 'en', 1, 'https://ror.org/030zcqn97 Ningbo Medical Center Lihuili Hospital 宁波市医疗中心李惠利医院'),
(73554, 'https://ror.org/051k1tf82', 'en', 1, 'https://ror.org/051k1tf82 Hainan Marine Monitoring and Forecasting Center 海南海洋监测预报中心'),
(73555, 'https://ror.org/0294v4s84', 'en', 1, 'https://ror.org/0294v4s84 Ningbo Municipal Bureau of Ecology and Environment'),
(73556, 'https://ror.org/05kq1zz28', 'en', 1, 'https://ror.org/05kq1zz28 Ningxia Academy of Social Sciences 宁夏社会科学院'),
(73557, 'https://ror.org/05t1wae93', 'en', 1, 'https://ror.org/05t1wae93 Puyang Vocational and Technical College 濮阳职业技术学院'),
(73558, 'https://ror.org/0311vkn02', 'no_lang_code', 1, 'https://ror.org/0311vkn02 Qinghai New Energy (China)'),
(73559, 'https://ror.org/00kfae706', 'en', 1, 'https://ror.org/00kfae706 Qinzhou Maternity and Child Health Care Hospital 钦州市妇幼保健院'),
(73560, 'https://ror.org/00087rj45', 'en', 1, 'https://ror.org/00087rj45 Sanming Agricultural Science Research Institute 三明市农业科学研究院'),
(73561, 'https://ror.org/04c0bqx97', 'en', 1, 'https://ror.org/04c0bqx97 Asia Pacific Construction Science and Technology Information Research Institute 亚太建设科技信息研究院有限公司'),
(73562, 'https://ror.org/02k75d319', 'en', 1, 'https://ror.org/02k75d319 Shandong Police College 山东警察学院'),
(73563, 'https://ror.org/00s3xpq12', 'en', 1, 'https://ror.org/00s3xpq12 Shandong Freshwater Fisheries Research Institute 山东省淡水渔业研究院'),
(73564, 'https://ror.org/05xv2zk35', 'en', 1, 'https://ror.org/05xv2zk35 Policy Research Center for Environment and Economy'),
(73565, 'https://ror.org/011g48w32', 'en', 1, 'https://ror.org/011g48w32 Institute of Sand Control, Shaanxi Academy of Forestry 陕西省治沙研究所'),
(73566, 'https://ror.org/0220ewf20', 'en', 1, 'https://ror.org/0220ewf20 Shandong Coalfield Geological Planning and Investigation Institute'),
(73567, 'https://ror.org/05ek0ze18', 'en', 1, 'https://ror.org/05ek0ze18 Shanghai Institute of Computing Technology 上海市计算技术研究所'),
(73568, 'https://ror.org/04pyk6020', 'en', 1, 'https://ror.org/04pyk6020 Shanghai Institute of Geological Survey 上海市地质调查研究院'),
(73569, 'https://ror.org/04cy5nh07', 'en', 1, 'https://ror.org/04cy5nh07 Shanghai Optical Instrument Research Institute 上海光学仪器研究所'),
(73570, 'https://ror.org/009399a74', 'en', 1, 'https://ror.org/009399a74 Shanghai Institute of Science & Technology Management'),
(73571, 'https://ror.org/03cfv5b91', 'en', 1, 'https://ror.org/03cfv5b91 Shanghai Public Security Bureau 上海市公安局'),
(73572, 'https://ror.org/05ybgx820', 'no_lang_code', 1, 'https://ror.org/05ybgx820 Shanghai Science and Technical Publishers (China) 上海科学技术出版社'),
(73573, 'https://ror.org/01ecwsw76', 'en', 1, 'https://ror.org/01ecwsw76 Shanghai Stock Exchange 上海证券交易所'),
(73574, 'https://ror.org/03agmnc67', 'en', 1, 'https://ror.org/03agmnc67 Shougang Institute of Technology 首钢工学院成立于'),
(73575, 'https://ror.org/04k4zw919', 'en', 1, 'https://ror.org/04k4zw919 Sichuan Economic Management Cadre College 四川省经济管理干部学院'),
(73576, 'https://ror.org/032z6r127', 'en', 1, 'https://ror.org/032z6r127 Sichuan Integrative Medicine Hosipital 四川省中西医结合医院'),
(73577, 'https://ror.org/021jpad90', 'en', 1, 'https://ror.org/021jpad90 General Administration of Sport of China 国家体育总局'),
(73578, 'https://ror.org/024pse488', 'en', 1, 'https://ror.org/024pse488 Systems Engineering Society of China 中国系统工程学会'),
(73579, 'https://ror.org/04het4147', 'en', 1, 'https://ror.org/04het4147 Chinese Neuroscience Society 中国神经科学学会'),
(73580, 'https://ror.org/0587q0807', 'en', 1, 'https://ror.org/0587q0807 Sichuan Research Center of New Materials 四川省新材料研究中心'),
(73581, 'https://ror.org/05hhh4g76', 'en', 1, 'https://ror.org/05hhh4g76 The Crop Science Society of China 中国作物学会'),
(73582, 'https://ror.org/043hxea55', 'en', 1, 'https://ror.org/043hxea55 The First People''s Hospital of Guiyang 贵阳市第一人民医院'),
(73583, 'https://ror.org/04scxn105', 'en', 1, 'https://ror.org/04scxn105 Dingxi City People''s Hospital 定西市人民医院'),
(73584, 'https://ror.org/05szwcv45', 'en', 1, 'https://ror.org/05szwcv45 Hunan Provincial Maternal and Child Health Hospital 湖南省妇幼保健院'),
(73585, 'https://ror.org/00phbja87', 'en', 1, 'https://ror.org/00phbja87 State Administration of Foreign Exchange 国家外汇管理局'),
(73586, 'https://ror.org/005n4dc83', 'no_lang_code', 1, 'https://ror.org/005n4dc83 Tianjin Synthetic Material Research Institute (China) 天津市合成材料工业研究所有限公司'),
(73587, 'https://ror.org/01c4gq057', 'en', 1, 'https://ror.org/01c4gq057 Tongliao Academy of Agricultural Sciences 通辽市农业科学研究院'),
(73588, 'https://ror.org/02h3fyk31', 'en', 1, 'https://ror.org/02h3fyk31 Xichang University 西昌学院'),
(73589, 'https://ror.org/04xar0g84', 'en', 1, 'https://ror.org/04xar0g84 Hainan Provincial Hospital of Traditional Chinese Medicine 海南省中医院'),
(73590, 'https://ror.org/00502tg50', 'no_lang_code', 1, 'https://ror.org/00502tg50 Wanfang Data (China)'),
(73591, 'https://ror.org/05609xa16', 'en', 1, 'https://ror.org/05609xa16 Wenzhou-Kean University 温州肯恩大学'),
(73592, 'https://ror.org/046je4759', 'en', 1, 'https://ror.org/046je4759 Western Returned Scholars Association·Overseas-Educated Scholars Association of China 欧美同学会'),
(73593, 'https://ror.org/0559db563', 'no_lang_code', 1, 'https://ror.org/0559db563 Xinjiang New Energy Research Institute (China)'),
(73594, 'https://ror.org/03mk77722', 'en', 1, 'https://ror.org/03mk77722 Xinjiang Police College'),
(73595, 'https://ror.org/02mqsna37', 'en', 1, 'https://ror.org/02mqsna37 Wuchang University of Technology 武昌理工学院'),
(73596, 'https://ror.org/0443rmh76', 'en', 1, 'https://ror.org/0443rmh76 Wuhan Blood Center 武汉血液中心'),
(73597, 'https://ror.org/01f0rgv52', 'en', 1, 'https://ror.org/01f0rgv52 Wuhan Prevention and Treatment Center for Occupational Diseases 武汉市职业病防治院'),
(73598, 'https://ror.org/04d9wma96', 'no_lang_code', 1, 'https://ror.org/04d9wma96 Xian Mechanical & Electric Institute (China) 西安机电研究所'),
(73599, 'https://ror.org/05wg75z42', 'en', 1, 'https://ror.org/05wg75z42 Children’s Hospital of Fudan University Xiamen Branch 厦门市儿童医院简介'),
(73600, 'https://ror.org/02ezs8594', 'en', 1, 'https://ror.org/02ezs8594 Yunnan Population and Family Planning Research Institute 云南省人口和计划生育科学技术研究所'),
(73601, 'https://ror.org/04m2c1f16', 'en', 1, 'https://ror.org/04m2c1f16 Zhe Jiang Institute of Geology and Mineral Resource 浙江省地质矿产研究所'),
(73602, 'https://ror.org/04zs83x19', 'en', 1, 'https://ror.org/04zs83x19 Zhengzhou Railway Vocational & Technical College 郑州铁路职业技术学院'),
(73603, 'https://ror.org/00ceh5s45', 'es', 1, 'https://ror.org/00ceh5s45 Departamento de Epidemiología'),
(73604, 'https://ror.org/0280bnq76', 'en', 1, 'https://ror.org/0280bnq76 Center for Research in Molecular Medicine and Chronic Diseases Centro singular de investigación de Galicia'),
(73605, 'https://ror.org/012gdwx28', 'es', 1, 'https://ror.org/012gdwx28 Centro de Salud Casa del Barco'),
(73606, 'https://ror.org/04enqja79', 'en', 1, 'https://ror.org/04enqja79 Andalusian Centre for Nanomedicine and Biotechnology Centro Andaluz de Nanomedicina y Biotecnología'),
(73607, 'https://ror.org/04xezgr31', 'no_lang_code', 1, 'https://ror.org/04xezgr31 CIBBIM-Nanomedicine'),
(73608, 'https://ror.org/04ps07s38', 'ca', 1, 'https://ror.org/04ps07s38 Consorci Sanitari Garraf'),
(73609, 'https://ror.org/01gwdsm60', 'es', 1, 'https://ror.org/01gwdsm60 Fundación Andaluza Beturia para la Investigación en Salud'),
(73610, 'https://ror.org/01dxbn742', 'es', 1, 'https://ror.org/01dxbn742 Fundación A LA PAR'),
(73611, 'https://ror.org/03nmxrr49', 'en', 1, 'https://ror.org/03nmxrr49 Instituto Universitario de Investigación en Ciencias de la Salud Research Institute of Health Sciences'),
(73612, 'https://ror.org/01ay03t14', 'no_lang_code', 1, 'https://ror.org/01ay03t14 13Therapeutics (United States)'),
(73613, 'https://ror.org/0110h6q82', 'en', 1, 'https://ror.org/0110h6q82 Clear Path for Veterans'),
(73614, 'https://ror.org/008hcnq44', 'en', 1, 'https://ror.org/008hcnq44 Action Toward Independence'),
(73615, 'https://ror.org/051c7bh69', 'no_lang_code', 1, 'https://ror.org/051c7bh69 Frequency Therapeutics (United States)'),
(73616, 'https://ror.org/00r9q8b87', 'no_lang_code', 1, 'https://ror.org/00r9q8b87 Click Diagnostics (United States)'),
(73617, 'https://ror.org/0584vt120', 'en', 1, 'https://ror.org/0584vt120 Advanced Functional Fabrics of America'),
(73618, 'https://ror.org/03x95rx80', 'pt', 1, 'https://ror.org/03x95rx80 Fundação de Apoio à Universidade do Rio Grande'),
(73619, 'https://ror.org/01mtjh577', 'no_lang_code', 1, 'https://ror.org/01mtjh577 Alivio Therapeutics (United States)'),
(73620, 'https://ror.org/02dr28080', 'no_lang_code', 1, 'https://ror.org/02dr28080 ContraFect (United States)'),
(73621, 'https://ror.org/021a1jy10', 'no_lang_code', 1, 'https://ror.org/021a1jy10 Amicrobe (United States)'),
(73622, 'https://ror.org/0008adq18', 'no_lang_code', 1, 'https://ror.org/0008adq18 Gel4Med (United States)'),
(73623, 'https://ror.org/05ykc8r61', 'no_lang_code', 1, 'https://ror.org/05ykc8r61 DocBox (United States)'),
(73624, 'https://ror.org/027b3vh68', 'no_lang_code', 1, 'https://ror.org/027b3vh68 Appili Therapeutics (Canada)'),
(73625, 'https://ror.org/04n1n6p22', 'en', 1, 'https://ror.org/04n1n6p22 Assistance Dogs of the West'),
(73626, 'https://ror.org/028q4wx16', 'en', 1, 'https://ror.org/028q4wx16 Association for Environmental Health and Sciences Foundation'),
(73627, 'https://ror.org/00xkmw397', 'no_lang_code', 1, 'https://ror.org/00xkmw397 AutoMedx (United States)'),
(73628, 'https://ror.org/00adtdy17', 'en', 1, 'https://ror.org/00adtdy17 Eastern Mediterranean Public Health Network'),
(73629, 'https://ror.org/02zscxx64', 'no_lang_code', 1, 'https://ror.org/02zscxx64 Electrosciences (United Kingdom)'),
(73630, 'https://ror.org/03cz6ea04', 'no_lang_code', 1, 'https://ror.org/03cz6ea04 Bainbridge Development Corporation (United States)'),
(73631, 'https://ror.org/022vzqd83', 'en', 1, 'https://ror.org/022vzqd83 Elemental Excelerator'),
(73632, 'https://ror.org/02ammwv45', 'en', 1, 'https://ror.org/02ammwv45 Health Crescendos Foundation');
INSERT INTO `rors` VALUES
(73633, 'https://ror.org/000k53a93', 'en', 1, 'https://ror.org/000k53a93 Emerald Coast Science Center'),
(73634, 'https://ror.org/04g47vg59', 'en', 1, 'https://ror.org/04g47vg59 Belle Chasse Academy'),
(73635, 'https://ror.org/02tdxsk76', 'en', 1, 'https://ror.org/02tdxsk76 Fidelco Guide Dog Foundation'),
(73636, 'https://ror.org/01vhc4245', 'en', 1, 'https://ror.org/01vhc4245 INFINITY Science Center'),
(73637, 'https://ror.org/04tfspg74', 'no_lang_code', 1, 'https://ror.org/04tfspg74 Information Visualization and Innovative Research'),
(73638, 'https://ror.org/0252vn140', 'en', 1, 'https://ror.org/0252vn140 Center for Collaborative Interdisciplinary Sciences'),
(73639, 'https://ror.org/043e44e41', 'en', 1, 'https://ror.org/043e44e41 Center for Regional Economic Competitiveness'),
(73640, 'https://ror.org/02kyd6w77', 'en', 1, 'https://ror.org/02kyd6w77 Izumi Biosciences'),
(73641, 'https://ror.org/02s2qpg90', 'en', 1, 'https://ror.org/02s2qpg90 Institute of Astronomy and National Astronomical Observatory'),
(73642, 'https://ror.org/04rw28498', 'en', 1, 'https://ror.org/04rw28498 K9 Partners for Patriots'),
(73643, 'https://ror.org/02nanfc50', 'en', 1, 'https://ror.org/02nanfc50 Michigan Works! Macomb/St. Clair'),
(73644, 'https://ror.org/03ge76j81', 'no_lang_code', 1, 'https://ror.org/03ge76j81 Kiio (United States)'),
(73645, 'https://ror.org/010bhd382', 'no_lang_code', 1, 'https://ror.org/010bhd382 Launch Alaska (United States)'),
(73646, 'https://ror.org/03r5vgh07', 'no_lang_code', 1, 'https://ror.org/03r5vgh07 Prytime Medical (United States)'),
(73647, 'https://ror.org/02wt4s775', 'en', 1, 'https://ror.org/02wt4s775 Naval Air Warfare Center Training Systems Division'),
(73648, 'https://ror.org/03rgkg396', 'en', 1, 'https://ror.org/03rgkg396 Military & Health Research Foundation'),
(73649, 'https://ror.org/03m73t838', 'no_lang_code', 1, 'https://ror.org/03m73t838 RenBio (United States)'),
(73650, 'https://ror.org/02y8n9198', 'en', 1, 'https://ror.org/02y8n9198 Renewable Energy Alaska Project'),
(73651, 'https://ror.org/02na2p746', 'en', 1, 'https://ror.org/02na2p746 Navy League of the United States'),
(73652, 'https://ror.org/00k085e72', 'no_lang_code', 1, 'https://ror.org/00k085e72 NanoMedical Systems (United States)'),
(73653, 'https://ror.org/01eb4hw22', 'no_lang_code', 1, 'https://ror.org/01eb4hw22 NeoMatrix Therapeutics (United States)'),
(73654, 'https://ror.org/05xg01v02', 'no_lang_code', 1, 'https://ror.org/05xg01v02 New Amsterdam Sciences (United States)'),
(73655, 'https://ror.org/05rc2ds55', 'no_lang_code', 1, 'https://ror.org/05rc2ds55 OtoScience Labs (United States)'),
(73656, 'https://ror.org/025mr0m62', 'en', 1, 'https://ror.org/025mr0m62 NEADS World Class Service Dogs Change'),
(73657, 'https://ror.org/02kqh4879', 'en', 1, 'https://ror.org/02kqh4879 Palmer Soil and Water Conservation District'),
(73658, 'https://ror.org/03rzz2412', 'en', 1, 'https://ror.org/03rzz2412 Paws Assisting Veterans'),
(73659, 'https://ror.org/047ycs764', 'en', 1, 'https://ror.org/047ycs764 paws4people'),
(73660, 'https://ror.org/029j07248', 'no_lang_code', 1, 'https://ror.org/029j07248 SpineThera (United States)'),
(73661, 'https://ror.org/03fvjsd23', 'no_lang_code', 1, 'https://ror.org/03fvjsd23 Prosthetic Design + Research (United States)'),
(73662, 'https://ror.org/055pxkc03', 'en', 1, 'https://ror.org/055pxkc03 The Korean Institute of Electrical and Electronic Material Engineers 한국전기전자재료학회'),
(73663, 'https://ror.org/04bq6sg74', 'no_lang_code', 1, 'https://ror.org/04bq6sg74 Trifecta Solutions (United States)'),
(73664, 'https://ror.org/01wd8pk38', 'en', 1, 'https://ror.org/01wd8pk38 VA Connecticut Research and Education Foundation'),
(73665, 'https://ror.org/02c592745', 'en', 1, 'https://ror.org/02c592745 Virginia Department of Veterans Services'),
(73666, 'https://ror.org/05sz4dt57', 'en', 1, 'https://ror.org/05sz4dt57 Aberdeen Science Centre'),
(73667, 'https://ror.org/05b3amq72', 'no_lang_code', 1, 'https://ror.org/05b3amq72 Acesion Pharma (Denmark)'),
(73668, 'https://ror.org/00wy0mk13', 'en', 1, 'https://ror.org/00wy0mk13 Museum of Military Medicine'),
(73669, 'https://ror.org/02qfkfg14', 'no_lang_code', 1, 'https://ror.org/02qfkfg14 Cresset (United Kingdom)'),
(73670, 'https://ror.org/0229w9h56', 'no_lang_code', 1, 'https://ror.org/0229w9h56 Aurum Biosciences (United Kingdom)'),
(73671, 'https://ror.org/04bptvv47', 'en', 1, 'https://ror.org/04bptvv47 Daily Life'),
(73672, 'https://ror.org/05k45wk36', 'en', 1, 'https://ror.org/05k45wk36 Azerbaijan Medical Association Azərbaycan Tibb Assosiasiyası'),
(73673, 'https://ror.org/00vtjav66', 'en', 1, 'https://ror.org/00vtjav66 Darwin Centre'),
(73674, 'https://ror.org/002p8js91', 'en', 1, 'https://ror.org/002p8js91 Drugs & Diagnostics for Tropical Diseases'),
(73675, 'https://ror.org/01fef0w16', 'en', 1, 'https://ror.org/01fef0w16 EAT'),
(73676, 'https://ror.org/030aq8r67', 'no_lang_code', 1, 'https://ror.org/030aq8r67 Biocartis (Belgium)'),
(73677, 'https://ror.org/048r7yt92', 'en', 1, 'https://ror.org/048r7yt92 EngineeringUK'),
(73678, 'https://ror.org/02m3s6y46', 'en', 1, 'https://ror.org/02m3s6y46 Explore York'),
(73679, 'https://ror.org/03b0jrb97', 'no_lang_code', 1, 'https://ror.org/03b0jrb97 GhScientific'),
(73680, 'https://ror.org/05qnccv96', 'en', 1, 'https://ror.org/05qnccv96 British Dental Association'),
(73681, 'https://ror.org/03802zd28', 'en', 1, 'https://ror.org/03802zd28 Global Emerging Pathogens Treatment Consortium'),
(73682, 'https://ror.org/05sfhjs05', 'en', 1, 'https://ror.org/05sfhjs05 British Neuroscience Association'),
(73683, 'https://ror.org/042fkva46', 'no_lang_code', 1, 'https://ror.org/042fkva46 Graphic Science (United Kingdom)'),
(73684, 'https://ror.org/00y289c89', 'en', 1, 'https://ror.org/00y289c89 British Society for the History of Medicine'),
(73685, 'https://ror.org/00n2yhr54', 'en', 1, 'https://ror.org/00n2yhr54 Norton Priory Museum & Gardens'),
(73686, 'https://ror.org/00zwgem63', 'en', 1, 'https://ror.org/00zwgem63 Brooke'),
(73687, 'https://ror.org/03ka0hg89', 'en', 1, 'https://ror.org/03ka0hg89 Nova Laboratories'),
(73688, 'https://ror.org/04kybmr51', 'en', 1, 'https://ror.org/04kybmr51 S.I. Vavilov Institute for the History of Science and Technology Институт истории естествознания и техники имени С. И. Вавилова РАН'),
(73689, 'https://ror.org/02qp1kv78', 'en', 1, 'https://ror.org/02qp1kv78 Cambridge Hands-On Science'),
(73690, 'https://ror.org/03vqd0w40', 'en', 1, 'https://ror.org/03vqd0w40 Institute of Medical Ethics'),
(73691, 'https://ror.org/00j7rye35', 'en', 1, 'https://ror.org/00j7rye35 Cambridge Science Centre'),
(73692, 'https://ror.org/04a6evj08', 'no_lang_code', 1, 'https://ror.org/04a6evj08 Phagenesis (United Kingdom)'),
(73693, 'https://ror.org/000j37591', 'en', 1, 'https://ror.org/000j37591 British Psychoanalytical Society'),
(73694, 'https://ror.org/00m6hew51', 'en', 1, 'https://ror.org/00m6hew51 Center for Creative Initiatives in Health and Population'),
(73695, 'https://ror.org/02nkjx490', 'en', 1, 'https://ror.org/02nkjx490 PredictImmune'),
(73696, 'https://ror.org/02dt32p51', 'no_lang_code', 1, 'https://ror.org/02dt32p51 Intelesens (United Kingdom)'),
(73697, 'https://ror.org/009epkm94', 'en', 1, 'https://ror.org/009epkm94 Center for Environmental Concerns'),
(73698, 'https://ror.org/01e2h6r50', 'en', 1, 'https://ror.org/01e2h6r50 Dr Jenner''s House, Museum and Garden'),
(73699, 'https://ror.org/00cprwm60', 'en', 1, 'https://ror.org/00cprwm60 Center for Promotion of Advancement of Society'),
(73700, 'https://ror.org/043kzcw74', 'en', 1, 'https://ror.org/043kzcw74 Center for the Study of Equity and Governance in Health Systems Centro de Estudios para la Equidad y Gobernanza en Sistemas de Salud'),
(73701, 'https://ror.org/00e3c6786', 'en', 1, 'https://ror.org/00e3c6786 Scottish Council on Human Bioethics'),
(73702, 'https://ror.org/01jf25m17', 'no_lang_code', 1, 'https://ror.org/01jf25m17 Stealthyx (United Kingdom)'),
(73703, 'https://ror.org/01rhva785', 'es', 1, 'https://ror.org/01rhva785 Centro Nacional de Investigaciones en Salud Materno Infantil'),
(73704, 'https://ror.org/019r5ea24', 'en', 1, 'https://ror.org/019r5ea24 Suriname Indigenous Health Fund'),
(73705, 'https://ror.org/00z6x4k60', 'en', 1, 'https://ror.org/00z6x4k60 Jewish Museum London'),
(73706, 'https://ror.org/0308fvb52', 'en', 1, 'https://ror.org/0308fvb52 Science and Development Network'),
(73707, 'https://ror.org/04yptqa43', 'no_lang_code', 1, 'https://ror.org/04yptqa43 Thermofluidics (United Kingdom)'),
(73708, 'https://ror.org/02zw6k693', 'es', 1, 'https://ror.org/02zw6k693 Parque Explora'),
(73709, 'https://ror.org/01cesq109', 'en', 1, 'https://ror.org/01cesq109 Liverpool Medical Institution'),
(73710, 'https://ror.org/01jfknd16', 'no_lang_code', 1, 'https://ror.org/01jfknd16 Treventis (Canada)'),
(73711, 'https://ror.org/01jpxmr98', 'en', 1, 'https://ror.org/01jpxmr98 Mazingira Institute'),
(73712, 'https://ror.org/042ms5h77', 'en', 1, 'https://ror.org/042ms5h77 UK Council on Deafness'),
(73713, 'https://ror.org/006grep18', 'no_lang_code', 1, 'https://ror.org/006grep18 Science Spaza'),
(73714, 'https://ror.org/058ytte92', 'en', 1, 'https://ror.org/058ytte92 Cape Town Science Centre'),
(73715, 'https://ror.org/03j0pv717', 'es', 1, 'https://ror.org/03j0pv717 Consejo Superior De Salud Publica'),
(73716, 'https://ror.org/03xv8e740', 'no_lang_code', 1, 'https://ror.org/03xv8e740 ABmerit'),
(73717, 'https://ror.org/05mxfdw94', 'no_lang_code', 1, 'https://ror.org/05mxfdw94 DHI (Slovakia)'),
(73718, 'https://ror.org/001f11244', 'no_lang_code', 1, 'https://ror.org/001f11244 Adivit (Slovakia)'),
(73719, 'https://ror.org/000pwjf21', 'no_lang_code', 1, 'https://ror.org/000pwjf21 Documents Workflow Content (Slovakia)'),
(73720, 'https://ror.org/043q1rx18', 'no_lang_code', 1, 'https://ror.org/043q1rx18 Dytron (Slovakia)'),
(73721, 'https://ror.org/028c6av56', 'no_lang_code', 1, 'https://ror.org/028c6av56 Aroma Marketing (Slovakia)'),
(73722, 'https://ror.org/055c63105', 'no_lang_code', 1, 'https://ror.org/055c63105 IBM (Slovakia)'),
(73723, 'https://ror.org/053rk7239', 'no_lang_code', 1, 'https://ror.org/053rk7239 ETKM (Slovakia)'),
(73724, 'https://ror.org/00pph5857', 'no_lang_code', 1, 'https://ror.org/00pph5857 Atos (Slovakia)'),
(73725, 'https://ror.org/0166ary89', 'no_lang_code', 1, 'https://ror.org/0166ary89 Calibrium (Slovakia)'),
(73726, 'https://ror.org/0200a2h90', 'no_lang_code', 1, 'https://ror.org/0200a2h90 Equis (Slovakia)'),
(73727, 'https://ror.org/00wtqt111', 'no_lang_code', 1, 'https://ror.org/00wtqt111 Esox-Plast (Slovakia)'),
(73728, 'https://ror.org/00ah5w636', 'no_lang_code', 1, 'https://ror.org/00ah5w636 Centire Research (Slovakia)'),
(73729, 'https://ror.org/01231rh41', 'en', 1, 'https://ror.org/01231rh41 Georgia Department of Economic Development'),
(73730, 'https://ror.org/04d1fsz63', 'no_lang_code', 1, 'https://ror.org/04d1fsz63 Chemko (Slovakia)'),
(73731, 'https://ror.org/02f1cet20', 'en', 1, 'https://ror.org/02f1cet20 Institute for Labour and Family Research Inštitút Pre Výskum Práce a Rodiny'),
(73732, 'https://ror.org/02t4kbq20', 'no_lang_code', 1, 'https://ror.org/02t4kbq20 Fagor Ederlan (Slovakia)'),
(73733, 'https://ror.org/0057mhb40', 'no_lang_code', 1, 'https://ror.org/0057mhb40 Matador (Slovakia)'),
(73734, 'https://ror.org/007f5j378', 'no_lang_code', 1, 'https://ror.org/007f5j378 Cryosoft (Slovakia)'),
(73735, 'https://ror.org/04ajzzc58', 'no_lang_code', 1, 'https://ror.org/04ajzzc58 FineSoft (Slovakia)'),
(73736, 'https://ror.org/04xvc2765', 'no_lang_code', 1, 'https://ror.org/04xvc2765 Integra TDS (Slovakia)'),
(73737, 'https://ror.org/05ja07v76', 'no_lang_code', 1, 'https://ror.org/05ja07v76 Kinex Bearings (Slovakia)'),
(73738, 'https://ror.org/03wyta813', 'no_lang_code', 1, 'https://ror.org/03wyta813 Konstrukta Defence (Slovakia)'),
(73739, 'https://ror.org/027dj9r35', 'no_lang_code', 1, 'https://ror.org/027dj9r35 COLAS Slovakia (Slovakia)'),
(73740, 'https://ror.org/01mftq342', 'no_lang_code', 1, 'https://ror.org/01mftq342 Konzeko, spol (Slovakia)'),
(73741, 'https://ror.org/016ywe586', 'no_lang_code', 1, 'https://ror.org/016ywe586 Kvant (Slovakia)'),
(73742, 'https://ror.org/03w6dw671', 'no_lang_code', 1, 'https://ror.org/03w6dw671 IPM Solutions (Slovakia)'),
(73743, 'https://ror.org/020zksa59', 'no_lang_code', 1, 'https://ror.org/020zksa59 Informacne Technologie A Konzultacie (Slovakia)'),
(73744, 'https://ror.org/0169qcp97', 'no_lang_code', 1, 'https://ror.org/0169qcp97 Geocomplex (Slovakia)'),
(73745, 'https://ror.org/02qfef581', 'en', 1, 'https://ror.org/02qfef581 Nordic Optical Telescope Scientific Association'),
(73746, 'https://ror.org/013yc9k66', 'no_lang_code', 1, 'https://ror.org/013yc9k66 GEOtest Bratislava (Slovakia)'),
(73747, 'https://ror.org/057bmm383', 'no_lang_code', 1, 'https://ror.org/057bmm383 Lb Minerals (Slovakia)'),
(73748, 'https://ror.org/02z809f45', 'no_lang_code', 1, 'https://ror.org/02z809f45 Novekon (Slovakia)'),
(73749, 'https://ror.org/020tn0052', 'no_lang_code', 1, 'https://ror.org/020tn0052 LeikTec (Slovakia)'),
(73750, 'https://ror.org/00t48m413', 'no_lang_code', 1, 'https://ror.org/00t48m413 Johns Manville (Slovakia)'),
(73751, 'https://ror.org/014xvjk95', 'no_lang_code', 1, 'https://ror.org/014xvjk95 Observatory and Planetarium of Prešov'),
(73752, 'https://ror.org/0086zck61', 'no_lang_code', 1, 'https://ror.org/0086zck61 Martimex (Slovakia)'),
(73753, 'https://ror.org/03g386s80', 'no_lang_code', 1, 'https://ror.org/03g386s80 Maspoma (Slovakia)'),
(73754, 'https://ror.org/05nd09v89', 'no_lang_code', 1, 'https://ror.org/05nd09v89 ON Semiconductor (Slovakia)'),
(73755, 'https://ror.org/01q206483', 'no_lang_code', 1, 'https://ror.org/01q206483 OVD - Ovocinárske Družstvo (Slovakia)'),
(73756, 'https://ror.org/05mkmy494', 'no_lang_code', 1, 'https://ror.org/05mkmy494 Pansophia'),
(73757, 'https://ror.org/0521m4596', 'no_lang_code', 1, 'https://ror.org/0521m4596 McCarter (Slovakia)'),
(73758, 'https://ror.org/01y4d4d64', 'no_lang_code', 1, 'https://ror.org/01y4d4d64 MIA Engineering (Slovakia)'),
(73759, 'https://ror.org/015sra590', 'sk', 1, 'https://ror.org/015sra590 Slovenské Planetáriá'),
(73760, 'https://ror.org/03apm9z31', 'no_lang_code', 1, 'https://ror.org/03apm9z31 NES (Slovakia)'),
(73761, 'https://ror.org/03s3tpp34', 'no_lang_code', 1, 'https://ror.org/03s3tpp34 Plantex (Slovakia)'),
(73762, 'https://ror.org/051r4h193', 'no_lang_code', 1, 'https://ror.org/051r4h193 PPA Controll (Slovakia)'),
(73763, 'https://ror.org/03191tc24', 'no_lang_code', 1, 'https://ror.org/03191tc24 Sembid'),
(73764, 'https://ror.org/02hdkm455', 'no_lang_code', 1, 'https://ror.org/02hdkm455 Novartis (Slovakia)'),
(73765, 'https://ror.org/00cx1hm79', 'no_lang_code', 1, 'https://ror.org/00cx1hm79 Sessler'),
(73766, 'https://ror.org/01hcney72', 'no_lang_code', 1, 'https://ror.org/01hcney72 Thyssenkrupp (Slovakia)'),
(73767, 'https://ror.org/02eg69p81', 'no_lang_code', 1, 'https://ror.org/02eg69p81 Research - Development Application Services (Slovakia)'),
(73768, 'https://ror.org/03ae4gt79', 'no_lang_code', 1, 'https://ror.org/03ae4gt79 Shimadzu (Slovakia)'),
(73769, 'https://ror.org/00grkfw93', 'no_lang_code', 1, 'https://ror.org/00grkfw93 Slovenská Elektrizačná Prenosová Sústava (Slovakia)'),
(73770, 'https://ror.org/058pqk375', 'no_lang_code', 1, 'https://ror.org/058pqk375 Siemens (Slovakia)'),
(73771, 'https://ror.org/05t5yjz39', 'no_lang_code', 1, 'https://ror.org/05t5yjz39 Slovenské Magnezitové Závody (Slovakia)'),
(73772, 'https://ror.org/017rfjf78', 'no_lang_code', 1, 'https://ror.org/017rfjf78 Riso (Slovakia)'),
(73773, 'https://ror.org/022869t47', 'no_lang_code', 1, 'https://ror.org/022869t47 Museum of Spiš'),
(73774, 'https://ror.org/04fhe5c23', 'no_lang_code', 1, 'https://ror.org/04fhe5c23 Schrack Technik (Slovakia)'),
(73775, 'https://ror.org/02y5r2j71', 'no_lang_code', 1, 'https://ror.org/02y5r2j71 Spišcol (Slovakia)'),
(73776, 'https://ror.org/02kt1pm02', 'sk', 1, 'https://ror.org/02kt1pm02 Štátne Lesy Tatranského Národního Parku'),
(73777, 'https://ror.org/02nzrsp96', 'sk', 1, 'https://ror.org/02nzrsp96 Štátny Inštitút Odborného Vzdelávania'),
(73778, 'https://ror.org/017rjkb90', 'no_lang_code', 1, 'https://ror.org/017rjkb90 Thermo Solar (Slovakia)'),
(73779, 'https://ror.org/02knymj82', 'sk', 1, 'https://ror.org/02knymj82 Kúpele Vyšné Ružbachy'),
(73780, 'https://ror.org/02a57s352', 'es', 1, 'https://ror.org/02a57s352 Centro Regional de Hemodonación'),
(73781, 'https://ror.org/02k7stp33', 'en', 1, 'https://ror.org/02k7stp33 National Institute for Education Štátny Pedagogický ústav'),
(73782, 'https://ror.org/04ed42k63', 'no_lang_code', 1, 'https://ror.org/04ed42k63 Voipac (Slovakia)'),
(73783, 'https://ror.org/02zxs5p14', 'no_lang_code', 1, 'https://ror.org/02zxs5p14 VSL Software (Slovakia)'),
(73784, 'https://ror.org/02w7mbz57', 'no_lang_code', 1, 'https://ror.org/02w7mbz57 Staton (Slovakia)'),
(73785, 'https://ror.org/04qdr2v32', 'no_lang_code', 1, 'https://ror.org/04qdr2v32 Sylex (Slovakia)'),
(73786, 'https://ror.org/00x74f485', 'en', 1, 'https://ror.org/00x74f485 Slovak Caves Administration Szlovákiai Barlangok Igazgatósága'),
(73787, 'https://ror.org/02h74qa12', 'es', 1, 'https://ror.org/02h74qa12 Mútua Terrassa'),
(73788, 'https://ror.org/02taynh45', 'no_lang_code', 1, 'https://ror.org/02taynh45 Systémy Priemyselnej Informatiky (Slovakia)'),
(73789, 'https://ror.org/05xjjbz05', 'no_lang_code', 1, 'https://ror.org/05xjjbz05 Deutsche Telekom (Slovakia)'),
(73790, 'https://ror.org/02bm0dv51', 'no_lang_code', 1, 'https://ror.org/02bm0dv51 Way Industries (Slovakia)'),
(73791, 'https://ror.org/02z3t4v81', 'es', 1, 'https://ror.org/02z3t4v81 Programa de Salud Global'),
(73792, 'https://ror.org/05vs7jg22', 'en', 1, 'https://ror.org/05vs7jg22 World Health Organization - Slovakia'),
(73793, 'https://ror.org/01qwwqf39', 'no_lang_code', 1, 'https://ror.org/01qwwqf39 YMS (Slovakia)'),
(73794, 'https://ror.org/02sp9w679', 'sk', 1, 'https://ror.org/02sp9w679 Trojsten'),
(73795, 'https://ror.org/052z98995', 'no_lang_code', 1, 'https://ror.org/052z98995 Vádium (Slovakia)'),
(73796, 'https://ror.org/02c3keg48', 'sk', 1, 'https://ror.org/02c3keg48 Asociácia Doktorandov Slovenska'),
(73797, 'https://ror.org/04ykypa08', 'no_lang_code', 1, 'https://ror.org/04ykypa08 Podbrezová Iron Works (Slovakia) Železiarne Podbrezová'),
(73798, 'https://ror.org/05rm2kt05', 'en', 1, 'https://ror.org/05rm2kt05 Slovak Technical Museum Slovenské Technické Múzeum'),
(73799, 'https://ror.org/03zr63661', 'en', 1, 'https://ror.org/03zr63661 Slovak Water Management Enterprise Slovenský Vodohospodársky Podnik'),
(73800, 'https://ror.org/04hjhj186', 'no_lang_code', 1, 'https://ror.org/04hjhj186 Biocartis (Switzerland)'),
(73801, 'https://ror.org/025v27q25', 'no_lang_code', 1, 'https://ror.org/025v27q25 Vegum (Slovakia)'),
(73802, 'https://ror.org/01wxthv91', 'sk', 1, 'https://ror.org/01wxthv91 Slovenská Fyzikálna Spoločnosť'),
(73803, 'https://ror.org/04ffg1496', 'no_lang_code', 1, 'https://ror.org/04ffg1496 Zts Inmart Atóm (Slovakia)'),
(73804, 'https://ror.org/04r425b39', 'en', 1, 'https://ror.org/04r425b39 Slovak Renewable Energy Agency'),
(73805, 'https://ror.org/013y3gm73', 'no_lang_code', 1, 'https://ror.org/013y3gm73 ZTS Sabinov (Slovakia)'),
(73806, 'https://ror.org/01hjd1v39', 'no_lang_code', 1, 'https://ror.org/01hjd1v39 Zelseed (Slovakia)'),
(73807, 'https://ror.org/05kbysy14', 'no_lang_code', 1, 'https://ror.org/05kbysy14 Slovenské Elektrárne (Slovakia)'),
(73808, 'https://ror.org/03x7fn667', 'en', 1, 'https://ror.org/03x7fn667 Western Regional Research Center'),
(73809, 'https://ror.org/02gbdhj19', 'en', 1, 'https://ror.org/02gbdhj19 National Center for Agricultural Utilization Research'),
(73810, 'https://ror.org/03b08sh51', 'en', 1, 'https://ror.org/03b08sh51 Beltsville Agricultural Research Center'),
(73811, 'https://ror.org/03ks9ad25', 'no_lang_code', 1, 'https://ror.org/03ks9ad25 Hydrogen Slovakia (Slovakia)'),
(73812, 'https://ror.org/01cghcn81', 'en', 1, 'https://ror.org/01cghcn81 Southern Regional Research Center'),
(73813, 'https://ror.org/05kjsn706', 'sk', 1, 'https://ror.org/05kjsn706 Nemocnica Malacky'),
(73814, 'https://ror.org/052v5pn20', 'en', 1, 'https://ror.org/052v5pn20 Eastern Regional Research Center'),
(73815, 'https://ror.org/053g7ab72', 'en', 1, 'https://ror.org/053g7ab72 Grammar School Gymnázium v Snine'),
(73816, 'https://ror.org/0519hbh33', 'no_lang_code', 1, 'https://ror.org/0519hbh33 Drevar (Slovakia)'),
(73817, 'https://ror.org/03n6j5f16', 'en', 1, 'https://ror.org/03n6j5f16 The Institute of Military History Vojenský historický ústav'),
(73818, 'https://ror.org/03tgx7h38', 'no_lang_code', 1, 'https://ror.org/03tgx7h38 EkoWatt (Slovakia)'),
(73819, 'https://ror.org/013607p24', 'sk', 1, 'https://ror.org/013607p24 Prevencia'),
(73820, 'https://ror.org/053j5m838', 'no_lang_code', 1, 'https://ror.org/053j5m838 Bitunova (Slovakia)'),
(73821, 'https://ror.org/054dwj411', 'no_lang_code', 1, 'https://ror.org/054dwj411 Geodis (Slovakia)'),
(73822, 'https://ror.org/00v7th354', 'en', 1, 'https://ror.org/00v7th354 The Mark Foundation for Cancer Research'),
(73823, 'https://ror.org/00gz53f50', 'en', 1, 'https://ror.org/00gz53f50 Centre for Public Policy Research'),
(73824, 'https://ror.org/01npr5x48', 'no_lang_code', 1, 'https://ror.org/01npr5x48 GNA Research (Israel)'),
(73825, 'https://ror.org/05dxjde67', 'en', 1, 'https://ror.org/05dxjde67 Memorial Medical Center Foundation'),
(73826, 'https://ror.org/04jvwj909', 'en', 1, 'https://ror.org/04jvwj909 Center for Jewish–Christian Understanding and Cooperation Center for Judeo-Christian Understanding and Cooperation'),
(73827, 'https://ror.org/04v85xx73', 'en', 1, 'https://ror.org/04v85xx73 Lester Smith Medical Research Institute'),
(73828, 'https://ror.org/04kz65y09', 'en', 1, 'https://ror.org/04kz65y09 Japan Society of English for Research 研究者のための英語'),
(73829, 'https://ror.org/01vrvqh04', 'en', 1, 'https://ror.org/01vrvqh04 Association for Scottish Literary Studies'),
(73830, 'https://ror.org/04yr2xe56', 'en', 1, 'https://ror.org/04yr2xe56 The British Blockchain Association'),
(73831, 'https://ror.org/03aw29357', 'no_lang_code', 1, 'https://ror.org/03aw29357 Applied Spectral Imaging (United States)'),
(73832, 'https://ror.org/01tas7m50', 'en', 1, 'https://ror.org/01tas7m50 Africa Youth Growth Foundation'),
(73833, 'https://ror.org/00kbw8090', 'no_lang_code', 1, 'https://ror.org/00kbw8090 Hameln (Slovakia)'),
(73834, 'https://ror.org/03ybvq281', 'sk', 1, 'https://ror.org/03ybvq281 Strednej Odbornej škole Lesníckej Banská Štiavnica'),
(73835, 'https://ror.org/015m1g269', 'no_lang_code', 1, 'https://ror.org/015m1g269 Auchem (Slovakia)'),
(73836, 'https://ror.org/04z999347', 'sk', 1, 'https://ror.org/04z999347 Centrum Pedagogicko Psychologického Poradenstva a Prevencie'),
(73837, 'https://ror.org/039k6fv39', 'no_lang_code', 1, 'https://ror.org/039k6fv39 Vetservis (Slovakia)'),
(73838, 'https://ror.org/05d3b2x32', 'no_lang_code', 1, 'https://ror.org/05d3b2x32 Gemerská Nerudná Spoločnosť (Slovakia)'),
(73839, 'https://ror.org/01ghzbt10', 'sk', 1, 'https://ror.org/01ghzbt10 Nemocnica Svätého Michala'),
(73840, 'https://ror.org/00xcr3m62', 'sk', 1, 'https://ror.org/00xcr3m62 Štátny Veterinárny a Potravinový Ústav'),
(73841, 'https://ror.org/00e3qze54', 'no_lang_code', 1, 'https://ror.org/00e3qze54 Automatizácia železničnej Dopravy (Slovakia)'),
(73842, 'https://ror.org/055a8sc47', 'no_lang_code', 1, 'https://ror.org/055a8sc47 Spa-ce.net'),
(73843, 'https://ror.org/032ddhe09', 'sk', 1, 'https://ror.org/032ddhe09 Stredná Odborná Skola Lesnícka Tvrdošín'),
(73844, 'https://ror.org/00pyf2p89', 'no_lang_code', 1, 'https://ror.org/00pyf2p89 TMG (Slovakia)'),
(73845, 'https://ror.org/002n9qz56', 'en', 1, 'https://ror.org/002n9qz56 European School of Materials'),
(73846, 'https://ror.org/02xg9a459', 'en', 1, 'https://ror.org/02xg9a459 Duchenne UK'),
(73847, 'https://ror.org/02vbwsy79', 'en', 1, 'https://ror.org/02vbwsy79 Australian Securities and Investments Commission'),
(73848, 'https://ror.org/03cfhyx33', 'en', 1, 'https://ror.org/03cfhyx33 Australian Taxation Office'),
(73849, 'https://ror.org/036jqev97', 'en', 1, 'https://ror.org/036jqev97 NDIS Quality and Safeguards Commission'),
(73850, 'https://ror.org/00zkrw974', 'en', 1, 'https://ror.org/00zkrw974 Canada''s Ecofiscal Commission'),
(73851, 'https://ror.org/040apba86', 'en', 1, 'https://ror.org/040apba86 Global Research and Advocacy Group'),
(73852, 'https://ror.org/00s5nzf91', 'en', 1, 'https://ror.org/00s5nzf91 Baoson Hospital Bệnh viện Đa khoa Bảo Sơn'),
(73853, 'https://ror.org/02q1v5813', 'en', 1, 'https://ror.org/02q1v5813 State Enterprise "L.I. Medved''s Research Center of Preventive Toxicology, Food and Chemical Safety" of the Ministry of Health of Ukraine Науковий центр превентивної токсикології, харчової та хімічної безпеки імені академіка Л.І. Медведя Міністерства охорони здоров''я України'),
(73854, 'https://ror.org/04q6f6q61', 'es', 1, 'https://ror.org/04q6f6q61 BiblioMadSalud'),
(73855, 'https://ror.org/016bjqk65', 'no_lang_code', 1, 'https://ror.org/016bjqk65 Abu Dhabi Health Services شركة أبوظبي للخدمات الصحية - صحة'),
(73856, 'https://ror.org/02gsa9r71', 'en', 1, 'https://ror.org/02gsa9r71 Shenyang Ninth People''s Hospital 沈阳市第九人民医院'),
(73857, 'https://ror.org/02n2g5x76', 'en', 1, 'https://ror.org/02n2g5x76 Meteorological Bureau of Shenzhen Municipality 深圳市气象局'),
(73858, 'https://ror.org/04ej3c950', 'en', 1, 'https://ror.org/04ej3c950 China Rural Technology Development Center 中国农村技术开发中心'),
(73859, 'https://ror.org/05shbkc58', 'pt', 1, 'https://ror.org/05shbkc58 Unifunec - Centro Universitário de Santa Fé do Sul'),
(73860, 'https://ror.org/02sgk6s93', 'en', 1, 'https://ror.org/02sgk6s93 Nagano University of Health and Medicine 長野保健医療大学'),
(73861, 'https://ror.org/020jfw620', 'en', 1, 'https://ror.org/020jfw620 Hartpury University'),
(73862, 'https://ror.org/01ywdxb33', 'en', 1, 'https://ror.org/01ywdxb33 Bank of Estonia Eesti Pank'),
(73863, 'https://ror.org/04zmdqe71', 'en', 1, 'https://ror.org/04zmdqe71 Bank of Japan 日本銀行'),
(73864, 'https://ror.org/000cf1839', 'en', 1, 'https://ror.org/000cf1839 Bank of Latvia Latvijas Banka'),
(73865, 'https://ror.org/0008m0297', 'en', 1, 'https://ror.org/0008m0297 Bank of Lithuania Lietuvos Bankas'),
(73866, 'https://ror.org/044nbg291', 'en', 1, 'https://ror.org/044nbg291 Banca Națională a României National Bank of Romania'),
(73867, 'https://ror.org/048qms624', 'en', 1, 'https://ror.org/048qms624 Bank of Slovenia Banka Slovenije'),
(73868, 'https://ror.org/042wav684', 'en', 1, 'https://ror.org/042wav684 Bulgarian National Bank Българска народна банка'),
(73869, 'https://ror.org/00hn65a26', 'en', 1, 'https://ror.org/00hn65a26 Banco Central de la República Argentina Central Bank of Argentina'),
(73870, 'https://ror.org/02mr3av04', 'en', 1, 'https://ror.org/02mr3av04 Central Bank of Cyprus Kıbrıs Merkez Bankası Kεντρική Τράπεζα της Κύπρου'),
(73871, 'https://ror.org/00j0ctk30', 'en', 1, 'https://ror.org/00j0ctk30 Banc Ceannais na hÉireann Central Bank of Ireland'),
(73872, 'https://ror.org/055e8bt13', 'en', 1, 'https://ror.org/055e8bt13 Banque centrale du Luxembourg Central Bank of Luxembourg'),
(73873, 'https://ror.org/03qtzdh23', 'en', 1, 'https://ror.org/03qtzdh23 Bank Ċentrali ta’ Malta Central Bank of Malta'),
(73874, 'https://ror.org/01hh2jh68', 'da', 1, 'https://ror.org/01hh2jh68 Danmarks Nationalbank'),
(73875, 'https://ror.org/05fk5tr28', 'en', 1, 'https://ror.org/05fk5tr28 Federal Reserve'),
(73876, 'https://ror.org/05qg1tz58', 'en', 1, 'https://ror.org/05qg1tz58 Federal Reserve Bank of Atlanta'),
(73877, 'https://ror.org/01djrhs97', 'en', 1, 'https://ror.org/01djrhs97 Federal Reserve Bank of Boston'),
(73878, 'https://ror.org/05ks2fq79', 'en', 1, 'https://ror.org/05ks2fq79 Federal Reserve Bank of Dallas'),
(73879, 'https://ror.org/0380n5h16', 'en', 1, 'https://ror.org/0380n5h16 Federal Reserve Bank of Minneapolis'),
(73880, 'https://ror.org/02gsb6172', 'en', 1, 'https://ror.org/02gsb6172 Federal Reserve Bank of Philadelphia'),
(73881, 'https://ror.org/058pmah25', 'en', 1, 'https://ror.org/058pmah25 Federal Reserve Bank of Richmond'),
(73882, 'https://ror.org/05p5xsx92', 'en', 1, 'https://ror.org/05p5xsx92 Federal Reserve Bank of San Francisco'),
(73883, 'https://ror.org/00t7bjm27', 'en', 1, 'https://ror.org/00t7bjm27 National Bank of Slovakia Národná banka Slovenska'),
(73884, 'https://ror.org/01rdcx205', 'en', 1, 'https://ror.org/01rdcx205 New Development Bank'),
(73885, 'https://ror.org/02a0n8d86', 'en', 1, 'https://ror.org/02a0n8d86 Saudi Arabian Monetary Authority مؤسسة النقد العربي السعودي'),
(73886, 'https://ror.org/00cgds605', 'en', 1, 'https://ror.org/00cgds605 Forum Ekonomi Islam Dunia World Islamic Economic Forum Foundation'),
(73887, 'https://ror.org/00ynzwx73', 'en', 1, 'https://ror.org/00ynzwx73 Afghan Paramount Welfare and Development Organization'),
(73888, 'https://ror.org/05hjgq553', 'en', 1, 'https://ror.org/05hjgq553 Children’s Future International'),
(73889, 'https://ror.org/03747hz63', 'en', 1, 'https://ror.org/03747hz63 The Task Force for Global Health'),
(73890, 'https://ror.org/05pqvqq46', 'en', 1, 'https://ror.org/05pqvqq46 Centre for Health and Social Justice'),
(73891, 'https://ror.org/04cwb1p56', 'de', 1, 'https://ror.org/04cwb1p56 Staats- und Universitätsbibliothek Bremen'),
(73892, 'https://ror.org/016r7x187', 'no_lang_code', 1, 'https://ror.org/016r7x187 WiTricity (United States)'),
(73893, 'https://ror.org/02ttmc049', 'no_lang_code', 1, 'https://ror.org/02ttmc049 Accurate Solar Power (United States)'),
(73894, 'https://ror.org/006f3dv52', 'es', 1, 'https://ror.org/006f3dv52 Observatorio de Mortalidad Materna en México'),
(73895, 'https://ror.org/02zm0dd24', 'es', 1, 'https://ror.org/02zm0dd24 Asociación Mexicana de Psicología y Desarrollo Comunitario Mexican Association of Psychology and Community Development'),
(73896, 'https://ror.org/04b93g231', 'en', 1, 'https://ror.org/04b93g231 Museum of Islamic Art متحف الفن الإسلامي'),
(73897, 'https://ror.org/0146m4n64', 'no_lang_code', 1, 'https://ror.org/0146m4n64 Qatar Central Bank مصرف قطر المركزي'),
(73898, 'https://ror.org/02vtew340', 'no_lang_code', 1, 'https://ror.org/02vtew340 NextTechnologies (Hungary)'),
(73899, 'https://ror.org/02d983k79', 'en', 1, 'https://ror.org/02d983k79 Equine Veterinary Medical Center مركز الخيول الطبي البيطري'),
(73900, 'https://ror.org/02qn3rx87', 'en', 1, 'https://ror.org/02qn3rx87 Doha Centre for Media Freedom مركز الدوحة لحرية الإعلام'),
(73901, 'https://ror.org/030x88e61', 'no_lang_code', 1, 'https://ror.org/030x88e61 Micron Semiconductor (United Kingdom)'),
(73902, 'https://ror.org/00bwvyk18', 'no_lang_code', 1, 'https://ror.org/00bwvyk18 Qatar Credit Bureau مركز قطر للمعلومات الائتمانية'),
(73903, 'https://ror.org/003na7826', 'no_lang_code', 1, 'https://ror.org/003na7826 Takeda (Ireland)'),
(73904, 'https://ror.org/04jfar564', 'no_lang_code', 1, 'https://ror.org/04jfar564 Takeda (Australia)'),
(73905, 'https://ror.org/04pfpqx12', 'no_lang_code', 1, 'https://ror.org/04pfpqx12 Takeda (Sweden)'),
(73906, 'https://ror.org/056d2rn68', 'no_lang_code', 1, 'https://ror.org/056d2rn68 Takeda (Canada)'),
(73907, 'https://ror.org/03y3jby41', 'fr', 1, 'https://ror.org/03y3jby41 Centre National de Recherche et de Formation sur le Paludisme'),
(73908, 'https://ror.org/003mewa18', 'no_lang_code', 1, 'https://ror.org/003mewa18 Linde (Italy)'),
(73909, 'https://ror.org/04b9q9g40', 'en', 1, 'https://ror.org/04b9q9g40 African Rural University'),
(73910, 'https://ror.org/027przv47', 'en', 1, 'https://ror.org/027przv47 Flemish Parliament Flämisches Parlament Parlement Flamand Vlaams Parlement'),
(73911, 'https://ror.org/04nm3yk20', 'no_lang_code', 1, 'https://ror.org/04nm3yk20 Takeda (Austria)'),
(73912, 'https://ror.org/058yz2m16', 'en', 1, 'https://ror.org/058yz2m16 Wisconsin Project on Nuclear Arms Control'),
(73913, 'https://ror.org/046y50921', 'no_lang_code', 1, 'https://ror.org/046y50921 AB Vista (United Kingdom)'),
(73914, 'https://ror.org/00jbakb92', 'no_lang_code', 1, 'https://ror.org/00jbakb92 Branston (United Kingdom)'),
(73915, 'https://ror.org/01565d802', 'no_lang_code', 1, 'https://ror.org/01565d802 Locate Bio (United Kingdom)'),
(73916, 'https://ror.org/05kh76837', 'no_lang_code', 1, 'https://ror.org/05kh76837 Northern Gas Networks (United Kingdom)'),
(73917, 'https://ror.org/01sw7vm96', 'no_lang_code', 1, 'https://ror.org/01sw7vm96 We Predict (United Kingdom)'),
(73918, 'https://ror.org/058myeh47', 'no_lang_code', 1, 'https://ror.org/058myeh47 Semefab (United Kingdom)'),
(73919, 'https://ror.org/0574mcz98', 'en', 1, 'https://ror.org/0574mcz98 National Food Safety and Quality Service Servicio Nacional de Sanidad y Calidad Agroalimentaria'),
(73920, 'https://ror.org/04t10yj72', 'no_lang_code', 1, 'https://ror.org/04t10yj72 Reihoo (France)'),
(73921, 'https://ror.org/01ymz3j33', 'en', 1, 'https://ror.org/01ymz3j33 Tertiary Research and Education Network of South Africa'),
(73922, 'https://ror.org/04gp2qg91', 'en', 1, 'https://ror.org/04gp2qg91 Open Book Publishers'),
(73923, 'https://ror.org/04xw4m193', 'en', 1, 'https://ror.org/04xw4m193 Environmental Information Data Centre'),
(73924, 'https://ror.org/01at8a333', 'no_lang_code', 1, 'https://ror.org/01at8a333 Allogene Therapeutics (United States)'),
(73925, 'https://ror.org/00e98bw30', 'en', 1, 'https://ror.org/00e98bw30 Coalition of Open Access Policy Institutions'),
(73926, 'https://ror.org/01v5bs750', 'en', 1, 'https://ror.org/01v5bs750 Rayos Contra Cancer'),
(73927, 'https://ror.org/014em8n15', 'no_lang_code', 1, 'https://ror.org/014em8n15 Rubius Therapeutics (United States)'),
(73928, 'https://ror.org/0151gh112', 'en', 1, 'https://ror.org/0151gh112 Islamic Azad University Rasht Branch دانشگاه آزاد اسلامي واحد رشت'),
(73929, 'https://ror.org/05ahnsa78', 'en', 1, 'https://ror.org/05ahnsa78 Institute of Political Science Instytut Nauki o Polityce'),
(73930, 'https://ror.org/00x67g916', 'en', 1, 'https://ror.org/00x67g916 Allensbach Hochschule Allensbach University'),
(73931, 'https://ror.org/056eeyx03', 'en', 1, 'https://ror.org/056eeyx03 Baden State Museum Badische Landesmuseum'),
(73932, 'https://ror.org/027wbjg72', 'en', 1, 'https://ror.org/027wbjg72 Johann Adam Möhler Institute for Ecumenism Johann-Adam-Möhler-Institut für Ökumenik'),
(73933, 'https://ror.org/01cmhh462', 'en', 1, 'https://ror.org/01cmhh462 Bavarian Broadcasting Bayerischer Rundfunk'),
(73934, 'https://ror.org/044jqqw48', 'de', 1, 'https://ror.org/044jqqw48 Staatliche Kunsthalle Karlsruhe'),
(73935, 'https://ror.org/03rvjsb61', 'de', 1, 'https://ror.org/03rvjsb61 Landtag Nordrhein-Westfalen Landtag of North Rhine-Westphalia'),
(73936, 'https://ror.org/00v1nkq94', 'de', 1, 'https://ror.org/00v1nkq94 Landesamt für Kultur und Denkmalpflege Mecklenburg-Vorpommern'),
(73937, 'https://ror.org/03t7jd518', 'de', 1, 'https://ror.org/03t7jd518 Duale Hochschule Gera-Eisenach'),
(73938, 'https://ror.org/05s31q962', 'no_lang_code', 1, 'https://ror.org/05s31q962 West German Broadcasting Cologne Westdeutscher Rundfunk'),
(73939, 'https://ror.org/02ktnrv41', 'de', 1, 'https://ror.org/02ktnrv41 Bundeskunsthalle'),
(73940, 'https://ror.org/026stee22', 'en', 1, 'https://ror.org/026stee22 Max Planck Institute of Animal Behavior Max-Planck-Institut für Verhaltensbiologie'),
(73941, 'https://ror.org/05k0x2619', 'en', 1, 'https://ror.org/05k0x2619 Max Planck-Bristol Centre for Minimal Biology'),
(73942, 'https://ror.org/02n9d1732', 'en', 1, 'https://ror.org/02n9d1732 Max Planck University of Twente Center for Complex Fluid Dynamics'),
(73943, 'https://ror.org/043q87b85', 'de', 1, 'https://ror.org/043q87b85 Wissenschaftliche Stadtbibliothek Mainz'),
(73944, 'https://ror.org/05s928n76', 'de', 1, 'https://ror.org/05s928n76 Bach Archiv Leipzig'),
(73945, 'https://ror.org/03ps48j85', 'de', 1, 'https://ror.org/03ps48j85 Hochschule für Musik Karlsruhe University of Music Karlsruhe'),
(73946, 'https://ror.org/03e28fz53', 'en', 1, 'https://ror.org/03e28fz53 Christus Stehlin Foundation for Cancer Research'),
(73947, 'https://ror.org/0482p8a89', 'en', 1, 'https://ror.org/0482p8a89 United Nations Economic and Social Commission for Asia and the Pacific'),
(73948, 'https://ror.org/02g0f3984', 'en', 1, 'https://ror.org/02g0f3984 Mercy Health Foundation'),
(73949, 'https://ror.org/01knk7v72', 'en', 1, 'https://ror.org/01knk7v72 Tameside and Glossop Integrated Care NHS Foundation Trust'),
(73950, 'https://ror.org/02vg92y09', 'en', 1, 'https://ror.org/02vg92y09 Whittington Health NHS Trust'),
(73951, 'https://ror.org/04s7e3d74', 'en', 1, 'https://ror.org/04s7e3d74 James Paget University Hospitals NHS Foundation Trust'),
(73952, 'https://ror.org/003hq9m95', 'en', 1, 'https://ror.org/003hq9m95 North Cumbria Integrated Care NHS Foundation Trust'),
(73953, 'https://ror.org/02srtzw86', 'fr', 1, 'https://ror.org/02srtzw86 Centre Hospitalier Intercommunal Castres-Mazamet'),
(73954, 'https://ror.org/02msnw927', 'id', 1, 'https://ror.org/02msnw927 Universitas Ibrahimy'),
(73955, 'https://ror.org/023y2na82', 'en', 1, 'https://ror.org/023y2na82 Human Fertilisation and Embryology Authority'),
(73956, 'https://ror.org/022cmsc90', 'en', 1, 'https://ror.org/022cmsc90 The CART Fund'),
(73957, 'https://ror.org/04rrnb020', 'en', 1, 'https://ror.org/04rrnb020 Al-Razi University جامعة الرازي'),
(73958, 'https://ror.org/04c7hmv88', 'de', 1, 'https://ror.org/04c7hmv88 Franziskus-Krankenhaus Berlin'),
(73959, 'https://ror.org/03p8xz723', 'de', 1, 'https://ror.org/03p8xz723 Lausitzer Seenland Klinikum'),
(73960, 'https://ror.org/00aejfc65', 'es', 1, 'https://ror.org/00aejfc65 Consejo Nacional de Ciencia y Tecnología'),
(73961, 'https://ror.org/01jfre984', 'no_lang_code', 1, 'https://ror.org/01jfre984 Aptiv (Ireland)'),
(73962, 'https://ror.org/017rhna63', 'no_lang_code', 1, 'https://ror.org/017rhna63 CNH Industrial (Netherlands)'),
(73963, 'https://ror.org/00xn0yt80', 'en', 1, 'https://ror.org/00xn0yt80 Chartered Institute of Personnel and Development'),
(73964, 'https://ror.org/01613vh25', 'en', 1, 'https://ror.org/01613vh25 Chief Scientist Office'),
(73965, 'https://ror.org/015s5md50', 'en', 1, 'https://ror.org/015s5md50 James Family Prescott YMCA'),
(73966, 'https://ror.org/02vz2wq60', 'en', 1, 'https://ror.org/02vz2wq60 Global Alliance to Prevent Prematurity and Stillbirth'),
(73967, 'https://ror.org/00zmwwm29', 'en', 1, 'https://ror.org/00zmwwm29 Northern Ireland Ambulance Service Health and Social Care Trust'),
(73968, 'https://ror.org/01w90cz05', 'fr', 1, 'https://ror.org/01w90cz05 Centre National des Soins Palliatifs et de la Fin de Vie'),
(73969, 'https://ror.org/019jqyn65', 'no_lang_code', 1, 'https://ror.org/019jqyn65 Vattenfall (United Kingdom)'),
(73970, 'https://ror.org/00me6gs45', 'no_lang_code', 1, 'https://ror.org/00me6gs45 LafargeHolcim (Switzerland)'),
(73971, 'https://ror.org/049bwzr51', 'en', 1, 'https://ror.org/049bwzr51 FHS St. Gallen Hochschule für Angewandte Wissenschaften University of Applied Sciences St. Gallen'),
(73972, 'https://ror.org/02g821610', 'en', 1, 'https://ror.org/02g821610 Hochschule für Technik Rapperswil University of Applied Sciences Rapperswil'),
(73973, 'https://ror.org/03mg0ce08', 'en', 1, 'https://ror.org/03mg0ce08 Interstaatliche Hochschule für Technik NTB Buchs Interstate University of Applied Sciences of Technology Buchs'),
(73974, 'https://ror.org/0583afz97', 'fr', 1, 'https://ror.org/0583afz97 Ecole Supérieure d''Ambulancier et Soins d''Urgence Romande'),
(73975, 'https://ror.org/03wrbfs36', 'no_lang_code', 1, 'https://ror.org/03wrbfs36 LafargeHolcim (Canada)'),
(73976, 'https://ror.org/00cenf840', 'en', 1, 'https://ror.org/00cenf840 Providence Health & Services Alaska'),
(73977, 'https://ror.org/04wcx2r57', 'en', 1, 'https://ror.org/04wcx2r57 TrinityCare Hospice'),
(73978, 'https://ror.org/059aer881', 'en', 1, 'https://ror.org/059aer881 Eye Hospital in Bangalore'),
(73979, 'https://ror.org/010584e10', 'no_lang_code', 1, 'https://ror.org/010584e10 Exactech (United States)'),
(73980, 'https://ror.org/0129qsy61', 'no_lang_code', 1, 'https://ror.org/0129qsy61 CGI (Canada)'),
(73981, 'https://ror.org/009xejr53', 'de', 1, 'https://ror.org/009xejr53 Schön Klinik München Harlaching'),
(73982, 'https://ror.org/05rwdv390', 'de', 1, 'https://ror.org/05rwdv390 München Klinik Neuperlach'),
(73983, 'https://ror.org/03a7e0x93', 'de', 1, 'https://ror.org/03a7e0x93 München Klinik Harlaching'),
(73984, 'https://ror.org/00xgdcy02', 'de', 1, 'https://ror.org/00xgdcy02 Hermann-Josef-Krankenhaus Erkelenz'),
(73985, 'https://ror.org/00p64v472', 'no_lang_code', 1, 'https://ror.org/00p64v472 Aker (Norway)'),
(73986, 'https://ror.org/001zmxb62', 'en', 1, 'https://ror.org/001zmxb62 Greenland Ecosystem Monitoring'),
(73987, 'https://ror.org/019g08z42', 'en', 1, 'https://ror.org/019g08z42 East Suffolk and North Essex NHS Foundation Trust'),
(73988, 'https://ror.org/027etx825', 'no_lang_code', 1, 'https://ror.org/027etx825 Imerys (France)'),
(73989, 'https://ror.org/03jq3zh43', 'en', 1, 'https://ror.org/03jq3zh43 Institute for Children, Poverty & Homelessness'),
(73990, 'https://ror.org/01teevb58', 'no_lang_code', 1, 'https://ror.org/01teevb58 John Wood Group (United Kingdom)'),
(73991, 'https://ror.org/052c5hg93', 'no_lang_code', 1, 'https://ror.org/052c5hg93 GTT Communications (United States)'),
(73992, 'https://ror.org/00w6car46', 'no_lang_code', 1, 'https://ror.org/00w6car46 Liebherr (Switzerland)'),
(73993, 'https://ror.org/005ahed97', 'no_lang_code', 1, 'https://ror.org/005ahed97 Apollo Global Management (United States)'),
(73994, 'https://ror.org/05h4tg110', 'en', 1, 'https://ror.org/05h4tg110 Providence St. Mary Medical Center'),
(73995, 'https://ror.org/02gz79h29', 'en', 1, 'https://ror.org/02gz79h29 Shropshire Community Health NHS Trust'),
(73996, 'https://ror.org/03rs32p96', 'en', 1, 'https://ror.org/03rs32p96 Ballad Health'),
(73997, 'https://ror.org/039mxz635', 'en', 1, 'https://ror.org/039mxz635 The Australian Prevention Partnership Centre'),
(73998, 'https://ror.org/04rwdqv08', 'en', 1, 'https://ror.org/04rwdqv08 Jewish Community Center of Greater Buffalo'),
(73999, 'https://ror.org/014dgqr33', 'it', 1, 'https://ror.org/014dgqr33 Ordine Ospedaliero di San Giovanni di Dio Fatebenefratelli'),
(74000, 'https://ror.org/019z2v446', 'en', 1, 'https://ror.org/019z2v446 Rongo University'),
(74001, 'https://ror.org/03hqjqp33', 'no_lang_code', 1, 'https://ror.org/03hqjqp33 Arcadis (Netherlands)'),
(74002, 'https://ror.org/01tpbbf75', 'no_lang_code', 1, 'https://ror.org/01tpbbf75 Excelitas Technologies (United States)'),
(74003, 'https://ror.org/05sb89p83', 'en', 1, 'https://ror.org/05sb89p83 Greater Manchester Mental Health NHS Foundation Trust'),
(74004, 'https://ror.org/013e6jc10', 'no_lang_code', 1, 'https://ror.org/013e6jc10 Elixiron Immunotherapeutics (Taiwan) 安立玺荣生物医药科技有限公司'),
(74005, 'https://ror.org/00ttsnw25', 'en', 1, 'https://ror.org/00ttsnw25 College of Contract Management'),
(74006, 'https://ror.org/042qbe045', 'es', 1, 'https://ror.org/042qbe045 Centro de Investigación en Salud Dr. Hugo Mendoza'),
(74007, 'https://ror.org/04bdtk119', 'en', 1, 'https://ror.org/04bdtk119 Musée National des Beaux-Arts du Québec National Museum of Fine Arts of Quebec'),
(74008, 'https://ror.org/05b0xak35', 'no_lang_code', 1, 'https://ror.org/05b0xak35 NeuroEM Therapeutics (United States)'),
(74009, 'https://ror.org/05p9k0244', 'en', 1, 'https://ror.org/05p9k0244 Instytut Północny im. W. Kętrzyńskiego The Wojciech Kętrzyński Northern Institute'),
(74010, 'https://ror.org/02bjkqr85', 'en', 1, 'https://ror.org/02bjkqr85 Office of Science and Technology Policy'),
(74011, 'https://ror.org/047berg44', 'en', 1, 'https://ror.org/047berg44 Telerehabilitation International'),
(74012, 'https://ror.org/019p75874', 'fr', 1, 'https://ror.org/019p75874 Château de Montsoreau Museum of Contemporary Art'),
(74013, 'https://ror.org/04m93x955', 'en', 1, 'https://ror.org/04m93x955 New York State Nurses Association'),
(74014, 'https://ror.org/00a0w0523', 'en', 1, 'https://ror.org/00a0w0523 Centre for East European and International Studies Zentrum für Osteuropa- und internationale Studien'),
(74015, 'https://ror.org/00ccqnx36', 'en', 1, 'https://ror.org/00ccqnx36 Institute of Food Resources of National Academy of Agrarian Sciences of Ukraine Інститут харчових ресурсів Національної академії аграрних наук України'),
(74016, 'https://ror.org/036p5fk53', 'es', 1, 'https://ror.org/036p5fk53 Colegio Colombiano de Terapia Ocupacional'),
(74017, 'https://ror.org/057k96546', 'en', 1, 'https://ror.org/057k96546 Extreme Wellness Institute'),
(74018, 'https://ror.org/04v8m3j75', 'en', 1, 'https://ror.org/04v8m3j75 Oyster Hospital'),
(74019, 'https://ror.org/016bnqk64', 'en', 1, 'https://ror.org/016bnqk64 Humber Teaching NHS Foundation Trust'),
(74020, 'https://ror.org/030p2pd90', 'en', 1, 'https://ror.org/030p2pd90 Scientific Research Institute of Healthcare Organization and Medical Management Научно-исследовательский институт организации здравоохранения и медицинского менеджмента'),
(74021, 'https://ror.org/01n857y41', 'en', 1, 'https://ror.org/01n857y41 Scientific Society of Otolaryngology and Head and Neck Surgery Sociedad Otorrinolaringológica de Castilla y León, Cantabria y La Rioja'),
(74022, 'https://ror.org/03098r397', 'en', 1, 'https://ror.org/03098r397 Adaptive Physical Education'),
(74023, 'https://ror.org/01srayt58', 'en', 1, 'https://ror.org/01srayt58 ICLEI - Local Governments for Sustainability USA'),
(74024, 'https://ror.org/04w441351', 'en', 1, 'https://ror.org/04w441351 Levy Economics Institute of Bard College'),
(74025, 'https://ror.org/00rytkh49', 'en', 1, 'https://ror.org/00rytkh49 Shanghai Institute of Nutrition and Health 中国科学院 上海营养与健康研究院'),
(74026, 'https://ror.org/05j5k1t23', 'en', 1, 'https://ror.org/05j5k1t23 Coleridge Initiative'),
(74027, 'https://ror.org/031sr2181', 'en', 1, 'https://ror.org/031sr2181 South African Sugarcane Research Institute'),
(74028, 'https://ror.org/04vcs0j60', 'en', 1, 'https://ror.org/04vcs0j60 Islamic Azad University, Ahvaz Branch دانشگاه آزاد اسلامی واحد اهواز'),
(74029, 'https://ror.org/05ympq522', 'fr', 1, 'https://ror.org/05ympq522 Ministère de l''Agriculture et de l''Èquipement Rural Senegal Ministry of Agriculture'),
(74030, 'https://ror.org/05rnb7025', 'en', 1, 'https://ror.org/05rnb7025 North Carolina Natural Heritage Program'),
(74031, 'https://ror.org/02a46t946', 'en', 1, 'https://ror.org/02a46t946 The Academic Association for Contemporary European Studies'),
(74032, 'https://ror.org/00ev5ap50', 'en', 1, 'https://ror.org/00ev5ap50 ZRT Laboratory'),
(74033, 'https://ror.org/00aahzn97', 'en', 1, 'https://ror.org/00aahzn97 Bureau de la Coordination des Affaires Humanitaires United Nations Office for the Coordination of Humanitarian Affairs'),
(74034, 'https://ror.org/04md6sf54', 'lt', 1, 'https://ror.org/04md6sf54 State Forest Enterprise Valstybinių Miškų Urėdija'),
(74035, 'https://ror.org/02538qk16', 'no_lang_code', 1, 'https://ror.org/02538qk16 Wisdom Health (United States)'),
(74036, 'https://ror.org/05a7f9k79', 'en', 1, 'https://ror.org/05a7f9k79 Woldia University ወልድያ ዩኒቨርሲቲ'),
(74037, 'https://ror.org/00b691416', 'en', 1, 'https://ror.org/00b691416 Marine Megafauna Foundation'),
(74038, 'https://ror.org/05v5qdf34', 'fr', 1, 'https://ror.org/05v5qdf34 Groupe de Recherche en Écologie Arctique'),
(74039, 'https://ror.org/00gvay066', 'pt', 1, 'https://ror.org/00gvay066 Instituto Gremar'),
(74040, 'https://ror.org/04srm5m98', 'en', 1, 'https://ror.org/04srm5m98 Global Flyway Network'),
(74041, 'https://ror.org/010whbs59', 'no_lang_code', 1, 'https://ror.org/010whbs59 Miyanomori Memorial Hospital 医療法人 讃生会 宮の森記念病院'),
(74042, 'https://ror.org/05642yh85', 'pt', 1, 'https://ror.org/05642yh85 Cananéia Research Institute Instituto de Pesquisas Cananéia'),
(74043, 'https://ror.org/0390fys98', 'en', 1, 'https://ror.org/0390fys98 Centre for African Wetlands'),
(74044, 'https://ror.org/03sxp4873', 'en', 1, 'https://ror.org/03sxp4873 Florida Institute for Conservation Science'),
(74045, 'https://ror.org/04nzya351', 'en', 1, 'https://ror.org/04nzya351 R3 Animal'),
(74046, 'https://ror.org/00b4tzx19', 'fr', 1, 'https://ror.org/00b4tzx19 Réseau National de Surveillance Aérobiologique'),
(74047, 'https://ror.org/01d46py16', 'es', 1, 'https://ror.org/01d46py16 Centro Jambatu de Investigación y Conservación de Anfibios'),
(74048, 'https://ror.org/00x93xn27', 'en', 1, 'https://ror.org/00x93xn27 Falklands Conservation'),
(74049, 'https://ror.org/017f6te91', 'pt', 1, 'https://ror.org/017f6te91 Instituto Biopesca'),
(74050, 'https://ror.org/04zrvd864', 'en', 1, 'https://ror.org/04zrvd864 Silvestrum Climate Associates'),
(74051, 'https://ror.org/027jdb025', 'pt', 1, 'https://ror.org/027jdb025 Instituto Argonauta'),
(74052, 'https://ror.org/04jwyfm91', 'en', 1, 'https://ror.org/04jwyfm91 State Library of North Carolina'),
(74053, 'https://ror.org/037rvgb96', 'es', 1, 'https://ror.org/037rvgb96 Ecuatesis'),
(74054, 'https://ror.org/03zna7437', 'en', 1, 'https://ror.org/03zna7437 American College of Veterinary Radiology'),
(74055, 'https://ror.org/0300c1598', 'en', 1, 'https://ror.org/0300c1598 Gurukul School of Design'),
(74056, 'https://ror.org/04jkjhn93', 'en', 1, 'https://ror.org/04jkjhn93 Fraunhofer USA Center for Laser Applications'),
(74057, 'https://ror.org/04hphve78', 'en', 1, 'https://ror.org/04hphve78 Fraunhofer Centre for Applied Photonics'),
(74058, 'https://ror.org/03c3jbs89', 'en', 1, 'https://ror.org/03c3jbs89 Fraunhofer USA Center for Sustainable Energy Systems');
INSERT INTO `rors` VALUES
(74059, 'https://ror.org/054r9x893', 'en', 1, 'https://ror.org/054r9x893 Kazakh University of Technology and Business Қазақ технология және бизнес университеті'),
(74060, 'https://ror.org/0419fj215', 'en', 1, 'https://ror.org/0419fj215 Aerospace Information Research Institute 中国科学院空天信息创新研究院'),
(74061, 'https://ror.org/02e4p6m45', 'en', 1, 'https://ror.org/02e4p6m45 Forschungsgruppe Soziale Neurowissenschaft Social Neuroscience Lab'),
(74062, 'https://ror.org/05kg6bp11', 'en', 1, 'https://ror.org/05kg6bp11 Allen Institute for Cell Science'),
(74063, 'https://ror.org/04nq8gx07', 'en', 1, 'https://ror.org/04nq8gx07 Unilever Foods Innovation Centre'),
(74064, 'https://ror.org/03kfw6k71', 'no_lang_code', 1, 'https://ror.org/03kfw6k71 Antea Group (France)'),
(74065, 'https://ror.org/020a37n11', 'es', 1, 'https://ror.org/020a37n11 Fundación Salvadoreña para el Desarrollo Económico y Social'),
(74066, 'https://ror.org/01f35f850', 'en', 1, 'https://ror.org/01f35f850 The Browns'' School'),
(74067, 'https://ror.org/03k0qge96', 'en', 1, 'https://ror.org/03k0qge96 The Ream Foundation'),
(74068, 'https://ror.org/01qceeg73', 'en', 1, 'https://ror.org/01qceeg73 Protein Research Foundation'),
(74069, 'https://ror.org/021ap3951', 'en', 1, 'https://ror.org/021ap3951 Institute of Business Leadership'),
(74070, 'https://ror.org/05qhjh740', 'en', 1, 'https://ror.org/05qhjh740 Asociación Fundación de Investigación Microbiomas Microbiomas Foundation'),
(74071, 'https://ror.org/05t99je22', 'fr', 1, 'https://ror.org/05t99je22 Unitaid'),
(74072, 'https://ror.org/00vcb3m70', 'en', 1, 'https://ror.org/00vcb3m70 Biological and Chemical Oceanography Data Management Office'),
(74073, 'https://ror.org/04wmff902', 'no_lang_code', 1, 'https://ror.org/04wmff902 Marvell (United States)'),
(74074, 'https://ror.org/027axbt27', 'en', 1, 'https://ror.org/027axbt27 Canadian Quantum Research Center'),
(74075, 'https://ror.org/00t8pc875', 'en', 1, 'https://ror.org/00t8pc875 National Brain Centre Rumah Sakit Pusat Otak Nasional'),
(74076, 'https://ror.org/03d0gny34', 'en', 1, 'https://ror.org/03d0gny34 Institute of Agricultural Machinery 農業環境変動研究センター'),
(74077, 'https://ror.org/03w4gz080', 'en', 1, 'https://ror.org/03w4gz080 Advanced Analysis Center 高度解析センター'),
(74078, 'https://ror.org/01m69r865', 'en', 1, 'https://ror.org/01m69r865 Genetic Resources Center 遺伝資源センター'),
(74079, 'https://ror.org/00pnc3s81', 'en', 1, 'https://ror.org/00pnc3s81 Research Center for Agricultural Information Technology 農業情報研究センター'),
(74080, 'https://ror.org/04hmq8q19', 'en', 1, 'https://ror.org/04hmq8q19 Center for Seeds and Seedlings 種苗管理センター'),
(74081, 'https://ror.org/011kc9d11', 'en', 1, 'https://ror.org/011kc9d11 Agri-Food Business Innovation Center 食農ビジネス推進センター'),
(74082, 'https://ror.org/05q4jz828', 'en', 1, 'https://ror.org/05q4jz828 National Zoological Gardens of South Africa'),
(74083, 'https://ror.org/041j42q70', 'en', 1, 'https://ror.org/041j42q70 South African Environmental Observation Network'),
(74084, 'https://ror.org/02zehhs18', 'en', 1, 'https://ror.org/02zehhs18 South African Agency for Science and Technology Advancement'),
(74085, 'https://ror.org/0486vjb84', 'en', 1, 'https://ror.org/0486vjb84 Himalayan Institute of Alternatives, Ladakh'),
(74086, 'https://ror.org/0409c3r50', 'en', 1, 'https://ror.org/0409c3r50 Institute for Fundamental Physics of the Universe'),
(74087, 'https://ror.org/022zx1s80', 'en', 1, 'https://ror.org/022zx1s80 DuPage Health Coalition'),
(74088, 'https://ror.org/02mcgxe24', 'en', 1, 'https://ror.org/02mcgxe24 Toyama Prefectural Agricultural, Forestry & Fisheries Research Center 富山県農林水産総合技術センター'),
(74089, 'https://ror.org/015gwtc18', 'en', 1, 'https://ror.org/015gwtc18 Kochi Agricultural Technology Center 高知県農業技術センター'),
(74090, 'https://ror.org/013cg0x56', 'en', 1, 'https://ror.org/013cg0x56 Cleveland Metroparks'),
(74091, 'https://ror.org/04et42c10', 'en', 1, 'https://ror.org/04et42c10 Toronto Zoo'),
(74092, 'https://ror.org/00qapk656', 'en', 1, 'https://ror.org/00qapk656 Royal Alberta Museum'),
(74093, 'https://ror.org/00r4fsd57', 'en', 1, 'https://ror.org/00r4fsd57 North Canyon Medical Center'),
(74094, 'https://ror.org/04m0qbj67', 'en', 1, 'https://ror.org/04m0qbj67 Yukon Department of Environment'),
(74095, 'https://ror.org/029v85503', 'en', 1, 'https://ror.org/029v85503 Safer Medicines Trust'),
(74096, 'https://ror.org/02yrf1a56', 'en', 1, 'https://ror.org/02yrf1a56 Arctic Borderlands Ecological Knowledge Society'),
(74097, 'https://ror.org/02dr3v034', 'en', 1, 'https://ror.org/02dr3v034 Surgo Foundation'),
(74098, 'https://ror.org/0596exr16', 'en', 1, 'https://ror.org/0596exr16 Proyecto Mono Tocón Titi Monkey Project'),
(74099, 'https://ror.org/00f8ebm77', 'es', 1, 'https://ror.org/00f8ebm77 SELVA'),
(74100, 'https://ror.org/00byf8747', 'no_lang_code', 1, 'https://ror.org/00byf8747 Gorongosa National Park'),
(74101, 'https://ror.org/027z9pz32', 'en', 1, 'https://ror.org/027z9pz32 The SILVA Ribosomal RNA Database Project'),
(74102, 'https://ror.org/013ceqq33', 'no_lang_code', 1, 'https://ror.org/013ceqq33 D.I.I.V. (Croatia) Društvo za Istraživanje i Iskorištavanje Voda'),
(74103, 'https://ror.org/03m8v6t10', 'en', 1, 'https://ror.org/03m8v6t10 Open Data Infrastructure for Social Science and Economic Innovations'),
(74104, 'https://ror.org/025zpy585', 'no_lang_code', 1, 'https://ror.org/025zpy585 Chemnitzer Werkstoffmechanik GmbH (Germany)'),
(74105, 'https://ror.org/01fn4wm94', 'no_lang_code', 1, 'https://ror.org/01fn4wm94 Bagilstein (Germany)'),
(74106, 'https://ror.org/01jzg2v44', 'no_lang_code', 1, 'https://ror.org/01jzg2v44 MKS Instruments (Germany)'),
(74107, 'https://ror.org/04r78f145', 'en', 1, 'https://ror.org/04r78f145 Austrian Physical Society Österreichische Physikalische Gesellschaft'),
(74108, 'https://ror.org/0364hq403', 'no_lang_code', 1, 'https://ror.org/0364hq403 AXO Dresden (Germany)'),
(74109, 'https://ror.org/0406r4n88', 'no_lang_code', 1, 'https://ror.org/0406r4n88 AIM Infrarot-Module (Germany)'),
(74110, 'https://ror.org/03xfq0m13', 'no_lang_code', 1, 'https://ror.org/03xfq0m13 DATEV (Germany) Datenverarbeitung und Dienstleistung für den steuerberatenden Beruf'),
(74111, 'https://ror.org/038f3wn67', 'no_lang_code', 1, 'https://ror.org/038f3wn67 Freiberger Compound Materials (Germany)'),
(74112, 'https://ror.org/037wwt484', 'no_lang_code', 1, 'https://ror.org/037wwt484 CosmoCode (Germany)'),
(74113, 'https://ror.org/04jpd4145', 'no_lang_code', 1, 'https://ror.org/04jpd4145 FormFactor (Germany)'),
(74114, 'https://ror.org/00tvmqw18', 'no_lang_code', 1, 'https://ror.org/00tvmqw18 GenISys (Germany)'),
(74115, 'https://ror.org/04jy0t377', 'no_lang_code', 1, 'https://ror.org/04jy0t377 Grintech (Germany)'),
(74116, 'https://ror.org/0054nhx50', 'no_lang_code', 1, 'https://ror.org/0054nhx50 EdgeWave (Germany)'),
(74117, 'https://ror.org/02vj4kn98', 'no_lang_code', 1, 'https://ror.org/02vj4kn98 Holoeye Photonics (Germany)'),
(74118, 'https://ror.org/04x67xp14', 'no_lang_code', 1, 'https://ror.org/04x67xp14 Holota Optics (Germany)'),
(74119, 'https://ror.org/03kw8ep35', 'no_lang_code', 1, 'https://ror.org/03kw8ep35 Industrial & Marine Service (Germany)'),
(74120, 'https://ror.org/03vnqze34', 'no_lang_code', 1, 'https://ror.org/03vnqze34 Extend3D (Germany)'),
(74121, 'https://ror.org/01z7f8509', 'no_lang_code', 1, 'https://ror.org/01z7f8509 EQUIcon (Germany)'),
(74122, 'https://ror.org/05kmgyb17', 'no_lang_code', 1, 'https://ror.org/05kmgyb17 Active Fiber Systems (Germany)'),
(74123, 'https://ror.org/0393vzh87', 'en', 1, 'https://ror.org/0393vzh87 Hearing4all'),
(74124, 'https://ror.org/03gzhtt54', 'no_lang_code', 1, 'https://ror.org/03gzhtt54 Crystal Consulting (Germany)'),
(74125, 'https://ror.org/005md5539', 'no_lang_code', 1, 'https://ror.org/005md5539 Colour Control Farbmesstechnik (Germany)'),
(74126, 'https://ror.org/05f0snp31', 'no_lang_code', 1, 'https://ror.org/05f0snp31 Armscor (South Africa)'),
(74127, 'https://ror.org/00msx4d41', 'no_lang_code', 1, 'https://ror.org/00msx4d41 FLAVIA IT (Germany)'),
(74128, 'https://ror.org/00rtdby49', 'no_lang_code', 1, 'https://ror.org/00rtdby49 Ingeneric (Germany)'),
(74129, 'https://ror.org/0179g4w23', 'no_lang_code', 1, 'https://ror.org/0179g4w23 Insiders Technologies (Germany)'),
(74130, 'https://ror.org/01aseef42', 'no_lang_code', 1, 'https://ror.org/01aseef42 Knowledge Raven Management (Germany)'),
(74131, 'https://ror.org/05n0xah55', 'de', 1, 'https://ror.org/05n0xah55 Ev. Diakonissenkrankenhaus Leipzig'),
(74132, 'https://ror.org/031cz5x07', 'no_lang_code', 1, 'https://ror.org/031cz5x07 Muehlhan (Germany)'),
(74133, 'https://ror.org/02ksyke18', 'no_lang_code', 1, 'https://ror.org/02ksyke18 Laserline (Germany)'),
(74134, 'https://ror.org/044jk0m18', 'no_lang_code', 1, 'https://ror.org/044jk0m18 Cesic (Germany)'),
(74135, 'https://ror.org/04j1sns16', 'no_lang_code', 1, 'https://ror.org/04j1sns16 Intego (Germany)'),
(74136, 'https://ror.org/045dj7z60', 'en', 1, 'https://ror.org/045dj7z60 International Fertilizer Development Center'),
(74137, 'https://ror.org/00jpm8e16', 'no_lang_code', 1, 'https://ror.org/00jpm8e16 Mattson Technology (Germany)'),
(74138, 'https://ror.org/00av7cz64', 'no_lang_code', 1, 'https://ror.org/00av7cz64 International Research Associates (United States)'),
(74139, 'https://ror.org/012k7ag19', 'no_lang_code', 1, 'https://ror.org/012k7ag19 IS-Wireless (Poland)'),
(74140, 'https://ror.org/01b9t8b35', 'no_lang_code', 1, 'https://ror.org/01b9t8b35 Medipan (Germany)'),
(74141, 'https://ror.org/02nw6hx08', 'no_lang_code', 1, 'https://ror.org/02nw6hx08 Janssen (United Kingdom)'),
(74142, 'https://ror.org/00kwmw966', 'no_lang_code', 1, 'https://ror.org/00kwmw966 MeVis BreastCare (Germany)'),
(74143, 'https://ror.org/04zj6ee21', 'no_lang_code', 1, 'https://ror.org/04zj6ee21 MeVis Medical Solutions (Germany)'),
(74144, 'https://ror.org/005dbxm61', 'no_lang_code', 1, 'https://ror.org/005dbxm61 Piezosystem Jena (Germany)'),
(74145, 'https://ror.org/03d23eg52', 'no_lang_code', 1, 'https://ror.org/03d23eg52 Mycronic (Sweden)'),
(74146, 'https://ror.org/03phr4149', 'no_lang_code', 1, 'https://ror.org/03phr4149 PVA TePla (Germany)'),
(74147, 'https://ror.org/00zrx8c87', 'no_lang_code', 1, 'https://ror.org/00zrx8c87 Optics Balzers (Germany)'),
(74148, 'https://ror.org/00e1wd906', 'en', 1, 'https://ror.org/00e1wd906 Institute of Electronics, Information and Communication Engineers 電子情報通信学会'),
(74149, 'https://ror.org/04845gv95', 'en', 1, 'https://ror.org/04845gv95 The Physical Society of Japan 日本物理学会'),
(74150, 'https://ror.org/014r8q346', 'no_lang_code', 1, 'https://ror.org/014r8q346 The Scatter Works (United States)'),
(74151, 'https://ror.org/0135n9613', 'no_lang_code', 1, 'https://ror.org/0135n9613 SpaceTech (Germany)'),
(74152, 'https://ror.org/05smgv327', 'no_lang_code', 1, 'https://ror.org/05smgv327 SURAGUS (Germany)'),
(74153, 'https://ror.org/043fdq347', 'no_lang_code', 1, 'https://ror.org/043fdq347 SUSS MicroTec (Switzerland)'),
(74154, 'https://ror.org/05vcgwf09', 'no_lang_code', 1, 'https://ror.org/05vcgwf09 SUSS MicroTec (Germany)'),
(74155, 'https://ror.org/02g4h7104', 'no_lang_code', 1, 'https://ror.org/02g4h7104 Synopsys (Belgium)'),
(74156, 'https://ror.org/04946pg51', 'no_lang_code', 1, 'https://ror.org/04946pg51 Vemac (Germany)'),
(74157, 'https://ror.org/02yxqev59', 'no_lang_code', 1, 'https://ror.org/02yxqev59 Vistec Electron Beam (Germany)'),
(74158, 'https://ror.org/02z8nwe60', 'no_lang_code', 1, 'https://ror.org/02z8nwe60 Ushio (Germany)'),
(74159, 'https://ror.org/041ppys11', 'no_lang_code', 1, 'https://ror.org/041ppys11 Hesse (Germany)'),
(74160, 'https://ror.org/005h88p57', 'no_lang_code', 1, 'https://ror.org/005h88p57 ASELTA Nanographics (France)'),
(74161, 'https://ror.org/031xq8953', 'no_lang_code', 1, 'https://ror.org/031xq8953 Becker Photonik (Germany)'),
(74162, 'https://ror.org/01eqz2j94', 'no_lang_code', 1, 'https://ror.org/01eqz2j94 Astro- und Feinwerktechnik Adlershof (Germany)'),
(74163, 'https://ror.org/0259nbs47', 'no_lang_code', 1, 'https://ror.org/0259nbs47 ASYS Group (Germany) Asys Automatisierungssysteme'),
(74164, 'https://ror.org/05v0zt272', 'en', 1, 'https://ror.org/05v0zt272 Al-Saeeda University جامعة السعيدة'),
(74165, 'https://ror.org/0341fqh65', 'en', 1, 'https://ror.org/0341fqh65 African Refuge'),
(74166, 'https://ror.org/007ferf45', 'en', 1, 'https://ror.org/007ferf45 Parker Conservation'),
(74167, 'https://ror.org/02c0bjd31', 'en', 1, 'https://ror.org/02c0bjd31 scidecode science consulting & research'),
(74168, 'https://ror.org/05qgcra83', 'en', 1, 'https://ror.org/05qgcra83 NIST Center for Neutron Research'),
(74169, 'https://ror.org/04a0y3b96', 'en', 1, 'https://ror.org/04a0y3b96 Material Measurement Laboratory'),
(74170, 'https://ror.org/016s8vs02', 'en', 1, 'https://ror.org/016s8vs02 Physical Measurement Laboratory'),
(74171, 'https://ror.org/00tbs6p91', 'en', 1, 'https://ror.org/00tbs6p91 Center for Nanoscale Science and Technology'),
(74172, 'https://ror.org/015xey021', 'en', 1, 'https://ror.org/015xey021 Communications Technology Laboratory'),
(74173, 'https://ror.org/0440c3437', 'en', 1, 'https://ror.org/0440c3437 Information Technology Laboratory'),
(74174, 'https://ror.org/00jsnkt88', 'no_lang_code', 1, 'https://ror.org/00jsnkt88 Dragonfly Data Science (New Zealand)'),
(74175, 'https://ror.org/00ddcfv11', 'en', 1, 'https://ror.org/00ddcfv11 Center for Dynamic Research on High Latitude Marine Ecosystems Centro de Investigación Dinámica de Ecosistemas Marinos de Altas Latitudes'),
(74176, 'https://ror.org/022a7nh32', 'en', 1, 'https://ror.org/022a7nh32 Chisholm Institute'),
(74177, 'https://ror.org/02rjcc270', 'pt', 1, 'https://ror.org/02rjcc270 Australis Environmental Research and Monitoring Institute Instituto Australis Instituto Australis de Pesquisa e Monitoramento Ambiental'),
(74178, 'https://ror.org/055hrh286', 'en', 1, 'https://ror.org/055hrh286 Arctic Data Center'),
(74179, 'https://ror.org/0012p6j68', 'en', 1, 'https://ror.org/0012p6j68 National Electronic Information Consortium Национальный электронно-информационный консорциум'),
(74180, 'https://ror.org/035dxyg86', 'en', 1, 'https://ror.org/035dxyg86 Environs Kimberley'),
(74181, 'https://ror.org/00cqckx82', 'no_lang_code', 1, 'https://ror.org/00cqckx82 AbMax AntibodyChina (China) 北京天成新脉生物技术有限公司'),
(74182, 'https://ror.org/05ak8xb62', 'es', 1, 'https://ror.org/05ak8xb62 Academia Nacional de Medicina Venezuela'),
(74183, 'https://ror.org/009rg7s27', 'no_lang_code', 1, 'https://ror.org/009rg7s27 Biomed Protection (United States)'),
(74184, 'https://ror.org/006992e45', 'en', 1, 'https://ror.org/006992e45 Yanan University Affiliated Hospital 延安大学附属医院'),
(74185, 'https://ror.org/04dcmpg83', 'en', 1, 'https://ror.org/04dcmpg83 Chongqing Public Health Medical Center 重庆市公共卫生医疗救治中心'),
(74186, 'https://ror.org/04dx81q90', 'en', 1, 'https://ror.org/04dx81q90 Cleveland Clinic London'),
(74187, 'https://ror.org/0291gez47', 'pt', 1, 'https://ror.org/0291gez47 Clinica De Doencas Renais De Brasilia'),
(74188, 'https://ror.org/04n6dab73', 'no_lang_code', 1, 'https://ror.org/04n6dab73 BioSolutions Halle (Germany)'),
(74189, 'https://ror.org/04dk55y19', 'en', 1, 'https://ror.org/04dk55y19 Africa Early Childhood Network'),
(74190, 'https://ror.org/03sa4ef12', 'no_lang_code', 1, 'https://ror.org/03sa4ef12 Torque (United States)'),
(74191, 'https://ror.org/03a6jbw84', 'fr', 1, 'https://ror.org/03a6jbw84 Agence Régionale de Santé Nouvelle-Aquitaine'),
(74192, 'https://ror.org/04mhsfn74', 'no_lang_code', 1, 'https://ror.org/04mhsfn74 Medlab Central (New Zealand)'),
(74193, 'https://ror.org/047hw1v81', 'no_lang_code', 1, 'https://ror.org/047hw1v81 BlueDot (Canada)'),
(74194, 'https://ror.org/020v2kg51', 'en', 1, 'https://ror.org/020v2kg51 Albuquerque Cat Clinic'),
(74195, 'https://ror.org/04y10pp77', 'en', 1, 'https://ror.org/04y10pp77 Amersham Vale Practice'),
(74196, 'https://ror.org/03e5fmj95', 'it', 1, 'https://ror.org/03e5fmj95 BresciaMEd'),
(74197, 'https://ror.org/044r8dr88', 'no_lang_code', 1, 'https://ror.org/044r8dr88 Pathlab (New Zealand)'),
(74198, 'https://ror.org/048j1wp71', 'en', 1, 'https://ror.org/048j1wp71 Saratoga Hospital'),
(74199, 'https://ror.org/01jzyr789', 'no_lang_code', 1, 'https://ror.org/01jzyr789 Bronkhorst (Netherlands)'),
(74200, 'https://ror.org/01t08q012', 'en', 1, 'https://ror.org/01t08q012 Coalition for Epidemic Preparedness Innovations'),
(74201, 'https://ror.org/052dmdr17', 'no_lang_code', 1, 'https://ror.org/052dmdr17 Trường Đại học VinUni VinUniversity'),
(74202, 'https://ror.org/020az4v13', 'en', 1, 'https://ror.org/020az4v13 Animal Quarantine Office पशु क्वारेन्टाईन कार्यालय'),
(74203, 'https://ror.org/039n0s143', 'en', 1, 'https://ror.org/039n0s143 Ann Arbor VA Medical Center'),
(74204, 'https://ror.org/02c4jmw40', 'no_lang_code', 1, 'https://ror.org/02c4jmw40 Convalife (China)'),
(74205, 'https://ror.org/00mf9x671', 'en', 1, 'https://ror.org/00mf9x671 Cook County Department of Public Health'),
(74206, 'https://ror.org/02by6tw17', 'no_lang_code', 1, 'https://ror.org/02by6tw17 APC Europe (Spain)'),
(74207, 'https://ror.org/00mffe072', 'no_lang_code', 1, 'https://ror.org/00mffe072 Advanced Procurement Center (United States)'),
(74208, 'https://ror.org/0072d4h61', 'no_lang_code', 1, 'https://ror.org/0072d4h61 Bioscience (China) 博奥赛斯'),
(74209, 'https://ror.org/03k4zrh82', 'en', 1, 'https://ror.org/03k4zrh82 The People''s Hospital of LinXia 临夏州人民医院'),
(74210, 'https://ror.org/017fg3624', 'en', 1, 'https://ror.org/017fg3624 Arab Network for Early Childhood Development الشبكة العربية لتنمية الطفولة المبكرة'),
(74211, 'https://ror.org/048xr0t03', 'no_lang_code', 1, 'https://ror.org/048xr0t03 Cancerrop (South Korea)'),
(74212, 'https://ror.org/01ypsy903', 'en', 1, 'https://ror.org/01ypsy903 Asia-Pacific Regional Network for Early Childhood'),
(74213, 'https://ror.org/03htx4q40', 'en', 1, 'https://ror.org/03htx4q40 Carbon Valley Animal Hospital'),
(74214, 'https://ror.org/00n9sg246', 'en', 1, 'https://ror.org/00n9sg246 Association of British Neurologists'),
(74215, 'https://ror.org/01z3tch16', 'en', 1, 'https://ror.org/01z3tch16 Zhejiang Provincial Public Security Department 浙江省公安厅'),
(74216, 'https://ror.org/00rezvm23', 'no_lang_code', 1, 'https://ror.org/00rezvm23 Atea Pharmaceuticals (United States)'),
(74217, 'https://ror.org/000qx7w57', 'en', 1, 'https://ror.org/000qx7w57 Baokang Hospital Affiliated to Tianjin University of Traditional Chinese Medicine 天津中医药大学附属保康医院'),
(74218, 'https://ror.org/05x4e6955', 'no_lang_code', 1, 'https://ror.org/05x4e6955 CarGurus (United States)'),
(74219, 'https://ror.org/05qz7n275', 'en', 1, 'https://ror.org/05qz7n275 Dazhou Central Hospital 达州市中心医院'),
(74220, 'https://ror.org/04j4j9405', 'no_lang_code', 1, 'https://ror.org/04j4j9405 Deargen (South Korea)'),
(74221, 'https://ror.org/05anb7a53', 'en', 1, 'https://ror.org/05anb7a53 Beijing Chaoyang Emergency Medical Center 北京朝阳急诊抢救中心'),
(74222, 'https://ror.org/018zkg706', 'en', 1, 'https://ror.org/018zkg706 Beijing Emergency Medical Center 北京急救中心'),
(74223, 'https://ror.org/04nneby83', 'es', 1, 'https://ror.org/04nneby83 Hospital Marina Baixa'),
(74224, 'https://ror.org/027h3dg90', 'no_lang_code', 1, 'https://ror.org/027h3dg90 InferVision (China)'),
(74225, 'https://ror.org/04rpfqy30', 'en', 1, 'https://ror.org/04rpfqy30 Caspr Biotech'),
(74226, 'https://ror.org/0125nre22', 'de', 1, 'https://ror.org/0125nre22 Kreisklinik Trostberg'),
(74227, 'https://ror.org/03xfq5k21', 'pt', 1, 'https://ror.org/03xfq5k21 Itaipu Binacional'),
(74228, 'https://ror.org/02dzn2z94', 'de', 1, 'https://ror.org/02dzn2z94 Berufsverband der Deutschen Dermatologen'),
(74229, 'https://ror.org/05c30e379', 'no_lang_code', 1, 'https://ror.org/05c30e379 Siuvo (China)'),
(74230, 'https://ror.org/0092tvz34', 'en', 1, 'https://ror.org/0092tvz34 Biodiversity and Nature Conservation Association'),
(74231, 'https://ror.org/02wrv8c89', 'en', 1, 'https://ror.org/02wrv8c89 Central Cotton Research Institute'),
(74232, 'https://ror.org/03qkems54', 'en', 1, 'https://ror.org/03qkems54 Wuhan Red Cross Hospital 武汉市红十字会医院'),
(74233, 'https://ror.org/01yx9b459', 'no_lang_code', 1, 'https://ror.org/01yx9b459 Fleetwood Specialty Pharmacy (United States)'),
(74234, 'https://ror.org/03kgydk02', 'en', 1, 'https://ror.org/03kgydk02 Harrison International Peace Hospital 衡水市人民医院'),
(74235, 'https://ror.org/03h7jyq46', 'en', 1, 'https://ror.org/03h7jyq46 Foshan Second People''s Hospital 佛山市第二人民医院'),
(74236, 'https://ror.org/038p1ty61', 'no_lang_code', 1, 'https://ror.org/038p1ty61 Jinyintan Hospital 武汉市金银潭医院'),
(74237, 'https://ror.org/03s41ze97', 'en', 1, 'https://ror.org/03s41ze97 Zoo New England'),
(74238, 'https://ror.org/04ahz6d73', 'en', 1, 'https://ror.org/04ahz6d73 Department of Animal Husbandry निदेशालय पशुपालन'),
(74239, 'https://ror.org/04dtbmg64', 'en', 1, 'https://ror.org/04dtbmg64 Hengyang Academy of Agricultural Sciences 衡阳市农业科学院'),
(74240, 'https://ror.org/02jkgv284', 'no_lang_code', 1, 'https://ror.org/02jkgv284 Weinan Central Hospital 渭南市中心医院'),
(74241, 'https://ror.org/04tj88f69', 'en', 1, 'https://ror.org/04tj88f69 National University of Medical Sciences'),
(74242, 'https://ror.org/00ckgf271', 'en', 1, 'https://ror.org/00ckgf271 Centre for Interdisciplinary Research and Education'),
(74243, 'https://ror.org/047sn6763', 'en', 1, 'https://ror.org/047sn6763 Centre for Multidisciplinary Research in Health Science'),
(74244, 'https://ror.org/038dne681', 'fr', 1, 'https://ror.org/038dne681 Centre Paramédical Santy'),
(74245, 'https://ror.org/01a6bf324', 'no_lang_code', 1, 'https://ror.org/01a6bf324 Ofogh Koorosh Chain Stores فروشگاه های زنجیره ای افق کوروش'),
(74246, 'https://ror.org/014kzd996', 'en', 1, 'https://ror.org/014kzd996 Centro Pipistrelli Sardegna'),
(74247, 'https://ror.org/00vna7491', 'en', 1, 'https://ror.org/00vna7491 Handan Polytechnic College 邯郸职业技术学院'),
(74248, 'https://ror.org/03hbkgr83', 'en', 1, 'https://ror.org/03hbkgr83 Chengdu Center for Disease Control and Prevention 成都市疾病预防控制中心'),
(74249, 'https://ror.org/04zt8gw89', 'en', 1, 'https://ror.org/04zt8gw89 Gold Coast Health'),
(74250, 'https://ror.org/01m2h6984', 'en', 1, 'https://ror.org/01m2h6984 Chameli Devi Institute of Pharmacy'),
(74251, 'https://ror.org/04ha18t27', 'en', 1, 'https://ror.org/04ha18t27 Chameli Devi Group of Institutions'),
(74252, 'https://ror.org/007e7b187', 'no_lang_code', 1, 'https://ror.org/007e7b187 Changchun Discovery Sciences (China) 长春吉大天元化学技术股份有限公司'),
(74253, 'https://ror.org/04mrnx789', 'en', 1, 'https://ror.org/04mrnx789 Charing Cross Cat Clinic'),
(74254, 'https://ror.org/01nwt2j78', 'no_lang_code', 1, 'https://ror.org/01nwt2j78 Sichuan Mianyang 404 Hospital 四川绵阳四〇四医院'),
(74255, 'https://ror.org/029hsnk78', 'en', 1, 'https://ror.org/029hsnk78 Chiba-Nishi General Hospital 千葉西総合病院'),
(74256, 'https://ror.org/05err8h54', 'en', 1, 'https://ror.org/05err8h54 Musoon Women''s Clinic 木生婦產科診所'),
(74257, 'https://ror.org/0588m4284', 'en', 1, 'https://ror.org/0588m4284 China Association of Acupuncture-Moxibustion 中国针灸学会'),
(74258, 'https://ror.org/05dfe8p27', 'en', 1, 'https://ror.org/05dfe8p27 Hangzhou Children''s Hospital 杭州市儿童医院'),
(74259, 'https://ror.org/0238gcb09', 'en', 1, 'https://ror.org/0238gcb09 Qianjiang Central Hospital 潜江市中心医院'),
(74260, 'https://ror.org/03fts7x30', 'en', 1, 'https://ror.org/03fts7x30 Yancheng Central Blood Station 盐城市中心血站'),
(74261, 'https://ror.org/02x0x2d91', 'en', 1, 'https://ror.org/02x0x2d91 Yancheng Second People''s Hospital 盐城市第二人民医院'),
(74262, 'https://ror.org/0202z8x64', 'no_lang_code', 1, 'https://ror.org/0202z8x64 Associated Fund Administrators (Botswana)'),
(74263, 'https://ror.org/05q9ymz20', 'en', 1, 'https://ror.org/05q9ymz20 Xiang Yang No.1 People''s Hospital 襄阳市第一人民医院'),
(74264, 'https://ror.org/04e3jvd14', 'en', 1, 'https://ror.org/04e3jvd14 The First People''s Hospital of Wenling 温岭市第一人民医院'),
(74265, 'https://ror.org/03j9dwf95', 'en', 1, 'https://ror.org/03j9dwf95 Mackay Junior College of Medicine, Nursing and Management 馬偕醫護管理專科學校'),
(74266, 'https://ror.org/05kjn8d41', 'en', 1, 'https://ror.org/05kjn8d41 The Fourth People''s Hospital of Ningxia Hui Autonomous Region 宁夏回族自治区第四人民医院'),
(74267, 'https://ror.org/00w5h0n54', 'en', 1, 'https://ror.org/00w5h0n54 Wenzhou Central Hospital 温州市中心医院'),
(74268, 'https://ror.org/05m7fas76', 'en', 1, 'https://ror.org/05m7fas76 The First People''s Hospital of Xiaoshan District, Hangzhou 杭州市萧山区第一人民医院'),
(74269, 'https://ror.org/04tbvjc27', 'en', 1, 'https://ror.org/04tbvjc27 Badr University in Cairo جامعة بدر بالقاهرة'),
(74270, 'https://ror.org/01zs9ce87', 'en', 1, 'https://ror.org/01zs9ce87 Jingzhou Maternal and Child Health Hospital 荆州市妇幼保健院'),
(74271, 'https://ror.org/05dy5ab02', 'it', 1, 'https://ror.org/05dy5ab02 ASST Fatebenefratelli Sacco'),
(74272, 'https://ror.org/03r5za471', 'en', 1, 'https://ror.org/03r5za471 Kiang Wu Hospital 鏡湖醫院'),
(74273, 'https://ror.org/00h626c53', 'en', 1, 'https://ror.org/00h626c53 The Fourth People''s Hospital of Zibo City 淄博市第四人民医院'),
(74274, 'https://ror.org/0305gdg87', 'en', 1, 'https://ror.org/0305gdg87 The First People''s Hospital of Tianmen 天门市第一人民医院'),
(74275, 'https://ror.org/039nc2k59', 'en', 1, 'https://ror.org/039nc2k59 Weihai Chest Hospital 威海市胸科医院'),
(74276, 'https://ror.org/048nc2z47', 'en', 1, 'https://ror.org/048nc2z47 Xiamen Chang Gung Hospital 厦门长庚医院'),
(74277, 'https://ror.org/0569p8y61', 'en', 1, 'https://ror.org/0569p8y61 The Eighth Hospital of Xi''an 西安市第八医院'),
(74278, 'https://ror.org/05t45gr77', 'en', 1, 'https://ror.org/05t45gr77 Wuhan Center for Disease Control and Prevention 武汉市疾病预防控制中心'),
(74279, 'https://ror.org/00ty48v44', 'en', 1, 'https://ror.org/00ty48v44 The Fifth People''s Hospital of Anyang 安阳市第五人民医院'),
(74280, 'https://ror.org/04dtzbe22', 'en', 1, 'https://ror.org/04dtzbe22 Shaheed Suhrawardy Medical College শহীদ সোহরাওয়ার্দী মেডিকেল কলেজ'),
(74281, 'https://ror.org/03krdwr84', 'en', 1, 'https://ror.org/03krdwr84 Guigang Orthopedic Hospital of Integrated Traditional Chinese and Western Medicine 贵港市中西医结合骨科医院'),
(74282, 'https://ror.org/01sy5t684', 'en', 1, 'https://ror.org/01sy5t684 The First Hospital of Changsha 长沙市第一医院'),
(74283, 'https://ror.org/02895kk89', 'en', 1, 'https://ror.org/02895kk89 Jiangxi Chest Hospital 江西省胸科医院'),
(74284, 'https://ror.org/03b489496', 'en', 1, 'https://ror.org/03b489496 Woodlands Health Campus'),
(74285, 'https://ror.org/04v3qgb32', 'no_lang_code', 1, 'https://ror.org/04v3qgb32 Fortis C-DOC Hospital फोर्टिस C-डॉक हॉस्पिटल'),
(74286, 'https://ror.org/041v5th48', 'en', 1, 'https://ror.org/041v5th48 Affiliated Hospital of Shaanxi University of Chinese Medicine 陕西中医药大学附属医院'),
(74287, 'https://ror.org/017cm6884', 'en', 1, 'https://ror.org/017cm6884 Baylor Scott & White Medical Center - Temple'),
(74288, 'https://ror.org/046znv447', 'en', 1, 'https://ror.org/046znv447 The Sixth People''s Hospital of Zhengzhou 郑州市第六人民医院'),
(74289, 'https://ror.org/01pbexw16', 'en', 1, 'https://ror.org/01pbexw16 The People''s Hospital Tongling 铜陵市人民医院'),
(74290, 'https://ror.org/04m4cy683', 'es', 1, 'https://ror.org/04m4cy683 Fundación Centro de Estudios Infectológicos'),
(74291, 'https://ror.org/052f2mx26', 'en', 1, 'https://ror.org/052f2mx26 Xi''an Chest Hospital 西安市胸科医院'),
(74292, 'https://ror.org/0405ahw63', 'no_lang_code', 1, 'https://ror.org/0405ahw63 DNA Diagnostic (Denmark)'),
(74293, 'https://ror.org/00gk5fa11', 'en', 1, 'https://ror.org/00gk5fa11 Sheikh Shakhbout Medical City مدينة الشيخ شخبوط الطبية'),
(74294, 'https://ror.org/007stz924', 'no_lang_code', 1, 'https://ror.org/007stz924 DNARx (United States)'),
(74295, 'https://ror.org/01has8079', 'en', 1, 'https://ror.org/01has8079 The Central Hospital of Xiao gan 孝感市中心医院'),
(74296, 'https://ror.org/03gh4m991', 'en', 1, 'https://ror.org/03gh4m991 Yueyang Second People''s Hospital 岳阳市二人民医院'),
(74297, 'https://ror.org/00f8k0n29', 'en', 1, 'https://ror.org/00f8k0n29 Earl Haig Secondary School'),
(74298, 'https://ror.org/03pt6v373', 'en', 1, 'https://ror.org/03pt6v373 Cancer Hospital of Huanxing Chaoyang District Beijing 北京市朝阳区桓兴肿瘤医院'),
(74299, 'https://ror.org/050qvcs37', 'en', 1, 'https://ror.org/050qvcs37 Nanobiosensorics Laboratory'),
(74300, 'https://ror.org/01pdra218', 'it', 1, 'https://ror.org/01pdra218 Ospedale Civile di Voghera'),
(74301, 'https://ror.org/02dxdyv61', 'en', 1, 'https://ror.org/02dxdyv61 Deutsche Gesellschaft für Internistische Intensivmedizin und Notfallmedizin German Society of Medical Intensive Care and Emergency Medicine'),
(74302, 'https://ror.org/02zjgn863', 'en', 1, 'https://ror.org/02zjgn863 Diabetes in Asia Study Group'),
(74303, 'https://ror.org/03800bc44', 'no_lang_code', 1, 'https://ror.org/03800bc44 Emweb (Belgium)'),
(74304, 'https://ror.org/012d67872', 'en', 1, 'https://ror.org/012d67872 Diagnostic Microbiology Development Program'),
(74305, 'https://ror.org/00n49pr77', 'no_lang_code', 1, 'https://ror.org/00n49pr77 Digital China Health (China) 神州医疗'),
(74306, 'https://ror.org/0170pdx26', 'no_lang_code', 1, 'https://ror.org/0170pdx26 Genetic Signatures (Australia)'),
(74307, 'https://ror.org/057fnvr81', 'no_lang_code', 1, 'https://ror.org/057fnvr81 Gentian Diagnostics (Sweden)'),
(74308, 'https://ror.org/02n5k9x47', 'no_lang_code', 1, 'https://ror.org/02n5k9x47 Guangzhou Jingpai Technology (China) 广州景派科技有限公司'),
(74309, 'https://ror.org/036nvwz98', 'en', 1, 'https://ror.org/036nvwz98 Gorilla Doctors'),
(74310, 'https://ror.org/054we3s04', 'en', 1, 'https://ror.org/054we3s04 Guangzhou Zoo 广州动物园'),
(74311, 'https://ror.org/0106sdn14', 'en', 1, 'https://ror.org/0106sdn14 Gorilla Doctors'),
(74312, 'https://ror.org/006shyb38', 'en', 1, 'https://ror.org/006shyb38 GD Hospital & Diabetes Institute জিডি হসপিটাল এন্ড ডায়াবেটিস ইনস্টিটিউট'),
(74313, 'https://ror.org/00nfe8z20', 'no_lang_code', 1, 'https://ror.org/00nfe8z20 Hachaklait (Israel) החקלאית'),
(74314, 'https://ror.org/003mm3215', 'es', 1, 'https://ror.org/003mm3215 Mutualista Hospital Evangélico'),
(74315, 'https://ror.org/04ggx4175', 'es', 1, 'https://ror.org/04ggx4175 Hospital Zonal General De Agudos Descentralizado "Evita Pueblo"'),
(74316, 'https://ror.org/021n4pk58', 'en', 1, 'https://ror.org/021n4pk58 Hangzhou Women’s Hospital 杭州市妇科医院'),
(74317, 'https://ror.org/040gqn094', 'en', 1, 'https://ror.org/040gqn094 HCOV Global'),
(74318, 'https://ror.org/019ytqh38', 'en', 1, 'https://ror.org/019ytqh38 Hubei 672 Orthopedics Hospital of Traditional Chinese Medicine and Western Medicine 湖北六七二中西医结合骨科医院'),
(74319, 'https://ror.org/04cyj7b39', 'no_lang_code', 1, 'https://ror.org/04cyj7b39 Finch Therapeutics (United States)'),
(74320, 'https://ror.org/02srfgm34', 'en', 1, 'https://ror.org/02srfgm34 Gibraltar Health Authority'),
(74321, 'https://ror.org/01hr4k271', 'en', 1, 'https://ror.org/01hr4k271 Health Commission of Anhui Province 安徽省卫生健康委员会'),
(74322, 'https://ror.org/01pxxz681', 'en', 1, 'https://ror.org/01pxxz681 Zhejiang Medical and Health Group Hangzhou Hospital 浙江省医疗健康集团杭州医院'),
(74323, 'https://ror.org/05tfnan22', 'en', 1, 'https://ror.org/05tfnan22 Gansu Provincial Center for Disease Control and Prevention 甘肃省疾病预防控制中心'),
(74324, 'https://ror.org/04n3naf58', 'no_lang_code', 1, 'https://ror.org/04n3naf58 Sansure Biotech (China) 圣湘生物'),
(74325, 'https://ror.org/04mrmjg19', 'en', 1, 'https://ror.org/04mrmjg19 Huzhou Women and Children''s Hospital 湖州市妇幼保健院'),
(74326, 'https://ror.org/05vvt7a66', 'en', 1, 'https://ror.org/05vvt7a66 Health Protection Research Unit in Emerging and Zoonotic Infections at University of Liverpool'),
(74327, 'https://ror.org/04ff4e804', 'no_lang_code', 1, 'https://ror.org/04ff4e804 Eiken Chemical (Japan) 栄研化学株式会社'),
(74328, 'https://ror.org/02pthay30', 'en', 1, 'https://ror.org/02pthay30 Wuxi Ninth People''s Hospital 无锡市第九人民医院'),
(74329, 'https://ror.org/00jd3sh61', 'no_lang_code', 1, 'https://ror.org/00jd3sh61 HKScan (Finland)'),
(74330, 'https://ror.org/05q74qt68', 'en', 1, 'https://ror.org/05q74qt68 Hong Kong College of Health Service Executives 香港卫生学院行政人员'),
(74331, 'https://ror.org/007h0mc98', 'en', 1, 'https://ror.org/007h0mc98 Hong Kong Tuberculosis, Chest and Heart Diseases Association 香港防癆心臟及胸病協會'),
(74332, 'https://ror.org/03s2sy313', 'no', 1, 'https://ror.org/03s2sy313 Horten Kommune'),
(74333, 'https://ror.org/05mh1nj06', 'es', 1, 'https://ror.org/05mh1nj06 Hospital de Emergencias Jose Casimiro Ulloa'),
(74334, 'https://ror.org/01grk2s95', 'pt', 1, 'https://ror.org/01grk2s95 Instituto Laura Fressatto'),
(74335, 'https://ror.org/0312nky31', 'en', 1, 'https://ror.org/0312nky31 Infection Control Africa Network'),
(74336, 'https://ror.org/04fpsr797', 'no_lang_code', 1, 'https://ror.org/04fpsr797 Intergen (Turkey) İntergen Genetik Hastalıklar Tanı Merkezi'),
(74337, 'https://ror.org/02xwh7n36', 'en', 1, 'https://ror.org/02xwh7n36 Conseil International des Infirmières International Council of Nurses'),
(74338, 'https://ror.org/02hnfcm12', 'en', 1, 'https://ror.org/02hnfcm12 International Engineering and Technology Institute'),
(74339, 'https://ror.org/03rtrce80', 'en', 1, 'https://ror.org/03rtrce80 National Centre for Infectious Diseases'),
(74340, 'https://ror.org/01ze2qb65', 'en', 1, 'https://ror.org/01ze2qb65 International Step by Step Association'),
(74341, 'https://ror.org/01t8k4098', 'no_lang_code', 1, 'https://ror.org/01t8k4098 Guhua Hospital 上海市奉贤区古华医院'),
(74342, 'https://ror.org/05bvyxw62', 'es', 1, 'https://ror.org/05bvyxw62 Hospital Universitario de Sincelejo'),
(74343, 'https://ror.org/00h2m4d20', 'en', 1, 'https://ror.org/00h2m4d20 Hemophilia Center of Iran کانون هموفیلی ایران'),
(74344, 'https://ror.org/0553qpy92', 'it', 1, 'https://ror.org/0553qpy92 Istituto Zooprofilattico Sperimentale della Puglia e della Basilicata'),
(74345, 'https://ror.org/00c2n9b56', 'en', 1, 'https://ror.org/00c2n9b56 Jewish Voice for Peace'),
(74346, 'https://ror.org/03zd66h19', 'no_lang_code', 1, 'https://ror.org/03zd66h19 Inprother (Denmark)'),
(74347, 'https://ror.org/01jsw1s12', 'en', 1, 'https://ror.org/01jsw1s12 Florida Center for Dermatology'),
(74348, 'https://ror.org/054tz0d85', 'no_lang_code', 1, 'https://ror.org/054tz0d85 Medomics (China) 江苏美克医学技术有限公司'),
(74349, 'https://ror.org/01kpf5k20', 'no_lang_code', 1, 'https://ror.org/01kpf5k20 Flow Pharma (United States)'),
(74350, 'https://ror.org/0532gcg76', 'en', 1, 'https://ror.org/0532gcg76 Institute for Disease Modeling'),
(74351, 'https://ror.org/03682zy57', 'en', 1, 'https://ror.org/03682zy57 Johannesburg Wildlife Vet'),
(74352, 'https://ror.org/016ayye29', 'en', 1, 'https://ror.org/016ayye29 Lusaka Apex Medical University'),
(74353, 'https://ror.org/05ccx1c95', 'da', 1, 'https://ror.org/05ccx1c95 LVK Kvægdyrlægerne'),
(74354, 'https://ror.org/057zb9e55', 'no_lang_code', 1, 'https://ror.org/057zb9e55 Macopharma (Germany)'),
(74355, 'https://ror.org/05ypszq83', 'es', 1, 'https://ror.org/05ypszq83 Fundación IRAUy'),
(74356, 'https://ror.org/04k8x4m17', 'no_lang_code', 1, 'https://ror.org/04k8x4m17 Zabal Menuiseries (France)'),
(74357, 'https://ror.org/04p7c8496', 'en', 1, 'https://ror.org/04p7c8496 Medical Governance Research Institute 医療ガバナンス研究所'),
(74358, 'https://ror.org/03b7d3909', 'en', 1, 'https://ror.org/03b7d3909 National Diabetes Obesity and Cholesterol Foundation'),
(74359, 'https://ror.org/041nfer11', 'es', 1, 'https://ror.org/041nfer11 Menescalia Centro Veterinario'),
(74360, 'https://ror.org/02d9qgc11', 'en', 1, 'https://ror.org/02d9qgc11 Saudi Center for Disease Prevention and Control المركز الوطني للوقاية من الأمراض ومكافحتها'),
(74361, 'https://ror.org/02gqm1y63', 'no_lang_code', 1, 'https://ror.org/02gqm1y63 Minda Hospital 湖北民族大学附属民大医院'),
(74362, 'https://ror.org/00f6a9h42', 'en', 1, 'https://ror.org/00f6a9h42 National Institute of Animal Biotechnology'),
(74363, 'https://ror.org/026q2n359', 'no_lang_code', 1, 'https://ror.org/026q2n359 Molecular Microbiology and Genomics Consultants (Germany)'),
(74364, 'https://ror.org/03np1sm50', 'no_lang_code', 1, 'https://ror.org/03np1sm50 MSCI (China)'),
(74365, 'https://ror.org/05cpqsp49', 'en', 1, 'https://ror.org/05cpqsp49 Miami Transplant Institute'),
(74366, 'https://ror.org/0276bkt19', 'en', 1, 'https://ror.org/0276bkt19 National Public Health Laboratory'),
(74367, 'https://ror.org/05crx6z12', 'en', 1, 'https://ror.org/05crx6z12 National Public Health Organization Εθνικός Οργανισμός Δημόσιας Υγείας'),
(74368, 'https://ror.org/05c4q7289', 'en', 1, 'https://ror.org/05c4q7289 WHO European Office for the Prevention and Control of NCD'),
(74369, 'https://ror.org/05wv5ps25', 'en', 1, 'https://ror.org/05wv5ps25 Noah''s Path'),
(74370, 'https://ror.org/028mbb924', 'en', 1, 'https://ror.org/028mbb924 North American Renderers Association'),
(74371, 'https://ror.org/05e58kh79', 'en', 1, 'https://ror.org/05e58kh79 Nebraska Public Health Laboratory'),
(74372, 'https://ror.org/00ebvm839', 'no_lang_code', 1, 'https://ror.org/00ebvm839 Northern Minerals (Australia)'),
(74373, 'https://ror.org/020tv9a29', 'no_lang_code', 1, 'https://ror.org/020tv9a29 New Century Pharmaceuticals (United States)'),
(74374, 'https://ror.org/02mffv097', 'en', 1, 'https://ror.org/02mffv097 Sepsis Trust NZ'),
(74375, 'https://ror.org/02hmsgf06', 'fr', 1, 'https://ror.org/02hmsgf06 Le Laboratoire P4 Inserm Jean Mérieux'),
(74376, 'https://ror.org/05sjgdh57', 'en', 1, 'https://ror.org/05sjgdh57 Nigeria Centre for Disease Control'),
(74377, 'https://ror.org/05knvbx59', 'no_lang_code', 1, 'https://ror.org/05knvbx59 Nkmax (South Korea)'),
(74378, 'https://ror.org/055bszj51', 'no_lang_code', 1, 'https://ror.org/055bszj51 Peptide Institute (Japan) 株式会社ペプチド研究所'),
(74379, 'https://ror.org/04xee8d94', 'en', 1, 'https://ror.org/04xee8d94 Pulmonary Hospital of Lanzhou 兰州市肺科医院'),
(74380, 'https://ror.org/004w4c708', 'no_lang_code', 1, 'https://ror.org/004w4c708 Pipestone (United States)'),
(74381, 'https://ror.org/02myr1w18', 'no_lang_code', 1, 'https://ror.org/02myr1w18 Pliant (United States)'),
(74382, 'https://ror.org/029b4kt29', 'en', 1, 'https://ror.org/029b4kt29 Livestock Breeding and Veterinary Department မွေးမြူရေးနှင့် ကုသရေး ဦးစီးဌာန'),
(74383, 'https://ror.org/04jref587', 'en', 1, 'https://ror.org/04jref587 Loudi Central Hospital 娄底市中心医院'),
(74384, 'https://ror.org/05xdrcw34', 'no_lang_code', 1, 'https://ror.org/05xdrcw34 Regend Therapeutics (China)'),
(74385, 'https://ror.org/03bd9r350', 'en', 1, 'https://ror.org/03bd9r350 The Salvation Army China 救世军'),
(74386, 'https://ror.org/05ncx5x80', 'no_lang_code', 1, 'https://ror.org/05ncx5x80 PurpleSun (United States)'),
(74387, 'https://ror.org/01rqyfs68', 'nl', 1, 'https://ror.org/01rqyfs68 Huisarts en Wetenschap'),
(74388, 'https://ror.org/01bzbbd61', 'en', 1, 'https://ror.org/01bzbbd61 Gallup Korea'),
(74389, 'https://ror.org/05pwzcb81', 'en', 1, 'https://ror.org/05pwzcb81 Qingdao Women and Children''s Hospital 青岛市妇女儿童医院'),
(74390, 'https://ror.org/04y0f6h17', 'no_lang_code', 1, 'https://ror.org/04y0f6h17 Resis (Italy)'),
(74391, 'https://ror.org/05qbj3p45', 'en', 1, 'https://ror.org/05qbj3p45 Royal Museums Greenwich'),
(74392, 'https://ror.org/01ayhb353', 'no_lang_code', 1, 'https://ror.org/01ayhb353 ATS Sardegna (Italy)'),
(74393, 'https://ror.org/03ez0zf69', 'en', 1, 'https://ror.org/03ez0zf69 Royal Observatory in Greenwich'),
(74394, 'https://ror.org/04qbqh473', 'en', 1, 'https://ror.org/04qbqh473 Royal Commission Medical Center'),
(74395, 'https://ror.org/01c0kpp64', 'en', 1, 'https://ror.org/01c0kpp64 University College of Azarabadegan موسسه آموزش عالی آذرآبادگان'),
(74396, 'https://ror.org/0247phc34', 'en', 1, 'https://ror.org/0247phc34 Rwanda Development Board'),
(74397, 'https://ror.org/04y938269', 'en', 1, 'https://ror.org/04y938269 Latin American Society for Travel Medicine Sociedad Latinoamericana de Medicina del Viajero'),
(74398, 'https://ror.org/00279h066', 'en', 1, 'https://ror.org/00279h066 Rwanda Wildlife Conservation Association'),
(74399, 'https://ror.org/011djka92', 'no_lang_code', 1, 'https://ror.org/011djka92 Sabin Medicina Diagnostica (Brazil)'),
(74400, 'https://ror.org/01a0hfp29', 'fr', 1, 'https://ror.org/01a0hfp29 Service Volontaire International'),
(74401, 'https://ror.org/03ejr8e18', 'en', 1, 'https://ror.org/03ejr8e18 Samson Institute For Ageing Research'),
(74402, 'https://ror.org/01gjgcg03', 'no_lang_code', 1, 'https://ror.org/01gjgcg03 Paragon Genomics (United States)'),
(74403, 'https://ror.org/02qdhmt11', 'es', 1, 'https://ror.org/02qdhmt11 Clínica Santa María'),
(74404, 'https://ror.org/04tp7cf63', 'en', 1, 'https://ror.org/04tp7cf63 Başkent University Alanya Hospital Başkent Üniversitesi Alanya Hastanesi'),
(74405, 'https://ror.org/0356fgm10', 'en', 1, 'https://ror.org/0356fgm10 The Carpentries'),
(74406, 'https://ror.org/00w05gw74', 'en', 1, 'https://ror.org/00w05gw74 PEG-Bio Biopharm 重庆派金生物科技有限公司'),
(74407, 'https://ror.org/04wtsrd61', 'es', 1, 'https://ror.org/04wtsrd61 Instituto Universitario de Ciencias Médicas y Humanísticas de Nayarit'),
(74408, 'https://ror.org/05cqp3018', 'en', 1, 'https://ror.org/05cqp3018 Hospital Besar Sengkang Sengkang General Hospital செங்காங் பொது மருத்துவமனை 盛港综合医院'),
(74409, 'https://ror.org/015305q15', 'fr', 1, 'https://ror.org/015305q15 Centre Hospitalier Avranches Granville Le centre hospitalier Avranches Granville'),
(74410, 'https://ror.org/025qsj431', 'en', 1, 'https://ror.org/025qsj431 Bozhou People''s Hospital 亳州市人民医院'),
(74411, 'https://ror.org/01e99h158', 'en', 1, 'https://ror.org/01e99h158 Velleja Research'),
(74412, 'https://ror.org/01d9dbd65', 'en', 1, 'https://ror.org/01d9dbd65 Africa Centres for Disease Control and Prevention'),
(74413, 'https://ror.org/04j0edb32', 'fr', 1, 'https://ror.org/04j0edb32 Hôpital Privé Guillaume de Varye'),
(74414, 'https://ror.org/03rahtg67', 'en', 1, 'https://ror.org/03rahtg67 Scientific Research Group in Egypt'),
(74415, 'https://ror.org/03ckw1950', 'en', 1, 'https://ror.org/03ckw1950 Eastmed'),
(74416, 'https://ror.org/05ta2ab47', 'en', 1, 'https://ror.org/05ta2ab47 Sci Paper Edit'),
(74417, 'https://ror.org/056xvq727', 'de', 1, 'https://ror.org/056xvq727 Chemisches und Veterinäruntersuchungsamt Ostwestfalen-Lippe'),
(74418, 'https://ror.org/04h9a4v60', 'no_lang_code', 1, 'https://ror.org/04h9a4v60 New Hope Liuhe (China)'),
(74419, 'https://ror.org/027ya8962', 'en', 1, 'https://ror.org/027ya8962 Anthrologica'),
(74420, 'https://ror.org/02sjprm39', 'en', 1, 'https://ror.org/02sjprm39 Fuzhou Maternity and Child Health Care Hospital 福州市妇幼保健院'),
(74421, 'https://ror.org/028wbxx26', 'en', 1, 'https://ror.org/028wbxx26 Spinney Vets'),
(74422, 'https://ror.org/00ggswp78', 'no_lang_code', 1, 'https://ror.org/00ggswp78 Ganesamoni Hospital'),
(74423, 'https://ror.org/02kx7v033', 'en', 1, 'https://ror.org/02kx7v033 ALAI Czech Republic ALAI Česká republika'),
(74424, 'https://ror.org/057pame33', 'en', 1, 'https://ror.org/057pame33 Commission communautaire commune Common Community Commission Gemeenschappelijke Gemeenschapscommissie'),
(74425, 'https://ror.org/00pv01967', 'en', 1, 'https://ror.org/00pv01967 Kunming Third People''s Hospital 昆明市第三人民医院成'),
(74426, 'https://ror.org/007wz9933', 'en', 1, 'https://ror.org/007wz9933 Shanghai Medical Information Center 上海市医疗保险信息中心'),
(74427, 'https://ror.org/01ccnft78', 'no_lang_code', 1, 'https://ror.org/01ccnft78 Qiagen (Spain)'),
(74428, 'https://ror.org/02j3vjm91', 'no_lang_code', 1, 'https://ror.org/02j3vjm91 Guangxi Longtan Hospital 柳州市龙潭医院'),
(74429, 'https://ror.org/053frp704', 'no_lang_code', 1, 'https://ror.org/053frp704 Yebio Bioengineering (China)'),
(74430, 'https://ror.org/01vs47t55', 'en', 1, 'https://ror.org/01vs47t55 Zhengzhou Jinshui District General Hospital 郑州市金水区总医院'),
(74431, 'https://ror.org/00byme428', 'fr', 1, 'https://ror.org/00byme428 Groupe Français de Transplantation Fécale'),
(74432, 'https://ror.org/00axm1v07', 'en', 1, 'https://ror.org/00axm1v07 Sudan Childhood Diabetes Association'),
(74433, 'https://ror.org/04ger2z06', 'en', 1, 'https://ror.org/04ger2z06 Shandong Maternal and Child Health Hospital 山东省妇幼保健院'),
(74434, 'https://ror.org/02t268r72', 'en', 1, 'https://ror.org/02t268r72 People''s Hospital of Shiyan 十堰市人民医院'),
(74435, 'https://ror.org/01eda7a75', 'en', 1, 'https://ror.org/01eda7a75 Second People Hospital of Hunan 湖南省第二人民医院'),
(74436, 'https://ror.org/02p6pn278', 'en', 1, 'https://ror.org/02p6pn278 LEAP Science and Maths Schools'),
(74437, 'https://ror.org/05r8wgv86', 'en', 1, 'https://ror.org/05r8wgv86 Empower Tanzania'),
(74438, 'https://ror.org/02xae6c61', 'en', 1, 'https://ror.org/02xae6c61 Wuhu No 1 People''s Hospital 芜湖市第一人民医院'),
(74439, 'https://ror.org/02ahp7e62', 'en', 1, 'https://ror.org/02ahp7e62 Boxing People''s Hospital 博兴县人民医院'),
(74440, 'https://ror.org/04xf4yw96', 'en', 1, 'https://ror.org/04xf4yw96 Tata Institute for Genetics and Society'),
(74441, 'https://ror.org/035mc8a13', 'fr', 1, 'https://ror.org/035mc8a13 Labéo'),
(74442, 'https://ror.org/044yd5h03', 'fr', 1, 'https://ror.org/044yd5h03 CNR de la Résistance aux Antibiotiques'),
(74443, 'https://ror.org/03t65z939', 'no_lang_code', 1, 'https://ror.org/03t65z939 Sanya Central Hospital 三亚中心医院'),
(74444, 'https://ror.org/02tbjbv63', 'no_lang_code', 1, 'https://ror.org/02tbjbv63 Sino Biological (China)'),
(74445, 'https://ror.org/02yz89636', 'en', 1, 'https://ror.org/02yz89636 SỞ Y TẾ THANH HÓA Thanh Hoa Department of Health'),
(74446, 'https://ror.org/04r7av415', 'no_lang_code', 1, 'https://ror.org/04r7av415 Silexon AI Technology (China)'),
(74447, 'https://ror.org/04yjbr930', 'en', 1, 'https://ror.org/04yjbr930 Shenzhen University Health Science Center'),
(74448, 'https://ror.org/01jk37618', 'no_lang_code', 1, 'https://ror.org/01jk37618 Singleron Biotechnologies (china)'),
(74449, 'https://ror.org/02a539305', 'no_lang_code', 1, 'https://ror.org/02a539305 Shanghai Senyi Medical Technology (China)'),
(74450, 'https://ror.org/00pxc7m47', 'no_lang_code', 1, 'https://ror.org/00pxc7m47 Shenzhen Bioeasy Biotechnology (China)'),
(74451, 'https://ror.org/00g87gv13', 'en', 1, 'https://ror.org/00g87gv13 Beijing Shijingshan Hospital 北京市石景山医院'),
(74452, 'https://ror.org/05mp6hg50', 'en', 1, 'https://ror.org/05mp6hg50 Jinan Infectious Disease Hospital 济南市传染病医院'),
(74453, 'https://ror.org/0524grj14', 'en', 1, 'https://ror.org/0524grj14 The Sixth People''s Hospital of Shenyang 沈阳市第六人民医院'),
(74454, 'https://ror.org/05gre8525', 'no_lang_code', 1, 'https://ror.org/05gre8525 Solutia (Czechia)'),
(74455, 'https://ror.org/02zmj9y60', 'en', 1, 'https://ror.org/02zmj9y60 South African Medical Association'),
(74456, 'https://ror.org/04gqb3c37', 'no_lang_code', 1, 'https://ror.org/04gqb3c37 Southern Community Laboratories (New Zealand)'),
(74457, 'https://ror.org/03ed7ma04', 'en', 1, 'https://ror.org/03ed7ma04 Urban Upbound'),
(74458, 'https://ror.org/04gyvnw24', 'es', 1, 'https://ror.org/04gyvnw24 Clínica Dávila'),
(74459, 'https://ror.org/005wx2316', 'no_lang_code', 1, 'https://ror.org/005wx2316 Value Farm Consulting (Japan) バリューファーム・コンサルティング'),
(74460, 'https://ror.org/01e7yxy62', 'no_lang_code', 1, 'https://ror.org/01e7yxy62 Vantage Health Solutions (Myanmar)'),
(74461, 'https://ror.org/02tkd3t39', 'de', 1, 'https://ror.org/02tkd3t39 WEK Tierarzt'),
(74462, 'https://ror.org/02jg20617', 'en', 1, 'https://ror.org/02jg20617 Veterinary Serum and Vaccine Research Institute معهد بحوث الامصال واللقاحات البيطرية'),
(74463, 'https://ror.org/00961se81', 'en', 1, 'https://ror.org/00961se81 First Consultants Medical Center'),
(74464, 'https://ror.org/04aczrd15', 'en', 1, 'https://ror.org/04aczrd15 Vietnamese - German Center of Excellence in Medical Research'),
(74465, 'https://ror.org/04k078691', 'it', 1, 'https://ror.org/04k078691 Ospedale D. Cotugno'),
(74466, 'https://ror.org/05q3h1130', 'no_lang_code', 1, 'https://ror.org/05q3h1130 TIB Molbiol (Germany)'),
(74467, 'https://ror.org/03yxxfa18', 'no_lang_code', 1, 'https://ror.org/03yxxfa18 WELLS BIO (United States)'),
(74468, 'https://ror.org/004jhjr33', 'en', 1, 'https://ror.org/004jhjr33 Vinh Phuc Department of Health'),
(74469, 'https://ror.org/00ddsq322', 'no_lang_code', 1, 'https://ror.org/00ddsq322 Viroclinics Biosciences (Netherlands)');
INSERT INTO `rors` VALUES
(74470, 'https://ror.org/03y7pbb54', 'en', 1, 'https://ror.org/03y7pbb54 Trailfinders Travel Clinic'),
(74471, 'https://ror.org/04je4qa93', 'en', 1, 'https://ror.org/04je4qa93 Zambia National Public Health Institute'),
(74472, 'https://ror.org/03ywzsn05', 'no_lang_code', 1, 'https://ror.org/03ywzsn05 Wen''s Food Group (China) 温氏食品集团股份有限公司'),
(74473, 'https://ror.org/052bx1y70', 'fr', 1, 'https://ror.org/052bx1y70 Clinique Vétérinaire Benjamin Franklin'),
(74474, 'https://ror.org/02ad5vq71', 'no_lang_code', 1, 'https://ror.org/02ad5vq71 Winning Health Technology Group (China)'),
(74475, 'https://ror.org/043afjr64', 'en', 1, 'https://ror.org/043afjr64 Women''s Brain Project'),
(74476, 'https://ror.org/021fq8s19', 'en', 1, 'https://ror.org/021fq8s19 The Japanese Society of Gastroenterological Surgery 日本消化器外科学会'),
(74477, 'https://ror.org/01cyp2953', 'no_lang_code', 1, 'https://ror.org/01cyp2953 Xenstats (Poland)'),
(74478, 'https://ror.org/0138a8a04', 'en', 1, 'https://ror.org/0138a8a04 Xianning Central Hospital 咸宁市中心医院'),
(74479, 'https://ror.org/03911p935', 'en', 1, 'https://ror.org/03911p935 World Health Organization - Afghanistan'),
(74480, 'https://ror.org/0292bqz47', 'en', 1, 'https://ror.org/0292bqz47 World Health Organization - Jordan'),
(74481, 'https://ror.org/035g8xb75', 'en', 1, 'https://ror.org/035g8xb75 World Health Organization - Lebanon'),
(74482, 'https://ror.org/005xgxx88', 'en', 1, 'https://ror.org/005xgxx88 World Health Organization - Morocco'),
(74483, 'https://ror.org/00b7zyg88', 'en', 1, 'https://ror.org/00b7zyg88 Museum of Old and New Art'),
(74484, 'https://ror.org/02zcn6j48', 'en', 1, 'https://ror.org/02zcn6j48 World Marrow Donor Association'),
(74485, 'https://ror.org/01ys4k188', 'en', 1, 'https://ror.org/01ys4k188 World Organisation of Family Doctors'),
(74486, 'https://ror.org/03707rf96', 'en', 1, 'https://ror.org/03707rf96 University of Tripoli Al-ahlia جامعة طرابلس الأهلية'),
(74487, 'https://ror.org/01mky9g42', 'en', 1, 'https://ror.org/01mky9g42 Snohomish Health District'),
(74488, 'https://ror.org/02vvkyr96', 'en', 1, 'https://ror.org/02vvkyr96 World Health Organization - Uganda'),
(74489, 'https://ror.org/00mxz0t84', 'no_lang_code', 1, 'https://ror.org/00mxz0t84 Wuhan Amysen Life Technology (China)'),
(74490, 'https://ror.org/04rdvs602', 'en', 1, 'https://ror.org/04rdvs602 Sullivan Nicolaides Pathology'),
(74491, 'https://ror.org/04em1gv44', 'en', 1, 'https://ror.org/04em1gv44 Yamagata Prefectural Institute of Public Health 山形県衛生研究所'),
(74492, 'https://ror.org/052cfvk26', 'en', 1, 'https://ror.org/052cfvk26 Yunnan Provincial Infectious Disease Hospital 云南省传染病专科医院'),
(74493, 'https://ror.org/00qjtn636', 'en', 1, 'https://ror.org/00qjtn636 Qinghai No.3 People''s Hospital 青海省第三人民医院'),
(74494, 'https://ror.org/0124z6a88', 'en', 1, 'https://ror.org/0124z6a88 Baoding People''s Hospital 保定市人民医院'),
(74495, 'https://ror.org/054767b18', 'en', 1, 'https://ror.org/054767b18 Dawu County People''s Hospital 大悟县人民医院'),
(74496, 'https://ror.org/01kqcdh89', 'en', 1, 'https://ror.org/01kqcdh89 Wuhan Pulmonary Hospital 武汉市肺科医院'),
(74497, 'https://ror.org/02xv4ae75', 'de', 1, 'https://ror.org/02xv4ae75 LKH Hochsteiermark'),
(74498, 'https://ror.org/02s7ck732', 'no_lang_code', 1, 'https://ror.org/02s7ck732 Wuhan Hankou Hospital 武汉市汉口医院'),
(74499, 'https://ror.org/00g15v148', 'no_lang_code', 1, 'https://ror.org/00g15v148 Nyangabgwe Referral Hospital'),
(74500, 'https://ror.org/04cv89q08', 'en', 1, 'https://ror.org/04cv89q08 Sukraraj Tropical & Infectious Disease Hospital'),
(74501, 'https://ror.org/0380dcc73', 'en', 1, 'https://ror.org/0380dcc73 Wuhan No. 7 Hospital 武汉市第七医院'),
(74502, 'https://ror.org/01yxkbf55', 'en', 1, 'https://ror.org/01yxkbf55 Xiaogan First People''s Hospital 孝感市第一人民医院'),
(74503, 'https://ror.org/0090yh913', 'en', 1, 'https://ror.org/0090yh913 Xiangshan County First People''s Hospital 象山县第一人民医院'),
(74504, 'https://ror.org/022fy9g59', 'en', 1, 'https://ror.org/022fy9g59 Hefei Infectious Disease Hospital 合肥市传染病医院'),
(74505, 'https://ror.org/03j4gka24', 'en', 1, 'https://ror.org/03j4gka24 Pingliang People''s Hospital 平凉市人民医院'),
(74506, 'https://ror.org/01rbbfm88', 'en', 1, 'https://ror.org/01rbbfm88 Xiamen Blood Center 厦门市中心血站'),
(74507, 'https://ror.org/02sjdcn27', 'no_lang_code', 1, 'https://ror.org/02sjdcn27 Huanggang Central Hospital'),
(74508, 'https://ror.org/04cr34a11', 'en', 1, 'https://ror.org/04cr34a11 Yichang Central People''s Hospital 宜昌市中心人民医院'),
(74509, 'https://ror.org/03xv0cg46', 'en', 1, 'https://ror.org/03xv0cg46 Qingdao Eighth People''s Hospital 青岛市第八人民医院'),
(74510, 'https://ror.org/029mxk035', 'no_lang_code', 1, 'https://ror.org/029mxk035 Wuhan Youfu Hospital 武汉市优抚医院'),
(74511, 'https://ror.org/02x5sw589', 'en', 1, 'https://ror.org/02x5sw589 Anyang Hospital of Traditional Chinese Medicine 安阳市中医院'),
(74512, 'https://ror.org/00e52k684', 'en', 1, 'https://ror.org/00e52k684 Fuyang Second People''s Hospital 阜阳市第二人民医院'),
(74513, 'https://ror.org/00q1p9b30', 'en', 1, 'https://ror.org/00q1p9b30 Southern Tohoku General Hospital 総合南東北病院'),
(74514, 'https://ror.org/054tmk179', 'en', 1, 'https://ror.org/054tmk179 Isaac Newton Group'),
(74515, 'https://ror.org/05p1n6x86', 'en', 1, 'https://ror.org/05p1n6x86 MRC London Institute of Medical Sciences'),
(74516, 'https://ror.org/01egwg173', 'en', 1, 'https://ror.org/01egwg173 UK Astronomy Technology Centre'),
(74517, 'https://ror.org/04frbf545', 'en', 1, 'https://ror.org/04frbf545 Academy of Emergency Medicine and Care'),
(74518, 'https://ror.org/017dx9162', 'no_lang_code', 1, 'https://ror.org/017dx9162 Jiangsu T-mab BioPharma (China) 江苏泰康生物医药有限公司创'),
(74519, 'https://ror.org/0160cqn49', 'en', 1, 'https://ror.org/0160cqn49 Beijing Chang''an Integrated Traditional Chinese and Western Medicine Hospital 北京长安中西医结合医院'),
(74520, 'https://ror.org/028xrre51', 'en', 1, 'https://ror.org/028xrre51 Qujiang People''s Hospital 曲江县人民医院'),
(74521, 'https://ror.org/039zsrs49', 'es', 1, 'https://ror.org/039zsrs49 Instituto Tecnológico de Pabellón de Arteaga'),
(74522, 'https://ror.org/00khsgc96', 'no_lang_code', 1, 'https://ror.org/00khsgc96 The RebornCell (South Korea) 더리본셀'),
(74523, 'https://ror.org/00dpp6p47', 'no_lang_code', 1, 'https://ror.org/00dpp6p47 Caixin (China) 财新传媒'),
(74524, 'https://ror.org/019yx9f29', 'no_lang_code', 1, 'https://ror.org/019yx9f29 Lundin Mining (Canada)'),
(74525, 'https://ror.org/043ajem71', 'en', 1, 'https://ror.org/043ajem71 Catalytic Longevity'),
(74526, 'https://ror.org/03e21p220', 'en', 1, 'https://ror.org/03e21p220 Central Hokkaido Animal Health Center 県央家畜保健衛生所'),
(74527, 'https://ror.org/05rfsjn97', 'pt', 1, 'https://ror.org/05rfsjn97 Unidade Hospitalar de Bragança'),
(74528, 'https://ror.org/03b867n98', 'en', 1, 'https://ror.org/03b867n98 Tengzhou Central People''s Hospital 滕州市中心人民医院'),
(74529, 'https://ror.org/00qtzg544', 'en', 1, 'https://ror.org/00qtzg544 Wuhan Wudong Hospital 武汉市武东医院'),
(74530, 'https://ror.org/02x760e19', 'en', 1, 'https://ror.org/02x760e19 Fuyang Maternity and Child Health Care Hospital 阜阳市妇女儿童医院'),
(74531, 'https://ror.org/05tp04d37', 'no_lang_code', 1, 'https://ror.org/05tp04d37 Gavekal Intelligence Software (France)'),
(74532, 'https://ror.org/04j5ybr94', 'en', 1, 'https://ror.org/04j5ybr94 Henan Bioengineering Technology Research Center 河南省生物工程技术研究中心'),
(74533, 'https://ror.org/00jgaep33', 'es', 1, 'https://ror.org/00jgaep33 Dr. Lucio Meléndez Hospital Zonal General de Agudos'),
(74534, 'https://ror.org/05aacdd70', 'es', 1, 'https://ror.org/05aacdd70 Hospital Piñero'),
(74535, 'https://ror.org/03qvyw596', 'no_lang_code', 1, 'https://ror.org/03qvyw596 Genus (United States)'),
(74536, 'https://ror.org/05abbvq76', 'no_lang_code', 1, 'https://ror.org/05abbvq76 CD-adapco (United States)'),
(74537, 'https://ror.org/00mcaq341', 'no_lang_code', 1, 'https://ror.org/00mcaq341 Indi-Vet (Israel) אינדי-וט'),
(74538, 'https://ror.org/046m3e234', 'en', 1, 'https://ror.org/046m3e234 Public Health Clinical Center of Chengdu 成都市公共卫生临床医疗中心'),
(74539, 'https://ror.org/047x5tz06', 'es', 1, 'https://ror.org/047x5tz06 Incubadora Venezolana de la Ciencia'),
(74540, 'https://ror.org/04119yp22', 'no_lang_code', 1, 'https://ror.org/04119yp22 Ingine (United States)'),
(74541, 'https://ror.org/056f5eh80', 'en', 1, 'https://ror.org/056f5eh80 Arctic Research Center of the Yamal-Nenets Autonomous District Научный центр изучения Арктики'),
(74542, 'https://ror.org/0511c9v88', 'en', 1, 'https://ror.org/0511c9v88 Churapcha State Institute of Physical Education and Sports ФГБОУ ВО Чурапчинский государственный институт физической культуры и спорта'),
(74543, 'https://ror.org/04tms6279', 'en', 1, 'https://ror.org/04tms6279 Guangdong Provincial Center for Disease Control and Prevention 广东省疾病预防控制中心'),
(74544, 'https://ror.org/05vexvt14', 'en', 1, 'https://ror.org/05vexvt14 Koforidua Technical University'),
(74545, 'https://ror.org/043wq2k30', 'en', 1, 'https://ror.org/043wq2k30 East-Siberian Institute of Economics and Management Восточно-сибирский институт экономики и менеджмента'),
(74546, 'https://ror.org/03wam2503', 'no_lang_code', 1, 'https://ror.org/03wam2503 P N Lee Statistics and Computing (United Kingdom)'),
(74547, 'https://ror.org/049wwwm08', 'en', 1, 'https://ror.org/049wwwm08 Environmental Development Centre'),
(74548, 'https://ror.org/059c3m342', 'no_lang_code', 1, 'https://ror.org/059c3m342 Patient Knowhow (United States)'),
(74549, 'https://ror.org/04dkfar71', 'en', 1, 'https://ror.org/04dkfar71 Shenzhen Bao''an District People''s Hospital 深圳市宝安区人民医院'),
(74550, 'https://ror.org/03mwwhq75', 'en', 1, 'https://ror.org/03mwwhq75 Higher School of Innovation Management Высшая школа инновационного менеджмента'),
(74551, 'https://ror.org/0434zpn71', 'en', 1, 'https://ror.org/0434zpn71 International Sámi Film Institute'),
(74552, 'https://ror.org/03nz7py16', 'en', 1, 'https://ror.org/03nz7py16 Italian Society for International Organization Società Italiana Organizzazione Internazionale'),
(74553, 'https://ror.org/03ja1ng46', 'da', 1, 'https://ror.org/03ja1ng46 Nordisk Fond for Miljø og Udvikling'),
(74554, 'https://ror.org/0440hsj80', 'no_lang_code', 1, 'https://ror.org/0440hsj80 Perorsaanermik Ilinniarfik / College of Social Education'),
(74555, 'https://ror.org/00k8bhh21', 'en', 1, 'https://ror.org/00k8bhh21 Polar Libraries Colloquy'),
(74556, 'https://ror.org/01xpf5964', 'en', 1, 'https://ror.org/01xpf5964 Sámi High School and Reindeer Husbandry School'),
(74557, 'https://ror.org/03dvxen85', 'no_lang_code', 1, 'https://ror.org/03dvxen85 Syktyvkar Forest Institute Сыктывкарский Лесной Институт'),
(74558, 'https://ror.org/039ayww40', 'en', 1, 'https://ror.org/039ayww40 The Yellow Tulip Project'),
(74559, 'https://ror.org/04swxte59', 'it', 1, 'https://ror.org/04swxte59 Scuola Superiore Meridionale'),
(74560, 'https://ror.org/036amgv56', 'en', 1, 'https://ror.org/036amgv56 London Borough of Hackney'),
(74561, 'https://ror.org/00hv1r627', 'en', 1, 'https://ror.org/00hv1r627 Shenzhen Research Institute of China University of Geosciences 中国地质大学深圳研究院'),
(74562, 'https://ror.org/01p5vg276', 'no_lang_code', 1, 'https://ror.org/01p5vg276 Centro Nacional de Endemias'),
(74563, 'https://ror.org/03ncps145', 'en', 1, 'https://ror.org/03ncps145 University of Torbat Heydarieh دانشگاه تربت حیدریه'),
(74564, 'https://ror.org/04p6vt455', 'no_lang_code', 1, 'https://ror.org/04p6vt455 Enveda Therapeutics (United States)'),
(74565, 'https://ror.org/0258gkt32', 'en', 1, 'https://ror.org/0258gkt32 Mohamed bin Zayed University of Artificial Intelligence جامعة محمد بن زايد للذكاء الاصطناعي'),
(74566, 'https://ror.org/032nt3q40', 'no_lang_code', 1, 'https://ror.org/032nt3q40 Nikken Sekkei (Japan) 日建設計'),
(74567, 'https://ror.org/00m73vh91', 'no_lang_code', 1, 'https://ror.org/00m73vh91 RS Global (Poland)'),
(74568, 'https://ror.org/00faxb822', 'no_lang_code', 1, 'https://ror.org/00faxb822 DIGIBÍS (Spain)'),
(74569, 'https://ror.org/002bpzx43', 'no_lang_code', 1, 'https://ror.org/002bpzx43 Taro Pharmaceuticals (Israel)'),
(74570, 'https://ror.org/00czdkn85', 'en', 1, 'https://ror.org/00czdkn85 Eskişehir City Hospital Eskişehir Şehir Hastanesi'),
(74571, 'https://ror.org/03z9xj602', 'no_lang_code', 1, 'https://ror.org/03z9xj602 Actigen (United Kingdom)'),
(74572, 'https://ror.org/02t1hg644', 'no_lang_code', 1, 'https://ror.org/02t1hg644 Dantec Dynamics (Denmark)'),
(74573, 'https://ror.org/03r9jkk29', 'no_lang_code', 1, 'https://ror.org/03r9jkk29 Swarco (Austria)'),
(74574, 'https://ror.org/04bt02d30', 'en', 1, 'https://ror.org/04bt02d30 Hebei Provincial Center for Disease Control and Prevention 河北省疾病预防控制中心'),
(74575, 'https://ror.org/00z3pae83', 'en', 1, 'https://ror.org/00z3pae83 Beijing Fengtai Disease Prevention and Control Center 北京市丰台区疾病预防控制中心'),
(74576, 'https://ror.org/00g3f8n09', 'en', 1, 'https://ror.org/00g3f8n09 Ningbo Center for Disease Control and Prevention 宁波市疾病预防控制中心'),
(74577, 'https://ror.org/007jnt575', 'en', 1, 'https://ror.org/007jnt575 Guangzhou Center for Disease Control and Prevention 广州市疾病预防控制中心'),
(74578, 'https://ror.org/0197nmp73', 'en', 1, 'https://ror.org/0197nmp73 Hubei Provincial Center for Disease Control and Prevention 湖北省疾病预防控制中心'),
(74579, 'https://ror.org/0066efq29', 'en', 1, 'https://ror.org/0066efq29 Hunan Provincial Center for Disease Control and Prevention 湖南省疾病预防控制中心)'),
(74580, 'https://ror.org/020w9yc61', 'en', 1, 'https://ror.org/020w9yc61 Mianyang City Center for Disease Control and Prevention 绵阳市疾病预防控制中心'),
(74581, 'https://ror.org/02e1p7g90', 'en', 1, 'https://ror.org/02e1p7g90 Liu Zhou Center for Disease Prevention and Control 柳州疾病预防控制中心'),
(74582, 'https://ror.org/03gdvgj95', 'en', 1, 'https://ror.org/03gdvgj95 Nanjing Municipal Center for Disease Control And Prevention 南京市疾病预防控制中心'),
(74583, 'https://ror.org/03wneb138', 'en', 1, 'https://ror.org/03wneb138 National Institute for Parasitic Diseases'),
(74584, 'https://ror.org/02xnb4v27', 'en', 1, 'https://ror.org/02xnb4v27 National Center for AIDS/STD Control and Prevention,China CDC 性病艾滋病预防控制中心'),
(74585, 'https://ror.org/01v171a61', 'en', 1, 'https://ror.org/01v171a61 National Center for Women and Children’s Health, China CDC 中国疾病预防控制中心妇幼保健中心'),
(74586, 'https://ror.org/04f7g6845', 'en', 1, 'https://ror.org/04f7g6845 National Institute for Communicable Disease Control and Prevention 中国疾病预防控制中心传染病预防控制所'),
(74587, 'https://ror.org/05whjqq05', 'en', 1, 'https://ror.org/05whjqq05 National Institute for Radiological Protection 中国疾病预防控制中心辐射防护与核安全医学所'),
(74588, 'https://ror.org/05n5mmr26', 'en', 1, 'https://ror.org/05n5mmr26 National Institute for Occupational Health and Poison Control 中国疾病预防控制中心职业卫生与中毒控制所'),
(74589, 'https://ror.org/05eb58w69', 'en', 1, 'https://ror.org/05eb58w69 Ningxia Center for Diseases Prevention and Control 宁夏回族自治区疾病预防控制中心'),
(74590, 'https://ror.org/03jc5ts66', 'no_lang_code', 1, 'https://ror.org/03jc5ts66 Tronox (United States)'),
(74591, 'https://ror.org/005mgvs97', 'en', 1, 'https://ror.org/005mgvs97 Shenyang Center for Disease Control and Prevention 沈阳市疾病预防控制中心'),
(74592, 'https://ror.org/013a5fa56', 'en', 1, 'https://ror.org/013a5fa56 Jinshan Hospital of Fudan University 复旦大学附属金山医院'),
(74593, 'https://ror.org/00tt3wc55', 'en', 1, 'https://ror.org/00tt3wc55 Xinjiang Uygur Autonomous Region Disease Prevention and Control Center 新疆维吾尔自治区疾病预防控制中心'),
(74594, 'https://ror.org/02xy6bg05', 'en', 1, 'https://ror.org/02xy6bg05 Inner Mongolia Comprehensive Disease Prevention and Control Center 内蒙古综合疾病预防控制中心'),
(74595, 'https://ror.org/02e8jz218', 'no_lang_code', 1, 'https://ror.org/02e8jz218 Lhoist (Belgium)'),
(74596, 'https://ror.org/00983c961', 'en', 1, 'https://ror.org/00983c961 Xian Center for Disease Control and Prevention 西安市疾病预防控制中心'),
(74597, 'https://ror.org/02qdc7q41', 'en', 1, 'https://ror.org/02qdc7q41 Yunnan Center for Disease Control And Prevention 云南省疾病预防控制中心'),
(74598, 'https://ror.org/05jxaw651', 'en', 1, 'https://ror.org/05jxaw651 Marine Ecology and Telemetry Research'),
(74599, 'https://ror.org/01fcvr303', 'en', 1, 'https://ror.org/01fcvr303 Gifu Academy of Forest Science and Culture 岐阜県立森林文化アカデミー'),
(74600, 'https://ror.org/00scx1h10', 'en', 1, 'https://ror.org/00scx1h10 Health Education England'),
(74601, 'https://ror.org/01r58sr54', 'en', 1, 'https://ror.org/01r58sr54 National Center for Chronic and Noncommunicable Disease Control and Prevention 中国疾病预防控制中心慢性非传染性疾病预防控制中心'),
(74602, 'https://ror.org/05f1h4751', 'es', 1, 'https://ror.org/05f1h4751 Escuela Internacional de Negocios y Desarrollo Empresarial de Colombia'),
(74603, 'https://ror.org/0218xmz21', 'en', 1, 'https://ror.org/0218xmz21 Shenzhen Chronic Disease Prevention Center 深圳市慢性病防治中心'),
(74604, 'https://ror.org/05bk8br84', 'es', 1, 'https://ror.org/05bk8br84 Para La Tierra'),
(74605, 'https://ror.org/052sgg612', 'en', 1, 'https://ror.org/052sgg612 Arthur Rylah Institute for Environmental Research'),
(74606, 'https://ror.org/00wvyk770', 'en', 1, 'https://ror.org/00wvyk770 Guanacaste Conservation Area Área de Conservación Guanacaste'),
(74607, 'https://ror.org/015f8tz43', 'en', 1, 'https://ror.org/015f8tz43 North Dakota Game and Fish Department'),
(74608, 'https://ror.org/049n7x086', 'en', 1, 'https://ror.org/049n7x086 Government College Kodanchery ഗവണ്മെന്റ് കോളേജ്, കോടഞ്ചേരി'),
(74609, 'https://ror.org/04sbxpy59', 'pt', 1, 'https://ror.org/04sbxpy59 Instituto de Conservação de Animais Silvestres'),
(74610, 'https://ror.org/04t8dcc90', 'en', 1, 'https://ror.org/04t8dcc90 Staffin Dinosaur Museum'),
(74611, 'https://ror.org/00p77dx36', 'en', 1, 'https://ror.org/00p77dx36 Usambara Field Studies Centre'),
(74612, 'https://ror.org/00451sn96', 'en', 1, 'https://ror.org/00451sn96 Alberta Biodiversity Monitoring Institute'),
(74613, 'https://ror.org/02k38kx21', 'en', 1, 'https://ror.org/02k38kx21 British Astronomical Association'),
(74614, 'https://ror.org/05d2a8p70', 'en', 1, 'https://ror.org/05d2a8p70 Golden West College'),
(74615, 'https://ror.org/02me45833', 'no_lang_code', 1, 'https://ror.org/02me45833 Plastal (Sweden)'),
(74616, 'https://ror.org/020v32r42', 'no_lang_code', 1, 'https://ror.org/020v32r42 Royal HaskoningDHV (Netherlands)'),
(74617, 'https://ror.org/02gv1pt92', 'no_lang_code', 1, 'https://ror.org/02gv1pt92 EVRAZ (United Kingdom)'),
(74618, 'https://ror.org/008n7jx79', 'en', 1, 'https://ror.org/008n7jx79 Institute of Sustainable Development, Environmental & Scientific Research'),
(74619, 'https://ror.org/05p3mxk21', 'en', 1, 'https://ror.org/05p3mxk21 Associação Portuguesa para a Diversidade da Videira Portuguese Association for the Conservation of Grapevine Diversity'),
(74620, 'https://ror.org/00e1xxm21', 'no_lang_code', 1, 'https://ror.org/00e1xxm21 Sogrape Vinhos (Portugal)'),
(74621, 'https://ror.org/051kay419', 'en', 1, 'https://ror.org/051kay419 Yandex School of Data Analysis Школа анализа данных'),
(74622, 'https://ror.org/02fzm7221', 'no_lang_code', 1, 'https://ror.org/02fzm7221 Gestamp (Spain)'),
(74623, 'https://ror.org/047dnad80', 'no_lang_code', 1, 'https://ror.org/047dnad80 Cemex (Mexico)'),
(74624, 'https://ror.org/0075t0c68', 'no_lang_code', 1, 'https://ror.org/0075t0c68 Wienerberger (Austria)'),
(74625, 'https://ror.org/014cg2q58', 'no_lang_code', 1, 'https://ror.org/014cg2q58 Atotech (Germany)'),
(74626, 'https://ror.org/05d236h53', 'no_lang_code', 1, 'https://ror.org/05d236h53 KRONOS (United States)'),
(74627, 'https://ror.org/01dj88q67', 'no_lang_code', 1, 'https://ror.org/01dj88q67 Besins Healthcare (Thailand)'),
(74628, 'https://ror.org/058zth179', 'no_lang_code', 1, 'https://ror.org/058zth179 Fiat Chrysler Automobiles (Japan)'),
(74629, 'https://ror.org/02vt89g81', 'no_lang_code', 1, 'https://ror.org/02vt89g81 Norgine (Netherlands)'),
(74630, 'https://ror.org/05hj93b82', 'no_lang_code', 1, 'https://ror.org/05hj93b82 HOBAS (Germany)'),
(74631, 'https://ror.org/04q3t9f84', 'no_lang_code', 1, 'https://ror.org/04q3t9f84 Saurer (Switzerland)'),
(74632, 'https://ror.org/059ze4t74', 'en', 1, 'https://ror.org/059ze4t74 German Data Forum Rat für Sozial- und Wirtschaftsdaten'),
(74633, 'https://ror.org/05sxwnt46', 'en', 1, 'https://ror.org/05sxwnt46 American Institute for Behavioral Research and Technology'),
(74634, 'https://ror.org/03q3a0475', 'no_lang_code', 1, 'https://ror.org/03q3a0475 General Electric (Netherlands)'),
(74635, 'https://ror.org/01rsndm95', 'en', 1, 'https://ror.org/01rsndm95 James Lind Institute'),
(74636, 'https://ror.org/0058ctf29', 'en', 1, 'https://ror.org/0058ctf29 Consortium of European Taxonomic Facilities'),
(74637, 'https://ror.org/045qf3j54', 'en', 1, 'https://ror.org/045qf3j54 Center for Security and Emerging Technology'),
(74638, 'https://ror.org/033ztm745', 'fr', 1, 'https://ror.org/033ztm745 Fondation Botnar'),
(74639, 'https://ror.org/01sah3s84', 'no_lang_code', 1, 'https://ror.org/01sah3s84 Mountain Data Group (United States)'),
(74640, 'https://ror.org/03kdbx663', 'en', 1, 'https://ror.org/03kdbx663 Hummingbird Monitoring Network'),
(74641, 'https://ror.org/046em8f15', 'en', 1, 'https://ror.org/046em8f15 Wyoming Game and Fish Department'),
(74642, 'https://ror.org/02758ch83', 'en', 1, 'https://ror.org/02758ch83 Alaska Wildlife Alliance'),
(74643, 'https://ror.org/039kcn609', 'en', 1, 'https://ror.org/039kcn609 Direktoratet for Strålevern og Atomtryggleik Norwegian Radiation and Nuclear Safety Authority'),
(74644, 'https://ror.org/05fh0et33', 'es', 1, 'https://ror.org/05fh0et33 Tierra Verde Naturaleza y Cultura Tierra Verde Nature and Culture'),
(74645, 'https://ror.org/03b57r242', 'no_lang_code', 1, 'https://ror.org/03b57r242 Himalayan Biodiversity Network'),
(74646, 'https://ror.org/0347csc19', 'en', 1, 'https://ror.org/0347csc19 East Foundation'),
(74647, 'https://ror.org/01dx2f060', 'fr', 1, 'https://ror.org/01dx2f060 Nature Environnement 17'),
(74648, 'https://ror.org/056bdp761', 'en', 1, 'https://ror.org/056bdp761 Indonesian Orthopaedic Association Perkumpulan Ahli Bedah Orthopaedi Indonesia'),
(74649, 'https://ror.org/00r2x0p54', 'no_lang_code', 1, 'https://ror.org/00r2x0p54 Biomark (United States)'),
(74650, 'https://ror.org/02xxmzs04', 'en', 1, 'https://ror.org/02xxmzs04 Wildlife Vets International'),
(74651, 'https://ror.org/03vjrde80', 'fr', 1, 'https://ror.org/03vjrde80 Institut Universitaire du Golfe de Guinée University Institute of the Gulf of Guinea'),
(74652, 'https://ror.org/01v7fn691', 'es', 1, 'https://ror.org/01v7fn691 Guyra Paraguay'),
(74653, 'https://ror.org/02f33m021', 'en', 1, 'https://ror.org/02f33m021 Carnegie Mellon University Africa'),
(74654, 'https://ror.org/02a54nf13', 'fr', 1, 'https://ror.org/02a54nf13 École Nationale Supérieure de Statistique et d''Économie Appliquée'),
(74655, 'https://ror.org/03fcb4d35', 'fr', 1, 'https://ror.org/03fcb4d35 Pigier Côte d''Ivoire'),
(74656, 'https://ror.org/02nv4cj15', 'no_lang_code', 1, 'https://ror.org/02nv4cj15 JSC R&D Center "Applied Logistics" (Russia) Прикладная логистика'),
(74657, 'https://ror.org/04yzyf194', 'en', 1, 'https://ror.org/04yzyf194 Mahatma Gandhi University'),
(74658, 'https://ror.org/006vvm489', 'fr', 1, 'https://ror.org/006vvm489 Institut Universitaire d''Abidjan'),
(74659, 'https://ror.org/00ne4ap63', 'fr', 1, 'https://ror.org/00ne4ap63 Université Tertiaire et Technologique-Lokko'),
(74660, 'https://ror.org/0358nsq19', 'fr', 1, 'https://ror.org/0358nsq19 Université Pelefero Gon Coulibaly'),
(74661, 'https://ror.org/0510rka91', 'en', 1, 'https://ror.org/0510rka91 Adwa-Pan African University ዓድዋ ፓን ኣፍሪካ ዩኒቨርሲቲ'),
(74662, 'https://ror.org/02k9trd04', 'en', 1, 'https://ror.org/02k9trd04 Pan African Institute for Development'),
(74663, 'https://ror.org/001q6ph30', 'en', 1, 'https://ror.org/001q6ph30 Barajas Clinic Clínica Barajas'),
(74664, 'https://ror.org/01radym16', 'en', 1, 'https://ror.org/01radym16 Institute of Agro-Products Processing Science and Technology 中国农业科学院农产品加工所'),
(74665, 'https://ror.org/05y77as28', 'no_lang_code', 1, 'https://ror.org/05y77as28 University Medical Pharmaceuticals (United States)'),
(74666, 'https://ror.org/0238awh09', 'no_lang_code', 1, 'https://ror.org/0238awh09 UNE Partnerships (Australia)'),
(74667, 'https://ror.org/01xpcj978', 'no_lang_code', 1, 'https://ror.org/01xpcj978 Severn Glocon Group (United Kingdom)'),
(74668, 'https://ror.org/01hzs1h88', 'no_lang_code', 1, 'https://ror.org/01hzs1h88 Universalbeton Heringen (Germany)'),
(74669, 'https://ror.org/04w8sxm43', 'en', 1, 'https://ror.org/04w8sxm43 University Hospitals of Derby and Burton NHS Foundation Trust'),
(74670, 'https://ror.org/020cha924', 'no_lang_code', 1, 'https://ror.org/020cha924 Universal-Kugellager-Fabrik (Germany)'),
(74671, 'https://ror.org/04yhhm579', 'no_lang_code', 1, 'https://ror.org/04yhhm579 Universal Music Group (United States)'),
(74672, 'https://ror.org/036q44x34', 'en', 1, 'https://ror.org/036q44x34 Babylon Health'),
(74673, 'https://ror.org/048gb8620', 'es', 1, 'https://ror.org/048gb8620 Centro Tecnológico Avanzado de La Piedra'),
(74674, 'https://ror.org/02wcq1q49', 'es', 1, 'https://ror.org/02wcq1q49 Fundacio Investigacio Hospital General Universitari De Valencia'),
(74675, 'https://ror.org/04730gw90', 'en', 1, 'https://ror.org/04730gw90 Marine Technical College 海技大学校'),
(74676, 'https://ror.org/00zev5680', 'fr', 1, 'https://ror.org/00zev5680 Agitel-Formation'),
(74677, 'https://ror.org/044r8r947', 'no_lang_code', 1, 'https://ror.org/044r8r947 Ghana Institute of Languages'),
(74678, 'https://ror.org/02ghmtw61', 'en', 1, 'https://ror.org/02ghmtw61 Loyola University of Congo Université Loyola du Congo'),
(74679, 'https://ror.org/00f330z90', 'en', 1, 'https://ror.org/00f330z90 Poma International Business University'),
(74680, 'https://ror.org/02yh27171', 'en', 1, 'https://ror.org/02yh27171 Edexcel University Institut Universitaire Edexcel du Bénin'),
(74681, 'https://ror.org/0282sdt33', 'fr', 1, 'https://ror.org/0282sdt33 African University For Cooperative Development Université Africaine de Développement Coopératif'),
(74682, 'https://ror.org/03qb80p98', 'fr', 1, 'https://ror.org/03qb80p98 New Dawn University Université Aube Nouvelle'),
(74683, 'https://ror.org/03sd2sw82', 'no_lang_code', 1, 'https://ror.org/03sd2sw82 Stella Maris Polytechnic'),
(74684, 'https://ror.org/030zkp092', 'pt', 1, 'https://ror.org/030zkp092 Instituto Superior de Ciências de Educação à Distância'),
(74685, 'https://ror.org/02ngq1848', 'en', 1, 'https://ror.org/02ngq1848 DMI-St. John the Baptist University'),
(74686, 'https://ror.org/0419b0d30', 'en', 1, 'https://ror.org/0419b0d30 Abrar University جامعة أبرار'),
(74687, 'https://ror.org/01zmbg994', 'en', 1, 'https://ror.org/01zmbg994 Plasma University'),
(74688, 'https://ror.org/054qz6938', 'fr', 1, 'https://ror.org/054qz6938 École de Gouvernance et d''Économie de Rabat'),
(74689, 'https://ror.org/00zpwvr27', 'en', 1, 'https://ror.org/00zpwvr27 Horseed International University'),
(74690, 'https://ror.org/018saep26', 'fr', 1, 'https://ror.org/018saep26 École de Formation aux Carrières de Santé'),
(74691, 'https://ror.org/05cteqc05', 'en', 1, 'https://ror.org/05cteqc05 Somali International University'),
(74692, 'https://ror.org/01t876c68', 'en', 1, 'https://ror.org/01t876c68 Hormuud University'),
(74693, 'https://ror.org/02q4zda14', 'en', 1, 'https://ror.org/02q4zda14 Derby College'),
(74694, 'https://ror.org/02ddsx922', 'fr', 1, 'https://ror.org/02ddsx922 Institut Supérieur de l''Informatique et de Gestion'),
(74695, 'https://ror.org/04gfkf394', 'en', 1, 'https://ror.org/04gfkf394 National Centre for Clinical Research on Emerging Drugs'),
(74696, 'https://ror.org/044ydn458', 'en', 1, 'https://ror.org/044ydn458 Brazilian Institute of Neuroscience and Neurotechnology Instituto Brasileiro de Neurociência e Neurotecnologia'),
(74697, 'https://ror.org/0366hg892', 'en', 1, 'https://ror.org/0366hg892 Zambia Forestry College'),
(74698, 'https://ror.org/05ervsk64', 'en', 1, 'https://ror.org/05ervsk64 Supershine University'),
(74699, 'https://ror.org/0278qhr30', 'en', 1, 'https://ror.org/0278qhr30 Northlake Behavioral Health System'),
(74700, 'https://ror.org/02bkncc34', 'en', 1, 'https://ror.org/02bkncc34 The Egyptian Society of Hematology and Research الجمعية المصرية لأمراض الدم والبحوث'),
(74701, 'https://ror.org/054tr5c63', 'en', 1, 'https://ror.org/054tr5c63 Center for Inherited Blood Disorders'),
(74702, 'https://ror.org/02zyr1680', 'nl', 1, 'https://ror.org/02zyr1680 Beatrix Kinderziekenhuis'),
(74703, 'https://ror.org/03j5g5d55', 'nl', 1, 'https://ror.org/03j5g5d55 De Kinderkliniek'),
(74704, 'https://ror.org/02xmm1048', 'nl', 1, 'https://ror.org/02xmm1048 Willem-Alexander Kinderziekenhuis'),
(74705, 'https://ror.org/05yf3p710', 'en', 1, 'https://ror.org/05yf3p710 Egyptian Society of Laboratory Medicine الجمعية المصرية للطب المعملى'),
(74706, 'https://ror.org/046qhgy77', 'no_lang_code', 1, 'https://ror.org/046qhgy77 4D Pharma (United Kingdom)'),
(74707, 'https://ror.org/05br03w78', 'no_lang_code', 1, 'https://ror.org/05br03w78 Pflüger (Germany)'),
(74708, 'https://ror.org/006nx0g64', 'no_lang_code', 1, 'https://ror.org/006nx0g64 6 Dimensions Capital (United States)'),
(74709, 'https://ror.org/044t1vj04', 'no_lang_code', 1, 'https://ror.org/044t1vj04 ABEnzymes (Germany)'),
(74710, 'https://ror.org/01at1hy26', 'no_lang_code', 1, 'https://ror.org/01at1hy26 Amazentis (Switzerland)'),
(74711, 'https://ror.org/01r1pft76', 'no_lang_code', 1, 'https://ror.org/01r1pft76 Ambrx (United States)'),
(74712, 'https://ror.org/015vyg314', 'en', 1, 'https://ror.org/015vyg314 The National Institute of Neuromotor System المعهد القومي للجهاز الحركي العصبي'),
(74713, 'https://ror.org/00xr96s24', 'no_lang_code', 1, 'https://ror.org/00xr96s24 AIR Worldwide (United States)'),
(74714, 'https://ror.org/008h8bh21', 'no_lang_code', 1, 'https://ror.org/008h8bh21 Astellas Pharma (China) 安斯泰来制药'),
(74715, 'https://ror.org/049d04r12', 'no_lang_code', 1, 'https://ror.org/049d04r12 Arrakis Therapeutics (United States)'),
(74716, 'https://ror.org/03skc1w23', 'no_lang_code', 1, 'https://ror.org/03skc1w23 Boehringer Ingelheim (Philippines)'),
(74717, 'https://ror.org/00x27fn54', 'no_lang_code', 1, 'https://ror.org/00x27fn54 Advania (Sweden)'),
(74718, 'https://ror.org/04vmth013', 'no_lang_code', 1, 'https://ror.org/04vmth013 Sensorion (France)'),
(74719, 'https://ror.org/020cadp55', 'no_lang_code', 1, 'https://ror.org/020cadp55 Urkund (Sweden)'),
(74720, 'https://ror.org/03x1nzy67', 'no_lang_code', 1, 'https://ror.org/03x1nzy67 NHN (South Korea) 엔에이치엔 주식회사'),
(74721, 'https://ror.org/05hpj1j78', 'en', 1, 'https://ror.org/05hpj1j78 Egyptian Engineers Syndicate نقابة المهندسين المصرية'),
(74722, 'https://ror.org/015xh0s12', 'en', 1, 'https://ror.org/015xh0s12 Biosciences Research Support Foundation'),
(74723, 'https://ror.org/00d2zfh55', 'en', 1, 'https://ror.org/00d2zfh55 Departament Federal da Giustia e Polizia Dipartimento Federale di Giustizia e Polizia Département Fédéral de Justice et Police Eidgenössisches Justiz- und Polizeidepartement Federal Department of Justice and Police'),
(74724, 'https://ror.org/01rtttn28', 'en', 1, 'https://ror.org/01rtttn28 AINET Association of English Teachers'),
(74725, 'https://ror.org/05ccdc018', 'en', 1, 'https://ror.org/05ccdc018 Asociación Colombiana de Cirugía Colombian Association of Surgery'),
(74726, 'https://ror.org/02h9rwy26', 'es', 1, 'https://ror.org/02h9rwy26 Asociación Colombiana de Dermatología y Cirugía Dermatológica Colombian Association of Dermatology and Dermatological Surgery'),
(74727, 'https://ror.org/02ahhqv73', 'es', 1, 'https://ror.org/02ahhqv73 Asociación Colombiana de Facultades de Ingeniería Association of Colombian Faculties of Engineering'),
(74728, 'https://ror.org/05wvw5722', 'es', 1, 'https://ror.org/05wvw5722 Asociación Colombiana de Gastroenterología Colombian Association of Gastroenterology'),
(74729, 'https://ror.org/050gvvk80', 'es', 1, 'https://ror.org/050gvvk80 Asociación Colombiana de Nefrología e Hipertensión Arterial Colombian Association of Nephrology and Arterial Hypertension'),
(74730, 'https://ror.org/006efxj37', 'es', 1, 'https://ror.org/006efxj37 Confederación Latinoamericana de Religiosos Latin American and Caribbean Confederation of Religious Orders'),
(74731, 'https://ror.org/05cgahx56', 'en', 1, 'https://ror.org/05cgahx56 Colombian Army Military Academy "General José María Córdova" Escuela Militar de Cadetes General José María Córdova'),
(74732, 'https://ror.org/02fcfe885', 'es', 1, 'https://ror.org/02fcfe885 Escuela Superior de Guerra'),
(74733, 'https://ror.org/03rf5a761', 'es', 1, 'https://ror.org/03rf5a761 Colombian Federation of Obstetrics and Gynecology Federación Colombiana de Obstetricia y Ginecología'),
(74734, 'https://ror.org/013deq447', 'es', 1, 'https://ror.org/013deq447 Federación de Aseguradores Colombianos Federation of Colombian Insurers'),
(74735, 'https://ror.org/04nagxm86', 'en', 1, 'https://ror.org/04nagxm86 Colombian Institute of Anthropology and History Instituto Colombiano de Antropología e Historia'),
(74736, 'https://ror.org/04bphxp67', 'en', 1, 'https://ror.org/04bphxp67 Jesuit Centre for Theological Reflection'),
(74737, 'https://ror.org/02zsyv822', 'en', 1, 'https://ror.org/02zsyv822 Parliament of Ghana'),
(74738, 'https://ror.org/04py0zz23', 'nl', 1, 'https://ror.org/04py0zz23 Natural History Museum Brabant Natuurmuseum Brabant'),
(74739, 'https://ror.org/033xktk71', 'en', 1, 'https://ror.org/033xktk71 Electoral Institute for Sustainable Democracy in Africa'),
(74740, 'https://ror.org/03ss4v007', 'en', 1, 'https://ror.org/03ss4v007 Policy Center for the New South'),
(74741, 'https://ror.org/02bkvx667', 'en', 1, 'https://ror.org/02bkvx667 Research ICT Africa'),
(74742, 'https://ror.org/00ydhd623', 'en', 1, 'https://ror.org/00ydhd623 Institute for Global Dialogue'),
(74743, 'https://ror.org/010qfgc60', 'en', 1, 'https://ror.org/010qfgc60 African Heritage Institution'),
(74744, 'https://ror.org/04p79q706', 'en', 1, 'https://ror.org/04p79q706 African Centre for the Constructive Resolution of Disputes'),
(74745, 'https://ror.org/01yrg4t37', 'en', 1, 'https://ror.org/01yrg4t37 Partnership for Economic Policy'),
(74746, 'https://ror.org/00recnr76', 'en', 1, 'https://ror.org/00recnr76 Centre for Democracy and Development'),
(74747, 'https://ror.org/00dkekd57', 'en', 1, 'https://ror.org/00dkekd57 Institute of Economic Affairs, Ghana'),
(74748, 'https://ror.org/043mt5433', 'en', 1, 'https://ror.org/043mt5433 Organization for Social Science Research in Eastern and Southern Africa'),
(74749, 'https://ror.org/00exc4v70', 'fr', 1, 'https://ror.org/00exc4v70 Institut Amadeus'),
(74750, 'https://ror.org/05w9sm057', 'en', 1, 'https://ror.org/05w9sm057 Advocates Coalition for Development and Environment'),
(74751, 'https://ror.org/01v7g3220', 'en', 1, 'https://ror.org/01v7g3220 Flemish Advisory Council for Innovation & Enterprise Vlaamse Adviesraad voor Innoveren en Ondernemen'),
(74752, 'https://ror.org/02tygfm80', 'en', 1, 'https://ror.org/02tygfm80 Institute of Policy Analysis and Research - Rwanda'),
(74753, 'https://ror.org/03r9xsc20', 'en', 1, 'https://ror.org/03r9xsc20 Zambia Institute for Policy Analysis and Research'),
(74754, 'https://ror.org/04trsx227', 'en', 1, 'https://ror.org/04trsx227 Somali Institute for Development Research and Analysis'),
(74755, 'https://ror.org/01eg7wt17', 'en', 1, 'https://ror.org/01eg7wt17 Centre for Humanitarian Dialogue'),
(74756, 'https://ror.org/04rgtd041', 'en', 1, 'https://ror.org/04rgtd041 Horn Economic and Social Policy Institute'),
(74757, 'https://ror.org/01cxprv64', 'en', 1, 'https://ror.org/01cxprv64 Initiative Prospective Agricole et Rurale'),
(74758, 'https://ror.org/02xmsdw39', 'en', 1, 'https://ror.org/02xmsdw39 International Centre for Tax and Development'),
(74759, 'https://ror.org/00am9gf93', 'en', 1, 'https://ror.org/00am9gf93 Southern African Migration Programme'),
(74760, 'https://ror.org/0350qsk51', 'af', 1, 'https://ror.org/0350qsk51 Twende Mbele'),
(74761, 'https://ror.org/011se0j84', 'en', 1, 'https://ror.org/011se0j84 African Forum and Network on Debt and Development'),
(74762, 'https://ror.org/05ax1zq53', 'en', 1, 'https://ror.org/05ax1zq53 Kofi Annan International Peacekeeping Training Centre'),
(74763, 'https://ror.org/04mbzh492', 'en', 1, 'https://ror.org/04mbzh492 Nigerian Institute of International Affairs'),
(74764, 'https://ror.org/04edkgm69', 'en', 1, 'https://ror.org/04edkgm69 Centre for the Study of the Economies of Africa'),
(74765, 'https://ror.org/01zsz0b12', 'en', 1, 'https://ror.org/01zsz0b12 Institute for Justice and Reconciliation'),
(74766, 'https://ror.org/01camqg73', 'en', 1, 'https://ror.org/01camqg73 Tana High-Level Forum on Security in Africa'),
(74767, 'https://ror.org/00x8kv449', 'en', 1, 'https://ror.org/00x8kv449 Reality of Aid Africa Network'),
(74768, 'https://ror.org/0220w7a74', 'fr', 1, 'https://ror.org/0220w7a74 Centre D''analyse et de Recherche sur les Politiques Economiques et Sociales du Cameroun'),
(74769, 'https://ror.org/041n1pp62', 'en', 1, 'https://ror.org/041n1pp62 SouthSouthNorth'),
(74770, 'https://ror.org/01djh3v47', 'fr', 1, 'https://ror.org/01djh3v47 Centre Autonome d''Etudes et de Renforcement des capacités pour le Développement au Togo'),
(74771, 'https://ror.org/01sw43c97', 'no_lang_code', 1, 'https://ror.org/01sw43c97 Centre for Conflict Management and Transformation'),
(74772, 'https://ror.org/0539w9883', 'en', 1, 'https://ror.org/0539w9883 Eswatini Economic Policy Analysis and Research Centre'),
(74773, 'https://ror.org/01p27zg23', 'fr', 1, 'https://ror.org/01p27zg23 Centre Africain d’Etudes Internationales Diplomatiques Economiques et Stratégiques'),
(74774, 'https://ror.org/001zxk082', 'en', 1, 'https://ror.org/001zxk082 Centre for Natural Resource Governance'),
(74775, 'https://ror.org/02ce1xw45', 'fr', 1, 'https://ror.org/02ce1xw45 Groupe de Recherche et d’Analyse Appliquées pour le Développement'),
(74776, 'https://ror.org/03yqyyy69', 'en', 1, 'https://ror.org/03yqyyy69 United Nations Economic and Social Commission for Western Asia الإسكوا'),
(74777, 'https://ror.org/02gahgd10', 'en', 1, 'https://ror.org/02gahgd10 The Initiative for Equal Rights'),
(74778, 'https://ror.org/004de7504', 'en', 1, 'https://ror.org/004de7504 Burkina Faso Ministry of the Environment, Green Economy, and Climate Change Ministère de L''Environnement, de l''Economie verte et du Changement Climatique'),
(74779, 'https://ror.org/00b6x1q17', 'en', 1, 'https://ror.org/00b6x1q17 Hans Litten Archive Hans-Litten-Archiv'),
(74780, 'https://ror.org/0168c7237', 'en', 1, 'https://ror.org/0168c7237 State Public Scientific Technological Library of Siberian Branch of Russian Academy of Sciences Государственная публичная научно-техническая библиотека СО РАН'),
(74781, 'https://ror.org/01ky9e908', 'es', 1, 'https://ror.org/01ky9e908 Instituto Superior Tecnológico Loja'),
(74782, 'https://ror.org/04340dw19', 'en', 1, 'https://ror.org/04340dw19 euroCRIS'),
(74783, 'https://ror.org/00v8tjj64', 'de', 1, 'https://ror.org/00v8tjj64 Halle Zoo Zoologischer Garten Halle'),
(74784, 'https://ror.org/015bsfc29', 'en', 1, 'https://ror.org/015bsfc29 Network for Computational Modeling in the Social and Ecological Sciences'),
(74785, 'https://ror.org/05yawba35', 'en', 1, 'https://ror.org/05yawba35 Secretariat of Housing and Urban Development Secretaría de Desarrollo Urbano y Vivienda'),
(74786, 'https://ror.org/05tgamw04', 'en', 1, 'https://ror.org/05tgamw04 S.P.E.C.I.E.S.'),
(74787, 'https://ror.org/02fjjnc15', 'en', 1, 'https://ror.org/02fjjnc15 Interdisciplinary Earth Data Alliance'),
(74788, 'https://ror.org/00pwcvj19', 'de', 1, 'https://ror.org/00pwcvj19 Hamburg State and University Library Staats- und Universitätsbibliothek Hamburg'),
(74789, 'https://ror.org/016728c22', 'no_lang_code', 1, 'https://ror.org/016728c22 Proteus (New Zealand)'),
(74790, 'https://ror.org/05s21y527', 'en', 1, 'https://ror.org/05s21y527 Sierra Leone Urban Research Centre'),
(74791, 'https://ror.org/01046sm89', 'es', 1, 'https://ror.org/01046sm89 Universidad Autónoma de Baja California Sur'),
(74792, 'https://ror.org/037fm3958', 'en', 1, 'https://ror.org/037fm3958 University of Halabja زانكۆى ههڵهبجه'),
(74793, 'https://ror.org/03t9s6f22', 'en', 1, 'https://ror.org/03t9s6f22 Forest Stewards Guild'),
(74794, 'https://ror.org/02xzap828', 'no_lang_code', 1, 'https://ror.org/02xzap828 Afrobarometer'),
(74795, 'https://ror.org/04qk3kg25', 'en', 1, 'https://ror.org/04qk3kg25 Defence Electronics Application Laboratory'),
(74796, 'https://ror.org/00wftwn37', 'en', 1, 'https://ror.org/00wftwn37 Defence Electronics Research Laboratory रक्षा इलेक्ट्रॉनिक्स अनुसंधान प्रयोगशाला'),
(74797, 'https://ror.org/02ydkfh68', 'en', 1, 'https://ror.org/02ydkfh68 Defence Institute of Bio-Energy Research'),
(74798, 'https://ror.org/00b0mey76', 'en', 1, 'https://ror.org/00b0mey76 Defence Institute of High Altitude Research'),
(74799, 'https://ror.org/02a8pvy33', 'en', 1, 'https://ror.org/02a8pvy33 Defence Institute of Psychological Research मनोवैज्ञानिक अनुसंधान के रक्षा संस्थान'),
(74800, 'https://ror.org/0297zwz89', 'en', 1, 'https://ror.org/0297zwz89 Defence Materials and Stores Research and Development Establishment रक्षा सामग्री एंव भण्डार अनुसंधान तथा विकास स्थापना'),
(74801, 'https://ror.org/02sfaqg86', 'en', 1, 'https://ror.org/02sfaqg86 Defence Scientific Information & Documentation Centre'),
(74802, 'https://ror.org/01yjnjk05', 'en', 1, 'https://ror.org/01yjnjk05 Defence Terrain Research Laboratory रक्षा भू-भाग और अनुसंधान प्रयोगशाला'),
(74803, 'https://ror.org/05ckan018', 'en', 1, 'https://ror.org/05ckan018 Gas Turbine Research Establishment'),
(74804, 'https://ror.org/05t826259', 'en', 1, 'https://ror.org/05t826259 Institute for Systems Studies & Analyses'),
(74805, 'https://ror.org/03c4qaa56', 'en', 1, 'https://ror.org/03c4qaa56 Institute of Technology Management संस्थान प्रौद्योगिकी प्रबंधन (आई टी एम) डी आर डी ओ, मसूरी'),
(74806, 'https://ror.org/03jy6ar87', 'en', 1, 'https://ror.org/03jy6ar87 Instruments Research & Development Establishment'),
(74807, 'https://ror.org/02gvtkt16', 'en', 1, 'https://ror.org/02gvtkt16 Integrated Test Range'),
(74808, 'https://ror.org/004tnhr10', 'en', 1, 'https://ror.org/004tnhr10 Laser Science & Technology Centre'),
(74809, 'https://ror.org/03vsxz193', 'en', 1, 'https://ror.org/03vsxz193 Advanced Centre for Energetic Materials ऊर्जस्वी पदार्थ उन्नत केंद्र'),
(74810, 'https://ror.org/02tbgn381', 'en', 1, 'https://ror.org/02tbgn381 Microwave Tube Research & Development Centre'),
(74811, 'https://ror.org/02a61vy29', 'en', 1, 'https://ror.org/02a61vy29 Advanced Numerical Research and Analysis Group उन्न्त अंकीय अनुसंधान तथा विश्लेषण समूह'),
(74812, 'https://ror.org/04n881142', 'en', 1, 'https://ror.org/04n881142 Naval Materials Research Laboratory'),
(74813, 'https://ror.org/017kv7q60', 'en', 1, 'https://ror.org/017kv7q60 Naval Physical & Oceanographic Laboratory'),
(74814, 'https://ror.org/02szjr188', 'en', 1, 'https://ror.org/02szjr188 Naval Science & Technological Laboratory'),
(74815, 'https://ror.org/0179ktw44', 'en', 1, 'https://ror.org/0179ktw44 Advanced Systems Laboratory उन्नत प्रणाली प्रयोगशाला'),
(74816, 'https://ror.org/04wcs7k46', 'en', 1, 'https://ror.org/04wcs7k46 Proof & Experimental Establishment प्रूफ एवं प्रयोगात्मक संगठन'),
(74817, 'https://ror.org/00wethk75', 'en', 1, 'https://ror.org/00wethk75 Research & Development Establishment (Engrs.) संशोधन आणि विकास स्थापना इंजिनियर्स'),
(74818, 'https://ror.org/05583vn45', 'en', 1, 'https://ror.org/05583vn45 Aerial Delivery Research and Development Establishment हवाई डिलीवरी अनुसंधान एवं विकास प्रतिष्ठान'),
(74819, 'https://ror.org/03mw5zj47', 'en', 1, 'https://ror.org/03mw5zj47 Research Centre Imarat రీసెర్చ్ సెంటర్ ఇమారాత్'),
(74820, 'https://ror.org/02rpzt041', 'en', 1, 'https://ror.org/02rpzt041 Scientific Analysis Group'),
(74821, 'https://ror.org/003e1fb38', 'no_lang_code', 1, 'https://ror.org/003e1fb38 Snow & Avalanche Study Estt सासे अनुसंधान केंद्र'),
(74822, 'https://ror.org/005e5y372', 'en', 1, 'https://ror.org/005e5y372 Aeronautical Development Establishment वैमानिकी विकास प्रतिष्ठान ಏರೊನಾಟಿಕಲ್ ಡೆವಲಪ್ಮೆಂಟ್ ಎಸ್ಟಾಬ್ಲಿಷ್ಮೆಂಟ್'),
(74823, 'https://ror.org/00c20xw32', 'en', 1, 'https://ror.org/00c20xw32 Terminal Ballistics Research Laboratory'),
(74824, 'https://ror.org/00vhhsw45', 'en', 1, 'https://ror.org/00vhhsw45 Vehicles Research Development Establishment'),
(74825, 'https://ror.org/020dm9j49', 'en', 1, 'https://ror.org/020dm9j49 Armaments Research Board आयुध अनुसंधान बोर्ड'),
(74826, 'https://ror.org/035mr2h79', 'en', 1, 'https://ror.org/035mr2h79 Centre for Military Airworthiness and Certification सेना उड़नयोग्यता और प्रमाणीकरण केन्द्र'),
(74827, 'https://ror.org/00ewyxm56', 'en', 1, 'https://ror.org/00ewyxm56 Centre for Air Borne System वायुवाहित प्रणाली केन्द्र'),
(74828, 'https://ror.org/01xnbq218', 'en', 1, 'https://ror.org/01xnbq218 Centre for Artificial Intelligence and Robotics कृत्रिम ज्ञान तथा रोबोटिकी केंद्र'),
(74829, 'https://ror.org/01j60ss54', 'es', 1, 'https://ror.org/01j60ss54 Asociación Jardín Botánico La Laguna'),
(74830, 'https://ror.org/0500v6t47', 'en', 1, 'https://ror.org/0500v6t47 Centre for Fire, Explosive and Environment Safety अग्नि, पर्यावरण तथा विस्फोटक सुरक्षा केंद'),
(74831, 'https://ror.org/00e1em465', 'en', 1, 'https://ror.org/00e1em465 Centre for Personnel Talent Management कार्मिक प्रतिभा प्रबंधन केंद्र'),
(74832, 'https://ror.org/055fwv607', 'en', 1, 'https://ror.org/055fwv607 Combat Vehicles Research and Development Establishment संग्राम वाहन अनुसंधान तथा विकास संस्थापन'),
(74833, 'https://ror.org/02k1mww18', 'en', 1, 'https://ror.org/02k1mww18 Defence Avionics Research Establishment रक्षा वैमानिकी अनुसंधान स्थापना'),
(74834, 'https://ror.org/00kc5p198', 'en', 1, 'https://ror.org/00kc5p198 Defence Bioengineering and Electromedical Laboratory रक्षा जैव प्रौद्योगिकी और विद्युत चिकित्सकीय प्रयोगशाला'),
(74835, 'https://ror.org/00gj56b42', 'en', 1, 'https://ror.org/00gj56b42 Friends of Rosie Children''s Cancer Research Fund'),
(74836, 'https://ror.org/023wh8b50', 'en', 1, 'https://ror.org/023wh8b50 Public Health Scotland'),
(74837, 'https://ror.org/01qw4g764', 'no_lang_code', 1, 'https://ror.org/01qw4g764 Mitsui (Japan) 三井グループ'),
(74838, 'https://ror.org/01tbnxe16', 'en', 1, 'https://ror.org/01tbnxe16 BRIQ Institute on Behavior and Inequality'),
(74839, 'https://ror.org/01bd30j68', 'en', 1, 'https://ror.org/01bd30j68 Academy of Law Management of the Federal Penal Service of Russia Академия права и управления ФСИН'),
(74840, 'https://ror.org/01ennef75', 'en', 1, 'https://ror.org/01ennef75 MiMER Centre'),
(74841, 'https://ror.org/040ep5714', 'no_lang_code', 1, 'https://ror.org/040ep5714 Therabel (Netherlands)'),
(74842, 'https://ror.org/05eexsd91', 'no_lang_code', 1, 'https://ror.org/05eexsd91 Volition (Belgium)'),
(74843, 'https://ror.org/056tqe525', 'no_lang_code', 1, 'https://ror.org/056tqe525 Volition (United Kingdom)'),
(74844, 'https://ror.org/03mp7ed76', 'no_lang_code', 1, 'https://ror.org/03mp7ed76 Volition (United States)'),
(74845, 'https://ror.org/05ekw4q84', 'no_lang_code', 1, 'https://ror.org/05ekw4q84 Volition (Singapore)');
INSERT INTO `rors` VALUES
(74846, 'https://ror.org/0028eeh32', 'en', 1, 'https://ror.org/0028eeh32 Electronics and Radar Development Establishment ಎಲೆಕ್ಟ್ರಾನಿಕ್ಸ್ ರೆಡಾರ್ ಡೆವಲಪ್ಮೆಂಟ್ ಎಸ್ಟಾಬ್ಲಿಷ್ಮೆಂಟ್'),
(74847, 'https://ror.org/02bh93636', 'no_lang_code', 1, 'https://ror.org/02bh93636 Holtzbrinck Publishing Group (Germany)'),
(74848, 'https://ror.org/04gswd735', 'en', 1, 'https://ror.org/04gswd735 Institute of Medical Information - CAMS'),
(74849, 'https://ror.org/00fkq8j89', 'no_lang_code', 1, 'https://ror.org/00fkq8j89 ThrustMe (France)'),
(74850, 'https://ror.org/03w48ac58', 'no_lang_code', 1, 'https://ror.org/03w48ac58 Novo Nordisk (Mexico)'),
(74851, 'https://ror.org/02dkg4b27', 'no_lang_code', 1, 'https://ror.org/02dkg4b27 Kayser Automotive (Germany)'),
(74852, 'https://ror.org/018t24x84', 'en', 1, 'https://ror.org/018t24x84 Centre for Research and Information on Substance Abuse'),
(74853, 'https://ror.org/035evek51', 'no_lang_code', 1, 'https://ror.org/035evek51 Goldfinch Bio (United States)'),
(74854, 'https://ror.org/01ecxmq21', 'no_lang_code', 1, 'https://ror.org/01ecxmq21 Inari Agriculture (United States)'),
(74855, 'https://ror.org/041y61656', 'no_lang_code', 1, 'https://ror.org/041y61656 Heliae (United States)'),
(74856, 'https://ror.org/05wd66v55', 'no_lang_code', 1, 'https://ror.org/05wd66v55 Sanofi (Mexico)'),
(74857, 'https://ror.org/04dx8cb40', 'no_lang_code', 1, 'https://ror.org/04dx8cb40 Azotic Technologies (United Kingdom)'),
(74858, 'https://ror.org/0303cgc60', 'no_lang_code', 1, 'https://ror.org/0303cgc60 Ball Horticultural (United States)'),
(74859, 'https://ror.org/05dctta12', 'no_lang_code', 1, 'https://ror.org/05dctta12 Eurofarma (Brazil)'),
(74860, 'https://ror.org/046v1a544', 'no_lang_code', 1, 'https://ror.org/046v1a544 Bejo Zaden (Netherlands)'),
(74861, 'https://ror.org/006xv9y11', 'no_lang_code', 1, 'https://ror.org/006xv9y11 Haim Bio (South Korea)'),
(74862, 'https://ror.org/0263fkh30', 'no_lang_code', 1, 'https://ror.org/0263fkh30 Forma Therapeutics (United States)'),
(74863, 'https://ror.org/040k92z84', 'no_lang_code', 1, 'https://ror.org/040k92z84 Sanofi (Turkey)'),
(74864, 'https://ror.org/00mwqgc26', 'no_lang_code', 1, 'https://ror.org/00mwqgc26 Anocca (Sweden)'),
(74865, 'https://ror.org/006jfnq36', 'en', 1, 'https://ror.org/006jfnq36 American Farm Bureau Federation'),
(74866, 'https://ror.org/00jsec129', 'en', 1, 'https://ror.org/00jsec129 Pädagogische Hochschule Oberösterreich University of Education Upper Austria'),
(74867, 'https://ror.org/00j0gr892', 'en', 1, 'https://ror.org/00j0gr892 Women''s Coalition of Zimbabwe'),
(74868, 'https://ror.org/00be0m967', 'en', 1, 'https://ror.org/00be0m967 United Nations University Institute for Sustainability and Peace 国連大学サステイナビリティと平和研究所'),
(74869, 'https://ror.org/03xp99m49', 'en', 1, 'https://ror.org/03xp99m49 Institute for Integrated Management of Material Fluxes and of Resources'),
(74870, 'https://ror.org/040ac0g28', 'en', 1, 'https://ror.org/040ac0g28 University of Civil Protection Университет гражданской защиты МЧС Республики Беларусь'),
(74871, 'https://ror.org/057g8xr12', 'es', 1, 'https://ror.org/057g8xr12 Colección Ornitológica Phelps'),
(74872, 'https://ror.org/05t20pg33', 'en', 1, 'https://ror.org/05t20pg33 Institute for Natural Resources in Africa'),
(74873, 'https://ror.org/02e4kkg71', 'en', 1, 'https://ror.org/02e4kkg71 ProMedica Monroe Regional Hospital'),
(74874, 'https://ror.org/0217dn713', 'no_lang_code', 1, 'https://ror.org/0217dn713 Novanta (United States)'),
(74875, 'https://ror.org/02xf4n450', 'no_lang_code', 1, 'https://ror.org/02xf4n450 IEF-Werner (Germany)'),
(74876, 'https://ror.org/02fm9ey65', 'de', 1, 'https://ror.org/02fm9ey65 Mainzer Zentrum für Digitalität in den Geistes- und Kulturwissenschaften'),
(74877, 'https://ror.org/011jkz145', 'en', 1, 'https://ror.org/011jkz145 International Federation of Surveyors'),
(74878, 'https://ror.org/03rs4qr46', 'no_lang_code', 1, 'https://ror.org/03rs4qr46 MIMOT (Germany)'),
(74879, 'https://ror.org/04z5zpe30', 'en', 1, 'https://ror.org/04z5zpe30 United States Agricultural Information Network'),
(74880, 'https://ror.org/045rr1351', 'en', 1, 'https://ror.org/045rr1351 Alabama Library Association'),
(74881, 'https://ror.org/00rs9dy63', 'no_lang_code', 1, 'https://ror.org/00rs9dy63 Advanced Energy (United States)'),
(74882, 'https://ror.org/02cytaa95', 'en', 1, 'https://ror.org/02cytaa95 Islamic Azad University of Chalous دانشگاه آزاد چالوس'),
(74883, 'https://ror.org/05a2cfm07', 'en', 1, 'https://ror.org/05a2cfm07 Islamic Azad University, Damghan Branch دانشگاه آزاد اسلامی واحد دامغان'),
(74884, 'https://ror.org/05r6qy592', 'en', 1, 'https://ror.org/05r6qy592 Islamic Azad University Ilam Branch دانشگاه آزاد اسلامی واحد ایلام'),
(74885, 'https://ror.org/04zdgqb89', 'en', 1, 'https://ror.org/04zdgqb89 Islamic Azad University Islamshahr Branch دانشگاه آزاد اسلامی واحد اسلامشهر'),
(74886, 'https://ror.org/03aa31r16', 'en', 1, 'https://ror.org/03aa31r16 Islamic Azad University, Khorramabad Branch دانشگاه آزاد اسلامی واحد خرمآباد'),
(74887, 'https://ror.org/04w2yhr49', 'en', 1, 'https://ror.org/04w2yhr49 Islamic Azad University, Shoushtar Branch دانشگاه آزاد اسلامی واحد شوشتر'),
(74888, 'https://ror.org/01am3pw68', 'en', 1, 'https://ror.org/01am3pw68 Islamic Azad University, Zahedan Branch دانشگاه آزاد اسلامی واحد زاهدان'),
(74889, 'https://ror.org/05pjhgh49', 'en', 1, 'https://ror.org/05pjhgh49 Centre for Research and Development'),
(74890, 'https://ror.org/01kfq1x58', 'en', 1, 'https://ror.org/01kfq1x58 Islamic Azad University, Abhar Branch دانشگاه آزاد اسلامی واحد ابهر'),
(74891, 'https://ror.org/02ftcpa68', 'en', 1, 'https://ror.org/02ftcpa68 Büro für Technikfolgen-Abschätzung beim Deutschen Bundestag Office of Technology Assessment at the German Bundestag'),
(74892, 'https://ror.org/00y16bh55', 'en', 1, 'https://ror.org/00y16bh55 Islamic Azad University, Ashtian Branch دانشگاه آزاد اسلامی واحد آشتيان'),
(74893, 'https://ror.org/05343ec73', 'en', 1, 'https://ror.org/05343ec73 Islamic Azad University, Azadshahr Branch دانشگاه آزاد اسلامی آزادشهر'),
(74894, 'https://ror.org/03hhrzm12', 'en', 1, 'https://ror.org/03hhrzm12 Islamic Azad University, Bushehr Branch دانشگاه آزاد اسلامي واحد بوشهر'),
(74895, 'https://ror.org/01j1q9a64', 'en', 1, 'https://ror.org/01j1q9a64 International Work Group for Indigenous Affairs'),
(74896, 'https://ror.org/00crw9046', 'en', 1, 'https://ror.org/00crw9046 Islamic Azad University, Estahban Branch دانشگاه آزاد اسلامی واحد استهبان'),
(74897, 'https://ror.org/00veca956', 'en', 1, 'https://ror.org/00veca956 Islamic Azad University, Firuzabad Branch دانشگاه آزاد اسلامی واحد فیروزآباد'),
(74898, 'https://ror.org/00gc85q68', 'es', 1, 'https://ror.org/00gc85q68 Corporación de Estudios Sociales y Educación'),
(74899, 'https://ror.org/00z6hkq67', 'es', 1, 'https://ror.org/00z6hkq67 Tierra'),
(74900, 'https://ror.org/02k34sh32', 'en', 1, 'https://ror.org/02k34sh32 Islamic Azad University, Jiroft Branch دانشگاه آزاد اسلامی واحد جیرفت'),
(74901, 'https://ror.org/02phdp391', 'en', 1, 'https://ror.org/02phdp391 California Fire Science Consortium'),
(74902, 'https://ror.org/00y5vq715', 'en', 1, 'https://ror.org/00y5vq715 Brennan Center for Justice'),
(74903, 'https://ror.org/038bemd25', 'en', 1, 'https://ror.org/038bemd25 Islamic Azad University, Khoy Branch دانشگاه آزاد اسلامی واحد خوی'),
(74904, 'https://ror.org/00kw49k87', 'en', 1, 'https://ror.org/00kw49k87 Equal Justice Initiative'),
(74905, 'https://ror.org/047hrmf08', 'en', 1, 'https://ror.org/047hrmf08 Islamic Azad University, Larestan Branch دانشگاه آزاد اسلامی واحد لارستان'),
(74906, 'https://ror.org/03f84d710', 'en', 1, 'https://ror.org/03f84d710 Islamic Azad University, Malayer Branch دانشگاه آزاد اسلامی واحد ملایر'),
(74907, 'https://ror.org/02psd3416', 'en', 1, 'https://ror.org/02psd3416 Islamic Azad University, Nowshahr Branch دانشگاه آزاد اسلامی واحد چالوس'),
(74908, 'https://ror.org/05cpg6260', 'no_lang_code', 1, 'https://ror.org/05cpg6260 Roche (Lebanon)'),
(74909, 'https://ror.org/02tnr6p29', 'no_lang_code', 1, 'https://ror.org/02tnr6p29 Roche (Tunisia)'),
(74910, 'https://ror.org/032syc365', 'en', 1, 'https://ror.org/032syc365 Islamic Azad University, Omidieh Branch دانشگاه آزاد اسلامی واحد امیدیه'),
(74911, 'https://ror.org/022ca9x91', 'en', 1, 'https://ror.org/022ca9x91 Islamic Azad University, Shahr-e-Qods Branch دانشگاه آزاد اسلامی واحد شهر قدس'),
(74912, 'https://ror.org/03nsj9897', 'en', 1, 'https://ror.org/03nsj9897 Islamic Azad University, Sirjan Branch دانشگاه آزاد اسلامی واحد سیرجان'),
(74913, 'https://ror.org/03jg7pr54', 'no_lang_code', 1, 'https://ror.org/03jg7pr54 Roche (Nicaragua)'),
(74914, 'https://ror.org/05c66m157', 'no_lang_code', 1, 'https://ror.org/05c66m157 Roche (Bolivia)'),
(74915, 'https://ror.org/04gbzz966', 'no_lang_code', 1, 'https://ror.org/04gbzz966 Roche (Bosnia-Herzegovina)'),
(74916, 'https://ror.org/002g7k102', 'no_lang_code', 1, 'https://ror.org/002g7k102 Dascena (United States)'),
(74917, 'https://ror.org/05h9m3b45', 'no_lang_code', 1, 'https://ror.org/05h9m3b45 Roche (Turkey)'),
(74918, 'https://ror.org/050q8cm26', 'no_lang_code', 1, 'https://ror.org/050q8cm26 Roche (Chile)'),
(74919, 'https://ror.org/03836m928', 'no_lang_code', 1, 'https://ror.org/03836m928 Roche (Ecuador)'),
(74920, 'https://ror.org/05v9ym429', 'no_lang_code', 1, 'https://ror.org/05v9ym429 Roche (Norway)'),
(74921, 'https://ror.org/00t7w7h84', 'fr', 1, 'https://ror.org/00t7w7h84 Le Soleil dans la Main'),
(74922, 'https://ror.org/04hewny41', 'nl', 1, 'https://ror.org/04hewny41 Iridium Cancer Network Iridium Kankernetwerk'),
(74923, 'https://ror.org/00rm7zs53', 'de', 1, 'https://ror.org/00rm7zs53 Zug Cantonal Hospital Zuger Kantonsspital'),
(74924, 'https://ror.org/009x7v589', 'en', 1, 'https://ror.org/009x7v589 Pharmacie des Hôpitaux de l''Est Lémanique Pharmacy of the Eastern Vaud Hospitals'),
(74925, 'https://ror.org/00h539j16', 'en', 1, 'https://ror.org/00h539j16 Bavarian Research Institute for Digital Transformation Bayerisches Forschungsinstitut für digitale Transformation'),
(74926, 'https://ror.org/04yne6f58', 'fr', 1, 'https://ror.org/04yne6f58 Clinique Générale-Beaulieu Générale-Beaulieu Clinic'),
(74927, 'https://ror.org/05w3aay26', 'en', 1, 'https://ror.org/05w3aay26 Centre Emys Emys Center'),
(74928, 'https://ror.org/03gd99e09', 'en', 1, 'https://ror.org/03gd99e09 Center of Immunology Pierre Fabre Centre d’Immunologie Pierre Fabre'),
(74929, 'https://ror.org/02qt0fz52', 'no_lang_code', 1, 'https://ror.org/02qt0fz52 Landeswasserversorgung (Germany)'),
(74930, 'https://ror.org/04tnv7w23', 'fr', 1, 'https://ror.org/04tnv7w23 École Supérieure Polytechnique d''Antsiranana'),
(74931, 'https://ror.org/049qy6v50', 'en', 1, 'https://ror.org/049qy6v50 Zimbabwe Council For Higher Education'),
(74932, 'https://ror.org/02j4jwp55', 'en', 1, 'https://ror.org/02j4jwp55 Lung Cancer Initiative of North Carolina'),
(74933, 'https://ror.org/05tbc9841', 'en', 1, 'https://ror.org/05tbc9841 Cluster of Excellence "Matters of Activity. Image Space Material"'),
(74934, 'https://ror.org/04m797435', 'no_lang_code', 1, 'https://ror.org/04m797435 Adelphi Consult (Germany)'),
(74935, 'https://ror.org/0435jsb33', 'no_lang_code', 1, 'https://ror.org/0435jsb33 22nd Century Group (United States)'),
(74936, 'https://ror.org/04bjznv82', 'no_lang_code', 1, 'https://ror.org/04bjznv82 3-D Matrix (Japan)'),
(74937, 'https://ror.org/042cmjn68', 'no_lang_code', 1, 'https://ror.org/042cmjn68 3Shape (Denmark)'),
(74938, 'https://ror.org/05e1qh004', 'no_lang_code', 1, 'https://ror.org/05e1qh004 3V Sigma (Italy)'),
(74939, 'https://ror.org/01n8zce53', 'no_lang_code', 1, 'https://ror.org/01n8zce53 AllaChem (United States)'),
(74940, 'https://ror.org/00n1nbv85', 'no_lang_code', 1, 'https://ror.org/00n1nbv85 Advanced BioNutrition (United States)'),
(74941, 'https://ror.org/01n494f92', 'no_lang_code', 1, 'https://ror.org/01n494f92 A-dec (United States)'),
(74942, 'https://ror.org/0358t2s53', 'no_lang_code', 1, 'https://ror.org/0358t2s53 Neurelis (United States)'),
(74943, 'https://ror.org/00hq78102', 'no_lang_code', 1, 'https://ror.org/00hq78102 A.M. Surgical (United States)'),
(74944, 'https://ror.org/037pppx71', 'no_lang_code', 1, 'https://ror.org/037pppx71 Alcami (United States)'),
(74945, 'https://ror.org/05mp6sd67', 'no_lang_code', 1, 'https://ror.org/05mp6sd67 Aap Implantate (Germany)'),
(74946, 'https://ror.org/00xbvdz81', 'en', 1, 'https://ror.org/00xbvdz81 Organisation of Islamic Cooperation منظمة التعاون الإسلامي'),
(74947, 'https://ror.org/0366qxk70', 'en', 1, 'https://ror.org/0366qxk70 Islamic World Educational, Scientific and Cultural Organization منظمة العالم الإسلامي للتربية والعلوم والثقافة'),
(74948, 'https://ror.org/04v5c4294', 'en', 1, 'https://ror.org/04v5c4294 FAHRİ KAYAHAN AİLE SAĞLIĞI MERKEZİ Malatya Fahri Kayahan Health Care Center'),
(74949, 'https://ror.org/0322cev20', 'no_lang_code', 1, 'https://ror.org/0322cev20 Affectiva (United States)'),
(74950, 'https://ror.org/0422rck44', 'no_lang_code', 1, 'https://ror.org/0422rck44 Allied Healthcare Products (United States)'),
(74951, 'https://ror.org/00ssr5f77', 'no_lang_code', 1, 'https://ror.org/00ssr5f77 Alphatec Spine Approach Technologies (United States)'),
(74952, 'https://ror.org/05wd41k10', 'no_lang_code', 1, 'https://ror.org/05wd41k10 Altergon (Italy)'),
(74953, 'https://ror.org/02s8aez42', 'no_lang_code', 1, 'https://ror.org/02s8aez42 Amann Girrbach (Austria)'),
(74954, 'https://ror.org/016qkze89', 'no_lang_code', 1, 'https://ror.org/016qkze89 Achieve Life Sciences (United States)'),
(74955, 'https://ror.org/02sfqqf20', 'no_lang_code', 1, 'https://ror.org/02sfqqf20 ACP Japan (Japan) 日本エーシーピー'),
(74956, 'https://ror.org/041d7hq08', 'no_lang_code', 1, 'https://ror.org/041d7hq08 Advance (Japan)'),
(74957, 'https://ror.org/05621b753', 'no_lang_code', 1, 'https://ror.org/05621b753 Acrux (Australia)'),
(74958, 'https://ror.org/03bb5zx34', 'no_lang_code', 1, 'https://ror.org/03bb5zx34 Vactronix Scientific (United States)'),
(74959, 'https://ror.org/014bb9r42', 'no_lang_code', 1, 'https://ror.org/014bb9r42 ACS Dobfar (Italy)'),
(74960, 'https://ror.org/01swx2932', 'fr', 1, 'https://ror.org/01swx2932 Institut Catholique d''Arts et Métiers'),
(74961, 'https://ror.org/056m22n36', 'no_lang_code', 1, 'https://ror.org/056m22n36 Active Implants (United States)'),
(74962, 'https://ror.org/038mfrf56', 'no_lang_code', 1, 'https://ror.org/038mfrf56 Agile Therapeutics (United States)'),
(74963, 'https://ror.org/036spp047', 'no_lang_code', 1, 'https://ror.org/036spp047 AcuFocus (United States)'),
(74964, 'https://ror.org/00dyz4s77', 'no_lang_code', 1, 'https://ror.org/00dyz4s77 Acura Pharmaceuticals (United States)'),
(74965, 'https://ror.org/03qekz127', 'no_lang_code', 1, 'https://ror.org/03qekz127 Adare Pharma Solutions (United States)'),
(74966, 'https://ror.org/0575r9t98', 'no_lang_code', 1, 'https://ror.org/0575r9t98 Agriculture Victoria Services (Australia)'),
(74967, 'https://ror.org/01qqp2h35', 'no_lang_code', 1, 'https://ror.org/01qqp2h35 Amano Enzyme (Japan)'),
(74968, 'https://ror.org/029g9r930', 'no_lang_code', 1, 'https://ror.org/029g9r930 Adc Therapeutics (Switzerland)'),
(74969, 'https://ror.org/032stxf15', 'no_lang_code', 1, 'https://ror.org/032stxf15 Aderans (Japan) 株式会社アデランス'),
(74970, 'https://ror.org/0027p4q12', 'no_lang_code', 1, 'https://ror.org/0027p4q12 AIMM Therapeutics (Netherlands)'),
(74971, 'https://ror.org/02dkhsm53', 'no_lang_code', 1, 'https://ror.org/02dkhsm53 Admedes (Germany)'),
(74972, 'https://ror.org/00kcb8667', 'no_lang_code', 1, 'https://ror.org/00kcb8667 Airway Technologies (United States)'),
(74973, 'https://ror.org/03bnhf738', 'no_lang_code', 1, 'https://ror.org/03bnhf738 Ambu (Denmark)'),
(74974, 'https://ror.org/04hg6v996', 'no_lang_code', 1, 'https://ror.org/04hg6v996 Minerals Technologies (United States)'),
(74975, 'https://ror.org/00rjxfx39', 'no_lang_code', 1, 'https://ror.org/00rjxfx39 E-Techco Group (China)'),
(74976, 'https://ror.org/00wks3b32', 'no_lang_code', 1, 'https://ror.org/00wks3b32 RealTimePurity (United States)'),
(74977, 'https://ror.org/021933p29', 'no_lang_code', 1, 'https://ror.org/021933p29 RUA Life Sciences (United Kingdom)'),
(74978, 'https://ror.org/02jrz7m81', 'no_lang_code', 1, 'https://ror.org/02jrz7m81 Alber (Germany)'),
(74979, 'https://ror.org/02xs43q30', 'no_lang_code', 1, 'https://ror.org/02xs43q30 American Med Systems (United States)'),
(74980, 'https://ror.org/0369a2x50', 'no_lang_code', 1, 'https://ror.org/0369a2x50 Albumedix (United Kingdom)'),
(74981, 'https://ror.org/058kq6588', 'no_lang_code', 1, 'https://ror.org/058kq6588 Apeiron Biologics (Austria)'),
(74982, 'https://ror.org/01kk57e40', 'no_lang_code', 1, 'https://ror.org/01kk57e40 Agency for Medical Innovations (Austria)'),
(74983, 'https://ror.org/01a7sne14', 'no_lang_code', 1, 'https://ror.org/01a7sne14 Apex (Taiwan)'),
(74984, 'https://ror.org/015999a88', 'no_lang_code', 1, 'https://ror.org/015999a88 Amino Up (Japan) ㈱アミノアップ'),
(74985, 'https://ror.org/05n44hh60', 'no_lang_code', 1, 'https://ror.org/05n44hh60 Vetter (Germany) Vetter Pharma-Fertigung'),
(74986, 'https://ror.org/01gawax11', 'no_lang_code', 1, 'https://ror.org/01gawax11 Appvion (United States)'),
(74987, 'https://ror.org/04nf5v644', 'no_lang_code', 1, 'https://ror.org/04nf5v644 Ampio Pharmaceuticals (United States)'),
(74988, 'https://ror.org/056gwgh96', 'no_lang_code', 1, 'https://ror.org/056gwgh96 Alcon (Switzerland)'),
(74989, 'https://ror.org/05cs0pa90', 'no_lang_code', 1, 'https://ror.org/05cs0pa90 Alfred E. Tiefenbacher (Germany)'),
(74990, 'https://ror.org/05j4fc609', 'no_lang_code', 1, 'https://ror.org/05j4fc609 Anges (Japan)'),
(74991, 'https://ror.org/01rkbgp30', 'no_lang_code', 1, 'https://ror.org/01rkbgp30 Angiochem (Canada)'),
(74992, 'https://ror.org/01rvva743', 'no_lang_code', 1, 'https://ror.org/01rvva743 Ancora Heart (United States)'),
(74993, 'https://ror.org/04jb5a756', 'no_lang_code', 1, 'https://ror.org/04jb5a756 DJO Global (United States)'),
(74994, 'https://ror.org/03vdkes06', 'no_lang_code', 1, 'https://ror.org/03vdkes06 Archimica (Italy)'),
(74995, 'https://ror.org/01t92qx25', 'no_lang_code', 1, 'https://ror.org/01t92qx25 Arcturus Therapeutics (United States)'),
(74996, 'https://ror.org/02se42q89', 'no_lang_code', 1, 'https://ror.org/02se42q89 Kraton (United States)'),
(74997, 'https://ror.org/007ns0839', 'no_lang_code', 1, 'https://ror.org/007ns0839 Arjo (Sweden)'),
(74998, 'https://ror.org/0241kq529', 'no_lang_code', 1, 'https://ror.org/0241kq529 Aquanova (Germany)'),
(74999, 'https://ror.org/00j08hk87', 'no_lang_code', 1, 'https://ror.org/00j08hk87 Adama (Israel) אדמה בע"מ'),
(75000, 'https://ror.org/01m7xb285', 'no_lang_code', 1, 'https://ror.org/01m7xb285 Aquestive (United States)'),
(75001, 'https://ror.org/01cvr7569', 'no_lang_code', 1, 'https://ror.org/01cvr7569 Auven Therapeutics (United States)'),
(75002, 'https://ror.org/04ckt1019', 'no_lang_code', 1, 'https://ror.org/04ckt1019 Arkion Life Sciences (United States)'),
(75003, 'https://ror.org/02pf7bx90', 'no_lang_code', 1, 'https://ror.org/02pf7bx90 Arrow International (United States)'),
(75004, 'https://ror.org/01gdcm534', 'no_lang_code', 1, 'https://ror.org/01gdcm534 Arte (Japan)'),
(75005, 'https://ror.org/05v7bvm48', 'no_lang_code', 1, 'https://ror.org/05v7bvm48 Arthrosurface (United States)'),
(75006, 'https://ror.org/006kn2235', 'no_lang_code', 1, 'https://ror.org/006kn2235 Anova Corp (Vietnam)'),
(75007, 'https://ror.org/033571q03', 'no_lang_code', 1, 'https://ror.org/033571q03 Asahi Intecc (Japan) 朝日インテック株式会社'),
(75008, 'https://ror.org/02mbz3q09', 'no_lang_code', 1, 'https://ror.org/02mbz3q09 Kaman (United States)'),
(75009, 'https://ror.org/05tvnhf16', 'no_lang_code', 1, 'https://ror.org/05tvnhf16 Anthogyr (France)'),
(75010, 'https://ror.org/00vy6y387', 'no_lang_code', 1, 'https://ror.org/00vy6y387 Bard Access Systems (United States)'),
(75011, 'https://ror.org/022pvsb81', 'no_lang_code', 1, 'https://ror.org/022pvsb81 Ascendis Pharma (Denmark)'),
(75012, 'https://ror.org/00m0wp850', 'no_lang_code', 1, 'https://ror.org/00m0wp850 Ascensia Diabetes Care (Switzerland)'),
(75013, 'https://ror.org/05ervg403', 'no_lang_code', 1, 'https://ror.org/05ervg403 Bardy Diagnostics (United States)'),
(75014, 'https://ror.org/00q51ae51', 'no_lang_code', 1, 'https://ror.org/00q51ae51 BAROnova (United States)'),
(75015, 'https://ror.org/022nfrj09', 'no_lang_code', 1, 'https://ror.org/022nfrj09 Aspect Imaging (Israel)'),
(75016, 'https://ror.org/00t4ywr83', 'no_lang_code', 1, 'https://ror.org/00t4ywr83 Goodman (Japan) 株式会社グッドマン'),
(75017, 'https://ror.org/05df8jb72', 'no_lang_code', 1, 'https://ror.org/05df8jb72 Atlas Antibodies (Sweden)'),
(75018, 'https://ror.org/0483jfq80', 'no_lang_code', 1, 'https://ror.org/0483jfq80 Atlas Spine (United States)'),
(75019, 'https://ror.org/00cvsxf87', 'no_lang_code', 1, 'https://ror.org/00cvsxf87 Atom Medical (Japan)'),
(75020, 'https://ror.org/05m6hq950', 'no_lang_code', 1, 'https://ror.org/05m6hq950 Atrion Medical (United States)'),
(75021, 'https://ror.org/03k3t0n26', 'en', 1, 'https://ror.org/03k3t0n26 KDZ - Centre for Public Administration Research Zentrum für Verwaltungsforschung'),
(75022, 'https://ror.org/02awaab90', 'no_lang_code', 1, 'https://ror.org/02awaab90 Avinger (United States)'),
(75023, 'https://ror.org/02f8q7239', 'no_lang_code', 1, 'https://ror.org/02f8q7239 Autonomix Medical (United States)'),
(75024, 'https://ror.org/02mjdk963', 'no_lang_code', 1, 'https://ror.org/02mjdk963 Axelgaard Manufacturing (United States)'),
(75025, 'https://ror.org/01ra0cf82', 'no_lang_code', 1, 'https://ror.org/01ra0cf82 Axonics Modulation Technologies (United States)'),
(75026, 'https://ror.org/02cvw8c86', 'no_lang_code', 1, 'https://ror.org/02cvw8c86 Axsome Therapeutics (United States)'),
(75027, 'https://ror.org/05etzat70', 'no_lang_code', 1, 'https://ror.org/05etzat70 AYR (United Kingdom)'),
(75028, 'https://ror.org/05966vw37', 'no_lang_code', 1, 'https://ror.org/05966vw37 Bezwada Biomedical (United States)'),
(75029, 'https://ror.org/00pam4d71', 'no_lang_code', 1, 'https://ror.org/00pam4d71 Badger Licensing (United States)'),
(75030, 'https://ror.org/04h7sky50', 'no_lang_code', 1, 'https://ror.org/04h7sky50 BFKW (United States)'),
(75031, 'https://ror.org/03kq4dk33', 'no_lang_code', 1, 'https://ror.org/03kq4dk33 Bicycle Therapeutics (United Kingdom)'),
(75032, 'https://ror.org/02qk0qj12', 'no_lang_code', 1, 'https://ror.org/02qk0qj12 Biedermann Motech (Germany)'),
(75033, 'https://ror.org/01jxtbx65', 'no_lang_code', 1, 'https://ror.org/01jxtbx65 Biedermann Technologies (Germany)'),
(75034, 'https://ror.org/01a289t25', 'no_lang_code', 1, 'https://ror.org/01a289t25 Bien-Air Medical Technologies (Switzerland)'),
(75035, 'https://ror.org/00qv2zm13', 'en', 1, 'https://ror.org/00qv2zm13 Agricultural Research Service - Pacific West Area'),
(75036, 'https://ror.org/03sqy6516', 'en', 1, 'https://ror.org/03sqy6516 Agricultural Research Service - Plains Area'),
(75037, 'https://ror.org/01gwd8297', 'no_lang_code', 1, 'https://ror.org/01gwd8297 Bio Medic Data Systems (United States)'),
(75038, 'https://ror.org/04d1tk502', 'en', 1, 'https://ror.org/04d1tk502 Agricultural Research Service - Midwest Area'),
(75039, 'https://ror.org/04qr9ne10', 'en', 1, 'https://ror.org/04qr9ne10 Agricultural Research Service - Northeast Area'),
(75040, 'https://ror.org/02pfwxe49', 'en', 1, 'https://ror.org/02pfwxe49 Agricultural Research Service - Southeast Area'),
(75041, 'https://ror.org/01hpqfn25', 'en', 1, 'https://ror.org/01hpqfn25 IBM Research - United Kingdom'),
(75042, 'https://ror.org/004zpe866', 'en', 1, 'https://ror.org/004zpe866 Beltsville Human Nutrition Research Center'),
(75043, 'https://ror.org/03s936v76', 'en', 1, 'https://ror.org/03s936v76 Children''s Nutrition Research Center at Baylor College of Medicine'),
(75044, 'https://ror.org/05a5x4q14', 'no_lang_code', 1, 'https://ror.org/05a5x4q14 BioAtla (United States)'),
(75045, 'https://ror.org/01d0zz505', 'en', 1, 'https://ror.org/01d0zz505 Jean Mayer Human Nutrition Research Center on Aging'),
(75046, 'https://ror.org/01s016274', 'no_lang_code', 1, 'https://ror.org/01s016274 BioCardia (United States)'),
(75047, 'https://ror.org/00dx35m16', 'en', 1, 'https://ror.org/00dx35m16 Western Human Nutrition Research Center'),
(75048, 'https://ror.org/05jwyv945', 'no_lang_code', 1, 'https://ror.org/05jwyv945 Biocrine (Sweden)'),
(75049, 'https://ror.org/01mm5pq64', 'no_lang_code', 1, 'https://ror.org/01mm5pq64 Biocure (United States)'),
(75050, 'https://ror.org/02xx2e359', 'no_lang_code', 1, 'https://ror.org/02xx2e359 Benvenue Medical (United States)'),
(75051, 'https://ror.org/000ahf130', 'no_lang_code', 1, 'https://ror.org/000ahf130 Hillenbrand (United States)'),
(75052, 'https://ror.org/02z9t3v16', 'no_lang_code', 1, 'https://ror.org/02z9t3v16 BioDerm (United States)'),
(75053, 'https://ror.org/04fewxg30', 'no_lang_code', 1, 'https://ror.org/04fewxg30 Probility Media (United States)'),
(75054, 'https://ror.org/002rc3h45', 'no_lang_code', 1, 'https://ror.org/002rc3h45 BioInteractions (United Kingdom)'),
(75055, 'https://ror.org/05b46br83', 'no_lang_code', 1, 'https://ror.org/05b46br83 Biokine (Israel)'),
(75056, 'https://ror.org/00hgexf21', 'no_lang_code', 1, 'https://ror.org/00hgexf21 TranS1 (United States)'),
(75057, 'https://ror.org/057ht2493', 'no_lang_code', 1, 'https://ror.org/057ht2493 Biolase (United States)'),
(75058, 'https://ror.org/03wa63r81', 'no_lang_code', 1, 'https://ror.org/03wa63r81 Bioness (United States)'),
(75059, 'https://ror.org/03g3vwd67', 'no_lang_code', 1, 'https://ror.org/03g3vwd67 Bridge Of Nucleic Acids Chemistry (Japan)'),
(75060, 'https://ror.org/036c61m13', 'no_lang_code', 1, 'https://ror.org/036c61m13 BioQ Pharma (United States)'),
(75061, 'https://ror.org/043m06r15', 'no_lang_code', 1, 'https://ror.org/043m06r15 Bioquell (United Kingdom)'),
(75062, 'https://ror.org/03tn4px69', 'no_lang_code', 1, 'https://ror.org/03tn4px69 BVI (United States)'),
(75063, 'https://ror.org/015w8rd21', 'no_lang_code', 1, 'https://ror.org/015w8rd21 Bonesupport (Sweden)'),
(75064, 'https://ror.org/009498z64', 'no_lang_code', 1, 'https://ror.org/009498z64 Joint Active Systems (United States)'),
(75065, 'https://ror.org/0488tfs18', 'no_lang_code', 1, 'https://ror.org/0488tfs18 Broncus (United States)'),
(75066, 'https://ror.org/033rxqp12', 'no_lang_code', 1, 'https://ror.org/033rxqp12 Quad-C Management (United States)'),
(75067, 'https://ror.org/02aqk7720', 'no_lang_code', 1, 'https://ror.org/02aqk7720 Apyx Medical (United States)'),
(75068, 'https://ror.org/02r6j5z05', 'no_lang_code', 1, 'https://ror.org/02r6j5z05 Bruin Biometrics (United States)'),
(75069, 'https://ror.org/0241de231', 'no_lang_code', 1, 'https://ror.org/0241de231 Burcon (Canada)'),
(75070, 'https://ror.org/03whb2884', 'no_lang_code', 1, 'https://ror.org/03whb2884 Brasseler (Germany) Gebr. Brasseler'),
(75071, 'https://ror.org/04s47xe02', 'no_lang_code', 1, 'https://ror.org/04s47xe02 Breg (United States)'),
(75072, 'https://ror.org/00nq5xx94', 'no_lang_code', 1, 'https://ror.org/00nq5xx94 CMR Surgical (United Kingdom)'),
(75073, 'https://ror.org/00bsbpb39', 'no_lang_code', 1, 'https://ror.org/00bsbpb39 Cannuflow (United States)'),
(75074, 'https://ror.org/05psz3234', 'no_lang_code', 1, 'https://ror.org/05psz3234 Bridge Pharma (United States)'),
(75075, 'https://ror.org/04zqtqt31', 'no_lang_code', 1, 'https://ror.org/04zqtqt31 CAO Group (United States)'),
(75076, 'https://ror.org/03pddbz77', 'no_lang_code', 1, 'https://ror.org/03pddbz77 CapsoVision (United States)'),
(75077, 'https://ror.org/0209sxq95', 'no_lang_code', 1, 'https://ror.org/0209sxq95 Brightwake (United Kingdom)'),
(75078, 'https://ror.org/05e823q15', 'no_lang_code', 1, 'https://ror.org/05e823q15 Capsum (France)'),
(75079, 'https://ror.org/01h0vdv12', 'no_lang_code', 1, 'https://ror.org/01h0vdv12 Bristol-Myers Squibb (Ireland)'),
(75080, 'https://ror.org/057w5q630', 'no_lang_code', 1, 'https://ror.org/057w5q630 Cara Therapeutics (United States)'),
(75081, 'https://ror.org/033mch573', 'no_lang_code', 1, 'https://ror.org/033mch573 Carag (Switzerland)'),
(75082, 'https://ror.org/02crmrs33', 'en', 1, 'https://ror.org/02crmrs33 Sytenko Institute of Spine and Joint Pathology of the National Academy of Medical Sciences of Ukraine Інститут патології хребта та суглобів імені Ситенка'),
(75083, 'https://ror.org/03160qy64', 'no_lang_code', 1, 'https://ror.org/03160qy64 Cardiac Dimensions (United States)'),
(75084, 'https://ror.org/0321yg140', 'no_lang_code', 1, 'https://ror.org/0321yg140 Celularity (United States)'),
(75085, 'https://ror.org/05kyjqm05', 'no_lang_code', 1, 'https://ror.org/05kyjqm05 Cardio Flow (United States)'),
(75086, 'https://ror.org/05j855983', 'no_lang_code', 1, 'https://ror.org/05j855983 CEM (United States)'),
(75087, 'https://ror.org/0403afs59', 'no_lang_code', 1, 'https://ror.org/0403afs59 Centinel Spine (United States)'),
(75088, 'https://ror.org/058454n10', 'no_lang_code', 1, 'https://ror.org/058454n10 Centrix (United States)'),
(75089, 'https://ror.org/00xyaq666', 'no_lang_code', 1, 'https://ror.org/00xyaq666 Abcentra (United States)'),
(75090, 'https://ror.org/00rpy3653', 'no_lang_code', 1, 'https://ror.org/00rpy3653 Caregen (South Korea)'),
(75091, 'https://ror.org/03jqa1k37', 'no_lang_code', 1, 'https://ror.org/03jqa1k37 Cercacor (United States)'),
(75092, 'https://ror.org/01acc4e45', 'no_lang_code', 1, 'https://ror.org/01acc4e45 Castellini (Italy)'),
(75093, 'https://ror.org/014ze5k65', 'no_lang_code', 1, 'https://ror.org/014ze5k65 Catalyst Chemical Industries (India)'),
(75094, 'https://ror.org/01avpbm97', 'no_lang_code', 1, 'https://ror.org/01avpbm97 Chanel (United Kingdom)'),
(75095, 'https://ror.org/01jc4ps18', 'no_lang_code', 1, 'https://ror.org/01jc4ps18 CathRx (Australia)'),
(75096, 'https://ror.org/05n9p4847', 'no_lang_code', 1, 'https://ror.org/05n9p4847 SK Capital (United States)'),
(75097, 'https://ror.org/05qvjtg77', 'no_lang_code', 1, 'https://ror.org/05qvjtg77 Chemi (Italy)'),
(75098, 'https://ror.org/00y6pq124', 'no_lang_code', 1, 'https://ror.org/00y6pq124 Cefla (Italy)'),
(75099, 'https://ror.org/03mc14w65', 'no_lang_code', 1, 'https://ror.org/03mc14w65 Cellix Bio (India)'),
(75100, 'https://ror.org/041aqd617', 'no_lang_code', 1, 'https://ror.org/041aqd617 QVT (United States)'),
(75101, 'https://ror.org/05sbyq382', 'no_lang_code', 1, 'https://ror.org/05sbyq382 China Petrochemical Development Corporation (Taiwan) 中國石油化學工業開發股份有限公司'),
(75102, 'https://ror.org/044jzz105', 'no_lang_code', 1, 'https://ror.org/044jzz105 Clariance (Luxembourg)'),
(75103, 'https://ror.org/04h1ssz20', 'no_lang_code', 1, 'https://ror.org/04h1ssz20 CoDa Therapeutics (United States)'),
(75104, 'https://ror.org/04v1fvq31', 'no_lang_code', 1, 'https://ror.org/04v1fvq31 Chromocell (United States)'),
(75105, 'https://ror.org/016ye1q56', 'no_lang_code', 1, 'https://ror.org/016ye1q56 Cognetix (India)'),
(75106, 'https://ror.org/00k03v073', 'no_lang_code', 1, 'https://ror.org/00k03v073 CoImmune (United States)'),
(75107, 'https://ror.org/02s4vwe47', 'no_lang_code', 1, 'https://ror.org/02s4vwe47 CINOGY Technologies (Germany)'),
(75108, 'https://ror.org/00q2vrq29', 'no_lang_code', 1, 'https://ror.org/00q2vrq29 Collegium Pharmaceutical (United States)'),
(75109, 'https://ror.org/0432avs60', 'no_lang_code', 1, 'https://ror.org/0432avs60 Corium (United States)'),
(75110, 'https://ror.org/02esj6529', 'no_lang_code', 1, 'https://ror.org/02esj6529 Conagen (United States)'),
(75111, 'https://ror.org/04gwyv878', 'no_lang_code', 1, 'https://ror.org/04gwyv878 CorMatrix (United States)'),
(75112, 'https://ror.org/02w5mt348', 'no_lang_code', 1, 'https://ror.org/02w5mt348 Corvia Medical (United States)'),
(75113, 'https://ror.org/024s0ye18', 'no_lang_code', 1, 'https://ror.org/024s0ye18 Conformis (United States)'),
(75114, 'https://ror.org/013vv4k88', 'no_lang_code', 1, 'https://ror.org/013vv4k88 CosMED Pharmaceutical (Japan) コスメディ製薬'),
(75115, 'https://ror.org/037g1qp67', 'no_lang_code', 1, 'https://ror.org/037g1qp67 ConjuChem (Canada)'),
(75116, 'https://ror.org/01ftyyd55', 'no_lang_code', 1, 'https://ror.org/01ftyyd55 Coty (United States)'),
(75117, 'https://ror.org/03kk36z33', 'no_lang_code', 1, 'https://ror.org/03kk36z33 Cousin Biotech (France)'),
(75118, 'https://ror.org/02ztbx464', 'no_lang_code', 1, 'https://ror.org/02ztbx464 Conventus Orthopaedics (United States)'),
(75119, 'https://ror.org/053c4y589', 'no_lang_code', 1, 'https://ror.org/053c4y589 J.M. Huber Corporation (United States)'),
(75120, 'https://ror.org/029eqtm48', 'no_lang_code', 1, 'https://ror.org/029eqtm48 Cook Biotech (United States)'),
(75121, 'https://ror.org/01217ma45', 'no_lang_code', 1, 'https://ror.org/01217ma45 Footstar (United States)'),
(75122, 'https://ror.org/04v23a626', 'no_lang_code', 1, 'https://ror.org/04v23a626 CPH Innovations (United Kingdom)'),
(75123, 'https://ror.org/04r008d47', 'no_lang_code', 1, 'https://ror.org/04r008d47 CRG Services (United States)'),
(75124, 'https://ror.org/04ewmsk50', 'no_lang_code', 1, 'https://ror.org/04ewmsk50 CRISPR Therapeutics (Switzerland)'),
(75125, 'https://ror.org/0230dw403', 'no_lang_code', 1, 'https://ror.org/0230dw403 CrossRoads Extremity Systems (United States)'),
(75126, 'https://ror.org/04x0j9s13', 'no_lang_code', 1, 'https://ror.org/04x0j9s13 Crystal Pharmatech (United States)'),
(75127, 'https://ror.org/02c9ess02', 'no_lang_code', 1, 'https://ror.org/02c9ess02 CTL Amedica (United States)'),
(75128, 'https://ror.org/058n07v74', 'no_lang_code', 1, 'https://ror.org/058n07v74 Curemark (United States)'),
(75129, 'https://ror.org/05b6nrx87', 'no_lang_code', 1, 'https://ror.org/05b6nrx87 CooperSurgical (United States)'),
(75130, 'https://ror.org/056jz8j95', 'no_lang_code', 1, 'https://ror.org/056jz8j95 Spinal Elements (United States)'),
(75131, 'https://ror.org/00wrdbm93', 'no_lang_code', 1, 'https://ror.org/00wrdbm93 Cyberdyne (Japan) サイバーダイン'),
(75132, 'https://ror.org/055r2kv75', 'no_lang_code', 1, 'https://ror.org/055r2kv75 Cybersonics (United States)'),
(75133, 'https://ror.org/00djr1538', 'no_lang_code', 1, 'https://ror.org/00djr1538 DCA (United Kingdom)'),
(75134, 'https://ror.org/05tzg1b68', 'no_lang_code', 1, 'https://ror.org/05tzg1b68 Cyclerion (United States)'),
(75135, 'https://ror.org/030pq6x19', 'no_lang_code', 1, 'https://ror.org/030pq6x19 Cynora (Germany)'),
(75136, 'https://ror.org/00tq9bz11', 'no_lang_code', 1, 'https://ror.org/00tq9bz11 Royalty Pharma (United States)'),
(75137, 'https://ror.org/02vfj3j86', 'no_lang_code', 1, 'https://ror.org/02vfj3j86 Shanghai Fudan Microelectronics (China) 上海复旦微电子集团股份有限公司'),
(75138, 'https://ror.org/05p0nrm77', 'no_lang_code', 1, 'https://ror.org/05p0nrm77 Shindengen Electric Manufacturing (Japan) 新電元工業株式会社'),
(75139, 'https://ror.org/04tcnqa94', 'no_lang_code', 1, 'https://ror.org/04tcnqa94 Tianshui Huatian Technology (China) 华天科技'),
(75140, 'https://ror.org/04bnd9a95', 'no_lang_code', 1, 'https://ror.org/04bnd9a95 Shenzhen Goodix Technology (China) 汇顶科技'),
(75141, 'https://ror.org/008f1m719', 'no_lang_code', 1, 'https://ror.org/008f1m719 Immune Pharmaceuticals (United States)'),
(75142, 'https://ror.org/039hfcg55', 'no_lang_code', 1, 'https://ror.org/039hfcg55 Parade Technologies (United States)'),
(75143, 'https://ror.org/027jnbj33', 'no_lang_code', 1, 'https://ror.org/027jnbj33 Allwinner Technology (China) 全志'),
(75144, 'https://ror.org/00zvhfv21', 'no_lang_code', 1, 'https://ror.org/00zvhfv21 Silergy (China)'),
(75145, 'https://ror.org/0362sfm95', 'no_lang_code', 1, 'https://ror.org/0362sfm95 E4D Technologies (United States)'),
(75146, 'https://ror.org/04e2r7y81', 'no_lang_code', 1, 'https://ror.org/04e2r7y81 Powerchip (Taiwan) 力晶科技股份有限公司'),
(75147, 'https://ror.org/02y9rwc40', 'no_lang_code', 1, 'https://ror.org/02y9rwc40 U-blox (Switzerland)'),
(75148, 'https://ror.org/01dwnnm75', 'no_lang_code', 1, 'https://ror.org/01dwnnm75 Shanghai Aerospace Automobile Electromechanical (China) 上海航天汽车机电股份有限公司'),
(75149, 'https://ror.org/00y3rz519', 'no_lang_code', 1, 'https://ror.org/00y3rz519 Jiangsu Changjiang Electronics Technology (China) 江蘇長電科技股份有限公司'),
(75150, 'https://ror.org/053g4zj73', 'no_lang_code', 1, 'https://ror.org/053g4zj73 Raydium Semiconductor (Taiwan)'),
(75151, 'https://ror.org/05878p058', 'no_lang_code', 1, 'https://ror.org/05878p058 Silicon Motion (Taiwan) 慧榮科技'),
(75152, 'https://ror.org/0493cs919', 'no_lang_code', 1, 'https://ror.org/0493cs919 Jusung Engineering (South Korea) 주성엔지니어링'),
(75153, 'https://ror.org/02g2x8w06', 'no_lang_code', 1, 'https://ror.org/02g2x8w06 Control4 (United States)'),
(75154, 'https://ror.org/00vwbk234', 'no_lang_code', 1, 'https://ror.org/00vwbk234 Melexis (Belgium)'),
(75155, 'https://ror.org/051d31036', 'no_lang_code', 1, 'https://ror.org/051d31036 ELAN Microelectronics (Taiwan) 義隆電子'),
(75156, 'https://ror.org/036kzqv28', 'no_lang_code', 1, 'https://ror.org/036kzqv28 Sitronix Technology (Taiwan)'),
(75157, 'https://ror.org/02ws27m94', 'no_lang_code', 1, 'https://ror.org/02ws27m94 Besi (Netherlands)'),
(75158, 'https://ror.org/00mft6s50', 'no_lang_code', 1, 'https://ror.org/00mft6s50 Daihachi Chemical Industry (Japan)'),
(75159, 'https://ror.org/02gada206', 'no_lang_code', 1, 'https://ror.org/02gada206 Silicon Works (South Korea) 주)실리콘웍스'),
(75160, 'https://ror.org/01nn9ej41', 'no_lang_code', 1, 'https://ror.org/01nn9ej41 Silicon Mitus (United States)'),
(75161, 'https://ror.org/02k7thy32', 'no_lang_code', 1, 'https://ror.org/02k7thy32 Daikyo Seiko (Japan) 大協精工'),
(75162, 'https://ror.org/01r2vjq11', 'no_lang_code', 1, 'https://ror.org/01r2vjq11 Tower Semiconductor (Israel) タワーセミコンダクター'),
(75163, 'https://ror.org/00cy9w266', 'no_lang_code', 1, 'https://ror.org/00cy9w266 Sensirion (Switzerland)'),
(75164, 'https://ror.org/00c31c476', 'no_lang_code', 1, 'https://ror.org/00c31c476 Vishay Intertechnology (United States)'),
(75165, 'https://ror.org/02whnz742', 'no_lang_code', 1, 'https://ror.org/02whnz742 Daio Paper Corporation (Japan)'),
(75166, 'https://ror.org/022pwfx49', 'no_lang_code', 1, 'https://ror.org/022pwfx49 SMART Global Holdings (United States)'),
(75167, 'https://ror.org/02fh8tg22', 'no_lang_code', 1, 'https://ror.org/02fh8tg22 Osaka Soda (Japan) 大阪ソーダ'),
(75168, 'https://ror.org/00ycxta63', 'no_lang_code', 1, 'https://ror.org/00ycxta63 Hengdian Group DMEGC Magnetics (China)'),
(75169, 'https://ror.org/04ktbjv18', 'no_lang_code', 1, 'https://ror.org/04ktbjv18 Kulicke & Soffa (Singapore)'),
(75170, 'https://ror.org/00gw0v185', 'no_lang_code', 1, 'https://ror.org/00gw0v185 Inovance (China)'),
(75171, 'https://ror.org/01c7pa495', 'no_lang_code', 1, 'https://ror.org/01c7pa495 Powertech Technology (Taiwan) 力成科技'),
(75172, 'https://ror.org/01tyj4381', 'no_lang_code', 1, 'https://ror.org/01tyj4381 Sino-American Silicon Products (Taiwan)'),
(75173, 'https://ror.org/03phj8y65', 'no_lang_code', 1, 'https://ror.org/03phj8y65 Wonik IPS (South Korea) 원익아이피에스'),
(75174, 'https://ror.org/035gkst87', 'no_lang_code', 1, 'https://ror.org/035gkst87 Sigma Designs (United States)'),
(75175, 'https://ror.org/036ge5h13', 'es', 1, 'https://ror.org/036ge5h13 Academia Nacional de la Historia de la República Argentina National Academy of History of Argentina'),
(75176, 'https://ror.org/004evz222', 'fr', 1, 'https://ror.org/004evz222 Association Nationale des Producteurs de Noisettes'),
(75177, 'https://ror.org/020swhw58', 'en', 1, 'https://ror.org/020swhw58 Insight Healthcare'),
(75178, 'https://ror.org/05nzfv767', 'no_lang_code', 1, 'https://ror.org/05nzfv767 Entangly (Sweden)'),
(75179, 'https://ror.org/035d70176', 'en', 1, 'https://ror.org/035d70176 Siberian Law University Сибирский юридический университет'),
(75180, 'https://ror.org/04y1ast97', 'en', 1, 'https://ror.org/04y1ast97 Archives de l''État Rijksarchief State Archives of Belgium'),
(75181, 'https://ror.org/04zjdjw13', 'en', 1, 'https://ror.org/04zjdjw13 State Institution "Ukrainian Research Institute of Medical Rehabilitation and Resort Therapy of Ministry of Health of Ukraine" Государственное учреждение "Украинский научно-исследовательский институт медицинской реабилитации и курортологии Министерства здравоохранения Украины" Державна установа "Український науково-дослідний інститут медичної реабілітації та курортології Міністерства охорони здоров''я України"'),
(75182, 'https://ror.org/01ye8r794', 'en', 1, 'https://ror.org/01ye8r794 Tropical Crops Genetic Resources Institute 热带作物品种资源研究所'),
(75183, 'https://ror.org/01w4k1v53', 'en', 1, 'https://ror.org/01w4k1v53 Rubber Research Institute 中国热带农业科学院橡胶研究所'),
(75184, 'https://ror.org/01aggbv66', 'en', 1, 'https://ror.org/01aggbv66 Mahendra Institute of Management and Technical Studies ମହେନ୍ଦ୍ର ଇନଷ୍ଟିଚ୍ୟୁଟ୍ ଅଫ୍ ମ୍ୟାନେଜମେଣ୍ଟ ଆଣ୍ଡ ଟେକ୍ନିକାଲ ଷ୍ଟଡିସ (ମିମ୍ଟ୍ସ)'),
(75185, 'https://ror.org/02e5fdp70', 'no_lang_code', 1, 'https://ror.org/02e5fdp70 Merit Medical (United States)'),
(75186, 'https://ror.org/05c4d7454', 'en', 1, 'https://ror.org/05c4d7454 Spice and Beverage Research Institute 香料饮料研究所'),
(75187, 'https://ror.org/00xjqd715', 'en', 1, 'https://ror.org/00xjqd715 Coconut Research Institute 中国热带农业科学院椰子研究所'),
(75188, 'https://ror.org/025e41905', 'no_lang_code', 1, 'https://ror.org/025e41905 Diatex (France)'),
(75189, 'https://ror.org/04jeca075', 'en', 1, 'https://ror.org/04jeca075 South Subtropical Crops Research Institute 广东省湛江市麻章区湖秀路一号'),
(75190, 'https://ror.org/03dkwk174', 'en', 1, 'https://ror.org/03dkwk174 Tropical Bioscience and Biotechnology Research Institute 热带生物技术研究所'),
(75191, 'https://ror.org/05jnx3123', 'no_lang_code', 1, 'https://ror.org/05jnx3123 Dipharma (Italy)'),
(75192, 'https://ror.org/00a21fr98', 'en', 1, 'https://ror.org/00a21fr98 Environment and Plant Protection Research Institute 环境与植物保护研究所'),
(75193, 'https://ror.org/00g46p143', 'en', 1, 'https://ror.org/00g46p143 Agricultural Product Processing Research Institute 农产品加工研究所'),
(75194, 'https://ror.org/05qrpwx06', 'en', 1, 'https://ror.org/05qrpwx06 Tropical Agricultural Machinery Research Institute 农业机械研究所'),
(75195, 'https://ror.org/0170b6c09', 'en', 1, 'https://ror.org/0170b6c09 Institute of Scientific and Technical Information'),
(75196, 'https://ror.org/03b9bgv12', 'no_lang_code', 1, 'https://ror.org/03b9bgv12 DemeRx (United States)'),
(75197, 'https://ror.org/01m9scr97', 'en', 1, 'https://ror.org/01m9scr97 Analysis and Testing Centre 分析测试中心'),
(75198, 'https://ror.org/03kzpar53', 'en', 1, 'https://ror.org/03kzpar53 Haikou Experimental Station 中国热带农业科学院海口实验站'),
(75199, 'https://ror.org/05rvyrg53', 'en', 1, 'https://ror.org/05rvyrg53 Zhanjiang Experimental Station 湛江实验站'),
(75200, 'https://ror.org/00f2c2516', 'en', 1, 'https://ror.org/00f2c2516 Guangzhou Experimental Station 中国热带农业科学院广州实验站'),
(75201, 'https://ror.org/027vtzk17', 'no_lang_code', 1, 'https://ror.org/027vtzk17 DeRoyal (United States)'),
(75202, 'https://ror.org/05wg4vz65', 'no_lang_code', 1, 'https://ror.org/05wg4vz65 Phoenix Mecano (Switzerland)'),
(75203, 'https://ror.org/05ctcx759', 'no_lang_code', 1, 'https://ror.org/05ctcx759 Dong-A Pharmaceutical (South Korea)'),
(75204, 'https://ror.org/04v7v1m43', 'no_lang_code', 1, 'https://ror.org/04v7v1m43 DongKook Pharmaceutical (South Korea)'),
(75205, 'https://ror.org/00nz5p994', 'no_lang_code', 1, 'https://ror.org/00nz5p994 Dongwha Pharm (South Korea)'),
(75206, 'https://ror.org/01znjq697', 'no_lang_code', 1, 'https://ror.org/01znjq697 Dorf Ketal (India) डॉर्फ-केटल केमिकल्स इंडिया प्राइवेट लिमिटेड'),
(75207, 'https://ror.org/04gek0a04', 'no_lang_code', 1, 'https://ror.org/04gek0a04 Geistlich (Switzerland)'),
(75208, 'https://ror.org/00b49pe93', 'no_lang_code', 1, 'https://ror.org/00b49pe93 Dornier MedTech (Germany)'),
(75209, 'https://ror.org/02626d994', 'no_lang_code', 1, 'https://ror.org/02626d994 Edan (China)'),
(75210, 'https://ror.org/0374y9c72', 'no_lang_code', 1, 'https://ror.org/0374y9c72 DOT (Germany)'),
(75211, 'https://ror.org/04089mn23', 'no_lang_code', 1, 'https://ror.org/04089mn23 Edgewell Personal Care (United States)'),
(75212, 'https://ror.org/03a00yh12', 'no_lang_code', 1, 'https://ror.org/03a00yh12 Editas Medicine (United States)'),
(75213, 'https://ror.org/052464b83', 'no_lang_code', 1, 'https://ror.org/052464b83 Doxa (Sweden)'),
(75214, 'https://ror.org/04ahrkj41', 'no_lang_code', 1, 'https://ror.org/04ahrkj41 Elementis (United Kingdom)'),
(75215, 'https://ror.org/02nwwqk69', 'no_lang_code', 1, 'https://ror.org/02nwwqk69 Butamax (United States)'),
(75216, 'https://ror.org/051dcnw66', 'no_lang_code', 1, 'https://ror.org/051dcnw66 Drylock Technologies (Belgium)'),
(75217, 'https://ror.org/03vcxzw86', 'no_lang_code', 1, 'https://ror.org/03vcxzw86 DSG Technology (Norway)'),
(75218, 'https://ror.org/05p26dc09', 'no_lang_code', 1, 'https://ror.org/05p26dc09 Emery Oleochemicals (Malaysia)'),
(75219, 'https://ror.org/03zf99n20', 'no_lang_code', 1, 'https://ror.org/03zf99n20 Centrient Pharmaceuticals (Netherlands)'),
(75220, 'https://ror.org/01ppyqb03', 'no_lang_code', 1, 'https://ror.org/01ppyqb03 Cardinal Health (Ireland)'),
(75221, 'https://ror.org/02n2ng334', 'no_lang_code', 1, 'https://ror.org/02n2ng334 Emisphere Technologies (United States)'),
(75222, 'https://ror.org/02mcfj023', 'no_lang_code', 1, 'https://ror.org/02mcfj023 Cendres+Métaux (Switzerland)'),
(75223, 'https://ror.org/04khv4y21', 'no_lang_code', 1, 'https://ror.org/04khv4y21 Made For Retail (United States)'),
(75224, 'https://ror.org/01db4wa08', 'no_lang_code', 1, 'https://ror.org/01db4wa08 DUKSAN Neolux (South Korea)'),
(75225, 'https://ror.org/00myrf395', 'no_lang_code', 1, 'https://ror.org/00myrf395 Restech (United States)'),
(75226, 'https://ror.org/03f504c84', 'no_lang_code', 1, 'https://ror.org/03f504c84 Dow Chemical (France)'),
(75227, 'https://ror.org/015ccve61', 'no_lang_code', 1, 'https://ror.org/015ccve61 Dilon Technologies (United States)'),
(75228, 'https://ror.org/04n7n7219', 'no_lang_code', 1, 'https://ror.org/04n7n7219 Eagle Pharmaceuticals (United States)'),
(75229, 'https://ror.org/03s5ddr02', 'no_lang_code', 1, 'https://ror.org/03s5ddr02 EBR Systems (United States)'),
(75230, 'https://ror.org/03mhtfp97', 'no_lang_code', 1, 'https://ror.org/03mhtfp97 ECA Medical (United States)'),
(75231, 'https://ror.org/01xcek018', 'no_lang_code', 1, 'https://ror.org/01xcek018 Ensuiko Sugar Refining (Japan)'),
(75232, 'https://ror.org/05mz52w65', 'no_lang_code', 1, 'https://ror.org/05mz52w65 Ethris (Germany)'),
(75233, 'https://ror.org/01ddr6f40', 'no_lang_code', 1, 'https://ror.org/01ddr6f40 Enteris Biopharma (United States)'),
(75234, 'https://ror.org/019f6hy95', 'no_lang_code', 1, 'https://ror.org/019f6hy95 Duoject Medical Systems (Canada)'),
(75235, 'https://ror.org/0056pgw95', 'no_lang_code', 1, 'https://ror.org/0056pgw95 Eureka Therapeutics (United States)'),
(75236, 'https://ror.org/01ww58407', 'no_lang_code', 1, 'https://ror.org/01ww58407 Durect (United States)'),
(75237, 'https://ror.org/01d7h6313', 'no_lang_code', 1, 'https://ror.org/01d7h6313 Enzo Life Sciences (United States)'),
(75238, 'https://ror.org/028c7mm22', 'no_lang_code', 1, 'https://ror.org/028c7mm22 Delmar (Canada)'),
(75239, 'https://ror.org/00s6yzk33', 'no_lang_code', 1, 'https://ror.org/00s6yzk33 Exogenesis (United States)'),
(75240, 'https://ror.org/03455bm37', 'no_lang_code', 1, 'https://ror.org/03455bm37 Epix Pharmaceuticals (United States)'),
(75241, 'https://ror.org/008ww7s63', 'no_lang_code', 1, 'https://ror.org/008ww7s63 Eurobio Scientific (France)'),
(75242, 'https://ror.org/0171m6969', 'no_lang_code', 1, 'https://ror.org/0171m6969 Exploramed (United States)'),
(75243, 'https://ror.org/00g35nv72', 'no_lang_code', 1, 'https://ror.org/00g35nv72 EndoGastric Solutions (United States)'),
(75244, 'https://ror.org/052yc4b30', 'no_lang_code', 1, 'https://ror.org/052yc4b30 Exsymol (Monaco)'),
(75245, 'https://ror.org/029tw8r50', 'no_lang_code', 1, 'https://ror.org/029tw8r50 Eyesense (Germany)'),
(75246, 'https://ror.org/01vpqmh56', 'no_lang_code', 1, 'https://ror.org/01vpqmh56 Endologix (United States)'),
(75247, 'https://ror.org/05rjxhq89', 'no_lang_code', 1, 'https://ror.org/05rjxhq89 Erregierre (Italy)'),
(75248, 'https://ror.org/03ntya366', 'no_lang_code', 1, 'https://ror.org/03ntya366 Ezaki Glico (Japan) 江崎グリコ株式会社'),
(75249, 'https://ror.org/01pj6sv40', 'no_lang_code', 1, 'https://ror.org/01pj6sv40 EssilorLuxottica (France)'),
(75250, 'https://ror.org/01h39y763', 'no_lang_code', 1, 'https://ror.org/01h39y763 Endotronix (United States)'),
(75251, 'https://ror.org/024g3yp89', 'no_lang_code', 1, 'https://ror.org/024g3yp89 FGP (Italy)');
INSERT INTO `rors` VALUES
(75252, 'https://ror.org/01gzkj661', 'no_lang_code', 1, 'https://ror.org/01gzkj661 Essity (Sweden)'),
(75253, 'https://ror.org/02pqja087', 'no_lang_code', 1, 'https://ror.org/02pqja087 Engeneic (Australia)'),
(75254, 'https://ror.org/01z5cg313', 'no_lang_code', 1, 'https://ror.org/01z5cg313 Fabbrica Italiana Sintetici (Italy)'),
(75255, 'https://ror.org/034zjqs11', 'no_lang_code', 1, 'https://ror.org/034zjqs11 Scorpion Therapeutics (United States)'),
(75256, 'https://ror.org/02df3jd82', 'en', 1, 'https://ror.org/02df3jd82 Urolife Stone Hospital'),
(75257, 'https://ror.org/004z0nw85', 'no_lang_code', 1, 'https://ror.org/004z0nw85 Forestadent (Germany)'),
(75258, 'https://ror.org/03dpves30', 'no_lang_code', 1, 'https://ror.org/03dpves30 Estech Systems (United States)'),
(75259, 'https://ror.org/038pg5d86', 'no_lang_code', 1, 'https://ror.org/038pg5d86 Esteve Química (Spain)'),
(75260, 'https://ror.org/05d09jf58', 'no_lang_code', 1, 'https://ror.org/05d09jf58 Fonar (United States)'),
(75261, 'https://ror.org/02qpxnp21', 'no_lang_code', 1, 'https://ror.org/02qpxnp21 Fontem Ventures (Netherlands)'),
(75262, 'https://ror.org/057v6df68', 'no_lang_code', 1, 'https://ror.org/057v6df68 Nomura Holdings (Japan) 野村ホールディングス株式会社'),
(75263, 'https://ror.org/044eskk16', 'en', 1, 'https://ror.org/044eskk16 Team University'),
(75264, 'https://ror.org/013hxq561', 'en', 1, 'https://ror.org/013hxq561 University of the Sacred Heart Gulu'),
(75265, 'https://ror.org/029q69m70', 'en', 1, 'https://ror.org/029q69m70 Virtual University of Uganda'),
(75266, 'https://ror.org/0069k3e75', 'en', 1, 'https://ror.org/0069k3e75 Institute of Mental Health கீழ்பாக்கம் அரசு மனநல மருத்துவமனை'),
(75267, 'https://ror.org/05cf0ez61', 'en', 1, 'https://ror.org/05cf0ez61 Institute of Petroleum Studies Kampala'),
(75268, 'https://ror.org/05q5cdt12', 'en', 1, 'https://ror.org/05q5cdt12 Ministry of Law and Justice विधि और न्याय मंत्रालय'),
(75269, 'https://ror.org/02caa0269', 'en', 1, 'https://ror.org/02caa0269 Infectious Diseases Institute'),
(75270, 'https://ror.org/02bjrj215', 'en', 1, 'https://ror.org/02bjrj215 Uganda Petroleum Institute'),
(75271, 'https://ror.org/03q1w5k18', 'en', 1, 'https://ror.org/03q1w5k18 Fins Medical University'),
(75272, 'https://ror.org/05re5gc10', 'en', 1, 'https://ror.org/05re5gc10 ISBAT University'),
(75273, 'https://ror.org/02488qf25', 'en', 1, 'https://ror.org/02488qf25 Metropolitan International University'),
(75274, 'https://ror.org/052djjn64', 'no_lang_code', 1, 'https://ror.org/052djjn64 Factor Bioscience (United States)'),
(75275, 'https://ror.org/049fqwf34', 'no_lang_code', 1, 'https://ror.org/049fqwf34 Fermion (Finland)'),
(75276, 'https://ror.org/039ywcc21', 'no_lang_code', 1, 'https://ror.org/039ywcc21 Fukuda Denshi (Japan)'),
(75277, 'https://ror.org/04q775h70', 'en', 1, 'https://ror.org/04q775h70 Terra Foundation for American Art'),
(75278, 'https://ror.org/02rt9z237', 'no_lang_code', 1, 'https://ror.org/02rt9z237 Hindawi (United Kingdom)'),
(75279, 'https://ror.org/014trz974', 'en', 1, 'https://ror.org/014trz974 Qualitative Data Repository'),
(75280, 'https://ror.org/0468x4e75', 'en', 1, 'https://ror.org/0468x4e75 UK Data Service'),
(75281, 'https://ror.org/028ap6052', 'en', 1, 'https://ror.org/028ap6052 Institute of Animal Biology NAAS Інститут біології тварин НААН'),
(75282, 'https://ror.org/022ezeq21', 'no_lang_code', 1, 'https://ror.org/022ezeq21 ADMED (Switzerland) Analyses et Diagnostics Medicaux'),
(75283, 'https://ror.org/04abbs137', 'en', 1, 'https://ror.org/04abbs137 Institute of Genetic and Regenerative Medicine of the National Academy of Medical Sciences of Ukraine Державна установа "Інститут генетичної та регенеративної медицини Національної академії медичних наук України"'),
(75284, 'https://ror.org/05rgcq579', 'no_lang_code', 1, 'https://ror.org/05rgcq579 Derwen (United States)'),
(75285, 'https://ror.org/00afzhq19', 'en', 1, 'https://ror.org/00afzhq19 L.T. Malaya National Therapy Institute of the National Academy of Medical Sciences of Ukraine Державна установа “Нацiональний iнститут терапії iменi Л.Т.Малої Національної академії медичних наук України”'),
(75286, 'https://ror.org/0208ecv48', 'no_lang_code', 1, 'https://ror.org/0208ecv48 Amstein + Walthert (Switzerland)'),
(75287, 'https://ror.org/02rj0fp17', 'en', 1, 'https://ror.org/02rj0fp17 Pollinator Partnership'),
(75288, 'https://ror.org/02rtpt551', 'no_lang_code', 1, 'https://ror.org/02rtpt551 Boehringer Ingelheim (Switzerland)'),
(75289, 'https://ror.org/003fdpq59', 'no_lang_code', 1, 'https://ror.org/003fdpq59 Micos Engineering (Switzerland)'),
(75290, 'https://ror.org/041w6fe35', 'no_lang_code', 1, 'https://ror.org/041w6fe35 Spetec (Germany)'),
(75291, 'https://ror.org/01cdxzt16', 'en', 1, 'https://ror.org/01cdxzt16 Pakistan Scientific and Technological Information Centre پاکستان سائنسی اور تکنیکی معلومات مرکز'),
(75292, 'https://ror.org/01qyyep84', 'en', 1, 'https://ror.org/01qyyep84 Community Agroecology Network'),
(75293, 'https://ror.org/01088yf98', 'en', 1, 'https://ror.org/01088yf98 Mabula Ground Hornbill Project'),
(75294, 'https://ror.org/00w1ev608', 'en', 1, 'https://ror.org/00w1ev608 Fundación Iguaque Iguaque Foundation'),
(75295, 'https://ror.org/04bhpte75', 'no_lang_code', 1, 'https://ror.org/04bhpte75 IPS Elektroniklabor (Germany)'),
(75296, 'https://ror.org/05997db74', 'en', 1, 'https://ror.org/05997db74 Global Institute for Water Security'),
(75297, 'https://ror.org/036j21948', 'no_lang_code', 1, 'https://ror.org/036j21948 Protix (Netherlands)'),
(75298, 'https://ror.org/000wyyt97', 'no_lang_code', 1, 'https://ror.org/000wyyt97 Theracule (Norway)'),
(75299, 'https://ror.org/023m36v90', 'no_lang_code', 1, 'https://ror.org/023m36v90 Family Inada (Japan) ファミリーイナダ株式会社'),
(75300, 'https://ror.org/03repqx13', 'no_lang_code', 1, 'https://ror.org/03repqx13 Bluejay Mining (United Kingdom)'),
(75301, 'https://ror.org/046fxzx47', 'no_lang_code', 1, 'https://ror.org/046fxzx47 France Bed Holdings (Japan) フランスベッドホールディングス'),
(75302, 'https://ror.org/01x8bp388', 'no_lang_code', 1, 'https://ror.org/01x8bp388 ImageRive (Switzerland)'),
(75303, 'https://ror.org/057pf5h72', 'hu', 1, 'https://ror.org/057pf5h72 Kiskunság National Park Kiskunsági Nemzeti Park'),
(75304, 'https://ror.org/01afeqs63', 'no_lang_code', 1, 'https://ror.org/01afeqs63 PEEL Therapeutics (United States)'),
(75305, 'https://ror.org/002vfg852', 'no_lang_code', 1, 'https://ror.org/002vfg852 Ferno (United States)'),
(75306, 'https://ror.org/05cgh0738', 'no_lang_code', 1, 'https://ror.org/05cgh0738 Biocensus (United Kingdom)'),
(75307, 'https://ror.org/04jnzhb65', 'en', 1, 'https://ror.org/04jnzhb65 Artsdatabanken Norwegian Biodiversity Information Centre'),
(75308, 'https://ror.org/04yek5175', 'no_lang_code', 1, 'https://ror.org/04yek5175 Ferrosan Medical Devices (Denmark)'),
(75309, 'https://ror.org/0294vh269', 'no_lang_code', 1, 'https://ror.org/0294vh269 Fertin Pharma (Denmark)'),
(75310, 'https://ror.org/04g88st81', 'no_lang_code', 1, 'https://ror.org/04g88st81 Freund (Japan)'),
(75311, 'https://ror.org/023g9jn96', 'no_lang_code', 1, 'https://ror.org/023g9jn96 Fumakilla (Japan) フマキラー'),
(75312, 'https://ror.org/04v300186', 'no_lang_code', 1, 'https://ror.org/04v300186 Filtertek (United States)'),
(75313, 'https://ror.org/00z0wts96', 'no_lang_code', 1, 'https://ror.org/00z0wts96 Fuji Chemical Industries (Japan) 富士化学工業株式会社'),
(75314, 'https://ror.org/05xj42126', 'no_lang_code', 1, 'https://ror.org/05xj42126 FujiFilm VisualSonics (Canada)'),
(75315, 'https://ror.org/008enam71', 'en', 1, 'https://ror.org/008enam71 Polish Botanical Society Polskie Towarzystwo Botaniczne'),
(75316, 'https://ror.org/02y5zge30', 'no_lang_code', 1, 'https://ror.org/02y5zge30 Gene Signal (Switzerland)'),
(75317, 'https://ror.org/041vwff03', 'no_lang_code', 1, 'https://ror.org/041vwff03 Fuso Pharmaceutical Industries (Japan) 扶桑薬品工業株式会社'),
(75318, 'https://ror.org/04r226n96', 'no_lang_code', 1, 'https://ror.org/04r226n96 Groupe Lépine (France)'),
(75319, 'https://ror.org/01ndwmb50', 'no_lang_code', 1, 'https://ror.org/01ndwmb50 Alpek (Mexico)'),
(75320, 'https://ror.org/02f6hqb19', 'no_lang_code', 1, 'https://ror.org/02f6hqb19 Evive Biotech (China)'),
(75321, 'https://ror.org/05m43xv28', 'no_lang_code', 1, 'https://ror.org/05m43xv28 Halkey-Roberts (United States)'),
(75322, 'https://ror.org/01e0dz978', 'en', 1, 'https://ror.org/01e0dz978 VA Central Western Massachusetts Healthcare System'),
(75323, 'https://ror.org/00kan1k39', 'en', 1, 'https://ror.org/00kan1k39 VA Illiana Health Care System'),
(75324, 'https://ror.org/04qbg9n81', 'en', 1, 'https://ror.org/04qbg9n81 VA Northern Indiana Health Care System'),
(75325, 'https://ror.org/00acjv878', 'en', 1, 'https://ror.org/00acjv878 Oscar G. Johnson VA Medical Center'),
(75326, 'https://ror.org/020ajpe42', 'en', 1, 'https://ror.org/020ajpe42 Togus VA Medical Center'),
(75327, 'https://ror.org/037nrh939', 'en', 1, 'https://ror.org/037nrh939 John J. Pershing VA Medical Center'),
(75328, 'https://ror.org/04zkam251', 'en', 1, 'https://ror.org/04zkam251 Marion VA Medical Center'),
(75329, 'https://ror.org/02x7pye76', 'no_lang_code', 1, 'https://ror.org/02x7pye76 Sulzer (United States)'),
(75330, 'https://ror.org/01dt1nn03', 'en', 1, 'https://ror.org/01dt1nn03 VA Hudson Valley Health Care System'),
(75331, 'https://ror.org/01d4n7s11', 'en', 1, 'https://ror.org/01d4n7s11 Bath VA Medical Center'),
(75332, 'https://ror.org/052d8ge54', 'en', 1, 'https://ror.org/052d8ge54 Robert J. Dole VA Medical Center'),
(75333, 'https://ror.org/021rk6547', 'en', 1, 'https://ror.org/021rk6547 Erie VA Medical Center'),
(75334, 'https://ror.org/0385asg54', 'en', 1, 'https://ror.org/0385asg54 James E. Van Zandt VA Medical Center'),
(75335, 'https://ror.org/03t7gqr04', 'en', 1, 'https://ror.org/03t7gqr04 Alexandria VA Medical Center'),
(75336, 'https://ror.org/03tm9zz81', 'en', 1, 'https://ror.org/03tm9zz81 Eastern Oklahoma VA Health Care System'),
(75337, 'https://ror.org/05n0dm186', 'en', 1, 'https://ror.org/05n0dm186 Jack C. Montgomery VA Medical Center'),
(75338, 'https://ror.org/01wexqy53', 'en', 1, 'https://ror.org/01wexqy53 VA Gulf Coast Veterans Health Care System'),
(75339, 'https://ror.org/0218d9s98', 'en', 1, 'https://ror.org/0218d9s98 Louis A. Johnson VA Medical Center'),
(75340, 'https://ror.org/00ft0j474', 'en', 1, 'https://ror.org/00ft0j474 Lebanon VA Medical Center'),
(75341, 'https://ror.org/03wtmb115', 'en', 1, 'https://ror.org/03wtmb115 VA Butler Healthcare'),
(75342, 'https://ror.org/00wzysf74', 'en', 1, 'https://ror.org/00wzysf74 Wilkes-Barre VA Medical Center'),
(75343, 'https://ror.org/04q4pp553', 'en', 1, 'https://ror.org/04q4pp553 Wilmington VA Medical Center'),
(75344, 'https://ror.org/020xhpf63', 'en', 1, 'https://ror.org/020xhpf63 Martinsburg VA Medical Center'),
(75345, 'https://ror.org/01s8b3v69', 'en', 1, 'https://ror.org/01s8b3v69 Veterans Health Care System of the Ozarks'),
(75346, 'https://ror.org/03c46dy37', 'en', 1, 'https://ror.org/03c46dy37 Kerrville VA Medical Center'),
(75347, 'https://ror.org/036adbz09', 'en', 1, 'https://ror.org/036adbz09 Perry Point VA Medical Center'),
(75348, 'https://ror.org/035vbzz28', 'en', 1, 'https://ror.org/035vbzz28 El Paso VA Health Care System'),
(75349, 'https://ror.org/03fbrdz61', 'no_lang_code', 1, 'https://ror.org/03fbrdz61 Guided Therapy Systems (United States)'),
(75350, 'https://ror.org/03vwf8m18', 'en', 1, 'https://ror.org/03vwf8m18 Charles George VA Medical Center'),
(75351, 'https://ror.org/022kt1284', 'en', 1, 'https://ror.org/022kt1284 West Texas VA Health Care System'),
(75352, 'https://ror.org/033yxp207', 'no_lang_code', 1, 'https://ror.org/033yxp207 Gunze (Japan) グンゼ株式会社'),
(75353, 'https://ror.org/01b9b0y72', 'no_lang_code', 1, 'https://ror.org/01b9b0y72 Gynesonics (United States)'),
(75354, 'https://ror.org/05sxtdc16', 'en', 1, 'https://ror.org/05sxtdc16 George H. O''Brien, Jr. VA Medical Center'),
(75355, 'https://ror.org/01r2s5391', 'en', 1, 'https://ror.org/01r2s5391 Beckley VA Medical Center'),
(75356, 'https://ror.org/00yfsq027', 'en', 1, 'https://ror.org/00yfsq027 Fayetteville VA Medical Center'),
(75357, 'https://ror.org/01np3r452', 'en', 1, 'https://ror.org/01np3r452 VA Montana Health Care System'),
(75358, 'https://ror.org/04k3nb528', 'no_lang_code', 1, 'https://ror.org/04k3nb528 Hallstar Beauty (United States)'),
(75359, 'https://ror.org/04dp0f897', 'en', 1, 'https://ror.org/04dp0f897 Cheyenne VA Medical Center'),
(75360, 'https://ror.org/02esp3r97', 'en', 1, 'https://ror.org/02esp3r97 VA Western Colorado Health Care System'),
(75361, 'https://ror.org/03tzxa223', 'en', 1, 'https://ror.org/03tzxa223 Grand Junction VA Medical Center'),
(75362, 'https://ror.org/025cs2j58', 'en', 1, 'https://ror.org/025cs2j58 Carl Vinson VA Medical Center'),
(75363, 'https://ror.org/041fffy58', 'en', 1, 'https://ror.org/041fffy58 Central Alabama Veterans Health Care System'),
(75364, 'https://ror.org/03fw4bm79', 'no_lang_code', 1, 'https://ror.org/03fw4bm79 Halocarbon (United States)'),
(75365, 'https://ror.org/02943gv98', 'en', 1, 'https://ror.org/02943gv98 Sheridan VA Medical Center'),
(75366, 'https://ror.org/059nam179', 'en', 1, 'https://ror.org/059nam179 VA Roseburg Healthcare System'),
(75367, 'https://ror.org/04941ww55', 'no_lang_code', 1, 'https://ror.org/04941ww55 Hamari Chemicals (Japan)'),
(75368, 'https://ror.org/01hthpr47', 'no_lang_code', 1, 'https://ror.org/01hthpr47 Hamilton Medical (Switzerland)'),
(75369, 'https://ror.org/00rtdgr72', 'en', 1, 'https://ror.org/00rtdgr72 Mann-Grandstaff VA Medical Center'),
(75370, 'https://ror.org/0428ha587', 'en', 1, 'https://ror.org/0428ha587 Orlando VA Medical Center'),
(75371, 'https://ror.org/02xpk4806', 'en', 1, 'https://ror.org/02xpk4806 VA Southern Nevada Healthcare System'),
(75372, 'https://ror.org/03d0nge43', 'en', 1, 'https://ror.org/03d0nge43 Fargo VA Health Care System'),
(75373, 'https://ror.org/03pcamk69', 'en', 1, 'https://ror.org/03pcamk69 VA Black Hills Health Care System'),
(75374, 'https://ror.org/04p162q02', 'en', 1, 'https://ror.org/04p162q02 Hershel Woody Williams VA Medical Center'),
(75375, 'https://ror.org/04hy71c73', 'no_lang_code', 1, 'https://ror.org/04hy71c73 Hangzhou DAC Biotech (China) 杭州多禧生物科技有限公司'),
(75376, 'https://ror.org/02scwd732', 'no_lang_code', 1, 'https://ror.org/02scwd732 Squadron Capital (China)'),
(75377, 'https://ror.org/05ee7tr34', 'en', 1, 'https://ror.org/05ee7tr34 Chillicothe VA Medical Center'),
(75378, 'https://ror.org/03p46dh90', 'en', 1, 'https://ror.org/03p46dh90 Aleda E. Lutz VA Medical Center'),
(75379, 'https://ror.org/055txj157', 'no_lang_code', 1, 'https://ror.org/055txj157 Gerresheimer (Germany)'),
(75380, 'https://ror.org/05qzqkd67', 'no_lang_code', 1, 'https://ror.org/05qzqkd67 Harro Höfliger (Germany)'),
(75381, 'https://ror.org/02mc5ry07', 'en', 1, 'https://ror.org/02mc5ry07 Battle Creek VA Medical Center'),
(75382, 'https://ror.org/05t0bve94', 'no_lang_code', 1, 'https://ror.org/05t0bve94 Geuder (Germany)'),
(75383, 'https://ror.org/01cbwsm82', 'no_lang_code', 1, 'https://ror.org/01cbwsm82 GF Biochemicals (Italy)'),
(75384, 'https://ror.org/00eqyc023', 'no_lang_code', 1, 'https://ror.org/00eqyc023 GI Dynamics (United States)'),
(75385, 'https://ror.org/00dys1t73', 'no_lang_code', 1, 'https://ror.org/00dys1t73 Gibaud (France)'),
(75386, 'https://ror.org/0568h1r52', 'no_lang_code', 1, 'https://ror.org/0568h1r52 Haselmeier (Germany)'),
(75387, 'https://ror.org/04nmcca26', 'no_lang_code', 1, 'https://ror.org/04nmcca26 Glykos (Finland)'),
(75388, 'https://ror.org/02jdwac97', 'no_lang_code', 1, 'https://ror.org/02jdwac97 H.C. Starck (Germany)'),
(75389, 'https://ror.org/03f9ys929', 'no_lang_code', 1, 'https://ror.org/03f9ys929 Giuliani (Italy)'),
(75390, 'https://ror.org/03s6arh89', 'no_lang_code', 1, 'https://ror.org/03s6arh89 Hexion (United States)'),
(75391, 'https://ror.org/01q4q2062', 'no_lang_code', 1, 'https://ror.org/01q4q2062 HighLife (France)'),
(75392, 'https://ror.org/05nnz8429', 'no_lang_code', 1, 'https://ror.org/05nnz8429 Health & Life (Taiwan) 合世生醫科技股份有限公司'),
(75393, 'https://ror.org/040m02t59', 'no_lang_code', 1, 'https://ror.org/040m02t59 Hip Innovation Technology (United States)'),
(75394, 'https://ror.org/04fnfbg71', 'no_lang_code', 1, 'https://ror.org/04fnfbg71 HLT (United States)'),
(75395, 'https://ror.org/0119y0r05', 'no_lang_code', 1, 'https://ror.org/0119y0r05 Hokko Chemical Industry (Japan) 北興化学工業株式会社'),
(75396, 'https://ror.org/04kdgxx63', 'no_lang_code', 1, 'https://ror.org/04kdgxx63 Heine Optotechnik (Germany)'),
(75397, 'https://ror.org/05tk43a11', 'no_lang_code', 1, 'https://ror.org/05tk43a11 Helix Biomedix (United States)'),
(75398, 'https://ror.org/03ac0z906', 'no_lang_code', 1, 'https://ror.org/03ac0z906 Helm (Germany)'),
(75399, 'https://ror.org/0043cxs41', 'no_lang_code', 1, 'https://ror.org/0043cxs41 Helperby Therapeutics (United Kingdom)'),
(75400, 'https://ror.org/00fdb3g61', 'no_lang_code', 1, 'https://ror.org/00fdb3g61 Henke-Sass Wolf (Germany)'),
(75401, 'https://ror.org/0558bev76', 'no_lang_code', 1, 'https://ror.org/0558bev76 IBC Pharmaceuticals (India)'),
(75402, 'https://ror.org/031cw6h45', 'no_lang_code', 1, 'https://ror.org/031cw6h45 I.C. Medical (United States)'),
(75403, 'https://ror.org/04zr5y856', 'no_lang_code', 1, 'https://ror.org/04zr5y856 Hexima (Australia)'),
(75404, 'https://ror.org/00jhgmb27', 'no_lang_code', 1, 'https://ror.org/00jhgmb27 iCeutica (United States)'),
(75405, 'https://ror.org/01ttqf142', 'no_lang_code', 1, 'https://ror.org/01ttqf142 Honshu Chemical Industry (Japan) 本州化学工業株式会社'),
(75406, 'https://ror.org/02v8v9r81', 'no_lang_code', 1, 'https://ror.org/02v8v9r81 Ichnos Sciences (United States)'),
(75407, 'https://ror.org/05qakzx30', 'no_lang_code', 1, 'https://ror.org/05qakzx30 IMDS (United States)'),
(75408, 'https://ror.org/03m06c639', 'no_lang_code', 1, 'https://ror.org/03m06c639 Immunolight (United States)'),
(75409, 'https://ror.org/03kxtd827', 'no_lang_code', 1, 'https://ror.org/03kxtd827 Hoyu (Japan) ホーユー株式会社'),
(75410, 'https://ror.org/053htj969', 'no_lang_code', 1, 'https://ror.org/053htj969 Clement Clarke International (United Kingdom)'),
(75411, 'https://ror.org/047wzf575', 'no_lang_code', 1, 'https://ror.org/047wzf575 ICU Medical (United States)'),
(75412, 'https://ror.org/04w44zd51', 'no_lang_code', 1, 'https://ror.org/04w44zd51 Ferno (United Kingdom)'),
(75413, 'https://ror.org/05abxfb94', 'no_lang_code', 1, 'https://ror.org/05abxfb94 Immunovative Therapies (Israel)'),
(75414, 'https://ror.org/05dy80606', 'no_lang_code', 1, 'https://ror.org/05dy80606 Zacros (Japan)'),
(75415, 'https://ror.org/03f6bb727', 'no_lang_code', 1, 'https://ror.org/03f6bb727 IGM Biosciences (United States)'),
(75416, 'https://ror.org/046z2j897', 'no_lang_code', 1, 'https://ror.org/046z2j897 Golden Biotech (Taiwan) 國鼎生物科技股份有限公司'),
(75417, 'https://ror.org/04rcck644', 'no_lang_code', 1, 'https://ror.org/04rcck644 Marcus (United States)'),
(75418, 'https://ror.org/02x8kt557', 'no_lang_code', 1, 'https://ror.org/02x8kt557 Impedimed (Australia)'),
(75419, 'https://ror.org/05g8qng11', 'no_lang_code', 1, 'https://ror.org/05g8qng11 Implantica (Switzerland)'),
(75420, 'https://ror.org/02vv1hv80', 'no_lang_code', 1, 'https://ror.org/02vv1hv80 HealthpointCapital (United States)'),
(75421, 'https://ror.org/05a2ass35', 'no_lang_code', 1, 'https://ror.org/05a2ass35 IMRIS (United States)'),
(75422, 'https://ror.org/05fdwfk56', 'no_lang_code', 1, 'https://ror.org/05fdwfk56 CK Hutchison (China) 長江和記實業有限公司'),
(75423, 'https://ror.org/02sjajj43', 'no_lang_code', 1, 'https://ror.org/02sjajj43 IGM Group (Greece)'),
(75424, 'https://ror.org/04b885n69', 'no_lang_code', 1, 'https://ror.org/04b885n69 Kaléo (United States)'),
(75425, 'https://ror.org/01nnvad46', 'no_lang_code', 1, 'https://ror.org/01nnvad46 Hydromer (United States)'),
(75426, 'https://ror.org/05vebts22', 'no_lang_code', 1, 'https://ror.org/05vebts22 Hyprotek (United States)'),
(75427, 'https://ror.org/00az06337', 'no_lang_code', 1, 'https://ror.org/00az06337 ORIG3N (United States)'),
(75428, 'https://ror.org/01xvdt027', 'no_lang_code', 1, 'https://ror.org/01xvdt027 Intersect ENT (United States)'),
(75429, 'https://ror.org/020hmha06', 'en', 1, 'https://ror.org/020hmha06 Nordic Laboratory for Luminescence Dating Nordisk Laboratorium for Luminescensdatering'),
(75430, 'https://ror.org/0574dvv95', 'no_lang_code', 1, 'https://ror.org/0574dvv95 Recipharm (France)'),
(75431, 'https://ror.org/00pw1cb61', 'no_lang_code', 1, 'https://ror.org/00pw1cb61 Vyne Therapeutics (Israel)'),
(75432, 'https://ror.org/02tdz2z81', 'en', 1, 'https://ror.org/02tdz2z81 International Investment Bank Nemzetközi Beruházási Bank'),
(75433, 'https://ror.org/0382c3j25', 'nl', 1, 'https://ror.org/0382c3j25 Nederlands Instituut Forensische Psychiatrie'),
(75434, 'https://ror.org/002823j22', 'en', 1, 'https://ror.org/002823j22 International Education Specialist College'),
(75435, 'https://ror.org/01m12mf31', 'no_lang_code', 1, 'https://ror.org/01m12mf31 Indus Biotech (India)'),
(75436, 'https://ror.org/02hj1n344', 'no_lang_code', 1, 'https://ror.org/02hj1n344 Industriale Chimica (Italy)'),
(75437, 'https://ror.org/05nkvqx24', 'no_lang_code', 1, 'https://ror.org/05nkvqx24 Industrie Borla (Italy)'),
(75438, 'https://ror.org/00s4w8768', 'no_lang_code', 1, 'https://ror.org/00s4w8768 First Quality (United States)'),
(75439, 'https://ror.org/05fj65g09', 'no_lang_code', 1, 'https://ror.org/05fj65g09 Incept (United States)'),
(75440, 'https://ror.org/03pchte23', 'no_lang_code', 1, 'https://ror.org/03pchte23 Infinitus (China) 无限极中心'),
(75441, 'https://ror.org/00gga3b91', 'no_lang_code', 1, 'https://ror.org/00gga3b91 Fisher & Paykel Appliances (New Zealand)'),
(75442, 'https://ror.org/036s90x07', 'no_lang_code', 1, 'https://ror.org/036s90x07 InCube Labs (United States)'),
(75443, 'https://ror.org/05h4bm507', 'no_lang_code', 1, 'https://ror.org/05h4bm507 STgenetics (United States)'),
(75444, 'https://ror.org/02zx0np06', 'no_lang_code', 1, 'https://ror.org/02zx0np06 Indian Ocean Medical Trading (Somalia)'),
(75445, 'https://ror.org/00p6fj621', 'no_lang_code', 1, 'https://ror.org/00p6fj621 Inis Biotech (Argentina)'),
(75446, 'https://ror.org/0309xc572', 'no_lang_code', 1, 'https://ror.org/0309xc572 Frontline Medical Products (United States)'),
(75447, 'https://ror.org/01dj1tt46', 'no_lang_code', 1, 'https://ror.org/01dj1tt46 Neuraxpharm (Spain)'),
(75448, 'https://ror.org/00emba706', 'no_lang_code', 1, 'https://ror.org/00emba706 Iridex (United States)'),
(75449, 'https://ror.org/04ney8y20', 'no_lang_code', 1, 'https://ror.org/04ney8y20 Glidewell (United States)'),
(75450, 'https://ror.org/05efkgw62', 'no_lang_code', 1, 'https://ror.org/05efkgw62 Innoviva (United States)'),
(75451, 'https://ror.org/04f1wdm76', 'no_lang_code', 1, 'https://ror.org/04f1wdm76 Gencor (China)'),
(75452, 'https://ror.org/012ktab60', 'no_lang_code', 1, 'https://ror.org/012ktab60 BrightPath Biotherapeutics (Japan)'),
(75453, 'https://ror.org/00qhpe738', 'no_lang_code', 1, 'https://ror.org/00qhpe738 Insightra Medical (United States)'),
(75454, 'https://ror.org/00r8dbc04', 'no_lang_code', 1, 'https://ror.org/00r8dbc04 Floratech (United States)'),
(75455, 'https://ror.org/000j0ys55', 'no_lang_code', 1, 'https://ror.org/000j0ys55 Grindeks (Latvia)'),
(75456, 'https://ror.org/05wpf8f91', 'no_lang_code', 1, 'https://ror.org/05wpf8f91 Integra LifeSciences (Switzerland)'),
(75457, 'https://ror.org/01xg16290', 'no_lang_code', 1, 'https://ror.org/01xg16290 Isagro (Italy)'),
(75458, 'https://ror.org/00tbnam70', 'no_lang_code', 1, 'https://ror.org/00tbnam70 iSense (United States)'),
(75459, 'https://ror.org/05fcgnx79', 'no_lang_code', 1, 'https://ror.org/05fcgnx79 Juul (United States)'),
(75460, 'https://ror.org/01whq1k34', 'en', 1, 'https://ror.org/01whq1k34 Biomedical Translation Research Center'),
(75461, 'https://ror.org/03ckxwf91', 'en', 1, 'https://ror.org/03ckxwf91 RIKEN Center for Advanced Intelligence Project 特定国立研究開発法人理化学研究所 革新知能統合研究センタ'),
(75462, 'https://ror.org/00q5t0010', 'en', 1, 'https://ror.org/00q5t0010 Leibniz Institute for Resilience Research Leibniz-Institut für Resilienzforschung'),
(75463, 'https://ror.org/05wxywg93', 'en', 1, 'https://ror.org/05wxywg93 Leibniz Institute for Financial Research SAFE Leibniz-Institut für Finanzmarktforschung Sustainable Architecture for Finance in Europe'),
(75464, 'https://ror.org/00s05em53', 'en', 1, 'https://ror.org/00s05em53 RIKEN BioResource Research Center 理研バイオリソースセンター'),
(75465, 'https://ror.org/00wf92r40', 'no_lang_code', 1, 'https://ror.org/00wf92r40 JW Medical Systems (China)'),
(75466, 'https://ror.org/01m9x8p33', 'no_lang_code', 1, 'https://ror.org/01m9x8p33 Isochem (France)'),
(75467, 'https://ror.org/032akv382', 'no_lang_code', 1, 'https://ror.org/032akv382 Aurinia (Canada)'),
(75468, 'https://ror.org/01ze2td62', 'no_lang_code', 1, 'https://ror.org/01ze2td62 Humanigen (United States)'),
(75469, 'https://ror.org/05bqwrx65', 'no_lang_code', 1, 'https://ror.org/05bqwrx65 IZI Medical (United States)'),
(75470, 'https://ror.org/016065f51', 'no_lang_code', 1, 'https://ror.org/016065f51 Kanto Chemical (Japan)'),
(75471, 'https://ror.org/04gwmyf31', 'no_lang_code', 1, 'https://ror.org/04gwmyf31 Katalyst Surgical (United States)'),
(75472, 'https://ror.org/03d5fcq90', 'no_lang_code', 1, 'https://ror.org/03d5fcq90 Curt G Joa (United States)'),
(75473, 'https://ror.org/02faq6h04', 'no_lang_code', 1, 'https://ror.org/02faq6h04 Air Water (Japan)'),
(75474, 'https://ror.org/001ex3n55', 'no_lang_code', 1, 'https://ror.org/001ex3n55 KOB (Germany)'),
(75475, 'https://ror.org/0018afc35', 'no_lang_code', 1, 'https://ror.org/0018afc35 JGC Catalysts and Chemicals (Japan)'),
(75476, 'https://ror.org/03qq2mk98', 'no_lang_code', 1, 'https://ror.org/03qq2mk98 KM Biologics (Japan) KMバイオロジクス株式会社'),
(75477, 'https://ror.org/04vf2n046', 'no_lang_code', 1, 'https://ror.org/04vf2n046 Kobayashi Pharmaceutical (Japan)'),
(75478, 'https://ror.org/023s2h905', 'no_lang_code', 1, 'https://ror.org/023s2h905 JGC (Japan) 日揮株式会社'),
(75479, 'https://ror.org/05849hq48', 'no_lang_code', 1, 'https://ror.org/05849hq48 KDS Development (United States)'),
(75480, 'https://ror.org/05rqzv890', 'no_lang_code', 1, 'https://ror.org/05rqzv890 Kobo Products (United States)'),
(75481, 'https://ror.org/02502ye72', 'no_lang_code', 1, 'https://ror.org/02502ye72 Kode Biotech (New Zealand)'),
(75482, 'https://ror.org/01jh73d13', 'no_lang_code', 1, 'https://ror.org/01jh73d13 Kemin (Belgium)'),
(75483, 'https://ror.org/0286p0f76', 'no_lang_code', 1, 'https://ror.org/0286p0f76 KemPharm (United States)'),
(75484, 'https://ror.org/0342pra74', 'no_lang_code', 1, 'https://ror.org/0342pra74 Koei Chemical (Japan) 広栄化学'),
(75485, 'https://ror.org/00r23cm16', 'no_lang_code', 1, 'https://ror.org/00r23cm16 Groupe Lesaffre Lesaffre (France)'),
(75486, 'https://ror.org/05mg74j30', 'it', 1, 'https://ror.org/05mg74j30 Fondazione Piemontese per la Ricerca sul Cancro Onlus'),
(75487, 'https://ror.org/00zjvm038', 'no_lang_code', 1, 'https://ror.org/00zjvm038 SecurAcath (United States)'),
(75488, 'https://ror.org/01yx4wq53', 'en', 1, 'https://ror.org/01yx4wq53 Delta Institute for Theoretical Physics'),
(75489, 'https://ror.org/0225a5s12', 'en', 1, 'https://ror.org/0225a5s12 Collaborative Innovation Center of Chemical Science and Engineering Tianjin 天津化学化工协同创新中心'),
(75490, 'https://ror.org/02rcsxq19', 'no_lang_code', 1, 'https://ror.org/02rcsxq19 Eneos (Japan) エネオス'),
(75491, 'https://ror.org/02w5xy446', 'en', 1, 'https://ror.org/02w5xy446 CAS Key Laboratory of Urban Pollutant Conversion 中国科学院城市污染物转化重点实验室'),
(75492, 'https://ror.org/03b33b866', 'no_lang_code', 1, 'https://ror.org/03b33b866 KettenbachDental (Germany)'),
(75493, 'https://ror.org/00qfke340', 'en', 1, 'https://ror.org/00qfke340 Institute of Molecular Functional Materials 分子功能材料研究所'),
(75494, 'https://ror.org/004x7d471', 'en', 1, 'https://ror.org/004x7d471 Center for Light Energy Activated Redox Processes'),
(75495, 'https://ror.org/03sa1qm07', 'no_lang_code', 1, 'https://ror.org/03sa1qm07 Kyulux (Japan)'),
(75496, 'https://ror.org/05jtgpc57', 'en', 1, 'https://ror.org/05jtgpc57 Joint Center for Artificial Photosynthesis'),
(75497, 'https://ror.org/038ey3e97', 'en', 1, 'https://ror.org/038ey3e97 State Key Laboratory of Synthetic Chemistry 合成化学国家重点实验室'),
(75498, 'https://ror.org/02048n894', 'en', 1, 'https://ror.org/02048n894 Joint Center for Quantum Information and Computer Science'),
(75499, 'https://ror.org/01h772984', 'en', 1, 'https://ror.org/01h772984 Southern Nevada Water Authority'),
(75500, 'https://ror.org/05x8b4491', 'en', 1, 'https://ror.org/05x8b4491 DKFZ-ZMBH Alliance'),
(75501, 'https://ror.org/0441q2c30', 'de', 1, 'https://ror.org/0441q2c30 DVGW - Technologiezentrum Wasser DVGW - Water Technology Center'),
(75502, 'https://ror.org/000aqgk72', 'de', 1, 'https://ror.org/000aqgk72 Photonik-Zentrum Kaiserslautern'),
(75503, 'https://ror.org/05r01jn71', 'no_lang_code', 1, 'https://ror.org/05r01jn71 HoMedics (United States)'),
(75504, 'https://ror.org/02tk0sb78', 'no_lang_code', 1, 'https://ror.org/02tk0sb78 Josef Meissner (Germany)'),
(75505, 'https://ror.org/01rwvbt41', 'no_lang_code', 1, 'https://ror.org/01rwvbt41 Integer (United States)'),
(75506, 'https://ror.org/01nm9xk96', 'no_lang_code', 1, 'https://ror.org/01nm9xk96 Kumho Petrochemical (South Korea) 금호석유화학 주식회사'),
(75507, 'https://ror.org/04gvffr66', 'no_lang_code', 1, 'https://ror.org/04gvffr66 Olon (Italy)'),
(75508, 'https://ror.org/042d6f122', 'no_lang_code', 1, 'https://ror.org/042d6f122 Lacer (Spain)'),
(75509, 'https://ror.org/00b1jmk08', 'no_lang_code', 1, 'https://ror.org/00b1jmk08 Huizhou Kimree Technology (China) 惠州市金瑞科技有限公司'),
(75510, 'https://ror.org/058wwsg41', 'no_lang_code', 1, 'https://ror.org/058wwsg41 Kinamed (United States)'),
(75511, 'https://ror.org/0388j8115', 'no_lang_code', 1, 'https://ror.org/0388j8115 Kind Consumer (United Kingdom)'),
(75512, 'https://ror.org/00sz65064', 'no_lang_code', 1, 'https://ror.org/00sz65064 Kringle Pharma (Japan) クリングルファーマ株式会社'),
(75513, 'https://ror.org/04j0nks26', 'no_lang_code', 1, 'https://ror.org/04j0nks26 Kindeva Drug Delivery (United States)'),
(75514, 'https://ror.org/00jep9q10', 'no_lang_code', 1, 'https://ror.org/00jep9q10 KOSÉ (Japan) 株式会社コーセー'),
(75515, 'https://ror.org/00ghe3j58', 'no_lang_code', 1, 'https://ror.org/00ghe3j58 Koken (Japan) 株式会社高研'),
(75516, 'https://ror.org/00fc1yz57', 'no_lang_code', 1, 'https://ror.org/00fc1yz57 Laboratorios Farmaceúticos Rovi (Spain)'),
(75517, 'https://ror.org/018mtsg06', 'no_lang_code', 1, 'https://ror.org/018mtsg06 Klox Technologies (Canada)'),
(75518, 'https://ror.org/04daygj89', 'es', 1, 'https://ror.org/04daygj89 Fundación María Cristina Masaveu Peterson María Cristina Masaveu Peterson Foundation'),
(75519, 'https://ror.org/05rdn4880', 'no_lang_code', 1, 'https://ror.org/05rdn4880 Lamberti (Italy)'),
(75520, 'https://ror.org/044g40g24', 'no_lang_code', 1, 'https://ror.org/044g40g24 Kumiai Chemical Industry (Japan) クミアイ化学工業'),
(75521, 'https://ror.org/01kqb2f52', 'no_lang_code', 1, 'https://ror.org/01kqb2f52 Kuraray Noritake Dental (Japan) クラレノリタケデンタル株式会社'),
(75522, 'https://ror.org/00jffhp45', 'no_lang_code', 1, 'https://ror.org/00jffhp45 POGO (United States)'),
(75523, 'https://ror.org/00v7p0n49', 'no_lang_code', 1, 'https://ror.org/00v7p0n49 Kyoto Pharmaceutical Industries (Japan) 京都薬品工業株式会社'),
(75524, 'https://ror.org/04dptbd37', 'no_lang_code', 1, 'https://ror.org/04dptbd37 Kyowa Chemical Industry (Japan) 協和化学工業株式会社'),
(75525, 'https://ror.org/00qw2t413', 'no_lang_code', 1, 'https://ror.org/00qw2t413 Lifetech Scientific (China)'),
(75526, 'https://ror.org/007jmsy64', 'no_lang_code', 1, 'https://ror.org/007jmsy64 Laurus labs (India)'),
(75527, 'https://ror.org/02mnnbz19', 'no_lang_code', 1, 'https://ror.org/02mnnbz19 LeMaitre Vascular (United States)'),
(75528, 'https://ror.org/000z94124', 'no_lang_code', 1, 'https://ror.org/000z94124 Lensar (United States)'),
(75529, 'https://ror.org/05bh5xp98', 'no_lang_code', 1, 'https://ror.org/05bh5xp98 LimaCorporate (Italy)'),
(75530, 'https://ror.org/02gx5k306', 'no_lang_code', 1, 'https://ror.org/02gx5k306 Lexion Medical (United States)'),
(75531, 'https://ror.org/05e6hyp29', 'no_lang_code', 1, 'https://ror.org/05e6hyp29 Linak (Denmark)'),
(75532, 'https://ror.org/01813aq51', 'no_lang_code', 1, 'https://ror.org/01813aq51 Lohmann & Rauscher (Germany)'),
(75533, 'https://ror.org/03ey2p503', 'no_lang_code', 1, 'https://ror.org/03ey2p503 Linares Medical Devices (United States)'),
(75534, 'https://ror.org/00ssdzp21', 'no_lang_code', 1, 'https://ror.org/00ssdzp21 Lohmann (Germany)'),
(75535, 'https://ror.org/05fj56d84', 'no_lang_code', 1, 'https://ror.org/05fj56d84 Lorem Vascular (Singapore)'),
(75536, 'https://ror.org/03hh80g63', 'no_lang_code', 1, 'https://ror.org/03hh80g63 Lipocine (United States)'),
(75537, 'https://ror.org/01t2z2m96', 'no_lang_code', 1, 'https://ror.org/01t2z2m96 Lotte Fine Chemical (South Korea)'),
(75538, 'https://ror.org/00xt1mj08', 'no_lang_code', 1, 'https://ror.org/00xt1mj08 LRC Products (United States)'),
(75539, 'https://ror.org/00g5xkr82', 'no_lang_code', 1, 'https://ror.org/00g5xkr82 Lianyungang Runzhong Pharmaceutical (China) 连云港润众制药有限公司'),
(75540, 'https://ror.org/02fbcvn06', 'no_lang_code', 1, 'https://ror.org/02fbcvn06 Life Spine (United States)'),
(75541, 'https://ror.org/05f8zq626', 'no_lang_code', 1, 'https://ror.org/05f8zq626 Lumtec (Taiwan)'),
(75542, 'https://ror.org/00mdwv587', 'no_lang_code', 1, 'https://ror.org/00mdwv587 Lungpacer Medical (Canada)'),
(75543, 'https://ror.org/05cb4rb43', 'en', 1, 'https://ror.org/05cb4rb43 Morgridge Institute for Research'),
(75544, 'https://ror.org/03z601r05', 'en', 1, 'https://ror.org/03z601r05 Koninklijke Musea voor Schone Kunsten van België Musées royaux des Beaux-Arts de Belgique Royal Museums of Fine Arts of Belgium'),
(75545, 'https://ror.org/027h6z252', 'it', 1, 'https://ror.org/027h6z252 Agenzia Regionale Sanitaria della Puglia'),
(75546, 'https://ror.org/007022329', 'en', 1, 'https://ror.org/007022329 European Regional and Local Health Authorities'),
(75547, 'https://ror.org/00mz4by06', 'en', 1, 'https://ror.org/00mz4by06 Provinciaal Instituut voor Hygiëne Provincial Institute for Hygiene'),
(75548, 'https://ror.org/03e8tm275', 'en', 1, 'https://ror.org/03e8tm275 Shriners Hospitals for Children'),
(75549, 'https://ror.org/02qexn916', 'en', 1, 'https://ror.org/02qexn916 Fondazione Banca degli Occhi del Veneto Onlus Veneto Eye Bank Foundation'),
(75550, 'https://ror.org/00pdgtx79', 'fr', 1, 'https://ror.org/00pdgtx79 Institut Supérieur de Développement Rural'),
(75551, 'https://ror.org/008y8yz21', 'en', 1, 'https://ror.org/008y8yz21 European Research Infrastructure on Highly Pathogenic Agents'),
(75552, 'https://ror.org/00hm4a331', 'en', 1, 'https://ror.org/00hm4a331 Antwerp Management School'),
(75553, 'https://ror.org/05r4c6c72', 'en', 1, 'https://ror.org/05r4c6c72 Hague Institute of Private International and Foreign Law Stichting Internationaal Juridisch Instituut'),
(75554, 'https://ror.org/05qk04938', 'no_lang_code', 1, 'https://ror.org/05qk04938 Lutronic (South Korea)'),
(75555, 'https://ror.org/05e9vrw02', 'en', 1, 'https://ror.org/05e9vrw02 Caritas Cyprus'),
(75556, 'https://ror.org/059tf1p39', 'nl', 1, 'https://ror.org/059tf1p39 Domus Medica'),
(75557, 'https://ror.org/00kc2sb72', 'fr', 1, 'https://ror.org/00kc2sb72 Centre Hospitalier Régional de Namur'),
(75558, 'https://ror.org/02gfcg256', 'no_lang_code', 1, 'https://ror.org/02gfcg256 Lysando (Liechtenstein)'),
(75559, 'https://ror.org/02x33sm05', 'en', 1, 'https://ror.org/02x33sm05 GoodPlanet Belgium'),
(75560, 'https://ror.org/02q6q3y87', 'fr', 1, 'https://ror.org/02q6q3y87 CHR Verviers'),
(75561, 'https://ror.org/04cj8by85', 'en', 1, 'https://ror.org/04cj8by85 International Foundation for Integrated Care'),
(75562, 'https://ror.org/03wh5v523', 'no_lang_code', 1, 'https://ror.org/03wh5v523 Machida Endoscope (Japan) 株式会社町田製作所'),
(75563, 'https://ror.org/02y97xx28', 'en', 1, 'https://ror.org/02y97xx28 Ilustre Colegio Nacional de Doctores y Licenciados en Ciencias Políticas y Sociología Professional Association of Sociologists and Political Scientists'),
(75564, 'https://ror.org/049t4as69', 'fr', 1, 'https://ror.org/049t4as69 Réseau des Acheteurs Hospitaliers'),
(75565, 'https://ror.org/045pdpn43', 'en', 1, 'https://ror.org/045pdpn43 Flanders Institute for Logistics Vlaams Instituut voor de Logistiek'),
(75566, 'https://ror.org/058j17k65', 'no_lang_code', 1, 'https://ror.org/058j17k65 Magic Leap (United States)'),
(75567, 'https://ror.org/03wj3r219', 'no_lang_code', 1, 'https://ror.org/03wj3r219 Magnolia Medical Technologies (United States)'),
(75568, 'https://ror.org/01nrhd027', 'nl', 1, 'https://ror.org/01nrhd027 Flemish Patiënt Platform vzw Vlaams Patiëntenplatform'),
(75569, 'https://ror.org/0043ys591', 'no_lang_code', 1, 'https://ror.org/0043ys591 Magstim (United Kingdom)'),
(75570, 'https://ror.org/04gqv6f58', 'en', 1, 'https://ror.org/04gqv6f58 Missing Children Europe'),
(75571, 'https://ror.org/03xexem68', 'en', 1, 'https://ror.org/03xexem68 International Centre for Archival Research'),
(75572, 'https://ror.org/04tfcjh39', 'en', 1, 'https://ror.org/04tfcjh39 Child Rights Foundation Hintalovon Alapitvany'),
(75573, 'https://ror.org/03jc8h907', 'no_lang_code', 1, 'https://ror.org/03jc8h907 Aurigon (Hungary)'),
(75574, 'https://ror.org/02sdxcs63', 'en', 1, 'https://ror.org/02sdxcs63 Flemish Institute for Archives Vlaams Instituut voor Archivering'),
(75575, 'https://ror.org/03bwytd49', 'en', 1, 'https://ror.org/03bwytd49 HFC Hope for Children CRC Policy Center'),
(75576, 'https://ror.org/0123nj144', 'en', 1, 'https://ror.org/0123nj144 Egyptian Center for Innovation and Technology Development'),
(75577, 'https://ror.org/00svpda47', 'en', 1, 'https://ror.org/00svpda47 Euro-Arab Foundation for Higher Studies'),
(75578, 'https://ror.org/0131vqf73', 'no_lang_code', 1, 'https://ror.org/0131vqf73 LiveDo (Japan)'),
(75579, 'https://ror.org/032296482', 'no_lang_code', 1, 'https://ror.org/032296482 MAM Babyartikel (Germany)'),
(75580, 'https://ror.org/00fcv5w97', 'no_lang_code', 1, 'https://ror.org/00fcv5w97 Loewenstein Medical Technology (Germany)'),
(75581, 'https://ror.org/042b03f56', 'no_lang_code', 1, 'https://ror.org/042b03f56 Mane (France)'),
(75582, 'https://ror.org/04wgzww60', 'no_lang_code', 1, 'https://ror.org/04wgzww60 Mangar Health (United Kingdom)'),
(75583, 'https://ror.org/00zaasm74', 'no_lang_code', 1, 'https://ror.org/00zaasm74 MANI (Japan)'),
(75584, 'https://ror.org/0096ngc39', 'no_lang_code', 1, 'https://ror.org/0096ngc39 Medibeacon (United States)'),
(75585, 'https://ror.org/0143ggv59', 'no_lang_code', 1, 'https://ror.org/0143ggv59 Israel Corp (Israel) החברה לישראל'),
(75586, 'https://ror.org/023dqar74', 'en', 1, 'https://ror.org/023dqar74 Intelligent Synthetic Biology Center 지능형 바이오시스템 설계 및 합성 연구단'),
(75587, 'https://ror.org/01jbsqt52', 'no_lang_code', 1, 'https://ror.org/01jbsqt52 Medical Components (United States)'),
(75588, 'https://ror.org/01g67he48', 'no_lang_code', 1, 'https://ror.org/01g67he48 Medicaroid (Japan) メディカロイド'),
(75589, 'https://ror.org/019gqj590', 'no_lang_code', 1, 'https://ror.org/019gqj590 Mardil (United States)'),
(75590, 'https://ror.org/00a4gmh33', 'no_lang_code', 1, 'https://ror.org/00a4gmh33 Barricaid (United States)'),
(75591, 'https://ror.org/0244stc74', 'no_lang_code', 1, 'https://ror.org/0244stc74 Koh Young Technology (South Korea)'),
(75592, 'https://ror.org/059ab3182', 'no_lang_code', 1, 'https://ror.org/059ab3182 Medicomp (United States)'),
(75593, 'https://ror.org/02eb03q95', 'no_lang_code', 1, 'https://ror.org/02eb03q95 Adhera Therapeutics (United States)'),
(75594, 'https://ror.org/02fx6bp88', 'no_lang_code', 1, 'https://ror.org/02fx6bp88 Marine Polymer Technologies (United States)'),
(75595, 'https://ror.org/032133427', 'no_lang_code', 1, 'https://ror.org/032133427 Lumenis (Israel)'),
(75596, 'https://ror.org/05n8wtj80', 'no_lang_code', 1, 'https://ror.org/05n8wtj80 Mapi Pharma (Israel)'),
(75597, 'https://ror.org/0365pmp63', 'no_lang_code', 1, 'https://ror.org/0365pmp63 Maruishi Pharmaceutical (Japan) 丸石製薬株式会社'),
(75598, 'https://ror.org/04yxrw198', 'no_lang_code', 1, 'https://ror.org/04yxrw198 MediGuide (United States)'),
(75599, 'https://ror.org/03t8x3a11', 'no_lang_code', 1, 'https://ror.org/03t8x3a11 Cosmo Energy (Japan) コスモエネルギーホールディングス株式会社'),
(75600, 'https://ror.org/02gkg4976', 'no_lang_code', 1, 'https://ror.org/02gkg4976 Medigus (Israel)'),
(75601, 'https://ror.org/01k48et73', 'no_lang_code', 1, 'https://ror.org/01k48et73 Maui Imaging (United States)'),
(75602, 'https://ror.org/03756wp26', 'no_lang_code', 1, 'https://ror.org/03756wp26 Medinol (Israel)'),
(75603, 'https://ror.org/03z02zc05', 'no_lang_code', 1, 'https://ror.org/03z02zc05 Medrobotics (United States)'),
(75604, 'https://ror.org/023s4zc74', 'no_lang_code', 1, 'https://ror.org/023s4zc74 Mayne Pharma (Australia)'),
(75605, 'https://ror.org/012cvjw59', 'no_lang_code', 1, 'https://ror.org/012cvjw59 Meagan Medical (United States)'),
(75606, 'https://ror.org/02w6mtg63', 'no_lang_code', 1, 'https://ror.org/02w6mtg63 Cantel Medical (United States)'),
(75607, 'https://ror.org/049h10h83', 'en', 1, 'https://ror.org/049h10h83 Tartu Ülikooli Loodusmuuseum University of Tartu Natural History Museum and Botanical Garden'),
(75608, 'https://ror.org/00qc6xh17', 'no_lang_code', 1, 'https://ror.org/00qc6xh17 Medacta International (Switzerland)'),
(75609, 'https://ror.org/033705f12', 'no_lang_code', 1, 'https://ror.org/033705f12 MEDRx (Japan)'),
(75610, 'https://ror.org/03q3hjg87', 'en', 1, 'https://ror.org/03q3hjg87 Research Institute of Wood Industry 中国林业科学研究院 木材工业研究所'),
(75611, 'https://ror.org/051gfkj61', 'en', 1, 'https://ror.org/051gfkj61 Experimental Center of Forestry in North China 中国林业科学研究院华北林业实验中心'),
(75612, 'https://ror.org/00xymz606', 'en', 1, 'https://ror.org/00xymz606 Institute of Desertification Studies 荒漠化研究所'),
(75613, 'https://ror.org/00z62fe95', 'no_lang_code', 1, 'https://ror.org/00z62fe95 Merete (Germany)'),
(75614, 'https://ror.org/05mks4240', 'en', 1, 'https://ror.org/05mks4240 Institute of Forest Ecology, Environment and Protection 中国林业科学研究院森林生态环境与保护研究所'),
(75615, 'https://ror.org/01h5d6x15', 'en', 1, 'https://ror.org/01h5d6x15 Institute of Forest Resource Information Techniques 中国林业科学研究院资源信息研究所'),
(75616, 'https://ror.org/05q5gzy49', 'en', 1, 'https://ror.org/05q5gzy49 Institute of New Technology of Forestry'),
(75617, 'https://ror.org/032e3d072', 'en', 1, 'https://ror.org/032e3d072 Institute of Wetland Research 中国林业科学研究院湿地研究所'),
(75618, 'https://ror.org/01th5x258', 'en', 1, 'https://ror.org/01th5x258 Institute of Chemical Industry of Forest Products 中国林业科学研究院林产化学工业研究所'),
(75619, 'https://ror.org/03kczcb35', 'no_lang_code', 1, 'https://ror.org/03kczcb35 Merus (Netherlands)'),
(75620, 'https://ror.org/02nmvgz47', 'en', 1, 'https://ror.org/02nmvgz47 Research Institute of Forestry 中国林业科学研究院林业研究所'),
(75621, 'https://ror.org/03b4jx157', 'en', 1, 'https://ror.org/03b4jx157 Research Institute of Resource Insects 中国林业科学研究院资源昆虫研究所'),
(75622, 'https://ror.org/044snpb24', 'en', 1, 'https://ror.org/044snpb24 Research Institute of Forestry Policy and Information 中国林业科学研究院林业研究所'),
(75623, 'https://ror.org/05sc11068', 'en', 1, 'https://ror.org/05sc11068 Research Institute of Subtropical Foresty 中国林业科学研究院亚热带林业研究所'),
(75624, 'https://ror.org/00nkeq441', 'en', 1, 'https://ror.org/00nkeq441 Research Institute of Tropical Forestry 中国林业科学研究院热带林业研究所'),
(75625, 'https://ror.org/008h0ge70', 'en', 1, 'https://ror.org/008h0ge70 Research Center of Saline and Akali Land of State Foresty Administration 国家林业局盐碱地研究中心于'),
(75626, 'https://ror.org/041ms9k93', 'en', 1, 'https://ror.org/041ms9k93 Beijing Foresty Machinery Institute 国家林业和草原局北京林业机械研究所'),
(75627, 'https://ror.org/02mj3be11', 'en', 1, 'https://ror.org/02mj3be11 Harbin Foresty Machinery Institute 国家林业局哈尔滨林业机械研究所'),
(75628, 'https://ror.org/03rwvj817', 'no_lang_code', 1, 'https://ror.org/03rwvj817 Metran (Japan) メトラン'),
(75629, 'https://ror.org/04e8tea51', 'no_lang_code', 1, 'https://ror.org/04e8tea51 Mevion Medical Systems (United States)'),
(75630, 'https://ror.org/01pj4qf10', 'en', 1, 'https://ror.org/01pj4qf10 Institute of Network Cultures'),
(75631, 'https://ror.org/050d14s15', 'en', 1, 'https://ror.org/050d14s15 Government Accountability Project'),
(75632, 'https://ror.org/01ab6z353', 'en', 1, 'https://ror.org/01ab6z353 American Action Forum'),
(75633, 'https://ror.org/058xg4r54', 'en', 1, 'https://ror.org/058xg4r54 Citizens Information Board'),
(75634, 'https://ror.org/0030sx194', 'no_lang_code', 1, 'https://ror.org/0030sx194 Altus Capital Partners (United States)'),
(75635, 'https://ror.org/04esmqk80', 'en', 1, 'https://ror.org/04esmqk80 Eucalyptus Research Center 国家林业和草原局桉树研究开发中心'),
(75636, 'https://ror.org/02j7j4v81', 'no_lang_code', 1, 'https://ror.org/02j7j4v81 Paulownia Research Center 国家林业和草原局泡桐研究开发中心'),
(75637, 'https://ror.org/04vadv522', 'en', 1, 'https://ror.org/04vadv522 Desert Forestry Experimental Center 中国林业科学研究院沙漠林业实验中心'),
(75638, 'https://ror.org/04jf69f85', 'en', 1, 'https://ror.org/04jf69f85 Experimental Center of Subtropical Forestry'),
(75639, 'https://ror.org/00rr70t41', 'en', 1, 'https://ror.org/00rr70t41 Experimental Center of Tropical Forestry 中国林业科学研究院热带林业实验中心'),
(75640, 'https://ror.org/03rf31e64', 'en', 1, 'https://ror.org/03rf31e64 NEIKER, Instituto Vasco de Investigación y Desarrollo Agrario NEIKER, Nekazaritza Ikerketa eta Garapenerako Euskal Erakundea NEIKER, the Basque Institute for Agricultural Research and Development'),
(75641, 'https://ror.org/05exhz950', 'no_lang_code', 1, 'https://ror.org/05exhz950 Akoya Biosciences (United States)'),
(75642, 'https://ror.org/006f8jv23', 'no_lang_code', 1, 'https://ror.org/006f8jv23 Fulcrum Therapeutics (United States)'),
(75643, 'https://ror.org/00bwm5s42', 'en', 1, 'https://ror.org/00bwm5s42 Te Kaunihera ā-Rohe o Waikato Waikato Regional Council'),
(75644, 'https://ror.org/02q0kch71', 'no_lang_code', 1, 'https://ror.org/02q0kch71 GenCat (United Kingdom)'),
(75645, 'https://ror.org/053344077', 'no_lang_code', 1, 'https://ror.org/053344077 Arsenal Biosciences (United States)'),
(75646, 'https://ror.org/011v4dm73', 'no_lang_code', 1, 'https://ror.org/011v4dm73 Averis Seeds (Netherlands)'),
(75647, 'https://ror.org/02wtsp571', 'en', 1, 'https://ror.org/02wtsp571 Hawke''s Bay Regional Council Te Kaunihera ā-Rohe o Te Matau-a-Māui'),
(75648, 'https://ror.org/059ytn208', 'no_lang_code', 1, 'https://ror.org/059ytn208 GenomeScan (Netherlands)'),
(75649, 'https://ror.org/03m691g30', 'en', 1, 'https://ror.org/03m691g30 Sabah Parks Taman-Taman Sabah'),
(75650, 'https://ror.org/0239xwa13', 'no_lang_code', 1, 'https://ror.org/0239xwa13 Helvetica Exploration Services (Switzerland)'),
(75651, 'https://ror.org/00ck5k311', 'no_lang_code', 1, 'https://ror.org/00ck5k311 Boundless Bio (United States)'),
(75652, 'https://ror.org/04rfxj670', 'no_lang_code', 1, 'https://ror.org/04rfxj670 Casma Therapeutics (United States)'),
(75653, 'https://ror.org/01h0bbn98', 'no_lang_code', 1, 'https://ror.org/01h0bbn98 Celltechgen (United States)'),
(75654, 'https://ror.org/01ycfd220', 'no_lang_code', 1, 'https://ror.org/01ycfd220 Cergentis (Netherlands)'),
(75655, 'https://ror.org/00gxg2532', 'en', 1, 'https://ror.org/00gxg2532 Association for Bahá’í Studies'),
(75656, 'https://ror.org/00qmj8087', 'no_lang_code', 1, 'https://ror.org/00qmj8087 Ideaya Biosciences (United States)'),
(75657, 'https://ror.org/01mvsyt14', 'no_lang_code', 1, 'https://ror.org/01mvsyt14 Jnana Therapeutics (United States)'),
(75658, 'https://ror.org/03mq2gv27', 'no_lang_code', 1, 'https://ror.org/03mq2gv27 Cygnal Therapeutics (United States)'),
(75659, 'https://ror.org/0527cde49', 'no_lang_code', 1, 'https://ror.org/0527cde49 Epic Sciences (United States)'),
(75660, 'https://ror.org/03v44jk32', 'no_lang_code', 1, 'https://ror.org/03v44jk32 HZPC (Netherlands)'),
(75661, 'https://ror.org/026eeyk15', 'no', 1, 'https://ror.org/026eeyk15 Fjellhaug Internasjonale Høgskole Fjellhaug International University College'),
(75662, 'https://ror.org/028t9y815', 'en', 1, 'https://ror.org/028t9y815 German Coastal Engineering Research Council Kuratorium für Forschung im Küsteningenieurwesen'),
(75663, 'https://ror.org/030shh572', 'no_lang_code', 1, 'https://ror.org/030shh572 Future Science Group (United Kingdom)'),
(75664, 'https://ror.org/043h59p22', 'no_lang_code', 1, 'https://ror.org/043h59p22 Orbia (Mexico)'),
(75665, 'https://ror.org/00jzyfv14', 'no_lang_code', 1, 'https://ror.org/00jzyfv14 Meyra (Germany)'),
(75666, 'https://ror.org/005wzhk47', 'no_lang_code', 1, 'https://ror.org/005wzhk47 MiCell Technologies (United States)');
INSERT INTO `rors` VALUES
(75667, 'https://ror.org/03g878p38', 'no_lang_code', 1, 'https://ror.org/03g878p38 MicroMega (France)'),
(75668, 'https://ror.org/02q90qf63', 'no_lang_code', 1, 'https://ror.org/02q90qf63 Molecular Templates (United States)'),
(75669, 'https://ror.org/02yyjsa15', 'no_lang_code', 1, 'https://ror.org/02yyjsa15 MicroAire (United States)'),
(75670, 'https://ror.org/03p6znp21', 'no_lang_code', 1, 'https://ror.org/03p6znp21 Microban (United States)'),
(75671, 'https://ror.org/02dk28s26', 'no_lang_code', 1, 'https://ror.org/02dk28s26 Miragen Therapeutics (United States)'),
(75672, 'https://ror.org/036jn4298', 'en', 1, 'https://ror.org/036jn4298 The San Raffaele Telethon Institute for Gene Therapy'),
(75673, 'https://ror.org/03c05e753', 'no_lang_code', 1, 'https://ror.org/03c05e753 Misonix (United States)'),
(75674, 'https://ror.org/03hjnde67', 'no_lang_code', 1, 'https://ror.org/03hjnde67 ClearPoint Neuro (United States)'),
(75675, 'https://ror.org/00ehgcp58', 'no_lang_code', 1, 'https://ror.org/00ehgcp58 Mitaka Kohki (Japan)'),
(75676, 'https://ror.org/00v7rqs27', 'no_lang_code', 1, 'https://ror.org/00v7rqs27 Mitsui Sugar (Japan) 三井製糖株式会社'),
(75677, 'https://ror.org/0457cab92', 'no_lang_code', 1, 'https://ror.org/0457cab92 Miyoshi Kasei (Japan) 三好化成株式会社'),
(75678, 'https://ror.org/01eaqxy97', 'no_lang_code', 1, 'https://ror.org/01eaqxy97 Momentive (Japan) モメンティブ・パフォーマンス・マテリアルズ・ジャパン'),
(75679, 'https://ror.org/00z4kzd65', 'no_lang_code', 1, 'https://ror.org/00z4kzd65 Microline Surgical (United States)'),
(75680, 'https://ror.org/0345dvk21', 'no_lang_code', 1, 'https://ror.org/0345dvk21 Medtentia (Finland)'),
(75681, 'https://ror.org/00dsvzt91', 'no_lang_code', 1, 'https://ror.org/00dsvzt91 Mutabilis (France)'),
(75682, 'https://ror.org/04j9kzt69', 'no_lang_code', 1, 'https://ror.org/04j9kzt69 Mycovia Pharmaceuticals (United States)'),
(75683, 'https://ror.org/024kjmj54', 'no_lang_code', 1, 'https://ror.org/024kjmj54 Medtrade (United Kingdom)'),
(75684, 'https://ror.org/02ft3dk35', 'no_lang_code', 1, 'https://ror.org/02ft3dk35 Minerva Surgical (United States)'),
(75685, 'https://ror.org/01wzmc277', 'no_lang_code', 1, 'https://ror.org/01wzmc277 NAEJA-RGM Pharmaceuticals (Canada)'),
(75686, 'https://ror.org/05kdvbv21', 'no_lang_code', 1, 'https://ror.org/05kdvbv21 Mimedx (United States)'),
(75687, 'https://ror.org/02tezkz55', 'no_lang_code', 1, 'https://ror.org/02tezkz55 Nephros (United States)'),
(75688, 'https://ror.org/025y41g72', 'no_lang_code', 1, 'https://ror.org/025y41g72 Nagase ChemteX (Japan) ナガセケムテックス株式会社'),
(75689, 'https://ror.org/0121y9f76', 'no_lang_code', 1, 'https://ror.org/0121y9f76 NantWorks (United States)'),
(75690, 'https://ror.org/014pmjv51', 'no_lang_code', 1, 'https://ror.org/014pmjv51 Natreon (United States)'),
(75691, 'https://ror.org/00y650p73', 'no_lang_code', 1, 'https://ror.org/00y650p73 Neuboron (China)'),
(75692, 'https://ror.org/04cgxr267', 'no_lang_code', 1, 'https://ror.org/04cgxr267 NeuroMetrix (United States)'),
(75693, 'https://ror.org/01x1dz568', 'no_lang_code', 1, 'https://ror.org/01x1dz568 Neuronano (Sweden)'),
(75694, 'https://ror.org/0391nfv32', 'no_lang_code', 1, 'https://ror.org/0391nfv32 Neuronetics (United States)'),
(75695, 'https://ror.org/0083rgp58', 'no_lang_code', 1, 'https://ror.org/0083rgp58 Neurotech (United States)'),
(75696, 'https://ror.org/030w4f316', 'no_lang_code', 1, 'https://ror.org/030w4f316 Nemera (France)'),
(75697, 'https://ror.org/01xzey958', 'no_lang_code', 1, 'https://ror.org/01xzey958 Nemoto (Japan) 根本杏林堂'),
(75698, 'https://ror.org/0569qgz98', 'no_lang_code', 1, 'https://ror.org/0569qgz98 Meiko (Germany)'),
(75699, 'https://ror.org/01ngh1553', 'no_lang_code', 1, 'https://ror.org/01ngh1553 Avanos Medical (United States)'),
(75700, 'https://ror.org/05xk3sx84', 'no_lang_code', 1, 'https://ror.org/05xk3sx84 Neutrogena (United States)'),
(75701, 'https://ror.org/04x9bj553', 'no_lang_code', 1, 'https://ror.org/04x9bj553 New Japan Chemical (Japan) 新日本理化株式会社'),
(75702, 'https://ror.org/03c55am86', 'no_lang_code', 1, 'https://ror.org/03c55am86 Nitto Boseki (Japan) 日東紡績株式会社'),
(75703, 'https://ror.org/004sp0722', 'no_lang_code', 1, 'https://ror.org/004sp0722 Alpine Immune Sciences (United States)'),
(75704, 'https://ror.org/04c2v9g63', 'no_lang_code', 1, 'https://ror.org/04c2v9g63 Nutramax Laboratories (United States)'),
(75705, 'https://ror.org/02ptvta38', 'no_lang_code', 1, 'https://ror.org/02ptvta38 Nexstim (Finland)'),
(75706, 'https://ror.org/004tpxz33', 'no_lang_code', 1, 'https://ror.org/004tpxz33 Nichiban (Japan) ニチバン株式会社'),
(75707, 'https://ror.org/01f8zjp46', 'no_lang_code', 1, 'https://ror.org/01f8zjp46 Nogra Pharma (Ireland)'),
(75708, 'https://ror.org/02zvmwy36', 'no_lang_code', 1, 'https://ror.org/02zvmwy36 NICO (United States)'),
(75709, 'https://ror.org/019gg0j03', 'no_lang_code', 1, 'https://ror.org/019gg0j03 Nuvaira (United States)'),
(75710, 'https://ror.org/029e02124', 'no_lang_code', 1, 'https://ror.org/029e02124 NoNO (Canada)'),
(75711, 'https://ror.org/00evn4913', 'no_lang_code', 1, 'https://ror.org/00evn4913 Norbrook (United Kingdom)'),
(75712, 'https://ror.org/01rsktd65', 'no_lang_code', 1, 'https://ror.org/01rsktd65 Northgate Technologies (United States)'),
(75713, 'https://ror.org/004776246', 'en', 1, 'https://ror.org/004776246 Capital University of Science and Technology جامعہ دارالحکومت سائنس و ٹیکنالوجی'),
(75714, 'https://ror.org/02w6r3410', 'no_lang_code', 1, 'https://ror.org/02w6r3410 Nymox (Canada)'),
(75715, 'https://ror.org/05f3ypk72', 'no_lang_code', 1, 'https://ror.org/05f3ypk72 Nyxoah (Belgium)'),
(75716, 'https://ror.org/02paxq720', 'no_lang_code', 1, 'https://ror.org/02paxq720 Midmark (United States)'),
(75717, 'https://ror.org/02mswf653', 'no_lang_code', 1, 'https://ror.org/02mswf653 Milestone Scientific (United States)'),
(75718, 'https://ror.org/02vya1t32', 'fr', 1, 'https://ror.org/02vya1t32 Conseil Régional de l''Environnement du Bas-Saint-Laurent'),
(75719, 'https://ror.org/00mhjxz04', 'no_lang_code', 1, 'https://ror.org/00mhjxz04 NovaBiotics (United Kingdom)'),
(75720, 'https://ror.org/03y0xt433', 'no_lang_code', 1, 'https://ror.org/03y0xt433 Millet Innovation (France)'),
(75721, 'https://ror.org/01grpbq12', 'no_lang_code', 1, 'https://ror.org/01grpbq12 Novapharm Research (Australia)'),
(75722, 'https://ror.org/002j4n989', 'no_lang_code', 1, 'https://ror.org/002j4n989 Owens & Minor (United States)'),
(75723, 'https://ror.org/02hcxtx58', 'no_lang_code', 1, 'https://ror.org/02hcxtx58 Deinove (Germany)'),
(75724, 'https://ror.org/04vjzg452', 'no_lang_code', 1, 'https://ror.org/04vjzg452 Luxottica (Italy)'),
(75725, 'https://ror.org/00kxdws42', 'no_lang_code', 1, 'https://ror.org/00kxdws42 Neovasc Tiara (Canada)'),
(75726, 'https://ror.org/04yyf0g82', 'no_lang_code', 1, 'https://ror.org/04yyf0g82 Occlutech (Sweden)'),
(75727, 'https://ror.org/029p5cv63', 'no_lang_code', 1, 'https://ror.org/029p5cv63 Kazia Therapeutics (Australia)'),
(75728, 'https://ror.org/0102hgm33', 'no_lang_code', 1, 'https://ror.org/0102hgm33 Seelos Therapeutics (United States)'),
(75729, 'https://ror.org/00kr78d81', 'no_lang_code', 1, 'https://ror.org/00kr78d81 Nippon Chemiphar (Japan)'),
(75730, 'https://ror.org/04v636935', 'no_lang_code', 1, 'https://ror.org/04v636935 NP Medical (United States)'),
(75731, 'https://ror.org/03d2atk85', 'no_lang_code', 1, 'https://ror.org/03d2atk85 Oculus Optikgeräte (Germany)'),
(75732, 'https://ror.org/01rce2188', 'no_lang_code', 1, 'https://ror.org/01rce2188 Omnicell (United States)'),
(75733, 'https://ror.org/03dqqhs56', 'no_lang_code', 1, 'https://ror.org/03dqqhs56 Nippon Steel Chemical and Material (Japan) 日鉄ケミカル&マテリアル'),
(75734, 'https://ror.org/0225qq424', 'no_lang_code', 1, 'https://ror.org/0225qq424 Nippon Suisan Kaisha (Japan) 日本水産株式会社'),
(75735, 'https://ror.org/029krwz28', 'no_lang_code', 1, 'https://ror.org/029krwz28 OrthAlign (United States)'),
(75736, 'https://ror.org/03c9s1h69', 'no_lang_code', 1, 'https://ror.org/03c9s1h69 Ortho Tain (United States)'),
(75737, 'https://ror.org/04wy1ab83', 'no_lang_code', 1, 'https://ror.org/04wy1ab83 OptiScan (United States)'),
(75738, 'https://ror.org/044tp0a91', 'no_lang_code', 1, 'https://ror.org/044tp0a91 Morishita Jintan (Japan) 森下仁丹株式会社'),
(75739, 'https://ror.org/04zs97627', 'no_lang_code', 1, 'https://ror.org/04zs97627 OQ (Oman)'),
(75740, 'https://ror.org/00q8frg87', 'no_lang_code', 1, 'https://ror.org/00q8frg87 Marathon (United States)'),
(75741, 'https://ror.org/05n85jt88', 'no_lang_code', 1, 'https://ror.org/05n85jt88 OrthoSensor (United States)'),
(75742, 'https://ror.org/02hew9107', 'no_lang_code', 1, 'https://ror.org/02hew9107 Orasure Technologies (United States)'),
(75743, 'https://ror.org/049pb7d13', 'no_lang_code', 1, 'https://ror.org/049pb7d13 Orbis Health Solutions (United States)'),
(75744, 'https://ror.org/01p7vjt17', 'no_lang_code', 1, 'https://ror.org/01p7vjt17 Oscor (United States)'),
(75745, 'https://ror.org/03gtgkk57', 'no_lang_code', 1, 'https://ror.org/03gtgkk57 Ore Holdings (United States)'),
(75746, 'https://ror.org/050rz1283', 'no_lang_code', 1, 'https://ror.org/050rz1283 Currax Pharmaceuticals (United States)'),
(75747, 'https://ror.org/034ywws88', 'no_lang_code', 1, 'https://ror.org/034ywws88 Osstem Implant (South Korea) 오스템임플란트'),
(75748, 'https://ror.org/00apa0w81', 'no_lang_code', 1, 'https://ror.org/00apa0w81 Paragon 28 (United States)'),
(75749, 'https://ror.org/00z14xy49', 'no_lang_code', 1, 'https://ror.org/00z14xy49 Ossur (United States)'),
(75750, 'https://ror.org/045g0dr61', 'no_lang_code', 1, 'https://ror.org/045g0dr61 Orient Chemical Industries (Japan) オリヱント化学工業株式会社'),
(75751, 'https://ror.org/044tqdm09', 'no_lang_code', 1, 'https://ror.org/044tqdm09 Osteomed (United States)'),
(75752, 'https://ror.org/00epa7w16', 'no_lang_code', 1, 'https://ror.org/00epa7w16 Paramount Bed (Japan) パラマウントベッド株式会社'),
(75753, 'https://ror.org/03c5ds320', 'no_lang_code', 1, 'https://ror.org/03c5ds320 Oticon Medical (Denmark)'),
(75754, 'https://ror.org/05wmdnq05', 'no_lang_code', 1, 'https://ror.org/05wmdnq05 Ovid Therapeutics (United States)'),
(75755, 'https://ror.org/01p7awb13', 'no_lang_code', 1, 'https://ror.org/01p7awb13 Penumbra (United States)'),
(75756, 'https://ror.org/056ftg126', 'no_lang_code', 1, 'https://ror.org/056ftg126 Owen Mumford (United Kingdom)'),
(75757, 'https://ror.org/0248a9217', 'no_lang_code', 1, 'https://ror.org/0248a9217 Premier Dental Products (United States)'),
(75758, 'https://ror.org/02tzvyq07', 'no_lang_code', 1, 'https://ror.org/02tzvyq07 Perricone MD (United States)'),
(75759, 'https://ror.org/02vs13w52', 'no_lang_code', 1, 'https://ror.org/02vs13w52 Pride Mobility Products (United States)'),
(75760, 'https://ror.org/02v5ekm10', 'no_lang_code', 1, 'https://ror.org/02v5ekm10 Probiotical (Italy)'),
(75761, 'https://ror.org/037ap0k13', 'no_lang_code', 1, 'https://ror.org/037ap0k13 PetroIneos (United Kingdom)'),
(75762, 'https://ror.org/0006fww70', 'no_lang_code', 1, 'https://ror.org/0006fww70 Oxford Biotherapeutics (United Kingdom)'),
(75763, 'https://ror.org/0217hsv85', 'no_lang_code', 1, 'https://ror.org/0217hsv85 Piolax (Japan)'),
(75764, 'https://ror.org/04k6y8878', 'en', 1, 'https://ror.org/04k6y8878 L''Association Canadienne des Bibliothécaires en Enseignement Supérieur The Canadian Association of Professional Academic Librarians'),
(75765, 'https://ror.org/0288kcc12', 'no_lang_code', 1, 'https://ror.org/0288kcc12 Pixium Vision (France)'),
(75766, 'https://ror.org/037vpg713', 'en', 1, 'https://ror.org/037vpg713 Stockholm Environment Institute'),
(75767, 'https://ror.org/05wfwcv97', 'no_lang_code', 1, 'https://ror.org/05wfwcv97 Oakpont (Australia)'),
(75768, 'https://ror.org/01sexcc53', 'no_lang_code', 1, 'https://ror.org/01sexcc53 Planmeca (Finland)'),
(75769, 'https://ror.org/057pw8j03', 'no_lang_code', 1, 'https://ror.org/057pw8j03 Planmed (Finland)'),
(75770, 'https://ror.org/012n48z81', 'no_lang_code', 1, 'https://ror.org/012n48z81 Plasmology4 (United States)'),
(75771, 'https://ror.org/03ygk8b53', 'no_lang_code', 1, 'https://ror.org/03ygk8b53 Viveve (United States)'),
(75772, 'https://ror.org/01fmexj76', 'no_lang_code', 1, 'https://ror.org/01fmexj76 Primed (Germany) Primed Halberstadt Medizintechnik'),
(75773, 'https://ror.org/031jemm23', 'no_lang_code', 1, 'https://ror.org/031jemm23 Pharnext (France)'),
(75774, 'https://ror.org/050gyxr66', 'no_lang_code', 1, 'https://ror.org/050gyxr66 Progenity (United States)'),
(75775, 'https://ror.org/021gh4f04', 'no_lang_code', 1, 'https://ror.org/021gh4f04 Pola Chemical Industries (Japan)'),
(75776, 'https://ror.org/03xptpz88', 'no_lang_code', 1, 'https://ror.org/03xptpz88 Polar (Finland)'),
(75777, 'https://ror.org/00g3t5227', 'no_lang_code', 1, 'https://ror.org/00g3t5227 Phenex Pharmaceuticals (Germany)'),
(75778, 'https://ror.org/001087p83', 'no_lang_code', 1, 'https://ror.org/001087p83 Phenox (Germany)'),
(75779, 'https://ror.org/01v8wnr22', 'no_lang_code', 1, 'https://ror.org/01v8wnr22 Hitowa Holdings (Japan) ひとわホールディングス株式会社'),
(75780, 'https://ror.org/05xfzy080', 'no_lang_code', 1, 'https://ror.org/05xfzy080 Propper Manufacturing (United States)'),
(75781, 'https://ror.org/0035phc29', 'no_lang_code', 1, 'https://ror.org/0035phc29 Pherin Pharmaceuticals (United States)'),
(75782, 'https://ror.org/02pyb2524', 'no_lang_code', 1, 'https://ror.org/02pyb2524 Poly Medicure (India)'),
(75783, 'https://ror.org/05d0zs426', 'no_lang_code', 1, 'https://ror.org/05d0zs426 Proteostasis Therapeutics (United States)'),
(75784, 'https://ror.org/01ncvmx07', 'no_lang_code', 1, 'https://ror.org/01ncvmx07 Protgen (China)'),
(75785, 'https://ror.org/0063h8607', 'no_lang_code', 1, 'https://ror.org/0063h8607 Protia (United States)'),
(75786, 'https://ror.org/032hxhk43', 'no_lang_code', 1, 'https://ror.org/032hxhk43 Polynt (Italy)'),
(75787, 'https://ror.org/05pek2z35', 'no_lang_code', 1, 'https://ror.org/05pek2z35 Providence Medical Technology (United States)'),
(75788, 'https://ror.org/008d3n094', 'no_lang_code', 1, 'https://ror.org/008d3n094 PYC Therapeutics (Australia)'),
(75789, 'https://ror.org/0525dzh79', 'no_lang_code', 1, 'https://ror.org/0525dzh79 Poseida Therapeutics (United States)'),
(75790, 'https://ror.org/05ekwg650', 'no_lang_code', 1, 'https://ror.org/05ekwg650 Rani Therapeutics (United States)'),
(75791, 'https://ror.org/02p752c24', 'no_lang_code', 1, 'https://ror.org/02p752c24 Pieris Pharmaceuticals (United States)'),
(75792, 'https://ror.org/0358p7h51', 'no_lang_code', 1, 'https://ror.org/0358p7h51 PureCircle (Malaysia)'),
(75793, 'https://ror.org/00feczr54', 'no_lang_code', 1, 'https://ror.org/00feczr54 PureCircle (United States)'),
(75794, 'https://ror.org/014pnrs95', 'no_lang_code', 1, 'https://ror.org/014pnrs95 Pigeon (Japan)'),
(75795, 'https://ror.org/033j0mq15', 'no_lang_code', 1, 'https://ror.org/033j0mq15 Qualicaps (Japan)'),
(75796, 'https://ror.org/03sanww46', 'no_lang_code', 1, 'https://ror.org/03sanww46 Qfix (United States)'),
(75797, 'https://ror.org/01n4hfa83', 'no_lang_code', 1, 'https://ror.org/01n4hfa83 QualiMed (Germany)'),
(75798, 'https://ror.org/02zek1917', 'no_lang_code', 1, 'https://ror.org/02zek1917 RaQualia Pharma (Japan) ラクオリア創薬'),
(75799, 'https://ror.org/01f978p98', 'no_lang_code', 1, 'https://ror.org/01f978p98 Venus Concept (Canada)'),
(75800, 'https://ror.org/04753za72', 'no_lang_code', 1, 'https://ror.org/04753za72 Retractable Technologies (United States)'),
(75801, 'https://ror.org/041mg2534', 'no_lang_code', 1, 'https://ror.org/041mg2534 Retrotope (United States)'),
(75802, 'https://ror.org/01cat9493', 'no_lang_code', 1, 'https://ror.org/01cat9493 Raumedic (Germany)'),
(75803, 'https://ror.org/01yhcdk46', 'no_lang_code', 1, 'https://ror.org/01yhcdk46 Rex Medical (United States)'),
(75804, 'https://ror.org/055bp1561', 'no_lang_code', 1, 'https://ror.org/055bp1561 RaySearch Laboratories (Sweden)'),
(75805, 'https://ror.org/04dgene15', 'no_lang_code', 1, 'https://ror.org/04dgene15 Ocuphire Pharma (United States)'),
(75806, 'https://ror.org/039xjj562', 'no_lang_code', 1, 'https://ror.org/039xjj562 Rainbow Medical (Israel)'),
(75807, 'https://ror.org/02xse0222', 'no_lang_code', 1, 'https://ror.org/02xse0222 Rhizen Pharmaceuticals (Switzerland)'),
(75808, 'https://ror.org/04wysdg63', 'no_lang_code', 1, 'https://ror.org/04wysdg63 Redx Pharma (United Kingdom)'),
(75809, 'https://ror.org/021pfvj84', 'no_lang_code', 1, 'https://ror.org/021pfvj84 Refocus Group (United States)'),
(75810, 'https://ror.org/00e71xp25', 'no_lang_code', 1, 'https://ror.org/00e71xp25 RegeneRx Biopharmaceuticals (United States)'),
(75811, 'https://ror.org/03ckjgz67', 'no_lang_code', 1, 'https://ror.org/03ckjgz67 Rayner (United States)'),
(75812, 'https://ror.org/01fy15230', 'no_lang_code', 1, 'https://ror.org/01fy15230 Reliant Technologies (United States)'),
(75813, 'https://ror.org/0272z3408', 'no_lang_code', 1, 'https://ror.org/0272z3408 Relievant Medsystem (United States)'),
(75814, 'https://ror.org/05ygbx057', 'no_lang_code', 1, 'https://ror.org/05ygbx057 Renmatix (United States)'),
(75815, 'https://ror.org/03mxp7j39', 'no_lang_code', 1, 'https://ror.org/03mxp7j39 Rocky Mountain Orthodontics (United States)'),
(75816, 'https://ror.org/04hdpvy92', 'no_lang_code', 1, 'https://ror.org/04hdpvy92 RetinalGeniX Technologies (United States)'),
(75817, 'https://ror.org/00gnzfk51', 'no_lang_code', 1, 'https://ror.org/00gnzfk51 Sansho (Japan) 三晶株式会社'),
(75818, 'https://ror.org/05gjrga14', 'no_lang_code', 1, 'https://ror.org/05gjrga14 SACHEM (United States)'),
(75819, 'https://ror.org/02y8ft411', 'no_lang_code', 1, 'https://ror.org/02y8ft411 Rohto Pharmaceutical (Japan) ロート製薬株式会社'),
(75820, 'https://ror.org/02m1qaq93', 'no_lang_code', 1, 'https://ror.org/02m1qaq93 Rotam (China) 轮作作物科学'),
(75821, 'https://ror.org/03fzgzt45', 'en', 1, 'https://ror.org/03fzgzt45 Saint Regis Mohawk Tribe'),
(75822, 'https://ror.org/0168wa849', 'no_lang_code', 1, 'https://ror.org/0168wa849 Sakai Chemical Industry (Japan) 堺化学工業株式会社'),
(75823, 'https://ror.org/01r9c6a33', 'no_lang_code', 1, 'https://ror.org/01r9c6a33 Dempsey Ventures (United States)'),
(75824, 'https://ror.org/03rzt1w70', 'en', 1, 'https://ror.org/03rzt1w70 Wroclaw University of Applied Informatics "Horizon" Wrocławska Wyższa Szkoła Informatyki Stosowanej „Horyzont”'),
(75825, 'https://ror.org/00g934978', 'no_lang_code', 1, 'https://ror.org/00g934978 Clinical Microbiomics (Denmark)'),
(75826, 'https://ror.org/02mr1hg77', 'no_lang_code', 1, 'https://ror.org/02mr1hg77 Salts Healthcare (United Kingdom)'),
(75827, 'https://ror.org/00acss906', 'no_lang_code', 1, 'https://ror.org/00acss906 Saluda Medical (Australia)'),
(75828, 'https://ror.org/05wmmkw18', 'no_lang_code', 1, 'https://ror.org/05wmmkw18 Schleifring (Germany)'),
(75829, 'https://ror.org/02nb4b562', 'no_lang_code', 1, 'https://ror.org/02nb4b562 Recordati (Ireland)'),
(75830, 'https://ror.org/046w2n447', 'no_lang_code', 1, 'https://ror.org/046w2n447 Saban Ventures (Israel)'),
(75831, 'https://ror.org/01x905d34', 'no_lang_code', 1, 'https://ror.org/01x905d34 Samyang Holdings (South Korea) 삼양바이오팜'),
(75832, 'https://ror.org/05v2shy89', 'no_lang_code', 1, 'https://ror.org/05v2shy89 San-Ei Gen F.F.I (Japan)'),
(75833, 'https://ror.org/03rh67p56', 'no_lang_code', 1, 'https://ror.org/03rh67p56 SanBio (Japan) サンバイオ'),
(75834, 'https://ror.org/020wsgn47', 'no_lang_code', 1, 'https://ror.org/020wsgn47 Sangi (Japan) 株式会社サンギ'),
(75835, 'https://ror.org/03kwk6445', 'no_lang_code', 1, 'https://ror.org/03kwk6445 Seiren (Japan) セーレン株式会社'),
(75836, 'https://ror.org/0021myq38', 'no_lang_code', 1, 'https://ror.org/0021myq38 Eloxx Pharmaceuticals (United States)'),
(75837, 'https://ror.org/00sh93275', 'no_lang_code', 1, 'https://ror.org/00sh93275 Seno Medical (United States)'),
(75838, 'https://ror.org/051cj2f30', 'no_lang_code', 1, 'https://ror.org/051cj2f30 Seoul Viosys (South Korea) 서울바이오시스는'),
(75839, 'https://ror.org/028vcv574', 'no_lang_code', 1, 'https://ror.org/028vcv574 Seqirus (United Kingdom)'),
(75840, 'https://ror.org/045yf0774', 'en', 1, 'https://ror.org/045yf0774 Center for Neuroscience and Cognitive Systems'),
(75841, 'https://ror.org/04xbkmk86', 'en', 1, 'https://ror.org/04xbkmk86 Center for Genomic Science'),
(75842, 'https://ror.org/03mwaf730', 'en', 1, 'https://ror.org/03mwaf730 Center for Nano Science and Technology'),
(75843, 'https://ror.org/02nbgxg43', 'en', 1, 'https://ror.org/02nbgxg43 Center for Micro-BioRobotics'),
(75844, 'https://ror.org/05bykpb13', 'en', 1, 'https://ror.org/05bykpb13 Center for Biomolecular Nanotechnologies Centro per le Nanotecnologie Biomolecolari'),
(75845, 'https://ror.org/014ma9t05', 'no_lang_code', 1, 'https://ror.org/014ma9t05 SDS Biotech (Japan) 株式会社エス・ディー・エス バイオテック'),
(75846, 'https://ror.org/023b5wj08', 'no_lang_code', 1, 'https://ror.org/023b5wj08 SeaSpine (United States)'),
(75847, 'https://ror.org/05r0xrd27', 'en', 1, 'https://ror.org/05r0xrd27 Center for Nanotechnology Innovation Centro per l''Innovazione delle Nanotecnologie'),
(75848, 'https://ror.org/03mk1jb23', 'en', 1, 'https://ror.org/03mk1jb23 Center for Cultural Heritage Technology'),
(75849, 'https://ror.org/036aaf204', 'no_lang_code', 1, 'https://ror.org/036aaf204 Secant Group (United States)'),
(75850, 'https://ror.org/0342n5p84', 'it', 1, 'https://ror.org/0342n5p84 Centro per le Nano-Scienze della Vita'),
(75851, 'https://ror.org/02nzxcb82', 'en', 1, 'https://ror.org/02nzxcb82 Center for Translational Neurophysiology of Speech and Communication Centro di Neurofisiologia Traslazionale del Linguaggio e della Comunicazione'),
(75852, 'https://ror.org/05qp1qg36', 'en', 1, 'https://ror.org/05qp1qg36 Center for Sustainable Future Technologies'),
(75853, 'https://ror.org/01wp8zh54', 'en', 1, 'https://ror.org/01wp8zh54 IIT@MIT'),
(75854, 'https://ror.org/044hpwe09', 'en', 1, 'https://ror.org/044hpwe09 IIT@Harvard'),
(75855, 'https://ror.org/00g552c12', 'en', 1, 'https://ror.org/00g552c12 Association Suisse des Investisseurs en Capital et de Financement Schweizerische Vereinigung für Unternehmensfinanzierung The Swiss Private Equity & Corporate Finance Association'),
(75856, 'https://ror.org/01tfjyv98', 'en', 1, 'https://ror.org/01tfjyv98 MRC Brain Network Dynamics Unit'),
(75857, 'https://ror.org/03hakdk41', 'en', 1, 'https://ror.org/03hakdk41 UNC/NCSU Joint Department of Biomedical Engineering'),
(75858, 'https://ror.org/00g56wy16', 'en', 1, 'https://ror.org/00g56wy16 Shanghai Stomatological Hospital 上海市口腔病防治院'),
(75859, 'https://ror.org/040n2wh36', 'en', 1, 'https://ror.org/040n2wh36 European Magnetic Field Laboratory'),
(75860, 'https://ror.org/04kx66y96', 'en', 1, 'https://ror.org/04kx66y96 NHS Wales Shared Services Partnership'),
(75861, 'https://ror.org/01c8p7c25', 'it', 1, 'https://ror.org/01c8p7c25 ASP Città di Bologna'),
(75862, 'https://ror.org/020rcsj15', 'en', 1, 'https://ror.org/020rcsj15 Port of Antwerp'),
(75863, 'https://ror.org/022v8s261', 'en', 1, 'https://ror.org/022v8s261 Province of Antwerp Provincie Antwerpen'),
(75864, 'https://ror.org/043570368', 'en', 1, 'https://ror.org/043570368 City of Antwerp Stad Antwerpen'),
(75865, 'https://ror.org/00nhmr817', 'nl', 1, 'https://ror.org/00nhmr817 Port of Moerdijk'),
(75866, 'https://ror.org/0351ywy08', 'en', 1, 'https://ror.org/0351ywy08 General Directorate Combating Organized Crime Главна дирекция "Борба с организираната престъпност"'),
(75867, 'https://ror.org/013hy3379', 'no_lang_code', 1, 'https://ror.org/013hy3379 Sinus Markt- und Sozialforschung (Germany)'),
(75868, 'https://ror.org/047d2d387', 'en', 1, 'https://ror.org/047d2d387 Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics'),
(75869, 'https://ror.org/02gey2570', 'no_lang_code', 1, 'https://ror.org/02gey2570 FSD Pharma (Canada)'),
(75870, 'https://ror.org/05wsetc54', 'en', 1, 'https://ror.org/05wsetc54 Institute of Structural and Molecular Biology'),
(75871, 'https://ror.org/02qbgx346', 'no_lang_code', 1, 'https://ror.org/02qbgx346 Schwan-Stabilo (Germany)'),
(75872, 'https://ror.org/00jfeg660', 'en', 1, 'https://ror.org/00jfeg660 Center for the Neural Basis of Cognition'),
(75873, 'https://ror.org/042bvs696', 'en', 1, 'https://ror.org/042bvs696 Startups.be'),
(75874, 'https://ror.org/02yfrka70', 'no_lang_code', 1, 'https://ror.org/02yfrka70 SciClone Pharmaceuticals (United States)'),
(75875, 'https://ror.org/04hfg7v94', 'en', 1, 'https://ror.org/04hfg7v94 Center for Theoretical Biological Physics'),
(75876, 'https://ror.org/05853sr12', 'no_lang_code', 1, 'https://ror.org/05853sr12 Scientific Design Company (United States)'),
(75877, 'https://ror.org/049n6n725', 'en', 1, 'https://ror.org/049n6n725 National Hansen''s Disease Program'),
(75878, 'https://ror.org/0251rms11', 'no_lang_code', 1, 'https://ror.org/0251rms11 ScinoPharm Taiwan (Taiwan) 台灣神隆股份有限公司'),
(75879, 'https://ror.org/03j8xrv28', 'no_lang_code', 1, 'https://ror.org/03j8xrv28 Urtek Water Technologies (Spain)'),
(75880, 'https://ror.org/01t338n33', 'no_lang_code', 1, 'https://ror.org/01t338n33 Pharmazeutische Fabrik Dr. Reckeweg (Germany)'),
(75881, 'https://ror.org/0136jw687', 'no_lang_code', 1, 'https://ror.org/0136jw687 Teva Pharmaceuticals (Switzerland)'),
(75882, 'https://ror.org/03j3hnp65', 'de', 1, 'https://ror.org/03j3hnp65 Gouverneur Kinsbergencentrum'),
(75883, 'https://ror.org/02j0at714', 'en', 1, 'https://ror.org/02j0at714 Institutul de Ftiziopneumologie „Chiril Draganiuc” Phthisiopneumology Institute "Chiril Draganiuc"'),
(75884, 'https://ror.org/023bt3h76', 'no_lang_code', 1, 'https://ror.org/023bt3h76 Galapagos (France)'),
(75885, 'https://ror.org/04tym5d37', 'en', 1, 'https://ror.org/04tym5d37 Leverhulme Centre for Climate Change Mitigation'),
(75886, 'https://ror.org/01qh5w602', 'nl', 1, 'https://ror.org/01qh5w602 Belastingdienst Tax and Customs Administration'),
(75887, 'https://ror.org/04x8zs855', 'no_lang_code', 1, 'https://ror.org/04x8zs855 Ferring Pharmaceuticals (Finland)'),
(75888, 'https://ror.org/00ejvzn98', 'no_lang_code', 1, 'https://ror.org/00ejvzn98 Shanghai Techwell Biopharmaceutical (China)'),
(75889, 'https://ror.org/04b8r4934', 'no_lang_code', 1, 'https://ror.org/04b8r4934 Ipsen (Italy)'),
(75890, 'https://ror.org/0404kfe46', 'no_lang_code', 1, 'https://ror.org/0404kfe46 Bayer (Mexico)'),
(75891, 'https://ror.org/03062bd88', 'en', 1, 'https://ror.org/03062bd88 Academic Bridge Program'),
(75892, 'https://ror.org/01441w502', 'no_lang_code', 1, 'https://ror.org/01441w502 Bayer (Australia)'),
(75893, 'https://ror.org/01dspch42', 'no_lang_code', 1, 'https://ror.org/01dspch42 Amiri Diwan الديوان الأميري'),
(75894, 'https://ror.org/03pgn2579', 'de', 1, 'https://ror.org/03pgn2579 Deutscher Bundestag'),
(75895, 'https://ror.org/02n0gpn09', 'no_lang_code', 1, 'https://ror.org/02n0gpn09 Kronos Bios (United Kingdom)'),
(75896, 'https://ror.org/028gkba61', 'no_lang_code', 1, 'https://ror.org/028gkba61 Lyell Immunopharma (United States)'),
(75897, 'https://ror.org/001eahy16', 'no_lang_code', 1, 'https://ror.org/001eahy16 Catalent (Belgium)'),
(75898, 'https://ror.org/055560x25', 'en', 1, 'https://ror.org/055560x25 College of Europe, Warsaw'),
(75899, 'https://ror.org/00n7khb11', 'no_lang_code', 1, 'https://ror.org/00n7khb11 Sana Biotechnology (United States)'),
(75900, 'https://ror.org/03d908h34', 'no_lang_code', 1, 'https://ror.org/03d908h34 TrueBinding (United States)'),
(75901, 'https://ror.org/05dgqjt76', 'no_lang_code', 1, 'https://ror.org/05dgqjt76 Mitokinin (United States)'),
(75902, 'https://ror.org/004dyvb33', 'no_lang_code', 1, 'https://ror.org/004dyvb33 Unity Biotechnology (United States)'),
(75903, 'https://ror.org/00jd15125', 'no_lang_code', 1, 'https://ror.org/00jd15125 Propath Services (United States)'),
(75904, 'https://ror.org/03d7gms38', 'no_lang_code', 1, 'https://ror.org/03d7gms38 Q2 Solutions (United Kingdom)'),
(75905, 'https://ror.org/00eh21150', 'en', 1, 'https://ror.org/00eh21150 Cummings Veterinary Medical Center'),
(75906, 'https://ror.org/05e7mmt60', 'no_lang_code', 1, 'https://ror.org/05e7mmt60 Recludix Pharma (United States)'),
(75907, 'https://ror.org/01gpng625', 'no_lang_code', 1, 'https://ror.org/01gpng625 TerraVia (United States)'),
(75908, 'https://ror.org/0129kzc90', 'no_lang_code', 1, 'https://ror.org/0129kzc90 Showa Ika Kogyo (Japan) 昭和医科工業'),
(75909, 'https://ror.org/006t7br05', 'no_lang_code', 1, 'https://ror.org/006t7br05 FirstUnion (China)'),
(75910, 'https://ror.org/00zm1zp35', 'no_lang_code', 1, 'https://ror.org/00zm1zp35 SI-Bone (United States)'),
(75911, 'https://ror.org/03gxbhx27', 'no_lang_code', 1, 'https://ror.org/03gxbhx27 Somnics (Taiwan)'),
(75912, 'https://ror.org/025g1ff13', 'no_lang_code', 1, 'https://ror.org/025g1ff13 Shifamed (United States)'),
(75913, 'https://ror.org/02xbm4h96', 'no_lang_code', 1, 'https://ror.org/02xbm4h96 Shikoku (Japan) 四国化成工業株式会社'),
(75914, 'https://ror.org/01g3a5n46', 'no_lang_code', 1, 'https://ror.org/01g3a5n46 Siegfried (Switzerland)'),
(75915, 'https://ror.org/0064ns709', 'no_lang_code', 1, 'https://ror.org/0064ns709 Shilpa (India)'),
(75916, 'https://ror.org/03fs7fp11', 'no_lang_code', 1, 'https://ror.org/03fs7fp11 SHL Medical (Switzerland)'),
(75917, 'https://ror.org/01gz5c498', 'no_lang_code', 1, 'https://ror.org/01gz5c498 Sonendo (United States)'),
(75918, 'https://ror.org/00stt1q70', 'no_lang_code', 1, 'https://ror.org/00stt1q70 Ensysce Biosciences (United States)'),
(75919, 'https://ror.org/00qdzme95', 'no_lang_code', 1, 'https://ror.org/00qdzme95 SignPath Pharma (United States)'),
(75920, 'https://ror.org/02sw2gr16', 'no_lang_code', 1, 'https://ror.org/02sw2gr16 Spiber (Japan)'),
(75921, 'https://ror.org/01wj99869', 'no_lang_code', 1, 'https://ror.org/01wj99869 Spectrum Dynamics Medical (Switzerland)'),
(75922, 'https://ror.org/02x5h6n54', 'no_lang_code', 1, 'https://ror.org/02x5h6n54 Silab (France)'),
(75923, 'https://ror.org/02a79n229', 'no_lang_code', 1, 'https://ror.org/02a79n229 Silk Road Medical (United States)'),
(75924, 'https://ror.org/04be23e26', 'no_lang_code', 1, 'https://ror.org/04be23e26 Silony Medical (Switzerland)'),
(75925, 'https://ror.org/008356476', 'no_lang_code', 1, 'https://ror.org/008356476 Spine Wave (United States)'),
(75926, 'https://ror.org/05qd10157', 'no_lang_code', 1, 'https://ror.org/05qd10157 Simplify Medical (United States)'),
(75927, 'https://ror.org/04gnh4t80', 'no_lang_code', 1, 'https://ror.org/04gnh4t80 SiO2 Materials Science (United States)'),
(75928, 'https://ror.org/00h56hn14', 'no_lang_code', 1, 'https://ror.org/00h56hn14 SK Discovery (South Korea) SK디스커버리'),
(75929, 'https://ror.org/018fa7h76', 'no_lang_code', 1, 'https://ror.org/018fa7h76 Skeletal Dynamics (United States)'),
(75930, 'https://ror.org/034wp9329', 'no_lang_code', 1, 'https://ror.org/034wp9329 Sleep Number (United States)'),
(75931, 'https://ror.org/02zftdf95', 'no_lang_code', 1, 'https://ror.org/02zftdf95 Savaria (Canada)'),
(75932, 'https://ror.org/04n1qr170', 'no_lang_code', 1, 'https://ror.org/04n1qr170 Soft Gel Technologies (United States)'),
(75933, 'https://ror.org/03d02ry74', 'no_lang_code', 1, 'https://ror.org/03d02ry74 Sol-Gel Technologies (Israel)'),
(75934, 'https://ror.org/00hn7pt27', 'de', 1, 'https://ror.org/00hn7pt27 Haus der Natur - Museum für Natur und Technik'),
(75935, 'https://ror.org/00xg5j618', 'no_lang_code', 1, 'https://ror.org/00xg5j618 HI-LEX (Japan) 株式会社ハイレックスコーポレーション'),
(75936, 'https://ror.org/03ha8dy44', 'no_lang_code', 1, 'https://ror.org/03ha8dy44 NewAge (United States)'),
(75937, 'https://ror.org/02zzdas25', 'no_lang_code', 1, 'https://ror.org/02zzdas25 Precision Spine (United States)'),
(75938, 'https://ror.org/03t9hqf74', 'no_lang_code', 1, 'https://ror.org/03t9hqf74 ShockWave Medical (United States)'),
(75939, 'https://ror.org/0045fm505', 'no_lang_code', 1, 'https://ror.org/0045fm505 Staar Surgical (United States)'),
(75940, 'https://ror.org/01zzqts64', 'no_lang_code', 1, 'https://ror.org/01zzqts64 Stada Arzneimittel (Germany) Standardarzneimittel Deutscher Apotheker'),
(75941, 'https://ror.org/003sqa685', 'no_lang_code', 1, 'https://ror.org/003sqa685 Stat Medical Devices (United States)'),
(75942, 'https://ror.org/05sz2c652', 'no_lang_code', 1, 'https://ror.org/05sz2c652 Spineart (Switzerland)'),
(75943, 'https://ror.org/03tpwwd72', 'no_lang_code', 1, 'https://ror.org/03tpwwd72 Spineology (United States)'),
(75944, 'https://ror.org/019rkfc79', 'no_lang_code', 1, 'https://ror.org/019rkfc79 SpineVision (France)'),
(75945, 'https://ror.org/05pjrm134', 'no_lang_code', 1, 'https://ror.org/05pjrm134 Supratek Pharma (Canada)'),
(75946, 'https://ror.org/047j13421', 'no_lang_code', 1, 'https://ror.org/047j13421 SpineWelding (Switzerland)'),
(75947, 'https://ror.org/04mqss956', 'no_lang_code', 1, 'https://ror.org/04mqss956 Spirogen (United Kingdom)'),
(75948, 'https://ror.org/00hew8j40', 'no_lang_code', 1, 'https://ror.org/00hew8j40 TaiGen Biotechnology (Taiwan)'),
(75949, 'https://ror.org/0539tbr70', 'no_lang_code', 1, 'https://ror.org/0539tbr70 Taisei Kako (Japan)'),
(75950, 'https://ror.org/051kr3840', 'no_lang_code', 1, 'https://ror.org/051kr3840 Steelco (Italy)'),
(75951, 'https://ror.org/05vcg4030', 'no_lang_code', 1, 'https://ror.org/05vcg4030 Stereotaxis (United States)'),
(75952, 'https://ror.org/04jy4bd63', 'no_lang_code', 1, 'https://ror.org/04jy4bd63 Sterix (Philippines)'),
(75953, 'https://ror.org/00ffejy44', 'no_lang_code', 1, 'https://ror.org/00ffejy44 Teikoku Seiyaku (Japan) 帝國製薬㈱'),
(75954, 'https://ror.org/01f55re52', 'no_lang_code', 1, 'https://ror.org/01f55re52 Takazono (Japan) 株式会社タカゾノ'),
(75955, 'https://ror.org/043fbs867', 'no_lang_code', 1, 'https://ror.org/043fbs867 Stimwave Technologies (United States)'),
(75956, 'https://ror.org/03qashd50', 'no_lang_code', 1, 'https://ror.org/03qashd50 Itochu (Japan) 伊藤忠商事株式会社'),
(75957, 'https://ror.org/00sdg9z02', 'no_lang_code', 1, 'https://ror.org/00sdg9z02 Strategic Science & Technologies (United States)'),
(75958, 'https://ror.org/00wsc5072', 'no_lang_code', 1, 'https://ror.org/00wsc5072 Stiegelmeyer (Germany)'),
(75959, 'https://ror.org/01m39r121', 'en', 1, 'https://ror.org/01m39r121 Tate & Lyle (United Kingdom)'),
(75960, 'https://ror.org/04b7m4c37', 'no_lang_code', 1, 'https://ror.org/04b7m4c37 Tecomet (United States)'),
(75961, 'https://ror.org/04wnpe888', 'no_lang_code', 1, 'https://ror.org/04wnpe888 Vascular Flow Technologies (United Kingdom)'),
(75962, 'https://ror.org/00a2cej79', 'no_lang_code', 1, 'https://ror.org/00a2cej79 TCI (Taiwan) 大江生醫股份有限公司'),
(75963, 'https://ror.org/038a0vf09', 'no_lang_code', 1, 'https://ror.org/038a0vf09 Synaptive (Canada)'),
(75964, 'https://ror.org/035hwsz26', 'no_lang_code', 1, 'https://ror.org/035hwsz26 Synecor (United States)'),
(75965, 'https://ror.org/03x4xnv96', 'no_lang_code', 1, 'https://ror.org/03x4xnv96 Apax Partners (United Kingdom)'),
(75966, 'https://ror.org/03awqec28', 'en', 1, 'https://ror.org/03awqec28 Tecres (Italy)'),
(75967, 'https://ror.org/035rza675', 'no_lang_code', 1, 'https://ror.org/035rza675 Titan Medical (Canada)'),
(75968, 'https://ror.org/05hrpz398', 'no_lang_code', 1, 'https://ror.org/05hrpz398 Syntheon (United States)'),
(75969, 'https://ror.org/003fdzp71', 'no_lang_code', 1, 'https://ror.org/003fdzp71 Schölly (Germany)'),
(75970, 'https://ror.org/00nwtn727', 'no_lang_code', 1, 'https://ror.org/00nwtn727 Scott Laboratories (United States)'),
(75971, 'https://ror.org/05apyxs13', 'no_lang_code', 1, 'https://ror.org/05apyxs13 Tobishi (Japan)'),
(75972, 'https://ror.org/03m1xf462', 'no_lang_code', 1, 'https://ror.org/03m1xf462 Sony Olympus Medical Solutions (Japan)'),
(75973, 'https://ror.org/0493jda02', 'no_lang_code', 1, 'https://ror.org/0493jda02 THD (Italy)'),
(75974, 'https://ror.org/05dzdtp04', 'no_lang_code', 1, 'https://ror.org/05dzdtp04 Theragenics Corporation (United States)'),
(75975, 'https://ror.org/03993n266', 'no_lang_code', 1, 'https://ror.org/03993n266 TherapeuticsMD (United States)'),
(75976, 'https://ror.org/05d3bn235', 'no_lang_code', 1, 'https://ror.org/05d3bn235 Theratechnologies (Canada)'),
(75977, 'https://ror.org/03rycrh12', 'no_lang_code', 1, 'https://ror.org/03rycrh12 ThermoGenesis (United States)'),
(75978, 'https://ror.org/00c1ha781', 'no_lang_code', 1, 'https://ror.org/00c1ha781 Tosho (Japan)'),
(75979, 'https://ror.org/02tya7134', 'no_lang_code', 1, 'https://ror.org/02tya7134 Touchstone (China)'),
(75980, 'https://ror.org/05bjr0894', 'no_lang_code', 1, 'https://ror.org/05bjr0894 Toyo Engineering (Japan) 東洋エンジニアリング株式会社'),
(75981, 'https://ror.org/00xrhzn26', 'no_lang_code', 1, 'https://ror.org/00xrhzn26 TransMed7 (United States)'),
(75982, 'https://ror.org/040anr776', 'no_lang_code', 1, 'https://ror.org/040anr776 Toyo Suisan (Japan) 東洋水産株式会社'),
(75983, 'https://ror.org/009gkhz71', 'no_lang_code', 1, 'https://ror.org/009gkhz71 Tredegar (United States)'),
(75984, 'https://ror.org/03r7f5838', 'no_lang_code', 1, 'https://ror.org/03r7f5838 TP Orthodontics (United States)'),
(75985, 'https://ror.org/033bv6556', 'no_lang_code', 1, 'https://ror.org/033bv6556 Tracoe Medical (Germany)'),
(75986, 'https://ror.org/02ksw7h30', 'no_lang_code', 1, 'https://ror.org/02ksw7h30 ThermoTek (United States)'),
(75987, 'https://ror.org/04wqwae75', 'no_lang_code', 1, 'https://ror.org/04wqwae75 Tris Pharma (United States)'),
(75988, 'https://ror.org/01p1map55', 'no_lang_code', 1, 'https://ror.org/01p1map55 Transitions Optical (United States)'),
(75989, 'https://ror.org/02tzsc576', 'no_lang_code', 1, 'https://ror.org/02tzsc576 Translate Bio (United States)'),
(75990, 'https://ror.org/0281ff903', 'no_lang_code', 1, 'https://ror.org/0281ff903 Terason (United States)'),
(75991, 'https://ror.org/00f7kfd14', 'en', 1, 'https://ror.org/00f7kfd14 Dulbecco Telethon Institute'),
(75992, 'https://ror.org/00tf8t528', 'no_lang_code', 1, 'https://ror.org/00tf8t528 Think Surgical (United States)'),
(75993, 'https://ror.org/02dnbq706', 'no_lang_code', 1, 'https://ror.org/02dnbq706 Tristel (United Kingdom)'),
(75994, 'https://ror.org/015bm3863', 'no_lang_code', 1, 'https://ror.org/015bm3863 Ueno Fine Chemicals Industry (Japan) 上野製薬株式会社'),
(75995, 'https://ror.org/02b2enb68', 'no_lang_code', 1, 'https://ror.org/02b2enb68 Ultra Biotech (India)'),
(75996, 'https://ror.org/00kd86526', 'no_lang_code', 1, 'https://ror.org/00kd86526 Ultradent Products (United States)'),
(75997, 'https://ror.org/02nnezj30', 'no_lang_code', 1, 'https://ror.org/02nnezj30 Tidi (United States)'),
(75998, 'https://ror.org/0350fs434', 'no_lang_code', 1, 'https://ror.org/0350fs434 VitalConnect (United States)'),
(75999, 'https://ror.org/003njj705', 'no_lang_code', 1, 'https://ror.org/003njj705 Unisearch (United States)'),
(76000, 'https://ror.org/04009bk73', 'no_lang_code', 1, 'https://ror.org/04009bk73 Vitalitec International (Germany)'),
(76001, 'https://ror.org/00vawgs19', 'no_lang_code', 1, 'https://ror.org/00vawgs19 United Initiators (Germany)'),
(76002, 'https://ror.org/00xsmqz41', 'no_lang_code', 1, 'https://ror.org/00xsmqz41 Vivant (United States)'),
(76003, 'https://ror.org/05xzt2h26', 'no_lang_code', 1, 'https://ror.org/05xzt2h26 Venus Medtech (China)'),
(76004, 'https://ror.org/04xjsk421', 'no_lang_code', 1, 'https://ror.org/04xjsk421 Trisa (Switzerland)'),
(76005, 'https://ror.org/02kq47078', 'no_lang_code', 1, 'https://ror.org/02kq47078 USV (India)'),
(76006, 'https://ror.org/01nahaf96', 'no_lang_code', 1, 'https://ror.org/01nahaf96 Uvex (Germany)'),
(76007, 'https://ror.org/0596vwe73', 'no_lang_code', 1, 'https://ror.org/0596vwe73 Veroscience (United States)'),
(76008, 'https://ror.org/026ck6f55', 'no_lang_code', 1, 'https://ror.org/026ck6f55 Versitech (United States)'),
(76009, 'https://ror.org/04rksax81', 'no_lang_code', 1, 'https://ror.org/04rksax81 Valent BioSciences (United States)'),
(76010, 'https://ror.org/02e4at420', 'no_lang_code', 1, 'https://ror.org/02e4at420 Trividia Health (United States)'),
(76011, 'https://ror.org/02ms7ap07', 'en', 1, 'https://ror.org/02ms7ap07 Agronomical Institute of Campinas Instituto Agronômico de Campinas'),
(76012, 'https://ror.org/041v1ea26', 'en', 1, 'https://ror.org/041v1ea26 NCMI Information and Data Centre'),
(76013, 'https://ror.org/032j81x58', 'en', 1, 'https://ror.org/032j81x58 Zoo Outreach Organisation'),
(76014, 'https://ror.org/040spfh06', 'en', 1, 'https://ror.org/040spfh06 Wildlife Information Liaison Development'),
(76015, 'https://ror.org/03erhnf31', 'en', 1, 'https://ror.org/03erhnf31 Mattapally Technologies'),
(76016, 'https://ror.org/05pf9gd31', 'no_lang_code', 1, 'https://ror.org/05pf9gd31 Valtris Specialty Chemicals (United States)'),
(76017, 'https://ror.org/004q9nj68', 'no_lang_code', 1, 'https://ror.org/004q9nj68 Vapotherm (United States)'),
(76018, 'https://ror.org/034c3qw48', 'no_lang_code', 1, 'https://ror.org/034c3qw48 Vivex Biologics (United States)'),
(76019, 'https://ror.org/01kx4gj60', 'no_lang_code', 1, 'https://ror.org/01kx4gj60 Varex Imaging (United States)'),
(76020, 'https://ror.org/02z36hk60', 'no_lang_code', 1, 'https://ror.org/02z36hk60 Virent (United States)'),
(76021, 'https://ror.org/05kg68171', 'no_lang_code', 1, 'https://ror.org/05kg68171 Vascor (United States)'),
(76022, 'https://ror.org/05n9nsw73', 'no_lang_code', 1, 'https://ror.org/05n9nsw73 Helixmith (South Korea)'),
(76023, 'https://ror.org/042xh2258', 'no_lang_code', 1, 'https://ror.org/042xh2258 Vatech (South Korea)'),
(76024, 'https://ror.org/046eef166', 'no_lang_code', 1, 'https://ror.org/046eef166 Velcro (United Kingdom)'),
(76025, 'https://ror.org/02awadj72', 'no_lang_code', 1, 'https://ror.org/02awadj72 Volk (United States)'),
(76026, 'https://ror.org/051vfhx38', 'no_lang_code', 1, 'https://ror.org/051vfhx38 vTv Therapeutics (United States)'),
(76027, 'https://ror.org/05fqc1f82', 'no_lang_code', 1, 'https://ror.org/05fqc1f82 Vyaire Medical (United States)'),
(76028, 'https://ror.org/01zm8nz34', 'no_lang_code', 1, 'https://ror.org/01zm8nz34 Vytronus (United States)'),
(76029, 'https://ror.org/02fafdw13', 'no_lang_code', 1, 'https://ror.org/02fafdw13 W&H (Austria)'),
(76030, 'https://ror.org/04ae5ch43', 'no_lang_code', 1, 'https://ror.org/04ae5ch43 Wakunaga (Japan) 湧永製薬株式会社'),
(76031, 'https://ror.org/04v0xgx08', 'no_lang_code', 1, 'https://ror.org/04v0xgx08 Wilmar International (Singapore)'),
(76032, 'https://ror.org/016k2xj91', 'no_lang_code', 1, 'https://ror.org/016k2xj91 Wittenstein (Germany)'),
(76033, 'https://ror.org/04z50tc18', 'no_lang_code', 1, 'https://ror.org/04z50tc18 Woodwelding (Switzerland)'),
(76034, 'https://ror.org/036rk0748', 'no_lang_code', 1, 'https://ror.org/036rk0748 Xtant Medical (United States)'),
(76035, 'https://ror.org/05def2162', 'no_lang_code', 1, 'https://ror.org/05def2162 Ya-Man (Japan)'),
(76036, 'https://ror.org/01ahhnh95', 'no_lang_code', 1, 'https://ror.org/01ahhnh95 Xellia (Denmark)'),
(76037, 'https://ror.org/00fx5vd87', 'no_lang_code', 1, 'https://ror.org/00fx5vd87 Xenex Disinfection Services (United States)'),
(76038, 'https://ror.org/045wez665', 'no_lang_code', 1, 'https://ror.org/045wez665 Crescita Therapeutics (Canada)'),
(76039, 'https://ror.org/015x34y38', 'no_lang_code', 1, 'https://ror.org/015x34y38 Wave Life Sciences (United States)'),
(76040, 'https://ror.org/01ehqfp97', 'no_lang_code', 1, 'https://ror.org/01ehqfp97 Zensun (China)'),
(76041, 'https://ror.org/00v0f9w17', 'no_lang_code', 1, 'https://ror.org/00v0f9w17 Welland Medical (United Kingdom)'),
(76042, 'https://ror.org/006mk5713', 'no_lang_code', 1, 'https://ror.org/006mk5713 Wellesley Pharmaceuticals (United States)'),
(76043, 'https://ror.org/023aqyp35', 'no_lang_code', 1, 'https://ror.org/023aqyp35 SihuanPharm (China)'),
(76044, 'https://ror.org/02j4jqr44', 'no_lang_code', 1, 'https://ror.org/02j4jqr44 Zeria Pharmaceutical (Japan) ゼリア新薬工業'),
(76045, 'https://ror.org/02jhay860', 'no_lang_code', 1, 'https://ror.org/02jhay860 Huahai Pharmaceutical (China) 浙江华海药业股份有限公司'),
(76046, 'https://ror.org/014wkxc11', 'no_lang_code', 1, 'https://ror.org/014wkxc11 DenMat (United States)'),
(76047, 'https://ror.org/03qyfw860', 'no_lang_code', 1, 'https://ror.org/03qyfw860 Xyleco (United States)'),
(76048, 'https://ror.org/01w0mjg16', 'no_lang_code', 1, 'https://ror.org/01w0mjg16 Yamamoto Chamicals (Japan) 山本化成株式会社'),
(76049, 'https://ror.org/05h86nk22', 'no_lang_code', 1, 'https://ror.org/05h86nk22 Zhejiang Medicine (China)'),
(76050, 'https://ror.org/016aygb24', 'no_lang_code', 1, 'https://ror.org/016aygb24 Zymeworks (Canada)'),
(76051, 'https://ror.org/0369dsh11', 'no_lang_code', 1, 'https://ror.org/0369dsh11 Zuiko (Japan)'),
(76052, 'https://ror.org/05pzr2r67', 'no_lang_code', 1, 'https://ror.org/05pzr2r67 Zoetis (Belgium)'),
(76053, 'https://ror.org/007009t97', 'no_lang_code', 1, 'https://ror.org/007009t97 Yuyama (Japan) 株式会社ユヤマ'),
(76054, 'https://ror.org/00jabcz03', 'no_lang_code', 1, 'https://ror.org/00jabcz03 Zobele (Italy)'),
(76055, 'https://ror.org/03ydbpd31', 'no_lang_code', 1, 'https://ror.org/03ydbpd31 Wellstat Biologics (United States)'),
(76056, 'https://ror.org/026cbjd11', 'no_lang_code', 1, 'https://ror.org/026cbjd11 Zobele (Spain)'),
(76057, 'https://ror.org/05w0whz56', 'no_lang_code', 1, 'https://ror.org/05w0whz56 Adey (United Kingdom)'),
(76058, 'https://ror.org/0409pat80', 'no_lang_code', 1, 'https://ror.org/0409pat80 DeVilbiss Healthcare (United States)'),
(76059, 'https://ror.org/00m25j606', 'no_lang_code', 1, 'https://ror.org/00m25j606 Polypipe (United Kingdom)'),
(76060, 'https://ror.org/03b3h3q73', 'no_lang_code', 1, 'https://ror.org/03b3h3q73 Graphcore (United Kingdom)'),
(76061, 'https://ror.org/05mby3840', 'no_lang_code', 1, 'https://ror.org/05mby3840 Technetix (United Kingdom)'),
(76062, 'https://ror.org/006h5wv45', 'no_lang_code', 1, 'https://ror.org/006h5wv45 Gripple (United Kingdom)'),
(76063, 'https://ror.org/00qhzxe29', 'no_lang_code', 1, 'https://ror.org/00qhzxe29 Prevayl (United Kingdom)'),
(76064, 'https://ror.org/032dz8133', 'no_lang_code', 1, 'https://ror.org/032dz8133 Gurit (United Kingdom)'),
(76065, 'https://ror.org/02vhp3z89', 'no_lang_code', 1, 'https://ror.org/02vhp3z89 Gurulogic Microsystems (Finland)'),
(76066, 'https://ror.org/03zqmrr34', 'no_lang_code', 1, 'https://ror.org/03zqmrr34 Powerscreen (United Kingdom)'),
(76067, 'https://ror.org/012rcg503', 'no_lang_code', 1, 'https://ror.org/012rcg503 Belron (Switzerland)'),
(76068, 'https://ror.org/02w4qet09', 'no_lang_code', 1, 'https://ror.org/02w4qet09 Protean Electric (United Kingdom)'),
(76069, 'https://ror.org/03d3en416', 'no_lang_code', 1, 'https://ror.org/03d3en416 Rockley Photonics (United States)'),
(76070, 'https://ror.org/03kc5dr38', 'no_lang_code', 1, 'https://ror.org/03kc5dr38 Cambridge Mechatronics (United Kingdom)'),
(76071, 'https://ror.org/03dk72h16', 'no_lang_code', 1, 'https://ror.org/03dk72h16 Seven Networks (United States)'),
(76072, 'https://ror.org/031jzas57', 'no_lang_code', 1, 'https://ror.org/031jzas57 Silixa (United Kingdom)'),
(76073, 'https://ror.org/00ac1vt62', 'no_lang_code', 1, 'https://ror.org/00ac1vt62 Kenwood (United Kingdom)'),
(76074, 'https://ror.org/05nj3e153', 'no_lang_code', 1, 'https://ror.org/05nj3e153 Spirax Sarco (United Kingdom)'),
(76075, 'https://ror.org/05x3e5221', 'no_lang_code', 1, 'https://ror.org/05x3e5221 Synaptics (United Kingdom)'),
(76076, 'https://ror.org/00eexgx04', 'no_lang_code', 1, 'https://ror.org/00eexgx04 Dril Quip (United States)'),
(76077, 'https://ror.org/033wj0h62', 'en', 1, 'https://ror.org/033wj0h62 DS Smith (United Kingdom)'),
(76078, 'https://ror.org/02pspay39', 'no_lang_code', 1, 'https://ror.org/02pspay39 Eaton (Netherlands)'),
(76079, 'https://ror.org/00rgsn672', 'no_lang_code', 1, 'https://ror.org/00rgsn672 Stannah (United Kingdom)'),
(76080, 'https://ror.org/01w94r626', 'no_lang_code', 1, 'https://ror.org/01w94r626 Synamedia (United Kingdom)'),
(76081, 'https://ror.org/01x68z872', 'no_lang_code', 1, 'https://ror.org/01x68z872 Loadhog (United Kingdom)'),
(76082, 'https://ror.org/01hg7d511', 'no_lang_code', 1, 'https://ror.org/01hg7d511 Login BV (Slovenia)'),
(76083, 'https://ror.org/00dp5a155', 'en', 1, 'https://ror.org/00dp5a155 TIFR Centre for Applicable Mathematics'),
(76084, 'https://ror.org/01axfdj86', 'en', 1, 'https://ror.org/01axfdj86 Homi Bhabha Centre for Science Education होमी भाभा विज्ञान शिक्षा केन्द्र, टी.आई.एफ.आर'),
(76085, 'https://ror.org/02emgkf66', 'no_lang_code', 1, 'https://ror.org/02emgkf66 Otter Controls (United Kingdom)'),
(76086, 'https://ror.org/005vq4d33', 'no_lang_code', 1, 'https://ror.org/005vq4d33 Oxford Plastics (United Kingdom)'),
(76087, 'https://ror.org/04tbt8b85', 'en', 1, 'https://ror.org/04tbt8b85 National Centre for Radio Astrophysics राष्ट्रीय रेडियो खगोल भौतिकी केन्द्र'),
(76088, 'https://ror.org/04tgrm918', 'no_lang_code', 1, 'https://ror.org/04tgrm918 nChain (United Kingdom)'),
(76089, 'https://ror.org/036yna661', 'no_lang_code', 1, 'https://ror.org/036yna661 F-Secure (Finland)'),
(76090, 'https://ror.org/03sqqq988', 'no_lang_code', 1, 'https://ror.org/03sqqq988 Sentec (United Kingdom)'),
(76091, 'https://ror.org/04fbk4w04', 'no_lang_code', 1, 'https://ror.org/04fbk4w04 Nihon Plast (Japan)'),
(76092, 'https://ror.org/02p6vf335', 'no_lang_code', 1, 'https://ror.org/02p6vf335 Frito-Lay (Switzerland)'),
(76093, 'https://ror.org/030jfpr63', 'no_lang_code', 1, 'https://ror.org/030jfpr63 Novalia (United Kingdom)'),
(76094, 'https://ror.org/03p9s5t60', 'no_lang_code', 1, 'https://ror.org/03p9s5t60 Nujira (United Kingdom)'),
(76095, 'https://ror.org/010p2sq51', 'no_lang_code', 1, 'https://ror.org/010p2sq51 Nabors Industries (United States)'),
(76096, 'https://ror.org/001bdsd09', 'en', 1, 'https://ror.org/001bdsd09 Osaka Kaisei Hospital 大阪回生病院');
INSERT INTO `rors` VALUES
(76097, 'https://ror.org/00wwe0e57', 'en', 1, 'https://ror.org/00wwe0e57 Sabalan University of Advanced Technologies دانشگاه فناوری های نوین سبلان'),
(76098, 'https://ror.org/045g15j06', 'no_lang_code', 1, 'https://ror.org/045g15j06 Chevron (China) 雪佛龍香港有限公司'),
(76099, 'https://ror.org/02255bn64', 'en', 1, 'https://ror.org/02255bn64 Penang Development Corporation Perbadanan Pembangunan Pulau Pinang'),
(76100, 'https://ror.org/02j393627', 'en', 1, 'https://ror.org/02j393627 Javna agencija Republike Slovenije za spodbujanje podjetništva, internacionalizacije, tujih investicij in tehnologije SPIRIT Slovenia - Public Agency for Entrepreneurship, Internationalization, Foreign Investments and Technology'),
(76101, 'https://ror.org/049g0t365', 'en', 1, 'https://ror.org/049g0t365 Islamic Azad University Dolatabad دانشگاه آزاد اسلامی واحد دولت آباد'),
(76102, 'https://ror.org/019nmjx95', 'no_lang_code', 1, 'https://ror.org/019nmjx95 HEC Pharm (China)'),
(76103, 'https://ror.org/038mj2660', 'de', 1, 'https://ror.org/038mj2660 Eastern Switzerland University of Applied Sciences Ostschweizer Fachhochschule OST'),
(76104, 'https://ror.org/042wb3s35', 'en', 1, 'https://ror.org/042wb3s35 Selangor Business School'),
(76105, 'https://ror.org/03fg5ns40', 'en', 1, 'https://ror.org/03fg5ns40 MIT Sea Grant'),
(76106, 'https://ror.org/037f7zx95', 'en', 1, 'https://ror.org/037f7zx95 New Hampshire Sea Grant'),
(76107, 'https://ror.org/058wv3r60', 'en', 1, 'https://ror.org/058wv3r60 Export–Import Bank of Korea'),
(76108, 'https://ror.org/038rzmb16', 'en', 1, 'https://ror.org/038rzmb16 Delaware Sea Grant'),
(76109, 'https://ror.org/04rj1td02', 'en', 1, 'https://ror.org/04rj1td02 Space Engineering University 中国人民解放军战略支援部队航天工程大学'),
(76110, 'https://ror.org/02v07kh10', 'en', 1, 'https://ror.org/02v07kh10 Federal Polytechnic Ede'),
(76111, 'https://ror.org/048s1x807', 'en', 1, 'https://ror.org/048s1x807 ESEP-LE BERGER University'),
(76112, 'https://ror.org/00xyqkv27', 'en', 1, 'https://ror.org/00xyqkv27 Axis Multispecialty Hospital'),
(76113, 'https://ror.org/002ayyd98', 'en', 1, 'https://ror.org/002ayyd98 Mie Forestry Research Institute 三重県 林業研究所'),
(76114, 'https://ror.org/01tyzsw55', 'en', 1, 'https://ror.org/01tyzsw55 Mie Agricultural Research Institute 三重県農業研究所'),
(76115, 'https://ror.org/03zedkf25', 'no_lang_code', 1, 'https://ror.org/03zedkf25 Penta-Ocean Construction (Japan)'),
(76116, 'https://ror.org/00zw0jt22', 'no_lang_code', 1, 'https://ror.org/00zw0jt22 Berry (Switzerland)'),
(76117, 'https://ror.org/01gpa4h16', 'en', 1, 'https://ror.org/01gpa4h16 TRENDS Research & Advisory مركز تريندز للبحوث والاستشارات'),
(76118, 'https://ror.org/01m9s4d25', 'en', 1, 'https://ror.org/01m9s4d25 Colorado Space Grant Consortium'),
(76119, 'https://ror.org/0020h0412', 'en', 1, 'https://ror.org/0020h0412 Art Aia - Creatives / In / Residence'),
(76120, 'https://ror.org/03h2q9n18', 'en', 1, 'https://ror.org/03h2q9n18 Tennessee Space Grant Consortium'),
(76121, 'https://ror.org/02mkj1868', 'en', 1, 'https://ror.org/02mkj1868 New Hampshire Space Grant Consortium'),
(76122, 'https://ror.org/0071sjj14', 'en', 1, 'https://ror.org/0071sjj14 Massachusetts Space Grant Consortium'),
(76123, 'https://ror.org/04znb3x93', 'no_lang_code', 1, 'https://ror.org/04znb3x93 Nobuhara Hospital 信原病院'),
(76124, 'https://ror.org/03kx02w94', 'en', 1, 'https://ror.org/03kx02w94 Experimental Drug Development Centre'),
(76125, 'https://ror.org/058v0t886', 'en', 1, 'https://ror.org/058v0t886 Sudan Academy of Sciences أكاديمية السودان للعلوم'),
(76126, 'https://ror.org/01vz88x14', 'en', 1, 'https://ror.org/01vz88x14 LogicalOutcomes'),
(76127, 'https://ror.org/03b368668', 'no_lang_code', 1, 'https://ror.org/03b368668 Intellia Therapeutics (United States)'),
(76128, 'https://ror.org/05kq83y33', 'no_lang_code', 1, 'https://ror.org/05kq83y33 Aequor (United States)'),
(76129, 'https://ror.org/00ztar512', 'en', 1, 'https://ror.org/00ztar512 Aichi Medical University Hospital 愛知医科大学病院'),
(76130, 'https://ror.org/0080ttk76', 'es', 1, 'https://ror.org/0080ttk76 Instituto de Salud Pública de Chile'),
(76131, 'https://ror.org/034msyx24', 'no_lang_code', 1, 'https://ror.org/034msyx24 Fuji Chimera Research Institute (Japan) 株式会社 富士キメラ総研'),
(76132, 'https://ror.org/02e8nmk52', 'en', 1, 'https://ror.org/02e8nmk52 Tokyo Medical Examiner''s Office 東京都監察医務院'),
(76133, 'https://ror.org/023sm4k53', 'en', 1, 'https://ror.org/023sm4k53 Department of Physics, Mathematics and Informatics Аддзяленне фізікі, матэматыкі і інфарматыкі'),
(76134, 'https://ror.org/01y1re497', 'en', 1, 'https://ror.org/01y1re497 Department of Physical and Technical Sciences Аддзяленне фізіка-тэхнічных навук'),
(76135, 'https://ror.org/03bh65t82', 'en', 1, 'https://ror.org/03bh65t82 Department of Chemistry and Earth Sciences Аддзяленне хіміі і навук аб Зямлі'),
(76136, 'https://ror.org/05dte6685', 'en', 1, 'https://ror.org/05dte6685 Department of Biological Sciences Аддзяленне біялагічных навук'),
(76137, 'https://ror.org/049c9xv68', 'en', 1, 'https://ror.org/049c9xv68 Department of Medical Sciences Аддзяленне медыцынскіх навук'),
(76138, 'https://ror.org/02xk7ft96', 'en', 1, 'https://ror.org/02xk7ft96 Department of Humanities and Arts Аддзяленне гуманітарных навук і мастацтваў Отделение гуманитарных наук и искусств НАН Беларуси'),
(76139, 'https://ror.org/014tv7j22', 'en', 1, 'https://ror.org/014tv7j22 Department of Agrarian Sciences Аддзяленне аграрных навук'),
(76140, 'https://ror.org/01my9wr56', 'en', 1, 'https://ror.org/01my9wr56 Bridge Consultants Foundation'),
(76141, 'https://ror.org/03bq5ar94', 'en', 1, 'https://ror.org/03bq5ar94 Stavanger Museum'),
(76142, 'https://ror.org/017w08b10', 'en', 1, 'https://ror.org/017w08b10 Stockholm Environment Institute'),
(76143, 'https://ror.org/00ng9c593', 'en', 1, 'https://ror.org/00ng9c593 Stockholm Environment Institute'),
(76144, 'https://ror.org/03cst3c12', 'no_lang_code', 1, 'https://ror.org/03cst3c12 Yidu Central Hospital of Weifang 潍坊市益都中心医院'),
(76145, 'https://ror.org/039zt7w55', 'en', 1, 'https://ror.org/039zt7w55 University Hospital Kyoto Prefectural University of Medicine 京都府立医科大学附属病院'),
(76146, 'https://ror.org/04d5hc132', 'no_lang_code', 1, 'https://ror.org/04d5hc132 Noside 田中美郷教育研究所'),
(76147, 'https://ror.org/041bygf77', 'en', 1, 'https://ror.org/041bygf77 Ghent University Global Campus 겐트대학교'),
(76148, 'https://ror.org/042n88708', 'no_lang_code', 1, 'https://ror.org/042n88708 Nitto RIKEN (Japan) 日東理化学株式会社'),
(76149, 'https://ror.org/05nfvzf52', 'no_lang_code', 1, 'https://ror.org/05nfvzf52 Isuzu Advanced Engineering Center (Japan) いすゞ中央研究所'),
(76150, 'https://ror.org/0355tjr07', 'fr', 1, 'https://ror.org/0355tjr07 Hôpital Maritime de Berck'),
(76151, 'https://ror.org/01sr2h546', 'fr', 1, 'https://ror.org/01sr2h546 Hôpital Émile-Roux'),
(76152, 'https://ror.org/03zry0650', 'fr', 1, 'https://ror.org/03zry0650 Hôpital Georges-Clemenceau'),
(76153, 'https://ror.org/02xhgtj20', 'fr', 1, 'https://ror.org/02xhgtj20 Hôpital Marin de Hendaye'),
(76154, 'https://ror.org/053385a79', 'fr', 1, 'https://ror.org/053385a79 Hôpital Dupuytren'),
(76155, 'https://ror.org/02f65mn87', 'en', 1, 'https://ror.org/02f65mn87 Apollo Institute of Medical Sciences & Research అపోలో ఇన్స్టిట్యూట్ ఆఫ్ మెడికల్ సైన్సెస్ అండ్ రీసెర్చ్'),
(76156, 'https://ror.org/03e04x797', 'fr', 1, 'https://ror.org/03e04x797 Hôpital René-Muret'),
(76157, 'https://ror.org/03h9w0610', 'fr', 1, 'https://ror.org/03h9w0610 Hôpital Sainte-Périne'),
(76158, 'https://ror.org/05cmw3824', 'fr', 1, 'https://ror.org/05cmw3824 Hôpital San Salvadour'),
(76159, 'https://ror.org/03q129k63', 'en', 1, 'https://ror.org/03q129k63 Kanazawa Medical University Hospital 金沢医科大学病院'),
(76160, 'https://ror.org/02yyy2c79', 'en', 1, 'https://ror.org/02yyy2c79 Kenya Paediatric Research Consortium'),
(76161, 'https://ror.org/02qft9w02', 'en', 1, 'https://ror.org/02qft9w02 Taiwan Electrical and Electronic Manufacturers’ Association 台灣區電機電子工業同業公會'),
(76162, 'https://ror.org/01fhhep80', 'en', 1, 'https://ror.org/01fhhep80 China Productivity Center'),
(76163, 'https://ror.org/02k7g3c43', 'en', 1, 'https://ror.org/02k7g3c43 Taiwan Geographic Information Center 財團法人台灣地理資訊中心'),
(76164, 'https://ror.org/001s1be73', 'en', 1, 'https://ror.org/001s1be73 Industrial Development Bureau 經濟部工業局'),
(76165, 'https://ror.org/02x0rn474', 'en', 1, 'https://ror.org/02x0rn474 Taiwan External Trade Development Council 中華民國對外貿易發展協會'),
(76166, 'https://ror.org/00td9q934', 'en', 1, 'https://ror.org/00td9q934 Taiwan Semiconductor Industry Association'),
(76167, 'https://ror.org/01aqb5k11', 'en', 1, 'https://ror.org/01aqb5k11 Biotechnology and Pharmaceutical Industries Promotion Office 經濟部生技醫藥產業發展推動小組'),
(76168, 'https://ror.org/03jddr449', 'en', 1, 'https://ror.org/03jddr449 Thailand Board of Investment สำนักงานคณะกรรมการส่งเสริมการลงทุน'),
(76169, 'https://ror.org/00p4ry522', 'no_lang_code', 1, 'https://ror.org/00p4ry522 Nomura Research Institute 株式会社野村総合研究所'),
(76170, 'https://ror.org/02fvx0g44', 'en', 1, 'https://ror.org/02fvx0g44 Banque de développement du Canada Business Development Bank of Canada'),
(76171, 'https://ror.org/0268fey62', 'en', 1, 'https://ror.org/0268fey62 Chiba Prefectural Agriculture and Forestry Research Center Forest Research Institute 千葉県農林総合研究センター森林研究所'),
(76172, 'https://ror.org/00xkrw816', 'en', 1, 'https://ror.org/00xkrw816 China Construction Bank 中国建设银行'),
(76173, 'https://ror.org/00pp12j94', 'en', 1, 'https://ror.org/00pp12j94 China Development Bank 国家开发银行'),
(76174, 'https://ror.org/00pbcb885', 'en', 1, 'https://ror.org/00pbcb885 National Energy Commission 国家能源委员会'),
(76175, 'https://ror.org/02hj60p29', 'es', 1, 'https://ror.org/02hj60p29 Fundación Centro de Gestión Tecnológica e Informática Industrial'),
(76176, 'https://ror.org/02sykmz69', 'en', 1, 'https://ror.org/02sykmz69 Czech-Moravian Guarantee and Development Bank'),
(76177, 'https://ror.org/047e5gf10', 'no_lang_code', 1, 'https://ror.org/047e5gf10 ClassNK 一般財団法人日本海事協会'),
(76178, 'https://ror.org/02ywmxs27', 'no_lang_code', 1, 'https://ror.org/02ywmxs27 Nousouken (Japan) 株式会社農業総合研究所'),
(76179, 'https://ror.org/0176eja59', 'en', 1, 'https://ror.org/0176eja59 Foundation for Finnish Inventions Keksintösäätiö'),
(76180, 'https://ror.org/00cky6c92', 'no_lang_code', 1, 'https://ror.org/00cky6c92 Tesi (Finland)'),
(76181, 'https://ror.org/02bf7eh36', 'no_lang_code', 1, 'https://ror.org/02bf7eh36 Finnvera (Finland)'),
(76182, 'https://ror.org/03ax15t06', 'en', 1, 'https://ror.org/03ax15t06 Sheltering Arms Institute'),
(76183, 'https://ror.org/01zzaw986', 'en', 1, 'https://ror.org/01zzaw986 General Clinic Phương Nam Phòng Khám Đa Khoa Phương Nam'),
(76184, 'https://ror.org/00pm0z037', 'en', 1, 'https://ror.org/00pm0z037 Georgia''s Innovation and Technology Agency საქართველოს ინოვაციების და ტექნოლოგიების სააგენტო'),
(76185, 'https://ror.org/048f8a181', 'no_lang_code', 1, 'https://ror.org/048f8a181 IDBI Bank'),
(76186, 'https://ror.org/0235bes35', 'no_lang_code', 1, 'https://ror.org/0235bes35 Coventry & Warwickshire Local Enterprise Partnership (United Kingdom)'),
(76187, 'https://ror.org/00axkns98', 'en', 1, 'https://ror.org/00axkns98 Electronics Corporation of India'),
(76188, 'https://ror.org/05a0mtz36', 'en', 1, 'https://ror.org/05a0mtz36 Renewable Energy Corporation of India'),
(76189, 'https://ror.org/05jka5961', 'es', 1, 'https://ror.org/05jka5961 Instituto Tecnológico del Salmón Salmon Technology Institute'),
(76190, 'https://ror.org/02qhvm916', 'en', 1, 'https://ror.org/02qhvm916 Corporación de Fomento de la Producción de Chile Production Development Corporation'),
(76191, 'https://ror.org/00pmqj178', 'en', 1, 'https://ror.org/00pmqj178 Eunpyeong Hospital 서울특별시 은평병원'),
(76192, 'https://ror.org/002kcsd03', 'en', 1, 'https://ror.org/002kcsd03 Institute of Manuscripts of Azerbaijan Əlyazmalar İnstitutu'),
(76193, 'https://ror.org/053641y49', 'en', 1, 'https://ror.org/053641y49 Japan Coal Energy Center 石炭エネルギーセンター'),
(76194, 'https://ror.org/046axse10', 'en', 1, 'https://ror.org/046axse10 The Japanese Institute of Fisheries Infrastructure and Communities 漁港漁場漁村総合研究所'),
(76195, 'https://ror.org/00345kx61', 'en', 1, 'https://ror.org/00345kx61 Physical Education and Medicine Research Foundation 身体教育医学研究所'),
(76196, 'https://ror.org/02kt6vs55', 'pt', 1, 'https://ror.org/02kt6vs55 Unichristus'),
(76197, 'https://ror.org/04z20hw90', 'en', 1, 'https://ror.org/04z20hw90 Tanaka Institute of Education 田中教育研究所'),
(76198, 'https://ror.org/02z8fgy02', 'no_lang_code', 1, 'https://ror.org/02z8fgy02 Terumo Aortic (United Kingdom)'),
(76199, 'https://ror.org/02twaqp73', 'no_lang_code', 1, 'https://ror.org/02twaqp73 Berg (United States)'),
(76200, 'https://ror.org/02kssw685', 'no_lang_code', 1, 'https://ror.org/02kssw685 Olatec (United States)'),
(76201, 'https://ror.org/033tvvz33', 'no_lang_code', 1, 'https://ror.org/033tvvz33 Cook Research (United States)'),
(76202, 'https://ror.org/00nt0xf41', 'en', 1, 'https://ror.org/00nt0xf41 Islamic Azad University of Gachsaran دانشگاه آزاد اسلامی واحد گچساران'),
(76203, 'https://ror.org/01n71v551', 'en', 1, 'https://ror.org/01n71v551 Universal Scientific Education and Research Network شبکه جهانی آموزش و پژوهش های علمی'),
(76204, 'https://ror.org/04jf6jw55', 'en', 1, 'https://ror.org/04jf6jw55 University of Science and Technology of Mazandaran دانشگاه علم و فناوری مازندران'),
(76205, 'https://ror.org/0095a7z52', 'en', 1, 'https://ror.org/0095a7z52 Islamic Azad University Kashmar Branch دانشگاه آزاد اسلامی واحد کاشمر'),
(76206, 'https://ror.org/031g2ra50', 'en', 1, 'https://ror.org/031g2ra50 PLA Air Force Aviation University 中国人民解放军空军航空大学'),
(76207, 'https://ror.org/05bmwgs04', 'en', 1, 'https://ror.org/05bmwgs04 Sabzevar University of New Technology دانشگاه فناوری های نوین سبزوار'),
(76208, 'https://ror.org/04gp0de23', 'id', 1, 'https://ror.org/04gp0de23 IAIN Palangka Raya'),
(76209, 'https://ror.org/00xk3qa12', 'no_lang_code', 1, 'https://ror.org/00xk3qa12 Transparency Lab (Netherlands)'),
(76210, 'https://ror.org/014a6fe58', 'en', 1, 'https://ror.org/014a6fe58 Whole Health Institute'),
(76211, 'https://ror.org/0397szj42', 'en', 1, 'https://ror.org/0397szj42 Tarsus University Tarsus Üniversitesi'),
(76212, 'https://ror.org/034yc4v31', 'en', 1, 'https://ror.org/034yc4v31 Debark University'),
(76213, 'https://ror.org/04vxw9c34', 'en', 1, 'https://ror.org/04vxw9c34 University of Southampton Malaysia'),
(76214, 'https://ror.org/051a88j84', 'pt', 1, 'https://ror.org/051a88j84 Centro Universitário Maurício de Nassau'),
(76215, 'https://ror.org/01jzeez77', 'en', 1, 'https://ror.org/01jzeez77 Maryland Advanced Development Laboratory'),
(76216, 'https://ror.org/051j6j225', 'en', 1, 'https://ror.org/051j6j225 Final International University Uluslararası Final Üniversitesi'),
(76217, 'https://ror.org/0161hbt42', 'en', 1, 'https://ror.org/0161hbt42 University of Gonabad مجتمع آموزش عالي گناباد'),
(76218, 'https://ror.org/01mc04w21', 'en', 1, 'https://ror.org/01mc04w21 Fujian Business University 福建商学院'),
(76219, 'https://ror.org/0181a8730', 'en', 1, 'https://ror.org/0181a8730 Harcourt Butler Technical University हरकोर्ट बटलर टेक्निकल युनिवर्सिटी'),
(76220, 'https://ror.org/01eqh1863', 'en', 1, 'https://ror.org/01eqh1863 Yango University 阳光学院'),
(76221, 'https://ror.org/01w9wgg77', 'en', 1, 'https://ror.org/01w9wgg77 Istanbul Kent University İstanbul Kent Üniversitesi'),
(76222, 'https://ror.org/03mzw7781', 'en', 1, 'https://ror.org/03mzw7781 Jilin Medical University 吉林医药学院'),
(76223, 'https://ror.org/017fspt77', 'en', 1, 'https://ror.org/017fspt77 Kutaisi International University ქუთაისის საერთაშორისო უნივერსიტეტი'),
(76224, 'https://ror.org/02nzd5081', 'en', 1, 'https://ror.org/02nzd5081 Arish University جامعة العريش'),
(76225, 'https://ror.org/02vrpj575', 'en', 1, 'https://ror.org/02vrpj575 Kyiv Academic University Київський Академічний Університет'),
(76226, 'https://ror.org/05afd6695', 'en', 1, 'https://ror.org/05afd6695 Maharaja Bir Bikram University মহারাজা বির বিক্রম ইউনিভার্সিটি'),
(76227, 'https://ror.org/01crytg85', 'en', 1, 'https://ror.org/01crytg85 Adani Institute of Infrastructure Engineering અદાણી ઇન્સ્ટિટ્યૂટ ઓફ ઈન્ફ્રાસ્ટ્રક્ચર એન્જિનિયરિંગ'),
(76228, 'https://ror.org/04s3t8g44', 'en', 1, 'https://ror.org/04s3t8g44 Sa''adatu Rimi College of Education'),
(76229, 'https://ror.org/00bzfhs56', 'en', 1, 'https://ror.org/00bzfhs56 The Technological College of Beer Sheva המכללה הטכנולוגית באר שבע'),
(76230, 'https://ror.org/03ytenv10', 'en', 1, 'https://ror.org/03ytenv10 Northern Technical University الجامعة التقنية الشمالية'),
(76231, 'https://ror.org/04am5ns61', 'en', 1, 'https://ror.org/04am5ns61 The Arab Academic College for Education in Israel המכללה האקדמית הערבית לחינוך בישראל الكلية الأكاديمية العربية للتربية في إسرائيل'),
(76232, 'https://ror.org/040egw157', 'id', 1, 'https://ror.org/040egw157 Institut Teknologi dan Sains Nahdlatul Ulama'),
(76233, 'https://ror.org/02qnx8e75', 'en', 1, 'https://ror.org/02qnx8e75 Institute of Marine Engineering Istituto di Ingegneria del Mare'),
(76234, 'https://ror.org/00aazk693', 'en', 1, 'https://ror.org/00aazk693 National Institute of Technology Manipur राष्ट्रीय प्रौद्योगिकी संस्थान मणिपुर'),
(76235, 'https://ror.org/02jktx121', 'en', 1, 'https://ror.org/02jktx121 Institut Teknologi Sumatera Sumatera Institute of Technology'),
(76236, 'https://ror.org/01xf31a71', 'en', 1, 'https://ror.org/01xf31a71 College of Applied Sciences, Nizwa كلية العلوم التطبيقية بنزوى'),
(76237, 'https://ror.org/059s97738', 'en', 1, 'https://ror.org/059s97738 Skyline University Nigeria'),
(76238, 'https://ror.org/05vad5q49', 'en', 1, 'https://ror.org/05vad5q49 Milli Aviasiya Akademiyası National Aviation Academy Национальная академия авиации Азербайджана'),
(76239, 'https://ror.org/024we4p93', 'en', 1, 'https://ror.org/024we4p93 Rustaq College of Education كلية التربية بالرستاق'),
(76240, 'https://ror.org/00red6q96', 'id', 1, 'https://ror.org/00red6q96 Politeknik Medica Farma Husada Mataram'),
(76241, 'https://ror.org/03byxpq91', 'en', 1, 'https://ror.org/03byxpq91 Institute for Biomedical Research and Innovation L’istituto per la Ricerca e l’innovazione Biomedica'),
(76242, 'https://ror.org/047rmsn51', 'en', 1, 'https://ror.org/047rmsn51 Institute for the Science and Technology of Plasmas Istituto per la Scienza e Tecnologia dei Plasmi'),
(76243, 'https://ror.org/01kjj2h97', 'en', 1, 'https://ror.org/01kjj2h97 Moscow Research Institute for Cybernetic Medicine Московский институт кибернетической медицины'),
(76244, 'https://ror.org/02f71a260', 'en', 1, 'https://ror.org/02f71a260 Motamed Cancer Institute پژوهشکده معتمد جهاد دانشگاهی'),
(76245, 'https://ror.org/00tkrt383', 'en', 1, 'https://ror.org/00tkrt383 Chianti Multifunctional Observatory Osservatorio Polifunzionale del Chianti'),
(76246, 'https://ror.org/03ks20z28', 'en', 1, 'https://ror.org/03ks20z28 Instituto Nacional de Calidad National Institute of Quality'),
(76247, 'https://ror.org/049kqfg40', 'en', 1, 'https://ror.org/049kqfg40 High Intensity Heavy-ion Accelerator Facility 强流重离子加速器装置'),
(76248, 'https://ror.org/00qhvgf79', 'en', 1, 'https://ror.org/00qhvgf79 Research Center in Industrial Technologies وزارة التعليم العالي و البحث العلمي'),
(76249, 'https://ror.org/03mvs6080', 'en', 1, 'https://ror.org/03mvs6080 Yangzhou Municipal Meteorological Bureau 扬州市气象局'),
(76250, 'https://ror.org/00qkwk946', 'fr', 1, 'https://ror.org/00qkwk946 Institut de la Filtration et des Techniques Séparatives'),
(76251, 'https://ror.org/001kv2y39', 'en', 1, 'https://ror.org/001kv2y39 Technology Innovation Institute معهد الابتكار التكنولوجي'),
(76252, 'https://ror.org/02f3vh107', 'en', 1, 'https://ror.org/02f3vh107 The Cambridge Centre for Advanced Research and Education in Singapore'),
(76253, 'https://ror.org/02ksa0z84', 'en', 1, 'https://ror.org/02ksa0z84 International Centre for Interdisciplinary Science and Education Trung tâm Quốc tế Khoa học và Giáo dục liên ngành'),
(76254, 'https://ror.org/010heyq73', 'en', 1, 'https://ror.org/010heyq73 Zoo Atlanta'),
(76255, 'https://ror.org/03ex6j864', 'en', 1, 'https://ror.org/03ex6j864 Agence Nationale de Radioprotection National Radiation Protection Agency of Cameroon'),
(76256, 'https://ror.org/037f3w245', 'en', 1, 'https://ror.org/037f3w245 Comité National de Développement des Technologies National Committee for the Development of Technologies'),
(76257, 'https://ror.org/05hbjh330', 'no_lang_code', 1, 'https://ror.org/05hbjh330 Marui Galvanizing (Japan)'),
(76258, 'https://ror.org/05qqw9p49', 'en', 1, 'https://ror.org/05qqw9p49 Academia Nacional de Ciencias National Academy of Sciences'),
(76259, 'https://ror.org/03cfzvy87', 'no_lang_code', 1, 'https://ror.org/03cfzvy87 Memcomputing (United States)'),
(76260, 'https://ror.org/05xeefy56', 'no_lang_code', 1, 'https://ror.org/05xeefy56 Preferred Networks (Japan)'),
(76261, 'https://ror.org/04k3c1424', 'en', 1, 'https://ror.org/04k3c1424 Hubei Provincial Museum 湖北省博物馆'),
(76262, 'https://ror.org/019qk5827', 'no_lang_code', 1, 'https://ror.org/019qk5827 Boly Media Communications (United States)'),
(76263, 'https://ror.org/01nqkgr65', 'tr', 1, 'https://ror.org/01nqkgr65 Medical Park Tarsus Hastanesi'),
(76264, 'https://ror.org/01f6r4445', 'no_lang_code', 1, 'https://ror.org/01f6r4445 CJSC Ekran FEP (Russia) ЗАО Экран ФЭП'),
(76265, 'https://ror.org/02bvn3590', 'no_lang_code', 1, 'https://ror.org/02bvn3590 Soliculture (United States)'),
(76266, 'https://ror.org/002hn6106', 'no_lang_code', 1, 'https://ror.org/002hn6106 CKM Analytix (United States)'),
(76267, 'https://ror.org/039q3gj90', 'no_lang_code', 1, 'https://ror.org/039q3gj90 Comecer (Italy)'),
(76268, 'https://ror.org/02nx9fz53', 'no_lang_code', 1, 'https://ror.org/02nx9fz53 Tibbar Plasma Technologies (United States)'),
(76269, 'https://ror.org/02mnrb887', 'no_lang_code', 1, 'https://ror.org/02mnrb887 Cafe Bazaar (Iran) کافه بازار'),
(76270, 'https://ror.org/03wrjp633', 'no_lang_code', 1, 'https://ror.org/03wrjp633 Cailabs (France)'),
(76271, 'https://ror.org/02nt9wa64', 'no_lang_code', 1, 'https://ror.org/02nt9wa64 a.i. solutions (United States)'),
(76272, 'https://ror.org/01xa88s20', 'en', 1, 'https://ror.org/01xa88s20 Baotou Teachers College 包头师范学院'),
(76273, 'https://ror.org/02p6a3b37', 'en', 1, 'https://ror.org/02p6a3b37 Creative Destruction Lab'),
(76274, 'https://ror.org/035jnav47', 'nl', 1, 'https://ror.org/035jnav47 J.M. Burgerscentrum'),
(76275, 'https://ror.org/00cwypn82', 'en', 1, 'https://ror.org/00cwypn82 Iranian National Center for Laser Science and Techology مرکز ملی علوم و فنون لیزر ایران'),
(76276, 'https://ror.org/00v4zth19', 'de', 1, 'https://ror.org/00v4zth19 Rechenkraft.net'),
(76277, 'https://ror.org/02m2h7991', 'no_lang_code', 1, 'https://ror.org/02m2h7991 Zhejiang Lab 之江实验室'),
(76278, 'https://ror.org/03q269m48', 'en', 1, 'https://ror.org/03q269m48 The Thousand'),
(76279, 'https://ror.org/04fn6g127', 'en', 1, 'https://ror.org/04fn6g127 The Fusebox'),
(76280, 'https://ror.org/054q94y45', 'en', 1, 'https://ror.org/054q94y45 Centre de Collaboration MiQro Innovation MiQro Innovation Collaborative Centre'),
(76281, 'https://ror.org/02yjj0827', 'en', 1, 'https://ror.org/02yjj0827 Canberra Innovation Network'),
(76282, 'https://ror.org/01hmd1y41', 'en', 1, 'https://ror.org/01hmd1y41 Federal Police of Brazil Police Fédérale Policía Federal Polícia Federal'),
(76283, 'https://ror.org/037k8mg80', 'en', 1, 'https://ror.org/037k8mg80 Nevada National Security Site'),
(76284, 'https://ror.org/01fdmy333', 'pt', 1, 'https://ror.org/01fdmy333 Governo do Estado de Paraíba'),
(76285, 'https://ror.org/04c3ged70', 'en', 1, 'https://ror.org/04c3ged70 Ministry of Foreign Affairs Ministério das Relações Exteriores'),
(76286, 'https://ror.org/0199zgv94', 'fr', 1, 'https://ror.org/0199zgv94 IRT M2P Instituts de Recherche Technologique'),
(76287, 'https://ror.org/01w0ddb93', 'no_lang_code', 1, 'https://ror.org/01w0ddb93 QuantaLab'),
(76288, 'https://ror.org/020z8x032', 'fr', 1, 'https://ror.org/020z8x032 Regroupement Québécois sur les Matériaux de Pointe'),
(76289, 'https://ror.org/00xrmm659', 'no_lang_code', 1, 'https://ror.org/00xrmm659 Kintech Lab (Russia)'),
(76290, 'https://ror.org/051xjbt51', 'no_lang_code', 1, 'https://ror.org/051xjbt51 Omsktransmash (Russia) Омский завод транспортного машиностроения'),
(76291, 'https://ror.org/05ckxea07', 'no_lang_code', 1, 'https://ror.org/05ckxea07 Xi''an Airborne Electromagnetic Technology (China) 西安爱邦电磁技术有限责任公司'),
(76292, 'https://ror.org/0146rd070', 'no_lang_code', 1, 'https://ror.org/0146rd070 Bloorazma (Iran) بلورآزما'),
(76293, 'https://ror.org/03nrjn370', 'no_lang_code', 1, 'https://ror.org/03nrjn370 Bluefors (Finland)'),
(76294, 'https://ror.org/04f8qsj21', 'no_lang_code', 1, 'https://ror.org/04f8qsj21 CTFusion (United States)'),
(76295, 'https://ror.org/03e150v94', 'no_lang_code', 1, 'https://ror.org/03e150v94 Central Alliance (United Kingdom)'),
(76296, 'https://ror.org/03br9cy66', 'no_lang_code', 1, 'https://ror.org/03br9cy66 Cherry Biotech (France)'),
(76297, 'https://ror.org/04vp1gh45', 'en', 1, 'https://ror.org/04vp1gh45 Services Partagés Canada Shared Services Canada'),
(76298, 'https://ror.org/0503xrr06', 'no_lang_code', 1, 'https://ror.org/0503xrr06 Closer Consultoria (Portugal)'),
(76299, 'https://ror.org/0208qbg77', 'en', 1, 'https://ror.org/0208qbg77 Shanghai Zhangjiang Laboratory 上海推进科技创新中心建设办公室'),
(76300, 'https://ror.org/0264ncd87', 'no_lang_code', 1, 'https://ror.org/0264ncd87 Comeb (Italy)'),
(76301, 'https://ror.org/02weav903', 'no_lang_code', 1, 'https://ror.org/02weav903 Comet (Switzerland)'),
(76302, 'https://ror.org/04a55zb79', 'es', 1, 'https://ror.org/04a55zb79 Secretaría de Salud de Bogotá'),
(76303, 'https://ror.org/04898td28', 'no_lang_code', 1, 'https://ror.org/04898td28 Compagnie Tunisienne de Forage (Tunisia)'),
(76304, 'https://ror.org/00sp0zs16', 'no_lang_code', 1, 'https://ror.org/00sp0zs16 Compass (United States)'),
(76305, 'https://ror.org/0338ntq56', 'no_lang_code', 1, 'https://ror.org/0338ntq56 AVIC Optronics (China) 航空工业光电所'),
(76306, 'https://ror.org/02j6bcm26', 'no_lang_code', 1, 'https://ror.org/02j6bcm26 CoreTech (China)'),
(76307, 'https://ror.org/00a14tf81', 'en', 1, 'https://ror.org/00a14tf81 ISRO Propulsion Complex भारतीय अंतरिक्ष अनुसंधान संगठन प्रणोदन समूह ఇస్రో ప్రొపల్షన్ కాంప్లెక్స్'),
(76308, 'https://ror.org/02q86ra23', 'en', 1, 'https://ror.org/02q86ra23 Administrative Council for Economic Defense Conselho Administrativo de Defesa Econômica'),
(76309, 'https://ror.org/037fh1278', 'no_lang_code', 1, 'https://ror.org/037fh1278 Cosmo Tech (France)'),
(76310, 'https://ror.org/04n7fat49', 'no_lang_code', 1, 'https://ror.org/04n7fat49 n&k Technology (United States)'),
(76311, 'https://ror.org/03aqnr710', 'no_lang_code', 1, 'https://ror.org/03aqnr710 3B the Fiberglass (Belgium)'),
(76312, 'https://ror.org/03vrph192', 'no_lang_code', 1, 'https://ror.org/03vrph192 Cyber Laser (Japan) サイバーレーザ'),
(76313, 'https://ror.org/02jze8s95', 'no_lang_code', 1, 'https://ror.org/02jze8s95 AP2E (France)'),
(76314, 'https://ror.org/0554q9126', 'no_lang_code', 1, 'https://ror.org/0554q9126 DAC Tools (United States)'),
(76315, 'https://ror.org/056vdh456', 'no_lang_code', 1, 'https://ror.org/056vdh456 APCON (Germany)'),
(76316, 'https://ror.org/01q27qv61', 'no_lang_code', 1, 'https://ror.org/01q27qv61 DATADVANCE (France)'),
(76317, 'https://ror.org/007x4cq57', 'en', 1, 'https://ror.org/007x4cq57 Directorate of Religious Affairs Diyanet İşleri Başkanlığı'),
(76318, 'https://ror.org/03dak6a36', 'no_lang_code', 1, 'https://ror.org/03dak6a36 Asics (Japan) アシックス'),
(76319, 'https://ror.org/01h8x8p33', 'no_lang_code', 1, 'https://ror.org/01h8x8p33 DataStrategy (Japan) データストラテジ'),
(76320, 'https://ror.org/048adnk25', 'no_lang_code', 1, 'https://ror.org/048adnk25 Acoustic Metamaterials Group (China)'),
(76321, 'https://ror.org/04fxggt25', 'no_lang_code', 1, 'https://ror.org/04fxggt25 ELCA (Switzerland)'),
(76322, 'https://ror.org/03avk6553', 'no_lang_code', 1, 'https://ror.org/03avk6553 Agnostiq (Canada)'),
(76323, 'https://ror.org/0277khs39', 'no_lang_code', 1, 'https://ror.org/0277khs39 ElFys (Finland)'),
(76324, 'https://ror.org/03xxp1119', 'no_lang_code', 1, 'https://ror.org/03xxp1119 Alpine Quantum Technologies (Austria)'),
(76325, 'https://ror.org/00vmat262', 'no_lang_code', 1, 'https://ror.org/00vmat262 TianKai Optical Communication (China) 天凯光通信'),
(76326, 'https://ror.org/04nzxdc92', 'no_lang_code', 1, 'https://ror.org/04nzxdc92 Arioso Systems (Germany)'),
(76327, 'https://ror.org/01z620d89', 'no_lang_code', 1, 'https://ror.org/01z620d89 EoTech (United States)'),
(76328, 'https://ror.org/033x0n485', 'no_lang_code', 1, 'https://ror.org/033x0n485 Arithmer (Japan)'),
(76329, 'https://ror.org/05czqyh70', 'no_lang_code', 1, 'https://ror.org/05czqyh70 Electron (Ukraine) Електрон'),
(76330, 'https://ror.org/02z8azv60', 'no_lang_code', 1, 'https://ror.org/02z8azv60 LDI Innovation (Estonia)'),
(76331, 'https://ror.org/00v5sgn53', 'no_lang_code', 1, 'https://ror.org/00v5sgn53 LDK Solar (China) 賽維太陽能'),
(76332, 'https://ror.org/00t35ff19', 'no_lang_code', 1, 'https://ror.org/00t35ff19 Arrayed Materials (China)'),
(76333, 'https://ror.org/04n075a40', 'no_lang_code', 1, 'https://ror.org/04n075a40 LPE (Italy)'),
(76334, 'https://ror.org/05g5rgx31', 'no_lang_code', 1, 'https://ror.org/05g5rgx31 Itasca Consultants (United States)'),
(76335, 'https://ror.org/04pvzz946', 'en', 1, 'https://ror.org/04pvzz946 The NSF AI Institute for Artificial Intelligence and Fundamental Interactions'),
(76336, 'https://ror.org/05vxfdm89', 'no_lang_code', 1, 'https://ror.org/05vxfdm89 Atom Computing (United States)'),
(76337, 'https://ror.org/01r5ta105', 'no_lang_code', 1, 'https://ror.org/01r5ta105 Azimuth (United States)'),
(76338, 'https://ror.org/034qmeb64', 'no_lang_code', 1, 'https://ror.org/034qmeb64 Elena International (Germany)'),
(76339, 'https://ror.org/002hr7c70', 'no_lang_code', 1, 'https://ror.org/002hr7c70 BGR Energy Systems (India)'),
(76340, 'https://ror.org/00130jf21', 'no_lang_code', 1, 'https://ror.org/00130jf21 Elliptika (France)'),
(76341, 'https://ror.org/02teaer78', 'no_lang_code', 1, 'https://ror.org/02teaer78 BME Bergmann (Germany)'),
(76342, 'https://ror.org/02hynf559', 'no_lang_code', 1, 'https://ror.org/02hynf559 Laser Systems & Solutions of Europe (France)'),
(76343, 'https://ror.org/0175s4d43', 'no_lang_code', 1, 'https://ror.org/0175s4d43 Engineering Software Steyr (Austria)'),
(76344, 'https://ror.org/02qzz9528', 'no_lang_code', 1, 'https://ror.org/02qzz9528 BNP Paribas (China)'),
(76345, 'https://ror.org/05gg5zh68', 'no_lang_code', 1, 'https://ror.org/05gg5zh68 LightTrans (Germany)'),
(76346, 'https://ror.org/03a7t7c50', 'no_lang_code', 1, 'https://ror.org/03a7t7c50 Entropica Labs (Singapore)'),
(76347, 'https://ror.org/0026qcv83', 'no_lang_code', 1, 'https://ror.org/0026qcv83 BeDimensional (Italy)'),
(76348, 'https://ror.org/035smsz08', 'no_lang_code', 1, 'https://ror.org/035smsz08 Evalf Computing (Netherlands)'),
(76349, 'https://ror.org/05044k006', 'no_lang_code', 1, 'https://ror.org/05044k006 Beijing Zhongchuangwei Quantum Communication Technology (China) 中创为量子'),
(76350, 'https://ror.org/04rz47917', 'no_lang_code', 1, 'https://ror.org/04rz47917 Berger Paints (India)'),
(76351, 'https://ror.org/00hn06s81', 'no_lang_code', 1, 'https://ror.org/00hn06s81 Everspin Technologies (United States)'),
(76352, 'https://ror.org/01grvwt83', 'no_lang_code', 1, 'https://ror.org/01grvwt83 BioNet Lab (Japan) バイオネット研究所'),
(76353, 'https://ror.org/01hnmd615', 'no_lang_code', 1, 'https://ror.org/01hnmd615 Hydroquest (France)'),
(76354, 'https://ror.org/00qg8pm87', 'no_lang_code', 1, 'https://ror.org/00qg8pm87 Line Corporation (Japan)'),
(76355, 'https://ror.org/02fyxhe35', 'no_lang_code', 1, 'https://ror.org/02fyxhe35 LinkedIn (United States)'),
(76356, 'https://ror.org/04jfr8f78', 'no_lang_code', 1, 'https://ror.org/04jfr8f78 Hyland Software (United States)'),
(76357, 'https://ror.org/05pnwae81', 'no_lang_code', 1, 'https://ror.org/05pnwae81 Lorentz Solution (United States)'),
(76358, 'https://ror.org/04wam6707', 'no_lang_code', 1, 'https://ror.org/04wam6707 IBM (Spain)'),
(76359, 'https://ror.org/04ttg5411', 'no_lang_code', 1, 'https://ror.org/04ttg5411 Lucht Probst Associates (Germany)'),
(76360, 'https://ror.org/01b6ag081', 'no_lang_code', 1, 'https://ror.org/01b6ag081 MSSCORPS (Taiwan)'),
(76361, 'https://ror.org/0203dhb90', 'no_lang_code', 1, 'https://ror.org/0203dhb90 IQM (Finland)'),
(76362, 'https://ror.org/00rbf3t83', 'no_lang_code', 1, 'https://ror.org/00rbf3t83 Silicon Therapeutics (United States)'),
(76363, 'https://ror.org/030z01v61', 'no_lang_code', 1, 'https://ror.org/030z01v61 ISHIFUKU (Japan) 石福金属興業'),
(76364, 'https://ror.org/05magwg24', 'id', 1, 'https://ror.org/05magwg24 Simetri Foundation Yayasan Simetri'),
(76365, 'https://ror.org/0470e9841', 'no_lang_code', 1, 'https://ror.org/0470e9841 Infineon Technologies (Singapore)'),
(76366, 'https://ror.org/0506jd168', 'no_lang_code', 1, 'https://ror.org/0506jd168 Sisu Data (United States)'),
(76367, 'https://ror.org/032w0sp96', 'no_lang_code', 1, 'https://ror.org/032w0sp96 SmarAct (Germany)'),
(76368, 'https://ror.org/05pqsb912', 'no_lang_code', 1, 'https://ror.org/05pqsb912 SoftServe (United States)'),
(76369, 'https://ror.org/00j48ny80', 'no_lang_code', 1, 'https://ror.org/00j48ny80 Focused Photonics (China) 聚光科技'),
(76370, 'https://ror.org/01an1rj90', 'en', 1, 'https://ror.org/01an1rj90 Sumitomo Mitsui Banking Corporation 三井住友銀行'),
(76371, 'https://ror.org/05v2jtd22', 'no_lang_code', 1, 'https://ror.org/05v2jtd22 SuperSonic Imagine (France)'),
(76372, 'https://ror.org/02d83jn68', 'no_lang_code', 1, 'https://ror.org/02d83jn68 Forms Syntron Information (China) 四方精创'),
(76373, 'https://ror.org/01r8h1t86', 'no_lang_code', 1, 'https://ror.org/01r8h1t86 Swabian Instruments (Germany)'),
(76374, 'https://ror.org/0191qaw76', 'no_lang_code', 1, 'https://ror.org/0191qaw76 Swift Solar (United States)'),
(76375, 'https://ror.org/00bc49e61', 'no_lang_code', 1, 'https://ror.org/00bc49e61 GLS Industries (Canada)'),
(76376, 'https://ror.org/02az5k716', 'no_lang_code', 1, 'https://ror.org/02az5k716 Insync Technology (United Kingdom)'),
(76377, 'https://ror.org/05h2r8y34', 'no_lang_code', 1, 'https://ror.org/05h2r8y34 TCG Crest'),
(76378, 'https://ror.org/05r0r4s05', 'no_lang_code', 1, 'https://ror.org/05r0r4s05 Glo (Sweden)'),
(76379, 'https://ror.org/00sqkbc18', 'en', 1, 'https://ror.org/00sqkbc18 International Academy of Astronautics'),
(76380, 'https://ror.org/00276db30', 'no_lang_code', 1, 'https://ror.org/00276db30 TechnoSpex (Singapore)'),
(76381, 'https://ror.org/02te38114', 'no_lang_code', 1, 'https://ror.org/02te38114 Global Communication Semiconductors (United States)'),
(76382, 'https://ror.org/01g89d937', 'no_lang_code', 1, 'https://ror.org/01g89d937 Gloor Instruments (Switzerland)'),
(76383, 'https://ror.org/03djv3266', 'no_lang_code', 1, 'https://ror.org/03djv3266 Tesat-Spacecom (Germany)'),
(76384, 'https://ror.org/02dwgrr09', 'no_lang_code', 1, 'https://ror.org/02dwgrr09 Intermodulation Products (Sweden)'),
(76385, 'https://ror.org/04sna2e19', 'no_lang_code', 1, 'https://ror.org/04sna2e19 Tuya (China) 涂鸦'),
(76386, 'https://ror.org/04khcsm77', 'no_lang_code', 1, 'https://ror.org/04khcsm77 Thurmelec (France)'),
(76387, 'https://ror.org/02mpb3323', 'no_lang_code', 1, 'https://ror.org/02mpb3323 Tianjin Zhujin Technology Development (China) 天津铸金科技开发'),
(76388, 'https://ror.org/02dpxza53', 'no_lang_code', 1, 'https://ror.org/02dpxza53 Hefei Everpower Equipment (China)'),
(76389, 'https://ror.org/04g0m7w09', 'no_lang_code', 1, 'https://ror.org/04g0m7w09 Transpower (New Zealand)'),
(76390, 'https://ror.org/01v15pf03', 'no_lang_code', 1, 'https://ror.org/01v15pf03 Hellenic Telecommunications and Post Commission (Greece) Εθνική Επιτροπή Τηλεπικοινωνιών και Ταχυδρομείων'),
(76391, 'https://ror.org/04v2vj529', 'no_lang_code', 1, 'https://ror.org/04v2vj529 TraskBritt (United States)'),
(76392, 'https://ror.org/0114yxd88', 'no_lang_code', 1, 'https://ror.org/0114yxd88 Shijia Photons (China) 仕佳光子'),
(76393, 'https://ror.org/00qry0z04', 'no_lang_code', 1, 'https://ror.org/00qry0z04 Ionetix (United States)'),
(76394, 'https://ror.org/05wy2w269', 'no_lang_code', 1, 'https://ror.org/05wy2w269 HighFinesse (Germany)'),
(76395, 'https://ror.org/02snjxm78', 'no_lang_code', 1, 'https://ror.org/02snjxm78 Jabil (United States)'),
(76396, 'https://ror.org/00h9s7503', 'no_lang_code', 1, 'https://ror.org/00h9s7503 TrueOne Semiconductor (China) 众元半导体'),
(76397, 'https://ror.org/008d7nr53', 'no_lang_code', 1, 'https://ror.org/008d7nr53 Manaty (France)'),
(76398, 'https://ror.org/059ndnh31', 'no_lang_code', 1, 'https://ror.org/059ndnh31 Turbon (Germany)'),
(76399, 'https://ror.org/050j7g273', 'no_lang_code', 1, 'https://ror.org/050j7g273 Jiangnan Industry Group (China) 江南工业集团'),
(76400, 'https://ror.org/01krwnb02', 'no_lang_code', 1, 'https://ror.org/01krwnb02 VNIR Biotechnologies (India)'),
(76401, 'https://ror.org/022s2hx60', 'no_lang_code', 1, 'https://ror.org/022s2hx60 Kebotix (United States)'),
(76402, 'https://ror.org/00fz72d40', 'no_lang_code', 1, 'https://ror.org/00fz72d40 Visage Technologies (Sweden)'),
(76403, 'https://ror.org/05pre1r47', 'no_lang_code', 1, 'https://ror.org/05pre1r47 Metacept (United States)'),
(76404, 'https://ror.org/01djdkh62', 'no_lang_code', 1, 'https://ror.org/01djdkh62 VitreaLab (Austria)'),
(76405, 'https://ror.org/05d620q19', 'no_lang_code', 1, 'https://ror.org/05d620q19 Wave Up (Italy)'),
(76406, 'https://ror.org/02r5t1b69', 'no_lang_code', 1, 'https://ror.org/02r5t1b69 X-Ability (Japan)'),
(76407, 'https://ror.org/017v23v64', 'no_lang_code', 1, 'https://ror.org/017v23v64 Kisters (Germany)'),
(76408, 'https://ror.org/043nk1744', 'no_lang_code', 1, 'https://ror.org/043nk1744 Kobe Material Testing Laboratory (Japan)'),
(76409, 'https://ror.org/01jwfv926', 'no_lang_code', 1, 'https://ror.org/01jwfv926 Korean Register (South Korea) 한국선급'),
(76410, 'https://ror.org/00d1mzg56', 'no_lang_code', 1, 'https://ror.org/00d1mzg56 Modern Electron (United States)'),
(76411, 'https://ror.org/02p1vs657', 'no_lang_code', 1, 'https://ror.org/02p1vs657 Multiverse Computing (Spain)'),
(76412, 'https://ror.org/00443vb41', 'no_lang_code', 1, 'https://ror.org/00443vb41 NeoPhotonics (United States)'),
(76413, 'https://ror.org/05mm3em25', 'no_lang_code', 1, 'https://ror.org/05mm3em25 Kunshan SW laser Technology (China)'),
(76414, 'https://ror.org/0413rnb52', 'no_lang_code', 1, 'https://ror.org/0413rnb52 Nisshin Scientia (Japan) 日進サイエンティア'),
(76415, 'https://ror.org/01s157z73', 'no_lang_code', 1, 'https://ror.org/01s157z73 Kyivmetroproekt (Ukraine) КИЇВПРОЕКТ'),
(76416, 'https://ror.org/045hcdy93', 'no_lang_code', 1, 'https://ror.org/045hcdy93 Wescam (Canada)'),
(76417, 'https://ror.org/04df39v43', 'en', 1, 'https://ror.org/04df39v43 State Scientific Institution "Institute of Educational Analytics" Державна наукова установа "Інститут освітньої аналітики"'),
(76418, 'https://ror.org/04xhxg104', 'no_lang_code', 1, 'https://ror.org/04xhxg104 Microsoft (Canada)'),
(76419, 'https://ror.org/00nhwjb64', 'no_lang_code', 1, 'https://ror.org/00nhwjb64 Michelin (Japan)'),
(76420, 'https://ror.org/010kw5m31', 'no_lang_code', 1, 'https://ror.org/010kw5m31 OTI Lumionics (Canada)'),
(76421, 'https://ror.org/03xj8ec24', 'no_lang_code', 1, 'https://ror.org/03xj8ec24 Nodes & Links (United Kingdom)'),
(76422, 'https://ror.org/014vmc881', 'no_lang_code', 1, 'https://ror.org/014vmc881 OVO (Indonesia)'),
(76423, 'https://ror.org/03z8hek06', 'en', 1, 'https://ror.org/03z8hek06 Odessa Military Academy Військової Aкадемії'),
(76424, 'https://ror.org/03zryq964', 'no_lang_code', 1, 'https://ror.org/03zryq964 Microsoft (Switzerland)'),
(76425, 'https://ror.org/03p5fy985', 'no_lang_code', 1, 'https://ror.org/03p5fy985 QuantumCTek (China)'),
(76426, 'https://ror.org/0234ye373', 'no_lang_code', 1, 'https://ror.org/0234ye373 Qubitekk (United States)'),
(76427, 'https://ror.org/04xfrsv55', 'no_lang_code', 1, 'https://ror.org/04xfrsv55 QuintessenceLabs (Australia)'),
(76428, 'https://ror.org/034rrk963', 'no_lang_code', 1, 'https://ror.org/034rrk963 Oledcomm (France)'),
(76429, 'https://ror.org/049rkmq69', 'no_lang_code', 1, 'https://ror.org/049rkmq69 Quside Technologies (Spain)'),
(76430, 'https://ror.org/00k389k29', 'no_lang_code', 1, 'https://ror.org/00k389k29 Rahko (United Kingdom)'),
(76431, 'https://ror.org/03yag1532', 'no_lang_code', 1, 'https://ror.org/03yag1532 Raith (Germany)'),
(76432, 'https://ror.org/0317a1b85', 'no_lang_code', 1, 'https://ror.org/0317a1b85 Onto Innovation (United States)'),
(76433, 'https://ror.org/04x4b2j19', 'no_lang_code', 1, 'https://ror.org/04x4b2j19 Optikron (Germany)'),
(76434, 'https://ror.org/058cy9h95', 'no_lang_code', 1, 'https://ror.org/058cy9h95 Origin Quantum Computing Technology Company (China) 国内第一款量子计算机操作系统'),
(76435, 'https://ror.org/04z3q6371', 'no_lang_code', 1, 'https://ror.org/04z3q6371 Scionix (Netherlands)'),
(76436, 'https://ror.org/0275t9a95', 'no_lang_code', 1, 'https://ror.org/0275t9a95 Suss Microoptics (Switzerland) SÜSS MicroOptics'),
(76437, 'https://ror.org/01vbw9k90', 'no_lang_code', 1, 'https://ror.org/01vbw9k90 Orihara Industrial (Japan)'),
(76438, 'https://ror.org/04y9apa89', 'no_lang_code', 1, 'https://ror.org/04y9apa89 Sanmina (United States)'),
(76439, 'https://ror.org/02hrbfc73', 'en', 1, 'https://ror.org/02hrbfc73 The Geneva Association'),
(76440, 'https://ror.org/00m7w6q76', 'no_lang_code', 1, 'https://ror.org/00m7w6q76 Exxelia (France)'),
(76441, 'https://ror.org/02c9ets03', 'no_lang_code', 1, 'https://ror.org/02c9ets03 PiDust Quantum Computing (Greece)'),
(76442, 'https://ror.org/04va9wj50', 'no_lang_code', 1, 'https://ror.org/04va9wj50 Plasmore (Italy)'),
(76443, 'https://ror.org/03xrww068', 'no_lang_code', 1, 'https://ror.org/03xrww068 Poietis (France)'),
(76444, 'https://ror.org/04052zp33', 'no_lang_code', 1, 'https://ror.org/04052zp33 Polygon Physics (France)'),
(76445, 'https://ror.org/00q8gqq97', 'no_lang_code', 1, 'https://ror.org/00q8gqq97 ProteinQure (Canada)'),
(76446, 'https://ror.org/04j4tnp25', 'no_lang_code', 1, 'https://ror.org/04j4tnp25 QGLex (Canada)'),
(76447, 'https://ror.org/046qe5448', 'no_lang_code', 1, 'https://ror.org/046qe5448 MS-Schramberg (Germany)'),
(76448, 'https://ror.org/02c5r0c23', 'no_lang_code', 1, 'https://ror.org/02c5r0c23 Sedecal Medical Imaging (Spain)'),
(76449, 'https://ror.org/0121xav09', 'no_lang_code', 1, 'https://ror.org/0121xav09 Seikow Chemical Engineering and Machinery (Japan) セイコー化工機'),
(76450, 'https://ror.org/04btxnx56', 'no_lang_code', 1, 'https://ror.org/04btxnx56 Sensitron Semiconductor (United States)'),
(76451, 'https://ror.org/01y2qzf06', 'no_lang_code', 1, 'https://ror.org/01y2qzf06 Seven Solutions (Spain)'),
(76452, 'https://ror.org/02mjrxh13', 'no_lang_code', 1, 'https://ror.org/02mjrxh13 Shenzhen Beauty Star (China) 深圳市力合科创股份有限公司'),
(76453, 'https://ror.org/04k4n5964', 'no_lang_code', 1, 'https://ror.org/04k4n5964 Sibatel Communications (United States)'),
(76454, 'https://ror.org/01njdjw78', 'no_lang_code', 1, 'https://ror.org/01njdjw78 QuEra Computing (United States)'),
(76455, 'https://ror.org/03xcp1s96', 'no_lang_code', 1, 'https://ror.org/03xcp1s96 QNu Labs (India)'),
(76456, 'https://ror.org/00k9exb07', 'no_lang_code', 1, 'https://ror.org/00k9exb07 Yashentech (China) 亚申科技'),
(76457, 'https://ror.org/01yjzw780', 'no_lang_code', 1, 'https://ror.org/01yjzw780 Quandela (France)'),
(76458, 'https://ror.org/04v4gyq34', 'no_lang_code', 1, 'https://ror.org/04v4gyq34 Yuyao Joywee Electrics (China) 余姚市骄威电器'),
(76459, 'https://ror.org/00svm1971', 'no_lang_code', 1, 'https://ror.org/00svm1971 Quantlab (United States)'),
(76460, 'https://ror.org/03zmkfy07', 'no_lang_code', 1, 'https://ror.org/03zmkfy07 Quantropi (Canada)'),
(76461, 'https://ror.org/03s4d5r37', 'no_lang_code', 1, 'https://ror.org/03s4d5r37 Zenta Group (Chile)'),
(76462, 'https://ror.org/05ymsje86', 'no_lang_code', 1, 'https://ror.org/05ymsje86 Zeta Economics (United Kingdom)'),
(76463, 'https://ror.org/01tppr291', 'no_lang_code', 1, 'https://ror.org/01tppr291 d-fine (Germany)'),
(76464, 'https://ror.org/00x87ch96', 'no_lang_code', 1, 'https://ror.org/00x87ch96 Ibule Photonics (South Korea)'),
(76465, 'https://ror.org/04v0mdj41', 'en', 1, 'https://ror.org/04v0mdj41 Saveh University of Medical Sciences دانشکده علوم پزشکی ساوه'),
(76466, 'https://ror.org/02mm76478', 'en', 1, 'https://ror.org/02mm76478 Bam University of Medical Sciences دانشگاه علوم پزشکی بم'),
(76467, 'https://ror.org/017ay4a94', 'en', 1, 'https://ror.org/017ay4a94 Sunshine Coast University Hospital'),
(76468, 'https://ror.org/02tmeqq57', 'id', 1, 'https://ror.org/02tmeqq57 Universitas Internasional Semen Indonesia'),
(76469, 'https://ror.org/02hhx7493', 'hu', 1, 'https://ror.org/02hhx7493 Fejér Megyei Szent György Egyetemi Oktató Kórház'),
(76470, 'https://ror.org/03hzyvt65', 'id', 1, 'https://ror.org/03hzyvt65 Universitas Pahlawan Tuanku Tambusai'),
(76471, 'https://ror.org/0016by010', 'id', 1, 'https://ror.org/0016by010 Universitas Teknokrat Indonesia'),
(76472, 'https://ror.org/031aa5q21', 'en', 1, 'https://ror.org/031aa5q21 Kabardino-Balkarian Scientific Center КАБАРДИНО-БАЛКАРСКИЙ НАУЧНЫЙ ЦЕНТР РОССИЙСКОЙ АКАДЕМИИ НАУК'),
(76473, 'https://ror.org/01nztb982', 'en', 1, 'https://ror.org/01nztb982 Abdul Latif Jameel Poverty Action Lab'),
(76474, 'https://ror.org/04rynnm03', 'en', 1, 'https://ror.org/04rynnm03 American Finance Association'),
(76475, 'https://ror.org/026h4ma68', 'en', 1, 'https://ror.org/026h4ma68 Atlanta University Center Robert W. Woodruff Library'),
(76476, 'https://ror.org/04h59ty19', 'en', 1, 'https://ror.org/04h59ty19 Catholic Legal Immigration Network'),
(76477, 'https://ror.org/038fxc267', 'en', 1, 'https://ror.org/038fxc267 Department of International Relations and Cooperation'),
(76478, 'https://ror.org/05c2w3k86', 'en', 1, 'https://ror.org/05c2w3k86 Carolina Small Business Development Fund'),
(76479, 'https://ror.org/0340vv450', 'no_lang_code', 1, 'https://ror.org/0340vv450 Pregistry (United States)'),
(76480, 'https://ror.org/029gmnc79', 'en', 1, 'https://ror.org/029gmnc79 Human Technopole'),
(76481, 'https://ror.org/05p82s544', 'en', 1, 'https://ror.org/05p82s544 Cemmap'),
(76482, 'https://ror.org/0550rfz49', 'no_lang_code', 1, 'https://ror.org/0550rfz49 Cytologics (United States)'),
(76483, 'https://ror.org/05r36sv91', 'es', 1, 'https://ror.org/05r36sv91 Weber'),
(76484, 'https://ror.org/00gbn4v29', 'en', 1, 'https://ror.org/00gbn4v29 Global Alliance for Incinerator Alternatives'),
(76485, 'https://ror.org/04va4hg79', 'en', 1, 'https://ror.org/04va4hg79 Australian Institue of Men''s Health and Studies'),
(76486, 'https://ror.org/005e86b23', 'de', 1, 'https://ror.org/005e86b23 Economica'),
(76487, 'https://ror.org/051mv2k59', 'en', 1, 'https://ror.org/051mv2k59 Kursk Federal Agrarian Scientific Center Федеральное Государственное Бюджетное Научное Учреждение'),
(76488, 'https://ror.org/018fa8m68', 'en', 1, 'https://ror.org/018fa8m68 Forest Ecosystem Monitoring Cooperative'),
(76489, 'https://ror.org/0211zwq30', 'en', 1, 'https://ror.org/0211zwq30 Eurasia Institutes'),
(76490, 'https://ror.org/05e34z294', 'en', 1, 'https://ror.org/05e34z294 CTOR Press'),
(76491, 'https://ror.org/04sy0n440', 'en', 1, 'https://ror.org/04sy0n440 Dangerous Speech Project');
INSERT INTO `rors` VALUES
(76492, 'https://ror.org/00skc8b63', 'en', 1, 'https://ror.org/00skc8b63 Ministry of Public Works Transportation and Communications Ministère des Travaux Publics Transports et Communications'),
(76493, 'https://ror.org/00m235s66', 'en', 1, 'https://ror.org/00m235s66 Solar Heating and Cooling Programme'),
(76494, 'https://ror.org/023aw9j89', 'en', 1, 'https://ror.org/023aw9j89 Agency for Quality Assurance and Accreditation Austria Agentur für Qualitätssicherung und Akkreditierung Austria'),
(76495, 'https://ror.org/04bcypt21', 'en', 1, 'https://ror.org/04bcypt21 Ministry of Agriculture Natural Resources and Rural Development Ministè l''Agrikilti Resous Natirèl ak Devlopman Riral Ministère de l''Agriculture des Ressources Naturelles et du Développement Rural'),
(76496, 'https://ror.org/0182t0e82', 'en', 1, 'https://ror.org/0182t0e82 InterAmerican Network of Academies of Sciences'),
(76497, 'https://ror.org/05sd90862', 'en', 1, 'https://ror.org/05sd90862 Centre for Evaluation in Education and Science'),
(76498, 'https://ror.org/0438mhy97', 'en', 1, 'https://ror.org/0438mhy97 Egyptian Initiative for Personal Rights المبادرة المصرية للحقوق الشخصية'),
(76499, 'https://ror.org/035vk6k04', 'en', 1, 'https://ror.org/035vk6k04 International Centre for Trade and Sustainable Development'),
(76500, 'https://ror.org/01a242a35', 'en', 1, 'https://ror.org/01a242a35 Government Logistics Department 政府物流服務署'),
(76501, 'https://ror.org/00fefjp46', 'en', 1, 'https://ror.org/00fefjp46 Pertubuhan Pertolongan Wanita Women''s Aid Organisation'),
(76502, 'https://ror.org/03vay2m05', 'en', 1, 'https://ror.org/03vay2m05 Ioannis A. Lougaris Veterans Affairs Medical Center'),
(76503, 'https://ror.org/00fr8m236', 'en', 1, 'https://ror.org/00fr8m236 Canadian Media Concentration Research Project'),
(76504, 'https://ror.org/053s03b36', 'en', 1, 'https://ror.org/053s03b36 Laudes Foundation'),
(76505, 'https://ror.org/03hvanq85', 'en', 1, 'https://ror.org/03hvanq85 Fresno VA Medical Center'),
(76506, 'https://ror.org/05v9a1255', 'no_lang_code', 1, 'https://ror.org/05v9a1255 SyncScience (United States)'),
(76507, 'https://ror.org/02696ac72', 'en', 1, 'https://ror.org/02696ac72 Center for Indonesian Policy Studies'),
(76508, 'https://ror.org/01rkxdk30', 'en', 1, 'https://ror.org/01rkxdk30 VA Finger Lakes Healthcare System'),
(76509, 'https://ror.org/018hfs607', 'pt', 1, 'https://ror.org/018hfs607 Sobest – Associacao Brasileira de Estomaterapia'),
(76510, 'https://ror.org/0246m8g89', 'en', 1, 'https://ror.org/0246m8g89 James H. Quillen VA Medical Center'),
(76511, 'https://ror.org/01nmm5m33', 'en', 1, 'https://ror.org/01nmm5m33 Garland VA Medical Center'),
(76512, 'https://ror.org/04npcdn05', 'en', 1, 'https://ror.org/04npcdn05 Centre for Ageing Better'),
(76513, 'https://ror.org/02s723j51', 'en', 1, 'https://ror.org/02s723j51 Sam Rayburn Memorial Veterans Center'),
(76514, 'https://ror.org/028rr8292', 'en', 1, 'https://ror.org/028rr8292 Alvin C. York VA Medical Center'),
(76515, 'https://ror.org/027yknb66', 'en', 1, 'https://ror.org/027yknb66 Loch Raven VA Medical Center'),
(76516, 'https://ror.org/00cmyqz09', 'en', 1, 'https://ror.org/00cmyqz09 Civicus'),
(76517, 'https://ror.org/03edh3t65', 'en', 1, 'https://ror.org/03edh3t65 İLKE Science, Culture and Education Foundation İLKE İlim Kültür Eğitim Vakfı'),
(76518, 'https://ror.org/01z2gz488', 'en', 1, 'https://ror.org/01z2gz488 Tibor Rubin VA Medical Center'),
(76519, 'https://ror.org/032yzjf46', 'no_lang_code', 1, 'https://ror.org/032yzjf46 Isomer Design (Canada)'),
(76520, 'https://ror.org/03n3q9f18', 'en', 1, 'https://ror.org/03n3q9f18 Centre of Excellence for Development Impact and Learning'),
(76521, 'https://ror.org/03dgk3y06', 'es', 1, 'https://ror.org/03dgk3y06 Centro de Investigación y Proyectos en Ambiente y Desarrollo'),
(76522, 'https://ror.org/04e96g855', 'es', 1, 'https://ror.org/04e96g855 Consello da Cultura Galega'),
(76523, 'https://ror.org/00x2kwy36', 'en', 1, 'https://ror.org/00x2kwy36 Coordinating Research Council'),
(76524, 'https://ror.org/03sn0j818', 'en', 1, 'https://ror.org/03sn0j818 DeGEval - Gesellschaft für Evaluation DeGEval – Evaluation Society'),
(76525, 'https://ror.org/01ff0t864', 'es', 1, 'https://ror.org/01ff0t864 Instituto Nacional de Investigación en Glaciares y Ecosistemas de Montaña'),
(76526, 'https://ror.org/0125q6d71', 'en', 1, 'https://ror.org/0125q6d71 Consortium for Policy Research in Education'),
(76527, 'https://ror.org/05tqpj460', 'en', 1, 'https://ror.org/05tqpj460 Austrian Institute for SME Research KMU Forschung Austria'),
(76528, 'https://ror.org/055vvvt78', 'en', 1, 'https://ror.org/055vvvt78 Crop Protection Network'),
(76529, 'https://ror.org/03gjtzx24', 'en', 1, 'https://ror.org/03gjtzx24 Canadian Institute for Public Safety Research and Treatment Institut Canadien de Recherche et de Traitement en Sécurité Publique'),
(76530, 'https://ror.org/027y0fw80', 'en', 1, 'https://ror.org/027y0fw80 Institute for Poverty, Land and Agrarian Studies'),
(76531, 'https://ror.org/04xpv0391', 'en', 1, 'https://ror.org/04xpv0391 Lebanon Support'),
(76532, 'https://ror.org/00ew3z127', 'en', 1, 'https://ror.org/00ew3z127 IEDP Developing Leaders'),
(76533, 'https://ror.org/049zx9d10', 'en', 1, 'https://ror.org/049zx9d10 The Institute of Europe of the Russian Academy of Sciences ФЕДЕРАЛЬНОЕ ГОСУДАРСТВЕННОЕ УЧРЕЖДЕНИЕ НАУКИ ИНСТИТУТ ЕВРОПЫ РОССИЙСКОЙ АКАДЕМИИ НАУК'),
(76534, 'https://ror.org/00kg7b273', 'en', 1, 'https://ror.org/00kg7b273 Institute of Feed and Agriculture of Podillya of the National Academy of Agrarian Sciences Інститут кормів та сільського господарства Поділля Національної академії аграрних наук України'),
(76535, 'https://ror.org/01fzmz530', 'pt', 1, 'https://ror.org/01fzmz530 Observatório da Emigração'),
(76536, 'https://ror.org/00rmqcb06', 'en', 1, 'https://ror.org/00rmqcb06 Meteoceanics Institute for Complex System Science'),
(76537, 'https://ror.org/00r36fk75', 'en', 1, 'https://ror.org/00r36fk75 Ontario Drug Policy Research Network'),
(76538, 'https://ror.org/02jch6d72', 'en', 1, 'https://ror.org/02jch6d72 Munich Security Conference Münchner Sicherheitskonferenz'),
(76539, 'https://ror.org/04vjc0t41', 'pt', 1, 'https://ror.org/04vjc0t41 Mecila'),
(76540, 'https://ror.org/020beq690', 'es', 1, 'https://ror.org/020beq690 Observatorio de la Inmigración de Tenerife'),
(76541, 'https://ror.org/025fr4535', 'en', 1, 'https://ror.org/025fr4535 Netherlands Graduate Research School of Science, Technology and Modern Culture'),
(76542, 'https://ror.org/034tp1f71', 'no_lang_code', 1, 'https://ror.org/034tp1f71 Medizinisch Wissenschaftliche Verlagsgesellschaft (Germany)'),
(76543, 'https://ror.org/04x24rt73', 'en', 1, 'https://ror.org/04x24rt73 National Association of Psychiatric Intensive Care and Low Secure Unit'),
(76544, 'https://ror.org/00z8brm94', 'en', 1, 'https://ror.org/00z8brm94 Austrian Mathematical Society Österreichische Mathematische Gesellschaft'),
(76545, 'https://ror.org/01ge8wp14', 'en', 1, 'https://ror.org/01ge8wp14 Climate Modelling Laboratory'),
(76546, 'https://ror.org/04qmxm960', 'en', 1, 'https://ror.org/04qmxm960 Innovative Scientific Information & Services Network'),
(76547, 'https://ror.org/030dw3650', 'en', 1, 'https://ror.org/030dw3650 Committee on Publication Ethics'),
(76548, 'https://ror.org/01jtr9n55', 'de', 1, 'https://ror.org/01jtr9n55 Österreichisches Institut für Berufsbildungsforschung'),
(76549, 'https://ror.org/02nen7n37', 'no_lang_code', 1, 'https://ror.org/02nen7n37 River Publishers (Denmark)'),
(76550, 'https://ror.org/040r4cv22', 'en', 1, 'https://ror.org/040r4cv22 Program Systems Institute of RAS Институт программных систем Российской академии наук'),
(76551, 'https://ror.org/01pd36p58', 'en', 1, 'https://ror.org/01pd36p58 Russian Research Institute for Integrated Water Management and Protection'),
(76552, 'https://ror.org/05cdzx277', 'en', 1, 'https://ror.org/05cdzx277 State Scientific Institution "Institute of Education Content Modernization" Інститут модернізації змісту освіти'),
(76553, 'https://ror.org/03ghfnt05', 'en', 1, 'https://ror.org/03ghfnt05 Mykolaiv Observatory Миколаївська астрономічна обсерваторія Николаевская астрономическая обсерватория'),
(76554, 'https://ror.org/058ccs847', 'es', 1, 'https://ror.org/058ccs847 Observatorio Nacional de las Telecomunicaciones y de la Sociedad de la Información'),
(76555, 'https://ror.org/04yjefs69', 'en', 1, 'https://ror.org/04yjefs69 Science Table'),
(76556, 'https://ror.org/03ma5nz93', 'en', 1, 'https://ror.org/03ma5nz93 Institiúid Ríoga Ailtirí na hÉireann Royal Institute of the Architects of Ireland'),
(76557, 'https://ror.org/01vgedw83', 'en', 1, 'https://ror.org/01vgedw83 Russian Dialysis Society Российское диализное общество'),
(76558, 'https://ror.org/01dbyc951', 'en', 1, 'https://ror.org/01dbyc951 Centre for Bhutan Studies and GNH Research དཔལ་འབྲུག་ཞིབ་འཇུག་ལྟེ་བ་'),
(76559, 'https://ror.org/00fj5zw34', 'en', 1, 'https://ror.org/00fj5zw34 Hong Kong Institute of Steel Construction'),
(76560, 'https://ror.org/05dcd6k34', 'en', 1, 'https://ror.org/05dcd6k34 Population Council Institute'),
(76561, 'https://ror.org/05smy5d35', 'en', 1, 'https://ror.org/05smy5d35 The Society for Academic Primary Care'),
(76562, 'https://ror.org/042qgw219', 'en', 1, 'https://ror.org/042qgw219 International Innovative University Международный инновационный университет'),
(76563, 'https://ror.org/02t7bvx21', 'en', 1, 'https://ror.org/02t7bvx21 UNESCO Institute for Statistics'),
(76564, 'https://ror.org/043zsg715', 'pt', 1, 'https://ror.org/043zsg715 Sociedade Portuguesa de Ciências da Educação'),
(76565, 'https://ror.org/01m6zz897', 'en', 1, 'https://ror.org/01m6zz897 Russian Society of Sociologists Российское общество социологов'),
(76566, 'https://ror.org/03z4zf393', 'en', 1, 'https://ror.org/03z4zf393 United Nations Institute for Disarmament Research'),
(76567, 'https://ror.org/01tj1t569', 'en', 1, 'https://ror.org/01tj1t569 Center for the National Interest'),
(76568, 'https://ror.org/04sj7e106', 'en', 1, 'https://ror.org/04sj7e106 Tiny Beam Fund'),
(76569, 'https://ror.org/038xacd85', 'en', 1, 'https://ror.org/038xacd85 TMG Research'),
(76570, 'https://ror.org/03xs42a74', 'en', 1, 'https://ror.org/03xs42a74 UNICEF East Asia and Pacific Regional Office องค์การยูนิเซฟ ประเทศไทย'),
(76571, 'https://ror.org/04ars5103', 'en', 1, 'https://ror.org/04ars5103 The White House'),
(76572, 'https://ror.org/023g38a24', 'no_lang_code', 1, 'https://ror.org/023g38a24 Universal Printing House "Alpha Print" (Russia) Универсальная Типография «Альфа Принт»'),
(76573, 'https://ror.org/03z3xg179', 'en', 1, 'https://ror.org/03z3xg179 International Academy of Agrarian Education МЕЖДУНАРОДНАЯ АКАДЕМИЯ АГРАРНОГО ОБРАЗОВАНИЯ 國際農業教育學院'),
(76574, 'https://ror.org/01rwqqv19', 'en', 1, 'https://ror.org/01rwqqv19 Melnikov Permafrost Institute of the Siberian Branch of the Russian Academy of Science Институт мерзлотоведения имени П. И. Мельникова СО РАН'),
(76575, 'https://ror.org/02fnkyh09', 'en', 1, 'https://ror.org/02fnkyh09 Central Scientific Library of the Far Eastern Branch of the Russian Academy of Sciences Федеральное государственное бюджетное учреждение научного обслуживания Центральная научная библиотека Дальневосточного отделения Российской академии наук'),
(76576, 'https://ror.org/05fjt7505', 'en', 1, 'https://ror.org/05fjt7505 Youth Research and Evaluation eXchange'),
(76577, 'https://ror.org/05f51je39', 'en', 1, 'https://ror.org/05f51je39 National Geological Archives of China 全国地质资料馆'),
(76578, 'https://ror.org/03aesme15', 'en', 1, 'https://ror.org/03aesme15 Udmurt Federal Research Center, Ural Branch of the Russian Academy of Sciences Удмуртский Федеральный Исследовательский Центр'),
(76579, 'https://ror.org/010p19169', 'en', 1, 'https://ror.org/010p19169 Korea Culture & Tourism Institute 한국문화관광연구원'),
(76580, 'https://ror.org/05baghp60', 'en', 1, 'https://ror.org/05baghp60 CPM Academy of Business Академия бизнеса'),
(76581, 'https://ror.org/04x0wrh81', 'no_lang_code', 1, 'https://ror.org/04x0wrh81 Abound Bio (United States)'),
(76582, 'https://ror.org/05r2q5n94', 'no_lang_code', 1, 'https://ror.org/05r2q5n94 Flagship Pioneering (United States)'),
(76583, 'https://ror.org/04s6red60', 'en', 1, 'https://ror.org/04s6red60 Centre for Advanced Process Technology for Urban Resource Recovery'),
(76584, 'https://ror.org/048b3qc73', 'en', 1, 'https://ror.org/048b3qc73 BioInnovation Institute'),
(76585, 'https://ror.org/00mtmnw70', 'no_lang_code', 1, 'https://ror.org/00mtmnw70 Biosyntia (Denmark)'),
(76586, 'https://ror.org/03s2cx187', 'en', 1, 'https://ror.org/03s2cx187 Blue Resources Trust'),
(76587, 'https://ror.org/026gg3023', 'en', 1, 'https://ror.org/026gg3023 Bruce Museum'),
(76588, 'https://ror.org/05wry3r65', 'no_lang_code', 1, 'https://ror.org/05wry3r65 Analytical Biosciences (China)'),
(76589, 'https://ror.org/01jeedh73', 'en', 1, 'https://ror.org/01jeedh73 Hefei National Center for Physical Sciences at Nanoscale 合肥微尺度物质科学国家实验室'),
(76590, 'https://ror.org/020853v42', 'no_lang_code', 1, 'https://ror.org/020853v42 Bureau Waardenburg (Netherlands)'),
(76591, 'https://ror.org/0409egh51', 'en', 1, 'https://ror.org/0409egh51 Centre for High Performance Computing'),
(76592, 'https://ror.org/01p09d785', 'en', 1, 'https://ror.org/01p09d785 Arnold Regge Center'),
(76593, 'https://ror.org/04sx39q13', 'en', 1, 'https://ror.org/04sx39q13 Centre for Palaeogenetics'),
(76594, 'https://ror.org/02yr08r26', 'en', 1, 'https://ror.org/02yr08r26 Climate Analytics'),
(76595, 'https://ror.org/05batzg24', 'en', 1, 'https://ror.org/05batzg24 Doaba College'),
(76596, 'https://ror.org/03asbm106', 'en', 1, 'https://ror.org/03asbm106 International Nemrud Foundation'),
(76597, 'https://ror.org/01f5p8b07', 'en', 1, 'https://ror.org/01f5p8b07 Institute of Ionosphere'),
(76598, 'https://ror.org/029819q61', 'en', 1, 'https://ror.org/029819q61 Chinese Institute for Brain Research 北京脑科学与类脑研究中心'),
(76599, 'https://ror.org/0373ev724', 'en', 1, 'https://ror.org/0373ev724 Chinese National Engineering Research Center for Control and Treatment of Heavy Metal Pollution'),
(76600, 'https://ror.org/033sm5e75', 'no_lang_code', 1, 'https://ror.org/033sm5e75 Chongqing 2D Materials Institute (China)'),
(76601, 'https://ror.org/00vx54857', 'en', 1, 'https://ror.org/00vx54857 Ezhou Central Hospital 鄂州市中心医院'),
(76602, 'https://ror.org/053a6xa29', 'no_lang_code', 1, 'https://ror.org/053a6xa29 Genomics (United Kingdom)'),
(76603, 'https://ror.org/01bm7kk08', 'de', 1, 'https://ror.org/01bm7kk08 Bundesdeutsche Arbeitsgemeinschaft für Veränderliche Sterne'),
(76604, 'https://ror.org/02afm7029', 'en', 1, 'https://ror.org/02afm7029 Cancer Research Institute Ghent'),
(76605, 'https://ror.org/01w32vs69', 'no_lang_code', 1, 'https://ror.org/01w32vs69 10X Genomics (Sweden)'),
(76606, 'https://ror.org/00mcmgh21', 'no_lang_code', 1, 'https://ror.org/00mcmgh21 Gene and GreenTK (France)'),
(76607, 'https://ror.org/00mc8r278', 'no_lang_code', 1, 'https://ror.org/00mc8r278 Lee & Man Chemical Company (China) 理文化工有限公司'),
(76608, 'https://ror.org/038x91r09', 'en', 1, 'https://ror.org/038x91r09 Glycodisplay'),
(76609, 'https://ror.org/059gb5g72', 'en', 1, 'https://ror.org/059gb5g72 Chilean Air Force Fuerza Aérea de Chile'),
(76610, 'https://ror.org/05evdvv47', 'es', 1, 'https://ror.org/05evdvv47 Centro de Investigaciones Cientifícas de las Huastecas ''Aguazarca'''),
(76611, 'https://ror.org/05s5xvk70', 'en', 1, 'https://ror.org/05s5xvk70 Einstein Center for Neurosciences Berlin'),
(76612, 'https://ror.org/03efc2j36', 'no_lang_code', 1, 'https://ror.org/03efc2j36 Gran Telescopio Canarias (Spain)'),
(76613, 'https://ror.org/02e2kms34', 'no_lang_code', 1, 'https://ror.org/02e2kms34 Harbour BioMed (Netherlands)'),
(76614, 'https://ror.org/05ff3vp46', 'no_lang_code', 1, 'https://ror.org/05ff3vp46 Forschungs- und Entwicklungszentrum Fachhochschule Kiel (Germany)'),
(76615, 'https://ror.org/02met5w95', 'de', 1, 'https://ror.org/02met5w95 Praxis für Humangenetik Tübingen'),
(76616, 'https://ror.org/04m8gxe14', 'en', 1, 'https://ror.org/04m8gxe14 Institute of Advanced Research in Artificial Intelligence'),
(76617, 'https://ror.org/056jgxp12', 'no_lang_code', 1, 'https://ror.org/056jgxp12 Helix (United States)'),
(76618, 'https://ror.org/048jgf895', 'no_lang_code', 1, 'https://ror.org/048jgf895 von Hoerner & Sulger (Germany)'),
(76619, 'https://ror.org/02cypar22', 'en', 1, 'https://ror.org/02cypar22 Hopp Children''s Cancer Center Heidelberg'),
(76620, 'https://ror.org/055zn5p92', 'es', 1, 'https://ror.org/055zn5p92 Parc Sanitari Pere Virgili Parque Sanitario Pere Virgili'),
(76621, 'https://ror.org/040qscd03', 'no_lang_code', 1, 'https://ror.org/040qscd03 Lemonex (South Korea) 레모넥스'),
(76622, 'https://ror.org/05jxgts87', 'en', 1, 'https://ror.org/05jxgts87 Tan Kah Kee Innovation Laboratory 嘉庚创新实验室'),
(76623, 'https://ror.org/01xze8742', 'en', 1, 'https://ror.org/01xze8742 Toscana Life Sciences'),
(76624, 'https://ror.org/04q4ydz28', 'en', 1, 'https://ror.org/04q4ydz28 VIB-UGent Center for Inflammation Research'),
(76625, 'https://ror.org/04pc38187', 'no_lang_code', 1, 'https://ror.org/04pc38187 Motac Neuroscience (United Kingdom)'),
(76626, 'https://ror.org/00xzdzk88', 'no_lang_code', 1, 'https://ror.org/00xzdzk88 Nanostring Technologies (United States)'),
(76627, 'https://ror.org/01z2px678', 'en', 1, 'https://ror.org/01z2px678 International Centre for Theoretical Physics Asia-Pacific 国际理论物理中心-亚太地区'),
(76628, 'https://ror.org/00vh00724', 'en', 1, 'https://ror.org/00vh00724 International Institute for Molecular Oncology'),
(76629, 'https://ror.org/03gcgxa17', 'en', 1, 'https://ror.org/03gcgxa17 Interuniversity Cooperation Centre Water & Health Interuniversitäre Kooperationszentrum Wasser und Gesundheit'),
(76630, 'https://ror.org/02ft1jb97', 'no_lang_code', 1, 'https://ror.org/02ft1jb97 IonQ (United States)'),
(76631, 'https://ror.org/041rx6y13', 'no_lang_code', 1, 'https://ror.org/041rx6y13 Autarcon (Germany)'),
(76632, 'https://ror.org/05pvfh620', 'en', 1, 'https://ror.org/05pvfh620 Iwokrama International Centre for Rainforest Conservation and Development'),
(76633, 'https://ror.org/002kdx757', 'no_lang_code', 1, 'https://ror.org/002kdx757 4C Air (United States)'),
(76634, 'https://ror.org/0284m2r73', 'en', 1, 'https://ror.org/0284m2r73 Ngogo Chimpanzee Project'),
(76635, 'https://ror.org/055zxs822', 'no_lang_code', 1, 'https://ror.org/055zxs822 Nference (United States)'),
(76636, 'https://ror.org/054rvnp37', 'en', 1, 'https://ror.org/054rvnp37 Millenium Nucleus for Planet Formation Núcleo Milenio de Formación Planetaria'),
(76637, 'https://ror.org/01m2pas06', 'en', 1, 'https://ror.org/01m2pas06 NTT Basic Research Laboratories NTT 物性科学基礎研究所'),
(76638, 'https://ror.org/03g11f026', 'en', 1, 'https://ror.org/03g11f026 Milli Nüvə Tədqiqatları Mərkəzi National Nuclear Research Center Национальный центр ядерных исследований'),
(76639, 'https://ror.org/000bp7q73', 'en', 1, 'https://ror.org/000bp7q73 Open Targets'),
(76640, 'https://ror.org/017g85521', 'en', 1, 'https://ror.org/017g85521 Medawar Building for Pathogen Research'),
(76641, 'https://ror.org/00yvwb080', 'en', 1, 'https://ror.org/00yvwb080 Tropenbos International'),
(76642, 'https://ror.org/023dm3d04', 'en', 1, 'https://ror.org/023dm3d04 Simons Center for Geometry and Physics'),
(76643, 'https://ror.org/0484n7582', 'en', 1, 'https://ror.org/0484n7582 Pittsburgh Quantum Institute'),
(76644, 'https://ror.org/02730kb35', 'en', 1, 'https://ror.org/02730kb35 Uro Care Hospital'),
(76645, 'https://ror.org/00wbzaf78', 'es', 1, 'https://ror.org/00wbzaf78 Con Vida Foundation Fundación Con Vida'),
(76646, 'https://ror.org/020vtf184', 'en', 1, 'https://ror.org/020vtf184 Songshan Lake Materials Laboratory 松山湖材料实验室'),
(76647, 'https://ror.org/057k8nt63', 'fr', 1, 'https://ror.org/057k8nt63 Centre Culturel du Vanuatu Vanuatu Cultural Centre Vanuatu Kaljoral Senta'),
(76648, 'https://ror.org/01m9z6e22', 'no_lang_code', 1, 'https://ror.org/01m9z6e22 Aarhus GeoSoftware (Denmark)'),
(76649, 'https://ror.org/015yt8m86', 'en', 1, 'https://ror.org/015yt8m86 Academy of Sciences of the Republic of Sakha Академия наук Республики Саха'),
(76650, 'https://ror.org/051pfzb30', 'no_lang_code', 1, 'https://ror.org/051pfzb30 Acellera (Spain)'),
(76651, 'https://ror.org/0551a0y31', 'en', 1, 'https://ror.org/0551a0y31 Shanghai Center for Brain Science and Brain-Inspired Technology 上海脑科学与类脑研究中心'),
(76652, 'https://ror.org/00q1zbc26', 'no_lang_code', 1, 'https://ror.org/00q1zbc26 Aclaris Therapeutics (United States)'),
(76653, 'https://ror.org/03v9cqb05', 'en', 1, 'https://ror.org/03v9cqb05 Wellcome Connecting Science'),
(76654, 'https://ror.org/04eaec870', 'no_lang_code', 1, 'https://ror.org/04eaec870 Acuitas Therapeutics (Canada)'),
(76655, 'https://ror.org/02sr8bk02', 'no_lang_code', 1, 'https://ror.org/02sr8bk02 Aivok (Russia)'),
(76656, 'https://ror.org/03kwyfa97', 'de', 1, 'https://ror.org/03kwyfa97 Centro Suisse du Cancer Swiss Cancer Center Léman'),
(76657, 'https://ror.org/045c7t348', 'en', 1, 'https://ror.org/045c7t348 VIB-KU Leuven Center for Brain & Disease Research'),
(76658, 'https://ror.org/04932ms34', 'no_lang_code', 1, 'https://ror.org/04932ms34 Taproot Health (United States)'),
(76659, 'https://ror.org/05bwp9c82', 'en', 1, 'https://ror.org/05bwp9c82 South Dakota Science and Technology Authority'),
(76660, 'https://ror.org/01xwwg551', 'en', 1, 'https://ror.org/01xwwg551 Altlabs'),
(76661, 'https://ror.org/04w74e817', 'no_lang_code', 1, 'https://ror.org/04w74e817 Alto Neuroscience (United States)'),
(76662, 'https://ror.org/00je08e11', 'en', 1, 'https://ror.org/00je08e11 American Community Schools'),
(76663, 'https://ror.org/02f7f9m65', 'no_lang_code', 1, 'https://ror.org/02f7f9m65 Verve Therapeutics (United States)'),
(76664, 'https://ror.org/01g0n8690', 'en', 1, 'https://ror.org/01g0n8690 Amsterdam Institute for Advanced Metropolitan Solutions'),
(76665, 'https://ror.org/014r5ah89', 'no_lang_code', 1, 'https://ror.org/014r5ah89 ZOE (United Kingdom)'),
(76666, 'https://ror.org/0164jks53', 'no_lang_code', 1, 'https://ror.org/0164jks53 Anaconda (United States)'),
(76667, 'https://ror.org/02e1hxd58', 'no_lang_code', 1, 'https://ror.org/02e1hxd58 Aquinnah (United States)'),
(76668, 'https://ror.org/032f13a22', 'en', 1, 'https://ror.org/032f13a22 Busara Center for Behavioral Economics'),
(76669, 'https://ror.org/02akdcs48', 'en', 1, 'https://ror.org/02akdcs48 Association for the Development of Earthquake Prediction 地震予知総合研究振興会'),
(76670, 'https://ror.org/05pdc0q70', 'no_lang_code', 1, 'https://ror.org/05pdc0q70 Cajal Neuroscience (United States)'),
(76671, 'https://ror.org/01qnqmc89', 'en', 1, 'https://ror.org/01qnqmc89 VIB-UGent Center for Plant Systems Biology'),
(76672, 'https://ror.org/005ha3085', 'no_lang_code', 1, 'https://ror.org/005ha3085 Atrad (Australia)'),
(76673, 'https://ror.org/00vrhtt42', 'no_lang_code', 1, 'https://ror.org/00vrhtt42 Wessling (Hungary)'),
(76674, 'https://ror.org/03bekaf83', 'de', 1, 'https://ror.org/03bekaf83 Kardiologie Frankfurt-Sachsenhausen'),
(76675, 'https://ror.org/04431t173', 'en', 1, 'https://ror.org/04431t173 Bay Area Air Quality Management District'),
(76676, 'https://ror.org/01p55fp87', 'no_lang_code', 1, 'https://ror.org/01p55fp87 B-Ware (Netherlands)'),
(76677, 'https://ror.org/05f325a59', 'no_lang_code', 1, 'https://ror.org/05f325a59 Water-link (Belgium)'),
(76678, 'https://ror.org/054p2te31', 'no_lang_code', 1, 'https://ror.org/054p2te31 BDO Unicon (Russia)'),
(76679, 'https://ror.org/03797rt64', 'en', 1, 'https://ror.org/03797rt64 Wham Lab'),
(76680, 'https://ror.org/016a74861', 'en', 1, 'https://ror.org/016a74861 Beijing Academy of Artificial Intelligence 北京智源人工智能研究院'),
(76681, 'https://ror.org/05rbz8029', 'no_lang_code', 1, 'https://ror.org/05rbz8029 Dian Diagnostics (China) 迪安诊断'),
(76682, 'https://ror.org/03ey0nh96', 'no_lang_code', 1, 'https://ror.org/03ey0nh96 Berry Oncology (China) 和瑞基因'),
(76683, 'https://ror.org/053rz5s61', 'no_lang_code', 1, 'https://ror.org/053rz5s61 Bexon Clinical Consulting (United States)'),
(76684, 'https://ror.org/01qpg9817', 'en', 1, 'https://ror.org/01qpg9817 Beyond Conflict'),
(76685, 'https://ror.org/0051xhq65', 'en', 1, 'https://ror.org/0051xhq65 Chinese Academy of Science South America Center for Astronomy 中国科学院南美天文中心'),
(76686, 'https://ror.org/050nsn531', 'no_lang_code', 1, 'https://ror.org/050nsn531 Bio-Rad (Germany)'),
(76687, 'https://ror.org/02t8ts543', 'no_lang_code', 1, 'https://ror.org/02t8ts543 Celescreen (France)'),
(76688, 'https://ror.org/02smvjf25', 'no_lang_code', 1, 'https://ror.org/02smvjf25 1Cellbio (United States)'),
(76689, 'https://ror.org/04ynd9171', 'no_lang_code', 1, 'https://ror.org/04ynd9171 Celsius Therapeutics (United States)'),
(76690, 'https://ror.org/03dr7j353', 'no_lang_code', 1, 'https://ror.org/03dr7j353 Biognosys (Switzerland)'),
(76691, 'https://ror.org/00xjcve44', 'en', 1, 'https://ror.org/00xjcve44 Center for Personalized Cancer Treatment'),
(76692, 'https://ror.org/03nrzqb76', 'en', 1, 'https://ror.org/03nrzqb76 Center of Hubei Cooperative Innovation for Emissions Trading System 碳排放权交易湖北省协同创新中心'),
(76693, 'https://ror.org/03ccx3r49', 'no_lang_code', 1, 'https://ror.org/03ccx3r49 Centogene (Germany)'),
(76694, 'https://ror.org/03b72t095', 'no_lang_code', 1, 'https://ror.org/03b72t095 Bluefin Biomedicine (United States)'),
(76695, 'https://ror.org/025sv2d63', 'en', 1, 'https://ror.org/025sv2d63 Meteorological Service Singapore'),
(76696, 'https://ror.org/04sq63624', 'en', 1, 'https://ror.org/04sq63624 Born Free Foundation'),
(76697, 'https://ror.org/02qr7kk14', 'no_lang_code', 1, 'https://ror.org/02qr7kk14 AB Vista (Germany)'),
(76698, 'https://ror.org/01r5ayw14', 'en', 1, 'https://ror.org/01r5ayw14 Chelonia Applied Science'),
(76699, 'https://ror.org/01g53qc72', 'no_lang_code', 1, 'https://ror.org/01g53qc72 Yangtze River Delta Physics Research Center (China) 长三角物理研究中心'),
(76700, 'https://ror.org/02bpp8r91', 'en', 1, 'https://ror.org/02bpp8r91 VIB-KU Leuven Center for Microbiology'),
(76701, 'https://ror.org/02077tq87', 'no_lang_code', 1, 'https://ror.org/02077tq87 LinXis Biopharmaceuticals (Netherlands)'),
(76702, 'https://ror.org/01rj09n08', 'no_lang_code', 1, 'https://ror.org/01rj09n08 Chemometrix (Germany)'),
(76703, 'https://ror.org/047ngme68', 'en', 1, 'https://ror.org/047ngme68 International Chemical Secretariat'),
(76704, 'https://ror.org/01y20q665', 'no_lang_code', 1, 'https://ror.org/01y20q665 China National Biotechnology (China) 中国生物技术'),
(76705, 'https://ror.org/04h7gmn81', 'no_lang_code', 1, 'https://ror.org/04h7gmn81 OriginWater (China) 碧水源'),
(76706, 'https://ror.org/05xwd1c44', 'no_lang_code', 1, 'https://ror.org/05xwd1c44 Transcend Vivoscope (China) 北京超维景生物科技'),
(76707, 'https://ror.org/012anat48', 'no_lang_code', 1, 'https://ror.org/012anat48 Cloud Posse (United States)'),
(76708, 'https://ror.org/029x85r54', 'fr', 1, 'https://ror.org/029x85r54 Centre National en Électrochimie et en Technologies Environnementales'),
(76709, 'https://ror.org/02fgesk53', 'it', 1, 'https://ror.org/02fgesk53 Centri Associati di Allergologia Molecolare'),
(76710, 'https://ror.org/00q7vcm05', 'es', 1, 'https://ror.org/00q7vcm05 Centro de Investigaciones de Ecosistemas Costeros'),
(76711, 'https://ror.org/04te82086', 'en', 1, 'https://ror.org/04te82086 Coastal Impact'),
(76712, 'https://ror.org/04j91ny53', 'en', 1, 'https://ror.org/04j91ny53 Cooperative Institute for Mesoscale Meteorological Studies'),
(76713, 'https://ror.org/00rfd5b88', 'en', 1, 'https://ror.org/00rfd5b88 The Seventh Affiliated Hospital of Sun Yat-sen University 中山大学附属第七医院'),
(76714, 'https://ror.org/03wfck728', 'en', 1, 'https://ror.org/03wfck728 Collaborative Clean Air Policy Centre'),
(76715, 'https://ror.org/003md6g43', 'no_lang_code', 1, 'https://ror.org/003md6g43 CYBO (Japan)'),
(76716, 'https://ror.org/042gqkw69', 'es', 1, 'https://ror.org/042gqkw69 Center for Conservation, Research and Management of Natural Areas Centro de Conservación Investigación y Manejo de Areas Naturales'),
(76717, 'https://ror.org/02ae4je14', 'en', 1, 'https://ror.org/02ae4je14 Craig Newmark Graduate School of Journalism at the City University of New York'),
(76718, 'https://ror.org/00d3dc551', 'no_lang_code', 1, 'https://ror.org/00d3dc551 Megaputer Intelligence (United States)'),
(76719, 'https://ror.org/02kef7f93', 'en', 1, 'https://ror.org/02kef7f93 State Library and Archives of Florida'),
(76720, 'https://ror.org/01y1b1844', 'en', 1, 'https://ror.org/01y1b1844 Institute of Artificial Intelligence Problems ІНСТИТУТ ПРОБЛЕМ ШТУЧНОГО ІНТЕЛЕКТУ'),
(76721, 'https://ror.org/03wvsyq85', 'en', 1, 'https://ror.org/03wvsyq85 University Hospitals Sussex NHS Foundation Trust'),
(76722, 'https://ror.org/02cph3w90', 'en', 1, 'https://ror.org/02cph3w90 Organisation des États de la Caraïbe Orientale Organisation of Eastern Caribbean States منظمة دول شرق البحر الكاريبي'),
(76723, 'https://ror.org/00m0k5p91', 'es', 1, 'https://ror.org/00m0k5p91 Centro Científico Tecnológico de Valparaíso'),
(76724, 'https://ror.org/01jh2g196', 'en', 1, 'https://ror.org/01jh2g196 Region Hovedstadens Apotek The Capital Region Pharmacy'),
(76725, 'https://ror.org/03anxx281', 'no_lang_code', 1, 'https://ror.org/03anxx281 Phenikaa University Đại học PHENIKAA'),
(76726, 'https://ror.org/0573xqd09', 'no_lang_code', 1, 'https://ror.org/0573xqd09 Amedes Genetics (Germany)'),
(76727, 'https://ror.org/012sdwt38', 'no_lang_code', 1, 'https://ror.org/012sdwt38 BioBank Japan バイオバンク ジャパン'),
(76728, 'https://ror.org/0276pbv69', 'en', 1, 'https://ror.org/0276pbv69 Neurological Institute of Athens Νευρολογικό Ινστιτούτο Αθηνών'),
(76729, 'https://ror.org/0191jdv19', 'de', 1, 'https://ror.org/0191jdv19 Fachhochschule Clara Hoffbauer Potsdam'),
(76730, 'https://ror.org/01jsr9d25', 'en', 1, 'https://ror.org/01jsr9d25 Community Integrated Development Initiatives'),
(76731, 'https://ror.org/03sbvex81', 'no_lang_code', 1, 'https://ror.org/03sbvex81 Geneious (New Zealand)'),
(76732, 'https://ror.org/0116dk457', 'en', 1, 'https://ror.org/0116dk457 D Y Patil International University डी वाय पाटील आंतरराष्ट्रीय विद्यापीठ'),
(76733, 'https://ror.org/008b1vj68', 'es', 1, 'https://ror.org/008b1vj68 Instituto de Astronomía Teórica y Experimental'),
(76734, 'https://ror.org/03wb3p227', 'en', 1, 'https://ror.org/03wb3p227 Consolidated Mosquito Abatement District'),
(76735, 'https://ror.org/04t9aj866', 'no_lang_code', 1, 'https://ror.org/04t9aj866 DarwinHealth (United States)'),
(76736, 'https://ror.org/020wfwe51', 'en', 1, 'https://ror.org/020wfwe51 Convergence Research Center for Diagnosis Treatment and Care System of Dementia'),
(76737, 'https://ror.org/05rc73571', 'en', 1, 'https://ror.org/05rc73571 Daye People''s Hospital 大冶市人民医院'),
(76738, 'https://ror.org/03ysfrm12', 'no_lang_code', 1, 'https://ror.org/03ysfrm12 Nference (India)'),
(76739, 'https://ror.org/022zce303', 'no_lang_code', 1, 'https://ror.org/022zce303 Cordlife (Singapore)'),
(76740, 'https://ror.org/001h41c24', 'no_lang_code', 1, 'https://ror.org/001h41c24 Data Tecnica International (United States)'),
(76741, 'https://ror.org/01yt2j759', 'en', 1, 'https://ror.org/01yt2j759 De Vlinderstichting Dutch Butterfly Conservation'),
(76742, 'https://ror.org/0178v0z17', 'en', 1, 'https://ror.org/0178v0z17 Coral Reef Research Foundation'),
(76743, 'https://ror.org/00rx5mh03', 'no_lang_code', 1, 'https://ror.org/00rx5mh03 DeepBiome Therapeutics (United States)'),
(76744, 'https://ror.org/03r0dqa93', 'no_lang_code', 1, 'https://ror.org/03r0dqa93 Doctor''s Choice (Japan) ドクターズチョイス'),
(76745, 'https://ror.org/04y0x0x35', 'en', 1, 'https://ror.org/04y0x0x35 Queen Elizabeth University Hospital'),
(76746, 'https://ror.org/00naatv40', 'no_lang_code', 1, 'https://ror.org/00naatv40 Cross Compass (Japan)'),
(76747, 'https://ror.org/04fvpm094', 'no_lang_code', 1, 'https://ror.org/04fvpm094 Carisma Therapeutics (United States)'),
(76748, 'https://ror.org/02w2xzg43', 'no_lang_code', 1, 'https://ror.org/02w2xzg43 CRV (Netherlands)'),
(76749, 'https://ror.org/042sgv520', 'no_lang_code', 1, 'https://ror.org/042sgv520 CSD Engineers (Switzerland)'),
(76750, 'https://ror.org/01rcg2640', 'en', 1, 'https://ror.org/01rcg2640 Banki College'),
(76751, 'https://ror.org/051sev771', 'da', 1, 'https://ror.org/051sev771 Roskilde Museum'),
(76752, 'https://ror.org/01s48fc08', 'en', 1, 'https://ror.org/01s48fc08 Division Technique de I''INSU'),
(76753, 'https://ror.org/04fe7xh34', 'no_lang_code', 1, 'https://ror.org/04fe7xh34 DNACARE (South Korea)'),
(76754, 'https://ror.org/056zy9723', 'en', 1, 'https://ror.org/056zy9723 DonorConnect'),
(76755, 'https://ror.org/005eaq331', 'no_lang_code', 1, 'https://ror.org/005eaq331 DXC Technology (Denmark)'),
(76756, 'https://ror.org/000s30768', 'no_lang_code', 1, 'https://ror.org/000s30768 Dr. Friedrich Eberth Arzneimittel (Germany)'),
(76757, 'https://ror.org/04hy9ef44', 'no_lang_code', 1, 'https://ror.org/04hy9ef44 E-Phy-Science (France)'),
(76758, 'https://ror.org/02xwdfp10', 'no_lang_code', 1, 'https://ror.org/02xwdfp10 Genemo (United States)'),
(76759, 'https://ror.org/027qwc485', 'no_lang_code', 1, 'https://ror.org/027qwc485 Duality (United States)'),
(76760, 'https://ror.org/02ad9mm07', 'no_lang_code', 1, 'https://ror.org/02ad9mm07 Eisbach Bio (Germany)'),
(76761, 'https://ror.org/03y81kj05', 'no_lang_code', 1, 'https://ror.org/03y81kj05 Fastbase Solutions (Spain)'),
(76762, 'https://ror.org/016k72860', 'no_lang_code', 1, 'https://ror.org/016k72860 Few Chemicals (Germany)'),
(76763, 'https://ror.org/00mbm2c65', 'en', 1, 'https://ror.org/00mbm2c65 Field Projects International'),
(76764, 'https://ror.org/03a4ga868', 'no_lang_code', 1, 'https://ror.org/03a4ga868 Genevention (Germany)'),
(76765, 'https://ror.org/031y6w871', 'no_lang_code', 1, 'https://ror.org/031y6w871 Fimlab (Finland) Fimlab Laboratoriot'),
(76766, 'https://ror.org/01wqp5678', 'no_lang_code', 1, 'https://ror.org/01wqp5678 Obstech (Chile)'),
(76767, 'https://ror.org/01ep09b46', 'no_lang_code', 1, 'https://ror.org/01ep09b46 Firmenich (United States)'),
(76768, 'https://ror.org/031bshh03', 'no_lang_code', 1, 'https://ror.org/031bshh03 Genome Insight (South Korea) 지놈인사이트는'),
(76769, 'https://ror.org/043rwwa27', 'en', 1, 'https://ror.org/043rwwa27 The First People''s Hospital of Jiangxia District 江夏区第一人民医院'),
(76770, 'https://ror.org/01871gq26', 'no_lang_code', 1, 'https://ror.org/01871gq26 Fluxus Technology (United Kingdom)'),
(76771, 'https://ror.org/03q8q6n37', 'no_lang_code', 1, 'https://ror.org/03q8q6n37 Genomic Prediction (United States)'),
(76772, 'https://ror.org/059zxg644', 'en', 1, 'https://ror.org/059zxg644 The Queen''s Medical Research Institute'),
(76773, 'https://ror.org/029mp9w08', 'no_lang_code', 1, 'https://ror.org/029mp9w08 Opty'),
(76774, 'https://ror.org/05xfjtp79', 'en', 1, 'https://ror.org/05xfjtp79 Physico-Chemical Institute of Environmental and Human Protection Фізико-хімічний інститут охорони навколишнього середовища та людини'),
(76775, 'https://ror.org/01qg56n75', 'en', 1, 'https://ror.org/01qg56n75 State Key Laboratory of Transducer Technology 传感技术国家联合重点实验室'),
(76776, 'https://ror.org/03prcq065', 'en', 1, 'https://ror.org/03prcq065 Key Laboratory of Nuclear Radiation and Nuclear Energy Technology 中国科学院核辐射与核能技术重点实验室'),
(76777, 'https://ror.org/05k11pb55', 'en', 1, 'https://ror.org/05k11pb55 Dana-Farber/Boston Children''s Cancer and Blood Disorders Center'),
(76778, 'https://ror.org/002g4nt27', 'en', 1, 'https://ror.org/002g4nt27 British Heart Foundation Centre for Cardiovascular Science'),
(76779, 'https://ror.org/04zxw0v05', 'en', 1, 'https://ror.org/04zxw0v05 Center for Pain and the Brain'),
(76780, 'https://ror.org/04cwbar59', 'en', 1, 'https://ror.org/04cwbar59 Interdisciplinary Research Center of Biology and Chemistry 中科院生物与化学交叉研究中心'),
(76781, 'https://ror.org/01b3x4m67', 'no_lang_code', 1, 'https://ror.org/01b3x4m67 ELUTIS Modelling and Consulting (Canada)'),
(76782, 'https://ror.org/04w2gya44', 'no_lang_code', 1, 'https://ror.org/04w2gya44 MBC BioLabs (United States)'),
(76783, 'https://ror.org/04ezd4121', 'no_lang_code', 1, 'https://ror.org/04ezd4121 Environmental Earth Observation Information Technology (Austria)'),
(76784, 'https://ror.org/04424w120', 'en', 1, 'https://ror.org/04424w120 Environmental Research Institute Charlotteville'),
(76785, 'https://ror.org/03gcx9p86', 'en', 1, 'https://ror.org/03gcx9p86 Equilibrium Research'),
(76786, 'https://ror.org/044k3e410', 'no_lang_code', 1, 'https://ror.org/044k3e410 Glassomer (Germany)'),
(76787, 'https://ror.org/04gnsqj88', 'no_lang_code', 1, 'https://ror.org/04gnsqj88 KUSUDAMA Therapeutics (Spain)'),
(76788, 'https://ror.org/00vavgj08', 'no_lang_code', 1, 'https://ror.org/00vavgj08 GI Innovation (South Korea) 지아이이노베이션'),
(76789, 'https://ror.org/03k83z818', 'en', 1, 'https://ror.org/03k83z818 Global Institutes on Addictions'),
(76790, 'https://ror.org/04vprbm88', 'no_lang_code', 1, 'https://ror.org/04vprbm88 Global Seismological Services (United States)'),
(76791, 'https://ror.org/03c3drj60', 'no_lang_code', 1, 'https://ror.org/03c3drj60 Evides (Netherlands)'),
(76792, 'https://ror.org/05yb2qd36', 'en', 1, 'https://ror.org/05yb2qd36 Global Wildlife Conservation'),
(76793, 'https://ror.org/0255nrb80', 'no_lang_code', 1, 'https://ror.org/0255nrb80 Evon (Austria)'),
(76794, 'https://ror.org/001h2r504', 'no_lang_code', 1, 'https://ror.org/001h2r504 GoodAI (Czechia)'),
(76795, 'https://ror.org/05bx21r34', 'en', 1, 'https://ror.org/05bx21r34 Frankfurt Cancer Institute'),
(76796, 'https://ror.org/03w5jxa69', 'no_lang_code', 1, 'https://ror.org/03w5jxa69 Freenome (United States)'),
(76797, 'https://ror.org/02c20ys54', 'no_lang_code', 1, 'https://ror.org/02c20ys54 Google (Israel)'),
(76798, 'https://ror.org/05q51gp63', 'en', 1, 'https://ror.org/05q51gp63 Federal Scientific Research Centre Crystallography and Photonics Кристаллография и фотоника'),
(76799, 'https://ror.org/013z4s422', 'no_lang_code', 1, 'https://ror.org/013z4s422 Guardant (United States)'),
(76800, 'https://ror.org/0244cxh34', 'no_lang_code', 1, 'https://ror.org/0244cxh34 Gubra (Denmark)'),
(76801, 'https://ror.org/04rr2sr33', 'en', 1, 'https://ror.org/04rr2sr33 Hampton Roads Sanitation District'),
(76802, 'https://ror.org/02g6xee76', 'en', 1, 'https://ror.org/02g6xee76 Future Law'),
(76803, 'https://ror.org/000xaj256', 'en', 1, 'https://ror.org/000xaj256 Yukon Department of Tourism and Culture'),
(76804, 'https://ror.org/04mgk5851', 'no_lang_code', 1, 'https://ror.org/04mgk5851 HE Space (Netherlands)'),
(76805, 'https://ror.org/009yp5907', 'no_lang_code', 1, 'https://ror.org/009yp5907 HiFiBiO Therapeutics (United States)'),
(76806, 'https://ror.org/03nn3w026', 'no_lang_code', 1, 'https://ror.org/03nn3w026 HiFiBiO Therapeutics (France)'),
(76807, 'https://ror.org/036dre328', 'no_lang_code', 1, 'https://ror.org/036dre328 Hikari Giken (Japan)'),
(76808, 'https://ror.org/00w1xt505', 'en', 1, 'https://ror.org/00w1xt505 Hunter Genetics'),
(76809, 'https://ror.org/01jap5s81', 'en', 1, 'https://ror.org/01jap5s81 North West London Pathology'),
(76810, 'https://ror.org/05e6n8h53', 'en', 1, 'https://ror.org/05e6n8h53 International Center for Advanced Studies'),
(76811, 'https://ror.org/053nkmh39', 'en', 1, 'https://ror.org/053nkmh39 Honghu Hospital of Traditional Chinese Medicine 洪湖中医文化'),
(76812, 'https://ror.org/040y63482', 'it', 1, 'https://ror.org/040y63482 Igenomix'),
(76813, 'https://ror.org/049ktr581', 'en', 1, 'https://ror.org/049ktr581 Inspire Institute'),
(76814, 'https://ror.org/03fg2km54', 'en', 1, 'https://ror.org/03fg2km54 Institute for Advanced Study in Toulouse'),
(76815, 'https://ror.org/0219e9162', 'de', 1, 'https://ror.org/0219e9162 Institut für Forensische Genetik'),
(76816, 'https://ror.org/01xs36937', 'en', 1, 'https://ror.org/01xs36937 Institute for Protein Innovation'),
(76817, 'https://ror.org/05298h560', 'en', 1, 'https://ror.org/05298h560 FORTH Institute of Astrophysics Ινστιτούτο Αστροφυσικής'),
(76818, 'https://ror.org/051jgxz75', 'en', 1, 'https://ror.org/051jgxz75 Institute of Radiophysics and Electronics Ռադիոֆիզիկայի և էլեկտրոնիկայի ինստիտուտ'),
(76819, 'https://ror.org/0107a5128', 'no_lang_code', 1, 'https://ror.org/0107a5128 IQM (Germany)'),
(76820, 'https://ror.org/00n9sps80', 'en', 1, 'https://ror.org/00n9sps80 Center for Muscle Health and Neuromuscular Disorders'),
(76821, 'https://ror.org/01mmh4r39', 'no_lang_code', 1, 'https://ror.org/01mmh4r39 Hitachi (Sweden)'),
(76822, 'https://ror.org/046c20x57', 'no_lang_code', 1, 'https://ror.org/046c20x57 Integrated Spaceflight Services (United States)'),
(76823, 'https://ror.org/03ebhsy64', 'en', 1, 'https://ror.org/03ebhsy64 ISI Foundation'),
(76824, 'https://ror.org/028xvc953', 'en', 1, 'https://ror.org/028xvc953 Island Conservation Society'),
(76825, 'https://ror.org/049244588', 'no_lang_code', 1, 'https://ror.org/049244588 Sophia Genetics (France)'),
(76826, 'https://ror.org/04e8cy037', 'en', 1, 'https://ror.org/04e8cy037 The Japanese Data Center for Hematopoietic Cell Transplantation 一般社団法人 日本造血細胞移植データセンター'),
(76827, 'https://ror.org/01tz5yb12', 'no_lang_code', 1, 'https://ror.org/01tz5yb12 JEOL (China) 捷欧路'),
(76828, 'https://ror.org/056yxsn08', 'en', 1, 'https://ror.org/056yxsn08 International Pole and Line Foundation'),
(76829, 'https://ror.org/0528ydh88', 'no_lang_code', 1, 'https://ror.org/0528ydh88 Invizyne Technologies (United States)'),
(76830, 'https://ror.org/03ksbpa13', 'en', 1, 'https://ror.org/03ksbpa13 Jiangsu Food and Pharmaceutical Science College 江苏食品药品职业技术学院'),
(76831, 'https://ror.org/00hsn1t88', 'no_lang_code', 1, 'https://ror.org/00hsn1t88 Inzen Therapeutics (United States)'),
(76832, 'https://ror.org/016q5ce10', 'no_lang_code', 1, 'https://ror.org/016q5ce10 Jilian Technology Group (China)'),
(76833, 'https://ror.org/001qb9t53', 'no_lang_code', 1, 'https://ror.org/001qb9t53 Jinergy (China) 金能清洁能源科技有限公司'),
(76834, 'https://ror.org/04pdbq803', 'no_lang_code', 1, 'https://ror.org/04pdbq803 Lumiphase (Switzerland)'),
(76835, 'https://ror.org/05y2jpg52', 'en', 1, 'https://ror.org/05y2jpg52 Joint Attosecond Science Laboratory'),
(76836, 'https://ror.org/0349yc338', 'en', 1, 'https://ror.org/0349yc338 Mahatma Gandhi Memorial Hospital'),
(76837, 'https://ror.org/0365mpq95', 'no_lang_code', 1, 'https://ror.org/0365mpq95 Mahonia Na Dari – Guardian of the Sea'),
(76838, 'https://ror.org/0120tx153', 'en', 1, 'https://ror.org/0120tx153 Jönköping County Museum'),
(76839, 'https://ror.org/01qvcpq30', 'no_lang_code', 1, 'https://ror.org/01qvcpq30 Kallyope (United States)'),
(76840, 'https://ror.org/00vj4fj91', 'en', 1, 'https://ror.org/00vj4fj91 Kenya Fisheries Service'),
(76841, 'https://ror.org/01w08b546', 'en', 1, 'https://ror.org/01w08b546 Lakeside Labs'),
(76842, 'https://ror.org/04zdx1r56', 'da', 1, 'https://ror.org/04zdx1r56 Langelands Museum'),
(76843, 'https://ror.org/00p81j087', 'en', 1, 'https://ror.org/00p81j087 Eiraght Ashoonagh Vannin Manx National Heritage'),
(76844, 'https://ror.org/02njymz39', 'en', 1, 'https://ror.org/02njymz39 Large Marine Vertebrates Research Institute Philippines'),
(76845, 'https://ror.org/03pffnr86', 'en', 1, 'https://ror.org/03pffnr86 Marine Biomedical Research Institute of Qingdao 青岛海洋生物医药研究院'),
(76846, 'https://ror.org/059dpw236', 'en', 1, 'https://ror.org/059dpw236 Iaso Children’s Hospital ΙΑΣΩ Παίδων'),
(76847, 'https://ror.org/00bb88176', 'en', 1, 'https://ror.org/00bb88176 Institute of Public Health'),
(76848, 'https://ror.org/05ehdmg18', 'en', 1, 'https://ror.org/05ehdmg18 Leibniz ScienceCampus Primate Cognition Leibniz-WissenschaftsCampus Primatenkognition'),
(76849, 'https://ror.org/018extf73', 'no_lang_code', 1, 'https://ror.org/018extf73 Lightmatter (United States)'),
(76850, 'https://ror.org/01ywwb722', 'no_lang_code', 1, 'https://ror.org/01ywwb722 LipidALL Technologies (China) 常州中科脂典生物技术'),
(76851, 'https://ror.org/00wazyk32', 'en', 1, 'https://ror.org/00wazyk32 Centre Max Planck - Université d''Ottawa pour la Photonique Extrême et Quantique Max Planck - University of Ottawa Centre for Extreme and Quantum Photonics'),
(76852, 'https://ror.org/00r4h6e02', 'no_lang_code', 1, 'https://ror.org/00r4h6e02 KrioSystem (Poland)'),
(76853, 'https://ror.org/03ym6b665', 'no_lang_code', 1, 'https://ror.org/03ym6b665 Veolia (Norway)'),
(76854, 'https://ror.org/05h06f126', 'fr', 1, 'https://ror.org/05h06f126 LMI Adaptation des Plantes et Microorganismes Associés aux Stress Environnementaux'),
(76855, 'https://ror.org/04tm3b065', 'en', 1, 'https://ror.org/04tm3b065 Ministry of Fisheries and Marine Resource Development'),
(76856, 'https://ror.org/0396gab88', 'en', 1, 'https://ror.org/0396gab88 LOEWE Centre for Translational Biodiversity Genomics'),
(76857, 'https://ror.org/02kdweh68', 'en', 1, 'https://ror.org/02kdweh68 Modern Diet and Physiology Research Center'),
(76858, 'https://ror.org/03dc5r714', 'en', 1, 'https://ror.org/03dc5r714 Legal Pathways'),
(76859, 'https://ror.org/04554dw68', 'en', 1, 'https://ror.org/04554dw68 Molecular Diagnostics Services'),
(76860, 'https://ror.org/0073v0y35', 'en', 1, 'https://ror.org/0073v0y35 London Biofoundry'),
(76861, 'https://ror.org/053ay1f75', 'no_lang_code', 1, 'https://ror.org/053ay1f75 Morphogénie Logiciels (France)'),
(76862, 'https://ror.org/027240w39', 'no_lang_code', 1, 'https://ror.org/027240w39 Motorpharma (Hungary)'),
(76863, 'https://ror.org/048d94c63', 'en', 1, 'https://ror.org/048d94c63 National Engineering Research Center for Nanotechnology 纳米技术及应用国家工程研究中心'),
(76864, 'https://ror.org/02rdmaa30', 'no_lang_code', 1, 'https://ror.org/02rdmaa30 ChemBridge (United States)'),
(76865, 'https://ror.org/047225g28', 'en', 1, 'https://ror.org/047225g28 Memorial Hermann–Texas Medical Center'),
(76866, 'https://ror.org/016570d63', 'en', 1, 'https://ror.org/016570d63 Rajabu St Augustine''s, Hospitali Teule'),
(76867, 'https://ror.org/058ngfn30', 'en', 1, 'https://ror.org/058ngfn30 Research Institute of Ukrainian Studies Науково-дослідний інститут українознавства МОН України'),
(76868, 'https://ror.org/02c8cxy67', 'en', 1, 'https://ror.org/02c8cxy67 Donbas National Academy of Civil Engineering and Architecture - Kramatorsk Донбаська національна академія будівництва і архітектури'),
(76869, 'https://ror.org/027t4kk23', 'en', 1, 'https://ror.org/027t4kk23 Michigan Center for Translational Pathology'),
(76870, 'https://ror.org/02bagyt43', 'no_lang_code', 1, 'https://ror.org/02bagyt43 Metawater (Japan) メタウォータ'),
(76871, 'https://ror.org/0329vdx95', 'fr', 1, 'https://ror.org/0329vdx95 Météorage'),
(76872, 'https://ror.org/05b2ww089', 'fr', 1, 'https://ror.org/05b2ww089 Musées de la Ville de Strasbourg'),
(76873, 'https://ror.org/032b42j71', 'en', 1, 'https://ror.org/032b42j71 Museum of Southwest Jutland Sydvestjyske Museer'),
(76874, 'https://ror.org/02a4jr261', 'no_lang_code', 1, 'https://ror.org/02a4jr261 Metrohm Dropsens (Spain)'),
(76875, 'https://ror.org/03d8b1667', 'no_lang_code', 1, 'https://ror.org/03d8b1667 Nama Development (United States)'),
(76876, 'https://ror.org/02vv9p907', 'en', 1, 'https://ror.org/02vv9p907 Nordic Optical Telescope'),
(76877, 'https://ror.org/033zsb510', 'no_lang_code', 1, 'https://ror.org/033zsb510 NanoPHAB (Netherlands)'),
(76878, 'https://ror.org/01s9dmg43', 'en', 1, 'https://ror.org/01s9dmg43 Peng Huanwu Center for Fundamental Theory'),
(76879, 'https://ror.org/052htmq47', 'no_lang_code', 1, 'https://ror.org/052htmq47 BioNTech (United States)'),
(76880, 'https://ror.org/01nt95841', 'no_lang_code', 1, 'https://ror.org/01nt95841 Tang Shiu Kin Hospital 鄧肇堅醫院'),
(76881, 'https://ror.org/02easbz49', 'no_lang_code', 1, 'https://ror.org/02easbz49 Oasen (Netherlands)'),
(76882, 'https://ror.org/01dtmk575', 'en', 1, 'https://ror.org/01dtmk575 Argentine National Observatory Observatori Astronòmic de Córdoba'),
(76883, 'https://ror.org/02xk4gn16', 'en', 1, 'https://ror.org/02xk4gn16 Centro Astronómico de Yebes Yebes Observatory'),
(76884, 'https://ror.org/03nb3ch98', 'no_lang_code', 1, 'https://ror.org/03nb3ch98 New England Biolabs (China)'),
(76885, 'https://ror.org/05bajqw15', 'no_lang_code', 1, 'https://ror.org/05bajqw15 Olnica (France)'),
(76886, 'https://ror.org/05gp53b91', 'no_lang_code', 1, 'https://ror.org/05gp53b91 Omiics (Denmark)'),
(76887, 'https://ror.org/04ft3z219', 'no_lang_code', 1, 'https://ror.org/04ft3z219 New Iridium (United States)'),
(76888, 'https://ror.org/0410md951', 'en', 1, 'https://ror.org/0410md951 1 CP Place (United States)');
INSERT INTO `rors` VALUES
(76889, 'https://ror.org/01m7v2988', 'en', 1, 'https://ror.org/01m7v2988 New York Proton Center'),
(76890, 'https://ror.org/01141nq92', 'en', 1, 'https://ror.org/01141nq92 New Zealand Brain Research Institute'),
(76891, 'https://ror.org/0102jy333', 'no_lang_code', 1, 'https://ror.org/0102jy333 Nanoscribe (Germany)'),
(76892, 'https://ror.org/01c3zvj45', 'no_lang_code', 1, 'https://ror.org/01c3zvj45 NanoTemper Technologies (Germany)'),
(76893, 'https://ror.org/03c9hf945', 'no_lang_code', 1, 'https://ror.org/03c9hf945 PamGene (Netherlands)'),
(76894, 'https://ror.org/04090g527', 'no_lang_code', 1, 'https://ror.org/04090g527 ImmunityBio (United States)'),
(76895, 'https://ror.org/00vg4zj96', 'no_lang_code', 1, 'https://ror.org/00vg4zj96 Next Interactions (United States)'),
(76896, 'https://ror.org/04s8hyg48', 'no_lang_code', 1, 'https://ror.org/04s8hyg48 Pancreas Centre (Canada)'),
(76897, 'https://ror.org/03sg6z947', 'no_lang_code', 1, 'https://ror.org/03sg6z947 Paraza Pharma (Canada)'),
(76898, 'https://ror.org/052644257', 'en', 1, 'https://ror.org/052644257 Ngātiwai Trust Board'),
(76899, 'https://ror.org/01yhkc229', 'no_lang_code', 1, 'https://ror.org/01yhkc229 Nitric Oxide Services (United States)'),
(76900, 'https://ror.org/04vsn7g65', 'en', 1, 'https://ror.org/04vsn7g65 Taian City Central Hospital 山东省泰安市中心医院'),
(76901, 'https://ror.org/01v637s67', 'en', 1, 'https://ror.org/01v637s67 Prion Alliance'),
(76902, 'https://ror.org/02v5zv622', 'no_lang_code', 1, 'https://ror.org/02v5zv622 PharmaZell (Germany)'),
(76903, 'https://ror.org/041sxnd36', 'en', 1, 'https://ror.org/041sxnd36 VA Northeast Ohio Healthcare System'),
(76904, 'https://ror.org/03hf25883', 'no_lang_code', 1, 'https://ror.org/03hf25883 Prioris.ai (Canada)'),
(76905, 'https://ror.org/04k1hs403', 'en', 1, 'https://ror.org/04k1hs403 Kap Natirel'),
(76906, 'https://ror.org/004a5x173', 'en', 1, 'https://ror.org/004a5x173 King County Department of Natural Resources and Parks'),
(76907, 'https://ror.org/004cn7092', 'no_lang_code', 1, 'https://ror.org/004cn7092 NTT (United States)'),
(76908, 'https://ror.org/02etmf171', 'fr', 1, 'https://ror.org/02etmf171 PROTEO'),
(76909, 'https://ror.org/05db1vq90', 'en', 1, 'https://ror.org/05db1vq90 RIKEN BNL Research Center'),
(76910, 'https://ror.org/01a8nnm19', 'no_lang_code', 1, 'https://ror.org/01a8nnm19 PicoQuant (Germany)'),
(76911, 'https://ror.org/031ts1072', 'no_lang_code', 1, 'https://ror.org/031ts1072 PVD Products (United States)'),
(76912, 'https://ror.org/00hb09z11', 'en', 1, 'https://ror.org/00hb09z11 Royal Saskatchewan Museum'),
(76913, 'https://ror.org/058e99a37', 'no_lang_code', 1, 'https://ror.org/058e99a37 PIVOT'),
(76914, 'https://ror.org/001vw6n49', 'no_lang_code', 1, 'https://ror.org/001vw6n49 Planta'),
(76915, 'https://ror.org/05x85k702', 'en', 1, 'https://ror.org/05x85k702 Qingdao Center of Resource Chemistry and New Materials 青岛市资源化学与新材料研究中心'),
(76916, 'https://ror.org/01yhs3994', 'no_lang_code', 1, 'https://ror.org/01yhs3994 Saaz Genetics (India)'),
(76917, 'https://ror.org/00e1ah625', 'en', 1, 'https://ror.org/00e1ah625 Psihijatrijska Bolnica Sveti Ivan Psychiatric Hospital Sveti Ivan'),
(76918, 'https://ror.org/02y750690', 'no_lang_code', 1, 'https://ror.org/02y750690 Saddle Point Science (United Kingdom)'),
(76919, 'https://ror.org/00zeq0353', 'no_lang_code', 1, 'https://ror.org/00zeq0353 Quansight (United States)'),
(76920, 'https://ror.org/0252wp173', 'it', 1, 'https://ror.org/0252wp173 Polo d’Innovazione di Genomica'),
(76921, 'https://ror.org/05jzt2178', 'en', 1, 'https://ror.org/05jzt2178 Queen Margaret''s'),
(76922, 'https://ror.org/00gwx3e77', 'en', 1, 'https://ror.org/00gwx3e77 Queen Nandi Regional Hospital'),
(76923, 'https://ror.org/043p46c93', 'no_lang_code', 1, 'https://ror.org/043p46c93 SalvageBlue (Saint Vincent and the Grenadines)'),
(76924, 'https://ror.org/03a2nwp96', 'no_lang_code', 1, 'https://ror.org/03a2nwp96 Nkarta Therapeutics (United States)'),
(76925, 'https://ror.org/02pc48s35', 'no_lang_code', 1, 'https://ror.org/02pc48s35 Printnet (Hungary)'),
(76926, 'https://ror.org/01kkg9921', 'en', 1, 'https://ror.org/01kkg9921 Oregon Department of Environmental Quality'),
(76927, 'https://ror.org/01bkmbx41', 'no_lang_code', 1, 'https://ror.org/01bkmbx41 Regen Network (United States)'),
(76928, 'https://ror.org/023pvpj39', 'no_lang_code', 1, 'https://ror.org/023pvpj39 Regen Network (Argentina)'),
(76929, 'https://ror.org/01tj7cz72', 'no_lang_code', 1, 'https://ror.org/01tj7cz72 Science Exchange (United States)'),
(76930, 'https://ror.org/04wnhwq91', 'no_lang_code', 1, 'https://ror.org/04wnhwq91 Reneco (United Arab Emirates)'),
(76931, 'https://ror.org/01anjrj52', 'no_lang_code', 1, 'https://ror.org/01anjrj52 ScienCell Research Laboratories (United States)'),
(76932, 'https://ror.org/04qtb5g63', 'no_lang_code', 1, 'https://ror.org/04qtb5g63 Scientific Aviation (United States)'),
(76933, 'https://ror.org/04gstme54', 'en', 1, 'https://ror.org/04gstme54 SciGenom Research Foundation'),
(76934, 'https://ror.org/010qsnr58', 'no_lang_code', 1, 'https://ror.org/010qsnr58 Rentschler Biopharma (Germany)'),
(76935, 'https://ror.org/05sf7q250', 'no_lang_code', 1, 'https://ror.org/05sf7q250 Emka Technologies (Canada)'),
(76936, 'https://ror.org/05knsbt04', 'no_lang_code', 1, 'https://ror.org/05knsbt04 Sophia Genetics (Switzerland)'),
(76937, 'https://ror.org/026bdsm07', 'no_lang_code', 1, 'https://ror.org/026bdsm07 Scispace (United States)'),
(76938, 'https://ror.org/03ta32r20', 'no_lang_code', 1, 'https://ror.org/03ta32r20 SciTech Strategies (United States)'),
(76939, 'https://ror.org/05h9mfy97', 'no_lang_code', 1, 'https://ror.org/05h9mfy97 SDS Life Science (Sweden)'),
(76940, 'https://ror.org/01276vm23', 'en', 1, 'https://ror.org/01276vm23 South Bay Interdisciplinary Science Center'),
(76941, 'https://ror.org/02xsf1j07', 'no_lang_code', 1, 'https://ror.org/02xsf1j07 Systems, Applications, and Products in Data Processing (Russia)'),
(76942, 'https://ror.org/0155sw530', 'en', 1, 'https://ror.org/0155sw530 Seattle Epidemiologic Information and Research Center'),
(76943, 'https://ror.org/02dxa0f68', 'en', 1, 'https://ror.org/02dxa0f68 Saving the Blue'),
(76944, 'https://ror.org/0244ywv94', 'en', 1, 'https://ror.org/0244ywv94 Secretariat of the Pacific Regional Environment Programme'),
(76945, 'https://ror.org/01036m381', 'en', 1, 'https://ror.org/01036m381 Scholar Rock (United States)'),
(76946, 'https://ror.org/03smt1w40', 'en', 1, 'https://ror.org/03smt1w40 Jiangxi Applied Engineering Vocational Institute 江西应用工程职业学院'),
(76947, 'https://ror.org/02sx86615', 'en', 1, 'https://ror.org/02sx86615 Shenzhen Institute of Neuroscience 深圳市神经科学研究院'),
(76948, 'https://ror.org/03b252479', 'no_lang_code', 1, 'https://ror.org/03b252479 Shenzhen Planck Innovation (China) 深圳扑浪创新科技'),
(76949, 'https://ror.org/057c2xb31', 'no_lang_code', 1, 'https://ror.org/057c2xb31 Shanghai Model Organisms (China) 上海南方模式生物研究中心'),
(76950, 'https://ror.org/03zrvha56', 'en', 1, 'https://ror.org/03zrvha56 Shenzhen Science Museum 号深圳科学馆'),
(76951, 'https://ror.org/02qgbtz69', 'no_lang_code', 1, 'https://ror.org/02qgbtz69 Xtretch (China) 极展科技'),
(76952, 'https://ror.org/02mzpg398', 'en', 1, 'https://ror.org/02mzpg398 Sharks Pacific'),
(76953, 'https://ror.org/0231j0n41', 'no_lang_code', 1, 'https://ror.org/0231j0n41 Sibel (United States)'),
(76954, 'https://ror.org/035caev54', 'no_lang_code', 1, 'https://ror.org/035caev54 Sinotech Genomics (China) 中科普瑞'),
(76955, 'https://ror.org/03s6brr03', 'en', 1, 'https://ror.org/03s6brr03 Sonneberg Observatory Sternwarte Sonneberg'),
(76956, 'https://ror.org/00sgkmj19', 'en', 1, 'https://ror.org/00sgkmj19 Thames Valley Archaeological Services'),
(76957, 'https://ror.org/007x72212', 'en', 1, 'https://ror.org/007x72212 First People’s Hospital of Jingmen 荆门市第一人民医院'),
(76958, 'https://ror.org/000mza046', 'en', 1, 'https://ror.org/000mza046 European Incoherent Scatter Scientific Association'),
(76959, 'https://ror.org/03ss07w66', 'en', 1, 'https://ror.org/03ss07w66 Centre for Ocean Research and Education'),
(76960, 'https://ror.org/05pbd0w76', 'en', 1, 'https://ror.org/05pbd0w76 The Humane League'),
(76961, 'https://ror.org/05n16wx34', 'de', 1, 'https://ror.org/05n16wx34 Landesamt für Landwirtschaft, Lebensmittelsicherheit und Fischerei'),
(76962, 'https://ror.org/00xj7pv34', 'en', 1, 'https://ror.org/00xj7pv34 Max Planck - Harvard Research Center for the Archaeoscience of the Ancient Mediterranean'),
(76963, 'https://ror.org/02q94t821', 'sv', 1, 'https://ror.org/02q94t821 Sydsvensk Arkeologi'),
(76964, 'https://ror.org/03em0vf53', 'no_lang_code', 1, 'https://ror.org/03em0vf53 SyMO-Chem (Netherlands)'),
(76965, 'https://ror.org/000jqa749', 'en', 1, 'https://ror.org/000jqa749 The Ocean Cleanup'),
(76966, 'https://ror.org/04vrjya53', 'en', 1, 'https://ror.org/04vrjya53 The Origins Project Foundation'),
(76967, 'https://ror.org/033a9g130', 'no_lang_code', 1, 'https://ror.org/033a9g130 Synthace (United Kingdom)'),
(76968, 'https://ror.org/03573dx38', 'no_lang_code', 1, 'https://ror.org/03573dx38 ELSA'),
(76969, 'https://ror.org/01gkbq247', 'no_lang_code', 1, 'https://ror.org/01gkbq247 Honghu People’s Hospital 洪湖市人民医院'),
(76970, 'https://ror.org/01gbymr57', 'no_lang_code', 1, 'https://ror.org/01gbymr57 Tempus Labs (United States)'),
(76971, 'https://ror.org/02qx6zf82', 'en', 1, 'https://ror.org/02qx6zf82 Center for Translational Research in Neuroimaging and Data Science'),
(76972, 'https://ror.org/016twdg30', 'en', 1, 'https://ror.org/016twdg30 Tri-Institutional PhD Program in Chemical Biology'),
(76973, 'https://ror.org/019xckf23', 'no_lang_code', 1, 'https://ror.org/019xckf23 Tencent Healthcare (China)'),
(76974, 'https://ror.org/04fkjep44', 'pl', 1, 'https://ror.org/04fkjep44 Trzy Epoki Pracownia Archeologiczna'),
(76975, 'https://ror.org/04kkgk561', 'no_lang_code', 1, 'https://ror.org/04kkgk561 TScan Therapeutics (United States)'),
(76976, 'https://ror.org/04h4yst66', 'en', 1, 'https://ror.org/04h4yst66 VisMederi Research'),
(76977, 'https://ror.org/012mmb732', 'en', 1, 'https://ror.org/012mmb732 Southern California Eye Institute'),
(76978, 'https://ror.org/030nrza79', 'en', 1, 'https://ror.org/030nrza79 Wildlife Conservation Society Uganda'),
(76979, 'https://ror.org/04yn5x032', 'no_lang_code', 1, 'https://ror.org/04yn5x032 Three-Speed Logic (Canada)'),
(76980, 'https://ror.org/030zxq122', 'en', 1, 'https://ror.org/030zxq122 Wasage Divers'),
(76981, 'https://ror.org/00wqjhh20', 'no_lang_code', 1, 'https://ror.org/00wqjhh20 Umicore (United States)'),
(76982, 'https://ror.org/03nrpad60', 'no_lang_code', 1, 'https://ror.org/03nrpad60 WayRay (Russia)'),
(76983, 'https://ror.org/03f5sm451', 'en', 1, 'https://ror.org/03f5sm451 Kimberley Hospital'),
(76984, 'https://ror.org/00ffxn811', 'is', 1, 'https://ror.org/00ffxn811 Fornleifastofnun Íslands'),
(76985, 'https://ror.org/05f6dm909', 'en', 1, 'https://ror.org/05f6dm909 Whittle School & Studios'),
(76986, 'https://ror.org/00ek68a72', 'en', 1, 'https://ror.org/00ek68a72 Faroe Islands National Museum Tjóðsavn Føroya'),
(76987, 'https://ror.org/008nhcy02', 'sv', 1, 'https://ror.org/008nhcy02 Upplandsmuseet Upplandsmuseum متحف أوبلاند'),
(76988, 'https://ror.org/03vt8j920', 'no_lang_code', 1, 'https://ror.org/03vt8j920 Nanobase (South Korea)'),
(76989, 'https://ror.org/005r1rh48', 'en', 1, 'https://ror.org/005r1rh48 New Guinea Highland Wild Dog Foundation'),
(76990, 'https://ror.org/020xg4k98', 'no_lang_code', 1, 'https://ror.org/020xg4k98 Phyzen (South Korea) 파이젠'),
(76991, 'https://ror.org/045yewh40', 'en', 1, 'https://ror.org/045yewh40 Jiangsu Center for Collaborative Innovation in Geographical Information Resource Development and Application 江苏省地理信息资源开发与利用协同创新'),
(76992, 'https://ror.org/00mc77d93', 'it', 1, 'https://ror.org/00mc77d93 Istituti Clinici Scientifici Maugeri'),
(76993, 'https://ror.org/003q4as88', 'en', 1, 'https://ror.org/003q4as88 Kibale Chimpanzee Project'),
(76994, 'https://ror.org/00eyng893', 'en', 1, 'https://ror.org/00eyng893 VIB-KU Leuven Center for Cancer Biology'),
(76995, 'https://ror.org/01bcsqk59', 'no_lang_code', 1, 'https://ror.org/01bcsqk59 Nabsys (United States)'),
(76996, 'https://ror.org/03xmgtw61', 'en', 1, 'https://ror.org/03xmgtw61 Mesothelioma Center'),
(76997, 'https://ror.org/00dwmat08', 'no_lang_code', 1, 'https://ror.org/00dwmat08 CellOxess (United States)'),
(76998, 'https://ror.org/00r86n020', 'en', 1, 'https://ror.org/00r86n020 Egypt Center for Research and Regenerative Medicine مركز البحوث الطبية والطب التجديدى'),
(76999, 'https://ror.org/00jw1bg20', 'sv', 1, 'https://ror.org/00jw1bg20 Malmö Museer'),
(77000, 'https://ror.org/02jztf270', 'en', 1, 'https://ror.org/02jztf270 International Society for Laboratory Hematology'),
(77001, 'https://ror.org/01rnj6418', 'no_lang_code', 1, 'https://ror.org/01rnj6418 Yumanity Therapeutics (United States)'),
(77002, 'https://ror.org/01z1bz177', 'en', 1, 'https://ror.org/01z1bz177 US Climate Variability and Predictability Program'),
(77003, 'https://ror.org/05sv9g179', 'no_lang_code', 1, 'https://ror.org/05sv9g179 Yunkawasi'),
(77004, 'https://ror.org/01bhrtv82', 'no_lang_code', 1, 'https://ror.org/01bhrtv82 Zapata (United States)'),
(77005, 'https://ror.org/01wykjh49', 'sv', 1, 'https://ror.org/01wykjh49 Västergötlands Museum'),
(77006, 'https://ror.org/023g8mz36', 'en', 1, 'https://ror.org/023g8mz36 Wild Chimpanzee Foundation'),
(77007, 'https://ror.org/01w7kss51', 'no_lang_code', 1, 'https://ror.org/01w7kss51 Willow Biosciences (Canada)'),
(77008, 'https://ror.org/05s9cjr09', 'en', 1, 'https://ror.org/05s9cjr09 Wildlife Conservation Society Fiji'),
(77009, 'https://ror.org/00ybtn229', 'es', 1, 'https://ror.org/00ybtn229 Unión de Ornitólogos de Costa Rica'),
(77010, 'https://ror.org/05jyve847', 'en', 1, 'https://ror.org/05jyve847 Wrocław Technology Park Wrocławskim Parku Technologicznym'),
(77011, 'https://ror.org/05jy77b70', 'no_lang_code', 1, 'https://ror.org/05jy77b70 Wuyistar (China) 武夷星'),
(77012, 'https://ror.org/00zkxfr79', 'no_lang_code', 1, 'https://ror.org/00zkxfr79 DataJoint NEURO (United States)'),
(77013, 'https://ror.org/05qj0n416', 'no_lang_code', 1, 'https://ror.org/05qj0n416 Xanadu Quantum Technologies (Canada)'),
(77014, 'https://ror.org/005pxs112', 'no_lang_code', 1, 'https://ror.org/005pxs112 Veritas (Italy)'),
(77015, 'https://ror.org/05wq7hj83', 'no_lang_code', 1, 'https://ror.org/05wq7hj83 XeUS Technologies (Cyprus)'),
(77016, 'https://ror.org/010s0k503', 'no_lang_code', 1, 'https://ror.org/010s0k503 XING Technologies (Australia)'),
(77017, 'https://ror.org/0596rmt30', 'en', 1, 'https://ror.org/0596rmt30 Military Technical Institute Vojnotehnički Institut Beograd'),
(77018, 'https://ror.org/03tm6xb43', 'en', 1, 'https://ror.org/03tm6xb43 Karnali Academy of Health Sciences कर्णाली स्वास्थ्य बिज्ञान प्रतिष्ठान'),
(77019, 'https://ror.org/05r1mzq61', 'en', 1, 'https://ror.org/05r1mzq61 Zhuhai Institute of Advanced Technology 珠海中科先进技术研究院'),
(77020, 'https://ror.org/05pzhab84', 'en', 1, 'https://ror.org/05pzhab84 ENN-Tongji Advanced Institute of Clean Energy 新奥-同济清洁能源高等研究院'),
(77021, 'https://ror.org/00r6snc96', 'en', 1, 'https://ror.org/00r6snc96 Centre for Arab Unity Studies مركز دراسات الوحدة العربية'),
(77022, 'https://ror.org/02664zk40', 'en', 1, 'https://ror.org/02664zk40 Inception Institute of Artificial Intelligence'),
(77023, 'https://ror.org/05rmt2h07', 'en', 1, 'https://ror.org/05rmt2h07 The Prostate Centre'),
(77024, 'https://ror.org/01p52dr80', 'en', 1, 'https://ror.org/01p52dr80 Gashaka Primate Project'),
(77025, 'https://ror.org/05pbwbp03', 'en', 1, 'https://ror.org/05pbwbp03 Ukrainian State Research Institute for Carbochemistry Украинский государственный научно-исследовательский углехимический институт Український державний науково-дослідний вуглехімічний інститут'),
(77026, 'https://ror.org/048t93218', 'en', 1, 'https://ror.org/048t93218 National Trauma Research Institute'),
(77027, 'https://ror.org/02pvrbg60', 'en', 1, 'https://ror.org/02pvrbg60 Cochrane'),
(77028, 'https://ror.org/050qhwt21', 'en', 1, 'https://ror.org/050qhwt21 Shanghai Academy of Spaceflight Technology 上海航天技术研究院'),
(77029, 'https://ror.org/052acn261', 'en', 1, 'https://ror.org/052acn261 Center for Excellence in Tibetan Plateau Earth Sciences'),
(77030, 'https://ror.org/0008nva35', 'en', 1, 'https://ror.org/0008nva35 The Urology Center of Colorado'),
(77031, 'https://ror.org/004ehfq11', 'en', 1, 'https://ror.org/004ehfq11 Basir Eye Health Research Center'),
(77032, 'https://ror.org/02124w065', 'es', 1, 'https://ror.org/02124w065 Instituto Oncológico Henry Moore'),
(77033, 'https://ror.org/05ef4zt88', 'en', 1, 'https://ror.org/05ef4zt88 FX Palo Alto Laboratory'),
(77034, 'https://ror.org/05gdz0e37', 'en', 1, 'https://ror.org/05gdz0e37 Docrates Cancer Center Docrates Cancersjukhus Docrates Syöpäsairaala Дократес'),
(77035, 'https://ror.org/003py2t79', 'en', 1, 'https://ror.org/003py2t79 Indian Academy of Pediatrics'),
(77036, 'https://ror.org/03jgmfc14', 'en', 1, 'https://ror.org/03jgmfc14 Postgraduate School of Molecular Medicine Studium Medycyny Molekularnej'),
(77037, 'https://ror.org/05fcqx592', 'en', 1, 'https://ror.org/05fcqx592 Center for Disease Dynamics, Economics and Policy'),
(77038, 'https://ror.org/01dtp6p75', 'en', 1, 'https://ror.org/01dtp6p75 Wuhan No.9 Hospital 武汉市第九医院'),
(77039, 'https://ror.org/00230yh09', 'en', 1, 'https://ror.org/00230yh09 Worldwise Travellers Health & Vaccination Centres'),
(77040, 'https://ror.org/03zqv5j63', 'en', 1, 'https://ror.org/03zqv5j63 APEC Climate Center'),
(77041, 'https://ror.org/05egt1h67', 'en', 1, 'https://ror.org/05egt1h67 Vascular Institute of New York'),
(77042, 'https://ror.org/01w7v5459', 'en', 1, 'https://ror.org/01w7v5459 National Center for Spinal Disorders Országos Gerincgyógyászati Központ'),
(77043, 'https://ror.org/02d5ks197', 'en', 1, 'https://ror.org/02d5ks197 Chinese University of Hong Kong, Shenzhen 香港中文大學 (深圳)'),
(77044, 'https://ror.org/04zxvxa53', 'en', 1, 'https://ror.org/04zxvxa53 Society of Hematologic Oncology'),
(77045, 'https://ror.org/033ttrk34', 'en', 1, 'https://ror.org/033ttrk34 Armed Forces College of Medicine'),
(77046, 'https://ror.org/01nd8nc87', 'no_lang_code', 1, 'https://ror.org/01nd8nc87 Equibreed (New Zealand)'),
(77047, 'https://ror.org/04hbttm44', 'en', 1, 'https://ror.org/04hbttm44 VIB-UGent Center for Medical Biotechnology'),
(77048, 'https://ror.org/05bm1gr16', 'en', 1, 'https://ror.org/05bm1gr16 VIB - International Plant Biotechnology Outreach'),
(77049, 'https://ror.org/00bx04e70', 'no_lang_code', 1, 'https://ror.org/00bx04e70 Dopavision (Germany)'),
(77050, 'https://ror.org/041x7eh14', 'en', 1, 'https://ror.org/041x7eh14 VIB-UAntwerp Center for Molecular Neurology'),
(77051, 'https://ror.org/03e84cm85', 'en', 1, 'https://ror.org/03e84cm85 VIB-VUB Center for Structural Biology'),
(77052, 'https://ror.org/032hxaa63', 'no_lang_code', 1, 'https://ror.org/032hxaa63 Otolith Labs (United States)'),
(77053, 'https://ror.org/05y4fay10', 'en', 1, 'https://ror.org/05y4fay10 VIB-VUB Laboratory Myeloid Cell Immunology'),
(77054, 'https://ror.org/01q5h5m61', 'no_lang_code', 1, 'https://ror.org/01q5h5m61 JenaBatteries (Germany)'),
(77055, 'https://ror.org/00558ww90', 'en', 1, 'https://ror.org/00558ww90 Women in Sport'),
(77056, 'https://ror.org/055s5r020', 'no_lang_code', 1, 'https://ror.org/055s5r020 PCL Health (United Kingdom)'),
(77057, 'https://ror.org/00nr3tg23', 'en', 1, 'https://ror.org/00nr3tg23 BioVale'),
(77058, 'https://ror.org/03q35y927', 'no_lang_code', 1, 'https://ror.org/03q35y927 Immune Modulatory Therapies (United States)'),
(77059, 'https://ror.org/0383qdr35', 'en', 1, 'https://ror.org/0383qdr35 Virginia Office of Intergovernmental Affairs'),
(77060, 'https://ror.org/03488tg31', 'en', 1, 'https://ror.org/03488tg31 Academic City College University'),
(77061, 'https://ror.org/04agank23', 'de', 1, 'https://ror.org/04agank23 Klinik Schützen Rheinfelden'),
(77062, 'https://ror.org/003kqe171', 'en', 1, 'https://ror.org/003kqe171 Dominion University College'),
(77063, 'https://ror.org/0437cyz88', 'en', 1, 'https://ror.org/0437cyz88 Ghana Armed Forces Command and Staff College'),
(77064, 'https://ror.org/011kpjv07', 'en', 1, 'https://ror.org/011kpjv07 Institute for Scientific and Technological Information'),
(77065, 'https://ror.org/03kbmhj98', 'en', 1, 'https://ror.org/03kbmhj98 Takoradi Technical University'),
(77066, 'https://ror.org/0210mc841', 'en', 1, 'https://ror.org/0210mc841 Canada Health Infoway'),
(77067, 'https://ror.org/04c00sd86', 'en', 1, 'https://ror.org/04c00sd86 Jacobs Institute'),
(77068, 'https://ror.org/00w4zv247', 'en', 1, 'https://ror.org/00w4zv247 Southern California Reproductive Center'),
(77069, 'https://ror.org/025twjg59', 'en', 1, 'https://ror.org/025twjg59 Berlin Center for Genomics in Biodiversity Research'),
(77070, 'https://ror.org/0505p9044', 'it', 1, 'https://ror.org/0505p9044 Istituto di Sessuologia Clinica'),
(77071, 'https://ror.org/04bgfv325', 'en', 1, 'https://ror.org/04bgfv325 Gifu Heart Center 岐阜ハートセンター'),
(77072, 'https://ror.org/01m9vv151', 'en', 1, 'https://ror.org/01m9vv151 Institute of Orthopedics Banjica Институт за ортопедију Бањица'),
(77073, 'https://ror.org/01nj2n977', 'es', 1, 'https://ror.org/01nj2n977 Gastroenterología Diagnóstica Terapeútica'),
(77074, 'https://ror.org/04b17kf79', 'en', 1, 'https://ror.org/04b17kf79 Centre for Clinical Interventions'),
(77075, 'https://ror.org/04bjbb968', 'en', 1, 'https://ror.org/04bjbb968 Centro Interdisciplinario para la Investigación Acuícola Interdisciplinary Center for Aquaculture Research'),
(77076, 'https://ror.org/01a0ymj74', 'en', 1, 'https://ror.org/01a0ymj74 International Institute of Tropical Agriculture'),
(77077, 'https://ror.org/00ftg6h50', 'en', 1, 'https://ror.org/00ftg6h50 European Graduate School of Neuroscience'),
(77078, 'https://ror.org/056hsfz11', 'en', 1, 'https://ror.org/056hsfz11 Mortimer Market Centre'),
(77079, 'https://ror.org/05p3a9320', 'en', 1, 'https://ror.org/05p3a9320 ORSI Academy'),
(77080, 'https://ror.org/03dn6qp98', 'no_lang_code', 1, 'https://ror.org/03dn6qp98 ABB (Poland)'),
(77081, 'https://ror.org/03r8rqb98', 'en', 1, 'https://ror.org/03r8rqb98 Virtual Reality Medical Institute'),
(77082, 'https://ror.org/002vr4d22', 'en', 1, 'https://ror.org/002vr4d22 Centro Internacional de la Papa International Potato Center'),
(77083, 'https://ror.org/04bjtj194', 'no_lang_code', 1, 'https://ror.org/04bjtj194 Institut za kukuruz "Zemun Polje" Maize Research Institute Zemun Polje'),
(77084, 'https://ror.org/02fhtg636', 'no_lang_code', 1, 'https://ror.org/02fhtg636 NordLab Pohjois-Suomen laboratoriokeskuksen liikelaitoskuntayhtymä'),
(77085, 'https://ror.org/04wc1v131', 'en', 1, 'https://ror.org/04wc1v131 Renal Associates P. A.'),
(77086, 'https://ror.org/00abc2c86', 'en', 1, 'https://ror.org/00abc2c86 Fédération Internationale du Vieillissement International Federation on Ageing'),
(77087, 'https://ror.org/02159rn29', 'en', 1, 'https://ror.org/02159rn29 Kenozero National Park Кенозерский национальный парк'),
(77088, 'https://ror.org/00v50wt26', 'no_lang_code', 1, 'https://ror.org/00v50wt26 Single Cell Discoveries (Netherlands)'),
(77089, 'https://ror.org/05ktaz183', 'no_lang_code', 1, 'https://ror.org/05ktaz183 Diamond Materials (Germany)'),
(77090, 'https://ror.org/047z9d710', 'es', 1, 'https://ror.org/047z9d710 Fundación Hospital San Pedro'),
(77091, 'https://ror.org/04g3k5r52', 'no_lang_code', 1, 'https://ror.org/04g3k5r52 Factual (United States)'),
(77092, 'https://ror.org/03et6y035', 'no_lang_code', 1, 'https://ror.org/03et6y035 Museo Dabawenyo'),
(77093, 'https://ror.org/00k6x7m82', 'it', 1, 'https://ror.org/00k6x7m82 Associazione Calabrese di Epatologia'),
(77094, 'https://ror.org/05g8v8t96', 'no_lang_code', 1, 'https://ror.org/05g8v8t96 Dynamic Biosensors (Germany)'),
(77095, 'https://ror.org/05hsgsk03', 'no_lang_code', 1, 'https://ror.org/05hsgsk03 Glaceum (South Korea)'),
(77096, 'https://ror.org/02g517422', 'no_lang_code', 1, 'https://ror.org/02g517422 CytoDel (United States)'),
(77097, 'https://ror.org/002egtp29', 'en', 1, 'https://ror.org/002egtp29 Arctic Research Centre'),
(77098, 'https://ror.org/01k974c52', 'en', 1, 'https://ror.org/01k974c52 Tibetan Children’s Village हेड ऑफिस, तिब्बती चिल्ड्रन्स विलेज स्कूल'),
(77099, 'https://ror.org/03tmcds80', 'no_lang_code', 1, 'https://ror.org/03tmcds80 Inergio (Switzerland)'),
(77100, 'https://ror.org/038fqq280', 'en', 1, 'https://ror.org/038fqq280 Botswana Geoscience Institute'),
(77101, 'https://ror.org/0329s8h62', 'en', 1, 'https://ror.org/0329s8h62 Oeschger Centre for Climate Change Research'),
(77102, 'https://ror.org/04hsbfk21', 'en', 1, 'https://ror.org/04hsbfk21 Iowa Digestive Disease Center'),
(77103, 'https://ror.org/05ebx7e05', 'no_lang_code', 1, 'https://ror.org/05ebx7e05 TerraRad Tech (Switzerland)'),
(77104, 'https://ror.org/011bss535', 'no_lang_code', 1, 'https://ror.org/011bss535 Victorinox (Switzerland)'),
(77105, 'https://ror.org/040yys981', 'en', 1, 'https://ror.org/040yys981 Horace Mann School'),
(77106, 'https://ror.org/00xfx4h06', 'pt', 1, 'https://ror.org/00xfx4h06 Hospital Santa Paula'),
(77107, 'https://ror.org/00px17r71', 'no_lang_code', 1, 'https://ror.org/00px17r71 Biomica (Israel)'),
(77108, 'https://ror.org/055rntz96', 'no_lang_code', 1, 'https://ror.org/055rntz96 Kologrivsky Nature Reserve Кологривский лес заповедник'),
(77109, 'https://ror.org/044zwwk69', 'no_lang_code', 1, 'https://ror.org/044zwwk69 AlphaThera (United States)'),
(77110, 'https://ror.org/04r1mej53', 'it', 1, 'https://ror.org/04r1mej53 Europa Donna'),
(77111, 'https://ror.org/05wr4m486', 'no_lang_code', 1, 'https://ror.org/05wr4m486 Frontier Geosciences (Canada)'),
(77112, 'https://ror.org/02mnbgz92', 'no_lang_code', 1, 'https://ror.org/02mnbgz92 Informulate (United States)'),
(77113, 'https://ror.org/00me1fb23', 'en', 1, 'https://ror.org/00me1fb23 Retinal Consultants of Arizona'),
(77114, 'https://ror.org/02qvwkt51', 'no_lang_code', 1, 'https://ror.org/02qvwkt51 Tigireksky Nature Reserve Тигирекский заповедник'),
(77115, 'https://ror.org/05hre1985', 'no_lang_code', 1, 'https://ror.org/05hre1985 Lux Research (United States)'),
(77116, 'https://ror.org/03d0x9s65', 'no_lang_code', 1, 'https://ror.org/03d0x9s65 Provinn (Sweden)'),
(77117, 'https://ror.org/01szf1r88', 'no_lang_code', 1, 'https://ror.org/01szf1r88 envibee (Switzerland)'),
(77118, 'https://ror.org/02k5hnj64', 'en', 1, 'https://ror.org/02k5hnj64 Pinnacle Clinical Research'),
(77119, 'https://ror.org/00dyv8n62', 'no_lang_code', 1, 'https://ror.org/00dyv8n62 Sailbri Cooper (United States)'),
(77120, 'https://ror.org/02aq0m513', 'id', 1, 'https://ror.org/02aq0m513 Balai Arkeologi Sulawesi Selatan'),
(77121, 'https://ror.org/038axdp29', 'en', 1, 'https://ror.org/038axdp29 Institute for Musculoskeletal Health'),
(77122, 'https://ror.org/02bpgfv91', 'en', 1, 'https://ror.org/02bpgfv91 Guangzhou Development Zone Hospital 广州开发区医院'),
(77123, 'https://ror.org/052nhsv65', 'en', 1, 'https://ror.org/052nhsv65 Ugra National Park Национальный парк Угра'),
(77124, 'https://ror.org/027jt8826', 'no_lang_code', 1, 'https://ror.org/027jt8826 WuXi AppTec (United States)'),
(77125, 'https://ror.org/00687yy04', 'en', 1, 'https://ror.org/00687yy04 Envoi Specialist Pathologists'),
(77126, 'https://ror.org/01dh8xz10', 'pt', 1, 'https://ror.org/01dh8xz10 São Germano Oncologia'),
(77127, 'https://ror.org/01jbagx41', 'no_lang_code', 1, 'https://ror.org/01jbagx41 Hydrosolutions (Switzerland)'),
(77128, 'https://ror.org/00j6hr569', 'en', 1, 'https://ror.org/00j6hr569 Center for Digital Image Evaluation'),
(77129, 'https://ror.org/02ht65c11', 'de', 1, 'https://ror.org/02ht65c11 SPZ Frankfurt Mitte Sozialpädiatrisches Zentrum Frankfurt Mitte'),
(77130, 'https://ror.org/03dkznf33', 'no_lang_code', 1, 'https://ror.org/03dkznf33 Dempsey (Canada)'),
(77131, 'https://ror.org/05n9k9z81', 'no_lang_code', 1, 'https://ror.org/05n9k9z81 Guangzhou Research and Creativity Biotechnology (China) 广州研创生物'),
(77132, 'https://ror.org/045syea95', 'en', 1, 'https://ror.org/045syea95 Taipei Institute of Pathology 台北病理中心'),
(77133, 'https://ror.org/03sxzz606', 'nl', 1, 'https://ror.org/03sxzz606 Centrum voor Gynaecologische Oncologie Amsterdam'),
(77134, 'https://ror.org/03m60sb72', 'no_lang_code', 1, 'https://ror.org/03m60sb72 Crozet BioPharma (United States)'),
(77135, 'https://ror.org/05dge7437', 'no_lang_code', 1, 'https://ror.org/05dge7437 Jupiter (United States)'),
(77136, 'https://ror.org/022s42002', 'no_lang_code', 1, 'https://ror.org/022s42002 Elasmo Project'),
(77137, 'https://ror.org/02hpx5276', 'no_lang_code', 1, 'https://ror.org/02hpx5276 Dr. Shterev Hospital Медицински комплекс "Д-р Щерев"'),
(77138, 'https://ror.org/05qmhph48', 'no_lang_code', 1, 'https://ror.org/05qmhph48 Solarea Bio (United States)'),
(77139, 'https://ror.org/02bjvzs55', 'en', 1, 'https://ror.org/02bjvzs55 Millennium Nucleus of Ion Channel Associated Diseases Núcleo Milenio de Enfermedades Asociadas a Canales iónicos'),
(77140, 'https://ror.org/00p3egw50', 'no_lang_code', 1, 'https://ror.org/00p3egw50 The Hyve (Netherlands)'),
(77141, 'https://ror.org/029ah8167', 'en', 1, 'https://ror.org/029ah8167 Indian Creek Farm'),
(77142, 'https://ror.org/00yzz2383', 'en', 1, 'https://ror.org/00yzz2383 Hamilton Medical Research Group'),
(77143, 'https://ror.org/00vn9zp29', 'en', 1, 'https://ror.org/00vn9zp29 International Institute for Sustainability Australia'),
(77144, 'https://ror.org/0336ct020', 'en', 1, 'https://ror.org/0336ct020 Caucasian State Natural Biosphere Reserve named after Kh.G. Shaposhnikov Кавказский государственный природный биосферный заповедник имени Х.Г.Шапошникова'),
(77145, 'https://ror.org/01s7bn502', 'en', 1, 'https://ror.org/01s7bn502 Glympse Bio'),
(77146, 'https://ror.org/05xbc7p40', 'fr', 1, 'https://ror.org/05xbc7p40 Médecins Sans Frontières أطباء بلا حدود'),
(77147, 'https://ror.org/05vqpm153', 'de', 1, 'https://ror.org/05vqpm153 GastroZentrum Hirslanden Zürich'),
(77148, 'https://ror.org/02xwnwd15', 'en', 1, 'https://ror.org/02xwnwd15 Directorate of Health and Family Welfare Government of Chhattisgarh संचालनालय स्वास्थ्य एवं परिवार कल्याण विभाग छत्तीसगढ़ शासन'),
(77149, 'https://ror.org/023b5wm02', 'no_lang_code', 1, 'https://ror.org/023b5wm02 Kraken Systems (Croatia)'),
(77150, 'https://ror.org/04tj1wy14', 'en', 1, 'https://ror.org/04tj1wy14 Anti Leprosy Campaign'),
(77151, 'https://ror.org/03b9h7664', 'no_lang_code', 1, 'https://ror.org/03b9h7664 Notable Labs (United States)'),
(77152, 'https://ror.org/00jb67179', 'en', 1, 'https://ror.org/00jb67179 Gasol Foundation'),
(77153, 'https://ror.org/04h5v2n16', 'no_lang_code', 1, 'https://ror.org/04h5v2n16 CareEvolution (United States)'),
(77154, 'https://ror.org/04s0rxb48', 'es', 1, 'https://ror.org/04s0rxb48 Instituto Volcanológico de Canarias'),
(77155, 'https://ror.org/04c504j29', 'no_lang_code', 1, 'https://ror.org/04c504j29 Evolved Analytics (United States)'),
(77156, 'https://ror.org/01w2zd907', 'en', 1, 'https://ror.org/01w2zd907 Nuffield Health'),
(77157, 'https://ror.org/01fx7cm24', 'no_lang_code', 1, 'https://ror.org/01fx7cm24 Digizyme (United States)'),
(77158, 'https://ror.org/02x8mjk39', 'en', 1, 'https://ror.org/02x8mjk39 Tasmanian Land Conservancy'),
(77159, 'https://ror.org/05njepb92', 'en', 1, 'https://ror.org/05njepb92 International Gorilla Conservation Programme'),
(77160, 'https://ror.org/039p7nx39', 'en', 1, 'https://ror.org/039p7nx39 ARC Centre of Excellence for Automated Decision-Making and Society'),
(77161, 'https://ror.org/01h55za35', 'en', 1, 'https://ror.org/01h55za35 ARC Centre of Excellence for the Digital Child'),
(77162, 'https://ror.org/01nsxs283', 'en', 1, 'https://ror.org/01nsxs283 ARC Centre of Excellence for Enabling Eco-Efficient Beneficiation of Minerals'),
(77163, 'https://ror.org/01p2zg436', 'en', 1, 'https://ror.org/01p2zg436 ARC Centre of Excellence in Synthetic Biology'),
(77164, 'https://ror.org/05sh7tb37', 'en', 1, 'https://ror.org/05sh7tb37 ARC Centre of Excellence for Transformative Meta-Optical Systems'),
(77165, 'https://ror.org/04n9jx253', 'en', 1, 'https://ror.org/04n9jx253 Medford Radiology Group'),
(77166, 'https://ror.org/045gefm38', 'en', 1, 'https://ror.org/045gefm38 Gloucester Marine Genomics Institute'),
(77167, 'https://ror.org/03kezgr11', 'en', 1, 'https://ror.org/03kezgr11 Stanford Blood Center'),
(77168, 'https://ror.org/03w84vf57', 'no_lang_code', 1, 'https://ror.org/03w84vf57 Nestlé (Singapore)'),
(77169, 'https://ror.org/04a7cz929', 'en', 1, 'https://ror.org/04a7cz929 Kids Saving the Rainforest'),
(77170, 'https://ror.org/04rtztn12', 'no_lang_code', 1, 'https://ror.org/04rtztn12 Abt Associates (Nepal)'),
(77171, 'https://ror.org/05y122w12', 'en', 1, 'https://ror.org/05y122w12 Lehmann Eye Center'),
(77172, 'https://ror.org/04gs0eq62', 'en', 1, 'https://ror.org/04gs0eq62 The Childhood Acute Illness and Nutrition Network'),
(77173, 'https://ror.org/055jd5n10', 'en', 1, 'https://ror.org/055jd5n10 Wildlife Science Center'),
(77174, 'https://ror.org/02b47v767', 'en', 1, 'https://ror.org/02b47v767 Olyokma Nature Reserve ФГБУ «Государственный природный заповедник «Олёкминский»'),
(77175, 'https://ror.org/02rkjsq72', 'no_lang_code', 1, 'https://ror.org/02rkjsq72 SAS Institute (Ireland)'),
(77176, 'https://ror.org/03a1nz111', 'es', 1, 'https://ror.org/03a1nz111 CEVAXIN'),
(77177, 'https://ror.org/02s6byd36', 'en', 1, 'https://ror.org/02s6byd36 Center for Outcomes Research in Liver Diseases'),
(77178, 'https://ror.org/04gf9zd51', 'no_lang_code', 1, 'https://ror.org/04gf9zd51 Incisive Genetics (Canada)'),
(77179, 'https://ror.org/044b8qb17', 'no_lang_code', 1, 'https://ror.org/044b8qb17 EarthCape (Finland)'),
(77180, 'https://ror.org/055ybaf35', 'en', 1, 'https://ror.org/055ybaf35 Urban Emissions Info'),
(77181, 'https://ror.org/014ezsb26', 'en', 1, 'https://ror.org/014ezsb26 United Nations Children''s Fund Niger'),
(77182, 'https://ror.org/039cvdc85', 'no_lang_code', 1, 'https://ror.org/039cvdc85 Tianmu Lake Institute of Advanced Energy Storage Technologies (China)'),
(77183, 'https://ror.org/05h29rm85', 'de', 1, 'https://ror.org/05h29rm85 Muskelzentrum/ALS Clinic'),
(77184, 'https://ror.org/01hdnty41', 'pt', 1, 'https://ror.org/01hdnty41 Centro Paulista de Investigação Clinica'),
(77185, 'https://ror.org/04v7b3f33', 'no_lang_code', 1, 'https://ror.org/04v7b3f33 Helen Keller International Nepal'),
(77186, 'https://ror.org/00s2ct942', 'no_lang_code', 1, 'https://ror.org/00s2ct942 iDirect Government (United States)'),
(77187, 'https://ror.org/054b5mv70', 'no_lang_code', 1, 'https://ror.org/054b5mv70 Cycle (Germany)'),
(77188, 'https://ror.org/03ztw9d82', 'en', 1, 'https://ror.org/03ztw9d82 Department of Statistics Malaysia'),
(77189, 'https://ror.org/051btyw27', 'no_lang_code', 1, 'https://ror.org/051btyw27 Erum Biotechnologies (South Korea)'),
(77190, 'https://ror.org/0394pt124', 'en', 1, 'https://ror.org/0394pt124 Irish Children''s Arthritis Network'),
(77191, 'https://ror.org/01cer8f17', 'no_lang_code', 1, 'https://ror.org/01cer8f17 H2Pro (Israel)'),
(77192, 'https://ror.org/047zgkt86', 'en', 1, 'https://ror.org/047zgkt86 National Museum of the Philippines Pambansang Museo ng Pilipinas'),
(77193, 'https://ror.org/05nh0hr31', 'no_lang_code', 1, 'https://ror.org/05nh0hr31 Icon (Australia)'),
(77194, 'https://ror.org/03vj6de86', 'no_lang_code', 1, 'https://ror.org/03vj6de86 Advanced Micro-Fabrication Equipment (China) 中微半导体设备'),
(77195, 'https://ror.org/019w2q474', 'en', 1, 'https://ror.org/019w2q474 Kanti Children''s Hospital'),
(77196, 'https://ror.org/05v9jew52', 'no_lang_code', 1, 'https://ror.org/05v9jew52 National Park Braslavskie Ozera Нацыянальны парк Браслаўскія азёры'),
(77197, 'https://ror.org/044z70396', 'en', 1, 'https://ror.org/044z70396 Broome Regional Aboriginal Medical Service'),
(77198, 'https://ror.org/01bvxvq19', 'en', 1, 'https://ror.org/01bvxvq19 Hong Kong Observatory 香港天文台'),
(77199, 'https://ror.org/02artxk90', 'no_lang_code', 1, 'https://ror.org/02artxk90 Resolve Therapeutics (United States)'),
(77200, 'https://ror.org/040tczt20', 'no_lang_code', 1, 'https://ror.org/040tczt20 Science Groove (Japan) サイエンスグルーヴ'),
(77201, 'https://ror.org/00513r667', 'en', 1, 'https://ror.org/00513r667 Wellington Free Ambulance'),
(77202, 'https://ror.org/02hfbe980', 'de', 1, 'https://ror.org/02hfbe980 Biologische Station Neusiedler See'),
(77203, 'https://ror.org/00f1drj74', 'en', 1, 'https://ror.org/00f1drj74 Seeta Eye Centers'),
(77204, 'https://ror.org/03evrfb35', 'en', 1, 'https://ror.org/03evrfb35 United Nations Children''s Fund'),
(77205, 'https://ror.org/0523kvm53', 'en', 1, 'https://ror.org/0523kvm53 Innovating Health International'),
(77206, 'https://ror.org/02dxfxz15', 'en', 1, 'https://ror.org/02dxfxz15 Wild Nature Institute'),
(77207, 'https://ror.org/05kz57e33', 'en', 1, 'https://ror.org/05kz57e33 Day Family Medicine'),
(77208, 'https://ror.org/04b4sm863', 'no_lang_code', 1, 'https://ror.org/04b4sm863 Ally Therapeutics (United States)'),
(77209, 'https://ror.org/037h5rj68', 'en', 1, 'https://ror.org/037h5rj68 Hybrid Rapeseed Research Center of Shaanxi Province 陕西省杂交油菜研究中心'),
(77210, 'https://ror.org/05hnphf80', 'no_lang_code', 1, 'https://ror.org/05hnphf80 CommuniCare Family of Companies (United States)'),
(77211, 'https://ror.org/05ey1mh42', 'no_lang_code', 1, 'https://ror.org/05ey1mh42 Riverside Technology (United States)'),
(77212, 'https://ror.org/04d9bp554', 'pt', 1, 'https://ror.org/04d9bp554 Instituto Nacional de Estatística National Statistics Institute'),
(77213, 'https://ror.org/05vjzsz83', 'no_lang_code', 1, 'https://ror.org/05vjzsz83 FinVector (Finland)'),
(77214, 'https://ror.org/02rjzcj48', 'no_lang_code', 1, 'https://ror.org/02rjzcj48 RedCastle Resources (United States)'),
(77215, 'https://ror.org/044f91d43', 'no_lang_code', 1, 'https://ror.org/044f91d43 Kagami Crystal (Japan) カガミクリスタル'),
(77216, 'https://ror.org/000hftw80', 'no_lang_code', 1, 'https://ror.org/000hftw80 Nuclera (United Kingdom)'),
(77217, 'https://ror.org/03vjfx044', 'no_lang_code', 1, 'https://ror.org/03vjfx044 Sentieon (United States)'),
(77218, 'https://ror.org/05s1jm910', 'pt', 1, 'https://ror.org/05s1jm910 Associação Projecto Vitó'),
(77219, 'https://ror.org/02t3f4288', 'es', 1, 'https://ror.org/02t3f4288 Centro de Medicina Avanzada Dr. Abel Gonzalez'),
(77220, 'https://ror.org/03xzcaz17', 'en', 1, 'https://ror.org/03xzcaz17 Urology of Indiana'),
(77221, 'https://ror.org/00saq8k02', 'no_lang_code', 1, 'https://ror.org/00saq8k02 Immunai (United States)'),
(77222, 'https://ror.org/02nv6cz40', 'no_lang_code', 1, 'https://ror.org/02nv6cz40 Complete Omics (United States)'),
(77223, 'https://ror.org/01bzqs207', 'no_lang_code', 1, 'https://ror.org/01bzqs207 Avidea Technologies (United States)'),
(77224, 'https://ror.org/02rxmsn03', 'no_lang_code', 1, 'https://ror.org/02rxmsn03 Notal Vision (Israel)'),
(77225, 'https://ror.org/05dzd9d14', 'nl', 1, 'https://ror.org/05dzd9d14 GGD Hart voor Brabant Gemeentelijke gezondheidsdienst Hart voor Brabant'),
(77226, 'https://ror.org/05k7y1t77', 'en', 1, 'https://ror.org/05k7y1t77 Fairmed'),
(77227, 'https://ror.org/05pq7y258', 'en', 1, 'https://ror.org/05pq7y258 Police of the Czech Republic Policie České republiky'),
(77228, 'https://ror.org/055mpn097', 'en', 1, 'https://ror.org/055mpn097 Sanno Medical Center'),
(77229, 'https://ror.org/04btxjt62', 'no_lang_code', 1, 'https://ror.org/04btxjt62 NLR Nepal'),
(77230, 'https://ror.org/05skpc353', 'no_lang_code', 1, 'https://ror.org/05skpc353 TriNetX (United States)'),
(77231, 'https://ror.org/02kc80b57', 'en', 1, 'https://ror.org/02kc80b57 The Dian Fossey Gorilla Fund International'),
(77232, 'https://ror.org/012y0eh02', 'no_lang_code', 1, 'https://ror.org/012y0eh02 Theolytics (United Kingdom)'),
(77233, 'https://ror.org/02y41xn75', 'en', 1, 'https://ror.org/02y41xn75 State Nature Reserve "Bolshaya Kokshaga" Государственный природный заповедник «Большая Кокшага»'),
(77234, 'https://ror.org/05mcasn19', 'no_lang_code', 1, 'https://ror.org/05mcasn19 Kuznetsk Alatau Nature Reserve Кузнецкий Алатау заповедник'),
(77235, 'https://ror.org/03n0ara52', 'en', 1, 'https://ror.org/03n0ara52 Possover International Medical Center'),
(77236, 'https://ror.org/03j50y383', 'en', 1, 'https://ror.org/03j50y383 Monash IVF'),
(77237, 'https://ror.org/04djh6c16', 'no_lang_code', 1, 'https://ror.org/04djh6c16 Logopharm (Germany)'),
(77238, 'https://ror.org/04wegfc89', 'en', 1, 'https://ror.org/04wegfc89 Westchester County Department of Health'),
(77239, 'https://ror.org/01rcv7z31', 'en', 1, 'https://ror.org/01rcv7z31 Dermacross'),
(77240, 'https://ror.org/05v9dz963', 'es', 1, 'https://ror.org/05v9dz963 Instituto Médico Río Cuarto'),
(77241, 'https://ror.org/01s8ff678', 'no_lang_code', 1, 'https://ror.org/01s8ff678 Tomita Hospital'),
(77242, 'https://ror.org/04gp2vw59', 'no_lang_code', 1, 'https://ror.org/04gp2vw59 GenomiCare (China)'),
(77243, 'https://ror.org/03c3zes23', 'es', 1, 'https://ror.org/03c3zes23 Inria Chile'),
(77244, 'https://ror.org/04wan7j07', 'fr', 1, 'https://ror.org/04wan7j07 Réseau d''Allergo-Vigilance'),
(77245, 'https://ror.org/03yt81x83', 'no_lang_code', 1, 'https://ror.org/03yt81x83 Autovista (Finland)'),
(77246, 'https://ror.org/00kfe0n78', 'en', 1, 'https://ror.org/00kfe0n78 Gastroenterology Group of Rochester'),
(77247, 'https://ror.org/01cgvw868', 'en', 1, 'https://ror.org/01cgvw868 Joep Lange Institute'),
(77248, 'https://ror.org/01rnrha09', 'no_lang_code', 1, 'https://ror.org/01rnrha09 International Wildlife Consultants (United Kingdom)'),
(77249, 'https://ror.org/010yy8b40', 'en', 1, 'https://ror.org/010yy8b40 NLR India'),
(77250, 'https://ror.org/02qgpm702', 'en', 1, 'https://ror.org/02qgpm702 Aioi City Board of Education 相生市教育委員会'),
(77251, 'https://ror.org/05nk2np19', 'no_lang_code', 1, 'https://ror.org/05nk2np19 ACS Solutions (United States)'),
(77252, 'https://ror.org/01j409m42', 'en', 1, 'https://ror.org/01j409m42 Nurgush Nature Reserve Нургуш заповедник'),
(77253, 'https://ror.org/03v0qmb62', 'hr', 1, 'https://ror.org/03v0qmb62 Institut za javno zdravlje Crne Gore'),
(77254, 'https://ror.org/025qwfz43', 'en', 1, 'https://ror.org/025qwfz43 Geological Survey of Namibia'),
(77255, 'https://ror.org/0390g6860', 'en', 1, 'https://ror.org/0390g6860 Vodlozersky National Park Водлозерский национальный парк'),
(77256, 'https://ror.org/01726w403', 'en', 1, 'https://ror.org/01726w403 Shushensky Bor National Park национальный парк «Шушенский бор'),
(77257, 'https://ror.org/010vedh32', 'en', 1, 'https://ror.org/010vedh32 New Jersey Urology'),
(77258, 'https://ror.org/014b0da27', 'en', 1, 'https://ror.org/014b0da27 Crystal Run Healthcare'),
(77259, 'https://ror.org/028xcne52', 'en', 1, 'https://ror.org/028xcne52 Mukachevo State University Мукачівський державний університет'),
(77260, 'https://ror.org/028a0yj94', 'no_lang_code', 1, 'https://ror.org/028a0yj94 ARAconsult (Austria)'),
(77261, 'https://ror.org/002v4hw29', 'en', 1, 'https://ror.org/002v4hw29 Sikhote-Alin Nature Reserve Сихотэ-Алинский заповедник'),
(77262, 'https://ror.org/05s41sf03', 'en', 1, 'https://ror.org/05s41sf03 Baikal Nature Reserve Байка́льский запове́дник'),
(77263, 'https://ror.org/04kkkns02', 'no_lang_code', 1, 'https://ror.org/04kkkns02 PanTheryx (United States)'),
(77264, 'https://ror.org/00k4dpj65', 'en', 1, 'https://ror.org/00k4dpj65 Privolshky Les Nature Reserve Приволжская лесостепь заповедник'),
(77265, 'https://ror.org/04d6p1917', 'en', 1, 'https://ror.org/04d6p1917 National Center of Public Health of the Ministry of Health of the Republic of Kazakhstan НАЦИОНАЛЬНЫЙ ЦЕНТР ОБЩЕСТВЕННОГО ЗДРАВООХРАНЕНИЯ МИНИСТЕРСТВА ЗДРАВООХРАНЕНИЯ РЕСПУБЛИКИ КАЗАХСТАН'),
(77266, 'https://ror.org/025et0929', 'en', 1, 'https://ror.org/025et0929 San Francisco Estuary Institute'),
(77267, 'https://ror.org/035q1h929', 'en', 1, 'https://ror.org/035q1h929 Pryazovskyi National Nature Park Приазовський національний природний парк'),
(77268, 'https://ror.org/00qsmvq80', 'en', 1, 'https://ror.org/00qsmvq80 Edwin Clark University'),
(77269, 'https://ror.org/05eak0w67', 'en', 1, 'https://ror.org/05eak0w67 Taraclia State University Universitatea de Stat „Grigore Țamblac” din Taraclia'),
(77270, 'https://ror.org/045kf1278', 'en', 1, 'https://ror.org/045kf1278 V. Peskov Voronezhsky State Nature Biosphere Reserve ВОРОНЕЖСКИЙ ГОСУДАРСТВЕННЫЙ ПРИРОДНЫЙ БИОСФЕРНЫЙ ЗАПОВЕДНИК ИМЕНИ В.М. ПЕСКОВА'),
(77271, 'https://ror.org/036kvxa54', 'en', 1, 'https://ror.org/036kvxa54 Academia "Ștefan cel Mare" a Ministerului Afacerilor Interne Ştefan cel Mare Police Academy'),
(77272, 'https://ror.org/05peb2h15', 'en', 1, 'https://ror.org/05peb2h15 State University of Physical Education and Sport Universitatea de Stat de Educaţie Fizică şi Sport'),
(77273, 'https://ror.org/04z941r10', 'en', 1, 'https://ror.org/04z941r10 Remote Sensing Technology Center of Japan リモート・センシング技術センター'),
(77274, 'https://ror.org/029v5hv47', 'no_lang_code', 1, 'https://ror.org/029v5hv47 Antaros Medical (Sweden)'),
(77275, 'https://ror.org/01xaj4023', 'no_lang_code', 1, 'https://ror.org/01xaj4023 CDM Smith (Australia)'),
(77276, 'https://ror.org/00m2ky193', 'no_lang_code', 1, 'https://ror.org/00m2ky193 Biohaven Pharmaceuticals (United States)'),
(77277, 'https://ror.org/00b0fqv31', 'en', 1, 'https://ror.org/00b0fqv31 D-Tree International'),
(77278, 'https://ror.org/05kd8e855', 'en', 1, 'https://ror.org/05kd8e855 North Karelia Center for Public Health Pohjois-Karjalan Kansanterveyden Keskus'),
(77279, 'https://ror.org/01e73dz52', 'no_lang_code', 1, 'https://ror.org/01e73dz52 Mira Geoscience (Canada)'),
(77280, 'https://ror.org/002v3hs06', 'en', 1, 'https://ror.org/002v3hs06 Ipar Perspective'),
(77281, 'https://ror.org/03j4s9c05', 'no_lang_code', 1, 'https://ror.org/03j4s9c05 Agua y Saneamientos Argentinos Argentine Water and Sanitation (Argentina)'),
(77282, 'https://ror.org/0394gjn55', 'no_lang_code', 1, 'https://ror.org/0394gjn55 BridgeBio (United States)'),
(77283, 'https://ror.org/03b5mky78', 'no_lang_code', 1, 'https://ror.org/03b5mky78 Somahlution (United States)'),
(77284, 'https://ror.org/00f6fw078', 'no_lang_code', 1, 'https://ror.org/00f6fw078 Cumberland Research Associates (United States)'),
(77285, 'https://ror.org/00dnats08', 'no_lang_code', 1, 'https://ror.org/00dnats08 Opris Consulting (United States)'),
(77286, 'https://ror.org/05kxg4a92', 'en', 1, 'https://ror.org/05kxg4a92 National Institute for Implementation Research on Non-Communicable Diseases'),
(77287, 'https://ror.org/02yxdv803', 'en', 1, 'https://ror.org/02yxdv803 Jain Family Institute'),
(77288, 'https://ror.org/00dfvzs39', 'no_lang_code', 1, 'https://ror.org/00dfvzs39 Swiss Re (United States)'),
(77289, 'https://ror.org/012hfdz28', 'fr', 1, 'https://ror.org/012hfdz28 Centre de Référence des Maladies Autoinflammatoires et des Amyloses'),
(77290, 'https://ror.org/02pr0q451', 'en', 1, 'https://ror.org/02pr0q451 Allergy Action'),
(77291, 'https://ror.org/045qred77', 'no_lang_code', 1, 'https://ror.org/045qred77 Iridian Genomes'),
(77292, 'https://ror.org/03ajcy837', 'en', 1, 'https://ror.org/03ajcy837 West Texas Retina Consultants'),
(77293, 'https://ror.org/003edc064', 'en', 1, 'https://ror.org/003edc064 CorVita Science Foundation'),
(77294, 'https://ror.org/03mef7y36', 'no_lang_code', 1, 'https://ror.org/03mef7y36 GeoModelling Solutions (Switzerland)'),
(77295, 'https://ror.org/04gbtp312', 'en', 1, 'https://ror.org/04gbtp312 Agencia Insular de la Energía de Tenerife Tenerife Island Energy Agency'),
(77296, 'https://ror.org/00bpkwt94', 'es', 1, 'https://ror.org/00bpkwt94 Centro Médico Bustos Fernandez'),
(77297, 'https://ror.org/04en6sc21', 'es', 1, 'https://ror.org/04en6sc21 Fundacion Venezolana de Investigaciones Sismologicas'),
(77298, 'https://ror.org/04mwky069', 'no_lang_code', 1, 'https://ror.org/04mwky069 RapidAIM (Australia)'),
(77299, 'https://ror.org/04th0dc64', 'en', 1, 'https://ror.org/04th0dc64 Toronto Liver Centre'),
(77300, 'https://ror.org/059w1vn19', 'en', 1, 'https://ror.org/059w1vn19 Little Sosva Nature Reserve Малая Сосьва заповедник'),
(77301, 'https://ror.org/03t432d20', 'en', 1, 'https://ror.org/03t432d20 Pediatrics and Genetics'),
(77302, 'https://ror.org/02zz8b038', 'no_lang_code', 1, 'https://ror.org/02zz8b038 Waves Audio (Israel)'),
(77303, 'https://ror.org/02qbrk786', 'en', 1, 'https://ror.org/02qbrk786 Carl von Linné Clinic'),
(77304, 'https://ror.org/018mx4905', 'en', 1, 'https://ror.org/018mx4905 National Park Meshera Мещёра (национальный парк))'),
(77305, 'https://ror.org/03jfqp972', 'en', 1, 'https://ror.org/03jfqp972 Clark County Public Health'),
(77306, 'https://ror.org/05ght7821', 'en', 1, 'https://ror.org/05ght7821 Allergy Partners of Lynchburg'),
(77307, 'https://ror.org/04bwzfc79', 'no_lang_code', 1, 'https://ror.org/04bwzfc79 Invisible Software (United States)');
INSERT INTO `rors` VALUES
(77308, 'https://ror.org/03r5x2b75', 'en', 1, 'https://ror.org/03r5x2b75 The Metabolomics Innovation Centre'),
(77309, 'https://ror.org/05c3e8627', 'en', 1, 'https://ror.org/05c3e8627 Togolese Ministry of Health'),
(77310, 'https://ror.org/056qhkx89', 'en', 1, 'https://ror.org/056qhkx89 Lake Macquarie Private Hospital'),
(77311, 'https://ror.org/03r1tnz13', 'en', 1, 'https://ror.org/03r1tnz13 Taymyr Nature Reserve Таймырский заповедник'),
(77312, 'https://ror.org/01dmz0g51', 'en', 1, 'https://ror.org/01dmz0g51 HeartMath Institute'),
(77313, 'https://ror.org/03q4q6w91', 'no_lang_code', 1, 'https://ror.org/03q4q6w91 Carl Zeiss (China)'),
(77314, 'https://ror.org/02hjc1385', 'no_lang_code', 1, 'https://ror.org/02hjc1385 Lettis Consultants International (United States)'),
(77315, 'https://ror.org/04aa9rd76', 'en', 1, 'https://ror.org/04aa9rd76 Gastroenterology Center of Connecticut'),
(77316, 'https://ror.org/02heqdm85', 'ro', 1, 'https://ror.org/02heqdm85 Romanian Ornithological Society Societatea Ornitologică Română'),
(77317, 'https://ror.org/012547n22', 'en', 1, 'https://ror.org/012547n22 Jeffrey D. Horn Vision For Life'),
(77318, 'https://ror.org/05hak3w16', 'en', 1, 'https://ror.org/05hak3w16 National Commission on Indigenous Peoples Pambansang Komisyon sa mga Katutubong Mamamayan'),
(77319, 'https://ror.org/02hf3ga17', 'en', 1, 'https://ror.org/02hf3ga17 Glacier Cave Explorers'),
(77320, 'https://ror.org/01pdrgk70', 'en', 1, 'https://ror.org/01pdrgk70 The Negros Museum'),
(77321, 'https://ror.org/03ymqts82', 'es', 1, 'https://ror.org/03ymqts82 Casa del Niño Hospital Infantil'),
(77322, 'https://ror.org/05jtv2231', 'en', 1, 'https://ror.org/05jtv2231 Reproductive Biology Associates'),
(77323, 'https://ror.org/05hg1ny67', 'en', 1, 'https://ror.org/05hg1ny67 SRCC Children’s Hospital'),
(77324, 'https://ror.org/0544srg78', 'es', 1, 'https://ror.org/0544srg78 Fundación Para La Investigación Y Gestión En Servicios de Salud'),
(77325, 'https://ror.org/058fcc996', 'fr', 1, 'https://ror.org/058fcc996 Agence Wallonne du Patrimoine Walloon Heritage Agency'),
(77326, 'https://ror.org/01vny5262', 'no_lang_code', 1, 'https://ror.org/01vny5262 Sensory Cloud (United States)'),
(77327, 'https://ror.org/00yam4t82', 'no_lang_code', 1, 'https://ror.org/00yam4t82 McKing Consulting (United States)'),
(77328, 'https://ror.org/03hxj3015', 'no', 1, 'https://ror.org/03hxj3015 SpesialistSenteret Pilestredet Park'),
(77329, 'https://ror.org/02zht5x56', 'fr', 1, 'https://ror.org/02zht5x56 Centre Hospitalier Sud-Essonne Dourdan-Etampes'),
(77330, 'https://ror.org/01fm5g896', 'no_lang_code', 1, 'https://ror.org/01fm5g896 Olink (United States)'),
(77331, 'https://ror.org/05h7r9v23', 'no_lang_code', 1, 'https://ror.org/05h7r9v23 Akari Therapeutics (United Kingdom)'),
(77332, 'https://ror.org/03je9ev90', 'en', 1, 'https://ror.org/03je9ev90 World Health Organization - Malawi'),
(77333, 'https://ror.org/04fqydq58', 'de', 1, 'https://ror.org/04fqydq58 See-Spital'),
(77334, 'https://ror.org/03ybh5p71', 'en', 1, 'https://ror.org/03ybh5p71 National Archeological Anthropological Memory Management'),
(77335, 'https://ror.org/00cv8gc24', 'no_lang_code', 1, 'https://ror.org/00cv8gc24 ENPICOM (Netherlands)'),
(77336, 'https://ror.org/02mjymy60', 'no_lang_code', 1, 'https://ror.org/02mjymy60 Cyano Biotech (Germany)'),
(77337, 'https://ror.org/05tkt0g15', 'no_lang_code', 1, 'https://ror.org/05tkt0g15 Bio4Dreams (Italy)'),
(77338, 'https://ror.org/00kk62m43', 'no_lang_code', 1, 'https://ror.org/00kk62m43 MBMed (Argentina)'),
(77339, 'https://ror.org/01gw91x75', 'en', 1, 'https://ror.org/01gw91x75 Software Training and Development Centre'),
(77340, 'https://ror.org/031k1tq46', 'en', 1, 'https://ror.org/031k1tq46 Carpathian National Nature Park Карпатський національний природний парк'),
(77341, 'https://ror.org/03mg0pe18', 'fr', 1, 'https://ror.org/03mg0pe18 Centre Hospitalier de Dax –Côte d’Argent'),
(77342, 'https://ror.org/05q7ca195', 'no_lang_code', 1, 'https://ror.org/05q7ca195 Wyatt Technology (China) 怀雅特技术公司'),
(77343, 'https://ror.org/01a0pgd23', 'fr', 1, 'https://ror.org/01a0pgd23 Observatoire Français de la Sclérose en Plaques Sclérose en plaques'),
(77344, 'https://ror.org/04pmbtr45', 'no_lang_code', 1, 'https://ror.org/04pmbtr45 Linkster Therapeutics (Switzerland)'),
(77345, 'https://ror.org/017mdtk85', 'en', 1, 'https://ror.org/017mdtk85 Quantified Uncertainty Research Institute'),
(77346, 'https://ror.org/02at6q094', 'en', 1, 'https://ror.org/02at6q094 WaterAid'),
(77347, 'https://ror.org/005y23t65', 'de', 1, 'https://ror.org/005y23t65 Schön Klinik Vogtareuth'),
(77348, 'https://ror.org/01csrpp22', 'en', 1, 'https://ror.org/01csrpp22 Hospiten Group'),
(77349, 'https://ror.org/04wsbgw88', 'no_lang_code', 1, 'https://ror.org/04wsbgw88 Heartfile'),
(77350, 'https://ror.org/05me0b438', 'no_lang_code', 1, 'https://ror.org/05me0b438 FAIRMED'),
(77351, 'https://ror.org/01yys9r78', 'fr', 1, 'https://ror.org/01yys9r78 Hôpital Saint- Camille'),
(77352, 'https://ror.org/001w50q34', 'de', 1, 'https://ror.org/001w50q34 Barmherzige Schwestern Krankenhaus Wien'),
(77353, 'https://ror.org/049vtwv63', 'no_lang_code', 1, 'https://ror.org/049vtwv63 Hauri (Germany)'),
(77354, 'https://ror.org/015pm1582', 'no_lang_code', 1, 'https://ror.org/015pm1582 Remit Kenya (Kenya)'),
(77355, 'https://ror.org/020jz5y49', 'en', 1, 'https://ror.org/020jz5y49 Ilembula Lutheran Hospital'),
(77356, 'https://ror.org/00zjkgd30', 'en', 1, 'https://ror.org/00zjkgd30 Parkinson’s Disease and Movement Disorder Center of Silicon Valley'),
(77357, 'https://ror.org/00p9kvn81', 'no_lang_code', 1, 'https://ror.org/00p9kvn81 Pacific Radiology (New Zealand)'),
(77358, 'https://ror.org/02d32n026', 'no_lang_code', 1, 'https://ror.org/02d32n026 Gastro One (United States)'),
(77359, 'https://ror.org/0000c1w11', 'en', 1, 'https://ror.org/0000c1w11 Kivach Nature Reserve Кивач заповедник'),
(77360, 'https://ror.org/00qvd7w26', 'no_lang_code', 1, 'https://ror.org/00qvd7w26 Pivot'),
(77361, 'https://ror.org/0345aqb42', 'no_lang_code', 1, 'https://ror.org/0345aqb42 Atuka (Canada)'),
(77362, 'https://ror.org/0555ajd25', 'en', 1, 'https://ror.org/0555ajd25 Kyiv City Clinical Oncology Center'),
(77363, 'https://ror.org/00y48xj05', 'es', 1, 'https://ror.org/00y48xj05 Hospital Roberto del Rio'),
(77364, 'https://ror.org/02mecht53', 'en', 1, 'https://ror.org/02mecht53 Extreme Weather Expertise'),
(77365, 'https://ror.org/02mn5cm26', 'nl', 1, 'https://ror.org/02mn5cm26 GGD Limburg-Noord Gemeenschappelijke Gezondheidsdienst Limburg-Noord'),
(77366, 'https://ror.org/01715vy32', 'en', 1, 'https://ror.org/01715vy32 North Shore Health Department'),
(77367, 'https://ror.org/04exbp452', 'pt', 1, 'https://ror.org/04exbp452 Hospital Sepaco'),
(77368, 'https://ror.org/009cyv989', 'en', 1, 'https://ror.org/009cyv989 Aga Khan Development Network'),
(77369, 'https://ror.org/04z57ga44', 'pl', 1, 'https://ror.org/04z57ga44 Przedszkole Nr 81'),
(77370, 'https://ror.org/03a5ms192', 'es', 1, 'https://ror.org/03a5ms192 Centro de Ornitología y Biodiversidad'),
(77371, 'https://ror.org/05rvhh551', 'en', 1, 'https://ror.org/05rvhh551 Alliance for Public Health Альянс громадського здоров''я'),
(77372, 'https://ror.org/023syz457', 'en', 1, 'https://ror.org/023syz457 KidsOR'),
(77373, 'https://ror.org/02vqknm77', 'no_lang_code', 1, 'https://ror.org/02vqknm77 Alcon (Canada)'),
(77374, 'https://ror.org/04qyar702', 'no_lang_code', 1, 'https://ror.org/04qyar702 Alcon (United Kingdom)'),
(77375, 'https://ror.org/010spvh97', 'no_lang_code', 1, 'https://ror.org/010spvh97 Alcon (France)'),
(77376, 'https://ror.org/041th5h66', 'no_lang_code', 1, 'https://ror.org/041th5h66 GI Specialists of Georgia (United States)'),
(77377, 'https://ror.org/04fqpw856', 'no_lang_code', 1, 'https://ror.org/04fqpw856 Alcon (South Korea)'),
(77378, 'https://ror.org/02tspge21', 'no_lang_code', 1, 'https://ror.org/02tspge21 Alcon (Japan)'),
(77379, 'https://ror.org/03cys3p26', 'no_lang_code', 1, 'https://ror.org/03cys3p26 Alcon (Italy)'),
(77380, 'https://ror.org/043qqcs43', 'en', 1, 'https://ror.org/043qqcs43 Japan Wildlife Research Center 一般財団法人 自然環境研究センター'),
(77381, 'https://ror.org/04bm3fw61', 'no_lang_code', 1, 'https://ror.org/04bm3fw61 Alcon (Ireland)'),
(77382, 'https://ror.org/02ja8nd79', 'no_lang_code', 1, 'https://ror.org/02ja8nd79 Alcon (China)'),
(77383, 'https://ror.org/035ze0n48', 'no_lang_code', 1, 'https://ror.org/035ze0n48 Alcon (India)'),
(77384, 'https://ror.org/03fm0ke30', 'no_lang_code', 1, 'https://ror.org/03fm0ke30 GHGSat (Canada)'),
(77385, 'https://ror.org/00be4tw47', 'en', 1, 'https://ror.org/00be4tw47 Vyzhnytsia National Nature Park Національний природний парк «Вижницький»'),
(77386, 'https://ror.org/03z8y5a52', 'en', 1, 'https://ror.org/03z8y5a52 VASCage'),
(77387, 'https://ror.org/00qwa8m09', 'no_lang_code', 1, 'https://ror.org/00qwa8m09 Immunitas Therapeutics (United States)'),
(77388, 'https://ror.org/01hbz9j78', 'no_lang_code', 1, 'https://ror.org/01hbz9j78 Pointcloud (United States)'),
(77389, 'https://ror.org/056cwrs58', 'en', 1, 'https://ror.org/056cwrs58 Japan Link Center ジャパンリンクセンタ'),
(77390, 'https://ror.org/00z18yv90', 'en', 1, 'https://ror.org/00z18yv90 Royal Centre for Disease Control'),
(77391, 'https://ror.org/04bzz3t90', 'nl', 1, 'https://ror.org/04bzz3t90 Zuidwester'),
(77392, 'https://ror.org/03gnrk197', 'no_lang_code', 1, 'https://ror.org/03gnrk197 Pantheon Biosciences (Israel)'),
(77393, 'https://ror.org/029kstx64', 'no_lang_code', 1, 'https://ror.org/029kstx64 Kani Tono Hospital 可児とうのう病院'),
(77394, 'https://ror.org/04ve2jr14', 'no_lang_code', 1, 'https://ror.org/04ve2jr14 Atos (Netherlands)'),
(77395, 'https://ror.org/00kwbng41', 'en', 1, 'https://ror.org/00kwbng41 Spinal Cord Injury Ontario'),
(77396, 'https://ror.org/0519z1231', 'en', 1, 'https://ror.org/0519z1231 Resphera Biosciences'),
(77397, 'https://ror.org/007k0m436', 'es', 1, 'https://ror.org/007k0m436 Corporación Universitaria Comfacauca - Unicomfacauca'),
(77398, 'https://ror.org/00jzhf358', 'en', 1, 'https://ror.org/00jzhf358 Kronotsky Reserve Кроноцкий заповедник'),
(77399, 'https://ror.org/03r790h08', 'en', 1, 'https://ror.org/03r790h08 Global VetPathology'),
(77400, 'https://ror.org/01qbk8d85', 'en', 1, 'https://ror.org/01qbk8d85 Altaiskiy State Nature Biosphere Reserve Алтайский заповедник'),
(77401, 'https://ror.org/02jrddb23', 'en', 1, 'https://ror.org/02jrddb23 Liver Institute Northwest'),
(77402, 'https://ror.org/01mhm7x58', 'en', 1, 'https://ror.org/01mhm7x58 Eye & Retina Surgeons'),
(77403, 'https://ror.org/046qqda35', 'en', 1, 'https://ror.org/046qqda35 Hungarian School Sport Federation Magyar Diáksport Szövetség'),
(77404, 'https://ror.org/00rngf163', 'no_lang_code', 1, 'https://ror.org/00rngf163 Karsa (Finland)'),
(77405, 'https://ror.org/05e03wj43', 'no_lang_code', 1, 'https://ror.org/05e03wj43 Austrian Drug Screening Institute (Austria)'),
(77406, 'https://ror.org/01mtzfx31', 'de', 1, 'https://ror.org/01mtzfx31 Brustzentrum Klinik St. Anna'),
(77407, 'https://ror.org/0528c5w53', 'en', 1, 'https://ror.org/0528c5w53 People''s Hospital of Yangzhong 扬中市人民医院'),
(77408, 'https://ror.org/033pa2k60', 'no_lang_code', 1, 'https://ror.org/033pa2k60 Ceinge Biotecnologie Avanzate (Italy)'),
(77409, 'https://ror.org/05mjtbx41', 'no_lang_code', 1, 'https://ror.org/05mjtbx41 Century Therapeutics (United States)'),
(77410, 'https://ror.org/03gqsr633', 'en', 1, 'https://ror.org/03gqsr633 Shanghai Sunshine Rehabilitation Center 上海市养志康复医院'),
(77411, 'https://ror.org/05wq1qf03', 'en', 1, 'https://ror.org/05wq1qf03 Irkutsk Regional Museum of Local History Иркутский областной краеведческий музей'),
(77412, 'https://ror.org/052f3yd19', 'en', 1, 'https://ror.org/052f3yd19 Austrian Cluster for Tissue Regeneration'),
(77413, 'https://ror.org/02hscsw24', 'es', 1, 'https://ror.org/02hscsw24 Instituto Oncológico de Córdoba'),
(77414, 'https://ror.org/05mzppf86', 'en', 1, 'https://ror.org/05mzppf86 Arizona Liver Health'),
(77415, 'https://ror.org/00cjb8p81', 'nl', 1, 'https://ror.org/00cjb8p81 GGD Brabant-Zuidoost'),
(77416, 'https://ror.org/05mggs005', 'nl', 1, 'https://ror.org/05mggs005 PAMM'),
(77417, 'https://ror.org/02zet7a50', 'en', 1, 'https://ror.org/02zet7a50 The Multiple Births Foundation'),
(77418, 'https://ror.org/02a3mhk13', 'en', 1, 'https://ror.org/02a3mhk13 FORTH Institute of Electronic Structure and Laser Ινστιτούτο Ηλεκτρονικής Δομής και Λέιζερ'),
(77419, 'https://ror.org/01gzszr18', 'en', 1, 'https://ror.org/01gzszr18 FORTH Institute of Molecular Biology and Biotechnology Ινστιτούτο Μοριακής Βιολογίας και Βιοτεχνολογίας'),
(77420, 'https://ror.org/02tf48g55', 'en', 1, 'https://ror.org/02tf48g55 FORTH Institute of Computer Science Ινστιτούτο Επιστήμης Υπολογιστών'),
(77421, 'https://ror.org/02n2yp822', 'en', 1, 'https://ror.org/02n2yp822 FORTH Institute of Applied and Computational Mathematics Ινστιτούτο Εφαρμοσμένων και Υπολογιστικών Μαθηματικών'),
(77422, 'https://ror.org/00srf2p02', 'en', 1, 'https://ror.org/00srf2p02 FORTH Institute of Mediterranean Studies Ινστιτούτου Μεσογειακών Σπουδών'),
(77423, 'https://ror.org/03e5bsk66', 'en', 1, 'https://ror.org/03e5bsk66 FORTH Institute of Chemical Engineering Sciences Ινστιτούτο Επιστημών Χημικών Μηχανικών'),
(77424, 'https://ror.org/00ve2vg23', 'en', 1, 'https://ror.org/00ve2vg23 FORTH Institute of Petroleum Research Ινστιτούτο Έρευνας Πετρελαίου'),
(77425, 'https://ror.org/05fdghr47', 'en', 1, 'https://ror.org/05fdghr47 "Πανεπιστημιακές Εκδόσεις Κρήτης " Crete University Press'),
(77426, 'https://ror.org/05hp71e29', 'en', 1, 'https://ror.org/05hp71e29 Foundation for Reproductive Medicine'),
(77427, 'https://ror.org/02ddqp560', 'en', 1, 'https://ror.org/02ddqp560 Science and Technology Park of Crete Επιστημονικό και Τεχνολογικό Πάρκο Κρήτης'),
(77428, 'https://ror.org/01sjwtr21', 'no_lang_code', 1, 'https://ror.org/01sjwtr21 PRAXI Network Δίκτυο ΠΡΑΞΗ'),
(77429, 'https://ror.org/04nw4se09', 'en', 1, 'https://ror.org/04nw4se09 Right to Care'),
(77430, 'https://ror.org/02nyezm25', 'de', 1, 'https://ror.org/02nyezm25 Mammazentrum Hamburg'),
(77431, 'https://ror.org/02ffmpe09', 'en', 1, 'https://ror.org/02ffmpe09 Royal Academy of Cambodia រាជបណ្ឌិត្យសភាកម្ពុជា'),
(77432, 'https://ror.org/00rw77p82', 'en', 1, 'https://ror.org/00rw77p82 Visim Nature Reserve Висимский государственный заповедник'),
(77433, 'https://ror.org/058xkam71', 'en', 1, 'https://ror.org/058xkam71 FHU Neurovasc'),
(77434, 'https://ror.org/03v275937', 'en', 1, 'https://ror.org/03v275937 Philadelphia Water Department'),
(77435, 'https://ror.org/046h2qc13', 'en', 1, 'https://ror.org/046h2qc13 Kabardino-Balkarski Nature Reserve Кабардино-Балкарский заповедник'),
(77436, 'https://ror.org/04q9zc034', 'no_lang_code', 1, 'https://ror.org/04q9zc034 Covenant Research and Clinics (United States)'),
(77437, 'https://ror.org/022zhm372', 'de', 1, 'https://ror.org/022zhm372 Paracelsus Medizinische Privatuniversität'),
(77438, 'https://ror.org/01kh7ve16', 'en', 1, 'https://ror.org/01kh7ve16 Bristow Pediatrics'),
(77439, 'https://ror.org/02gwsx029', 'en', 1, 'https://ror.org/02gwsx029 Guangdong-Hongkong-Macau Joint Laboratory of Collaborative Innovation for Environmental Quality 粤港澳环境质量协同创新联合实验室'),
(77440, 'https://ror.org/01rnsap95', 'no_lang_code', 1, 'https://ror.org/01rnsap95 Fusion Genomics (Canada)'),
(77441, 'https://ror.org/04xj7vk87', 'en', 1, 'https://ror.org/04xj7vk87 SeaWorld San Diego'),
(77442, 'https://ror.org/02w2fbz15', 'en', 1, 'https://ror.org/02w2fbz15 McGill Genome Centre'),
(77443, 'https://ror.org/04mpfkx04', 'en', 1, 'https://ror.org/04mpfkx04 SCQM Foundation'),
(77444, 'https://ror.org/03zgc2711', 'en', 1, 'https://ror.org/03zgc2711 Canossa Private Hospital'),
(77445, 'https://ror.org/03eks5p77', 'en', 1, 'https://ror.org/03eks5p77 Bon Secours Mercy Health'),
(77446, 'https://ror.org/05e2w0w20', 'no_lang_code', 1, 'https://ror.org/05e2w0w20 Middleton Spectral Vision (United States)'),
(77447, 'https://ror.org/04hr13565', 'en', 1, 'https://ror.org/04hr13565 Department of Public Health ပြည်သူ့ကျန်းမာရေးဦ:စီးဌာန'),
(77448, 'https://ror.org/05xt5sj74', 'no_lang_code', 1, 'https://ror.org/05xt5sj74 S&B Christ Consulting (United States)'),
(77449, 'https://ror.org/037p60497', 'no_lang_code', 1, 'https://ror.org/037p60497 Estátikos (Brazil)'),
(77450, 'https://ror.org/00zc2d847', 'en', 1, 'https://ror.org/00zc2d847 Black Sea Biosphere Reserve'),
(77451, 'https://ror.org/04wxag453', 'en', 1, 'https://ror.org/04wxag453 Unitary Fund'),
(77452, 'https://ror.org/04d048897', 'sv', 1, 'https://ror.org/04d048897 Stockholm IVF'),
(77453, 'https://ror.org/008fdbn61', 'fr', 1, 'https://ror.org/008fdbn61 Institut de Cancérologie Strasbourg'),
(77454, 'https://ror.org/0051mnz48', 'en', 1, 'https://ror.org/0051mnz48 Khvalynsky National Park Национального парка «Хвалынский»'),
(77455, 'https://ror.org/003jt2t26', 'fr', 1, 'https://ror.org/003jt2t26 Centre Archéologique de la Grotte Scladina Scladina'),
(77456, 'https://ror.org/00s8cz980', 'en', 1, 'https://ror.org/00s8cz980 Jubilee Clinical Research'),
(77457, 'https://ror.org/02e1w6814', 'en', 1, 'https://ror.org/02e1w6814 LupusChat'),
(77458, 'https://ror.org/05psty780', 'id', 1, 'https://ror.org/05psty780 Pusat Penelitian Arkeologi Nasional'),
(77459, 'https://ror.org/00d89k312', 'no_lang_code', 1, 'https://ror.org/00d89k312 Wearifi (United States)'),
(77460, 'https://ror.org/00g6d1w79', 'en', 1, 'https://ror.org/00g6d1w79 Center for Urban Waters'),
(77461, 'https://ror.org/03cfxrj56', 'en', 1, 'https://ror.org/03cfxrj56 Kerzhinski Nature Reserve Керженский заповедник'),
(77462, 'https://ror.org/02f1h3d14', 'no_lang_code', 1, 'https://ror.org/02f1h3d14 Denssolutions (Netherlands)'),
(77463, 'https://ror.org/036sabf92', 'no_lang_code', 1, 'https://ror.org/036sabf92 Heidelberg Pharma (Germany)'),
(77464, 'https://ror.org/03rgqnc08', 'en', 1, 'https://ror.org/03rgqnc08 Kaniv Nature Reserve Канівський природний заповідник'),
(77465, 'https://ror.org/02s5m5d51', 'en', 1, 'https://ror.org/02s5m5d51 Biomedical Research and Innovation Institute of Cadiz Instituto de Investigación e Innovación Biomédica de Cádiz'),
(77466, 'https://ror.org/005bx3y85', 'en', 1, 'https://ror.org/005bx3y85 Elman Retina Group'),
(77467, 'https://ror.org/00fjjyv64', 'en', 1, 'https://ror.org/00fjjyv64 Dépistage Néonatal Ontario Newborn Screening Ontario'),
(77468, 'https://ror.org/00wxex667', 'en', 1, 'https://ror.org/00wxex667 Global Fishing Watch'),
(77469, 'https://ror.org/012rtfc41', 'no_lang_code', 1, 'https://ror.org/012rtfc41 Water Technology (Australia)'),
(77470, 'https://ror.org/00n5t8830', 'en', 1, 'https://ror.org/00n5t8830 Noosa Hospital'),
(77471, 'https://ror.org/00h211q58', 'no_lang_code', 1, 'https://ror.org/00h211q58 Intelligify (United Kingdom)'),
(77472, 'https://ror.org/004y4rj95', 'en', 1, 'https://ror.org/004y4rj95 Gordon Center for Medical Imaging'),
(77473, 'https://ror.org/01ge84q84', 'no_lang_code', 1, 'https://ror.org/01ge84q84 Orlovskoye Polesye National Park Орловское Полесье'),
(77474, 'https://ror.org/01nzejr48', 'no_lang_code', 1, 'https://ror.org/01nzejr48 BioBridges (United States)'),
(77475, 'https://ror.org/0232dj695', 'en', 1, 'https://ror.org/0232dj695 Rotterdam Stroke Service'),
(77476, 'https://ror.org/0073w0m97', 'en', 1, 'https://ror.org/0073w0m97 Pasvik Nature Reserve государственный природный заповедник "Пасвик"'),
(77477, 'https://ror.org/053s3ay82', 'no_lang_code', 1, 'https://ror.org/053s3ay82 Febus Optics (France)'),
(77478, 'https://ror.org/028d79m65', 'en', 1, 'https://ror.org/028d79m65 Stolby Nature Reserve Государственный природный заповедник “Столбы”'),
(77479, 'https://ror.org/01mcj6m41', 'en', 1, 'https://ror.org/01mcj6m41 LifeDoc Health'),
(77480, 'https://ror.org/0520fx213', 'no_lang_code', 1, 'https://ror.org/0520fx213 Refuge Biotechnologies (United States)'),
(77481, 'https://ror.org/02gca0r39', 'no_lang_code', 1, 'https://ror.org/02gca0r39 ILF (Switzerland)'),
(77482, 'https://ror.org/05qa08h17', 'en', 1, 'https://ror.org/05qa08h17 Testicular Cancer Commons'),
(77483, 'https://ror.org/02jk0wm04', 'en', 1, 'https://ror.org/02jk0wm04 EUMETNET'),
(77484, 'https://ror.org/03zcr3a74', 'no_lang_code', 1, 'https://ror.org/03zcr3a74 Transition Technologies (Poland)'),
(77485, 'https://ror.org/0580yp869', 'fr', 1, 'https://ror.org/0580yp869 Groupe de Recherche sur le Psoriasis'),
(77486, 'https://ror.org/014x2ky39', 'en', 1, 'https://ror.org/014x2ky39 Whyteman’s Brae Hospital'),
(77487, 'https://ror.org/00dq0yr94', 'no_lang_code', 1, 'https://ror.org/00dq0yr94 Sound Agriculture (United States)'),
(77488, 'https://ror.org/01qt4dq02', 'no_lang_code', 1, 'https://ror.org/01qt4dq02 Bruker (China)'),
(77489, 'https://ror.org/02kx9qd54', 'no_lang_code', 1, 'https://ror.org/02kx9qd54 Veterinary Anaesthesia Services (Switzerland)'),
(77490, 'https://ror.org/002x1sg85', 'es', 1, 'https://ror.org/002x1sg85 Instituto de Investigación Hospital 12 de Octubre Research Institute Hospital 12 de Octubre'),
(77491, 'https://ror.org/05hsbj572', 'en', 1, 'https://ror.org/05hsbj572 Niramaya Healthcare निरामय हेल्थकेयर'),
(77492, 'https://ror.org/03dktz122', 'en', 1, 'https://ror.org/03dktz122 Helen Keller International'),
(77493, 'https://ror.org/00eg0bk82', 'en', 1, 'https://ror.org/00eg0bk82 Columbia VA Health Care System'),
(77494, 'https://ror.org/03vk7h897', 'en', 1, 'https://ror.org/03vk7h897 The California Eye Institute'),
(77495, 'https://ror.org/051k25d02', 'no_lang_code', 1, 'https://ror.org/051k25d02 Lava Therapeutics (Netherlands)'),
(77496, 'https://ror.org/046mjnm79', 'en', 1, 'https://ror.org/046mjnm79 Slovak Organization for Space Activities Slovenská Organizácia pre Vesmírne Aktivity'),
(77497, 'https://ror.org/05wyfzv25', 'no_lang_code', 1, 'https://ror.org/05wyfzv25 Tissue Dynamics (Israel)'),
(77498, 'https://ror.org/00z8x2k69', 'no_lang_code', 1, 'https://ror.org/00z8x2k69 Pfizer (Switzerland)'),
(77499, 'https://ror.org/0169kb131', 'en', 1, 'https://ror.org/0169kb131 Children’s Mercy Research Institute'),
(77500, 'https://ror.org/00bke8n58', 'en', 1, 'https://ror.org/00bke8n58 Geoscience BC'),
(77501, 'https://ror.org/015n4kv50', 'en', 1, 'https://ror.org/015n4kv50 Adobe Gastroenterology'),
(77502, 'https://ror.org/05p8v7d26', 'no_lang_code', 1, 'https://ror.org/05p8v7d26 Biostatistical Consulting (United States)'),
(77503, 'https://ror.org/03fqvdm62', 'no_lang_code', 1, 'https://ror.org/03fqvdm62 Cipher Gene (China)'),
(77504, 'https://ror.org/05vm0ed18', 'no_lang_code', 1, 'https://ror.org/05vm0ed18 Uber AI (United States)'),
(77505, 'https://ror.org/04qz9jb06', 'en', 1, 'https://ror.org/04qz9jb06 North American Butterfly Association'),
(77506, 'https://ror.org/021xwy741', 'no_lang_code', 1, 'https://ror.org/021xwy741 Clover Biopharmaceuticals (China)'),
(77507, 'https://ror.org/012yyz739', 'no_lang_code', 1, 'https://ror.org/012yyz739 Givaudan (Netherlands)'),
(77508, 'https://ror.org/04b4r9r69', 'en', 1, 'https://ror.org/04b4r9r69 OMERACT Patient Research Partner Network'),
(77509, 'https://ror.org/03v64vs34', 'en', 1, 'https://ror.org/03v64vs34 Epidemic Intelligence Service'),
(77510, 'https://ror.org/01wc0pn13', 'no_lang_code', 1, 'https://ror.org/01wc0pn13 OWL (Spain)'),
(77511, 'https://ror.org/00e76kv63', 'en', 1, 'https://ror.org/00e76kv63 Alliance for International Medical Action'),
(77512, 'https://ror.org/05fxgkw28', 'no_lang_code', 1, 'https://ror.org/05fxgkw28 Dynamita (France)'),
(77513, 'https://ror.org/009r7tw40', 'en', 1, 'https://ror.org/009r7tw40 Cyto Labs'),
(77514, 'https://ror.org/03m0cw265', 'en', 1, 'https://ror.org/03m0cw265 Nizhne-Svirsky State Nature Reserve Нижне-Свирский государственный природный заповедник'),
(77515, 'https://ror.org/056sv4492', 'no_lang_code', 1, 'https://ror.org/056sv4492 Volcanic Basin Petroleum Research (Norway)'),
(77516, 'https://ror.org/01a3qdh08', 'no_lang_code', 1, 'https://ror.org/01a3qdh08 Synthego (United States)'),
(77517, 'https://ror.org/0280n9356', 'de', 1, 'https://ror.org/0280n9356 Rheumaliga Schweiz'),
(77518, 'https://ror.org/00e55tr36', 'no_lang_code', 1, 'https://ror.org/00e55tr36 Biortus (China)'),
(77519, 'https://ror.org/05621qy93', 'en', 1, 'https://ror.org/05621qy93 Worldwide Veterinary Service'),
(77520, 'https://ror.org/035myfa14', 'no_lang_code', 1, 'https://ror.org/035myfa14 Fixstars Solutions (United States)'),
(77521, 'https://ror.org/03gg2z496', 'en', 1, 'https://ror.org/03gg2z496 NEWhub'),
(77522, 'https://ror.org/0067vtw10', 'no_lang_code', 1, 'https://ror.org/0067vtw10 Wren Therapeutics (United Kingdom)'),
(77523, 'https://ror.org/04pjv0k50', 'no_lang_code', 1, 'https://ror.org/04pjv0k50 Medpharmgene (Canada)'),
(77524, 'https://ror.org/014tda213', 'es', 1, 'https://ror.org/014tda213 Hospital Dr Arturo Oñativia'),
(77525, 'https://ror.org/00zyhqb45', 'no_lang_code', 1, 'https://ror.org/00zyhqb45 Novametrics (United Kingdom)'),
(77526, 'https://ror.org/034wsnn83', 'en', 1, 'https://ror.org/034wsnn83 Soweto CTC'),
(77527, 'https://ror.org/037b8st11', 'en', 1, 'https://ror.org/037b8st11 The National Databank for Rheumatic Diseases'),
(77528, 'https://ror.org/00yfjxy10', 'en', 1, 'https://ror.org/00yfjxy10 Beit Rivka Geriatric Medical Center מרכז רפואי גריאטרי בית רבקה'),
(77529, 'https://ror.org/04fvmve92', 'no_lang_code', 1, 'https://ror.org/04fvmve92 Alvéole (France)'),
(77530, 'https://ror.org/03pv0jn66', 'en', 1, 'https://ror.org/03pv0jn66 Institut za Javno Zdravlje Srbije Institute of Public Health of Serbia'),
(77531, 'https://ror.org/00qyd2558', 'en', 1, 'https://ror.org/00qyd2558 Chiba Convention Bureau and International Center 公益財団法人 ちば国際コンベンションビューロー'),
(77532, 'https://ror.org/02tebe473', 'en', 1, 'https://ror.org/02tebe473 Medical Plus'),
(77533, 'https://ror.org/005t89q56', 'en', 1, 'https://ror.org/005t89q56 Allergy Clinic of Tulsa'),
(77534, 'https://ror.org/01z00wd20', 'en', 1, 'https://ror.org/01z00wd20 Victorian Cancer Biobank'),
(77535, 'https://ror.org/026mr5885', 'en', 1, 'https://ror.org/026mr5885 Republican Center for Healthcare Development Республикалық денсаулық сақтау орталығы'),
(77536, 'https://ror.org/050c50s85', 'en', 1, 'https://ror.org/050c50s85 United in Health'),
(77537, 'https://ror.org/056t0kd46', 'no_lang_code', 1, 'https://ror.org/056t0kd46 Sandfire (Australia)'),
(77538, 'https://ror.org/01j4fzm59', 'no_lang_code', 1, 'https://ror.org/01j4fzm59 Kantar Health (Brazil)'),
(77539, 'https://ror.org/04777n328', 'no_lang_code', 1, 'https://ror.org/04777n328 Sahodaran சஹோதரன்'),
(77540, 'https://ror.org/023vqza20', 'en', 1, 'https://ror.org/023vqza20 Medanta The Medicity'),
(77541, 'https://ror.org/0031sqt67', 'de', 1, 'https://ror.org/0031sqt67 Schmerzmedizin Berlin'),
(77542, 'https://ror.org/03jg1ab83', 'no_lang_code', 1, 'https://ror.org/03jg1ab83 Afflux Consulting (Australia)'),
(77543, 'https://ror.org/002jmzw69', 'no_lang_code', 1, 'https://ror.org/002jmzw69 Oxford Nanoimaging (United Kingdom)'),
(77544, 'https://ror.org/030fs7375', 'en', 1, 'https://ror.org/030fs7375 BreastScreen WA'),
(77545, 'https://ror.org/01tapk317', 'en', 1, 'https://ror.org/01tapk317 Zhuhai Fudan Innovation Research Institute 珠海复旦创新研究院'),
(77546, 'https://ror.org/03bp6t645', 'it', 1, 'https://ror.org/03bp6t645 Azienda Socio Sanitaria Territoriale Lariana'),
(77547, 'https://ror.org/01cwhph72', 'no_lang_code', 1, 'https://ror.org/01cwhph72 PQ Corporation (Canada)'),
(77548, 'https://ror.org/04s36wq82', 'no_lang_code', 1, 'https://ror.org/04s36wq82 Inatura inatura - Erlebnis Naturschau'),
(77549, 'https://ror.org/05k2kkw49', 'en', 1, 'https://ror.org/05k2kkw49 Department of Education - Division of Bataan'),
(77550, 'https://ror.org/02j136k79', 'no_lang_code', 1, 'https://ror.org/02j136k79 Chifeng Municipal Hospital 赤峰市医院'),
(77551, 'https://ror.org/04q95ej23', 'en', 1, 'https://ror.org/04q95ej23 Quantum Science Center'),
(77552, 'https://ror.org/013nbmf56', 'no_lang_code', 1, 'https://ror.org/013nbmf56 Invixium (Canada)'),
(77553, 'https://ror.org/00jgbqj86', 'no_lang_code', 1, 'https://ror.org/00jgbqj86 AZTI'),
(77554, 'https://ror.org/01qc45180', 'no_lang_code', 1, 'https://ror.org/01qc45180 USP Technologies (United Kingdom)'),
(77555, 'https://ror.org/03n6h1x35', 'it', 1, 'https://ror.org/03n6h1x35 Associazione Meteo Professionisti'),
(77556, 'https://ror.org/00szq9g79', 'de', 1, 'https://ror.org/00szq9g79 Sonnenhalde (Switzerland)'),
(77557, 'https://ror.org/007fea852', 'en', 1, 'https://ror.org/007fea852 Kostomuksha Nature Reserve Костомукшский заповедник'),
(77558, 'https://ror.org/04qnzk495', 'no_lang_code', 1, 'https://ror.org/04qnzk495 Spital Thurgau (Switzerland)'),
(77559, 'https://ror.org/021ts2b34', 'en', 1, 'https://ror.org/021ts2b34 Brazilian Research in Intensive Care Network Rede Brasileira de Pesquisa em Terapia Intensiva'),
(77560, 'https://ror.org/03bx5cx17', 'en', 1, 'https://ror.org/03bx5cx17 Provincial Government of Sarangani'),
(77561, 'https://ror.org/02hdt9m26', 'en', 1, 'https://ror.org/02hdt9m26 Swiss Data Science Center'),
(77562, 'https://ror.org/03vfryt93', 'en', 1, 'https://ror.org/03vfryt93 State Institute for Drug Control Štátny ústav pre kontrolu liečiv'),
(77563, 'https://ror.org/05b4pnz02', 'no_lang_code', 1, 'https://ror.org/05b4pnz02 Ohana Biosciences (United States)'),
(77564, 'https://ror.org/04aem8s10', 'en', 1, 'https://ror.org/04aem8s10 COVID-19 Genomics UK Consortium'),
(77565, 'https://ror.org/02e6vkn32', 'en', 1, 'https://ror.org/02e6vkn32 Vikram Hospital'),
(77566, 'https://ror.org/052ty1420', 'no_lang_code', 1, 'https://ror.org/052ty1420 Docbot (United States)'),
(77567, 'https://ror.org/0380m5132', 'no_lang_code', 1, 'https://ror.org/0380m5132 Xiamen Tungsten (China)'),
(77568, 'https://ror.org/007rkz355', 'no_lang_code', 1, 'https://ror.org/007rkz355 Open Ephys Production Site (Portugal)'),
(77569, 'https://ror.org/02ah93945', 'no_lang_code', 1, 'https://ror.org/02ah93945 Estonian Environmental Research Center (Estonia)'),
(77570, 'https://ror.org/00ntrnw83', 'en', 1, 'https://ror.org/00ntrnw83 Cục Y tế Dự phòng General Department of Preventive Medicine'),
(77571, 'https://ror.org/00envj504', 'en', 1, 'https://ror.org/00envj504 Associated Retinal Consultants'),
(77572, 'https://ror.org/055x5vq73', 'pt', 1, 'https://ror.org/055x5vq73 Fundação Hospitalar de Hematologia e Hemoterapia do Amazonas'),
(77573, 'https://ror.org/02p82xj88', 'en', 1, 'https://ror.org/02p82xj88 Astrakhan Biosphere Nature Reserve'),
(77574, 'https://ror.org/02ynw0r73', 'en', 1, 'https://ror.org/02ynw0r73 Primary HealthCare'),
(77575, 'https://ror.org/02y8mb071', 'en', 1, 'https://ror.org/02y8mb071 Sustainable Sciences Institute'),
(77576, 'https://ror.org/02mgbdx19', 'en', 1, 'https://ror.org/02mgbdx19 Vishera Nature Reserve Вишерский заповедник'),
(77577, 'https://ror.org/02c7apg81', 'no_lang_code', 1, 'https://ror.org/02c7apg81 Apexigen (United States)'),
(77578, 'https://ror.org/0275dss38', 'en', 1, 'https://ror.org/0275dss38 Hyderabad Rheumatology Center'),
(77579, 'https://ror.org/01b784253', 'en', 1, 'https://ror.org/01b784253 St Vincent’s Private Hospital Sydney'),
(77580, 'https://ror.org/031ghq268', 'no_lang_code', 1, 'https://ror.org/031ghq268 Color (United States)'),
(77581, 'https://ror.org/02tvzxs09', 'no_lang_code', 1, 'https://ror.org/02tvzxs09 Gryaab (Sweden)'),
(77582, 'https://ror.org/00fgrre84', 'no_lang_code', 1, 'https://ror.org/00fgrre84 Micro Systems Engineering (United States)'),
(77583, 'https://ror.org/000r0q932', 'en', 1, 'https://ror.org/000r0q932 Ministry of Health'),
(77584, 'https://ror.org/01fxrnx65', 'en', 1, 'https://ror.org/01fxrnx65 United Nations Children''s Fund Cameroon'),
(77585, 'https://ror.org/02d29d188', 'en', 1, 'https://ror.org/02d29d188 Durham VA Health Care System'),
(77586, 'https://ror.org/05j351806', 'en', 1, 'https://ror.org/05j351806 State Healthcare Institution "Regional Clinical Oncological Dispensary"'),
(77587, 'https://ror.org/03r6qpe45', 'no_lang_code', 1, 'https://ror.org/03r6qpe45 Emodo (United States)'),
(77588, 'https://ror.org/02dx0nz12', 'en', 1, 'https://ror.org/02dx0nz12 Central Forest Nature Reserve Центрально-Лесной заповедник'),
(77589, 'https://ror.org/05myb9s25', 'no_lang_code', 1, 'https://ror.org/05myb9s25 Studsvik (Germany)'),
(77590, 'https://ror.org/02nx3te20', 'no_lang_code', 1, 'https://ror.org/02nx3te20 Curonz (New Zealand)'),
(77591, 'https://ror.org/0297j2031', 'en', 1, 'https://ror.org/0297j2031 Park Terrace Care Center'),
(77592, 'https://ror.org/01b0pvj98', 'en', 1, 'https://ror.org/01b0pvj98 St. Anne''s Health Centre'),
(77593, 'https://ror.org/01vknre37', 'en', 1, 'https://ror.org/01vknre37 Department of Ecology and Environment of Hainan Province 海南省生态环境厅'),
(77594, 'https://ror.org/00zyg0w36', 'fr', 1, 'https://ror.org/00zyg0w36 Ministère de la Santé et de l''Hygiène Publique'),
(77595, 'https://ror.org/01t9bgr30', 'en', 1, 'https://ror.org/01t9bgr30 Institute for Soldier Nanotechnologies'),
(77596, 'https://ror.org/05scvw539', 'en', 1, 'https://ror.org/05scvw539 United States Trade and Development Agency'),
(77597, 'https://ror.org/024ce2263', 'es', 1, 'https://ror.org/024ce2263 National Autonomous University of Nicaragua-León Universidad Nacional Autónoma de Nicaragua-León'),
(77598, 'https://ror.org/023tqc074', 'en', 1, 'https://ror.org/023tqc074 Yanet Health College'),
(77599, 'https://ror.org/02zftm050', 'en', 1, 'https://ror.org/02zftm050 National Institute of Standards المعهد القومى للقياس والمعايرة'),
(77600, 'https://ror.org/01xqjjn94', 'en', 1, 'https://ror.org/01xqjjn94 Software Engineering Institute'),
(77601, 'https://ror.org/02m8g1k56', 'no_lang_code', 1, 'https://ror.org/02m8g1k56 Ion Technology Center (Japan) イオンテクノセンター'),
(77602, 'https://ror.org/04avnsc24', 'en', 1, 'https://ror.org/04avnsc24 Wildlife Conservation Society Congo'),
(77603, 'https://ror.org/05g5v3686', 'no_lang_code', 1, 'https://ror.org/05g5v3686 Hanjin Heavy Industries (South Korea) 한진중공업'),
(77604, 'https://ror.org/00tr5rr68', 'pt', 1, 'https://ror.org/00tr5rr68 Laboratório DNA Center'),
(77605, 'https://ror.org/02yd50j87', 'en', 1, 'https://ror.org/02yd50j87 Lincoln University College'),
(77606, 'https://ror.org/03v4x1p30', 'no_lang_code', 1, 'https://ror.org/03v4x1p30 Nova Measuring Instruments (United States)'),
(77607, 'https://ror.org/03v0eq295', 'en', 1, 'https://ror.org/03v0eq295 Middle East Liver Disease Center مرکز بیماریهای کبدی خاورمیانه'),
(77608, 'https://ror.org/00fczj128', 'no_lang_code', 1, 'https://ror.org/00fczj128 MoTeC (Australia)'),
(77609, 'https://ror.org/016s36n27', 'no_lang_code', 1, 'https://ror.org/016s36n27 Asia Centre'),
(77610, 'https://ror.org/04ft5hg27', 'en', 1, 'https://ror.org/04ft5hg27 University of Customs and Finance Університет митної справи та фінансів'),
(77611, 'https://ror.org/05wzb4s27', 'en', 1, 'https://ror.org/05wzb4s27 Zhengzhou Institute of Emerging Industrial Technology 郑州中科新兴产业技术研究院'),
(77612, 'https://ror.org/03v6e0k54', 'en', 1, 'https://ror.org/03v6e0k54 Institute of Information and Computational Technologies Институт информационных и вычислительных технологий'),
(77613, 'https://ror.org/008971d44', 'en', 1, 'https://ror.org/008971d44 Ibrahim Cardiac Hospital & Research Institute ইব্রাহিম কার্ডিয়াক হসপিটাল এন্ড রিসার্চ ইনস্টিটিউট'),
(77614, 'https://ror.org/051re5m53', 'en', 1, 'https://ror.org/051re5m53 Biomedical Research Foundation'),
(77615, 'https://ror.org/02sd7jn56', 'en', 1, 'https://ror.org/02sd7jn56 Institute of Chemistry of New Materials of the National Academy of Sciences of Belarus Институт химии новых материалов НАН Беларуси'),
(77616, 'https://ror.org/05328vv93', 'en', 1, 'https://ror.org/05328vv93 Centre for Policy Studies'),
(77617, 'https://ror.org/01c1p1v81', 'id', 1, 'https://ror.org/01c1p1v81 Universitas PGRI Semarang'),
(77618, 'https://ror.org/01m3cg403', 'en', 1, 'https://ror.org/01m3cg403 Lysosomal and Rare Disorders Research and Treatment Center'),
(77619, 'https://ror.org/00f06eh80', 'en', 1, 'https://ror.org/00f06eh80 Punjab Medical Center'),
(77620, 'https://ror.org/04jsfy203', 'en', 1, 'https://ror.org/04jsfy203 All-Med'),
(77621, 'https://ror.org/0098syn68', 'de', 1, 'https://ror.org/0098syn68 Rostocker Zentrum zur Erforschung des Demografischen Wandels'),
(77622, 'https://ror.org/040059s22', 'en', 1, 'https://ror.org/040059s22 Oxford Centre for Mission Studies'),
(77623, 'https://ror.org/01tt7fe73', 'en', 1, 'https://ror.org/01tt7fe73 Institute for Diagnosis and Animal Health Institutul de Diagnostic şi Sănătate Animală'),
(77624, 'https://ror.org/038mz4r36', 'en', 1, 'https://ror.org/038mz4r36 Vivekananda Global University'),
(77625, 'https://ror.org/01q6nk123', 'en', 1, 'https://ror.org/01q6nk123 Smart Data Analysis Systems Group'),
(77626, 'https://ror.org/0021gtp06', 'ro', 1, 'https://ror.org/0021gtp06 Institutul de Urgenţă pentru Boli Cardiovasculare "Prof.Dr. C.C. Iliescu"'),
(77627, 'https://ror.org/01vs1wb25', 'en', 1, 'https://ror.org/01vs1wb25 Occupational Cancer Research Centre'),
(77628, 'https://ror.org/01d540m14', 'es', 1, 'https://ror.org/01d540m14 Instituto de Medicina Tropical'),
(77629, 'https://ror.org/02ygfdv70', 'en', 1, 'https://ror.org/02ygfdv70 Fulbright University Vietnam Đại học Fulbright Việt Nam'),
(77630, 'https://ror.org/02ygbbs43', 'en', 1, 'https://ror.org/02ygbbs43 Beijing Municipal Ecological and Environmental Monitoring Center 北京市环境保护监测中心'),
(77631, 'https://ror.org/00ywwcv54', 'en', 1, 'https://ror.org/00ywwcv54 European Forest Institute'),
(77632, 'https://ror.org/01vf0ya40', 'en', 1, 'https://ror.org/01vf0ya40 I.S. Lupinovich Belarus Agricultural Library Белорусская сельскохозяйственная библиотека им. И. С. Лупиновича'),
(77633, 'https://ror.org/05njdpb60', 'id', 1, 'https://ror.org/05njdpb60 Institut Bisnis dan Teknologi Pelita Indonesia'),
(77634, 'https://ror.org/02phq3304', 'en', 1, 'https://ror.org/02phq3304 National Scientific Agricultural Library of the National Academy of Agrarian Sciences of Ukraine Національна наукова сільськогосподарська бібліотека Національної академії аграрних наук України'),
(77635, 'https://ror.org/034dagj58', 'en', 1, 'https://ror.org/034dagj58 Tamil Virtual Academy தமிழ் இணையக் கல்விக்கழகம்'),
(77636, 'https://ror.org/03r2nz980', 'en', 1, 'https://ror.org/03r2nz980 Heilongjiang University of Technology 黑龙江工业学院'),
(77637, 'https://ror.org/046g5hb52', 'en', 1, 'https://ror.org/046g5hb52 Andrija Stampar Teaching Institute of Public Health Nastavni Zavod za Javno Zdravstvo "Dr. Andrija Štampar"'),
(77638, 'https://ror.org/05vzagq31', 'no_lang_code', 1, 'https://ror.org/05vzagq31 Prolepsis Institute Ινστιτούτο Προληπτικής Περιβαλλοντικής & Εργασιακής Ιατρικής'),
(77639, 'https://ror.org/04yw73836', 'en', 1, 'https://ror.org/04yw73836 Nagpur Institute of Technology'),
(77640, 'https://ror.org/02z64pq54', 'en', 1, 'https://ror.org/02z64pq54 Ankara Spine Center'),
(77641, 'https://ror.org/01zcq6z67', 'en', 1, 'https://ror.org/01zcq6z67 Eastern Finland Laboratory Center Itä-Suomen laboratoriokeskuksen liikelaitoskuntayhtymä'),
(77642, 'https://ror.org/05gbjgt75', 'en', 1, 'https://ror.org/05gbjgt75 Amhara National Regional State Public Health Institute በአማራ ብሔራዊ ክልላዊ መንግስት የሕብረተሰብ ጤና ኢንስቲትዩት'),
(77643, 'https://ror.org/01rpft493', 'es', 1, 'https://ror.org/01rpft493 Laboratorios Ruiz'),
(77644, 'https://ror.org/02fp2pe05', 'en', 1, 'https://ror.org/02fp2pe05 Key Laboratory for High Strength Lightweight Metallic Materials of Shandong Province 山东省轻质高强金属材料省级重点实验室'),
(77645, 'https://ror.org/03n3dbn70', 'en', 1, 'https://ror.org/03n3dbn70 National Public Health Institute of Liberia'),
(77646, 'https://ror.org/01vbw1f94', 'en', 1, 'https://ror.org/01vbw1f94 Academy of Medical Sciences of Bosnia and Herzegovina'),
(77647, 'https://ror.org/00gyn5p04', 'en', 1, 'https://ror.org/00gyn5p04 Ivan Kozhedub Kharkiv National Air Force University Харківський національний університет повітряних сил імені Івана Кожедуба'),
(77648, 'https://ror.org/01wrf3k61', 'en', 1, 'https://ror.org/01wrf3k61 Zhejiang Academy of Social Sciences 浙江省社会科学院'),
(77649, 'https://ror.org/02aab7a23', 'en', 1, 'https://ror.org/02aab7a23 Wits University Donald Gordon Medical Centre'),
(77650, 'https://ror.org/00rrrfr24', 'en', 1, 'https://ror.org/00rrrfr24 Hwa Chong Institution ஹ்வா சாங் பள்ளி 新加坡华侨中学'),
(77651, 'https://ror.org/00rbyp854', 'en', 1, 'https://ror.org/00rbyp854 Institute of Experimental Botany named after V.F. Kuprevich of the National Academy of Sciences of Belarus Институт экспериментальной ботаники им. В. Ф. Купревича НАН Беларуси'),
(77652, 'https://ror.org/008xr9260', 'de', 1, 'https://ror.org/008xr9260 Institut für Bewusstseins- und Traumforschung'),
(77653, 'https://ror.org/001xs0312', 'en', 1, 'https://ror.org/001xs0312 Indian Institute of Management Udaipur भारतीय प्रबंधन संस्थान उदयपुर'),
(77654, 'https://ror.org/04r3w0y76', 'en', 1, 'https://ror.org/04r3w0y76 Parkview Medical Center'),
(77655, 'https://ror.org/01m75dz08', 'en', 1, 'https://ror.org/01m75dz08 Himalayan Environment Research Institute हिमालय पर्यावरण अनुसन्धान संस्थान'),
(77656, 'https://ror.org/00cqzm681', 'no_lang_code', 1, 'https://ror.org/00cqzm681 MatTek (Slovakia)'),
(77657, 'https://ror.org/016e3ca54', 'en', 1, 'https://ror.org/016e3ca54 Center of Applied Ecology & Sustainability'),
(77658, 'https://ror.org/03f6hbh92', 'en', 1, 'https://ror.org/03f6hbh92 Institute of Natural and Technical Systems'),
(77659, 'https://ror.org/04jnpk588', 'en', 1, 'https://ror.org/04jnpk588 South China Institute of Collaborative Innovation 华南协同创新研究院'),
(77660, 'https://ror.org/03mmkpw24', 'en', 1, 'https://ror.org/03mmkpw24 International Shariʽah Research Academy for Islamic Finance'),
(77661, 'https://ror.org/059fvd392', 'en', 1, 'https://ror.org/059fvd392 Institute of Environmental Economics and Sustainable Development of the National Academy of Sciences of Ukraine Державна установа «Інститут економіки природокористування та сталого розвитку Національної академії наук України»'),
(77662, 'https://ror.org/05ctr9t75', 'en', 1, 'https://ror.org/05ctr9t75 Vancouver Spine Surgery Institute'),
(77663, 'https://ror.org/01vvnrn60', 'en', 1, 'https://ror.org/01vvnrn60 Institutul pentru Studierea Problemelor Minorităţilor Naţionale Nemzeti Kisebbségkutató Intézet Romanian Institute For Research on National Minorities'),
(77664, 'https://ror.org/03kss9p24', 'en', 1, 'https://ror.org/03kss9p24 Institut International d''Agriculture Tropicale International Institute of Tropical Agriculture'),
(77665, 'https://ror.org/041w69847', 'en', 1, 'https://ror.org/041w69847 Outcomes Research Consortium'),
(77666, 'https://ror.org/01dvgzr53', 'en', 1, 'https://ror.org/01dvgzr53 Natchaug Hospital'),
(77667, 'https://ror.org/05x56xv16', 'en', 1, 'https://ror.org/05x56xv16 Skin Health Institute'),
(77668, 'https://ror.org/01j6h9w88', 'en', 1, 'https://ror.org/01j6h9w88 Centre for Research in Intensive Care'),
(77669, 'https://ror.org/00fwvs774', 'en', 1, 'https://ror.org/00fwvs774 Dermatology Research and Education Foundation'),
(77670, 'https://ror.org/04zsv0n66', 'en', 1, 'https://ror.org/04zsv0n66 Hospital and Rehabilitation for Disabled Children'),
(77671, 'https://ror.org/02pzj8129', 'en', 1, 'https://ror.org/02pzj8129 St Philip''s Centre'),
(77672, 'https://ror.org/00fen6t20', 'en', 1, 'https://ror.org/00fen6t20 Homeopathy Research Institute'),
(77673, 'https://ror.org/00ac63h31', 'en', 1, 'https://ror.org/00ac63h31 International Institute of Tropical Agriculture المعهد الدولي للزراعة الاستوائية'),
(77674, 'https://ror.org/02x3bf117', 'no_lang_code', 1, 'https://ror.org/02x3bf117 Mediprobe Research (Canada)'),
(77675, 'https://ror.org/00zky6d38', 'en', 1, 'https://ror.org/00zky6d38 Computer Algorithms for Medicine'),
(77676, 'https://ror.org/041jk4k79', 'en', 1, 'https://ror.org/041jk4k79 Academy for Scientific Investigative Training'),
(77677, 'https://ror.org/048es2e39', 'en', 1, 'https://ror.org/048es2e39 International Water Management Institute'),
(77678, 'https://ror.org/01cwrqv73', 'en', 1, 'https://ror.org/01cwrqv73 Minuchin Center for the Family'),
(77679, 'https://ror.org/027951x59', 'en', 1, 'https://ror.org/027951x59 Janbazan Medical and Engineering Research Center پژوهشکده مهندسی و علوم پزشکی جانبازان'),
(77680, 'https://ror.org/05jfz9645', 'en', 1, 'https://ror.org/05jfz9645 Comprehensive Cancer Center Erlangen'),
(77681, 'https://ror.org/00b0m7v78', 'no_lang_code', 1, 'https://ror.org/00b0m7v78 Institute of Reactor Materials (Russia) ИНСТИТУТ РЕАКТОРНЫХ МАТЕРИАЛОВ'),
(77682, 'https://ror.org/05dxr8975', 'en', 1, 'https://ror.org/05dxr8975 Center for Special Minimally Invasive and Robotic Surgery'),
(77683, 'https://ror.org/03wfx2g43', 'en', 1, 'https://ror.org/03wfx2g43 Central Botanical Garden Центральный ботанический сад'),
(77684, 'https://ror.org/00ct41p88', 'en', 1, 'https://ror.org/00ct41p88 The Gottman Institute'),
(77685, 'https://ror.org/0335tbp42', 'en', 1, 'https://ror.org/0335tbp42 Institute of Policy Studies of Sri Lanka'),
(77686, 'https://ror.org/048xw7q50', 'en', 1, 'https://ror.org/048xw7q50 SmartCity.institute'),
(77687, 'https://ror.org/00aggce03', 'en', 1, 'https://ror.org/00aggce03 Indian Institute of Packaging भारतीय पैकेजिंग संस्थान'),
(77688, 'https://ror.org/03s20bw89', 'no_lang_code', 1, 'https://ror.org/03s20bw89 Monasterium Laboratory Skin & Hair Research Solutions (Germany)'),
(77689, 'https://ror.org/04nh35860', 'no_lang_code', 1, 'https://ror.org/04nh35860 Velocity Clinical Research (United States)'),
(77690, 'https://ror.org/059r2qd49', 'no_lang_code', 1, 'https://ror.org/059r2qd49 Genecast (China) 臻和科技'),
(77691, 'https://ror.org/01hyb7g80', 'en', 1, 'https://ror.org/01hyb7g80 Urology Cancer Center and GU Research Network'),
(77692, 'https://ror.org/04p5vvn48', 'en', 1, 'https://ror.org/04p5vvn48 Momentum Research'),
(77693, 'https://ror.org/02gck7e73', 'no_lang_code', 1, 'https://ror.org/02gck7e73 Institute for Clinical Pharmacodynamics (United States)'),
(77694, 'https://ror.org/033abd967', 'en', 1, 'https://ror.org/033abd967 Institute of General & Endovascular Neurosurgery'),
(77695, 'https://ror.org/02jqgbr24', 'de', 1, 'https://ror.org/02jqgbr24 Institut für Beschäftigung und Employability'),
(77696, 'https://ror.org/04bqc4a69', 'en', 1, 'https://ror.org/04bqc4a69 Jeonbuk Agricultural Research & Extension Services 전라북도농업기술원'),
(77697, 'https://ror.org/01j00x585', 'en', 1, 'https://ror.org/01j00x585 Regenerative Sciences Institute'),
(77698, 'https://ror.org/00bjpkw56', 'en', 1, 'https://ror.org/00bjpkw56 Bangladesh Wheat and Maize Research Institute বাংলাদেশ গম ও ভুট্টা গবেষণা ইনস্টিটিউট'),
(77699, 'https://ror.org/05syxk111', 'en', 1, 'https://ror.org/05syxk111 Advocate Heart Institute'),
(77700, 'https://ror.org/04kswek43', 'en', 1, 'https://ror.org/04kswek43 ICAR-Indian Institute of Agricultural Biotechnology भा.कृ.अनु.प. भारतीय कृषि जैवप्रौद्योगिकी संस्थान'),
(77701, 'https://ror.org/04r2x0j90', 'en', 1, 'https://ror.org/04r2x0j90 Middlesex University Dubai جامعة ميدلسكس دبي'),
(77702, 'https://ror.org/04p4gjp18', 'en', 1, 'https://ror.org/04p4gjp18 Center of Excellence on Hazardous Substance Management'),
(77703, 'https://ror.org/02a6g2089', 'en', 1, 'https://ror.org/02a6g2089 Fortune Institute of International Business'),
(77704, 'https://ror.org/041bcjv49', 'en', 1, 'https://ror.org/041bcjv49 Age Institute Ikäinstituutin'),
(77705, 'https://ror.org/00ze7pb24', 'en', 1, 'https://ror.org/00ze7pb24 New England Center for OCD and Anxiety'),
(77706, 'https://ror.org/048knt538', 'pt', 1, 'https://ror.org/048knt538 Centro Universitário do Distrito Federal'),
(77707, 'https://ror.org/00be10k49', 'en', 1, 'https://ror.org/00be10k49 Moscow Academy of the Investigative Committee of the Russian Federation Московская Академия Следственного Комитета Российской Федерации');
INSERT INTO `rors` VALUES
(77708, 'https://ror.org/02j5me516', 'en', 1, 'https://ror.org/02j5me516 Foundation for Clinical and Applied Cancer Research'),
(77709, 'https://ror.org/04trppz31', 'sv', 1, 'https://ror.org/04trppz31 Spine Center Göteborg'),
(77710, 'https://ror.org/046npx426', 'en', 1, 'https://ror.org/046npx426 Federal State Budgetary Institution of Science "Scientific and Technological Center of Unique Instrumentation" of the Russian Academy of Sciences Федеральное государственное бюджетное учреждение науки Научно-технологический центр уникального приборостроения Российской академии наук'),
(77711, 'https://ror.org/02khfyc93', 'en', 1, 'https://ror.org/02khfyc93 National Engineering Research Center of Human Stem Cells 人类干细胞国家工程研究中心'),
(77712, 'https://ror.org/051yz4204', 'en', 1, 'https://ror.org/051yz4204 Institute of Transport Science and Technology Viện Khoa học và Công nghệ Giao thông vận tải'),
(77713, 'https://ror.org/04gp5j812', 'en', 1, 'https://ror.org/04gp5j812 Materials Research Center'),
(77714, 'https://ror.org/032xa9n69', 'en', 1, 'https://ror.org/032xa9n69 Ukrainian Research Institute of Transport Medicine Украинский научно-исследовательский институт медицины транспорта'),
(77715, 'https://ror.org/04q5sbq41', 'en', 1, 'https://ror.org/04q5sbq41 Jeffrey Modell Foundation'),
(77716, 'https://ror.org/01z03am77', 'en', 1, 'https://ror.org/01z03am77 Sichuan Provincial Library 四川省图书馆'),
(77717, 'https://ror.org/038p8px90', 'en', 1, 'https://ror.org/038p8px90 Pain Management Centers Of America'),
(77718, 'https://ror.org/01gce7t65', 'en', 1, 'https://ror.org/01gce7t65 Khazanah Research Institute'),
(77719, 'https://ror.org/05e322h53', 'es', 1, 'https://ror.org/05e322h53 IREC Institut de Recerques Envers la Cultura'),
(77720, 'https://ror.org/056whs452', 'en', 1, 'https://ror.org/056whs452 Institut für Pharmaökonomische Forschung Institute for Pharmaeconomic Research'),
(77721, 'https://ror.org/041vn2102', 'no_lang_code', 1, 'https://ror.org/041vn2102 Cedars-Sinai Smidt Heart Institute'),
(77722, 'https://ror.org/025jqxp42', 'no_lang_code', 1, 'https://ror.org/025jqxp42 Verlab (Bosnia and Herzegovina)'),
(77723, 'https://ror.org/00trkmr27', 'en', 1, 'https://ror.org/00trkmr27 Institute for Diagnostic Imaging and Research of the Skin and Soft Tissues Instituto de Investigacion y Diagnostico por Imagenes en Piel y Tejidos Blandos'),
(77724, 'https://ror.org/03f754t19', 'en', 1, 'https://ror.org/03f754t19 Gerash University of Medical Sciences'),
(77725, 'https://ror.org/02h8eme80', 'en', 1, 'https://ror.org/02h8eme80 Campbell Collaboration'),
(77726, 'https://ror.org/00e7apb48', 'en', 1, 'https://ror.org/00e7apb48 ASTRO-3D'),
(77727, 'https://ror.org/00jdfsf63', 'en', 1, 'https://ror.org/00jdfsf63 Fundación Biomédica Galicia Sur Galicia Sur Biomedical Foundation'),
(77728, 'https://ror.org/02r2sc792', 'fr', 1, 'https://ror.org/02r2sc792 Laboratoire Recherche Informatique Maisonneuve'),
(77729, 'https://ror.org/00qtxjg46', 'en', 1, 'https://ror.org/00qtxjg46 General Practitioners Research Institute'),
(77730, 'https://ror.org/04vgfdj66', 'no_lang_code', 1, 'https://ror.org/04vgfdj66 EVERSANA (Canada)'),
(77731, 'https://ror.org/02v4mmk55', 'en', 1, 'https://ror.org/02v4mmk55 Indonesia Defense University Universitas Pertahanan Indonesia'),
(77732, 'https://ror.org/0515r0e39', 'de', 1, 'https://ror.org/0515r0e39 Epilepsiezentrum Kleinwachau Gemeinnützige'),
(77733, 'https://ror.org/04x545z07', 'en', 1, 'https://ror.org/04x545z07 New Hampshire NeuroSpine Institute'),
(77734, 'https://ror.org/02das4m93', 'no_lang_code', 1, 'https://ror.org/02das4m93 Tiande (China) 天德科技'),
(77735, 'https://ror.org/025fkxt31', 'en', 1, 'https://ror.org/025fkxt31 Migration Institute of Finland Siirtolaisuusinstituutti'),
(77736, 'https://ror.org/03ka66t46', 'en', 1, 'https://ror.org/03ka66t46 Marine Design & Research Institute of China'),
(77737, 'https://ror.org/05b88n930', 'no_lang_code', 1, 'https://ror.org/05b88n930 CISI Ingénierie (France)'),
(77738, 'https://ror.org/02h2jfy25', 'en', 1, 'https://ror.org/02h2jfy25 Federal State Budgetary Scientific Institution Research Institute of Medical Primatology'),
(77739, 'https://ror.org/03mkfqw37', 'en', 1, 'https://ror.org/03mkfqw37 International Potato Center'),
(77740, 'https://ror.org/02trrjx85', 'en', 1, 'https://ror.org/02trrjx85 Institute of Molecular Pathology and Pathomorphology Институт молекулярной патологии и патоморфологии'),
(77741, 'https://ror.org/04wnheq77', 'en', 1, 'https://ror.org/04wnheq77 Institute for Physics'),
(77742, 'https://ror.org/04rpy5t19', 'en', 1, 'https://ror.org/04rpy5t19 African Governance and Development Institute'),
(77743, 'https://ror.org/00pwma409', 'en', 1, 'https://ror.org/00pwma409 Advanced Technologies Application Center'),
(77744, 'https://ror.org/02s8j2573', 'en', 1, 'https://ror.org/02s8j2573 Montavid Termodinamikai Kutatócsoport Montavid Thermodynamic Research Group'),
(77745, 'https://ror.org/011ypgb65', 'en', 1, 'https://ror.org/011ypgb65 Institute for Clinical and Economic Review'),
(77746, 'https://ror.org/01zr1we84', 'en', 1, 'https://ror.org/01zr1we84 Military Academy of the Republic of Belarus Ваенная акадэмія Рэспублікі Беларусь Военная академия Республики Беларусь'),
(77747, 'https://ror.org/01gg2ha52', 'en', 1, 'https://ror.org/01gg2ha52 Institute of Legislation and Legal Information of the Republic of Kazakhstan'),
(77748, 'https://ror.org/047933096', 'no_lang_code', 1, 'https://ror.org/047933096 Health Economics and Outcomes Research (United Kingdom)'),
(77749, 'https://ror.org/0585yvd38', 'en', 1, 'https://ror.org/0585yvd38 Geisinger Neuroscience Institute'),
(77750, 'https://ror.org/0419szn97', 'en', 1, 'https://ror.org/0419szn97 International Centre for Research on the Environment and the Economy'),
(77751, 'https://ror.org/04twsjs66', 'en', 1, 'https://ror.org/04twsjs66 Institute of Biochemistry of Biologically Active Compounds of the National Academy of Sciences of Belarus Институт биохимии биологически активных соединений НАН Беларуси'),
(77752, 'https://ror.org/03v8yrz80', 'en', 1, 'https://ror.org/03v8yrz80 Ngân hàng Nhà nước Việt Nam The State Bank of Vietnam'),
(77753, 'https://ror.org/02jcvm930', 'it', 1, 'https://ror.org/02jcvm930 Centro Universitario Internazionale'),
(77754, 'https://ror.org/040fbda06', 'en', 1, 'https://ror.org/040fbda06 Indian Institute of Public Administration भारतीय लोक प्रशासन संस्थान'),
(77755, 'https://ror.org/02v9hwv19', 'en', 1, 'https://ror.org/02v9hwv19 Federal State Budgetary Institution of Science Federal Scientific Center "Vladikavkaz Scientific Center of the Russian Academy of Sciences" Федеральное государственное бюджетное учреждение науки Федеральный научный центр «Владикавказский научный центр Российской академии наук»'),
(77756, 'https://ror.org/02cw59y30', 'en', 1, 'https://ror.org/02cw59y30 Genomic and Immunotherapy Medical Institute'),
(77757, 'https://ror.org/03h7kjd96', 'no_lang_code', 1, 'https://ror.org/03h7kjd96 Shanghai Centennial Scientific (China) 上海盛特尼医药科技有限公司'),
(77758, 'https://ror.org/045r6q476', 'en', 1, 'https://ror.org/045r6q476 Nagoya Heart Center 名古屋ハートセンター'),
(77759, 'https://ror.org/00dvtcv48', 'en', 1, 'https://ror.org/00dvtcv48 International Institute of Tropical Agriculture'),
(77760, 'https://ror.org/0117s0n37', 'en', 1, 'https://ror.org/0117s0n37 George & Fay Yee Centre for Healthcare Innovation'),
(77761, 'https://ror.org/013kx8n09', 'en', 1, 'https://ror.org/013kx8n09 Millennium Initiative for Collaborative Research on Bacterial Resistance'),
(77762, 'https://ror.org/05kw3dt68', 'es', 1, 'https://ror.org/05kw3dt68 Universidad Nacional de Concepción'),
(77763, 'https://ror.org/00mcfe977', 'en', 1, 'https://ror.org/00mcfe977 Academy of Family Physicians of India'),
(77764, 'https://ror.org/04tmsfn31', 'en', 1, 'https://ror.org/04tmsfn31 Federal Neurosurgical Center Novosibirsk Федеральный центр нейрохирургии'),
(77765, 'https://ror.org/028t97a83', 'no', 1, 'https://ror.org/028t97a83 Unicare'),
(77766, 'https://ror.org/028zgc806', 'en', 1, 'https://ror.org/028zgc806 Isfahan Fertility and Infertility Center مرکز باروری و ناباروری اصفهان'),
(77767, 'https://ror.org/00sesj155', 'en', 1, 'https://ror.org/00sesj155 Wellcome Trust Liverpool Glasgow Centre for Global Health Research'),
(77768, 'https://ror.org/00pnht824', 'en', 1, 'https://ror.org/00pnht824 Institute of Agricultural Economics Belgrade Институт за економику пољопривреде Београд'),
(77769, 'https://ror.org/042zsvj11', 'en', 1, 'https://ror.org/042zsvj11 Laboratory Krone'),
(77770, 'https://ror.org/02wymx149', 'en', 1, 'https://ror.org/02wymx149 The Mining, Geological & Metallurgical Insititute of India'),
(77771, 'https://ror.org/016kcza49', 'en', 1, 'https://ror.org/016kcza49 ART Reproductive Center'),
(77772, 'https://ror.org/027de2r94', 'id', 1, 'https://ror.org/027de2r94 Universitas Islam Negeri Raden Intan Lampung'),
(77773, 'https://ror.org/05aj5a120', 'en', 1, 'https://ror.org/05aj5a120 Weston A. Price Foundation'),
(77774, 'https://ror.org/00h9em455', 'en', 1, 'https://ror.org/00h9em455 Toronto Dementia Research Alliance'),
(77775, 'https://ror.org/0292hmy45', 'en', 1, 'https://ror.org/0292hmy45 National Centre for Pharmacoeconomics'),
(77776, 'https://ror.org/05ra8rv47', 'en', 1, 'https://ror.org/05ra8rv47 Multi-Robot Systems Research Group'),
(77777, 'https://ror.org/05drfac92', 'en', 1, 'https://ror.org/05drfac92 BioMed X Institute'),
(77778, 'https://ror.org/05ge59n23', 'en', 1, 'https://ror.org/05ge59n23 Vladivostok Branch of the Russian Customs Academy Владивостокский филиал Российской таможенной академии'),
(77779, 'https://ror.org/02yxh7f90', 'en', 1, 'https://ror.org/02yxh7f90 Institute of International Politics and Economics ИНСТИТУТ ЗА МЕЂУНАРОДНУ ПОЛИТИКУ И ПРИВРЕДУ'),
(77780, 'https://ror.org/0188rvx33', 'en', 1, 'https://ror.org/0188rvx33 Beijing Satellite Navigation Center 北京卫星导航中心版权所有'),
(77781, 'https://ror.org/00qzjvm58', 'en', 1, 'https://ror.org/00qzjvm58 Centers for Disease Control and Prevention'),
(77782, 'https://ror.org/03pzeh695', 'en', 1, 'https://ror.org/03pzeh695 Collaborative Care Systems Finland'),
(77783, 'https://ror.org/00bw2gb04', 'en', 1, 'https://ror.org/00bw2gb04 Institute of Transportation and Logistic Trisakti'),
(77784, 'https://ror.org/04y2ayk80', 'no_lang_code', 1, 'https://ror.org/04y2ayk80 ASRO (Finland)'),
(77785, 'https://ror.org/04c7j0c48', 'es', 1, 'https://ror.org/04c7j0c48 Instituto Nacional de Electricidad y Energías Limpias'),
(77786, 'https://ror.org/016e3th47', 'en', 1, 'https://ror.org/016e3th47 Institute of Genetics and Cytology of the National Academy of Sciences of Belarus Інстытут генетыкі і цыталогіі'),
(77787, 'https://ror.org/03qcx4p52', 'en', 1, 'https://ror.org/03qcx4p52 David Hide Asthma and Allergy Research Centre'),
(77788, 'https://ror.org/007a14354', 'en', 1, 'https://ror.org/007a14354 Beijing Aerospace Flight Control Center 北京航天飞行控制中心'),
(77789, 'https://ror.org/01cbw5x35', 'en', 1, 'https://ror.org/01cbw5x35 Christian Doppler Laboratory for Thermoelectricity'),
(77790, 'https://ror.org/03fg03m71', 'en', 1, 'https://ror.org/03fg03m71 Heartland Cancer Research'),
(77791, 'https://ror.org/00z59w514', 'en', 1, 'https://ror.org/00z59w514 Huawei German Research Center'),
(77792, 'https://ror.org/045z18t19', 'en', 1, 'https://ror.org/045z18t19 Malawi Epidemiology and Intervention Research Unit'),
(77793, 'https://ror.org/009jfs928', 'en', 1, 'https://ror.org/009jfs928 Mapi Research Trust'),
(77794, 'https://ror.org/004ymwd44', 'fr', 1, 'https://ror.org/004ymwd44 Centre Pour le Développement des Vaccins-Mali'),
(77795, 'https://ror.org/01ez37r05', 'en', 1, 'https://ror.org/01ez37r05 Myanmar Oxford Clinical Research Unit'),
(77796, 'https://ror.org/01w3v1s67', 'en', 1, 'https://ror.org/01w3v1s67 Second Affiliated Hospital of Xinjiang Medical University 新疆医科大学第二附属医院'),
(77797, 'https://ror.org/01f091k66', 'en', 1, 'https://ror.org/01f091k66 National Institute of Menthal Health, Neurology and Neurosurgery - Nyírő Gyula Hospital Országos Mentális, Ideggyógyászati és Idegsebészeti Intézet - Nyírő Gyula Kórház'),
(77798, 'https://ror.org/04jth1r26', 'en', 1, 'https://ror.org/04jth1r26 Zhejiang University-University of Edinburgh Institute 浙江大学爱丁堡大学联合学院'),
(77799, 'https://ror.org/04zpbyn04', 'fr', 1, 'https://ror.org/04zpbyn04 Institut National de Santé Publique'),
(77800, 'https://ror.org/0363fzx12', 'en', 1, 'https://ror.org/0363fzx12 Academy of Engineering Sciences of Serbia Академија инжењерских наука Србије'),
(77801, 'https://ror.org/045te9e08', 'en', 1, 'https://ror.org/045te9e08 Lao-Oxford-Mahosot Hospital-Wellcome Trust Research Unit'),
(77802, 'https://ror.org/04dp8y877', 'en', 1, 'https://ror.org/04dp8y877 Trường Đại học Công nghệ Giao thông Vận tải University Of Transport Technology'),
(77803, 'https://ror.org/03wnd8976', 'en', 1, 'https://ror.org/03wnd8976 Shanghai Drug Administration 上海市药品监督管理局'),
(77804, 'https://ror.org/014d23c86', 'en', 1, 'https://ror.org/014d23c86 Centre of Registers Vastra Gotaland Registercentrum Västra Götaland'),
(77805, 'https://ror.org/045s8h491', 'en', 1, 'https://ror.org/045s8h491 Boston Sports & Shoulder Center'),
(77806, 'https://ror.org/04vav1944', 'en', 1, 'https://ror.org/04vav1944 Yuanmeng Precision Technology Research Institute 深圳市圆梦精密技术研究院'),
(77807, 'https://ror.org/05wfvmd18', 'fr', 1, 'https://ror.org/05wfvmd18 Institut Supérieur de Technologie Médicale'),
(77808, 'https://ror.org/04g70yg97', 'en', 1, 'https://ror.org/04g70yg97 Institute of Sociology of the National Academy of Sciences of Belarus Институт социологии Национальной академии наук Беларуси'),
(77809, 'https://ror.org/00fer7583', 'en', 1, 'https://ror.org/00fer7583 CARE Fertility'),
(77810, 'https://ror.org/00am3vk94', 'en', 1, 'https://ror.org/00am3vk94 Willis-Knighton Cancer Center'),
(77811, 'https://ror.org/05dg8jj08', 'id', 1, 'https://ror.org/05dg8jj08 Institut Kesehatan Medistra Lubuk Pakam'),
(77812, 'https://ror.org/05ct65x68', 'en', 1, 'https://ror.org/05ct65x68 NextFlex'),
(77813, 'https://ror.org/00bypm595', 'en', 1, 'https://ror.org/00bypm595 Cardiovascular Center Bethanien'),
(77814, 'https://ror.org/00men8398', 'no_lang_code', 1, 'https://ror.org/00men8398 Infant'),
(77815, 'https://ror.org/00hsvaf31', 'en', 1, 'https://ror.org/00hsvaf31 Anesthesiology and Surgical Oncology Research Group'),
(77816, 'https://ror.org/02p49q920', 'en', 1, 'https://ror.org/02p49q920 National Guard Military Academy of Ukraine Національна академія Національної гвардії України'),
(77817, 'https://ror.org/047h8wb98', 'en', 1, 'https://ror.org/047h8wb98 Centers for Disease Control and Prevention'),
(77818, 'https://ror.org/039q3j825', 'no_lang_code', 1, 'https://ror.org/039q3j825 e-Watchdog'),
(77819, 'https://ror.org/047ravy94', 'en', 1, 'https://ror.org/047ravy94 Universal Academy'),
(77820, 'https://ror.org/04wtvmb30', 'en', 1, 'https://ror.org/04wtvmb30 Levinson Medical Center for Learning Disabilities'),
(77821, 'https://ror.org/04crg4b36', 'de', 1, 'https://ror.org/04crg4b36 Academy for Oral Implantology Akademie für orale Implantologie'),
(77822, 'https://ror.org/031nxkd06', 'en', 1, 'https://ror.org/031nxkd06 Church of Ireland Theological Institute'),
(77823, 'https://ror.org/02qxryv39', 'en', 1, 'https://ror.org/02qxryv39 International Water Management Institute'),
(77824, 'https://ror.org/01shdkn71', 'en', 1, 'https://ror.org/01shdkn71 Federal Scientific Center for Biological Systems and Agricultural Technologies of the Russian Academy of Sciences Федеральное государственное бюджетное научное учреждение «Федеральный научный центр биологических систем и агротехнологий Российской академии наук»'),
(77825, 'https://ror.org/00wkwdc38', 'fr', 1, 'https://ror.org/00wkwdc38 Institut de Santé et de Sécurité au Travail معهد الصحة و السلامة المهنية بتونس'),
(77826, 'https://ror.org/03y0dsd75', 'no', 1, 'https://ror.org/03y0dsd75 CatoSenteret'),
(77827, 'https://ror.org/0494d5694', 'de', 1, 'https://ror.org/0494d5694 Neurologisches Rehabilitationszentrum Quellenhof Bad Wildbad'),
(77828, 'https://ror.org/01v67yq30', 'en', 1, 'https://ror.org/01v67yq30 Nephrology Center of Maryland'),
(77829, 'https://ror.org/04ejadd69', 'en', 1, 'https://ror.org/04ejadd69 Hagyard Equine Medical Institute'),
(77830, 'https://ror.org/049nx2j30', 'en', 1, 'https://ror.org/049nx2j30 AMPATH'),
(77831, 'https://ror.org/04y5vcf04', 'no_lang_code', 1, 'https://ror.org/04y5vcf04 MantraCare'),
(77832, 'https://ror.org/01fhm1y42', 'en', 1, 'https://ror.org/01fhm1y42 Johns Hopkins Center for Health Security'),
(77833, 'https://ror.org/03a6s3x06', 'en', 1, 'https://ror.org/03a6s3x06 Biofuel Research Team'),
(77834, 'https://ror.org/011pmrv14', 'en', 1, 'https://ror.org/011pmrv14 William Angliss Institute'),
(77835, 'https://ror.org/016fr7d87', 'en', 1, 'https://ror.org/016fr7d87 The Institute of History of the National Academy of Sciences of Belarus Институт истории Национальной академии наук Беларуси'),
(77836, 'https://ror.org/03ka58c58', 'id', 1, 'https://ror.org/03ka58c58 Universitas PGRI Yogyakarta'),
(77837, 'https://ror.org/0447jv934', 'es', 1, 'https://ror.org/0447jv934 Instituto de Filosofía y Ciencias de la Complejidad'),
(77838, 'https://ror.org/05mgnvf25', 'en', 1, 'https://ror.org/05mgnvf25 Centro de Investigación para la Gestión Integrada del Riesgo de Desastres Research Center for Integrated Disaster Risk Management'),
(77839, 'https://ror.org/02jkmyz31', 'en', 1, 'https://ror.org/02jkmyz31 Sickle Cell Institute Chhattisgarh, Raipur सिकल सेल इंस्टीट्यूट छत्तीसगढ़, रायपुर'),
(77840, 'https://ror.org/029tp8j70', 'en', 1, 'https://ror.org/029tp8j70 Universitas Darussalam Gontor University of Darussalam Gontor'),
(77841, 'https://ror.org/043pgx245', 'en', 1, 'https://ror.org/043pgx245 National Institute of Nuclear Medicine & Allied Sciences ন্যাশনাল ইনস্টিটিউট অব নিউক্লিয়ার মেডিসিন এন্ড অ্যালায়েড সায়েন্সেস'),
(77842, 'https://ror.org/01g48s022', 'en', 1, 'https://ror.org/01g48s022 IT Step University Вищий навчальний заклад'),
(77843, 'https://ror.org/02szhdk88', 'en', 1, 'https://ror.org/02szhdk88 Kazakh University Ways of Communications'),
(77844, 'https://ror.org/01j4ba358', 'en', 1, 'https://ror.org/01j4ba358 Lahore Garrison University لاہور گیریژن یونیورسٹی'),
(77845, 'https://ror.org/00qw43163', 'no_lang_code', 1, 'https://ror.org/00qw43163 Applied Research (United States)'),
(77846, 'https://ror.org/03tv5t613', 'de', 1, 'https://ror.org/03tv5t613 Institut für Managementkompetenz'),
(77847, 'https://ror.org/00bb9ch64', 'en', 1, 'https://ror.org/00bb9ch64 Indian Institute of Information Technology Guwahati भारतीय सूचना प्रौद्योगिकी संस्थान गुवाहाटी'),
(77848, 'https://ror.org/04r5yzj24', 'no_lang_code', 1, 'https://ror.org/04r5yzj24 Professor Wühr und Simmel Gesundheits MANAGEMENT Systeme (Germany)'),
(77849, 'https://ror.org/05vazzh87', 'pt', 1, 'https://ror.org/05vazzh87 Centro de Reprodução Humana Prof. Franco Junior'),
(77850, 'https://ror.org/012zjgq34', 'en', 1, 'https://ror.org/012zjgq34 Korea Institute for Animal Products Quality Evaluation 축산물품질평가원'),
(77851, 'https://ror.org/05p5p2029', 'en', 1, 'https://ror.org/05p5p2029 California Perinatal Quality Care Collaborative'),
(77852, 'https://ror.org/0461kck49', 'no_lang_code', 1, 'https://ror.org/0461kck49 ABB (India)'),
(77853, 'https://ror.org/016md1z42', 'en', 1, 'https://ror.org/016md1z42 Samara Law Institute of the Federal Penitentiary Service of Russia САМАРСКИЙ ЮРИДИЧЕСКИЙ ИНСТИТУТ ФСИН РОССИИ'),
(77854, 'https://ror.org/00cgnj660', 'en', 1, 'https://ror.org/00cgnj660 Ted Rogers Centre for Heart Research'),
(77855, 'https://ror.org/02wn55517', 'en', 1, 'https://ror.org/02wn55517 African Conservation Centre'),
(77856, 'https://ror.org/050ya8p70', 'en', 1, 'https://ror.org/050ya8p70 Institute of Professional Accountants of Russia Институт профессиональных бухгалтеров и аудиторов России'),
(77857, 'https://ror.org/00ydnew86', 'en', 1, 'https://ror.org/00ydnew86 SKA Telescope, Australia'),
(77858, 'https://ror.org/028mpsh75', 'en', 1, 'https://ror.org/028mpsh75 Aga Khan Development Network'),
(77859, 'https://ror.org/05w3wze89', 'it', 1, 'https://ror.org/05w3wze89 Centro di Terapia Metacognitiva Interpersonale'),
(77860, 'https://ror.org/04jcdfd62', 'no_lang_code', 1, 'https://ror.org/04jcdfd62 HPO Center (Netherlands)'),
(77861, 'https://ror.org/04ec6rc19', 'en', 1, 'https://ror.org/04ec6rc19 African Institute for Development Policy'),
(77862, 'https://ror.org/048mjnv22', 'en', 1, 'https://ror.org/048mjnv22 Beijing Research Center for Agricultural and Standards and Testing 北京农业质量标准与检测技术研究中心'),
(77863, 'https://ror.org/058wvcm81', 'en', 1, 'https://ror.org/058wvcm81 Bhagwan Mahaveer Jain Hospital'),
(77864, 'https://ror.org/010b90792', 'en', 1, 'https://ror.org/010b90792 Samara Federal Research Scientific Center Самарский научный центр Российской академии наук'),
(77865, 'https://ror.org/01svgpe52', 'en', 1, 'https://ror.org/01svgpe52 Pain in Motion'),
(77866, 'https://ror.org/015x1jv94', 'en', 1, 'https://ror.org/015x1jv94 State Institution "Institute for Children and Adolescents Health Care at the National Academy of Medical Sciences of Ukraine" Державна установа "Інститут охорони здоров''я дітей та підлітків Національної академії медичних наук України"'),
(77867, 'https://ror.org/02wc05d26', 'en', 1, 'https://ror.org/02wc05d26 Health City Institute'),
(77868, 'https://ror.org/01jf72w53', 'en', 1, 'https://ror.org/01jf72w53 Central Scientific Research Institute of Armament and Military Equipment of the Armed Forces of Ukraine Центральний науково-дослідний інститут озброєння та військової техніки Збройних Сил України'),
(77869, 'https://ror.org/03ndm5988', 'en', 1, 'https://ror.org/03ndm5988 The Institution of Engineers Malaysia'),
(77870, 'https://ror.org/02exxtn84', 'en', 1, 'https://ror.org/02exxtn84 Amity University جامعة أميتي'),
(77871, 'https://ror.org/02fz2r438', 'pt', 1, 'https://ror.org/02fz2r438 Hospital Universitário Cajuru'),
(77872, 'https://ror.org/009eea568', 'en', 1, 'https://ror.org/009eea568 National Institution for Finance and Development 国家金融与发展实验室'),
(77873, 'https://ror.org/04hna5g63', 'en', 1, 'https://ror.org/04hna5g63 Federal State Budgetary Institution "Federal Center For Cardiovascular Surgery" Ministry of Health of The Russian Federation ФЕДЕРАЛЬНОЕ ГОСУДАРСТВЕННОЕ БЮДЖЕТНОЕ УЧРЕЖДЕНИЕ "ФЕДЕРАЛЬНЫЙ ЦЕНТР СЕРДЕЧНО-СОСУДИСТОЙ ХИРУРГИИ" МИНИСТЕРСТВА ЗДРАВООХРАНЕНИЯ РОССИЙСКОЙ ФЕДЕРАЦИИ'),
(77874, 'https://ror.org/00dyhkz14', 'no_lang_code', 1, 'https://ror.org/00dyhkz14 Istanbul Retina Institute (Turkey)'),
(77875, 'https://ror.org/02ba9p180', 'en', 1, 'https://ror.org/02ba9p180 Palau International Coral Reef Center'),
(77876, 'https://ror.org/01ragyh24', 'en', 1, 'https://ror.org/01ragyh24 Dazhou Academy of Agricultural Sciences'),
(77877, 'https://ror.org/01pwba224', 'en', 1, 'https://ror.org/01pwba224 Baikal Research Centre'),
(77878, 'https://ror.org/05jx29z89', 'en', 1, 'https://ror.org/05jx29z89 London Centre for Neglected Tropical Disease Research'),
(77879, 'https://ror.org/02h1mqb03', 'en', 1, 'https://ror.org/02h1mqb03 Kazakh Institute of Oncology and Radiology Казахский научно-исследовательский институт онкологии и радиологии'),
(77880, 'https://ror.org/030ypay32', 'en', 1, 'https://ror.org/030ypay32 Middlesex University'),
(77881, 'https://ror.org/01j5s9s08', 'en', 1, 'https://ror.org/01j5s9s08 Austrian Institute for Sports Medicine'),
(77882, 'https://ror.org/02r383j45', 'en', 1, 'https://ror.org/02r383j45 Punjab Remote Sensing Centre'),
(77883, 'https://ror.org/02bw2gt68', 'no_lang_code', 1, 'https://ror.org/02bw2gt68 BioClinicum (Russia)'),
(77884, 'https://ror.org/054vdfx15', 'no_lang_code', 1, 'https://ror.org/054vdfx15 IDEXX Laboratories (Germany)'),
(77885, 'https://ror.org/04mjev045', 'en', 1, 'https://ror.org/04mjev045 Department of Marine and Coastal Resources กรมทรัพยากรทางทะเลและชายฝั่ง'),
(77886, 'https://ror.org/03nk1j814', 'en', 1, 'https://ror.org/03nk1j814 Ventura County Medical Center'),
(77887, 'https://ror.org/03jgpyv48', 'no_lang_code', 1, 'https://ror.org/03jgpyv48 UZR (Germany)'),
(77888, 'https://ror.org/05qjw7v53', 'en', 1, 'https://ror.org/05qjw7v53 Pervasive Artificial Intelligence Research Labs 人工智慧普適研究中心'),
(77889, 'https://ror.org/033d86250', 'no_lang_code', 1, 'https://ror.org/033d86250 Therachem Research Medilab (India)'),
(77890, 'https://ror.org/03w03n990', 'en', 1, 'https://ror.org/03w03n990 Centre for Disability Prevention and Rehabilitation'),
(77891, 'https://ror.org/00e8gtn74', 'en', 1, 'https://ror.org/00e8gtn74 Evolve Restorative Center'),
(77892, 'https://ror.org/03114jr32', 'en', 1, 'https://ror.org/03114jr32 Sleep Comprehensive Care Clinic Yoyogi 睡眠総合ケアクリニック代々木は'),
(77893, 'https://ror.org/00156kt95', 'en', 1, 'https://ror.org/00156kt95 Australian General Practice Accreditation Limited'),
(77894, 'https://ror.org/01stwpk76', 'en', 1, 'https://ror.org/01stwpk76 Mallacoota Medical Centre'),
(77895, 'https://ror.org/051an6p98', 'no_lang_code', 1, 'https://ror.org/051an6p98 Samsung (Russia)'),
(77896, 'https://ror.org/036vn8q40', 'pt', 1, 'https://ror.org/036vn8q40 Centro De Medicina Veterinária Anjos De Assis'),
(77897, 'https://ror.org/00ns93f55', 'en', 1, 'https://ror.org/00ns93f55 Erwin L. Hahn Institute for Magnetic Resonance Imaging'),
(77898, 'https://ror.org/0129hgq75', 'en', 1, 'https://ror.org/0129hgq75 Danesh-e-Tandorosti Iranian Institute of Higher Health'),
(77899, 'https://ror.org/0327c2165', 'en', 1, 'https://ror.org/0327c2165 Institute of Radiobiology of NAS of Belarus Институт радиобиологии НАН Беларуси'),
(77900, 'https://ror.org/0026pjn75', 'en', 1, 'https://ror.org/0026pjn75 Amosov National Institute of Cardiovascular Surgery'),
(77901, 'https://ror.org/0426xvw20', 'en', 1, 'https://ror.org/0426xvw20 Proton Collaborative Group'),
(77902, 'https://ror.org/02pfaex92', 'en', 1, 'https://ror.org/02pfaex92 Orthopaedic Research Group'),
(77903, 'https://ror.org/0568kxy29', 'pt', 1, 'https://ror.org/0568kxy29 UniBrasil Centro Universitário'),
(77904, 'https://ror.org/05cam4g78', 'en', 1, 'https://ror.org/05cam4g78 Institut International d''Agriculture Tropicale International Institute of Tropical Agriculture'),
(77905, 'https://ror.org/04c8h1e65', 'en', 1, 'https://ror.org/04c8h1e65 Cereneo'),
(77906, 'https://ror.org/01qg9v093', 'en', 1, 'https://ror.org/01qg9v093 Mangalore Institute of Oncology ಮಂಗಳೂರು ಇನ್ಸ್ಟಿಟ್ಯೂಟ್ ಆನ್ಕಾಲಜಿ'),
(77907, 'https://ror.org/00csayb94', 'en', 1, 'https://ror.org/00csayb94 Dallas Plastic Surgery Institute'),
(77908, 'https://ror.org/05b39cf56', 'en', 1, 'https://ror.org/05b39cf56 Africa Academy for Public Health'),
(77909, 'https://ror.org/00vbdjc22', 'en', 1, 'https://ror.org/00vbdjc22 Institute of Physiology National Academy of Sciences of Belarus ИНСТИТУТ ФИЗИОЛОГИИ НАЦИОНАЛЬНОЙ АКАДЕМИИ НАУК БЕЛАРУСИ'),
(77910, 'https://ror.org/05wctbc12', 'en', 1, 'https://ror.org/05wctbc12 Chemical Genomics Centre Zentrum für Chemische Genomik'),
(77911, 'https://ror.org/01ytd2n62', 'no_lang_code', 1, 'https://ror.org/01ytd2n62 California Institute of Behavioral Neurosciences and Psychology (United States)'),
(77912, 'https://ror.org/030qbr085', 'en', 1, 'https://ror.org/030qbr085 Shanghai Key Laboratory of Trustworthy Computing 上海市高可信计算重点实验室'),
(77913, 'https://ror.org/03kx37d46', 'en', 1, 'https://ror.org/03kx37d46 Latvian State Forest Research Institute "Silava" Latvijas Valsts mežzinātnes institūts "Silava"'),
(77914, 'https://ror.org/05efnac71', 'en', 1, 'https://ror.org/05efnac71 King Abdullah City for Atomic and Renewable Energy مدينة الملك عبدالله للطاقة الذرية والمتجددة'),
(77915, 'https://ror.org/01qhy6f74', 'es', 1, 'https://ror.org/01qhy6f74 Red de Investigación en Actividades Preventivas y Promoción de la Salud'),
(77916, 'https://ror.org/02tvjer66', 'en', 1, 'https://ror.org/02tvjer66 National Quality Inspection and Testing Center for Surveying and Mapping Products 国家测绘产品质量检验测试中心'),
(77917, 'https://ror.org/02yerkk86', 'en', 1, 'https://ror.org/02yerkk86 Afagh Higher Education Institute مؤسسه آموزش عالی آفاق'),
(77918, 'https://ror.org/05d8bee68', 'en', 1, 'https://ror.org/05d8bee68 Global Health Literacy Academy'),
(77919, 'https://ror.org/01x1qyv30', 'en', 1, 'https://ror.org/01x1qyv30 Istituto Tethys ONLUS Tethys Research Institute'),
(77920, 'https://ror.org/04mwmyd62', 'en', 1, 'https://ror.org/04mwmyd62 Global Policy Institute'),
(77921, 'https://ror.org/05e21fw44', 'en', 1, 'https://ror.org/05e21fw44 National University of Technology'),
(77922, 'https://ror.org/03dgmx930', 'en', 1, 'https://ror.org/03dgmx930 Biofuel Research Team'),
(77923, 'https://ror.org/01vxqsk45', 'es', 1, 'https://ror.org/01vxqsk45 INDCRAN'),
(77924, 'https://ror.org/052f2eb74', 'en', 1, 'https://ror.org/052f2eb74 Łukasiewicz Research Network - Institute of Industrial Organic Chemistry, Branch Pszczyna'),
(77925, 'https://ror.org/02b8cgg17', 'en', 1, 'https://ror.org/02b8cgg17 Eternal Hospital'),
(77926, 'https://ror.org/04rgjq668', 'no_lang_code', 1, 'https://ror.org/04rgjq668 National Center for Advanced Packaging (China)'),
(77927, 'https://ror.org/04ys9d360', 'fr', 1, 'https://ror.org/04ys9d360 Centre Africain de Recherche en Epidémiologie et en Santé Publique'),
(77928, 'https://ror.org/03rppfx49', 'no_lang_code', 1, 'https://ror.org/03rppfx49 HCG Cancer Centre'),
(77929, 'https://ror.org/03dghjn81', 'en', 1, 'https://ror.org/03dghjn81 Orthopaedic Center of New Jersey'),
(77930, 'https://ror.org/04bjzcz61', 'en', 1, 'https://ror.org/04bjzcz61 Shandong Provincial Key Laboratory of Renewable Energy Building Application Technology 山东省可再生能源建筑应用技术重点实验室'),
(77931, 'https://ror.org/047wscg41', 'en', 1, 'https://ror.org/047wscg41 Institute for Animal Husbandry'),
(77932, 'https://ror.org/02hd7j845', 'en', 1, 'https://ror.org/02hd7j845 Institute of Forage Crops Институтът по фуражните култури'),
(77933, 'https://ror.org/03rrkbt66', 'es', 1, 'https://ror.org/03rrkbt66 Instituto de Investigación Geológico y Energético'),
(77934, 'https://ror.org/05asga947', 'en', 1, 'https://ror.org/05asga947 Health and Human Development (2HD) Research Network'),
(77935, 'https://ror.org/039vbzh95', 'en', 1, 'https://ror.org/039vbzh95 Shri Lakshmi Clinic & Scan Centre'),
(77936, 'https://ror.org/02623eb90', 'en', 1, 'https://ror.org/02623eb90 Astrogeology Science Center'),
(77937, 'https://ror.org/01669gb09', 'en', 1, 'https://ror.org/01669gb09 I.Krypiakevych Institute of Ukrainian Studies National Academy of Sciences of Ukraine І.Крип’якевича Національної академії наук України'),
(77938, 'https://ror.org/0507fk326', 'en', 1, 'https://ror.org/0507fk326 MTA-SZTE Research Group on Artificial Intelligence'),
(77939, 'https://ror.org/045pvax67', 'de', 1, 'https://ror.org/045pvax67 Zentrum für Pränataldiagnostik'),
(77940, 'https://ror.org/00e2m4m53', 'en', 1, 'https://ror.org/00e2m4m53 Individual Development and Adaptive Education'),
(77941, 'https://ror.org/05gmhvw49', 'en', 1, 'https://ror.org/05gmhvw49 Nepalese Army Institute of Health Services नेपाली सेना स्वास्थ्य विज्ञान संस्थान'),
(77942, 'https://ror.org/01exahc70', 'en', 1, 'https://ror.org/01exahc70 Security Service of Ukraine Служба безпеки України'),
(77943, 'https://ror.org/04egehb02', 'en', 1, 'https://ror.org/04egehb02 European Corporate Governance Institute'),
(77944, 'https://ror.org/000neg726', 'en', 1, 'https://ror.org/000neg726 Gillies McIndoe Research Institute'),
(77945, 'https://ror.org/00rmh8b04', 'en', 1, 'https://ror.org/00rmh8b04 Center for the Socioeconomic Impact of Environmental Policies Centro para el Impacto Socioeconómico de las Políticas Ambientales'),
(77946, 'https://ror.org/04545k330', 'en', 1, 'https://ror.org/04545k330 Federal Research Center of Fundamental and Translational Medicine Федеральный Исследовательский Центр Фундаментальной и Трансляционной Медицины'),
(77947, 'https://ror.org/00kqtef53', 'en', 1, 'https://ror.org/00kqtef53 Beijing Hypertension Prevention Association 北京高血压防治协会'),
(77948, 'https://ror.org/04j270809', 'en', 1, 'https://ror.org/04j270809 Thomas Jefferson Foundation'),
(77949, 'https://ror.org/04vbskr07', 'en', 1, 'https://ror.org/04vbskr07 Geos Institute'),
(77950, 'https://ror.org/02hcx4k66', 'es', 1, 'https://ror.org/02hcx4k66 Kavilando'),
(77951, 'https://ror.org/04a3ynd76', 'no_lang_code', 1, 'https://ror.org/04a3ynd76 Donetsk Botanical Garden Донецький ботанічний сад'),
(77952, 'https://ror.org/00zb80875', 'en', 1, 'https://ror.org/00zb80875 National Heart Institute नेशनल हार्ट इंस्टिट्यूट'),
(77953, 'https://ror.org/030xykx52', 'en', 1, 'https://ror.org/030xykx52 The Northern Ireland Cancer Centre'),
(77954, 'https://ror.org/04btxg914', 'en', 1, 'https://ror.org/04btxg914 Bioinformatics Institute Институт биоинформатики'),
(77955, 'https://ror.org/01rt0fh70', 'en', 1, 'https://ror.org/01rt0fh70 Center for International Forestry Research'),
(77956, 'https://ror.org/014nwb521', 'en', 1, 'https://ror.org/014nwb521 Sydney Sexual Health Centre'),
(77957, 'https://ror.org/02rv5nr81', 'en', 1, 'https://ror.org/02rv5nr81 Canada East Spine Centre'),
(77958, 'https://ror.org/02dtmmn34', 'en', 1, 'https://ror.org/02dtmmn34 Cambodia-Oxford Medical Research Unit'),
(77959, 'https://ror.org/00qh9dx40', 'en', 1, 'https://ror.org/00qh9dx40 Shoklo Malaria Research Unit'),
(77960, 'https://ror.org/05g0pkp12', 'es', 1, 'https://ror.org/05g0pkp12 Universidad Nacional De Caaguazú'),
(77961, 'https://ror.org/03mdbpg08', 'no_lang_code', 1, 'https://ror.org/03mdbpg08 Wren Laboratories (United States)'),
(77962, 'https://ror.org/0089es913', 'en', 1, 'https://ror.org/0089es913 The Julian Centre'),
(77963, 'https://ror.org/001t9rv66', 'en', 1, 'https://ror.org/001t9rv66 Biblijski Institut The Biblical Institute'),
(77964, 'https://ror.org/01tqdyq91', 'en', 1, 'https://ror.org/01tqdyq91 Institute of General and Inorganic Chemistry of National Academy of Sciences of Belarus Институт общей и неорганической химии Национальной академии наук Беларуси'),
(77965, 'https://ror.org/02gnydh35', 'pt', 1, 'https://ror.org/02gnydh35 Instituto de Patologia da Coluna'),
(77966, 'https://ror.org/00brjxm92', 'fr', 1, 'https://ror.org/00brjxm92 Institut Salah-Azaïz'),
(77967, 'https://ror.org/019qyzj84', 'en', 1, 'https://ror.org/019qyzj84 State Museum of Natural History of the National Academy of Sciences of Ukraine Державний природознавчий музей НАН України'),
(77968, 'https://ror.org/03rjyvk34', 'no_lang_code', 1, 'https://ror.org/03rjyvk34 MSIGHT Technologies (China)'),
(77969, 'https://ror.org/01tapgj66', 'en', 1, 'https://ror.org/01tapgj66 International Crops Research Institute for the Semi-Arid Tropics'),
(77970, 'https://ror.org/04vg1gh12', 'en', 1, 'https://ror.org/04vg1gh12 Kulkarni reconstructive Urology Center'),
(77971, 'https://ror.org/017g28623', 'no_lang_code', 1, 'https://ror.org/017g28623 Fistulacure'),
(77972, 'https://ror.org/00s1sz824', 'en', 1, 'https://ror.org/00s1sz824 Beijing Institute of Big Data Research 北京大数据研究院'),
(77973, 'https://ror.org/05m962h09', 'en', 1, 'https://ror.org/05m962h09 Health & Safety in Sports'),
(77974, 'https://ror.org/031333553', 'en', 1, 'https://ror.org/031333553 Voronezh Institute of the Federal Penitentiary Service of Russia Воронежский институт ФСИН России'),
(77975, 'https://ror.org/01fjkp854', 'en', 1, 'https://ror.org/01fjkp854 International University of Beirut'),
(77976, 'https://ror.org/05jzgzx91', 'en', 1, 'https://ror.org/05jzgzx91 University of Glasgow Singapore'),
(77977, 'https://ror.org/00vp5ry21', 'en', 1, 'https://ror.org/00vp5ry21 Iranshahr University دانشگاه علوم پزشکی و خدمات بهداشتی درمانی ایرانشهر'),
(77978, 'https://ror.org/04445fp84', 'en', 1, 'https://ror.org/04445fp84 Center for Advanced Internet Studies'),
(77979, 'https://ror.org/057g3at21', 'fr', 1, 'https://ror.org/057g3at21 Fondation Vallée'),
(77980, 'https://ror.org/03z8p5796', 'en', 1, 'https://ror.org/03z8p5796 National Engineering Laboratory of Deep Learning Technology and Application 深度学习技术及应用国家工程实验室'),
(77981, 'https://ror.org/004yeqt02', 'en', 1, 'https://ror.org/004yeqt02 South Atlantic Environmental Research Institute'),
(77982, 'https://ror.org/05sy8gb82', 'en', 1, 'https://ror.org/05sy8gb82 W.M. Keck Science Center'),
(77983, 'https://ror.org/037bhg174', 'en', 1, 'https://ror.org/037bhg174 Center for Advanced Energy Studies'),
(77984, 'https://ror.org/02tygyj04', 'en', 1, 'https://ror.org/02tygyj04 State Key Laboratory of Gas Disaster Detecting, Preventing and Emergency Controlling 瓦斯灾害监控与应急技术国家重点实验室'),
(77985, 'https://ror.org/02vxbm786', 'en', 1, 'https://ror.org/02vxbm786 The Retina Center'),
(77986, 'https://ror.org/00pkx4k51', 'en', 1, 'https://ror.org/00pkx4k51 Tsinghua Sichuan Energy Internet Research Institute'),
(77987, 'https://ror.org/05h3xe829', 'en', 1, 'https://ror.org/05h3xe829 Shenzhen Nanshan Center for Chronic Disease Control 深圳南山区慢性病防治院'),
(77988, 'https://ror.org/03z41xz33', 'pt', 1, 'https://ror.org/03z41xz33 Centro Universitário São Lucas'),
(77989, 'https://ror.org/027a61038', 'en', 1, 'https://ror.org/027a61038 Shandong Center for Disease Control and Prevention'),
(77990, 'https://ror.org/00a2x9d51', 'en', 1, 'https://ror.org/00a2x9d51 National Clinical Research Center for Digestive Diseases 国家消化系统疾病临床医学研究中心'),
(77991, 'https://ror.org/03cdc4796', 'no_lang_code', 1, 'https://ror.org/03cdc4796 SuVi Eye Institute and Lasik Laser Center'),
(77992, 'https://ror.org/01e49td52', 'pt', 1, 'https://ror.org/01e49td52 Instituto Benjamin Constant'),
(77993, 'https://ror.org/01fdhrh83', 'en', 1, 'https://ror.org/01fdhrh83 The Carter Center'),
(77994, 'https://ror.org/01m4jzx92', 'en', 1, 'https://ror.org/01m4jzx92 East Tennessee Clinical Research'),
(77995, 'https://ror.org/021jqe068', 'en', 1, 'https://ror.org/021jqe068 Christian Sarkine Autism Treatment Center'),
(77996, 'https://ror.org/01nw09h32', 'en', 1, 'https://ror.org/01nw09h32 Plant Biosecurity Cooperative Research Centre'),
(77997, 'https://ror.org/00dc87r24', 'en', 1, 'https://ror.org/00dc87r24 Genki Plaza Medical Center for Health Care'),
(77998, 'https://ror.org/00cbr6959', 'de', 1, 'https://ror.org/00cbr6959 Hirslanden Klinik Im Park'),
(77999, 'https://ror.org/02ss4n480', 'de', 1, 'https://ror.org/02ss4n480 Hirslanden Klinik St. Anna'),
(78000, 'https://ror.org/05s23vf58', 'de', 1, 'https://ror.org/05s23vf58 Hirslanden Andreasklinik Cham Zug'),
(78001, 'https://ror.org/00yverh79', 'fr', 1, 'https://ror.org/00yverh79 Hirslanden Clinique Bois-Cerf'),
(78002, 'https://ror.org/02mh8f163', 'fr', 1, 'https://ror.org/02mh8f163 Clinique Cecil Hirslanden Clinique Cecil'),
(78003, 'https://ror.org/01sdzh977', 'fr', 1, 'https://ror.org/01sdzh977 Hirslanden Clinique La Colline'),
(78004, 'https://ror.org/037pt1459', 'de', 1, 'https://ror.org/037pt1459 Hirslanden Klinik Birshof'),
(78005, 'https://ror.org/04b5p3125', 'de', 1, 'https://ror.org/04b5p3125 Hirslanden Clinique des Tilleuls Hirslanden Klinik Linde'),
(78006, 'https://ror.org/012fqf756', 'de', 1, 'https://ror.org/012fqf756 Hirslanden Klinik Am Rosenberg'),
(78007, 'https://ror.org/01bqwab81', 'de', 1, 'https://ror.org/01bqwab81 Hirslanden Klinik Beau-Site'),
(78008, 'https://ror.org/020qywr37', 'de', 1, 'https://ror.org/020qywr37 Hirslanden Klinik Permanence'),
(78009, 'https://ror.org/0207xnr07', 'de', 1, 'https://ror.org/0207xnr07 Hirslanden Klinik Stephanshorn'),
(78010, 'https://ror.org/00vh6hg12', 'de', 1, 'https://ror.org/00vh6hg12 Hirslanden Salem-Spital'),
(78011, 'https://ror.org/042k8ng80', 'en', 1, 'https://ror.org/042k8ng80 Research Institute of Human Morphology Научно-исследовательский институт морфологии человека'),
(78012, 'https://ror.org/01rkjeh73', 'en', 1, 'https://ror.org/01rkjeh73 Worldwide Laser Institute'),
(78013, 'https://ror.org/01wg8sb33', 'en', 1, 'https://ror.org/01wg8sb33 Centar izuzetne vrednosti u oblasti istraživanja ishrane i metabolizma Centre of Research Excellence in Nutrition and Metabolism'),
(78014, 'https://ror.org/02ptjtw84', 'en', 1, 'https://ror.org/02ptjtw84 Lewis Gale Medical Center'),
(78015, 'https://ror.org/03y87s645', 'en', 1, 'https://ror.org/03y87s645 Network for Socioeconomic Research and Advancement'),
(78016, 'https://ror.org/0490yqd31', 'en', 1, 'https://ror.org/0490yqd31 Institute of Paediatric Virology'),
(78017, 'https://ror.org/014hvfk26', 'pt', 1, 'https://ror.org/014hvfk26 UniFG Centro Universitário'),
(78018, 'https://ror.org/02rx3c188', 'nl', 1, 'https://ror.org/02rx3c188 Leidsche Rijn Julius Gezondheidscentra Leidsche Rijn Julius Health Centers'),
(78019, 'https://ror.org/025bmdq34', 'en', 1, 'https://ror.org/025bmdq34 The Family Centre'),
(78020, 'https://ror.org/04kr8vf53', 'en', 1, 'https://ror.org/04kr8vf53 The Wilson Centre'),
(78021, 'https://ror.org/03ej42966', 'en', 1, 'https://ror.org/03ej42966 Hamilton County Coroner'),
(78022, 'https://ror.org/04z2zm587', 'en', 1, 'https://ror.org/04z2zm587 Global Health Research Center of Central Asia Центр Изучения Глобального Здоровья в Центральной Азии'),
(78023, 'https://ror.org/02tb2yp70', 'en', 1, 'https://ror.org/02tb2yp70 CONEM Autism Research'),
(78024, 'https://ror.org/01c8fdr62', 'en', 1, 'https://ror.org/01c8fdr62 Life Quality Research Centre'),
(78025, 'https://ror.org/0307xfv95', 'en', 1, 'https://ror.org/0307xfv95 Ottawa Allergy Research Corporation'),
(78026, 'https://ror.org/038tggw74', 'id', 1, 'https://ror.org/038tggw74 Universitas Dharmas Indonesia'),
(78027, 'https://ror.org/03jqa2c59', 'en', 1, 'https://ror.org/03jqa2c59 Institut für Prävention und Arbeitsmedizin Institute for Prevention and Occupational Medicine'),
(78028, 'https://ror.org/05sy2ev34', 'en', 1, 'https://ror.org/05sy2ev34 Centre for Sight'),
(78029, 'https://ror.org/041fcgy60', 'en', 1, 'https://ror.org/041fcgy60 Marien Hospital Witten'),
(78030, 'https://ror.org/05vv9dr68', 'de', 1, 'https://ror.org/05vv9dr68 Medizinisches Zentrum für Seelische Gesundheit'),
(78031, 'https://ror.org/04zzd2n41', 'de', 1, 'https://ror.org/04zzd2n41 Krankenhaus Lübbecke-Rahden, Universitätsklinik für Psychiatrie und Psychotherapie'),
(78032, 'https://ror.org/01c577389', 'de', 1, 'https://ror.org/01c577389 Krankenhaus Lübbecke-Rahden, Universitätsklinik für Psychosomatik und Psychotherapie'),
(78033, 'https://ror.org/01mxnn839', 'en', 1, 'https://ror.org/01mxnn839 St. Elisabeth-Hospital Bochum'),
(78034, 'https://ror.org/020jy7109', 'en', 1, 'https://ror.org/020jy7109 CTA Observatory'),
(78035, 'https://ror.org/00jrmky87', 'it', 1, 'https://ror.org/00jrmky87 Puglia Salute'),
(78036, 'https://ror.org/031jxes94', 'en', 1, 'https://ror.org/031jxes94 Ghana College of Physicians and Surgeons'),
(78037, 'https://ror.org/0032n4537', 'en', 1, 'https://ror.org/0032n4537 Institute of Pharmacology and Toxicology of the National Academy of Medical Sciences of Ukraine Інститут фармакології та токсикології НАМН України'),
(78038, 'https://ror.org/017wx6w12', 'en', 1, 'https://ror.org/017wx6w12 Institute of Blood Pathology and Transfusion Medicine of the National Academy of Medical Sciences of Ukraine Інститут патології крові та трансфузійної медицини НАМН України'),
(78039, 'https://ror.org/04b2m4n31', 'en', 1, 'https://ror.org/04b2m4n31 Filatov Institute of Eye Diseases and Tissue Therapy of the National Academy of Medical Sciences of Ukraine Інститут очних хвороб та тканинної терапії імені Філатова НАМН України'),
(78040, 'https://ror.org/00gtb4z22', 'en', 1, 'https://ror.org/00gtb4z22 Institute of Pediatrics, Obstetrics, and Gynecology named after acad. O.M. Lukyanova of the National Academy of Medical Sciences of Ukraine Інститут педіатрії, акушерства та гінекології НАМН України'),
(78041, 'https://ror.org/000889019', 'en', 1, 'https://ror.org/000889019 Institute of Nephrology of the National Academy of Medical Sciences of Ukraine Інститут нефрології НАМН України'),
(78042, 'https://ror.org/023w5bf45', 'en', 1, 'https://ror.org/023w5bf45 Romodanov Neurosurgery Institute of the National Academy of Medical Sciences of Ukraine Ромоданова Інститут нейрохірургії НАМН України'),
(78043, 'https://ror.org/03vepk527', 'en', 1, 'https://ror.org/03vepk527 Carl Hayden Bee Research Center'),
(78044, 'https://ror.org/03qx0n513', 'en', 1, 'https://ror.org/03qx0n513 U.S. Arid Land Agricultural Research Center'),
(78045, 'https://ror.org/04pp5vm71', 'en', 1, 'https://ror.org/04pp5vm71 U.S. Salinity Laboratory'),
(78046, 'https://ror.org/0135db650', 'en', 1, 'https://ror.org/0135db650 Center for Agricultural Resources Research'),
(78047, 'https://ror.org/004m0sc28', 'en', 1, 'https://ror.org/004m0sc28 Center for Grain and Animal Health Research'),
(78048, 'https://ror.org/05x4p3529', 'en', 1, 'https://ror.org/05x4p3529 Conservation and Production Research Laboratory'),
(78049, 'https://ror.org/03h6erk64', 'en', 1, 'https://ror.org/03h6erk64 Daniel K. Inouye U.S. Pacific Basin Agricultural Research Center'),
(78050, 'https://ror.org/01982z663', 'en', 1, 'https://ror.org/01982z663 Cropping Systems Research Laboratory'),
(78051, 'https://ror.org/04x68p008', 'en', 1, 'https://ror.org/04x68p008 Edward T. Schafer Agricultural Research Center'),
(78052, 'https://ror.org/04avxj309', 'en', 1, 'https://ror.org/04avxj309 Horticultural Crops Research Laboratory'),
(78053, 'https://ror.org/02ngnwv51', 'en', 1, 'https://ror.org/02ngnwv51 National Forage Seed Production Research Center'),
(78054, 'https://ror.org/05mfs3k63', 'en', 1, 'https://ror.org/05mfs3k63 Grassland, Soil and Water Research Laboratory'),
(78055, 'https://ror.org/04tm6ax73', 'en', 1, 'https://ror.org/04tm6ax73 Northwest Irrigation and Soils Research Laboratory'),
(78056, 'https://ror.org/01hzjpk73', 'en', 1, 'https://ror.org/01hzjpk73 Grazinglands Research Laboratory'),
(78057, 'https://ror.org/00cahhs35', 'en', 1, 'https://ror.org/00cahhs35 Northwest Watershed Research Center'),
(78058, 'https://ror.org/0432sks47', 'en', 1, 'https://ror.org/0432sks47 Knipling-Bushland U.S. Livestock Insects Research Laboratory'),
(78059, 'https://ror.org/05xy09e29', 'en', 1, 'https://ror.org/05xy09e29 Fort Keogh Livestock and Range Research Laboratory'),
(78060, 'https://ror.org/0474dxd36', 'en', 1, 'https://ror.org/0474dxd36 Northern Great Plains Research Laboratory'),
(78061, 'https://ror.org/005kqqf02', 'en', 1, 'https://ror.org/005kqqf02 Northern Plains Agricultural Research Laboratory'),
(78062, 'https://ror.org/03s4wsx37', 'en', 1, 'https://ror.org/03s4wsx37 Southern Plains Agricultural Research Center'),
(78063, 'https://ror.org/03hya7h57', 'en', 1, 'https://ror.org/03hya7h57 Roman L. Hruska U.S. Meat Animal Research Center'),
(78064, 'https://ror.org/00vd8cq28', 'en', 1, 'https://ror.org/00vd8cq28 Tree Fruit Research Laboratory'),
(78065, 'https://ror.org/03bxq7g45', 'en', 1, 'https://ror.org/03bxq7g45 Southwest Watershed Research Center'),
(78066, 'https://ror.org/009xkwz08', 'en', 1, 'https://ror.org/009xkwz08 San Joaquin Valley Agricultural Sciences Center');
INSERT INTO `rors` VALUES
(78067, 'https://ror.org/03t05d403', 'en', 1, 'https://ror.org/03t05d403 Poisonous Plant Research Laboratory'),
(78068, 'https://ror.org/03x5xm327', 'en', 1, 'https://ror.org/03x5xm327 National Sedimentation Laboratory'),
(78069, 'https://ror.org/004qeec45', 'en', 1, 'https://ror.org/004qeec45 Dale Bumpers National Rice Research Center'),
(78070, 'https://ror.org/02qqnbq97', 'en', 1, 'https://ror.org/02qqnbq97 Dale Bumpers Small Farms Research Center'),
(78071, 'https://ror.org/048ns6x85', 'en', 1, 'https://ror.org/048ns6x85 National Laboratory for Agriculture and the Environment'),
(78072, 'https://ror.org/04ky99h94', 'en', 1, 'https://ror.org/04ky99h94 National Animal Disease Center'),
(78073, 'https://ror.org/03jdk4039', 'en', 1, 'https://ror.org/03jdk4039 Harry K. Dupree Stuttgart National Aquaculture Research Center'),
(78074, 'https://ror.org/00kj82e71', 'en', 1, 'https://ror.org/00kj82e71 Southeast Watershed Research Laboratory'),
(78075, 'https://ror.org/05xqthq76', 'en', 1, 'https://ror.org/05xqthq76 Biological Control of Insects Research Laboratory'),
(78076, 'https://ror.org/056e61d57', 'en', 1, 'https://ror.org/056e61d57 National Peanut Research Laboratory'),
(78077, 'https://ror.org/048zyw409', 'en', 1, 'https://ror.org/048zyw409 U.S. Dairy Forage Research Center'),
(78078, 'https://ror.org/050z40a57', 'en', 1, 'https://ror.org/050z40a57 Robert W. Holley Center for Agriculture & Health'),
(78079, 'https://ror.org/02gb6hj86', 'en', 1, 'https://ror.org/02gb6hj86 North Central Soil Conservation Research Laboratory'),
(78080, 'https://ror.org/04fx69j13', 'en', 1, 'https://ror.org/04fx69j13 Cereal Disease Laboratory'),
(78081, 'https://ror.org/04cnk3y09', 'en', 1, 'https://ror.org/04cnk3y09 National Soil Erosion Research Laboratory'),
(78082, 'https://ror.org/052kar395', 'en', 1, 'https://ror.org/052kar395 Appalachian Fruit Research Laboratory'),
(78083, 'https://ror.org/00m05k208', 'en', 1, 'https://ror.org/00m05k208 National Soil Dynamics Research Laboratory'),
(78084, 'https://ror.org/026sw0405', 'en', 1, 'https://ror.org/026sw0405 National Center for Cool and Cold Water Aquaculture'),
(78085, 'https://ror.org/03sc3bx43', 'en', 1, 'https://ror.org/03sc3bx43 U.S. National Poultry Research Center'),
(78086, 'https://ror.org/02dtaqq02', 'en', 1, 'https://ror.org/02dtaqq02 Plum Island Animal Disease Center'),
(78087, 'https://ror.org/04b8mkk85', 'en', 1, 'https://ror.org/04b8mkk85 Honey Bee Breeding, Genetics, and Physiology Laboratory'),
(78088, 'https://ror.org/04bh7ck51', 'en', 1, 'https://ror.org/04bh7ck51 New England Plant, Soil and Water Research Laboratory'),
(78089, 'https://ror.org/000b3v524', 'en', 1, 'https://ror.org/000b3v524 Southeastern Fruit and Tree Nut Research Laboratory'),
(78090, 'https://ror.org/04x40m321', 'en', 1, 'https://ror.org/04x40m321 National Cold Water Marine Aquaculture Center'),
(78091, 'https://ror.org/05cspff93', 'en', 1, 'https://ror.org/05cspff93 U.S. Vegetable Laboratory'),
(78092, 'https://ror.org/05bpk4v97', 'en', 1, 'https://ror.org/05bpk4v97 Invasive Plant Research Laboratory'),
(78093, 'https://ror.org/04a4m2h70', 'en', 1, 'https://ror.org/04a4m2h70 U.S. Horticultural Research Laboratory'),
(78094, 'https://ror.org/03atsav32', 'en', 1, 'https://ror.org/03atsav32 Crop Science Research Laboratory'),
(78095, 'https://ror.org/03xcerw48', 'en', 1, 'https://ror.org/03xcerw48 U.S. National Arboretum'),
(78096, 'https://ror.org/03pebmm12', 'en', 1, 'https://ror.org/03pebmm12 1 Military Clinical Hospital with Outpatient Clinic 1 Wojskowy Szpital Kliniczny z Polikliniką'),
(78097, 'https://ror.org/04zkkk344', 'en', 1, 'https://ror.org/04zkkk344 CMT Research Foundation'),
(78098, 'https://ror.org/055zztt33', 'en', 1, 'https://ror.org/055zztt33 Arkansas Department of Agriculture'),
(78099, 'https://ror.org/019ytz097', 'es', 1, 'https://ror.org/019ytz097 Centro Nacional de Microbiologia National Micobiology Centre'),
(78100, 'https://ror.org/01dd3fd62', 'es', 1, 'https://ror.org/01dd3fd62 Centro Nacional de Epidemiología National Epidemiology Centre'),
(78101, 'https://ror.org/003xj6z62', 'es', 1, 'https://ror.org/003xj6z62 Escuela Nacional de Sanidad National School of Public Health'),
(78102, 'https://ror.org/02g87qh62', 'es', 1, 'https://ror.org/02g87qh62 Centro de Investigación Biomédica en Red'),
(78103, 'https://ror.org/0119pby33', 'es', 1, 'https://ror.org/0119pby33 Centro de Investigación Biomédica en Red de Enfermedades Respiratorias'),
(78104, 'https://ror.org/00w603503', 'es', 1, 'https://ror.org/00w603503 Centro Nacional de Medicina Tropical National Centre of Tropical Medicine'),
(78105, 'https://ror.org/00c77q313', 'es', 1, 'https://ror.org/00c77q313 Red de Investigación en Sida'),
(78106, 'https://ror.org/01rd4et50', 'es', 1, 'https://ror.org/01rd4et50 Centro Nacional de Sanidad Ambiental National Environmental Health Centre'),
(78107, 'https://ror.org/05gqmbr12', 'es', 1, 'https://ror.org/05gqmbr12 Digital Health Research Unit Unidad de Investigación en Salud Digital'),
(78108, 'https://ror.org/01wdt4y78', 'es', 1, 'https://ror.org/01wdt4y78 Scientific and Technical Central Units Unidades Centrales Científico-Técnicas'),
(78109, 'https://ror.org/03gtv5v80', 'es', 1, 'https://ror.org/03gtv5v80 Network of Biological Alerts Laboratories Red de Laboratorios de Alertas Biológicas'),
(78110, 'https://ror.org/05s16e423', 'es', 1, 'https://ror.org/05s16e423 Biblioteca Nacional de Ciencias de la Salud National Library of Health Sciences'),
(78111, 'https://ror.org/05qs5k564', 'es', 1, 'https://ror.org/05qs5k564 Agencia de Evaluación de Tecnologías Sanitarias Health Technology Assessment Agency'),
(78112, 'https://ror.org/00g86hk06', 'es', 1, 'https://ror.org/00g86hk06 Escuela Nacional de Medicina del Trabajo National School of Occupational Medicine'),
(78113, 'https://ror.org/01wwwqd52', 'en', 1, 'https://ror.org/01wwwqd52 National Clonal Germplasm Repository'),
(78114, 'https://ror.org/038n2v518', 'ms', 1, 'https://ror.org/038n2v518 Hospital Kemaman'),
(78115, 'https://ror.org/025nes754', 'en', 1, 'https://ror.org/025nes754 National Clonal Germplasm Repository for Citrus'),
(78116, 'https://ror.org/03mk5b468', 'en', 1, 'https://ror.org/03mk5b468 The Behavioural Insights Team'),
(78117, 'https://ror.org/02xr0yr66', 'en', 1, 'https://ror.org/02xr0yr66 National Clonal Germplasm Repository for Tree Fruit, Nut Crops, and Grapes'),
(78118, 'https://ror.org/048b0cg51', 'en', 1, 'https://ror.org/048b0cg51 IPS Central'),
(78119, 'https://ror.org/008pp7a77', 'de', 1, 'https://ror.org/008pp7a77 Institut für Zeitgeschichte München–Berlin Institute for Contemporary History München–Berlin Institute of Contemporary History Leibniz Institute for Contemporary History (IfZ)'),
(78120, 'https://ror.org/03xvdbr49', 'en', 1, 'https://ror.org/03xvdbr49 Reiner Lemoine Institut Reiner Lemoine Institute'),
(78121, 'https://ror.org/04ngphv84', 'es', 1, 'https://ror.org/04ngphv84 Instituto de Investigaciones Científicas y Servicios de Alta Tecnología'),
(78122, 'https://ror.org/0291s1e82', 'de', 1, 'https://ror.org/0291s1e82 Landesamt für Bergbau, Energie und Geologie'),
(78123, 'https://ror.org/00jhf1r34', 'en', 1, 'https://ror.org/00jhf1r34 Sieć Badawcza Łukasiewicz - Instytut Chemii Przemysłowej Łukasiewicz Research Network - Industrial Chemistry Institute'),
(78124, 'https://ror.org/01dv3hq14', 'en', 1, 'https://ror.org/01dv3hq14 Keldysh Institute of Applied Mathematics Федеральное государственное учреждение "Федеральный исследовательский центр Институт прикладной математики им. М.В. Келдыша Российской академии наук"'),
(78125, 'https://ror.org/02hv6yw42', 'en', 1, 'https://ror.org/02hv6yw42 Connecticut Department of Energy and Environmental Protection'),
(78126, 'https://ror.org/04sb28h93', 'en', 1, 'https://ror.org/04sb28h93 Gromov Flight Research Institute Летно-исследовательский институт имени М.М. Громова'),
(78127, 'https://ror.org/04py2rh25', 'en', 1, 'https://ror.org/04py2rh25 Mass General Brigham'),
(78128, 'https://ror.org/05w8njj13', 'no_lang_code', 1, 'https://ror.org/05w8njj13 Cooley (United States)'),
(78129, 'https://ror.org/047mprv74', 'no_lang_code', 1, 'https://ror.org/047mprv74 Greo'),
(78130, 'https://ror.org/0364tzz24', 'en', 1, 'https://ror.org/0364tzz24 Pyatigorsk Medical and Pharmaceutical Institute - branch of Volgograd State Medical University Пятигорский медико-фармацевтический институт – филиал Волгоградского государственного медицинского университет'),
(78131, 'https://ror.org/02xp2c270', 'en', 1, 'https://ror.org/02xp2c270 Main Astronomical Observatory Головна астрономічна обсерваторія'),
(78132, 'https://ror.org/00gej0269', 'en', 1, 'https://ror.org/00gej0269 Acupuncture And Massage College'),
(78133, 'https://ror.org/016sx0y50', 'en', 1, 'https://ror.org/016sx0y50 Academy of Sciences of Albania'),
(78134, 'https://ror.org/034ahg853', 'no_lang_code', 1, 'https://ror.org/034ahg853 PowerPhotonic (United Kingdom)'),
(78135, 'https://ror.org/025ghn770', 'en', 1, 'https://ror.org/025ghn770 Sieć Badawcza Łukasiewicz – Instytut Metali Nieżelaznych Łukasiewicz Research Network - Institute of Non-Ferrous Metals'),
(78136, 'https://ror.org/02rcfyf15', 'en', 1, 'https://ror.org/02rcfyf15 Golisano Children''s Hospital'),
(78137, 'https://ror.org/00g58ht81', 'no_lang_code', 1, 'https://ror.org/00g58ht81 Triad Interactive Media (United States)'),
(78138, 'https://ror.org/0257nzs56', 'en', 1, 'https://ror.org/0257nzs56 Wirral Community Health and Care NHS Foundations Trust'),
(78139, 'https://ror.org/01c5bsw63', 'en', 1, 'https://ror.org/01c5bsw63 Alliance of Crop, Soil, and Environmental Science Societies'),
(78140, 'https://ror.org/059dyrr28', 'en', 1, 'https://ror.org/059dyrr28 Leibniz Institute of European History Leibniz-Institut für Europäische Geschichte'),
(78141, 'https://ror.org/04b9a1925', 'en', 1, 'https://ror.org/04b9a1925 Sieć Badawcza Łukasiewicz – Przemysłowy Instytut Automatyki i Pomiarów Łukasiewicz Research Network - Industrial Research Institute for Automation and Measurements'),
(78142, 'https://ror.org/044radm67', 'en', 1, 'https://ror.org/044radm67 Junior College Library Association 私立短期大学図書館協議会'),
(78143, 'https://ror.org/020vrnw42', 'en', 1, 'https://ror.org/020vrnw42 Polish Academy of Sciences Botanical Garden – Center for Biological Diversity Conservation in Powsin Polska Akademia Nauk Ogród Botaniczny – Centrum Zachowania Różnorodności Biologicznej w Powsinie'),
(78144, 'https://ror.org/0154fps75', 'en', 1, 'https://ror.org/0154fps75 Pinega Nature Reserve Pinezhsky Zapovednik'),
(78145, 'https://ror.org/04gcpjy47', 'en', 1, 'https://ror.org/04gcpjy47 I.Horbachevsky Ternopil National Medical University Państwowy Uniwersytet Medyczny imienia I.Ya Horbaczewskiego w Tarnopolu Тернопольский государственный медицинский университет имени И. Я. Горбачевского Министерства здравоохранения Украины Тернопільський державний медичний університет імені І. Я. Горбачевського'),
(78146, 'https://ror.org/052svzr34', 'en', 1, 'https://ror.org/052svzr34 Sieć Badawcza Łukasiewicz - Instytut Technologii Drewna Łukasiewicz Research Network - Wood Technology Institute'),
(78147, 'https://ror.org/04s92tb21', 'en', 1, 'https://ror.org/04s92tb21 Odessa State Environmental University'),
(78148, 'https://ror.org/0166x0j30', 'en', 1, 'https://ror.org/0166x0j30 Natural History Museum Aarhus Naturhistorisk Museum Aarhus'),
(78149, 'https://ror.org/04hqtn844', 'de', 1, 'https://ror.org/04hqtn844 Bundesamt für Bauwesen und Raumordnung'),
(78150, 'https://ror.org/05qczcd66', 'en', 1, 'https://ror.org/05qczcd66 Sieć Badawcza Łukasiewicz - Przemysłowy Instytut Maszyn Rolniczych Łukasiewicz Research Network - Industrial Institute of Agricultural Engineering'),
(78151, 'https://ror.org/003x6t567', 'no_lang_code', 1, 'https://ror.org/003x6t567 Tango Therapeutics (United States)'),
(78152, 'https://ror.org/03w7hce19', 'pt', 1, 'https://ror.org/03w7hce19 Sociedade Brasileira de Psicologia'),
(78153, 'https://ror.org/04mb6s476', 'en', 1, 'https://ror.org/04mb6s476 RIKEN Center for Integrative Medical Sciences 国立研究開発法人 理化学研究所 生命医科学研究センター'),
(78154, 'https://ror.org/000ccd270', 'no_lang_code', 1, 'https://ror.org/000ccd270 Scoular (United States)'),
(78155, 'https://ror.org/03pw76589', 'en', 1, 'https://ror.org/03pw76589 Sieć Badawcza Łukasiewicz – Instytut Obróbki Plastycznej Łukasiewicz Research Network - Metal Forming Institute'),
(78156, 'https://ror.org/03y8xh662', 'no_lang_code', 1, 'https://ror.org/03y8xh662 Molecular Devices (United Kingdom)'),
(78157, 'https://ror.org/03nrps502', 'no_lang_code', 1, 'https://ror.org/03nrps502 Akvaplan-niva'),
(78158, 'https://ror.org/00bv4cx53', 'en', 1, 'https://ror.org/00bv4cx53 Botanic Garden and Botanical Museum Berlin Botanischer Garten und Botanisches Museum Berlin'),
(78159, 'https://ror.org/024ykzk09', 'en', 1, 'https://ror.org/024ykzk09 T.H. Shevchenko National University "Chernihiv Colehium" Національного університету "Чернігівській колегіум" імені Т.Г. Шевченка'),
(78160, 'https://ror.org/05frkc804', 'no_lang_code', 1, 'https://ror.org/05frkc804 Stiftung Wissenschaft und Politik, Deutsches Institut für Internationale Politik und Sicherheit Stiftung Wissenschaft und Politik, German Institute for International and Security Affairs'),
(78161, 'https://ror.org/01zwfkr30', 'en', 1, 'https://ror.org/01zwfkr30 Sieć Badawczą Łukasiewicz - Instytut Włókiennictwa Łukasiewicz Research Network - Textile Research Institute'),
(78162, 'https://ror.org/03rvn3n08', 'en', 1, 'https://ror.org/03rvn3n08 Sieć Badawcza Łukasiewicz – PORT Polski Ośrodek Rozwoju Technologii Łukasiewicz Research Network – PORT Polish Center for Technology Development'),
(78163, 'https://ror.org/054q9np86', 'en', 1, 'https://ror.org/054q9np86 Kartal Koşuyolu High Specialization Training and Research Hospital Kartal Koşuyolu Yüksek İhtisas Eğitim ve Araştırma Hastanesi'),
(78164, 'https://ror.org/03ycvrj88', 'en', 1, 'https://ror.org/03ycvrj88 Bundesamt für Seeschifffahrt und Hydrographie Federal Maritime and Hydrographic Agency of Germany'),
(78165, 'https://ror.org/03yntf296', 'en', 1, 'https://ror.org/03yntf296 Sieć Badawcza Łukasiewicz - Instytut Technologii Eksploatacji Łukasiewicz - Institute for Sustainable Technologies'),
(78166, 'https://ror.org/051fsan18', 'no_lang_code', 1, 'https://ror.org/051fsan18 Zygo (United States)'),
(78167, 'https://ror.org/04qw9bn98', 'en', 1, 'https://ror.org/04qw9bn98 Angelus Silesius State University Państwowa Uczelnia Angelusa Silesiusa'),
(78168, 'https://ror.org/002dxp647', 'no_lang_code', 1, 'https://ror.org/002dxp647 Bell Resources (Australia)'),
(78169, 'https://ror.org/03z4qna16', 'no_lang_code', 1, 'https://ror.org/03z4qna16 Ferespe (Portugal)'),
(78170, 'https://ror.org/00sngv739', 'en', 1, 'https://ror.org/00sngv739 Herder Institute Herder-Institut für Historische Ostmitteleuropaforschung – Institut der Leibniz-Gemeinschaft'),
(78171, 'https://ror.org/035hkbq39', 'en', 1, 'https://ror.org/035hkbq39 Sieć Badawcza Łukasiewicz - Instytut Ciężkiej Syntezy Organicznej "Blachownia" Łukasiewicz Research Network - Institute of Heavy Organic Synthesis "Blachownia"'),
(78172, 'https://ror.org/03jasrp23', 'en', 1, 'https://ror.org/03jasrp23 Phoenix Hospital Chelmsford'),
(78173, 'https://ror.org/04q6a0352', 'en', 1, 'https://ror.org/04q6a0352 Volgograd State Medical University Волгоградский государственный медицинский университет'),
(78174, 'https://ror.org/02jkbm893', 'sv', 1, 'https://ror.org/02jkbm893 Bank of Sweden Tercentenary Foundation Stiftelsen Riksbankens Jubileumsfond'),
(78175, 'https://ror.org/02vpyz736', 'en', 1, 'https://ror.org/02vpyz736 Western Regional Hospital'),
(78176, 'https://ror.org/009mwwv16', 'no_lang_code', 1, 'https://ror.org/009mwwv16 AZTERLAN AZTERLAN Centro de Investigación Metalúrgica AZTERLAN Metalurgia Ikerketa Zentroa'),
(78177, 'https://ror.org/050vh8780', 'en', 1, 'https://ror.org/050vh8780 Kyiv National University of Technologies and Design Київський національний університет технологій та дизайну'),
(78178, 'https://ror.org/02r276210', 'en', 1, 'https://ror.org/02r276210 Avondale University'),
(78179, 'https://ror.org/03hpxd290', 'de', 1, 'https://ror.org/03hpxd290 Nordwestdeutsche Forstliche Versuchsanstalt Northwest German Forest Research Institute'),
(78180, 'https://ror.org/01xzwj424', 'en', 1, 'https://ror.org/01xzwj424 HTW Berlin - University of Applied Sciences Hochschule für Technik und Wirtschaft Berlin'),
(78181, 'https://ror.org/05hkn5555', 'en', 1, 'https://ror.org/05hkn5555 Dnipro University of Technology Национальный горный университет Украина Національний технічний університет «Дніпровська політехніка»'),
(78182, 'https://ror.org/00zg4za48', 'en', 1, 'https://ror.org/00zg4za48 Eidgenössische Hochschule für Berufsbildung EHB Haute école fédérale en formation professionnelle HEFP Scuola universitaria federale per la formazione professionale SUFFP Swiss Federal University for Vocational Education and Training SFUVET'),
(78183, 'https://ror.org/03fktew82', 'en', 1, 'https://ror.org/03fktew82 Institute of Social Sciences and Humanities, Skopje Институтот за општествени и хуманистички науки – Скопје'),
(78184, 'https://ror.org/005k57c98', 'eu', 1, 'https://ror.org/005k57c98 Basque Summer University Udako Euskal Unibertsitatea Universidad Vasca de Verano Université basque d''été'),
(78185, 'https://ror.org/03dgx1q54', 'en', 1, 'https://ror.org/03dgx1q54 MS-Kliniek Nationaal Multiple Sclerose Centrum National MS Center Melsbroek'),
(78186, 'https://ror.org/05wf2rt56', 'en', 1, 'https://ror.org/05wf2rt56 State Scientific Institution "Ukrainian Institute of Scientific and Technical Expertise and Information" Державна наукова установа «Український інститут науково-технічної експертизи та інформації»'),
(78187, 'https://ror.org/036ttgc90', 'es', 1, 'https://ror.org/036ttgc90 Private University of Huancayo "Franklin Roosevelt" Universidad Privada de Huancayo "Franklin Roosevelt"'),
(78188, 'https://ror.org/02pv64t29', 'en', 1, 'https://ror.org/02pv64t29 Woods Hole Coastal and Marine Science Center'),
(78189, 'https://ror.org/03e7mhc87', 'en', 1, 'https://ror.org/03e7mhc87 Kansas City National Security Campus'),
(78190, 'https://ror.org/043ncc240', 'es', 1, 'https://ror.org/043ncc240 Escuela de Postgrado Gěrens Gerens Graduate School'),
(78191, 'https://ror.org/02f4ks689', 'en', 1, 'https://ror.org/02f4ks689 Axiom Data Science'),
(78192, 'https://ror.org/0553k7b06', 'en', 1, 'https://ror.org/0553k7b06 National Registry of Exonerations'),
(78193, 'https://ror.org/002vpkf64', 'fr', 1, 'https://ror.org/002vpkf64 Société des historiens médiévistes de l''enseignement supérieur public'),
(78194, 'https://ror.org/04p8xrf95', 'en', 1, 'https://ror.org/04p8xrf95 Tetiaroa Society'),
(78195, 'https://ror.org/02mxc2926', 'en', 1, 'https://ror.org/02mxc2926 Population Health Research Network'),
(78196, 'https://ror.org/04bk2qw80', 'es', 1, 'https://ror.org/04bk2qw80 Instituto Peruano de Energía Nuclear Peruvian Institute of Nuclear Energy'),
(78197, 'https://ror.org/02jfhsn35', 'en', 1, 'https://ror.org/02jfhsn35 CSIRO BioFoundry'),
(78198, 'https://ror.org/02c3p9381', 'es', 1, 'https://ror.org/02c3p9381 Instituto Nacional de Rehabilitación de "Dra. Adriana Rebaza Flores" Amistad Perú-Japón National Rehabilitation Institute of "Dra. Adriana Rebaza Flores" Peru-Japan Friendship'),
(78199, 'https://ror.org/01d74sk53', 'no_lang_code', 1, 'https://ror.org/01d74sk53 CatalystNeuro'),
(78200, 'https://ror.org/00nw4tw41', 'no_lang_code', 1, 'https://ror.org/00nw4tw41 InterGrain'),
(78201, 'https://ror.org/04qzdz471', 'es', 1, 'https://ror.org/04qzdz471 Centro de diseño, cine y televisión'),
(78202, 'https://ror.org/02ts2sn48', 'en', 1, 'https://ror.org/02ts2sn48 Connecticut Geological Survey'),
(78203, 'https://ror.org/00tfqpy41', 'es', 1, 'https://ror.org/00tfqpy41 National Agrarian Health Service Servicio Nacional de Sanidad Agraria'),
(78204, 'https://ror.org/00mwcha69', 'en', 1, 'https://ror.org/00mwcha69 Akademi Keperawatan YKY'),
(78205, 'https://ror.org/041anjn10', 'en', 1, 'https://ror.org/041anjn10 Community of Physics'),
(78206, 'https://ror.org/03t9kaa43', 'es', 1, 'https://ror.org/03t9kaa43 Instituto Nacional de Defensa de la Competencia y de la Protección de la Propiedad Intelectual National Institute for the Defense of Competition and the Protection of Intellectual Property'),
(78207, 'https://ror.org/04gcece27', 'en', 1, 'https://ror.org/04gcece27 Natural History Museum of the Lesvos Petrified Forest Μουσείο Φυσικής Ιστορίας Απολιθωμένου Δάσους Λέσβου'),
(78208, 'https://ror.org/05cynqq24', 'de', 1, 'https://ror.org/05cynqq24 Deutsche Gesellschaft für Erziehungswissenschaft'),
(78209, 'https://ror.org/048555y32', 'en', 1, 'https://ror.org/048555y32 Biological Museum, Lund University Biologiska Museet, Lunds universitet'),
(78210, 'https://ror.org/00wk22n41', 'en', 1, 'https://ror.org/00wk22n41 Nederlandse Vereniging van Hemofilie-Patiënten Netherlands Haemophilia Society'),
(78211, 'https://ror.org/01yhex183', 'en', 1, 'https://ror.org/01yhex183 Gothenburg Natural History Museum Göteborgs Naturhistoriska Museum'),
(78212, 'https://ror.org/03s4kfm57', 'en', 1, 'https://ror.org/03s4kfm57 High Tropics Foundation'),
(78213, 'https://ror.org/04wmpkv79', 'es', 1, 'https://ror.org/04wmpkv79 National Intercultural University of Quillabamba Universidad Nacional Intercultural de Quillabamba'),
(78214, 'https://ror.org/01xfrxk65', 'en', 1, 'https://ror.org/01xfrxk65 California Geological Survey'),
(78215, 'https://ror.org/030wzvf80', 'es', 1, 'https://ror.org/030wzvf80 Cartográfica de Canarias'),
(78216, 'https://ror.org/013aa2c03', 'en', 1, 'https://ror.org/013aa2c03 Institute of Mental Health and Neurosciences'),
(78217, 'https://ror.org/04j4kad11', 'en', 1, 'https://ror.org/04j4kad11 Centre for Environmental Data Analysis'),
(78218, 'https://ror.org/02e838q34', 'es', 1, 'https://ror.org/02e838q34 Instituto Nacional de Estadística e Informática National Institute of Statistics and Informatics'),
(78219, 'https://ror.org/04f19vj70', 'en', 1, 'https://ror.org/04f19vj70 Patient-Led Research Collaborative'),
(78220, 'https://ror.org/036dczj04', 'en', 1, 'https://ror.org/036dczj04 Ministry of Sports'),
(78221, 'https://ror.org/00f89wy98', 'en', 1, 'https://ror.org/00f89wy98 Magnetics Information Consortium'),
(78222, 'https://ror.org/00hmkqz52', 'es', 1, 'https://ror.org/00hmkqz52 Instituto Nacional de Ciencias Neurológicas National Institute of Neurological Sciences'),
(78223, 'https://ror.org/05wmhj005', 'en', 1, 'https://ror.org/05wmhj005 Finlands Samhällsvetenskapliga Dataarkiv Finnish Social Science Data Archive Yhteiskuntatieteellinen tietoarkisto'),
(78224, 'https://ror.org/01xcd2w79', 'en', 1, 'https://ror.org/01xcd2w79 Flathead National Forest'),
(78225, 'https://ror.org/02qyzaf42', 'en', 1, 'https://ror.org/02qyzaf42 The Cancer Imaging Archive'),
(78226, 'https://ror.org/002e7ss22', 'en', 1, 'https://ror.org/002e7ss22 Lower Saxony State Agency for Water Management, Coastal Protection and Nature Conservation Niedersächsischer Landesbetrieb für Wasserwirtschaft, Küsten- und Naturschutz'),
(78227, 'https://ror.org/01kq4t285', 'es', 1, 'https://ror.org/01kq4t285 Instituto Geográfico Nacional National Geographic Institute'),
(78228, 'https://ror.org/03ckf5b20', 'en', 1, 'https://ror.org/03ckf5b20 Scientific Institute of Rabat المعهد العلمي الرباط'),
(78229, 'https://ror.org/00bqrh472', 'es', 1, 'https://ror.org/00bqrh472 Autonomous University of Ica Universidad Autónoma de Ica'),
(78230, 'https://ror.org/04yy4tq26', 'en', 1, 'https://ror.org/04yy4tq26 Institut für Radio- und Informationssysteme – IRIS Institute of Radio and Information Systems (IRIS)'),
(78231, 'https://ror.org/05t25a229', 'es', 1, 'https://ror.org/05t25a229 Instituto Nacional de Oftalmología "Dr. Francisco Contreras Campos" National Institute of Ophthalmology "Dr. Francisco Contreras Campos"'),
(78232, 'https://ror.org/05mhn0t19', 'en', 1, 'https://ror.org/05mhn0t19 Panamanian Association for the Advancement of Science'),
(78233, 'https://ror.org/00rs6s651', 'es', 1, 'https://ror.org/00rs6s651 Museo de Historia Natural Museum of Natural History'),
(78234, 'https://ror.org/0180xa122', 'es', 1, 'https://ror.org/0180xa122 National Autonomous University of Alto Amazonas Universidad Nacional Autónoma de Alto Amazonas'),
(78235, 'https://ror.org/004edqb24', 'en', 1, 'https://ror.org/004edqb24 Health and Wellbeing Queensland'),
(78236, 'https://ror.org/003z0hw02', 'es', 1, 'https://ror.org/003z0hw02 Instituto Tecnológico de la Producción Technological Institute of Production'),
(78237, 'https://ror.org/05bgydj64', 'no_lang_code', 1, 'https://ror.org/05bgydj64 Paveprime'),
(78238, 'https://ror.org/01adbad76', 'no_lang_code', 1, 'https://ror.org/01adbad76 Lexical Computing CZ'),
(78239, 'https://ror.org/02q3q8311', 'en', 1, 'https://ror.org/02q3q8311 State University of Infrastructure and Technologies ДЕРЖАВНИЙ УНІВЕРСИТЕТ ІНФРАСТРУКТУРИ ТА ТЕХНОЛОГІЙ'),
(78240, 'https://ror.org/03q3ecb97', 'no_lang_code', 1, 'https://ror.org/03q3ecb97 Coral Publications'),
(78241, 'https://ror.org/034d7ma87', 'en', 1, 'https://ror.org/034d7ma87 Digital Repository of Ireland Taisclann Dhigiteach na hÉireann'),
(78242, 'https://ror.org/02yhdfk86', 'en', 1, 'https://ror.org/02yhdfk86 Associação Brasileira de Editores Científicos Brazilian Association of Scientific Editors'),
(78243, 'https://ror.org/02xbecd21', 'en', 1, 'https://ror.org/02xbecd21 Oregon Water Resources Department'),
(78244, 'https://ror.org/04t667177', 'en', 1, 'https://ror.org/04t667177 Nordre Øyeren Bird Observatory Nordre Øyeren Fuglestasjon'),
(78245, 'https://ror.org/021gxf250', 'en', 1, 'https://ror.org/021gxf250 Virtual Library of Virginia'),
(78246, 'https://ror.org/02684yk50', 'en', 1, 'https://ror.org/02684yk50 Mataram College of Health Sciences Sekolah Tinggi Ilmu Kesehatan (STIKES) Mataram'),
(78247, 'https://ror.org/03pep4w33', 'en', 1, 'https://ror.org/03pep4w33 The Intergovernmental Committee on Surveying and Mapping'),
(78248, 'https://ror.org/053drm788', 'es', 1, 'https://ror.org/053drm788 National University of Cañete Universidad Nacional de Cañete'),
(78249, 'https://ror.org/01qkd1z70', 'en', 1, 'https://ror.org/01qkd1z70 Bannari Amman Institute of Technology'),
(78250, 'https://ror.org/05x83ep82', 'en', 1, 'https://ror.org/05x83ep82 Lviv University of Business and Law Львівський університет бізнесу та права'),
(78251, 'https://ror.org/05jj7mn84', 'no_lang_code', 1, 'https://ror.org/05jj7mn84 Lexical Computing'),
(78252, 'https://ror.org/017bd4h68', 'es', 1, 'https://ror.org/017bd4h68 National University of Frontera Universidad Nacional de Frontera'),
(78253, 'https://ror.org/02w3v2f07', 'en', 1, 'https://ror.org/02w3v2f07 Canadian Centre for Electron Microscopy'),
(78254, 'https://ror.org/00wv18f77', 'en', 1, 'https://ror.org/00wv18f77 Institut Papst Benedikt XVI. Pope Benedict XVI Institute'),
(78255, 'https://ror.org/00j0emq76', 'en', 1, 'https://ror.org/00j0emq76 Pontifical Biblical Institute Pontificio Istituto Biblico Pontificium Institutum Biblicum'),
(78256, 'https://ror.org/03xaryf14', 'en', 1, 'https://ror.org/03xaryf14 Center for Scientific Collaboration and Community Engagement'),
(78257, 'https://ror.org/0488nj033', 'en', 1, 'https://ror.org/0488nj033 Natural History Museum Maastricht Natuurhistorisch Museum Maastricht'),
(78258, 'https://ror.org/03yhwzd24', 'es', 1, 'https://ror.org/03yhwzd24 Instituto Nacional de Salud del Niño-San Borja National Institute of Child Health-San Borja'),
(78259, 'https://ror.org/02n7p8p77', 'en', 1, 'https://ror.org/02n7p8p77 Shandong Institute of Advanced Technology 山东高等技术研究院'),
(78260, 'https://ror.org/026ewty38', 'es', 1, 'https://ror.org/026ewty38 National Intercultural University of the Central Jungle Juan Santos Atahualpa Universidad Nacional Intercultural de la Selva Central Juan Santos Atahualpa'),
(78261, 'https://ror.org/02r5q9a81', 'es', 1, 'https://ror.org/02r5q9a81 National Autonomous University of Chota Universidad Nacional Autónoma de Chota'),
(78262, 'https://ror.org/05xy1nn52', 'en', 1, 'https://ror.org/05xy1nn52 Multiscale Bioimaging'),
(78263, 'https://ror.org/04mmwq306', 'en', 1, 'https://ror.org/04mmwq306 Trabzon University Trabzon Üniversitesi'),
(78264, 'https://ror.org/0018wmh19', 'no_lang_code', 1, 'https://ror.org/0018wmh19 Molecular Devices'),
(78265, 'https://ror.org/00s582952', 'es', 1, 'https://ror.org/00s582952 Instituto Nacional de Salud Mental "Honorio Delgado - Hideyo Noguchi" National Institute of Mental Health "Honorio Delgado - Hideyo Noguchi"'),
(78266, 'https://ror.org/02hhf2525', 'en', 1, 'https://ror.org/02hhf2525 Academician F. H. Burchak Scientific-Research Institute of Private Law and Entrepreneurship Науково-дослідниq інститут приватного права і підприємництва імені академіка Ф. Г. Бурчака'),
(78267, 'https://ror.org/008f3q107', 'no_lang_code', 1, 'https://ror.org/008f3q107 ResearchGate'),
(78268, 'https://ror.org/03ddvws43', 'no_lang_code', 1, 'https://ror.org/03ddvws43 Unichem Laboratories'),
(78269, 'https://ror.org/01v7jw115', 'en', 1, 'https://ror.org/01v7jw115 T''Sou-ke First Nation'),
(78270, 'https://ror.org/04df9ks57', 'es', 1, 'https://ror.org/04df9ks57 National Intercultural University "Fabiola Salazar LeguÍa" of Bagua Universidad Nacional Intercultural "Fabiola Salazar LeguÍa" de Bagua'),
(78271, 'https://ror.org/051zgrs14', 'es', 1, 'https://ror.org/051zgrs14 National University of Jaén Universidad Nacional de Jaén'),
(78272, 'https://ror.org/044r01e44', 'en', 1, 'https://ror.org/044r01e44 Japan Geoscience Union 日本地球惑星科学連合'),
(78273, 'https://ror.org/01y280z29', 'es', 1, 'https://ror.org/01y280z29 National University of Barranca Universidad Nacional de Barranca'),
(78274, 'https://ror.org/02n8xct56', 'no_lang_code', 1, 'https://ror.org/02n8xct56 Digital Health Cooperative Research Centre'),
(78275, 'https://ror.org/01zqrkn57', 'en', 1, 'https://ror.org/01zqrkn57 Municipal Higher Education Institution "Kherson Academy of Continuing Education" of the Kherson Regional Council Комунальний вищий навчальний заклад "Херсонська академія неперервної освіти" Херсонської обласної ради'),
(78276, 'https://ror.org/031dyqa07', 'es', 1, 'https://ror.org/031dyqa07 María Auxiliadora University Universidad María Auxiliadora'),
(78277, 'https://ror.org/02e4h5817', 'en', 1, 'https://ror.org/02e4h5817 Nosivska Breeding And Research Station Носівська селекційно-дослідна станція'),
(78278, 'https://ror.org/03q60bw50', 'es', 1, 'https://ror.org/03q60bw50 Centro Nacional de Investigaciones de Café National Coffee Research Center'),
(78279, 'https://ror.org/03294c124', 'en', 1, 'https://ror.org/03294c124 Lakeland University Japan'),
(78280, 'https://ror.org/057gst528', 'no_lang_code', 1, 'https://ror.org/057gst528 Gen-info'),
(78281, 'https://ror.org/0588n4k65', 'en', 1, 'https://ror.org/0588n4k65 Invest in Open Infrastructure'),
(78282, 'https://ror.org/03vb2cr34', 'no_lang_code', 1, 'https://ror.org/03vb2cr34 4Science'),
(78283, 'https://ror.org/034ebnm46', 'en', 1, 'https://ror.org/034ebnm46 Minnesota Geological Survey'),
(78284, 'https://ror.org/02mrpaq42', 'en', 1, 'https://ror.org/02mrpaq42 Kansas State University Salina Aerospace and Technology Campus'),
(78285, 'https://ror.org/02c1tfz23', 'en', 1, 'https://ror.org/02c1tfz23 Fakultní nemocnice Plzeň University Hospital Plzen'),
(78286, 'https://ror.org/03q397159', 'en', 1, 'https://ror.org/03q397159 Data61'),
(78287, 'https://ror.org/03tn2wn35', 'de', 1, 'https://ror.org/03tn2wn35 Landesamt für Umwelt, Naturschutz und Geologie'),
(78288, 'https://ror.org/055a54548', 'en', 1, 'https://ror.org/055a54548 Beaufort Lagoon Ecosystems Long Term Ecological Research Network'),
(78289, 'https://ror.org/020zjmd13', 'en', 1, 'https://ror.org/020zjmd13 Central Arizona–Phoenix Long Term Ecological Research'),
(78290, 'https://ror.org/023q8n217', 'en', 1, 'https://ror.org/023q8n217 ENEA Centro Ricerche Trisaia ENEA Trisaia Research Centre'),
(78291, 'https://ror.org/01c0yey93', 'en', 1, 'https://ror.org/01c0yey93 Finlands Artdatacenter Finnish Biodiversity Information Facility Suomen Lajitietokeskus'),
(78292, 'https://ror.org/003f21n80', 'en', 1, 'https://ror.org/003f21n80 Institute of Geosciences'),
(78293, 'https://ror.org/02ngbsn37', 'no_lang_code', 1, 'https://ror.org/02ngbsn37 Gilson (United States)'),
(78294, 'https://ror.org/03v61g875', 'en', 1, 'https://ror.org/03v61g875 Engineering Laboratory'),
(78295, 'https://ror.org/02gqe1446', 'no_lang_code', 1, 'https://ror.org/02gqe1446 SPL L''Eau des Collines'),
(78296, 'https://ror.org/02mp31p96', 'no_lang_code', 1, 'https://ror.org/02mp31p96 Carl Zeiss (Germany)'),
(78297, 'https://ror.org/05y2kwf93', 'en', 1, 'https://ror.org/05y2kwf93 First United Methodist Church'),
(78298, 'https://ror.org/01fx1d378', 'no_lang_code', 1, 'https://ror.org/01fx1d378 Eurofins (Netherlands)'),
(78299, 'https://ror.org/00x69dn41', 'en', 1, 'https://ror.org/00x69dn41 ENEA Centro Ricerche Portici ENEA Portici Research Centre'),
(78300, 'https://ror.org/00g30fc48', 'en', 1, 'https://ror.org/00g30fc48 Magyar Bányászati és Földtani Szolgálat Mining and Geological Survey of Hungary'),
(78301, 'https://ror.org/004jbx603', 'es', 1, 'https://ror.org/004jbx603 Universidad Técnica de Cotopaxi'),
(78302, 'https://ror.org/00n6b3s33', 'no_lang_code', 1, 'https://ror.org/00n6b3s33 Mission Therapeutics (United Kingdom)'),
(78303, 'https://ror.org/01jcmva95', 'no_lang_code', 1, 'https://ror.org/01jcmva95 Juice Plus+ (United States)'),
(78304, 'https://ror.org/04qskqr65', 'en', 1, 'https://ror.org/04qskqr65 Arecibo Observatory'),
(78305, 'https://ror.org/01eav8h49', 'en', 1, 'https://ror.org/01eav8h49 Russian Customs Academy Российская таможенная академия'),
(78306, 'https://ror.org/02e31nc37', 'en', 1, 'https://ror.org/02e31nc37 American University in Cairo New York Office'),
(78307, 'https://ror.org/03zjaj674', 'en', 1, 'https://ror.org/03zjaj674 ENEA Brasimone Research Centre ENEA Centro Ricerche Brasimone'),
(78308, 'https://ror.org/02w52zt87', 'en', 1, 'https://ror.org/02w52zt87 Ministry of Education and Culture'),
(78309, 'https://ror.org/023azqp90', 'en', 1, 'https://ror.org/023azqp90 Academy of Management of the Interior Ministry of Russia АКАДЕМИЯ УПРАВЛЕНИЯ МИНИСТЕРСТВА ВНУТРЕННИХ ДЕЛ РОССИЙСКОЙ ФЕДЕРАЦИИ'),
(78310, 'https://ror.org/03srysw20', 'en', 1, 'https://ror.org/03srysw20 De MuseumFabriek The MuseumFactory'),
(78311, 'https://ror.org/026jqvs13', 'en', 1, 'https://ror.org/026jqvs13 Andrews Forest Long Term Ecological Research'),
(78312, 'https://ror.org/04wvm7462', 'en', 1, 'https://ror.org/04wvm7462 Agrotecnio (Fundació UdL-IRTA) Agrotecnio - Centre for Food and Agriculture Research'),
(78313, 'https://ror.org/05q6wv670', 'no_lang_code', 1, 'https://ror.org/05q6wv670 Trelleborg (Sweden)'),
(78314, 'https://ror.org/058tz9s83', 'en', 1, 'https://ror.org/058tz9s83 Central Military Commission 中央军事委员会'),
(78315, 'https://ror.org/041mc9510', 'en', 1, 'https://ror.org/041mc9510 Bridgeport Public Library'),
(78316, 'https://ror.org/041c2wa38', 'no_lang_code', 1, 'https://ror.org/041c2wa38 Rusal (Russia) ОК РУСАЛ'),
(78317, 'https://ror.org/02vg6t997', 'no_lang_code', 1, 'https://ror.org/02vg6t997 Danubius University Vysoká škola Danubius'),
(78318, 'https://ror.org/01ppy6j62', 'en', 1, 'https://ror.org/01ppy6j62 Geophysics GPR International Geophysique GPR International'),
(78319, 'https://ror.org/01wgn9x88', 'en', 1, 'https://ror.org/01wgn9x88 North Pacific Anadromous Fish Commission'),
(78320, 'https://ror.org/0523vvf33', 'no_lang_code', 1, 'https://ror.org/0523vvf33 China Aerospace Science and Industry Corporation (China) 中国航天科工集团公司'),
(78321, 'https://ror.org/000vekr11', 'en', 1, 'https://ror.org/000vekr11 GW4'),
(78322, 'https://ror.org/04wnwjm54', 'en', 1, 'https://ror.org/04wnwjm54 Oman Dental College كلية عمان لطب الأسنان'),
(78323, 'https://ror.org/03xwgfg33', 'nl', 1, 'https://ror.org/03xwgfg33 Ziekenhuis Rivierenland'),
(78324, 'https://ror.org/012xv5c42', 'it', 1, 'https://ror.org/012xv5c42 Fondazione Querini Stampalia'),
(78325, 'https://ror.org/05y9abj60', 'en', 1, 'https://ror.org/05y9abj60 Comunidades Latinas Unidas En Servicio'),
(78326, 'https://ror.org/01kh7ng04', 'es', 1, 'https://ror.org/01kh7ng04 Fundación Universitaria Horizonte'),
(78327, 'https://ror.org/02wavzm11', 'en', 1, 'https://ror.org/02wavzm11 Konza Prairie Long Term Ecological Research'),
(78328, 'https://ror.org/01c1qvn60', 'en', 1, 'https://ror.org/01c1qvn60 Human Computation Institute'),
(78329, 'https://ror.org/02jvrpv13', 'fr', 1, 'https://ror.org/02jvrpv13 Centre intégré universitaire de santé et de services sociaux de la Mauricie-et-du-Centre-du-Québec'),
(78330, 'https://ror.org/02fb00x56', 'no_lang_code', 1, 'https://ror.org/02fb00x56 Eiffage (France)'),
(78331, 'https://ror.org/0075f1c08', 'nl', 1, 'https://ror.org/0075f1c08 Artesis Plantijn Hogeschool Antwerpen'),
(78332, 'https://ror.org/02t6fhh24', 'no_lang_code', 1, 'https://ror.org/02t6fhh24 Just Associates (United States)'),
(78333, 'https://ror.org/020yb3m85', 'ca', 1, 'https://ror.org/020yb3m85 Biomedical Research Institute of Girona Institut d''Investigació Biomèdica de Girona'),
(78334, 'https://ror.org/04ehrwx42', 'de', 1, 'https://ror.org/04ehrwx42 Fachkrankenhaus Kloster Grafschaft'),
(78335, 'https://ror.org/0019cam27', 'en', 1, 'https://ror.org/0019cam27 U SPORTS'),
(78336, 'https://ror.org/034tvnv21', 'en', 1, 'https://ror.org/034tvnv21 Hellenic Parliament'),
(78337, 'https://ror.org/00vwzq490', 'no_lang_code', 1, 'https://ror.org/00vwzq490 Blazegraph (United States)'),
(78338, 'https://ror.org/02k4gk709', 'de', 1, 'https://ror.org/02k4gk709 Christiani'),
(78339, 'https://ror.org/04sg4ka71', 'en', 1, 'https://ror.org/04sg4ka71 Fakultní nemocnice Královské Vinohrady University Hospital Kralovske Vinohrady'),
(78340, 'https://ror.org/03n6qxm88', 'fr', 1, 'https://ror.org/03n6qxm88 Hôpital Saint-Jacques'),
(78341, 'https://ror.org/001pj0680', 'en', 1, 'https://ror.org/001pj0680 Kuban State University of Physical Education, Sport and Tourism Кубанский государственный университет физической культуры, спорта и туризма'),
(78342, 'https://ror.org/02hn5m148', 'no_lang_code', 1, 'https://ror.org/02hn5m148 Reaction Biology (Germany)'),
(78343, 'https://ror.org/00zbj9525', 'en', 1, 'https://ror.org/00zbj9525 Center for Research and Interdisciplinarity Centre de Recherches Interdisciplinaires'),
(78344, 'https://ror.org/05vk2g845', 'en', 1, 'https://ror.org/05vk2g845 Institute for Microelectronics and Microsystems Istituto per la Microelettronica e Microsistemi'),
(78345, 'https://ror.org/02cyra061', 'en', 1, 'https://ror.org/02cyra061 Shupyk National Healthcare University of Ukraine Національний університет охорони здоров''я України імені П. Л. Шупика'),
(78346, 'https://ror.org/01t2a8a42', 'no_lang_code', 1, 'https://ror.org/01t2a8a42 Mendeley (United Kingdom)'),
(78347, 'https://ror.org/01xe8ky38', 'en', 1, 'https://ror.org/01xe8ky38 International Performance Research Institute'),
(78348, 'https://ror.org/01dvbrt74', 'en', 1, 'https://ror.org/01dvbrt74 Institut für Axiologische Forschungen Institute of Axiological Research'),
(78349, 'https://ror.org/04y2aw426', 'nl', 1, 'https://ror.org/04y2aw426 De Bastei'),
(78350, 'https://ror.org/043b26x63', 'en', 1, 'https://ror.org/043b26x63 National Research Council Institute for Biodiagnostics'),
(78351, 'https://ror.org/045a7h037', 'no_lang_code', 1, 'https://ror.org/045a7h037 Schiffbau-Versuchsanstalt Potsdam (Germany)'),
(78352, 'https://ror.org/02wnz3c50', 'en', 1, 'https://ror.org/02wnz3c50 International Academy of Business and New Technologies Международная академия бизнеса и новых технологий'),
(78353, 'https://ror.org/04dx66682', 'en', 1, 'https://ror.org/04dx66682 Utah Tech University'),
(78354, 'https://ror.org/034w9e597', 'en', 1, 'https://ror.org/034w9e597 The Priory Hospital'),
(78355, 'https://ror.org/011619g15', 'en', 1, 'https://ror.org/011619g15 International Institute of Innovation and Technology'),
(78356, 'https://ror.org/01bfbvm65', 'no_lang_code', 1, 'https://ror.org/01bfbvm65 Samsung (United States)'),
(78357, 'https://ror.org/028qh5302', 'no_lang_code', 1, 'https://ror.org/028qh5302 BioPhorum (United Kingdom)'),
(78358, 'https://ror.org/012mvrz03', 'en', 1, 'https://ror.org/012mvrz03 Perm State Humanitarian-Pedagogical University Пермский государственный гуманитарно-педагогический университет'),
(78359, 'https://ror.org/03gw47g69', 'no_lang_code', 1, 'https://ror.org/03gw47g69 VASP Software (Austria)'),
(78360, 'https://ror.org/03b8vas82', 'en', 1, 'https://ror.org/03b8vas82 National Atmospheric Deposition Program'),
(78361, 'https://ror.org/04va4vg89', 'en', 1, 'https://ror.org/04va4vg89 British Beekeepers Association'),
(78362, 'https://ror.org/05564wx43', 'nl', 1, 'https://ror.org/05564wx43 Bravis Ziekenhuis'),
(78363, 'https://ror.org/05299tt38', 'no_lang_code', 1, 'https://ror.org/05299tt38 Fera Science (United Kingdom)'),
(78364, 'https://ror.org/04shkzd26', 'en', 1, 'https://ror.org/04shkzd26 Kathmandu Cancer Center'),
(78365, 'https://ror.org/0073vwb23', 'en', 1, 'https://ror.org/0073vwb23 Home and Community Care Support Services Services de soutien à domicile et en milieu communautaire'),
(78366, 'https://ror.org/05cxz0w58', 'no_lang_code', 1, 'https://ror.org/05cxz0w58 Tieto (Finland)'),
(78367, 'https://ror.org/004qfsw40', 'en', 1, 'https://ror.org/004qfsw40 Salve Regina University'),
(78368, 'https://ror.org/00qdtba35', 'en', 1, 'https://ror.org/00qdtba35 Shandong Institute of Automation 山东省科学院自动化研究所成'),
(78369, 'https://ror.org/01a5bnn19', 'en', 1, 'https://ror.org/01a5bnn19 Groundswell Fund'),
(78370, 'https://ror.org/014yn7y10', 'en', 1, 'https://ror.org/014yn7y10 Justiitsministeerium Ministry of Justice'),
(78371, 'https://ror.org/059cpzx98', 'en', 1, 'https://ror.org/059cpzx98 Harvard Forest Long Term Ecological Research'),
(78372, 'https://ror.org/02rh3fk68', 'no_lang_code', 1, 'https://ror.org/02rh3fk68 Senzoku Gakuen College of Music 洗足学園音楽大学'),
(78373, 'https://ror.org/00g2qdz89', 'es', 1, 'https://ror.org/00g2qdz89 Universidad de la Ciudad de Buenos Aires'),
(78374, 'https://ror.org/0257qw677', 'en', 1, 'https://ror.org/0257qw677 Moscow Automobile and Road Construction State Technical University Московский автомобильно-дорожный государственный технический университет'),
(78375, 'https://ror.org/03w2cyv53', 'en', 1, 'https://ror.org/03w2cyv53 Johnson & Wales University'),
(78376, 'https://ror.org/00vqyrr20', 'en', 1, 'https://ror.org/00vqyrr20 Platov South-Russian State Polytechnic University Южно-Российский государственный политехнический университет (НПИ) имени М.И. Платова'),
(78377, 'https://ror.org/00baf2h95', 'id', 1, 'https://ror.org/00baf2h95 Universitas ''Aisyiyah Bandung'),
(78378, 'https://ror.org/00xfy8b60', 'en', 1, 'https://ror.org/00xfy8b60 Congregation Emanu El of New York'),
(78379, 'https://ror.org/00g2xk477', 'en', 1, 'https://ror.org/00g2xk477 Hunter College'),
(78380, 'https://ror.org/021a3gb32', 'en', 1, 'https://ror.org/021a3gb32 Nizhny Novgorod Academy of the Ministry of Internal Affairs of Russia НИЖЕГОРОДСКАЯ АКАДЕМИЯ МИНИСТЕРСТВА ВНУТРЕННИХ ДЕЛ РОССИЙСКОЙ ФЕДЕРАЦИИ'),
(78381, 'https://ror.org/04kbdbb89', 'en', 1, 'https://ror.org/04kbdbb89 Hellenic Institute of Metrology Ελληνικο Ινστιτουτο Μετρολογιας'),
(78382, 'https://ror.org/04k7qb226', 'no_lang_code', 1, 'https://ror.org/04k7qb226 Kattaikkuttu Sangam'),
(78383, 'https://ror.org/01d1z8s73', 'en', 1, 'https://ror.org/01d1z8s73 Rostov State University of Economics Ростовский государственный экономический университет'),
(78384, 'https://ror.org/05pzxer45', 'nl', 1, 'https://ror.org/05pzxer45 AZ Sint-Lucas'),
(78385, 'https://ror.org/03re8tv59', 'en', 1, 'https://ror.org/03re8tv59 Owensboro Health'),
(78386, 'https://ror.org/051etvk19', 'no_lang_code', 1, 'https://ror.org/051etvk19 Selective Catalytic Reduction (United States)'),
(78387, 'https://ror.org/025h9kw94', 'en', 1, 'https://ror.org/025h9kw94 Asahikawa Medical University 旭川医科大学'),
(78388, 'https://ror.org/01m7aex78', 'en', 1, 'https://ror.org/01m7aex78 Istituto Nazionale di Metrologia delle Radiazioni Ionizzanti National Institute of Ionizing Radiation Metrology'),
(78389, 'https://ror.org/04wvptk03', 'no_lang_code', 1, 'https://ror.org/04wvptk03 Heineken (Netherlands) Heineken Pilsener'),
(78390, 'https://ror.org/052h6a339', 'en', 1, 'https://ror.org/052h6a339 Glaucoma Research Society of Canada Société canadienne de recherche sur le glaucome'),
(78391, 'https://ror.org/031ffw737', 'no_lang_code', 1, 'https://ror.org/031ffw737 Metrica (United States)'),
(78392, 'https://ror.org/039swsa61', 'no_lang_code', 1, 'https://ror.org/039swsa61 ProQuest (United States)'),
(78393, 'https://ror.org/00besvm65', 'no_lang_code', 1, 'https://ror.org/00besvm65 Technicolor (Germany)'),
(78394, 'https://ror.org/051x4k077', 'en', 1, 'https://ror.org/051x4k077 Higher Institute for Artistic Industries Roma Istituto Superiore per le Industrie Artistiche'),
(78395, 'https://ror.org/02e16g411', 'en', 1, 'https://ror.org/02e16g411 Lietuvos socialiniu mokslu centras Lithuanian Centre for Social Sciences'),
(78396, 'https://ror.org/00vyp4f52', 'no_lang_code', 1, 'https://ror.org/00vyp4f52 Wikov (Czechia)'),
(78397, 'https://ror.org/05044fm39', 'en', 1, 'https://ror.org/05044fm39 Tambov Military Aviation Engineering Institute Тамбовский военный авиационный инженерный институт'),
(78398, 'https://ror.org/01x500w59', 'en', 1, 'https://ror.org/01x500w59 Flexible Learning Association of New Zealand'),
(78399, 'https://ror.org/00mcxye41', 'en', 1, 'https://ror.org/00mcxye41 National Biodiversity Network Trust'),
(78400, 'https://ror.org/03ad6kn10', 'en', 1, 'https://ror.org/03ad6kn10 Council for Scientific and Industrial Research'),
(78401, 'https://ror.org/054gg1x85', 'en', 1, 'https://ror.org/054gg1x85 Sha''ar Menashe Mental Health Center המרכז לבריאות הנפש- בית חולים שער מנשה'),
(78402, 'https://ror.org/02mnqgw97', 'no_lang_code', 1, 'https://ror.org/02mnqgw97 Rocscience (Canada)'),
(78403, 'https://ror.org/001m9j981', 'no_lang_code', 1, 'https://ror.org/001m9j981 IriSys (United States)'),
(78404, 'https://ror.org/024ymtz97', 'de', 1, 'https://ror.org/024ymtz97 Deutsches Historisches Institut London German Historical Institute London'),
(78405, 'https://ror.org/046xg2p88', 'en', 1, 'https://ror.org/046xg2p88 Canadian Agricultural Economics Society Société Canadienne d''Agroéconomie'),
(78406, 'https://ror.org/04qk6pt94', 'en', 1, 'https://ror.org/04qk6pt94 Université d''État wright Wright State University'),
(78407, 'https://ror.org/05374b979', 'en', 1, 'https://ror.org/05374b979 Torbay and South Devon NHS Foundation Trust'),
(78408, 'https://ror.org/00gdxsk50', 'no_lang_code', 1, 'https://ror.org/00gdxsk50 Surgical Innovations (United Kingdom)'),
(78409, 'https://ror.org/00mkh7345', 'en', 1, 'https://ror.org/00mkh7345 Hubbard Brook Long Term Ecological Research'),
(78410, 'https://ror.org/004jfgt58', 'en', 1, 'https://ror.org/004jfgt58 Mason County District Library'),
(78411, 'https://ror.org/05ykb3m36', 'en', 1, 'https://ror.org/05ykb3m36 Helse- og omsorgsministeren Ministry of Health and Care Services'),
(78412, 'https://ror.org/05cww1c54', 'no_lang_code', 1, 'https://ror.org/05cww1c54 GIRD Systems (United States)'),
(78413, 'https://ror.org/04mvr1r74', 'en', 1, 'https://ror.org/04mvr1r74 Intermountain Healthcare'),
(78414, 'https://ror.org/0507wc250', 'no_lang_code', 1, 'https://ror.org/0507wc250 Mavenir (Israel)'),
(78415, 'https://ror.org/02q4yjc78', 'en', 1, 'https://ror.org/02q4yjc78 International College of Defence Studies 中国人民解放军国防大学国际防务学院'),
(78416, 'https://ror.org/02amckb22', 'en', 1, 'https://ror.org/02amckb22 Continental Scientific Drilling Facility'),
(78417, 'https://ror.org/02ben6x95', 'en', 1, 'https://ror.org/02ben6x95 Ministry of Jobs, Economic Recovery and Innovation'),
(78418, 'https://ror.org/04se57789', 'en', 1, 'https://ror.org/04se57789 Fondazione Museo Civico di Rovereto Rovereto Civic Museum Foundation'),
(78419, 'https://ror.org/04s8x9847', 'en', 1, 'https://ror.org/04s8x9847 Institute of New Materials 山东省科学院新材料研究所');
INSERT INTO `rors` VALUES
(78420, 'https://ror.org/022ah1092', 'en', 1, 'https://ror.org/022ah1092 Borowiec Astrogeodynamic Observatory Obserwatorium Astrogeodynamiczne w Borówcu'),
(78421, 'https://ror.org/011s44m53', 'en', 1, 'https://ror.org/011s44m53 Directorate of Measures and Precious Metals of the Republic of Serbia Direkcija za mere i dragocene metale Дирекције за мере и драгоцене метале'),
(78422, 'https://ror.org/024f43q37', 'de', 1, 'https://ror.org/024f43q37 Hannoversche Kinderheilanstalt'),
(78423, 'https://ror.org/019syws71', 'en', 1, 'https://ror.org/019syws71 Institute for Matching Person and Technology'),
(78424, 'https://ror.org/01x81nn04', 'en', 1, 'https://ror.org/01x81nn04 Department of Aerospace Science and Technology'),
(78425, 'https://ror.org/03ze5qn46', 'en', 1, 'https://ror.org/03ze5qn46 MUFG Bank (United Kingdom)'),
(78426, 'https://ror.org/01savtv33', 'it', 1, 'https://ror.org/01savtv33 Ospedale Papa Giovanni XXIII'),
(78427, 'https://ror.org/018j1ye79', 'en', 1, 'https://ror.org/018j1ye79 ENEA Centro Ricerche Santa Teresa ENEA Santa Teresa Research Centre'),
(78428, 'https://ror.org/019wbnq12', 'hi', 1, 'https://ror.org/019wbnq12 Ramakrishna Mission Vidyamandira রামকৃষ্ণ মিশন'),
(78429, 'https://ror.org/03cp5cj42', 'en', 1, 'https://ror.org/03cp5cj42 Sarah Cannon Research Institute'),
(78430, 'https://ror.org/03b4ffc11', 'en', 1, 'https://ror.org/03b4ffc11 HELIN Library Consortium'),
(78431, 'https://ror.org/05wwqmm86', 'no_lang_code', 1, 'https://ror.org/05wwqmm86 P2i (United Kingdom)'),
(78432, 'https://ror.org/05b225m47', 'en', 1, 'https://ror.org/05b225m47 Kazan State University of Architecture and Engineering Казанский государственный архитектурно-инженерный университет'),
(78433, 'https://ror.org/01apbn515', 'en', 1, 'https://ror.org/01apbn515 Vaganova Ballet Academy Академия Русского балета имени А. Я. Вагановой'),
(78434, 'https://ror.org/013j2zh96', 'ca', 1, 'https://ror.org/013j2zh96 Institut Català d''Investigació Química Institute of Chemical Research of Catalonia'),
(78435, 'https://ror.org/02tmhn414', 'en', 1, 'https://ror.org/02tmhn414 Garraithe Náisiúnta na Lus National Botanic Gardens of Ireland'),
(78436, 'https://ror.org/03d80m334', 'en', 1, 'https://ror.org/03d80m334 Knox'),
(78437, 'https://ror.org/02kmc2r95', 'en', 1, 'https://ror.org/02kmc2r95 Lueji A''Nkonde University Universidade Lueji A''nkonde'),
(78438, 'https://ror.org/017bfx208', 'en', 1, 'https://ror.org/017bfx208 Georgia Coastal Ecosystems Long Term Ecological Research'),
(78439, 'https://ror.org/02qezmz13', 'en', 1, 'https://ror.org/02qezmz13 Centre commun de recherche Centro Comune di Ricerca Gemeinsame Forschungsstelle Joint Research Centre'),
(78440, 'https://ror.org/01s1q0w69', 'es', 1, 'https://ror.org/01s1q0w69 Hospital Universitario La Paz'),
(78441, 'https://ror.org/0326v3v26', 'no_lang_code', 1, 'https://ror.org/0326v3v26 Acide Carbonique Pur (Belgium)'),
(78442, 'https://ror.org/04y89nz36', 'nl', 1, 'https://ror.org/04y89nz36 St. Anna Ziekenhuis'),
(78443, 'https://ror.org/007xmz366', 'nl', 1, 'https://ror.org/007xmz366 Sint Franciscus Gasthuis'),
(78444, 'https://ror.org/05gwnz115', 'no_lang_code', 1, 'https://ror.org/05gwnz115 Almayzab Digital Library مكتبة الميزاب الرقمية'),
(78445, 'https://ror.org/017xf1n22', 'en', 1, 'https://ror.org/017xf1n22 Railway and Canal Historical Society'),
(78446, 'https://ror.org/02en8ya84', 'en', 1, 'https://ror.org/02en8ya84 Shifa International Hospital'),
(78447, 'https://ror.org/0149cpy58', 'en', 1, 'https://ror.org/0149cpy58 Countess of Chester Hospital NHS Foundation Trust'),
(78448, 'https://ror.org/056gkt063', 'en', 1, 'https://ror.org/056gkt063 Canadian Philosophical Association L''Association Canadienne de Philosophie'),
(78449, 'https://ror.org/0582y1e41', 'nl', 1, 'https://ror.org/0582y1e41 Groene Hart Ziekenhuis'),
(78450, 'https://ror.org/01m1qsc38', 'en', 1, 'https://ror.org/01m1qsc38 Ministry of Agriculture'),
(78451, 'https://ror.org/04d713p41', 'en', 1, 'https://ror.org/04d713p41 Tameside Hospital'),
(78452, 'https://ror.org/0105s3595', 'sl', 1, 'https://ror.org/0105s3595 ŠKUC Association'),
(78453, 'https://ror.org/04sgce546', 'en', 1, 'https://ror.org/04sgce546 Corner House'),
(78454, 'https://ror.org/05hkks026', 'en', 1, 'https://ror.org/05hkks026 Nizhny Tagil State Socio-Pedagogical Institute Нижнетагильский государственный социально-педагогический институт'),
(78455, 'https://ror.org/00c5bvm83', 'en', 1, 'https://ror.org/00c5bvm83 Belfast City Council'),
(78456, 'https://ror.org/02j0rkv07', 'en', 1, 'https://ror.org/02j0rkv07 Pike County Schools'),
(78457, 'https://ror.org/00dk0pe94', 'en', 1, 'https://ror.org/00dk0pe94 Randall University'),
(78458, 'https://ror.org/02hbcgp53', 'en', 1, 'https://ror.org/02hbcgp53 Arctic State Institute of Culture and Arts Арктический государственный институт культуры и искусств'),
(78459, 'https://ror.org/05326dh45', 'en', 1, 'https://ror.org/05326dh45 Norfolk Public Library'),
(78460, 'https://ror.org/03mebtg66', 'en', 1, 'https://ror.org/03mebtg66 Newburgh Free Library'),
(78461, 'https://ror.org/01v1hv534', 'en', 1, 'https://ror.org/01v1hv534 MIRCORE'),
(78462, 'https://ror.org/058kzes98', 'en', 1, 'https://ror.org/058kzes98 Universiteitsmuseum Utrecht University Museum Utrecht'),
(78463, 'https://ror.org/027xkck76', 'en', 1, 'https://ror.org/027xkck76 International Water Association'),
(78464, 'https://ror.org/02967gp58', 'no_lang_code', 1, 'https://ror.org/02967gp58 Aptiv (United States)'),
(78465, 'https://ror.org/0164vvh82', 'en', 1, 'https://ror.org/0164vvh82 Commissariat à la Protection de la vie Privée du Canada Office of the Privacy Commissioner of Canada'),
(78466, 'https://ror.org/0579jh693', 'en', 1, 'https://ror.org/0579jh693 Skin Research Center'),
(78467, 'https://ror.org/03ccbtk93', 'en', 1, 'https://ror.org/03ccbtk93 Joint Fire Science Program'),
(78468, 'https://ror.org/05xrcj819', 'it', 1, 'https://ror.org/05xrcj819 Azienda Ospedaliera Universitaria Pisana University Hospital of Pisa'),
(78469, 'https://ror.org/05q46an69', 'en', 1, 'https://ror.org/05q46an69 Hawk Mountain Sanctuary'),
(78470, 'https://ror.org/01g9vbr38', 'en', 1, 'https://ror.org/01g9vbr38 Oklahoma State University'),
(78471, 'https://ror.org/00rxpqe74', 'en', 1, 'https://ror.org/00rxpqe74 Providence College'),
(78472, 'https://ror.org/00kq45e22', 'no_lang_code', 1, 'https://ror.org/00kq45e22 Ocellus (United States)'),
(78473, 'https://ror.org/041q2mm12', 'no_lang_code', 1, 'https://ror.org/041q2mm12 Altimmune (United States)'),
(78474, 'https://ror.org/01s0tbj55', 'en', 1, 'https://ror.org/01s0tbj55 World Vision'),
(78475, 'https://ror.org/00krzbm55', 'en', 1, 'https://ror.org/00krzbm55 Luquillo Long Term Ecological Research'),
(78476, 'https://ror.org/05976ta47', 'en', 1, 'https://ror.org/05976ta47 Jornada Basin Long Term Ecological Research'),
(78477, 'https://ror.org/034tvp782', 'en', 1, 'https://ror.org/034tvp782 Institute of Biochemistry and Biophysics, Polish Academy of Sciences Instytut Biochemii i Biofizyki Polskiej Akademii Nauk'),
(78478, 'https://ror.org/054bsq212', 'en', 1, 'https://ror.org/054bsq212 Institute of Geological Sciences Інститут геологічних наук НАН України'),
(78479, 'https://ror.org/02cc4d683', 'no_lang_code', 1, 'https://ror.org/02cc4d683 Fluid Gravity Engineering (United Kingdom)'),
(78480, 'https://ror.org/01m1y7668', 'en', 1, 'https://ror.org/01m1y7668 The Ilya Glazunov Russian Academy of Painting, Sculpture and Architecture Российская академия живописи, ваяния и зодчества Ильи Глазунова'),
(78481, 'https://ror.org/01qbp6a91', 'en', 1, 'https://ror.org/01qbp6a91 Association Canadienne des Sports en Fauteuil Roulant Wheelchair Rugby Canada'),
(78482, 'https://ror.org/01a9h7w04', 'no_lang_code', 1, 'https://ror.org/01a9h7w04 Furuno (Japan) 古野電気株式会社'),
(78483, 'https://ror.org/05p93sx58', 'cs', 1, 'https://ror.org/05p93sx58 Léčebna Dlouhodobě Nemocných'),
(78484, 'https://ror.org/02ycyys66', 'it', 1, 'https://ror.org/02ycyys66 Istituto Ortopedico Rizzoli Rizzoli Orthopaedic Institute'),
(78485, 'https://ror.org/04wb1en98', 'de', 1, 'https://ror.org/04wb1en98 Evangelical School of Social Work & Diakonie Evangelische Hochschule für Soziale Arbeit & Diakonie'),
(78486, 'https://ror.org/03f4b7c94', 'no_lang_code', 1, 'https://ror.org/03f4b7c94 Jiangling Motors Corporation (China) 江铃汽车公司'),
(78487, 'https://ror.org/03bw8s353', 'en', 1, 'https://ror.org/03bw8s353 Southern Urals Biophysics Institute Ûžno-Ural''skij institut biofiziki Южно-Уральский институт биофизики'),
(78488, 'https://ror.org/00e372137', 'en', 1, 'https://ror.org/00e372137 International Severe Acute Respiratory and Emerging Infection Consortium'),
(78489, 'https://ror.org/02gf1cx07', 'en', 1, 'https://ror.org/02gf1cx07 Chinese Mathematical Society 中国数学会'),
(78490, 'https://ror.org/04wny3163', 'en', 1, 'https://ror.org/04wny3163 British Society for Geomorphology'),
(78491, 'https://ror.org/01rnt9r23', 'en', 1, 'https://ror.org/01rnt9r23 Orot Israel College מכללת אורות ישראל'),
(78492, 'https://ror.org/049p9j193', 'en', 1, 'https://ror.org/049p9j193 Kent and Medway Medical School'),
(78493, 'https://ror.org/01mwx9v75', 'no_lang_code', 1, 'https://ror.org/01mwx9v75 Electrolux (Italy)'),
(78494, 'https://ror.org/04y8d6y55', 'en', 1, 'https://ror.org/04y8d6y55 Shandong Academy of Sciences 山东省科学院'),
(78495, 'https://ror.org/05nfq3p69', 'en', 1, 'https://ror.org/05nfq3p69 Chamber of Commerce of Metropolitan Montreal Chambre de commerce du Montréal métropolitain'),
(78496, 'https://ror.org/027vts844', 'nl', 1, 'https://ror.org/027vts844 Canisius-Wilhelmina Ziekenhuis'),
(78497, 'https://ror.org/05k7rm370', 'no_lang_code', 1, 'https://ror.org/05k7rm370 Cougaar Software (United States)'),
(78498, 'https://ror.org/03dk2gk58', 'en', 1, 'https://ror.org/03dk2gk58 Guangdong Greater Bay Area Institute of Integrated Circuit and System 广东省大湾区集成电路与系统应用研究院'),
(78499, 'https://ror.org/02w0rsp42', 'en', 1, 'https://ror.org/02w0rsp42 Conseil des relations internationales de Montréal Montreal Council on Foreign Relations'),
(78500, 'https://ror.org/049z73212', 'en', 1, 'https://ror.org/049z73212 Institute of Social and Political Psychology Інститут соціальної та політичної психології НАПН України'),
(78501, 'https://ror.org/04enhpe73', 'en', 1, 'https://ror.org/04enhpe73 Leibniz Institute of Atmospheric Physics at the Rostock University Leibniz-Institut für Atmosphärenphysik'),
(78502, 'https://ror.org/00qvqt255', 'no_lang_code', 1, 'https://ror.org/00qvqt255 Pepsi (United States)'),
(78503, 'https://ror.org/05w88pj86', 'en', 1, 'https://ror.org/05w88pj86 Institute for Biological Systems Istituto per i Sistemi Biologici'),
(78504, 'https://ror.org/01t7act74', 'no_lang_code', 1, 'https://ror.org/01t7act74 Ultra Electronics (United States)'),
(78505, 'https://ror.org/05k1m9s26', 'en', 1, 'https://ror.org/05k1m9s26 ENEA Brindisi Research Centre ENEA Centro Ricerche Brindisi'),
(78506, 'https://ror.org/05fyd4h04', 'en', 1, 'https://ror.org/05fyd4h04 Parks and Wildlife Commission of the Northern Territory'),
(78507, 'https://ror.org/03zs8ga83', 'tr', 1, 'https://ror.org/03zs8ga83 Oku Okut Association Oku Okut Derneği'),
(78508, 'https://ror.org/01z1gye03', 'en', 1, 'https://ror.org/01z1gye03 Institute for Research in Biomedicine'),
(78509, 'https://ror.org/006hbbw23', 'en', 1, 'https://ror.org/006hbbw23 Ohio University Eastern'),
(78510, 'https://ror.org/0028hwj42', 'en', 1, 'https://ror.org/0028hwj42 St. Petersburg Research Center of the Russian Academy of Sciences Санкт-Петербургский научный центр РАН'),
(78511, 'https://ror.org/046ghm278', 'es', 1, 'https://ror.org/046ghm278 Instituto Peruano de Orientación Psicológica'),
(78512, 'https://ror.org/041swk623', 'en', 1, 'https://ror.org/041swk623 Heatherwood Hospital'),
(78513, 'https://ror.org/01e7h5v19', 'en', 1, 'https://ror.org/01e7h5v19 CRC Robotics'),
(78514, 'https://ror.org/01akz7g58', 'en', 1, 'https://ror.org/01akz7g58 Belarusian State Institute for Metrology Белорусский государственный институт метрологии'),
(78515, 'https://ror.org/04a8k4p47', 'en', 1, 'https://ror.org/04a8k4p47 Institute for Informatics and Automation Problems'),
(78516, 'https://ror.org/03yqekx34', 'no_lang_code', 1, 'https://ror.org/03yqekx34 Atossa Therapeutics (United States)'),
(78517, 'https://ror.org/034eyya14', 'no_lang_code', 1, 'https://ror.org/034eyya14 Computable Publishing'),
(78518, 'https://ror.org/03dcrhc18', 'en', 1, 'https://ror.org/03dcrhc18 Central Midlands Council of Governments'),
(78519, 'https://ror.org/00as45r68', 'en', 1, 'https://ror.org/00as45r68 Ministerio de Economía, Fomento y Reconstrucción de Chile Ministry of Economy, Development and Tourism'),
(78520, 'https://ror.org/04g1j1w90', 'no_lang_code', 1, 'https://ror.org/04g1j1w90 DataKind'),
(78521, 'https://ror.org/02khqd465', 'it', 1, 'https://ror.org/02khqd465 ENEA Casaccia Research Centre ENEA Centro Ricerche Casaccia'),
(78522, 'https://ror.org/04zc3wd06', 'no_lang_code', 1, 'https://ror.org/04zc3wd06 Public Power Corporation (Greece)'),
(78523, 'https://ror.org/04z20c169', 'en', 1, 'https://ror.org/04z20c169 Moline Public Library'),
(78524, 'https://ror.org/01wtczc25', 'es', 1, 'https://ror.org/01wtczc25 Universidad Internacional de Ciencia y Tecnología - UNICyT'),
(78525, 'https://ror.org/00kce5954', 'no_lang_code', 1, 'https://ror.org/00kce5954 L3Harris (United Kingdom)'),
(78526, 'https://ror.org/05rgme147', 'en', 1, 'https://ror.org/05rgme147 FitzPatrick Institute of African Ornithology'),
(78527, 'https://ror.org/04bpx6z13', 'en', 1, 'https://ror.org/04bpx6z13 The All-Russian State University of Justice Всероссийский государственный университет юстиции'),
(78528, 'https://ror.org/04djymq25', 'en', 1, 'https://ror.org/04djymq25 Kamioka Observatory 神岡宇宙素粒子研究施設'),
(78529, 'https://ror.org/03ym65z81', 'en', 1, 'https://ror.org/03ym65z81 Deutsches Zentrum für Integrations- und Migrationsforschung German Center for Integration and Migration Research'),
(78530, 'https://ror.org/017nweb49', 'en', 1, 'https://ror.org/017nweb49 Roger Williams University'),
(78531, 'https://ror.org/05aw7p057', 'en', 1, 'https://ror.org/05aw7p057 Geological Survey of Slovenia Geološki zavod Slovenije'),
(78532, 'https://ror.org/04a8rd767', 'en', 1, 'https://ror.org/04a8rd767 Max Planck Institute for the Study of Crime, Security and Law Max-Planck-Institut zur Erforschung von Kriminalität, Sicherheit und Recht'),
(78533, 'https://ror.org/05510vn56', 'en', 1, 'https://ror.org/05510vn56 Federico Santa María Technical University Universidad Técnica Federico Santa María'),
(78534, 'https://ror.org/0244nkc36', 'en', 1, 'https://ror.org/0244nkc36 Institute for Economics and Forecasting of the National Academy of Sciences of Ukraine Государс твенное учреждение “Институт экономики и прогнозирования НАН Украины” Державна установа “Інститут економіки та прогнозування НАН України”'),
(78535, 'https://ror.org/00ftrxq20', 'en', 1, 'https://ror.org/00ftrxq20 Asahikawa Medical College Hospital 旭川医科大学病院'),
(78536, 'https://ror.org/05k87xn20', 'iu', 1, 'https://ror.org/05k87xn20 Inuit Tapiriit Kanatami'),
(78537, 'https://ror.org/022akpv96', 'en', 1, 'https://ror.org/022akpv96 Delhi Pharmaceutical Science and Research University'),
(78538, 'https://ror.org/03zk15524', 'en', 1, 'https://ror.org/03zk15524 Penza State Pedagogical University'),
(78539, 'https://ror.org/03c75ky76', 'en', 1, 'https://ror.org/03c75ky76 Frimley Park Hospital'),
(78540, 'https://ror.org/04zcfra07', 'no_lang_code', 1, 'https://ror.org/04zcfra07 FlowJo (United States)'),
(78541, 'https://ror.org/03davk141', 'en', 1, 'https://ror.org/03davk141 Florida Coastal Everglades Long Term Ecological Research'),
(78542, 'https://ror.org/01dhcyx48', 'en', 1, 'https://ror.org/01dhcyx48 Cary Institute of Ecosystem Studies'),
(78543, 'https://ror.org/02ecs6h97', 'en', 1, 'https://ror.org/02ecs6h97 Fayette County Public Schools'),
(78544, 'https://ror.org/01tx47076', 'fr', 1, 'https://ror.org/01tx47076 École des Cadres'),
(78545, 'https://ror.org/038rrt316', 'en', 1, 'https://ror.org/038rrt316 Lincoln Public Library'),
(78546, 'https://ror.org/00r1w0907', 'en', 1, 'https://ror.org/00r1w0907 Knowledge Network for Biocomplexity'),
(78547, 'https://ror.org/053njym08', 'nl', 1, 'https://ror.org/053njym08 Laurentius Ziekenhuis'),
(78548, 'https://ror.org/05aqbyb84', 'en', 1, 'https://ror.org/05aqbyb84 State Agricultural Academy of Velikie Luki Великолукская государственная сельскохозяйственная академия'),
(78549, 'https://ror.org/02qb3f692', 'en', 1, 'https://ror.org/02qb3f692 St Anna Children''s Hospital St. Anna Kinderspital'),
(78550, 'https://ror.org/04j81w290', 'en', 1, 'https://ror.org/04j81w290 Association Canadienne des Géographes Canadian Association of Geographers'),
(78551, 'https://ror.org/02mxd1a54', 'no_lang_code', 1, 'https://ror.org/02mxd1a54 Kulicke & Soffa (United States)'),
(78552, 'https://ror.org/021p8a188', 'en', 1, 'https://ror.org/021p8a188 Ministry of Economy Министерство за економија'),
(78553, 'https://ror.org/0496k0e74', 'en', 1, 'https://ror.org/0496k0e74 ENEA Bologna Research Centre ENEA Centro Ricerche Bologna'),
(78554, 'https://ror.org/05kkkes98', 'en', 1, 'https://ror.org/05kkkes98 Beijing Ditan Hospital 北京地坛医院'),
(78555, 'https://ror.org/04rw5yk74', 'en', 1, 'https://ror.org/04rw5yk74 Yellowstone National Park'),
(78556, 'https://ror.org/02tqqrq23', 'nl', 1, 'https://ror.org/02tqqrq23 Flevoziekenhuis'),
(78557, 'https://ror.org/01q8ytn75', 'en', 1, 'https://ror.org/01q8ytn75 Center for Northern Studies Centre d''études nordiques'),
(78558, 'https://ror.org/00d9nf164', 'es', 1, 'https://ror.org/00d9nf164 Fundación Grupo para la Investigación, Formación, y Edición Transdisciplinar'),
(78559, 'https://ror.org/03xjqsg18', 'en', 1, 'https://ror.org/03xjqsg18 Real Instituto y Observatorio de la Armada Royal Institute and Observatory of the Spanish Navy'),
(78560, 'https://ror.org/02qqjk369', 'en', 1, 'https://ror.org/02qqjk369 Institute for Digitalisation of Education of the NAES of Ukraine Інститут цифровізації освіти НАПН України'),
(78561, 'https://ror.org/026h6vx82', 'en', 1, 'https://ror.org/026h6vx82 Agrárminisztérium Ministry of Agriculture'),
(78562, 'https://ror.org/00306v942', 'no_lang_code', 1, 'https://ror.org/00306v942 Sivantos (Germany)'),
(78563, 'https://ror.org/04f7jc139', 'de', 1, 'https://ror.org/04f7jc139 Bremen University of Applied Sciences Hochschule Bremen'),
(78564, 'https://ror.org/04c1gbz02', 'en', 1, 'https://ror.org/04c1gbz02 Keene State College'),
(78565, 'https://ror.org/029kfxt47', 'no_lang_code', 1, 'https://ror.org/029kfxt47 International Water Association Publishing'),
(78566, 'https://ror.org/04ffjez92', 'en', 1, 'https://ror.org/04ffjez92 Cell Therapy Catapult'),
(78567, 'https://ror.org/03fzkfr34', 'de', 1, 'https://ror.org/03fzkfr34 Landesinstitut für Pädagogik und Medien'),
(78568, 'https://ror.org/02c8ctc21', 'no_lang_code', 1, 'https://ror.org/02c8ctc21 Beijing Institute of Radio Metrology and Measurement 北京无线电测量研究所'),
(78569, 'https://ror.org/01q1fj824', 'en', 1, 'https://ror.org/01q1fj824 DRDO Young Scientist Laboratory'),
(78570, 'https://ror.org/02578cn21', 'no_lang_code', 1, 'https://ror.org/02578cn21 Parallel Quantum Solutions (United States)'),
(78571, 'https://ror.org/05mqfgg03', 'en', 1, 'https://ror.org/05mqfgg03 Horlivka Institute for Foreign Languages Горлівський інститут іноземних мов'),
(78572, 'https://ror.org/00e27px16', 'no_lang_code', 1, 'https://ror.org/00e27px16 Meito Sangyo (Japan)'),
(78573, 'https://ror.org/04sg54v37', 'no_lang_code', 1, 'https://ror.org/04sg54v37 Enzen (India)'),
(78574, 'https://ror.org/02mv6r745', 'en', 1, 'https://ror.org/02mv6r745 Utah System of Higher Education'),
(78575, 'https://ror.org/008hagh90', 'en', 1, 'https://ror.org/008hagh90 Association Nationale qui Représente les Intérêts Communs des Services Publics Canadian Water and Wastewater Association'),
(78576, 'https://ror.org/038t2yw28', 'en', 1, 'https://ror.org/038t2yw28 Institut zur Qualitätsentwicklung im Bildungswesen Institute for Educational Quality Improvement'),
(78577, 'https://ror.org/051samc18', 'en', 1, 'https://ror.org/051samc18 Llyfrgell Genedlaethol yr Alban National Library of Scotland'),
(78578, 'https://ror.org/040fv5d16', 'de', 1, 'https://ror.org/040fv5d16 DVGW-Forschungsstelle am Engler-Bunte-Institut des Karlsruher Instituts für Technologie'),
(78579, 'https://ror.org/05ktb0281', 'en', 1, 'https://ror.org/05ktb0281 Clifton Hospital'),
(78580, 'https://ror.org/02mh24h06', 'en', 1, 'https://ror.org/02mh24h06 Mastery Charter Schools'),
(78581, 'https://ror.org/047eze012', 'en', 1, 'https://ror.org/047eze012 Hôpital juif de réadaptation Jewish Rehabilitation Hospital'),
(78582, 'https://ror.org/03s74ag37', 'en', 1, 'https://ror.org/03s74ag37 Green Chemistry Zielona Chemia'),
(78583, 'https://ror.org/03q5df791', 'en', 1, 'https://ror.org/03q5df791 Miller Dwan Foundation'),
(78584, 'https://ror.org/045dz8764', 'it', 1, 'https://ror.org/045dz8764 Astronomical Observatory of Cagliari Osservatorio Astronomico di Cagliari'),
(78585, 'https://ror.org/05b5rpz24', 'no_lang_code', 1, 'https://ror.org/05b5rpz24 PRT Growing Services (Canada)'),
(78586, 'https://ror.org/003y2cj37', 'no_lang_code', 1, 'https://ror.org/003y2cj37 Q Chem (United States)'),
(78587, 'https://ror.org/04e6fpr42', 'en', 1, 'https://ror.org/04e6fpr42 Downers Grove Public Library'),
(78588, 'https://ror.org/05de8dt65', 'en', 1, 'https://ror.org/05de8dt65 Spokane Public Library'),
(78589, 'https://ror.org/04gmgt288', 'no_lang_code', 1, 'https://ror.org/04gmgt288 Tikkurila (Finland)'),
(78590, 'https://ror.org/05ma3ex40', 'en', 1, 'https://ror.org/05ma3ex40 Specialized Cardiosurgical Clinical Hospital named after Academician B.A. Korolev Специализированная кардиохирургическая клиническая больница'),
(78591, 'https://ror.org/00gnxy738', 'en', 1, 'https://ror.org/00gnxy738 UK Web Archive'),
(78592, 'https://ror.org/010sh9e25', 'no_lang_code', 1, 'https://ror.org/010sh9e25 Novana (United States)'),
(78593, 'https://ror.org/022kw3738', 'it', 1, 'https://ror.org/022kw3738 Centro Ricerche Musicali'),
(78594, 'https://ror.org/016drwn73', 'es', 1, 'https://ror.org/016drwn73 Universidad de las Artes'),
(78595, 'https://ror.org/055ja0v85', 'en', 1, 'https://ror.org/055ja0v85 Wheaton College - Massachusetts'),
(78596, 'https://ror.org/004z16v08', 'en', 1, 'https://ror.org/004z16v08 Saint Louis College La Union'),
(78597, 'https://ror.org/00vyr7c31', 'nl', 1, 'https://ror.org/00vyr7c31 Rode Kruis Ziekenhuis'),
(78598, 'https://ror.org/0560hrn40', 'en', 1, 'https://ror.org/0560hrn40 Poplar Creek Public Library District'),
(78599, 'https://ror.org/00g9bca48', 'no_lang_code', 1, 'https://ror.org/00g9bca48 Biotronik (Singapore)'),
(78600, 'https://ror.org/01vvnn702', 'no_lang_code', 1, 'https://ror.org/01vvnn702 Bühler (Switzerland)'),
(78601, 'https://ror.org/05r1gew95', 'no_lang_code', 1, 'https://ror.org/05r1gew95 Abraxis (United States)'),
(78602, 'https://ror.org/01a73vp68', 'en', 1, 'https://ror.org/01a73vp68 Schaumburg Township District Library'),
(78603, 'https://ror.org/05w8df681', 'nl', 1, 'https://ror.org/05w8df681 Deventer Ziekenhuis'),
(78604, 'https://ror.org/01z0h5j41', 'no_lang_code', 1, 'https://ror.org/01z0h5j41 Sunrise Medical (United States)'),
(78605, 'https://ror.org/01q6zce06', 'en', 1, 'https://ror.org/01q6zce06 Bundesamt für Kartographie und Geodäsie Federal Agency for Cartography and Geodesy'),
(78606, 'https://ror.org/05nczym02', 'en', 1, 'https://ror.org/05nczym02 ENEA Centro Ricerche Saluggia ENEA Saluggia Research Centre'),
(78607, 'https://ror.org/00jyds089', 'no_lang_code', 1, 'https://ror.org/00jyds089 NotABook (United States)'),
(78608, 'https://ror.org/05sqads14', 'fr', 1, 'https://ror.org/05sqads14 Laboratoire de métrologie de la Direction Générale des Transmissions et de l''Informatique'),
(78609, 'https://ror.org/03s2agk53', 'en', 1, 'https://ror.org/03s2agk53 Norsk barnebokinstitutt The Norwegian Institute for Children’s Books'),
(78610, 'https://ror.org/049zrt876', 'no_lang_code', 1, 'https://ror.org/049zrt876 AgBioData'),
(78611, 'https://ror.org/04sn06036', 'en', 1, 'https://ror.org/04sn06036 Institute for Experimental Endocrinology and Oncology Istituto per l''Endocrinologia e l''Oncologica Sperimentale "G. Salvatore"'),
(78612, 'https://ror.org/046pk3455', 'en', 1, 'https://ror.org/046pk3455 Institut Des Communications Graphiques Du Québec Printability And Graphic Communications Institute'),
(78613, 'https://ror.org/009a03q22', 'en', 1, 'https://ror.org/009a03q22 Main Center of Special Monitoring Головний центр спеціального контролю'),
(78614, 'https://ror.org/03v25yt44', 'en', 1, 'https://ror.org/03v25yt44 Spartanburg Regional Healthcare System'),
(78615, 'https://ror.org/00ezf9p03', 'en', 1, 'https://ror.org/00ezf9p03 Cherkasy Medical Academy Черкаська медична академія'),
(78616, 'https://ror.org/02f8mda22', 'no_lang_code', 1, 'https://ror.org/02f8mda22 Quality and Reliability (Greece)'),
(78617, 'https://ror.org/03ng8vp43', 'en', 1, 'https://ror.org/03ng8vp43 Arctic State Agrotechnological University Якутская государственная сельскохозяйственная академия'),
(78618, 'https://ror.org/02x6n9690', 'de', 1, 'https://ror.org/02x6n9690 Landesamt für Geologie, Rohstoffe und Bergbau'),
(78619, 'https://ror.org/04s98d524', 'no_lang_code', 1, 'https://ror.org/04s98d524 Qeios (United Kingdom)'),
(78620, 'https://ror.org/04b6ahj46', 'es', 1, 'https://ror.org/04b6ahj46 Universidad Independiente'),
(78621, 'https://ror.org/00vpxf870', 'en', 1, 'https://ror.org/00vpxf870 Grand Teton National Park'),
(78622, 'https://ror.org/01tyh8d23', 'es', 1, 'https://ror.org/01tyh8d23 Ministerio de Salud Pública'),
(78623, 'https://ror.org/01wx1q736', 'en', 1, 'https://ror.org/01wx1q736 Kryvyi Rih State Pedagogical University Криворізький державний педагогічний університет'),
(78624, 'https://ror.org/00gez1r32', 'en', 1, 'https://ror.org/00gez1r32 Young Men''s Christian Association'),
(78625, 'https://ror.org/03k79cn98', 'en', 1, 'https://ror.org/03k79cn98 Employment and Social Development Canada Ministère des Ressources humaines et Développement des compétences'),
(78626, 'https://ror.org/009rk8684', 'no_lang_code', 1, 'https://ror.org/009rk8684 Kiwa (Germany)'),
(78627, 'https://ror.org/03wf7ed39', 'en', 1, 'https://ror.org/03wf7ed39 Wexham Park Hospital'),
(78628, 'https://ror.org/04r8kt465', 'en', 1, 'https://ror.org/04r8kt465 Høgskolen for yrkesfag Høyskolen for yrkesfag University College of Vocational Education'),
(78629, 'https://ror.org/022p86748', 'en', 1, 'https://ror.org/022p86748 GW4 Facility for High-Resolution Electron Cryo-Microscopy'),
(78630, 'https://ror.org/012p54t81', 'no_lang_code', 1, 'https://ror.org/012p54t81 Gemalto (France)'),
(78631, 'https://ror.org/04k738y75', 'en', 1, 'https://ror.org/04k738y75 Plano Public Library System'),
(78632, 'https://ror.org/05mya2w74', 'en', 1, 'https://ror.org/05mya2w74 Combined Military Hospital مشترکہ فوجی ہسپتال'),
(78633, 'https://ror.org/015dkz579', 'en', 1, 'https://ror.org/015dkz579 Bread for the World Institute'),
(78634, 'https://ror.org/03q36cn05', 'no_lang_code', 1, 'https://ror.org/03q36cn05 Uks'),
(78635, 'https://ror.org/056h76p35', 'no_lang_code', 1, 'https://ror.org/056h76p35 Comsol (United Kingdom)'),
(78636, 'https://ror.org/0448sav47', 'no_lang_code', 1, 'https://ror.org/0448sav47 Castor'),
(78637, 'https://ror.org/03jrxta72', 'en', 1, 'https://ror.org/03jrxta72 Princess Margaret Hospital 瑪嘉烈醫院'),
(78638, 'https://ror.org/04assc746', 'es', 1, 'https://ror.org/04assc746 Asociación por los Derechos Civiles'),
(78639, 'https://ror.org/02t359070', 'en', 1, 'https://ror.org/02t359070 Kazan State Academy of Veterinary Medicine named after N.E. Bauman Казанская государственная академия ветеринарной медицины имени Н.Э. Баумана'),
(78640, 'https://ror.org/01cfpzw88', 'de', 1, 'https://ror.org/01cfpzw88 Deutsches Institut für Japanstudien Tokyo German Institute for Japanese Studies ドイツ日本研究所'),
(78641, 'https://ror.org/007bdrf88', 'de', 1, 'https://ror.org/007bdrf88 Gesundheitsamt Gesundheitsamt Frankfurt'),
(78642, 'https://ror.org/039wjmj68', 'no_lang_code', 1, 'https://ror.org/039wjmj68 Atlas Copco (Germany)'),
(78643, 'https://ror.org/04qrv9y41', 'en', 1, 'https://ror.org/04qrv9y41 Episcopal High School'),
(78644, 'https://ror.org/048ycfv73', 'de', 1, 'https://ror.org/048ycfv73 Klinikum Kassel'),
(78645, 'https://ror.org/05xz2k587', 'fr', 1, 'https://ror.org/05xz2k587 Paris Aéroport'),
(78646, 'https://ror.org/02dhqpj43', 'fr', 1, 'https://ror.org/02dhqpj43 Centre de réadaptation Lethbridge-Layton-Mackay Lethbridge-Layton-Mackay Rehabilitation Centre'),
(78647, 'https://ror.org/02qeczg43', 'en', 1, 'https://ror.org/02qeczg43 St. Mary''s Medical Center'),
(78648, 'https://ror.org/03kxagd85', 'de', 1, 'https://ror.org/03kxagd85 Helios Dr. Horst Schmidt Kliniken Wiesbaden'),
(78649, 'https://ror.org/010dcp921', 'en', 1, 'https://ror.org/010dcp921 California Current Ecosystem Long Term Ecological Research'),
(78650, 'https://ror.org/03qh1f279', 'nl', 1, 'https://ror.org/03qh1f279 IJsselland Ziekenhuis'),
(78651, 'https://ror.org/05r9gag74', 'en', 1, 'https://ror.org/05r9gag74 Hubbard Brook Research Foundation'),
(78652, 'https://ror.org/0104cy831', 'en', 1, 'https://ror.org/0104cy831 Community College of Rhode Island'),
(78653, 'https://ror.org/02wgx3e98', 'en', 1, 'https://ror.org/02wgx3e98 Sohag University جامعة سوهاج'),
(78654, 'https://ror.org/02qczxe62', 'en', 1, 'https://ror.org/02qczxe62 Black Rock Forest Consortium'),
(78655, 'https://ror.org/01fnyyq46', 'es', 1, 'https://ror.org/01fnyyq46 Universidad Domínico Americana'),
(78656, 'https://ror.org/02pcbw160', 'en', 1, 'https://ror.org/02pcbw160 Chihlee Institute of Technology 致理科技大學'),
(78657, 'https://ror.org/03j1d4266', 'no_lang_code', 1, 'https://ror.org/03j1d4266 Anevo (Greece)'),
(78658, 'https://ror.org/03862t386', 'nl', 1, 'https://ror.org/03862t386 Ziekenhuis Gelderse Vallei'),
(78659, 'https://ror.org/03hbhg091', 'en', 1, 'https://ror.org/03hbhg091 Lviv Academy of Commerce Львовская коммерческая академия Львівська комерційна академія'),
(78660, 'https://ror.org/01sepf450', 'en', 1, 'https://ror.org/01sepf450 Wisconsin State Law Library'),
(78661, 'https://ror.org/05e73v668', 'nl', 1, 'https://ror.org/05e73v668 Ziekenhuis Amstelland'),
(78662, 'https://ror.org/0577e4z60', 'en', 1, 'https://ror.org/0577e4z60 Grand Council of the Crees'),
(78663, 'https://ror.org/04ev01y75', 'en', 1, 'https://ror.org/04ev01y75 State Space Agency of Ukraine Державне космічне агентство України'),
(78664, 'https://ror.org/01026pq66', 'en', 1, 'https://ror.org/01026pq66 ENEA Centro Ricerche Frascati ENEA Frascati Research Centre'),
(78665, 'https://ror.org/00errak20', 'en', 1, 'https://ror.org/00errak20 Biro za metrologija Bureau of Metrology of Macedonia Byroja për metrologji БИРО ЗА МЕТРОЛОГИЈА'),
(78666, 'https://ror.org/02sp8bz52', 'en', 1, 'https://ror.org/02sp8bz52 Intermountain St. George Regional Hospital'),
(78667, 'https://ror.org/02ej0z861', 'pt', 1, 'https://ror.org/02ej0z861 Instituto Politécnico da Lunda Sul Polytechnic Institute of Lunda Sul'),
(78668, 'https://ror.org/02vkce854', 'en', 1, 'https://ror.org/02vkce854 Kellogg Biological Station Long Term Ecological Research'),
(78669, 'https://ror.org/02r6x2c23', 'no_lang_code', 1, 'https://ror.org/02r6x2c23 Gobio (Germany)'),
(78670, 'https://ror.org/00m7gt169', 'no_lang_code', 1, 'https://ror.org/00m7gt169 Thomson Reuters (United States)'),
(78671, 'https://ror.org/02cvys591', 'en', 1, 'https://ror.org/02cvys591 Bundesamt für Landestopografie swisstopo Federal Office of Topography swisstopo Office fédéral de topographie swisstopo Ufficio federale di topografia swisstopo'),
(78672, 'https://ror.org/00ns0qg75', 'en', 1, 'https://ror.org/00ns0qg75 Parkway Cancer Centre'),
(78673, 'https://ror.org/0339x3x34', 'en', 1, 'https://ror.org/0339x3x34 American College Testing'),
(78674, 'https://ror.org/04mb5jg98', 'fr', 1, 'https://ror.org/04mb5jg98 Communication, Information, Médias'),
(78675, 'https://ror.org/03pe74b89', 'de', 1, 'https://ror.org/03pe74b89 Max Weber Forum for South Asian Studies in Delhi Max Weber Forum für Südasienstudien Delhi'),
(78676, 'https://ror.org/00pm7rm97', 'no_lang_code', 1, 'https://ror.org/00pm7rm97 IBM (Germany)'),
(78677, 'https://ror.org/018wm0v91', 'no_lang_code', 1, 'https://ror.org/018wm0v91 Arvato'),
(78678, 'https://ror.org/00a0n3690', 'en', 1, 'https://ror.org/00a0n3690 Commonweal'),
(78679, 'https://ror.org/004gg6s72', 'en', 1, 'https://ror.org/004gg6s72 Children''s Aid Society'),
(78680, 'https://ror.org/03dxajm77', 'en', 1, 'https://ror.org/03dxajm77 Farmington Community Library'),
(78681, 'https://ror.org/002pvtp37', 'en', 1, 'https://ror.org/002pvtp37 Bulgarian Institute of Metrology Български институт по метрология'),
(78682, 'https://ror.org/03wd03705', 'no_lang_code', 1, 'https://ror.org/03wd03705 Orient-Institut Beirut Orient-Institute Beirut لمعهد الألماني للأبحاث الشرقية'),
(78683, 'https://ror.org/00kvcw656', 'en', 1, 'https://ror.org/00kvcw656 Canadian Society for International Health Société Canadienne de Santé Internationale'),
(78684, 'https://ror.org/0326knt82', 'en', 1, 'https://ror.org/0326knt82 Adolfo Ibáñez University Universidad Adolfo Ibáñez'),
(78685, 'https://ror.org/00sscbg84', 'en', 1, 'https://ror.org/00sscbg84 Khabarovsk State University of Economics and Law Хабаровская государственная академия экономики и права'),
(78686, 'https://ror.org/02qtq4y04', 'en', 1, 'https://ror.org/02qtq4y04 International Slavic University Gavrilo Romanovich Derzhavin Международный славянский университет “Гаврило Романович Державин” Меѓународен Славјански Универзитет Гаврило Романович Державин'),
(78687, 'https://ror.org/000pb1q18', 'en', 1, 'https://ror.org/000pb1q18 International Theravada Buddhist Missionary University'),
(78688, 'https://ror.org/03gq8sg42', 'no_lang_code', 1, 'https://ror.org/03gq8sg42 Yahoo (Spain)'),
(78689, 'https://ror.org/02dxgk712', 'en', 1, 'https://ror.org/02dxgk712 Search for Extraterrestrial Intelligence'),
(78690, 'https://ror.org/025e8ht98', 'en', 1, 'https://ror.org/025e8ht98 Portsmouth Public Library'),
(78691, 'https://ror.org/04mtdw349', 'no_lang_code', 1, 'https://ror.org/04mtdw349 Renishaw (Russia)'),
(78692, 'https://ror.org/04mpv5r98', 'en', 1, 'https://ror.org/04mpv5r98 International Long Term Ecological Research Network Internationale Gesellschaft für Ökologische Langzeitforschung'),
(78693, 'https://ror.org/02ms23a70', 'es', 1, 'https://ror.org/02ms23a70 Universidad del Norte'),
(78694, 'https://ror.org/04wt43v05', 'no_lang_code', 1, 'https://ror.org/04wt43v05 Twitter (United States)'),
(78695, 'https://ror.org/05v1qt749', 'en', 1, 'https://ror.org/05v1qt749 Centro Nacional de Metrología National Metrology Center'),
(78696, 'https://ror.org/01hqsy415', 'en', 1, 'https://ror.org/01hqsy415 HIV Legal Network Réseau juridique VIH'),
(78697, 'https://ror.org/059dtxg26', 'no_lang_code', 1, 'https://ror.org/059dtxg26 Simplex Manufacturing (United States)'),
(78698, 'https://ror.org/04fg8vc90', 'no_lang_code', 1, 'https://ror.org/04fg8vc90 The Cooper Companies (United States)'),
(78699, 'https://ror.org/008gfj249', 'en', 1, 'https://ror.org/008gfj249 London Road Community Hospital'),
(78700, 'https://ror.org/01nrpzj54', 'nl', 1, 'https://ror.org/01nrpzj54 Diakonessenhuis hospital'),
(78701, 'https://ror.org/027fer296', 'en', 1, 'https://ror.org/027fer296 Petrozavodsk State Glazunov Conservatory Петрозаводская Государственная Консерватория им. А.К. Глазунова'),
(78702, 'https://ror.org/05jm6kj71', 'en', 1, 'https://ror.org/05jm6kj71 Orient Enstitüsü İstanbul Orient-Institut Istanbul Orient-Institute Istanbul'),
(78703, 'https://ror.org/01k5gt570', 'en', 1, 'https://ror.org/01k5gt570 Rhode Island College'),
(78704, 'https://ror.org/03rjyp183', 'en', 1, 'https://ror.org/03rjyp183 Llyfrgell Genedlaethol Cymru National Library of Wales'),
(78705, 'https://ror.org/01s48e916', 'en', 1, 'https://ror.org/01s48e916 Kamchatka State Technical University Камчатский государственный технический университет'),
(78706, 'https://ror.org/00e0zd560', 'en', 1, 'https://ror.org/00e0zd560 Bulletin canadien d''histoire de la médecine Canadian Bulletin of Medical History'),
(78707, 'https://ror.org/03aevhx31', 'en', 1, 'https://ror.org/03aevhx31 Kamchatka State University named after Vitus Bering Камчатский государственный университет имени Витуса Беринга'),
(78708, 'https://ror.org/03mp2xd28', 'en', 1, 'https://ror.org/03mp2xd28 Ann Arbor District Library'),
(78709, 'https://ror.org/05d7whc82', 'nl', 1, 'https://ror.org/05d7whc82 Spaarne Gasthuis'),
(78710, 'https://ror.org/04wpndn70', 'en', 1, 'https://ror.org/04wpndn70 Polk County High School'),
(78711, 'https://ror.org/009436s82', 'en', 1, 'https://ror.org/009436s82 Monash University Prato Centre Palazzo Vai'),
(78712, 'https://ror.org/01hnv8x68', 'en', 1, 'https://ror.org/01hnv8x68 Leibniz Institute for Educational Media | Georg Eckert Institute Leibniz-Institut für Bildungsmedien | Georg-Eckert-Institut'),
(78713, 'https://ror.org/05mz2vf33', 'de', 1, 'https://ror.org/05mz2vf33 Deutsches Historisches Institut Warschau German Historical Institute Warsaw Niemiecki Instytut Historyczny w Warszawie'),
(78714, 'https://ror.org/05snbjh64', 'en', 1, 'https://ror.org/05snbjh64 Zoological Institute Федеральное государственное бюджетное учреждение науки Зоологический институт Российской академии наук'),
(78715, 'https://ror.org/01qavk531', 'nl', 1, 'https://ror.org/01qavk531 Catharina Hospital Catharina Ziekenhuis'),
(78716, 'https://ror.org/01qx0e979', 'en', 1, 'https://ror.org/01qx0e979 Uniting'),
(78717, 'https://ror.org/01n2k7643', 'no_lang_code', 1, 'https://ror.org/01n2k7643 Etymotic Research (United States)'),
(78718, 'https://ror.org/05mfhxz88', 'es', 1, 'https://ror.org/05mfhxz88 Universidad Latina'),
(78719, 'https://ror.org/01c080z51', 'en', 1, 'https://ror.org/01c080z51 Millennium Science Initiative'),
(78720, 'https://ror.org/05kgbsy64', 'en', 1, 'https://ror.org/05kgbsy64 Spinoza Centre for Neuroimaging'),
(78721, 'https://ror.org/034g04n73', 'en', 1, 'https://ror.org/034g04n73 Institute of Biophysics'),
(78722, 'https://ror.org/03afbx254', 'en', 1, 'https://ror.org/03afbx254 Evangelisches Waldkrankenhaus Spandau Waldkrankenhaus Protestant Hospital'),
(78723, 'https://ror.org/01x2x1522', 'en', 1, 'https://ror.org/01x2x1522 Forskningsinstitutet för Fysik Fysiikan Tutkimuslaitos Helsinki Institute of Physics'),
(78724, 'https://ror.org/023392c84', 'de', 1, 'https://ror.org/023392c84 Musikwissenschaftliches Seminar Detmold/Paderborn'),
(78725, 'https://ror.org/043ft3840', 'en', 1, 'https://ror.org/043ft3840 Centre for Research in Anthropology Centro em Rede de Investigacao em Antropologia'),
(78726, 'https://ror.org/00jhqgj32', 'en', 1, 'https://ror.org/00jhqgj32 Nantucket Cottage Hospital'),
(78727, 'https://ror.org/0086bb350', 'en', 1, 'https://ror.org/0086bb350 Einstein Center Digital Future'),
(78728, 'https://ror.org/0599mab02', 'en', 1, 'https://ror.org/0599mab02 St Catherine''s Health Centre'),
(78729, 'https://ror.org/03xzm3p02', 'en', 1, 'https://ror.org/03xzm3p02 Scientific Foundation SPIROSKI Научна фондација СПИРОСКИ'),
(78730, 'https://ror.org/00wvavs63', 'en', 1, 'https://ror.org/00wvavs63 Association for Science ასოციაცია მეცნიერებისათვის'),
(78731, 'https://ror.org/01ff5td15', 'en', 1, 'https://ror.org/01ff5td15 Donald & Barbara Zucker School of Medicine at Hofstra/Northwell'),
(78732, 'https://ror.org/04wwmh526', 'en', 1, 'https://ror.org/04wwmh526 Fraunhofer Center for Silicon Photovoltaics Fraunhofer-Center für Silizium-Photovoltaik'),
(78733, 'https://ror.org/00ybseg45', 'en', 1, 'https://ror.org/00ybseg45 Zoological Institute, State Academy of Sciences 국가과학원 동물학연구소'),
(78734, 'https://ror.org/01pj5v964', 'en', 1, 'https://ror.org/01pj5v964 Madhav Institute of Technology & Science'),
(78735, 'https://ror.org/0363aed77', 'en', 1, 'https://ror.org/0363aed77 Flone Initiative Trust'),
(78736, 'https://ror.org/016rf4127', 'en', 1, 'https://ror.org/016rf4127 Institute of Applied Mathematical Research of the Karelian Research Centre of the Russian Academy of Sciences Институт прикладных математических исследований Карельского научного центра Российской академии наук'),
(78737, 'https://ror.org/03c6pbw79', 'en', 1, 'https://ror.org/03c6pbw79 Budapest Főváros Kormányhivatala Government Office of the Capital City Budapest'),
(78738, 'https://ror.org/05yfz9t60', 'en', 1, 'https://ror.org/05yfz9t60 International Laboratory for Brain, Music and Sound Research Laboratoire international de recherche sur le Cerveau, la Musique et le Son'),
(78739, 'https://ror.org/0550k1y72', 'en', 1, 'https://ror.org/0550k1y72 Research4Life'),
(78740, 'https://ror.org/022x94962', 'en', 1, 'https://ror.org/022x94962 Global Campus of Human Rights'),
(78741, 'https://ror.org/04123ky43', 'en', 1, 'https://ror.org/04123ky43 Clark University Universidad Clark'),
(78742, 'https://ror.org/053wt0478', 'en', 1, 'https://ror.org/053wt0478 Hôpital de Lachine Lachine Hospital'),
(78743, 'https://ror.org/03r8hgy04', 'en', 1, 'https://ror.org/03r8hgy04 Institute of Marine Research'),
(78744, 'https://ror.org/0003xeg87', 'en', 1, 'https://ror.org/0003xeg87 James Martin Center for Nonproliferation Studies'),
(78745, 'https://ror.org/03e801006', 'fr', 1, 'https://ror.org/03e801006 Equipe Soutenue par la Région et par l''Inserm'),
(78746, 'https://ror.org/03zmjc935', 'en', 1, 'https://ror.org/03zmjc935 US Forest Service'),
(78747, 'https://ror.org/0468gx405', 'fr', 1, 'https://ror.org/0468gx405 Hôtel-Dieu de Montréal'),
(78748, 'https://ror.org/01w7qz648', 'fr', 1, 'https://ror.org/01w7qz648 Hôpital Notre-Dame Notre-Dame Hospital'),
(78749, 'https://ror.org/02the9q75', 'en', 1, 'https://ror.org/02the9q75 Institute for Agricultural and Forest Systems in the Mediterranean Istituto per i Sistemi Agricoli e Forestali del Mediterraneo'),
(78750, 'https://ror.org/04mgkpz96', 'no_lang_code', 1, 'https://ror.org/04mgkpz96 COPESSA'),
(78751, 'https://ror.org/04dqm5e84', 'en', 1, 'https://ror.org/04dqm5e84 Latino Medical Student Association'),
(78752, 'https://ror.org/036mhzk54', 'de', 1, 'https://ror.org/036mhzk54 Österreichische Galerie Belvedere'),
(78753, 'https://ror.org/05d1z6q04', 'en', 1, 'https://ror.org/05d1z6q04 Middlebury Institute of International Studies at Monterey'),
(78754, 'https://ror.org/0410a8y51', 'fr', 1, 'https://ror.org/0410a8y51 Centre Hospitalier de l’Université de Montréal Centre hospitalier de l''université de montréal'),
(78755, 'https://ror.org/00924z688', 'en', 1, 'https://ror.org/00924z688 Institute of Arctic and Alpine Research'),
(78756, 'https://ror.org/05hnkta08', 'en', 1, 'https://ror.org/05hnkta08 Santa Barbara Coastal Long Term Ecological Research'),
(78757, 'https://ror.org/02stw2895', 'es', 1, 'https://ror.org/02stw2895 Benemérita Escuela Normal "Manuel Ávila Camacho"'),
(78758, 'https://ror.org/01qwvz642', 'fr', 1, 'https://ror.org/01qwvz642 Centre d''Étude et de Découverte des Tortues Marines'),
(78759, 'https://ror.org/03nmkqc55', 'en', 1, 'https://ror.org/03nmkqc55 Wisconsin Department of Natural Resources'),
(78760, 'https://ror.org/04tjvaj88', 'es', 1, 'https://ror.org/04tjvaj88 Instituto Universitario de Innovación Ciencia y Tecnología Inudi Perú'),
(78761, 'https://ror.org/01w88hp45', 'en', 1, 'https://ror.org/01w88hp45 Department for Levelling Up, Housing & Communities'),
(78762, 'https://ror.org/01yhp8t49', 'es', 1, 'https://ror.org/01yhp8t49 Fundación Renacer'),
(78763, 'https://ror.org/03scjwb12', 'nl', 1, 'https://ror.org/03scjwb12 Museon-Omniversum'),
(78764, 'https://ror.org/04aagyf09', 'no_lang_code', 1, 'https://ror.org/04aagyf09 ECOTAS Group Indonesia'),
(78765, 'https://ror.org/00r1f0w19', 'pt', 1, 'https://ror.org/00r1f0w19 Centro Universitário SATC'),
(78766, 'https://ror.org/00vn06n10', 'en', 1, 'https://ror.org/00vn06n10 Simula Research Laboratory'),
(78767, 'https://ror.org/04rp40h82', 'en', 1, 'https://ror.org/04rp40h82 World Association of Theoretical and Computational Chemists'),
(78768, 'https://ror.org/051j5db58', 'es', 1, 'https://ror.org/051j5db58 IMEK Centro de Investigación en Mercadeo & Desarrollo IMEK Research Center in Marketing & Development'),
(78769, 'https://ror.org/0282y0p95', 'en', 1, 'https://ror.org/0282y0p95 Science for All'),
(78770, 'https://ror.org/019pkg396', 'en', 1, 'https://ror.org/019pkg396 Mercy College of Ohio'),
(78771, 'https://ror.org/01357ty92', 'en', 1, 'https://ror.org/01357ty92 National Institute of Metrology (Thailand) สถาบันมาตรวิทยาแห่งชาติ'),
(78772, 'https://ror.org/00x143s74', 'en', 1, 'https://ror.org/00x143s74 Homes England'),
(78773, 'https://ror.org/03hahj039', 'fr', 1, 'https://ror.org/03hahj039 Institut de Readaptation Gingras Lindsay de Montreal'),
(78774, 'https://ror.org/05kmggt55', 'en', 1, 'https://ror.org/05kmggt55 Simula UiB'),
(78775, 'https://ror.org/04sj20m66', 'en', 1, 'https://ror.org/04sj20m66 Northeast U.S. Shelf Long Term Ecological Research'),
(78776, 'https://ror.org/03ysf5247', 'es', 1, 'https://ror.org/03ysf5247 Fundación Gustavo Bueno Gustavo Bueno Foundation'),
(78777, 'https://ror.org/05yekbx03', 'en', 1, 'https://ror.org/05yekbx03 Badan Standardisasi Nasional National Standardization Agency of Indonesia'),
(78778, 'https://ror.org/04g5g3b04', 'en', 1, 'https://ror.org/04g5g3b04 Papal Seminary'),
(78779, 'https://ror.org/045tmdc16', 'en', 1, 'https://ror.org/045tmdc16 CODE University of Applied Sciences'),
(78780, 'https://ror.org/04xk8j027', 'fr', 1, 'https://ror.org/04xk8j027 Hôpital Saint-Luc'),
(78781, 'https://ror.org/04sm11c70', 'es', 1, 'https://ror.org/04sm11c70 Instituto de Educación Superior Tecnológico Público "Eleazar Guzmán Barrón"'),
(78782, 'https://ror.org/00mht5s60', 'no_lang_code', 1, 'https://ror.org/00mht5s60 Joyson Safety Systems (Japan) ジョイソン セイフティ システムズ ジャパン株式会社'),
(78783, 'https://ror.org/04gq8q482', 'en', 1, 'https://ror.org/04gq8q482 North Temperate Lakes Long Term Ecological Research'),
(78784, 'https://ror.org/00pb0ac76', 'en', 1, 'https://ror.org/00pb0ac76 Institute for Marine Biological Resources and Biotechnology Istituto per le Risorse Biologiche e le Biotecnologie Marine'),
(78785, 'https://ror.org/04f2f0537', 'en', 1, 'https://ror.org/04f2f0537 Pawsey Supercomputing Research Centre'),
(78786, 'https://ror.org/02g5psh91', 'en', 1, 'https://ror.org/02g5psh91 Suzhou Institute of North China Electric Power University 华北电力大学苏州研究院'),
(78787, 'https://ror.org/05twjp994', 'en', 1, 'https://ror.org/05twjp994 Gregor Mendel Institute of Molecular Plant Biology'),
(78788, 'https://ror.org/03dz0k314', 'en', 1, 'https://ror.org/03dz0k314 Wyss Academy for Nature'),
(78789, 'https://ror.org/01rmh6e96', 'en', 1, 'https://ror.org/01rmh6e96 Calvary Riverina Hospital'),
(78790, 'https://ror.org/02stey378', 'en', 1, 'https://ror.org/02stey378 The University of Notre Dame Australia'),
(78791, 'https://ror.org/045z90539', 'en', 1, 'https://ror.org/045z90539 Jnana Deepa, Institute of Philosophy and Theology'),
(78792, 'https://ror.org/02eb9xn27', 'no_lang_code', 1, 'https://ror.org/02eb9xn27 Pandawa Institute'),
(78793, 'https://ror.org/00wj6x496', 'en', 1, 'https://ror.org/00wj6x496 Institut de Recherche en Immunologie et Cancérologie Institute for Research in Immunology and Cancer'),
(78794, 'https://ror.org/02weea238', 'en', 1, 'https://ror.org/02weea238 Then Try This'),
(78795, 'https://ror.org/01wxh6v83', 'en', 1, 'https://ror.org/01wxh6v83 Singapore Institute of Management 新加坡管理学院'),
(78796, 'https://ror.org/048bdy921', 'en', 1, 'https://ror.org/048bdy921 Wyss Foundation'),
(78797, 'https://ror.org/056j50v04', 'en', 1, 'https://ror.org/056j50v04 GO FAIR Foundation Stichting GO FAIR'),
(78798, 'https://ror.org/00dtsha18', 'no_lang_code', 1, 'https://ror.org/00dtsha18 Neomorph'),
(78799, 'https://ror.org/03ww91346', 'en', 1, 'https://ror.org/03ww91346 Institute of Water Problems of the North Karelian Research Centre КарНЦ РАН в рамках работы Отделения РГО в Республике Карелия'),
(78800, 'https://ror.org/03ey0g045', 'fr', 1, 'https://ror.org/03ey0g045 Hôpital du Sacré-Cœur de Montréal Sacred Heart Hospital of Montreal');
INSERT INTO `rors` VALUES
(78801, 'https://ror.org/01qcacz92', 'en', 1, 'https://ror.org/01qcacz92 Sevilleta Long Term Ecological Research'),
(78802, 'https://ror.org/05wgt8358', 'en', 1, 'https://ror.org/05wgt8358 Karelian Research Centre Карельский научный центр'),
(78803, 'https://ror.org/01ae3s995', 'es', 1, 'https://ror.org/01ae3s995 Observatorio Naval Buenos Aires'),
(78804, 'https://ror.org/01z472y92', 'es', 1, 'https://ror.org/01z472y92 Laboratorio Costarricense de Metrología'),
(78805, 'https://ror.org/00jpzvz45', 'en', 1, 'https://ror.org/00jpzvz45 Max Planck Institute for Legal History and Legal Theory Max-Planck-Institut für Rechtsgeschichte und Rechtstheorie'),
(78806, 'https://ror.org/01csn4944', 'en', 1, 'https://ror.org/01csn4944 Northern Gulf of Alaska Long Term Ecological Research'),
(78807, 'https://ror.org/003sgap07', 'en', 1, 'https://ror.org/003sgap07 Canadian Institute for International Peace and Security Centre d''études sur la paix et la sécurité internationale'),
(78808, 'https://ror.org/05xz2nh53', 'no_lang_code', 1, 'https://ror.org/05xz2nh53 Life Nepal जिवन नेपाल'),
(78809, 'https://ror.org/015c54q78', 'pt', 1, 'https://ror.org/015c54q78 Centro Universitário Unigran Capital'),
(78810, 'https://ror.org/00w3m6887', 'en', 1, 'https://ror.org/00w3m6887 Luqman Unani Medical College Hospital and Research Center'),
(78811, 'https://ror.org/00m5fe987', 'en', 1, 'https://ror.org/00m5fe987 FoAM'),
(78812, 'https://ror.org/04xtarr15', 'en', 1, 'https://ror.org/04xtarr15 Simula Metropolitan Center for Digital Engineering'),
(78813, 'https://ror.org/01x8rc503', 'en', 1, 'https://ror.org/01x8rc503 University of Louisiana at Lafayette Université de louisiane à lafayette'),
(78814, 'https://ror.org/00q7wcf52', 'en', 1, 'https://ror.org/00q7wcf52 National Measurement Standards Unit Standar Nasional Satuan Ukuran'),
(78815, 'https://ror.org/041tjsq03', 'en', 1, 'https://ror.org/041tjsq03 Agence mongole de normalisation et de métrologie Mongolian Agency for Standardization and Metrology Стандартчилал, хэмжил зүйн газар'),
(78816, 'https://ror.org/03rdc4968', 'fr', 1, 'https://ror.org/03rdc4968 Hôpital Maisonneuve-Rosemont'),
(78817, 'https://ror.org/02yjwvr35', 'es', 1, 'https://ror.org/02yjwvr35 Centro de Documentación de las Artes Escénicas y de la Música'),
(78818, 'https://ror.org/013zder45', 'en', 1, 'https://ror.org/013zder45 Virginia Coast Reserve Long Term Ecological Research'),
(78819, 'https://ror.org/05vfxvp80', 'en', 1, 'https://ror.org/05vfxvp80 University of St. Thomas - Minnesota'),
(78820, 'https://ror.org/0524asq02', 'fr', 1, 'https://ror.org/0524asq02 Hôpital Rivière-des-Prairies'),
(78821, 'https://ror.org/00pvs0d78', 'en', 1, 'https://ror.org/00pvs0d78 Interuniversity Institute for Marine Sciences in Eilat המכון הבינאוניברסיטאי למדעי הים באילת'),
(78822, 'https://ror.org/02s3xv195', 'en', 1, 'https://ror.org/02s3xv195 Amundsen Science'),
(78823, 'https://ror.org/01zqrxf85', 'en', 1, 'https://ror.org/01zqrxf85 Institut für Molekulare Biotechnologie Institute of Molecular Biotechnology'),
(78824, 'https://ror.org/023kmfd49', 'en', 1, 'https://ror.org/023kmfd49 Massachusetts Audubon Society'),
(78825, 'https://ror.org/03hsf0573', 'en', 1, 'https://ror.org/03hsf0573 William & Mary'),
(78826, 'https://ror.org/02ep77d74', 'en', 1, 'https://ror.org/02ep77d74 Niwot Ridge Long Term Ecological Research'),
(78827, 'https://ror.org/032ct1x19', 'no_lang_code', 1, 'https://ror.org/032ct1x19 International Scientific Network'),
(78828, 'https://ror.org/031wtp233', 'fr', 1, 'https://ror.org/031wtp233 Centre de Santé et de Services Sociaux de Chicoutimi'),
(78829, 'https://ror.org/010s54n03', 'de', 1, 'https://ror.org/010s54n03 Leibniz-Forschungsinstitut für Molekulare Pharmakologie'),
(78830, 'https://ror.org/0139hn422', 'en', 1, 'https://ror.org/0139hn422 Palmer Long Term Ecological Research'),
(78831, 'https://ror.org/04j21nf11', 'de', 1, 'https://ror.org/04j21nf11 Universitäres Zentrum für Zahnmedizin Basel'),
(78832, 'https://ror.org/04sk0et52', 'en', 1, 'https://ror.org/04sk0et52 Gump South Pacific Research Station'),
(78833, 'https://ror.org/02m9tqe79', 'en', 1, 'https://ror.org/02m9tqe79 Tianjin Fourth Central Hospital 天津市第四中心医院'),
(78834, 'https://ror.org/01qb1r340', 'en', 1, 'https://ror.org/01qb1r340 Duke Raleigh Hospital'),
(78835, 'https://ror.org/01dkacw77', 'it', 1, 'https://ror.org/01dkacw77 Accademia Italiana Medicina Osteopatica'),
(78836, 'https://ror.org/01eag6b04', 'no_lang_code', 1, 'https://ror.org/01eag6b04 Oxagen (United Kingdom)'),
(78837, 'https://ror.org/05smbmp94', 'en', 1, 'https://ror.org/05smbmp94 Ministry of Health'),
(78838, 'https://ror.org/037zkt843', 'en', 1, 'https://ror.org/037zkt843 Flaget Memorial Hospital'),
(78839, 'https://ror.org/052afx753', 'en', 1, 'https://ror.org/052afx753 Benazir Bhutto Hospital بے نظیر بھٹو ہسپتال'),
(78840, 'https://ror.org/00wcwkf45', 'en', 1, 'https://ror.org/00wcwkf45 Korean Association for the Study of Intestinal Diseases 대한장연구학회'),
(78841, 'https://ror.org/04ngysf93', 'en', 1, 'https://ror.org/04ngysf93 Hallym University Sacred Heart Hospital 한림대학교성심병원'),
(78842, 'https://ror.org/0003en535', 'no_lang_code', 1, 'https://ror.org/0003en535 Quark Pharmaceuticals (United States)'),
(78843, 'https://ror.org/055qjgz33', 'en', 1, 'https://ror.org/055qjgz33 Statistics New Zealand Tatauranga Aotearoa'),
(78844, 'https://ror.org/03vxtfp37', 'no_lang_code', 1, 'https://ror.org/03vxtfp37 OmniVision (Germany)'),
(78845, 'https://ror.org/01bdqmr31', 'en', 1, 'https://ror.org/01bdqmr31 Sutter Solano Medical Center'),
(78846, 'https://ror.org/049jkjr31', 'es', 1, 'https://ror.org/049jkjr31 Complejo Asistencial Sótero del Río'),
(78847, 'https://ror.org/054bx8w47', 'en', 1, 'https://ror.org/054bx8w47 Baylor Jack and Jane Hamilton Heart and Vascular Hospital'),
(78848, 'https://ror.org/04gqbd180', 'en', 1, 'https://ror.org/04gqbd180 Campus Bio Medico University Hospital Policlinico Universitario Campus Bio Medico'),
(78849, 'https://ror.org/05vxxvp60', 'no_lang_code', 1, 'https://ror.org/05vxxvp60 Deutsche Flugsicherung (Germany)'),
(78850, 'https://ror.org/00zvx1763', 'en', 1, 'https://ror.org/00zvx1763 Proton Therapy Centre'),
(78851, 'https://ror.org/039425239', 'no_lang_code', 1, 'https://ror.org/039425239 Blacktrace (United Kingdom)'),
(78852, 'https://ror.org/01m39hd75', 'it', 1, 'https://ror.org/01m39hd75 Azienda Ospedaliero Universitaria di Sassari'),
(78853, 'https://ror.org/049a9tc02', 'no_lang_code', 1, 'https://ror.org/049a9tc02 Inimex Pharmaceuticals (Canada)'),
(78854, 'https://ror.org/006p1hv79', 'en', 1, 'https://ror.org/006p1hv79 Bay Area Medical Center'),
(78855, 'https://ror.org/02eqvk528', 'no_lang_code', 1, 'https://ror.org/02eqvk528 Sawyer Technical Materials (United States)'),
(78856, 'https://ror.org/02wrf7q59', 'en', 1, 'https://ror.org/02wrf7q59 Palace Museum 故宫博物馆'),
(78857, 'https://ror.org/03a0avf44', 'en', 1, 'https://ror.org/03a0avf44 Canberra Aesthetic Plastic Surgery Clinic'),
(78858, 'https://ror.org/03xxxrq06', 'en', 1, 'https://ror.org/03xxxrq06 Manchester School of Architecture'),
(78859, 'https://ror.org/00cqhgk75', 'en', 1, 'https://ror.org/00cqhgk75 Surgical Infection Society of Europe'),
(78860, 'https://ror.org/00jfmd461', 'fr', 1, 'https://ror.org/00jfmd461 L’Institut du Cancer Courlancy Reims'),
(78861, 'https://ror.org/022vba633', 'pt', 1, 'https://ror.org/022vba633 Associação de Assistência à Criança Deficiente'),
(78862, 'https://ror.org/02znttc53', 'en', 1, 'https://ror.org/02znttc53 International City/County Management Association'),
(78863, 'https://ror.org/01vzcsc16', 'en', 1, 'https://ror.org/01vzcsc16 Sutter Auburn Faith Hospital'),
(78864, 'https://ror.org/03f69w292', 'no_lang_code', 1, 'https://ror.org/03f69w292 First American (United States)'),
(78865, 'https://ror.org/03mpkb302', 'en', 1, 'https://ror.org/03mpkb302 Pharmaceuticals and Medical Devices Agency 独立行政法人 医薬品医療機器総合機構'),
(78866, 'https://ror.org/00dewa944', 'en', 1, 'https://ror.org/00dewa944 Stone Soup Group'),
(78867, 'https://ror.org/00rh36007', 'en', 1, 'https://ror.org/00rh36007 North District Hospital 北區醫院'),
(78868, 'https://ror.org/03egbv816', 'en', 1, 'https://ror.org/03egbv816 Cox Medical Center South'),
(78869, 'https://ror.org/01rkqb281', 'en', 1, 'https://ror.org/01rkqb281 Leibniz Institute for Research on Society and Space Leibniz-Institut für Raumbezogene Sozialforschung'),
(78870, 'https://ror.org/001xkv632', 'en', 1, 'https://ror.org/001xkv632 Southern Cross University'),
(78871, 'https://ror.org/0365jtw20', 'en', 1, 'https://ror.org/0365jtw20 West Coast Fertility Centers'),
(78872, 'https://ror.org/02wvcn790', 'no_lang_code', 1, 'https://ror.org/02wvcn790 Carmel (Israel) כרמל בע"מ'),
(78873, 'https://ror.org/00pz6pe93', 'de', 1, 'https://ror.org/00pz6pe93 SRH Klinikum Karlsbad-Langensteinbach'),
(78874, 'https://ror.org/02y8nb297', 'en', 1, 'https://ror.org/02y8nb297 University of Alaska Southeast Université de l''alaska du sud-est'),
(78875, 'https://ror.org/02618t920', 'en', 1, 'https://ror.org/02618t920 Aids-Hilfe Schweiz Swiss AIDS Federation'),
(78876, 'https://ror.org/0336mm561', 'no_lang_code', 1, 'https://ror.org/0336mm561 Oxford University Press (United Kingdom)'),
(78877, 'https://ror.org/02t194v04', 'en', 1, 'https://ror.org/02t194v04 Sri Sathya Sai Institute of Higher Medical Sciences'),
(78878, 'https://ror.org/032cf8m89', 'no_lang_code', 1, 'https://ror.org/032cf8m89 Centre de Recherche Industrielle du Québec'),
(78879, 'https://ror.org/04dqkr113', 'en', 1, 'https://ror.org/04dqkr113 Nottingham University Samworth Academy'),
(78880, 'https://ror.org/005re7g62', 'sv', 1, 'https://ror.org/005re7g62 Jubileumskliniken Cancerfond'),
(78881, 'https://ror.org/05yk2ee68', 'en', 1, 'https://ror.org/05yk2ee68 Olympic Medical Center'),
(78882, 'https://ror.org/00km9fk15', 'en', 1, 'https://ror.org/00km9fk15 Medical Defence Union'),
(78883, 'https://ror.org/04gqawm06', 'en', 1, 'https://ror.org/04gqawm06 Institute of the Americas'),
(78884, 'https://ror.org/001qxy049', 'no_lang_code', 1, 'https://ror.org/001qxy049 Haaretz Group (Israel)'),
(78885, 'https://ror.org/01nvzf736', 'iu', 1, 'https://ror.org/01nvzf736 Pauktuutit'),
(78886, 'https://ror.org/04q47hj14', 'en', 1, 'https://ror.org/04q47hj14 Association of Environmental Engineering and Science Professors'),
(78887, 'https://ror.org/05rajhp84', 'no_lang_code', 1, 'https://ror.org/05rajhp84 Vifor Pharma (United States)'),
(78888, 'https://ror.org/052bscq71', 'en', 1, 'https://ror.org/052bscq71 American Association of Colleges for Teacher Education'),
(78889, 'https://ror.org/00g3ck957', 'en', 1, 'https://ror.org/00g3ck957 American Productivity and Quality Center'),
(78890, 'https://ror.org/04g2rbh88', 'en', 1, 'https://ror.org/04g2rbh88 Analytical Services'),
(78891, 'https://ror.org/01gaj0s81', 'en', 1, 'https://ror.org/01gaj0s81 The First People''s Hospital of Changzhou 常州市第一人民医院'),
(78892, 'https://ror.org/04dx90b60', 'en', 1, 'https://ror.org/04dx90b60 London Chamber of Commerce and Industry'),
(78893, 'https://ror.org/04mercy44', 'en', 1, 'https://ror.org/04mercy44 Society For Range Management'),
(78894, 'https://ror.org/04b12x653', 'no_lang_code', 1, 'https://ror.org/04b12x653 Berlitz (United States)'),
(78895, 'https://ror.org/0037zb552', 'en', 1, 'https://ror.org/0037zb552 Madras Institute of Orthopaedics and Traumatology'),
(78896, 'https://ror.org/039zxt351', 'it', 1, 'https://ror.org/039zxt351 IRCCS Ospedale San Raffaele'),
(78897, 'https://ror.org/02c74qd93', 'en', 1, 'https://ror.org/02c74qd93 Museo Nazionale delle Arti del XXI Secolo National Museum of 21st Century Arts'),
(78898, 'https://ror.org/03xyjdy64', 'en', 1, 'https://ror.org/03xyjdy64 Departamento de Servicios de Salud del Condado de Los Ángeles Los Angeles County Department of Health Services'),
(78899, 'https://ror.org/00m5m4846', 'en', 1, 'https://ror.org/00m5m4846 The Swedish Association of Health Professionals Vårdförbundet'),
(78900, 'https://ror.org/02xwzkh23', 'en', 1, 'https://ror.org/02xwzkh23 American Society of Association Executives'),
(78901, 'https://ror.org/02gv4h649', 'en', 1, 'https://ror.org/02gv4h649 Atomic Weapons Establishment'),
(78902, 'https://ror.org/03zcbna64', 'en', 1, 'https://ror.org/03zcbna64 The Korean Society of Hematology 대한혈액학회'),
(78903, 'https://ror.org/03sj5de90', 'en', 1, 'https://ror.org/03sj5de90 Research Design and Technological Institute of Concrete and Reinforced Concrete Научно-исследовательский, проектно-конструкторский и технологический институт бетона и железобетона'),
(78904, 'https://ror.org/01bq12b82', 'en', 1, 'https://ror.org/01bq12b82 Riverside Community Hospital'),
(78905, 'https://ror.org/00aqw3z26', 'fr', 1, 'https://ror.org/00aqw3z26 Collège St-Michel Kollegium St. Michael'),
(78906, 'https://ror.org/05tk3rm67', 'en', 1, 'https://ror.org/05tk3rm67 Regional Obstetrical Consultants'),
(78907, 'https://ror.org/05cmp5q80', 'fr', 1, 'https://ror.org/05cmp5q80 Centre Hospitalier Universitaire de Saint-Pierre'),
(78908, 'https://ror.org/051qy7v07', 'en', 1, 'https://ror.org/051qy7v07 Newcastle Hospitals - Campus for Ageing and Vitality'),
(78909, 'https://ror.org/018n70f12', 'en', 1, 'https://ror.org/018n70f12 Association New Music'),
(78910, 'https://ror.org/0303d1x26', 'pt', 1, 'https://ror.org/0303d1x26 Hospital Universitário Polydoro Ernani de São Thiago Polydoro Ernani de São Thiago University Hospital'),
(78911, 'https://ror.org/010hz0g26', 'en', 1, 'https://ror.org/010hz0g26 Jichi Medical University 自治医科大学'),
(78912, 'https://ror.org/02qr8sv28', 'en', 1, 'https://ror.org/02qr8sv28 Sutter Davis Hospital'),
(78913, 'https://ror.org/0538axx89', 'en', 1, 'https://ror.org/0538axx89 London Film School'),
(78914, 'https://ror.org/03wabx048', 'de', 1, 'https://ror.org/03wabx048 Europäische Melanchthon Akademie Bretten'),
(78915, 'https://ror.org/028ze1052', 'de', 1, 'https://ror.org/028ze1052 Tirol Kliniken'),
(78916, 'https://ror.org/03y9sqg61', 'en', 1, 'https://ror.org/03y9sqg61 Eesti Evangeelne Luterlik Kirik Estonian Evangelical Lutheran Church'),
(78917, 'https://ror.org/04j24jq80', 'en', 1, 'https://ror.org/04j24jq80 Magistrates Association'),
(78918, 'https://ror.org/02swnjw32', 'en', 1, 'https://ror.org/02swnjw32 Society of Women Engineers'),
(78919, 'https://ror.org/03xxy5a58', 'en', 1, 'https://ror.org/03xxy5a58 Fairview Ridges Hospital'),
(78920, 'https://ror.org/04qvvhf62', 'en', 1, 'https://ror.org/04qvvhf62 Wenner-Gren Foundation'),
(78921, 'https://ror.org/04dhxj782', 'de', 1, 'https://ror.org/04dhxj782 Erziehungsdepartement Basel Stadt'),
(78922, 'https://ror.org/00yhmjd28', 'en', 1, 'https://ror.org/00yhmjd28 Institut de Recherche pour la Chromatographie Research Institute for Chromatography'),
(78923, 'https://ror.org/017ehfh78', 'en', 1, 'https://ror.org/017ehfh78 Ministerium für Wirtschaft, Wissenschaft und Digitalisierung des Landes Sachsen-Anhalt Ministry of Economy, Science and Digitalisation'),
(78924, 'https://ror.org/02dby4d37', 'en', 1, 'https://ror.org/02dby4d37 Latin American and Caribbean Society of Medical Oncology Sociedad Latinoamericana y del Caribe de Oncología Médica'),
(78925, 'https://ror.org/02csqjc22', 'en', 1, 'https://ror.org/02csqjc22 Riddle Hospital'),
(78926, 'https://ror.org/0292wpz08', 'no_lang_code', 1, 'https://ror.org/0292wpz08 Castings Technology International'),
(78927, 'https://ror.org/01e1j7z08', 'en', 1, 'https://ror.org/01e1j7z08 Southwestern Educational Society'),
(78928, 'https://ror.org/018g5g612', 'en', 1, 'https://ror.org/018g5g612 American Society for Dermatologic Surgery'),
(78929, 'https://ror.org/05j1wxv23', 'no_lang_code', 1, 'https://ror.org/05j1wxv23 Bermuda Institute of Ocean Sciences'),
(78930, 'https://ror.org/0344vgv89', 'en', 1, 'https://ror.org/0344vgv89 Prison Advice and Care Trust'),
(78931, 'https://ror.org/02vqxhy72', 'no_lang_code', 1, 'https://ror.org/02vqxhy72 Renovo Research (United States)'),
(78932, 'https://ror.org/045s9b323', 'no_lang_code', 1, 'https://ror.org/045s9b323 Engineering (Italy)'),
(78933, 'https://ror.org/011qexd20', 'en', 1, 'https://ror.org/011qexd20 North Jersey Brain and Spine Center'),
(78934, 'https://ror.org/02g4b4t25', 'en', 1, 'https://ror.org/02g4b4t25 New Ulm Medical Center'),
(78935, 'https://ror.org/050yb6166', 'en', 1, 'https://ror.org/050yb6166 Choctaw County School District'),
(78936, 'https://ror.org/037zvxe90', 'en', 1, 'https://ror.org/037zvxe90 Baptist Memorial Hospital for Women'),
(78937, 'https://ror.org/00datzr31', 'en', 1, 'https://ror.org/00datzr31 CW+'),
(78938, 'https://ror.org/00pr51480', 'en', 1, 'https://ror.org/00pr51480 Lute Society'),
(78939, 'https://ror.org/04g5je597', 'de', 1, 'https://ror.org/04g5je597 Institut für Gießereitechnik'),
(78940, 'https://ror.org/04xsf1c37', 'no_lang_code', 1, 'https://ror.org/04xsf1c37 Estonian Biocentre'),
(78941, 'https://ror.org/00htg6162', 'en', 1, 'https://ror.org/00htg6162 Florida Institute of Oceanography'),
(78942, 'https://ror.org/03am4ny08', 'en', 1, 'https://ror.org/03am4ny08 Maine Community College System'),
(78943, 'https://ror.org/04mghma93', 'en', 1, 'https://ror.org/04mghma93 Heriot-Watt University'),
(78944, 'https://ror.org/058fgzk19', 'no_lang_code', 1, 'https://ror.org/058fgzk19 Centrica (United Kingdom)'),
(78945, 'https://ror.org/00wrafe19', 'de', 1, 'https://ror.org/00wrafe19 Hirslanden Klinik Aarau'),
(78946, 'https://ror.org/02v09qm69', 'en', 1, 'https://ror.org/02v09qm69 Jackson State Community College'),
(78947, 'https://ror.org/023695f46', 'en', 1, 'https://ror.org/023695f46 Broadlawns Medical Center'),
(78948, 'https://ror.org/03307tq49', 'no_lang_code', 1, 'https://ror.org/03307tq49 Chemstations (United States)'),
(78949, 'https://ror.org/024f7an49', 'en', 1, 'https://ror.org/024f7an49 The Korean Urological Association 대한비뇨기과학회'),
(78950, 'https://ror.org/03ey7ve44', 'no_lang_code', 1, 'https://ror.org/03ey7ve44 Regulus Therapeutics (United States)'),
(78951, 'https://ror.org/04k5sn095', 'fr', 1, 'https://ror.org/04k5sn095 Cegep de Thetford Collège d''Enseignement Général et Professionnel'),
(78952, 'https://ror.org/03nbbc502', 'no_lang_code', 1, 'https://ror.org/03nbbc502 Ricardo AEA (United Kingdom)'),
(78953, 'https://ror.org/00mhkcm52', 'no_lang_code', 1, 'https://ror.org/00mhkcm52 Olin Corporation (United States)'),
(78954, 'https://ror.org/04tdxpm82', 'fr', 1, 'https://ror.org/04tdxpm82 L’Institut Franco-Européen de Chiropraxie'),
(78955, 'https://ror.org/005cjg181', 'en', 1, 'https://ror.org/005cjg181 Global Forum for Health Research'),
(78956, 'https://ror.org/02m51qp09', 'en', 1, 'https://ror.org/02m51qp09 Southwest Healthcare System'),
(78957, 'https://ror.org/01hx00y13', 'no_lang_code', 1, 'https://ror.org/01hx00y13 Qatar Airways (Qatar) القطرية'),
(78958, 'https://ror.org/01nkhmn89', 'en', 1, 'https://ror.org/01nkhmn89 Biruni University Biruni Üniversitesi'),
(78959, 'https://ror.org/050d10n23', 'en', 1, 'https://ror.org/050d10n23 Labour Relations Agency'),
(78960, 'https://ror.org/05hjk6729', 'no_lang_code', 1, 'https://ror.org/05hjk6729 Ferring Arzneimittel Ferring Pharmaceuticals (Germany)'),
(78961, 'https://ror.org/0498w0n61', 'no_lang_code', 1, 'https://ror.org/0498w0n61 Nestlé (Brazil)'),
(78962, 'https://ror.org/002tgme16', 'en', 1, 'https://ror.org/002tgme16 Canadians Living with HIV Conseil Canadien de Surveillance et d''Accès aux Traitements'),
(78963, 'https://ror.org/04xtdyr20', 'no', 1, 'https://ror.org/04xtdyr20 Bærum Kommune'),
(78964, 'https://ror.org/04vdctb36', 'de', 1, 'https://ror.org/04vdctb36 Niederer Kraft and Frey'),
(78965, 'https://ror.org/00r2p7t19', 'en', 1, 'https://ror.org/00r2p7t19 Northern Ireland Assembly'),
(78966, 'https://ror.org/02zp2df93', 'en', 1, 'https://ror.org/02zp2df93 Institut für Empirische Gesundheitsökonomie Institute of Empirical Health Economics'),
(78967, 'https://ror.org/00rx3f567', 'en', 1, 'https://ror.org/00rx3f567 Prison Reform Trust'),
(78968, 'https://ror.org/04chzd762', 'en', 1, 'https://ror.org/04chzd762 National University of Tucumán Universidad Nacional de Tucumán Université nationale de tucumán'),
(78969, 'https://ror.org/029xz3860', 'en', 1, 'https://ror.org/029xz3860 Jeanes Hospital'),
(78970, 'https://ror.org/035trbs97', 'en', 1, 'https://ror.org/035trbs97 Eden Medical Center'),
(78971, 'https://ror.org/04szvwj50', 'en', 1, 'https://ror.org/04szvwj50 Military Medical Academy الأكاديمية الطبية العسكرية'),
(78972, 'https://ror.org/05fe96908', 'en', 1, 'https://ror.org/05fe96908 Coalition of Northeastern Governors'),
(78973, 'https://ror.org/03rz4pm90', 'no_lang_code', 1, 'https://ror.org/03rz4pm90 Nortel (Canada)'),
(78974, 'https://ror.org/009ev1878', 'en', 1, 'https://ror.org/009ev1878 KuDos'),
(78975, 'https://ror.org/03jz3bd79', 'en', 1, 'https://ror.org/03jz3bd79 Center for Marine and Oceanographic Research Centre de Recherches Océanologiques'),
(78976, 'https://ror.org/01k9xac83', 'en', 1, 'https://ror.org/01k9xac83 Rush University'),
(78977, 'https://ror.org/028pheb30', 'en', 1, 'https://ror.org/028pheb30 Mahavir Cancer Institute and Research Centre'),
(78978, 'https://ror.org/00qjxh243', 'en', 1, 'https://ror.org/00qjxh243 Brazilian Micro and Small Enterprises Support Service Serviço Brasileiro de Apoio às Micro e Pequenas Empresas'),
(78979, 'https://ror.org/05g7qp006', 'it', 1, 'https://ror.org/05g7qp006 Azienda Sanitaria Universitaria Integrata di Trieste'),
(78980, 'https://ror.org/028a36g75', 'it', 1, 'https://ror.org/028a36g75 Institute of International Affairs Istituto Affari Internazionali'),
(78981, 'https://ror.org/04m60en37', 'en', 1, 'https://ror.org/04m60en37 Bernice P. Bishop Museum'),
(78982, 'https://ror.org/008qvpg94', 'en', 1, 'https://ror.org/008qvpg94 Ural State Academy of Architecture and Arts Уральская государственная архитектурно-художественная академия'),
(78983, 'https://ror.org/03x6hbh34', 'en', 1, 'https://ror.org/03x6hbh34 Second Affiliated Hospital of Jilin University'),
(78984, 'https://ror.org/03jgp2295', 'en', 1, 'https://ror.org/03jgp2295 Texas Fertility Center'),
(78985, 'https://ror.org/01ggea168', 'en', 1, 'https://ror.org/01ggea168 Institute for Local Self-Reliance'),
(78986, 'https://ror.org/0189t1115', 'en', 1, 'https://ror.org/0189t1115 American Contact Dermatitis Society'),
(78987, 'https://ror.org/05eqcca29', 'en', 1, 'https://ror.org/05eqcca29 ProHealth Oconomowoc Memorial Hospital'),
(78988, 'https://ror.org/04x8acr98', 'en', 1, 'https://ror.org/04x8acr98 Baptist Health Madisonville'),
(78989, 'https://ror.org/02qmnbs26', 'en', 1, 'https://ror.org/02qmnbs26 Nopparat Rajathanee Hospital โรงพยาบาลนพรัตนราชธานี'),
(78990, 'https://ror.org/02cda5v64', 'it', 1, 'https://ror.org/02cda5v64 La Fondazione Ettore Sansavini per la Ricerca Scientifica'),
(78991, 'https://ror.org/057fah276', 'en', 1, 'https://ror.org/057fah276 National Eye Centre'),
(78992, 'https://ror.org/01htp5456', 'en', 1, 'https://ror.org/01htp5456 Visitor Studies Association'),
(78993, 'https://ror.org/01hkztv15', 'en', 1, 'https://ror.org/01hkztv15 Aventura Hospital and Medical Center'),
(78994, 'https://ror.org/04cqx3k82', 'en', 1, 'https://ror.org/04cqx3k82 Austin Regional Clinic'),
(78995, 'https://ror.org/03rh3e906', 'en', 1, 'https://ror.org/03rh3e906 TERI University'),
(78996, 'https://ror.org/035xa5s96', 'no_lang_code', 1, 'https://ror.org/035xa5s96 HistoGeneX (Belgium)'),
(78997, 'https://ror.org/047enxx08', 'en', 1, 'https://ror.org/047enxx08 Ethnological Museum Ethnologisches Museum Berlin'),
(78998, 'https://ror.org/00ehy3272', 'en', 1, 'https://ror.org/00ehy3272 New Hope Fertility Center'),
(78999, 'https://ror.org/00ggm6d20', 'en', 1, 'https://ror.org/00ggm6d20 Faith Regional Health Services'),
(79000, 'https://ror.org/034r0b090', 'no_lang_code', 1, 'https://ror.org/034r0b090 Domtar (Canada)'),
(79001, 'https://ror.org/058eg8775', 'no_lang_code', 1, 'https://ror.org/058eg8775 Statistical Research (United States)'),
(79002, 'https://ror.org/0031f9587', 'en', 1, 'https://ror.org/0031f9587 European Society of Biomechanics'),
(79003, 'https://ror.org/016j3vn58', 'de', 1, 'https://ror.org/016j3vn58 Marien Hospital Wesel'),
(79004, 'https://ror.org/03yqta205', 'en', 1, 'https://ror.org/03yqta205 Reid Health'),
(79005, 'https://ror.org/024jgsd53', 'no_lang_code', 1, 'https://ror.org/024jgsd53 Arctic Slope Regional (United States)'),
(79006, 'https://ror.org/03m4gcv27', 'en', 1, 'https://ror.org/03m4gcv27 West Virginia Geological & Economic Survey'),
(79007, 'https://ror.org/03799w695', 'en', 1, 'https://ror.org/03799w695 National Research Centre for Georgian Art History and Heritage Preservation გიორგი ჩუბინაშვილის სახელობის ქართული ხელოვნების ისტორიისა და ძეგლთა დაცვის კვლევის ეროვნული ცენტრი'),
(79008, 'https://ror.org/02rz8g169', 'fr', 1, 'https://ror.org/02rz8g169 Fédération Française des Associations et Amicales de Malades Insuffisants ou Handicapés Respiratoires'),
(79009, 'https://ror.org/04wx3p623', 'en', 1, 'https://ror.org/04wx3p623 Korean Society of Spine Surgery 대한척추외과학회'),
(79010, 'https://ror.org/01jhj1k54', 'en', 1, 'https://ror.org/01jhj1k54 Salt Lake Regional Medical Center'),
(79011, 'https://ror.org/03b6mde77', 'en', 1, 'https://ror.org/03b6mde77 Fawcett Society'),
(79012, 'https://ror.org/01x3p5p96', 'no_lang_code', 1, 'https://ror.org/01x3p5p96 Rolls-Royce (Canada)'),
(79013, 'https://ror.org/0589ntt23', 'en', 1, 'https://ror.org/0589ntt23 Icelandic Fisheries Laboratories'),
(79014, 'https://ror.org/04m4wwh75', 'en', 1, 'https://ror.org/04m4wwh75 Altai State University Алтайский государственный университет'),
(79015, 'https://ror.org/055x7np37', 'pl', 1, 'https://ror.org/055x7np37 Polskie Towarzystwo Gastroenterologii'),
(79016, 'https://ror.org/02wv1rw66', 'no_lang_code', 1, 'https://ror.org/02wv1rw66 Oxurion (Belgium)'),
(79017, 'https://ror.org/00vk9xr10', 'en', 1, 'https://ror.org/00vk9xr10 Caucasus Research Resource Centers კავკასიის კვლევითი რესურსების ცენტრების'),
(79018, 'https://ror.org/01way3b03', 'en', 1, 'https://ror.org/01way3b03 Florida Department of Health in Orange County'),
(79019, 'https://ror.org/052h6se21', 'en', 1, 'https://ror.org/052h6se21 Columbia St. Mary''s Hospital Ozaukee'),
(79020, 'https://ror.org/03jgmp057', 'en', 1, 'https://ror.org/03jgmp057 Fundação Luso-Americana Para o Desenvolvimento Luso American Development Foundation'),
(79021, 'https://ror.org/05av9mn02', 'en', 1, 'https://ror.org/05av9mn02 Plymouth Marine Laboratory'),
(79022, 'https://ror.org/04ayyqz27', 'en', 1, 'https://ror.org/04ayyqz27 AdventHealth Kissimmee'),
(79023, 'https://ror.org/04pxj3j71', 'en', 1, 'https://ror.org/04pxj3j71 Southeastern Community College - Iowa'),
(79024, 'https://ror.org/01tr91x67', 'en', 1, 'https://ror.org/01tr91x67 Newport Restoration Foundation'),
(79025, 'https://ror.org/005n36371', 'en', 1, 'https://ror.org/005n36371 Danish Medical Association Lægeforeningen'),
(79026, 'https://ror.org/02tsqtg57', 'en', 1, 'https://ror.org/02tsqtg57 Maxwell Institute for Mathematical Sciences'),
(79027, 'https://ror.org/03bg52265', 'es', 1, 'https://ror.org/03bg52265 El Colegio Mexiquense'),
(79028, 'https://ror.org/02sptxp91', 'en', 1, 'https://ror.org/02sptxp91 Ochsner Baptist Medical Center'),
(79029, 'https://ror.org/05pj5cg52', 'en', 1, 'https://ror.org/05pj5cg52 Close Up Foundation'),
(79030, 'https://ror.org/01x0e6k76', 'en', 1, 'https://ror.org/01x0e6k76 Montefiore Health System'),
(79031, 'https://ror.org/00p7bse27', 'en', 1, 'https://ror.org/00p7bse27 Bozeman Health Deaconess Hospital'),
(79032, 'https://ror.org/00dc6rr74', 'en', 1, 'https://ror.org/00dc6rr74 Tri-Service General Hospital Beitou Branch 三軍總醫院北投分院'),
(79033, 'https://ror.org/01r3rjz42', 'en', 1, 'https://ror.org/01r3rjz42 Bay Area Hospital'),
(79034, 'https://ror.org/03w448b28', 'en', 1, 'https://ror.org/03w448b28 Research Institute for Applied Sciences 応用科学研究所'),
(79035, 'https://ror.org/03m4evp90', 'en', 1, 'https://ror.org/03m4evp90 Michigan Primary Care Association'),
(79036, 'https://ror.org/04jep6391', 'es', 1, 'https://ror.org/04jep6391 Hospital Universitario HM Sanchinarro'),
(79037, 'https://ror.org/02qtmtk60', 'fi', 1, 'https://ror.org/02qtmtk60 Satakunnan Sairaanhoitopiirin'),
(79038, 'https://ror.org/02ypbdc20', 'en', 1, 'https://ror.org/02ypbdc20 Betanien Hospital Betanien sykehus'),
(79039, 'https://ror.org/03yxrd274', 'en', 1, 'https://ror.org/03yxrd274 Nucro Technics'),
(79040, 'https://ror.org/00sm25y28', 'en', 1, 'https://ror.org/00sm25y28 Society of Tribologists and Lubrication Engineers'),
(79041, 'https://ror.org/052m2bk26', 'en', 1, 'https://ror.org/052m2bk26 Musculoskeletal Tumor Society'),
(79042, 'https://ror.org/00bt7we59', 'es', 1, 'https://ror.org/00bt7we59 Colegio Médico de Chile Medical College of Chile'),
(79043, 'https://ror.org/01sjphy93', 'en', 1, 'https://ror.org/01sjphy93 American Society of Landscape Architects'),
(79044, 'https://ror.org/05czq7m38', 'en', 1, 'https://ror.org/05czq7m38 Caspian University Каспий Университеті'),
(79045, 'https://ror.org/038arpa11', 'en', 1, 'https://ror.org/038arpa11 Contra Costa Regional Medical Center'),
(79046, 'https://ror.org/02sm2qm88', 'en', 1, 'https://ror.org/02sm2qm88 Government of Brunei Darussalam'),
(79047, 'https://ror.org/03t518x65', 'en', 1, 'https://ror.org/03t518x65 Norton Women''s and Children''s Hospital'),
(79048, 'https://ror.org/01qp02p38', 'no_lang_code', 1, 'https://ror.org/01qp02p38 Gossamer Bio (United States)'),
(79049, 'https://ror.org/01savwy26', 'en', 1, 'https://ror.org/01savwy26 University Hospitals Parma Medical Center'),
(79050, 'https://ror.org/04jk0my75', 'no_lang_code', 1, 'https://ror.org/04jk0my75 Quantum Design (United States)'),
(79051, 'https://ror.org/02vndcn56', 'en', 1, 'https://ror.org/02vndcn56 Markfield Institute of Higher Education'),
(79052, 'https://ror.org/03arwv312', 'en', 1, 'https://ror.org/03arwv312 Danish Ministry of Environment Miljøministeriet'),
(79053, 'https://ror.org/059j2cd05', 'en', 1, 'https://ror.org/059j2cd05 Tenwek Hospital'),
(79054, 'https://ror.org/04yd1pb14', 'en', 1, 'https://ror.org/04yd1pb14 Constitutional Court of Korea 헌법재판소'),
(79055, 'https://ror.org/02jqp5961', 'no_lang_code', 1, 'https://ror.org/02jqp5961 Reata Pharmaceuticals (United States)'),
(79056, 'https://ror.org/05n22sa14', 'en', 1, 'https://ror.org/05n22sa14 Regional Technology Strategies'),
(79057, 'https://ror.org/01vacm368', 'en', 1, 'https://ror.org/01vacm368 Laerdal Foundation'),
(79058, 'https://ror.org/02wat9f69', 'no_lang_code', 1, 'https://ror.org/02wat9f69 IBM (United Kingdom)'),
(79059, 'https://ror.org/05e0sek51', 'no_lang_code', 1, 'https://ror.org/05e0sek51 Hankyu Hanshin Holdings (Japan) 阪急阪神ホールディングス株式会社'),
(79060, 'https://ror.org/00dt6a694', 'fr', 1, 'https://ror.org/00dt6a694 Centre Hospitalier de Perpignan'),
(79061, 'https://ror.org/00jrbwm32', 'no_lang_code', 1, 'https://ror.org/00jrbwm32 Acibadem City Clinic'),
(79062, 'https://ror.org/006qrck15', 'en', 1, 'https://ror.org/006qrck15 Newport Museum and Art Gallery'),
(79063, 'https://ror.org/0535mdh73', 'en', 1, 'https://ror.org/0535mdh73 Gyeongju National Museum 국립경주박물관'),
(79064, 'https://ror.org/03qh6m929', 'en', 1, 'https://ror.org/03qh6m929 Society of Vertebrate Paleontology'),
(79065, 'https://ror.org/04e3bb298', 'en', 1, 'https://ror.org/04e3bb298 The Korean Atopic Dermatitis Association 대한아토피피부염학회'),
(79066, 'https://ror.org/00hajxm04', 'fr', 1, 'https://ror.org/00hajxm04 Institut de Statistiques et d’Études Économiques du Burundi'),
(79067, 'https://ror.org/03wmxdf36', 'fr', 1, 'https://ror.org/03wmxdf36 Polyclinique de Franche Comté'),
(79068, 'https://ror.org/02dv91s93', 'en', 1, 'https://ror.org/02dv91s93 National Children''s Bureau'),
(79069, 'https://ror.org/0187v3h87', 'en', 1, 'https://ror.org/0187v3h87 Vindolanda Trust'),
(79070, 'https://ror.org/020en6283', 'en', 1, 'https://ror.org/020en6283 NHS Research Scotland'),
(79071, 'https://ror.org/00ks90424', 'no_lang_code', 1, 'https://ror.org/00ks90424 Tauri Group (United States)'),
(79072, 'https://ror.org/030ykd126', 'en', 1, 'https://ror.org/030ykd126 Alberta Gambling Research Institute'),
(79073, 'https://ror.org/0009b0k06', 'fr', 1, 'https://ror.org/0009b0k06 Clinique des Cèdres'),
(79074, 'https://ror.org/04xpajq87', 'en', 1, 'https://ror.org/04xpajq87 Ocean Medical Center'),
(79075, 'https://ror.org/026vtvm28', 'no_lang_code', 1, 'https://ror.org/026vtvm28 Boehringer Ingelheim (Austria)'),
(79076, 'https://ror.org/009wx7055', 'en', 1, 'https://ror.org/009wx7055 USA Mitchell Cancer Institute'),
(79077, 'https://ror.org/01p0xth29', 'en', 1, 'https://ror.org/01p0xth29 Covenant Medical Center'),
(79078, 'https://ror.org/03x4zh819', 'en', 1, 'https://ror.org/03x4zh819 Asian Social Institute'),
(79079, 'https://ror.org/0535k0q10', 'en', 1, 'https://ror.org/0535k0q10 Deutscher Wasserstoff und Brennstoffzellen Verband German Hydrogen and Fuel-Cell Association'),
(79080, 'https://ror.org/01zyxxv05', 'en', 1, 'https://ror.org/01zyxxv05 Rippe Health'),
(79081, 'https://ror.org/0233zkc29', 'en', 1, 'https://ror.org/0233zkc29 Mid America Regional Council'),
(79082, 'https://ror.org/051b3s825', 'fr', 1, 'https://ror.org/051b3s825 Institut de Formation et de Recherche Démographiques'),
(79083, 'https://ror.org/03zgbv316', 'en', 1, 'https://ror.org/03zgbv316 Washington School of Psychiatry'),
(79084, 'https://ror.org/01q6pmm96', 'en', 1, 'https://ror.org/01q6pmm96 University of Portland Université de portland'),
(79085, 'https://ror.org/01hnfza55', 'no_lang_code', 1, 'https://ror.org/01hnfza55 Asahi Shimbun Company (Japan) 朝日新聞社'),
(79086, 'https://ror.org/0133gy560', 'no_lang_code', 1, 'https://ror.org/0133gy560 Tishcon (United States)'),
(79087, 'https://ror.org/002xnks13', 'en', 1, 'https://ror.org/002xnks13 Institute for Agriculture and Trade Policy'),
(79088, 'https://ror.org/04xa4c474', 'en', 1, 'https://ror.org/04xa4c474 Energy Research Centre of the Netherlands'),
(79089, 'https://ror.org/02s4nx965', 'en', 1, 'https://ror.org/02s4nx965 Bayan College'),
(79090, 'https://ror.org/0033y0972', 'en', 1, 'https://ror.org/0033y0972 Fairview Lakes Medical Center'),
(79091, 'https://ror.org/01tcs9y33', 'en', 1, 'https://ror.org/01tcs9y33 Canadian Society for Immunology Société Canadienne d''Immunologie'),
(79092, 'https://ror.org/05d21fg98', 'en', 1, 'https://ror.org/05d21fg98 American Medical Society for Sports Medicine'),
(79093, 'https://ror.org/05vs9tj88', 'no_lang_code', 1, 'https://ror.org/05vs9tj88 BMW (Germany) Bayerische Motoren Werke'),
(79094, 'https://ror.org/04nevn997', 'en', 1, 'https://ror.org/04nevn997 Western Regional Medical Center'),
(79095, 'https://ror.org/031200497', 'en', 1, 'https://ror.org/031200497 Nutrifood'),
(79096, 'https://ror.org/02rfcx125', 'no_lang_code', 1, 'https://ror.org/02rfcx125 Maple Leaf Foods'),
(79097, 'https://ror.org/03q9f1475', 'en', 1, 'https://ror.org/03q9f1475 Korean Society of Gastrointestinal Endoscopy 대한소화기내시경학회'),
(79098, 'https://ror.org/03jhxhg55', 'en', 1, 'https://ror.org/03jhxhg55 Norton Hospital'),
(79099, 'https://ror.org/05vx4by93', 'en', 1, 'https://ror.org/05vx4by93 The Princes Trust'),
(79100, 'https://ror.org/02z7s4a25', 'en', 1, 'https://ror.org/02z7s4a25 American Society for Colposcopy and Cervical Pathology'),
(79101, 'https://ror.org/03qrhd488', 'en', 1, 'https://ror.org/03qrhd488 Edwards Comprehensive Cancer Center'),
(79102, 'https://ror.org/04kpgmr70', 'en', 1, 'https://ror.org/04kpgmr70 Little Rock School District'),
(79103, 'https://ror.org/02170ek39', 'en', 1, 'https://ror.org/02170ek39 Fairfield Medical Center'),
(79104, 'https://ror.org/04q9m7550', 'en', 1, 'https://ror.org/04q9m7550 Association for Supervision and Curriculum Development'),
(79105, 'https://ror.org/007vvce33', 'en', 1, 'https://ror.org/007vvce33 Aurora West Allis Medical Center'),
(79106, 'https://ror.org/049t8z584', 'en', 1, 'https://ror.org/049t8z584 NorthBay Healthcare'),
(79107, 'https://ror.org/053aznw88', 'no_lang_code', 1, 'https://ror.org/053aznw88 FM Global (United States)'),
(79108, 'https://ror.org/03ad88z33', 'en', 1, 'https://ror.org/03ad88z33 State Scientific Center of the Russian Federation - Federal Medical Biophysical Center named after A.I. Burnazyan Государственный научный центр Российской Федерации – Федеральный медицинский биофизический центр имени А.И. Бурназяна'),
(79109, 'https://ror.org/002bpyg81', 'en', 1, 'https://ror.org/002bpyg81 Ark Medical Center'),
(79110, 'https://ror.org/02z4j5834', 'en', 1, 'https://ror.org/02z4j5834 American Public Gardens Association'),
(79111, 'https://ror.org/03njn4610', 'es', 1, 'https://ror.org/03njn4610 Instituto de Investigación Sanitaria Aragón'),
(79112, 'https://ror.org/02tjj4k70', 'en', 1, 'https://ror.org/02tjj4k70 St.Amant'),
(79113, 'https://ror.org/054pxse21', 'fr', 1, 'https://ror.org/054pxse21 Conservatoire de Musique et d’art Dramatique du Québec'),
(79114, 'https://ror.org/05ke98p93', 'no_lang_code', 1, 'https://ror.org/05ke98p93 Samil Pharm (South Korea) 삼일제약'),
(79115, 'https://ror.org/03c1fxf30', 'en', 1, 'https://ror.org/03c1fxf30 Taipei Hospital 臺北醫院'),
(79116, 'https://ror.org/01yj9wj22', 'fr', 1, 'https://ror.org/01yj9wj22 Collège Laflèche'),
(79117, 'https://ror.org/01jkgrc45', 'en', 1, 'https://ror.org/01jkgrc45 Baton Rouge General'),
(79118, 'https://ror.org/04akwha08', 'en', 1, 'https://ror.org/04akwha08 Planned Parenthood Toronto'),
(79119, 'https://ror.org/02r6fpx29', 'en', 1, 'https://ror.org/02r6fpx29 National Health Research Institutes 國家衛生研究院'),
(79120, 'https://ror.org/01nst5m10', 'en', 1, 'https://ror.org/01nst5m10 Baptist Memorial Health Care'),
(79121, 'https://ror.org/008fp3016', 'en', 1, 'https://ror.org/008fp3016 Potomac Institute for Policy Studies'),
(79122, 'https://ror.org/0326egx05', 'en', 1, 'https://ror.org/0326egx05 Delta State University'),
(79123, 'https://ror.org/02yk2p779', 'en', 1, 'https://ror.org/02yk2p779 International Society of Automation'),
(79124, 'https://ror.org/020yz7110', 'en', 1, 'https://ror.org/020yz7110 SME'),
(79125, 'https://ror.org/04gchep04', 'en', 1, 'https://ror.org/04gchep04 Elisha Hospital בית חולים אלישע'),
(79126, 'https://ror.org/038147s86', 'no_lang_code', 1, 'https://ror.org/038147s86 Achieve Life Sciences (Canada)'),
(79127, 'https://ror.org/038a3nh93', 'en', 1, 'https://ror.org/038a3nh93 University of Minnesota Health Maple Grove Clinics'),
(79128, 'https://ror.org/00kr65d46', 'en', 1, 'https://ror.org/00kr65d46 People in Need Člověk v Tísni'),
(79129, 'https://ror.org/02gvp4w61', 'en', 1, 'https://ror.org/02gvp4w61 Association for Machine Translation in the Americas'),
(79130, 'https://ror.org/03y5p5264', 'en', 1, 'https://ror.org/03y5p5264 Nur University Universidad Nur'),
(79131, 'https://ror.org/033abcd54', 'en', 1, 'https://ror.org/033abcd54 Sunshine Hospital'),
(79132, 'https://ror.org/02pd4fk17', 'en', 1, 'https://ror.org/02pd4fk17 Northeast Georgia Medical Center'),
(79133, 'https://ror.org/03cnezq86', 'en', 1, 'https://ror.org/03cnezq86 Northern Mine Research Society'),
(79134, 'https://ror.org/02ewqv775', 'en', 1, 'https://ror.org/02ewqv775 Boulder Community Hospital'),
(79135, 'https://ror.org/035k44f72', 'no_lang_code', 1, 'https://ror.org/035k44f72 Ahava (Israel)'),
(79136, 'https://ror.org/05qdwtz81', 'en', 1, 'https://ror.org/05qdwtz81 Ludwig Cancer Research'),
(79137, 'https://ror.org/03qfyer56', 'no_lang_code', 1, 'https://ror.org/03qfyer56 Marie Stopes Society'),
(79138, 'https://ror.org/05frtgg14', 'no_lang_code', 1, 'https://ror.org/05frtgg14 Axpo (Switzerland)'),
(79139, 'https://ror.org/02vfd3q08', 'en', 1, 'https://ror.org/02vfd3q08 Memorial Regional Medical Center'),
(79140, 'https://ror.org/04brn0b16', 'no_lang_code', 1, 'https://ror.org/04brn0b16 Catalent (United States)'),
(79141, 'https://ror.org/00pfjsb13', 'en', 1, 'https://ror.org/00pfjsb13 International University School of Medicine'),
(79142, 'https://ror.org/04td0zn33', 'en', 1, 'https://ror.org/04td0zn33 WellSpan Ephrata Community Hospital'),
(79143, 'https://ror.org/00s37wk05', 'de', 1, 'https://ror.org/00s37wk05 Arbeitsstelle für Kulturwissenschaftliche Forschungen'),
(79144, 'https://ror.org/01mazcp58', 'en', 1, 'https://ror.org/01mazcp58 National Medical Holding Национальный медицинский холдинг'),
(79145, 'https://ror.org/01vqm0433', 'en', 1, 'https://ror.org/01vqm0433 Beaufort County Community College'),
(79146, 'https://ror.org/043fecn14', 'en', 1, 'https://ror.org/043fecn14 Kazakh Research Institute of Agriculture and Plant growing Қазақ Жер Шаруашылығы Ғылыми Зерттеу Институты'),
(79147, 'https://ror.org/0019k3g62', 'en', 1, 'https://ror.org/0019k3g62 Eastern Regional Medical Center'),
(79148, 'https://ror.org/047kf4730', 'en', 1, 'https://ror.org/047kf4730 Doylestown Hospital'),
(79149, 'https://ror.org/03w481t07', 'en', 1, 'https://ror.org/03w481t07 Start International'),
(79150, 'https://ror.org/04mcqge53', 'en', 1, 'https://ror.org/04mcqge53 Ontario Shores Centre for Mental Health Sciences'),
(79151, 'https://ror.org/04xtv9907', 'en', 1, 'https://ror.org/04xtv9907 FGK Clinical Research'),
(79152, 'https://ror.org/015121715', 'en', 1, 'https://ror.org/015121715 Peterson Institute for International Economics'),
(79153, 'https://ror.org/01bdgfy75', 'en', 1, 'https://ror.org/01bdgfy75 Banneker Douglass Museum'),
(79154, 'https://ror.org/04v35sm20', 'en', 1, 'https://ror.org/04v35sm20 Norton Community Hospital'),
(79155, 'https://ror.org/05qvhy970', 'en', 1, 'https://ror.org/05qvhy970 National Athletic Trainers Association'),
(79156, 'https://ror.org/011cztj49', 'en', 1, 'https://ror.org/011cztj49 Southampton General Hospital'),
(79157, 'https://ror.org/03btazg73', 'en', 1, 'https://ror.org/03btazg73 IEEE Industry Applications Society'),
(79158, 'https://ror.org/02capbb49', 'en', 1, 'https://ror.org/02capbb49 Standards, Productivity and Innovation Board 标新局'),
(79159, 'https://ror.org/02xjx7622', 'en', 1, 'https://ror.org/02xjx7622 Renown Regional Medical Center'),
(79160, 'https://ror.org/05cxwhm03', 'en', 1, 'https://ror.org/05cxwhm03 University Hospitals of Morecambe Bay NHS Foundation Trust'),
(79161, 'https://ror.org/05qxez013', 'en', 1, 'https://ror.org/05qxez013 Redcliffe Hospital'),
(79162, 'https://ror.org/059xdv132', 'no_lang_code', 1, 'https://ror.org/059xdv132 Celavie Biosciences (United States)'),
(79163, 'https://ror.org/02zgc4028', 'en', 1, 'https://ror.org/02zgc4028 Canadian Association for Laboratory Animal Science L’Association Canadienne de la Médecine des Animaux de Laboratoire'),
(79164, 'https://ror.org/02b7tjd34', 'en', 1, 'https://ror.org/02b7tjd34 Wigmore Hall'),
(79165, 'https://ror.org/058ay3j75', 'no_lang_code', 1, 'https://ror.org/058ay3j75 BML Munjal University'),
(79166, 'https://ror.org/01z4e5797', 'en', 1, 'https://ror.org/01z4e5797 University of Travnik Univerzitet u Travniku'),
(79167, 'https://ror.org/0051kfw19', 'en', 1, 'https://ror.org/0051kfw19 Montana Learning Center'),
(79168, 'https://ror.org/05fyave37', 'en', 1, 'https://ror.org/05fyave37 Manchester City Football Club'),
(79169, 'https://ror.org/003dprh65', 'en', 1, 'https://ror.org/003dprh65 Black Hills Special Services Cooperative'),
(79170, 'https://ror.org/03whvgq80', 'en', 1, 'https://ror.org/03whvgq80 Kake Educational Institution 加計学園'),
(79171, 'https://ror.org/05hs7zv85', 'en', 1, 'https://ror.org/05hs7zv85 Johns Hopkins Center for Communication Programs'),
(79172, 'https://ror.org/03d9rp576', 'en', 1, 'https://ror.org/03d9rp576 LifeStream'),
(79173, 'https://ror.org/02pr26304', 'en', 1, 'https://ror.org/02pr26304 Park Vale Academy'),
(79174, 'https://ror.org/046wdn896', 'de', 1, 'https://ror.org/046wdn896 Verbund Katholischer Kliniken Düsseldorf'),
(79175, 'https://ror.org/04k0ww995', 'en', 1, 'https://ror.org/04k0ww995 Shirak State University Շիրակի Միքայել Նալբանդյանի անվան պետական համալսարան'),
(79176, 'https://ror.org/04jtnvj04', 'no_lang_code', 1, 'https://ror.org/04jtnvj04 Pfizer (Austria)'),
(79177, 'https://ror.org/02j7tm046', 'de', 1, 'https://ror.org/02j7tm046 Neue Kantonsschule Aarau'),
(79178, 'https://ror.org/040v7fz77', 'en', 1, 'https://ror.org/040v7fz77 Danish Geotechnical Society Dansk Geoteknisk Forening'),
(79179, 'https://ror.org/0358tcd02', 'en', 1, 'https://ror.org/0358tcd02 Northamptonshire Healthcare NHS Foundation Trust'),
(79180, 'https://ror.org/01qvj2271', 'en', 1, 'https://ror.org/01qvj2271 Otago Polytechnic'),
(79181, 'https://ror.org/05heqa451', 'en', 1, 'https://ror.org/05heqa451 International Center for Research, Education and Training'),
(79182, 'https://ror.org/04w51qd98', 'en', 1, 'https://ror.org/04w51qd98 Academy of Cognitive and Natural Sciences Академія когнітивних та природничих наук'),
(79183, 'https://ror.org/03534mt64', 'no_lang_code', 1, 'https://ror.org/03534mt64 Centrum Patologii Molekularnej Cellgen Molecular Pathology Centre Cellgen'),
(79184, 'https://ror.org/04k3aaz82', 'en', 1, 'https://ror.org/04k3aaz82 Universal College of Learning'),
(79185, 'https://ror.org/00p23dy23', 'en', 1, 'https://ror.org/00p23dy23 Cherokee Nation'),
(79186, 'https://ror.org/030qtrs05', 'en', 1, 'https://ror.org/030qtrs05 MRC Integrative Epidemiology Unit'),
(79187, 'https://ror.org/027bh9e22', 'en', 1, 'https://ror.org/027bh9e22 Leiden University Universiteit Leiden'),
(79188, 'https://ror.org/03dtnq041', 'en', 1, 'https://ror.org/03dtnq041 Arab Academy for Management, Banking and Financial Sciences الأكادمية العربية للعلوم الإدارية والمالية والمصرفية'),
(79189, 'https://ror.org/01v408m73', 'no', 1, 'https://ror.org/01v408m73 Norges Bank'),
(79190, 'https://ror.org/0543h9a62', 'en', 1, 'https://ror.org/0543h9a62 Kunsthøgskolen i Oslo Oslo National Academy of the Arts'),
(79191, 'https://ror.org/00wb4mk85', 'en', 1, 'https://ror.org/00wb4mk85 OpenCitations'),
(79192, 'https://ror.org/012cqkk56', 'no_lang_code', 1, 'https://ror.org/012cqkk56 Pacific Theological College'),
(79193, 'https://ror.org/05fx1fs38', 'no_lang_code', 1, 'https://ror.org/05fx1fs38 Astex Pharmaceuticals'),
(79194, 'https://ror.org/04scgfz75', 'en', 1, 'https://ror.org/04scgfz75 Ospidéil na hOllscoile University Hospital Galway'),
(79195, 'https://ror.org/00n4k4n97', 'en', 1, 'https://ror.org/00n4k4n97 Providence Health & Services'),
(79196, 'https://ror.org/0561ahg72', 'en', 1, 'https://ror.org/0561ahg72 Higher Institute of Engineering and Technology - King Marriott لمعاهد العليا بكينج مريوط'),
(79197, 'https://ror.org/01p4s0142', 'en', 1, 'https://ror.org/01p4s0142 MRC Population Health Research Unit'),
(79198, 'https://ror.org/03qd55m24', 'en', 1, 'https://ror.org/03qd55m24 Academy Of Finance Học Viện Tài Chính'),
(79199, 'https://ror.org/05fa1xs93', 'hr', 1, 'https://ror.org/05fa1xs93 Gradski muzej Vinkovci Vinkovci Municipal Museum'),
(79200, 'https://ror.org/01txmfh60', 'no_lang_code', 1, 'https://ror.org/01txmfh60 Seagen (Canada)'),
(79201, 'https://ror.org/01ss14a40', 'en', 1, 'https://ror.org/01ss14a40 Institute of Pharmacology'),
(79202, 'https://ror.org/02zgbc004', 'es', 1, 'https://ror.org/02zgbc004 Technological University of North Tamaulipas Universidad Tecnológica de Tamaulipas Norte'),
(79203, 'https://ror.org/007bsba86', 'no_lang_code', 1, 'https://ror.org/007bsba86 UK EPC'),
(79204, 'https://ror.org/0342dzm54', 'no_lang_code', 1, 'https://ror.org/0342dzm54 Liberate Science'),
(79205, 'https://ror.org/05qq96959', 'en', 1, 'https://ror.org/05qq96959 Federative Institute of Behavioral Addictions Institut Fédératif des Addictions Comportementales'),
(79206, 'https://ror.org/05n43x964', 'de', 1, 'https://ror.org/05n43x964 Deutsches Institut für Urbanistik German Institute of Urban Affairs'),
(79207, 'https://ror.org/03hf75752', 'en', 1, 'https://ror.org/03hf75752 Global Health 50/50'),
(79208, 'https://ror.org/002r67t24', 'en', 1, 'https://ror.org/002r67t24 Manukau Institute of Technology'),
(79209, 'https://ror.org/04t6njz90', 'id', 1, 'https://ror.org/04t6njz90 STIE Kesuma Negara Blitar'),
(79210, 'https://ror.org/049aac153', 'es', 1, 'https://ror.org/049aac153 Antioquia Research Institute Instituto Antioqueño de Investigación'),
(79211, 'https://ror.org/02bjhj961', 'en', 1, 'https://ror.org/02bjhj961 Waikato Institute of Technology'),
(79212, 'https://ror.org/011jsc803', 'en', 1, 'https://ror.org/011jsc803 MRC Human Genetics Unit'),
(79213, 'https://ror.org/00det5k42', 'no_lang_code', 1, 'https://ror.org/00det5k42 Nepal Institute of Research and Communications (NIRC)'),
(79214, 'https://ror.org/05vmk8z81', 'en', 1, 'https://ror.org/05vmk8z81 Norsk jernbanemuseum Norwegian Railway Museum'),
(79215, 'https://ror.org/00wykxp39', 'en', 1, 'https://ror.org/00wykxp39 Nelson Marlborough Institute of Technology'),
(79216, 'https://ror.org/03p3y9p09', 'en', 1, 'https://ror.org/03p3y9p09 Association of European Schools of Planning'),
(79217, 'https://ror.org/02scvmk68', 'en', 1, 'https://ror.org/02scvmk68 Southern Institute of Technology'),
(79218, 'https://ror.org/01vnc0w82', 'en', 1, 'https://ror.org/01vnc0w82 AVA – Academy of Visual Arts AVA – Akademija za Vizualne Umetnosti'),
(79219, 'https://ror.org/05ddbg479', 'en', 1, 'https://ror.org/05ddbg479 Bapuji Institute of Engineering and Technology'),
(79220, 'https://ror.org/03es66g06', 'en', 1, 'https://ror.org/03es66g06 Leiden Observatory Sterrewacht Leiden'),
(79221, 'https://ror.org/006fvbd84', 'en', 1, 'https://ror.org/006fvbd84 Delaware Museum of Nature and Science');
INSERT INTO `rors` VALUES
(79222, 'https://ror.org/014qktf20', 'en', 1, 'https://ror.org/014qktf20 Symbiosis Group'),
(79223, 'https://ror.org/055bk6w95', 'no_lang_code', 1, 'https://ror.org/055bk6w95 BuiltWith'),
(79224, 'https://ror.org/03ycgmc41', 'en', 1, 'https://ror.org/03ycgmc41 Wellington Institute of Technology'),
(79225, 'https://ror.org/013k5y296', 'no_lang_code', 1, 'https://ror.org/013k5y296 Otsuka (Japan) 大塚製薬株式会社'),
(79226, 'https://ror.org/00ct9cz38', 'en', 1, 'https://ror.org/00ct9cz38 Eastern Institute of Technology'),
(79227, 'https://ror.org/01t2w0q86', 'en', 1, 'https://ror.org/01t2w0q86 Toi Ohomai Institute of Technology'),
(79228, 'https://ror.org/04rjz5883', 'en', 1, 'https://ror.org/04rjz5883 eLife Sciences Publications'),
(79229, 'https://ror.org/03w2xw870', 'en', 1, 'https://ror.org/03w2xw870 Grúpa Cúram Sláinte Ollscoile Saolta Saolta University Health Care Group'),
(79230, 'https://ror.org/03tj1w486', 'no_lang_code', 1, 'https://ror.org/03tj1w486 Haradoi Hospital 社会医療法人原土井病院'),
(79231, 'https://ror.org/00k0fxx81', 'en', 1, 'https://ror.org/00k0fxx81 Japan Society of Home Economics 一般社団法人日本家政学会'),
(79232, 'https://ror.org/03ykm7q16', 'no_lang_code', 1, 'https://ror.org/03ykm7q16 Saitama Prefecture 埼玉県庁'),
(79233, 'https://ror.org/00a7kn731', 'en', 1, 'https://ror.org/00a7kn731 Kushiro Junior College 釧路短期大学'),
(79234, 'https://ror.org/00garhy75', 'en', 1, 'https://ror.org/00garhy75 National Epilepsy Center 独立行政法人国立病院機構静岡てんかん・神経医療センター'),
(79235, 'https://ror.org/007c88108', 'en', 1, 'https://ror.org/007c88108 Tokyo Institute of Psychiatry 財団法人東京都医学研究機構東京都精神医学総合研究所'),
(79236, 'https://ror.org/04gcc2383', 'no_lang_code', 1, 'https://ror.org/04gcc2383 Yakult Central Institute 株式会社ヤクルト本社'),
(79237, 'https://ror.org/04tmv3q77', 'no_lang_code', 1, 'https://ror.org/04tmv3q77 Toyo Ink (Japan) 東洋インキ株式会社'),
(79238, 'https://ror.org/03jv9sa78', 'en', 1, 'https://ror.org/03jv9sa78 Japanese Society of Hypertension 特定非営利活動法人日本高血圧学会'),
(79239, 'https://ror.org/04j4nak57', 'en', 1, 'https://ror.org/04j4nak57 Kobe City Medical Center General Hospital 神戸市立医療センター中央市民病院'),
(79240, 'https://ror.org/001bx3s75', 'no_lang_code', 1, 'https://ror.org/001bx3s75 Ulvac-Phi (Japan) アルバック・ファイ株式会社'),
(79241, 'https://ror.org/008zyts17', 'no_lang_code', 1, 'https://ror.org/008zyts17 Mito Saiseikai General Hospital 社会福祉法人恩賜財団済生会水戸済生会総合病院'),
(79242, 'https://ror.org/04f0kxe59', 'no_lang_code', 1, 'https://ror.org/04f0kxe59 Hewlett-Packard (Japan) 日本ヒューレット・パッカード株式会社'),
(79243, 'https://ror.org/04wsgqy55', 'en', 1, 'https://ror.org/04wsgqy55 Nippon Veterinary and Life Science University 日本獣医生命科学大学'),
(79244, 'https://ror.org/018v0zv10', 'no_lang_code', 1, 'https://ror.org/018v0zv10 Kobe Gakuin University 神戸学院大学'),
(79245, 'https://ror.org/01tpyf635', 'en', 1, 'https://ror.org/01tpyf635 Japan Textbook Research Center 公益財団法人教科書研究センター'),
(79246, 'https://ror.org/02wcsw791', 'no_lang_code', 1, 'https://ror.org/02wcsw791 Osaka Hospital 独立行政法人地域医療機能推進機構大阪病院'),
(79247, 'https://ror.org/03p330m15', 'no_lang_code', 1, 'https://ror.org/03p330m15 Dexerials (Japan) デクセリアルズ株式会社'),
(79248, 'https://ror.org/04vqx8m08', 'no_lang_code', 1, 'https://ror.org/04vqx8m08 GS1 Japan 一般財団法人流通システム開発センター'),
(79249, 'https://ror.org/0486fm608', 'no_lang_code', 1, 'https://ror.org/0486fm608 Glory (Japan) グローリー株式会社'),
(79250, 'https://ror.org/019tepx80', 'en', 1, 'https://ror.org/019tepx80 Okayama University Hospital 岡山大学病院'),
(79251, 'https://ror.org/03wa1wy25', 'en', 1, 'https://ror.org/03wa1wy25 Tottori University Hospital 鳥取大学医学部附属病院'),
(79252, 'https://ror.org/00ht8je70', 'en', 1, 'https://ror.org/00ht8je70 Inamori Foundation 公益財団法人稲盛財団'),
(79253, 'https://ror.org/00c2h6p86', 'no_lang_code', 1, 'https://ror.org/00c2h6p86 Texas Instruments (Japan) 日本テキサス・インスツルメンツ株式会社'),
(79254, 'https://ror.org/00v053551', 'en', 1, 'https://ror.org/00v053551 Osaka City General Hospital 地方独立行政法人大阪市民病院機構大阪市立総合医療センター'),
(79255, 'https://ror.org/02qdq4a41', 'en', 1, 'https://ror.org/02qdq4a41 Nippon Institute for Biological Science 一般財団法人日本生物科学研究所'),
(79256, 'https://ror.org/043pqsk20', 'en', 1, 'https://ror.org/043pqsk20 Japanese Red Cross Nagoya Daini Hospital 認可法人日本赤十字社名古屋第二赤十字病院'),
(79257, 'https://ror.org/00xmy4x78', 'en', 1, 'https://ror.org/00xmy4x78 Nagano Prefectural Suzaka Hospital 長野県立信州医療センター'),
(79258, 'https://ror.org/03mezqr97', 'en', 1, 'https://ror.org/03mezqr97 Shujitsu University 就実大学'),
(79259, 'https://ror.org/03rd0p893', 'en', 1, 'https://ror.org/03rd0p893 Tokyo Metropolitan Institute of Gerontology 地方独立行政法人東京都健康長寿医療センター'),
(79260, 'https://ror.org/01skf6196', 'en', 1, 'https://ror.org/01skf6196 Biotherapy Institute of Japan 株式会社日本バイオセラピー研究所'),
(79261, 'https://ror.org/03axg0947', 'en', 1, 'https://ror.org/03axg0947 Yamagata Research Institute Of Technology 山形県工業技術センター'),
(79262, 'https://ror.org/019ekef14', 'no_lang_code', 1, 'https://ror.org/019ekef14 Kasugai Municipal Hospital 春日井市民病院'),
(79263, 'https://ror.org/03a9hgn46', 'no_lang_code', 1, 'https://ror.org/03a9hgn46 API (Japan) アピ株式会社'),
(79264, 'https://ror.org/04ftw3n55', 'en', 1, 'https://ror.org/04ftw3n55 Nagoya Medical Center 独立行政法人国立病院機構名古屋医療センター'),
(79265, 'https://ror.org/005ns7397', 'en', 1, 'https://ror.org/005ns7397 Nara Prefectural Institute of Public Health Research Center 奈良県保健研究センター'),
(79266, 'https://ror.org/03y50fa25', 'no_lang_code', 1, 'https://ror.org/03y50fa25 Laurel Bank Machines (Japan) ローレルバンクマシン株式会社'),
(79267, 'https://ror.org/05jygqt38', 'no_lang_code', 1, 'https://ror.org/05jygqt38 Lixil (Japan) 株式会社LIXIL'),
(79268, 'https://ror.org/03j56s085', 'en', 1, 'https://ror.org/03j56s085 Chukyo Hospital 独立行政法人地域医療機能推進機構中京病院'),
(79269, 'https://ror.org/02wgf5858', 'no_lang_code', 1, 'https://ror.org/02wgf5858 Surugadai Nihon University Hospital 日本大学病院'),
(79270, 'https://ror.org/041hynd24', 'no_lang_code', 1, 'https://ror.org/041hynd24 Komori (Japan) 株式会社小森コーポレーション'),
(79271, 'https://ror.org/03acpnr73', 'en', 1, 'https://ror.org/03acpnr73 Light Metal Educational Foundation 公益財団法人軽金属奨学会'),
(79272, 'https://ror.org/03kfmm080', 'en', 1, 'https://ror.org/03kfmm080 Aichi Cancer Center 愛知県がんセンター'),
(79273, 'https://ror.org/02dr55561', 'en', 1, 'https://ror.org/02dr55561 Tochigi Prefectural Fisheries Experimental Station 栃木県水産試験場'),
(79274, 'https://ror.org/047kd7281', 'no_lang_code', 1, 'https://ror.org/047kd7281 BoZo Research Center (Japan) 株式会社ボゾリサーチセンター'),
(79275, 'https://ror.org/03j44cc15', 'en', 1, 'https://ror.org/03j44cc15 Nagano National Hospital 独立行政法人国立病院機構東長野病院'),
(79276, 'https://ror.org/02faywq38', 'en', 1, 'https://ror.org/02faywq38 Japanese Red Cross Kumamoto Hospital 認可法人日本赤十字社熊本赤十字病院'),
(79277, 'https://ror.org/01cfmz593', 'no_lang_code', 1, 'https://ror.org/01cfmz593 NOK Corporation (Japan) NOK株式会社'),
(79278, 'https://ror.org/04g1fwn42', 'en', 1, 'https://ror.org/04g1fwn42 Kyorin University Hospital 杏林大学医学部付属病院'),
(79279, 'https://ror.org/02j1xhm46', 'en', 1, 'https://ror.org/02j1xhm46 Tokyo Metropolitan Neurological Hospital 東京都立神経病院'),
(79280, 'https://ror.org/02hg8ry82', 'en', 1, 'https://ror.org/02hg8ry82 Japanese Red Cross Kochi Hospital 認可法人日本赤十字社高知赤十字病院'),
(79281, 'https://ror.org/02qsepw74', 'en', 1, 'https://ror.org/02qsepw74 Aichi Institute of Technology 愛知工業大学'),
(79282, 'https://ror.org/054n63512', 'en', 1, 'https://ror.org/054n63512 Kato Memorial Bioscience Foundation 公益財団法人加藤記念バイオサイエンス振興財団'),
(79283, 'https://ror.org/049444z21', 'no_lang_code', 1, 'https://ror.org/049444z21 Sakakibara Memorial Hospital 公益財団法人日本心臓血圧研究振興会榊原記念病院'),
(79284, 'https://ror.org/04k6gr834', 'en', 1, 'https://ror.org/04k6gr834 Kyoto University Hospital 京都大学医学部附属病院'),
(79285, 'https://ror.org/02skgb336', 'no_lang_code', 1, 'https://ror.org/02skgb336 JAかみつが厚生連上都賀総合病院 Kamituga General Hospital'),
(79286, 'https://ror.org/028fz3b89', 'en', 1, 'https://ror.org/028fz3b89 University of Tsukuba Hospital 筑波大学附属病院'),
(79287, 'https://ror.org/018hwpf05', 'no_lang_code', 1, 'https://ror.org/018hwpf05 Hosokawa Micron (Japan) ホソカワミクロン株式会社'),
(79288, 'https://ror.org/005hf4246', 'en', 1, 'https://ror.org/005hf4246 Tohoku University of Community Service and Science 東北公益文科大学'),
(79289, 'https://ror.org/05y632398', 'en', 1, 'https://ror.org/05y632398 Institute for Animal Reproduction 一般財団法人動物繁殖研究所'),
(79290, 'https://ror.org/03r519674', 'en', 1, 'https://ror.org/03r519674 RIKEN Center for Computational Science 国立研究開発法人理化学研究所計算科学研究センター'),
(79291, 'https://ror.org/05ptpxn60', 'en', 1, 'https://ror.org/05ptpxn60 University of East Asia 東亜大学'),
(79292, 'https://ror.org/01rgbbv42', 'en', 1, 'https://ror.org/01rgbbv42 Osaka Neurological Institute 公益財団法人唐澤記念会大阪脳神経外科病院'),
(79293, 'https://ror.org/03mm3ph30', 'no_lang_code', 1, 'https://ror.org/03mm3ph30 Micron (Japan) マイクロンジャパン株式会社'),
(79294, 'https://ror.org/04j8wth34', 'en', 1, 'https://ror.org/04j8wth34 Tsurumi University 鶴見大学'),
(79295, 'https://ror.org/0055wbw34', 'no_lang_code', 1, 'https://ror.org/0055wbw34 Matsuyama Shimin Hospital 松山市民病院'),
(79296, 'https://ror.org/03h3tds63', 'no_lang_code', 1, 'https://ror.org/03h3tds63 Toyohashi Municipal Hospital 豊橋市民病院'),
(79297, 'https://ror.org/03dp40q62', 'en', 1, 'https://ror.org/03dp40q62 Almeida Memorial Hospital 大分市医師会立アルメイダ病院'),
(79298, 'https://ror.org/00bb55562', 'en', 1, 'https://ror.org/00bb55562 Kobe University Hospital 神戸大学医学部附属病院'),
(79299, 'https://ror.org/031ynym32', 'en', 1, 'https://ror.org/031ynym32 Children''s Cancer Association of Japan 公益財団法人がんの子どもを守る会'),
(79300, 'https://ror.org/052rvxk90', 'en', 1, 'https://ror.org/052rvxk90 National Institute for Minamata Disease 環境省国立水俣病総合研究センター'),
(79301, 'https://ror.org/05kfafn92', 'en', 1, 'https://ror.org/05kfafn92 Institute for International Studies and Training 一般財団法人貿易研修センター'),
(79302, 'https://ror.org/00xj3b267', 'no_lang_code', 1, 'https://ror.org/00xj3b267 GKN (Japan) GKNドライブラインジャパン株式会社'),
(79303, 'https://ror.org/04fxsjh51', 'no_lang_code', 1, 'https://ror.org/04fxsjh51 Nabtesco (Japan) ナブテスコ株式会社'),
(79304, 'https://ror.org/02szmmq82', 'en', 1, 'https://ror.org/02szmmq82 Akita University Hospital 秋田大学医学部附属病院'),
(79305, 'https://ror.org/059f0qa90', 'en', 1, 'https://ror.org/059f0qa90 Japan Fine Ceramics Center 一般財団法人ファインセラミックスセンター'),
(79306, 'https://ror.org/00g51j712', 'en', 1, 'https://ror.org/00g51j712 Saga Medical School Hospital 佐賀大学医学部附属病院'),
(79307, 'https://ror.org/041mcya16', 'en', 1, 'https://ror.org/041mcya16 Nagano Red Cross Hospital 認可法人日本赤十字社長野赤十字病院'),
(79308, 'https://ror.org/026rga753', 'en', 1, 'https://ror.org/026rga753 Chiba East Hospital 独立行政法人国立病院機構千葉東病院'),
(79309, 'https://ror.org/0419drx70', 'en', 1, 'https://ror.org/0419drx70 Hokkaido University Hospital 北海道大学病院'),
(79310, 'https://ror.org/02jg1fa85', 'no_lang_code', 1, 'https://ror.org/02jg1fa85 Suntory (Japan) サントリーホールディングス株式会社'),
(79311, 'https://ror.org/00v337f26', 'fr', 1, 'https://ror.org/00v337f26 Conférence Universitaire de Suisse Occidentale'),
(79312, 'https://ror.org/03g9ek587', 'en', 1, 'https://ror.org/03g9ek587 National Research Institute of Police Science 警察庁科学警察研究所'),
(79313, 'https://ror.org/01gvmn480', 'en', 1, 'https://ror.org/01gvmn480 Tokai University Hospital 東海大学医学部付属病院'),
(79314, 'https://ror.org/013n55y95', 'en', 1, 'https://ror.org/013n55y95 Cosmetology Research Foundation 公益財団法人コスメトロジー研究振興財団'),
(79315, 'https://ror.org/00e18hs98', 'no_lang_code', 1, 'https://ror.org/00e18hs98 Niigata Cancer Center Hospital 新潟県立がんセンター新潟病院'),
(79316, 'https://ror.org/0042cyg15', 'no_lang_code', 1, 'https://ror.org/0042cyg15 Oiles (japan) オイレス工業株式会社'),
(79317, 'https://ror.org/04s629c33', 'en', 1, 'https://ror.org/04s629c33 National Institute of Health Sciences 厚生労働省国立医薬品食品衛生研究所'),
(79318, 'https://ror.org/05arv2073', 'no_lang_code', 1, 'https://ror.org/05arv2073 Bayer (Japan) バイエル薬品株式会社'),
(79319, 'https://ror.org/05x0by667', 'no_lang_code', 1, 'https://ror.org/05x0by667 Fuji Kiko (Japan) 富士機工株式会社'),
(79320, 'https://ror.org/05bz4s011', 'en', 1, 'https://ror.org/05bz4s011 Musashino Red Cross Hospital 認可法人日本赤十字社武蔵野赤十字病院'),
(79321, 'https://ror.org/00jtmm480', 'en', 1, 'https://ror.org/00jtmm480 Japan Industrial Safety and Health Association 特別民間法人中央労働災害防止協会'),
(79322, 'https://ror.org/051mfb226', 'en', 1, 'https://ror.org/051mfb226 Tokai Central Hospital 公立学校共済組合東海中央病院'),
(79323, 'https://ror.org/004h24333', 'no_lang_code', 1, 'https://ror.org/004h24333 CellFree Sciences (Japan) 株式会社セルフリーサイエンス'),
(79324, 'https://ror.org/032rtvf56', 'no_lang_code', 1, 'https://ror.org/032rtvf56 Fukui-ken Saiseikai Hospital 社会福祉法人恩賜財団済生会福井県済生会病院'),
(79325, 'https://ror.org/03f918r09', 'en', 1, 'https://ror.org/03f918r09 Japanese Red Cross Nagoya Daiichi Hospital 認可法人日本赤十字社名古屋第一赤十字病院'),
(79326, 'https://ror.org/03mz46a79', 'no_lang_code', 1, 'https://ror.org/03mz46a79 Berurando General Hospital 社会医療法人生長会ベルランド総合病院'),
(79327, 'https://ror.org/020pjpv69', 'en', 1, 'https://ror.org/020pjpv69 Toin University of Yokohama 桐蔭横浜大学'),
(79328, 'https://ror.org/0331wqp96', 'no_lang_code', 1, 'https://ror.org/0331wqp96 Toyohashi Heart Center 医療法人澄心会豊橋ハートセンター'),
(79329, 'https://ror.org/00kv49k33', 'no_lang_code', 1, 'https://ror.org/00kv49k33 KRI 株式会社KRI'),
(79330, 'https://ror.org/003z23p70', 'en', 1, 'https://ror.org/003z23p70 Research Institute for Brain and Blood Vessels Akita 地方独立行政法人秋田県立病院機構秋田県立脳血管研究センター'),
(79331, 'https://ror.org/016mgbr72', 'en', 1, 'https://ror.org/016mgbr72 East Siberian University of Economics and Law Восточно-Сибирский университет экономики и права'),
(79332, 'https://ror.org/0498kr054', 'en', 1, 'https://ror.org/0498kr054 Sapporo City General Hospital 市立札幌病院'),
(79333, 'https://ror.org/036d5p407', 'no_lang_code', 1, 'https://ror.org/036d5p407 Fuence (Japan) 株式会社フューエンス'),
(79334, 'https://ror.org/02qa5hr50', 'en', 1, 'https://ror.org/02qa5hr50 Mitsui Memorial Hospital 社会福祉法人三井記念病院'),
(79335, 'https://ror.org/01qd25655', 'en', 1, 'https://ror.org/01qd25655 Japanese Red Cross Kobe Hospital 認可法人日本赤十字社神戸赤十字病院'),
(79336, 'https://ror.org/0075e2n47', 'en', 1, 'https://ror.org/0075e2n47 Hoso Bunka Foundation 公益財団法人放送文化基金'),
(79337, 'https://ror.org/04wpebs26', 'en', 1, 'https://ror.org/04wpebs26 Yamagata Prefectural Yonezawa University of Nutrition Sciences 山形県立米沢栄養大学'),
(79338, 'https://ror.org/02qb8gh26', 'en', 1, 'https://ror.org/02qb8gh26 Matsumae International Foundation 公益財団法人松前国際友好財団'),
(79339, 'https://ror.org/019zv8f18', 'en', 1, 'https://ror.org/019zv8f18 National Institute of Occupational Safety and Health 独立行政法人労働者健康安全機構労働安全衛生総合研究所'),
(79340, 'https://ror.org/045ysha14', 'en', 1, 'https://ror.org/045ysha14 Nara Medical University 奈良県立医科大学'),
(79341, 'https://ror.org/00178zy73', 'no_lang_code', 1, 'https://ror.org/00178zy73 JA愛知厚生連江南厚生病院 Konan Kosei Hospital'),
(79342, 'https://ror.org/01myftv43', 'no_lang_code', 1, 'https://ror.org/01myftv43 Sinto (Japan) 新東工業株式会社'),
(79343, 'https://ror.org/02dwzmz76', 'en', 1, 'https://ror.org/02dwzmz76 Gunma Astronomical Observatory 群馬県立ぐんま天文台'),
(79344, 'https://ror.org/05fvd6e47', 'en', 1, 'https://ror.org/05fvd6e47 Sanin Rosai Hospital 独立行政法人労働者健康安全機構山陰労災病院'),
(79345, 'https://ror.org/04q4hbm31', 'en', 1, 'https://ror.org/04q4hbm31 Smoking Research Foundation 公益財団法人喫煙科学研究財団'),
(79346, 'https://ror.org/00evhyq63', 'no_lang_code', 1, 'https://ror.org/00evhyq63 Amine Pharma (Japan) 株式会社アミンファーマ研究所'),
(79347, 'https://ror.org/02mwa1a98', 'no_lang_code', 1, 'https://ror.org/02mwa1a98 Hamamatsu Rosai Hospital 独立行政法人労働者健康安全機構浜松労災病院'),
(79348, 'https://ror.org/05th9sq46', 'en', 1, 'https://ror.org/05th9sq46 Salt Science Research Foundation 公益財団法人ソルト・サイエンス研究財団'),
(79349, 'https://ror.org/02s7nat60', 'no_lang_code', 1, 'https://ror.org/02s7nat60 Nihon Nohyaku (Japan) 日本農薬株式会社'),
(79350, 'https://ror.org/02cndcd59', 'en', 1, 'https://ror.org/02cndcd59 National Institute of Technology, Kure College 呉工業高等専門学校'),
(79351, 'https://ror.org/02dkmhg56', 'en', 1, 'https://ror.org/02dkmhg56 Higashi Osaka City General Hospital 地方独立行政法人市立東大阪医療センター'),
(79352, 'https://ror.org/05yk8hs36', 'no_lang_code', 1, 'https://ror.org/05yk8hs36 ID Pharma (Japan) 株式会社IDファーマ'),
(79353, 'https://ror.org/031nwrz22', 'no_lang_code', 1, 'https://ror.org/031nwrz22 JMS (Japan) 株式会社ジェイ・エム・エス'),
(79354, 'https://ror.org/05h0rw812', 'en', 1, 'https://ror.org/05h0rw812 National Center for Geriatrics and Gerontology 国立研究開発法人国立長寿医療研究センター'),
(79355, 'https://ror.org/029jhw134', 'en', 1, 'https://ror.org/029jhw134 JA北海道厚生連札幌厚生病院 Sapporo Kosei General Hospital'),
(79356, 'https://ror.org/04vr3cf25', 'no_lang_code', 1, 'https://ror.org/04vr3cf25 BML (Japan) 株式会社ビー・エム・エル'),
(79357, 'https://ror.org/04z7xfj55', 'en', 1, 'https://ror.org/04z7xfj55 Japan Health Sciences Foundation 公益財団法人ヒューマンサイエンス振興財団'),
(79358, 'https://ror.org/037jefe25', 'en', 1, 'https://ror.org/037jefe25 Sunagawa City Medical Center 砂川市立病院'),
(79359, 'https://ror.org/002fj3m33', 'en', 1, 'https://ror.org/002fj3m33 Tokyo Zoological Park Society 公益財団法人東京動物園協会'),
(79360, 'https://ror.org/04t23sv93', 'no_lang_code', 1, 'https://ror.org/04t23sv93 Mitsubishi Space Software (Japan) 三菱スペース・ソフトウエア株式会社'),
(79361, 'https://ror.org/00293y771', 'en', 1, 'https://ror.org/00293y771 Sendai National College of Technology 仙台高等専門学校'),
(79362, 'https://ror.org/03sg4m484', 'en', 1, 'https://ror.org/03sg4m484 Public Central Hospital of Matto Ishikawa 公立松任石川中央病院'),
(79363, 'https://ror.org/04wn7d698', 'en', 1, 'https://ror.org/04wn7d698 Showa University Hospital 昭和大学病院'),
(79364, 'https://ror.org/02cdwar72', 'no_lang_code', 1, 'https://ror.org/02cdwar72 Bando Chemical Industries (Japan) バンドー化学株式会社'),
(79365, 'https://ror.org/01ybtyf05', 'no_lang_code', 1, 'https://ror.org/01ybtyf05 Ishihara Sangyo Kaisha (Japan) 石原産業株式会社'),
(79366, 'https://ror.org/02y2f3e22', 'en', 1, 'https://ror.org/02y2f3e22 Mitsubishi Foundation 公益財団法人三菱財団'),
(79367, 'https://ror.org/040ehaj20', 'no_lang_code', 1, 'https://ror.org/040ehaj20 Akebono (Japan) 曙ブレーキ工業株式会社'),
(79368, 'https://ror.org/04xesg978', 'en', 1, 'https://ror.org/04xesg978 Japanese Red Cross Society Kyoto Daini Hospital 認可法人日本赤十字社京都第二赤十字病院'),
(79369, 'https://ror.org/02ewp2621', 'en', 1, 'https://ror.org/02ewp2621 National Women''s Education Center 独立行政法人国立女性教育会館'),
(79370, 'https://ror.org/008zz8m46', 'en', 1, 'https://ror.org/008zz8m46 Nagoya University Hospital 名古屋大学医学部附属病院'),
(79371, 'https://ror.org/00y3aq160', 'no_lang_code', 1, 'https://ror.org/00y3aq160 JA新潟厚生連上越総合病院 Jōetsu General Hospital'),
(79372, 'https://ror.org/05wks2t16', 'en', 1, 'https://ror.org/05wks2t16 Kitami Institute of Technology 北見工業大学'),
(79373, 'https://ror.org/01d1kv753', 'en', 1, 'https://ror.org/01d1kv753 SPring-8 国立研究開発法人理化学研究所放射光科学研究センター'),
(79374, 'https://ror.org/043t53p17', 'no_lang_code', 1, 'https://ror.org/043t53p17 Kitami Information Technology (Japan) 北見情報技術株式会社'),
(79375, 'https://ror.org/05kscqz92', 'no_lang_code', 1, 'https://ror.org/05kscqz92 Tsudakoma (Japan) 津田駒工業株式会社'),
(79376, 'https://ror.org/03jbn8j42', 'en', 1, 'https://ror.org/03jbn8j42 Council of Local Authorities for International Relations 一般財団法人自治体国際化協会'),
(79377, 'https://ror.org/03c1y0r66', 'en', 1, 'https://ror.org/03c1y0r66 Tane General Hospital 社会医療法人きつこう会多根総合病院'),
(79378, 'https://ror.org/0045e2c31', 'en', 1, 'https://ror.org/0045e2c31 National Hospital Organization Kochi National Hospital 独立行政法人国立病院機構高知病院'),
(79379, 'https://ror.org/03tyb9q08', 'no_lang_code', 1, 'https://ror.org/03tyb9q08 Nippon Chemical Industrial (Japan) 日本化学工業株式会社'),
(79380, 'https://ror.org/01tfba323', 'no_lang_code', 1, 'https://ror.org/01tfba323 Sumitomo Seika Chemicals (Japan) 住友精化株式会社'),
(79381, 'https://ror.org/02znffm54', 'en', 1, 'https://ror.org/02znffm54 Osaka Institute of Technology 大阪工業大学'),
(79382, 'https://ror.org/00a1e9e96', 'no_lang_code', 1, 'https://ror.org/00a1e9e96 Horiba (Japan) 株式会社堀場製作所'),
(79383, 'https://ror.org/000j6sc87', 'en', 1, 'https://ror.org/000j6sc87 Innovation Center of NanoMedicine 公益財団法人川崎市産業振興財団'),
(79384, 'https://ror.org/05tqx4s13', 'en', 1, 'https://ror.org/05tqx4s13 RIKEN Nishina Center 国立研究開発法人理化学研究所仁科加速器科学研究センター'),
(79385, 'https://ror.org/002scw660', 'no_lang_code', 1, 'https://ror.org/002scw660 Casio (Japan) カシオ計算機株式会社'),
(79386, 'https://ror.org/04gcg0n58', 'no_lang_code', 1, 'https://ror.org/04gcg0n58 SRL (Japan) 株式会社エスアールエル'),
(79387, 'https://ror.org/03dk6an77', 'en', 1, 'https://ror.org/03dk6an77 Hiroshima International University 広島国際大学'),
(79388, 'https://ror.org/05bqfq123', 'no_lang_code', 1, 'https://ror.org/05bqfq123 Wakamoto Pharmaceutical (Japan) わかもと製薬株式会社'),
(79389, 'https://ror.org/00p5prq49', 'en', 1, 'https://ror.org/00p5prq49 Advanced Institute of Materials Science 公益財団法人特殊無機材料研究所'),
(79390, 'https://ror.org/047k23798', 'no_lang_code', 1, 'https://ror.org/047k23798 AstraZeneca (Japan) アストラゼネカ株式会社'),
(79391, 'https://ror.org/02xnwme44', 'no_lang_code', 1, 'https://ror.org/02xnwme44 Ulvac (Japan) 株式会社アルバック'),
(79392, 'https://ror.org/01sdhz737', 'en', 1, 'https://ror.org/01sdhz737 Institute for Global Environmental Strategies 公益財団法人地球環境戦略研究機関'),
(79393, 'https://ror.org/00qm1pk82', 'en', 1, 'https://ror.org/00qm1pk82 Kobe Kaisei Hospital 医療法人財団神戸海星病院'),
(79394, 'https://ror.org/00g916n77', 'en', 1, 'https://ror.org/00g916n77 Iwate Prefectural Central Hospital 岩手県立中央病院'),
(79395, 'https://ror.org/02b3jn477', 'no_lang_code', 1, 'https://ror.org/02b3jn477 KAN Research Institute 株式会社カン研究所'),
(79396, 'https://ror.org/052ywng59', 'en', 1, 'https://ror.org/052ywng59 Mizutani Foundation for Glycoscience 公益財団法人水谷糖質科学振興財団'),
(79397, 'https://ror.org/023x0pn29', 'en', 1, 'https://ror.org/023x0pn29 Kobe Design University 神戸芸術工科大学'),
(79398, 'https://ror.org/05hv6a803', 'no_lang_code', 1, 'https://ror.org/05hv6a803 Kobelco Eco-Solutions (Japan) 株式会社神鋼環境ソリューション'),
(79399, 'https://ror.org/04r703265', 'no_lang_code', 1, 'https://ror.org/04r703265 Sendai Shakai Hoken Hospital 独立行政法人地域医療機能推進機構仙台病院'),
(79400, 'https://ror.org/000q75d75', 'en', 1, 'https://ror.org/000q75d75 JA長野厚生連長野松代総合病院 Nagano Matsushiro General Hospital'),
(79401, 'https://ror.org/00h5ck659', 'en', 1, 'https://ror.org/00h5ck659 Nippon Medical School Musashi Kosugi Hospital 日本医科大学武蔵小杉病院'),
(79402, 'https://ror.org/054fywr36', 'en', 1, 'https://ror.org/054fywr36 Marine Ecology Research Institute 公益財団法人海洋生物環境研究所'),
(79403, 'https://ror.org/036999x25', 'no_lang_code', 1, 'https://ror.org/036999x25 Advanced Engineering Services (Japan) 株式会社エイ・イー・エス'),
(79404, 'https://ror.org/0155e5d19', 'en', 1, 'https://ror.org/0155e5d19 National Police Academy 警察庁警察大学校'),
(79405, 'https://ror.org/03wrs2f16', 'no_lang_code', 1, 'https://ror.org/03wrs2f16 Sanyo (Japan) 三洋化成工業株式会社'),
(79406, 'https://ror.org/0294epk92', 'en', 1, 'https://ror.org/0294epk92 Japan Chemical Innovation and Inspection Institute 一般財団法人化学研究評価機構'),
(79407, 'https://ror.org/042ser453', 'en', 1, 'https://ror.org/042ser453 Sendai City Hospital 仙台市立病院'),
(79408, 'https://ror.org/04jawh960', 'no_lang_code', 1, 'https://ror.org/04jawh960 Ishida (Japan) 株式会社イシダ'),
(79409, 'https://ror.org/021r6aq66', 'en', 1, 'https://ror.org/021r6aq66 Josai University 城西大学'),
(79410, 'https://ror.org/03weam126', 'no_lang_code', 1, 'https://ror.org/03weam126 Toyo Eiwa Jogakuin 東洋英和女学院大学'),
(79411, 'https://ror.org/03mnvja93', 'en', 1, 'https://ror.org/03mnvja93 Fukui Prefectural Police 福井県警察'),
(79412, 'https://ror.org/01w5vp368', 'en', 1, 'https://ror.org/01w5vp368 Social Welfare Organization Saiseikai Imperial Gift Foundation 社会福祉法人恩賜財団済生会'),
(79413, 'https://ror.org/04yn2he76', 'no_lang_code', 1, 'https://ror.org/04yn2he76 Kobari General Hospital 医療法人社団圭春会小張総合病院'),
(79414, 'https://ror.org/027qqek76', 'en', 1, 'https://ror.org/027qqek76 Japanese Society for Dialysis Therapy 一般社団法人日本透析医学会'),
(79415, 'https://ror.org/01jktjc68', 'no_lang_code', 1, 'https://ror.org/01jktjc68 Omuta hospital 独立行政法人国立病院機構大牟田病院'),
(79416, 'https://ror.org/049d0dt15', 'no_lang_code', 1, 'https://ror.org/049d0dt15 Daido Metal (Japan) 大同メタル工業株式会社'),
(79417, 'https://ror.org/03fpmk626', 'no_lang_code', 1, 'https://ror.org/03fpmk626 JA新潟厚生連佐渡総合病院 Sado General Hospital'),
(79418, 'https://ror.org/016yy9j09', 'no_lang_code', 1, 'https://ror.org/016yy9j09 LTT Bio-Pharma (Japan) 株式会社LTTバイオファーマ'),
(79419, 'https://ror.org/03r7fm174', 'no_lang_code', 1, 'https://ror.org/03r7fm174 KDDI (Japan) KDDI株式会社'),
(79420, 'https://ror.org/058s63h23', 'en', 1, 'https://ror.org/058s63h23 National Rehabilitation Center for Persons with Disabilities 厚生労働省国立障害者リハビリテーションセンター'),
(79421, 'https://ror.org/012322w18', 'en', 1, 'https://ror.org/012322w18 Otsuma Women''s University 大妻女子大学'),
(79422, 'https://ror.org/04q44r852', 'en', 1, 'https://ror.org/04q44r852 Fuji Machine (Japan) 富士機械株式会社'),
(79423, 'https://ror.org/021ph5e41', 'en', 1, 'https://ror.org/021ph5e41 Tokushima University Hospital 徳島大学病院'),
(79424, 'https://ror.org/05cw8ax51', 'no_lang_code', 1, 'https://ror.org/05cw8ax51 Daito Bunka University 大東文化大学'),
(79425, 'https://ror.org/05h0ecd49', 'no_lang_code', 1, 'https://ror.org/05h0ecd49 Gpack (France)'),
(79426, 'https://ror.org/05h4q5j46', 'en', 1, 'https://ror.org/05h4q5j46 Osaka Red Cross Hospital 認可法人日本赤十字社大阪赤十字病院'),
(79427, 'https://ror.org/02xnraw58', 'no_lang_code', 1, 'https://ror.org/02xnraw58 NOF Corporation (Japan) 日油株式会社'),
(79428, 'https://ror.org/02mwgzr84', 'no_lang_code', 1, 'https://ror.org/02mwgzr84 Toyo Kohan (Japan) 東洋鋼鈑株式会社'),
(79429, 'https://ror.org/02d1d3446', 'en', 1, 'https://ror.org/02d1d3446 Nippon Sheet Glass Foundation for Materials Science and Engineering 公益財団法人日本板硝子材料工学助成会'),
(79430, 'https://ror.org/00s614d66', 'no_lang_code', 1, 'https://ror.org/00s614d66 Sanraku Hospital 公益社団法人東京都教職員互助会三楽病院'),
(79431, 'https://ror.org/04wd29d63', 'en', 1, 'https://ror.org/04wd29d63 National Research Institute of Brewing 独立行政法人酒類総合研究所'),
(79432, 'https://ror.org/05f9zrs24', 'en', 1, 'https://ror.org/05f9zrs24 Showa Inan General Hospital 昭和伊南総合病院'),
(79433, 'https://ror.org/04g3avw65', 'en', 1, 'https://ror.org/04g3avw65 Kobe Women''s University 神戸女子大学'),
(79434, 'https://ror.org/01k9wvk47', 'no_lang_code', 1, 'https://ror.org/01k9wvk47 Marutomo (Japan) マルトモ株式会社'),
(79435, 'https://ror.org/03hq4qb06', 'no_lang_code', 1, 'https://ror.org/03hq4qb06 Senju Pharmaceutical (Japan) 千寿製薬株式会社'),
(79436, 'https://ror.org/00c4ncp37', 'en', 1, 'https://ror.org/00c4ncp37 Aichi Human Service Center 愛知県心身障害者コロニー'),
(79437, 'https://ror.org/00qf0yp70', 'en', 1, 'https://ror.org/00qf0yp70 Toho University Omori Medical Center 東邦大学医療センター大森病院'),
(79438, 'https://ror.org/022mcyh62', 'no_lang_code', 1, 'https://ror.org/022mcyh62 Translational Research Informatics Center (Japan) 医療イノベーション推進センター'),
(79439, 'https://ror.org/0543mcr22', 'no_lang_code', 1, 'https://ror.org/0543mcr22 Showa University Fujigaoka Hospital 昭和大学藤が丘病院'),
(79440, 'https://ror.org/04j3mpm77', 'en', 1, 'https://ror.org/04j3mpm77 Ebina General Hospital 社会医療法人ジャパンメディカルアライアンス海老名総合病院'),
(79441, 'https://ror.org/03b55sb49', 'no_lang_code', 1, 'https://ror.org/03b55sb49 Tokai Gakuin University 東海学院大学'),
(79442, 'https://ror.org/027xtma44', 'no_lang_code', 1, 'https://ror.org/027xtma44 GeneCare Research Institute (Japan) 株式会社ジーンケア研究所'),
(79443, 'https://ror.org/05qvatg15', 'no_lang_code', 1, 'https://ror.org/05qvatg15 Oncolys BioPharma (Japan) オンコリスバイオファーマ株式会社'),
(79444, 'https://ror.org/01x53gx71', 'no_lang_code', 1, 'https://ror.org/01x53gx71 StaGen (Japan) 株式会社スタージェン'),
(79445, 'https://ror.org/01tx1rq25', 'en', 1, 'https://ror.org/01tx1rq25 Japan Sport Council 独立行政法人日本スポーツ振興センター'),
(79446, 'https://ror.org/00yzvve44', 'no_lang_code', 1, 'https://ror.org/00yzvve44 Nippon Paper Industries (Japan) 日本製紙株式会社'),
(79447, 'https://ror.org/0196vdc40', 'en', 1, 'https://ror.org/0196vdc40 Nakatomi Foundation 公益財団法人中冨健康科学振興財団'),
(79448, 'https://ror.org/018nb9n34', 'no_lang_code', 1, 'https://ror.org/018nb9n34 IHI Corporation (Japan) 株式会社IHI'),
(79449, 'https://ror.org/03savr706', 'en', 1, 'https://ror.org/03savr706 Temple University, Japan テンプル大学'),
(79450, 'https://ror.org/00w1zvy92', 'en', 1, 'https://ror.org/00w1zvy92 Tokyo Metropolitan Institute of Public Health 東京都健康安全研究センター'),
(79451, 'https://ror.org/000w7cv19', 'no_lang_code', 1, 'https://ror.org/000w7cv19 TOTO株式会社 Toto (Japan)'),
(79452, 'https://ror.org/032qqvq76', 'en', 1, 'https://ror.org/032qqvq76 Cardiovascular Institute Hospital 公益財団法人心臓血管研究所'),
(79453, 'https://ror.org/01qwa2z73', 'en', 1, 'https://ror.org/01qwa2z73 Osaka Prefectural Institute of Public Health 大阪府立公衆衛生研究所'),
(79454, 'https://ror.org/030vbmf58', 'en', 1, 'https://ror.org/030vbmf58 RIKEN Advanced Science Institute 国立研究開発法人理化学研究所'),
(79455, 'https://ror.org/04eekx875', 'en', 1, 'https://ror.org/04eekx875 Kansai Research Foundation for Technology Promotion 公益財団法人関西エネルギー・リサイクル科学研究振興財団'),
(79456, 'https://ror.org/057pha386', 'en', 1, 'https://ror.org/057pha386 Kurume Shin-Ai Women''s College 久留米信愛短期大学'),
(79457, 'https://ror.org/02c7akf81', 'en', 1, 'https://ror.org/02c7akf81 Systems Biology Institute 特定非営利活動法人システム・バイオロジー研究機構'),
(79458, 'https://ror.org/01kqdxr19', 'en', 1, 'https://ror.org/01kqdxr19 Gifu University Hospital 岐阜大学医学部附属病院'),
(79459, 'https://ror.org/02wm03a77', 'en', 1, 'https://ror.org/02wm03a77 Hanazono University 花園大学'),
(79460, 'https://ror.org/03q11y497', 'en', 1, 'https://ror.org/03q11y497 Japan Community Healthcare Organization 独立行政法人地域医療機能推進機構'),
(79461, 'https://ror.org/04prxcf74', 'en', 1, 'https://ror.org/04prxcf74 Japanese Red Cross Narita Hospital 認可法人日本赤十字社成田赤十字病院'),
(79462, 'https://ror.org/01g4se167', 'no_lang_code', 1, 'https://ror.org/01g4se167 Nippon Seiki (Japan) 日本精機株式会社'),
(79463, 'https://ror.org/03423rs03', 'no_lang_code', 1, 'https://ror.org/03423rs03 PhoenixBio (Japan) 株式会社フェニックスバイオ'),
(79464, 'https://ror.org/03k95ve17', 'en', 1, 'https://ror.org/03k95ve17 Yokohama City University Medical Center 横浜市立大学附属市民総合医療センター'),
(79465, 'https://ror.org/01kz55g98', 'no_lang_code', 1, 'https://ror.org/01kz55g98 Toppan (Japan) 凸版印刷株式会社'),
(79466, 'https://ror.org/00d3mr981', 'en', 1, 'https://ror.org/00d3mr981 Fukuoka University Hospital 福岡大学病院'),
(79467, 'https://ror.org/05fz57f05', 'en', 1, 'https://ror.org/05fz57f05 Kawasaki Medical School Hospital 川崎医科大学附属病院'),
(79468, 'https://ror.org/02yemx219', 'no_lang_code', 1, 'https://ror.org/02yemx219 Ebara (Japan) 株式会社荏原製作所'),
(79469, 'https://ror.org/01wkx4e61', 'en', 1, 'https://ror.org/01wkx4e61 NARD Institute 株式会社ナード研究所'),
(79470, 'https://ror.org/02jmtea33', 'no_lang_code', 1, 'https://ror.org/02jmtea33 PNPE Company (Iran) پیشگام نقشهپرداز اشراق'),
(79471, 'https://ror.org/05ggzej07', 'no_lang_code', 1, 'https://ror.org/05ggzej07 Secom (Japan) セコム株式会社'),
(79472, 'https://ror.org/01z4jpw82', 'no_lang_code', 1, 'https://ror.org/01z4jpw82 Rigaku (Japan) 株式会社リガク'),
(79473, 'https://ror.org/04qknqs93', 'no_lang_code', 1, 'https://ror.org/04qknqs93 JIMRO (Japan) 株式会社JIMRO'),
(79474, 'https://ror.org/00czkns73', 'en', 1, 'https://ror.org/00czkns73 St Mary''s Hospital 社会医療法人雪の聖母会聖マリア病院'),
(79475, 'https://ror.org/03yvj0n92', 'no_lang_code', 1, 'https://ror.org/03yvj0n92 Mitsuboshi Belting (Japan) 三ツ星ベルト株式会社'),
(79476, 'https://ror.org/02qqez544', 'en', 1, 'https://ror.org/02qqez544 Amada Foundation 公益財団法人天田財団'),
(79477, 'https://ror.org/00e5yzw53', 'en', 1, 'https://ror.org/00e5yzw53 St. Luke''s International University 聖路加国際大学'),
(79478, 'https://ror.org/02s3d9n87', 'no_lang_code', 1, 'https://ror.org/02s3d9n87 Nippon Shokubai (Japan) 株式会社日本触媒'),
(79479, 'https://ror.org/02g9t7f35', 'en', 1, 'https://ror.org/02g9t7f35 Spinal Injuries Center 独立行政法人労働者健康安全機構総合せき損センター'),
(79480, 'https://ror.org/016e5r936', 'en', 1, 'https://ror.org/016e5r936 Japan Real Estate Institute 一般財団法人日本不動産研究所'),
(79481, 'https://ror.org/01h48bs12', 'en', 1, 'https://ror.org/01h48bs12 Hiroshima Red Cross Hospital & Atomic-bomb Survivors Hospital 認可法人日本赤十字社広島赤十字・原爆病院'),
(79482, 'https://ror.org/05qsqt662', 'no_lang_code', 1, 'https://ror.org/05qsqt662 KDDI Research (Japan) 株式会社KDDI総合研究所'),
(79483, 'https://ror.org/007f5s288', 'en', 1, 'https://ror.org/007f5s288 Cabinet Office 内閣府'),
(79484, 'https://ror.org/00pafka32', 'en', 1, 'https://ror.org/00pafka32 Wayo Women''s University 和洋女子大学'),
(79485, 'https://ror.org/00h7gyj76', 'no_lang_code', 1, 'https://ror.org/00h7gyj76 Sumitomo Metal Mining (Japan) 住友金属鉱山株式会社'),
(79486, 'https://ror.org/056tqzr82', 'en', 1, 'https://ror.org/056tqzr82 Kokura Memorial Hospital 一般財団法人平成紫川会小倉記念病院'),
(79487, 'https://ror.org/03v40yp04', 'en', 1, 'https://ror.org/03v40yp04 Corporation for Production and Research of Laboratory Primates 一般社団法人予防衛生協会'),
(79488, 'https://ror.org/00m44rf61', 'en', 1, 'https://ror.org/00m44rf61 New Tokyo Hospital 医療法人社団誠馨会新東京病院'),
(79489, 'https://ror.org/000znbq58', 'no_lang_code', 1, 'https://ror.org/000znbq58 OncoTherapy Science (Japan) オンコセラピー・サイエンス株式会社'),
(79490, 'https://ror.org/01nmpj461', 'en', 1, 'https://ror.org/01nmpj461 Sumitomo Foundation 公益財団法人住友財団'),
(79491, 'https://ror.org/0316d5p98', 'no_lang_code', 1, 'https://ror.org/0316d5p98 Azbil (Japan) アズビル株式会社'),
(79492, 'https://ror.org/02ahcqm31', 'en', 1, 'https://ror.org/02ahcqm31 Misawa City Hospital 三沢市立三沢病院'),
(79493, 'https://ror.org/05vrdt216', 'en', 1, 'https://ror.org/05vrdt216 Hamamatsu Medical Center 公益財団法人浜松市医療公社浜松医療センター'),
(79494, 'https://ror.org/05vjx2089', 'en', 1, 'https://ror.org/05vjx2089 Laboratory of Racing Chemistry 公益財団法人競走馬理化学研究所'),
(79495, 'https://ror.org/0273vqz67', 'no_lang_code', 1, 'https://ror.org/0273vqz67 Naruto, Tokushima Prefecture hospital 地方独立行政法人徳島県鳴門病院'),
(79496, 'https://ror.org/05rq8j339', 'en', 1, 'https://ror.org/05rq8j339 Jichi Medical University Saitama Medical Center 自治医科大学附属さいたま医療センター'),
(79497, 'https://ror.org/02x96h768', 'en', 1, 'https://ror.org/02x96h768 Kumamoto Prefectural Educaiton Center 熊本県立教育センター'),
(79498, 'https://ror.org/00bavmx73', 'no_lang_code', 1, 'https://ror.org/00bavmx73 Nippon Flour Mills (Japan) 日本製粉株式会社'),
(79499, 'https://ror.org/01fzw3g31', 'no_lang_code', 1, 'https://ror.org/01fzw3g31 Chikamori Hospital 社会医療法人近森会近森病院'),
(79500, 'https://ror.org/007ge8322', 'en', 1, 'https://ror.org/007ge8322 Kumamoto City Hospital 熊本市立熊本市民病院'),
(79501, 'https://ror.org/01mbdhx05', 'no_lang_code', 1, 'https://ror.org/01mbdhx05 Saiseikai Niigata Daini Hospital 社会福祉法人恩賜財団済生会新潟第二病院'),
(79502, 'https://ror.org/04y6ges66', 'en', 1, 'https://ror.org/04y6ges66 Nippon Medical School Hospital 日本医科大学付属病院'),
(79503, 'https://ror.org/02w1jan86', 'en', 1, 'https://ror.org/02w1jan86 Japanese Society of Anesthesiologist 公益社団法人日本麻酔科学会'),
(79504, 'https://ror.org/000gm9x69', 'en', 1, 'https://ror.org/000gm9x69 National Institute of Technology, Hakodate College 函館工業高等専門学校'),
(79505, 'https://ror.org/00ecg5g90', 'no_lang_code', 1, 'https://ror.org/00ecg5g90 Seirei Mikatabara General Hospital 社会福祉法人聖隷福祉事業団総合病院聖隷三方原病院'),
(79506, 'https://ror.org/04tew3n82', 'no_lang_code', 1, 'https://ror.org/04tew3n82 Saiseikai Yokohama Eastern Hospital 社会福祉法人恩賜財団済生会横浜市東部病院'),
(79507, 'https://ror.org/0266t0867', 'no_lang_code', 1, 'https://ror.org/0266t0867 Ogaki Municipal Hospital 大垣市民病院'),
(79508, 'https://ror.org/044jdke57', 'en', 1, 'https://ror.org/044jdke57 National Institute of Technology and Evaluation 独立行政法人製品評価技術基盤機構'),
(79509, 'https://ror.org/03xgxw153', 'no_lang_code', 1, 'https://ror.org/03xgxw153 Subaru (Japan) 株式会社SUBARU'),
(79510, 'https://ror.org/04g0m2d49', 'en', 1, 'https://ror.org/04g0m2d49 Juntendo University Hospital 順天堂大学医学部附属順天堂医院'),
(79511, 'https://ror.org/03a2hf118', 'en', 1, 'https://ror.org/03a2hf118 Shinshu University Hospital 信州大学医学部附属病院'),
(79512, 'https://ror.org/01vpa9c32', 'en', 1, 'https://ror.org/01vpa9c32 Ehime University Hospital 愛媛大学医学部附属病院'),
(79513, 'https://ror.org/055tm7f07', 'en', 1, 'https://ror.org/055tm7f07 Ministry of Economy, Trade and Industry 経済産業省'),
(79514, 'https://ror.org/00105n552', 'en', 1, 'https://ror.org/00105n552 Noda Institute for Scientific Research 公益財団法人野田産業科学研究所'),
(79515, 'https://ror.org/01ta2g450', 'en', 1, 'https://ror.org/01ta2g450 National Institute of Technology, Kisarazu College 木更津工業高等専門学校'),
(79516, 'https://ror.org/05b6qj426', 'en', 1, 'https://ror.org/05b6qj426 Chemicals Evaluation and Research Institute 一般財団法人化学物質評価研究機構'),
(79517, 'https://ror.org/04a2npp96', 'en', 1, 'https://ror.org/04a2npp96 Toyama University Hospital 富山大学附属病院'),
(79518, 'https://ror.org/007pxvx88', 'en', 1, 'https://ror.org/007pxvx88 Daiwa Securities Health Foundation 公益財団法人大和証券ヘルス財団'),
(79519, 'https://ror.org/01pnpvk61', 'en', 1, 'https://ror.org/01pnpvk61 Kyushu Hospital 独立行政法人地域医療機能推進機構九州病院'),
(79520, 'https://ror.org/04h82h717', 'en', 1, 'https://ror.org/04h82h717 International College for Postgraduate Buddhist Studies 国際仏教学大学院大学'),
(79521, 'https://ror.org/008f5wa49', 'no_lang_code', 1, 'https://ror.org/008f5wa49 Nichias (Japan) ニチアス株式会社'),
(79522, 'https://ror.org/021m4ta35', 'en', 1, 'https://ror.org/021m4ta35 Koen Gakuen Women''s Junior College 光塩学園女子短期大学'),
(79523, 'https://ror.org/01j6sxy67', 'no_lang_code', 1, 'https://ror.org/01j6sxy67 GlaxoSmithKline (Japan) グラクソ・スミスクライン株式会社'),
(79524, 'https://ror.org/034dpjp44', 'no_lang_code', 1, 'https://ror.org/034dpjp44 Matsutani (Japan) 松谷化学工業株式会社'),
(79525, 'https://ror.org/03jvvjr23', 'en', 1, 'https://ror.org/03jvvjr23 Daiichi University of Pharmacy 第一薬科大学'),
(79526, 'https://ror.org/0483ewd92', 'no_lang_code', 1, 'https://ror.org/0483ewd92 Inpex (Japan) 国際石油開発帝石株式会社'),
(79527, 'https://ror.org/04915qk43', 'en', 1, 'https://ror.org/04915qk43 IBM Research - Tokyo 日本アイ・ビー・エム株式会社'),
(79528, 'https://ror.org/00kf4vm79', 'en', 1, 'https://ror.org/00kf4vm79 National Institute of Technology, Ichinoseki College 一関工業高等専門学校'),
(79529, 'https://ror.org/04r4pq051', 'en', 1, 'https://ror.org/04r4pq051 Hattori Hokokai Foundation 公益財団法人服部報公会'),
(79530, 'https://ror.org/041y80p71', 'no_lang_code', 1, 'https://ror.org/041y80p71 Dow Chemical (Japan) ダウ・ケミカル日本株式会社'),
(79531, 'https://ror.org/05d4dac15', 'en', 1, 'https://ror.org/05d4dac15 Institute of Applied Biochemistry 公益財団法人応用生化学研究所'),
(79532, 'https://ror.org/03j480g22', 'no_lang_code', 1, 'https://ror.org/03j480g22 Sega (Japan) 株式会社セガ'),
(79533, 'https://ror.org/0563dhn67', 'en', 1, 'https://ror.org/0563dhn67 Harasanshin Hospital 医療法人原三信病院'),
(79534, 'https://ror.org/02ge40a94', 'en', 1, 'https://ror.org/02ge40a94 Japan Institute of Plant Maintenance 公益社団法人日本プラントメンテナンス協会'),
(79535, 'https://ror.org/048txfb61', 'en', 1, 'https://ror.org/048txfb61 Nagano Children''s Hospital 長野県立こども病院'),
(79536, 'https://ror.org/04dnmj419', 'en', 1, 'https://ror.org/04dnmj419 Japan Kidney Foundation 公益財団法人日本腎臓財団'),
(79537, 'https://ror.org/05fr04091', 'no_lang_code', 1, 'https://ror.org/05fr04091 Riso Kagaku (Japan) 理想科学工業株式会社'),
(79538, 'https://ror.org/015hppy16', 'en', 1, 'https://ror.org/015hppy16 Showa General Hospital 公立昭和病院'),
(79539, 'https://ror.org/05x23rx38', 'en', 1, 'https://ror.org/05x23rx38 Shizuoka Children''s Hospital 静岡県立こども病院'),
(79540, 'https://ror.org/03mv39058', 'en', 1, 'https://ror.org/03mv39058 Foundation for Advanced Studies on International Development 一般財団法人国際開発機構'),
(79541, 'https://ror.org/03h954b39', 'en', 1, 'https://ror.org/03h954b39 Tsuruga Nursing University 敦賀市立看護大学'),
(79542, 'https://ror.org/02kxw8q35', 'no_lang_code', 1, 'https://ror.org/02kxw8q35 Sumitomo Bakelite (Japan) 住友ベークライト株式会社'),
(79543, 'https://ror.org/03j9hxf30', 'no_lang_code', 1, 'https://ror.org/03j9hxf30 Nissin Kogyo (Japan) 日信工業株式会社'),
(79544, 'https://ror.org/057bx9y85', 'en', 1, 'https://ror.org/057bx9y85 Tsukuba University of Technology 筑波技術大学'),
(79545, 'https://ror.org/04q0b3c27', 'en', 1, 'https://ror.org/04q0b3c27 National Mie Hospital 独立行政法人国立病院機構三重病院'),
(79546, 'https://ror.org/03yr4aq68', 'en', 1, 'https://ror.org/03yr4aq68 Industrial Research Institute of Ishikawa 石川県工業試験場'),
(79547, 'https://ror.org/0491dch03', 'en', 1, 'https://ror.org/0491dch03 Jikei University Kashiwa hospital 東京慈恵会医科大学附属柏病院'),
(79548, 'https://ror.org/00xs4kt25', 'en', 1, 'https://ror.org/00xs4kt25 Gifu City Women''s College 岐阜市立女子短期大学'),
(79549, 'https://ror.org/0423xty45', 'en', 1, 'https://ror.org/0423xty45 National Hospital Organization Miyazaki Higashi Hospital 独立行政法人国立病院機構宮崎東病院'),
(79550, 'https://ror.org/01fmtas32', 'en', 1, 'https://ror.org/01fmtas32 Radiation Effects Research Foundation 公益財団法人放射線影響研究所'),
(79551, 'https://ror.org/028mhrr87', 'no_lang_code', 1, 'https://ror.org/028mhrr87 SBI Pharmaceuticals (Japan) SBIファーマ株式会社'),
(79552, 'https://ror.org/05f9vxd34', 'no_lang_code', 1, 'https://ror.org/05f9vxd34 Enplas (Japan) 株式会社エンプラス'),
(79553, 'https://ror.org/036n53h90', 'no_lang_code', 1, 'https://ror.org/036n53h90 Nihon Unisys (Japan) 日本ユニシス株式会社'),
(79554, 'https://ror.org/02tsjqn73', 'en', 1, 'https://ror.org/02tsjqn73 Nagaoka Red Cross Hospital 認可法人日本赤十字社長岡赤十字病院'),
(79555, 'https://ror.org/035yy6m30', 'no_lang_code', 1, 'https://ror.org/035yy6m30 Iwatani Naoji Foundation 公益財団法人岩谷直治記念財団'),
(79556, 'https://ror.org/04fyc4m54', 'en', 1, 'https://ror.org/04fyc4m54 Japanese Red Cross Kanazawa Hospital 認可法人日本赤十字社金沢赤十字病院'),
(79557, 'https://ror.org/01x29j481', 'no_lang_code', 1, 'https://ror.org/01x29j481 Samsung (Japan) 株式会社サムスン日本研究所'),
(79558, 'https://ror.org/020ff7c13', 'en', 1, 'https://ror.org/020ff7c13 Kurita Water and Environment Foundation 公益財団法人クリタ水・環境科学振興財団'),
(79559, 'https://ror.org/01fe6f215', 'en', 1, 'https://ror.org/01fe6f215 Ohu University 奥羽大学'),
(79560, 'https://ror.org/037p13728', 'no_lang_code', 1, 'https://ror.org/037p13728 Tohoku Rosai Hospital 独立行政法人労働者健康安全機構東北労災病院'),
(79561, 'https://ror.org/0126xah18', 'en', 1, 'https://ror.org/0126xah18 Chiba University Hospital 千葉大学医学部附属病院'),
(79562, 'https://ror.org/00p4am161', 'no_lang_code', 1, 'https://ror.org/00p4am161 SCREEN (Japan) 株式会社SCREENホールディングス'),
(79563, 'https://ror.org/01bb68v37', 'en', 1, 'https://ror.org/01bb68v37 Anan National College of Technology 阿南工業高等専門学校'),
(79564, 'https://ror.org/03p9nrq57', 'no_lang_code', 1, 'https://ror.org/03p9nrq57 Hodogaya Chemical (Japan) 保土谷化学工業株式会社'),
(79565, 'https://ror.org/02fbb9504', 'no_lang_code', 1, 'https://ror.org/02fbb9504 Evolving Nano Process Infrastructure Development Center (Japan) 株式会社先端ナノプロセス基盤開発センター'),
(79566, 'https://ror.org/03adh2020', 'no_lang_code', 1, 'https://ror.org/03adh2020 Kure Kyosai Hospital 国家公務員共済組合連合会呉共済病院');
INSERT INTO `rors` VALUES
(79567, 'https://ror.org/05av30w60', 'no_lang_code', 1, 'https://ror.org/05av30w60 Fuji Oil (Japan) 不二製油株式会社'),
(79568, 'https://ror.org/02ay4fy51', 'no_lang_code', 1, 'https://ror.org/02ay4fy51 Osaka Ekisaikai Hospital 大阪掖済会病院'),
(79569, 'https://ror.org/02vhz6861', 'no_lang_code', 1, 'https://ror.org/02vhz6861 Monohakobi Technology Institute (Japan) 株式会社MTI'),
(79570, 'https://ror.org/032t7yz93', 'en', 1, 'https://ror.org/032t7yz93 Louis Pasteur Center for Medical Research 公益財団法人ルイ・パストゥール医学研究センター'),
(79571, 'https://ror.org/01vj3cz23', 'en', 1, 'https://ror.org/01vj3cz23 Dokkyo University 獨協大学'),
(79572, 'https://ror.org/01azr9532', 'no_lang_code', 1, 'https://ror.org/01azr9532 Itoham Foods (Japan) 伊藤ハム株式会社'),
(79573, 'https://ror.org/009x65438', 'en', 1, 'https://ror.org/009x65438 Mukogawa Women''s University 武庫川女子大学'),
(79574, 'https://ror.org/03b0x6j22', 'en', 1, 'https://ror.org/03b0x6j22 Niigata University Medical and Dental Hospital 新潟大学医歯学総合病院'),
(79575, 'https://ror.org/04yvd9h56', 'en', 1, 'https://ror.org/04yvd9h56 Kanagawa Academy of Science and Technology 公益財団法人神奈川科学技術アカデミー'),
(79576, 'https://ror.org/03wneh532', 'no_lang_code', 1, 'https://ror.org/03wneh532 Tezukayama Gakuin University 帝塚山学院大学'),
(79577, 'https://ror.org/0406qcr55', 'en', 1, 'https://ror.org/0406qcr55 Japanese Red Cross Hadano Hospital 認可法人日本赤十字社秦野赤十字病院'),
(79578, 'https://ror.org/041jr6h53', 'no_lang_code', 1, 'https://ror.org/041jr6h53 OSG (Japan) オーエスジー株式会社'),
(79579, 'https://ror.org/01g8yfk02', 'en', 1, 'https://ror.org/01g8yfk02 Kobayasi Institute of Physical Research 一般財団法人小林理学研究所'),
(79580, 'https://ror.org/03qb9e113', 'en', 1, 'https://ror.org/03qb9e113 Tomishiro Central Hospital 社会医療法人友愛会豊見城中央病院'),
(79581, 'https://ror.org/05nr5jj06', 'en', 1, 'https://ror.org/05nr5jj06 Yamada Science Foundation 公益財団法人山田科学振興財団'),
(79582, 'https://ror.org/00yvz6462', 'en', 1, 'https://ror.org/00yvz6462 Japan Pediatric Society 公益社団法人日本小児科学会'),
(79583, 'https://ror.org/01nxdh755', 'en', 1, 'https://ror.org/01nxdh755 Towada City Hospital 十和田市立中央病院'),
(79584, 'https://ror.org/05v2ymc15', 'no_lang_code', 1, 'https://ror.org/05v2ymc15 Nisshin Steel (Japan) 日新製鋼株式会社'),
(79585, 'https://ror.org/03qbwe721', 'en', 1, 'https://ror.org/03qbwe721 Osaka Mishima Emergency and Critical Care Center 公益財団法人大阪府三島救急医療センター'),
(79586, 'https://ror.org/0544za304', 'no_lang_code', 1, 'https://ror.org/0544za304 Koito Manufacturing (Japan) 株式会社小糸製作所'),
(79587, 'https://ror.org/04fn52t03', 'en', 1, 'https://ror.org/04fn52t03 Graduate School of Health Care Sciences, Jikei Institute 滋慶医療科学大学院大学'),
(79588, 'https://ror.org/03krwcf90', 'no_lang_code', 1, 'https://ror.org/03krwcf90 Saiseikai Matsuyama Hospital 社会福祉法人恩賜財団済生会松山病院'),
(79589, 'https://ror.org/03gv2xk61', 'en', 1, 'https://ror.org/03gv2xk61 RIKEN Center for Emergent Matter Science 国立研究開発法人理化学研究所創発物性科学研究センター'),
(79590, 'https://ror.org/05m8dye22', 'en', 1, 'https://ror.org/05m8dye22 Kagawa Prefectural Central Hospital 香川県立中央病院'),
(79591, 'https://ror.org/04b1np478', 'en', 1, 'https://ror.org/04b1np478 National Institute of Technology, Niihama College 新居浜工業高等専門学校'),
(79592, 'https://ror.org/02bwkwm60', 'en', 1, 'https://ror.org/02bwkwm60 Hiroshima Institute of Technology 広島工業大学'),
(79593, 'https://ror.org/04mtha847', 'no_lang_code', 1, 'https://ror.org/04mtha847 Aisan (Japan) 愛三工業株式会社'),
(79594, 'https://ror.org/045fvx862', 'no_lang_code', 1, 'https://ror.org/045fvx862 Yamato Municipal Hospital 大和市立病院'),
(79595, 'https://ror.org/03e2s4679', 'no_lang_code', 1, 'https://ror.org/03e2s4679 Ihara Chemical Industry (Japan) イハラケミカル工業株式会社'),
(79596, 'https://ror.org/01v07hj96', 'no_lang_code', 1, 'https://ror.org/01v07hj96 Sanken Electric (Japan) サンケン電気株式会社'),
(79597, 'https://ror.org/05ffy6g34', 'en', 1, 'https://ror.org/05ffy6g34 Kyushu Kyoritsu University 九州共立大学'),
(79598, 'https://ror.org/011n7v210', 'en', 1, 'https://ror.org/011n7v210 Shimane Prefectural Police 島根県警察'),
(79599, 'https://ror.org/01z7s7j95', 'en', 1, 'https://ror.org/01z7s7j95 Japan Prize Foundation 公益財団法人国際科学技術財団'),
(79600, 'https://ror.org/003jtew32', 'en', 1, 'https://ror.org/003jtew32 Japan Hospital Association 一般社団法人日本病院会'),
(79601, 'https://ror.org/05kd3f793', 'en', 1, 'https://ror.org/05kd3f793 Nagasaki University Hospital 長崎大学病院'),
(79602, 'https://ror.org/02fzdct21', 'en', 1, 'https://ror.org/02fzdct21 Kindai University Sakai Hospital 近畿大学医学部堺病院'),
(79603, 'https://ror.org/029kvcs29', 'en', 1, 'https://ror.org/029kvcs29 National Institute of Technology, Akashi College 明石工業高等専門学校'),
(79604, 'https://ror.org/02cq51909', 'en', 1, 'https://ror.org/02cq51909 Sendai Medical Center 独立行政法人国立病院機構仙台医療センター'),
(79605, 'https://ror.org/0457h8c53', 'no_lang_code', 1, 'https://ror.org/0457h8c53 Shizuoka General Hospital 静岡県立総合病院'),
(79606, 'https://ror.org/03ks0tt05', 'no_lang_code', 1, 'https://ror.org/03ks0tt05 JSR (Japan) JSR株式会社'),
(79607, 'https://ror.org/03zmwf676', 'no_lang_code', 1, 'https://ror.org/03zmwf676 Daifuku (Japan) 株式会社ダイフク'),
(79608, 'https://ror.org/00bv64a69', 'en', 1, 'https://ror.org/00bv64a69 Japanese Foundation For Cancer Research 公益財団法人がん研究会'),
(79609, 'https://ror.org/054wa3824', 'no_lang_code', 1, 'https://ror.org/054wa3824 SATO (Japan) サトーホールディングス株式会社'),
(79610, 'https://ror.org/00kcd6x60', 'en', 1, 'https://ror.org/00kcd6x60 Tohoku University Hospital 東北大学病院'),
(79611, 'https://ror.org/04kp2z675', 'en', 1, 'https://ror.org/04kp2z675 National Institute of Technology, Gunma College 群馬工業高等専門学校'),
(79612, 'https://ror.org/048xnxc75', 'en', 1, 'https://ror.org/048xnxc75 Gunma Prefectural College of Health Sciences 群馬県立県民健康科学大学'),
(79613, 'https://ror.org/00b6s9f18', 'en', 1, 'https://ror.org/00b6s9f18 Osaka National Hospital 独立行政法人国立病院機構大阪医療センター'),
(79614, 'https://ror.org/049840617', 'no_lang_code', 1, 'https://ror.org/049840617 Max (Japan) マックス株式会社'),
(79615, 'https://ror.org/04yf19a15', 'en', 1, 'https://ror.org/04yf19a15 Koyasan University 高野山大学'),
(79616, 'https://ror.org/02dgmxb18', 'en', 1, 'https://ror.org/02dgmxb18 Yamaguchi University Hospital 山口大学医学部附属病院'),
(79617, 'https://ror.org/037x16a12', 'no_lang_code', 1, 'https://ror.org/037x16a12 Kaketsuken (Japan) 一般財団法人化学及血清療法研究所'),
(79618, 'https://ror.org/013rvtk45', 'en', 1, 'https://ror.org/013rvtk45 Kochi Medical School Hospital 高知大学医学部附属病院'),
(79619, 'https://ror.org/02wz7nx80', 'no_lang_code', 1, 'https://ror.org/02wz7nx80 Kyoto Biken Laboratories (Japan) 株式会社微生物化学研究所'),
(79620, 'https://ror.org/036pfyf12', 'no_lang_code', 1, 'https://ror.org/036pfyf12 Seirei Hamamatsu General Hospital 社会福祉法人聖隷福祉事業団総合病院聖隷浜松病院'),
(79621, 'https://ror.org/00649xp69', 'no_lang_code', 1, 'https://ror.org/00649xp69 Towa Pharmaceutical (Japan) 東和薬品株式会社'),
(79622, 'https://ror.org/05kq1z994', 'en', 1, 'https://ror.org/05kq1z994 Gunma University Hospital 群馬大学医学部附属病院'),
(79623, 'https://ror.org/00xsdn005', 'en', 1, 'https://ror.org/00xsdn005 Kanazawa University Hospital 金沢大学附属病院'),
(79624, 'https://ror.org/04rzagz55', 'no_lang_code', 1, 'https://ror.org/04rzagz55 Utano Hospital 独立行政法人国立病院機構宇多野病院'),
(79625, 'https://ror.org/03xrg8731', 'no_lang_code', 1, 'https://ror.org/03xrg8731 Kansai Electric Power (Japan) 関西電力株式会社'),
(79626, 'https://ror.org/047z4ys07', 'no_lang_code', 1, 'https://ror.org/047z4ys07 Caterpillar (Japan) キャタピラージャパン株式会社'),
(79627, 'https://ror.org/04rwp2162', 'es', 1, 'https://ror.org/04rwp2162 Centro de Astrofísica y Tecnologías Afines'),
(79628, 'https://ror.org/05pn4yv70', 'en', 1, 'https://ror.org/05pn4yv70 Beni-Suef University جامعة بني سويف'),
(79629, 'https://ror.org/03snqfa66', 'en', 1, 'https://ror.org/03snqfa66 Zayed University جامعة زايد دانشگاه زاید'),
(79630, 'https://ror.org/0393v2x22', 'sv', 1, 'https://ror.org/0393v2x22 Norrbottens läns Landsting'),
(79631, 'https://ror.org/05yb6xa82', 'en', 1, 'https://ror.org/05yb6xa82 Myelin Repair Foundation'),
(79632, 'https://ror.org/03j7rgg33', 'en', 1, 'https://ror.org/03j7rgg33 Natural Resources Conservation Service'),
(79633, 'https://ror.org/001h8tm56', 'en', 1, 'https://ror.org/001h8tm56 Canadian Academic Accounting Association'),
(79634, 'https://ror.org/01rm6hc52', 'en', 1, 'https://ror.org/01rm6hc52 Royal Aeronautical Society'),
(79635, 'https://ror.org/00td68a17', 'da', 1, 'https://ror.org/00td68a17 Bispebjerg Hospital'),
(79636, 'https://ror.org/05j5a1a74', 'en', 1, 'https://ror.org/05j5a1a74 Race Forward'),
(79637, 'https://ror.org/053r20n13', 'en', 1, 'https://ror.org/053r20n13 Ragon Institute of MGH, MIT and Harvard'),
(79638, 'https://ror.org/03awxj939', 'en', 1, 'https://ror.org/03awxj939 Shanghai Institute of Planned Parenthood Research 上海市计划生育科学研究所'),
(79639, 'https://ror.org/00j5bwe91', 'es', 1, 'https://ror.org/00j5bwe91 Clínica Las Condes'),
(79640, 'https://ror.org/01yb3sb52', 'en', 1, 'https://ror.org/01yb3sb52 Aerospace Center Hospital 航天中心医院'),
(79641, 'https://ror.org/04jtt0w10', 'en', 1, 'https://ror.org/04jtt0w10 University Grants Commission of Bangladesh বিশ্ববিদ্যালয় মঞ্জুরী কমিশন'),
(79642, 'https://ror.org/02vdmpp49', 'en', 1, 'https://ror.org/02vdmpp49 Microscopy Society of America'),
(79643, 'https://ror.org/00ramkd50', 'en', 1, 'https://ror.org/00ramkd50 Southern Connecticut State University'),
(79644, 'https://ror.org/04c8eg608', 'en', 1, 'https://ror.org/04c8eg608 Dalian Medical University 大连医科大学'),
(79645, 'https://ror.org/03wf6h922', 'en', 1, 'https://ror.org/03wf6h922 Government of Nunavut'),
(79646, 'https://ror.org/01rgwy395', 'en', 1, 'https://ror.org/01rgwy395 Northwest Kidney Centers'),
(79647, 'https://ror.org/0474bqk45', 'en', 1, 'https://ror.org/0474bqk45 California Public Utilities Commission'),
(79648, 'https://ror.org/04ww21r56', 'en', 1, 'https://ror.org/04ww21r56 Niigata University 新潟大学'),
(79649, 'https://ror.org/01b2f6h61', 'en', 1, 'https://ror.org/01b2f6h61 Novosibirsk State Technical University Новосибирский государственный технический университет'),
(79650, 'https://ror.org/03sxpbt26', 'en', 1, 'https://ror.org/03sxpbt26 Institute of Applied Physics and Computational Mathematics 北京应用物理与计算数学研究所'),
(79651, 'https://ror.org/04n3z6710', 'de', 1, 'https://ror.org/04n3z6710 Deutsche Alzheimer Gesellschaft'),
(79652, 'https://ror.org/0244rem06', 'en', 1, 'https://ror.org/0244rem06 Shinshu University 信州大学'),
(79653, 'https://ror.org/028dyak29', 'en', 1, 'https://ror.org/028dyak29 Aja University of Medical Sciences دانشگاه علوم پزشکی آجا'),
(79654, 'https://ror.org/04j3rah08', 'en', 1, 'https://ror.org/04j3rah08 Society for Developmental and Behavioral Pediatrics'),
(79655, 'https://ror.org/03k3c2t50', 'en', 1, 'https://ror.org/03k3c2t50 Universidad de Alaska Anchorage University of Alaska Anchorage Université de l''alaska à anchorage'),
(79656, 'https://ror.org/00g1p6865', 'en', 1, 'https://ror.org/00g1p6865 Brien Holden Vision Institute'),
(79657, 'https://ror.org/00ads0y69', 'es', 1, 'https://ror.org/00ads0y69 Universidad Autónoma Agraria Antonio Narro'),
(79658, 'https://ror.org/02fq2px14', 'en', 1, 'https://ror.org/02fq2px14 Jawaharlal Institute of Post Graduate Medical Education and Research ஜவஹர்லால் பட்ட மேற்படிப்பு மருத்துவக்கல்வி மற்றும் ஆராய்ச்சி நிறுவனம் ജിപ്മെർ'),
(79659, 'https://ror.org/0397knh37', 'en', 1, 'https://ror.org/0397knh37 Collegio Carlo Alberto'),
(79660, 'https://ror.org/00zqaxa34', 'en', 1, 'https://ror.org/00zqaxa34 Northeast Electric Power University 东北电力大学'),
(79661, 'https://ror.org/05w06bw34', 'en', 1, 'https://ror.org/05w06bw34 Society for Research in Child Development'),
(79662, 'https://ror.org/00d1evr30', 'en', 1, 'https://ror.org/00d1evr30 Central Power Research Institute'),
(79663, 'https://ror.org/03xqveg17', 'en', 1, 'https://ror.org/03xqveg17 Hebei Academy of Sciences 河北科学院'),
(79664, 'https://ror.org/02dy0mv77', 'en', 1, 'https://ror.org/02dy0mv77 Challenger Society for Marine Science'),
(79665, 'https://ror.org/05vccrs41', 'en', 1, 'https://ror.org/05vccrs41 Adams State University'),
(79666, 'https://ror.org/02eak8n78', 'en', 1, 'https://ror.org/02eak8n78 Indiana University Southeast'),
(79667, 'https://ror.org/03vaf0k11', 'en', 1, 'https://ror.org/03vaf0k11 American Orthopaedic Society for Sports Medicine'),
(79668, 'https://ror.org/00s786094', 'en', 1, 'https://ror.org/00s786094 General Medical Council'),
(79669, 'https://ror.org/01r4tcq81', 'en', 1, 'https://ror.org/01r4tcq81 Innovative Genomics Institute'),
(79670, 'https://ror.org/01pcdsa88', 'en', 1, 'https://ror.org/01pcdsa88 Alaska Historical Society'),
(79671, 'https://ror.org/05c4vv049', 'en', 1, 'https://ror.org/05c4vv049 British Society of Soil Science'),
(79672, 'https://ror.org/01r45yt97', 'en', 1, 'https://ror.org/01r45yt97 Xianyang Normal University 咸阳师范学院'),
(79673, 'https://ror.org/0324fzh77', 'en', 1, 'https://ror.org/0324fzh77 Long Island University Université de Long Island'),
(79674, 'https://ror.org/05hpb3c68', 'en', 1, 'https://ror.org/05hpb3c68 British Sociological Association'),
(79675, 'https://ror.org/05cc1v231', 'en', 1, 'https://ror.org/05cc1v231 Daegu-Gyeongbuk Advanced Medical Industry Promotion Foundation Daegu-Gyeongbuk Medical Innovation Foundation'),
(79676, 'https://ror.org/03jf2m686', 'en', 1, 'https://ror.org/03jf2m686 Indian Institute of Tropical Meteorology भारतीय उष्णप्रदेशीय हवामानशास्त्र संस्था'),
(79677, 'https://ror.org/01hv94n30', 'no_lang_code', 1, 'https://ror.org/01hv94n30 Ruijin Hospital 上海交通大学医学院附属瑞金医院'),
(79678, 'https://ror.org/02nfcgd30', 'en', 1, 'https://ror.org/02nfcgd30 Carle Foundation Hospital'),
(79679, 'https://ror.org/03e06qt98', 'no_lang_code', 1, 'https://ror.org/03e06qt98 GE Global Research (United States)'),
(79680, 'https://ror.org/03xy0wx88', 'en', 1, 'https://ror.org/03xy0wx88 Biomedical Research Council'),
(79681, 'https://ror.org/01z0wsw92', 'en', 1, 'https://ror.org/01z0wsw92 European Medicines Agency'),
(79682, 'https://ror.org/03nk2rw89', 'en', 1, 'https://ror.org/03nk2rw89 Atomic Energy Commission of Syria'),
(79683, 'https://ror.org/04b41fd51', 'en', 1, 'https://ror.org/04b41fd51 Kansas Academy of Science'),
(79684, 'https://ror.org/019zjtv03', 'en', 1, 'https://ror.org/019zjtv03 Audubon Society of Greater Denver'),
(79685, 'https://ror.org/0355d0s55', 'bs', 1, 'https://ror.org/0355d0s55 Federalno Ministarstvo Obrazovanja i Nauke'),
(79686, 'https://ror.org/04je98850', 'en', 1, 'https://ror.org/04je98850 Fu Jen Catholic University 辅仁大学'),
(79687, 'https://ror.org/02k4pxv54', 'en', 1, 'https://ror.org/02k4pxv54 Agencia Nacional de Inteligencia-Geoespacial National Geospatial-Intelligence Agency'),
(79688, 'https://ror.org/04j2tkk21', 'de', 1, 'https://ror.org/04j2tkk21 Heinz Nixdorf Stiftung'),
(79689, 'https://ror.org/006xm7s91', 'en', 1, 'https://ror.org/006xm7s91 Global Environment Facility'),
(79690, 'https://ror.org/01my9vf82', 'en', 1, 'https://ror.org/01my9vf82 New York State Library'),
(79691, 'https://ror.org/019kfw312', 'en', 1, 'https://ror.org/019kfw312 Inner Mongolia Academy of Agricultural & Animal Husbandry Sciences 内蒙古农牧业科学院'),
(79692, 'https://ror.org/018gpkq23', 'en', 1, 'https://ror.org/018gpkq23 Amigos Library Services'),
(79693, 'https://ror.org/045wzwx52', 'en', 1, 'https://ror.org/045wzwx52 Fujian Provincial Hospital 福建省立医院'),
(79694, 'https://ror.org/02d2m2044', 'en', 1, 'https://ror.org/02d2m2044 Agricultural Research Service'),
(79695, 'https://ror.org/02rqvrp93', 'en', 1, 'https://ror.org/02rqvrp93 Meiji University 明治大学'),
(79696, 'https://ror.org/007gf6e19', 'en', 1, 'https://ror.org/007gf6e19 Huanggang Normal University 黄冈师范学院'),
(79697, 'https://ror.org/03b5nmf59', 'en', 1, 'https://ror.org/03b5nmf59 American Association for Laboratory Animal Science'),
(79698, 'https://ror.org/04j6b9h44', 'en', 1, 'https://ror.org/04j6b9h44 Foundation for Professional Development'),
(79699, 'https://ror.org/05j466218', 'en', 1, 'https://ror.org/05j466218 Society for Women''s Health Research'),
(79700, 'https://ror.org/0152zzg30', 'en', 1, 'https://ror.org/0152zzg30 Anhui University of Finance and Economics 安徽财经大学'),
(79701, 'https://ror.org/05wdbfp45', 'en', 1, 'https://ror.org/05wdbfp45 North South University নর্থ সাউথ বিশ্ববিদ্যালয়'),
(79702, 'https://ror.org/02d06s578', 'en', 1, 'https://ror.org/02d06s578 Chongqing University of Education 重庆教育大学'),
(79703, 'https://ror.org/03hygqf77', 'en', 1, 'https://ror.org/03hygqf77 American Beverage Association'),
(79704, 'https://ror.org/045kpgw45', 'en', 1, 'https://ror.org/045kpgw45 Guangdong Provincial People''s Hospital 广东省第二人民医院'),
(79705, 'https://ror.org/00f99yp81', 'en', 1, 'https://ror.org/00f99yp81 Royal Australasian College of Medical Administrators'),
(79706, 'https://ror.org/01cdpdn80', 'en', 1, 'https://ror.org/01cdpdn80 Cyrus Tang Foundation'),
(79707, 'https://ror.org/02pammg90', 'en', 1, 'https://ror.org/02pammg90 Cedars-Sinai Medical Center'),
(79708, 'https://ror.org/04psbxy09', 'en', 1, 'https://ror.org/04psbxy09 Centre for DNA Fingerprinting and Diagnostics डीएनए फिंगरप्रिंटिंग एवं निदान केन्द्र'),
(79709, 'https://ror.org/037cjxp13', 'en', 1, 'https://ror.org/037cjxp13 China-Japan Friendship Hospital 中日友好医院'),
(79710, 'https://ror.org/05amnwk22', 'en', 1, 'https://ror.org/05amnwk22 Hubei Engineering University 湖北工程大学'),
(79711, 'https://ror.org/02ehshm78', 'en', 1, 'https://ror.org/02ehshm78 Eastern Michigan University Universidad de Michigan Oriental'),
(79712, 'https://ror.org/02epph894', 'en', 1, 'https://ror.org/02epph894 South African National Space Agency'),
(79713, 'https://ror.org/0445phv87', 'en', 1, 'https://ror.org/0445phv87 University of Toyama 富山大学'),
(79714, 'https://ror.org/05kg8j924', 'en', 1, 'https://ror.org/05kg8j924 American College of Foot and Ankle Surgeons'),
(79715, 'https://ror.org/05mpwj415', 'en', 1, 'https://ror.org/05mpwj415 Fort Valley State University'),
(79716, 'https://ror.org/02p0p4q62', 'en', 1, 'https://ror.org/02p0p4q62 Physical Research Laboratory'),
(79717, 'https://ror.org/038a5qa83', 'en', 1, 'https://ror.org/038a5qa83 International Glaucoma Association'),
(79718, 'https://ror.org/00sat4n88', 'en', 1, 'https://ror.org/00sat4n88 Society for Experimental Biology and Medicine'),
(79719, 'https://ror.org/01qax9t22', 'en', 1, 'https://ror.org/01qax9t22 UK Stem Cell Foundation'),
(79720, 'https://ror.org/04sn2hb78', 'sv', 1, 'https://ror.org/04sn2hb78 Centralsjukhuset Kristianstad'),
(79721, 'https://ror.org/04p7aq350', 'en', 1, 'https://ror.org/04p7aq350 Cooperative Research Centre for Water Sensitive Cities'),
(79722, 'https://ror.org/03f0wvt12', 'en', 1, 'https://ror.org/03f0wvt12 University of Wisconsin Foundation'),
(79723, 'https://ror.org/03jpxze54', 'fr', 1, 'https://ror.org/03jpxze54 Fondation Maladies Rares'),
(79724, 'https://ror.org/01dr2b756', 'en', 1, 'https://ror.org/01dr2b756 Hubei University of Medicine 湖北医药学院'),
(79725, 'https://ror.org/04eps4h65', 'en', 1, 'https://ror.org/04eps4h65 University of Faisalabad جامعہ فیصل آباد'),
(79726, 'https://ror.org/05tr89b24', 'en', 1, 'https://ror.org/05tr89b24 American Society for Environmental History'),
(79727, 'https://ror.org/05nhxfs81', 'en', 1, 'https://ror.org/05nhxfs81 New York Historical Society'),
(79728, 'https://ror.org/0434sbs50', 'en', 1, 'https://ror.org/0434sbs50 British Academy of Management'),
(79729, 'https://ror.org/01gbba190', 'en', 1, 'https://ror.org/01gbba190 Georgia Department of Natural Resources'),
(79730, 'https://ror.org/05frpfj73', 'en', 1, 'https://ror.org/05frpfj73 Binzhou University 滨州学院'),
(79731, 'https://ror.org/01cw0fy64', 'en', 1, 'https://ror.org/01cw0fy64 University of King''s College'),
(79732, 'https://ror.org/01zvdsy94', 'en', 1, 'https://ror.org/01zvdsy94 American Petroleum Institute'),
(79733, 'https://ror.org/04pvsjf17', 'en', 1, 'https://ror.org/04pvsjf17 FENS Kavli Network of Excellence'),
(79734, 'https://ror.org/034xatd74', 'en', 1, 'https://ror.org/034xatd74 Fairchild Tropical Botanic Garden'),
(79735, 'https://ror.org/04861m839', 'pt', 1, 'https://ror.org/04861m839 Associação Brasileira de Saúde Coletiva'),
(79736, 'https://ror.org/005msw364', 'en', 1, 'https://ror.org/005msw364 African Studies Association'),
(79737, 'https://ror.org/04h42fc75', 'en', 1, 'https://ror.org/04h42fc75 Meijo University 名城大学'),
(79738, 'https://ror.org/00eg2e012', 'en', 1, 'https://ror.org/00eg2e012 American Economic Association'),
(79739, 'https://ror.org/05bvxn785', 'en', 1, 'https://ror.org/05bvxn785 Federal Agency for Scientific Organizations Федеральное агентство научных организаций'),
(79740, 'https://ror.org/04xjhyn16', 'en', 1, 'https://ror.org/04xjhyn16 DigitalGlobe Foundation'),
(79741, 'https://ror.org/04esx4891', 'en', 1, 'https://ror.org/04esx4891 Dorset HealthCare University NHS Foundation Trust'),
(79742, 'https://ror.org/01m1s6313', 'en', 1, 'https://ror.org/01m1s6313 St. George''s University'),
(79743, 'https://ror.org/04eq83d71', 'en', 1, 'https://ror.org/04eq83d71 Henan Agricultural University 河南农业大学'),
(79744, 'https://ror.org/01bawmj47', 'en', 1, 'https://ror.org/01bawmj47 Genesis Research Trust'),
(79745, 'https://ror.org/0510wt644', 'en', 1, 'https://ror.org/0510wt644 American Society of Parasitologists'),
(79746, 'https://ror.org/035adwg89', 'en', 1, 'https://ror.org/035adwg89 Peking University People''s Hospital 北京大学人民医院'),
(79747, 'https://ror.org/05k4m9b36', 'en', 1, 'https://ror.org/05k4m9b36 Institute of Food Technologists'),
(79748, 'https://ror.org/02428c123', 'en', 1, 'https://ror.org/02428c123 American Academy of Addiction Psychiatry'),
(79749, 'https://ror.org/02jnm4206', 'en', 1, 'https://ror.org/02jnm4206 Jewish Community Foundation'),
(79750, 'https://ror.org/0270y6950', 'en', 1, 'https://ror.org/0270y6950 Harbin Normal University 哈尔滨师范大学'),
(79751, 'https://ror.org/01nkphj61', 'en', 1, 'https://ror.org/01nkphj61 Himalayan Institute Hospital Trust हिमालयी संस्थान अस्पताल ट्रस्ट'),
(79752, 'https://ror.org/026bv4494', 'en', 1, 'https://ror.org/026bv4494 St. Bonaventure University Universidad de San Buenaventura Université de st. bonaventure'),
(79753, 'https://ror.org/01wq2p249', 'en', 1, 'https://ror.org/01wq2p249 Guangdong Polytechnic of Science and Technology 广东科学技术职业学院'),
(79754, 'https://ror.org/01d5qpn59', 'en', 1, 'https://ror.org/01d5qpn59 Babraham Institute'),
(79755, 'https://ror.org/05s0j2r87', 'en', 1, 'https://ror.org/05s0j2r87 Canadian Society of Plastic Surgeons'),
(79756, 'https://ror.org/0275ebj77', 'en', 1, 'https://ror.org/0275ebj77 Federal Railroad Administration'),
(79757, 'https://ror.org/01xnrs054', 'en', 1, 'https://ror.org/01xnrs054 Western Indian Ocean Marine Science Association'),
(79758, 'https://ror.org/011rrqf91', 'en', 1, 'https://ror.org/011rrqf91 Open University of Sri Lanka இலங்கை திறந்த பல்கலைக்கழகம் ශ් රී ලංකා විවෘත විශ්වවිද් යාලය'),
(79759, 'https://ror.org/01px84952', 'en', 1, 'https://ror.org/01px84952 Unitec Institute of Technology'),
(79760, 'https://ror.org/01dbzsr51', 'en', 1, 'https://ror.org/01dbzsr51 Association Canadienne Des Medecins d''Urgence Canadian Association of Emergency Physicians'),
(79761, 'https://ror.org/03vwc6a47', 'en', 1, 'https://ror.org/03vwc6a47 International Association for Identification'),
(79762, 'https://ror.org/01529vy56', 'en', 1, 'https://ror.org/01529vy56 Mie University 三重大学'),
(79763, 'https://ror.org/04v0v0306', 'en', 1, 'https://ror.org/04v0v0306 European Association for the Study of Diabetes'),
(79764, 'https://ror.org/00q2w1j53', 'en', 1, 'https://ror.org/00q2w1j53 Indian Statistical Institute भारतीय सांख्यिकीय संस्थान'),
(79765, 'https://ror.org/04ggd2r74', 'en', 1, 'https://ror.org/04ggd2r74 Office of Marine and Aviation Operations'),
(79766, 'https://ror.org/05gt1vc06', 'en', 1, 'https://ror.org/05gt1vc06 Howard University Universidad Howard'),
(79767, 'https://ror.org/041zje040', 'en', 1, 'https://ror.org/041zje040 Heze University 菏泽大学'),
(79768, 'https://ror.org/00anb1726', 'no_lang_code', 1, 'https://ror.org/00anb1726 Vertex Pharmaceuticals (United States)'),
(79769, 'https://ror.org/05gd1cs26', 'en', 1, 'https://ror.org/05gd1cs26 Doha Institute for Graduate Studies معهد الدوحة للدراسات العليا مؤسسة أكاديمية'),
(79770, 'https://ror.org/01xesb955', 'en', 1, 'https://ror.org/01xesb955 BC Children''s Hospital Foundation'),
(79771, 'https://ror.org/02gazz415', 'en', 1, 'https://ror.org/02gazz415 Philippine Rice Research Institute'),
(79772, 'https://ror.org/025j46253', 'en', 1, 'https://ror.org/025j46253 Indiana Department of Transportation'),
(79773, 'https://ror.org/04g0aqp14', 'en', 1, 'https://ror.org/04g0aqp14 Greater London Authority'),
(79774, 'https://ror.org/02yas1717', 'en', 1, 'https://ror.org/02yas1717 Bat Conservation Trust'),
(79775, 'https://ror.org/00c952d06', 'en', 1, 'https://ror.org/00c952d06 New York Foundation for the Arts'),
(79776, 'https://ror.org/04dpymk59', 'en', 1, 'https://ror.org/04dpymk59 National Agricultural Statistics Service'),
(79777, 'https://ror.org/014napt72', 'en', 1, 'https://ror.org/014napt72 American Academy In Rome'),
(79778, 'https://ror.org/03gqhbs95', 'en', 1, 'https://ror.org/03gqhbs95 BC Cancer Foundation'),
(79779, 'https://ror.org/00a4fk439', 'en', 1, 'https://ror.org/00a4fk439 Phycological Society of America'),
(79780, 'https://ror.org/048zqcn09', 'en', 1, 'https://ror.org/048zqcn09 Research Institute of Economy, Trade and Industry 独立行政法人経済産業研究所'),
(79781, 'https://ror.org/04tav7h44', 'en', 1, 'https://ror.org/04tav7h44 Cherepovets State University Череповецкий государственный университет'),
(79782, 'https://ror.org/02s0c9732', 'en', 1, 'https://ror.org/02s0c9732 Hope Funds for Cancer Research'),
(79783, 'https://ror.org/050p9wj26', 'en', 1, 'https://ror.org/050p9wj26 John F. Kennedy University'),
(79784, 'https://ror.org/05fmrjg27', 'en', 1, 'https://ror.org/05fmrjg27 Sussex Partnership NHS Foundation Trust'),
(79785, 'https://ror.org/052590h17', 'en', 1, 'https://ror.org/052590h17 People''s Trust for Endangered Species'),
(79786, 'https://ror.org/03etyjw28', 'es', 1, 'https://ror.org/03etyjw28 Pontifical Xavierian University Pontificia Universidad Javeriana'),
(79787, 'https://ror.org/0116vew40', 'es', 1, 'https://ror.org/0116vew40 Fundación para el Fomento de la Investigación Sanitaria y Biomédica de la Comunitat Valenciana'),
(79788, 'https://ror.org/00wdyp114', 'en', 1, 'https://ror.org/00wdyp114 Indian Academy of Sciences'),
(79789, 'https://ror.org/01hhf7w52', 'en', 1, 'https://ror.org/01hhf7w52 Indian Institute of Technology Indore भारतीय प्रौद्योगिकी संस्थान इंदौर இந்திய தொழில்நுட்பக் கழகம் இந்தூர்'),
(79790, 'https://ror.org/048vs0x15', 'en', 1, 'https://ror.org/048vs0x15 National Trust for Historic Preservation'),
(79791, 'https://ror.org/04sr5ys16', 'en', 1, 'https://ror.org/04sr5ys16 Duke Kunshan University 昆山杜克大学'),
(79792, 'https://ror.org/0112vdv20', 'en', 1, 'https://ror.org/0112vdv20 Illinois Society for the Prevention of Blindness'),
(79793, 'https://ror.org/056nc1c48', 'en', 1, 'https://ror.org/056nc1c48 Autorità Europea per la Sicurezza Alimentare Autorité Européenne de Sécurité des Aliments European Food Safety Authority Europäische Behörde für Lebensmittelsicherheit'),
(79794, 'https://ror.org/01a5mqy88', 'en', 1, 'https://ror.org/01a5mqy88 Bose Institute ബോസ് ഇൻസ്റ്റിറ്റ്യൂട്ട്'),
(79795, 'https://ror.org/025h79t26', 'no_lang_code', 1, 'https://ror.org/025h79t26 University of Peradeniya பேராதனைப் பல்கலைக்கழகம் පේරාදෙණිය විශ්වවිද් යාලය'),
(79796, 'https://ror.org/05aqbwk58', 'en', 1, 'https://ror.org/05aqbwk58 Nepal Agricultural Research Council नेपाल कृषि अनुसन्धान परिषद'),
(79797, 'https://ror.org/04tdavc85', 'en', 1, 'https://ror.org/04tdavc85 American Podiatric Medical Association'),
(79798, 'https://ror.org/00s5a4h94', 'en', 1, 'https://ror.org/00s5a4h94 University City Science Center'),
(79799, 'https://ror.org/04asvbz37', 'no_lang_code', 1, 'https://ror.org/04asvbz37 Swedish Orphan Biovitrum (Sweden)'),
(79800, 'https://ror.org/04r1cxt79', 'en', 1, 'https://ror.org/04r1cxt79 Kenya Medical Research Institute'),
(79801, 'https://ror.org/01tv9ph92', 'en', 1, 'https://ror.org/01tv9ph92 Southern Federal University Южный федеральный университет'),
(79802, 'https://ror.org/00c7x4a95', 'en', 1, 'https://ror.org/00c7x4a95 Dalian Polytechnic University 大连工业大学'),
(79803, 'https://ror.org/031gkqq69', 'en', 1, 'https://ror.org/031gkqq69 American Society of Agronomy'),
(79804, 'https://ror.org/018wg9441', 'en', 1, 'https://ror.org/018wg9441 Hubei University of Science and Technology 湖北科技学院'),
(79805, 'https://ror.org/02kd4pa08', 'en', 1, 'https://ror.org/02kd4pa08 Oklahoma Department of Transportation'),
(79806, 'https://ror.org/00t77bz53', 'en', 1, 'https://ror.org/00t77bz53 Foreign Agricultural Service'),
(79807, 'https://ror.org/0567t7073', 'en', 1, 'https://ror.org/0567t7073 Fox Chase Cancer Center'),
(79808, 'https://ror.org/020fy4d02', 'en', 1, 'https://ror.org/020fy4d02 Hartford Foundation for Public Giving'),
(79809, 'https://ror.org/019y44724', 'en', 1, 'https://ror.org/019y44724 Society for Sedimentary Geology'),
(79810, 'https://ror.org/02an6vg71', 'en', 1, 'https://ror.org/02an6vg71 Bacha Khan University'),
(79811, 'https://ror.org/05qx3fv49', 'en', 1, 'https://ror.org/05qx3fv49 National Institute of Food and Agriculture'),
(79812, 'https://ror.org/02bftm313', 'no_lang_code', 1, 'https://ror.org/02bftm313 Catalyst Biosciences (United States)'),
(79813, 'https://ror.org/05btws897', 'en', 1, 'https://ror.org/05btws897 European College of Neuropsychopharmacology'),
(79814, 'https://ror.org/02nt7ap43', 'nl', 1, 'https://ror.org/02nt7ap43 Academie Verloskunde Amsterdam Groningen'),
(79815, 'https://ror.org/01k71jg45', 'en', 1, 'https://ror.org/01k71jg45 Hospice and Palliative Nurses Foundation'),
(79816, 'https://ror.org/013jy7g98', 'en', 1, 'https://ror.org/013jy7g98 Cohen Veterans Bioscience'),
(79817, 'https://ror.org/030xwyx96', 'en', 1, 'https://ror.org/030xwyx96 Heilongjiang University of Science and Technology 黑龙江工程学院'),
(79818, 'https://ror.org/01fj5gf64', 'en', 1, 'https://ror.org/01fj5gf64 Hunan Academy of Agricultural Sciences 湖南省农业科学院'),
(79819, 'https://ror.org/04t44qh67', 'en', 1, 'https://ror.org/04t44qh67 Baotou Medical College 包头医学院'),
(79820, 'https://ror.org/059z11218', 'en', 1, 'https://ror.org/059z11218 Kawasaki Medical School 川崎医科大学'),
(79821, 'https://ror.org/01d5ymp84', 'en', 1, 'https://ror.org/01d5ymp84 China National Nuclear Corporation 中国核工业集团公司'),
(79822, 'https://ror.org/02djn2x77', 'es', 1, 'https://ror.org/02djn2x77 Fundación Juan March'),
(79823, 'https://ror.org/022g31s87', 'en', 1, 'https://ror.org/022g31s87 British Society for Heart Failure'),
(79824, 'https://ror.org/02j85cg51', 'en', 1, 'https://ror.org/02j85cg51 Freshwater Biological Association'),
(79825, 'https://ror.org/02r0ks990', 'no_lang_code', 1, 'https://ror.org/02r0ks990 Banque Canadienne Impériale de Commerce Canadian Imperial Bank of Commerce (Canada)'),
(79826, 'https://ror.org/00kvw1g26', 'en', 1, 'https://ror.org/00kvw1g26 American Society for Bone and Mineral Research'),
(79827, 'https://ror.org/01ce4w121', 'en', 1, 'https://ror.org/01ce4w121 Nebraska Academy of Sciences'),
(79828, 'https://ror.org/01qf95793', 'en', 1, 'https://ror.org/01qf95793 Lindenwood University'),
(79829, 'https://ror.org/053e8a708', 'en', 1, 'https://ror.org/053e8a708 Showa Pharmaceutical University 昭和薬科大学'),
(79830, 'https://ror.org/00d062t77', 'en', 1, 'https://ror.org/00d062t77 Bank for International Settlements Bank für Internationalen Zahlungsausgleich'),
(79831, 'https://ror.org/01gqdjc98', 'en', 1, 'https://ror.org/01gqdjc98 Aba Teachers University 阿坝师范学院'),
(79832, 'https://ror.org/03781zn34', 'de', 1, 'https://ror.org/03781zn34 Berlin-Brandenburger Centrum für Regenerative Therapien'),
(79833, 'https://ror.org/059m1v232', 'de', 1, 'https://ror.org/059m1v232 Forschungsverbund Berlin'),
(79834, 'https://ror.org/056skxz71', 'en', 1, 'https://ror.org/056skxz71 American Association for Respiratory Care'),
(79835, 'https://ror.org/0236m0438', 'en', 1, 'https://ror.org/0236m0438 Hawaii Academy of Science'),
(79836, 'https://ror.org/00p8cpg07', 'en', 1, 'https://ror.org/00p8cpg07 American Philosophical Association'),
(79837, 'https://ror.org/02hcv4z63', 'en', 1, 'https://ror.org/02hcv4z63 Minia University جامعة المنيـا'),
(79838, 'https://ror.org/026zpz859', 'en', 1, 'https://ror.org/026zpz859 Kaohsiung Armed Forces General Hospital'),
(79839, 'https://ror.org/0375jbm11', 'en', 1, 'https://ror.org/0375jbm11 National Centre for Earth Observation'),
(79840, 'https://ror.org/00kmxt141', 'en', 1, 'https://ror.org/00kmxt141 Université d''État de winona Winona State University'),
(79841, 'https://ror.org/02v7v1p25', 'en', 1, 'https://ror.org/02v7v1p25 American Society for Metabolic and Bariatric Surgery'),
(79842, 'https://ror.org/052d0h423', 'en', 1, 'https://ror.org/052d0h423 Max Planck Institute for Nuclear Physics Max-Planck-Institut für Kernphysik'),
(79843, 'https://ror.org/056ct4b16', 'en', 1, 'https://ror.org/056ct4b16 Centre for Excellence in Mining Innovation'),
(79844, 'https://ror.org/05pk92k21', 'en', 1, 'https://ror.org/05pk92k21 International Biometric Society'),
(79845, 'https://ror.org/04wwqze12', 'en', 1, 'https://ror.org/04wwqze12 Peking University Third Hospital 北京大学第三医院'),
(79846, 'https://ror.org/01gv74p78', 'fr', 1, 'https://ror.org/01gv74p78 Centre Hospitalier Universitaire Sainte-Justine'),
(79847, 'https://ror.org/0212jcf64', 'en', 1, 'https://ror.org/0212jcf64 Hubei University of Arts and Science 湖北文理学院'),
(79848, 'https://ror.org/00vs1pz50', 'en', 1, 'https://ror.org/00vs1pz50 Ministry of Internal Affairs and Communications 総務大臣'),
(79849, 'https://ror.org/014ja3n03', 'en', 1, 'https://ror.org/014ja3n03 University Hospitals Birmingham NHS Foundation Trust'),
(79850, 'https://ror.org/0573mff95', 'en', 1, 'https://ror.org/0573mff95 American Automatic Control Council'),
(79851, 'https://ror.org/05rd0jh74', 'en', 1, 'https://ror.org/05rd0jh74 Great Lakes Colleges Association'),
(79852, 'https://ror.org/05bg2wc74', 'en', 1, 'https://ror.org/05bg2wc74 Canola Council of Canada'),
(79853, 'https://ror.org/05fw97k56', 'en', 1, 'https://ror.org/05fw97k56 Siberian Federal University Сибирский федеральный университет'),
(79854, 'https://ror.org/03rpes181', 'en', 1, 'https://ror.org/03rpes181 American Association of Nurse Anesthetists'),
(79855, 'https://ror.org/0436zyg08', 'en', 1, 'https://ror.org/0436zyg08 Ohio Department of Health'),
(79856, 'https://ror.org/04ckdkt28', 'en', 1, 'https://ror.org/04ckdkt28 Central European Initiative'),
(79857, 'https://ror.org/053ng1p06', 'no_lang_code', 1, 'https://ror.org/053ng1p06 Eastman Chemical Company (United States)'),
(79858, 'https://ror.org/02qf2tx24', 'no_lang_code', 1, 'https://ror.org/02qf2tx24 Kwansei Gakuin University 関西学院大学'),
(79859, 'https://ror.org/059d6yn51', 'en', 1, 'https://ror.org/059d6yn51 Toyo University 東洋大学'),
(79860, 'https://ror.org/045vdnf39', 'en', 1, 'https://ror.org/045vdnf39 Canadian Patient Safety Institute Institut canadien pour la sécurité des patients'),
(79861, 'https://ror.org/02r4nmf56', 'en', 1, 'https://ror.org/02r4nmf56 International Technological University'),
(79862, 'https://ror.org/00d25af97', 'en', 1, 'https://ror.org/00d25af97 Pontificia y Real Universidad de Santo Tomás University of Santo Tomas'),
(79863, 'https://ror.org/05tx3bv88', 'en', 1, 'https://ror.org/05tx3bv88 Austin Peay State University Universidad Estatal Austin Peay'),
(79864, 'https://ror.org/01hxzmb15', 'fr', 1, 'https://ror.org/01hxzmb15 Conseil Régional de La Réunion'),
(79865, 'https://ror.org/00r8a6s58', 'no_lang_code', 1, 'https://ror.org/00r8a6s58 Portola Pharmaceuticals (United States)'),
(79866, 'https://ror.org/01fc5yc54', 'en', 1, 'https://ror.org/01fc5yc54 Meiji Yasuda Life Foundation of Health and Welfare 公益財団法人 明治安田厚生事業団'),
(79867, 'https://ror.org/01wspv808', 'en', 1, 'https://ror.org/01wspv808 Norfolk and Norwich University Hospitals NHS Foundation Trust'),
(79868, 'https://ror.org/00vdyrj80', 'en', 1, 'https://ror.org/00vdyrj80 Henan Academy of Agricultural Sciences 河南省农业科学院'),
(79869, 'https://ror.org/01fy65t21', 'en', 1, 'https://ror.org/01fy65t21 Breast Cancer Society of Canada Société du Cancer du Canada'),
(79870, 'https://ror.org/01xdzh226', 'en', 1, 'https://ror.org/01xdzh226 Beijing Electronic Science and Technology Institute 北京电子科技学院'),
(79871, 'https://ror.org/04m2j3740', 'en', 1, 'https://ror.org/04m2j3740 Geological Survey of Ireland Suirbhéireacht Gheolaíochta Éireann'),
(79872, 'https://ror.org/00t0q9z88', 'en', 1, 'https://ror.org/00t0q9z88 BioXFEL Science and Technology Center'),
(79873, 'https://ror.org/01565p617', 'en', 1, 'https://ror.org/01565p617 Western Connecticut State University'),
(79874, 'https://ror.org/00nzavp26', 'es', 1, 'https://ror.org/00nzavp26 Hospital Infantil de México Federico Gómez'),
(79875, 'https://ror.org/04hja5e04', 'en', 1, 'https://ror.org/04hja5e04 State Key Laboratory of Respiratory Disease 呼吸疾病国家重点实验室'),
(79876, 'https://ror.org/02vg22c33', 'en', 1, 'https://ror.org/02vg22c33 Desert Research Institute'),
(79877, 'https://ror.org/049nwxd40', 'en', 1, 'https://ror.org/049nwxd40 Thai Health Promotion Foundation'),
(79878, 'https://ror.org/05erbjx97', 'en', 1, 'https://ror.org/05erbjx97 V.I. Vernadsky Crimean Federal University Крымский федеральный университет имени В.И. Вернадского'),
(79879, 'https://ror.org/05e34ej29', 'en', 1, 'https://ror.org/05e34ej29 University of Zanjan دانشگاه زنجان'),
(79880, 'https://ror.org/03thsxs59', 'no_lang_code', 1, 'https://ror.org/03thsxs59 Heidelberg Engineering (Germany)'),
(79881, 'https://ror.org/0205jhq31', 'en', 1, 'https://ror.org/0205jhq31 North Pacific Marine Science Organization'),
(79882, 'https://ror.org/053d7x641', 'en', 1, 'https://ror.org/053d7x641 Anhui Xinhua University'),
(79883, 'https://ror.org/04sf43a98', 'en', 1, 'https://ror.org/04sf43a98 Ambrose University'),
(79884, 'https://ror.org/026n4t805', 'en', 1, 'https://ror.org/026n4t805 Greater Worcester Community Foundation'),
(79885, 'https://ror.org/0381bab64', 'it', 1, 'https://ror.org/0381bab64 Edmund Mach Foundation Fondazione Edmund Mach'),
(79886, 'https://ror.org/03exev935', 'en', 1, 'https://ror.org/03exev935 National Ovarian Cancer Coalition'),
(79887, 'https://ror.org/00nvc8n52', 'en', 1, 'https://ror.org/00nvc8n52 Hogg Foundation for Mental Health'),
(79888, 'https://ror.org/048nctr92', 'es', 1, 'https://ror.org/048nctr92 Universidad Técnica de Ambato'),
(79889, 'https://ror.org/05309tf52', 'en', 1, 'https://ror.org/05309tf52 Niagara University Universidad de Niágara Université de niagara'),
(79890, 'https://ror.org/02x011m46', 'en', 1, 'https://ror.org/02x011m46 Baystate Health'),
(79891, 'https://ror.org/002x6f380', 'en', 1, 'https://ror.org/002x6f380 Guizhou Education University 贵州师范学院'),
(79892, 'https://ror.org/01fk80534', 'pt', 1, 'https://ror.org/01fk80534 Fundação Parque Tecnológico Itaipu'),
(79893, 'https://ror.org/01gnzp994', 'en', 1, 'https://ror.org/01gnzp994 Chongqing Academy of Science and Technology 重庆市科学技术研究院'),
(79894, 'https://ror.org/04dpa3g90', 'en', 1, 'https://ror.org/04dpa3g90 Yunnan Agricultural University 云南农业大学'),
(79895, 'https://ror.org/03mchdq19', 'da', 1, 'https://ror.org/03mchdq19 Rigshospitalet'),
(79896, 'https://ror.org/03sgr7529', 'en', 1, 'https://ror.org/03sgr7529 Growing Spine Foundation'),
(79897, 'https://ror.org/036bxpj43', 'fi', 1, 'https://ror.org/036bxpj43 Hospital District of Southwest Finland Varsinais-Suomen Sairaanhoitopiiri'),
(79898, 'https://ror.org/03fnv7n42', 'en', 1, 'https://ror.org/03fnv7n42 Nanjing Xiaozhuang University 南京晓庄学院'),
(79899, 'https://ror.org/04w1pxt36', 'en', 1, 'https://ror.org/04w1pxt36 Chinese Society for Electrical Engineering 中国电机工程学会'),
(79900, 'https://ror.org/0265wc016', 'en', 1, 'https://ror.org/0265wc016 Canadian Institute for Theoretical Astrophysics Institut canadien d''astrophysique théorique'),
(79901, 'https://ror.org/009tnsj43', 'en', 1, 'https://ror.org/009tnsj43 Newman University'),
(79902, 'https://ror.org/04zb31v77', 'en', 1, 'https://ror.org/04zb31v77 Saitama Medical University 埼玉医科大学'),
(79903, 'https://ror.org/05e4zna08', 'pl', 1, 'https://ror.org/05e4zna08 Centre of Molecular and Macromolecular Studies Centrum Badań Molekularnych i Makromolekularnych Polskiej Akademii Nauk'),
(79904, 'https://ror.org/00jt22t02', 'de', 1, 'https://ror.org/00jt22t02 Deutsche Morbus Crohn/Colitis ulcerosa Vereinigung'),
(79905, 'https://ror.org/04zke5364', 'en', 1, 'https://ror.org/04zke5364 Feidhmeannacht na Seirbhíse Sláinte Health Service Executive'),
(79906, 'https://ror.org/00pj63h42', 'en', 1, 'https://ror.org/00pj63h42 Chinese Arctic and Antarctic Administration 国家海洋局极地考察办公室'),
(79907, 'https://ror.org/00swwa029', 'en', 1, 'https://ror.org/00swwa029 American Association of Nurse Practitioners'),
(79908, 'https://ror.org/0093wey45', 'en', 1, 'https://ror.org/0093wey45 Alberta Barley'),
(79909, 'https://ror.org/05eaakg28', 'en', 1, 'https://ror.org/05eaakg28 California Energy Commission'),
(79910, 'https://ror.org/05k37ht14', 'en', 1, 'https://ror.org/05k37ht14 Indian Institute of Space Science and Technology ഇന്ത്യന് ഇന്സ്റ്റിറ്റ്യൂട്ട് ഓഫ് സ്പേസ് സയൻസ് ആന്റ് ടെക്നോളജി .'),
(79911, 'https://ror.org/01rkwtz72', 'en', 1, 'https://ror.org/01rkwtz72 Guangdong Academy of Agricultural Sciences 广东省农业科学院'),
(79912, 'https://ror.org/029ws6035', 'en', 1, 'https://ror.org/029ws6035 Canadian Museum of Nature Musée Canadien de la nature'),
(79913, 'https://ror.org/0029f8q94', 'en', 1, 'https://ror.org/0029f8q94 Keyano College'),
(79914, 'https://ror.org/03jhrww64', 'en', 1, 'https://ror.org/03jhrww64 United Cerebral Palsy'),
(79915, 'https://ror.org/02zsyc904', 'en', 1, 'https://ror.org/02zsyc904 Beef Farmers of Ontario'),
(79916, 'https://ror.org/04w5etv87', 'en', 1, 'https://ror.org/04w5etv87 Chengdu Institute of Biology 中国科学院成都生物研究所'),
(79917, 'https://ror.org/05v33vv40', 'no_lang_code', 1, 'https://ror.org/05v33vv40 Cerebrotech Medical Systems (United States)'),
(79918, 'https://ror.org/0431fz439', 'es', 1, 'https://ror.org/0431fz439 Asociación Colombiana de Infectología'),
(79919, 'https://ror.org/04hnevr92', 'en', 1, 'https://ror.org/04hnevr92 American Spinal Injury Association'),
(79920, 'https://ror.org/02e4qbj88', 'en', 1, 'https://ror.org/02e4qbj88 National Defense Medical College 防衛省防衛医科大学校'),
(79921, 'https://ror.org/02pxpz754', 'en', 1, 'https://ror.org/02pxpz754 Memphis Zoo'),
(79922, 'https://ror.org/011em6227', 'en', 1, 'https://ror.org/011em6227 College of Optometrists'),
(79923, 'https://ror.org/00t65nv54', 'en', 1, 'https://ror.org/00t65nv54 Faraday Institute for Science and Religion'),
(79924, 'https://ror.org/038n5s612', 'en', 1, 'https://ror.org/038n5s612 Canadian Public Health Association'),
(79925, 'https://ror.org/03ch14951', 'en', 1, 'https://ror.org/03ch14951 Ogasawara Foundation for the Promotion of Science and Engineering 公益財団法人 小笠原科学技術振興財団'),
(79926, 'https://ror.org/016ex3g83', 'en', 1, 'https://ror.org/016ex3g83 American Institute of Biological Sciences'),
(79927, 'https://ror.org/02swff503', 'en', 1, 'https://ror.org/02swff503 Ahmedabad University અમદાવાદ યુનિવર્સિટી'),
(79928, 'https://ror.org/04z746g28', 'en', 1, 'https://ror.org/04z746g28 Minnesota Academy of Science'),
(79929, 'https://ror.org/05f8qcz72', 'fr', 1, 'https://ror.org/05f8qcz72 Institut Agronomique et Vétérinaire Hassan II'),
(79930, 'https://ror.org/01bn0n770', 'en', 1, 'https://ror.org/01bn0n770 Australasian Society for Infectious Diseases'),
(79931, 'https://ror.org/016bgq349', 'en', 1, 'https://ror.org/016bgq349 National Institute of Information and Communications Technology 情報通信研究機構'),
(79932, 'https://ror.org/0101kry21', 'en', 1, 'https://ror.org/0101kry21 Allegheny Health Network'),
(79933, 'https://ror.org/040gec961', 'en', 1, 'https://ror.org/040gec961 Government College University, Lahore گورنمنٹ کالج لاہور ਗੌਰਮਿੰਟ ਕਾਲਜ ਯੂਨੀਵਰਸਿਟੀ'),
(79934, 'https://ror.org/03net5943', 'en', 1, 'https://ror.org/03net5943 Northeast Petroleum University 东北石油大学'),
(79935, 'https://ror.org/020prvv72', 'en', 1, 'https://ror.org/020prvv72 Academic Pediatric Association'),
(79936, 'https://ror.org/056ef9489', 'en', 1, 'https://ror.org/056ef9489 Qilu Hospital of Shandong University'),
(79937, 'https://ror.org/05jme6y84', 'en', 1, 'https://ror.org/05jme6y84 University of Social Welfare and Rehabilitation Sciences دانشگاه علوم بهزیستی و توانبخشی'),
(79938, 'https://ror.org/04166ws88', 'en', 1, 'https://ror.org/04166ws88 Shanghai Municipal Commission of Economy and Informatization 上海市经济和信息化委员会'),
(79939, 'https://ror.org/036v9ey29', 'en', 1, 'https://ror.org/036v9ey29 Association of Community Cancer Centers'),
(79940, 'https://ror.org/00vp58v14', 'en', 1, 'https://ror.org/00vp58v14 American Society of Agricultural and Biological Engineers'),
(79941, 'https://ror.org/00rfash91', 'en', 1, 'https://ror.org/00rfash91 Polar Knowledge Canada'),
(79942, 'https://ror.org/05wxfpw56', 'en', 1, 'https://ror.org/05wxfpw56 Orthopaedic Research Foundation'),
(79943, 'https://ror.org/02y984316', 'en', 1, 'https://ror.org/02y984316 European Society for Clinical Nutrition and Metabolism'),
(79944, 'https://ror.org/04a1r5z94', 'en', 1, 'https://ror.org/04a1r5z94 Hashemite University الجامعة الهاشمية'),
(79945, 'https://ror.org/03dkvy735', 'en', 1, 'https://ror.org/03dkvy735 New York Medical College'),
(79946, 'https://ror.org/01173vs27', 'en', 1, 'https://ror.org/01173vs27 University of Chittagong চট্টগ্রাম বিশ্ববিদ্যালয়'),
(79947, 'https://ror.org/055avk103', 'en', 1, 'https://ror.org/055avk103 Harvard Global Health Institute'),
(79948, 'https://ror.org/01g9hkj35', 'en', 1, 'https://ror.org/01g9hkj35 Guangdong Academy of Sciences 广东省科学院'),
(79949, 'https://ror.org/021h56y19', 'en', 1, 'https://ror.org/021h56y19 California Air Resources Board Junta de Recursos del Aire de California'),
(79950, 'https://ror.org/03zj2rn70', 'en', 1, 'https://ror.org/03zj2rn70 Hunan Institute of Engineering 湖南工程学院'),
(79951, 'https://ror.org/051qn8h41', 'en', 1, 'https://ror.org/051qn8h41 Ilia State University Государственный университет Ильи ილიას სახელმწიფო უნივერსიტეტი'),
(79952, 'https://ror.org/003v97827', 'en', 1, 'https://ror.org/003v97827 Karst Waters Institute'),
(79953, 'https://ror.org/006bmx089', 'en', 1, 'https://ror.org/006bmx089 University of Southern Indiana Université de l''indiana du sud'),
(79954, 'https://ror.org/02fm3sv87', 'en', 1, 'https://ror.org/02fm3sv87 Office of the National Coordinator for Health Information Technology'),
(79955, 'https://ror.org/02wz95e76', 'en', 1, 'https://ror.org/02wz95e76 Taiwan Clinical Oncology Research Foundation 財團法人台灣癌症臨床研究發展基金會'),
(79956, 'https://ror.org/00wq1a296', 'en', 1, 'https://ror.org/00wq1a296 American Institute for Contemporary German Studies');
INSERT INTO `rors` VALUES
(79957, 'https://ror.org/05tngxm14', 'en', 1, 'https://ror.org/05tngxm14 National Supercomputing Center of Tianjin 国家超级计算天津中心'),
(79958, 'https://ror.org/02njz9p87', 'en', 1, 'https://ror.org/02njz9p87 Fuyang Normal University 阜阳师范学院'),
(79959, 'https://ror.org/00gdzqq03', 'en', 1, 'https://ror.org/00gdzqq03 American Society of Addiction Medicine'),
(79960, 'https://ror.org/02b9aym09', 'en', 1, 'https://ror.org/02b9aym09 Gallaudet University'),
(79961, 'https://ror.org/04r95dm95', 'en', 1, 'https://ror.org/04r95dm95 British Institute at Ankara'),
(79962, 'https://ror.org/02han2n82', 'en', 1, 'https://ror.org/02han2n82 Biola University'),
(79963, 'https://ror.org/04ee58018', 'es', 1, 'https://ror.org/04ee58018 Universidad Juárez Autónoma de Tabasco'),
(79964, 'https://ror.org/03f7j3221', 'en', 1, 'https://ror.org/03f7j3221 European League Against Rheumatism'),
(79965, 'https://ror.org/01h900f45', 'en', 1, 'https://ror.org/01h900f45 Petroleum Technology Alliance Canada'),
(79966, 'https://ror.org/02y30tw62', 'en', 1, 'https://ror.org/02y30tw62 Chronic Disease Research Foundation'),
(79967, 'https://ror.org/00f8adc72', 'en', 1, 'https://ror.org/00f8adc72 Cancer Focus Northern Ireland'),
(79968, 'https://ror.org/04g9wch13', 'en', 1, 'https://ror.org/04g9wch13 Yale-NUS College 耶魯-新加坡國立大學學院'),
(79969, 'https://ror.org/008cac740', 'de', 1, 'https://ror.org/008cac740 Rhön-Klinikum'),
(79970, 'https://ror.org/02z1vqm45', 'en', 1, 'https://ror.org/02z1vqm45 Peking University First Hospital'),
(79971, 'https://ror.org/044rgx723', 'en', 1, 'https://ror.org/044rgx723 Inner Mongolia University of Science and Technology 内蒙古科技大学'),
(79972, 'https://ror.org/03ekhbz91', 'en', 1, 'https://ror.org/03ekhbz91 Renmin Hospital of Wuhan University'),
(79973, 'https://ror.org/04mrh0826', 'en', 1, 'https://ror.org/04mrh0826 Australasian College of Dermatologists'),
(79974, 'https://ror.org/00jgcnx83', 'en', 1, 'https://ror.org/00jgcnx83 Nuclear Materials Authority'),
(79975, 'https://ror.org/04vd28p53', 'it', 1, 'https://ror.org/04vd28p53 Università Kore di Enna Università degli Studi di Enna Kore Université kore d''enna'),
(79976, 'https://ror.org/01y6jsg53', 'en', 1, 'https://ror.org/01y6jsg53 Tennessee Valley Authority'),
(79977, 'https://ror.org/02m9vrb24', 'en', 1, 'https://ror.org/02m9vrb24 Hunan University of Science and Technology 湖南科技大学'),
(79978, 'https://ror.org/05retmr68', 'en', 1, 'https://ror.org/05retmr68 European Consortium for Political Research'),
(79979, 'https://ror.org/00fpz4c36', 'en', 1, 'https://ror.org/00fpz4c36 Plymouth State University Université d''État de plymouth'),
(79980, 'https://ror.org/03kgp0q12', 'en', 1, 'https://ror.org/03kgp0q12 Biomedical Research Institute of New Mexico'),
(79981, 'https://ror.org/00xyb8f56', 'en', 1, 'https://ror.org/00xyb8f56 Massachusetts Medical Society'),
(79982, 'https://ror.org/021hkf372', 'en', 1, 'https://ror.org/021hkf372 British Cardiovascular Society'),
(79983, 'https://ror.org/02mkv8r24', 'en', 1, 'https://ror.org/02mkv8r24 Agence Européenne de Défense European Defence Agency Europees Defensieagentschap Europäische Verteidigungsagentur'),
(79984, 'https://ror.org/04wcf8366', 'en', 1, 'https://ror.org/04wcf8366 Georgia Department of Public Health'),
(79985, 'https://ror.org/00we5dk78', 'en', 1, 'https://ror.org/00we5dk78 American Society of Ichthyologists and Herpetologists'),
(79986, 'https://ror.org/04qg9vz18', 'en', 1, 'https://ror.org/04qg9vz18 British Film Institute'),
(79987, 'https://ror.org/05xsxgs79', 'en', 1, 'https://ror.org/05xsxgs79 Arnold Arboretum'),
(79988, 'https://ror.org/01m0qe785', 'en', 1, 'https://ror.org/01m0qe785 Education Development Trust'),
(79989, 'https://ror.org/011nkrc70', 'en', 1, 'https://ror.org/011nkrc70 American Indian College Fund'),
(79990, 'https://ror.org/04rx35w12', 'fr', 1, 'https://ror.org/04rx35w12 Conseil Régional de Picardie'),
(79991, 'https://ror.org/05d84mm26', 'no_lang_code', 1, 'https://ror.org/05d84mm26 Neurocrine Biosciences (United States)'),
(79992, 'https://ror.org/03rj92e31', 'en', 1, 'https://ror.org/03rj92e31 Fayetteville State University Université d''État de fayetteville'),
(79993, 'https://ror.org/04zet5t12', 'en', 1, 'https://ror.org/04zet5t12 Bwrdd lechyd Prifysgol Bae Abertawe Swansea Bay University Health Board'),
(79994, 'https://ror.org/01gb3y148', 'en', 1, 'https://ror.org/01gb3y148 Guangdong Provincial Hospital of Traditional Chinese Medicine 广东省中医院'),
(79995, 'https://ror.org/036wrr275', 'no_lang_code', 1, 'https://ror.org/036wrr275 Occidental Petroleum (United States)'),
(79996, 'https://ror.org/00t8bew53', 'no_lang_code', 1, 'https://ror.org/00t8bew53 Ionis Pharmaceuticals (United States)'),
(79997, 'https://ror.org/01xe5fb92', 'en', 1, 'https://ror.org/01xe5fb92 University of Gujrat جامعہ گجرات'),
(79998, 'https://ror.org/00q7fqf35', 'en', 1, 'https://ror.org/00q7fqf35 California NanoSystems Institute'),
(79999, 'https://ror.org/00d6bdx78', 'en', 1, 'https://ror.org/00d6bdx78 Ontario Society of Occupational Therapists'),
(80000, 'https://ror.org/017nq0d63', 'en', 1, 'https://ror.org/017nq0d63 Alexander S Onassis Public Benefit Foundation Κοινωφελές Ιδρυμα Αλεξανδρου Ωνάση'),
(80001, 'https://ror.org/03ek23472', 'en', 1, 'https://ror.org/03ek23472 Huaibei Normal University 淮北师范大学'),
(80002, 'https://ror.org/007h4qe29', 'en', 1, 'https://ror.org/007h4qe29 Tri-Service General Hospital 三軍總醫院'),
(80003, 'https://ror.org/01tdzxm38', 'en', 1, 'https://ror.org/01tdzxm38 India Meteorological Department'),
(80004, 'https://ror.org/00dw1q752', 'en', 1, 'https://ror.org/00dw1q752 Experimental Psychology Society'),
(80005, 'https://ror.org/00zp3kj13', 'en', 1, 'https://ror.org/00zp3kj13 Shanghai Municipal Human Resources and Social Security Bureau 上海市人力资源和社会保障局'),
(80006, 'https://ror.org/03tghng59', 'en', 1, 'https://ror.org/03tghng59 Instituto de Investigación del Suroeste Southwest Research Institute'),
(80007, 'https://ror.org/02hhwwz98', 'en', 1, 'https://ror.org/02hhwwz98 Tsinghua–Berkeley Shenzhen Institute 清华大学伯克利分校深圳研究院'),
(80008, 'https://ror.org/05jqb8z52', 'en', 1, 'https://ror.org/05jqb8z52 American Society on Aging'),
(80009, 'https://ror.org/014nzt826', 'en', 1, 'https://ror.org/014nzt826 Endeavour College of Natural Health'),
(80010, 'https://ror.org/052ysct21', 'no_lang_code', 1, 'https://ror.org/052ysct21 CymaBay Therapeutics (United States)'),
(80011, 'https://ror.org/036tvvp06', 'en', 1, 'https://ror.org/036tvvp06 University Grants Commission Sri Lanka இலங்கை பல்கலைக்கழக மானியங்கள் ஆணைக்குழு විශ්වවිද්යාල ප්රතිපාදන කොමිෂන් සභාව - ශ්රී ලංකා'),
(80012, 'https://ror.org/049v69k10', 'en', 1, 'https://ror.org/049v69k10 Rowan University'),
(80013, 'https://ror.org/02gsmy581', 'en', 1, 'https://ror.org/02gsmy581 Bone Cancer Research Trust'),
(80014, 'https://ror.org/05gb9dv72', 'en', 1, 'https://ror.org/05gb9dv72 Pakistan Academy of Sciences پاکستان اكيڈ مى ﺁف سائنسز'),
(80015, 'https://ror.org/02drkkh02', 'es', 1, 'https://ror.org/02drkkh02 Universidad Autónoma de Occidente'),
(80016, 'https://ror.org/01b9n8m42', 'no_lang_code', 1, 'https://ror.org/01b9n8m42 Tata Consultancy Services (India)'),
(80017, 'https://ror.org/02ef40e75', 'en', 1, 'https://ror.org/02ef40e75 Royal Australasian College of Surgeons'),
(80018, 'https://ror.org/01pw5qp76', 'en', 1, 'https://ror.org/01pw5qp76 Anhui Academy of Agricultural Sciences 安徽省农科院'),
(80019, 'https://ror.org/05yadcm11', 'en', 1, 'https://ror.org/05yadcm11 Institution of Occupational Safety and Health'),
(80020, 'https://ror.org/01mp52y34', 'en', 1, 'https://ror.org/01mp52y34 Heising-Simons Foundation'),
(80021, 'https://ror.org/03q75vf28', 'en', 1, 'https://ror.org/03q75vf28 Toyota Physical and Chemical Research Institute 豊田理化学研究所設立'),
(80022, 'https://ror.org/022ght635', 'en', 1, 'https://ror.org/022ght635 Forest History Society'),
(80023, 'https://ror.org/03wwr4r78', 'en', 1, 'https://ror.org/03wwr4r78 Hunan Provincial People''s Hospital 湖南省人民医院'),
(80024, 'https://ror.org/02858hr49', 'en', 1, 'https://ror.org/02858hr49 American Academy of Ophthalmology'),
(80025, 'https://ror.org/00c0zxf82', 'en', 1, 'https://ror.org/00c0zxf82 National Wildlife Federation'),
(80026, 'https://ror.org/04svesj94', 'en', 1, 'https://ror.org/04svesj94 Chartered Institute of Architectural Technologists'),
(80027, 'https://ror.org/0498pcx51', 'en', 1, 'https://ror.org/0498pcx51 Taylor''s University'),
(80028, 'https://ror.org/02afb0t44', 'en', 1, 'https://ror.org/02afb0t44 Texas Academy of Science'),
(80029, 'https://ror.org/04zgj7914', 'en', 1, 'https://ror.org/04zgj7914 State Key Laboratory of Food Science and Technology 食品科学与技术国家重点实验室'),
(80030, 'https://ror.org/01zewfb16', 'en', 1, 'https://ror.org/01zewfb16 Environment Agency'),
(80031, 'https://ror.org/018y70h07', 'en', 1, 'https://ror.org/018y70h07 Physicians Committee for Responsible Medicine'),
(80032, 'https://ror.org/04cbsc827', 'no_lang_code', 1, 'https://ror.org/04cbsc827 Terrafix Geosynthetics (Canada)'),
(80033, 'https://ror.org/04r7rxc53', 'en', 1, 'https://ror.org/04r7rxc53 Centre for Environment, Fisheries and Aquaculture Science'),
(80034, 'https://ror.org/00jfgrn87', 'en', 1, 'https://ror.org/00jfgrn87 Children''s Investment Fund Foundation'),
(80035, 'https://ror.org/059ryjv25', 'en', 1, 'https://ror.org/059ryjv25 Chung Shan Medical University'),
(80036, 'https://ror.org/0397b2492', 'en', 1, 'https://ror.org/0397b2492 North Carolina Department of Agriculture and Consumer Services'),
(80037, 'https://ror.org/00xddhq60', 'no_lang_code', 1, 'https://ror.org/00xddhq60 Al-Ahliyya Amman University جامعة عمان الأهلية'),
(80038, 'https://ror.org/04n4q2213', 'no_lang_code', 1, 'https://ror.org/04n4q2213 Basilea Pharmaceutica (Switzerland)'),
(80039, 'https://ror.org/0137n4m74', 'en', 1, 'https://ror.org/0137n4m74 Tuskegee University'),
(80040, 'https://ror.org/023kjn321', 'en', 1, 'https://ror.org/023kjn321 Qazvin Islamic Azad University دانشگاه آزاد اسلامی واحد قزوین'),
(80041, 'https://ror.org/028sbah75', 'en', 1, 'https://ror.org/028sbah75 European Society of Human Reproduction and Embryology'),
(80042, 'https://ror.org/052bx8q98', 'en', 1, 'https://ror.org/052bx8q98 Nazarbayev University Назарбаев Университет Назарбаев Университеті'),
(80043, 'https://ror.org/00b31g692', 'en', 1, 'https://ror.org/00b31g692 Barts Health NHS Trust'),
(80044, 'https://ror.org/0119q5s74', 'en', 1, 'https://ror.org/0119q5s74 Bangladesh Academy of Sciences'),
(80045, 'https://ror.org/016xje988', 'en', 1, 'https://ror.org/016xje988 University of Namibia Universität von Namibia'),
(80046, 'https://ror.org/03wa91e11', 'en', 1, 'https://ror.org/03wa91e11 European Academy of Allergy and Clinical Immunology'),
(80047, 'https://ror.org/00ntzjs22', 'en', 1, 'https://ror.org/00ntzjs22 Chartered Institution of Building Services Engineers'),
(80048, 'https://ror.org/00v5gqm66', 'en', 1, 'https://ror.org/00v5gqm66 China Institute of Atomic Energy 中国原子能科学研究院'),
(80049, 'https://ror.org/012tqgb57', 'en', 1, 'https://ror.org/012tqgb57 Ryukoku University 龍谷大学'),
(80050, 'https://ror.org/0391zw446', 'en', 1, 'https://ror.org/0391zw446 China University of Labor Relations 中国劳动关系学院'),
(80051, 'https://ror.org/03hy6ga56', 'en', 1, 'https://ror.org/03hy6ga56 China International Medical Foundation'),
(80052, 'https://ror.org/05tjeyz47', 'en', 1, 'https://ror.org/05tjeyz47 Energy Technologies Institute'),
(80053, 'https://ror.org/0047bvr32', 'en', 1, 'https://ror.org/0047bvr32 National Security Agency'),
(80054, 'https://ror.org/02620c122', 'no_lang_code', 1, 'https://ror.org/02620c122 Electro Scientific Industries (United States)'),
(80055, 'https://ror.org/05gpkvs36', 'en', 1, 'https://ror.org/05gpkvs36 Australian Veterinary Association'),
(80056, 'https://ror.org/05pny7s12', 'en', 1, 'https://ror.org/05pny7s12 Khulna University খুলনা বিশ্ববিদ্যালয়'),
(80057, 'https://ror.org/0574eex11', 'en', 1, 'https://ror.org/0574eex11 Temasek Life Sciences Laboratory'),
(80058, 'https://ror.org/03tte2338', 'en', 1, 'https://ror.org/03tte2338 Mississippi Academy of Sciences'),
(80059, 'https://ror.org/05k0zzt52', 'en', 1, 'https://ror.org/05k0zzt52 State Fund for Fundamental Research of Ukraine'),
(80060, 'https://ror.org/03pkp5n34', 'fi', 1, 'https://ror.org/03pkp5n34 Aarne Koskelon Säätiö'),
(80061, 'https://ror.org/048gmay44', 'en', 1, 'https://ror.org/048gmay44 University of the Sciences Université des sciences à philadelphie'),
(80062, 'https://ror.org/00pjgxh97', 'de', 1, 'https://ror.org/00pjgxh97 Universitätsklinikum Tübingen'),
(80063, 'https://ror.org/0393rf026', 'en', 1, 'https://ror.org/0393rf026 Pancreatic Cancer Canada Foundation'),
(80064, 'https://ror.org/05836pk12', 'en', 1, 'https://ror.org/05836pk12 Assam Agricultural University असम कृषि विश्वविद्यालय অসম কৃষি বিশ্ববিদ্যালয়'),
(80065, 'https://ror.org/04ez6qq41', 'en', 1, 'https://ror.org/04ez6qq41 Austin Medical Research Foundation'),
(80066, 'https://ror.org/05vjq0r17', 'en', 1, 'https://ror.org/05vjq0r17 Okayama Foundation for Science and Technology 公益財団法人 岡山工学振興会'),
(80067, 'https://ror.org/026gatw61', 'en', 1, 'https://ror.org/026gatw61 International Federation of Library Associations and Institutions'),
(80068, 'https://ror.org/02ccba128', 'en', 1, 'https://ror.org/02ccba128 Adama Science and Technology University አዳማ ሳይንስና ቴክኖሎጂ ዩኒቨርስቲ'),
(80069, 'https://ror.org/05qx9yv62', 'en', 1, 'https://ror.org/05qx9yv62 Zonta International Foundation'),
(80070, 'https://ror.org/02n455404', 'en', 1, 'https://ror.org/02n455404 University of Central Oklahoma Université du centre de l''oklahoma'),
(80071, 'https://ror.org/04jwepe89', 'en', 1, 'https://ror.org/04jwepe89 Council for British Archaeology'),
(80072, 'https://ror.org/04bpyvy69', 'en', 1, 'https://ror.org/04bpyvy69 Mekelle University መቐለ ዩኒቨርሲቲ መቐለ ዩኒቨርስቲ'),
(80073, 'https://ror.org/032q98j12', 'no_lang_code', 1, 'https://ror.org/032q98j12 Wikimedia Foundation'),
(80074, 'https://ror.org/012sfmg27', 'en', 1, 'https://ror.org/012sfmg27 Anhui Sanlian University 安徽三联学院'),
(80075, 'https://ror.org/05755j256', 'en', 1, 'https://ror.org/05755j256 Henry Moore Foundation'),
(80076, 'https://ror.org/002y4pe44', 'en', 1, 'https://ror.org/002y4pe44 East Siberia State University of Technology and Management Федеральное государственное бюджетное образовательное учреждение высшего профессионального образования Восточно-Сибирский государственный университет технологий и управления'),
(80077, 'https://ror.org/00vs06289', 'en', 1, 'https://ror.org/00vs06289 European Physical Society'),
(80078, 'https://ror.org/02bv3zr67', 'en', 1, 'https://ror.org/02bv3zr67 Homi Bhabha National Institute होमी भाभा राष्ट्रीय संस्थान ஹோமி பாபா நிகர் நிலைப் பல்கலைக்கழகம்'),
(80079, 'https://ror.org/012xdha97', 'en', 1, 'https://ror.org/012xdha97 University of Malakand جامعہ مالاکنڈ'),
(80080, 'https://ror.org/01dzed356', 'en', 1, 'https://ror.org/01dzed356 Hunan Agricultural University 湖南农业大学'),
(80081, 'https://ror.org/04r72en83', 'en', 1, 'https://ror.org/04r72en83 University of International Relations 国际关系学院'),
(80082, 'https://ror.org/04j2yny21', 'en', 1, 'https://ror.org/04j2yny21 Glasgow Centre for Population Health'),
(80083, 'https://ror.org/04eq9g543', 'en', 1, 'https://ror.org/04eq9g543 Pakistan Agricultural Research Council'),
(80084, 'https://ror.org/04bcrs686', 'en', 1, 'https://ror.org/04bcrs686 Japan Student Services Organization 日本学生支援機構'),
(80085, 'https://ror.org/043fs9135', 'es', 1, 'https://ror.org/043fs9135 Agencia Española de Medicamentos y Productos Sanitarios'),
(80086, 'https://ror.org/01tjgw469', 'en', 1, 'https://ror.org/01tjgw469 Gannan Medical University 赣南医学院'),
(80087, 'https://ror.org/03y54e085', 'en', 1, 'https://ror.org/03y54e085 Ecological Society of America'),
(80088, 'https://ror.org/04c6sc363', 'fr', 1, 'https://ror.org/04c6sc363 Société Nationale Française de Gastro-Entérologie'),
(80089, 'https://ror.org/045k2ma45', 'en', 1, 'https://ror.org/045k2ma45 Food Safety and Inspection Service'),
(80090, 'https://ror.org/00f2kew86', 'pt', 1, 'https://ror.org/00f2kew86 Hospital de Câncer de Barretos'),
(80091, 'https://ror.org/01963ay88', 'en', 1, 'https://ror.org/01963ay88 Hawaii Pacific University'),
(80092, 'https://ror.org/02vk0sm33', 'en', 1, 'https://ror.org/02vk0sm33 Gas Technology Institute'),
(80093, 'https://ror.org/04ptv2b23', 'en', 1, 'https://ror.org/04ptv2b23 American Academy of Environmental Engineers and Scientists'),
(80094, 'https://ror.org/03r1hk592', 'en', 1, 'https://ror.org/03r1hk592 Baker Foundation'),
(80095, 'https://ror.org/02q4z9x50', 'de', 1, 'https://ror.org/02q4z9x50 Gesellschaft für Thrombose- und Hämostaseforschung'),
(80096, 'https://ror.org/01c82hv29', 'en', 1, 'https://ror.org/01c82hv29 Sigma Theta Tau International'),
(80097, 'https://ror.org/0415tqb32', 'en', 1, 'https://ror.org/0415tqb32 Marine Technology Society'),
(80098, 'https://ror.org/05rs3pv16', 'en', 1, 'https://ror.org/05rs3pv16 Chongqing Three Gorges University 重庆三峡学院'),
(80099, 'https://ror.org/03hre7f61', 'es', 1, 'https://ror.org/03hre7f61 Hospital Regional de Alta Especialidad del Bajío'),
(80100, 'https://ror.org/05167c961', 'en', 1, 'https://ror.org/05167c961 Western University of Health Sciences'),
(80101, 'https://ror.org/05skgxb48', 'en', 1, 'https://ror.org/05skgxb48 Arab International University Արաբական միջազգային համալսարան الجامعة العربية الدولية الخاصة'),
(80102, 'https://ror.org/0058wy590', 'pt', 1, 'https://ror.org/0058wy590 Catholic University of Brasília Universidad Católica de Brasilia Universidade Católica de Brasília'),
(80103, 'https://ror.org/05vtdph75', 'en', 1, 'https://ror.org/05vtdph75 Chartered Institute of Building'),
(80104, 'https://ror.org/04gy6pv35', 'en', 1, 'https://ror.org/04gy6pv35 Chiayi Chang Gung Memorial Hospital'),
(80105, 'https://ror.org/00863x694', 'en', 1, 'https://ror.org/00863x694 Nepal Academy of Science and Technology'),
(80106, 'https://ror.org/02f1mqt91', 'de', 1, 'https://ror.org/02f1mqt91 Deutsches Historisches Institut Paris German Historical Institute Paris Institut Historique Allemand'),
(80107, 'https://ror.org/02an13226', 'en', 1, 'https://ror.org/02an13226 International Trade Administration'),
(80108, 'https://ror.org/04h7e4549', 'en', 1, 'https://ror.org/04h7e4549 American Neurological Association'),
(80109, 'https://ror.org/0222qrf24', 'en', 1, 'https://ror.org/0222qrf24 European Society of Intensive Care Medicine Société Européenne de Médecine de Soins Intensifs'),
(80110, 'https://ror.org/03rq9c547', 'en', 1, 'https://ror.org/03rq9c547 Akademia Wychowania Fizycznego i Sportu im. Jędrzeja Śniadeckiego w Gdańsku Gdansk University of Physical Education and Sport'),
(80111, 'https://ror.org/002nf6z37', 'en', 1, 'https://ror.org/002nf6z37 Columbus State University'),
(80112, 'https://ror.org/05s0pme69', 'no_lang_code', 1, 'https://ror.org/05s0pme69 AMAG Pharmaceuticals (United States)'),
(80113, 'https://ror.org/049zppa02', 'en', 1, 'https://ror.org/049zppa02 Defense Security Cooperation Agency'),
(80114, 'https://ror.org/05eynd241', 'en', 1, 'https://ror.org/05eynd241 Auburn University at Montgomery'),
(80115, 'https://ror.org/030bhbq32', 'no_lang_code', 1, 'https://ror.org/030bhbq32 Acadia Pharmaceuticals (United States)'),
(80116, 'https://ror.org/02fha3693', 'en', 1, 'https://ror.org/02fha3693 University Hospitals of Leicester NHS Trust'),
(80117, 'https://ror.org/017mv9d49', 'en', 1, 'https://ror.org/017mv9d49 Atlantic States Marine Fisheries Commission'),
(80118, 'https://ror.org/05e1f3f77', 'en', 1, 'https://ror.org/05e1f3f77 Central Research Institute for Dryland Agriculture केन्द्रीय शुष्क भूमि कृषि अनुसंधान संस्थान'),
(80119, 'https://ror.org/02jpqrb52', 'en', 1, 'https://ror.org/02jpqrb52 Orthopaedic Trauma Association'),
(80120, 'https://ror.org/038avdt50', 'en', 1, 'https://ror.org/038avdt50 Xi''an University of Technology 西安理工大学'),
(80121, 'https://ror.org/01jhpwy79', 'en', 1, 'https://ror.org/01jhpwy79 Ebonyi State University Yunifásítì Ìpínlẹ̀ Ẹ̀bọ́nyì'),
(80122, 'https://ror.org/04qjh2h11', 'en', 1, 'https://ror.org/04qjh2h11 Xinjiang Agricultural University 新疆农业大学'),
(80123, 'https://ror.org/05nry7t92', 'en', 1, 'https://ror.org/05nry7t92 Association of Public and Land-grant Universities'),
(80124, 'https://ror.org/01dwyxv59', 'en', 1, 'https://ror.org/01dwyxv59 English Institute of Sport'),
(80125, 'https://ror.org/02eqe7f55', 'en', 1, 'https://ror.org/02eqe7f55 Avon Foundation for Women'),
(80126, 'https://ror.org/04q0r6m34', 'es', 1, 'https://ror.org/04q0r6m34 Universidad Autónoma de la Ciudad de México'),
(80127, 'https://ror.org/02x66tk73', 'en', 1, 'https://ror.org/02x66tk73 Egypt-Japan University of Science and Technology الجامعة المصرية اليابانية للعلوم والتكنولوجيا'),
(80128, 'https://ror.org/00hgwte81', 'en', 1, 'https://ror.org/00hgwte81 Oregon Nanoscience and Microtechnologies Institute'),
(80129, 'https://ror.org/01cpwsn91', 'en', 1, 'https://ror.org/01cpwsn91 American Leprosy Missions'),
(80130, 'https://ror.org/00rcqs978', 'en', 1, 'https://ror.org/00rcqs978 Pennsylvania Department of Agriculture'),
(80131, 'https://ror.org/030jxf285', 'en', 1, 'https://ror.org/030jxf285 Heilongjiang Bayi Agricultural University'),
(80132, 'https://ror.org/01s1hm369', 'en', 1, 'https://ror.org/01s1hm369 Nippon Dental University 日本歯科大学'),
(80133, 'https://ror.org/038bsm707', 'no_lang_code', 1, 'https://ror.org/038bsm707 Digital Preservation Coalition (United Kingdom)'),
(80134, 'https://ror.org/030kw0b65', 'es', 1, 'https://ror.org/030kw0b65 Universidad de Medellín'),
(80135, 'https://ror.org/05yaa9j15', 'en', 1, 'https://ror.org/05yaa9j15 Hubei Provincial Department of Education'),
(80136, 'https://ror.org/04fp9z389', 'no_lang_code', 1, 'https://ror.org/04fp9z389 Cholangiocarcinoma Foundation'),
(80137, 'https://ror.org/005vg3k81', 'en', 1, 'https://ror.org/005vg3k81 North American Society for Pediatric Gastroenterology, Hepatology, and Nutrition'),
(80138, 'https://ror.org/027z64205', 'en', 1, 'https://ror.org/027z64205 Open University of Israel'),
(80139, 'https://ror.org/00t10qd56', 'en', 1, 'https://ror.org/00t10qd56 Michigan Department of Natural Resources'),
(80140, 'https://ror.org/016yezh07', 'en', 1, 'https://ror.org/016yezh07 Longhua Hospital Shanghai University of Traditional Chinese Medicine 上海中医药大学附属龙华医院'),
(80141, 'https://ror.org/04zqj3g76', 'en', 1, 'https://ror.org/04zqj3g76 First Nations University of Canada'),
(80142, 'https://ror.org/04z82ry91', 'en', 1, 'https://ror.org/04z82ry91 National Electronics and Computer Technology Center'),
(80143, 'https://ror.org/035sqd961', 'en', 1, 'https://ror.org/035sqd961 Stanley Foundation'),
(80144, 'https://ror.org/02y707x62', 'en', 1, 'https://ror.org/02y707x62 Ethiopian Public Health Association'),
(80145, 'https://ror.org/04kq7tf63', 'en', 1, 'https://ror.org/04kq7tf63 Mount Kenya University'),
(80146, 'https://ror.org/020rkr389', 'en', 1, 'https://ror.org/020rkr389 Guangxi Academy of Agricultural Science 广西壮族自治区农业科学院'),
(80147, 'https://ror.org/04bk7v425', 'en', 1, 'https://ror.org/04bk7v425 Mercer University Université de Mercer'),
(80148, 'https://ror.org/03fb3j069', 'en', 1, 'https://ror.org/03fb3j069 Illinois State Academy of Science'),
(80149, 'https://ror.org/05jg5ty85', 'en', 1, 'https://ror.org/05jg5ty85 Dedan Kimathi University of Technology'),
(80150, 'https://ror.org/05x510r30', 'en', 1, 'https://ror.org/05x510r30 Guizhou Institute of Technology 贵州理工学院'),
(80151, 'https://ror.org/05x3jck08', 'en', 1, 'https://ror.org/05x3jck08 University Hospitals Plymouth NHS Trust'),
(80152, 'https://ror.org/00mebz780', 'en', 1, 'https://ror.org/00mebz780 Brain Injury Association of America'),
(80153, 'https://ror.org/00g1x4v36', 'en', 1, 'https://ror.org/00g1x4v36 European Federation of Pharmaceutical Industries and Associations'),
(80154, 'https://ror.org/042fqyp44', 'en', 1, 'https://ror.org/042fqyp44 University College London Hospitals NHS Foundation Trust'),
(80155, 'https://ror.org/02vh3sc45', 'en', 1, 'https://ror.org/02vh3sc45 Dart Center for Journalism and Trauma'),
(80156, 'https://ror.org/04nd58p63', 'en', 1, 'https://ror.org/04nd58p63 Tel Aviv Sourasky Medical Center'),
(80157, 'https://ror.org/01qkvxz61', 'en', 1, 'https://ror.org/01qkvxz61 American Academy of Forensic Sciences'),
(80158, 'https://ror.org/02dvjfw95', 'en', 1, 'https://ror.org/02dvjfw95 University of Shiga Prefecture 滋賀県立大学'),
(80159, 'https://ror.org/03ahq3x51', 'en', 1, 'https://ror.org/03ahq3x51 Canadian Foundation for Pharmacy'),
(80160, 'https://ror.org/032ztsj35', 'en', 1, 'https://ror.org/032ztsj35 African Population and Health Research Center'),
(80161, 'https://ror.org/03vfp4g33', 'en', 1, 'https://ror.org/03vfp4g33 Indraprastha Institute of Information Technology Delhi اندر پرستھ انسٹی ٹیوٹ آف انفارمیشن ٹیکنالوجی इंद्रप्रस्थ माहिती तंत्रज्ञान संस्था -दिल्ली इंद्रप्रस्थ सूचना प्रौद्योगिकी संस्थान दिल्ली ইন্দ্রপ্রস্থ ইনস্টিটিউট তথ্য প্রযুক্তি -দিল্লি ਇੰਦਰਪ੍ਰਸਥ ਜਾਣਕਾਰੀ ਤਕਨਾਲੋਜੀ ਇੰਸਟੀਚਿਊਟ - ਦਿੱਲੀ '' ઈન્દ્રપ્રસ્થ માહિતી ટેકનોલોજી સંસ્થા - દિલ્હી இந்திரபிரஸ்தா தகவல் தொழில்நுட்ப நிறுவனம் ఇంద్రప్రస్థ ఇన్ఫర్మేషన్ టెక్నాలజీ ఇన్స్టిట్యూట్ - ఢిల్లీ ಇಂದ್ರಪ್ರಸ್ಥ ಮಾಹಿತಿ ತಂತ್ರಜ್ಞಾನ ಇನ್ಸ್ಟಿಟ್ಯೂಟ್ - ದೆಹಲಿ ഇന്ദ്രപ്രസ്ഥ വിവര സാങ്കേതിക ഇൻസ്റ്റിറ്റ്യൂട്ട് - ഡെൽഹി'),
(80162, 'https://ror.org/033dbfk07', 'en', 1, 'https://ror.org/033dbfk07 Great Lakes Adaptive Sports Association'),
(80163, 'https://ror.org/00b93bs30', 'en', 1, 'https://ror.org/00b93bs30 American Astronomical Society'),
(80164, 'https://ror.org/00cgxnn80', 'en', 1, 'https://ror.org/00cgxnn80 Society for Mathematical Biology'),
(80165, 'https://ror.org/03d63qr59', 'en', 1, 'https://ror.org/03d63qr59 Alabama Department of Conservation and Natural Resources'),
(80166, 'https://ror.org/01pnybk10', 'en', 1, 'https://ror.org/01pnybk10 Northern Ontario Academic Medicine Association'),
(80167, 'https://ror.org/02wp9c512', 'en', 1, 'https://ror.org/02wp9c512 Association of Southeast Asian Nations'),
(80168, 'https://ror.org/00hv6g197', 'en', 1, 'https://ror.org/00hv6g197 Pacific Institute for Climate Solutions'),
(80169, 'https://ror.org/05ycxzd89', 'en', 1, 'https://ror.org/05ycxzd89 Economic Research Service'),
(80170, 'https://ror.org/01fnrgf58', 'en', 1, 'https://ror.org/01fnrgf58 Patty Brisben Foundation for Women’s Sexual Health'),
(80171, 'https://ror.org/019dkd780', 'en', 1, 'https://ror.org/019dkd780 Al-Hussein Bin Talal University جامعة الحسين بن طلال'),
(80172, 'https://ror.org/03kyznd40', 'en', 1, 'https://ror.org/03kyznd40 American College of Preventive Medicine'),
(80173, 'https://ror.org/03vfpjp29', 'en', 1, 'https://ror.org/03vfpjp29 Hope International University'),
(80174, 'https://ror.org/030f73571', 'en', 1, 'https://ror.org/030f73571 Virginia Academy of Science'),
(80175, 'https://ror.org/010g9bb70', 'no_lang_code', 1, 'https://ror.org/010g9bb70 Quest Diagnostics (United States)'),
(80176, 'https://ror.org/04kj1hn59', 'en', 1, 'https://ror.org/04kj1hn59 Harvard Stem Cell Institute'),
(80177, 'https://ror.org/05hewn428', 'en', 1, 'https://ror.org/05hewn428 Drug Policy Alliance'),
(80178, 'https://ror.org/04b8x5a95', 'en', 1, 'https://ror.org/04b8x5a95 Cleveland Museum of Natural History'),
(80179, 'https://ror.org/01xcjmy57', 'it', 1, 'https://ror.org/01xcjmy57 Istituto Oncologico Veneto Veneto Institute of Oncology'),
(80180, 'https://ror.org/01vztzd79', 'en', 1, 'https://ror.org/01vztzd79 Indian Institute of Science Education and Research Mohali'),
(80181, 'https://ror.org/025mg0739', 'en', 1, 'https://ror.org/025mg0739 American Society for Biochemistry and Molecular Biology'),
(80182, 'https://ror.org/04h82wq77', 'no_lang_code', 1, 'https://ror.org/04h82wq77 Atara Biotherapeutics (United States)'),
(80183, 'https://ror.org/001tw8739', 'en', 1, 'https://ror.org/001tw8739 Association des bibliothèques de recherche du canada Canadian Association of Research Libraries'),
(80184, 'https://ror.org/04qrtgy16', 'en', 1, 'https://ror.org/04qrtgy16 MIREA - Russian Technological University Московский государственный технический университет радиотехники'),
(80185, 'https://ror.org/01x9fwa61', 'en', 1, 'https://ror.org/01x9fwa61 Antibiotic Research UK'),
(80186, 'https://ror.org/03gffmq02', 'en', 1, 'https://ror.org/03gffmq02 Canadian Nutrition Society Société Canadienne de Nutrition'),
(80187, 'https://ror.org/02qbc3192', 'en', 1, 'https://ror.org/02qbc3192 ZheJiang Academy of Agricultural Sciences 浙江省农业科学院'),
(80188, 'https://ror.org/02yqt2385', 'no_lang_code', 1, 'https://ror.org/02yqt2385 China Three Gorges Corporation (China) 中国长江三峡集团公司'),
(80189, 'https://ror.org/01t80ed43', 'en', 1, 'https://ror.org/01t80ed43 Hamaguchi Foundation for the Advancement of Biochemistry 一般財団法人濱口生化学振興財団'),
(80190, 'https://ror.org/050m26017', 'en', 1, 'https://ror.org/050m26017 Farm Service Agency'),
(80191, 'https://ror.org/0051w2v06', 'en', 1, 'https://ror.org/0051w2v06 University of Engineering and Technology Lahore جامعہ ہندسیات و طرزیات، لاہور'),
(80192, 'https://ror.org/04zd7zv52', 'en', 1, 'https://ror.org/04zd7zv52 Academy of Neuroscience for Architecture'),
(80193, 'https://ror.org/03cjece29', 'en', 1, 'https://ror.org/03cjece29 Pacific National University Тихоокеанский государственный университет'),
(80194, 'https://ror.org/00jx2dc23', 'en', 1, 'https://ror.org/00jx2dc23 Radiation Research Society'),
(80195, 'https://ror.org/004vanv95', 'en', 1, 'https://ror.org/004vanv95 China National Space Administration 国家航天局'),
(80196, 'https://ror.org/01ftj9h26', 'no_lang_code', 1, 'https://ror.org/01ftj9h26 Hellenic Atherosclerosis Society'),
(80197, 'https://ror.org/01mqx8q10', 'en', 1, 'https://ror.org/01mqx8q10 Agriculture Victoria'),
(80198, 'https://ror.org/03kcjz738', 'en', 1, 'https://ror.org/03kcjz738 China National Center for Food Safety Risk Assessment 国家食品安全风险评估中心'),
(80199, 'https://ror.org/034mtvk83', 'en', 1, 'https://ror.org/034mtvk83 University of New Orleans Université de la nouvelle-orléans'),
(80200, 'https://ror.org/01b52zk20', 'en', 1, 'https://ror.org/01b52zk20 National Speleological Society'),
(80201, 'https://ror.org/03gf8rp76', 'en', 1, 'https://ror.org/03gf8rp76 National Centre for Biological Sciences ರಾಷ್ಟ್ರೀಯ ಜೀವ ವಿಜ್ಞಾನ ಕೇಂದ್ರ'),
(80202, 'https://ror.org/02qxkhm81', 'en', 1, 'https://ror.org/02qxkhm81 Hebei University of Chinese Medicine'),
(80203, 'https://ror.org/02k1cnv49', 'de', 1, 'https://ror.org/02k1cnv49 Deutsche Gesellschaft für Zahn-, Mund- und Kieferheilkunde'),
(80204, 'https://ror.org/005kw6t15', 'no_lang_code', 1, 'https://ror.org/005kw6t15 Infineon Technologies (Germany)'),
(80205, 'https://ror.org/00znvbk37', 'en', 1, 'https://ror.org/00znvbk37 National Health Laboratory Service'),
(80206, 'https://ror.org/01d2sez20', 'en', 1, 'https://ror.org/01d2sez20 Missouri State University Université d''État du missouri'),
(80207, 'https://ror.org/03fjc3817', 'en', 1, 'https://ror.org/03fjc3817 Shanghai Chest Hospital'),
(80208, 'https://ror.org/056vyez31', 'en', 1, 'https://ror.org/056vyez31 Naval University of Engineering 中国人民解放军海军工程大学'),
(80209, 'https://ror.org/04e27p903', 'en', 1, 'https://ror.org/04e27p903 Adekunle Ajasin University'),
(80210, 'https://ror.org/05e9eyh13', 'en', 1, 'https://ror.org/05e9eyh13 Woodland Trust'),
(80211, 'https://ror.org/05y3qh794', 'en', 1, 'https://ror.org/05y3qh794 Nottingham University Hospitals NHS Trust'),
(80212, 'https://ror.org/04c5ams53', 'fr', 1, 'https://ror.org/04c5ams53 Agence Régionale de Santé Ile-de-France'),
(80213, 'https://ror.org/051f75a52', 'en', 1, 'https://ror.org/051f75a52 Loyola University New Orleans Universidad Loyola Nueva Orleans'),
(80214, 'https://ror.org/00dre6z66', 'en', 1, 'https://ror.org/00dre6z66 Guangdong Industry Technical College 广东轻工职业技术学院'),
(80215, 'https://ror.org/01ca2by25', 'en', 1, 'https://ror.org/01ca2by25 Great Lakes Bioenergy Research Center'),
(80216, 'https://ror.org/00nqb1v70', 'en', 1, 'https://ror.org/00nqb1v70 University of Tennessee at Chattanooga Université du tennessee à chattanooga'),
(80217, 'https://ror.org/05hr6q169', 'en', 1, 'https://ror.org/05hr6q169 A.T. Still University'),
(80218, 'https://ror.org/029y69023', 'en', 1, 'https://ror.org/029y69023 Biomedical Advanced Research and Development Authority'),
(80219, 'https://ror.org/01fyqq855', 'en', 1, 'https://ror.org/01fyqq855 Seafish'),
(80220, 'https://ror.org/02t378715', 'en', 1, 'https://ror.org/02t378715 Exxon Valdez Oil Spill Trustee Council'),
(80221, 'https://ror.org/053yx4c68', 'en', 1, 'https://ror.org/053yx4c68 Department of Industrial Technology'),
(80222, 'https://ror.org/03yhpeg97', 'en', 1, 'https://ror.org/03yhpeg97 Hercules Foundation'),
(80223, 'https://ror.org/055bexb09', 'fr', 1, 'https://ror.org/055bexb09 Association Française du Syndrome d''Ondine'),
(80224, 'https://ror.org/056ajev02', 'en', 1, 'https://ror.org/056ajev02 Birmingham Women’s and Children’s NHS Foundation Trust'),
(80225, 'https://ror.org/03r7vnf29', 'en', 1, 'https://ror.org/03r7vnf29 Golpayegan University of Engineering دانشکده فنی و مهندسی گلپايگان'),
(80226, 'https://ror.org/01neh8064', 'en', 1, 'https://ror.org/01neh8064 National Nanotechnology Center ศูนย์นาโนเทคโนโลยีแห่งชาติ'),
(80227, 'https://ror.org/0506y2b23', 'it', 1, 'https://ror.org/0506y2b23 Istituto Nazionale Tumori IRCCS "Fondazione G. Pascale"'),
(80228, 'https://ror.org/00y6v8h24', 'en', 1, 'https://ror.org/00y6v8h24 American Society of Cataract and Refractive Surgery'),
(80229, 'https://ror.org/01jbfvb72', 'en', 1, 'https://ror.org/01jbfvb72 Association Universitaire Canadienne d''Études Nordiques Association of Canadian Universities for Northern Studies'),
(80230, 'https://ror.org/01q928n88', 'en', 1, 'https://ror.org/01q928n88 Baltimore City Health Department'),
(80231, 'https://ror.org/0135c5n64', 'en', 1, 'https://ror.org/0135c5n64 Central Intelligence Agency'),
(80232, 'https://ror.org/05xe40a72', 'en', 1, 'https://ror.org/05xe40a72 Foundation for Biomedical Research and Innovation 先端医療振興財団'),
(80233, 'https://ror.org/04zrbnc33', 'en', 1, 'https://ror.org/04zrbnc33 Multimedia University มหาวิทยาลัยมัลติมีเดีย'),
(80234, 'https://ror.org/04wn7wc95', 'en', 1, 'https://ror.org/04wn7wc95 Nagoya City University 名古屋市立大学'),
(80235, 'https://ror.org/01c4jmp52', 'en', 1, 'https://ror.org/01c4jmp52 Chengdu Medical College 成都医学院'),
(80236, 'https://ror.org/013b36x77', 'en', 1, 'https://ror.org/013b36x77 Advantage West Midlands'),
(80237, 'https://ror.org/03zpd7f57', 'en', 1, 'https://ror.org/03zpd7f57 Al Jalila Foundation'),
(80238, 'https://ror.org/03qdcb993', 'en', 1, 'https://ror.org/03qdcb993 Harbin Science and Technology Bureau'),
(80239, 'https://ror.org/007q4yk54', 'no_lang_code', 1, 'https://ror.org/007q4yk54 Gustavus Adolphus College'),
(80240, 'https://ror.org/03ep9w883', 'en', 1, 'https://ror.org/03ep9w883 Australian College of Optometry'),
(80241, 'https://ror.org/05xh28b78', 'en', 1, 'https://ror.org/05xh28b78 American Laryngological Association'),
(80242, 'https://ror.org/02j172648', 'en', 1, 'https://ror.org/02j172648 Macular Society'),
(80243, 'https://ror.org/02z296148', 'en', 1, 'https://ror.org/02z296148 Royal Meteorological Society'),
(80244, 'https://ror.org/05ghzpa93', 'no_lang_code', 1, 'https://ror.org/05ghzpa93 Guru Nanak Dev University ਗੁਰੂ ਨਾਨਕ ਦੇਵ ਯੂਨੀਵਰਸਿਟੀ'),
(80245, 'https://ror.org/0192stn37', 'en', 1, 'https://ror.org/0192stn37 Association of Teacher Educators'),
(80246, 'https://ror.org/00msd7q84', 'en', 1, 'https://ror.org/00msd7q84 Canadian Orthopaedic Foundation'),
(80247, 'https://ror.org/0517jgz17', 'en', 1, 'https://ror.org/0517jgz17 American Holistic Nurses Association'),
(80248, 'https://ror.org/05hz4ph43', 'en', 1, 'https://ror.org/05hz4ph43 Alaska Pacific University'),
(80249, 'https://ror.org/01rgp0j22', 'no_lang_code', 1, 'https://ror.org/01rgp0j22 Arog Pharmaceuticals (United States)'),
(80250, 'https://ror.org/0569s5x60', 'en', 1, 'https://ror.org/0569s5x60 China Women''s University 中华女子学院'),
(80251, 'https://ror.org/024kejf30', 'en', 1, 'https://ror.org/024kejf30 Cancer de l''Ovaire Canada Ovarian Cancer Canada'),
(80252, 'https://ror.org/0442pkv24', 'en', 1, 'https://ror.org/0442pkv24 Charotar University of Science and Technology ચરોતર યુનિવર્સિટિ ઓફ સાયન્સ એન્ડ ટેક્નૉલોજી'),
(80253, 'https://ror.org/01xgs3376', 'en', 1, 'https://ror.org/01xgs3376 American College of Medical Toxicology'),
(80254, 'https://ror.org/01apna436', 'en', 1, 'https://ror.org/01apna436 Ohio Supercomputer Center'),
(80255, 'https://ror.org/01n0k5m85', 'en', 1, 'https://ror.org/01n0k5m85 King''s College Hospital NHS Foundation Trust'),
(80256, 'https://ror.org/05x21tp94', 'en', 1, 'https://ror.org/05x21tp94 Zaozhuang University'),
(80257, 'https://ror.org/04qca4971', 'en', 1, 'https://ror.org/04qca4971 Indiana Department of Natural Resources'),
(80258, 'https://ror.org/042r9ys73', 'en', 1, 'https://ror.org/042r9ys73 Association des universités indiennes Association of Indian Universities'),
(80259, 'https://ror.org/005x9g035', 'en', 1, 'https://ror.org/005x9g035 Colorado School of Public Health'),
(80260, 'https://ror.org/02k1fef77', 'en', 1, 'https://ror.org/02k1fef77 Canadian Cardiovascular Society'),
(80261, 'https://ror.org/050ngae93', 'en', 1, 'https://ror.org/050ngae93 European Academy of Dermatology and Venereology'),
(80262, 'https://ror.org/00refd139', 'en', 1, 'https://ror.org/00refd139 Association of Nurses in AIDS Care'),
(80263, 'https://ror.org/01xnhsa91', 'en', 1, 'https://ror.org/01xnhsa91 Center for Construction Research and Training'),
(80264, 'https://ror.org/0466jcd14', 'fr', 1, 'https://ror.org/0466jcd14 Conseil Régional de Lorraine'),
(80265, 'https://ror.org/002trms45', 'en', 1, 'https://ror.org/002trms45 Hydrocephalus Association'),
(80266, 'https://ror.org/03qb7bg95', 'en', 1, 'https://ror.org/03qb7bg95 Guangzhou University of Chinese Medicine 广州中医药大学'),
(80267, 'https://ror.org/00bnq0b88', 'en', 1, 'https://ror.org/00bnq0b88 Oklahoma Department of Wildlife Conservation'),
(80268, 'https://ror.org/005rvws84', 'en', 1, 'https://ror.org/005rvws84 Chiang Rai Rajabhat University มหาวิทยาลัยราชภัฏเชียงราย'),
(80269, 'https://ror.org/04qg81z57', 'en', 1, 'https://ror.org/04qg81z57 Hubei Academy of Agricultural Sciences 湖北省农业科学院'),
(80270, 'https://ror.org/021jt1927', 'en', 1, 'https://ror.org/021jt1927 University of Hafr Al-Batin جامعة حفرالباطن'),
(80271, 'https://ror.org/02jn36537', 'en', 1, 'https://ror.org/02jn36537 Southwest Hospital 西南医院'),
(80272, 'https://ror.org/059d3zc80', 'en', 1, 'https://ror.org/059d3zc80 Asthma and Allergy Foundation of America'),
(80273, 'https://ror.org/04ajrmg05', 'en', 1, 'https://ror.org/04ajrmg05 Chukyo University 中京大学'),
(80274, 'https://ror.org/038x7ta12', 'en', 1, 'https://ror.org/038x7ta12 Lewis Clark State College Lewis–Clark State College'),
(80275, 'https://ror.org/01mqyyq64', 'en', 1, 'https://ror.org/01mqyyq64 Department of National Parks Wildlife and Plant Conservation กรมอุทยานแห่งชาติ สัตว์ป่า และพันธุ์พืช'),
(80276, 'https://ror.org/0254bmq54', 'en', 1, 'https://ror.org/0254bmq54 National Center of Neurology and Psychiatry 神経精神医学センター'),
(80277, 'https://ror.org/00nzx7971', 'en', 1, 'https://ror.org/00nzx7971 Mycological Society of America'),
(80278, 'https://ror.org/0514zf363', 'en', 1, 'https://ror.org/0514zf363 North Carolina Academy of Science'),
(80279, 'https://ror.org/00edrn755', 'en', 1, 'https://ror.org/00edrn755 Hvidovre Hospital'),
(80280, 'https://ror.org/04yr6h117', 'en', 1, 'https://ror.org/04yr6h117 American Academy of Hospice and Palliative Medicine'),
(80281, 'https://ror.org/04ztzhc98', 'en', 1, 'https://ror.org/04ztzhc98 Rotary Club of Eureka'),
(80282, 'https://ror.org/03v00ka07', 'en', 1, 'https://ror.org/03v00ka07 University of Engineering and Technology Taxila'),
(80283, 'https://ror.org/02z1n9q24', 'en', 1, 'https://ror.org/02z1n9q24 University of the Ryukyus 琉球大学'),
(80284, 'https://ror.org/032cjs650', 'en', 1, 'https://ror.org/032cjs650 European Society of Radiology'),
(80285, 'https://ror.org/010p1tc53', 'en', 1, 'https://ror.org/010p1tc53 Phase One Foundation'),
(80286, 'https://ror.org/024z17f57', 'en', 1, 'https://ror.org/024z17f57 Missile Defense Agency'),
(80287, 'https://ror.org/0219p8s51', 'en', 1, 'https://ror.org/0219p8s51 America''s Essential Hospitals'),
(80288, 'https://ror.org/01p18bt48', 'en', 1, 'https://ror.org/01p18bt48 Thomas University'),
(80289, 'https://ror.org/00edmjc06', 'en', 1, 'https://ror.org/00edmjc06 American Society for Investigative Pathology'),
(80290, 'https://ror.org/04vc9z215', 'en', 1, 'https://ror.org/04vc9z215 American Association of Diabetes Educators'),
(80291, 'https://ror.org/04tvshh35', 'en', 1, 'https://ror.org/04tvshh35 Mary M. Gooley Hemophilia Center'),
(80292, 'https://ror.org/02xm06c56', 'es', 1, 'https://ror.org/02xm06c56 Interamerican Open University Universidad Abierta Interamericana'),
(80293, 'https://ror.org/04se3fj97', 'en', 1, 'https://ror.org/04se3fj97 Armed Forces Institute of Pathology'),
(80294, 'https://ror.org/05222ev03', 'en', 1, 'https://ror.org/05222ev03 Risk Management Agency'),
(80295, 'https://ror.org/00ev3nz67', 'en', 1, 'https://ror.org/00ev3nz67 Guizhou Academy of Agricultural Sciences 贵州省农业科学院'),
(80296, 'https://ror.org/017z2hs09', 'pt', 1, 'https://ror.org/017z2hs09 Fundação de Empreendimentos Científicos e Tecnológicos'),
(80297, 'https://ror.org/03hqwnx39', 'en', 1, 'https://ror.org/03hqwnx39 Hebei North University 河北北方学院'),
(80298, 'https://ror.org/05201qm87', 'en', 1, 'https://ror.org/05201qm87 Huashan Hospital'),
(80299, 'https://ror.org/001ms2r47', 'no_lang_code', 1, 'https://ror.org/001ms2r47 Five Prime Therapeutics (United States)'),
(80300, 'https://ror.org/05w13qg40', 'en', 1, 'https://ror.org/05w13qg40 D. Mendeleyev University of Chemical Technology of Russia Российский химико-технологический университет имени Д. И. Менделеева'),
(80301, 'https://ror.org/01dc2fq43', 'en', 1, 'https://ror.org/01dc2fq43 New Mexico Academy of Science'),
(80302, 'https://ror.org/03vhnve41', 'en', 1, 'https://ror.org/03vhnve41 Southern California Earthquake Center'),
(80303, 'https://ror.org/00mm1qk40', 'en', 1, 'https://ror.org/00mm1qk40 PLA Information Engineering University 中国人民解放军信息工程大学'),
(80304, 'https://ror.org/03w093j43', 'en', 1, 'https://ror.org/03w093j43 Hong Kong Society of Nephrology'),
(80305, 'https://ror.org/04wkcqd42', 'en', 1, 'https://ror.org/04wkcqd42 Buffalo Bill Center of the West'),
(80306, 'https://ror.org/01f9cfx50', 'en', 1, 'https://ror.org/01f9cfx50 Paleontological Society'),
(80307, 'https://ror.org/04fcngg73', 'en', 1, 'https://ror.org/04fcngg73 Sense about Science'),
(80308, 'https://ror.org/00qk2nf71', 'en', 1, 'https://ror.org/00qk2nf71 Fiji National University'),
(80309, 'https://ror.org/046qgfw50', 'en', 1, 'https://ror.org/046qgfw50 Canadian Mennonite University'),
(80310, 'https://ror.org/01848hk04', 'no_lang_code', 1, 'https://ror.org/01848hk04 Shandong Jiaotong University'),
(80311, 'https://ror.org/005nbjh06', 'en', 1, 'https://ror.org/005nbjh06 Southwest Minnesota State University'),
(80312, 'https://ror.org/01xx4fy37', 'en', 1, 'https://ror.org/01xx4fy37 Agricultural Marketing Service'),
(80313, 'https://ror.org/00x0t3508', 'en', 1, 'https://ror.org/00x0t3508 American Iron and Steel Institute'),
(80314, 'https://ror.org/01nh3sx96', 'en', 1, 'https://ror.org/01nh3sx96 Geriatric Research Education and Clinical Center'),
(80315, 'https://ror.org/05beaae04', 'en', 1, 'https://ror.org/05beaae04 European Crohn''s and Colitis Organisation'),
(80316, 'https://ror.org/00ndt8971', 'en', 1, 'https://ror.org/00ndt8971 California Botanical Society'),
(80317, 'https://ror.org/05n116e91', 'en', 1, 'https://ror.org/05n116e91 Idaho State Board of Education'),
(80318, 'https://ror.org/04ncvnx26', 'fr', 1, 'https://ror.org/04ncvnx26 L’Agence Nationale pour l’amélioration des Conditions de Travail'),
(80319, 'https://ror.org/01755xe07', 'en', 1, 'https://ror.org/01755xe07 Grove City College'),
(80320, 'https://ror.org/02x59h163', 'no_lang_code', 1, 'https://ror.org/02x59h163 Arrien Pharmaceuticals (United States)'),
(80321, 'https://ror.org/05dfnp137', 'en', 1, 'https://ror.org/05dfnp137 American Society for Legal History'),
(80322, 'https://ror.org/0430zw506', 'en', 1, 'https://ror.org/0430zw506 Canadian Forest Service'),
(80323, 'https://ror.org/031xx1847', 'en', 1, 'https://ror.org/031xx1847 Dr. Ram Manohar Lohia Institute of Medical Sciences'),
(80324, 'https://ror.org/03hgxtg28', 'en', 1, 'https://ror.org/03hgxtg28 Beijing Institute of Fashion Technology 北京服装学院'),
(80325, 'https://ror.org/03pekdw43', 'en', 1, 'https://ror.org/03pekdw43 Persistent Systems (India)'),
(80326, 'https://ror.org/01rwx7470', 'no_lang_code', 1, 'https://ror.org/01rwx7470 Aichi Gakuin University 愛知学院大学'),
(80327, 'https://ror.org/05wgnjg63', 'en', 1, 'https://ror.org/05wgnjg63 Japan Brain Foundation'),
(80328, 'https://ror.org/00088z429', 'en', 1, 'https://ror.org/00088z429 Kobe Pharmaceutical University 神戸薬科大学'),
(80329, 'https://ror.org/01ckjz551', 'no_lang_code', 1, 'https://ror.org/01ckjz551 Cardiovascular Systems (United States)'),
(80330, 'https://ror.org/029ypb052', 'en', 1, 'https://ror.org/029ypb052 Society for the Study of Amphibians and Reptiles'),
(80331, 'https://ror.org/03qmgc142', 'en', 1, 'https://ror.org/03qmgc142 Kemmons Wilson Family Foundation'),
(80332, 'https://ror.org/02r3nf527', 'en', 1, 'https://ror.org/02r3nf527 IITB-Monash Research Academy'),
(80333, 'https://ror.org/04a5b0p13', 'en', 1, 'https://ror.org/04a5b0p13 Al-Zaytoonah University of Jordan جامعة الزيتونة الأردنية'),
(80334, 'https://ror.org/0578f1k82', 'en', 1, 'https://ror.org/0578f1k82 Henan Institute of Science and Technology'),
(80335, 'https://ror.org/03yg3v757', 'en', 1, 'https://ror.org/03yg3v757 Beijing Institute of Graphic Communication 北京印刷学院'),
(80336, 'https://ror.org/00w9hey63', 'en', 1, 'https://ror.org/00w9hey63 Directorate General for Communications Networks, Content and Technology Kommunikationsnetze, Inhalte und Technologien Réseaux de communication, contenu et technologies'),
(80337, 'https://ror.org/02k96x766', 'en', 1, 'https://ror.org/02k96x766 Foundation for Promotion of Material Science and Technology of Japan 般財団法人材料科学技術振興財団'),
(80338, 'https://ror.org/04qw19h46', 'en', 1, 'https://ror.org/04qw19h46 Society for Visual Anthropology'),
(80339, 'https://ror.org/00g2fk805', 'en', 1, 'https://ror.org/00g2fk805 Washington State University Vancouver'),
(80340, 'https://ror.org/02fz54z33', 'en', 1, 'https://ror.org/02fz54z33 Georgetown-Howard Universities Center for Clinical and Translational Science'),
(80341, 'https://ror.org/01mg0yh05', 'en', 1, 'https://ror.org/01mg0yh05 Federal Transit Administration'),
(80342, 'https://ror.org/029vdxt27', 'en', 1, 'https://ror.org/029vdxt27 HCA International Foundation'),
(80343, 'https://ror.org/05tkzma19', 'en', 1, 'https://ror.org/05tkzma19 Indira Gandhi Centre for Atomic Research इंदिरा गांधी अणुसंशोधन केंद्र इंदिरा गांधी परमाणु अनुसंधान केन्द्र இந்திரா காந்தி அணு ஆராய்ச்சி மையம்'),
(80344, 'https://ror.org/04xq9nz88', 'no_lang_code', 1, 'https://ror.org/04xq9nz88 Nisshin Seifun Group (Japan) 日清製粉グループ本社');
INSERT INTO `rors` VALUES
(80345, 'https://ror.org/00shsf120', 'en', 1, 'https://ror.org/00shsf120 National University of Ireland Ollscoil na hÉireann'),
(80346, 'https://ror.org/0462z9c20', 'en', 1, 'https://ror.org/0462z9c20 Alliance Healthcare Foundation'),
(80347, 'https://ror.org/052y05165', 'en', 1, 'https://ror.org/052y05165 Cape Breton University Université du cap-breton'),
(80348, 'https://ror.org/057zvdf83', 'en', 1, 'https://ror.org/057zvdf83 Safe Work Australia'),
(80349, 'https://ror.org/03n2mgj60', 'en', 1, 'https://ror.org/03n2mgj60 Persian Gulf University دانشگاه خلیج فارس'),
(80350, 'https://ror.org/007ygk571', 'en', 1, 'https://ror.org/007ygk571 Dystonia Medical Research Foundation Canada Fondation de Recherche Médicale sur la Dystonie'),
(80351, 'https://ror.org/05xvyz406', 'en', 1, 'https://ror.org/05xvyz406 Genetics Society of America'),
(80352, 'https://ror.org/00vez3k45', 'en', 1, 'https://ror.org/00vez3k45 British Pain Society'),
(80353, 'https://ror.org/04sbe6g90', 'en', 1, 'https://ror.org/04sbe6g90 Animal and Plant Quarantine Agency'),
(80354, 'https://ror.org/03n3v6d52', 'en', 1, 'https://ror.org/03n3v6d52 Chongqing University of Science and Technology 重庆科技学院'),
(80355, 'https://ror.org/048vche49', 'en', 1, 'https://ror.org/048vche49 Islamic Azad University Sanandaj Branch دانشگاه آزاد اسلامی واحد سنندج'),
(80356, 'https://ror.org/03zjxnp55', 'en', 1, 'https://ror.org/03zjxnp55 European Atherosclerosis Society'),
(80357, 'https://ror.org/028gccq90', 'en', 1, 'https://ror.org/028gccq90 Childhood Eye Cancer Trust'),
(80358, 'https://ror.org/02vaajx27', 'en', 1, 'https://ror.org/02vaajx27 Museums Galleries Scotland'),
(80359, 'https://ror.org/02bwytq13', 'en', 1, 'https://ror.org/02bwytq13 Guangzhou First People''s Hospital 广州市第一人民医院'),
(80360, 'https://ror.org/056ksgr44', 'no_lang_code', 1, 'https://ror.org/056ksgr44 PTT Public Company Limited (Thailand) ปตท'),
(80361, 'https://ror.org/04rzwwg09', 'no_lang_code', 1, 'https://ror.org/04rzwwg09 Arbor Pharmaceuticals (United States)'),
(80362, 'https://ror.org/01k8vtd75', 'en', 1, 'https://ror.org/01k8vtd75 Mansoura University جامعة المنصورة'),
(80363, 'https://ror.org/03az66838', 'en', 1, 'https://ror.org/03az66838 United Soybean Board'),
(80364, 'https://ror.org/049x8e923', 'en', 1, 'https://ror.org/049x8e923 Reflex Sympathetic Dystrophy Syndrome Association'),
(80365, 'https://ror.org/02gp4e279', 'en', 1, 'https://ror.org/02gp4e279 Chinese Academy of Geological Sciences 中国地质科学院'),
(80366, 'https://ror.org/05f3e6d47', 'en', 1, 'https://ror.org/05f3e6d47 National AIDS Control Organisation राष्ट्रीय एड्स नियंत्रण संगठन'),
(80367, 'https://ror.org/043pgqy52', 'en', 1, 'https://ror.org/043pgqy52 Universities Space Research Association'),
(80368, 'https://ror.org/0312whv68', 'en', 1, 'https://ror.org/0312whv68 Association canadienne de l''électricité Canadian Electricity Association'),
(80369, 'https://ror.org/012j67x85', 'en', 1, 'https://ror.org/012j67x85 Annenberg Foundation'),
(80370, 'https://ror.org/04atsbb87', 'en', 1, 'https://ror.org/04atsbb87 Florida Institute of Technology Institut Technologique de Floride'),
(80371, 'https://ror.org/021tq1e57', 'fr', 1, 'https://ror.org/021tq1e57 Office National de la Chasse et de la Faune Sauvage'),
(80372, 'https://ror.org/03se16w85', 'en', 1, 'https://ror.org/03se16w85 Réseau de Cellules Souches Stem Cell Network'),
(80373, 'https://ror.org/02jya5567', 'en', 1, 'https://ror.org/02jya5567 Beirut Arab University Université arabe de beyrouth جامعة بيروت العربية'),
(80374, 'https://ror.org/056zhna95', 'en', 1, 'https://ror.org/056zhna95 ClimateWorks Foundation'),
(80375, 'https://ror.org/00nst6k08', 'no_lang_code', 1, 'https://ror.org/00nst6k08 Aaniiih Nakoda College'),
(80376, 'https://ror.org/050sv4x28', 'en', 1, 'https://ror.org/050sv4x28 Buck Institute for Research on Aging'),
(80377, 'https://ror.org/03mjcd737', 'en', 1, 'https://ror.org/03mjcd737 Pamantasan ng Silangan University of the East'),
(80378, 'https://ror.org/023e0em87', 'en', 1, 'https://ror.org/023e0em87 Centre for International Governance Innovation'),
(80379, 'https://ror.org/04q9qf557', 'en', 1, 'https://ror.org/04q9qf557 Northeast Ohio Medical University'),
(80380, 'https://ror.org/03rfy1x10', 'no_lang_code', 1, 'https://ror.org/03rfy1x10 Adamas Pharmaceuticals (United States)'),
(80381, 'https://ror.org/01y5va805', 'en', 1, 'https://ror.org/01y5va805 Domestic Nuclear Detection Office'),
(80382, 'https://ror.org/00vq6eh39', 'en', 1, 'https://ror.org/00vq6eh39 American Headache Society'),
(80383, 'https://ror.org/03t9rxt77', 'no_lang_code', 1, 'https://ror.org/03t9rxt77 Sage Therapeutics (United States)'),
(80384, 'https://ror.org/02wncmm17', 'en', 1, 'https://ror.org/02wncmm17 Hellenic Health Foundation Ελληνικό Ίδρυμα Υγείας'),
(80385, 'https://ror.org/04b69g067', 'no_lang_code', 1, 'https://ror.org/04b69g067 Walailak University มหาวิทยาลัยวลัยลักษณ์'),
(80386, 'https://ror.org/038b0hg50', 'en', 1, 'https://ror.org/038b0hg50 Iowa Department of Natural Resources'),
(80387, 'https://ror.org/05vx2e607', 'en', 1, 'https://ror.org/05vx2e607 Blond McIndoe Research Foundation'),
(80388, 'https://ror.org/04e6ngf61', 'en', 1, 'https://ror.org/04e6ngf61 Hood College'),
(80389, 'https://ror.org/02bc8tz70', 'en', 1, 'https://ror.org/02bc8tz70 Neijiang Normal University 内江师范学院'),
(80390, 'https://ror.org/055xn9d15', 'en', 1, 'https://ror.org/055xn9d15 Hawaii Medical Service Association'),
(80391, 'https://ror.org/00sbfzz78', 'en', 1, 'https://ror.org/00sbfzz78 European Rhinologic Society'),
(80392, 'https://ror.org/02cqsbv23', 'en', 1, 'https://ror.org/02cqsbv23 Northland Polytechnic'),
(80393, 'https://ror.org/04nrcyx09', 'es', 1, 'https://ror.org/04nrcyx09 Centro Atómico Constituyentes'),
(80394, 'https://ror.org/03d0s8302', 'pt', 1, 'https://ror.org/03d0s8302 Universidade Estadual de Alagoas'),
(80395, 'https://ror.org/024ygae04', 'en', 1, 'https://ror.org/024ygae04 Borno State University'),
(80396, 'https://ror.org/04hrbe508', 'en', 1, 'https://ror.org/04hrbe508 University of Batna 1 Université de Batna 1 جامعة باتنة 1 الحاج لخضر'),
(80397, 'https://ror.org/00sekdz59', 'en', 1, 'https://ror.org/00sekdz59 Flatiron Institute'),
(80398, 'https://ror.org/03r4m3349', 'en', 1, 'https://ror.org/03r4m3349 Erasmus MC Cancer Institute Erasmus MC Kanker Instituut'),
(80399, 'https://ror.org/050z9fj14', 'pt', 1, 'https://ror.org/050z9fj14 Hospital São Paulo'),
(80400, 'https://ror.org/04g43ky75', 'en', 1, 'https://ror.org/04g43ky75 Ho Chi Minh City Institute of Physics Trung tâm Vật lý tại Thành phố Hồ Chí Minh'),
(80401, 'https://ror.org/02gfjzb42', 'en', 1, 'https://ror.org/02gfjzb42 Turkana University College'),
(80402, 'https://ror.org/04eeqc889', 'en', 1, 'https://ror.org/04eeqc889 Virginia Institute of Marine Science'),
(80403, 'https://ror.org/02ggaqt78', 'en', 1, 'https://ror.org/02ggaqt78 Laser Fusion Research Center 激光聚变研究中心'),
(80404, 'https://ror.org/05jhnwe22', 'en', 1, 'https://ror.org/05jhnwe22 Edith Cowan University'),
(80405, 'https://ror.org/02fqg7825', 'en', 1, 'https://ror.org/02fqg7825 Research Society on Marijuana'),
(80406, 'https://ror.org/051rhng80', 'en', 1, 'https://ror.org/051rhng80 Soreq Nuclear Research Center המרכז למחקר גרעיני שורק'),
(80407, 'https://ror.org/02tt21044', 'en', 1, 'https://ror.org/02tt21044 RIKEN Center for Quantum Computing 国立研究開発法人理化学研究所 量子コンピュータ研究センター'),
(80408, 'https://ror.org/02v9xb273', 'pt', 1, 'https://ror.org/02v9xb273 Centro Universitário UniProcessus'),
(80409, 'https://ror.org/01zrh0b92', 'no_lang_code', 1, 'https://ror.org/01zrh0b92 QunaSys'),
(80410, 'https://ror.org/02vkw2772', 'de', 1, 'https://ror.org/02vkw2772 Allgemeiner Deutscher Hochschulsportverband German University Sports Federation'),
(80411, 'https://ror.org/00kpkeq42', 'no_lang_code', 1, 'https://ror.org/00kpkeq42 EPC Natural Products 伊比西植物药物技术有限公司'),
(80412, 'https://ror.org/05463eb69', 'en', 1, 'https://ror.org/05463eb69 Hunan Railway Professional Technology College 湖南铁道职业技术学院'),
(80413, 'https://ror.org/0585v6057', 'en', 1, 'https://ror.org/0585v6057 Erasmus MC Transplant Institute Erasmus MC Transplantatie Instituut'),
(80414, 'https://ror.org/02bjhhm27', 'no_lang_code', 1, 'https://ror.org/02bjhhm27 Betasciencepress Publishing'),
(80415, 'https://ror.org/00a7vgh58', 'de', 1, 'https://ror.org/00a7vgh58 Max-Planck-Institut für Kohlenforschung'),
(80416, 'https://ror.org/04stx0g16', 'pt', 1, 'https://ror.org/04stx0g16 Universidade Federal do Norte do Tocantins'),
(80417, 'https://ror.org/04hs8t575', 'en', 1, 'https://ror.org/04hs8t575 Study World College of Engineering'),
(80418, 'https://ror.org/035tz7392', 'en', 1, 'https://ror.org/035tz7392 Gothenburg Botanic Garden Göteborgs Botaniska Trädgård'),
(80419, 'https://ror.org/04sx5hw70', 'de', 1, 'https://ror.org/04sx5hw70 Schilddrüsenpraxis Josefstadt'),
(80420, 'https://ror.org/04181p105', 'fr', 1, 'https://ror.org/04181p105 Kélonia'),
(80421, 'https://ror.org/04wr5tk73', 'de', 1, 'https://ror.org/04wr5tk73 Göttlicher Heiland Krankenhaus Wien'),
(80422, 'https://ror.org/00tsqex91', 'en', 1, 'https://ror.org/00tsqex91 Te Pūkenga'),
(80423, 'https://ror.org/022n6je18', 'en', 1, 'https://ror.org/022n6je18 Adolescent Health Clinic'),
(80424, 'https://ror.org/05rgwws51', 'en', 1, 'https://ror.org/05rgwws51 Institute of Fluid Physics 流体物理研究所'),
(80425, 'https://ror.org/014n7xm98', 'pt', 1, 'https://ror.org/014n7xm98 Universidade Federal do Delta do Parnaíba'),
(80426, 'https://ror.org/0149pv473', 'en', 1, 'https://ror.org/0149pv473 Hamburg Centre for Ultrafast Imaging'),
(80427, 'https://ror.org/05ww61844', 'en', 1, 'https://ror.org/05ww61844 Tai Poutini Polytechnic'),
(80428, 'https://ror.org/047afsm11', 'en', 1, 'https://ror.org/047afsm11 Erasmus MC - Sophia Children’s Hospital'),
(80429, 'https://ror.org/05c6y9623', 'en', 1, 'https://ror.org/05c6y9623 Virginia Sea Grant'),
(80430, 'https://ror.org/019xvpc30', 'es', 1, 'https://ror.org/019xvpc30 Catholic University of Uruguay Universidad Católica del Uruguay'),
(80431, 'https://ror.org/0326v3z14', 'no_lang_code', 1, 'https://ror.org/0326v3z14 Toshiba (Japan) 東芝'),
(80432, 'https://ror.org/03nv92q59', 'en', 1, 'https://ror.org/03nv92q59 Japan Coast Guard 海上保安庁'),
(80433, 'https://ror.org/03rqtqb02', 'en', 1, 'https://ror.org/03rqtqb02 Institute of Biostructure and Bioimaging Istituto di Biostrutture e Bioimmagini'),
(80434, 'https://ror.org/00cxkrp74', 'en', 1, 'https://ror.org/00cxkrp74 Children’s Minnesota - St. Paul Hospital'),
(80435, 'https://ror.org/016c76a68', 'no_lang_code', 1, 'https://ror.org/016c76a68 ADx NeuroSciences'),
(80436, 'https://ror.org/02djvb753', 'en', 1, 'https://ror.org/02djvb753 Barasat Government College'),
(80437, 'https://ror.org/0528bv030', 'en', 1, 'https://ror.org/0528bv030 Western Institute of Technology at Taranaki'),
(80438, 'https://ror.org/014nmm080', 'de', 1, 'https://ror.org/014nmm080 Gesellschaft zur Förderung Kynologischer Forschung'),
(80439, 'https://ror.org/01bb4h160', 'en', 1, 'https://ror.org/01bb4h160 Graphic Era Hill University'),
(80440, 'https://ror.org/04x48z588', 'en', 1, 'https://ror.org/04x48z588 European Laboratory for Non-Linear Spectroscopy Laboratorio europeo di spettroscopia non lineare'),
(80441, 'https://ror.org/028x29h02', 'en', 1, 'https://ror.org/028x29h02 National Meteorological Service Servicio Meteorológico Nacional'),
(80442, 'https://ror.org/03npphx08', 'sq', 1, 'https://ror.org/03npphx08 Akademia e Studimeve Albanologjike'),
(80443, 'https://ror.org/00nf3nv81', 'fr', 1, 'https://ror.org/00nf3nv81 ESME - School of Engineering ESME - École d’ingénieurs pluridisciplinaires'),
(80444, 'https://ror.org/048sd1581', 'en', 1, 'https://ror.org/048sd1581 Jagiellonian College Kolegium Jagiellońskie Toruńskiej Szkoły Wyższej Vysoká škola Jagiellońská v Toruni'),
(80445, 'https://ror.org/00b0p4j69', 'en', 1, 'https://ror.org/00b0p4j69 Ministry of Land, Infrastructure, Transport and Tourism 国土交通省'),
(80446, 'https://ror.org/03qa1nk44', 'en', 1, 'https://ror.org/03qa1nk44 Japan Coast Guard Academy 海上保安大学校'),
(80447, 'https://ror.org/01kdj2848', 'it', 1, 'https://ror.org/01kdj2848 Clinical Physiology Institute Istituto di Fisiologia Clinica'),
(80448, 'https://ror.org/04thacr56', 'en', 1, 'https://ror.org/04thacr56 Alex Ekwueme Federal University, Ndufu-Alike'),
(80449, 'https://ror.org/01ngg7w55', 'en', 1, 'https://ror.org/01ngg7w55 Whitireia New Zealand'),
(80450, 'https://ror.org/0210gge93', 'en', 1, 'https://ror.org/0210gge93 Asociación científica ICONO 14 Scientific Association ICONO 14'),
(80451, 'https://ror.org/0188vts43', 'no_lang_code', 1, 'https://ror.org/0188vts43 Yu Jun Biotechnology 裕雋生物科技股份有限公司'),
(80452, 'https://ror.org/03gb41d27', 'en', 1, 'https://ror.org/03gb41d27 Comprehensive Research Organization for Science and Society 総合科学研究機構'),
(80453, 'https://ror.org/02sct0170', 'fr', 1, 'https://ror.org/02sct0170 Centre Régional des Métiers de l''Éducation et de la Formation Casablanca-Settat المركز الجهوي لمهن التربية والتكوين لجهة الدار البيضاء سطات'),
(80454, 'https://ror.org/001swhm52', 'en', 1, 'https://ror.org/001swhm52 Shimon Peres Negev Nuclear Research Center קריה למחקר גרעיני – נגב ע"ש שמעון פרס'),
(80455, 'https://ror.org/05h0wd634', 'en', 1, 'https://ror.org/05h0wd634 CROSS Neutron Science and Technology Center CROSS中性子科学センター'),
(80456, 'https://ror.org/04eswfz98', 'no_lang_code', 1, 'https://ror.org/04eswfz98 1QBit'),
(80457, 'https://ror.org/03s3m1w94', 'pt', 1, 'https://ror.org/03s3m1w94 Universidade Federal do Agreste de Pernambuco'),
(80458, 'https://ror.org/01h40c705', 'de', 1, 'https://ror.org/01h40c705 Deutsche Gesellschaft für Ernährung'),
(80459, 'https://ror.org/00bhf8j88', 'en', 1, 'https://ror.org/00bhf8j88 Nara Prefecture General Medical Center 地方独立行政法人奈良県立病院機構奈良県総合医療センター'),
(80460, 'https://ror.org/00bj0r217', 'en', 1, 'https://ror.org/00bj0r217 Max Planck Institute for Security and Privacy Max-Planck-Institut für Sicherheit und Privatsphäre'),
(80461, 'https://ror.org/00x0z1472', 'en', 1, 'https://ror.org/00x0z1472 Templeton World Charity Foundation'),
(80462, 'https://ror.org/007ecwd34', 'en', 1, 'https://ror.org/007ecwd34 Tyndall Institiúid Naisiunta Tyndall National Institute'),
(80463, 'https://ror.org/0175g1p16', 'en', 1, 'https://ror.org/0175g1p16 Quantum University'),
(80464, 'https://ror.org/05bc5bx80', 'en', 1, 'https://ror.org/05bc5bx80 Vel Tech Rangarajan Dr. Sagunthala R&D Institute of Science and Technology'),
(80465, 'https://ror.org/03pmpje25', 'de', 1, 'https://ror.org/03pmpje25 St. Josef-Krankenhaus Wien'),
(80466, 'https://ror.org/05m802881', 'en', 1, 'https://ror.org/05m802881 Bariloche Atomic Centre Centro Atómico Bariloche'),
(80467, 'https://ror.org/05p9h0d44', 'no_lang_code', 1, 'https://ror.org/05p9h0d44 Toshiba Nanoanalysis Corporation 東芝ナノアナリシス株式会社'),
(80468, 'https://ror.org/002s65j03', 'no_lang_code', 1, 'https://ror.org/002s65j03 Ulrich Medical (Germany)'),
(80469, 'https://ror.org/0232eqz57', 'en', 1, 'https://ror.org/0232eqz57 Slovenian Forestry Institute'),
(80470, 'https://ror.org/026gmbh11', 'en', 1, 'https://ror.org/026gmbh11 Klima- og miljødepartementet Ministry of Climate and Environment'),
(80471, 'https://ror.org/05gd76j39', 'no_lang_code', 1, 'https://ror.org/05gd76j39 Tokyo Electron (Japan) 東京エレクトロン'),
(80472, 'https://ror.org/0078bd381', 'en', 1, 'https://ror.org/0078bd381 University College London Qatar'),
(80473, 'https://ror.org/032yym934', 'en', 1, 'https://ror.org/032yym934 Institut für Weltwirtschaft Kiel Institute for the World Economy'),
(80474, 'https://ror.org/05fb2ej88', 'no_lang_code', 1, 'https://ror.org/05fb2ej88 Nutreco (Netherlands)'),
(80475, 'https://ror.org/010n0x685', 'en', 1, 'https://ror.org/010n0x685 Central University of Ecuador Universidad Central del Ecuador'),
(80476, 'https://ror.org/02fsejp38', 'en', 1, 'https://ror.org/02fsejp38 Lietuvos Respublikos žemės ūkio ministerija Ministry of Agriculture of the Republic of Lithuania'),
(80477, 'https://ror.org/04vrd1088', 'en', 1, 'https://ror.org/04vrd1088 The Trust for Public Land'),
(80478, 'https://ror.org/05rpz9q70', 'no_lang_code', 1, 'https://ror.org/05rpz9q70 Myriad Genetics'),
(80479, 'https://ror.org/04f17cx55', 'en', 1, 'https://ror.org/04f17cx55 National Medical Research Center of Cardiology Федеральное государственное бюджетное учреждение НАЦИОНАЛЬНЫЙ МЕДИЦИНСКИЙ ИССЛЕДОВАТЕЛЬСКИЙ ЦЕНТР КАРДИОЛОГИИ Министерства здравоохранения Российской Федерации'),
(80480, 'https://ror.org/05sj5k538', 'en', 1, 'https://ror.org/05sj5k538 Opole University of Technology Politechnika Opolska'),
(80481, 'https://ror.org/00sb3pk12', 'en', 1, 'https://ror.org/00sb3pk12 Mercy Hospital and Medical Center'),
(80482, 'https://ror.org/035b6vx73', 'no_lang_code', 1, 'https://ror.org/035b6vx73 XBiotech (United States)'),
(80483, 'https://ror.org/021wyrx76', 'no_lang_code', 1, 'https://ror.org/021wyrx76 Faraday Technology (Taiwan) 智原科技股份有限公司'),
(80484, 'https://ror.org/04r6hkw08', 'no_lang_code', 1, 'https://ror.org/04r6hkw08 GC Europe (Belgium)'),
(80485, 'https://ror.org/05pcv4v03', 'en', 1, 'https://ror.org/05pcv4v03 Parthenope University of Naples Università degli Studi di Napoli Parthenope Université de naples - parthénope'),
(80486, 'https://ror.org/05dagmh42', 'no_lang_code', 1, 'https://ror.org/05dagmh42 Antares Pharma (United States)'),
(80487, 'https://ror.org/05ykg3d23', 'no_lang_code', 1, 'https://ror.org/05ykg3d23 Wärtsilä (Finland)'),
(80488, 'https://ror.org/0091hm651', 'en', 1, 'https://ror.org/0091hm651 Universitas Pattimura University of Pattimura'),
(80489, 'https://ror.org/0221sax75', 'en', 1, 'https://ror.org/0221sax75 Diabetesforbundet Norwegian Diabetes Association'),
(80490, 'https://ror.org/05x7v6y85', 'en', 1, 'https://ror.org/05x7v6y85 Framsenteret The FRAM Centre'),
(80491, 'https://ror.org/013314927', 'en', 1, 'https://ror.org/013314927 Universitas Surabaya University of Surabaya'),
(80492, 'https://ror.org/009kqch10', 'en', 1, 'https://ror.org/009kqch10 Norwegian Public Roads Administration'),
(80493, 'https://ror.org/04jb3cn49', 'no_lang_code', 1, 'https://ror.org/04jb3cn49 Alphora Research (Canada)'),
(80494, 'https://ror.org/05gja4j15', 'no_lang_code', 1, 'https://ror.org/05gja4j15 Menarini Group (Germany)'),
(80495, 'https://ror.org/030x5z418', 'en', 1, 'https://ror.org/030x5z418 Queen Elisabeth Medical Foundation'),
(80496, 'https://ror.org/05np4h792', 'no_lang_code', 1, 'https://ror.org/05np4h792 Plastic Omnium (France)'),
(80497, 'https://ror.org/03pfqk412', 'no_lang_code', 1, 'https://ror.org/03pfqk412 Allergan (United States)'),
(80498, 'https://ror.org/02pkn1m92', 'no_lang_code', 1, 'https://ror.org/02pkn1m92 Aker Arctic (Finland)'),
(80499, 'https://ror.org/04p1xtv71', 'no_lang_code', 1, 'https://ror.org/04p1xtv71 Seagate (United States)'),
(80500, 'https://ror.org/052874946', 'en', 1, 'https://ror.org/052874946 The Turner Scientific Research Institute for Children''s Orthopedics Научно-исследовательский детский ортопедический институт им. Г. И'),
(80501, 'https://ror.org/00nhc9061', 'no_lang_code', 1, 'https://ror.org/00nhc9061 Plasmionique (Canada)'),
(80502, 'https://ror.org/04x187e69', 'en', 1, 'https://ror.org/04x187e69 Gynecologic Oncology Group'),
(80503, 'https://ror.org/05nj6z848', 'en', 1, 'https://ror.org/05nj6z848 Novosibirsk Scientific Research Institute of Traumatology and Orthopedics. Ya.L. Tsivyan Новосибирский научно-исследовательский институт травматологии и ортопедии им. Я.Л.Цивьяна'),
(80504, 'https://ror.org/02319f413', 'no_lang_code', 1, 'https://ror.org/02319f413 RayBiotech (United States)'),
(80505, 'https://ror.org/05626m728', 'en', 1, 'https://ror.org/05626m728 John H. Stroger, Jr. Hospital of Cook County'),
(80506, 'https://ror.org/040gsvv83', 'en', 1, 'https://ror.org/040gsvv83 Nizhny Novgorod Federal Research Institute of Pediatric Gastroenterology Нижегородский НИИ детской гастроэнтерологии'),
(80507, 'https://ror.org/02w6dqa48', 'no_lang_code', 1, 'https://ror.org/02w6dqa48 Cipla (India) सिप्ला சிப்லா'),
(80508, 'https://ror.org/045x2ah69', 'en', 1, 'https://ror.org/045x2ah69 Libera Università Carlo Cattaneo University Carlo Cattaneo'),
(80509, 'https://ror.org/00jv65847', 'en', 1, 'https://ror.org/00jv65847 Gouvernement wallon Walloon Government'),
(80510, 'https://ror.org/03abe5304', 'no_lang_code', 1, 'https://ror.org/03abe5304 Loxo Oncology at Lilly (United States)'),
(80511, 'https://ror.org/05g9af661', 'no_lang_code', 1, 'https://ror.org/05g9af661 OrbusNeich (China)'),
(80512, 'https://ror.org/02twwap54', 'no_lang_code', 1, 'https://ror.org/02twwap54 Fanuc (Japan) ファナック株式会社'),
(80513, 'https://ror.org/0519vt613', 'de', 1, 'https://ror.org/0519vt613 Tiroler Zukunftsstiftung'),
(80514, 'https://ror.org/01v5k4d73', 'en', 1, 'https://ror.org/01v5k4d73 Dehradun Institute of Technology University देहरादून प्रौद्योगिकी संस्थान'),
(80515, 'https://ror.org/01ada5854', 'fr', 1, 'https://ror.org/01ada5854 École du Louvre'),
(80516, 'https://ror.org/04fe7hy80', 'en', 1, 'https://ror.org/04fe7hy80 Xuzhou Medical College 徐州医学院'),
(80517, 'https://ror.org/03bd11s93', 'es', 1, 'https://ror.org/03bd11s93 Centro Universitario Anglo Mexicano'),
(80518, 'https://ror.org/05wrggx03', 'no_lang_code', 1, 'https://ror.org/05wrggx03 Dentsply Sirona (United States)'),
(80519, 'https://ror.org/05jyz3382', 'no_lang_code', 1, 'https://ror.org/05jyz3382 ConvaTec (United Kingdom)'),
(80520, 'https://ror.org/044tc0x05', 'no_lang_code', 1, 'https://ror.org/044tc0x05 CSL (Australia)'),
(80521, 'https://ror.org/00zz6h841', 'en', 1, 'https://ror.org/00zz6h841 Research Institute of Emergency Childrens Surgery and Traumatology Научно-исследовательский институт неотложной детской хирургии и травматологии'),
(80522, 'https://ror.org/03ynh3q24', 'no_lang_code', 1, 'https://ror.org/03ynh3q24 Zogenix (United States)'),
(80523, 'https://ror.org/014fhvx65', 'en', 1, 'https://ror.org/014fhvx65 Canadian Respiratory Research Network Réseau canadien de recherche respiratoire'),
(80524, 'https://ror.org/01pvx8v81', 'en', 1, 'https://ror.org/01pvx8v81 Federal University of Technology'),
(80525, 'https://ror.org/00fm1n282', 'no_lang_code', 1, 'https://ror.org/00fm1n282 Inflarx (Germany)'),
(80526, 'https://ror.org/049qtwc86', 'en', 1, 'https://ror.org/049qtwc86 Jesse Brown VA Medical Center'),
(80527, 'https://ror.org/01v10fv91', 'en', 1, 'https://ror.org/01v10fv91 Instituto Tecnológico de Sonora Sonora Institute of Technology'),
(80528, 'https://ror.org/05a70k539', 'en', 1, 'https://ror.org/05a70k539 Institute of Technology and Business Vysoká škola technická a ekonomická Техническо-экономический институт в г. Чешские Будейовице'),
(80529, 'https://ror.org/030mwrt98', 'en', 1, 'https://ror.org/030mwrt98 Nord University'),
(80530, 'https://ror.org/04jabhf80', 'en', 1, 'https://ror.org/04jabhf80 Jiangsu University of Technology 江苏理工学院'),
(80531, 'https://ror.org/01ed3w678', 'en', 1, 'https://ror.org/01ed3w678 St. Francis Hospital'),
(80532, 'https://ror.org/04q0njq38', 'no_lang_code', 1, 'https://ror.org/04q0njq38 Oncovision (Spain)'),
(80533, 'https://ror.org/01f3bhg26', 'no_lang_code', 1, 'https://ror.org/01f3bhg26 Volkswagen Group (Germany)'),
(80534, 'https://ror.org/03se72f21', 'no_lang_code', 1, 'https://ror.org/03se72f21 Zinpro (United States)'),
(80535, 'https://ror.org/05nj7my03', 'en', 1, 'https://ror.org/05nj7my03 Soproni Egyetem University of Sopron'),
(80536, 'https://ror.org/01dra3713', 'no_lang_code', 1, 'https://ror.org/01dra3713 Promega (United States)'),
(80537, 'https://ror.org/036vtmj33', 'en', 1, 'https://ror.org/036vtmj33 Advocate Illinois Masonic Medical Center'),
(80538, 'https://ror.org/01ge67z96', 'en', 1, 'https://ror.org/01ge67z96 The Royal Free Hospital'),
(80539, 'https://ror.org/03creg496', 'no_lang_code', 1, 'https://ror.org/03creg496 Nipro (Japan) ニプロ株式会社'),
(80540, 'https://ror.org/03r4rz990', 'no_lang_code', 1, 'https://ror.org/03r4rz990 Vetcare (Finland)'),
(80541, 'https://ror.org/02bgfrc80', 'no_lang_code', 1, 'https://ror.org/02bgfrc80 MEI Pharma (United States)'),
(80542, 'https://ror.org/02arnxw97', 'en', 1, 'https://ror.org/02arnxw97 Universidad de Monterrey University of Monterrey'),
(80543, 'https://ror.org/02ac08586', 'no_lang_code', 1, 'https://ror.org/02ac08586 Roivant Sciences (Switzerland)'),
(80544, 'https://ror.org/05ghhgs79', 'en', 1, 'https://ror.org/05ghhgs79 Tra Vinh University Trường Đại Học Trà Vinh'),
(80545, 'https://ror.org/03ahhsr90', 'no_lang_code', 1, 'https://ror.org/03ahhsr90 ESI Group (Czechia)'),
(80546, 'https://ror.org/00gfstq19', 'no_lang_code', 1, 'https://ror.org/00gfstq19 Sysmex (Japan) シスメックス株式会社'),
(80547, 'https://ror.org/02e8r8872', 'en', 1, 'https://ror.org/02e8r8872 L''Institut indo-canadien Shastri Shastri Indo-Canadian Institute'),
(80548, 'https://ror.org/05xrvq528', 'en', 1, 'https://ror.org/05xrvq528 Adventist Hinsdale Hospital'),
(80549, 'https://ror.org/037mj4292', 'no_lang_code', 1, 'https://ror.org/037mj4292 Defence Materials Technology Centre (Australia)'),
(80550, 'https://ror.org/009df1343', 'no_lang_code', 1, 'https://ror.org/009df1343 Regenxbio (United States)'),
(80551, 'https://ror.org/05cbf4214', 'no_lang_code', 1, 'https://ror.org/05cbf4214 Nippon Kayaku (Japan) 日本化薬株式会社'),
(80552, 'https://ror.org/001641630', 'no_lang_code', 1, 'https://ror.org/001641630 Thames Water (United Kingdom)'),
(80553, 'https://ror.org/00kyj9h67', 'no_lang_code', 1, 'https://ror.org/00kyj9h67 Horizon Therapeutics (United States)'),
(80554, 'https://ror.org/02223wv31', 'en', 1, 'https://ror.org/02223wv31 Edward Hines, Jr. VA Hospital'),
(80555, 'https://ror.org/00t2n8418', 'en', 1, 'https://ror.org/00t2n8418 The Institute of Conservation'),
(80556, 'https://ror.org/00e2fg256', 'no_lang_code', 1, 'https://ror.org/00e2fg256 Biogemma (France)'),
(80557, 'https://ror.org/05c4cm338', 'no_lang_code', 1, 'https://ror.org/05c4cm338 NetApp (United States)'),
(80558, 'https://ror.org/04ps4d441', 'no_lang_code', 1, 'https://ror.org/04ps4d441 Clovis Oncology (United States)'),
(80559, 'https://ror.org/018qbmv38', 'no_lang_code', 1, 'https://ror.org/018qbmv38 Aurubis (Germany)'),
(80560, 'https://ror.org/04wvvj212', 'en', 1, 'https://ror.org/04wvvj212 Kementerian Keuangan Ministry of Finance'),
(80561, 'https://ror.org/00j15sg62', 'en', 1, 'https://ror.org/00j15sg62 Finnish Cancer Registry Suomen Syöpärekisteri'),
(80562, 'https://ror.org/04eg5s337', 'en', 1, 'https://ror.org/04eg5s337 Mediterranean Universities Union Unione delle Università del Mediterraneo'),
(80563, 'https://ror.org/04rbazs75', 'en', 1, 'https://ror.org/04rbazs75 P.A. Hertzen Moscow Oncology Research Institute МНИОИ им. П.А. Герцена - филиал ФГБУ «НМИРЦ» Минздрава России'),
(80564, 'https://ror.org/03cnmz153', 'en', 1, 'https://ror.org/03cnmz153 Muhammadiyah University of Surakarta univerˈsitas muhamaˈdijah suraˈkarta'),
(80565, 'https://ror.org/00fn3pa80', 'en', 1, 'https://ror.org/00fn3pa80 Nasional University Universitas Nasional'),
(80566, 'https://ror.org/03wc0ga52', 'en', 1, 'https://ror.org/03wc0ga52 Research Institute of Influenza федеральное государственное бюджетное учреждение Научно-исследовательский институт гриппа Министерства здравоохранения Российской Федерации'),
(80567, 'https://ror.org/03n6et148', 'no_lang_code', 1, 'https://ror.org/03n6et148 Braile Biomédica (Brazil)'),
(80568, 'https://ror.org/02syc1z20', 'no_lang_code', 1, 'https://ror.org/02syc1z20 Iamgold (Canada)'),
(80569, 'https://ror.org/05bkpyp72', 'en', 1, 'https://ror.org/05bkpyp72 Norjan avaruuskeskus Norwegian Space Agency'),
(80570, 'https://ror.org/04ejpw604', 'no_lang_code', 1, 'https://ror.org/04ejpw604 Acumed (United States)'),
(80571, 'https://ror.org/044wv3489', 'en', 1, 'https://ror.org/044wv3489 China Railway Corporation 中国铁路总公司'),
(80572, 'https://ror.org/03gd8w426', 'en', 1, 'https://ror.org/03gd8w426 MacNeal Hospital'),
(80573, 'https://ror.org/02jsvy381', 'no_lang_code', 1, 'https://ror.org/02jsvy381 Chimerix (United States)'),
(80574, 'https://ror.org/03qf09715', 'no_lang_code', 1, 'https://ror.org/03qf09715 FLSmidth (Denmark)'),
(80575, 'https://ror.org/04vaq9436', 'no_lang_code', 1, 'https://ror.org/04vaq9436 Bluebird Bio (United States)'),
(80576, 'https://ror.org/00seaxa44', 'en', 1, 'https://ror.org/00seaxa44 Department of Home Affairs'),
(80577, 'https://ror.org/009z2z347', 'no_lang_code', 1, 'https://ror.org/009z2z347 Kowa (Japan) 興和株式会社'),
(80578, 'https://ror.org/03d9mz263', 'en', 1, 'https://ror.org/03d9mz263 Zabol University دانشگاه زابل'),
(80579, 'https://ror.org/05gkzhv48', 'en', 1, 'https://ror.org/05gkzhv48 Melbourne Bioinformatics'),
(80580, 'https://ror.org/05qx7aj05', 'en', 1, 'https://ror.org/05qx7aj05 Tennessee Higher Education Commission & Student Assistance Corporation'),
(80581, 'https://ror.org/03ec8vy26', 'en', 1, 'https://ror.org/03ec8vy26 Autonomous University of Aguascalientes Universidad Autónoma de Aguascalientes'),
(80582, 'https://ror.org/01jj57g95', 'no_lang_code', 1, 'https://ror.org/01jj57g95 Naturex (France)'),
(80583, 'https://ror.org/05mmnft02', 'no_lang_code', 1, 'https://ror.org/05mmnft02 Ignyta (United States)'),
(80584, 'https://ror.org/011bqgx84', 'en', 1, 'https://ror.org/011bqgx84 Universidad del Tolima University of Tolima'),
(80585, 'https://ror.org/02h1wg091', 'no_lang_code', 1, 'https://ror.org/02h1wg091 Menarini Group (Italy)'),
(80586, 'https://ror.org/02kcqb193', 'en', 1, 'https://ror.org/02kcqb193 Colt Foundation'),
(80587, 'https://ror.org/01n2t3x97', 'en', 1, 'https://ror.org/01n2t3x97 Hanoi Medical University Université de médecine de hanoï Đại học Y Hà Nội'),
(80588, 'https://ror.org/03jp1kx71', 'en', 1, 'https://ror.org/03jp1kx71 Vidzeme University of Applied Sciences Vidzemes Augstskola'),
(80589, 'https://ror.org/03e1sv842', 'en', 1, 'https://ror.org/03e1sv842 Abdus Salam Centre for Physics عبداسلام ادارہ برائے طبیعیات'),
(80590, 'https://ror.org/00xqzp862', 'en', 1, 'https://ror.org/00xqzp862 Von Hippel Lindau Alliance'),
(80591, 'https://ror.org/028p2b938', 'no_lang_code', 1, 'https://ror.org/028p2b938 Impulse Dynamics (United States)'),
(80592, 'https://ror.org/03v8jek13', 'en', 1, 'https://ror.org/03v8jek13 Association of Environmental & Engineering Geologists'),
(80593, 'https://ror.org/01rb7bk56', 'no_lang_code', 1, 'https://ror.org/01rb7bk56 Xilinx (United States)'),
(80594, 'https://ror.org/01a7r5j51', 'no_lang_code', 1, 'https://ror.org/01a7r5j51 Riemser Pharma (Germany)'),
(80595, 'https://ror.org/00dxzfw25', 'pl', 1, 'https://ror.org/00dxzfw25 Institute of Agricultural and Forest Environment Instytut Środowiska Rolniczego i Leśnego Polskiej Akademii Nauk'),
(80596, 'https://ror.org/05hhz4s12', 'en', 1, 'https://ror.org/05hhz4s12 Hanoi University of Industry Đại học Công nghiệp Hà Nội'),
(80597, 'https://ror.org/04afshy24', 'en', 1, 'https://ror.org/04afshy24 Thuyloi University Đại học Thủy lợi'),
(80598, 'https://ror.org/01thwj886', 'no_lang_code', 1, 'https://ror.org/01thwj886 Stora Enso (Sweden)'),
(80599, 'https://ror.org/048jsd987', 'no_lang_code', 1, 'https://ror.org/048jsd987 AiCuris (Germany)'),
(80600, 'https://ror.org/01pgswx52', 'no_lang_code', 1, 'https://ror.org/01pgswx52 Fluidigm (United States)'),
(80601, 'https://ror.org/03v8svs38', 'en', 1, 'https://ror.org/03v8svs38 Institut für Auslandsbeziehungen Institute for Foreign Cultural Relations'),
(80602, 'https://ror.org/02k4xm641', 'no_lang_code', 1, 'https://ror.org/02k4xm641 The Clorox (United States)'),
(80603, 'https://ror.org/04cnscd67', 'fr', 1, 'https://ror.org/04cnscd67 Université Moulay Ismail de Meknes'),
(80604, 'https://ror.org/02szjhr12', 'en', 1, 'https://ror.org/02szjhr12 Renal Pathology Society'),
(80605, 'https://ror.org/01qjckx08', 'en', 1, 'https://ror.org/01qjckx08 Instituto Nacional de Medicina Genómica National Institute of Genomic Medicine'),
(80606, 'https://ror.org/0187pm092', 'no_lang_code', 1, 'https://ror.org/0187pm092 Sunesis (United States)'),
(80607, 'https://ror.org/01bjc6c68', 'en', 1, 'https://ror.org/01bjc6c68 Schweizerische Studienstiftung Swiss Study Foundation'),
(80608, 'https://ror.org/04xx5hr10', 'en', 1, 'https://ror.org/04xx5hr10 Faroese Research Council'),
(80609, 'https://ror.org/05q84se63', 'en', 1, 'https://ror.org/05q84se63 Nordic Africa Institute'),
(80610, 'https://ror.org/03yb2hp88', 'en', 1, 'https://ror.org/03yb2hp88 University of Béjaïa Université Abderrahmane Mira جامعة بجاية'),
(80611, 'https://ror.org/03yzv7g36', 'en', 1, 'https://ror.org/03yzv7g36 Protein Research Foundation 一般財団法人蛋白質研究奨励会'),
(80612, 'https://ror.org/04srd9d93', 'no_lang_code', 1, 'https://ror.org/04srd9d93 Lenovo (China) 联想中国'),
(80613, 'https://ror.org/00axqt112', 'no_lang_code', 1, 'https://ror.org/00axqt112 Hindustan Petroleum Corporation Limited (India) हिन्दुस्तान पेट्रोलियम निगम लिमिटेड'),
(80614, 'https://ror.org/01fm2fv39', 'en', 1, 'https://ror.org/01fm2fv39 Sanquin'),
(80615, 'https://ror.org/03gc39678', 'en', 1, 'https://ror.org/03gc39678 Antonine University الجامعة الأنطونية'),
(80616, 'https://ror.org/05sh9vm75', 'no_lang_code', 1, 'https://ror.org/05sh9vm75 Dr Falk Pharma (Germany)'),
(80617, 'https://ror.org/04xnyj354', 'no_lang_code', 1, 'https://ror.org/04xnyj354 Atlantic Copper (Spain)'),
(80618, 'https://ror.org/05k37v296', 'en', 1, 'https://ror.org/05k37v296 Defence Research and Development Organisation रक्षा अनुसंधान एवं विकास संगठन संरक्षण संशोधन आणि विकास संस्था প্রতিরক্ষা গবেষণা ও উন্নয়ন সংগঠন பாதுகாப்பு ஆராய்ச்சி மற்றும் வளர்ச்சி அமைப்பு భారత రక్షణ పరిశోధన అభివృద్ధి సంస్థ ರಕ್ಷಣಾ ಸಂಶೋಧನೆ ವಿಕಾಸ ಸಂಘಟನೆ ഡിഫൻസ് റിസേർച്ച് ആൻഡ് ഡെവലപ്മെന്റ് ഓർഗനൈസേഷൻ'),
(80619, 'https://ror.org/02akb0w60', 'en', 1, 'https://ror.org/02akb0w60 Louisiana State Department of Health and Hospitals'),
(80620, 'https://ror.org/03js3tm40', 'fr', 1, 'https://ror.org/03js3tm40 Fondation Jérôme-Lejeune'),
(80621, 'https://ror.org/02t11pf93', 'no_lang_code', 1, 'https://ror.org/02t11pf93 Veracyte (United States)'),
(80622, 'https://ror.org/05mny9804', 'en', 1, 'https://ror.org/05mny9804 Asia Pacific League of Associations for Rheumatology'),
(80623, 'https://ror.org/0518yg160', 'no_lang_code', 1, 'https://ror.org/0518yg160 ZTE (United States)'),
(80624, 'https://ror.org/04xxyrq44', 'no_lang_code', 1, 'https://ror.org/04xxyrq44 Otonomy (United States)'),
(80625, 'https://ror.org/02kejw255', 'no_lang_code', 1, 'https://ror.org/02kejw255 Tillotts Pharma (Switzerland)'),
(80626, 'https://ror.org/03z39qd89', 'en', 1, 'https://ror.org/03z39qd89 WiSys'),
(80627, 'https://ror.org/00gpqj976', 'no_lang_code', 1, 'https://ror.org/00gpqj976 Pernod Ricard (France)'),
(80628, 'https://ror.org/00ch3t340', 'no_lang_code', 1, 'https://ror.org/00ch3t340 CRB Innovations (Canada)'),
(80629, 'https://ror.org/013mz8190', 'en', 1, 'https://ror.org/013mz8190 Laureate Education'),
(80630, 'https://ror.org/00ew7rg06', 'no_lang_code', 1, 'https://ror.org/00ew7rg06 MorphoSys (Germany)'),
(80631, 'https://ror.org/017fdbp82', 'en', 1, 'https://ror.org/017fdbp82 Wereld Kanker Onderzoek Fonds World Cancer Research Fund Netherlands'),
(80632, 'https://ror.org/04kjcjc51', 'en', 1, 'https://ror.org/04kjcjc51 Brazilian Biosciences National Laboratory Laboratório Nacional de Biociências'),
(80633, 'https://ror.org/036agwg70', 'en', 1, 'https://ror.org/036agwg70 Duta Wacana Christian University Universitas Kristen Duta Wacana'),
(80634, 'https://ror.org/007qqm030', 'no_lang_code', 1, 'https://ror.org/007qqm030 BioGaia (Sweden)'),
(80635, 'https://ror.org/00r8w8f84', 'en', 1, 'https://ror.org/00r8w8f84 Mohammed V University Université Mohammed-V de Rabat جامعة محمد الخامس'),
(80636, 'https://ror.org/01bhs6g30', 'no_lang_code', 1, 'https://ror.org/01bhs6g30 Novavax (United States)'),
(80637, 'https://ror.org/000628g58', 'no_lang_code', 1, 'https://ror.org/000628g58 Tata Sons (India)'),
(80638, 'https://ror.org/05p72vt26', 'en', 1, 'https://ror.org/05p72vt26 Fideicomiso de Ciencias, Tecnología e Investigación de Puerto Rico Puerto Rico Science, Technology & Research Trust'),
(80639, 'https://ror.org/04m5f1j71', 'en', 1, 'https://ror.org/04m5f1j71 Instituto Nacional de Ciência e Tecnologia em Medicina Regenerativa National Institute of Science and Technology in Regenerative Medicine'),
(80640, 'https://ror.org/02fafrk51', 'en', 1, 'https://ror.org/02fafrk51 Telemark Hospital'),
(80641, 'https://ror.org/003pzts41', 'en', 1, 'https://ror.org/003pzts41 Turkish Society of Hematology Türk Hematoloji Derneği'),
(80642, 'https://ror.org/01h2taq97', 'en', 1, 'https://ror.org/01h2taq97 Universidad de Ciencias Aplicadas y Ambientales University of Applied and Environmental Sciences'),
(80643, 'https://ror.org/05ww4z228', 'no_lang_code', 1, 'https://ror.org/05ww4z228 ESI Group (France)'),
(80644, 'https://ror.org/03rnptb60', 'en', 1, 'https://ror.org/03rnptb60 Instituto Milenio de Oceanografía Millennium Institute of Oceanography'),
(80645, 'https://ror.org/033sa9s17', 'no_lang_code', 1, 'https://ror.org/033sa9s17 Myriad (Germany)'),
(80646, 'https://ror.org/01cjch873', 'no_lang_code', 1, 'https://ror.org/01cjch873 Galecto (Denmark)'),
(80647, 'https://ror.org/023yqa482', 'no_lang_code', 1, 'https://ror.org/023yqa482 Symrise (Germany)'),
(80648, 'https://ror.org/01y3dkx74', 'en', 1, 'https://ror.org/01y3dkx74 International Institute of Molecular and Cell Biology'),
(80649, 'https://ror.org/00wthd003', 'no_lang_code', 1, 'https://ror.org/00wthd003 Allergan (Ireland)'),
(80650, 'https://ror.org/05ebz1978', 'en', 1, 'https://ror.org/05ebz1978 Autry National Center'),
(80651, 'https://ror.org/05b4m7j60', 'no_lang_code', 1, 'https://ror.org/05b4m7j60 Crown Estate (United Kingdom)'),
(80652, 'https://ror.org/02s971a50', 'no_lang_code', 1, 'https://ror.org/02s971a50 De Beers (Canada)'),
(80653, 'https://ror.org/025079t78', 'it', 1, 'https://ror.org/025079t78 Regione Siciliana'),
(80654, 'https://ror.org/01hpz8r71', 'no_lang_code', 1, 'https://ror.org/01hpz8r71 Japan Lifeline (Japan)'),
(80655, 'https://ror.org/01gk55t56', 'en', 1, 'https://ror.org/01gk55t56 Islamic University of Riau Universitas Islam Riau'),
(80656, 'https://ror.org/047ctny49', 'no_lang_code', 1, 'https://ror.org/047ctny49 Bayern Innovativ (Germany)'),
(80657, 'https://ror.org/055f9sm34', 'no_lang_code', 1, 'https://ror.org/055f9sm34 Geistlich Pharma (Switzerland)'),
(80658, 'https://ror.org/027zt9171', 'en', 1, 'https://ror.org/027zt9171 Houston Methodist'),
(80659, 'https://ror.org/03xe4tt38', 'en', 1, 'https://ror.org/03xe4tt38 American Center of Oriental Research'),
(80660, 'https://ror.org/017bk0e71', 'no_lang_code', 1, 'https://ror.org/017bk0e71 CTI BioPharma (United States)'),
(80661, 'https://ror.org/02g2syx91', 'no_lang_code', 1, 'https://ror.org/02g2syx91 Eskom (South Africa)'),
(80662, 'https://ror.org/02h0ps145', 'no_lang_code', 1, 'https://ror.org/02h0ps145 GlobalFoundries (United States)'),
(80663, 'https://ror.org/006hzme35', 'no_lang_code', 1, 'https://ror.org/006hzme35 MicroPort (China)'),
(80664, 'https://ror.org/05qah4n60', 'en', 1, 'https://ror.org/05qah4n60 Research Institute for the Study of Leprosy “Научно-исследовательский институт по изучению лепры”'),
(80665, 'https://ror.org/003eaqr04', 'en', 1, 'https://ror.org/003eaqr04 Technological University of the Mixteca Universidad Tecnológica de la Mixteca'),
(80666, 'https://ror.org/04sqpjb51', 'es', 1, 'https://ror.org/04sqpjb51 Universidad de San Buenaventura, Bogota'),
(80667, 'https://ror.org/009pzqe60', 'no_lang_code', 1, 'https://ror.org/009pzqe60 Cosmote (Greece)'),
(80668, 'https://ror.org/01gp83d60', 'no_lang_code', 1, 'https://ror.org/01gp83d60 Bavarian Nordic (Denmark)'),
(80669, 'https://ror.org/026dvzy54', 'no_lang_code', 1, 'https://ror.org/026dvzy54 ESI Group (Switzerland)'),
(80670, 'https://ror.org/05wyn3p10', 'no_lang_code', 1, 'https://ror.org/05wyn3p10 Nippon Shinyaku (Japan) 日本新薬株式会社'),
(80671, 'https://ror.org/00yqvtm78', 'en', 1, 'https://ror.org/00yqvtm78 University of Shahrood دانشگاه صنعتی شاهرود'),
(80672, 'https://ror.org/008s67533', 'no_lang_code', 1, 'https://ror.org/008s67533 Institut Mérieux (France)'),
(80673, 'https://ror.org/043wqnn43', 'en', 1, 'https://ror.org/043wqnn43 Fundación Comunitaria de Puerto Rico Puerto Rico Community Foundation'),
(80674, 'https://ror.org/02403s062', 'en', 1, 'https://ror.org/02403s062 Zaporizhzhya Institute of Economics and Information Technologies Запорізький Інститут Економіки та Інформаційних Технологій'),
(80675, 'https://ror.org/00zbcgj92', 'no_lang_code', 1, 'https://ror.org/00zbcgj92 Embraer (Brazil)'),
(80676, 'https://ror.org/03125jv12', 'no_lang_code', 1, 'https://ror.org/03125jv12 Okmetic (Finland)'),
(80677, 'https://ror.org/0437ej039', 'en', 1, 'https://ror.org/0437ej039 Haut Commissariat des Nations Unies pour les Réfugiés Office of the United Nations High Commissioner for Refugees'),
(80678, 'https://ror.org/01zsnaa93', 'de', 1, 'https://ror.org/01zsnaa93 Centre Allemand d''Histoire de l’Art Paris Deutsches Forum für Kunstgeschichte Paris German Center for Art History German Center for Art History Paris'),
(80679, 'https://ror.org/007ekx298', 'en', 1, 'https://ror.org/007ekx298 Government of Hungary'),
(80680, 'https://ror.org/02jfsdq79', 'no_lang_code', 1, 'https://ror.org/02jfsdq79 Amplyx Pharmaceuticals (United States)'),
(80681, 'https://ror.org/00ewnj302', 'de', 1, 'https://ror.org/00ewnj302 Deutsches Historisches Institut Rom German Historical Institute in Rome Istituto Storico Germanico di Roma'),
(80682, 'https://ror.org/00zwdnt53', 'no_lang_code', 1, 'https://ror.org/00zwdnt53 Umicore (Belgium)'),
(80683, 'https://ror.org/05egrn753', 'en', 1, 'https://ror.org/05egrn753 Institute for Environment and Human Security'),
(80684, 'https://ror.org/03hm8w204', 'no_lang_code', 1, 'https://ror.org/03hm8w204 Pharmacyclics (United States)'),
(80685, 'https://ror.org/01eaav933', 'en', 1, 'https://ror.org/01eaav933 Metrology Institute of the Republic of Slovenia'),
(80686, 'https://ror.org/008kt5750', 'no_lang_code', 1, 'https://ror.org/008kt5750 Symphogen (Denmark)'),
(80687, 'https://ror.org/00mtny680', 'en', 1, 'https://ror.org/00mtny680 Riyadh Armed Forces Hospital مدينة الأمير سلطان الطبية العسكرية'),
(80688, 'https://ror.org/04jskgv42', 'no_lang_code', 1, 'https://ror.org/04jskgv42 OPKO Health (Israel)'),
(80689, 'https://ror.org/05n00ke18', 'en', 1, 'https://ror.org/05n00ke18 Regional Hospital Randers Regionshospitalet Randers'),
(80690, 'https://ror.org/02jfw4p72', 'no_lang_code', 1, 'https://ror.org/02jfw4p72 CVS Health (United States)'),
(80691, 'https://ror.org/05ydjnb78', 'en', 1, 'https://ror.org/05ydjnb78 University of Passau Universität Passau'),
(80692, 'https://ror.org/00x6ysg61', 'nl', 1, 'https://ror.org/00x6ysg61 Stichting Oogfonds Nederland'),
(80693, 'https://ror.org/01cjnnp32', 'no_lang_code', 1, 'https://ror.org/01cjnnp32 Immunetics (United States)'),
(80694, 'https://ror.org/059tsb338', 'en', 1, 'https://ror.org/059tsb338 Muscular Dystrophy Foundation Muskelsvindfonden'),
(80695, 'https://ror.org/03cpzkh11', 'no_lang_code', 1, 'https://ror.org/03cpzkh11 Siemens (Canada)'),
(80696, 'https://ror.org/03k6fqn53', 'en', 1, 'https://ror.org/03k6fqn53 An Roinn Sláinte Department of Health'),
(80697, 'https://ror.org/05g9srn20', 'no_lang_code', 1, 'https://ror.org/05g9srn20 Aker BP (Norway)'),
(80698, 'https://ror.org/05t7fg049', 'en', 1, 'https://ror.org/05t7fg049 Puerto Rico Sea Grant'),
(80699, 'https://ror.org/039w8qr24', 'en', 1, 'https://ror.org/039w8qr24 North Bengal University উত্তরবঙ্গ বিশ্ববিদ্যালয়'),
(80700, 'https://ror.org/020bbbm37', 'no_lang_code', 1, 'https://ror.org/020bbbm37 Sprint PNS System (United States)'),
(80701, 'https://ror.org/038mvjn28', 'en', 1, 'https://ror.org/038mvjn28 Universidad del Magdalena University of Magdalena'),
(80702, 'https://ror.org/054hq4w78', 'no_lang_code', 1, 'https://ror.org/054hq4w78 Fugro (Netherlands)'),
(80703, 'https://ror.org/00cvzzg84', 'no_lang_code', 1, 'https://ror.org/00cvzzg84 Incyte (United States)'),
(80704, 'https://ror.org/04c8vnp90', 'en', 1, 'https://ror.org/04c8vnp90 Advocate Lutheran General Hospital'),
(80705, 'https://ror.org/00n635c12', 'en', 1, 'https://ror.org/00n635c12 Leeds and York Partnership NHS Foundation Trust'),
(80706, 'https://ror.org/04vnqkx80', 'no_lang_code', 1, 'https://ror.org/04vnqkx80 Sun Pharma (Japan) サンファーマ株式会社'),
(80707, 'https://ror.org/02t2qwf81', 'en', 1, 'https://ror.org/02t2qwf81 University of Peshawar جامعۂ پشاور'),
(80708, 'https://ror.org/000x3c608', 'no_lang_code', 1, 'https://ror.org/000x3c608 Bruce Power (Canada)'),
(80709, 'https://ror.org/03v3jkw12', 'no_lang_code', 1, 'https://ror.org/03v3jkw12 Active Biotech (Sweden)'),
(80710, 'https://ror.org/04xk1b863', 'no_lang_code', 1, 'https://ror.org/04xk1b863 ESI Group (United Kingdom)'),
(80711, 'https://ror.org/04gm1wq32', 'en', 1, 'https://ror.org/04gm1wq32 National Commission for Science and Technology Malawi'),
(80712, 'https://ror.org/05efy4j44', 'no_lang_code', 1, 'https://ror.org/05efy4j44 Tosoh (Japan) 東ソー株式会社'),
(80713, 'https://ror.org/04gxnqr83', 'no_lang_code', 1, 'https://ror.org/04gxnqr83 Humana (United States)'),
(80714, 'https://ror.org/03sjcn752', 'fr', 1, 'https://ror.org/03sjcn752 Conservatoire national supérieur de musique et de danse de Lyon'),
(80715, 'https://ror.org/03qgfjh43', 'no_lang_code', 1, 'https://ror.org/03qgfjh43 Medline (United States)'),
(80716, 'https://ror.org/053vc2366', 'en', 1, 'https://ror.org/053vc2366 Veterans Medical Research Foundation of San Diego'),
(80717, 'https://ror.org/04rtrpb08', 'en', 1, 'https://ror.org/04rtrpb08 Schweizerische Arbeitsgruppe für klinische Krebsforschung Swiss Group For Clinical Cancer Research'),
(80718, 'https://ror.org/046wkw610', 'en', 1, 'https://ror.org/046wkw610 Federal Medical Research Centre for Psychiatry and Narcology Федеральный медицинский исследовательский центр психиатрии и наркологии имени В.П. Сербского'),
(80719, 'https://ror.org/05wtz9f44', 'en', 1, 'https://ror.org/05wtz9f44 Lampung University Universitas Lampung'),
(80720, 'https://ror.org/016w1r206', 'en', 1, 'https://ror.org/016w1r206 Council on Postsecondary Education'),
(80721, 'https://ror.org/02tc7rm90', 'no_lang_code', 1, 'https://ror.org/02tc7rm90 Petronas (Malaysia)'),
(80722, 'https://ror.org/04hrrh248', 'en', 1, 'https://ror.org/04hrrh248 Institute of Mathematics Instytut Matematyczny Polskiej Akademii Nauk'),
(80723, 'https://ror.org/00paezp73', 'no_lang_code', 1, 'https://ror.org/00paezp73 Ixico (United Kingdom)'),
(80724, 'https://ror.org/045h8gy65', 'no_lang_code', 1, 'https://ror.org/045h8gy65 Vale (Canada)'),
(80725, 'https://ror.org/05bhesh09', 'no_lang_code', 1, 'https://ror.org/05bhesh09 Masimo (United States)'),
(80726, 'https://ror.org/01xbsne82', 'en', 1, 'https://ror.org/01xbsne82 Bakrie University Universitas Bakrie'),
(80727, 'https://ror.org/00abnnq69', 'no_lang_code', 1, 'https://ror.org/00abnnq69 Hexal (Germany)'),
(80728, 'https://ror.org/03f37fg05', 'en', 1, 'https://ror.org/03f37fg05 Cooperative Research Centre for Mental Health'),
(80729, 'https://ror.org/01687hb54', 'en', 1, 'https://ror.org/01687hb54 Technological University of Mexico Universidad Tecnológica de México'),
(80730, 'https://ror.org/029d3gv02', 'en', 1, 'https://ror.org/029d3gv02 The Jane Goodall Institute'),
(80731, 'https://ror.org/05t6q2334', 'en', 1, 'https://ror.org/05t6q2334 Private University of the North Universidad Privada del Norte'),
(80732, 'https://ror.org/00yb5c421', 'no_lang_code', 1, 'https://ror.org/00yb5c421 Valio (Finland)'),
(80733, 'https://ror.org/019jr0130', 'en', 1, 'https://ror.org/019jr0130 Mount Sinai Hospital'),
(80734, 'https://ror.org/01whwkf30', 'pt', 1, 'https://ror.org/01whwkf30 Instituto Butantan Instituto Butantã'),
(80735, 'https://ror.org/03xqexp83', 'en', 1, 'https://ror.org/03xqexp83 Instituto Nacional de Ciência e Tecnologia de Fluidos Complexos National Institute of Science and Technology Complex Fluids'),
(80736, 'https://ror.org/00t2dw182', 'no_lang_code', 1, 'https://ror.org/00t2dw182 Zora Biosciences (Finland)'),
(80737, 'https://ror.org/04bn1qy53', 'fr', 1, 'https://ror.org/04bn1qy53 Ministère de la Culture');
INSERT INTO `rors` VALUES
(80738, 'https://ror.org/010htnk72', 'no_lang_code', 1, 'https://ror.org/010htnk72 Menarini Group (Luxembourg)'),
(80739, 'https://ror.org/02yxxe041', 'pl', 1, 'https://ror.org/02yxxe041 Institute of Geological Sciences Instytut Nauk Geologicznych'),
(80740, 'https://ror.org/03c4shz64', 'en', 1, 'https://ror.org/03c4shz64 Abdelmalek Essaâdi University Université Abdelmalek Essaâdi جامعة عبد المالك السعدي'),
(80741, 'https://ror.org/02vkbzw76', 'no_lang_code', 1, 'https://ror.org/02vkbzw76 PAREXEL International (United States)'),
(80742, 'https://ror.org/044pzhf68', 'no_lang_code', 1, 'https://ror.org/044pzhf68 Tokyo Gas (Japan) 東京瓦斯株式会社'),
(80743, 'https://ror.org/01t6bjk79', 'en', 1, 'https://ror.org/01t6bjk79 Russian Medical Academy of Continuous Professional Education Российская медицинская академия непрерывного профессионального образования'),
(80744, 'https://ror.org/02w5edw59', 'sv', 1, 'https://ror.org/02w5edw59 Värmlands Läns Landsting'),
(80745, 'https://ror.org/045ygyt79', 'no_lang_code', 1, 'https://ror.org/045ygyt79 Powertech Labs (Canada)'),
(80746, 'https://ror.org/0213nv371', 'no_lang_code', 1, 'https://ror.org/0213nv371 ViewRay (United States)'),
(80747, 'https://ror.org/04rr0m327', 'en', 1, 'https://ror.org/04rr0m327 University of Montana Western'),
(80748, 'https://ror.org/02ttsvs52', 'en', 1, 'https://ror.org/02ttsvs52 Saint Joseph Hospital'),
(80749, 'https://ror.org/05y3ezc96', 'no_lang_code', 1, 'https://ror.org/05y3ezc96 Loblaw Companies (Canada)'),
(80750, 'https://ror.org/03tx9ss94', 'no_lang_code', 1, 'https://ror.org/03tx9ss94 Cytokinetics (United States)'),
(80751, 'https://ror.org/04hkpfa76', 'no_lang_code', 1, 'https://ror.org/04hkpfa76 Denso (Japan) 株式会社デンソー'),
(80752, 'https://ror.org/01prf8716', 'no_lang_code', 1, 'https://ror.org/01prf8716 Apollomics (United States)'),
(80753, 'https://ror.org/00qxv3c44', 'fr', 1, 'https://ror.org/00qxv3c44 IRT Jules Verne'),
(80754, 'https://ror.org/00sgxyw28', 'no_lang_code', 1, 'https://ror.org/00sgxyw28 Comcast (United States)'),
(80755, 'https://ror.org/05gtb4824', 'en', 1, 'https://ror.org/05gtb4824 Universitas Bangka Belitung University of Bangka Belitung'),
(80756, 'https://ror.org/02m8mqx79', 'no_lang_code', 1, 'https://ror.org/02m8mqx79 Vaccitech (United Kingdom)'),
(80757, 'https://ror.org/012v2c923', 'no_lang_code', 1, 'https://ror.org/012v2c923 BeiGene (China)'),
(80758, 'https://ror.org/00jxaym78', 'en', 1, 'https://ror.org/00jxaym78 The Land Institute'),
(80759, 'https://ror.org/006gczr33', 'no_lang_code', 1, 'https://ror.org/006gczr33 ESI Group (Sweden)'),
(80760, 'https://ror.org/01thjgt98', 'no_lang_code', 1, 'https://ror.org/01thjgt98 Murata (Finland)'),
(80761, 'https://ror.org/05t5p0m89', 'en', 1, 'https://ror.org/05t5p0m89 Turkish Society of Cardiology Türk Kardiyoloji Derneği'),
(80762, 'https://ror.org/03bvz5p76', 'en', 1, 'https://ror.org/03bvz5p76 Jilin University of Chemical Technology 吉林化工学院'),
(80763, 'https://ror.org/00805am64', 'no_lang_code', 1, 'https://ror.org/00805am64 RTI Surgical (United States)'),
(80764, 'https://ror.org/04qdzjg14', 'en', 1, 'https://ror.org/04qdzjg14 Danish Ministry of Culture Kulturministeriet'),
(80765, 'https://ror.org/01hn8xm90', 'en', 1, 'https://ror.org/01hn8xm90 Spanish Society of Family and Community Medicine'),
(80766, 'https://ror.org/02avpg944', 'no_lang_code', 1, 'https://ror.org/02avpg944 Rydberg (United States)'),
(80767, 'https://ror.org/04xc7cw12', 'no_lang_code', 1, 'https://ror.org/04xc7cw12 Dong Wha Pharm (South Korea)'),
(80768, 'https://ror.org/05ezss144', 'en', 1, 'https://ror.org/05ezss144 Duy Tan University Trường Đại học Duy Tân'),
(80769, 'https://ror.org/05cf5b117', 'no_lang_code', 1, 'https://ror.org/05cf5b117 Ansys (United States)'),
(80770, 'https://ror.org/05tkv2291', 'en', 1, 'https://ror.org/05tkv2291 Institute of Political Studies Instytut Studiów Politycznych'),
(80771, 'https://ror.org/03t17c229', 'no_lang_code', 1, 'https://ror.org/03t17c229 Adamas Pharmaceuticals (India)'),
(80772, 'https://ror.org/05y44as61', 'en', 1, 'https://ror.org/05y44as61 Semnan University of Medical Sciences'),
(80773, 'https://ror.org/05s7cyn19', 'en', 1, 'https://ror.org/05s7cyn19 National Medical Research Center of Dentistry and Maxillofacial Surgery Центральный научно-исследовательский институт стоматологии и челюстно-лицевой хирургии'),
(80774, 'https://ror.org/03tme2b78', 'no_lang_code', 1, 'https://ror.org/03tme2b78 Transgenomic (United States)'),
(80775, 'https://ror.org/04gw0wg65', 'en', 1, 'https://ror.org/04gw0wg65 Advocate Christ Medical Center'),
(80776, 'https://ror.org/0077rhe26', 'no_lang_code', 1, 'https://ror.org/0077rhe26 Cerecor (United States)'),
(80777, 'https://ror.org/013m0ej23', 'en', 1, 'https://ror.org/013m0ej23 Institut Périmètre de Physique Théorique Perimeter Institute'),
(80778, 'https://ror.org/059g90c15', 'no_lang_code', 1, 'https://ror.org/059g90c15 Pfizer (Canada)'),
(80779, 'https://ror.org/05ygr1m94', 'no_lang_code', 1, 'https://ror.org/05ygr1m94 Kone (Finland)'),
(80780, 'https://ror.org/05m26jn23', 'en', 1, 'https://ror.org/05m26jn23 Allerhand Institute Instytut Allerhanda'),
(80781, 'https://ror.org/033bc9f34', 'sv', 1, 'https://ror.org/033bc9f34 Kalmar County Council Landstinget i Kalmar län'),
(80782, 'https://ror.org/03y9v4j03', 'en', 1, 'https://ror.org/03y9v4j03 The National Lottery Heritage Fund'),
(80783, 'https://ror.org/04d9v0a44', 'no_lang_code', 1, 'https://ror.org/04d9v0a44 Firmenich (Switzerland)'),
(80784, 'https://ror.org/001t02e86', 'en', 1, 'https://ror.org/001t02e86 Fondation universitaire Universitaire Stichting University Foundation'),
(80785, 'https://ror.org/0326cbt42', 'no_lang_code', 1, 'https://ror.org/0326cbt42 ESI Group (United States)'),
(80786, 'https://ror.org/01g9ayx80', 'no_lang_code', 1, 'https://ror.org/01g9ayx80 HemoSonics (United States)'),
(80787, 'https://ror.org/05sa44m96', 'no_lang_code', 1, 'https://ror.org/05sa44m96 Alkermes (Ireland)'),
(80788, 'https://ror.org/058h0n244', 'en', 1, 'https://ror.org/058h0n244 Shenzhen Stock Exchange'),
(80789, 'https://ror.org/04rr9xy49', 'en', 1, 'https://ror.org/04rr9xy49 United Nations Relief and Works Agency for Palestine Refugees in the Near East'),
(80790, 'https://ror.org/02x1cd136', 'no_lang_code', 1, 'https://ror.org/02x1cd136 BG Medicine (United States)'),
(80791, 'https://ror.org/01asj1396', 'en', 1, 'https://ror.org/01asj1396 Huyck Preserve and Biological Research Station'),
(80792, 'https://ror.org/01g760v14', 'en', 1, 'https://ror.org/01g760v14 Ekhaga Foundation Ekhagastiftelsen'),
(80793, 'https://ror.org/05he67b65', 'no_lang_code', 1, 'https://ror.org/05he67b65 TOA EIYO (Japan) トーアエイヨー'),
(80794, 'https://ror.org/0325pd582', 'en', 1, 'https://ror.org/0325pd582 Fauna and Flora International'),
(80795, 'https://ror.org/003ngne20', 'en', 1, 'https://ror.org/003ngne20 Ochsner Health System'),
(80796, 'https://ror.org/019jh9f64', 'no_lang_code', 1, 'https://ror.org/019jh9f64 Gojo (United States)'),
(80797, 'https://ror.org/00hq8t831', 'no_lang_code', 1, 'https://ror.org/00hq8t831 Ifm Therapeutics (United States)'),
(80798, 'https://ror.org/04qhpqj38', 'no_lang_code', 1, 'https://ror.org/04qhpqj38 Altran (France)'),
(80799, 'https://ror.org/02gfbg321', 'no_lang_code', 1, 'https://ror.org/02gfbg321 Essity (Germany)'),
(80800, 'https://ror.org/05m9vrv91', 'no_lang_code', 1, 'https://ror.org/05m9vrv91 Rogers (United States)'),
(80801, 'https://ror.org/00yqpgp96', 'sv', 1, 'https://ror.org/00yqpgp96 Drottning Silvias barn- och ungdomssjukhus'),
(80802, 'https://ror.org/01rn2d883', 'es', 1, 'https://ror.org/01rn2d883 Fundación Marques de Valdecilla'),
(80803, 'https://ror.org/05xsppr58', 'no_lang_code', 1, 'https://ror.org/05xsppr58 Italfarmaco (Italy)'),
(80804, 'https://ror.org/030vvs717', 'no_lang_code', 1, 'https://ror.org/030vvs717 Purdue Pharma (United States)'),
(80805, 'https://ror.org/03krvca73', 'no_lang_code', 1, 'https://ror.org/03krvca73 USGI Medical (United States)'),
(80806, 'https://ror.org/020p3h829', 'en', 1, 'https://ror.org/020p3h829 University of Occupational and Environmental Health Japan 産業医科大学'),
(80807, 'https://ror.org/04z08z627', 'en', 1, 'https://ror.org/04z08z627 University of Molise Università degli Studi del Molise Université du molise'),
(80808, 'https://ror.org/00ya8kg34', 'en', 1, 'https://ror.org/00ya8kg34 Association Canadienne des Ergothérapeutes Canadian Association of Occupational Therapists'),
(80809, 'https://ror.org/049317064', 'en', 1, 'https://ror.org/049317064 Scientific Center of Children''s Health Научный центр здоровья детей'),
(80810, 'https://ror.org/01tftss64', 'en', 1, 'https://ror.org/01tftss64 Brain Mapping Medical Research Organization & Support Foundation'),
(80811, 'https://ror.org/01mfpjp46', 'en', 1, 'https://ror.org/01mfpjp46 Institute of Oncology NN Petrov НИИ онкологии им. Н.Н. Петрова'),
(80812, 'https://ror.org/04gjpsv96', 'no_lang_code', 1, 'https://ror.org/04gjpsv96 Insulet (United States)'),
(80813, 'https://ror.org/04b98dz04', 'en', 1, 'https://ror.org/04b98dz04 PTEN Research Foundation'),
(80814, 'https://ror.org/01bt8n520', 'no_lang_code', 1, 'https://ror.org/01bt8n520 Lion Corporation (Japan) ライオン株式会社'),
(80815, 'https://ror.org/02thd8n48', 'no_lang_code', 1, 'https://ror.org/02thd8n48 Midatech Pharma (United Kingdom)'),
(80816, 'https://ror.org/02pqjgd54', 'en', 1, 'https://ror.org/02pqjgd54 Fuzhou General Hospital of Nanjing Military Command 中国人民解放军联勤保障部队第九〇〇医院'),
(80817, 'https://ror.org/023qc4a07', 'en', 1, 'https://ror.org/023qc4a07 Hubrecht Institute for Developmental Biology and Stem Cell Research Hubrecht-Instituut'),
(80818, 'https://ror.org/003pa2681', 'en', 1, 'https://ror.org/003pa2681 Endocrinology Research Center Научно-исследовательский центр Институт эндокринологии'),
(80819, 'https://ror.org/027abjr46', 'en', 1, 'https://ror.org/027abjr46 Nizhny Novgorod Research Institute of Traumatology and Orthopedics Приволжский федеральный медицинский исследовательский центр'),
(80820, 'https://ror.org/013nat269', 'en', 1, 'https://ror.org/013nat269 Finlands miljöcentral Finnish Environment Institute Suomen ympäristökeskus'),
(80821, 'https://ror.org/00vxae445', 'en', 1, 'https://ror.org/00vxae445 Canadian Egg Marketing Agency'),
(80822, 'https://ror.org/04neks648', 'no_lang_code', 1, 'https://ror.org/04neks648 AlgiPharma (Norway)'),
(80823, 'https://ror.org/03j32c418', 'en', 1, 'https://ror.org/03j32c418 Muhammadiyah University Purwokerto Universitas Muhammadiyah Purwokerto'),
(80824, 'https://ror.org/019xaj585', 'en', 1, 'https://ror.org/019xaj585 Vaasa Central Hospital'),
(80825, 'https://ror.org/023g86t37', 'no_lang_code', 1, 'https://ror.org/023g86t37 Toyota Motor Corporation (Belgium)'),
(80826, 'https://ror.org/01vt69253', 'no_lang_code', 1, 'https://ror.org/01vt69253 Reva Medical (United States)'),
(80827, 'https://ror.org/02r9ghz18', 'en', 1, 'https://ror.org/02r9ghz18 Russian Ilizarov Scientific Center for Restorative Traumatology and Orthopaedics Российский научный центр «Восстановительная травматология и ортопедия» имени академика Г. А. Илизарова'),
(80828, 'https://ror.org/0465c8g46', 'no_lang_code', 1, 'https://ror.org/0465c8g46 Clariant (Switzerland)'),
(80829, 'https://ror.org/033dmae14', 'en', 1, 'https://ror.org/033dmae14 Royal University of Agriculture, Cambodia សាកលវិទ្យាល័យភូមិន្ទកសិកម្ម'),
(80830, 'https://ror.org/042jjy888', 'en', 1, 'https://ror.org/042jjy888 European Association for Palliative Care'),
(80831, 'https://ror.org/04mrrw205', 'en', 1, 'https://ror.org/04mrrw205 Autonomous University of Chihuahua Universidad Autónoma de Chihuahua'),
(80832, 'https://ror.org/045yh2d25', 'en', 1, 'https://ror.org/045yh2d25 Ivanovo Research Institute of Motherhood and Childhood named after VN Gorodkov'),
(80833, 'https://ror.org/05vna4324', 'en', 1, 'https://ror.org/05vna4324 Science and Technology Development Fund'),
(80834, 'https://ror.org/00b1tsa05', 'no_lang_code', 1, 'https://ror.org/00b1tsa05 Tata Motors (India)'),
(80835, 'https://ror.org/0434vme59', 'en', 1, 'https://ror.org/0434vme59 Centre for Health Technology and Services Research Centro de Investigação em Tecnologias e Serviços de Saúde'),
(80836, 'https://ror.org/01jfpc433', 'en', 1, 'https://ror.org/01jfpc433 Society for the History of Technology'),
(80837, 'https://ror.org/018159086', 'en', 1, 'https://ror.org/018159086 Pirogov Russian National Research Medical University Российский национальный исследовательский медицинский университет имени Н. И. Пирогова'),
(80838, 'https://ror.org/05efq3455', 'en', 1, 'https://ror.org/05efq3455 Siliwangi University Universitas Siliwangi'),
(80839, 'https://ror.org/02211g273', 'no_lang_code', 1, 'https://ror.org/02211g273 Agrisearch (United Kingdom)'),
(80840, 'https://ror.org/0562yk913', 'no_lang_code', 1, 'https://ror.org/0562yk913 Verastem (United States)'),
(80841, 'https://ror.org/00q5xgh71', 'en', 1, 'https://ror.org/00q5xgh71 Danish Medicines Agency Lægemiddelstyrelsen'),
(80842, 'https://ror.org/025t9c657', 'no_lang_code', 1, 'https://ror.org/025t9c657 SK Life Science (United States)'),
(80843, 'https://ror.org/03ra42c27', 'no_lang_code', 1, 'https://ror.org/03ra42c27 Dexcom (United States)'),
(80844, 'https://ror.org/04yymzm67', 'en', 1, 'https://ror.org/04yymzm67 Hassiba Benbouali University of Chlef جامعة حسيبة بن بوعلي -الشلف'),
(80845, 'https://ror.org/03yfnyw34', 'en', 1, 'https://ror.org/03yfnyw34 National Medical Research Center for Obstetrics, Gynecology and Perinatology named after Academician V.I.Kulakov of the Ministry of Healthcare of the Russian Federation Федеральное государственное бюджетное учреждение "Национальный медицинский исследовательский центр имени академика Кулакова" Министерства здравоохранения Российской Федерации'),
(80846, 'https://ror.org/03bjyp708', 'no_lang_code', 1, 'https://ror.org/03bjyp708 Auris Health (United States)'),
(80847, 'https://ror.org/01nz1p872', 'no_lang_code', 1, 'https://ror.org/01nz1p872 CryoLife (United States)'),
(80848, 'https://ror.org/05c691y47', 'no_lang_code', 1, 'https://ror.org/05c691y47 BTG International (United Kingdom)'),
(80849, 'https://ror.org/05myv7q56', 'en', 1, 'https://ror.org/05myv7q56 Hochschule Geisenheim Hochschule Geisenheim University'),
(80850, 'https://ror.org/02fccce66', 'no_lang_code', 1, 'https://ror.org/02fccce66 Amarin (Ireland)'),
(80851, 'https://ror.org/05xaz7757', 'en', 1, 'https://ror.org/05xaz7757 Ministerie van Sociale Zaken en Werkgelegenheid Ministry of Social Affairs and Employment'),
(80852, 'https://ror.org/00d801g55', 'no_lang_code', 1, 'https://ror.org/00d801g55 Ipsen (France)'),
(80853, 'https://ror.org/00bgr8r13', 'en', 1, 'https://ror.org/00bgr8r13 Puerto Rico Space Grant Consortium'),
(80854, 'https://ror.org/01sdg6680', 'en', 1, 'https://ror.org/01sdg6680 WellChild'),
(80855, 'https://ror.org/055kgg913', 'no_lang_code', 1, 'https://ror.org/055kgg913 ConMed (United States)'),
(80856, 'https://ror.org/00zca7903', 'en', 1, 'https://ror.org/00zca7903 Biomedical Research Networking Center on Neurodegenerative Diseases Centro de Investigación Biomédica en Red, Enfermedades Neurodegenerativas'),
(80857, 'https://ror.org/039ks3037', 'no_lang_code', 1, 'https://ror.org/039ks3037 Nucana (United Kingdom)'),
(80858, 'https://ror.org/01qbmc548', 'no_lang_code', 1, 'https://ror.org/01qbmc548 Syncrude (Canada)'),
(80859, 'https://ror.org/052s0am34', 'it', 1, 'https://ror.org/052s0am34 Istituto Nazionale della Previdenza Sociale'),
(80860, 'https://ror.org/00endtw77', 'no_lang_code', 1, 'https://ror.org/00endtw77 Alimera Sciences (United States)'),
(80861, 'https://ror.org/01d03cj21', 'en', 1, 'https://ror.org/01d03cj21 Research Foundation of The City University of New York'),
(80862, 'https://ror.org/01k9rsw84', 'no_lang_code', 1, 'https://ror.org/01k9rsw84 Shell (Canada) Shell Canada Limitée'),
(80863, 'https://ror.org/02cnt7f76', 'en', 1, 'https://ror.org/02cnt7f76 Steel Foundation for Environmental Protection Technology 公益財団法人鉄鋼環境基金'),
(80864, 'https://ror.org/049rt8g11', 'no_lang_code', 1, 'https://ror.org/049rt8g11 Saputo (Canada)'),
(80865, 'https://ror.org/0305fjd69', 'en', 1, 'https://ror.org/0305fjd69 Norwegian Food Safety Authority'),
(80866, 'https://ror.org/01mqnrz37', 'en', 1, 'https://ror.org/01mqnrz37 Federal State Budgetary Institution Russian Scientific Center of Roentgenoradiology Федеральное государственное бюджетное учреждение "Российский научный центр рентгенорадиологии"'),
(80867, 'https://ror.org/01h20c209', 'en', 1, 'https://ror.org/01h20c209 Ministarstvo Civilnih Poslova Ministry of Civil Affairs'),
(80868, 'https://ror.org/0231f9890', 'no_lang_code', 1, 'https://ror.org/0231f9890 BSH Hausgeräte (Germany)'),
(80869, 'https://ror.org/01j8exy17', 'no_lang_code', 1, 'https://ror.org/01j8exy17 Oil and Natural Gas Corporation (India)'),
(80870, 'https://ror.org/01mfdfm52', 'en', 1, 'https://ror.org/01mfdfm52 Forest Research Institute Malaysia'),
(80871, 'https://ror.org/04svthb06', 'en', 1, 'https://ror.org/04svthb06 Sten A Olsson Foundation for Research and Culture Sten A Olssons Stiftelse för Forskning och Kultur'),
(80872, 'https://ror.org/02vmz1g97', 'no_lang_code', 1, 'https://ror.org/02vmz1g97 ESI Group (Germany)'),
(80873, 'https://ror.org/05v4txf92', 'no', 1, 'https://ror.org/05v4txf92 Sunnaas Hospital Sunnaas sykehus'),
(80874, 'https://ror.org/03jex2n57', 'en', 1, 'https://ror.org/03jex2n57 National Boron Research Institute Ulusal Bor Araştırma Enstitüsü'),
(80875, 'https://ror.org/02cedh792', 'no_lang_code', 1, 'https://ror.org/02cedh792 Medela (Switzerland)'),
(80876, 'https://ror.org/05dd7m743', 'no_lang_code', 1, 'https://ror.org/05dd7m743 Osprey Medical (United States)'),
(80877, 'https://ror.org/00jkpa835', 'no_lang_code', 1, 'https://ror.org/00jkpa835 Prothena (United States)'),
(80878, 'https://ror.org/04yhf7405', 'en', 1, 'https://ror.org/04yhf7405 Sydney Water'),
(80879, 'https://ror.org/04jewc589', 'en', 1, 'https://ror.org/04jewc589 Lillebaelt Hospital Sygehus Lillebælt'),
(80880, 'https://ror.org/00eaa9p67', 'no_lang_code', 1, 'https://ror.org/00eaa9p67 Corin (United Kingdom)'),
(80881, 'https://ror.org/01dm8v457', 'no_lang_code', 1, 'https://ror.org/01dm8v457 Xcel Energy (United States)'),
(80882, 'https://ror.org/02at9hq18', 'en', 1, 'https://ror.org/02at9hq18 National Research Center for Preventive Medicine Государственный научно-исследовательский Центр Профилактической Медицины'),
(80883, 'https://ror.org/02pgc5h43', 'no_lang_code', 1, 'https://ror.org/02pgc5h43 AOP Orphan (Austria)'),
(80884, 'https://ror.org/03qnzrx19', 'en', 1, 'https://ror.org/03qnzrx19 United Kingdom Sport'),
(80885, 'https://ror.org/02nph9e73', 'no_lang_code', 1, 'https://ror.org/02nph9e73 Amryt Pharma (Germany)'),
(80886, 'https://ror.org/05tst3487', 'de', 1, 'https://ror.org/05tst3487 ParkinsonFonds Deutschland gGmbH'),
(80887, 'https://ror.org/03z9fzp04', 'en', 1, 'https://ror.org/03z9fzp04 Trường Đại học Hàng hải Việt Nam Vietnam Maritime University'),
(80888, 'https://ror.org/05pz4yk52', 'en', 1, 'https://ror.org/05pz4yk52 Instytut Biologii Ssaków Polskiej Akademii Nauk Mammal Research Institute'),
(80889, 'https://ror.org/01h5xyq84', 'en', 1, 'https://ror.org/01h5xyq84 Historic Environment Scotland Àrainneachd Eachdraidheil Alba'),
(80890, 'https://ror.org/02tp79578', 'no_lang_code', 1, 'https://ror.org/02tp79578 Ark Therapeutic (United States)'),
(80891, 'https://ror.org/054hg7j81', 'en', 1, 'https://ror.org/054hg7j81 Federal State Budgetary Institution "Center for Expertise and Quality Control of Medical Care" Федеральное государственное бюджетное учреждение «Центр экспертизы и контроля качества медицинской помощи» Министерства здравоохранения Российской Федерации'),
(80892, 'https://ror.org/041z6c333', 'en', 1, 'https://ror.org/041z6c333 Polish Agency for Enterprise Development Polska Agencja Rozwoju Przedsiębiorczości'),
(80893, 'https://ror.org/01xm4wg91', 'no_lang_code', 1, 'https://ror.org/01xm4wg91 Moderna Therapeutics (United States)'),
(80894, 'https://ror.org/03ea38411', 'no_lang_code', 1, 'https://ror.org/03ea38411 Water Corporation of Western Australia (Australia)'),
(80895, 'https://ror.org/021xbwv17', 'en', 1, 'https://ror.org/021xbwv17 National Economics University Đại học Kinh tế Quốc dân'),
(80896, 'https://ror.org/023dg6y22', 'no_lang_code', 1, 'https://ror.org/023dg6y22 Seven Past Nine'),
(80897, 'https://ror.org/001q4kn48', 'en', 1, 'https://ror.org/001q4kn48 University of Hassan II Casablanca Université hassan ii de casablanca جامعة الحسن الثاني'),
(80898, 'https://ror.org/03g10x105', 'en', 1, 'https://ror.org/03g10x105 COmON Stichting Comon Foundation'),
(80899, 'https://ror.org/05g2yfd11', 'en', 1, 'https://ror.org/05g2yfd11 European Association of Cardiothoracic Anaesthesiology'),
(80900, 'https://ror.org/05myne231', 'no_lang_code', 1, 'https://ror.org/05myne231 TiDA (New Zealand)'),
(80901, 'https://ror.org/00f86gt02', 'no_lang_code', 1, 'https://ror.org/00f86gt02 Nippon Zoki (Japan) 日本臓器製薬'),
(80902, 'https://ror.org/00ddgbf74', 'nl', 1, 'https://ror.org/00ddgbf74 Long Fonds'),
(80903, 'https://ror.org/02cjszf03', 'en', 1, 'https://ror.org/02cjszf03 Institute of Remote Sensing and Digital Earth 中国科学院对地观测与数字地球科学中心'),
(80904, 'https://ror.org/002mmyt85', 'en', 1, 'https://ror.org/002mmyt85 Genomics Research Center, Academia Sinica 中央研究院基因體研究中心'),
(80905, 'https://ror.org/018etvh69', 'en', 1, 'https://ror.org/018etvh69 Kavli Fondet The Kavli Trust'),
(80906, 'https://ror.org/02ey3ab96', 'en', 1, 'https://ror.org/02ey3ab96 Innovációs és Technológiai Minisztérium Ministry for Innovation and Technology'),
(80907, 'https://ror.org/01ws75306', 'en', 1, 'https://ror.org/01ws75306 China Automotive Battery Research Institute 国联汽车动力电池研究院'),
(80908, 'https://ror.org/00dy5wm60', 'no_lang_code', 1, 'https://ror.org/00dy5wm60 Fidia Farmaceutici (Italy)'),
(80909, 'https://ror.org/02y7rck89', 'en', 1, 'https://ror.org/02y7rck89 Dali University 大理学院'),
(80910, 'https://ror.org/02h694m69', 'no_lang_code', 1, 'https://ror.org/02h694m69 PharmaMar (Spain)'),
(80911, 'https://ror.org/02srvn192', 'en', 1, 'https://ror.org/02srvn192 International Institute for Environment and Development'),
(80912, 'https://ror.org/029pamw34', 'en', 1, 'https://ror.org/029pamw34 Centre for Southern Hemisphere Oceans Research'),
(80913, 'https://ror.org/02vr0ne26', 'en', 1, 'https://ror.org/02vr0ne26 European Institute of Oncology Istituto Europeo di Oncologia'),
(80914, 'https://ror.org/02vcxyt85', 'es', 1, 'https://ror.org/02vcxyt85 Axencia Galega de Innovacion'),
(80915, 'https://ror.org/02pm1jf23', 'no_lang_code', 1, 'https://ror.org/02pm1jf23 Corteva (United States)'),
(80916, 'https://ror.org/02eqw3q87', 'en', 1, 'https://ror.org/02eqw3q87 Taipei City Government'),
(80917, 'https://ror.org/012feq088', 'en', 1, 'https://ror.org/012feq088 Kids'' Brain Tumor Cure Foundation'),
(80918, 'https://ror.org/01ae6h598', 'en', 1, 'https://ror.org/01ae6h598 Ufa State Petroleum Technological University Уфимский государственный нефтяной технический университет Өфө дәүләт нефть техник университеты'),
(80919, 'https://ror.org/01pbhra64', 'en', 1, 'https://ror.org/01pbhra64 Morehouse School of Medicine'),
(80920, 'https://ror.org/00jqn4k83', 'en', 1, 'https://ror.org/00jqn4k83 Society for Neuroscience in Anesthesiology and Critical Care'),
(80921, 'https://ror.org/01px1ve30', 'en', 1, 'https://ror.org/01px1ve30 Shangdong Agriculture and Engineering University 山东农业工程学院'),
(80922, 'https://ror.org/01x7kw596', 'en', 1, 'https://ror.org/01x7kw596 Royal Australian and New Zealand College of Radiologists'),
(80923, 'https://ror.org/01wc2tq75', 'no_lang_code', 1, 'https://ror.org/01wc2tq75 Kogakuin University 工学院大学'),
(80924, 'https://ror.org/003cbyt26', 'en', 1, 'https://ror.org/003cbyt26 Gansu Academy of Sciences 甘肃省科学院'),
(80925, 'https://ror.org/018gks972', 'en', 1, 'https://ror.org/018gks972 Jilin Engineering Normal University 吉林工程技术师范学院'),
(80926, 'https://ror.org/01qstkr73', 'no_lang_code', 1, 'https://ror.org/01qstkr73 EMI (United Kingdom)'),
(80927, 'https://ror.org/00vqs2b71', 'no_lang_code', 1, 'https://ror.org/00vqs2b71 JCR Pharmaceuticals (Japan) JCRファーマ株式会社'),
(80928, 'https://ror.org/02vck8g64', 'en', 1, 'https://ror.org/02vck8g64 Japan Proton Accelerator Research Complex 大強度陽子加速器施設'),
(80929, 'https://ror.org/010derh63', 'en', 1, 'https://ror.org/010derh63 The VTCT Foundation'),
(80930, 'https://ror.org/024a6m208', 'en', 1, 'https://ror.org/024a6m208 The Steven G. AYA Cancer Research Fund'),
(80931, 'https://ror.org/02wqw8685', 'en', 1, 'https://ror.org/02wqw8685 TeamConnor Childhood Cancer Foundation'),
(80932, 'https://ror.org/02kn5wf75', 'en', 1, 'https://ror.org/02kn5wf75 Innlandet Hospital Trust'),
(80933, 'https://ror.org/02jhs2h97', 'no_lang_code', 1, 'https://ror.org/02jhs2h97 Concert Pharmaceuticals (United States)'),
(80934, 'https://ror.org/02747h926', 'en', 1, 'https://ror.org/02747h926 World Cancer Research Fund International'),
(80935, 'https://ror.org/02j15s898', 'en', 1, 'https://ror.org/02j15s898 The Wallace H. Coulter Department of Biomedical Engineering'),
(80936, 'https://ror.org/00xwjya15', 'de', 1, 'https://ror.org/00xwjya15 Stiftung der Deutschen Wirtschaft'),
(80937, 'https://ror.org/01tpvdp83', 'no_lang_code', 1, 'https://ror.org/01tpvdp83 Guangxi Medicinal Botanical Garden 广西药用植物园'),
(80938, 'https://ror.org/00ng7yn96', 'en', 1, 'https://ror.org/00ng7yn96 Catholic Medical Center'),
(80939, 'https://ror.org/00twmyj12', 'it', 1, 'https://ror.org/00twmyj12 Ospedale Vincenzo Cervello'),
(80940, 'https://ror.org/01r88qh41', 'en', 1, 'https://ror.org/01r88qh41 JKA Foundation 財団法人JKA'),
(80941, 'https://ror.org/00k1zme04', 'en', 1, 'https://ror.org/00k1zme04 Singapore Cancer Society'),
(80942, 'https://ror.org/00b6kjb41', 'en', 1, 'https://ror.org/00b6kjb41 New York State Office for People With Developmental Disabilities'),
(80943, 'https://ror.org/015bxyv30', 'en', 1, 'https://ror.org/015bxyv30 Gujarat Cancer & Research Institute'),
(80944, 'https://ror.org/00efwap41', 'en', 1, 'https://ror.org/00efwap41 Global Energy Interconnection Research Institute North America'),
(80945, 'https://ror.org/020aczd56', 'en', 1, 'https://ror.org/020aczd56 Flinders Medical Centre'),
(80946, 'https://ror.org/01eq10738', 'no_lang_code', 1, 'https://ror.org/01eq10738 Nanfang Hospital'),
(80947, 'https://ror.org/003659f07', 'en', 1, 'https://ror.org/003659f07 Aksum University'),
(80948, 'https://ror.org/00dgmsj78', 'en', 1, 'https://ror.org/00dgmsj78 Clifford Craig Foundation'),
(80949, 'https://ror.org/015bnwc11', 'no_lang_code', 1, 'https://ror.org/015bnwc11 Xi''an Honghui Hospital 西安市红会医院'),
(80950, 'https://ror.org/02qhjtc16', 'en', 1, 'https://ror.org/02qhjtc16 Pelita Harapan University'),
(80951, 'https://ror.org/00mmgx583', 'en', 1, 'https://ror.org/00mmgx583 Suratthani Rajabhat University มหาวิทยาลัยราชภัฏสุราษฎร์ธานี'),
(80952, 'https://ror.org/01tspta37', 'en', 1, 'https://ror.org/01tspta37 Leibniz Institute of Polymer Research Leibniz-Institut für Polymerforschung Dresden'),
(80953, 'https://ror.org/02xvrx776', 'en', 1, 'https://ror.org/02xvrx776 Instytut Katalizy i Fizykochemii Powierzchni im. Jerzego Habera Polskiej Akademii Nauk Jerzy Haber Institute of Catalysis and Surface Chemistry, Polish Academy of Sciences'),
(80954, 'https://ror.org/002cfy541', 'en', 1, 'https://ror.org/002cfy541 Japan Diabetes Foundation 日本糖尿病財団'),
(80955, 'https://ror.org/01270hm15', 'en', 1, 'https://ror.org/01270hm15 Instytut Fizjologii i Żywienia Zwierząt im. Jana Kielanowskiego PAN Kielanowski Institute of Animal Physiology and Nutrition'),
(80956, 'https://ror.org/01drp4225', 'en', 1, 'https://ror.org/01drp4225 Multiple System Atrophy Trust'),
(80957, 'https://ror.org/02ty3a980', 'en', 1, 'https://ror.org/02ty3a980 National Institute of Animal Science'),
(80958, 'https://ror.org/02axfzt86', 'en', 1, 'https://ror.org/02axfzt86 Hexi University 河西学院'),
(80959, 'https://ror.org/0263xn725', 'en', 1, 'https://ror.org/0263xn725 Wisconsin Academy of Sciences, Arts & Letters'),
(80960, 'https://ror.org/00knqp290', 'en', 1, 'https://ror.org/00knqp290 Chinese Academy of Inspection and Quarantine 中国检验检疫科学研究院'),
(80961, 'https://ror.org/023ej5c96', 'no_lang_code', 1, 'https://ror.org/023ej5c96 GSI Environmental (United States)'),
(80962, 'https://ror.org/01t6g8w08', 'en', 1, 'https://ror.org/01t6g8w08 Scottish Natural Heritage'),
(80963, 'https://ror.org/01vf7he45', 'en', 1, 'https://ror.org/01vf7he45 Pirkanmaa Hospital District Pirkanmaan Sairaanhoitopiiri'),
(80964, 'https://ror.org/01cx85066', 'en', 1, 'https://ror.org/01cx85066 John Peter Smith Hospital'),
(80965, 'https://ror.org/00t2prd39', 'en', 1, 'https://ror.org/00t2prd39 Thaksin University มหาวิทยาลัยทักษิณ'),
(80966, 'https://ror.org/01x5qb890', 'en', 1, 'https://ror.org/01x5qb890 Commonwealth Health Research Board'),
(80967, 'https://ror.org/02jgyam08', 'en', 1, 'https://ror.org/02jgyam08 Max Planck Institute for Demographic Research Max-Planck-Institut für Demografische Forschung'),
(80968, 'https://ror.org/0054f1w39', 'en', 1, 'https://ror.org/0054f1w39 Arizona''s Public Universities'),
(80969, 'https://ror.org/021wm5f70', 'no_lang_code', 1, 'https://ror.org/021wm5f70 Lundin (Norway)'),
(80970, 'https://ror.org/015eybs17', 'en', 1, 'https://ror.org/015eybs17 Game & Wildlife Conservation Trust'),
(80971, 'https://ror.org/00e7cvg05', 'en', 1, 'https://ror.org/00e7cvg05 Rajiv Gandhi Cancer Institute and Research Centre'),
(80972, 'https://ror.org/02k8cbn47', 'en', 1, 'https://ror.org/02k8cbn47 GSI Helmholtz Centre for Heavy Ion Research GSI Helmholtzzentrum für Schwerionenforschung'),
(80973, 'https://ror.org/0010d1q40', 'no_lang_code', 1, 'https://ror.org/0010d1q40 Grand Équipement National de Calcul Intensif (France)'),
(80974, 'https://ror.org/01ep6qy98', 'no_lang_code', 1, 'https://ror.org/01ep6qy98 TransCanada (Canada)'),
(80975, 'https://ror.org/026x1ah07', 'en', 1, 'https://ror.org/026x1ah07 Virginia Department of Game and Inland Fisheries'),
(80976, 'https://ror.org/02dgwnb72', 'en', 1, 'https://ror.org/02dgwnb72 Novartis-MIT Center for Continuous Manufacturing'),
(80977, 'https://ror.org/02awpzy50', 'en', 1, 'https://ror.org/02awpzy50 Mid-America Transportation Center'),
(80978, 'https://ror.org/0273ffp90', 'en', 1, 'https://ror.org/0273ffp90 Defence Materiel Administration Försvarets materielverk'),
(80979, 'https://ror.org/02v5bck07', 'en', 1, 'https://ror.org/02v5bck07 State Administration of Work Safety 国家安全生产监督管理总局'),
(80980, 'https://ror.org/002ygss10', 'en', 1, 'https://ror.org/002ygss10 Utica College'),
(80981, 'https://ror.org/01ft5vz71', 'en', 1, 'https://ror.org/01ft5vz71 Indian Institute of Technology Patna இந்திய தொழில்நுட்பக் கழகம் பட்னா'),
(80982, 'https://ror.org/01syejz95', 'en', 1, 'https://ror.org/01syejz95 Helmholtz Graduate School for Hadron and Ion Research'),
(80983, 'https://ror.org/02ba9v476', 'no_lang_code', 1, 'https://ror.org/02ba9v476 Wessex Academic Health Science Network (United Kingdom)'),
(80984, 'https://ror.org/00jjh0n63', 'en', 1, 'https://ror.org/00jjh0n63 Forschungsinstitut für Philosophie Hannover Research Institute for Philosophy Hannover'),
(80985, 'https://ror.org/00ax0a039', 'en', 1, 'https://ror.org/00ax0a039 The Hersh Foundation'),
(80986, 'https://ror.org/00yq7f263', 'en', 1, 'https://ror.org/00yq7f263 Cobalt Institute'),
(80987, 'https://ror.org/00xdnjz02', 'es', 1, 'https://ror.org/00xdnjz02 Fundación Valle del Lili'),
(80988, 'https://ror.org/00qnrsq87', 'en', 1, 'https://ror.org/00qnrsq87 Invest Northern Ireland'),
(80989, 'https://ror.org/00zbfm828', 'no_lang_code', 1, 'https://ror.org/00zbfm828 Cambridge Crystallographic Data Centre'),
(80990, 'https://ror.org/014487k66', 'en', 1, 'https://ror.org/014487k66 Canadian Nuclear Laboratories'),
(80991, 'https://ror.org/02gk7n802', 'de', 1, 'https://ror.org/02gk7n802 Deutsche Gesellschaft für Muskelkranke'),
(80992, 'https://ror.org/01taed346', 'no_lang_code', 1, 'https://ror.org/01taed346 MedDay (France)'),
(80993, 'https://ror.org/02xcxe208', 'no_lang_code', 1, 'https://ror.org/02xcxe208 Nevro (United States)'),
(80994, 'https://ror.org/005qv5j28', 'en', 1, 'https://ror.org/005qv5j28 Fundación Mundial de Diabetes Fundação Mundial de Diabetes World Diabetes Foundation'),
(80995, 'https://ror.org/02px13636', 'en', 1, 'https://ror.org/02px13636 Taiwan Nurses Association'),
(80996, 'https://ror.org/00v0z9322', 'en', 1, 'https://ror.org/00v0z9322 Moscow Institute of Physics and Technology Московский физико-технический институт'),
(80997, 'https://ror.org/02de4ka70', 'en', 1, 'https://ror.org/02de4ka70 International Breast Cancer Research Foundation'),
(80998, 'https://ror.org/020yfz786', 'en', 1, 'https://ror.org/020yfz786 European University Association'),
(80999, 'https://ror.org/00kz6qq24', 'en', 1, 'https://ror.org/00kz6qq24 S.N. Bose National Centre for Basic Sciences সত্যেন্দ্রনাথ বসু জাতীয় মৌলিক বিজ্ঞান কেন্দ্র'),
(81000, 'https://ror.org/00b4ram58', 'no_lang_code', 1, 'https://ror.org/00b4ram58 Mercedes-Benz Research and Development North America (United States)'),
(81001, 'https://ror.org/02psedk13', 'en', 1, 'https://ror.org/02psedk13 Wisconsin Department of Health Services'),
(81002, 'https://ror.org/01p3c3c27', 'en', 1, 'https://ror.org/01p3c3c27 Gundersen Health System'),
(81003, 'https://ror.org/0034mdn74', 'en', 1, 'https://ror.org/0034mdn74 Adigrat University አዲግራት ዩኒቨርሲቲ'),
(81004, 'https://ror.org/01ht2b307', 'en', 1, 'https://ror.org/01ht2b307 King Salman Center for Disability Research مركز الملك سلمان لأبحاث الإعاقة'),
(81005, 'https://ror.org/028861t28', 'en', 1, 'https://ror.org/028861t28 Texas A&M International University Universidad Internacional de Texas A&M'),
(81006, 'https://ror.org/02hvt5f17', 'en', 1, 'https://ror.org/02hvt5f17 Tampere University Hospital'),
(81007, 'https://ror.org/00dt9qb91', 'en', 1, 'https://ror.org/00dt9qb91 Illawarra Health and Medical Research Institute'),
(81008, 'https://ror.org/02w6k4f12', 'nl', 1, 'https://ror.org/02w6k4f12 Stichting HIV Monitoring'),
(81009, 'https://ror.org/00s1xm844', 'en', 1, 'https://ror.org/00s1xm844 Kansas Historical Society'),
(81010, 'https://ror.org/00c32gy34', 'es', 1, 'https://ror.org/00c32gy34 Universidad de Sonora University of Sonora'),
(81011, 'https://ror.org/00b2nf889', 'en', 1, 'https://ror.org/00b2nf889 Amhara Regional Health Bureau'),
(81012, 'https://ror.org/01h4fxd96', 'fr', 1, 'https://ror.org/01h4fxd96 Grenoble Ecole de Management'),
(81013, 'https://ror.org/02qsdbe73', 'pt', 1, 'https://ror.org/02qsdbe73 Instituto Uniemp'),
(81014, 'https://ror.org/009026n40', 'en', 1, 'https://ror.org/009026n40 Fatima Jinnah Women University جامعہ فاطمہ جناح برائے خواتین'),
(81015, 'https://ror.org/003br8b23', 'no_lang_code', 1, 'https://ror.org/003br8b23 Akebia Therapeutics (United States)'),
(81016, 'https://ror.org/00t6gsr31', 'en', 1, 'https://ror.org/00t6gsr31 Leeds Cares'),
(81017, 'https://ror.org/01yjhny41', 'en', 1, 'https://ror.org/01yjhny41 Northeast Amyotrophic Lateral Sclerosis Consortium'),
(81018, 'https://ror.org/02vyk6z19', 'en', 1, 'https://ror.org/02vyk6z19 Argentine Antarctic Institute Instituto Antártico Argentino'),
(81019, 'https://ror.org/01q9h8k89', 'en', 1, 'https://ror.org/01q9h8k89 Universitat de Nàpols – L''Oriental University of Naples - L''Orientale Università degli Studi di Napoli L''Orientale Universität Neapel L’Orientale Université de naples - l''orientale'),
(81020, 'https://ror.org/02jv93662', 'en', 1, 'https://ror.org/02jv93662 Qatar National Library مكتبة قطر الوطنية'),
(81021, 'https://ror.org/02q53mk25', 'no_lang_code', 1, 'https://ror.org/02q53mk25 Templeton Religion Trust'),
(81022, 'https://ror.org/01d7fn555', 'en', 1, 'https://ror.org/01d7fn555 Central Food Technological Research Institute केन्द्रीय खाद्य प्रौद्योगिकी अनुसंधान संस्थान ಕೇಂದ್ರೀಯ ಆಹಾರ ಸಂಶೋಧನಾಲಯ സെൻട്രൽ ഫുഡ് ടെക്നോളജിക്കൽ റിസർച്ച് ഇൻസ്റ്റിറ്റ്യൂട്ട്'),
(81023, 'https://ror.org/00zxgrh39', 'en', 1, 'https://ror.org/00zxgrh39 Heilongjiang Provincial Academy of Agricultural Sciences 黑龙江省农业科学院'),
(81024, 'https://ror.org/0158pzk57', 'en', 1, 'https://ror.org/0158pzk57 Philippine Social Science Council'),
(81025, 'https://ror.org/015ypce77', 'en', 1, 'https://ror.org/015ypce77 Burke Museum of Natural History and Culture'),
(81026, 'https://ror.org/01cfd6w66', 'en', 1, 'https://ror.org/01cfd6w66 Iowa Department of Agriculture and Land Stewardship'),
(81027, 'https://ror.org/019w00969', 'en', 1, 'https://ror.org/019w00969 Leibniz Centre for Tropical Marine Research Leibniz Zentrum für Marine Tropenforschung'),
(81028, 'https://ror.org/00emrpf22', 'no_lang_code', 1, 'https://ror.org/00emrpf22 JenaValve (United States)'),
(81029, 'https://ror.org/02218z997', 'en', 1, 'https://ror.org/02218z997 Royal Brompton & Harefield NHS Foundation Trust'),
(81030, 'https://ror.org/022x6b873', 'fr', 1, 'https://ror.org/022x6b873 Société Française de Médecine d''Urgence'),
(81031, 'https://ror.org/02s5x7p23', 'pt', 1, 'https://ror.org/02s5x7p23 Instituto de Tecnologia e Pesquisa'),
(81032, 'https://ror.org/01vv37n49', 'en', 1, 'https://ror.org/01vv37n49 Wuzhou University 梧州学院'),
(81033, 'https://ror.org/02dzkdp68', 'en', 1, 'https://ror.org/02dzkdp68 Mudanjiang Normal University 牡丹江师范学院'),
(81034, 'https://ror.org/00nwx8810', 'en', 1, 'https://ror.org/00nwx8810 National Council of University Research Administrators'),
(81035, 'https://ror.org/02pttbd79', 'en', 1, 'https://ror.org/02pttbd79 Sacred Heart College'),
(81036, 'https://ror.org/029dwxd81', 'en', 1, 'https://ror.org/029dwxd81 Centre in Green Chemistry and Catalysis'),
(81037, 'https://ror.org/00hn8pj83', 'en', 1, 'https://ror.org/00hn8pj83 Suzhou Vocational University 苏州市职业大学'),
(81038, 'https://ror.org/01qr0q621', 'en', 1, 'https://ror.org/01qr0q621 Political Studies Association'),
(81039, 'https://ror.org/02n5xmn14', 'en', 1, 'https://ror.org/02n5xmn14 Hunter Water'),
(81040, 'https://ror.org/01k6q3j92', 'en', 1, 'https://ror.org/01k6q3j92 Miami Foundation'),
(81041, 'https://ror.org/00zfjyx93', 'en', 1, 'https://ror.org/00zfjyx93 Saskatchewan Research Council (Canada)'),
(81042, 'https://ror.org/01d1n9n57', 'en', 1, 'https://ror.org/01d1n9n57 Ministry of Agriculture & Farmers Welfare कृषि एवं किसान कल्याण मंत्रालय'),
(81043, 'https://ror.org/02kj38n05', 'en', 1, 'https://ror.org/02kj38n05 Anova Health Institute'),
(81044, 'https://ror.org/01szjkb47', 'no_lang_code', 1, 'https://ror.org/01szjkb47 Implantcast (Germany)'),
(81045, 'https://ror.org/00yss2p92', 'en', 1, 'https://ror.org/00yss2p92 Canadian Institute for Military and Veteran Health Research Institut Canadien de Recherche sur la Santé des Militaires et des Vétérans'),
(81046, 'https://ror.org/01d7ffm04', 'en', 1, 'https://ror.org/01d7ffm04 Strang Cancer Prevention Institute'),
(81047, 'https://ror.org/01spm3d88', 'en', 1, 'https://ror.org/01spm3d88 Atrial Fibrillation NETwork Kompetenznetz Vorhofflimmern'),
(81048, 'https://ror.org/0059xpe44', 'no_lang_code', 1, 'https://ror.org/0059xpe44 Kaken Pharmaceutical (Japan) 科研製薬株式会社'),
(81049, 'https://ror.org/00nsyd297', 'en', 1, 'https://ror.org/00nsyd297 Widener University'),
(81050, 'https://ror.org/02f2nvw78', 'en', 1, 'https://ror.org/02f2nvw78 Australian Institute for Musculoskeletal Science'),
(81051, 'https://ror.org/00nc5f834', 'en', 1, 'https://ror.org/00nc5f834 Regional Centre for Biotechnology क्षेत्रीय जैवप्रौद्योगिकी केंद्र'),
(81052, 'https://ror.org/00s7e4d51', 'no_lang_code', 1, 'https://ror.org/00s7e4d51 Saertex (Germany)'),
(81053, 'https://ror.org/01gx26191', 'en', 1, 'https://ror.org/01gx26191 Zhangjiagang First People''s Hospital'),
(81054, 'https://ror.org/01d25af06', 'en', 1, 'https://ror.org/01d25af06 Inter-American Foundation'),
(81055, 'https://ror.org/00f6g0567', 'en', 1, 'https://ror.org/00f6g0567 Hunter Cancer Research Alliance'),
(81056, 'https://ror.org/002rc4w13', 'en', 1, 'https://ror.org/002rc4w13 Islamia University of Bahawalpur اسلامیہ یونیورسٹی بہاولپور'),
(81057, 'https://ror.org/00yvh2s32', 'en', 1, 'https://ror.org/00yvh2s32 Arrowhead Regional Medical Center'),
(81058, 'https://ror.org/009jy0c86', 'en', 1, 'https://ror.org/009jy0c86 Anshun University'),
(81059, 'https://ror.org/01jxjwb74', 'en', 1, 'https://ror.org/01jxjwb74 International Livestock Research Institute'),
(81060, 'https://ror.org/00pbv8f56', 'it', 1, 'https://ror.org/00pbv8f56 Società Italiana di Cardiologia'),
(81061, 'https://ror.org/00bt9we26', 'en', 1, 'https://ror.org/00bt9we26 Ministry of Public Security of the People''s Republic of China 中华人民共和国公安部'),
(81062, 'https://ror.org/0014a0n68', 'en', 1, 'https://ror.org/0014a0n68 Affiliated Hospital of Southwest Medical University 西南医科大学附属中医医院'),
(81063, 'https://ror.org/0202bj006', 'en', 1, 'https://ror.org/0202bj006 Sheng Jing Hospital 中国医科大学附属盛京医院'),
(81064, 'https://ror.org/02aq67p44', 'no_lang_code', 1, 'https://ror.org/02aq67p44 Mitsubishi Heavy Industries (Japan) 三菱重工業株式会社'),
(81065, 'https://ror.org/01g9ekh39', 'en', 1, 'https://ror.org/01g9ekh39 Tokyo International University 東京国際大学'),
(81066, 'https://ror.org/000pmrk50', 'en', 1, 'https://ror.org/000pmrk50 Islamic University of Indonesia Universitas Islam Indonesia'),
(81067, 'https://ror.org/00jxshx33', 'en', 1, 'https://ror.org/00jxshx33 South Valley University جامعة جنوب الوادي'),
(81068, 'https://ror.org/02hwp6a56', 'en', 1, 'https://ror.org/02hwp6a56 Kanazawa University 金沢大学'),
(81069, 'https://ror.org/02e451q69', 'no_lang_code', 1, 'https://ror.org/02e451q69 Melinta Therapeutics (United States)'),
(81070, 'https://ror.org/0149jvn88', 'en', 1, 'https://ror.org/0149jvn88 King Saud bin Abdulaziz University for Health Sciences جامعة الملك سعود بن عبد العزيز للعلوم الصحية'),
(81071, 'https://ror.org/019sa2256', 'en', 1, 'https://ror.org/019sa2256 Community Care'),
(81072, 'https://ror.org/009fk3b63', 'en', 1, 'https://ror.org/009fk3b63 Portsmouth Hospitals NHS Trust'),
(81073, 'https://ror.org/02ksnyp08', 'en', 1, 'https://ror.org/02ksnyp08 Ministerstwo Zdrowia Rzeczypospolitej Polskiej Ministry of Health'),
(81074, 'https://ror.org/01e3hnz98', 'en', 1, 'https://ror.org/01e3hnz98 Academia Brasileira de Ciências Brazilian Academy of Sciences'),
(81075, 'https://ror.org/027nzpm35', 'en', 1, 'https://ror.org/027nzpm35 Ellen MacArthur Foundation'),
(81076, 'https://ror.org/025mtxh67', 'no_lang_code', 1, 'https://ror.org/025mtxh67 FrieslandCampina (Netherlands)'),
(81077, 'https://ror.org/00devjr72', 'pt', 1, 'https://ror.org/00devjr72 Federal University of São Francisco Valley Universidade Federal do Vale do São Francisco'),
(81078, 'https://ror.org/02vnjj382', 'en', 1, 'https://ror.org/02vnjj382 Krishna Institute of Medical Sciences Deemed University'),
(81079, 'https://ror.org/02mv4jh42', 'en', 1, 'https://ror.org/02mv4jh42 Association Canadienne des Infirmières en Oncologie Canadian Association of Nurses in Oncology'),
(81080, 'https://ror.org/027ras364', 'pt', 1, 'https://ror.org/027ras364 IPO Porto'),
(81081, 'https://ror.org/02mg36m74', 'en', 1, 'https://ror.org/02mg36m74 Rajamangala University of Technology Phra Nakhon มหาวิทยาลัยเทคโนโลยีราชมงคลพระนคร'),
(81082, 'https://ror.org/00sryr473', 'en', 1, 'https://ror.org/00sryr473 Malaysian Society of Nephrology'),
(81083, 'https://ror.org/01n179w26', 'en', 1, 'https://ror.org/01n179w26 Guangzhou Regenerative Medicine and Health Guangdong Laboratory 广州再生医学与健康广东省实验室'),
(81084, 'https://ror.org/021a26605', 'en', 1, 'https://ror.org/021a26605 Tokyo University of Technology 東京工科大学'),
(81085, 'https://ror.org/01hb2ne47', 'en', 1, 'https://ror.org/01hb2ne47 Kieikai Research Foundation'),
(81086, 'https://ror.org/01trfvq12', 'en', 1, 'https://ror.org/01trfvq12 NASA Exoplanet Science Institute'),
(81087, 'https://ror.org/017zx9g19', 'en', 1, 'https://ror.org/017zx9g19 Iranian Research Organization for Science and Technology'),
(81088, 'https://ror.org/019bedz31', 'en', 1, 'https://ror.org/019bedz31 Triological Society'),
(81089, 'https://ror.org/01jxa2z23', 'en', 1, 'https://ror.org/01jxa2z23 Anhui Development and Reform Commission 安徽省发展和改革委员会'),
(81090, 'https://ror.org/00ts7br76', 'en', 1, 'https://ror.org/00ts7br76 Cerebral Palsy Alliance Research Foundation'),
(81091, 'https://ror.org/01wftfc57', 'fr', 1, 'https://ror.org/01wftfc57 Inserm Transfert'),
(81092, 'https://ror.org/005mpbw70', 'pt', 1, 'https://ror.org/005mpbw70 Universidade Nove de Julho'),
(81093, 'https://ror.org/02kn1zm32', 'en', 1, 'https://ror.org/02kn1zm32 Southeastern Transportation Research, Innovation, Development and Education Center'),
(81094, 'https://ror.org/00pjnm784', 'en', 1, 'https://ror.org/00pjnm784 Immune Tolerance Network'),
(81095, 'https://ror.org/00s3z8519', 'en', 1, 'https://ror.org/00s3z8519 Johnson C. Smith University'),
(81096, 'https://ror.org/02wj29p03', 'en', 1, 'https://ror.org/02wj29p03 Southern Regional Education Board'),
(81097, 'https://ror.org/02e6sh902', 'en', 1, 'https://ror.org/02e6sh902 Uganda Cancer Institute'),
(81098, 'https://ror.org/025gq5q04', 'en', 1, 'https://ror.org/025gq5q04 Institute of Urban Environment 中国科学院城市环境研究所'),
(81099, 'https://ror.org/001zbj766', 'en', 1, 'https://ror.org/001zbj766 Mathematical Research Institute of Oberwolfach Mathematisches Forschungsinstitut Oberwolfach'),
(81100, 'https://ror.org/00a1z4k38', 'no_lang_code', 1, 'https://ror.org/00a1z4k38 Nordic Nanovector (Norway)'),
(81101, 'https://ror.org/029tnqt29', 'fr', 1, 'https://ror.org/029tnqt29 University of Moncton Université de Moncton'),
(81102, 'https://ror.org/00701k896', 'en', 1, 'https://ror.org/00701k896 Mathematical Association of America'),
(81103, 'https://ror.org/01zr73v18', 'no_lang_code', 1, 'https://ror.org/01zr73v18 Shenyang Jianzhu University 沈阳建筑大学'),
(81104, 'https://ror.org/0238k6k75', 'tr', 1, 'https://ror.org/0238k6k75 Bağcılar Eğitim ve Araştırma Hastanesi'),
(81105, 'https://ror.org/025w6c475', 'en', 1, 'https://ror.org/025w6c475 Seattle Foundation'),
(81106, 'https://ror.org/015t7hs32', 'en', 1, 'https://ror.org/015t7hs32 Association of American Colleges and Universities'),
(81107, 'https://ror.org/02fvkg758', 'en', 1, 'https://ror.org/02fvkg758 Middle Technical University الجامعة التقنية الوسطى'),
(81108, 'https://ror.org/010spe038', 'en', 1, 'https://ror.org/010spe038 National Film Preservation Foundation'),
(81109, 'https://ror.org/01d3m1d52', 'en', 1, 'https://ror.org/01d3m1d52 Saskatchewan Canola Development Commission'),
(81110, 'https://ror.org/02nw97x94', 'en', 1, 'https://ror.org/02nw97x94 Swami Rama Himalayan University स्वामी राम हिमालयन विश्वविद्यालय'),
(81111, 'https://ror.org/02n53wv45', 'de', 1, 'https://ror.org/02n53wv45 Bavarian State Ministry of the Environment and Consumer Protection Bayerisches Staatsministerium für Umwelt und Verbraucherschutz'),
(81112, 'https://ror.org/02yvsmh51', 'en', 1, 'https://ror.org/02yvsmh51 Helmholtz Alberta Initiative'),
(81113, 'https://ror.org/0022h3p69', 'en', 1, 'https://ror.org/0022h3p69 Canadian Orthopaedic Trauma Society'),
(81114, 'https://ror.org/00e99w454', 'en', 1, 'https://ror.org/00e99w454 Scotland and Northern Ireland Forum for Environmental Research'),
(81115, 'https://ror.org/02wxks544', 'en', 1, 'https://ror.org/02wxks544 Gray Foundation'),
(81116, 'https://ror.org/02f5b7n18', 'en', 1, 'https://ror.org/02f5b7n18 Max Planck Institut für Chemie - Otto Hahn Institut Max Planck Institute for Chemistry'),
(81117, 'https://ror.org/02zkjpt31', 'en', 1, 'https://ror.org/02zkjpt31 Virginia G Piper Charitable Trust'),
(81118, 'https://ror.org/027fn9x30', 'en', 1, 'https://ror.org/027fn9x30 Polar Research Institute of China 中国极地研究中心'),
(81119, 'https://ror.org/024z2zn95', 'en', 1, 'https://ror.org/024z2zn95 Hong Kong Anti-Cancer Society'),
(81120, 'https://ror.org/01zcp1a93', 'en', 1, 'https://ror.org/01zcp1a93 National Institute for Health Care Management');
INSERT INTO `rors` VALUES
(81121, 'https://ror.org/02v27yb50', 'no_lang_code', 1, 'https://ror.org/02v27yb50 Blue Ridge Research and Consulting (United States)'),
(81122, 'https://ror.org/01vekys64', 'en', 1, 'https://ror.org/01vekys64 Max Planck Institute of Quantum Optics Max-Planck-Institut für Quantenoptik'),
(81123, 'https://ror.org/02dm2pb39', 'en', 1, 'https://ror.org/02dm2pb39 Nederlandse Federatie van Universitair Medische Centra Netherlands Federation of University Medical Centres'),
(81124, 'https://ror.org/025cj6e44', 'en', 1, 'https://ror.org/025cj6e44 Poznan Supercomputing and Networking Center'),
(81125, 'https://ror.org/00q2dta10', 'en', 1, 'https://ror.org/00q2dta10 Research Center for Ecology and Environment of Central Asia 中国科学院中亚生态与环境研究中心'),
(81126, 'https://ror.org/02apq7b82', 'en', 1, 'https://ror.org/02apq7b82 National Museum of Marine Biology and Aquarium'),
(81127, 'https://ror.org/02684h094', 'en', 1, 'https://ror.org/02684h094 Institute for Health Metrics and Evaluation'),
(81128, 'https://ror.org/00te2x188', 'en', 1, 'https://ror.org/00te2x188 Institute for Scientific Interchange Istituto per l''Interscambio Scientifico'),
(81129, 'https://ror.org/018es5w79', 'no_lang_code', 1, 'https://ror.org/018es5w79 Kairos (United States)'),
(81130, 'https://ror.org/0282ypk29', 'en', 1, 'https://ror.org/0282ypk29 Childhood Arthritis and Rheumatology Research Alliance'),
(81131, 'https://ror.org/00mgfdc89', 'en', 1, 'https://ror.org/00mgfdc89 Klinička Bolnica Dubrava University Hospital Dubrava'),
(81132, 'https://ror.org/00brrdb04', 'fr', 1, 'https://ror.org/00brrdb04 Conseil régional du Centre-Val de Loire'),
(81133, 'https://ror.org/00ap24592', 'en', 1, 'https://ror.org/00ap24592 National Institute of Ecology 국립생태원'),
(81134, 'https://ror.org/02p179j44', 'en', 1, 'https://ror.org/02p179j44 College of Staten Island'),
(81135, 'https://ror.org/02ybsyy31', 'en', 1, 'https://ror.org/02ybsyy31 Jack Brockhoff Foundation'),
(81136, 'https://ror.org/0027frf26', 'en', 1, 'https://ror.org/0027frf26 Kaiser Permanente Washington Health Research Institute'),
(81137, 'https://ror.org/01kga0z77', 'en', 1, 'https://ror.org/01kga0z77 Institute of Solid State Chemistry Федеральное государственное бюджетное учреждение науки Институт химии твердого тела Уральского отделения Российской академии наук'),
(81138, 'https://ror.org/02cnh8416', 'en', 1, 'https://ror.org/02cnh8416 Methodist Hospital Foundation'),
(81139, 'https://ror.org/01p9g6b97', 'en', 1, 'https://ror.org/01p9g6b97 State Ethnic Affairs Commission'),
(81140, 'https://ror.org/020ktwj02', 'en', 1, 'https://ror.org/020ktwj02 African Union'),
(81141, 'https://ror.org/02rkzhe22', 'en', 1, 'https://ror.org/02rkzhe22 Mote Marine Laboratory'),
(81142, 'https://ror.org/006vs7897', 'en', 1, 'https://ror.org/006vs7897 National University of San Marcos Universidad Nacional Mayor de San Marcos'),
(81143, 'https://ror.org/014rqt829', 'no_lang_code', 1, 'https://ror.org/014rqt829 Rakuno Gakuen University 酪農学園大学'),
(81144, 'https://ror.org/02bpap860', 'en', 1, 'https://ror.org/02bpap860 State Key Laboratory of Information Engineering in Surveying Mapping and Remote Sensing'),
(81145, 'https://ror.org/02vbfm330', 'no_lang_code', 1, 'https://ror.org/02vbfm330 MannKind Corporation (United States)'),
(81146, 'https://ror.org/01ntx4j68', 'en', 1, 'https://ror.org/01ntx4j68 Kurdistan University of Medical Sciences دانشگاه علوم پزشکی و خدمات درمانی کردستان'),
(81147, 'https://ror.org/01pe8xs92', 'no_lang_code', 1, 'https://ror.org/01pe8xs92 Oracle (United Kingdom)'),
(81148, 'https://ror.org/02axfcj91', 'no_lang_code', 1, 'https://ror.org/02axfcj91 Desitin Arzneimittel (Germany)'),
(81149, 'https://ror.org/02mr3ar13', 'en', 1, 'https://ror.org/02mr3ar13 Shandong University of Technology 山东理工大学'),
(81150, 'https://ror.org/01k00f941', 'en', 1, 'https://ror.org/01k00f941 Natural Hazards Research Platform'),
(81151, 'https://ror.org/00rrhf939', 'fr', 1, 'https://ror.org/00rrhf939 Fondation FondaMental'),
(81152, 'https://ror.org/02zc7ec14', 'no_lang_code', 1, 'https://ror.org/02zc7ec14 Universal Display Corporation'),
(81153, 'https://ror.org/000nes056', 'en', 1, 'https://ror.org/000nes056 Swedish Transport Administration'),
(81154, 'https://ror.org/00e7dfm13', 'en', 1, 'https://ror.org/00e7dfm13 Centre for Medical Systems Biology'),
(81155, 'https://ror.org/000wh6t45', 'en', 1, 'https://ror.org/000wh6t45 Llywodraeth Cymru Welsh Government'),
(81156, 'https://ror.org/01h9g5w38', 'en', 1, 'https://ror.org/01h9g5w38 Charles Darwin Foundation'),
(81157, 'https://ror.org/00y006049', 'en', 1, 'https://ror.org/00y006049 British Society for Research on Ageing'),
(81158, 'https://ror.org/001gmya32', 'en', 1, 'https://ror.org/001gmya32 John Carroll University'),
(81159, 'https://ror.org/01pxe3r04', 'en', 1, 'https://ror.org/01pxe3r04 University of Nizwa جامعة نزوى'),
(81160, 'https://ror.org/010g30191', 'en', 1, 'https://ror.org/010g30191 National Institute of Development Administration สถาบันบัณฑิตพัฒนบริหารศาสตร์'),
(81161, 'https://ror.org/02856yd31', 'en', 1, 'https://ror.org/02856yd31 Yorkshire Forward'),
(81162, 'https://ror.org/01e7csr82', 'en', 1, 'https://ror.org/01e7csr82 Qinghai University for Nationalities 青海民族大学'),
(81163, 'https://ror.org/00wvvxx15', 'no_lang_code', 1, 'https://ror.org/00wvvxx15 GemVax & KAEL (South Korea) 젬백스 & 카엘'),
(81164, 'https://ror.org/02c4cbt39', 'en', 1, 'https://ror.org/02c4cbt39 Louisiana State University in Shreveport Université d''État de louisiane à shreveport'),
(81165, 'https://ror.org/01pvdd334', 'en', 1, 'https://ror.org/01pvdd334 Izhevsk State Technical University Ижевский государственный технический университет имени М. Т. Калашникова'),
(81166, 'https://ror.org/01sj5ez28', 'en', 1, 'https://ror.org/01sj5ez28 Suan Sunandha Rajabhat University มหาวิทยาลัยราชภัฏสวนสุนันทา'),
(81167, 'https://ror.org/00655qp86', 'en', 1, 'https://ror.org/00655qp86 National Time Service Center 中国科学院国家授时中心'),
(81168, 'https://ror.org/027pr6c67', 'en', 1, 'https://ror.org/027pr6c67 Chuo Kikuu cha Afya na Sayansi Shirikishi Muhimbili Muhimbili University of Health and Allied Sciences'),
(81169, 'https://ror.org/01j99nc54', 'en', 1, 'https://ror.org/01j99nc54 Irkutsk State University Иркутский государственный университет'),
(81170, 'https://ror.org/01mzspr34', 'no_lang_code', 1, 'https://ror.org/01mzspr34 Tandem Diabetes Care (United States)'),
(81171, 'https://ror.org/00s93j442', 'no_lang_code', 1, 'https://ror.org/00s93j442 Spark Therapeutics (United States)'),
(81172, 'https://ror.org/00ftbmy59', 'en', 1, 'https://ror.org/00ftbmy59 State Key Laboratory of Oil and Gas Reservoir Geology and Exploitation 油气藏地质及开发工程国家重点实验室'),
(81173, 'https://ror.org/015wndh26', 'en', 1, 'https://ror.org/015wndh26 European Association for Endoscopic Surgery'),
(81174, 'https://ror.org/01eywvb34', 'en', 1, 'https://ror.org/01eywvb34 Ahmanson Foundation'),
(81175, 'https://ror.org/023cbka75', 'en', 1, 'https://ror.org/023cbka75 Xinjiang Academy of Agricultural Sciences 新疆农业科学院'),
(81176, 'https://ror.org/022q96t77', 'en', 1, 'https://ror.org/022q96t77 JFE 21st Century Foundation JFE21世紀財団'),
(81177, 'https://ror.org/02p9mk956', 'en', 1, 'https://ror.org/02p9mk956 Agensi Nuklear Malaysia Malaysian Nuclear Agency'),
(81178, 'https://ror.org/01655nh08', 'en', 1, 'https://ror.org/01655nh08 New England Research Institutes'),
(81179, 'https://ror.org/01bcdmq48', 'en', 1, 'https://ror.org/01bcdmq48 Hamline University'),
(81180, 'https://ror.org/01cntdd82', 'en', 1, 'https://ror.org/01cntdd82 Santa Monica College'),
(81181, 'https://ror.org/01f7ent21', 'de', 1, 'https://ror.org/01f7ent21 Hermann und Lilly Schilling-Stiftung'),
(81182, 'https://ror.org/005e8tf31', 'pt', 1, 'https://ror.org/005e8tf31 Centro de Desenvolvimento da Tecnologia Nuclear'),
(81183, 'https://ror.org/01n92vv28', 'en', 1, 'https://ror.org/01n92vv28 Oncode Institute'),
(81184, 'https://ror.org/00wdk8w52', 'en', 1, 'https://ror.org/00wdk8w52 South African Association for Marine Biological Research'),
(81185, 'https://ror.org/02p4mwa83', 'en', 1, 'https://ror.org/02p4mwa83 Western Health'),
(81186, 'https://ror.org/02qma2225', 'en', 1, 'https://ror.org/02qma2225 Lincoln Memorial University'),
(81187, 'https://ror.org/02jakbh21', 'en', 1, 'https://ror.org/02jakbh21 United States Army War College'),
(81188, 'https://ror.org/00cj7p033', 'no_lang_code', 1, 'https://ror.org/00cj7p033 Mateon Therapeutics (United States)'),
(81189, 'https://ror.org/016z2bp30', 'en', 1, 'https://ror.org/016z2bp30 National Jewish Health'),
(81190, 'https://ror.org/00seraz22', 'en', 1, 'https://ror.org/00seraz22 Air Force Engineering University 中国人民解放军空军工程大学'),
(81191, 'https://ror.org/01fm69p79', 'es', 1, 'https://ror.org/01fm69p79 Sociedad Española de Reumatología'),
(81192, 'https://ror.org/00ypzd005', 'en', 1, 'https://ror.org/00ypzd005 Australian Trade and Investment Commission'),
(81193, 'https://ror.org/02pbat654', 'en', 1, 'https://ror.org/02pbat654 American Institute of Steel Construction'),
(81194, 'https://ror.org/00w9knq58', 'en', 1, 'https://ror.org/00w9knq58 Ministry of National Education, Vocational Training, Higher Education and Scientific Research Ministère de l''Education Nationale, de la Formation Professionnelle, de l''Enseignement Supérieur & de la Recherche Scientifique المملكة المغربية - وزارة التربية الوطنية و التكوين المهني و التعليم العالي و البحث العلمي'),
(81195, 'https://ror.org/0064zg438', 'en', 1, 'https://ror.org/0064zg438 Izaak Walton Killam Health Centre'),
(81196, 'https://ror.org/01qzc0f54', 'en', 1, 'https://ror.org/01qzc0f54 Qingdao University of Technology 青岛理工大学'),
(81197, 'https://ror.org/028jnma48', 'en', 1, 'https://ror.org/028jnma48 Metakids'),
(81198, 'https://ror.org/02h1qsm74', 'no_lang_code', 1, 'https://ror.org/02h1qsm74 Psyadon Pharmaceuticals (United States)'),
(81199, 'https://ror.org/00xn28y13', 'en', 1, 'https://ror.org/00xn28y13 Chinese Society of Endocrinology 中国内分泌学会'),
(81200, 'https://ror.org/009nawz64', 'en', 1, 'https://ror.org/009nawz64 Ministry of Transportation of Ontario Ministère des Transports'),
(81201, 'https://ror.org/02s65tk16', 'en', 1, 'https://ror.org/02s65tk16 Centro de Investigación Biomédica en Red de Fisiopatología de la Obesidad y Nutrición Spanish Biomedical Research Centre in Physiopathology of Obesity and Nutrition'),
(81202, 'https://ror.org/01hrxxx24', 'en', 1, 'https://ror.org/01hrxxx24 Arturo Prat University Universidad Arturo Prat'),
(81203, 'https://ror.org/01e69j385', 'en', 1, 'https://ror.org/01e69j385 All-Russian Institute of Plant Protection Всероссийский научно-исследовательский институт защиты растений'),
(81204, 'https://ror.org/0086v0m15', 'en', 1, 'https://ror.org/0086v0m15 Consumer Healthcare Products Association'),
(81205, 'https://ror.org/02evnh647', 'en', 1, 'https://ror.org/02evnh647 Saitama University 埼玉大学'),
(81206, 'https://ror.org/02c4zkr79', 'en', 1, 'https://ror.org/02c4zkr79 Ekiti State University'),
(81207, 'https://ror.org/01y7m0485', 'en', 1, 'https://ror.org/01y7m0485 Saginaw Valley State University'),
(81208, 'https://ror.org/02xjrkt08', 'en', 1, 'https://ror.org/02xjrkt08 Second Affiliated Hospital of Soochow University'),
(81209, 'https://ror.org/02jfbm483', 'en', 1, 'https://ror.org/02jfbm483 BioTechMed-Graz'),
(81210, 'https://ror.org/02knhje64', 'en', 1, 'https://ror.org/02knhje64 Rajamangala University of Technology Srivijaya มหาวิทยาลัยเทคโนโลยีราชมงคลศรีวิชัย'),
(81211, 'https://ror.org/01t81sv44', 'en', 1, 'https://ror.org/01t81sv44 University of Information Technology and Management in Rzeszow Wyższa Szkoła Informatyki i Zarządzania w Rzeszowie'),
(81212, 'https://ror.org/00kn38412', 'en', 1, 'https://ror.org/00kn38412 Tourettes Action'),
(81213, 'https://ror.org/01xtcza13', 'pl', 1, 'https://ror.org/01xtcza13 Military Institute of Aviation Medicine Wojskowy Instytut Medycyny Lotniczej'),
(81214, 'https://ror.org/01b8rza40', 'en', 1, 'https://ror.org/01b8rza40 Louisiana State University Agricultural Center'),
(81215, 'https://ror.org/00epe0j70', 'en', 1, 'https://ror.org/00epe0j70 Shanghai Municipal Agricultural Commission 上海市农业委员会'),
(81216, 'https://ror.org/009msm672', 'en', 1, 'https://ror.org/009msm672 Wolkite University'),
(81217, 'https://ror.org/00073tb80', 'en', 1, 'https://ror.org/00073tb80 State Key Laboratory of Pollution Control and Resource Reuse 污染控制与资源化研究国家重点实验室'),
(81218, 'https://ror.org/01xxp6985', 'no_lang_code', 1, 'https://ror.org/01xxp6985 Kōchi University 高知大学'),
(81219, 'https://ror.org/0203tey58', 'nl', 1, 'https://ror.org/0203tey58 Nederlandse Vereniging voor Gastroenterologie'),
(81220, 'https://ror.org/02df7gw66', 'en', 1, 'https://ror.org/02df7gw66 Centre of Excellence in Mathematics'),
(81221, 'https://ror.org/02k51ms15', 'en', 1, 'https://ror.org/02k51ms15 Society of the Cincinnati'),
(81222, 'https://ror.org/02e21yv44', 'en', 1, 'https://ror.org/02e21yv44 Society of Anesthesia and Sleep Medicine'),
(81223, 'https://ror.org/02m8tb249', 'fr', 1, 'https://ror.org/02m8tb249 Université Sultan Moulay Slimane'),
(81224, 'https://ror.org/01e5mdj42', 'en', 1, 'https://ror.org/01e5mdj42 Florida Polytechnic University'),
(81225, 'https://ror.org/00shc0s02', 'en', 1, 'https://ror.org/00shc0s02 Sobolev Institute of Mathematics Федеральное государственное бюджетное учреждение науки Институт математики им. С. Л. Соболева Сибирского отделения Российской академии наук'),
(81226, 'https://ror.org/029man787', 'en', 1, 'https://ror.org/029man787 Luoyang Normal University 洛阳师范学院'),
(81227, 'https://ror.org/016qzqe77', 'en', 1, 'https://ror.org/016qzqe77 Danish Football Association Dansk Boldspil-Union'),
(81228, 'https://ror.org/01h3fm945', 'en', 1, 'https://ror.org/01h3fm945 University College of Medical Sciences'),
(81229, 'https://ror.org/02gqgne03', 'en', 1, 'https://ror.org/02gqgne03 American University of the Middle East الجامعة الأمريكية في الشرق الأوسط'),
(81230, 'https://ror.org/00s97k668', 'en', 1, 'https://ror.org/00s97k668 National Center for Mathematics and Interdisciplinary Sciences 中国科学院国家数学与交叉科学中心'),
(81231, 'https://ror.org/00z1gwf89', 'en', 1, 'https://ror.org/00z1gwf89 Shenzhen Research Institute of Big Data 深圳市大数据研究院'),
(81232, 'https://ror.org/020fr6y52', 'en', 1, 'https://ror.org/020fr6y52 Administration of Ocean and Fisheries of Guangdong Province'),
(81233, 'https://ror.org/00ezb6p66', 'de', 1, 'https://ror.org/00ezb6p66 Marga und Walter Boll - Stiftung'),
(81234, 'https://ror.org/0053n5071', 'en', 1, 'https://ror.org/0053n5071 Université west chester de pennsylvanie West Chester University'),
(81235, 'https://ror.org/012ak5d18', 'en', 1, 'https://ror.org/012ak5d18 Mauritius Research Council'),
(81236, 'https://ror.org/01jgzvw27', 'en', 1, 'https://ror.org/01jgzvw27 The Lowy Medical Research Institute'),
(81237, 'https://ror.org/01d6qxv05', 'en', 1, 'https://ror.org/01d6qxv05 Monmouth University Universidad de Monmouth'),
(81238, 'https://ror.org/01ew38b77', 'en', 1, 'https://ror.org/01ew38b77 Akademia Techniczno-Humanistyczna w Bielsku-Białej University of Bielsko-Biała'),
(81239, 'https://ror.org/00g8d1q08', 'en', 1, 'https://ror.org/00g8d1q08 State Key Laboratory of Building Safety and Built Environment'),
(81240, 'https://ror.org/02p1wzv32', 'nl', 1, 'https://ror.org/02p1wzv32 Institut National d''Assurance Maladie Invalidité National Institute for Health and Disability Insurance Rijksinstituut voor Ziekte- en Invaliditeitsverzekering'),
(81241, 'https://ror.org/007amwr41', 'en', 1, 'https://ror.org/007amwr41 Guy Harvey Ocean Foundation'),
(81242, 'https://ror.org/01mmz5j21', 'en', 1, 'https://ror.org/01mmz5j21 Victorian Clinical Genetics Services'),
(81243, 'https://ror.org/01z3bp082', 'en', 1, 'https://ror.org/01z3bp082 Royal Norwegian Society of Sciences and Letters'),
(81244, 'https://ror.org/00pm1e925', 'en', 1, 'https://ror.org/00pm1e925 Society for Healthcare Epidemiology of America'),
(81245, 'https://ror.org/02w4h2853', 'en', 1, 'https://ror.org/02w4h2853 American Association of Colleges of Nursing'),
(81246, 'https://ror.org/00qm4t918', 'en', 1, 'https://ror.org/00qm4t918 Guizhou Minzu University 贵州民族大学'),
(81247, 'https://ror.org/02xhx4j26', 'en', 1, 'https://ror.org/02xhx4j26 Centre for Marine Socioecology'),
(81248, 'https://ror.org/01zfzax10', 'en', 1, 'https://ror.org/01zfzax10 University of Tikrit جامعة تكريت'),
(81249, 'https://ror.org/01fy9e204', 'en', 1, 'https://ror.org/01fy9e204 The Neurosciences Foundation'),
(81250, 'https://ror.org/02xmkec90', 'en', 1, 'https://ror.org/02xmkec90 Kaohsiung Medical University Chung-Ho Memorial Hospital'),
(81251, 'https://ror.org/02hfpnk21', 'en', 1, 'https://ror.org/02hfpnk21 Translational Genomics Research Institute'),
(81252, 'https://ror.org/01f77gp95', 'en', 1, 'https://ror.org/01f77gp95 Third Affiliated Hospital of Harbin Medical University 哈尔滨医科大学第三临床医学院'),
(81253, 'https://ror.org/00jhzfv66', 'en', 1, 'https://ror.org/00jhzfv66 Washington Academy of Sciences'),
(81254, 'https://ror.org/00bknc349', 'en', 1, 'https://ror.org/00bknc349 Hosokawa Powder Technology Foundation 公益財団法人 ホソカワ粉体工学振興財団'),
(81255, 'https://ror.org/00dwgct76', 'es', 1, 'https://ror.org/00dwgct76 Centro de Investigación Biomédica en Red Diabetes y Enfermedades Metabólicas Asociadas'),
(81256, 'https://ror.org/024whdm10', 'en', 1, 'https://ror.org/024whdm10 Edinburgh & Lothians Health Foundation'),
(81257, 'https://ror.org/02bn3v102', 'en', 1, 'https://ror.org/02bn3v102 GW Medical Faculty Associates'),
(81258, 'https://ror.org/01r5k6556', 'no_lang_code', 1, 'https://ror.org/01r5k6556 Omeros Corporation (United States)'),
(81259, 'https://ror.org/016bv0s21', 'fr', 1, 'https://ror.org/016bv0s21 Association pour l’Assistance et la Réhabilitation à Domicile'),
(81260, 'https://ror.org/01vep7794', 'es', 1, 'https://ror.org/01vep7794 Instituto Nacional de Investigaciones Agropecuarias'),
(81261, 'https://ror.org/00mrjbj15', 'no_lang_code', 1, 'https://ror.org/00mrjbj15 Fukuyama University 福山大学'),
(81262, 'https://ror.org/00af1rw21', 'no_lang_code', 1, 'https://ror.org/00af1rw21 Shodor'),
(81263, 'https://ror.org/01at1x128', 'en', 1, 'https://ror.org/01at1x128 Ministerie van Binnenlandse Zaken en Koninkrijksrelaties Ministry of the Interior and Kingdom Relations'),
(81264, 'https://ror.org/026zmgd62', 'en', 1, 'https://ror.org/026zmgd62 Navsari Agricultural University કૃષિ યુનિવર્સિટી, નવસારી నవసరి వ్యవసాయ విశ్వవిద్యాలం'),
(81265, 'https://ror.org/019mv8a21', 'no_lang_code', 1, 'https://ror.org/019mv8a21 Diamond V (United States)'),
(81266, 'https://ror.org/022w3f533', 'en', 1, 'https://ror.org/022w3f533 Swedish Institute'),
(81267, 'https://ror.org/011pd5k86', 'en', 1, 'https://ror.org/011pd5k86 Institute of Materials Science Viện Khoa học Vật liệu'),
(81268, 'https://ror.org/0254sa076', 'en', 1, 'https://ror.org/0254sa076 Iqra National University اقراء نیشنل یونیورسٹی'),
(81269, 'https://ror.org/02bq4xp81', 'en', 1, 'https://ror.org/02bq4xp81 Turing Foundation'),
(81270, 'https://ror.org/011asxc61', 'no_lang_code', 1, 'https://ror.org/011asxc61 Liander (Netherlands)'),
(81271, 'https://ror.org/002j7n988', 'en', 1, 'https://ror.org/002j7n988 Atlas Network'),
(81272, 'https://ror.org/015yt6k87', 'en', 1, 'https://ror.org/015yt6k87 Scottish Enterprise'),
(81273, 'https://ror.org/009yr1d55', 'en', 1, 'https://ror.org/009yr1d55 Beloit College'),
(81274, 'https://ror.org/02jg74102', 'no_lang_code', 1, 'https://ror.org/02jg74102 Elanco (United States)'),
(81275, 'https://ror.org/00gcc2a38', 'de', 1, 'https://ror.org/00gcc2a38 René und Susanne Braginsky Stiftung'),
(81276, 'https://ror.org/02z31g829', 'en', 1, 'https://ror.org/02z31g829 Skåne University Hospital Skånes universitetssjukhus'),
(81277, 'https://ror.org/00zc03z98', 'en', 1, 'https://ror.org/00zc03z98 Propionic Acidemia Foundation'),
(81278, 'https://ror.org/02w2wps72', 'en', 1, 'https://ror.org/02w2wps72 Institute for Computational Science and Technology'),
(81279, 'https://ror.org/0238rs311', 'en', 1, 'https://ror.org/0238rs311 Transport Canada Transports Canada'),
(81280, 'https://ror.org/007ywhm20', 'en', 1, 'https://ror.org/007ywhm20 Jinzhong University 晋中学院'),
(81281, 'https://ror.org/018cmv596', 'en', 1, 'https://ror.org/018cmv596 Lefkofsky Family Foundation'),
(81282, 'https://ror.org/01kfc9965', 'en', 1, 'https://ror.org/01kfc9965 National Association of Orthopaedic Nurses'),
(81283, 'https://ror.org/022yhjq53', 'en', 1, 'https://ror.org/022yhjq53 Meisei University 明星大学'),
(81284, 'https://ror.org/00k6c4h29', 'en', 1, 'https://ror.org/00k6c4h29 Liaoning Shihua University 辽宁石油化工大学'),
(81285, 'https://ror.org/01vd7vb53', 'en', 1, 'https://ror.org/01vd7vb53 Hunan City University 湖南城市学院'),
(81286, 'https://ror.org/00q0w1h45', 'no_lang_code', 1, 'https://ror.org/00q0w1h45 Omron (Japan) オムロン株式会社'),
(81287, 'https://ror.org/0123yy056', 'nl', 1, 'https://ror.org/0123yy056 Nederlandse Vereniging voor Tropische Geneeskunde'),
(81288, 'https://ror.org/00s338690', 'en', 1, 'https://ror.org/00s338690 Lampang Rajabhat University มหาวิทยาลัยราชภัฏลำปาง'),
(81289, 'https://ror.org/00fnkrf94', 'en', 1, 'https://ror.org/00fnkrf94 National Agency for Social Insurance'),
(81290, 'https://ror.org/02a7qmj40', 'en', 1, 'https://ror.org/02a7qmj40 Osteoporosis Canada'),
(81291, 'https://ror.org/003cs9s68', 'en', 1, 'https://ror.org/003cs9s68 Society for Social Studies of Science'),
(81292, 'https://ror.org/01bp61317', 'es', 1, 'https://ror.org/01bp61317 Fundación Pública Andaluza para la Gestión de la Investigación en Salud de Sevilla'),
(81293, 'https://ror.org/02axrxp93', 'en', 1, 'https://ror.org/02axrxp93 Utah Academy of Sciences and Arts and Letters'),
(81294, 'https://ror.org/00274wg63', 'en', 1, 'https://ror.org/00274wg63 Väinö and Laina Kivi Foundation Väinö ja Laina Kiven Säätiö'),
(81295, 'https://ror.org/01nsn0t21', 'pt', 1, 'https://ror.org/01nsn0t21 Universidade Regional de Blumenau'),
(81296, 'https://ror.org/01619x561', 'en', 1, 'https://ror.org/01619x561 American Speech Language Hearing Association'),
(81297, 'https://ror.org/02p3q3906', 'en', 1, 'https://ror.org/02p3q3906 Ministero dell''Ambiente e della Tutela del Territorio e del Mare Ministry of the Environment and Protection of Land and Sea'),
(81298, 'https://ror.org/01w885875', 'en', 1, 'https://ror.org/01w885875 National Agricultural Research and Innovation Centre Nemzeti Agrárkutatási és Innovációs Központ'),
(81299, 'https://ror.org/006aydy55', 'en', 1, 'https://ror.org/006aydy55 Ji Hua Laboratory 季华实验室'),
(81300, 'https://ror.org/01mzk5576', 'en', 1, 'https://ror.org/01mzk5576 Leibniz Institute of Plant Biochemistry Leibniz-Institut für Pflanzenbiochemie'),
(81301, 'https://ror.org/010cnye54', 'no_lang_code', 1, 'https://ror.org/010cnye54 Voyager Therapeutics (United States)'),
(81302, 'https://ror.org/017abdw23', 'en', 1, 'https://ror.org/017abdw23 Jiangsu Agri-animal Husbandry Vocational College 江苏牧医学院'),
(81303, 'https://ror.org/01fkvbf41', 'no_lang_code', 1, 'https://ror.org/01fkvbf41 VistaGen Therapeutics (United States)'),
(81304, 'https://ror.org/0283g3v77', 'en', 1, 'https://ror.org/0283g3v77 Qom Islamic Azad University دانشگاه آزاد اسلامی قم'),
(81305, 'https://ror.org/00sb7hc59', 'en', 1, 'https://ror.org/00sb7hc59 Max Planck Institute for Polymer Research Max-Planck-Institut für Polymerforschung'),
(81306, 'https://ror.org/00ngv8j44', 'en', 1, 'https://ror.org/00ngv8j44 Information Technology University'),
(81307, 'https://ror.org/02ga8fs73', 'fi', 1, 'https://ror.org/02ga8fs73 Maire Taposen Säätiö'),
(81308, 'https://ror.org/00adax290', 'en', 1, 'https://ror.org/00adax290 Nanjing Forest Police College 南京森林警察学院'),
(81309, 'https://ror.org/02jam4v16', 'en', 1, 'https://ror.org/02jam4v16 EuroSpine'),
(81310, 'https://ror.org/00d3km654', 'en', 1, 'https://ror.org/00d3km654 ECOG-ACRIN Cancer Research Group'),
(81311, 'https://ror.org/01g1ykj19', 'en', 1, 'https://ror.org/01g1ykj19 eThekwini Municipality'),
(81312, 'https://ror.org/01g53pj53', 'en', 1, 'https://ror.org/01g53pj53 Comisión Nacional para el Conocimiento y Uso de la Biodiversidad National Commission for the Knowledge and Use of Biodiversity'),
(81313, 'https://ror.org/00bvysh61', 'en', 1, 'https://ror.org/00bvysh61 Islamic Azad University, Mashhad دانشگاه آزاد اسلامی واحد مشهد'),
(81314, 'https://ror.org/02yfz4y25', 'no_lang_code', 1, 'https://ror.org/02yfz4y25 BioVentrix (United States)'),
(81315, 'https://ror.org/00fpx3104', 'en', 1, 'https://ror.org/00fpx3104 Colorado Office of Economic Development and International Trade'),
(81316, 'https://ror.org/02q077p55', 'fr', 1, 'https://ror.org/02q077p55 Fondation Neurodis'),
(81317, 'https://ror.org/010prmy50', 'en', 1, 'https://ror.org/010prmy50 Virginia–Maryland College of Veterinary Medicine'),
(81318, 'https://ror.org/0251nbz82', 'de', 1, 'https://ror.org/0251nbz82 Bayerisches Staatsministerium für Ernährung, Landwirtschaft und Forsten'),
(81319, 'https://ror.org/02zcjdk53', 'en', 1, 'https://ror.org/02zcjdk53 Tübitak National Metrology Institute Ulusal Metroloji Enstitüsü'),
(81320, 'https://ror.org/0008wzh48', 'en', 1, 'https://ror.org/0008wzh48 Royal Marsden NHS Foundation Trust'),
(81321, 'https://ror.org/01nckkm68', 'en', 1, 'https://ror.org/01nckkm68 Sophia University 上智大学'),
(81322, 'https://ror.org/02x99ac45', 'en', 1, 'https://ror.org/02x99ac45 Yazd University دانشگاه یزد'),
(81323, 'https://ror.org/022wnsy59', 'de', 1, 'https://ror.org/022wnsy59 Krebsforschung Schweiz'),
(81324, 'https://ror.org/01vasff55', 'no_lang_code', 1, 'https://ror.org/01vasff55 Jiamusi University 佳木斯大学'),
(81325, 'https://ror.org/02f60yb64', 'no_lang_code', 1, 'https://ror.org/02f60yb64 Qinetiq (United Kingdom)'),
(81326, 'https://ror.org/003zqrx63', 'en', 1, 'https://ror.org/003zqrx63 Denver Museum of Nature and Science'),
(81327, 'https://ror.org/021zqhw10', 'en', 1, 'https://ror.org/021zqhw10 Townsville Hospital'),
(81328, 'https://ror.org/024nsea16', 'no_lang_code', 1, 'https://ror.org/024nsea16 Electro Medical Systems (Switzerland)'),
(81329, 'https://ror.org/02zncn897', 'en', 1, 'https://ror.org/02zncn897 Adolf Messer Foundation Adolf Messer Stiftung'),
(81330, 'https://ror.org/02nmnpn85', 'en', 1, 'https://ror.org/02nmnpn85 Susquehanna University Université de Susquehanna'),
(81331, 'https://ror.org/01v5mqw79', 'en', 1, 'https://ror.org/01v5mqw79 Zhongnan Hospital of Wuhan University'),
(81332, 'https://ror.org/011xqkf34', 'en', 1, 'https://ror.org/011xqkf34 Miscarriage Association'),
(81333, 'https://ror.org/02403qw73', 'en', 1, 'https://ror.org/02403qw73 Nanjing Hydraulic Research Institute 水利部交通运输部国家能源局南京水利科学研究院'),
(81334, 'https://ror.org/00bfgxv06', 'en', 1, 'https://ror.org/00bfgxv06 South African Institute for Aquatic Biodiversity'),
(81335, 'https://ror.org/0094xjg80', 'en', 1, 'https://ror.org/0094xjg80 Secretariat of Agriculture, Livestock, Rural Development, Fisheries and Food Secretaría de Agricultura, Ganadería, Desarrollo Rural, Pesca y Alimentación'),
(81336, 'https://ror.org/01tw4qq66', 'en', 1, 'https://ror.org/01tw4qq66 The Rothschild Archive'),
(81337, 'https://ror.org/019t02f42', 'da', 1, 'https://ror.org/019t02f42 Spar Nord Fonden Spar Nord Foundation'),
(81338, 'https://ror.org/01qqpzg67', 'en', 1, 'https://ror.org/01qqpzg67 NIHR Southampton Biomedical Research Centre'),
(81339, 'https://ror.org/0079wqf71', 'en', 1, 'https://ror.org/0079wqf71 Pound Civil Justice Institute'),
(81340, 'https://ror.org/019f2k932', 'no_lang_code', 1, 'https://ror.org/019f2k932 Esperion Therapeutics (United States)'),
(81341, 'https://ror.org/00cqsab58', 'en', 1, 'https://ror.org/00cqsab58 Mid Atlantic Fishery Management Council'),
(81342, 'https://ror.org/01p4rys65', 'no_lang_code', 1, 'https://ror.org/01p4rys65 Inmos'),
(81343, 'https://ror.org/00q08t645', 'de', 1, 'https://ror.org/00q08t645 Deutsche Gesellschaft für Internationale Zusammenarbeit German Corporation for International Cooperation'),
(81344, 'https://ror.org/00gqmdy63', 'en', 1, 'https://ror.org/00gqmdy63 District of Columbia Space Grant Consortium'),
(81345, 'https://ror.org/01ycecr18', 'en', 1, 'https://ror.org/01ycecr18 Information Technology Industry Development Agency'),
(81346, 'https://ror.org/01pmdrn98', 'id', 1, 'https://ror.org/01pmdrn98 Universitas Muhammadiyah Aceh'),
(81347, 'https://ror.org/029rt7q74', 'en', 1, 'https://ror.org/029rt7q74 Islamic Azad University of Nishapur دانشگاه آزاد اسلامی واحد نیشابور'),
(81348, 'https://ror.org/022gvg072', 'en', 1, 'https://ror.org/022gvg072 State University of Medan Universitas Negeri Medan'),
(81349, 'https://ror.org/00jstgs54', 'fr', 1, 'https://ror.org/00jstgs54 Université de Saint-Boniface'),
(81350, 'https://ror.org/02s6gs133', 'en', 1, 'https://ror.org/02s6gs133 Institute of Microelectronics 中国科学院微电子研究所'),
(81351, 'https://ror.org/01sv5vd96', 'en', 1, 'https://ror.org/01sv5vd96 Bloomberg Philanthropies'),
(81352, 'https://ror.org/024t5tt95', 'en', 1, 'https://ror.org/024t5tt95 Korea Institute of Ceramic Engineering and Technology'),
(81353, 'https://ror.org/00mmfdg02', 'en', 1, 'https://ror.org/00mmfdg02 Clore Israel Foundation קרן קלור לישראל'),
(81354, 'https://ror.org/02v8d7770', 'en', 1, 'https://ror.org/02v8d7770 Bahria University جامعۂ بحریہ'),
(81355, 'https://ror.org/00fyemf28', 'en', 1, 'https://ror.org/00fyemf28 Materials innovation institute'),
(81356, 'https://ror.org/02cmp6f87', 'en', 1, 'https://ror.org/02cmp6f87 Ministry of Environment and Energy Υπουργείο Παραγωγικής Ανασυγκρότησης, Περιβάλλοντος και Ενέργειας'),
(81357, 'https://ror.org/00x2a8982', 'en', 1, 'https://ror.org/00x2a8982 Rural Sociological Society'),
(81358, 'https://ror.org/00y27w112', 'en', 1, 'https://ror.org/00y27w112 Children’s Leukemia Research Association'),
(81359, 'https://ror.org/027yrjm02', 'en', 1, 'https://ror.org/027yrjm02 BIOCAP Canada Foundation'),
(81360, 'https://ror.org/02yasb727', 'en', 1, 'https://ror.org/02yasb727 ARC Centre of Excellence for Integrative Brain Function'),
(81361, 'https://ror.org/000zsjk11', 'no_lang_code', 1, 'https://ror.org/000zsjk11 Dr. F.P. Fischer-Stichting (Netherlands)'),
(81362, 'https://ror.org/009h1nj77', 'en', 1, 'https://ror.org/009h1nj77 National Bureau of Fish Genetic Resources'),
(81363, 'https://ror.org/026vtd268', 'en', 1, 'https://ror.org/026vtd268 Maulana Azad National Institute of Technology'),
(81364, 'https://ror.org/00k8zt527', 'en', 1, 'https://ror.org/00k8zt527 KIIT University'),
(81365, 'https://ror.org/02nftnt56', 'no_lang_code', 1, 'https://ror.org/02nftnt56 Arqule (United States)'),
(81366, 'https://ror.org/02005ks20', 'en', 1, 'https://ror.org/02005ks20 Hemophilia Center of Western Pennsylvania'),
(81367, 'https://ror.org/00qx9g681', 'sv', 1, 'https://ror.org/00qx9g681 Medicinska Understödsföreningen Liv och Hälsa'),
(81368, 'https://ror.org/01ywejq18', 'en', 1, 'https://ror.org/01ywejq18 Psychiatry Research Trust'),
(81369, 'https://ror.org/02ntc9t93', 'en', 1, 'https://ror.org/02ntc9t93 Chang Bing Show Chwan Memorial Hospital'),
(81370, 'https://ror.org/00c29a773', 'en', 1, 'https://ror.org/00c29a773 Society for the Study of Reproduction'),
(81371, 'https://ror.org/00c7fav87', 'en', 1, 'https://ror.org/00c7fav87 Syarif Hidayatullah State Islamic University Jakarta Universitas Islam Negeri Syarif Hidayatullah Jakarta'),
(81372, 'https://ror.org/019vsm959', 'en', 1, 'https://ror.org/019vsm959 National University of Science and Technology Национальный исследовательский технологический университет МИСиС'),
(81373, 'https://ror.org/01175g155', 'en', 1, 'https://ror.org/01175g155 Xinzhou Teachers University 忻州师范学院'),
(81374, 'https://ror.org/00y5f4k61', 'en', 1, 'https://ror.org/00y5f4k61 Massachusetts Historical Society'),
(81375, 'https://ror.org/019sbgd69', 'en', 1, 'https://ror.org/019sbgd69 Gdańsk Medical University Gdański Uniwersytet Medyczny Medical University of Gdansk'),
(81376, 'https://ror.org/02sgqxr53', 'en', 1, 'https://ror.org/02sgqxr53 Global Cancer Institute'),
(81377, 'https://ror.org/00bsj2955', 'en', 1, 'https://ror.org/00bsj2955 Punjab Engineering College पंजाब इंजिनियरिंग कॉलेज'),
(81378, 'https://ror.org/00s0pgz81', 'no_lang_code', 1, 'https://ror.org/00s0pgz81 Intarcia Therapeutics (United States)'),
(81379, 'https://ror.org/01fkw3y20', 'en', 1, 'https://ror.org/01fkw3y20 Ara Institute of Canterbury'),
(81380, 'https://ror.org/0120czk38', 'en', 1, 'https://ror.org/0120czk38 Royal Forest Department กรมป่าไม้'),
(81381, 'https://ror.org/02md8hv62', 'en', 1, 'https://ror.org/02md8hv62 Sheffield Children''s NHS Foundation Trust'),
(81382, 'https://ror.org/02v3j1y79', 'no_lang_code', 1, 'https://ror.org/02v3j1y79 Renishaw (United Kingdom)'),
(81383, 'https://ror.org/01s1hsq14', 'en', 1, 'https://ror.org/01s1hsq14 Yale New Haven Health System'),
(81384, 'https://ror.org/00749za89', 'en', 1, 'https://ror.org/00749za89 Alberto Hurtado University Universidad Alberto Hurtado'),
(81385, 'https://ror.org/01ah7ky25', 'en', 1, 'https://ror.org/01ah7ky25 Banff Centre'),
(81386, 'https://ror.org/00zbz2c25', 'no_lang_code', 1, 'https://ror.org/00zbz2c25 Ultragenyx Pharmaceutical (United States)'),
(81387, 'https://ror.org/02ybfkh30', 'en', 1, 'https://ror.org/02ybfkh30 Regional Research Council in Uppsala-Örebro Region'),
(81388, 'https://ror.org/00avfj807', 'en', 1, 'https://ror.org/00avfj807 Nanchang Institute of Technology 南昌工程学院'),
(81389, 'https://ror.org/01mrvbd33', 'en', 1, 'https://ror.org/01mrvbd33 Hoshi University 星薬科大学'),
(81390, 'https://ror.org/013v2pg91', 'en', 1, 'https://ror.org/013v2pg91 Chinese Physical Society 中国物理学会'),
(81391, 'https://ror.org/01t20sn94', 'en', 1, 'https://ror.org/01t20sn94 University of the West Indies System'),
(81392, 'https://ror.org/029gt5q28', 'no_lang_code', 1, 'https://ror.org/029gt5q28 Calithera (United States)'),
(81393, 'https://ror.org/00rnw4e09', 'en', 1, 'https://ror.org/00rnw4e09 Magee-Womens Research Institute'),
(81394, 'https://ror.org/02q854y08', 'en', 1, 'https://ror.org/02q854y08 Changi General Hospital'),
(81395, 'https://ror.org/025edj240', 'no_lang_code', 1, 'https://ror.org/025edj240 Guiyang University 贵阳学院'),
(81396, 'https://ror.org/00wzjq897', 'en', 1, 'https://ror.org/00wzjq897 Azabu University 麻布大学'),
(81397, 'https://ror.org/02p22ad51', 'en', 1, 'https://ror.org/02p22ad51 Deutsche Gesellschaft für Kardiologie – Herz- und Kreislaufforschung e.V. German Cardiac Society'),
(81398, 'https://ror.org/02ac14420', 'no_lang_code', 1, 'https://ror.org/02ac14420 Dermira (United States)'),
(81399, 'https://ror.org/01vjvsj67', 'en', 1, 'https://ror.org/01vjvsj67 Kuwait College of Science and Technology كلية الكويت للعلوم والتكنولوجيا'),
(81400, 'https://ror.org/01v55qb38', 'en', 1, 'https://ror.org/01v55qb38 National Cerebral and Cardiovascular Center 国立循環器病センター'),
(81401, 'https://ror.org/01e8ff003', 'en', 1, 'https://ror.org/01e8ff003 Shahed University دانشگاه شاهد'),
(81402, 'https://ror.org/02e6z0y17', 'en', 1, 'https://ror.org/02e6z0y17 Ambo University Yunivarsiitii Amboo አምቦ ዩኒቨርሲቲ'),
(81403, 'https://ror.org/02s4m5j79', 'en', 1, 'https://ror.org/02s4m5j79 Council of Economic Advisers'),
(81404, 'https://ror.org/02bjs0p66', 'en', 1, 'https://ror.org/02bjs0p66 Changhai Hospital'),
(81405, 'https://ror.org/00e1nmf62', 'en', 1, 'https://ror.org/00e1nmf62 Saskatchewan Cancer Agency'),
(81406, 'https://ror.org/01qcc6q77', 'en', 1, 'https://ror.org/01qcc6q77 Social Welfare Department 社會福利署'),
(81407, 'https://ror.org/00my0hg66', 'en', 1, 'https://ror.org/00my0hg66 Barwon Health'),
(81408, 'https://ror.org/00c06mw10', 'no_lang_code', 1, 'https://ror.org/00c06mw10 Tomey (Japan)'),
(81409, 'https://ror.org/01bh2s525', 'en', 1, 'https://ror.org/01bh2s525 Einstein Healthcare Network'),
(81410, 'https://ror.org/02tjxem41', 'en', 1, 'https://ror.org/02tjxem41 Steacie Institute for Molecular Sciences'),
(81411, 'https://ror.org/01kb3t575', 'en', 1, 'https://ror.org/01kb3t575 Administración de Servicios Generales Administration des services généraux General Services Administration'),
(81412, 'https://ror.org/00v8w0b34', 'en', 1, 'https://ror.org/00v8w0b34 Japan Racing Association 特殊法人日本中央競馬会'),
(81413, 'https://ror.org/00k194y12', 'en', 1, 'https://ror.org/00k194y12 Kaohsiung Chang Gung Memorial Hospital'),
(81414, 'https://ror.org/01hw93t68', 'en', 1, 'https://ror.org/01hw93t68 St. Norbert College'),
(81415, 'https://ror.org/02530bn33', 'en', 1, 'https://ror.org/02530bn33 National Academy of Education'),
(81416, 'https://ror.org/00vwc8w74', 'en', 1, 'https://ror.org/00vwc8w74 International Women''s Media Foundation'),
(81417, 'https://ror.org/02cgn2a44', 'en', 1, 'https://ror.org/02cgn2a44 Swiss Finance Institute'),
(81418, 'https://ror.org/01nxen694', 'es', 1, 'https://ror.org/01nxen694 Escuela Colombiana de Ingenieria Julio Garavito Escuela Colombiana de Ingeniería'),
(81419, 'https://ror.org/012rb2c33', 'en', 1, 'https://ror.org/012rb2c33 U.S. President''s Malaria Initiative'),
(81420, 'https://ror.org/02sxz8h41', 'en', 1, 'https://ror.org/02sxz8h41 Tokyo Metropolitan Hiroo Hospital 東京都立広尾病院'),
(81421, 'https://ror.org/02pp7px91', 'en', 1, 'https://ror.org/02pp7px91 Max Planck Institute for Human Development Max-Planck-Institut für Bildungsforschung'),
(81422, 'https://ror.org/00q6ynx29', 'de', 1, 'https://ror.org/00q6ynx29 Stiftung Mercator'),
(81423, 'https://ror.org/02p3y5t84', 'en', 1, 'https://ror.org/02p3y5t84 Materials and Energy Research Center پژوهشگاه مواد و انرژی'),
(81424, 'https://ror.org/028kg9j04', 'pt', 1, 'https://ror.org/028kg9j04 Federal University of ABC Universidade Federal do ABC Université fédérale de l''abc'),
(81425, 'https://ror.org/021zvq422', 'en', 1, 'https://ror.org/021zvq422 De Haagse Hogeschool The Hague University of Applied Sciences'),
(81426, 'https://ror.org/01y6ccj36', 'en', 1, 'https://ror.org/01y6ccj36 National Pingtung University of Science and Technology'),
(81427, 'https://ror.org/010pwb356', 'sv', 1, 'https://ror.org/010pwb356 Anna och Edwin Bergers Stiftelse'),
(81428, 'https://ror.org/01rncwg06', 'en', 1, 'https://ror.org/01rncwg06 The Korean Society of Nephrology 대한신장학회'),
(81429, 'https://ror.org/02bf6br77', 'en', 1, 'https://ror.org/02bf6br77 Lahore College for Women University لاہور کالج برائے خواتین یونیورسٹی'),
(81430, 'https://ror.org/00zamzy79', 'en', 1, 'https://ror.org/00zamzy79 Society for Experimental Mechanics'),
(81431, 'https://ror.org/0111z2552', 'pl', 1, 'https://ror.org/0111z2552 Elbląska Uczelnia Humanistyczno-Ekonomiczna'),
(81432, 'https://ror.org/00ma7c320', 'en', 1, 'https://ror.org/00ma7c320 Nakatani Foundation 公益財団法人 中谷医工計測技術振興財団'),
(81433, 'https://ror.org/01zc8t088', 'en', 1, 'https://ror.org/01zc8t088 National Fire Protection Association'),
(81434, 'https://ror.org/02w4tny03', 'en', 1, 'https://ror.org/02w4tny03 Shanghai University of Electric Power 上海电力学院'),
(81435, 'https://ror.org/01v4e7289', 'en', 1, 'https://ror.org/01v4e7289 Russian-Armenian University Հայ-ռուսական համալսարան'),
(81436, 'https://ror.org/01ggenr10', 'no_lang_code', 1, 'https://ror.org/01ggenr10 Phoenix (United States)'),
(81437, 'https://ror.org/01k81gt67', 'en', 1, 'https://ror.org/01k81gt67 Alfred University'),
(81438, 'https://ror.org/02fsk7e17', 'en', 1, 'https://ror.org/02fsk7e17 State University of Semarang Universitas Negeri Semarang'),
(81439, 'https://ror.org/023s8ys65', 'en', 1, 'https://ror.org/023s8ys65 National Water and Sewerage Corporation'),
(81440, 'https://ror.org/02pwbvs75', 'en', 1, 'https://ror.org/02pwbvs75 Ontario Lung Association'),
(81441, 'https://ror.org/01h7cca57', 'en', 1, 'https://ror.org/01h7cca57 Sapporo Medical University 札幌医科大学'),
(81442, 'https://ror.org/01em2mv62', 'en', 1, 'https://ror.org/01em2mv62 Chia-Yi Christian Hospital'),
(81443, 'https://ror.org/026axqv54', 'en', 1, 'https://ror.org/026axqv54 Nanjing Drum Tower Hospital'),
(81444, 'https://ror.org/01mdfdm06', 'en', 1, 'https://ror.org/01mdfdm06 Monell Chemical Senses Center'),
(81445, 'https://ror.org/00jvfh371', 'en', 1, 'https://ror.org/00jvfh371 European Society for Paediatric Infectious Diseases'),
(81446, 'https://ror.org/0077k1j32', 'en', 1, 'https://ror.org/0077k1j32 Malaviya National Institute of Technology Jaipur मालवीय राष्ट्रीय प्रौद्योगिकी संस्थान'),
(81447, 'https://ror.org/022gs0c53', 'es', 1, 'https://ror.org/022gs0c53 Instituto Antártico Chileno'),
(81448, 'https://ror.org/00g102351', 'en', 1, 'https://ror.org/00g102351 State Key Laboratory on Integrated Optoelectronics 集成光电子学国家重点联合实验室'),
(81449, 'https://ror.org/028jkr018', 'da', 1, 'https://ror.org/028jkr018 Nordisk Institut for Kiropraktik og Klinisk Biomekanik'),
(81450, 'https://ror.org/01grkhd49', 'en', 1, 'https://ror.org/01grkhd49 A. James & Alice B. Clark Foundation'),
(81451, 'https://ror.org/009g8f974', 'en', 1, 'https://ror.org/009g8f974 Far East Geological Institute Дальневосточный геологический институт Дальневосточного отделения Российской академии наук'),
(81452, 'https://ror.org/0247ay475', 'en', 1, 'https://ror.org/0247ay475 Central Denmark Region Region Midtjylland'),
(81453, 'https://ror.org/01a4hbq44', 'en', 1, 'https://ror.org/01a4hbq44 St Olav''s University Hospital'),
(81454, 'https://ror.org/02aj8qz21', 'en', 1, 'https://ror.org/02aj8qz21 Fujian Academy of Agricultural Sciences'),
(81455, 'https://ror.org/021fhft25', 'en', 1, 'https://ror.org/021fhft25 Office for National Statistics Swyddfa Ystadegau Gwladol'),
(81456, 'https://ror.org/00zq3v614', 'en', 1, 'https://ror.org/00zq3v614 Dr Marnie Rose Foundation'),
(81457, 'https://ror.org/02b1bn727', 'en', 1, 'https://ror.org/02b1bn727 Chittaranjan National Cancer Institute'),
(81458, 'https://ror.org/022zknp80', 'en', 1, 'https://ror.org/022zknp80 Texas Department of State Health Services'),
(81459, 'https://ror.org/00x6vsv29', 'en', 1, 'https://ror.org/00x6vsv29 Qatar Orthopaedic and Sports Medicine Hospital سبيتار'),
(81460, 'https://ror.org/0109p9r67', 'en', 1, 'https://ror.org/0109p9r67 Joint United Nations Programme on HIV/AIDS'),
(81461, 'https://ror.org/00pprn321', 'no_lang_code', 1, 'https://ror.org/00pprn321 Denali Therapeutics (United States)'),
(81462, 'https://ror.org/02yw1f353', 'fr', 1, 'https://ror.org/02yw1f353 Institut Bergonié'),
(81463, 'https://ror.org/01fvvv243', 'en', 1, 'https://ror.org/01fvvv243 Research Foundation for Opto-Science and Technology 公益財団法人光科学技術研究振興財団'),
(81464, 'https://ror.org/00p954x71', 'en', 1, 'https://ror.org/00p954x71 Society for Conservation Biology'),
(81465, 'https://ror.org/01680tt85', 'en', 1, 'https://ror.org/01680tt85 International Society of Travel Medicine'),
(81466, 'https://ror.org/016zn0y21', 'it', 1, 'https://ror.org/016zn0y21 Fondazione IRCCS Ca'' Granda Ospedale Maggiore Policlinico Ospedale Maggiore'),
(81467, 'https://ror.org/02t6zky14', 'no_lang_code', 1, 'https://ror.org/02t6zky14 Enamine (Ukraine)'),
(81468, 'https://ror.org/02bzfxf13', 'en', 1, 'https://ror.org/02bzfxf13 Debre Tabor University የደብረ ታቦር ዩኒቨርሲቲ'),
(81469, 'https://ror.org/01yaers16', 'en', 1, 'https://ror.org/01yaers16 West Virginia Higher Education Policy Commission'),
(81470, 'https://ror.org/00fmnpw63', 'fr', 1, 'https://ror.org/00fmnpw63 French School of Asian Studies École Française d''Extrême-Orient'),
(81471, 'https://ror.org/02nb3aq72', 'en', 1, 'https://ror.org/02nb3aq72 Monterey Bay Aquarium Research Institute'),
(81472, 'https://ror.org/02hrw4545', 'es', 1, 'https://ror.org/02hrw4545 Fundación Para la Gestión de la Investigación Biomédica de Cádiz'),
(81473, 'https://ror.org/02aj61m65', 'no_lang_code', 1, 'https://ror.org/02aj61m65 Medichem (Spain)'),
(81474, 'https://ror.org/01d8kr740', 'en', 1, 'https://ror.org/01d8kr740 Institute for Information Industry 資訊工業策進會'),
(81475, 'https://ror.org/00fsrd019', 'en', 1, 'https://ror.org/00fsrd019 Illawarra Shoalhaven Local Health District'),
(81476, 'https://ror.org/00ckxt310', 'en', 1, 'https://ror.org/00ckxt310 Synchrotron Light Research Institute'),
(81477, 'https://ror.org/02xa34907', 'en', 1, 'https://ror.org/02xa34907 Southern Nursing Research Society'),
(81478, 'https://ror.org/01bbbnc61', 'no_lang_code', 1, 'https://ror.org/01bbbnc61 On Target Laboratories (United States)'),
(81479, 'https://ror.org/01167a838', 'en', 1, 'https://ror.org/01167a838 Earth Observatory of Singapore'),
(81480, 'https://ror.org/0082yr561', 'en', 1, 'https://ror.org/0082yr561 Gubkin Russian State University of Oil and Gas Российский государственный университет нефти и газа имени И. М. Губкина'),
(81481, 'https://ror.org/00kmpab62', 'en', 1, 'https://ror.org/00kmpab62 San Diego Natural History Museum'),
(81482, 'https://ror.org/00m1jrq32', 'no_lang_code', 1, 'https://ror.org/00m1jrq32 Methuselah Foundation'),
(81483, 'https://ror.org/02awhq166', 'en', 1, 'https://ror.org/02awhq166 Judicial Council of California'),
(81484, 'https://ror.org/02wjbax77', 'en', 1, 'https://ror.org/02wjbax77 Korea Foundation for the Advancement of Science and Creativity'),
(81485, 'https://ror.org/01v42ys47', 'en', 1, 'https://ror.org/01v42ys47 Tokyo Metropolitan Government 東京都庁'),
(81486, 'https://ror.org/00jrmpf38', 'en', 1, 'https://ror.org/00jrmpf38 Beijing Planning Office of Philosophy and Social Science 北京市哲学社会科学规划办公室'),
(81487, 'https://ror.org/014579w63', 'en', 1, 'https://ror.org/014579w63 Fraser Health'),
(81488, 'https://ror.org/026y2cn83', 'de', 1, 'https://ror.org/026y2cn83 Ministerium für Wirtschaft, Innovation, Digitalisierung und Energie des Landes Nordrhein-Westfalen'),
(81489, 'https://ror.org/000y25914', 'no_lang_code', 1, 'https://ror.org/000y25914 Tine (Norway)'),
(81490, 'https://ror.org/00z8rf270', 'sv', 1, 'https://ror.org/00z8rf270 Insamlingsstiftelsen Cancer- och Allergifonden'),
(81491, 'https://ror.org/028q01336', 'en', 1, 'https://ror.org/028q01336 Strategic Management Society'),
(81492, 'https://ror.org/021xwcd05', 'en', 1, 'https://ror.org/021xwcd05 Xinyu University 新余大学'),
(81493, 'https://ror.org/01jkd3546', 'en', 1, 'https://ror.org/01jkd3546 P.N. Lebedev Physical Institute of the Russian Academy of Sciences Физический институт им. П. Н. Лебедева'),
(81494, 'https://ror.org/02f26yq04', 'en', 1, 'https://ror.org/02f26yq04 Banco de España Bank of Spain'),
(81495, 'https://ror.org/0047fvq66', 'en', 1, 'https://ror.org/0047fvq66 Your Community Foundation'),
(81496, 'https://ror.org/02csmb731', 'en', 1, 'https://ror.org/02csmb731 Institute for the Promotion of Teaching Science and Technology สถาบันส่งเสริมการสอนวิทยาศาสตร์และเทคโนโลยี'),
(81497, 'https://ror.org/00xhj8c72', 'en', 1, 'https://ror.org/00xhj8c72 Loyola Marymount University'),
(81498, 'https://ror.org/016a7mx14', 'en', 1, 'https://ror.org/016a7mx14 Leuka'),
(81499, 'https://ror.org/00rrhnr97', 'en', 1, 'https://ror.org/00rrhnr97 CPA Australia'),
(81500, 'https://ror.org/01dt10w58', 'en', 1, 'https://ror.org/01dt10w58 National Palliative Care Research Center'),
(81501, 'https://ror.org/00wtpj265', 'no_lang_code', 1, 'https://ror.org/00wtpj265 Northwest Biotherapeutics (United States)'),
(81502, 'https://ror.org/00d8gp927', 'en', 1, 'https://ror.org/00d8gp927 Shiga University of Medical Science 滋賀医科大学'),
(81503, 'https://ror.org/019dpjf60', 'en', 1, 'https://ror.org/019dpjf60 John Douglas French Alzheimers Foundation'),
(81504, 'https://ror.org/00qy3dp86', 'en', 1, 'https://ror.org/00qy3dp86 Wuhan Institute of Bioengineering 武汉生物工程研究所'),
(81505, 'https://ror.org/02sz1qq59', 'en', 1, 'https://ror.org/02sz1qq59 Gill Foundation'),
(81506, 'https://ror.org/02chymc10', 'en', 1, 'https://ror.org/02chymc10 Oklahoma State Department of Health'),
(81507, 'https://ror.org/02pkrz957', 'en', 1, 'https://ror.org/02pkrz957 Suntory Foundation for Life Sciences サントリー生命科学財団'),
(81508, 'https://ror.org/02b52th27', 'en', 1, 'https://ror.org/02b52th27 Federal Urdu University وفاقی جامعۂ اردو'),
(81509, 'https://ror.org/02fjjp634', 'en', 1, 'https://ror.org/02fjjp634 Society of American Archivists'),
(81510, 'https://ror.org/014y90z04', 'no_lang_code', 1, 'https://ror.org/014y90z04 Utlendingsdirektoratet');
INSERT INTO `rors` VALUES
(81511, 'https://ror.org/02r3ym141', 'en', 1, 'https://ror.org/02r3ym141 SUNY Oneonta Université d''État de new york à oneonta'),
(81512, 'https://ror.org/01tkyan17', 'en', 1, 'https://ror.org/01tkyan17 I Care I Cure Childhood Cancer Foundation'),
(81513, 'https://ror.org/00sxp6h30', 'no_lang_code', 1, 'https://ror.org/00sxp6h30 Jinchuan (China) 金川集团'),
(81514, 'https://ror.org/0190x2a66', 'en', 1, 'https://ror.org/0190x2a66 Xinyang Normal University 信阳师范学院'),
(81515, 'https://ror.org/02b0vny28', 'en', 1, 'https://ror.org/02b0vny28 Geoffrey Beene Foundation'),
(81516, 'https://ror.org/00xv4ev28', 'en', 1, 'https://ror.org/00xv4ev28 International Agency for the Prevention of Blindness'),
(81517, 'https://ror.org/01cp21a44', 'en', 1, 'https://ror.org/01cp21a44 Institute of Translational Health Sciences'),
(81518, 'https://ror.org/00tc3hj46', 'en', 1, 'https://ror.org/00tc3hj46 Association des infirmières et infirmiers du Canada Canadian Nurses Association'),
(81519, 'https://ror.org/0178qr782', 'en', 1, 'https://ror.org/0178qr782 Oral Reconstruction Foundation'),
(81520, 'https://ror.org/02z9sft96', 'en', 1, 'https://ror.org/02z9sft96 Departamento de Transporte del Distrito de Columbia District Department of Transportation'),
(81521, 'https://ror.org/0182aph68', 'en', 1, 'https://ror.org/0182aph68 Cape Leopard Trust'),
(81522, 'https://ror.org/02309j459', 'en', 1, 'https://ror.org/02309j459 Bundesamt für Justiz Federal Office of Justice Office fédéral de la justice Ufficio federale di giustizia'),
(81523, 'https://ror.org/023tfyg79', 'en', 1, 'https://ror.org/023tfyg79 Grain Farmers of Ontario'),
(81524, 'https://ror.org/00x7vzk16', 'en', 1, 'https://ror.org/00x7vzk16 Suan Dusit University มหาวิทยาลัยสวนดุสิต'),
(81525, 'https://ror.org/02jxrhq31', 'en', 1, 'https://ror.org/02jxrhq31 Melanoma Institute Australia'),
(81526, 'https://ror.org/008m8sh03', 'en', 1, 'https://ror.org/008m8sh03 Shangqiu Normal University 商丘师范学院'),
(81527, 'https://ror.org/02qm18h86', 'en', 1, 'https://ror.org/02qm18h86 VA Pittsburgh Healthcare System'),
(81528, 'https://ror.org/00jg41573', 'en', 1, 'https://ror.org/00jg41573 Norsk Fysioterapeutforbund Norwegian Physiotherapist Association'),
(81529, 'https://ror.org/0036wpk65', 'en', 1, 'https://ror.org/0036wpk65 Institute for Transfusion Medicine'),
(81530, 'https://ror.org/01zq5k385', 'en', 1, 'https://ror.org/01zq5k385 General Insurance Association of Japan 日本損害保険協会'),
(81531, 'https://ror.org/017a59b72', 'en', 1, 'https://ror.org/017a59b72 National Development and Reform Commission 中华人民共和国国家发展和改革委员会'),
(81532, 'https://ror.org/02r625m11', 'en', 1, 'https://ror.org/02r625m11 Frankfurt University of Applied Sciences'),
(81533, 'https://ror.org/023annq56', 'no_lang_code', 1, 'https://ror.org/023annq56 Acceleron Pharma (United States)'),
(81534, 'https://ror.org/01hgg7b81', 'en', 1, 'https://ror.org/01hgg7b81 State University of Jakarta Universitas Negeri Jakarta'),
(81535, 'https://ror.org/02dwrdh81', 'en', 1, 'https://ror.org/02dwrdh81 University of Kufa جامعة الكوفة'),
(81536, 'https://ror.org/019c5tn34', 'en', 1, 'https://ror.org/019c5tn34 William Harvey Research Foundation'),
(81537, 'https://ror.org/02std5y37', 'no_lang_code', 1, 'https://ror.org/02std5y37 Shukutoku University 淑徳大学'),
(81538, 'https://ror.org/02p5xjf12', 'en', 1, 'https://ror.org/02p5xjf12 The University of Texas Rio Grande Valley Universidad de Texas Valle del Río Grande'),
(81539, 'https://ror.org/01kjc7m95', 'en', 1, 'https://ror.org/01kjc7m95 Institute of Dendrology Instytut Dendrologii PAN'),
(81540, 'https://ror.org/02fhgbp51', 'en', 1, 'https://ror.org/02fhgbp51 National Institute of Education'),
(81541, 'https://ror.org/01bp81r18', 'en', 1, 'https://ror.org/01bp81r18 National Centre for Cell Science राष्ट्रीय कोशिका विज्ञान केन्द्र, पुणे'),
(81542, 'https://ror.org/02qsb4r69', 'en', 1, 'https://ror.org/02qsb4r69 Mastercard Foundation'),
(81543, 'https://ror.org/02xhmzq41', 'en', 1, 'https://ror.org/02xhmzq41 National Institute of Environmental Research'),
(81544, 'https://ror.org/02pgnjz11', 'it', 1, 'https://ror.org/02pgnjz11 Fondazione Caritro Fondazione Cassa di Risparmio di Trento e Rovereto'),
(81545, 'https://ror.org/00e6ytg41', 'en', 1, 'https://ror.org/00e6ytg41 Jiangsu Second Normal University 江苏第二师范学院'),
(81546, 'https://ror.org/007kz3b20', 'en', 1, 'https://ror.org/007kz3b20 Infrastructure Canada'),
(81547, 'https://ror.org/01a79sw46', 'en', 1, 'https://ror.org/01a79sw46 Iran Polymer and Petrochemical Institute'),
(81548, 'https://ror.org/01ntmn724', 'en', 1, 'https://ror.org/01ntmn724 Consortium For Research and Innovation In Aerospace In Quebec'),
(81549, 'https://ror.org/00tk6s776', 'en', 1, 'https://ror.org/00tk6s776 Institute of Biomedical Sciences, Academia Sinica 中央研究院生物醫學科學研究所'),
(81550, 'https://ror.org/01d34a364', 'en', 1, 'https://ror.org/01d34a364 Taiwan Forestry Research Institute 林業試驗所'),
(81551, 'https://ror.org/00fq07k50', 'en', 1, 'https://ror.org/00fq07k50 Universitas Mataram University of Mataram'),
(81552, 'https://ror.org/01f4dr878', 'en', 1, 'https://ror.org/01f4dr878 Kazimierz Pułaski University of Technology and Humanities in Radom Uniwersytet Technologiczno-Humanistyczny im. Kazimierza Pułaskiego w Radomiu'),
(81553, 'https://ror.org/02sjnrx77', 'no_lang_code', 1, 'https://ror.org/02sjnrx77 Zynerba Pharmaceuticals (United States)'),
(81554, 'https://ror.org/02b0qwc58', 'no_lang_code', 1, 'https://ror.org/02b0qwc58 Circle Cardiovascular Imaging'),
(81555, 'https://ror.org/013jjp941', 'no_lang_code', 1, 'https://ror.org/013jjp941 Beihua University 北华大学'),
(81556, 'https://ror.org/016rjax45', 'no_lang_code', 1, 'https://ror.org/016rjax45 Polymun (Austria)'),
(81557, 'https://ror.org/00tpx5s27', 'en', 1, 'https://ror.org/00tpx5s27 Asociación Nacional de Universidades e Instituciones de Educación Superior National Association of Universities and Higher Education Institutions'),
(81558, 'https://ror.org/00w0k4e67', 'en', 1, 'https://ror.org/00w0k4e67 Texas A&M University at Galveston Universidad de Texas A&M en Galveston'),
(81559, 'https://ror.org/02jsp2z03', 'no_lang_code', 1, 'https://ror.org/02jsp2z03 Telenor (Norway)'),
(81560, 'https://ror.org/009s53a61', 'en', 1, 'https://ror.org/009s53a61 IMDEA Materials Instituto IMDEA Materiales'),
(81561, 'https://ror.org/018graf05', 'en', 1, 'https://ror.org/018graf05 National Development Agency Nemzeti Fejlesztési Ügynökség'),
(81562, 'https://ror.org/00gz9xf10', 'en', 1, 'https://ror.org/00gz9xf10 Society for the Study of School Psychology'),
(81563, 'https://ror.org/00nxgpf29', 'en', 1, 'https://ror.org/00nxgpf29 National Disability Insurance Agency'),
(81564, 'https://ror.org/01thb7525', 'en', 1, 'https://ror.org/01thb7525 Institute of Applied Ecology 中国科学院沈阳应用生态研究所'),
(81565, 'https://ror.org/01by01460', 'no_lang_code', 1, 'https://ror.org/01by01460 Mirati Therapeutics (United States)'),
(81566, 'https://ror.org/006strx72', 'en', 1, 'https://ror.org/006strx72 Yugra State University Югорский государственный университет'),
(81567, 'https://ror.org/023jta124', 'en', 1, 'https://ror.org/023jta124 Norwegian Environment Agency'),
(81568, 'https://ror.org/022jefx64', 'no_lang_code', 1, 'https://ror.org/022jefx64 Ono Pharmaceutical (Japan) 小野薬品工業株式会社'),
(81569, 'https://ror.org/02e250j72', 'en', 1, 'https://ror.org/02e250j72 Industrial Biotechnology Innovation Centre'),
(81570, 'https://ror.org/008cfxd05', 'en', 1, 'https://ror.org/008cfxd05 Sax Institute'),
(81571, 'https://ror.org/01v8x0f60', 'en', 1, 'https://ror.org/01v8x0f60 Rafsanjan University of Medical Sciences دانشگاه علوم پزشکي رفسنجان'),
(81572, 'https://ror.org/02124dd11', 'en', 1, 'https://ror.org/02124dd11 Salahaddin University-Erbil جامعة صلاح الدين'),
(81573, 'https://ror.org/0103gnm60', 'de', 1, 'https://ror.org/0103gnm60 Stiftung Lindenhof Bern'),
(81574, 'https://ror.org/00ghy1a10', 'en', 1, 'https://ror.org/00ghy1a10 Morgan Adams Foundation'),
(81575, 'https://ror.org/027385r44', 'en', 1, 'https://ror.org/027385r44 East China University of Technology 东华理工大学'),
(81576, 'https://ror.org/02n8rnw93', 'en', 1, 'https://ror.org/02n8rnw93 Centre for Nano and Soft Matter Sciences'),
(81577, 'https://ror.org/02h28kk33', 'en', 1, 'https://ror.org/02h28kk33 Vietnam Military Medical University'),
(81578, 'https://ror.org/00xs3qr03', 'en', 1, 'https://ror.org/00xs3qr03 Sichuan Youth Science &